diff --git a/docs/user/setup.rst b/docs/user/setup.rst index b84660c2..86aab383 100644 --- a/docs/user/setup.rst +++ b/docs/user/setup.rst @@ -125,7 +125,7 @@ At the moment that version number is: * D-Settlement **23.2** * D-Foundations **23.1** -* D-SheetPiling **23.1** +* D-SheetPiling **24.1** * D-Stability **2024.01** * D-Geo Flow **2024.01** diff --git a/geolib/models/dsheetpiling/calculation_options.py b/geolib/models/dsheetpiling/calculation_options.py index 0d4f24d9..e5e4afbe 100644 --- a/geolib/models/dsheetpiling/calculation_options.py +++ b/geolib/models/dsheetpiling/calculation_options.py @@ -13,7 +13,9 @@ PartialFactorSetCUR, PartialFactorSetEC, PartialFactorSetEC7NADBE, + RiskClassEC7BE, PartialFactorSetEC7NADNL, + AssessmentTypeEC7NL, PartialFactorSetVerifyEC, VerifyType, ) @@ -46,6 +48,7 @@ class CalculationOptions(BaseDataClass, metaclass=ABCMeta): calc_minor_nodes_on: Select either the faster, classic, coarse element determination (False) of active and passive pressures, or the more accurate fine element determination(True). calc_reduce_deltas: Set on True for reduction of the wall friction angles according to CUR 166 for the calculation of the passive earth pressure coefficients of Culmann method. input_calculation_type: select the type of calculation that is going to be performed. + ec7_nl_assessment_type: Select the assessment type for a calculation with EC7-NL. This option is used only by the GUI in User Defined Partial Factors window. """ @@ -54,6 +57,7 @@ class CalculationOptions(BaseDataClass, metaclass=ABCMeta): calc_reduce_deltas: bool = False # editable if C,phi, delta is selected input_calculation_type: CalculationType = CalculationType.STANDARD is_vibration_calculation: bool = False + ec7_nl_assessment_type: AssessmentTypeEC7NL = AssessmentTypeEC7NL.NewConstruction @property def calculation_properties( @@ -104,8 +108,8 @@ class OverallStabilityCalculationOptions(CalculationOptions): stability_ec7_nl_partial_factor_set: PartialFactorSetEC7NADNL = ( PartialFactorSetEC7NADNL.RC0 ) - stability_ec7_be_partial_factor_set: PartialFactorSetEC7NADBE = ( - PartialFactorSetEC7NADBE.SET1 + overall_stability_ec7_be_partial_factor_set: PartialFactorSetEC7NADBE = ( + PartialFactorSetEC7NADBE.RC1SET1 ) stability_cur_partial_factor_set: PartialFactorSetCUR = PartialFactorSetCUR.CLASSI stability_export: bool = False @@ -148,7 +152,8 @@ class VerifyCalculationOptions(CalculationOptions): ec7_nl_overall_anchor_factor: multiplication factor for the anchor stiffness ec7_nad_nl_overall_stability: Set to True to perform an overall stability calculation using modified values for soil properties (cohesion, friction angle and unit weight) depending on the Design approach chosen for all stages. ec7_be_overall_stability: Set to True to perform an overall stability calculation using modified values for soil properties (cohesion, friction angle and unit weight) depending on the Design approach chosen for all stages. - nb_method: Select method of calculation according to CUR 166 design procedure + ec7_be_method: Select method of calculation for EC7 BE + ec7_be_overall_risk_class: Select risk class cur_method: Select method of calculation according to CUR 166 design procedure cur_overall_partial_factor_set: Select partial factor set cur_overall_anchor_factor: multiplication factor for the anchor stiffness @@ -166,7 +171,8 @@ class VerifyCalculationOptions(CalculationOptions): ec7_nl_overall_anchor_factor: Annotated[float, Field(ge=0.001, le=1000)] = 1 ec7_nad_nl_overall_stability: bool = False ec7_be_overall_stability: bool = False - nb_method: PartialFactorCalculationType = PartialFactorCalculationType.METHODA + ec7_be_method: PartialFactorCalculationType = PartialFactorCalculationType.METHODA + ec7_be_overall_risk_class: RiskClassEC7BE = RiskClassEC7BE.RC2 cur_method: PartialFactorCalculationType = PartialFactorCalculationType.METHODA cur_overall_partial_factor_set: PartialFactorSetCUR = PartialFactorSetCUR.CLASSI cur_overall_anchor_factor: Annotated[float, Field(ge=0.001, le=1000)] = 1 @@ -194,7 +200,7 @@ class DesignSheetpilingLengthCalculationOptions(CalculationOptions): design_eurocode_partial_factor_set: Select partial factor set design_partial_factor_set_ec7_nad_nl: Select partial factor set design_ec7_nl_method: Select method of calculation according to CUR 166 design procedure - design_partial_factor_set_ec7_nad_be: Select partial factor set + design_ec7_be_partial_factor_set: Select partial factor set design_ec7_be_method: Select method of calculation according to CUR 166 design procedure design_partial_factor_set: Select partial factor set design_cur_method: Select method of calculation according to CUR 166 design procedure @@ -213,8 +219,8 @@ class DesignSheetpilingLengthCalculationOptions(CalculationOptions): design_ec7_nl_method: PartialFactorCalculationType = ( PartialFactorCalculationType.METHODA ) - design_partial_factor_set_ec7_nad_be: PartialFactorSetEC7NADBE = ( - PartialFactorSetEC7NADBE.SET1 + design_ec7_be_partial_factor_set: PartialFactorSetEC7NADBE = ( + PartialFactorSetEC7NADBE.RC1SET1 ) design_ec7_be_method: PartialFactorCalculationType = ( PartialFactorCalculationType.METHODA diff --git a/geolib/models/dsheetpiling/internal.py b/geolib/models/dsheetpiling/internal.py index c9a38508..98303d7d 100644 --- a/geolib/models/dsheetpiling/internal.py +++ b/geolib/models/dsheetpiling/internal.py @@ -37,8 +37,12 @@ PartialFactorsCurI, PartialFactorsCurIi, PartialFactorsCurIii, - PartialFactorsEc7BESet1, - PartialFactorsEc7BESet2, + PartialFactorsEc7BE1Set1, + PartialFactorsEc7BE1Set2, + PartialFactorsEc7BE2Set1, + PartialFactorsEc7BE2Set2, + PartialFactorsEc7BE3Set1, + PartialFactorsEc7BE3Set2, PartialFactorsEc7Nl0, PartialFactorsEc7Nl1, PartialFactorsEc7Nl2, @@ -69,7 +73,9 @@ PartialFactorSetCUR, PartialFactorSetEC, PartialFactorSetEC7NADBE, + RiskClassEC7BE, PartialFactorSetEC7NADNL, + AssessmentTypeEC7NL, PartialFactorSetVerifyEC, PassiveSide, SheetPilingElementMaterialType, @@ -249,8 +255,8 @@ class CalculationOptions(DSeriesStructure): ) designec7nlmethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA designec7bmethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA - designpartialfactorsetec7nadbe: PartialFactorSetEC7NADBE = ( - PartialFactorSetEC7NADBE.SET1 + designec7bepartialfactorset: PartialFactorSetEC7NADBE = ( + PartialFactorSetEC7NADBE.RC1SET1 ) designec7bemethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA designpartialfactorset: PartialFactorSetCUR = PartialFactorSetCUR.CLASSI @@ -263,8 +269,10 @@ class CalculationOptions(DSeriesStructure): ec7nloverallpartialfactorset: PartialFactorSetEC7NADNL = PartialFactorSetEC7NADNL.RC0 ec7nloverallanchorfactor: Annotated[float, Field(ge=0.001, le=1000)] = 1 ec7nadnloverallstability: bool = False + ec7nlassessmenttype: AssessmentTypeEC7NL = AssessmentTypeEC7NL.NewConstruction ec7beoverallstability: bool = False ec7bemethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA + ec7beoverallriskclass: RiskClassEC7BE = RiskClassEC7BE.RC2 nbmethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA curmethod: PartialFactorCalculationType = PartialFactorCalculationType.METHODA curoverallpartialfactorset: PartialFactorSetCUR = PartialFactorSetCUR.CLASSI @@ -280,8 +288,8 @@ class CalculationOptions(DSeriesStructure): stabilityec7nlpartialfactorset: PartialFactorSetEC7NADNL = ( PartialFactorSetEC7NADNL.RC0 ) - stabilityec7bepartialfactorset: PartialFactorSetEC7NADBE = ( - PartialFactorSetEC7NADBE.SET1 + overallstabilityec7bepartialfactorset: PartialFactorSetEC7NADBE = ( + PartialFactorSetEC7NADBE.RC1SET1 ) stabilitycurpartialfactorset: PartialFactorSetCUR = PartialFactorSetCUR.CLASSI @@ -298,8 +306,12 @@ class CalculationOptions(DSeriesStructure): partial_factors_ec7_nl_1: PartialFactorsEc7Nl1 = PartialFactorsEc7Nl1() partial_factors_ec7_nl_2: PartialFactorsEc7Nl2 = PartialFactorsEc7Nl2() partial_factors_ec7_nl_3: PartialFactorsEc7Nl3 = PartialFactorsEc7Nl3() - partial_factors_ec7_be_set1: PartialFactorsEc7BESet1 = PartialFactorsEc7BESet1() - partial_factors_ec7_be_set2: PartialFactorsEc7BESet2 = PartialFactorsEc7BESet2() + partial_factors_ec7_be_1_set1: PartialFactorsEc7BE1Set1 = PartialFactorsEc7BE1Set1() + partial_factors_ec7_be_1_set2: PartialFactorsEc7BE1Set2 = PartialFactorsEc7BE1Set2() + partial_factors_ec7_be_2_set1: PartialFactorsEc7BE2Set1 = PartialFactorsEc7BE2Set1() + partial_factors_ec7_be_2_set2: PartialFactorsEc7BE2Set2 = PartialFactorsEc7BE2Set2() + partial_factors_ec7_be_3_set1: PartialFactorsEc7BE3Set1 = PartialFactorsEc7BE3Set1() + partial_factors_ec7_be_3_set2: PartialFactorsEc7BE3Set2 = PartialFactorsEc7BE3Set2() partial_factors_cur_i: PartialFactorsCurI = PartialFactorsCurI() partial_factors_cur_ii: PartialFactorsCurIi = PartialFactorsCurIi() partial_factors_cur_iii: PartialFactorsCurIii = PartialFactorsCurIii() @@ -534,6 +546,7 @@ class StageOptions(DSeriesInlineMappedProperties): stageverify: int = 0 stageanchorfactor: Annotated[float, Field(ge=0.001, le=1000)] = 1 stagepartialfactorsetec7nadnl: PartialFactorSetEC7NADNL = PartialFactorSetEC7NADNL.RC0 + stageriskclassec7nadbe: RiskClassEC7BE = RiskClassEC7BE.RC2 stageverifyec7nadnl: int = 0 stageanchorfactorec7nadnl: Annotated[float, Field(ge=0.001, le=1000)] = 1 stageverifyec7nadbe: int = 0 @@ -1355,7 +1368,9 @@ def parse_text(cls, text): anchors_and_struts_resume: Optional[str] = None supports_resume: Optional[str] = None maximum_anchor_force: Optional[str] = None + maximum_anchor_force_be_set_1: Optional[str] = None maximum_summary_results: Optional[str] = None + maximum_summary_results_be_set_1: Optional[str] = None warnings: Optional[str] = None errors: Optional[str] = None diff --git a/geolib/models/dsheetpiling/internal_partial_factors.py b/geolib/models/dsheetpiling/internal_partial_factors.py index dd007736..26ef468d 100644 --- a/geolib/models/dsheetpiling/internal_partial_factors.py +++ b/geolib/models/dsheetpiling/internal_partial_factors.py @@ -19,6 +19,7 @@ class PartialFactorsEurocodeDa1Set1(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -47,6 +48,7 @@ class PartialFactorsEurocodeDa1Set2(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -75,6 +77,7 @@ class PartialFactorsEurocodeDa2(DSeriesInlineMappedProperties): resistancefactor: float = 1.40 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -103,6 +106,7 @@ class PartialFactorsEurocodeDa3(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -131,6 +135,7 @@ class PartialFactorsEc7Nl0(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.15 geometrydeltaactivephreaticline: float = 0.05 @@ -159,6 +164,7 @@ class PartialFactorsEc7Nl1(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.20 geometrydeltaactivephreaticline: float = 0.05 @@ -187,6 +193,7 @@ class PartialFactorsEc7Nl2(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.25 geometrydeltaactivephreaticline: float = 0.05 @@ -215,6 +222,7 @@ class PartialFactorsEc7Nl3(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.25 geometrydeltaactivephreaticline: float = 0.05 @@ -226,7 +234,7 @@ class PartialFactorsEc7Nl3(DSeriesInlineMappedProperties): verticalbalancegammamb: float = 1.25 -class PartialFactorsEc7BESet1(DSeriesInlineMappedProperties): +class PartialFactorsEc7BE1Set1(DSeriesInlineMappedProperties): loadfactorpermunfav: float = 1.00 loadfactorpermfav: float = 1.00 loadfactorvarunfav: float = 1.00 @@ -235,14 +243,73 @@ class PartialFactorsEc7BESet1(DSeriesInlineMappedProperties): constructloadfactorvarfav: float = 1.00 constructloadfactorpermunfavcalc: float = 1.00 constructloadfactorvarunfavcalc: float = 1.00 - effectfactor: float = 1.35 - effectfactorvarunfav: float = 1.10 + effectfactor: float = 1.2 + effectfactorvarunfav: float = 1.083 materialfactorcohesion: float = 1.00 materialfactortgphi: float = 1.000 materialfactorsubgradereaction: float = 1.00 resistancefactor: float = 1.00 + geometryincretainingheight: float = 0.00 + geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 + geometrydeltapassivesurfacelevel: float = 0.00 + geometrydeltapassivephreaticline: float = 0.00 + geometrydeltaactivephreaticline: float = 0.00 + overallstabilityfactordrivingmoment: float = 1.00 + overallstabilityfactorcohesion: float = 1.00 + overallstabilityfactortgphi: float = 1.00 + overallstabilityfactorunitweight: float = 1.00 + factorrepvaluesmdpmax: float = 1.00 + verticalbalancegammamb: float = 1.00 + + +class PartialFactorsEc7BE1Set2(DSeriesInlineMappedProperties): + loadfactorpermunfav: float = 1.00 + loadfactorpermfav: float = 1.00 + loadfactorvarunfav: float = 1.10 + loadfactorvarfav: float = 0.00 + constructloadfactorpermfav: float = 1.00 + constructloadfactorvarfav: float = 1.00 + constructloadfactorpermunfavcalc: float = 1.00 + constructloadfactorvarunfavcalc: float = 1.00 + effectfactor: float = 1.00 + effectfactorvarunfav: float = 1.00 + materialfactorcohesion: float = 1.10 + materialfactortgphi: float = 1.10 + materialfactorsubgradereaction: float = 1.00 + resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.30 + geometrydeltapassivesurfacelevel: float = 0.00 + geometrydeltapassivephreaticline: float = 0.00 + geometrydeltaactivephreaticline: float = 0.00 + overallstabilityfactordrivingmoment: float = 1.00 + overallstabilityfactorcohesion: float = 1.10 + overallstabilityfactortgphi: float = 1.10 + overallstabilityfactorunitweight: float = 1.00 + factorrepvaluesmdpmax: float = 0.00 + verticalbalancegammamb: float = 1.30 + + +class PartialFactorsEc7BE2Set1(DSeriesInlineMappedProperties): + loadfactorpermunfav: float = 1.00 + loadfactorpermfav: float = 1.00 + loadfactorvarunfav: float = 1.00 + loadfactorvarfav: float = 0.00 + constructloadfactorpermfav: float = 1.00 + constructloadfactorvarfav: float = 1.00 + constructloadfactorpermunfavcalc: float = 1.00 + constructloadfactorvarunfavcalc: float = 1.00 + effectfactor: float = 1.35 + effectfactorvarunfav: float = 1.111 + materialfactorcohesion: float = 1.00 + materialfactortgphi: float = 1.000 + materialfactorsubgradereaction: float = 1.00 + resistancefactor: float = 1.00 + geometryincretainingheight: float = 0.00 + geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -250,11 +317,11 @@ class PartialFactorsEc7BESet1(DSeriesInlineMappedProperties): overallstabilityfactorcohesion: float = 1.00 overallstabilityfactortgphi: float = 1.00 overallstabilityfactorunitweight: float = 1.00 - factorrepvaluesmdpmax: float = 0.00 - verticalbalancegammamb: float = 1.20 + factorrepvaluesmdpmax: float = 1.00 + verticalbalancegammamb: float = 1.00 -class PartialFactorsEc7BESet2(DSeriesInlineMappedProperties): +class PartialFactorsEc7BE2Set2(DSeriesInlineMappedProperties): loadfactorpermunfav: float = 1.00 loadfactorpermfav: float = 1.00 loadfactorvarunfav: float = 1.10 @@ -266,11 +333,12 @@ class PartialFactorsEc7BESet2(DSeriesInlineMappedProperties): effectfactor: float = 1.00 effectfactorvarunfav: float = 1.00 materialfactorcohesion: float = 1.25 - materialfactortgphi: float = 1.250 + materialfactortgphi: float = 1.25 materialfactorsubgradereaction: float = 1.00 resistancefactor: float = 1.00 geometryincretainingheight: float = 10.00 geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.30 geometrydeltapassivesurfacelevel: float = 0.00 geometrydeltapassivephreaticline: float = 0.00 geometrydeltaactivephreaticline: float = 0.00 @@ -278,8 +346,66 @@ class PartialFactorsEc7BESet2(DSeriesInlineMappedProperties): overallstabilityfactorcohesion: float = 1.25 overallstabilityfactortgphi: float = 1.25 overallstabilityfactorunitweight: float = 1.00 - factorrepvaluesmdpmax: float = 0.00 - verticalbalancegammamb: float = 1.20 + factorrepvaluesmdpmax: float = 1.00 + verticalbalancegammamb: float = 1.30 + + +class PartialFactorsEc7BE3Set1(DSeriesInlineMappedProperties): + loadfactorpermunfav: float = 1.00 + loadfactorpermfav: float = 1.00 + loadfactorvarunfav: float = 1.00 + loadfactorvarfav: float = 0.00 + constructloadfactorpermfav: float = 1.00 + constructloadfactorvarfav: float = 1.00 + constructloadfactorpermunfavcalc: float = 1.00 + constructloadfactorvarunfavcalc: float = 1.00 + effectfactor: float = 1.50 + effectfactorvarunfav: float = 1.20 + materialfactorcohesion: float = 1.00 + materialfactortgphi: float = 1.000 + materialfactorsubgradereaction: float = 1.00 + resistancefactor: float = 1.00 + geometryincretainingheight: float = 0.00 + geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 + geometrydeltapassivesurfacelevel: float = 0.00 + geometrydeltapassivephreaticline: float = 0.00 + geometrydeltaactivephreaticline: float = 0.00 + overallstabilityfactordrivingmoment: float = 1.00 + overallstabilityfactorcohesion: float = 1.00 + overallstabilityfactortgphi: float = 1.00 + overallstabilityfactorunitweight: float = 1.00 + factorrepvaluesmdpmax: float = 1.00 + verticalbalancegammamb: float = 1.00 + + +class PartialFactorsEc7BE3Set2(DSeriesInlineMappedProperties): + loadfactorpermunfav: float = 1.00 + loadfactorpermfav: float = 1.00 + loadfactorvarunfav: float = 1.20 + loadfactorvarfav: float = 0.00 + constructloadfactorpermfav: float = 1.00 + constructloadfactorvarfav: float = 1.00 + constructloadfactorpermunfavcalc: float = 1.00 + constructloadfactorvarunfavcalc: float = 1.00 + effectfactor: float = 1.00 + effectfactorvarunfav: float = 1.00 + materialfactorcohesion: float = 1.40 + materialfactortgphi: float = 1.40 + materialfactorsubgradereaction: float = 1.00 + resistancefactor: float = 1.00 + geometryincretainingheight: float = 10.00 + geometrymaxincretainingheight: float = 0.50 + geometryincretainingheightdry: float = 0.30 + geometrydeltapassivesurfacelevel: float = 0.00 + geometrydeltapassivephreaticline: float = 0.00 + geometrydeltaactivephreaticline: float = 0.00 + overallstabilityfactordrivingmoment: float = 1.00 + overallstabilityfactorcohesion: float = 1.40 + overallstabilityfactortgphi: float = 1.40 + overallstabilityfactorunitweight: float = 1.00 + factorrepvaluesmdpmax: float = 1.00 + verticalbalancegammamb: float = 1.30 class PartialFactorsCurI(DSeriesInlineMappedProperties): @@ -299,6 +425,7 @@ class PartialFactorsCurI(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 0.00 geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.20 geometrydeltapassivephreaticline: float = 0.15 geometrydeltaactivephreaticline: float = 0.05 @@ -327,6 +454,7 @@ class PartialFactorsCurIi(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 0.00 geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.30 geometrydeltapassivephreaticline: float = 0.20 geometrydeltaactivephreaticline: float = 0.05 @@ -355,6 +483,7 @@ class PartialFactorsCurIii(DSeriesInlineMappedProperties): resistancefactor: float = 1.00 geometryincretainingheight: float = 0.00 geometrymaxincretainingheight: float = 0.00 + geometryincretainingheightdry: float = 0.00 geometrydeltapassivesurfacelevel: float = 0.35 geometrydeltapassivephreaticline: float = 0.25 geometrydeltaactivephreaticline: float = 0.05 diff --git a/geolib/models/dsheetpiling/settings.py b/geolib/models/dsheetpiling/settings.py index 91fb1d25..0fa6252f 100644 --- a/geolib/models/dsheetpiling/settings.py +++ b/geolib/models/dsheetpiling/settings.py @@ -122,10 +122,26 @@ class PartialFactorSetEC7NADNL(IntEnum): RC3 = 3 SLS = 4 +class AssessmentTypeEC7NL(IntEnum): + NewConstruction = 0 + Reconstruction = 1 + ReconstructionAccordingToBouwBesluit2003OrBefore = 2 + Disapproval = 3 + class PartialFactorSetEC7NADBE(IntEnum): - SET1 = 0 - SET2 = 1 + RC1SET1 = 0 + RC1SET2 = 1 + RC2SET1 = 2 + RC2SET2 = 3 + RC3SET1 = 4 + RC3SET2 = 5 + + +class RiskClassEC7BE(IntEnum): + RC1 = 0 + RC2 = 1 + RC3 = 2 class PartialFactorSetCUR(IntEnum): diff --git a/geolib/models/dsheetpiling/templates/input.shi.j2 b/geolib/models/dsheetpiling/templates/input.shi.j2 index 3cc4e688..42c55fd6 100644 --- a/geolib/models/dsheetpiling/templates/input.shi.j2 +++ b/geolib/models/dsheetpiling/templates/input.shi.j2 @@ -503,7 +503,7 @@ DesignType={{ calculation_options.designtype.value }} DesignEuroCodePartialFactorSet={{ calculation_options.designeurocodepartialfactorset.value }} DesignPartialFactorSetEC7NADNL={{ calculation_options.designpartialfactorsetec7nadnl.value }} DesignEC7NLMethod={{ calculation_options.designec7nlmethod.value }} -DesignPartialFactorSetEC7NADBE={{ calculation_options.designpartialfactorsetec7nadbe.value }} +DesignEC7BEPartialFactorSet={{ calculation_options.designec7bepartialfactorset.value }} DesignEC7BEMethod={{ calculation_options.designec7bemethod.value }} DesignPartialFactorSet={{ calculation_options.designpartialfactorset.value }} DesignCURMethod={{ calculation_options.designcurmethod.value }} @@ -514,8 +514,10 @@ EC7NLMethod={{ calculation_options.ec7nlmethod.value }} EC7NLOverallPartialFactorSet={{ calculation_options.ec7nloverallpartialfactorset.value }} EC7NLOverallAnchorFactor={{ calculation_options.ec7nloverallanchorfactor }} EC7NADNLOverallStability={{ calculation_options.ec7nadnloverallstability|int }} +EC7NLAssessmentType={{ calculation_options.ec7nlassessmenttype.value }} EC7BEOverallStability={{ calculation_options.ec7beoverallstability|int }} EC7BEMethod={{ calculation_options.ec7bemethod.value}} +EC7BEOverallRiskClass={{ calculation_options.ec7beoverallriskclass.value}} CURMethod={{ calculation_options.curmethod.value }} CUROverallPartialFactorSet={{ calculation_options.curoverallpartialfactorset.value }} CUROverallAnchorFactor={{ calculation_options.curoverallanchorfactor }} @@ -526,7 +528,7 @@ OverallStabilityType={{ calculation_options.overallstabilitytype.value }} StabilityExport={{ calculation_options.stabilityexport|int }} StabilityEuroCodePartialFactorSet={{ calculation_options.stabilityeurocodepartialfactorset.value }} StabilityEC7NLPartialFactorSet={{ calculation_options.stabilityec7nlpartialfactorset.value }} -StabilityEC7BEPartialFactorSet={{ calculation_options.stabilityec7bepartialfactorset.value }} +OverallStabilityEC7BEPartialFactorSet={{ calculation_options.overallstabilityec7bepartialfactorset.value }} StabilityCURPartialFactorSet={{ calculation_options.stabilitycurpartialfactorset.value }} {% else %} {{ calculation_options }} @@ -548,6 +550,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,6 +578,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,6 +606,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -629,6 +634,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -656,6 +662,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -683,6 +690,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -710,6 +718,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -737,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,7 +757,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -756,14 +766,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,8 +840,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -791,6 +858,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,7 +868,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -818,6 +942,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -845,6 +970,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -872,6 +998,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-1.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-1.shd index fd50ba1b..d5bec35b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-1.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-1.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-1.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-1.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -263,6 +263,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -286,7 +287,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -297,8 +298,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -309,7 +312,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -317,17 +320,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -335,8 +339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -344,7 +348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -355,15 +359,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -371,17 +376,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,8 +395,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -399,8 +405,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -409,15 +415,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -436,6 +443,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -451,10 +459,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -471,17 +480,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -490,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -498,17 +508,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -517,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,25 +536,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -551,16 +619,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -571,6 +639,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +647,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +723,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -605,8 +731,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -614,7 +740,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +759,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -641,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-1.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-1.shi index 6cf95fdb..3af2d952 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-1.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-1.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : +COMPANY : -DATE : 20-10-2023 -TIME : 14:52:14 -FILENAME : D:\src\GEOLib\tests\test_data\dsheetpiling\benchmarks\bm1-1.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-1.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -262,6 +262,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -285,7 +286,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -296,8 +297,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -308,7 +311,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -327,6 +330,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -354,6 +358,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,6 +386,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,6 +414,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -435,6 +442,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -462,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -489,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -516,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -526,7 +537,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -535,14 +546,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -552,8 +620,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -570,6 +638,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,7 +648,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -597,6 +722,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -624,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -651,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-10.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-10.shd index ed704755..c303101c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-10.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-10.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-10.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-10.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -751,6 +751,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -774,7 +775,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -785,8 +786,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -797,7 +800,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -805,17 +808,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,8 +827,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -832,7 +836,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -843,15 +847,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -859,17 +864,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -877,8 +883,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -887,8 +893,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -897,15 +903,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -924,6 +931,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -939,10 +947,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -951,6 +959,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -959,17 +968,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -978,6 +987,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -986,17 +996,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1005,6 +1015,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1013,25 +1024,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1039,16 +1107,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1059,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,16 +1135,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1086,6 +1211,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1093,8 +1219,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1102,7 +1228,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1113,6 +1239,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1120,8 +1247,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1129,7 +1256,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1140,6 +1267,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1147,8 +1275,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-10.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-10.shi index f5c5c4fa..61ddcf58 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-10.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-10.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-10.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-10.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -750,6 +750,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -773,7 +774,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -784,8 +785,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -796,7 +799,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -804,17 +807,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -822,8 +826,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -831,7 +835,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -842,15 +846,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -858,17 +863,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -876,8 +882,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -886,8 +892,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -896,15 +902,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -923,6 +930,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -938,10 +946,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -950,6 +958,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -958,17 +967,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -977,6 +986,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -985,17 +995,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1004,6 +1014,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1012,25 +1023,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1038,16 +1106,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1058,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1065,16 +1134,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1085,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1092,8 +1218,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1101,7 +1227,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1112,6 +1238,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1119,8 +1246,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1128,7 +1255,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1139,6 +1266,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1146,8 +1274,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-11.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-11.shd index 7c9c6625..14d493da 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-11.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-11.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-11.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-11.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -263,6 +263,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -286,7 +287,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -297,8 +298,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -309,7 +312,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -317,17 +320,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -335,8 +339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -344,7 +348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -355,15 +359,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -371,17 +376,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,8 +395,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -399,8 +405,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -409,15 +415,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -436,6 +443,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -451,10 +459,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -471,17 +480,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -490,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -498,17 +508,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -517,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,25 +536,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -551,16 +619,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -571,6 +639,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +647,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +723,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -605,8 +731,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -614,7 +740,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +759,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -641,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-11.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-11.shi index dae664dd..f0e7ff54 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-11.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-11.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-11.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-11.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -262,6 +262,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -285,7 +286,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -296,8 +297,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -308,7 +311,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -316,17 +319,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -334,8 +338,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -343,7 +347,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -354,15 +358,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -370,17 +375,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -388,8 +394,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -398,8 +404,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -408,15 +414,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -435,6 +442,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -450,10 +458,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -462,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -470,17 +479,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -489,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -497,17 +507,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -516,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -524,25 +535,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -550,16 +618,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -570,6 +638,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -577,16 +646,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -597,6 +722,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -604,8 +730,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -613,7 +739,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -624,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -631,8 +758,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -640,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -651,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -658,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-12.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-12.shd index 5154d454..11f4f04f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-12.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-12.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-12.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-12.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -358,6 +358,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -381,7 +382,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -392,8 +393,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -404,7 +407,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -412,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,8 +434,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -439,7 +443,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -450,15 +454,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -466,17 +471,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -484,8 +490,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -494,8 +500,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -504,15 +510,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -531,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -546,10 +554,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -558,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -566,17 +575,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -585,6 +594,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -593,17 +603,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -612,6 +622,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -620,25 +631,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -646,16 +714,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -673,16 +742,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +826,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -709,7 +835,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -720,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -727,8 +854,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -736,7 +863,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -747,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,8 +882,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-12.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-12.shi index 4bcb797f..20fe5723 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-12.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-12.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-12.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-12.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -357,6 +357,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -380,7 +381,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -391,8 +392,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -403,7 +406,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -411,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -429,8 +433,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -438,7 +442,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -449,15 +453,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -465,17 +470,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -483,8 +489,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -493,8 +499,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -503,15 +509,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -530,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -545,10 +553,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -557,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -565,17 +574,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -584,6 +593,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -592,17 +602,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -611,6 +621,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -619,25 +630,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -645,16 +713,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -665,6 +733,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -672,16 +741,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -692,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -699,8 +825,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -708,7 +834,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -719,6 +845,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -726,8 +853,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -735,7 +862,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -746,6 +873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -753,8 +881,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-2.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-2.shd index aace16b5..af7f3d89 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-2.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-2.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-2.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-2.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -255,6 +255,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -278,7 +279,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -289,8 +290,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -301,7 +304,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -309,17 +312,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -327,8 +331,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -336,7 +340,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -347,15 +351,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -363,17 +368,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,8 +387,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -391,8 +397,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -401,15 +407,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -428,6 +435,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -443,10 +451,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -455,6 +463,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -463,17 +472,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -482,6 +491,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -490,17 +500,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -509,6 +519,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -517,25 +528,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -543,16 +611,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -563,6 +631,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -570,16 +639,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -590,6 +715,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -597,8 +723,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -606,7 +732,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -617,6 +743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -624,8 +751,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -633,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -644,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -651,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-2.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-2.shi index 264dc759..89237161 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-2.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-2.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-2.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-2.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -254,6 +254,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -277,7 +278,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -288,8 +289,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -300,7 +303,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -308,17 +311,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -326,8 +330,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -335,7 +339,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -346,15 +350,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -362,17 +367,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -380,8 +386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -390,8 +396,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -400,15 +406,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -427,6 +434,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -442,10 +450,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -454,6 +462,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -462,17 +471,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -481,6 +490,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -489,17 +499,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -508,6 +518,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -516,25 +527,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -542,16 +610,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -562,6 +630,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,16 +638,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -589,6 +714,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -596,8 +722,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -605,7 +731,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -616,6 +742,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -623,8 +750,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -632,7 +759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -643,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -650,8 +778,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-3.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-3.shd index c9ec8bac..7eefccb8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-3.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-3.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-3.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-3.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -279,6 +279,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -302,7 +303,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -313,8 +314,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -325,7 +328,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -333,17 +336,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -351,8 +355,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -360,7 +364,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -371,15 +375,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -387,17 +392,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -405,8 +411,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -415,8 +421,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -425,15 +431,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -452,6 +459,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -467,10 +475,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -479,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -487,17 +496,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -506,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -514,17 +524,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -533,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -541,25 +552,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -567,16 +635,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -587,6 +655,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,16 +663,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +739,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -621,8 +747,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -630,7 +756,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +775,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -657,7 +784,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -675,8 +803,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-3.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-3.shi index 676e67a4..1e0fb854 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-3.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-3.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-3.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-3.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -278,6 +278,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,7 +302,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -312,8 +313,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -324,7 +327,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -332,17 +335,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -350,8 +354,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -359,7 +363,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -370,15 +374,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -386,17 +391,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,8 +410,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -414,8 +420,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -424,15 +430,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -451,6 +458,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -466,10 +474,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -478,6 +486,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -486,17 +495,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -505,6 +514,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +523,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -532,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,25 +551,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -566,16 +634,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -586,6 +654,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +662,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -620,8 +746,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -629,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -656,7 +783,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +794,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +802,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-4.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-4.shd index c589b264..3a380206 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-4.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-4.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-4.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-4.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -297,6 +297,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -306,6 +307,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -329,7 +331,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -340,8 +342,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -352,7 +356,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -360,17 +364,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -378,8 +383,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -387,7 +392,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -398,15 +403,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -414,17 +420,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -432,8 +439,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -442,8 +449,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -452,15 +459,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -479,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -494,10 +503,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -506,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -514,17 +524,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -533,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -541,17 +552,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -560,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,25 +580,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,16 +663,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +683,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,16 +691,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +775,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -657,7 +784,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -675,8 +803,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -684,7 +812,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -695,6 +823,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -702,8 +831,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1159,115 +1288,115 @@ Status character 18.00000 10.00000 3800.00000 18.00000 110 0 - 18.80000 11.00000 3880.00000 18.80000 110 0 - 19.60000 12.00000 3960.00000 19.60000 110 0 - - 20.40000 13.00000 4040.00000 20.40000 110 0 - + 20.40000 13.00000 4040.00000 20.40000 110 1 - 21.20000 14.00000 4120.00000 21.20000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - - 22.80000 16.00000 4280.00000 22.80000 110 0 - - 23.60000 17.00000 4360.00000 23.60000 110 0 - + 22.80000 16.00000 4280.00000 22.80000 110 1 - + 23.60000 17.00000 4360.00000 23.60000 110 1 - 24.40000 18.00000 4440.00000 24.40000 110 1 - - 25.20000 19.00000 4520.00000 25.20000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.94118 21.17647 4694.11765 26.94118 110 0 - - 27.88235 22.35294 4788.23529 27.88235 110 0 - + 25.20000 19.00000 4520.00000 25.20000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.94118 21.17647 4694.11765 26.94118 110 1 - + 27.88235 22.35294 4788.23529 27.88235 110 1 - 28.82353 23.52941 4882.35294 28.82353 110 1 - 29.76471 24.70588 4976.47059 29.76471 110 1 - 30.70588 25.88235 5070.58824 30.70588 110 1 - 30.70588 25.88235 5070.58824 30.70588 110 1 - 31.64706 27.05882 5164.70588 31.64706 110 1 - - 32.58824 28.23529 5258.82353 32.58824 110 0 - - 33.52941 29.41176 5352.94118 33.52941 110 0 - + 32.58824 28.23529 5258.82353 32.58824 110 1 - + 33.52941 29.41176 5352.94118 33.52941 110 1 - 34.47059 30.58824 5447.05882 34.47059 110 1 - 35.41176 31.76471 5541.17647 35.41176 110 1 - 35.41176 31.76471 5541.17647 35.41176 110 1 - 36.35294 32.94118 5635.29412 36.35294 110 1 - 37.29412 34.11765 5729.41176 37.29412 110 1 - 38.23529 35.29412 5823.52941 38.23529 110 1 - - 39.17647 36.47059 5917.64706 39.17647 110 0 - + 39.17647 36.47059 5917.64706 39.17647 110 1 - 40.11765 37.64706 6011.76471 40.11765 110 1 - 40.11765 37.64706 6011.76471 40.11765 110 1 - - 41.05882 38.82353 6105.88235 41.05882 110 0 - + 41.05882 38.82353 6105.88235 41.05882 110 1 - 42.00000 40.00000 6200.00000 42.00000 110 1 - - 42.94118 41.17647 6294.11765 42.94118 110 0 - + 42.94118 41.17647 6294.11765 42.94118 110 1 - 43.88235 42.35294 6388.23529 43.88235 110 1 - 44.82353 43.52941 6482.35294 44.82353 110 1 - 44.82353 43.52941 6482.35294 44.82353 110 1 - - 45.76471 44.70588 6576.47059 45.76471 110 0 - - 46.70588 45.88235 6670.58824 46.70588 110 0 - + 45.76471 44.70588 6576.47059 45.76471 110 1 - + 46.70588 45.88235 6670.58824 46.70588 110 1 - 47.64706 47.05882 6764.70588 47.64706 110 1 - 48.58824 48.23529 6858.82353 48.58824 110 1 - - 49.52941 49.41176 6952.94118 49.52941 110 0 - - 49.52941 49.41176 6952.94118 49.52941 110 0 - - 50.47059 50.58824 7047.05882 50.47059 110 0 - + 49.52941 49.41176 6952.94118 49.52941 110 1 - + 49.52941 49.41176 6952.94118 49.52941 110 1 - + 50.47059 50.58824 7047.05882 50.47059 110 1 - 51.41176 51.76471 7141.17647 51.41176 110 1 - 52.35294 52.94118 7235.29412 52.35294 110 1 - - 53.29412 54.11765 7329.41176 53.29412 110 0 - + 53.29412 54.11765 7329.41176 53.29412 110 1 - 54.23529 55.29412 7423.52941 54.23529 110 1 - 54.23529 55.29412 7423.52941 54.23529 110 1 - 55.17647 56.47059 7517.64706 55.17647 110 1 - - 56.11765 57.64706 7611.76471 56.11765 110 0 - - 57.05882 58.82353 7705.88235 57.05882 110 0 - - 58.00000 60.00000 7800.00000 58.00000 110 0 - - 58.94118 61.17647 7894.11765 58.94118 110 0 - - 58.94118 61.17647 7894.11765 58.94118 110 0 - + 56.11765 57.64706 7611.76471 56.11765 110 1 - + 57.05882 58.82353 7705.88235 57.05882 110 1 - + 58.00000 60.00000 7800.00000 58.00000 110 1 - + 58.94118 61.17647 7894.11765 58.94118 110 1 - + 58.94118 61.17647 7894.11765 58.94118 110 1 - 59.88235 62.35294 7988.23529 59.88235 110 1 - 60.82353 63.52941 8082.35294 60.82353 110 1 - - 61.76471 64.70588 8176.47059 61.76471 110 0 - - 62.70588 65.88235 8270.58824 62.70588 110 0 - + 61.76471 64.70588 8176.47059 61.76471 110 1 - + 62.70588 65.88235 8270.58824 62.70588 110 1 - 63.64706 67.05882 8364.70588 63.64706 110 1 - 63.64706 67.05882 8364.70588 63.64706 110 1 - - 64.58824 68.23529 8458.82353 64.58824 110 0 - - 65.52941 69.41176 8552.94118 65.52941 110 0 - - 66.47059 70.58824 8647.05882 66.47059 110 0 - + 64.58824 68.23529 8458.82353 64.58824 110 1 - + 65.52941 69.41176 8552.94118 65.52941 110 1 - + 66.47059 70.58824 8647.05882 66.47059 110 1 - 67.41176 71.76471 8741.17647 67.41176 110 1 - 68.35294 72.94118 8835.29412 68.35294 110 1 - 68.35294 72.94118 8835.29412 68.35294 110 1 - - 69.29412 74.11765 8929.41176 69.29412 110 0 - - 70.23529 75.29412 9023.52941 70.23529 110 0 - + 69.29412 74.11765 8929.41176 69.29412 110 1 - + 70.23529 75.29412 9023.52941 70.23529 110 1 - 71.17647 76.47059 9117.64706 71.17647 110 1 - - 72.11765 77.64706 9211.76471 72.11765 110 0 - - 73.05882 78.82353 9305.88235 73.05882 110 0 - - 73.05882 78.82353 9305.88235 73.05882 110 0 - + 72.11765 77.64706 9211.76471 72.11765 110 1 - + 73.05882 78.82353 9305.88235 73.05882 110 1 - + 73.05882 78.82353 9305.88235 73.05882 110 1 - 74.00000 80.00000 9400.00000 74.00000 110 1 - - 74.94118 81.17647 9494.11765 74.94118 110 0 - + 74.94118 81.17647 9494.11765 74.94118 110 1 - 75.88235 82.35294 9588.23529 75.88235 110 1 - 76.82353 83.52941 9682.35294 76.82353 110 1 - - 77.76471 84.70588 9776.47059 77.76471 110 0 - - 77.76471 84.70588 9776.47059 77.76471 110 0 - - 78.70588 85.88235 9870.58824 78.70588 110 0 - - 79.64706 87.05882 9964.70588 79.64706 110 0 - - 80.58824 88.23529 10058.82353 80.58824 110 0 - - 81.52941 89.41176 10152.94118 81.52941 110 0 - + 77.76471 84.70588 9776.47059 77.76471 110 1 - + 77.76471 84.70588 9776.47059 77.76471 110 1 - + 78.70588 85.88235 9870.58824 78.70588 110 1 - + 79.64706 87.05882 9964.70588 79.64706 110 1 - + 80.58824 88.23529 10058.82353 80.58824 110 1 - + 81.52941 89.41176 10152.94118 81.52941 110 1 - 82.47059 90.58824 10247.05882 82.47059 110 1 - 82.47059 90.58824 10247.05882 82.47059 110 1 - 83.41176 91.76471 10341.17647 83.41176 110 1 - - 84.35294 92.94118 10435.29412 84.35294 110 0 - + 84.35294 92.94118 10435.29412 84.35294 110 1 - 85.29412 94.11765 10529.41176 85.29412 110 1 - - 86.23529 95.29412 10623.52941 86.23529 110 0 - - 87.17647 96.47059 10717.64706 87.17647 110 0 - - 87.17647 96.47059 10717.64706 87.17647 110 0 - + 86.23529 95.29412 10623.52941 86.23529 110 1 - + 87.17647 96.47059 10717.64706 87.17647 110 1 - + 87.17647 96.47059 10717.64706 87.17647 110 1 - 88.11765 97.64706 10811.76471 88.11765 110 1 - - 89.05882 98.82353 10905.88235 89.05882 110 0 - - 90.00000 100.00000 11000.00000 90.00000 110 0 - + 89.05882 98.82353 10905.88235 89.05882 110 1 - + 90.00000 100.00000 11000.00000 90.00000 110 1 - 90.94118 101.17647 11094.11765 90.94118 110 1 - - 91.88235 102.35294 11188.23529 91.88235 110 0 - - 91.88235 102.35294 11188.23529 91.88235 110 0 - - 92.82353 103.52941 11282.35294 92.82353 110 0 - - 93.76471 104.70588 11376.47059 93.76471 110 0 - - 94.70588 105.88235 11470.58824 94.70588 110 0 - - 95.64706 107.05882 11564.70588 95.64706 110 0 - + 91.88235 102.35294 11188.23529 91.88235 110 1 - + 91.88235 102.35294 11188.23529 91.88235 110 1 - + 92.82353 103.52941 11282.35294 92.82353 110 1 - + 93.76471 104.70588 11376.47059 93.76471 110 1 - + 94.70588 105.88235 11470.58824 94.70588 110 1 - + 95.64706 107.05882 11564.70588 95.64706 110 1 - 96.58824 108.23529 11658.82353 96.58824 110 1 - 96.58824 108.23529 11658.82353 96.58824 110 1 - 97.52941 109.41176 11752.94118 97.52941 110 1 - - 98.47059 110.58824 11847.05882 98.47059 110 0 - + 98.47059 110.58824 11847.05882 98.47059 110 1 - 99.41176 111.76471 11941.17647 99.41176 110 1 - - 100.35294 112.94118 12035.29412 100.35294 110 0 - + 100.35294 112.94118 12035.29412 100.35294 110 1 - 101.29412 114.11765 12129.41176 101.29412 110 1 - 101.29412 114.11765 12129.41176 101.29412 110 1 - 102.23529 115.29412 12223.52941 102.23529 110 1 - 103.17647 116.47059 12317.64706 103.17647 110 1 - - 104.11765 117.64706 12411.76471 104.11765 110 0 - + 104.11765 117.64706 12411.76471 104.11765 110 1 - 105.05882 118.82353 12505.88235 105.05882 110 1 - 106.00000 120.00000 12600.00000 106.00000 110 1 - [END OF DATA] @@ -1369,115 +1498,115 @@ Status character 18.00000 10.00000 3800.00000 18.00000 110 0 - 18.80000 11.00000 3880.00000 18.80000 110 0 - 19.60000 12.00000 3960.00000 19.60000 110 0 - - 20.40000 13.00000 4040.00000 20.40000 110 0 - + 20.40000 13.00000 4040.00000 20.40000 110 1 - 21.20000 14.00000 4120.00000 21.20000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - - 22.80000 16.00000 4280.00000 22.80000 110 0 - - 23.60000 17.00000 4360.00000 23.60000 110 0 - + 22.80000 16.00000 4280.00000 22.80000 110 1 - + 23.60000 17.00000 4360.00000 23.60000 110 1 - 24.40000 18.00000 4440.00000 24.40000 110 1 - - 25.20000 19.00000 4520.00000 25.20000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.94118 21.17647 4694.11765 26.94118 110 0 - - 27.88235 22.35294 4788.23529 27.88235 110 0 - + 25.20000 19.00000 4520.00000 25.20000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.94118 21.17647 4694.11765 26.94118 110 1 - + 27.88235 22.35294 4788.23529 27.88235 110 1 - 28.82353 23.52941 4882.35294 28.82353 110 1 - 29.76471 24.70588 4976.47059 29.76471 110 1 - 30.70588 25.88235 5070.58824 30.70588 110 1 - 30.70588 25.88235 5070.58824 30.70588 110 1 - 31.64706 27.05882 5164.70588 31.64706 110 1 - - 32.58824 28.23529 5258.82353 32.58824 110 0 - - 33.52941 29.41176 5352.94118 33.52941 110 0 - + 32.58824 28.23529 5258.82353 32.58824 110 1 - + 33.52941 29.41176 5352.94118 33.52941 110 1 - 34.47059 30.58824 5447.05882 34.47059 110 1 - 35.41176 31.76471 5541.17647 35.41176 110 1 - 35.41176 31.76471 5541.17647 35.41176 110 1 - 36.35294 32.94118 5635.29412 36.35294 110 1 - 37.29412 34.11765 5729.41176 37.29412 110 1 - 38.23529 35.29412 5823.52941 38.23529 110 1 - - 39.17647 36.47059 5917.64706 39.17647 110 0 - + 39.17647 36.47059 5917.64706 39.17647 110 1 - 40.11765 37.64706 6011.76471 40.11765 110 1 - 40.11765 37.64706 6011.76471 40.11765 110 1 - - 41.05882 38.82353 6105.88235 41.05882 110 0 - + 41.05882 38.82353 6105.88235 41.05882 110 1 - 42.00000 40.00000 6200.00000 42.00000 110 1 - - 42.94118 41.17647 6294.11765 42.94118 110 0 - + 42.94118 41.17647 6294.11765 42.94118 110 1 - 43.88235 42.35294 6388.23529 43.88235 110 1 - 44.82353 43.52941 6482.35294 44.82353 110 1 - 44.82353 43.52941 6482.35294 44.82353 110 1 - - 45.76471 44.70588 6576.47059 45.76471 110 0 - - 46.70588 45.88235 6670.58824 46.70588 110 0 - + 45.76471 44.70588 6576.47059 45.76471 110 1 - + 46.70588 45.88235 6670.58824 46.70588 110 1 - 47.64706 47.05882 6764.70588 47.64706 110 1 - 48.58824 48.23529 6858.82353 48.58824 110 1 - - 49.52941 49.41176 6952.94118 49.52941 110 0 - - 49.52941 49.41176 6952.94118 49.52941 110 0 - - 50.47059 50.58824 7047.05882 50.47059 110 0 - + 49.52941 49.41176 6952.94118 49.52941 110 1 - + 49.52941 49.41176 6952.94118 49.52941 110 1 - + 50.47059 50.58824 7047.05882 50.47059 110 1 - 51.41176 51.76471 7141.17647 51.41176 110 1 - 52.35294 52.94118 7235.29412 52.35294 110 1 - - 53.29412 54.11765 7329.41176 53.29412 110 0 - + 53.29412 54.11765 7329.41176 53.29412 110 1 - 54.23529 55.29412 7423.52941 54.23529 110 1 - 54.23529 55.29412 7423.52941 54.23529 110 1 - 55.17647 56.47059 7517.64706 55.17647 110 1 - - 56.11765 57.64706 7611.76471 56.11765 110 0 - - 57.05882 58.82353 7705.88235 57.05882 110 0 - - 58.00000 60.00000 7800.00000 58.00000 110 0 - - 58.94118 61.17647 7894.11765 58.94118 110 0 - - 58.94118 61.17647 7894.11765 58.94118 110 0 - + 56.11765 57.64706 7611.76471 56.11765 110 1 - + 57.05882 58.82353 7705.88235 57.05882 110 1 - + 58.00000 60.00000 7800.00000 58.00000 110 1 - + 58.94118 61.17647 7894.11765 58.94118 110 1 - + 58.94118 61.17647 7894.11765 58.94118 110 1 - 59.88235 62.35294 7988.23529 59.88235 110 1 - 60.82353 63.52941 8082.35294 60.82353 110 1 - - 61.76471 64.70588 8176.47059 61.76471 110 0 - - 62.70588 65.88235 8270.58824 62.70588 110 0 - + 61.76471 64.70588 8176.47059 61.76471 110 1 - + 62.70588 65.88235 8270.58824 62.70588 110 1 - 63.64706 67.05882 8364.70588 63.64706 110 1 - 63.64706 67.05882 8364.70588 63.64706 110 1 - - 64.58824 68.23529 8458.82353 64.58824 110 0 - - 65.52941 69.41176 8552.94118 65.52941 110 0 - - 66.47059 70.58824 8647.05882 66.47059 110 0 - + 64.58824 68.23529 8458.82353 64.58824 110 1 - + 65.52941 69.41176 8552.94118 65.52941 110 1 - + 66.47059 70.58824 8647.05882 66.47059 110 1 - 67.41176 71.76471 8741.17647 67.41176 110 1 - 68.35294 72.94118 8835.29412 68.35294 110 1 - 68.35294 72.94118 8835.29412 68.35294 110 1 - - 69.29412 74.11765 8929.41176 69.29412 110 0 - - 70.23529 75.29412 9023.52941 70.23529 110 0 - + 69.29412 74.11765 8929.41176 69.29412 110 1 - + 70.23529 75.29412 9023.52941 70.23529 110 1 - 71.17647 76.47059 9117.64706 71.17647 110 1 - - 72.11765 77.64706 9211.76471 72.11765 110 0 - - 73.05882 78.82353 9305.88235 73.05882 110 0 - - 73.05882 78.82353 9305.88235 73.05882 110 0 - + 72.11765 77.64706 9211.76471 72.11765 110 1 - + 73.05882 78.82353 9305.88235 73.05882 110 1 - + 73.05882 78.82353 9305.88235 73.05882 110 1 - 74.00000 80.00000 9400.00000 74.00000 110 1 - - 74.94118 81.17647 9494.11765 74.94118 110 0 - + 74.94118 81.17647 9494.11765 74.94118 110 1 - 75.88235 82.35294 9588.23529 75.88235 110 1 - 76.82353 83.52941 9682.35294 76.82353 110 1 - - 77.76471 84.70588 9776.47059 77.76471 110 0 - - 77.76471 84.70588 9776.47059 77.76471 110 0 - - 78.70588 85.88235 9870.58824 78.70588 110 0 - - 79.64706 87.05882 9964.70588 79.64706 110 0 - - 80.58824 88.23529 10058.82353 80.58824 110 0 - - 81.52941 89.41176 10152.94118 81.52941 110 0 - + 77.76471 84.70588 9776.47059 77.76471 110 1 - + 77.76471 84.70588 9776.47059 77.76471 110 1 - + 78.70588 85.88235 9870.58824 78.70588 110 1 - + 79.64706 87.05882 9964.70588 79.64706 110 1 - + 80.58824 88.23529 10058.82353 80.58824 110 1 - + 81.52941 89.41176 10152.94118 81.52941 110 1 - 82.47059 90.58824 10247.05882 82.47059 110 1 - 82.47059 90.58824 10247.05882 82.47059 110 1 - 83.41176 91.76471 10341.17647 83.41176 110 1 - - 84.35294 92.94118 10435.29412 84.35294 110 0 - + 84.35294 92.94118 10435.29412 84.35294 110 1 - 85.29412 94.11765 10529.41176 85.29412 110 1 - - 86.23529 95.29412 10623.52941 86.23529 110 0 - - 87.17647 96.47059 10717.64706 87.17647 110 0 - - 87.17647 96.47059 10717.64706 87.17647 110 0 - + 86.23529 95.29412 10623.52941 86.23529 110 1 - + 87.17647 96.47059 10717.64706 87.17647 110 1 - + 87.17647 96.47059 10717.64706 87.17647 110 1 - 88.11765 97.64706 10811.76471 88.11765 110 1 - - 89.05882 98.82353 10905.88235 89.05882 110 0 - - 90.00000 100.00000 11000.00000 90.00000 110 0 - + 89.05882 98.82353 10905.88235 89.05882 110 1 - + 90.00000 100.00000 11000.00000 90.00000 110 1 - 90.94118 101.17647 11094.11765 90.94118 110 1 - - 91.88235 102.35294 11188.23529 91.88235 110 0 - - 91.88235 102.35294 11188.23529 91.88235 110 0 - - 92.82353 103.52941 11282.35294 92.82353 110 0 - - 93.76471 104.70588 11376.47059 93.76471 110 0 - - 94.70588 105.88235 11470.58824 94.70588 110 0 - - 95.64706 107.05882 11564.70588 95.64706 110 0 - + 91.88235 102.35294 11188.23529 91.88235 110 1 - + 91.88235 102.35294 11188.23529 91.88235 110 1 - + 92.82353 103.52941 11282.35294 92.82353 110 1 - + 93.76471 104.70588 11376.47059 93.76471 110 1 - + 94.70588 105.88235 11470.58824 94.70588 110 1 - + 95.64706 107.05882 11564.70588 95.64706 110 1 - 96.58824 108.23529 11658.82353 96.58824 110 1 - 96.58824 108.23529 11658.82353 96.58824 110 1 - 97.52941 109.41176 11752.94118 97.52941 110 1 - - 98.47059 110.58824 11847.05882 98.47059 110 0 - + 98.47059 110.58824 11847.05882 98.47059 110 1 - 99.41176 111.76471 11941.17647 99.41176 110 1 - - 100.35294 112.94118 12035.29412 100.35294 110 0 - + 100.35294 112.94118 12035.29412 100.35294 110 1 - 101.29412 114.11765 12129.41176 101.29412 110 1 - 101.29412 114.11765 12129.41176 101.29412 110 1 - 102.23529 115.29412 12223.52941 102.23529 110 1 - 103.17647 116.47059 12317.64706 103.17647 110 1 - - 104.11765 117.64706 12411.76471 104.11765 110 0 - + 104.11765 117.64706 12411.76471 104.11765 110 1 - 105.05882 118.82353 12505.88235 105.05882 110 1 - 106.00000 120.00000 12600.00000 106.00000 110 1 - [END OF DATA] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-4.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-4.shi index 6fd0da95..d60d673d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-4.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-4.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-4.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-4.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -296,6 +296,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -305,6 +306,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +330,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +341,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +355,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +363,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,8 +382,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -386,7 +391,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,15 +402,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -413,17 +419,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,8 +438,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -441,8 +448,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,15 +458,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -478,6 +486,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +502,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +514,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +523,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,17 +551,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +570,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -567,25 +579,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +662,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +682,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +690,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +774,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -656,7 +783,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +794,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +802,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -683,7 +811,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +822,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +830,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-5.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-5.shd index 74473b60..7f0dc3dc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-5.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-5.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-5.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-5.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -279,6 +279,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -302,7 +303,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -313,8 +314,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -325,7 +328,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -333,17 +336,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -351,8 +355,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -360,7 +364,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -371,15 +375,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -387,17 +392,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -405,8 +411,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -415,8 +421,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -425,15 +431,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -452,6 +459,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -467,10 +475,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -479,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -487,17 +496,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -506,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -514,17 +524,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -533,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -541,25 +552,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -567,16 +635,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -587,6 +655,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,16 +663,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +739,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -621,8 +747,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -630,7 +756,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +775,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -657,7 +784,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -675,8 +803,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1274,7 +1402,7 @@ Status character 209.82850 0.00000 1419.13541 209.82857 110 0 - 211.88567 0.00000 1424.96398 211.88571 110 0 - 213.94283 0.00000 1430.79255 213.94286 110 0 - - 216.00000 0.00000 1436.62113 216.00000 110 0 - + 216.00000 0.00000 1436.62113 216.00000 110 15 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1484,7 +1612,7 @@ Status character 209.82864 0.00000 1419.13541 209.82857 110 15 - 211.88576 0.00000 1424.96398 211.88571 110 15 - 213.94288 0.00000 1430.79255 213.94286 110 15 - - 216.00000 0.00000 1436.62113 216.00000 110 0 - + 216.00000 0.00000 1436.62113 216.00000 110 15 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-5.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-5.shi index 93720d9b..67328e93 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-5.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-5.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-5.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-5.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -278,6 +278,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,7 +302,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -312,8 +313,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -324,7 +327,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -332,17 +335,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -350,8 +354,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -359,7 +363,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -370,15 +374,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -386,17 +391,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,8 +410,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -414,8 +420,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -424,15 +430,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -451,6 +458,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -466,10 +474,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -478,6 +486,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -486,17 +495,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -505,6 +514,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +523,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -532,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,25 +551,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -566,16 +634,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -586,6 +654,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +662,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -620,8 +746,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -629,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -656,7 +783,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +794,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +802,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-6.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-6.shd index 8ffbfe03..d9653a1b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-6.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-6.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-6.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-6.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -279,6 +279,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -302,7 +303,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -313,8 +314,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -325,7 +328,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -333,17 +336,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -351,8 +355,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -360,7 +364,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -371,15 +375,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -387,17 +392,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -405,8 +411,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -415,8 +421,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -425,15 +431,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -452,6 +459,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -467,10 +475,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -479,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -487,17 +496,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -506,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -514,17 +524,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -533,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -541,25 +552,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -567,16 +635,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -587,6 +655,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,16 +663,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +739,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -621,8 +747,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -630,7 +756,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +775,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -657,7 +784,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -675,8 +803,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-6.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-6.shi index 339a38c7..ab8c9c98 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-6.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-6.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-6.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-6.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -278,6 +278,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,7 +302,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -312,8 +313,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -324,7 +327,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -332,17 +335,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -350,8 +354,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -359,7 +363,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -370,15 +374,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -386,17 +391,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,8 +410,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -414,8 +420,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -424,15 +430,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -451,6 +458,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -466,10 +474,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -478,6 +486,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -486,17 +495,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -505,6 +514,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +523,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -532,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,25 +551,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -566,16 +634,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -586,6 +654,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +662,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -620,8 +746,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -629,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -656,7 +783,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +794,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +802,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-7.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-7.shd index b9531db6..6f091731 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-7.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-7.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-7.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-7.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -313,6 +313,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -336,7 +337,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -347,8 +348,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -359,7 +362,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -367,17 +370,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -385,8 +389,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -394,7 +398,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -405,15 +409,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -421,17 +426,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -439,8 +445,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -449,8 +455,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -459,15 +465,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -486,6 +493,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,10 +509,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -513,6 +521,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -521,17 +530,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -540,6 +549,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -548,17 +558,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -567,6 +577,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -575,25 +586,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -601,16 +669,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -621,6 +689,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -628,16 +697,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -648,6 +773,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -655,8 +781,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -664,7 +790,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +801,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -682,8 +809,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -691,7 +818,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -702,6 +829,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -709,8 +837,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-7.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-7.shi index d2bc0675..87ebe61a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-7.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-7.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-7.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-7.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -312,6 +312,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -335,7 +336,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -346,8 +347,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -358,7 +361,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -366,17 +369,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -384,8 +388,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -393,7 +397,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -404,15 +408,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -420,17 +425,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -438,8 +444,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -448,8 +454,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -458,15 +464,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -485,6 +492,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,10 +508,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -512,6 +520,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -520,17 +529,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -539,6 +548,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -547,17 +557,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -566,6 +576,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -574,25 +585,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -600,16 +668,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -620,6 +688,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -627,16 +696,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -647,6 +772,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -654,8 +780,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -663,7 +789,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -674,6 +800,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -681,8 +808,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -690,7 +817,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,6 +828,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -708,8 +836,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-8.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-8.shd index 5e5afc86..073f5b1a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-8.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-8.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-8.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-8.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,8 +381,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -386,7 +390,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,15 +401,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -413,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,8 +437,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -441,8 +447,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,15 +457,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +501,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +522,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,17 +550,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -567,25 +578,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +661,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +689,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +773,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -656,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -683,7 +810,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +829,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-8.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-8.shi index ad940a73..fc02cb8a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-8.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-8.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-8.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-8.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -358,17 +361,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,8 +380,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -385,7 +389,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -396,15 +400,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -412,17 +417,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,8 +436,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -440,8 +446,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -450,15 +456,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,10 +500,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -512,17 +521,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -539,17 +549,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -566,25 +577,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +660,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,16 +688,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +772,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -655,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -682,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +828,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-9.shd b/tests/test_data/dsheetpiling/benchmarks/bm1-9.shd index 6500cd1a..fbdc9a67 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-9.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-9.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-9.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-9.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,8 +381,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -386,7 +390,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,15 +401,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -413,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,8 +437,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -441,8 +447,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,15 +457,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +501,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -513,17 +522,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -540,17 +550,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -567,25 +578,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +661,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +689,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +773,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -656,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -683,7 +810,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +829,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm1-9.shi b/tests/test_data/dsheetpiling/benchmarks/bm1-9.shi index d7589d2e..7cc95fd6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm1-9.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm1-9.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm1-9.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm1-9.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -358,17 +361,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,8 +380,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -385,7 +389,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -396,15 +400,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -412,17 +417,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,8 +436,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -440,8 +446,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -450,15 +456,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,10 +500,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -512,17 +521,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -539,17 +549,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -566,25 +577,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +660,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,16 +688,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +772,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -655,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -682,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +828,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm2-1.shd b/tests/test_data/dsheetpiling/benchmarks/bm2-1.shd index 788f1639..09c0138a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm2-1.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm2-1.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm2-1.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm2-1.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -365,6 +366,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -374,6 +376,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -383,6 +386,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -406,7 +410,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -417,8 +421,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -429,7 +435,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -437,17 +443,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -455,8 +462,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -464,7 +471,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -475,15 +482,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -491,17 +499,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -509,8 +518,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -519,8 +528,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -529,15 +538,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -556,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -571,10 +582,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -583,6 +594,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -591,17 +603,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -610,6 +622,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,17 +631,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -637,6 +650,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -645,25 +659,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +742,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -698,16 +770,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +854,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -734,7 +863,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +882,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -761,7 +891,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -772,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -779,8 +910,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1260,127 +1391,127 @@ Status character 18.00000 10.00000 3800.00000 18.00000 110 0 - 18.80000 11.00000 3880.00000 18.80000 110 0 - 19.60000 12.00000 3960.00000 19.60000 110 0 - - 20.40000 13.00000 4040.00000 20.40000 110 0 - + 20.40000 13.00000 4040.00000 20.40000 110 1 - 21.20000 14.00000 4120.00000 21.20000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - - 22.80000 16.00000 4280.00000 22.80000 110 0 - - 23.60000 17.00000 4360.00000 23.60000 110 0 - + 22.80000 16.00000 4280.00000 22.80000 110 1 - + 23.60000 17.00000 4360.00000 23.60000 110 1 - 24.40000 18.00000 4440.00000 24.40000 110 1 - - 25.20000 19.00000 4520.00000 25.20000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - + 25.20000 19.00000 4520.00000 25.20000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - 26.80000 21.00000 4680.00000 26.80000 110 1 - 27.60000 22.00000 4760.00000 27.60000 110 1 - - 28.40000 23.00000 4840.00000 28.40000 110 0 - - 29.20000 24.00000 4920.00000 29.20000 110 0 - + 28.40000 23.00000 4840.00000 28.40000 110 1 - + 29.20000 24.00000 4920.00000 29.20000 110 1 - 30.00000 25.00000 5000.00000 30.00000 110 1 - 30.00000 25.00000 5000.00000 30.00000 110 1 - - 30.80000 26.00000 5080.00000 30.80000 110 0 - - 31.60000 27.00000 5160.00000 31.60000 110 0 - + 30.80000 26.00000 5080.00000 30.80000 110 1 - + 31.60000 27.00000 5160.00000 31.60000 110 1 - 32.40000 28.00000 5240.00000 32.40000 110 1 - - 33.20000 29.00000 5320.00000 33.20000 110 0 - - 34.00000 30.00000 5400.00000 34.00000 110 0 - - 34.00000 30.00000 5400.00000 34.00000 110 0 - + 33.20000 29.00000 5320.00000 33.20000 110 1 - + 34.00000 30.00000 5400.00000 34.00000 110 1 - + 34.00000 30.00000 5400.00000 34.00000 110 1 - 34.80000 31.00000 5480.00000 34.80000 110 1 - - 35.60000 32.00000 5560.00000 35.60000 110 0 - - 36.40000 33.00000 5640.00000 36.40000 110 0 - - 37.20000 34.00000 5720.00000 37.20000 110 0 - + 35.60000 32.00000 5560.00000 35.60000 110 1 - + 36.40000 33.00000 5640.00000 36.40000 110 1 - + 37.20000 34.00000 5720.00000 37.20000 110 1 - 38.00000 35.00000 5800.00000 38.00000 110 1 - 38.00000 35.00000 5800.00000 38.00000 110 1 - - 38.80000 36.00000 5880.00000 38.80000 110 0 - - 39.60000 37.00000 5960.00000 39.60000 110 0 - + 38.80000 36.00000 5880.00000 38.80000 110 1 - + 39.60000 37.00000 5960.00000 39.60000 110 1 - 40.40000 38.00000 6040.00000 40.40000 110 1 - - 41.20000 39.00000 6120.00000 41.20000 110 0 - - 42.00000 40.00000 6200.00000 42.00000 110 0 - - 42.00000 40.00000 6200.00000 42.00000 110 0 - + 41.20000 39.00000 6120.00000 41.20000 110 1 - + 42.00000 40.00000 6200.00000 42.00000 110 1 - + 42.00000 40.00000 6200.00000 42.00000 110 1 - 42.80000 41.00000 6280.00000 42.80000 110 1 - - 43.60000 42.00000 6360.00000 43.60000 110 0 - - 44.40000 43.00000 6440.00000 44.40000 110 0 - - 45.20000 44.00000 6520.00000 45.20000 110 0 - + 43.60000 42.00000 6360.00000 43.60000 110 1 - + 44.40000 43.00000 6440.00000 44.40000 110 1 - + 45.20000 44.00000 6520.00000 45.20000 110 1 - 46.00000 45.00000 6600.00000 46.00000 110 1 - 46.00000 45.00000 6600.00000 46.00000 110 1 - 46.80000 46.00000 6680.00000 46.80000 110 1 - 47.60000 47.00000 6760.00000 47.60000 110 1 - - 48.40000 48.00000 6840.00000 48.40000 110 0 - + 48.40000 48.00000 6840.00000 48.40000 110 1 - 49.20000 49.00000 6920.00000 49.20000 110 1 - 50.00000 50.00000 7000.00000 50.00000 110 1 - 50.00000 50.00000 7000.00000 50.00000 110 1 - - 50.80000 51.00000 7080.00000 50.80000 110 0 - + 50.80000 51.00000 7080.00000 50.80000 110 1 - 51.60000 52.00000 7160.00000 51.60000 110 1 - 52.40000 53.00000 7240.00000 52.40000 110 1 - - 53.20000 54.00000 7320.00000 53.20000 110 0 - + 53.20000 54.00000 7320.00000 53.20000 110 1 - 54.00000 55.00000 7400.00000 54.00000 110 1 - 54.00000 55.00000 7400.00000 54.00000 110 1 - 54.80000 56.00000 7480.00000 54.80000 110 1 - - 55.60000 57.00000 7560.00000 55.60000 110 0 - - 56.40000 58.00000 7640.00000 56.40000 110 0 - + 55.60000 57.00000 7560.00000 55.60000 110 1 - + 56.40000 58.00000 7640.00000 56.40000 110 1 - 57.20000 59.00000 7720.00000 57.20000 110 1 - 58.00000 60.00000 7800.00000 58.00000 110 1 - 58.00000 60.00000 7800.00000 58.00000 110 1 - - 58.87273 61.09091 7887.27273 58.87273 110 0 - - 59.74545 62.18182 7974.54545 59.74545 110 0 - + 58.87273 61.09091 7887.27273 58.87273 110 1 - + 59.74545 62.18182 7974.54545 59.74545 110 1 - 60.61818 63.27273 8061.81818 60.61818 110 1 - 61.49091 64.36364 8149.09091 61.49091 110 1 - - 62.36364 65.45455 8236.36364 62.36364 110 0 - - 62.36364 65.45455 8236.36364 62.36364 110 0 - - 63.23636 66.54545 8323.63636 63.23636 110 0 - + 62.36364 65.45455 8236.36364 62.36364 110 1 - + 62.36364 65.45455 8236.36364 62.36364 110 1 - + 63.23636 66.54545 8323.63636 63.23636 110 1 - 64.10909 67.63636 8410.90909 64.10909 110 1 - 64.98182 68.72727 8498.18182 64.98182 110 1 - 65.85455 69.81818 8585.45455 65.85455 110 1 - - 66.72727 70.90909 8672.72727 66.72727 110 0 - - 66.72727 70.90909 8672.72727 66.72727 110 0 - - 67.60000 72.00000 8760.00000 67.60000 110 0 - - 68.47273 73.09091 8847.27273 68.47273 110 0 - - 69.34545 74.18182 8934.54545 69.34545 110 0 - - 70.21818 75.27273 9021.81818 70.21818 110 0 - + 66.72727 70.90909 8672.72727 66.72727 110 1 - + 66.72727 70.90909 8672.72727 66.72727 110 1 - + 67.60000 72.00000 8760.00000 67.60000 110 1 - + 68.47273 73.09091 8847.27273 68.47273 110 1 - + 69.34545 74.18182 8934.54545 69.34545 110 1 - + 70.21818 75.27273 9021.81818 70.21818 110 1 - 71.09091 76.36364 9109.09091 71.09091 110 1 - 71.09091 76.36364 9109.09091 71.09091 110 1 - - 71.96364 77.45455 9196.36364 71.96364 110 0 - + 71.96364 77.45455 9196.36364 71.96364 110 1 - 72.83636 78.54545 9283.63636 72.83636 110 1 - - 73.70909 79.63636 9370.90909 73.70909 110 0 - - 74.58182 80.72727 9458.18182 74.58182 110 0 - - 75.45455 81.81818 9545.45455 75.45455 110 0 - - 75.45455 81.81818 9545.45455 75.45455 110 0 - + 73.70909 79.63636 9370.90909 73.70909 110 1 - + 74.58182 80.72727 9458.18182 74.58182 110 1 - + 75.45455 81.81818 9545.45455 75.45455 110 1 - + 75.45455 81.81818 9545.45455 75.45455 110 1 - 76.32727 82.90909 9632.72727 76.32727 110 1 - - 77.20000 84.00000 9720.00000 77.20000 110 0 - + 77.20000 84.00000 9720.00000 77.20000 110 1 - 78.07273 85.09091 9807.27273 78.07273 110 1 - - 78.94545 86.18182 9894.54545 78.94545 110 0 - + 78.94545 86.18182 9894.54545 78.94545 110 1 - 79.81818 87.27273 9981.81818 79.81818 110 1 - 79.81818 87.27273 9981.81818 79.81818 110 1 - - 80.69091 88.36364 10069.09091 80.69091 110 0 - - 81.56364 89.45455 10156.36364 81.56364 110 0 - - 82.43636 90.54545 10243.63636 82.43636 110 0 - - 83.30909 91.63636 10330.90909 83.30909 110 0 - - 84.18182 92.72727 10418.18182 84.18182 110 0 - - 84.18182 92.72727 10418.18182 84.18182 110 0 - + 80.69091 88.36364 10069.09091 80.69091 110 1 - + 81.56364 89.45455 10156.36364 81.56364 110 1 - + 82.43636 90.54545 10243.63636 82.43636 110 1 - + 83.30909 91.63636 10330.90909 83.30909 110 1 - + 84.18182 92.72727 10418.18182 84.18182 110 1 - + 84.18182 92.72727 10418.18182 84.18182 110 1 - 85.05455 93.81818 10505.45455 85.05455 110 1 - 85.92727 94.90909 10592.72727 85.92727 110 1 - 86.80000 96.00000 10680.00000 86.80000 110 1 - - 87.67273 97.09091 10767.27273 87.67273 110 0 - - 88.54545 98.18182 10854.54545 88.54545 110 0 - - 88.54545 98.18182 10854.54545 88.54545 110 0 - - 89.41818 99.27273 10941.81818 89.41818 110 0 - - 90.29091 100.36364 11029.09091 90.29091 110 0 - + 87.67273 97.09091 10767.27273 87.67273 110 1 - + 88.54545 98.18182 10854.54545 88.54545 110 1 - + 88.54545 98.18182 10854.54545 88.54545 110 1 - + 89.41818 99.27273 10941.81818 89.41818 110 1 - + 90.29091 100.36364 11029.09091 90.29091 110 1 - 91.16364 101.45455 11116.36364 91.16364 110 1 - 92.03636 102.54545 11203.63636 92.03636 110 1 - 92.90909 103.63636 11290.90909 92.90909 110 1 - 92.90909 103.63636 11290.90909 92.90909 110 1 - - 93.78182 104.72727 11378.18182 93.78182 110 0 - - 94.65455 105.81818 11465.45455 94.65455 110 0 - - 95.52727 106.90909 11552.72727 95.52727 110 0 - + 93.78182 104.72727 11378.18182 93.78182 110 1 - + 94.65455 105.81818 11465.45455 94.65455 110 1 - + 95.52727 106.90909 11552.72727 95.52727 110 1 - 96.40000 108.00000 11640.00000 96.40000 110 1 - 97.27273 109.09091 11727.27273 97.27273 110 1 - 97.27273 109.09091 11727.27273 97.27273 110 1 - 98.14545 110.18182 11814.54545 98.14545 110 1 - 99.01818 111.27273 11901.81818 99.01818 110 1 - - 99.89091 112.36364 11989.09091 99.89091 110 0 - - 100.76364 113.45455 12076.36364 100.76364 110 0 - - 101.63636 114.54545 12163.63636 101.63636 110 0 - - 101.63636 114.54545 12163.63636 101.63636 110 0 - - 102.50909 115.63636 12250.90909 102.50909 110 0 - + 99.89091 112.36364 11989.09091 99.89091 110 1 - + 100.76364 113.45455 12076.36364 100.76364 110 1 - + 101.63636 114.54545 12163.63636 101.63636 110 1 - + 101.63636 114.54545 12163.63636 101.63636 110 1 - + 102.50909 115.63636 12250.90909 102.50909 110 1 - 103.38182 116.72727 12338.18182 103.38182 110 1 - - 104.25455 117.81818 12425.45455 104.25455 110 0 - + 104.25455 117.81818 12425.45455 104.25455 110 1 - 105.12727 118.90909 12512.72727 105.12727 110 1 - 106.00000 120.00000 12600.00000 106.00000 110 1 - [END OF DATA] @@ -1482,127 +1613,127 @@ Status character 18.00000 10.00000 3800.00000 18.00000 110 0 - 18.80000 11.00000 3880.00000 18.80000 110 0 - 19.60000 12.00000 3960.00000 19.60000 110 0 - - 20.40000 13.00000 4040.00000 20.40000 110 0 - + 20.40000 13.00000 4040.00000 20.40000 110 1 - 21.20000 14.00000 4120.00000 21.20000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - 22.00000 15.00000 4200.00000 22.00000 110 1 - - 22.80000 16.00000 4280.00000 22.80000 110 0 - - 23.60000 17.00000 4360.00000 23.60000 110 0 - + 22.80000 16.00000 4280.00000 22.80000 110 1 - + 23.60000 17.00000 4360.00000 23.60000 110 1 - 24.40000 18.00000 4440.00000 24.40000 110 1 - - 25.20000 19.00000 4520.00000 25.20000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - - 26.00000 20.00000 4600.00000 26.00000 110 0 - + 25.20000 19.00000 4520.00000 25.20000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - + 26.00000 20.00000 4600.00000 26.00000 110 1 - 26.80000 21.00000 4680.00000 26.80000 110 1 - 27.60000 22.00000 4760.00000 27.60000 110 1 - - 28.40000 23.00000 4840.00000 28.40000 110 0 - - 29.20000 24.00000 4920.00000 29.20000 110 0 - + 28.40000 23.00000 4840.00000 28.40000 110 1 - + 29.20000 24.00000 4920.00000 29.20000 110 1 - 30.00000 25.00000 5000.00000 30.00000 110 1 - 30.00000 25.00000 5000.00000 30.00000 110 1 - - 30.80000 26.00000 5080.00000 30.80000 110 0 - - 31.60000 27.00000 5160.00000 31.60000 110 0 - + 30.80000 26.00000 5080.00000 30.80000 110 1 - + 31.60000 27.00000 5160.00000 31.60000 110 1 - 32.40000 28.00000 5240.00000 32.40000 110 1 - - 33.20000 29.00000 5320.00000 33.20000 110 0 - - 34.00000 30.00000 5400.00000 34.00000 110 0 - - 34.00000 30.00000 5400.00000 34.00000 110 0 - + 33.20000 29.00000 5320.00000 33.20000 110 1 - + 34.00000 30.00000 5400.00000 34.00000 110 1 - + 34.00000 30.00000 5400.00000 34.00000 110 1 - 34.80000 31.00000 5480.00000 34.80000 110 1 - - 35.60000 32.00000 5560.00000 35.60000 110 0 - - 36.40000 33.00000 5640.00000 36.40000 110 0 - - 37.20000 34.00000 5720.00000 37.20000 110 0 - + 35.60000 32.00000 5560.00000 35.60000 110 1 - + 36.40000 33.00000 5640.00000 36.40000 110 1 - + 37.20000 34.00000 5720.00000 37.20000 110 1 - 38.00000 35.00000 5800.00000 38.00000 110 1 - 38.00000 35.00000 5800.00000 38.00000 110 1 - - 38.80000 36.00000 5880.00000 38.80000 110 0 - - 39.60000 37.00000 5960.00000 39.60000 110 0 - + 38.80000 36.00000 5880.00000 38.80000 110 1 - + 39.60000 37.00000 5960.00000 39.60000 110 1 - 40.40000 38.00000 6040.00000 40.40000 110 1 - - 41.20000 39.00000 6120.00000 41.20000 110 0 - - 42.00000 40.00000 6200.00000 42.00000 110 0 - - 42.00000 40.00000 6200.00000 42.00000 110 0 - + 41.20000 39.00000 6120.00000 41.20000 110 1 - + 42.00000 40.00000 6200.00000 42.00000 110 1 - + 42.00000 40.00000 6200.00000 42.00000 110 1 - 42.80000 41.00000 6280.00000 42.80000 110 1 - - 43.60000 42.00000 6360.00000 43.60000 110 0 - - 44.40000 43.00000 6440.00000 44.40000 110 0 - - 45.20000 44.00000 6520.00000 45.20000 110 0 - + 43.60000 42.00000 6360.00000 43.60000 110 1 - + 44.40000 43.00000 6440.00000 44.40000 110 1 - + 45.20000 44.00000 6520.00000 45.20000 110 1 - 46.00000 45.00000 6600.00000 46.00000 110 1 - 46.00000 45.00000 6600.00000 46.00000 110 1 - 46.80000 46.00000 6680.00000 46.80000 110 1 - 47.60000 47.00000 6760.00000 47.60000 110 1 - - 48.40000 48.00000 6840.00000 48.40000 110 0 - + 48.40000 48.00000 6840.00000 48.40000 110 1 - 49.20000 49.00000 6920.00000 49.20000 110 1 - 50.00000 50.00000 7000.00000 50.00000 110 1 - 50.00000 50.00000 7000.00000 50.00000 110 1 - - 50.80000 51.00000 7080.00000 50.80000 110 0 - + 50.80000 51.00000 7080.00000 50.80000 110 1 - 51.60000 52.00000 7160.00000 51.60000 110 1 - 52.40000 53.00000 7240.00000 52.40000 110 1 - - 53.20000 54.00000 7320.00000 53.20000 110 0 - + 53.20000 54.00000 7320.00000 53.20000 110 1 - 54.00000 55.00000 7400.00000 54.00000 110 1 - 54.00000 55.00000 7400.00000 54.00000 110 1 - 54.80000 56.00000 7480.00000 54.80000 110 1 - - 55.60000 57.00000 7560.00000 55.60000 110 0 - - 56.40000 58.00000 7640.00000 56.40000 110 0 - + 55.60000 57.00000 7560.00000 55.60000 110 1 - + 56.40000 58.00000 7640.00000 56.40000 110 1 - 57.20000 59.00000 7720.00000 57.20000 110 1 - 58.00000 60.00000 7800.00000 58.00000 110 1 - 58.00000 60.00000 7800.00000 58.00000 110 1 - - 58.87273 61.09091 7887.27273 58.87273 110 0 - - 59.74545 62.18182 7974.54545 59.74545 110 0 - + 58.87273 61.09091 7887.27273 58.87273 110 1 - + 59.74545 62.18182 7974.54545 59.74545 110 1 - 60.61818 63.27273 8061.81818 60.61818 110 1 - 61.49091 64.36364 8149.09091 61.49091 110 1 - - 62.36364 65.45455 8236.36364 62.36364 110 0 - - 62.36364 65.45455 8236.36364 62.36364 110 0 - - 63.23636 66.54545 8323.63636 63.23636 110 0 - + 62.36364 65.45455 8236.36364 62.36364 110 1 - + 62.36364 65.45455 8236.36364 62.36364 110 1 - + 63.23636 66.54545 8323.63636 63.23636 110 1 - 64.10909 67.63636 8410.90909 64.10909 110 1 - 64.98182 68.72727 8498.18182 64.98182 110 1 - 65.85455 69.81818 8585.45455 65.85455 110 1 - - 66.72727 70.90909 8672.72727 66.72727 110 0 - - 66.72727 70.90909 8672.72727 66.72727 110 0 - - 67.60000 72.00000 8760.00000 67.60000 110 0 - - 68.47273 73.09091 8847.27273 68.47273 110 0 - - 69.34545 74.18182 8934.54545 69.34545 110 0 - - 70.21818 75.27273 9021.81818 70.21818 110 0 - + 66.72727 70.90909 8672.72727 66.72727 110 1 - + 66.72727 70.90909 8672.72727 66.72727 110 1 - + 67.60000 72.00000 8760.00000 67.60000 110 1 - + 68.47273 73.09091 8847.27273 68.47273 110 1 - + 69.34545 74.18182 8934.54545 69.34545 110 1 - + 70.21818 75.27273 9021.81818 70.21818 110 1 - 71.09091 76.36364 9109.09091 71.09091 110 1 - 71.09091 76.36364 9109.09091 71.09091 110 1 - - 71.96364 77.45455 9196.36364 71.96364 110 0 - + 71.96364 77.45455 9196.36364 71.96364 110 1 - 72.83636 78.54545 9283.63636 72.83636 110 1 - - 73.70909 79.63636 9370.90909 73.70909 110 0 - - 74.58182 80.72727 9458.18182 74.58182 110 0 - - 75.45455 81.81818 9545.45455 75.45455 110 0 - - 75.45455 81.81818 9545.45455 75.45455 110 0 - + 73.70909 79.63636 9370.90909 73.70909 110 1 - + 74.58182 80.72727 9458.18182 74.58182 110 1 - + 75.45455 81.81818 9545.45455 75.45455 110 1 - + 75.45455 81.81818 9545.45455 75.45455 110 1 - 76.32727 82.90909 9632.72727 76.32727 110 1 - - 77.20000 84.00000 9720.00000 77.20000 110 0 - + 77.20000 84.00000 9720.00000 77.20000 110 1 - 78.07273 85.09091 9807.27273 78.07273 110 1 - - 78.94545 86.18182 9894.54545 78.94545 110 0 - + 78.94545 86.18182 9894.54545 78.94545 110 1 - 79.81818 87.27273 9981.81818 79.81818 110 1 - 79.81818 87.27273 9981.81818 79.81818 110 1 - - 80.69091 88.36364 10069.09091 80.69091 110 0 - - 81.56364 89.45455 10156.36364 81.56364 110 0 - - 82.43636 90.54545 10243.63636 82.43636 110 0 - - 83.30909 91.63636 10330.90909 83.30909 110 0 - - 84.18182 92.72727 10418.18182 84.18182 110 0 - - 84.18182 92.72727 10418.18182 84.18182 110 0 - + 80.69091 88.36364 10069.09091 80.69091 110 1 - + 81.56364 89.45455 10156.36364 81.56364 110 1 - + 82.43636 90.54545 10243.63636 82.43636 110 1 - + 83.30909 91.63636 10330.90909 83.30909 110 1 - + 84.18182 92.72727 10418.18182 84.18182 110 1 - + 84.18182 92.72727 10418.18182 84.18182 110 1 - 85.05455 93.81818 10505.45455 85.05455 110 1 - 85.92727 94.90909 10592.72727 85.92727 110 1 - 86.80000 96.00000 10680.00000 86.80000 110 1 - - 87.67273 97.09091 10767.27273 87.67273 110 0 - - 88.54545 98.18182 10854.54545 88.54545 110 0 - - 88.54545 98.18182 10854.54545 88.54545 110 0 - - 89.41818 99.27273 10941.81818 89.41818 110 0 - - 90.29091 100.36364 11029.09091 90.29091 110 0 - + 87.67273 97.09091 10767.27273 87.67273 110 1 - + 88.54545 98.18182 10854.54545 88.54545 110 1 - + 88.54545 98.18182 10854.54545 88.54545 110 1 - + 89.41818 99.27273 10941.81818 89.41818 110 1 - + 90.29091 100.36364 11029.09091 90.29091 110 1 - 91.16364 101.45455 11116.36364 91.16364 110 1 - 92.03636 102.54545 11203.63636 92.03636 110 1 - 92.90909 103.63636 11290.90909 92.90909 110 1 - 92.90909 103.63636 11290.90909 92.90909 110 1 - - 93.78182 104.72727 11378.18182 93.78182 110 0 - - 94.65455 105.81818 11465.45455 94.65455 110 0 - - 95.52727 106.90909 11552.72727 95.52727 110 0 - + 93.78182 104.72727 11378.18182 93.78182 110 1 - + 94.65455 105.81818 11465.45455 94.65455 110 1 - + 95.52727 106.90909 11552.72727 95.52727 110 1 - 96.40000 108.00000 11640.00000 96.40000 110 1 - 97.27273 109.09091 11727.27273 97.27273 110 1 - 97.27273 109.09091 11727.27273 97.27273 110 1 - 98.14545 110.18182 11814.54545 98.14545 110 1 - 99.01818 111.27273 11901.81818 99.01818 110 1 - - 99.89091 112.36364 11989.09091 99.89091 110 0 - - 100.76364 113.45455 12076.36364 100.76364 110 0 - - 101.63636 114.54545 12163.63636 101.63636 110 0 - - 101.63636 114.54545 12163.63636 101.63636 110 0 - - 102.50909 115.63636 12250.90909 102.50909 110 0 - + 99.89091 112.36364 11989.09091 99.89091 110 1 - + 100.76364 113.45455 12076.36364 100.76364 110 1 - + 101.63636 114.54545 12163.63636 101.63636 110 1 - + 101.63636 114.54545 12163.63636 101.63636 110 1 - + 102.50909 115.63636 12250.90909 102.50909 110 1 - 103.38182 116.72727 12338.18182 103.38182 110 1 - - 104.25455 117.81818 12425.45455 104.25455 110 0 - + 104.25455 117.81818 12425.45455 104.25455 110 1 - 105.12727 118.90909 12512.72727 105.12727 110 1 - 106.00000 120.00000 12600.00000 106.00000 110 1 - [END OF DATA] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm2-1.shi b/tests/test_data/dsheetpiling/benchmarks/bm2-1.shi index 82a1b903..c4093f00 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm2-1.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm2-1.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm2-1.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm2-1.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -364,6 +365,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -373,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -382,6 +385,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -405,7 +409,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -416,8 +420,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -428,7 +434,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -436,17 +442,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -454,8 +461,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -463,7 +470,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -474,15 +481,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -490,17 +498,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -508,8 +517,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -518,8 +527,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -528,15 +537,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -555,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -570,10 +581,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -582,6 +593,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -590,17 +602,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -609,6 +621,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,17 +630,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -636,6 +649,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -644,25 +658,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +741,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +761,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,16 +769,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +845,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +853,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -733,7 +862,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +881,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -760,7 +890,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -771,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -778,8 +909,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm2-2.shd b/tests/test_data/dsheetpiling/benchmarks/bm2-2.shd index 1c3de1b1..611845c8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm2-2.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm2-2.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm2-2.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm2-2.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -306,6 +306,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -315,6 +316,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -338,7 +340,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -349,8 +351,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -361,7 +365,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,17 +373,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -387,8 +392,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -396,7 +401,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -407,15 +412,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -423,17 +429,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -441,8 +448,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -451,8 +458,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -461,15 +468,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -488,6 +496,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -503,10 +512,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -515,6 +524,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -523,17 +533,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -542,6 +552,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -550,17 +561,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -569,6 +580,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -577,25 +589,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -603,16 +672,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -623,6 +692,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -630,16 +700,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -650,6 +776,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -657,8 +784,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -666,7 +793,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -677,6 +804,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -684,8 +812,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -693,7 +821,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -704,6 +832,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -711,8 +840,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1316,7 +1445,7 @@ Lambda passive 1.64180 0.35820 2.35820 0.00000 1.00000 0.00000 6.58347 1.62190 0.37810 2.37810 0.00000 1.00000 0.00000 6.28961 1.60200 0.39800 2.39302 0.00000 1.00000 0.00000 6.08873 - 1.60200 0.39800 2.40297 0.00000 1.00000 0.00000 5.96309 + 1.60200 0.39800 2.40298 0.00000 1.00000 0.00000 5.96309 1.58210 0.41790 2.41790 0.00000 1.00000 0.00000 5.78583 1.56220 0.43780 2.43780 0.00000 1.00000 0.00000 5.56830 1.54230 0.45770 2.45770 0.00000 1.00000 0.00000 5.36967 @@ -1363,8 +1492,8 @@ Lambda passive 0.86570 1.13430 3.13430 0.00000 1.00000 0.00000 2.76320 0.84580 1.15420 3.15420 0.00000 1.00000 0.00000 2.73280 0.82590 1.17410 3.17410 0.00000 1.00000 0.00000 2.70343 - 0.80600 1.19400 3.18903 0.00000 1.00000 0.00000 2.68205 - 0.80600 1.19400 3.19897 0.00000 1.00000 0.00000 2.66809 + 0.80600 1.19400 3.18902 0.00000 1.00000 0.00000 2.68205 + 0.80600 1.19400 3.19898 0.00000 1.00000 0.00000 2.66809 0.78610 1.21390 3.21390 0.00000 1.00000 0.00000 2.64758 0.76620 1.23380 3.23380 0.00000 1.00000 0.00000 2.62101 0.74630 1.25370 3.25370 0.00000 1.00000 0.00000 2.59528 @@ -1376,7 +1505,7 @@ Lambda passive 0.64680 1.35320 3.35320 0.00000 1.00000 0.00000 2.47798 0.62690 1.37310 3.37310 0.00000 1.00000 0.00000 2.45656 0.60700 1.39300 3.38803 0.00000 1.00000 0.00000 2.44090 - 0.60700 1.39300 3.39797 0.00000 1.00000 0.00000 2.43064 + 0.60700 1.39300 3.39798 0.00000 1.00000 0.00000 2.43064 0.58710 1.41290 3.41290 0.00000 1.00000 0.00000 2.41553 0.56720 1.43280 3.43280 0.00000 1.00000 0.00000 2.39587 0.54730 1.45270 3.45270 0.00000 1.00000 0.00000 2.37675 @@ -1387,8 +1516,8 @@ Lambda passive 0.46770 1.53230 3.53230 0.00000 1.00000 0.00000 2.30523 0.44780 1.55220 3.55220 0.00000 1.00000 0.00000 2.28849 0.42790 1.57210 3.57210 0.00000 1.00000 0.00000 2.27218 - 0.40800 1.59200 3.58703 0.00000 1.00000 0.00000 2.26022 - 0.40800 1.59200 3.59697 0.00000 1.00000 0.00000 2.25237 + 0.40800 1.59200 3.58702 0.00000 1.00000 0.00000 2.26022 + 0.40800 1.59200 3.59698 0.00000 1.00000 0.00000 2.25237 0.38810 1.61190 3.61190 0.00000 1.00000 0.00000 2.24077 0.36820 1.63180 3.63180 0.00000 1.00000 0.00000 2.22564 0.34830 1.65170 3.65170 0.00000 1.00000 0.00000 2.21087 @@ -1458,7 +1587,7 @@ Status character 0.35819 0.00000 2.35820 0.35820 110 0 - 0.37809 0.00000 2.37810 0.37810 110 0 - 0.39302 0.00000 2.39302 0.39303 110 0 - - 0.40297 0.00000 2.40297 0.40298 110 0 - + 0.40297 0.00000 2.40298 0.40298 110 0 - 0.41789 0.00000 2.41790 0.41790 110 0 - 0.43779 0.00000 2.43780 0.43780 110 0 - 0.45769 0.00000 2.45770 0.45770 110 0 - @@ -1505,8 +1634,8 @@ Status character 1.13430 0.00000 3.13430 1.13430 110 0 - 1.15420 0.00000 3.15420 1.15420 110 0 - 1.17410 0.00000 3.17410 1.17410 110 0 - - 1.18902 0.00000 3.18903 1.18903 110 0 - - 1.19897 0.00000 3.19897 1.19898 110 0 - + 1.18902 0.00000 3.18902 1.18903 110 0 - + 1.19897 0.00000 3.19898 1.19898 110 0 - 1.21390 0.00000 3.21390 1.21390 110 0 - 1.23380 0.00000 3.23380 1.23380 110 0 - 1.25370 0.00000 3.25370 1.25370 110 0 - @@ -1518,7 +1647,7 @@ Status character 1.35320 0.00000 3.35320 1.35320 110 0 - 1.37310 0.00000 3.37310 1.37310 110 0 - 1.38802 0.00000 3.38803 1.38803 110 0 - - 1.39797 0.00000 3.39797 1.39798 110 0 - + 1.39797 0.00000 3.39798 1.39798 110 0 - 1.41290 0.00000 3.41290 1.41290 110 0 - 1.43280 0.00000 3.43280 1.43280 110 0 - 1.45270 0.00000 3.45270 1.45270 110 0 - @@ -1529,8 +1658,8 @@ Status character 1.53230 0.00000 3.53230 1.53230 110 0 - 1.55220 0.00000 3.55220 1.55220 110 0 - 1.57210 0.00000 3.57210 1.57210 110 0 - - 1.58702 0.00000 3.58703 1.58703 110 0 - - 1.59697 0.00000 3.59697 1.59698 110 0 - + 1.58702 0.00000 3.58702 1.58703 110 0 - + 1.59697 0.00000 3.59698 1.59698 110 0 - 1.61190 0.00000 3.61190 1.61190 110 0 - 1.63180 0.00000 3.63180 1.63180 110 0 - 1.65170 0.00000 3.65170 1.65170 110 0 - @@ -2398,7 +2527,7 @@ Lambda passive 1.64180 1.08417 2.35820 50.02974 46.14567 46.14567 46.14567 1.62190 1.21715 2.37810 49.96462 41.05054 41.05054 41.05054 1.60200 1.35900 2.39302 50.04842 37.81418 37.81418 37.81418 - 1.60200 1.35900 2.40297 49.98752 35.79128 35.79128 35.79128 + 1.60200 1.35900 2.40298 49.98752 35.79128 35.79128 35.79128 1.58210 1.50956 2.41790 50.01989 33.13533 33.13533 33.13533 1.56220 1.66864 2.43780 49.99868 29.96373 29.96373 29.96373 1.54230 1.83597 2.45770 49.97918 27.22217 27.22217 27.22217 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm2-2.shi b/tests/test_data/dsheetpiling/benchmarks/bm2-2.shi index d4f14e95..ee17b7c0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm2-2.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm2-2.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm2-2.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm2-2.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -314,6 +315,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -337,7 +339,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -348,8 +350,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -360,7 +364,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -368,17 +372,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -386,8 +391,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -395,7 +400,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -406,15 +411,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -422,17 +428,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -440,8 +447,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -450,8 +457,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -460,15 +467,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -502,10 +511,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -522,17 +532,17 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,17 +560,17 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -568,6 +579,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -576,25 +588,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +691,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -629,16 +699,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -692,7 +820,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -703,6 +831,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -710,8 +839,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-10.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-10.shd index 0a3d07e6..a0da7f5e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-10.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-10.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-10.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-10.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -393,6 +393,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -416,7 +417,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -427,8 +428,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -439,7 +442,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -447,17 +450,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -465,8 +469,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -474,7 +478,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -485,15 +489,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -501,17 +506,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -519,8 +525,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -529,8 +535,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -539,15 +545,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -566,6 +573,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -581,99 +589,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,16 +749,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,6 +769,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -708,16 +777,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -728,6 +853,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -735,8 +861,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -744,7 +870,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -755,6 +881,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -762,8 +889,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -771,7 +898,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -782,6 +909,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -789,8 +917,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-10.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-10.shi index 55f5a2f3..b941cb13 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-10.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-10.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-10.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-10.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -528,8 +534,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -580,99 +588,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-11.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-11.shd index 0858669b..6d57005a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-11.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-11.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-11.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-11.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -398,6 +398,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -407,6 +408,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -430,7 +432,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -441,8 +443,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -453,7 +457,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -465,13 +469,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -480,7 +485,7 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -499,6 +504,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -507,7 +513,7 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -519,13 +525,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -534,7 +541,7 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -553,6 +560,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -561,7 +569,7 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -580,6 +588,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -601,12 +610,13 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -620,7 +630,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -628,12 +638,13 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.150 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -655,14 +666,15 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 -GeometryDeltaPassivePhreaticLine=0.21 +GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 @@ -671,7 +683,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -680,14 +692,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,9 +765,9 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -715,6 +784,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -723,8 +793,64 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -742,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-11.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-11.shi index bea4118a..e15036ba 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-11.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-11.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-11.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-11.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -397,6 +397,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -406,6 +407,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -429,7 +431,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -440,8 +442,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -452,7 +456,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -464,13 +468,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -479,7 +484,7 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -498,6 +503,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,7 +512,7 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -518,13 +524,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -533,7 +540,7 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -552,6 +559,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,7 +568,7 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -579,6 +587,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -600,12 +609,13 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -619,7 +629,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -627,12 +637,13 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.150 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -654,14 +665,15 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 -GeometryDeltaPassivePhreaticLine=0.21 +GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 @@ -670,7 +682,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -679,14 +691,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -695,9 +764,9 @@ OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -714,6 +783,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,8 +792,64 @@ OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -741,6 +867,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -795,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-12.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-12.shd new file mode 100644 index 00000000..fab1fb10 --- /dev/null +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-12.shd @@ -0,0 +1,3532 @@ +DUMP FILE FOR D-SHEET PILING +============================================================================== +COMPANY : + +DATE : 20-6-2024 +TIME : 11:28:33 +FILENAME : D:\DSerie\applications\DSheetPiling\trunk\data\Benchmarks\bm3-12.shd +CREATED BY : D-Sheet Piling version 24.1.0.1476 +========================== BEGINNING OF DATA ========================== +[DUMPFILE] +[INPUT DATA] +[VERSION] +Soil=1012 +D-Sheet Piling=1034 +[END OF VERSION] + +[VERSION EXTERNALS] +DGSCPTipCalc.dll=21.3.1.35380 +DGSCPTipUI.dll=21.3.1.35380 +[END OF VERSION EXTERNALS] + +[SOIL COLLECTION] + 2 = number of items +[SOIL] +Clay +SoilColor=5953498 +SoilSoilType=3 +SoilGrainType=0 +SoilGamDry=17.00 +SoilGamWet=17.00 +SoilRelativeDensity=72.5 +SoilEModMenard=0.01 +SoilCohesion=2.00 +SoilPhi=20.00 +SoilDelta=7.00 +SoilIsDeltaAngleAutomaticallyCalculated=0 +SoilOCR=1.00 +SoilPermeabKx=1.00000E-03 +SoilStdCohesion=0.00 +SoilStdPhi=0.00 +SoilDistCohesion=3 +SoilDistPhi=3 +SoilLa=0.46 +SoilLn=0.66 +SoilLp=2.36 +SoilUseMenard=0 +SoilUseBrinchHansen=1 +SoilShellFactor=1.00 +SoilLambdaType=2 +SoilLam1=50 +SoilLam2=80 +SoilLam3=90 +SoilKb0=1.00000E+04 +SoilKb1=2.00000E+03 +SoilKb2=8.00000E+02 +SoilKb3=5.00000E+02 +SoilKb4=1.00000E+04 +SoilKo0=1.00000E+04 +SoilKo1=2.00000E+03 +SoilKo2=8.00000E+02 +SoilKo3=5.00000E+02 +SoilKo4=1.00000E+04 +SoilCurKb1=2.00000E+03 +SoilCurKb2=8.00000E+02 +SoilCurKb3=5.00000E+02 +SoilCurKo1=2.00000E+03 +SoilCurKo2=8.00000E+02 +SoilCurKo3=5.00000E+02 +SoilHorizontalBehaviourType=2 +SoilElasticity=1.00000E+03 +SoilDefaultElasticity=1 +[END OF SOIL] +[SOIL] +Sand +SoilColor=9764853 +SoilSoilType=1 +SoilGrainType=0 +SoilGamDry=18.00 +SoilGamWet=20.00 +SoilRelativeDensity=0.0 +SoilEModMenard=0.01 +SoilCohesion=0.00 +SoilPhi=30.00 +SoilDelta=20.00 +SoilIsDeltaAngleAutomaticallyCalculated=0 +SoilOCR=1.00 +SoilPermeabKx=1.00000E-04 +SoilStdCohesion=0.00 +SoilStdPhi=0.00 +SoilDistCohesion=3 +SoilDistPhi=3 +SoilLa=0.29 +SoilLn=0.50 +SoilLp=4.63 +SoilUseMenard=0 +SoilUseBrinchHansen=1 +SoilShellFactor=1.00 +SoilLambdaType=2 +SoilLam1=50 +SoilLam2=80 +SoilLam3=90 +SoilKb0=1.00000E+04 +SoilKb1=1.20000E+04 +SoilKb2=6.00000E+03 +SoilKb3=3.00000E+03 +SoilKb4=1.00000E+04 +SoilKo0=1.00000E+04 +SoilKo1=1.20000E+04 +SoilKo2=6.00000E+03 +SoilKo3=3.00000E+03 +SoilKo4=1.00000E+04 +SoilCurKb1=1.20000E+04 +SoilCurKb2=6.00000E+03 +SoilCurKb3=3.00000E+03 +SoilCurKo1=1.20000E+04 +SoilCurKo2=6.00000E+03 +SoilCurKo3=3.00000E+03 +SoilHorizontalBehaviourType=2 +SoilElasticity=1.00000E+03 +SoilDefaultElasticity=1 +[END OF SOIL] +[END OF SOIL COLLECTION] + +[RUN IDENTIFICATION] +Benchmark 3-12 for D-Sheet Piling +Calculation of the Culmann earth pressure coeff. +Initial stage represents intital situation +[END OF RUN IDENTIFICATION] + +[MODEL] +0 : Sheet piling +1 : C, phi, delta soil parameters +0 : Verification = FALSE +0 : Pile loaded by forces +0 : Pile loaded by user defined soil displacements +0 : Probabilistic = FALSE +0 : Check vertical balance = FALSE +0 : Trildens calculation = FALSE +0 : Diepwand calculation = FALSE +1 : Elastic calculation = TRUE +0 : Wooden sheet piling = FALSE +[END OF MODEL] + +[CPT LIST] +Count=0 +[END OF CPT LIST] + +[SHEET PILING] +0 + 9.40 Level top sheet piling + 24.40 Length + 1 Number of elements +[SHEET PILING ELEMENT] +AZ 26 (S430) +SheetPilingElementMaterialType=1 +SheetPilingElementEI=1.165710E+05 +SheetPilingElementWidth=1.00 +SheetPilingElementLevel=-15.00 +SheetPilingElementHeight=427 +SheetPilingPileWidth=1.00 +SheetPilingElementSectionArea=198 +SheetPilingElementResistingMoment=2600 +SheetPilingElementReductionFactorEI=1.00 +SheetPilingElementNote= +SheetPilingElementMaxCharacteristicMoment=1118.00 +SheetPilingElementMaxPlasticCharacteristicMoment=0.00 +SheetPilingElementKMod=1.00 +SheetPilingElementMaterialFactor=1.00 +sSheetPilingElementReductionFactorMaxMoment=1.00 +DiaphragmWallIsSymmetric=0 +DiaphragmWallPosEIElastoPlastic1=2.000000E+04 +DiaphragmWallNegEIElastoPlastic1=2.000000E+04 +DiaphragmWallPosMomElastic=0.00 +DiaphragmWallNegMomElastic=0.00 +DiaphragmWallPosMomPlastic=0.00 +DiaphragmWallNegMomPlastic=0.00 +DiaphragmWallPosEIElastoPlastic2=2.000000E+04 +DiaphragmWallPosMomElastoPlastic=0.00 +DiaphragmWallNegEIElastoPlastic2=2.000000E+04 +DiaphragmWallNegMomElastoPlastic=0.00 +WoodenSheetPilingElementE=1.000000E+05 +WoodenSheetPilingElementCharacFlexuralStrength=0.00 +WoodenSheetPilingElementKSys=1.15 +WoodenSheetPilingElementKDef=1.00 +WoodenSheetPilingElementPsi2Eff=1.00 +WoodenSheetPilingElementMaterialFactor=1.30 +WoodenSheetPilingElementKModFShort=0.65 +WoodenSheetPilingElementKModFLong=0.50 +WoodenSheetPilingElementKModE=0.80 +[END OF SHEET PILING ELEMENT] +[END OF SHEET PILING] + +[COMBINED WALL] +CombinedWallAreNeutralAxesOfPilesAndSheetPilesCoinciding=1 +CombinedWallDistanceBetweenNeutralAxisPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenNeutralAxisSheetPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenPlasticNeutralAxisPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenPlasticNeutralAxisSheetPilesAndSystemBoundary=0.000 +CombinedWallPilesName= +CombinedWallPilesMaterialType=1 +CombinedWallPilesBottomLevel=-10.00 +CombinedWallPilesEI=1.0000E+05 +CombinedWallPilesWidth=1.00 +CombinedWallPilesMaxMoment=0.00 +CombinedWallPilesMaxPlasticMoment=0.00 +CombinedWallPilesElasticSectionModulus=0.00 +CombinedWallPilesPlasticSectionModulus=0.00 +CombinedWallPilesYieldStrength=0.00 +CombinedWallPilesSectionArea=0.00 +CombinedWallSheetPilesName= +CombinedWallSheetPilesMaterialType=1 +CombinedWallSheetPilesBottomLevel=-5.00 +CombinedWallSheetPilesEI=1.0000E+05 +CombinedWallSheetPilesWidth=1.00 +CombinedWallSheetPilesHeight=1.00 +CombinedWallSheetPilesYieldStrength=0.00 +CombinedWallSheetPilesSectionArea=0.00 +CombinedWallNumberOfSheetPiles=3 +[END OF COMBINED WALL] + +[VERTICAL BALANCE] +SheetPilingQcRep=3.000 +SheetPilingXi=1.39 +[END OF VERTICAL BALANCE] + +[SETTLEMENT BY VIBRATION PARAMS] +SheetPilingNumberOfPilesDrilled=2 +[END OF SETTLEMENT BY VIBRATION PARAMS] + +[RIGID SUPPORTS] + 1 Number of rigid supports + Nr Level Rot stiff. Tr stiff. + 1 3.00 0 1 anker + +[END OF RIGID SUPPORTS] + +[UNIFORM LOADS] + 1 = number of items +[LOAD] +Uniform load +UniformLoadLeft=0.00 +UniformLoadRight=7.00 +UniformLoadPermanent=1 +UniformLoadFavourable=0 +UniformLoadStandardDeviationLeft=0.00 +UniformLoadStandardDeviationRight=0.00 +UniformLoadDistLeft=2 +UniformLoadDistRight=2 +[END OF LOAD] +[END OF UNIFORM LOADS] + +[SURCHARGE LOADS] + 1 = number of items +[LOAD] +Surcharge load +4 +[POINT] +SurchargeLoadDistance=2.00 +SurchargeLoadValue=0.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=2.50 +SurchargeLoadValue=12.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=5.00 +SurchargeLoadValue=12.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=5.50 +SurchargeLoadValue=0.00 +[END OF POINT] +SurchargeLoadPermanent=0 +SurchargeLoadFavourable=0 +SurchargeLoadStandardDeviation=0.00 +SurchargeLoadDistribution=2 +[END OF LOAD] +[END OF SURCHARGE LOADS] + +[WATER] + 10.00 Unit weight of water +[END OF WATER] + +[SOIL PROFILES] + 3 Number of spring characteristics curves + 0 1/0 : Yes/No Unloading curve + 0 1/0 : Yes/No Use Cur values + + 1 Number of soil profiles +Soil Profile Standard + 24087.060 X coordinate + 381333.240 Y coordinate + + 2 Number of soil layers per soil profile + Nr Level Wosp Top Wosp Bott Material Name + 1 10.00 0.00 0.00 Sand + 2 -2.00 0.00 0.00 Clay + +[END OF SOIL PROFILES] + +[SURFACES] + 4 Number of surfaces + 1 1 Surface +2.50 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.50 + 2 1 Surface +2.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.00 + 3 1 Surface +1.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 1.00 + 4 3 Embankment +5.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.50 + 2 1.00 2.50 + 3 4.00 5.00 + +[END OF SURFACES] + +[WATERLEVELS] + 1 Number of Waterlevels + 3 Number of Data per Waterlevel +WL 0 + 0.00 + 0.00 + 2 + +[END OF WATERLEVELS] + +[CONSTRUCTION STAGES] + 2 Number of Construction stages +Initial situation + 2 2 Method Left: C, phi, delta Method Right: C, phi, delta +Surface +2.50 +Embankment +5.00 +WL 0 +WL 0 +Soil Profile Standard +Soil Profile Standard + 0.000 Displacement top sheet piling + 0 Use top displacement + 0 Anchors present in stage + 0 Struts present in stage + 0 Spring supports present in stage + 0 Rigid supports present in stage + 0 Uniform loads in stage + 1 0 Surcharge loads in stage + 1 Surcharge load + 0 Horizontal line loads in stage + 0 Moments in stage + 0 Normal forces in stage + 1 Passive side overrule + +Excavation + 2 2 Method Left: C, phi, delta Method Right: C, phi, delta +Surface +2.00 +Surface +1.00 +WL 0 +WL 0 +Soil Profile Standard +Soil Profile Standard + 0.000 Displacement top sheet piling + 0 Use top displacement + 0 Anchors present in stage + 0 Struts present in stage + 0 Spring supports present in stage + 0 Rigid supports present in stage + 0 Uniform loads in stage + 0 0 Surcharge loads in stage + 0 Horizontal line loads in stage + 0 Moments in stage + 0 Normal forces in stage + 1 Passive side overrule + +[END OF CONSTRUCTION STAGES] + +[CALCULATION OPTIONS PER STAGE] +2 = number of items +[STAGE] +StagePartialFactorSetCUR=0 +StageVerify=0 +StageAnchorFactor=1.000 +StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 +StageVerifyEC7NADNL=0 +StageAnchorFactorEC7NADNL=1.000 +StageVerifyEC7NADBE=0 +[END OF STAGE] +[STAGE] +StagePartialFactorSetCUR=2 +StageVerify=1 +StageAnchorFactor=1.000 +StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 +StageVerifyEC7NADNL=1 +StageAnchorFactorEC7NADNL=1.000 +StageVerifyEC7NADBE=0 +[END OF STAGE] +[END OF CALCULATION OPTIONS PER STAGE] + +[CALCULATION OPTIONS] +CalcFirstStageInitial=1 +CalcMinorNodesOn=1 +CalcReduceDeltas=1 +InputCalculationType=0 +IsVibrationCalculation=0 +AllowableAnchorForceCalculationType=0 +CalcAutoLambdasOn=1 +DesignStage=0 +DesignPileLengthFrom=1.00 +DesignPileLengthTo=2.00 +DesignPileLengthDecrement=1.00 +DesignPileLengthNew=1 +DesignType=0 +DesignEuroCodePartialFactorSet=0 +DesignPartialFactorSetEC7NADNL=0 +DesignEC7NLMethod=0 +DesignEC7BEPartialFactorSet=2 +DesignEC7BEMethod=0 +DesignPartialFactorSet=0 +DesignCURMethod=0 +VerifyType=2 +EuroCodePartialFactorSet=0 +EuroCodeOverallStability=0 +EC7NLMethod=1 +EC7NLOverallPartialFactorSet=3 +EC7NLOverallAnchorFactor=1.000 +EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 +EC7BEOverallStability=0 +EC7BEMethod=0 +EC7BEOverallRiskClass=1 +CURMethod=1 +CUROverallPartialFactorSet=0 +CUROverallAnchorFactor=1.000 +CUROverallStability=0 +CURAnchorForceStage=6 +CURStabilityStage=0 +OverallStabilityType=0 +StabilityExport=0 +StabilityEuroCodePartialFactorSet=0 +StabilityEC7NLPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 +StabilityCURPartialFactorSet=0 +[PARTIAL FACTORS EUROCODE DA1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EUROCODE DA1 SET1] +[PARTIAL FACTORS EUROCODE DA1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EUROCODE DA1 SET2] +[PARTIAL FACTORS EUROCODE DA2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 +[END OF PARTIAL FACTORS EUROCODE DA2] +[PARTIAL FACTORS EUROCODE DA3] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EUROCODE DA3] +[PARTIAL FACTORS EC7 NL 0] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorCohesion=1.300 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 0] +[PARTIAL FACTORS EC7 NL 1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.150 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 1] +[PARTIAL FACTORS EC7 NL 2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.175 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 2] +[PARTIAL FACTORS EC7 NL 3] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.350 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 3] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR I] +[PARTIAL FACTORS CUR II] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR II] +[PARTIAL FACTORS CUR III] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR III] +[END OF CALCULATION OPTIONS] + +[PROBABILISTIC CALCULATION OPTIONS] +ZFunctionType=1 +ZFunctionMobilisation=100.00 +ZFunctionMoment=0.00 +ZFunctionAnchorForce=0.00 +ZFunctionAnchor=0 +[END OF PROBABILISTIC CALCULATION OPTIONS] + +[PROBABILISTIC CONTROL PARAMETERS] +IterationFactor=1.000 +IterationNumber=15 +CriteriaLimit1=0.010000 +CriteriaLimit2=0.010000 +ReliabilityStage=0 +[END OF PROBABILISTIC CONTROL PARAMETERS] + +[END OF INPUT DATA] +[OUTPUT DATA] +[CALCULATION TYPE] +Standard +[END OF CALCULATION TYPE] +[SHEET PILE ELEMENTS] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +Elastic stiffness EI including reduction factor +Stiffness EI 2nd branch positive of M-Kappa diagram +Stiffness EI 2nd branch negative of M-Kappa diagram +Stiffness EI 3rd branch positive of M-Kappa diagram +Stiffness EI 3rd branch negative of M-Kappa diagram +Maximum allowed elastic moment including reduction factor +Maximum allowed plastic moment including reduction factor +Start co-ordinate +End co-ordinate +Reduction factor on EI +Reduction factor on moment +Maximum allowed moment short term wooden pile +Maximum allowed moment long term wooden pile +Wooden height factor +Stiffness EI at SLS for wooden sheet pile +Stiffness EI at ULS for wooden sheet pile +Explanation of reduction +[END OF COLUMN INDICATION] +[DATA] + 116571.00000 20000.00000 20000.00000 20000.00000 20000.00000 1118.000 0.000 9.40 -15.00 1.00 1.00 0.000 0.000 0.811 259.51494 519.02989 '-' +[END OF DATA] +[END OF TABLE] +[END OF SHEET PILE ELEMENTS] +[POINTS ON SHEETPILE] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Depth +[END OF COLUMN INDICATION] +[DATA] + 9.40000 + 9.18667 + 8.97333 + 8.76000 + 8.54667 + 8.33333 + 8.33333 + 8.12000 + 7.90667 + 7.69333 + 7.48000 + 7.26667 + 7.26667 + 7.05333 + 6.84000 + 6.62667 + 6.41333 + 6.20000 + 6.20000 + 5.98667 + 5.77333 + 5.56000 + 5.34667 + 5.13333 + 5.13333 + 4.92000 + 4.70667 + 4.49333 + 4.28000 + 4.06667 + 4.06667 + 3.85333 + 3.64000 + 3.42667 + 3.21333 + 3.00000 + 3.00000 + 2.90000 + 2.80000 + 2.70000 + 2.60000 + 2.50000 + 2.50000 + 2.40000 + 2.30000 + 2.20000 + 2.10000 + 2.00000 + 2.00000 + 1.80000 + 1.60000 + 1.40000 + 1.20000 + 1.00000 + 1.00000 + 0.80000 + 0.60000 + 0.40000 + 0.20000 + 0.00000 + 0.00000 + -0.20000 + -0.40000 + -0.60000 + -0.80000 + -1.00000 + -1.00000 + -1.20000 + -1.40000 + -1.60000 + -1.80000 + -2.00000 + -2.00000 + -2.23636 + -2.47273 + -2.70909 + -2.94545 + -3.18182 + -3.18182 + -3.41818 + -3.65455 + -3.89091 + -4.12727 + -4.36364 + -4.36364 + -4.60000 + -4.83636 + -5.07273 + -5.30909 + -5.54545 + -5.54545 + -5.78182 + -6.01818 + -6.25455 + -6.49091 + -6.72727 + -6.72727 + -6.96364 + -7.20000 + -7.43636 + -7.67273 + -7.90909 + -7.90909 + -8.14545 + -8.38182 + -8.61818 + -8.85455 + -9.09091 + -9.09091 + -9.32727 + -9.56364 + -9.80000 + -10.03636 + -10.27273 + -10.27273 + -10.50909 + -10.74545 + -10.98182 + -11.21818 + -11.45455 + -11.45455 + -11.69091 + -11.92727 + -12.16364 + -12.40000 + -12.63636 + -12.63636 + -12.87273 + -13.10909 + -13.34545 + -13.58182 + -13.81818 + -13.81818 + -14.05455 + -14.29091 + -14.52727 + -14.76364 + -15.00000 +[END OF DATA] +[END OF TABLE] +[END OF POINTS ON SHEETPILE] +[CONSTRUCTION STAGE] +StageNumber=1 +CalculationStatus=0 +IterationCount=2 +PartialFactorSet=4 +[SURCHARGE DATA] +[TABLE] +DataCount=4 +[COLUMN INDICATION] +Index +Side (0=left, 1=right) +Distance +Load +Is permanent (0=false, 1=true) +Is favorable (0=false, 1=true) +[END OF COLUMN INDICATION] +[DATA] + 0 0 2.00 0.00 1 1 + 0 0 2.50 12.00 1 1 + 0 0 5.00 12.00 1 1 + 0 0 5.50 0.00 1 1 +[END OF DATA] +[END OF TABLE] +[END OF SURCHARGE DATA] +[PASSIVE SIDE DATA] + 0 : IsPassiveSideDeterminedAutomatically + 1 : IsLeftSidePassive + 0 : IsPassiveSideRelevant +[END OF PASSIVE SIDE DATA] +[SOIL COLLAPSE DATA] + 28.98 : Percentage mobilized resistance left + 18.01 : Percentage mobilized resistance right + 1361.78 : Effective left + 1361.78 : Effective right + 1125.00 : Water pressure left + 1125.00 : Water pressure right + 4698.72 : Max effective resistance left + 7562.82 : Max effective resistance right + 0.00 : Max moment left + 0.00 : Max moment right + 0.00 : Max mobilized moment left + 0.00 : Max mobilized moment right + 205.05 : Vertical force left + 205.05 : Vertical force right + 0.0 : Max mobilized moment percentage left + 0.0 : Max mobilized moment percentage right + 9.40 : Level of single support + 1 : Node of single support + 0 : Moment present + 1 : IsLeftSidePassive +[END OF SOIL COLLAPSE DATA] +[MOMENTS FORCES DISPLACEMENTS] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Moment +Shear force +Displacements +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 -0.00022 + 0.00000 0.00000 -0.00021 + 0.00000 0.00000 -0.00021 + 0.00000 0.00000 -0.00021 + 0.00000 0.00000 -0.00020 + 0.00000 0.00000 -0.00020 + 0.00000 0.00000 -0.00020 + 0.00000 0.00000 -0.00020 + 0.00000 0.00000 -0.00019 + 0.00000 0.00000 -0.00019 + 0.00000 0.00000 -0.00019 + 0.00000 0.00000 -0.00018 + 0.00000 0.00000 -0.00018 + 0.00000 0.00000 -0.00018 + 0.00000 0.00000 -0.00018 + 0.00000 0.00000 -0.00017 + 0.00000 0.00000 -0.00017 + 0.00000 0.00000 -0.00017 + 0.00000 0.00000 -0.00017 + 0.00000 0.00000 -0.00016 + 0.00000 0.00000 -0.00016 + 0.00000 0.00000 -0.00016 + 0.00000 0.00000 -0.00015 + 0.00000 0.00000 -0.00015 + 0.00000 0.00000 -0.00015 + 0.00000 0.00000 -0.00015 + 0.00000 0.00000 -0.00014 + 0.00000 0.00000 -0.00014 + 0.00000 0.00000 -0.00014 + 0.00000 0.00000 -0.00013 + 0.00000 0.00000 -0.00013 + 0.00000 0.00000 -0.00013 + 0.00000 0.00000 -0.00013 + 0.00000 0.00000 -0.00012 + 0.00000 0.00000 -0.00012 + 0.00000 0.00000 -0.00012 + 0.00000 0.00000 -0.00012 + 0.00000 0.00000 -0.00012 + 0.00000 0.00000 -0.00011 + 0.00000 0.00000 -0.00011 + 0.00000 0.00000 -0.00011 + 0.00000 0.00000 -0.00011 + 0.00000 0.00000 -0.00011 + -0.00001 -0.00015 -0.00011 + -0.00003 -0.00040 -0.00011 + -0.00009 -0.00065 -0.00010 + -0.00016 -0.00090 -0.00010 + -0.00029 -0.00172 -0.00010 + -0.00029 -0.00172 -0.00010 + -0.00009 0.00220 -0.00010 + 0.00030 0.00174 -0.00009 + 0.00060 0.00129 -0.00009 + 0.00082 0.00085 -0.00009 + 0.00065 -0.00395 -0.00009 + 0.00065 -0.00395 -0.00009 + 0.00046 0.00043 -0.00008 + 0.00051 0.00004 -0.00008 + 0.00048 -0.00035 -0.00008 + 0.00037 -0.00073 -0.00008 + 0.00002 -0.00358 -0.00008 + 0.00002 -0.00358 -0.00008 + -0.00003 0.00131 -0.00007 + 0.00020 0.00096 -0.00007 + 0.00035 0.00061 -0.00007 + 0.00044 0.00028 -0.00007 + 0.00024 -0.00345 -0.00007 + 0.00024 -0.00345 -0.00007 + -0.00005 -0.00054 -0.00007 + -0.00019 -0.00085 -0.00006 + -0.00039 -0.00116 -0.00006 + -0.00065 -0.00145 -0.00006 + -0.00110 -0.00366 -0.00006 + -0.00110 -0.00366 -0.00006 + -0.00119 0.00125 -0.00006 + -0.00090 0.00120 -0.00005 + -0.00062 0.00115 -0.00005 + -0.00036 0.00110 -0.00005 + -0.00034 -0.00196 -0.00004 + -0.00034 -0.00196 -0.00004 + -0.00038 0.00073 -0.00004 + -0.00021 0.00069 -0.00003 + -0.00005 0.00067 -0.00003 + 0.00010 0.00064 -0.00002 + 0.00015 -0.00074 -0.00002 + 0.00015 -0.00074 -0.00002 + 0.00014 0.00036 -0.00001 + 0.00023 0.00035 -0.00001 + 0.00031 0.00034 -0.00001 + 0.00039 0.00034 0.00000 + 0.00046 0.00015 0.00000 + 0.00046 0.00015 0.00000 + 0.00049 0.00015 0.00001 + 0.00053 0.00016 0.00001 + 0.00057 0.00017 0.00001 + 0.00061 0.00018 0.00002 + 0.00070 0.00084 0.00002 + 0.00070 0.00084 0.00002 + 0.00078 0.00007 0.00002 + 0.00080 0.00009 0.00002 + 0.00082 0.00011 0.00002 + 0.00085 0.00013 0.00003 + 0.00098 0.00138 0.00003 + 0.00098 0.00138 0.00003 + 0.00110 0.00006 0.00003 + 0.00112 0.00009 0.00003 + 0.00114 0.00011 0.00003 + 0.00117 0.00014 0.00002 + 0.00133 0.00179 0.00002 + 0.00133 0.00179 0.00002 + 0.00149 0.00009 0.00002 + 0.00151 0.00010 0.00002 + 0.00154 0.00012 0.00001 + 0.00156 0.00013 0.00001 + 0.00175 0.00204 0.00000 + 0.00175 0.00205 0.00000 + 0.00192 0.00006 0.00000 + 0.00193 0.00005 -0.00001 + 0.00194 0.00004 -0.00002 + 0.00195 0.00001 -0.00003 + 0.00211 0.00209 -0.00004 + 0.00211 0.00209 -0.00004 + 0.00226 -0.00012 -0.00005 + 0.00223 -0.00017 -0.00006 + 0.00218 -0.00023 -0.00007 + 0.00211 -0.00031 -0.00009 + 0.00221 0.00183 -0.00010 + 0.00221 0.00183 -0.00010 + 0.00227 -0.00055 -0.00012 + 0.00212 -0.00067 -0.00014 + 0.00195 -0.00081 -0.00016 + 0.00174 -0.00097 -0.00017 + 0.00167 0.00117 -0.00019 + 0.00167 0.00117 -0.00019 + 0.00155 -0.00138 -0.00022 + 0.00120 -0.00159 -0.00024 + 0.00080 -0.00182 -0.00026 + 0.00034 -0.00208 -0.00028 + 0.00000 0.00000 -0.00030 +[END OF DATA] +[END OF TABLE] +[END OF MOMENTS FORCES DISPLACEMENTS] +[SIDE] +Rightside +[CALCULATION METHOD] +Method c,phi,delta +[END OF CALCULATION METHOD] +[WATER LEVEL] + 0.00 +[END OF WATER LEVEL] +[SURFACE] +3 : Number of surface points + 0.00 2.50 + 1.00 2.50 + 4.00 5.00 +[END OF SURFACE] +[SOIL PROFILE FOR SHEET PILING MODEL] +Soil Profile Standard +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Excess pore top +Excess pore bottom +Unit weight dry +Unit weight saturated +Cohesion +Angle of wall friction (reduced) +Angle of wall friction (not reduced) +Angle of internal friction +Coeff. of active earth pressure +Coeff. of neutral earth pressure +Coeff. of passive earth pressure +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 0.00 0.00 18.00 20.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + -2.00 0.00 0.00 17.00 17.00 2.00 7.00 7.00 20.00 0.46 0.66 2.36 'Clay' +[END OF DATA] +[END OF TABLE] +[MULTILINEAR BRANCHES] +3 : Number of branches for spring characteristics +2 : Number of layers +[MODULUS OF SUBGRADE REACTION] +[TABLE] +DataCount=6 +[COLUMN INDICATION] +Layer +Branch +Modulus of subgrade reaction top +Modulus of subgrade reaction bottom +[END OF COLUMN INDICATION] +[DATA] + 1 1 12000.00000 12000.00000 + 1 2 6000.00000 6000.00000 + 1 3 3000.00000 3000.00000 + 2 1 2000.00000 2000.00000 + 2 2 800.00000 800.00000 + 2 3 500.00000 500.00000 +[END OF DATA] +[END OF TABLE] +[END OF MODULUS OF SUBGRADE REACTION] +[PERCENTAGE OF PASSIVE SOIL PRESSURE] +[TABLE] +DataCount=4 +[COLUMN INDICATION] +Layer +Index +Percentage +[END OF COLUMN INDICATION] +[DATA] + 1 1 50 + 1 2 80 + 2 1 50 + 2 2 80 +[END OF DATA] +[END OF TABLE] +[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] +[END OF MULTILINEAR BRANCHES] +[END OF SOIL PROFILE FOR SHEET PILING MODEL] +[SLIDE PLANE] +[TABLE] +DataCount=96 +[COLUMN INDICATION] +Slide plane position +Theta min +Theta max +Q min +Q max +[END OF COLUMN INDICATION] +[DATA] + 2.45000 71.89400 34.01600 0.12909 0.00629 + 2.35000 71.89400 34.01600 1.16177 0.05658 + 2.25000 71.89400 34.01600 3.22715 0.15715 + 2.15000 70.70900 34.01600 6.34485 0.30802 + 2.05000 65.77200 34.01600 11.36000 0.50918 + 2.00000 63.43400 34.01600 15.18873 0.62861 + 1.90000 59.03600 34.01600 28.24824 0.90520 + 1.70000 57.17300 54.91600 263.94827 2.32993 + 1.50000 62.23600 53.50100 363.50938 3.99244 + 1.30000 64.47700 52.19600 451.00574 6.04651 + 1.10000 65.86400 50.99400 537.69401 8.46772 + 1.00000 66.38500 50.42900 581.58787 9.80933 + 0.90000 66.82900 49.88800 626.06028 11.23510 + 0.70000 67.54600 48.87100 717.10234 14.33063 + 0.50000 68.10100 47.93500 811.32311 17.73882 + 0.30000 68.54500 47.07500 909.01084 21.44631 + 0.10000 68.90700 46.28200 1010.34531 25.44155 + 0.00000 69.06500 45.91000 1062.41888 27.54390 + -0.10000 69.20800 45.55400 1115.21236 29.70495 + -0.30000 69.45900 44.89300 1222.30146 34.16848 + -0.50000 69.67000 44.29000 1331.44991 38.81132 + -0.70000 69.85100 43.74000 1442.70830 43.62411 + -0.90000 70.00700 43.23500 1556.11356 48.59917 + -1.00000 70.07800 42.99900 1613.63018 51.14550 + -1.10000 70.14400 42.77200 1671.69333 53.73008 + -1.30000 70.26400 42.34400 1789.46874 59.01148 + -1.50000 70.37000 41.95000 1909.45622 64.43883 + -1.70000 70.46500 41.58400 2031.66876 70.00827 + -1.90000 70.55100 41.24400 2156.11675 75.71649 + -2.00000 70.59000 41.08300 2219.18173 78.62173 + -2.11818 70.57200 40.95900 2270.81956 83.20820 + -2.35455 70.53600 40.72700 2374.84588 92.52603 + -2.59091 70.57300 40.51300 2476.07934 102.03546 + -2.82727 70.63000 40.31700 2570.77983 111.73481 + -3.06364 70.70500 40.13500 2658.91158 121.62266 + -3.18182 70.75000 40.04900 2700.49949 126.63687 + -3.30000 70.79900 39.99900 2740.42580 131.71104 + -3.53636 70.77200 39.91900 2816.72048 142.09025 + -3.77273 70.66500 39.86000 2893.34559 152.77613 + -4.00909 70.55900 39.82100 2970.84910 163.76751 + -4.24545 70.45500 39.79800 3049.23245 175.06363 + -4.36364 70.40400 39.79300 3088.75451 180.82583 + -4.48182 70.35300 39.79100 3128.49705 186.66408 + -4.71818 70.25300 39.79800 3208.64423 198.56872 + -4.95455 70.15500 39.81800 3289.67528 210.77767 + -5.19091 70.05900 39.84900 3371.59143 223.29125 + -5.42727 69.96500 39.89100 3454.39387 236.10997 + -5.54545 69.91800 39.91500 3496.12780 242.63395 + -5.66364 69.87200 39.94200 3538.08374 249.23447 + -5.90000 69.78100 40.00200 3622.66215 262.66556 + -6.13636 69.69100 40.07100 3708.13016 276.40415 + -6.37273 69.60300 40.14800 3794.48881 290.45125 + -6.60909 69.51700 40.23100 3881.73908 304.80799 + -6.72727 69.47400 40.20200 3925.69887 312.38743 + -6.84545 69.43200 40.23700 3969.88193 319.45733 + -7.08182 69.34800 40.17000 4058.91830 334.30113 + -7.31818 69.26600 40.10600 4148.84909 349.32451 + -7.55455 69.18500 40.04400 4239.67516 364.52734 + -7.79091 69.10600 39.98500 4331.39737 379.90948 + -7.90909 69.06700 39.95700 4377.59479 387.66777 + -8.02727 69.02800 39.92900 4424.01654 395.47084 + -8.26364 68.95100 39.87400 4517.53345 411.21130 + -8.50000 68.87500 39.82200 4611.94889 427.13077 + -8.73636 68.80000 39.77200 4707.26361 443.22916 + -8.97273 68.72700 39.72300 4803.47834 459.50639 + -9.09091 68.69100 39.70000 4851.92343 467.71204 + -9.20909 68.65500 39.67700 4900.59379 475.96236 + -9.44545 68.58400 39.63200 4998.61065 492.59702 + -9.68182 68.51400 39.58800 5097.52960 509.41029 + -9.91818 68.44500 39.54700 5197.35129 526.40211 + -10.15455 68.37700 39.50600 5298.07636 543.57241 + -10.27273 68.34300 39.48700 5348.77786 552.22448 + -10.39091 68.31000 39.46800 5399.70544 560.92115 + -10.62727 68.24400 39.43000 5502.23914 578.44826 + -10.86364 68.17900 39.39400 5605.67805 596.15369 + -11.10000 68.11500 39.35900 5710.02274 614.03741 + -11.33636 68.05200 39.32500 5815.27379 632.09936 + -11.45455 68.02000 39.30900 5868.23938 641.19716 + -11.57273 67.98900 39.29200 5921.43175 650.33950 + -11.80909 67.92800 39.26100 6028.49716 668.75779 + -12.04545 67.86800 39.23000 6136.47054 687.35420 + -12.28182 67.80800 39.20100 6245.35242 706.12870 + -12.51818 67.74900 39.17200 6355.14329 725.08124 + -12.63636 67.72000 39.15800 6410.37975 734.62426 + -12.75455 67.69100 39.14400 6465.84365 744.21179 + -12.99091 67.63400 39.11700 6577.45399 763.52033 + -13.22727 67.57700 39.09100 6689.97477 783.00683 + -13.46364 67.52200 39.06600 6803.40647 802.67126 + -13.70000 67.46700 39.04100 6917.74952 822.51360 + -13.81818 67.44000 39.02900 6975.26296 832.50148 + -13.93636 67.41300 39.01700 7033.00439 842.53382 + -14.17273 67.35900 38.99400 7149.17150 862.73190 + -14.40909 67.30600 38.97200 7266.25129 883.10782 + -14.64545 67.25400 38.95000 7384.24416 903.66155 + -14.88182 67.20300 38.92900 7503.15054 924.39309 + -15.00000 67.17700 38.91800 7562.94641 934.82552 +[END OF DATA] +[END OF TABLE] +[END OF SLIDE PLANE] +[LAMBDAS] +[TABLE] +DataCount=95 +[COLUMN INDICATION] +Position +Vertical stress +Passive hor pressure +Active hor pressure +Lambda neutral +Lambda active +Lambda passive +[END OF COLUMN INDICATION] +[DATA] + 2.40000 1.80153 10.32689 0.50289 1.33075 0.27915 5.73228 + 2.30000 3.61201 20.65377 1.00578 1.32176 0.27845 5.71808 + 2.20000 5.43925 31.17702 1.50867 1.30747 0.27737 5.73186 + 2.10000 7.28911 50.15145 2.01156 1.28879 0.27597 6.88033 + 2.00000 9.16521 76.57463 2.38873 1.26675 0.27469 8.80554 + 2.00000 9.16521 130.59514 2.76590 1.26675 0.27320 12.89958 + 1.80000 13.00032 1178.50012 7.12362 1.21644 0.54796 90.65162 + 1.60000 16.93866 497.80555 8.31257 1.16295 0.49075 29.38872 + 1.40000 20.96130 437.48179 10.27037 1.11032 0.48997 20.87092 + 1.20000 25.04650 433.44135 12.10604 1.06067 0.48334 17.30546 + 1.00000 29.17447 438.93864 13.41606 1.01491 0.47672 15.59701 + 1.00000 29.17447 444.72409 14.25770 1.01491 0.47190 14.71958 + 0.80000 33.32893 455.21031 15.47767 0.97327 0.46439 13.65811 + 0.60000 37.49708 471.10382 17.04095 0.93565 0.45446 12.56375 + 0.40000 41.66917 488.43870 18.53743 0.90179 0.44487 11.72182 + 0.20000 45.83790 506.67234 19.97621 0.87136 0.43580 11.05357 + 0.00000 49.99787 520.73565 21.02352 0.84401 0.42942 10.63640 + 0.00000 49.99787 527.93487 21.61048 0.84401 0.42679 10.42634 + -0.20000 52.54522 535.44549 22.31767 0.82915 0.42473 10.19018 + -0.40000 55.07723 545.74227 23.21418 0.81456 0.42148 9.90867 + -0.60000 57.59208 556.29194 24.06397 0.80044 0.41783 9.65917 + -0.80000 60.08863 567.02629 24.87527 0.78691 0.41398 9.43650 + -1.00000 62.56626 575.16624 25.46331 0.77403 0.41105 9.28483 + -1.00000 62.56626 580.63148 25.84581 0.77403 0.40908 9.18999 + -1.20000 65.02477 588.87705 26.40700 0.76184 0.40611 9.05620 + -1.40000 67.46423 599.93741 27.13674 0.75033 0.40224 8.89267 + -1.60000 69.88494 611.06268 27.84719 0.73949 0.39847 8.74384 + -1.80000 72.28735 622.23994 28.54110 0.72930 0.39483 8.60787 + -2.00000 74.67203 630.64988 29.05248 0.71973 0.39220 8.51357 + -2.00000 74.67203 436.93546 38.80856 0.85725 0.51611 5.81079 + -2.23636 76.75922 440.11134 39.42159 0.84828 0.51357 5.73366 + -2.47273 78.82368 428.29542 40.23219 0.83985 0.51041 5.43359 + -2.70909 80.86659 400.65589 41.03572 0.83192 0.50745 4.95453 + -2.94545 82.88915 372.86514 41.83320 0.82448 0.50469 4.49836 + -3.18182 84.89252 351.89763 42.42798 0.81749 0.50275 4.16981 + -3.18182 84.89252 337.83803 42.93530 0.81749 0.50282 3.95647 + -3.41818 86.87784 322.78519 43.91202 0.81092 0.50545 3.71539 + -3.65455 88.84620 324.18316 45.20949 0.80475 0.50885 3.64881 + -3.89091 90.79865 327.89944 46.50200 0.79895 0.51214 3.61128 + -4.12727 92.73618 331.62189 47.79129 0.79348 0.51535 3.57597 + -4.36364 94.65970 334.41743 48.75705 0.78834 0.51771 3.55088 + -4.36364 94.65970 336.28304 49.40057 0.78834 0.51926 3.53471 + -4.60000 96.57010 339.08423 50.36579 0.78348 0.52155 3.51128 + -4.83636 98.46819 342.82366 51.65325 0.77890 0.52457 3.48157 + -5.07273 100.35474 346.56832 52.94208 0.77456 0.52755 3.45343 + -5.30909 102.23045 350.31801 54.23303 0.77046 0.53050 3.42675 + -5.54545 104.09600 353.13331 55.20293 0.76658 0.53269 3.40765 + -5.54545 104.09600 355.01176 55.85058 0.76658 0.53415 3.39529 + -5.78182 105.95200 357.83174 56.82383 0.76290 0.53632 3.37730 + -6.01818 107.79902 361.59544 58.12478 0.75940 0.53920 3.35435 + -6.25455 109.63761 365.36350 59.43005 0.75608 0.54206 3.33247 + -6.49091 111.46825 369.13575 60.74006 0.75292 0.54491 3.31158 + -6.72727 113.29141 371.96750 64.13369 0.74991 0.56838 3.29654 + -6.72727 113.29141 373.85666 59.82221 0.74991 0.52593 3.28678 + -6.96364 115.10753 376.69234 62.80072 0.74704 0.54558 3.27253 + -7.20000 116.91700 380.47640 63.56046 0.74430 0.54364 3.25424 + -7.43636 118.72020 384.26416 64.31964 0.74168 0.54178 3.23672 + -7.67273 120.51747 388.05550 65.07831 0.73918 0.53999 3.21991 + -7.90909 122.30915 390.90119 65.64702 0.73678 0.53870 3.20776 + -7.90909 122.30915 392.79943 66.02600 0.73678 0.53786 3.19985 + -8.14545 124.09553 395.64849 66.59427 0.73449 0.53664 3.18826 + -8.38182 125.87689 399.44994 67.35161 0.73229 0.53506 3.17334 + -8.61818 127.65351 403.25459 68.10857 0.73019 0.53354 3.15898 + -8.85455 129.42562 407.06230 68.86517 0.72816 0.53208 3.14514 + -9.09091 131.19345 409.92000 69.43242 0.72622 0.53103 3.13511 + -9.09091 131.19345 411.82610 69.81047 0.72622 0.53034 3.12856 + -9.32727 132.95723 414.68672 70.37740 0.72435 0.52932 3.11895 + -9.56364 134.71716 418.50324 71.13307 0.72255 0.52802 3.10653 + -9.80000 136.47341 422.32254 71.88846 0.72081 0.52676 3.09454 + -10.03636 138.22618 426.14454 72.64359 0.71914 0.52554 3.08295 + -10.27273 139.97563 429.01270 73.20979 0.71753 0.52466 3.07452 + -10.27273 139.97563 430.92568 73.58718 0.71753 0.52408 3.06900 + -10.50909 141.72192 433.79641 74.15316 0.71598 0.52323 3.06090 + -10.74545 143.46518 437.62614 74.90761 0.71448 0.52213 3.05040 + -10.98182 145.20557 441.45833 75.66187 0.71303 0.52107 3.04023 + -11.21818 146.94321 445.29291 76.41594 0.71162 0.52004 3.03037 + -11.45455 148.67822 448.17031 76.98138 0.71027 0.51929 3.02318 + -11.45455 148.67822 450.08934 77.35828 0.71027 0.51880 3.01848 + -11.69091 150.41072 452.96902 77.92356 0.70896 0.51807 3.01155 + -11.92727 152.14082 456.81047 78.67712 0.70769 0.51713 3.00255 + -12.16364 153.86862 460.65408 79.43054 0.70646 0.51622 2.99381 + -12.40000 155.59422 464.49984 80.18382 0.70527 0.51534 2.98533 + -12.63636 157.31771 467.38547 80.74869 0.70411 0.51469 2.97912 + -12.63636 157.31771 469.30991 81.12523 0.70411 0.51427 2.97506 + -12.87273 159.03918 472.19758 81.68998 0.70299 0.51365 2.96906 + -13.10909 160.75871 476.04948 82.44288 0.70190 0.51284 2.96127 + -13.34545 162.47637 479.90332 83.19567 0.70084 0.51205 2.95368 + -13.58182 164.19225 483.75909 83.94835 0.69982 0.51128 2.94630 + -13.81818 165.90641 486.65211 84.51280 0.69882 0.51072 2.94089 + -13.81818 165.90641 488.58140 84.88906 0.69882 0.51035 2.93734 + -14.05455 167.61891 491.47624 85.45341 0.69785 0.50981 2.93210 + -14.29091 169.32983 495.33755 86.20580 0.69691 0.50910 2.92528 + -14.52727 171.03921 499.20062 86.95811 0.69599 0.50841 2.91863 + -14.76364 172.74712 503.06543 87.71033 0.69510 0.50774 2.91215 + -15.00000 174.45361 505.96510 88.27445 0.69423 0.50725 2.90739 +[END OF DATA] +[END OF TABLE] +[END OF LAMBDAS] +[PRESSURES] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Horizontal pressure +Pore pressure +Passive pressure +Neutral pressure +Status on branches +Percentage of mobilisation +Status character +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00418 0.00000 0.00450 0.00450 330 0 3 + 2.39610 0.00000 10.32689 2.39739 110 0 1 + 4.77292 0.00000 20.65377 4.77420 110 0 1 + 7.11038 0.00000 31.17702 7.11164 110 0 1 + 9.39291 0.00000 50.15145 9.39415 110 0 1 + 11.01467 0.00000 76.57463 11.01589 110 0 1 + 12.82334 0.00000 130.59514 12.82456 110 0 1 + 15.81290 0.00000 1178.50012 15.81408 110 0 1 + 19.69766 0.00000 497.80555 19.69880 110 0 1 + 23.27270 0.00000 437.48179 23.27380 110 0 1 + 26.56505 0.00000 433.44135 26.56612 110 0 1 + 28.56099 0.00000 438.93864 28.56202 110 0 1 + 30.66246 0.00000 444.72409 30.66349 110 0 1 + 32.43700 0.00000 455.21031 32.43801 110 0 1 + 35.08322 0.00000 471.10382 35.08420 110 0 1 + 37.57592 0.00000 488.43870 37.57688 110 0 1 + 39.94029 0.00000 506.67234 39.94122 110 0 1 + 41.32011 0.00000 520.73565 41.32102 110 0 1 + 42.73538 0.00000 527.93487 42.73629 110 0 1 + 43.56692 2.00000 535.44549 43.56781 110 0 1 + 44.86271 4.00000 545.74227 44.86357 110 0 1 + 46.09796 6.00000 556.29194 46.09881 110 0 1 + 47.28327 8.00000 567.02629 47.28410 110 0 1 + 47.94795 10.00000 575.16624 47.94875 110 0 1 + 48.90313 10.00000 580.63148 48.90393 110 0 1 + 49.53753 12.00000 588.87705 49.53832 110 0 1 + 50.61967 14.00000 599.93741 50.62044 110 0 1 + 51.67872 16.00000 611.06268 51.67948 110 0 1 + 52.71873 18.00000 622.23994 52.71947 110 0 1 + 53.31396 20.00000 630.64988 53.31467 110 0 1 + 64.45963 20.00000 436.93546 64.45975 110 0 1 + 65.11317 22.36364 440.11134 65.11328 110 0 1 + 66.19957 24.72727 428.29542 66.19968 110 0 1 + 67.27447 27.09091 400.65589 67.27457 110 0 1 + 68.34019 29.45455 372.86514 68.34028 110 0 1 + 68.98916 31.81818 351.89763 68.98925 110 0 1 + 69.80434 31.81818 337.83803 69.80442 110 0 1 + 70.45118 34.18182 322.78519 70.45125 110 0 1 + 71.49912 36.54545 324.18316 71.49919 110 0 1 + 72.54337 38.90909 327.89944 72.54343 110 0 1 + 73.58470 41.27273 331.62189 73.58474 110 0 1 + 74.24460 43.63636 334.41743 74.24464 110 0 1 + 75.00021 43.63636 336.28304 75.00025 110 0 1 + 75.66087 46.00000 339.08423 75.66090 110 0 1 + 76.69659 48.36364 342.82366 76.69662 110 0 1 + 77.73120 50.72727 346.56832 77.73121 110 0 1 + 78.76492 53.09091 350.31801 78.76493 110 0 1 + 79.44046 55.45455 353.13331 79.44045 110 22 1 + 80.15367 55.45455 355.01176 80.15367 110 23 1 + 80.83053 57.81818 357.83174 80.83052 110 23 1 + 81.86270 60.18182 361.59544 81.86268 110 23 1 + 82.89460 62.54545 365.36350 82.89457 110 23 1 + 83.92631 64.90909 369.13575 83.92628 110 23 1 + 84.61610 67.27273 371.96750 84.61606 110 23 1 + 85.29838 67.27273 373.85666 85.29834 110 23 1 + 85.98942 69.63636 376.69234 85.98938 110 23 1 + 87.02092 72.00000 380.47640 87.02087 110 23 1 + 88.05243 74.36364 384.26416 88.05238 110 23 1 + 89.08397 76.72727 388.05550 89.08392 110 23 1 + 89.78554 79.09091 390.90119 89.78549 110 23 1 + 90.44461 79.09091 392.79943 90.44456 110 23 1 + 91.14723 81.45455 395.64849 91.14718 110 23 1 + 92.17899 83.81818 399.44994 92.17893 110 23 1 + 93.21083 86.18182 403.25459 93.21078 110 23 1 + 94.24278 88.54545 407.06230 94.24273 110 23 1 + 94.95387 90.90909 409.92000 94.95383 110 23 1 + 95.59505 90.90909 411.82610 95.59501 110 23 1 + 96.30699 93.27273 414.68672 96.30695 110 23 1 + 97.33927 95.63636 418.50324 97.33923 110 23 1 + 98.37165 98.00000 422.32254 98.37163 110 23 1 + 99.40415 100.36364 426.14454 99.40413 110 23 1 + 100.12294 102.72727 429.01270 100.12293 110 23 1 + 100.75001 102.72727 430.92568 100.75001 110 23 1 + 101.46948 105.09091 433.79641 101.46949 110 0 1 + 102.50231 107.45455 437.62614 102.50233 110 0 1 + 103.53525 109.81818 441.45833 103.53529 110 0 1 + 104.56830 112.18182 445.29291 104.56836 110 0 1 + 105.29338 114.54545 448.17031 105.29345 110 0 1 + 105.90909 114.54545 450.08934 105.90917 110 0 1 + 106.63472 116.90909 452.96902 106.63481 110 0 1 + 107.66808 119.27273 456.81047 107.66820 110 0 1 + 108.70155 121.63636 460.65408 108.70169 110 0 1 + 109.73511 124.00000 464.49984 109.73529 110 0 1 + 110.46539 126.36364 467.38547 110.46560 110 0 1 + 111.07180 126.36364 469.30991 111.07201 110 0 1 + 111.80254 128.72727 472.19758 111.80278 110 0 1 + 112.83639 131.09091 476.04948 112.83667 110 0 1 + 113.87034 133.45455 479.90332 113.87065 110 0 1 + 114.90439 135.81818 483.75909 114.90474 110 0 1 + 115.63905 138.18182 486.65211 115.63944 110 0 1 + 116.23771 138.18182 488.58140 116.23810 110 0 1 + 116.97275 140.54545 491.47624 116.97318 110 0 1 + 118.00707 142.90909 495.33755 118.00754 110 0 1 + 119.04148 145.27273 499.20062 119.04199 110 0 1 + 120.07597 147.63636 503.06543 120.07653 110 0 1 + 120.81438 150.00000 505.96510 120.81499 110 0 1 +[END OF DATA] +[END OF TABLE] +[END OF PRESSURES] +[FORCE FROM LAYER] +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Force +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 156.895 'Sand' + -2.00 1204.886 'Clay' +[END OF DATA] +[END OF TABLE] +[END OF FORCE FROM LAYER] +[END OF SIDE] +[SIDE] +Leftside +[CALCULATION METHOD] +Method c,phi,delta +[END OF CALCULATION METHOD] +[WATER LEVEL] + 0.00 +[END OF WATER LEVEL] +[SURFACE] +1 : Number of surface points + 0.00 2.50 +[END OF SURFACE] +[SOIL PROFILE FOR SHEET PILING MODEL] +Soil Profile Standard +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Excess pore top +Excess pore bottom +Unit weight dry +Unit weight saturated +Cohesion +Angle of wall friction (reduced) +Angle of wall friction (not reduced) +Angle of internal friction +Coeff. of active earth pressure +Coeff. of neutral earth pressure +Coeff. of passive earth pressure +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 0.00 0.00 18.00 20.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + -2.00 0.00 0.00 17.00 17.00 2.00 7.00 7.00 20.00 0.46 0.66 2.36 'Clay' +[END OF DATA] +[END OF TABLE] +[MULTILINEAR BRANCHES] +3 : Number of branches for spring characteristics +2 : Number of layers +[MODULUS OF SUBGRADE REACTION] +[TABLE] +DataCount=6 +[COLUMN INDICATION] +Layer +Branch +Modulus of subgrade reaction top +Modulus of subgrade reaction bottom +[END OF COLUMN INDICATION] +[DATA] + 1 1 12000.00000 12000.00000 + 1 2 6000.00000 6000.00000 + 1 3 3000.00000 3000.00000 + 2 1 2000.00000 2000.00000 + 2 2 800.00000 800.00000 + 2 3 500.00000 500.00000 +[END OF DATA] +[END OF TABLE] +[END OF MODULUS OF SUBGRADE REACTION] +[PERCENTAGE OF PASSIVE SOIL PRESSURE] +[TABLE] +DataCount=4 +[COLUMN INDICATION] +Layer +Index +Percentage +[END OF COLUMN INDICATION] +[DATA] + 1 1 50 + 1 2 80 + 2 1 50 + 2 2 80 +[END OF DATA] +[END OF TABLE] +[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] +[END OF MULTILINEAR BRANCHES] +[END OF SOIL PROFILE FOR SHEET PILING MODEL] +[SLIDE PLANE] +[TABLE] +DataCount=96 +[COLUMN INDICATION] +Slide plane position +Theta min +Theta max +Q min +Q max +[END OF COLUMN INDICATION] +[DATA] + 2.45000 71.89400 34.01600 0.12909 0.00629 + 2.35000 71.89400 34.01600 1.16177 0.05658 + 2.25000 71.89400 34.01600 3.22715 0.15715 + 2.15000 71.89400 34.01600 6.32522 0.30802 + 2.05000 71.89400 34.01600 10.45597 0.50918 + 2.00000 71.89400 34.01600 12.90861 0.62861 + 1.90000 71.89400 34.01600 18.58840 0.90520 + 1.70000 68.93000 34.01600 33.84662 1.60925 + 1.50000 65.90700 34.01600 57.75188 2.51445 + 1.30000 63.99900 34.01600 93.75709 3.62081 + 1.10000 66.35200 34.01600 138.84472 4.92833 + 1.00000 67.24100 34.01600 161.97831 5.65752 + 0.90000 67.90100 34.01600 185.82145 6.43700 + 0.70000 75.45900 34.01600 227.57682 8.14683 + 0.50000 74.96600 34.01600 267.83859 10.05781 + 0.30000 74.56100 34.01600 312.04462 12.16995 + 0.10000 74.22600 34.01600 360.23481 14.48325 + 0.00000 74.08000 34.01600 385.83379 15.71533 + -0.10000 73.94800 34.01600 412.20793 16.98653 + -0.30000 73.72000 34.01600 466.60147 19.61273 + -0.50000 73.53100 40.33400 523.20979 22.60957 + -0.70000 73.37200 39.78300 582.05138 26.00531 + -0.90000 73.23700 39.30700 643.13946 29.53045 + -1.00000 73.17600 39.09300 674.52908 31.34045 + -1.10000 73.12000 38.89300 706.48375 33.18160 + -1.30000 73.01900 38.52800 772.09154 36.95619 + -1.50000 72.93100 38.20600 839.96842 40.85221 + -1.70000 72.85300 37.91900 910.11875 44.86810 + -1.90000 72.78400 37.66300 982.54596 49.00261 + -2.00000 72.75200 37.54500 1019.61427 51.11401 + -2.11818 72.64900 37.52200 1041.50947 54.70267 + -2.35455 72.44700 37.48200 1085.94087 62.01315 + -2.59091 72.25200 37.44800 1131.22964 69.50112 + -2.82727 72.36000 37.41800 1173.49901 77.16655 + -3.06364 72.14600 37.39200 1212.09109 85.00941 + -3.18182 72.04000 37.38000 1231.68908 88.99736 + -3.30000 71.93500 37.36900 1251.48816 93.02965 + -3.53636 71.72700 37.35000 1291.68914 101.22727 + -3.77273 71.22800 37.33200 1333.51915 109.60224 + -4.00909 70.63400 37.31800 1381.99988 118.15455 + -4.24545 70.47500 36.87000 1432.87198 126.84788 + -4.36364 70.39800 36.59300 1458.63838 131.21798 + -4.48182 70.32200 36.32100 1484.62531 135.60257 + -4.71818 70.17200 35.79400 1537.26166 144.41460 + -4.95455 70.02600 35.36000 1590.78277 153.30862 + -5.19091 69.88400 34.97900 1645.19026 162.35650 + -5.42727 69.74600 34.61600 1700.48569 171.55788 + -5.54545 69.67800 34.64600 1728.46686 176.21977 + -5.66364 69.61100 34.84400 1756.67057 180.96491 + -5.90000 69.48000 34.98600 1813.74631 190.60265 + -6.13636 69.35200 35.11800 1871.71428 200.42138 + -6.37273 69.22700 35.24100 1930.57580 210.42077 + -6.60909 69.10500 35.35600 1990.33212 220.60052 + -6.72727 69.04500 35.41000 2020.54620 225.75794 + -6.84545 68.98500 35.46400 2050.98444 230.96035 + -7.08182 68.86900 35.56500 2112.53393 241.50004 + -7.31818 68.75500 35.66000 2174.98171 252.21937 + -7.55455 68.64400 35.74900 2238.32886 263.11816 + -7.79091 68.53600 35.83400 2302.57640 274.19624 + -7.90909 68.48200 35.87400 2335.03814 279.80246 + -8.02727 68.43000 35.91300 2367.72535 285.45344 + -8.26364 68.32600 35.98800 2433.77668 296.88965 + -8.50000 68.22500 36.05900 2500.73131 308.50472 + -8.73636 68.12500 36.12700 2568.59015 320.29856 + -8.97273 68.02800 36.00700 2637.35407 332.25145 + -9.09091 67.98000 35.87300 2672.07571 338.25303 + -9.20909 67.93300 35.74000 2707.02393 344.26727 + -9.44545 67.84000 35.47900 2777.60054 356.33454 + -9.68182 67.74900 35.22400 2849.08469 368.45479 + -9.91818 67.66000 35.08700 2921.47716 380.63665 + -10.15455 67.57200 35.16800 2994.77869 392.97094 + -10.27273 67.52900 35.20700 3031.77059 399.20534 + -10.39091 67.48600 35.24500 3068.99002 405.48456 + -10.62727 67.40300 35.31800 3144.11184 418.17740 + -10.86364 67.32000 35.38800 3220.14483 431.04932 + -11.10000 67.24000 35.45500 3297.08967 444.10022 + -11.33636 67.16100 35.51900 3374.94699 457.33000 + -11.45455 67.12200 35.55000 3414.21804 464.01194 + -11.57273 67.08300 35.58000 3453.71744 470.73856 + -11.80909 67.00700 35.63800 3533.40161 484.32580 + -12.04545 66.93200 35.69400 3614.00011 498.09167 + -12.28182 66.85900 35.74800 3695.51351 512.03606 + -12.51818 66.78700 35.79900 3777.94238 526.15893 + -12.63636 66.75200 35.82400 3819.50029 533.28727 + -12.75455 66.71700 35.84900 3861.28727 540.46021 + -12.99091 66.64800 35.89600 3945.54872 554.93983 + -13.22727 66.58000 35.94200 4030.72724 569.59775 + -13.46364 66.51300 35.98600 4116.82335 584.43390 + -13.70000 66.44700 36.02800 4203.83754 599.44825 + -13.81818 66.41500 36.04900 4247.68907 607.02223 + -13.93636 66.38300 36.06900 4291.77030 614.64075 + -14.17273 66.32000 36.10800 4380.62210 630.01135 + -14.40909 66.25800 36.14600 4470.39340 645.56002 + -14.64545 66.19700 36.18300 4561.08466 661.28672 + -14.88182 66.13700 36.21800 4652.69630 677.19142 + -15.00000 66.10700 36.23500 4698.84741 685.21051 +[END OF DATA] +[END OF TABLE] +[END OF SLIDE PLANE] +[LAMBDAS] +[TABLE] +DataCount=95 +[COLUMN INDICATION] +Position +Vertical stress +Passive hor pressure +Active hor pressure +Lambda neutral +Lambda active +Lambda passive +[END OF COLUMN INDICATION] +[DATA] + 2.40000 1.80021 10.32689 0.50289 1.33173 0.27935 5.73648 + 2.30000 3.60170 20.65377 1.00578 1.32554 0.27925 5.73446 + 2.20000 5.40565 30.98066 1.50867 1.31559 0.27909 5.73116 + 2.10000 7.21316 41.30755 2.01156 1.30236 0.27887 5.72670 + 2.00000 9.02511 49.05271 2.38873 1.28641 0.27866 5.72236 + 2.00000 9.02511 56.79788 2.76590 1.28641 0.27840 5.71692 + 1.80000 12.66488 76.29113 3.52023 1.24866 0.27795 6.02384 + 1.60000 16.32776 119.52631 4.52601 1.20646 0.27720 7.32043 + 1.40000 20.01322 180.02601 5.53180 1.16292 0.27641 8.99535 + 1.20000 23.71816 225.43816 6.53758 1.12007 0.27564 9.50487 + 1.00000 27.43803 231.33593 7.29191 1.07914 0.27508 8.72700 + 1.00000 27.43803 238.43141 7.79480 1.07914 0.27475 8.40422 + 0.80000 31.16773 208.77685 8.54914 1.04076 0.27429 6.69849 + 0.60000 34.90238 201.30883 9.55492 1.00521 0.27376 5.76777 + 0.40000 38.63768 221.03018 10.56070 0.97254 0.27333 5.72059 + 0.20000 42.37017 240.95094 11.56648 0.94267 0.27299 5.68681 + 0.00000 46.09718 255.98979 12.32082 0.91543 0.27279 5.66783 + 0.00000 46.09718 263.74142 12.71196 0.91543 0.27263 5.65640 + -0.20000 48.21682 271.96772 13.13103 0.90358 0.27233 5.64052 + -0.40000 50.32785 283.04159 14.98419 0.89143 0.29773 5.62396 + -0.60000 52.42956 294.20794 16.97869 0.87925 0.32384 5.61149 + -0.80000 54.52166 305.44041 17.62570 0.86725 0.32328 5.60218 + -1.00000 56.60416 313.89615 18.10002 0.85556 0.32273 5.59694 + -1.00000 56.60416 319.54673 18.41151 0.85556 0.32232 5.59407 + -1.20000 58.67731 328.03895 18.87294 0.84425 0.32164 5.59056 + -1.40000 60.74151 339.38441 19.48012 0.83337 0.32071 5.58736 + -1.60000 62.79724 350.75162 20.07945 0.82296 0.31975 5.58546 + -1.80000 64.84508 362.13604 20.67252 0.81301 0.31880 5.58463 + -2.00000 66.88561 370.68317 21.11408 0.80352 0.31810 5.58464 + -2.00000 66.88561 185.26701 30.36558 0.95704 0.45114 2.75248 + -2.23636 68.57945 187.97904 30.92894 0.94946 0.45099 2.74104 + -2.47273 70.26488 191.60630 31.67989 0.94214 0.45086 2.72691 + -2.70909 71.94282 178.83198 32.43067 0.93511 0.45078 2.48575 + -2.94545 73.61414 163.27418 33.18130 0.92836 0.45075 2.21797 + -3.18182 75.27963 165.82910 33.74419 0.92188 0.45074 2.21509 + -3.18182 75.27963 167.53074 34.11943 0.92188 0.45075 2.21324 + -3.41818 76.94001 170.08103 34.68223 0.91566 0.45077 2.21057 + -3.65455 78.59595 176.97314 35.43258 0.90971 0.45082 2.25168 + -3.89091 80.24804 205.11079 36.18286 0.90399 0.45089 2.55596 + -4.12727 81.89680 215.22812 36.77947 0.89851 0.44910 2.62804 + -4.36364 83.54271 218.02333 36.97776 0.89324 0.44481 2.62264 + -4.36364 83.54271 219.88941 37.10033 0.89324 0.44191 2.61918 + -4.60000 85.18617 222.69227 37.28167 0.88818 0.43765 2.61418 + -4.83636 86.82757 226.43544 37.62855 0.88332 0.43337 2.60787 + -5.07273 88.46721 230.18553 38.27947 0.87864 0.43270 2.60193 + -5.30909 90.10539 233.94223 38.92895 0.87414 0.43204 2.59632 + -5.54545 91.74236 236.76373 39.44668 0.86981 0.43190 2.59231 + -5.54545 91.74236 238.64676 40.15119 0.86981 0.43571 2.58973 + -5.78182 93.37832 241.47429 40.77506 0.86562 0.43667 2.58598 + -6.01818 95.01348 245.24912 41.54080 0.86159 0.43721 2.58120 + -6.25455 96.64800 249.02949 42.30511 0.85770 0.43772 2.57666 + -6.49091 98.28201 252.81518 43.06815 0.85393 0.43821 2.57234 + -6.72727 99.91566 255.65766 43.63972 0.85030 0.43856 2.56924 + -6.72727 99.91566 257.55431 44.02042 0.85030 0.43878 2.56723 + -6.96364 101.54903 260.40170 44.59099 0.84678 0.43911 2.56430 + -7.20000 103.18223 264.20215 45.35102 0.84337 0.43952 2.56054 + -7.43636 104.81534 268.00715 46.11026 0.84007 0.43992 2.55695 + -7.67273 106.44843 271.81654 46.86877 0.83687 0.44030 2.55350 + -7.90909 108.08155 274.67626 47.43726 0.83377 0.44057 2.55102 + -7.90909 108.08155 276.58410 47.81604 0.83377 0.44074 2.54940 + -8.14545 109.71476 279.44790 48.38394 0.83076 0.44100 2.54704 + -8.38182 111.34811 283.26959 49.14071 0.82784 0.44133 2.54400 + -8.61818 112.98161 287.09509 49.89700 0.82501 0.44164 2.54108 + -8.85455 114.61532 290.92430 50.56992 0.82225 0.44121 2.53827 + -9.09091 116.24925 293.79845 50.78260 0.81957 0.43838 2.53623 + -9.09091 116.24925 295.71572 50.88972 0.81957 0.43623 2.53490 + -9.32727 117.88342 298.59334 51.05381 0.81697 0.43309 2.53295 + -9.56364 119.51786 302.43296 51.27799 0.81443 0.42904 2.53044 + -9.80000 121.15258 306.27584 51.53866 0.81196 0.42540 2.52802 + -10.03636 122.78758 310.12187 52.18350 0.80956 0.42499 2.52568 + -10.27273 124.42288 313.00833 52.75264 0.80722 0.42538 2.52397 + -10.27273 124.42288 314.93365 53.13188 0.80722 0.42563 2.52286 + -10.50909 126.05849 317.82307 53.70046 0.80494 0.42600 2.52123 + -10.74545 127.69440 321.67805 54.45814 0.80272 0.42647 2.51912 + -10.98182 129.33063 325.53585 55.21535 0.80055 0.42693 2.51708 + -11.21818 130.96717 329.39638 55.97213 0.79843 0.42738 2.51511 + -11.45455 132.60403 332.29345 56.53946 0.79637 0.42770 2.51366 + -11.45455 132.60403 334.22569 56.91755 0.79637 0.42791 2.51272 + -11.69091 134.24120 337.12535 57.48451 0.79435 0.42822 2.51134 + -11.92727 135.87868 340.99365 58.24018 0.79238 0.42862 2.50954 + -12.16364 137.51648 344.86439 58.99554 0.79046 0.42901 2.50780 + -12.40000 139.15458 348.73753 59.75060 0.78859 0.42938 2.50612 + -12.63636 140.79298 351.64384 60.31673 0.78675 0.42966 2.50488 + -12.63636 140.79298 353.58215 60.69406 0.78675 0.42984 2.50408 + -12.87273 142.43169 356.49073 61.25994 0.78496 0.43010 2.50289 + -13.10909 144.07070 360.37067 62.01425 0.78320 0.43044 2.50135 + -13.34545 145.71000 364.25276 62.76835 0.78149 0.43078 2.49985 + -13.58182 147.34958 368.13697 63.52224 0.77981 0.43110 2.49839 + -13.81818 148.98945 371.05139 64.08754 0.77817 0.43134 2.49733 + -13.81818 148.98945 372.99503 64.46435 0.77817 0.43149 2.49663 + -14.05455 150.62960 375.91146 65.02948 0.77656 0.43172 2.49560 + -14.29091 152.27002 379.80166 65.78284 0.77499 0.43201 2.49426 + -14.52727 153.91071 383.69377 66.53605 0.77345 0.43230 2.49296 + -14.76364 155.55166 387.58774 67.28912 0.77194 0.43258 2.49170 + -15.00000 157.19286 390.50935 67.85383 0.77046 0.43279 2.49077 +[END OF DATA] +[END OF TABLE] +[END OF LAMBDAS] +[PRESSURES] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Horizontal pressure +Pore pressure +Passive pressure +Neutral pressure +Status on branches +Percentage of mobilisation +Status character +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00450 0.00000 0.00450 0.00450 402 100 P + 2.39868 0.00000 10.32689 2.39739 110 23 1 + 4.77547 0.00000 20.65377 4.77420 110 23 1 + 7.11289 0.00000 30.98066 7.11164 110 23 1 + 9.39538 0.00000 41.30755 9.39415 110 23 1 + 11.02851 0.00000 49.05271 11.02729 110 22 1 + 12.78180 0.00000 56.79788 12.78059 110 23 1 + 15.81525 0.00000 76.29113 15.81408 110 21 1 + 19.69994 0.00000 119.52631 19.69880 110 16 1 + 23.27490 0.00000 180.02601 23.27380 110 13 1 + 26.56719 0.00000 225.43816 26.56612 110 12 1 + 28.60687 0.00000 231.33593 28.60584 110 12 1 + 30.61665 0.00000 238.43141 30.61561 110 13 1 + 32.43901 0.00000 208.77685 32.43801 110 16 1 + 35.08518 0.00000 201.30883 35.08420 110 17 1 + 37.57783 0.00000 221.03018 37.57688 110 17 1 + 39.94215 0.00000 240.95094 39.94122 110 17 1 + 41.34674 0.00000 255.98979 41.34583 110 16 1 + 42.68479 0.00000 263.74142 42.68388 110 16 1 + 43.56870 2.00000 271.96772 43.56781 110 16 1 + 44.86444 4.00000 283.04159 44.86357 110 16 1 + 46.09965 6.00000 294.20794 46.09881 110 16 1 + 47.28492 8.00000 305.44041 47.28410 110 15 1 + 47.98358 10.00000 313.89615 47.98277 110 15 1 + 48.87243 10.00000 319.54673 48.87162 110 15 1 + 49.53911 12.00000 328.03895 49.53832 110 15 1 + 50.62122 14.00000 339.38441 50.62044 110 15 1 + 51.68023 16.00000 350.75162 51.67948 110 15 1 + 52.72020 18.00000 362.13604 52.71947 110 15 1 + 53.33457 20.00000 370.68317 53.33385 110 14 1 + 64.41783 20.00000 185.26701 64.41771 110 35 1 + 65.11339 22.36364 187.97904 65.11328 110 35 1 + 66.19978 24.72727 191.60630 66.19968 110 35 1 + 67.27467 27.09091 178.83198 67.27457 110 38 1 + 68.34037 29.45455 163.27418 68.34028 110 42 1 + 69.01492 31.81818 165.82910 69.01484 110 42 1 + 69.78143 31.81818 167.53074 69.78135 110 42 1 + 70.45133 34.18182 170.08103 70.45125 110 41 1 + 71.49925 36.54545 176.97314 71.49919 110 40 1 + 72.54349 38.90909 205.11079 72.54343 110 35 1 + 73.58479 41.27273 215.22812 73.58474 110 34 1 + 74.25623 43.63636 218.02333 74.25619 110 34 1 + 74.99078 43.63636 219.88941 74.99074 110 34 1 + 75.66093 46.00000 222.69227 75.66090 110 34 1 + 76.69664 48.36364 226.43544 76.69662 110 34 1 + 77.73122 50.72727 230.18553 77.73121 110 34 1 + 78.76493 53.09091 233.94223 78.76493 110 34 1 + 79.44201 55.45455 236.76373 79.44202 110 0 1 + 80.15372 55.45455 238.64676 80.15372 110 0 1 + 80.83051 57.81818 241.47429 80.83052 110 0 1 + 81.86266 60.18182 245.24912 81.86268 110 0 1 + 82.89455 62.54545 249.02949 82.89457 110 0 1 + 83.92625 64.90909 252.81518 83.92628 110 0 1 + 84.61056 67.27273 255.65766 84.61059 110 0 1 + 85.30504 67.27273 257.55431 85.30508 110 0 1 + 85.98934 69.63636 260.40170 85.98938 110 0 1 + 87.02083 72.00000 264.20215 87.02087 110 0 1 + 88.05233 74.36364 268.00715 88.05238 110 0 1 + 89.08387 76.72727 271.81654 89.08392 110 0 1 + 89.77505 79.09091 274.67626 89.77510 110 0 1 + 90.45589 79.09091 276.58410 90.45594 110 0 1 + 91.14713 81.45455 279.44790 91.14718 110 0 1 + 92.17888 83.81818 283.26959 92.17893 110 0 1 + 93.21073 86.18182 287.09509 93.21078 110 0 1 + 94.24268 88.54545 290.92430 94.24273 110 0 1 + 94.93996 90.90909 293.79845 94.94001 110 0 1 + 95.60957 90.90909 295.71572 95.60962 110 0 1 + 96.30691 93.27273 298.59334 96.30695 110 0 1 + 97.33920 95.63636 302.43296 97.33923 110 0 1 + 98.37160 98.00000 306.27584 98.37163 110 0 1 + 99.40412 100.36364 310.12187 99.40413 110 0 1 + 100.10673 102.72727 313.00833 100.10674 110 0 1 + 100.76682 102.72727 314.93365 100.76683 110 0 1 + 101.46949 105.09091 317.82307 101.46949 110 32 1 + 102.50235 107.45455 321.67805 102.50233 110 32 1 + 103.53533 109.81818 325.53585 103.53529 110 32 1 + 104.56841 112.18182 329.39638 104.56836 110 32 1 + 105.27572 114.54545 332.29345 105.27565 110 32 1 + 105.92755 114.54545 334.22569 105.92748 110 32 1 + 106.63491 116.90909 337.12535 106.63481 110 32 1 + 107.66832 119.27273 340.99365 107.66820 110 32 1 + 108.70184 121.63636 344.86439 108.70169 110 32 1 + 109.73546 124.00000 348.73753 109.73529 110 31 1 + 110.44693 126.36364 351.64384 110.44673 110 31 1 + 111.09150 126.36364 353.58215 111.09130 110 31 1 + 111.80301 128.72727 356.49073 111.80278 110 31 1 + 112.83694 131.09091 360.37067 112.83667 110 31 1 + 113.87096 133.45455 364.25276 113.87065 110 31 1 + 114.90509 135.81818 368.13697 114.90474 110 31 1 + 115.62028 138.18182 371.05139 115.61989 110 31 1 + 116.25838 138.18182 372.99503 116.25799 110 31 1 + 116.97361 140.54545 375.91146 116.97318 110 31 1 + 118.00802 142.90909 379.80166 118.00754 110 31 1 + 119.04251 145.27273 383.69377 119.04199 110 31 1 + 120.07710 147.63636 387.58774 120.07653 110 31 1 + 120.79565 150.00000 390.50935 120.79504 110 31 1 +[END OF DATA] +[END OF TABLE] +[END OF PRESSURES] +[FORCE FROM LAYER] +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Force +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 156.899 'Sand' + -2.00 1204.882 'Clay' +[END OF DATA] +[END OF TABLE] +[END OF FORCE FROM LAYER] +[END OF SIDE] +[END OF CONSTRUCTION STAGE] +[POINTS ON SHEETPILE] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Depth +[END OF COLUMN INDICATION] +[DATA] + 9.40000 + 9.18667 + 8.97333 + 8.76000 + 8.54667 + 8.33333 + 8.33333 + 8.12000 + 7.90667 + 7.69333 + 7.48000 + 7.26667 + 7.26667 + 7.05333 + 6.84000 + 6.62667 + 6.41333 + 6.20000 + 6.20000 + 5.98667 + 5.77333 + 5.56000 + 5.34667 + 5.13333 + 5.13333 + 4.92000 + 4.70667 + 4.49333 + 4.28000 + 4.06667 + 4.06667 + 3.85333 + 3.64000 + 3.42667 + 3.21333 + 3.00000 + 3.00000 + 2.90000 + 2.80000 + 2.70000 + 2.60000 + 2.50000 + 2.50000 + 2.40000 + 2.30000 + 2.20000 + 2.10000 + 2.00000 + 2.00000 + 1.80000 + 1.60000 + 1.40000 + 1.20000 + 1.00000 + 1.00000 + 0.80000 + 0.60000 + 0.40000 + 0.20000 + 0.00000 + 0.00000 + -0.20000 + -0.40000 + -0.60000 + -0.80000 + -1.00000 + -1.00000 + -1.20000 + -1.40000 + -1.60000 + -1.80000 + -2.00000 + -2.00000 + -2.23636 + -2.47273 + -2.70909 + -2.94545 + -3.18182 + -3.18182 + -3.41818 + -3.65455 + -3.89091 + -4.12727 + -4.36364 + -4.36364 + -4.60000 + -4.83636 + -5.07273 + -5.30909 + -5.54545 + -5.54545 + -5.78182 + -6.01818 + -6.25455 + -6.49091 + -6.72727 + -6.72727 + -6.96364 + -7.20000 + -7.43636 + -7.67273 + -7.90909 + -7.90909 + -8.14545 + -8.38182 + -8.61818 + -8.85455 + -9.09091 + -9.09091 + -9.32727 + -9.56364 + -9.80000 + -10.03636 + -10.27273 + -10.27273 + -10.50909 + -10.74545 + -10.98182 + -11.21818 + -11.45455 + -11.45455 + -11.69091 + -11.92727 + -12.16364 + -12.40000 + -12.63636 + -12.63636 + -12.87273 + -13.10909 + -13.34545 + -13.58182 + -13.81818 + -13.81818 + -14.05455 + -14.29091 + -14.52727 + -14.76364 + -15.00000 +[END OF DATA] +[END OF TABLE] +[END OF POINTS ON SHEETPILE] +[CONSTRUCTION STAGE] +StageNumber=2 +CalculationStatus=0 +IterationCount=3 +PartialFactorSet=4 +[PASSIVE SIDE DATA] + 0 : IsPassiveSideDeterminedAutomatically + 1 : IsLeftSidePassive + 0 : IsPassiveSideRelevant +[END OF PASSIVE SIDE DATA] +[SOIL COLLAPSE DATA] + 23.26 : Percentage mobilized resistance left + 30.43 : Percentage mobilized resistance right + 961.46 : Effective left + 961.52 : Effective right + 1125.00 : Water pressure left + 1125.00 : Water pressure right + 4133.14 : Max effective resistance left + 3160.06 : Max effective resistance right + 0.00 : Max moment left + 0.00 : Max moment right + 0.00 : Max mobilized moment left + 0.00 : Max mobilized moment right + 131.57 : Vertical force left + 141.34 : Vertical force right + 0.0 : Max mobilized moment percentage left + 0.0 : Max mobilized moment percentage right + 9.40 : Level of single support + 1 : Node of single support + 0 : Moment present + 0 : IsLeftSidePassive +[END OF SOIL COLLAPSE DATA] +[MOMENTS FORCES DISPLACEMENTS] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Moment +Shear force +Displacements +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 -7.82835 + 0.00000 0.00000 -7.61735 + 0.00000 0.00000 -7.40636 + 0.00000 0.00000 -7.19536 + 0.00000 0.00000 -6.98436 + 0.00000 0.00000 -6.77336 + 0.00000 0.00000 -6.77336 + 0.00000 0.00000 -6.56236 + 0.00000 0.00000 -6.35137 + 0.00000 0.00000 -6.14037 + 0.00000 0.00000 -5.92937 + 0.00000 0.00000 -5.71837 + 0.00000 0.00000 -5.71837 + 0.00000 0.00000 -5.50737 + 0.00000 0.00000 -5.29637 + 0.00000 0.00000 -5.08538 + 0.00000 0.00000 -4.87438 + 0.00000 0.00000 -4.66338 + 0.00000 0.00000 -4.66338 + 0.00000 0.00000 -4.45238 + 0.00000 0.00000 -4.24138 + 0.00000 0.00000 -4.03039 + 0.00000 0.00000 -3.81939 + 0.00000 0.00000 -3.60839 + 0.00000 0.00000 -3.60839 + 0.00000 0.00000 -3.39739 + 0.00000 0.00000 -3.18639 + 0.00000 0.00000 -2.97539 + 0.00000 0.00000 -2.76440 + 0.00000 0.00000 -2.55340 + 0.00000 0.00000 -2.55340 + 0.00000 0.00000 -2.34240 + 0.00000 0.00000 -2.13140 + 0.00000 0.00000 -1.92040 + 0.00000 0.00000 -1.70941 + 0.00000 0.00000 -1.49841 + 0.00000 0.00000 -1.49841 + 0.00000 0.00000 -1.39950 + 0.00000 0.00000 -1.30060 + 0.00000 0.00000 -1.20169 + 0.00000 0.00000 -1.10279 + 0.00000 0.00000 -1.00388 + 0.00000 0.00000 -1.00388 + 0.00000 0.00000 -0.90498 + 0.00000 0.00000 -0.80607 + 0.00000 0.00000 -0.70716 + 0.00000 0.00000 -0.60826 + 0.00000 0.00000 -0.50935 + 0.00905 -0.06954 -0.50935 + -0.08190 -1.22421 -0.31166 + -0.57247 -3.75637 -0.11397 + -1.60492 -6.59565 0.08409 + -3.22047 -9.58098 0.28287 + -5.43749 -12.56889 0.48276 + -5.43322 -12.66056 0.48276 + -8.23436 -15.01836 0.68437 + -11.35209 -16.04899 0.88882 + -14.60870 -16.40076 1.09721 + -17.86447 -16.03364 1.31061 + -20.96736 -14.84455 1.53013 + -20.97990 -14.81115 1.53013 + -23.76441 -12.87233 1.75698 + -26.06471 -9.97168 1.99204 + -27.68853 -6.10272 2.23582 + -28.45280 -1.43874 2.48884 + -28.22277 3.84420 2.75163 + -28.21092 3.88308 2.75163 + -26.85264 9.80890 3.02457 + -24.24295 16.40091 3.30679 + -20.24649 23.67970 3.59689 + -14.72414 31.66248 3.89346 + -7.53364 40.36312 4.19510 + -7.53434 40.36068 4.19510 + 1.38175 35.14742 4.55476 + 9.10930 30.29578 4.91373 + 15.73012 25.78337 5.26881 + 21.32461 21.61126 5.61681 + 25.97476 17.79976 5.95453 + 25.97444 17.80439 5.95453 + 29.75857 14.27737 6.27928 + 32.75093 11.09539 6.58976 + 35.02817 8.22442 6.88485 + 36.66236 5.65206 7.16344 + 37.72404 3.38414 7.42441 + 37.72397 3.39110 7.42441 + 38.27874 1.35328 7.66700 + 38.38525 -0.41111 7.89124 + 38.10312 -1.93788 8.09725 + 37.48660 -3.24321 8.28515 + 36.58746 -4.32646 8.45505 + 36.58753 -4.31963 8.45505 + 35.45259 -5.24792 8.60728 + 34.12165 -5.98638 8.74251 + 32.63507 -6.56740 8.86146 + 31.02829 -7.00587 8.96482 + 29.33447 -7.30141 9.05330 + 29.33459 -7.29590 9.05330 + 27.58253 -7.50639 9.12768 + 25.79527 -7.60068 9.18884 + 23.99651 -7.60572 9.23765 + 22.20597 -7.53301 9.27495 + 20.44175 -7.38033 9.30161 + 20.44188 -7.37646 9.30161 + 18.71855 -7.19256 9.31849 + 17.04656 -6.94782 9.32640 + 15.43723 -6.66365 9.32612 + 13.89896 -6.34780 9.31840 + 12.43930 -5.99585 9.30403 + 12.43940 -5.99348 9.30403 + 11.06305 -5.64618 9.28374 + 9.77219 -5.27484 9.25815 + 8.57007 -4.89610 9.22784 + 7.45789 -4.51456 9.19339 + 6.43663 -4.12405 9.15536 + 6.43670 -4.12281 9.15536 + 5.50509 -3.75766 9.11430 + 4.66053 -3.39021 9.07061 + 3.90160 -3.03348 9.02464 + 3.22549 -2.68985 8.97677 + 2.62957 -2.35215 8.92736 + 2.62961 -2.35163 8.92736 + 2.10948 -2.04932 8.87673 + 1.66012 -1.75614 8.82509 + 1.27776 -1.48261 8.77262 + 0.95762 -1.22983 8.71952 + 0.69534 -0.99033 8.66596 + 0.69536 -0.99019 8.66596 + 0.48510 -0.78989 8.61210 + 0.32080 -0.60428 8.55801 + 0.19758 -0.44231 8.50374 + 0.10980 -0.30449 8.44936 + 0.05231 -0.18362 8.39494 + 0.05231 -0.18360 8.39494 + 0.01863 -0.10301 8.34050 + 0.00222 -0.04012 8.28606 + -0.00236 -0.00293 8.23160 + -0.00122 0.00821 8.17715 + 0.00000 0.00000 8.12270 +[END OF DATA] +[END OF TABLE] +[END OF MOMENTS FORCES DISPLACEMENTS] +[SIDE] +Rightside +[CALCULATION METHOD] +Method c,phi,delta +[END OF CALCULATION METHOD] +[WATER LEVEL] + 0.00 +[END OF WATER LEVEL] +[SURFACE] +1 : Number of surface points + 0.00 1.00 +[END OF SURFACE] +[SOIL PROFILE FOR SHEET PILING MODEL] +Soil Profile Standard +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Excess pore top +Excess pore bottom +Unit weight dry +Unit weight saturated +Cohesion +Angle of wall friction (reduced) +Angle of wall friction (not reduced) +Angle of internal friction +Coeff. of active earth pressure +Coeff. of neutral earth pressure +Coeff. of passive earth pressure +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 0.00 0.00 18.00 20.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + -2.00 0.00 0.00 17.00 17.00 2.00 7.00 7.00 20.00 0.46 0.66 2.36 'Clay' +[END OF DATA] +[END OF TABLE] +[MULTILINEAR BRANCHES] +3 : Number of branches for spring characteristics +2 : Number of layers +[MODULUS OF SUBGRADE REACTION] +[TABLE] +DataCount=6 +[COLUMN INDICATION] +Layer +Branch +Modulus of subgrade reaction top +Modulus of subgrade reaction bottom +[END OF COLUMN INDICATION] +[DATA] + 1 1 12000.00000 12000.00000 + 1 2 6000.00000 6000.00000 + 1 3 3000.00000 3000.00000 + 2 1 2000.00000 2000.00000 + 2 2 800.00000 800.00000 + 2 3 500.00000 500.00000 +[END OF DATA] +[END OF TABLE] +[END OF MODULUS OF SUBGRADE REACTION] +[PERCENTAGE OF PASSIVE SOIL PRESSURE] +[TABLE] +DataCount=4 +[COLUMN INDICATION] +Layer +Index +Percentage +[END OF COLUMN INDICATION] +[DATA] + 1 1 50 + 1 2 80 + 2 1 50 + 2 2 80 +[END OF DATA] +[END OF TABLE] +[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] +[END OF MULTILINEAR BRANCHES] +[END OF SOIL PROFILE FOR SHEET PILING MODEL] +[SLIDE PLANE] +[TABLE] +DataCount=84 +[COLUMN INDICATION] +Slide plane position +Theta min +Theta max +Q min +Q max +[END OF COLUMN INDICATION] +[DATA] + 0.90000 71.89400 34.01600 0.51634 0.02514 + 0.70000 71.89400 34.01600 4.64710 0.22630 + 0.50000 71.89400 34.01600 12.90861 0.62861 + 0.30000 71.89400 34.01600 25.30087 1.23208 + 0.10000 71.89400 34.01600 41.82389 2.03671 + 0.00000 71.89400 34.01600 51.63444 2.51445 + -0.10000 71.89400 34.01600 62.24818 3.03131 + -0.30000 71.89400 34.01600 85.19682 4.14885 + -0.50000 71.89400 34.01600 110.44032 5.37814 + -0.70000 71.89400 34.01600 137.97869 6.71918 + -0.90000 71.89400 34.01600 167.81192 8.17197 + -1.00000 71.89400 34.01600 183.58911 8.94028 + -1.10000 71.89400 34.01600 199.94001 9.73652 + -1.30000 71.89400 34.01600 234.36297 11.41282 + -1.50000 71.89400 34.01600 271.08079 13.20088 + -1.70000 71.89400 34.01600 310.09348 15.10069 + -1.90000 71.89400 34.01600 351.40103 17.11225 + -2.00000 71.89400 34.01600 372.91538 18.15994 + -2.11818 71.73600 34.22600 385.94879 19.89935 + -2.35455 71.43100 34.58100 412.66821 23.51426 + -2.59091 71.14100 34.87200 440.26092 27.30966 + -2.82727 70.86400 35.11400 468.73040 31.28476 + -3.06364 70.60000 35.32000 498.07985 35.43902 + -3.18182 70.47200 35.41100 513.08548 37.58321 + -3.30000 70.34800 35.49600 528.31217 39.77205 + -3.53636 70.10600 35.65000 559.43007 44.28355 + -3.77273 69.87400 35.78400 591.43604 48.97333 + -4.00909 69.65200 35.90400 624.33240 53.84121 + -4.24545 69.43900 36.01000 658.12130 58.88707 + -4.36364 69.33600 36.05900 675.35110 61.47671 + -4.48182 69.23500 36.10500 692.80479 64.11081 + -4.71818 69.03800 36.19200 728.38474 69.51233 + -4.95455 68.84800 36.27000 764.86296 75.09159 + -5.19091 68.66600 36.34100 802.24112 80.84852 + -5.42727 68.49000 36.40600 840.52081 86.78308 + -5.54545 68.40500 36.43700 859.99921 89.81695 + -5.66364 68.32100 36.46600 879.70355 92.89522 + -5.90000 68.15800 36.52200 919.79076 99.18493 + -6.13636 68.00000 36.57300 960.78380 105.65217 + -6.37273 67.84700 36.62000 1002.68395 112.29692 + -6.60909 67.70000 36.66500 1045.49244 119.11915 + -6.72727 67.62800 36.68600 1067.23768 122.59682 + -6.84545 67.55800 36.70600 1089.21045 126.11886 + -7.08182 67.42000 36.74400 1133.83909 133.29603 + -7.31818 67.28700 36.78100 1179.37944 140.65064 + -7.55455 67.15700 36.81500 1225.83251 148.18268 + -7.79091 67.03200 36.84600 1273.19928 155.89214 + -7.90909 66.97100 36.86200 1297.22560 159.81340 + -8.02727 66.91100 36.87700 1321.48070 163.77902 + -8.26364 66.79300 36.90500 1370.67765 171.84330 + -8.50000 66.67900 36.93200 1420.79102 180.08498 + -8.73636 66.56800 36.95700 1471.82161 188.50406 + -8.97273 66.46100 36.98200 1523.77024 197.10052 + -9.09091 66.40800 36.99300 1550.08906 201.46526 + -9.20909 66.35600 37.00500 1576.63767 205.87436 + -9.44545 66.25500 37.02600 1630.42463 214.82558 + -9.68182 66.15600 37.04700 1685.13184 223.95417 + -9.91818 66.06000 37.06700 1740.75998 233.26013 + -10.15455 65.96700 37.08600 1797.30972 242.74345 + -10.27273 65.92100 37.09500 1825.93038 247.55163 + -10.39091 65.87600 37.10400 1854.78168 252.40414 + -10.62727 65.78800 37.12200 1913.17649 262.24219 + -10.86364 65.70200 37.13800 1972.49474 272.25759 + -11.10000 65.61800 37.15400 2032.73699 282.45035 + -11.33636 65.53700 37.16900 2093.90381 292.82047 + -11.45455 65.49700 37.17700 2124.83410 298.07203 + -11.57273 65.45700 37.18400 2155.99573 303.36793 + -11.80909 65.38000 37.19800 2219.01326 314.09274 + -12.04545 65.30400 37.21200 2282.95691 324.99490 + -12.28182 65.23100 37.22500 2347.82716 336.07440 + -12.51818 65.15900 37.23700 2413.62448 347.33125 + -12.63636 65.12400 37.24300 2446.87093 353.02618 + -12.75455 65.08900 37.24900 2480.34931 358.76544 + -12.99091 65.02100 37.26100 2548.00211 370.37697 + -13.22727 64.95400 37.27200 2616.58330 382.16585 + -13.46364 64.88900 37.28300 2686.09328 394.13206 + -13.70000 64.82500 37.29300 2756.53247 406.27561 + -13.81818 64.79400 37.29900 2792.10063 412.41388 + -13.93636 64.76300 37.30400 2827.90124 418.59649 + -14.17273 64.70200 37.31300 2900.19997 431.09472 + -14.40909 64.64300 37.32300 2973.42904 443.77027 + -14.64545 64.58500 37.33200 3047.58878 456.62317 + -14.88182 64.52800 37.34100 3122.67955 469.65339 + -15.00000 64.50100 37.34500 3160.57417 476.23501 +[END OF DATA] +[END OF TABLE] +[END OF SLIDE PLANE] +[LAMBDAS] +[TABLE] +DataCount=83 +[COLUMN INDICATION] +Position +Vertical stress +Passive hor pressure +Active hor pressure +Lambda neutral +Lambda active +Lambda passive +[END OF COLUMN INDICATION] +[DATA] + 0.80000 3.60000 20.65377 1.00578 0.27938 0.27938 5.73716 + 0.60000 7.20000 41.30755 2.01156 0.27938 0.27938 5.73716 + 0.40000 10.80000 61.96132 3.01734 0.27938 0.27938 5.73716 + 0.20000 14.40000 82.61510 4.02312 0.27938 0.27938 5.73716 + 0.00000 18.00000 98.10543 4.77746 0.27938 0.27938 5.73716 + 0.00000 18.00000 106.13745 5.16860 0.27938 0.27938 5.73716 + -0.20000 20.00000 114.74319 5.58767 0.27938 0.27938 5.73716 + -0.40000 22.00000 126.21751 6.14644 0.27938 0.27938 5.73716 + -0.60000 24.00000 137.69183 6.70521 0.27938 0.27938 5.73716 + -0.80000 26.00000 149.16615 7.26397 0.27938 0.27938 5.73716 + -1.00000 28.00000 157.77189 7.68305 0.27938 0.27938 5.73716 + -1.00000 28.00000 163.50905 7.96243 0.27938 0.27938 5.73716 + -1.20000 30.00000 172.11479 8.38151 0.27938 0.27938 5.73716 + -1.40000 32.00000 183.58911 8.94028 0.27938 0.27938 5.73716 + -1.60000 34.00000 195.06343 9.49904 0.27938 0.27938 5.73716 + -1.80000 36.00000 206.53775 10.05781 0.27938 0.27938 5.73716 + -2.00000 38.00000 215.14349 10.47689 0.27938 0.27938 5.73716 + -2.00000 38.00000 110.28271 14.71813 0.43511 0.38315 2.87093 + -2.23636 39.65455 113.04370 15.29384 0.44740 0.38568 2.85071 + -2.47273 41.30909 116.73838 16.05747 0.45895 0.38872 2.82597 + -2.70909 42.96364 120.44782 16.81774 0.46979 0.39144 2.80348 + -2.94545 44.61818 124.17073 17.57571 0.47997 0.39391 2.78296 + -3.18182 46.27273 126.97071 18.14312 0.48952 0.39563 2.76871 + -3.18182 46.27273 128.84127 18.52095 0.48952 0.39671 2.75972 + -3.41818 47.92727 131.65265 19.08715 0.49848 0.39825 2.74693 + -3.65455 49.58182 135.40987 19.84137 0.50689 0.40017 2.73104 + -3.89091 51.23636 139.17689 20.59489 0.51479 0.40196 2.71637 + -4.12727 52.89091 142.95307 21.34786 0.52220 0.40362 2.70279 + -4.36364 54.54545 145.79059 21.91232 0.52917 0.40480 2.69325 + -4.36364 54.54545 147.68502 22.28850 0.52917 0.40555 2.68718 + -4.60000 56.20000 150.53058 22.85262 0.53571 0.40663 2.67848 + -4.83636 57.85455 154.33092 23.60454 0.54187 0.40800 2.66757 + -5.07273 59.50909 158.13837 24.35624 0.54766 0.40929 2.65738 + -5.30909 61.16364 161.95256 25.10774 0.55310 0.41050 2.64786 + -5.54545 62.81818 164.81721 25.67127 0.55823 0.41137 2.64111 + -5.54545 62.81818 166.72903 26.04691 0.55823 0.41193 2.63679 + -5.78182 64.47273 169.59973 26.61030 0.56306 0.41274 2.63057 + -6.01818 66.12727 173.43207 27.36139 0.56761 0.41377 2.62270 + -6.25455 67.78182 177.26987 28.11239 0.57190 0.41475 2.61530 + -6.49091 69.43636 181.11286 28.86331 0.57595 0.41568 2.60833 + -6.72727 71.09091 183.99822 29.42645 0.57978 0.41635 2.60336 + -6.72727 71.09091 185.92340 29.80185 0.57978 0.41678 2.60016 + -6.96364 72.74545 188.81349 30.36493 0.58339 0.41741 2.59554 + -7.20000 74.40000 192.67070 31.11565 0.58680 0.41822 2.58966 + -7.43636 76.05455 196.53222 31.86633 0.59003 0.41899 2.58410 + -7.67273 77.70909 200.39789 32.61696 0.59308 0.41973 2.57882 + -7.90909 79.36364 203.29963 33.17991 0.59597 0.42026 2.57504 + -7.90909 79.36364 205.23542 33.55520 0.59597 0.42061 2.57261 + -8.14545 81.01818 208.14097 34.11812 0.59870 0.42112 2.56906 + -8.38182 82.67273 212.01807 34.86865 0.60130 0.42177 2.56455 + -8.61818 84.32727 215.89868 35.61916 0.60375 0.42239 2.56025 + -8.85455 85.98182 219.78265 36.36964 0.60608 0.42299 2.55615 + -9.09091 87.63636 222.69768 36.93249 0.60829 0.42343 2.55321 + -9.09091 87.63636 224.64208 37.30771 0.60829 0.42371 2.55130 + -9.32727 89.29091 227.56023 37.87054 0.61039 0.42413 2.54853 + -9.56364 90.94545 231.45358 38.62096 0.61238 0.42466 2.54497 + -9.80000 92.60000 235.34984 39.37137 0.61428 0.42518 2.54157 + -10.03636 94.25455 239.24888 40.12176 0.61608 0.42567 2.53833 + -10.27273 95.90909 242.17486 40.68455 0.61779 0.42604 2.53598 + -10.27273 95.90909 244.12639 41.05974 0.61779 0.42627 2.53446 + -10.50909 97.56364 247.05496 41.62251 0.61942 0.42662 2.53224 + -10.74545 99.21818 250.96181 42.37287 0.62096 0.42707 2.52939 + -10.98182 100.87273 254.87108 43.12322 0.62244 0.42750 2.52666 + -11.21818 102.52727 258.78270 43.87355 0.62384 0.42792 2.52404 + -11.45455 104.18182 261.71783 44.43630 0.62518 0.42823 2.52214 + -11.45455 104.18182 263.67532 44.81146 0.62518 0.42843 2.52091 + -11.69091 105.83636 266.61264 45.37420 0.62646 0.42872 2.51910 + -11.92727 107.49091 270.53082 46.12452 0.62768 0.42910 2.51678 + -12.16364 109.14545 274.45105 46.87482 0.62884 0.42947 2.51454 + -12.40000 110.80000 278.37326 47.62513 0.62995 0.42983 2.51239 + -12.63636 112.45455 281.31613 48.18785 0.63100 0.43009 2.51083 + -12.63636 112.45455 283.27866 48.56300 0.63100 0.43026 2.50982 + -12.87273 114.10909 286.22338 49.12571 0.63202 0.43052 2.50833 + -13.10909 115.76364 290.15117 49.87600 0.63298 0.43084 2.50641 + -13.34545 117.41818 294.08071 50.62628 0.63390 0.43116 2.50456 + -13.58182 119.07273 298.01193 51.37655 0.63479 0.43147 2.50277 + -13.81818 120.72727 300.96138 51.93926 0.63563 0.43170 2.50147 + -13.81818 120.72727 302.92822 52.31440 0.63563 0.43185 2.50063 + -14.05455 122.38182 305.87926 52.87710 0.63644 0.43207 2.49938 + -14.29091 124.03636 309.81526 53.62736 0.63721 0.43235 2.49778 + -14.52727 125.69091 313.75276 54.37762 0.63795 0.43263 2.49622 + -14.76364 127.34545 317.69171 55.12788 0.63866 0.43290 2.49472 + -15.00000 129.00000 320.64681 55.69057 0.63933 0.43310 2.49363 +[END OF DATA] +[END OF TABLE] +[END OF LAMBDAS] +[PRESSURES] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Horizontal pressure +Pore pressure +Passive pressure +Neutral pressure +Status on branches +Percentage of mobilisation +Status character +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00900 0.00000 0.00900 0.00900 402 100 P + 9.21919 0.00000 20.65377 1.00578 110 45 1 + 12.67838 0.00000 41.30755 2.01156 110 31 1 + 16.18476 0.00000 61.96132 3.01734 110 26 1 + 19.75138 0.00000 82.61510 4.02312 110 24 1 + 23.13987 0.00000 98.10543 4.77746 110 24 1 + 23.53101 0.00000 106.13745 5.16860 110 22 1 + 26.67235 2.00000 114.74319 5.58767 110 23 1 + 30.05179 4.00000 126.21751 6.14644 110 24 1 + 33.53589 6.00000 137.69183 6.70521 110 24 1 + 37.13090 8.00000 149.16615 7.26397 110 25 1 + 40.70340 10.00000 157.77189 7.68305 110 26 1 + 40.98278 10.00000 163.50905 7.96243 110 25 1 + 44.67719 12.00000 172.11479 8.38151 110 26 1 + 48.62257 14.00000 183.58911 8.94028 110 26 1 + 52.66245 16.00000 195.06343 9.49904 110 27 1 + 56.78002 18.00000 206.53775 10.05781 110 27 1 + 60.81881 20.00000 215.14349 10.47689 110 28 1 + 25.10433 20.00000 110.28271 16.71413 110 23 1 + 26.85107 22.36364 113.04370 17.74156 110 24 1 + 28.78633 24.72727 116.73838 18.95887 110 25 1 + 30.72169 27.09091 120.44782 20.18408 110 26 1 + 32.64905 29.45455 124.17073 21.41544 110 26 1 + 34.35806 31.81818 126.97071 22.44900 110 27 1 + 34.76303 31.81818 128.84127 22.85396 110 27 1 + 36.44951 34.18182 131.65265 23.89094 110 28 1 + 38.31227 36.54545 135.40987 25.13275 110 28 1 + 40.14569 38.90909 139.17689 26.37599 110 29 1 + 41.94677 41.27273 142.95307 27.61990 110 29 1 + 43.49375 43.63636 145.79059 28.64492 110 30 1 + 43.93152 43.63636 147.68502 29.08269 110 30 1 + 45.44117 46.00000 150.53058 30.10717 110 30 1 + 47.13200 48.36364 154.33092 31.34952 110 31 1 + 48.78497 50.72727 158.13837 32.59048 110 31 1 + 50.40000 53.09091 161.95256 33.82971 110 31 1 + 51.74615 55.45455 164.81721 34.83605 110 31 1 + 52.20796 55.45455 166.72903 35.29785 110 31 1 + 53.51654 57.81818 169.59973 36.30198 110 32 1 + 55.01965 60.18182 173.43207 37.53463 110 32 1 + 56.48766 62.54545 177.26987 38.76474 110 32 1 + 57.92186 64.90909 181.11286 39.99222 110 32 1 + 59.08376 67.27273 183.99822 40.97715 110 32 1 + 59.56339 67.27273 185.92340 41.45679 110 32 1 + 60.69430 69.63636 188.81349 42.43894 110 32 1 + 62.03576 72.00000 192.67070 43.65807 110 32 1 + 63.34965 74.36364 196.53222 44.87435 110 32 1 + 64.63767 76.72727 200.39789 46.08776 110 32 1 + 65.65501 79.09091 203.29963 47.05179 110 32 1 + 66.14804 79.09091 205.23542 47.54482 110 32 1 + 67.14296 81.45455 208.14097 48.50599 110 32 1 + 68.36363 83.81818 212.01807 49.71083 110 32 1 + 69.56509 86.18182 215.89868 50.91286 110 32 1 + 70.74890 88.54545 219.78265 52.11210 110 32 1 + 71.66504 90.90909 222.69768 53.05698 110 32 1 + 72.16826 90.90909 224.64208 53.56021 110 32 1 + 73.06987 93.27273 227.56023 54.50239 110 32 1 + 74.20982 95.63636 231.45358 55.69352 110 32 1 + 75.33772 98.00000 235.34984 56.88203 110 32 1 + 76.45476 100.36364 239.24888 58.06798 110 32 1 + 77.30661 102.72727 242.17486 58.99588 110 32 1 + 77.81768 102.72727 244.12639 59.50696 110 32 1 + 78.66100 105.09091 247.05496 60.43240 110 32 1 + 79.75218 107.45455 250.96181 61.61097 110 32 1 + 80.83647 109.81818 254.87108 62.78719 110 32 1 + 81.91464 112.18182 258.78270 63.96110 110 32 1 + 82.72889 114.54545 261.71783 64.87418 110 32 1 + 83.24609 114.54545 263.67532 65.39137 110 32 1 + 84.05571 116.90909 266.61264 66.30226 110 32 1 + 85.11978 119.27273 270.53082 67.46960 110 31 1 + 86.18011 121.63636 274.45105 68.63487 110 31 1 + 87.23714 124.00000 278.37326 69.79810 110 31 1 + 88.03027 126.36364 281.31613 70.69835 110 31 1 + 88.55228 126.36364 283.27866 71.22036 110 31 1 + 89.34288 128.72727 286.22338 72.11868 110 31 1 + 90.39215 131.09091 290.15117 73.27614 110 31 1 + 91.43924 133.45455 294.08071 74.43176 110 31 1 + 92.48434 135.81818 298.01193 75.58562 110 31 1 + 93.26470 138.18182 300.96138 76.47482 110 31 1 + 93.79054 138.18182 302.92822 77.00066 110 31 1 + 94.56918 140.54545 305.87926 77.88818 110 31 1 + 95.60910 142.90909 309.81526 79.03699 110 31 1 + 96.64741 145.27273 313.75276 80.18420 110 31 1 + 97.68417 147.63636 317.69171 81.32987 110 31 1 + 98.45498 150.00000 320.64681 82.20959 110 31 1 +[END OF DATA] +[END OF TABLE] +[END OF PRESSURES] +[FORCE FROM LAYER] +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Force +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 96.512 'Sand' + -2.00 865.006 'Clay' +[END OF DATA] +[END OF TABLE] +[END OF FORCE FROM LAYER] +[END OF SIDE] +[SIDE] +Leftside +[CALCULATION METHOD] +Method c,phi,delta +[END OF CALCULATION METHOD] +[WATER LEVEL] + 0.00 +[END OF WATER LEVEL] +[SURFACE] +1 : Number of surface points + 0.00 2.00 +[END OF SURFACE] +[SOIL PROFILE FOR SHEET PILING MODEL] +Soil Profile Standard +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Excess pore top +Excess pore bottom +Unit weight dry +Unit weight saturated +Cohesion +Angle of wall friction (reduced) +Angle of wall friction (not reduced) +Angle of internal friction +Coeff. of active earth pressure +Coeff. of neutral earth pressure +Coeff. of passive earth pressure +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 0.00 0.00 18.00 20.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + -2.00 0.00 0.00 17.00 17.00 2.00 7.00 7.00 20.00 0.46 0.66 2.36 'Clay' +[END OF DATA] +[END OF TABLE] +[MULTILINEAR BRANCHES] +3 : Number of branches for spring characteristics +2 : Number of layers +[MODULUS OF SUBGRADE REACTION] +[TABLE] +DataCount=6 +[COLUMN INDICATION] +Layer +Branch +Modulus of subgrade reaction top +Modulus of subgrade reaction bottom +[END OF COLUMN INDICATION] +[DATA] + 1 1 12000.00000 12000.00000 + 1 2 6000.00000 6000.00000 + 1 3 3000.00000 3000.00000 + 2 1 2000.00000 2000.00000 + 2 2 800.00000 800.00000 + 2 3 500.00000 500.00000 +[END OF DATA] +[END OF TABLE] +[END OF MODULUS OF SUBGRADE REACTION] +[PERCENTAGE OF PASSIVE SOIL PRESSURE] +[TABLE] +DataCount=4 +[COLUMN INDICATION] +Layer +Index +Percentage +[END OF COLUMN INDICATION] +[DATA] + 1 1 50 + 1 2 80 + 2 1 50 + 2 2 80 +[END OF DATA] +[END OF TABLE] +[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] +[END OF MULTILINEAR BRANCHES] +[END OF SOIL PROFILE FOR SHEET PILING MODEL] +[SLIDE PLANE] +[TABLE] +DataCount=90 +[COLUMN INDICATION] +Slide plane position +Theta min +Theta max +Q min +Q max +[END OF COLUMN INDICATION] +[DATA] + 1.90000 71.89400 34.01600 0.51634 0.02514 + 1.70000 71.89400 34.01600 4.64710 0.22630 + 1.50000 71.89400 34.01600 12.90861 0.62861 + 1.30000 71.89400 34.01600 25.30087 1.23208 + 1.10000 71.89400 34.01600 41.82389 2.03671 + 1.00000 71.89400 34.01600 51.63444 2.51445 + 0.90000 71.89400 34.01600 62.47767 3.04249 + 0.70000 71.89400 34.01600 87.26220 4.24943 + 0.50000 71.89400 34.01600 116.17748 5.65752 + 0.30000 71.89400 34.01600 149.22352 7.26677 + 0.10000 71.89400 34.01600 186.40032 9.07717 + 0.00000 71.89400 34.01600 206.53775 10.05781 + -0.10000 71.89400 34.01600 227.47838 11.07756 + -0.30000 71.89400 34.01600 271.08079 13.20088 + -0.50000 71.89400 34.01600 316.97807 15.43595 + -0.70000 71.89400 34.01600 365.17021 17.78277 + -0.90000 71.89400 34.01600 415.65722 20.24134 + -1.00000 71.89400 34.01600 441.76129 21.51254 + -1.10000 71.89400 34.01600 468.43909 22.81167 + -1.30000 71.89400 34.01600 523.51582 25.49376 + -1.50000 71.89400 34.01600 580.88741 28.28759 + -1.70000 71.89400 34.01600 640.55387 31.19318 + -1.90000 71.89400 34.01600 702.51520 34.21053 + -2.00000 71.89400 34.01600 734.35643 35.76111 + -2.11818 71.78000 34.18000 753.03588 38.45783 + -2.35455 71.55900 34.46900 791.04575 43.98822 + -2.59091 71.34600 34.71700 829.92610 49.70027 + -2.82727 71.14000 34.93100 869.67973 55.59312 + -3.06364 70.94100 35.11900 910.30923 61.66612 + -3.18182 70.84400 35.20400 930.95321 64.77003 + -3.30000 70.74900 35.28500 951.81705 67.91880 + -3.53636 70.56300 35.43200 994.20544 74.35076 + -3.77273 70.38200 35.56400 1037.47655 80.96170 + -4.00909 70.20800 35.68400 1081.63238 87.75138 + -4.24545 70.03800 35.79100 1126.67484 94.71961 + -4.36364 69.95600 35.84200 1149.52911 98.27063 + -4.48182 69.87400 35.89000 1172.60570 101.86622 + -4.71818 69.71500 35.97900 1219.42668 109.19108 + -4.95455 69.56100 36.06200 1267.13937 116.69407 + -5.19091 69.41000 36.13700 1315.74532 124.37510 + -5.42727 69.26500 36.20800 1365.24598 132.23409 + -5.54545 69.19300 36.24100 1390.33226 136.23030 + -5.66364 69.12300 36.27200 1415.64274 140.27098 + -5.90000 68.98500 36.33300 1466.93694 148.48569 + -6.13636 68.85100 36.38900 1519.12984 156.87819 + -6.37273 68.72000 36.44100 1572.22267 165.44842 + -6.60909 68.59300 36.49000 1626.21658 174.19634 + -6.72727 68.53100 36.51400 1653.55180 178.63693 + -6.84545 68.46900 36.53600 1681.11271 183.12193 + -7.08182 68.34900 36.58000 1736.91212 192.22515 + -7.31818 68.23100 36.62000 1793.61585 201.50598 + -7.55455 68.11600 36.65900 1851.22490 210.96439 + -7.79091 68.00500 36.69500 1909.74022 220.60035 + -7.90909 67.95000 36.71200 1939.33802 225.48491 + -8.02727 67.89600 36.72900 1969.16274 230.41386 + -8.26364 67.78900 36.76200 2029.49336 240.40489 + -8.50000 67.68500 36.79200 2090.73293 250.57343 + -8.73636 67.58400 36.82200 2152.88228 260.91947 + -8.97273 67.48500 36.84900 2215.94223 271.44299 + -9.09091 67.43600 36.86300 2247.81392 276.77130 + -9.20909 67.38800 36.87600 2279.91354 282.14398 + -9.44545 67.29400 36.90100 2344.79698 293.02243 + -9.68182 67.20100 36.92500 2410.59326 304.07833 + -9.91818 67.11100 36.94800 2477.30310 315.31167 + -10.15455 67.02300 36.97000 2544.92718 326.72245 + -10.27273 66.98000 36.98100 2579.08227 332.49437 + -10.39091 66.93700 36.99100 2613.46617 338.31066 + -10.62727 66.85200 37.01100 2682.92070 350.07628 + -10.86364 66.76900 37.03100 2753.29141 362.01932 + -11.10000 66.68900 37.04900 2824.57889 374.13978 + -11.33636 66.60900 37.06700 2896.78375 386.43763 + -11.45455 66.57000 37.07600 2933.23037 392.65308 + -11.57273 66.53200 37.08400 2969.90654 398.91288 + -11.80909 66.45600 37.10100 3043.94783 411.56553 + -12.04545 66.38200 37.11600 3118.90817 424.39557 + -12.28182 66.30900 37.13200 3194.78807 437.40300 + -12.51818 66.23700 37.14600 3271.58805 450.58781 + -12.63636 66.20200 37.15400 3310.33322 457.24673 + -12.75455 66.16700 37.16100 3349.30860 463.95000 + -12.99091 66.09900 37.17400 3427.95022 477.48957 + -13.22727 66.03200 37.18700 3507.51338 491.20651 + -13.46364 65.96600 37.20000 3587.99852 505.10082 + -13.70000 65.90100 37.21200 3669.40612 519.17250 + -13.81818 65.86900 37.21800 3710.45597 526.27486 + -13.93636 65.83800 37.22400 3751.73659 533.42155 + -14.17273 65.77600 37.23600 3834.99038 547.84796 + -14.40909 65.71500 37.24700 3919.16788 562.45174 + -14.64545 65.65500 37.25800 4004.26952 577.23287 + -14.88182 65.59600 37.26800 4090.29568 592.19136 + -15.00000 65.56700 37.27300 4133.65557 599.73712 +[END OF DATA] +[END OF TABLE] +[END OF SLIDE PLANE] +[LAMBDAS] +[TABLE] +DataCount=89 +[COLUMN INDICATION] +Position +Vertical stress +Passive hor pressure +Active hor pressure +Lambda neutral +Lambda active +Lambda passive +[END OF COLUMN INDICATION] +[DATA] + 1.80000 3.60000 20.65377 1.00578 2.50237 0.27938 5.73716 + 1.60000 7.20000 41.30755 2.01156 1.72447 0.27938 5.73716 + 1.40000 10.80000 61.96132 3.01734 1.44612 0.27938 5.73716 + 1.20000 14.40000 82.61510 4.02312 1.29436 0.27938 5.73716 + 1.00000 18.00000 98.10543 4.77746 1.19462 0.27938 5.73716 + 1.00000 18.00000 108.43232 5.28035 1.19462 0.27938 5.73716 + 0.80000 21.60000 123.92265 6.03469 1.12192 0.27938 5.73716 + 0.60000 25.20000 144.57642 7.04047 1.06542 0.27938 5.73716 + 0.40000 28.80000 165.23020 8.04625 1.01960 0.27938 5.73716 + 0.20000 32.40000 185.88397 9.05203 0.98130 0.27938 5.73716 + 0.00000 36.00000 201.37430 9.80637 0.94858 0.27938 5.73716 + 0.00000 36.00000 209.40633 10.19750 0.94858 0.27938 5.73716 + -0.20000 38.00000 218.01207 10.61658 0.93783 0.27938 5.73716 + -0.40000 40.00000 229.48639 11.17535 0.92671 0.27938 5.73716 + -0.60000 42.00000 240.96071 11.73411 0.91544 0.27938 5.73716 + -0.80000 44.00000 252.43502 12.29288 0.90418 0.27938 5.73716 + -1.00000 46.00000 261.04076 12.71196 0.89304 0.27938 5.73716 + -1.00000 46.00000 266.77792 12.99134 0.89304 0.27938 5.73716 + -1.20000 48.00000 275.38366 13.41041 0.88209 0.27938 5.73716 + -1.40000 50.00000 286.85798 13.96918 0.87140 0.27938 5.73716 + -1.60000 52.00000 298.33230 14.52795 0.86101 0.27938 5.73716 + -1.80000 54.00000 309.80662 15.08672 0.85093 0.27938 5.73716 + -2.00000 56.00000 318.41236 15.50579 0.84118 0.27938 5.73716 + -2.00000 56.00000 158.05682 22.81841 0.99916 0.40448 2.80175 + -2.23636 57.65455 160.81100 23.39781 0.99214 0.40583 2.78922 + -2.47273 59.30909 164.49379 24.16636 0.98510 0.40746 2.77350 + -2.70909 60.96364 168.18842 24.93128 0.97811 0.40895 2.75883 + -2.94545 62.61818 171.89406 25.69349 0.97120 0.41032 2.74511 + -3.18182 64.27273 174.67977 26.26381 0.96440 0.41128 2.73539 + -3.18182 64.27273 176.54019 26.64343 0.96440 0.41189 2.72917 + -3.41818 65.92727 179.33551 27.21214 0.95773 0.41276 2.72020 + -3.65455 67.58182 183.07008 27.96937 0.95120 0.41386 2.70887 + -3.89091 69.23636 186.81314 28.72558 0.94482 0.41489 2.69819 + -4.12727 70.89091 190.56423 29.48096 0.93861 0.41586 2.68813 + -4.36364 72.54545 193.38230 30.04706 0.93256 0.41656 2.68096 + -4.36364 72.54545 195.26347 30.42425 0.93256 0.41700 2.67634 + -4.60000 74.20000 198.08874 30.98978 0.92668 0.41765 2.66966 + -4.83636 75.85455 201.86140 31.74343 0.92097 0.41848 2.66116 + -5.07273 77.50909 205.64055 32.49668 0.91542 0.41926 2.65312 + -5.30909 79.16364 209.42587 33.24958 0.91003 0.42001 2.64548 + -5.54545 80.81818 212.26856 33.81408 0.90481 0.42055 2.64001 + -5.54545 80.81818 214.16560 34.19032 0.90481 0.42090 2.63647 + -5.78182 82.47273 217.01391 34.75456 0.89975 0.42141 2.63134 + -6.01818 84.12727 220.81613 35.50671 0.89483 0.42206 2.62479 + -6.25455 85.78182 224.62349 36.25867 0.89007 0.42268 2.61854 + -6.49091 87.43636 228.43579 37.01046 0.88545 0.42328 2.61259 + -6.72727 89.09091 231.29800 37.57421 0.88097 0.42372 2.60831 + -6.72727 89.09091 233.20767 37.95000 0.88097 0.42400 2.60554 + -6.96364 90.74545 236.07443 38.51363 0.87663 0.42441 2.60150 + -7.20000 92.40000 239.90040 39.26503 0.87241 0.42495 2.59632 + -7.43636 94.05455 243.73059 40.01634 0.86833 0.42546 2.59137 + -7.67273 95.70909 247.56483 40.76755 0.86436 0.42595 2.58664 + -7.90909 97.36364 250.44297 41.33091 0.86051 0.42631 2.58322 + -7.90909 97.36364 252.36300 41.70646 0.86051 0.42655 2.58100 + -8.14545 99.01818 255.24491 42.26975 0.85678 0.42689 2.57776 + -8.38182 100.67273 259.09049 43.02075 0.85315 0.42733 2.57359 + -8.61818 102.32727 262.93958 43.77169 0.84963 0.42776 2.56959 + -8.85455 103.98182 266.79208 44.52258 0.84621 0.42818 2.56576 + -9.09091 105.63636 269.68352 45.08571 0.84288 0.42848 2.56298 + -9.09091 105.63636 271.61221 45.46112 0.84288 0.42868 2.56117 + -9.32727 107.29091 274.50684 46.02421 0.83965 0.42897 2.55853 + -9.56364 108.94545 278.36890 46.77497 0.83651 0.42934 2.55512 + -9.80000 110.60000 282.23394 47.52568 0.83346 0.42971 2.55184 + -10.03636 112.25455 286.10188 48.27637 0.83049 0.43006 2.54869 + -10.27273 113.90909 289.00460 48.83937 0.82760 0.43032 2.54640 + -10.27273 113.90909 290.94066 49.21469 0.82760 0.43049 2.54491 + -10.50909 115.56364 293.84610 49.77765 0.82478 0.43074 2.54272 + -10.74545 117.21818 297.72222 50.52825 0.82205 0.43106 2.53990 + -10.98182 118.87273 301.60090 51.27883 0.81938 0.43138 2.53717 + -11.21818 120.52727 305.48207 52.02939 0.81678 0.43168 2.53455 + -11.45455 122.18182 308.39448 52.59229 0.81425 0.43191 2.53264 + -11.45455 122.18182 310.33687 52.96755 0.81425 0.43205 2.53139 + -11.69091 123.83636 313.25163 53.53044 0.81178 0.43227 2.52956 + -11.92727 125.49091 317.13988 54.28094 0.80938 0.43255 2.52719 + -12.16364 127.14545 321.03035 55.03142 0.80704 0.43282 2.52491 + -12.40000 128.80000 324.92299 55.78189 0.80475 0.43309 2.52269 + -12.63636 130.45455 327.84379 56.34473 0.80252 0.43328 2.52108 + -12.63636 130.45455 329.79169 56.71995 0.80252 0.43341 2.52003 + -12.87273 132.10909 332.71453 57.28278 0.80034 0.43360 2.51848 + -13.10909 133.76364 336.61334 58.03321 0.79822 0.43385 2.51648 + -13.34545 135.41818 340.51409 58.78363 0.79614 0.43409 2.51454 + -13.58182 137.07273 344.41674 59.53404 0.79412 0.43432 2.51266 + -13.81818 138.72727 347.34489 60.09683 0.79214 0.43450 2.51128 + -13.81818 138.72727 349.29759 60.47203 0.79214 0.43461 2.51039 + -14.05455 140.38182 352.22754 61.03482 0.79020 0.43478 2.50907 + -14.29091 142.03636 356.13560 61.78520 0.78831 0.43500 2.50736 + -14.52727 143.69091 360.04538 62.53557 0.78647 0.43521 2.50569 + -14.76364 145.34545 363.95683 63.28593 0.78466 0.43542 2.50408 + -15.00000 147.00000 366.89144 63.84870 0.78289 0.43557 2.50290 +[END OF DATA] +[END OF TABLE] +[END OF LAMBDAS] +[PRESSURES] +[TABLE] +DataCount=138 +[COLUMN INDICATION] +Horizontal pressure +Pore pressure +Passive pressure +Neutral pressure +Status on branches +Percentage of mobilisation +Status character +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00900 0.00000 0.00900 0.00900 402 100 P + 11.53769 0.00000 20.65377 9.00854 220 56 2 + 13.78383 0.00000 41.30755 12.41618 110 33 1 + 14.60905 0.00000 61.96132 15.61809 110 0 1 + 15.24424 0.00000 82.61510 18.63874 110 0 1 + 14.63485 0.00000 98.10543 20.42793 110 0 1 + 16.78516 0.00000 108.43232 22.57824 110 0 1 + 16.02102 0.00000 123.92265 24.23343 110 0 1 + 16.18282 0.00000 144.57642 26.84866 110 0 1 + 16.19807 0.00000 165.23020 29.36453 110 0 1 + 16.06688 0.00000 185.88397 31.79420 110 0 1 + 14.93350 0.00000 201.37430 33.29501 110 0 1 + 16.26151 0.00000 209.40633 34.62301 110 0 1 + 14.55368 2.00000 218.01207 35.63747 110 0 1 + 13.16399 4.00000 229.48639 37.06847 110 0 1 + 11.73411 6.00000 240.96071 38.44866 1 0 A + 12.29288 8.00000 252.43502 39.78402 1 0 A + 12.71196 10.00000 261.04076 40.63327 1 0 A + 12.99134 10.00000 266.77792 41.52631 1 0 A + 13.41041 12.00000 275.38366 42.34053 1 0 A + 13.96918 14.00000 286.85798 43.57023 1 0 A + 14.52795 16.00000 298.33230 44.77240 1 0 A + 15.08672 18.00000 309.80662 45.95011 1 0 A + 15.50579 20.00000 318.41236 46.68548 1 0 A + 47.97602 20.00000 158.05682 56.36623 110 0 1 + 48.09158 22.36364 160.81100 57.20109 110 0 1 + 48.59814 24.72727 164.49379 58.42560 110 0 1 + 49.09179 27.09091 168.18842 59.62940 110 0 1 + 49.58144 29.45455 171.89406 60.81506 110 0 1 + 49.67681 31.81818 174.67977 61.58587 110 0 1 + 50.47463 31.81818 176.54019 62.38369 110 0 1 + 50.58191 34.18182 179.33551 63.14047 110 0 1 + 51.10428 36.54545 183.07008 64.28380 110 0 1 + 51.64651 38.90909 186.81314 65.41621 110 0 1 + 52.21207 41.27273 190.56423 66.53895 110 0 1 + 52.41855 43.63636 193.38230 67.26738 110 0 1 + 53.19003 43.63636 195.26347 68.03886 110 0 1 + 53.42568 46.00000 198.08874 68.75968 110 0 1 + 54.07700 48.36364 201.86140 69.85948 110 0 1 + 54.75875 50.72727 205.64055 70.95324 110 0 1 + 55.47133 53.09091 209.42587 72.04162 110 0 1 + 55.84082 55.45455 212.26856 72.75093 110 0 1 + 56.58935 55.45455 214.16560 73.49945 110 0 1 + 56.98989 57.81818 217.01391 74.20444 110 0 1 + 57.79480 60.18182 220.81613 75.27983 110 0 1 + 58.62882 62.54545 224.62349 76.35173 110 0 1 + 59.49087 64.90909 228.43579 77.42051 110 0 1 + 60.01547 67.27273 231.29800 78.12207 110 0 1 + 60.74428 67.27273 233.20767 78.85088 110 0 1 + 61.29453 69.63636 236.07443 79.54989 110 0 1 + 62.23332 72.00000 239.90040 80.61101 110 0 1 + 63.19475 74.36364 243.73059 81.67005 110 0 1 + 64.17730 76.72727 247.56483 82.72720 110 0 1 + 64.82349 79.09091 250.44297 83.42671 110 0 1 + 65.53537 79.09091 252.36300 84.13859 110 0 1 + 66.19956 81.45455 255.24491 84.83654 110 0 1 + 67.23622 83.81818 259.09049 85.88902 110 0 1 + 68.28798 86.18182 262.93958 86.94021 110 0 1 + 69.35343 88.54545 266.79208 87.99023 110 0 1 + 70.08248 90.90909 269.68352 88.69054 110 0 1 + 70.77977 90.90909 271.61221 89.38783 110 0 1 + 71.51968 93.27273 274.50684 90.08716 110 0 1 + 72.61794 95.63636 278.36890 91.13424 110 0 1 + 73.72483 98.00000 282.23394 92.18051 110 0 1 + 74.83926 100.36364 286.10188 93.22604 110 0 1 + 75.61783 102.72727 289.00460 93.92856 110 0 1 + 76.30248 102.72727 290.94066 94.61320 110 0 1 + 77.08649 105.09091 293.84610 95.31510 110 0 1 + 78.21752 107.45455 297.72222 96.35874 110 0 1 + 79.35257 109.81818 301.60090 97.40185 110 0 1 + 80.49095 112.18182 305.48207 98.44449 110 0 1 + 81.29516 114.54545 308.39448 99.14987 110 0 1 + 81.96877 114.54545 310.33687 99.82348 110 0 1 + 82.77501 116.90909 313.25163 100.52846 110 0 1 + 83.91970 119.27273 317.13988 101.56987 110 0 1 + 85.06569 121.63636 321.03035 102.61094 110 0 1 + 86.21265 124.00000 324.92299 103.65169 110 0 1 + 87.02829 126.36364 327.84379 104.36021 110 0 1 + 87.69219 126.36364 329.79169 105.02411 110 0 1 + 88.50816 128.72727 332.71453 105.73236 110 0 1 + 89.65631 131.09091 336.61334 106.77232 110 0 1 + 90.80457 133.45455 340.51409 107.81205 110 0 1 + 91.95286 135.81818 344.41674 108.85159 110 0 1 + 92.77340 138.18182 347.34489 109.56328 110 0 1 + 93.42871 138.18182 349.29759 110.21859 110 0 1 + 94.24911 140.54545 352.22754 110.93011 110 0 1 + 95.39702 142.90909 356.13560 111.96913 110 0 1 + 96.54481 145.27273 360.04538 113.00802 110 0 1 + 97.69247 147.63636 363.95683 114.04677 110 0 1 + 98.51618 150.00000 366.89144 114.76157 110 0 1 +[END OF DATA] +[END OF TABLE] +[END OF PRESSURES] +[FORCE FROM LAYER] +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Level top layer +Force +Layer name +[END OF COLUMN INDICATION] +[DATA] + 10.00 56.060 'Sand' + -2.00 905.399 'Clay' +[END OF DATA] +[END OF TABLE] +[END OF FORCE FROM LAYER] +[END OF SIDE] +[END OF CONSTRUCTION STAGE] +[RESUME] +[TABLE] +DataCount=2 +[COLUMN INDICATION] +Moment +ShearForce +Displacement +PercentageMobilizedMoment +PercentageMobilizedResistance +StageNumber +VerificationType +PartialFactorSet +RepresentativeFactor +VerticalBalanceResult +CalculationStatus +[END OF COLUMN INDICATION] +[DATA] + 0.00227 -0.00395 -0.00030 0.00000 28.98195 1 12 4 1.000 0 0 + 38.38525 40.36312 9.32640 0.00000 30.42722 2 12 4 1.000 0 0 +[END OF DATA] +[END OF TABLE] +[END OF RESUME] +[MAXIMUM SUMMARY RESULTS] +MaximumMoment=38.38525 +MaximumShearForce=40.36312 +MaximumDisplacement=9.32640 +MaximumPercentageMobilisedMoment=0.00000 +MaximumPercentageMobilisedResistance=30.42722 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS] +[WARNINGS] +[TABLE] +DataCount=0 +[END OF TABLE] +[END OF WARNINGS] +[ERRORS] +[TABLE] +DataCount=0 +[END OF TABLE] +[END OF ERRORS] +[END OF OUTPUT DATA] +[END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-12.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-12.shi new file mode 100644 index 00000000..89766d70 --- /dev/null +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-12.shi @@ -0,0 +1,946 @@ +INPUT FILE FOR D-SHEET PILING +============================================================================== +COMPANY : + +DATE : 19-6-2024 +TIME : 18:41:29 +FILENAME : D:\DSerie\applications\DSheetPiling\trunk\data\Benchmarks\bm3-12.shi +CREATED BY : D-Sheet Piling version 24.1.0.0 +========================== BEGINNING OF DATA ========================== +[INPUT DATA] +[VERSION] +Soil=1012 +D-Sheet Piling=1034 +[END OF VERSION] + +[VERSION EXTERNALS] +DGSCPTipCalc.dll=21.3.1.35380 +DGSCPTipUI.dll=21.3.1.35380 +[END OF VERSION EXTERNALS] + +[SOIL COLLECTION] + 2 = number of items +[SOIL] +Clay +SoilColor=5953498 +SoilSoilType=3 +SoilGrainType=0 +SoilGamDry=17.00 +SoilGamWet=17.00 +SoilRelativeDensity=72.5 +SoilEModMenard=0.01 +SoilCohesion=2.00 +SoilPhi=20.00 +SoilDelta=7.00 +SoilIsDeltaAngleAutomaticallyCalculated=0 +SoilOCR=1.00 +SoilPermeabKx=1.00000E-03 +SoilStdCohesion=0.00 +SoilStdPhi=0.00 +SoilDistCohesion=3 +SoilDistPhi=3 +SoilLa=0.46 +SoilLn=0.66 +SoilLp=2.36 +SoilUseMenard=0 +SoilUseBrinchHansen=1 +SoilShellFactor=1.00 +SoilLambdaType=2 +SoilLam1=50 +SoilLam2=80 +SoilLam3=90 +SoilKb0=1.00000E+04 +SoilKb1=2.00000E+03 +SoilKb2=8.00000E+02 +SoilKb3=5.00000E+02 +SoilKb4=1.00000E+04 +SoilKo0=1.00000E+04 +SoilKo1=2.00000E+03 +SoilKo2=8.00000E+02 +SoilKo3=5.00000E+02 +SoilKo4=1.00000E+04 +SoilCurKb1=2.00000E+03 +SoilCurKb2=8.00000E+02 +SoilCurKb3=5.00000E+02 +SoilCurKo1=2.00000E+03 +SoilCurKo2=8.00000E+02 +SoilCurKo3=5.00000E+02 +SoilHorizontalBehaviourType=2 +SoilElasticity=1.00000E+03 +SoilDefaultElasticity=1 +[END OF SOIL] +[SOIL] +Sand +SoilColor=9764853 +SoilSoilType=1 +SoilGrainType=0 +SoilGamDry=18.00 +SoilGamWet=20.00 +SoilRelativeDensity=0.0 +SoilEModMenard=0.01 +SoilCohesion=0.00 +SoilPhi=30.00 +SoilDelta=20.00 +SoilIsDeltaAngleAutomaticallyCalculated=0 +SoilOCR=1.00 +SoilPermeabKx=1.00000E-04 +SoilStdCohesion=0.00 +SoilStdPhi=0.00 +SoilDistCohesion=3 +SoilDistPhi=3 +SoilLa=0.29 +SoilLn=0.50 +SoilLp=4.63 +SoilUseMenard=0 +SoilUseBrinchHansen=1 +SoilShellFactor=1.00 +SoilLambdaType=2 +SoilLam1=50 +SoilLam2=80 +SoilLam3=90 +SoilKb0=1.00000E+04 +SoilKb1=1.20000E+04 +SoilKb2=6.00000E+03 +SoilKb3=3.00000E+03 +SoilKb4=1.00000E+04 +SoilKo0=1.00000E+04 +SoilKo1=1.20000E+04 +SoilKo2=6.00000E+03 +SoilKo3=3.00000E+03 +SoilKo4=1.00000E+04 +SoilCurKb1=1.20000E+04 +SoilCurKb2=6.00000E+03 +SoilCurKb3=3.00000E+03 +SoilCurKo1=1.20000E+04 +SoilCurKo2=6.00000E+03 +SoilCurKo3=3.00000E+03 +SoilHorizontalBehaviourType=2 +SoilElasticity=1.00000E+03 +SoilDefaultElasticity=1 +[END OF SOIL] +[END OF SOIL COLLECTION] + +[RUN IDENTIFICATION] +Benchmark 3-12 for D-Sheet Piling +Calculation of the Culmann earth pressure coeff. +Initial stage represents intital situation +[END OF RUN IDENTIFICATION] + +[MODEL] +0 : Sheet piling +1 : C, phi, delta soil parameters +0 : Verification = FALSE +0 : Pile loaded by forces +0 : Pile loaded by user defined soil displacements +0 : Probabilistic = FALSE +0 : Check vertical balance = FALSE +0 : Trildens calculation = FALSE +0 : Diepwand calculation = FALSE +1 : Elastic calculation = TRUE +0 : Wooden sheet piling = FALSE +[END OF MODEL] + +[CPT LIST] +Count=0 +[END OF CPT LIST] + +[SHEET PILING] +0 + 9.40 Level top sheet piling + 24.40 Length + 1 Number of elements +[SHEET PILING ELEMENT] +AZ 26 (S430) +SheetPilingElementMaterialType=1 +SheetPilingElementEI=1.165710E+05 +SheetPilingElementWidth=1.00 +SheetPilingElementLevel=-15.00 +SheetPilingElementHeight=427 +SheetPilingPileWidth=1.00 +SheetPilingElementSectionArea=198 +SheetPilingElementResistingMoment=2600 +SheetPilingElementReductionFactorEI=1.00 +SheetPilingElementNote= +SheetPilingElementMaxCharacteristicMoment=1118.00 +SheetPilingElementMaxPlasticCharacteristicMoment=0.00 +SheetPilingElementKMod=1.00 +SheetPilingElementMaterialFactor=1.00 +sSheetPilingElementReductionFactorMaxMoment=1.00 +DiaphragmWallIsSymmetric=0 +DiaphragmWallPosEIElastoPlastic1=2.000000E+04 +DiaphragmWallNegEIElastoPlastic1=2.000000E+04 +DiaphragmWallPosMomElastic=0.00 +DiaphragmWallNegMomElastic=0.00 +DiaphragmWallPosMomPlastic=0.00 +DiaphragmWallNegMomPlastic=0.00 +DiaphragmWallPosEIElastoPlastic2=2.000000E+04 +DiaphragmWallPosMomElastoPlastic=0.00 +DiaphragmWallNegEIElastoPlastic2=2.000000E+04 +DiaphragmWallNegMomElastoPlastic=0.00 +WoodenSheetPilingElementE=1.000000E+05 +WoodenSheetPilingElementCharacFlexuralStrength=0.00 +WoodenSheetPilingElementKSys=1.15 +WoodenSheetPilingElementKDef=1.00 +WoodenSheetPilingElementPsi2Eff=1.00 +WoodenSheetPilingElementMaterialFactor=1.30 +WoodenSheetPilingElementKModFShort=0.65 +WoodenSheetPilingElementKModFLong=0.50 +WoodenSheetPilingElementKModE=0.80 +[END OF SHEET PILING ELEMENT] +[END OF SHEET PILING] + +[COMBINED WALL] +CombinedWallAreNeutralAxesOfPilesAndSheetPilesCoinciding=1 +CombinedWallDistanceBetweenNeutralAxisPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenNeutralAxisSheetPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenPlasticNeutralAxisPilesAndSystemBoundary=0.000 +CombinedWallDistanceBetweenPlasticNeutralAxisSheetPilesAndSystemBoundary=0.000 +CombinedWallPilesName= +CombinedWallPilesMaterialType=1 +CombinedWallPilesBottomLevel=-10.00 +CombinedWallPilesEI=1.0000E+05 +CombinedWallPilesWidth=1.00 +CombinedWallPilesMaxMoment=0.00 +CombinedWallPilesMaxPlasticMoment=0.00 +CombinedWallPilesElasticSectionModulus=0.00 +CombinedWallPilesPlasticSectionModulus=0.00 +CombinedWallPilesYieldStrength=0.00 +CombinedWallPilesSectionArea=0.00 +CombinedWallSheetPilesName= +CombinedWallSheetPilesMaterialType=1 +CombinedWallSheetPilesBottomLevel=-5.00 +CombinedWallSheetPilesEI=1.0000E+05 +CombinedWallSheetPilesWidth=1.00 +CombinedWallSheetPilesHeight=1.00 +CombinedWallSheetPilesYieldStrength=0.00 +CombinedWallSheetPilesSectionArea=0.00 +CombinedWallNumberOfSheetPiles=3 +[END OF COMBINED WALL] + +[VERTICAL BALANCE] +SheetPilingQcRep=3.000 +SheetPilingXi=1.39 +[END OF VERTICAL BALANCE] + +[SETTLEMENT BY VIBRATION PARAMS] +SheetPilingNumberOfPilesDrilled=2 +[END OF SETTLEMENT BY VIBRATION PARAMS] + +[RIGID SUPPORTS] + 1 Number of rigid supports + Nr Level Rot stiff. Tr stiff. + 1 3.00 0 1 anker + +[END OF RIGID SUPPORTS] + +[UNIFORM LOADS] + 1 = number of items +[LOAD] +Uniform load +UniformLoadLeft=0.00 +UniformLoadRight=7.00 +UniformLoadPermanent=1 +UniformLoadFavourable=0 +UniformLoadStandardDeviationLeft=0.00 +UniformLoadStandardDeviationRight=0.00 +UniformLoadDistLeft=2 +UniformLoadDistRight=2 +[END OF LOAD] +[END OF UNIFORM LOADS] + +[SURCHARGE LOADS] + 1 = number of items +[LOAD] +Surcharge load +4 +[POINT] +SurchargeLoadDistance=2.00 +SurchargeLoadValue=0.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=2.50 +SurchargeLoadValue=12.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=5.00 +SurchargeLoadValue=12.00 +[END OF POINT] +[POINT] +SurchargeLoadDistance=5.50 +SurchargeLoadValue=0.00 +[END OF POINT] +SurchargeLoadPermanent=0 +SurchargeLoadFavourable=0 +SurchargeLoadStandardDeviation=0.00 +SurchargeLoadDistribution=2 +[END OF LOAD] +[END OF SURCHARGE LOADS] + +[WATER] + 10.00 Unit weight of water +[END OF WATER] + +[SOIL PROFILES] + 3 Number of spring characteristics curves + 0 1/0 : Yes/No Unloading curve + 0 1/0 : Yes/No Use Cur values + + 1 Number of soil profiles +Soil Profile Standard + 24087.060 X coordinate + 381333.240 Y coordinate + + 2 Number of soil layers per soil profile + Nr Level Wosp Top Wosp Bott Material Name + 1 10.00 0.00 0.00 Sand + 2 -2.00 0.00 0.00 Clay + +[END OF SOIL PROFILES] + +[SURFACES] + 4 Number of surfaces + 1 1 Surface +2.50 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.50 + 2 1 Surface +2.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.00 + 3 1 Surface +1.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 1.00 + 4 3 Embankment +5.00 +0.00 Standard deviation + 2 Distribution type + Nr X-coord Value + 1 0.00 2.50 + 2 1.00 2.50 + 3 4.00 5.00 + +[END OF SURFACES] + +[WATERLEVELS] + 1 Number of Waterlevels + 3 Number of Data per Waterlevel +WL 0 + 0.00 + 0.00 + 2 + +[END OF WATERLEVELS] + +[CONSTRUCTION STAGES] + 2 Number of Construction stages +Initial situation + 2 2 Method Left: C, phi, delta Method Right: C, phi, delta +Surface +2.50 +Embankment +5.00 +WL 0 +WL 0 +Soil Profile Standard +Soil Profile Standard + 0.000 Displacement top sheet piling + 0 Use top displacement + 0 Anchors present in stage + 0 Struts present in stage + 0 Spring supports present in stage + 0 Rigid supports present in stage + 0 Uniform loads in stage + 1 0 Surcharge loads in stage + 1 Surcharge load + 0 Horizontal line loads in stage + 0 Moments in stage + 0 Normal forces in stage + 1 Passive side overrule + +Excavation + 2 2 Method Left: C, phi, delta Method Right: C, phi, delta +Surface +2.00 +Surface +1.00 +WL 0 +WL 0 +Soil Profile Standard +Soil Profile Standard + 0.000 Displacement top sheet piling + 0 Use top displacement + 0 Anchors present in stage + 0 Struts present in stage + 0 Spring supports present in stage + 0 Rigid supports present in stage + 0 Uniform loads in stage + 0 0 Surcharge loads in stage + 0 Horizontal line loads in stage + 0 Moments in stage + 0 Normal forces in stage + 1 Passive side overrule + +[END OF CONSTRUCTION STAGES] + +[CALCULATION OPTIONS PER STAGE] +2 = number of items +[STAGE] +StagePartialFactorSetCUR=0 +StageVerify=0 +StageAnchorFactor=1.000 +StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 +StageVerifyEC7NADNL=0 +StageAnchorFactorEC7NADNL=1.000 +StageVerifyEC7NADBE=0 +[END OF STAGE] +[STAGE] +StagePartialFactorSetCUR=2 +StageVerify=1 +StageAnchorFactor=1.000 +StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 +StageVerifyEC7NADNL=1 +StageAnchorFactorEC7NADNL=1.000 +StageVerifyEC7NADBE=0 +[END OF STAGE] +[END OF CALCULATION OPTIONS PER STAGE] + +[CALCULATION OPTIONS] +CalcFirstStageInitial=1 +CalcMinorNodesOn=1 +CalcReduceDeltas=1 +InputCalculationType=0 +IsVibrationCalculation=0 +AllowableAnchorForceCalculationType=0 +CalcAutoLambdasOn=1 +DesignStage=0 +DesignPileLengthFrom=1.00 +DesignPileLengthTo=2.00 +DesignPileLengthDecrement=1.00 +DesignPileLengthNew=1 +DesignType=0 +DesignEuroCodePartialFactorSet=0 +DesignPartialFactorSetEC7NADNL=0 +DesignEC7NLMethod=0 +DesignEC7BEPartialFactorSet=2 +DesignEC7BEMethod=0 +DesignPartialFactorSet=0 +DesignCURMethod=0 +VerifyType=2 +EuroCodePartialFactorSet=0 +EuroCodeOverallStability=0 +EC7NLMethod=1 +EC7NLOverallPartialFactorSet=3 +EC7NLOverallAnchorFactor=1.000 +EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 +EC7BEOverallStability=0 +EC7BEMethod=0 +EC7BEOverallRiskClass=1 +CURMethod=1 +CUROverallPartialFactorSet=0 +CUROverallAnchorFactor=1.000 +CUROverallStability=0 +CURAnchorForceStage=6 +CURStabilityStage=0 +OverallStabilityType=0 +StabilityExport=0 +StabilityEuroCodePartialFactorSet=0 +StabilityEC7NLPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 +StabilityCURPartialFactorSet=0 +[PARTIAL FACTORS EUROCODE DA1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EUROCODE DA1 SET1] +[PARTIAL FACTORS EUROCODE DA1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EUROCODE DA1 SET2] +[PARTIAL FACTORS EUROCODE DA2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 +[END OF PARTIAL FACTORS EUROCODE DA2] +[PARTIAL FACTORS EUROCODE DA3] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EUROCODE DA3] +[PARTIAL FACTORS EC7 NL 0] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorCohesion=1.300 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 0] +[PARTIAL FACTORS EC7 NL 1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.150 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 1] +[PARTIAL FACTORS EC7 NL 2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.175 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.200 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 2] +[PARTIAL FACTORS EC7 NL 3] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=0.900 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.350 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS EC7 NL 3] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR I] +[PARTIAL FACTORS CUR II] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR II] +[PARTIAL FACTORS CUR III] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 +[END OF PARTIAL FACTORS CUR III] +[END OF CALCULATION OPTIONS] + +[PROBABILISTIC CALCULATION OPTIONS] +ZFunctionType=1 +ZFunctionMobilisation=100.00 +ZFunctionMoment=0.00 +ZFunctionAnchorForce=0.00 +ZFunctionAnchor=0 +[END OF PROBABILISTIC CALCULATION OPTIONS] + +[PROBABILISTIC CONTROL PARAMETERS] +IterationFactor=1.000 +IterationNumber=15 +CriteriaLimit1=0.010000 +CriteriaLimit2=0.010000 +ReliabilityStage=0 +[END OF PROBABILISTIC CONTROL PARAMETERS] + +[END OF INPUT DATA] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shd index d334464c..f33b6d43 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +357,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -372,8 +376,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -381,7 +385,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,15 +396,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -408,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -436,8 +442,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -488,99 +496,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,16 +656,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,16 +684,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,15 +760,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -651,7 +777,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -669,8 +796,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -678,7 +805,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,8 +824,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1731,7 +1859,7 @@ CURAnchorForce=35.582 [ANGLES KRANZ CALCULATION] ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 -PassiveAngleWallWithoutLoad=58 +PassiveAngleWallWithoutLoad=57 PassiveAngleWallWithLoad=63 ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] @@ -1752,7 +1880,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=23.721 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shi index 2cbf46be..7e24eaf6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -353,17 +356,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -371,8 +375,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -380,7 +384,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -391,15 +395,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -407,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -425,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -435,8 +441,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -445,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,99 +495,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,16 +655,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -607,6 +675,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,16 +683,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,15 +759,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -650,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -668,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -677,7 +804,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,8 +823,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shd index 2e7efdac..4fc2ca73 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -298,6 +298,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -321,7 +322,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -332,8 +333,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -344,7 +347,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -352,17 +355,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -370,8 +374,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -379,7 +383,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -390,15 +394,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -406,17 +411,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,8 +430,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -444,15 +450,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -471,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,26 +500,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -519,21 +528,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -546,39 +556,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +654,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +674,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -613,16 +682,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,15 +758,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -649,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -676,7 +803,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -687,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -694,8 +822,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1696,8 +1824,8 @@ CURAnchorForce=20.844 [ANGLES KRANZ CALCULATION] ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 -PassiveAngleWallWithoutLoad=58 -PassiveAngleWallWithLoad=58 +PassiveAngleWallWithoutLoad=57 +PassiveAngleWallWithLoad=57 ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] @@ -1717,7 +1845,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=13.896 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shi index 1488f315..8ea0eb5c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -297,6 +297,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -320,7 +321,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -331,8 +332,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -343,7 +346,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -351,17 +354,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -369,8 +373,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -378,7 +382,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -389,15 +393,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -405,17 +410,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,8 +429,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -443,15 +449,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -470,6 +477,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -491,26 +499,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -518,21 +527,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -545,39 +555,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +653,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +673,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,16 +681,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,15 +757,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -648,7 +774,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +785,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +793,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -675,7 +802,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -686,6 +813,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -693,8 +821,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shd index c8d62572..20a3ebc4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +357,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -372,8 +376,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -381,7 +385,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,15 +396,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -408,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -446,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -494,26 +502,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -521,21 +530,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -548,39 +558,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,16 +656,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,16 +684,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,15 +760,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -651,7 +777,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -669,8 +796,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -678,7 +805,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,8 +824,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1731,7 +1859,7 @@ CURAnchorForce=35.582 [ANGLES KRANZ CALCULATION] ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 -PassiveAngleWallWithoutLoad=58 +PassiveAngleWallWithoutLoad=57 PassiveAngleWallWithLoad=63 ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] @@ -1752,7 +1880,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=23.721 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shi index 299c6d23..33d9f7d4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -353,17 +356,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -371,8 +375,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -380,7 +384,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -391,15 +395,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -407,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -425,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -445,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,26 +501,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -520,21 +529,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -547,39 +557,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,16 +655,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -607,6 +675,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,16 +683,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,15 +759,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -650,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -668,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -677,7 +804,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,8 +823,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shd index 7f4c5b3d..91b1f845 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -365,6 +368,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -392,6 +396,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -419,6 +424,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,6 +452,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +508,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,7 +575,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -579,8 +646,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,8 +658,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +686,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -635,8 +760,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -761,6 +889,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -779,7 +908,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.00 0.05 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shi index 0bd80ed6..0d85a356 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -364,6 +367,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -391,6 +395,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -418,6 +423,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -445,6 +451,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -499,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -526,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -553,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -563,7 +574,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -578,8 +645,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -589,8 +657,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -607,6 +675,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -616,7 +685,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -634,8 +759,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shd index b3d8696e..de135bf9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -298,6 +298,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -321,7 +322,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -332,8 +333,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -344,7 +347,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -363,6 +366,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -390,6 +394,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -417,6 +422,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -444,6 +450,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -471,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -498,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -525,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -552,6 +562,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -562,7 +573,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -577,8 +644,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,8 +656,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -606,6 +674,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,7 +684,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -633,8 +758,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -660,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -687,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -759,6 +887,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -777,7 +906,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.00 0.05 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shi index d6734d12..ef466b60 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-1e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-1e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-1e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -297,6 +297,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -320,7 +321,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -331,8 +332,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -343,7 +346,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -362,6 +365,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,6 +393,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -416,6 +421,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -443,6 +449,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -470,6 +477,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -497,6 +505,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -524,6 +533,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -551,6 +561,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -561,7 +572,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -576,8 +643,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,8 +655,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -605,6 +673,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,7 +683,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -632,8 +757,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -659,6 +785,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +813,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shd index 042fa681..5918fb77 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +357,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -372,8 +376,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -381,7 +385,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,15 +396,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -408,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -446,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -494,26 +502,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -521,21 +530,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -548,39 +558,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,16 +656,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,16 +684,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,15 +760,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -651,7 +777,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -669,8 +796,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -678,7 +805,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,8 +824,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1732,8 +1860,8 @@ CURAnchorForce=27.944 ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 PassiveAngleWallWithoutLoad=57 -PassiveAngleWallWithLoad=58 -ActiveAngleAnchorWall=33 +PassiveAngleWallWithLoad=57 +ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=1.000 @@ -1752,7 +1880,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=18.629 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shi index c1e290a5..13fbd36c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -353,17 +356,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -371,8 +375,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -380,7 +384,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -391,15 +395,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -407,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -425,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -445,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,26 +501,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -520,21 +529,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -547,39 +557,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,16 +655,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -607,6 +675,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,16 +683,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,15 +759,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -650,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -668,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -677,7 +804,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,8 +823,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shd index 054ce0e0..a1009c5d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -283,6 +283,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -306,7 +307,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -317,8 +318,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -329,7 +332,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -337,17 +340,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -355,8 +359,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -364,7 +368,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -375,15 +379,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -391,17 +396,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,8 +415,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -429,15 +435,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -456,6 +463,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -477,26 +485,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -504,21 +513,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -531,39 +541,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -571,16 +639,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -591,6 +659,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -598,16 +667,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -618,15 +743,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -634,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -645,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -652,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -661,7 +788,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -672,6 +799,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -679,8 +807,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1683,7 +1811,7 @@ ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 PassiveAngleWallWithoutLoad=57 PassiveAngleWallWithLoad=57 -ActiveAngleAnchorWall=33 +ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=1.000 @@ -1702,7 +1830,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=10.187 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shi index 33f48177..75b00947 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -282,6 +282,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -305,7 +306,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -316,8 +317,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -328,7 +331,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -336,17 +339,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -354,8 +358,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -363,7 +367,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -374,15 +378,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -390,17 +395,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,8 +414,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -428,15 +434,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -455,6 +462,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -476,26 +484,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -503,21 +512,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -530,39 +540,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -570,16 +638,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -590,6 +658,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -597,16 +666,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -617,15 +742,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -633,7 +759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -644,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -651,8 +778,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -660,7 +787,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -671,6 +798,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -678,8 +806,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shd index 8aab005d..401d1b98 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +357,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -372,8 +376,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -381,7 +385,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,15 +396,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -408,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -446,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -494,26 +502,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -521,21 +530,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -548,39 +558,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,16 +656,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,16 +684,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,15 +760,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -651,7 +777,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -669,8 +796,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -678,7 +805,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,8 +824,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1732,8 +1860,8 @@ CURAnchorForce=27.944 ActiveAngleWithoutLoad=32 ActiveAngleWithLoad=32 PassiveAngleWallWithoutLoad=57 -PassiveAngleWallWithLoad=58 -ActiveAngleAnchorWall=33 +PassiveAngleWallWithLoad=57 +ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=1.000 @@ -1752,7 +1880,7 @@ IsCURAnchorForceCalculated=1 CURAnchorForce=18.629 ClashAxis=-7.000 ActiveAngleNoLoad=32 -PassiveAngleNoLoad=-58 +PassiveAngleNoLoad=-57 [END OF KRANZ DIAGRAM RESULTS] [END OF OUTPUT DATA] [END OF DUMPFILE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shi index 59db82bf..39e17def 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -353,17 +356,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -371,8 +375,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -380,7 +384,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -391,15 +395,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -407,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -425,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -445,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,26 +501,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -520,21 +529,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -547,39 +557,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,16 +655,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -607,6 +675,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,16 +683,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,15 +759,16 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -650,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -668,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -677,7 +804,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,8 +823,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shd index 423585fc..db6adcfb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -301,6 +301,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +336,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -347,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -366,6 +369,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -393,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -420,6 +425,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,7 +576,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -580,8 +647,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,8 +659,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -609,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,7 +687,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -636,8 +761,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -663,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +890,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,7 +909,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.00 0.05 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shi index 8ac3e553..a47e424c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -365,6 +368,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -392,6 +396,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -419,6 +424,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,6 +452,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +508,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,7 +575,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -579,8 +646,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,8 +658,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -608,6 +676,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +686,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -635,8 +760,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shd index f23808de..a487dbb1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -264,6 +264,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -287,7 +288,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -298,8 +299,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -310,7 +313,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -329,6 +332,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -356,6 +360,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -383,6 +388,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -410,6 +416,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,6 +444,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -464,6 +472,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -491,6 +500,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -518,6 +528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -528,7 +539,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -543,8 +610,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -554,8 +622,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -572,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -581,7 +650,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -599,8 +724,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -626,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -653,6 +780,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -725,6 +853,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -743,7 +872,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.00 0.05 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shi index 1f3efef0..3c054775 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-2e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-2e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-2e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -263,6 +263,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -286,7 +287,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -297,8 +298,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -309,7 +312,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -328,6 +331,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -355,6 +359,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,6 +387,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,6 +415,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,6 +443,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -490,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -517,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -527,7 +538,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -542,8 +609,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -553,8 +621,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -571,6 +639,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -580,7 +649,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -598,8 +723,9 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-3.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-3.shd index 1e1d8743..6d80e62e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-3.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-3.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-3.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-3.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -332,6 +332,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -341,6 +342,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -350,6 +352,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -359,6 +362,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -382,7 +386,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -393,8 +397,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -405,7 +411,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -413,17 +419,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,8 +438,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -440,7 +447,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -451,15 +458,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -467,17 +475,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -485,8 +494,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -505,15 +514,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -532,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +570,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -567,12 +579,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -586,6 +598,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -594,7 +607,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -613,6 +626,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -621,25 +635,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -647,16 +718,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +738,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -674,16 +746,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +822,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +830,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -710,7 +839,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -721,6 +850,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -728,8 +858,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -737,7 +867,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -748,6 +878,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,8 +886,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-3.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-3.shi index abc76b3e..472d3221 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-3.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-3.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-3.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-3.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -331,6 +331,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -340,6 +341,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -349,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -358,6 +361,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -381,7 +385,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -392,8 +396,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -404,7 +410,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -412,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,8 +437,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -439,7 +446,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -450,15 +457,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -466,17 +474,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -484,8 +493,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -504,15 +513,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -531,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -566,12 +578,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -585,6 +597,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -593,7 +606,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -612,6 +625,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -620,25 +634,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -646,16 +717,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +737,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -673,16 +745,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +829,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -709,7 +838,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -720,6 +849,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -727,8 +857,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -736,7 +866,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -747,6 +877,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,8 +885,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-4.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-4.shd index 6fc00142..2a360e85 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-4.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-4.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-4.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-4.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -312,6 +312,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -321,6 +322,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -330,6 +332,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -353,7 +356,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -364,8 +367,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -376,7 +381,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -384,17 +389,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -402,8 +408,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -411,7 +417,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -422,15 +428,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -438,17 +445,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -456,8 +464,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -476,15 +484,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -503,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -530,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -538,12 +549,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -557,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,7 +577,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -584,6 +596,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -592,25 +605,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,16 +688,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +708,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -645,16 +716,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -665,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -672,8 +800,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -681,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -692,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -699,8 +828,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -708,7 +837,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -719,6 +848,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -726,8 +856,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-4.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-4.shi index d118e81e..7b6f1ef7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-4.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-4.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-4.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-4.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -311,6 +311,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -320,6 +321,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -329,6 +331,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -352,7 +355,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -363,8 +366,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -375,7 +380,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -383,17 +388,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -401,8 +407,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -410,7 +416,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -421,15 +427,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -437,17 +444,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -455,8 +463,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -475,15 +483,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -502,6 +511,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -529,6 +539,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -537,12 +548,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -556,6 +567,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,7 +576,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -583,6 +595,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,25 +604,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,16 +687,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -637,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +715,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -671,8 +799,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -680,7 +808,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +827,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -707,7 +836,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +855,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shd index 4fed50d0..56c79e2b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-5a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-5a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -465,26 +473,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -492,21 +501,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -519,39 +529,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shi index 71efa90c..1d0455ef 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-5a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-5a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-5a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -464,26 +472,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -491,21 +500,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -518,39 +528,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shd index aeb707db..5e1fe827 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-5b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-5b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -465,26 +473,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -492,21 +501,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -519,39 +529,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shi index dad390c9..4dbcb939 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-5b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-5b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-5b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -464,26 +472,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -491,21 +500,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -518,39 +528,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-6.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-6.shd index 62abd0da..ebc1ba2a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-6.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-6.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-6.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-6.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -465,26 +473,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -492,21 +501,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -519,39 +529,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-6.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-6.shi index 5b87f15d..01607477 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-6.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-6.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-6.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-6.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -464,26 +472,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -491,21 +500,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -518,39 +528,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shd index eb9be6ea..ab9fc7b9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-7a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-7a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -277,6 +277,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,7 +301,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -311,8 +312,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -323,7 +326,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -331,17 +334,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -349,8 +353,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -358,7 +362,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -369,15 +373,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -385,17 +390,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,8 +409,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -423,15 +429,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -450,6 +457,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,26 +479,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,21 +507,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,39 +535,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +633,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +653,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +661,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +745,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -628,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -655,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1402,66 +1530,66 @@ Status character 0.02464 0.00000 0.02464 0.02464 110 100 - 17.53529 0.00000 219.61875 17.53529 110 8 - 15.89495 0.00000 219.23698 15.89495 110 7 - - 14.56291 0.00000 218.85466 14.56291 110 0 - + 14.56291 0.00000 218.85466 14.56291 110 7 - 13.42593 0.00000 218.47179 13.42593 110 6 - 12.47041 0.00000 218.18429 12.47041 110 6 - - 12.39151 0.00000 217.99244 12.39151 110 0 - + 12.39151 0.00000 217.99244 12.39151 110 6 - 11.54675 0.00000 217.70439 11.54675 110 5 - 10.75270 0.00000 217.31986 10.75270 110 5 - 10.03409 0.00000 216.93476 10.03409 110 5 - 9.37993 0.00000 216.54911 9.37993 110 4 - 8.81092 0.00000 216.25952 8.81092 110 4 - - 8.75265 0.00000 216.06627 8.75265 110 0 - - 8.23252 0.00000 215.77611 8.23252 110 0 - + 8.75265 0.00000 216.06627 8.75265 110 4 - + 8.23252 0.00000 215.77611 8.23252 110 4 - 7.72683 0.00000 215.38876 7.72683 110 4 - 7.25996 0.00000 215.00083 7.25996 110 3 - - 6.82798 0.00000 214.61234 6.82798 110 0 - + 6.82798 0.00000 214.61234 6.82798 110 3 - 6.44948 0.00000 214.32061 6.44948 110 3 - - 6.40573 0.00000 214.12593 6.40573 110 0 - - 6.05560 0.00000 213.83363 6.05560 110 0 - - 5.70973 0.00000 213.44340 5.70973 110 0 - + 6.40573 0.00000 214.12593 6.40573 110 3 - + 6.05560 0.00000 213.83363 6.05560 110 3 - + 5.70973 0.00000 213.44340 5.70973 110 3 - 5.38764 0.00000 213.05260 5.38764 110 3 - 5.08734 0.00000 212.66121 5.08734 110 2 - 4.82370 0.00000 212.36730 4.82370 110 2 - 4.79059 0.00000 212.17117 4.79059 110 2 - - 4.54516 0.00000 211.87667 4.54516 110 0 - + 4.54516 0.00000 211.87667 4.54516 110 2 - 4.30027 0.00000 211.48352 4.30027 110 2 - - 4.07106 0.00000 211.08977 4.07106 110 0 - + 4.07106 0.00000 211.08977 4.07106 110 2 - 3.85636 0.00000 210.69543 3.85636 110 2 - - 3.66779 0.00000 210.39930 3.66779 110 0 - - 3.64260 0.00000 210.20168 3.64260 110 0 - + 3.66779 0.00000 210.39930 3.66779 110 2 - + 3.64260 0.00000 210.20168 3.64260 110 2 - 3.46631 0.00000 209.90495 3.46631 110 2 - 3.28910 0.00000 209.50881 3.28910 110 2 - - 3.12265 0.00000 209.11206 3.12265 110 0 - - 2.96621 0.00000 208.71470 2.96621 110 0 - - 2.82880 0.00000 208.41631 2.82880 110 0 - + 3.12265 0.00000 209.11206 3.12265 110 1 - + 2.96621 0.00000 208.71470 2.96621 110 1 - + 2.82880 0.00000 208.41631 2.82880 110 1 - 2.80956 0.00000 208.21717 2.80956 110 1 - - 2.68067 0.00000 207.91816 2.68067 110 0 - - 2.55034 0.00000 207.51897 2.55034 110 0 - + 2.68067 0.00000 207.91816 2.68067 110 1 - + 2.55034 0.00000 207.51897 2.55034 110 1 - 2.42757 0.00000 207.11916 2.42757 110 1 - 2.31186 0.00000 206.71873 2.31186 110 1 - 2.21020 0.00000 206.41801 2.21020 110 1 - 2.19543 0.00000 206.21733 2.19543 110 1 - - 2.09981 0.00000 205.91600 2.09981 110 0 - - 2.00264 0.00000 205.51369 2.00264 110 0 - + 2.09981 0.00000 205.91600 2.09981 110 1 - + 2.00264 0.00000 205.51369 2.00264 110 1 - 1.91088 0.00000 205.11076 1.91088 110 1 - - 1.82417 0.00000 204.70719 1.82417 110 0 - + 1.82417 0.00000 204.70719 1.82417 110 1 - 1.74797 0.00000 204.40411 1.74797 110 1 - 1.73655 0.00000 204.20185 1.73655 110 1 - - 1.66469 0.00000 203.89814 1.66469 110 0 - + 1.66469 0.00000 203.89814 1.66469 110 1 - 1.59134 0.00000 203.49266 1.59134 110 1 - 1.52191 0.00000 203.08653 1.52191 110 1 - 1.45615 0.00000 202.67976 1.45615 110 1 - - 1.39832 0.00000 202.37427 1.39832 110 0 - - 1.38945 0.00000 202.17040 1.38945 110 0 - - 1.33478 0.00000 201.86426 1.33478 110 0 - + 1.39832 0.00000 202.37427 1.39832 110 1 - + 1.38945 0.00000 202.17040 1.38945 110 1 - + 1.33478 0.00000 201.86426 1.33478 110 1 - 1.27877 0.00000 201.45553 1.27877 110 1 - 1.22563 0.00000 201.04615 1.22563 110 1 - 1.17518 0.00000 200.63610 1.17518 110 1 - 1.13079 0.00000 200.32957 1.13079 110 1 - 1.12384 0.00000 200.24693 1.12384 110 1 - 1.08178 0.00000 200.24007 1.08178 110 1 - - 1.03853 0.00000 200.23135 1.03853 110 0 - + 1.03853 0.00000 200.23135 1.03853 110 1 - 0.99740 0.00000 200.22309 0.99740 110 0 - 0.95828 0.00000 200.21527 0.95828 110 0 - 0.92383 0.00000 200.20966 0.92383 110 0 - @@ -1893,66 +2021,66 @@ Status character 0.02464 0.00000 0.02464 0.02464 110 100 - 17.53529 0.00000 219.61875 17.53529 110 8 - 15.89495 0.00000 219.23698 15.89495 110 7 - - 14.56291 0.00000 218.85466 14.56291 110 0 - + 14.56291 0.00000 218.85466 14.56291 110 7 - 13.42593 0.00000 218.47179 13.42593 110 6 - 12.47041 0.00000 218.18429 12.47041 110 6 - - 12.39151 0.00000 217.99244 12.39151 110 0 - + 12.39151 0.00000 217.99244 12.39151 110 6 - 11.54675 0.00000 217.70439 11.54675 110 5 - 10.75270 0.00000 217.31986 10.75270 110 5 - 10.03409 0.00000 216.93476 10.03409 110 5 - 9.37993 0.00000 216.54911 9.37993 110 4 - 8.81092 0.00000 216.25952 8.81092 110 4 - - 8.75265 0.00000 216.06627 8.75265 110 0 - - 8.23252 0.00000 215.77611 8.23252 110 0 - + 8.75265 0.00000 216.06627 8.75265 110 4 - + 8.23252 0.00000 215.77611 8.23252 110 4 - 7.72683 0.00000 215.38876 7.72683 110 4 - 7.25996 0.00000 215.00083 7.25996 110 3 - - 6.82798 0.00000 214.61234 6.82798 110 0 - + 6.82798 0.00000 214.61234 6.82798 110 3 - 6.44948 0.00000 214.32061 6.44948 110 3 - - 6.40573 0.00000 214.12593 6.40573 110 0 - - 6.05560 0.00000 213.83363 6.05560 110 0 - - 5.70973 0.00000 213.44340 5.70973 110 0 - + 6.40573 0.00000 214.12593 6.40573 110 3 - + 6.05560 0.00000 213.83363 6.05560 110 3 - + 5.70973 0.00000 213.44340 5.70973 110 3 - 5.38764 0.00000 213.05260 5.38764 110 3 - 5.08734 0.00000 212.66121 5.08734 110 2 - 4.82370 0.00000 212.36730 4.82370 110 2 - 4.79059 0.00000 212.17117 4.79059 110 2 - - 4.54516 0.00000 211.87667 4.54516 110 0 - + 4.54516 0.00000 211.87667 4.54516 110 2 - 4.30027 0.00000 211.48352 4.30027 110 2 - - 4.07106 0.00000 211.08977 4.07106 110 0 - + 4.07106 0.00000 211.08977 4.07106 110 2 - 3.85636 0.00000 210.69543 3.85636 110 2 - - 3.66779 0.00000 210.39930 3.66779 110 0 - - 3.64260 0.00000 210.20168 3.64260 110 0 - + 3.66779 0.00000 210.39930 3.66779 110 2 - + 3.64260 0.00000 210.20168 3.64260 110 2 - 3.46631 0.00000 209.90495 3.46631 110 2 - 3.28910 0.00000 209.50881 3.28910 110 2 - - 3.12265 0.00000 209.11206 3.12265 110 0 - - 2.96621 0.00000 208.71470 2.96621 110 0 - - 2.82880 0.00000 208.41631 2.82880 110 0 - + 3.12265 0.00000 209.11206 3.12265 110 1 - + 2.96621 0.00000 208.71470 2.96621 110 1 - + 2.82880 0.00000 208.41631 2.82880 110 1 - 2.80956 0.00000 208.21717 2.80956 110 1 - - 2.68067 0.00000 207.91816 2.68067 110 0 - - 2.55034 0.00000 207.51897 2.55034 110 0 - + 2.68067 0.00000 207.91816 2.68067 110 1 - + 2.55034 0.00000 207.51897 2.55034 110 1 - 2.42757 0.00000 207.11916 2.42757 110 1 - 2.31186 0.00000 206.71873 2.31186 110 1 - 2.21020 0.00000 206.41801 2.21020 110 1 - 2.19543 0.00000 206.21733 2.19543 110 1 - - 2.09981 0.00000 205.91600 2.09981 110 0 - - 2.00264 0.00000 205.51369 2.00264 110 0 - + 2.09981 0.00000 205.91600 2.09981 110 1 - + 2.00264 0.00000 205.51369 2.00264 110 1 - 1.91088 0.00000 205.11076 1.91088 110 1 - - 1.82417 0.00000 204.70719 1.82417 110 0 - + 1.82417 0.00000 204.70719 1.82417 110 1 - 1.74797 0.00000 204.40411 1.74797 110 1 - 1.73655 0.00000 204.20185 1.73655 110 1 - - 1.66469 0.00000 203.89814 1.66469 110 0 - + 1.66469 0.00000 203.89814 1.66469 110 1 - 1.59134 0.00000 203.49266 1.59134 110 1 - 1.52191 0.00000 203.08653 1.52191 110 1 - 1.45615 0.00000 202.67976 1.45615 110 1 - - 1.39832 0.00000 202.37427 1.39832 110 0 - - 1.38945 0.00000 202.17040 1.38945 110 0 - - 1.33478 0.00000 201.86426 1.33478 110 0 - + 1.39832 0.00000 202.37427 1.39832 110 1 - + 1.38945 0.00000 202.17040 1.38945 110 1 - + 1.33478 0.00000 201.86426 1.33478 110 1 - 1.27877 0.00000 201.45553 1.27877 110 1 - 1.22563 0.00000 201.04615 1.22563 110 1 - 1.17518 0.00000 200.63610 1.17518 110 1 - 1.13079 0.00000 200.32957 1.13079 110 1 - 1.12384 0.00000 200.24693 1.12384 110 1 - 1.08178 0.00000 200.24007 1.08178 110 1 - - 1.03853 0.00000 200.23135 1.03853 110 0 - + 1.03853 0.00000 200.23135 1.03853 110 1 - 0.99740 0.00000 200.22309 0.99740 110 0 - 0.95828 0.00000 200.21527 0.95828 110 0 - 0.92383 0.00000 200.20966 0.92383 110 0 - diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shi index 21f40c2f..e210df05 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-7a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-7a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-7a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -276,6 +276,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -299,7 +300,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -310,8 +311,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -322,7 +325,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -330,17 +333,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -348,8 +352,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -357,7 +361,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -368,15 +372,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -384,17 +389,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -402,8 +408,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -422,15 +428,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -449,6 +456,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,26 +478,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,21 +506,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,39 +534,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +632,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +652,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,16 +660,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +736,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +744,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -627,7 +753,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +772,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -654,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -665,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -672,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shd index 643d23eb..6ea7be54 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-7b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-7b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -277,6 +277,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,7 +301,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -311,8 +312,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -323,7 +326,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -331,17 +334,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -349,8 +353,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -358,7 +362,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -369,15 +373,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -385,17 +390,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,8 +409,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -423,15 +429,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -450,6 +457,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,26 +479,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,21 +507,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,39 +535,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +633,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +653,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +661,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +745,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -628,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -655,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shi index cfa82949..6c121aa6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-7b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-7b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-7b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -276,6 +276,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -299,7 +300,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -310,8 +311,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -322,7 +325,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -330,17 +333,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -348,8 +352,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -357,7 +361,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -368,15 +372,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -384,17 +389,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -402,8 +408,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -422,15 +428,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -449,6 +456,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,26 +478,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,21 +506,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,39 +534,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +632,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +652,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,16 +660,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +736,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +744,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -627,7 +753,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +772,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -654,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -665,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -672,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-8.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-8.shd index af834ed8..b7d9dbc9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-8.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-8.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-8.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-8.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -317,6 +317,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -340,7 +341,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -351,8 +352,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -363,7 +366,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -371,17 +374,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,8 +393,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -398,7 +402,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -409,15 +413,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -425,17 +430,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -443,8 +449,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -463,15 +469,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -490,6 +497,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -511,26 +519,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -538,21 +547,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -565,39 +575,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,16 +673,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +693,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -632,16 +701,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +777,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +785,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -668,7 +794,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -679,6 +805,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -686,8 +813,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -695,7 +822,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -706,6 +833,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -713,8 +841,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-8.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-8.shi index 10509311..c50bcc2e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-8.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-8.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-8.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-8.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -316,6 +316,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -339,7 +340,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -350,8 +351,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -362,7 +365,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,17 +373,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -388,8 +392,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -397,7 +401,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -408,15 +412,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -424,17 +429,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -442,8 +448,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -462,15 +468,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -489,6 +496,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -510,26 +518,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -537,21 +546,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -564,39 +574,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -604,16 +672,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -624,6 +692,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -631,16 +700,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -651,6 +776,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -658,8 +784,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -667,7 +793,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -678,6 +804,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -685,8 +812,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -694,7 +821,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -705,6 +832,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -712,8 +840,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-9.shd b/tests/test_data/dsheetpiling/benchmarks/bm3-9.shd index 65c6bf52..91d2f264 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-9.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-9.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-9.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-9.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -351,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -374,7 +375,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -385,8 +386,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -397,7 +400,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -405,17 +408,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,8 +427,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -432,7 +436,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -443,15 +447,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -459,17 +464,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,8 +483,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -497,15 +503,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -524,6 +531,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -545,26 +553,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -572,21 +581,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -599,39 +609,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,16 +707,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +727,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -666,16 +735,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -686,6 +811,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -693,8 +819,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -702,7 +828,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -713,6 +839,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -720,8 +847,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -729,7 +856,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -740,6 +867,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,8 +875,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1205,71 +1333,71 @@ Status character [DATA] 0.00000 0.00000 50.82323 0.00000 110 0 - 0.85400 0.00000 54.84122 0.85400 110 2 - - 1.70800 0.00000 58.85922 1.70800 110 0 - - 2.56200 0.00000 62.87722 2.56200 110 0 - - 3.41600 0.00000 66.89522 3.41600 110 0 - - 4.27000 0.00000 70.91322 4.27000 110 0 - - 4.27000 0.00000 70.91322 4.27000 110 0 - - 5.12400 0.00000 74.93122 5.12400 110 0 - - 5.97800 0.00000 78.94922 5.97800 110 0 - + 1.70800 0.00000 58.85922 1.70800 110 3 - + 2.56200 0.00000 62.87722 2.56200 110 4 - + 3.41600 0.00000 66.89522 3.41600 110 5 - + 4.27000 0.00000 70.91322 4.27000 110 6 - + 4.27000 0.00000 70.91322 4.27000 110 6 - + 5.12400 0.00000 74.93122 5.12400 110 7 - + 5.97800 0.00000 78.94922 5.97800 110 8 - 6.83200 0.00000 82.96722 6.83200 110 8 - 7.68600 0.00000 86.98522 7.68600 110 9 - 8.54000 0.00000 91.00322 8.54000 110 9 - 8.54000 0.00000 91.00322 8.54000 110 9 - - 9.55354 1.04615 95.77184 9.55354 110 0 - + 9.55354 1.04615 95.77184 9.55354 110 10 - 10.56708 2.09231 100.54045 10.56708 110 11 - - 11.58062 3.13846 105.30907 11.58062 110 0 - + 11.58062 3.13846 105.30907 11.58062 110 11 - 12.59415 4.18462 110.07768 12.59415 110 11 - 13.60769 5.23077 114.84630 13.60769 110 12 - 13.60769 5.23077 114.84630 13.60769 110 12 - - 14.62123 6.27692 119.61492 14.62123 110 0 - - 15.63477 7.32308 124.38353 15.63477 110 0 - + 14.62123 6.27692 119.61492 14.62123 110 12 - + 15.63477 7.32308 124.38353 15.63477 110 13 - 16.64831 8.36923 129.15215 16.64831 110 13 - 17.66185 9.41538 133.92076 17.66185 110 13 - - 18.67538 10.46154 138.68938 18.67538 110 0 - - 18.67538 10.46154 138.68938 18.67538 110 0 - - 19.68892 11.50769 143.45799 19.68892 110 0 - - 20.70246 12.55385 148.22661 20.70246 110 0 - - 21.71600 13.60000 152.99522 21.71600 110 0 - + 18.67538 10.46154 138.68938 18.67538 110 13 - + 18.67538 10.46154 138.68938 18.67538 110 13 - + 19.68892 11.50769 143.45799 19.68892 110 14 - + 20.70246 12.55385 148.22661 20.70246 110 14 - + 21.71600 13.60000 152.99522 21.71600 110 14 - 22.72954 14.64615 157.76384 22.72954 110 14 - 23.74308 15.69231 162.53245 23.74308 110 15 - 23.74308 15.69231 162.53245 23.74308 110 15 - - 24.75662 16.73846 167.30107 24.75662 110 0 - - 25.77015 17.78462 172.06968 25.77015 110 0 - + 24.75662 16.73846 167.30107 24.75662 110 15 - + 25.77015 17.78462 172.06968 25.77015 110 15 - 26.78369 18.83077 176.83830 26.78369 110 15 - 27.79723 19.87692 181.60692 27.79723 110 15 - - 28.81077 20.92308 186.37553 28.81077 110 0 - 28.81077 20.92308 186.37553 28.81077 110 15 - - 29.82431 21.96923 191.14415 29.82431 110 0 - + 28.81077 20.92308 186.37553 28.81077 110 15 - + 29.82431 21.96923 191.14415 29.82431 110 16 - 30.83785 23.01538 195.91276 30.83785 110 16 - 31.85138 24.06154 200.68138 31.85138 110 16 - 32.86492 25.10769 205.44999 32.86492 110 16 - - 33.87846 26.15385 210.21861 33.87846 110 0 - - 33.87846 26.15385 210.21861 33.87846 110 0 - + 33.87846 26.15385 210.21861 33.87846 110 16 - + 33.87846 26.15385 210.21861 33.87846 110 16 - 34.89200 27.20000 214.98722 34.89200 110 16 - 35.90554 28.24615 219.75584 35.90554 110 16 - - 36.91908 29.29231 224.52445 36.91908 110 0 - + 36.91908 29.29231 224.52445 36.91908 110 16 - 37.93262 30.33846 229.29307 37.93262 110 17 - 38.94615 31.38462 234.06168 38.94615 110 17 - 38.94615 31.38462 234.06168 38.94615 110 17 - 39.95969 32.43077 238.83030 39.95969 110 17 - - 40.97323 33.47692 243.59892 40.97323 110 0 - + 40.97323 33.47692 243.59892 40.97323 110 17 - 41.98677 34.52308 248.36753 41.98677 110 17 - 43.00031 35.56923 253.13615 43.00031 110 17 - - 44.01385 36.61538 257.90476 44.01385 110 0 - - 44.01385 36.61538 257.90476 44.01385 110 0 - + 44.01385 36.61538 257.90476 44.01385 110 17 - + 44.01385 36.61538 257.90476 44.01385 110 17 - 45.02738 37.66154 262.67338 45.02738 110 17 - - 46.04092 38.70769 267.44199 46.04092 110 0 - + 46.04092 38.70769 267.44199 46.04092 110 17 - 47.05446 39.75385 272.21061 47.05446 110 17 - 48.06800 40.80000 276.97922 48.06800 110 17 - - 49.08154 41.84615 281.74784 49.08154 110 0 - - 49.08154 41.84615 281.74784 49.08154 110 0 - - 50.09508 42.89231 286.51645 50.09508 110 0 - + 49.08154 41.84615 281.74784 49.08154 110 17 - + 49.08154 41.84615 281.74784 49.08154 110 17 - + 50.09508 42.89231 286.51645 50.09508 110 17 - 51.10862 43.93846 291.28507 51.10862 110 18 - 52.12215 44.98462 296.05368 52.12215 110 18 - 53.13569 46.03077 300.82230 53.13569 110 18 - - 54.14923 47.07692 305.59092 54.14923 110 0 - - 54.14923 47.07692 305.59092 54.14923 110 0 - + 54.14923 47.07692 305.59092 54.14923 110 18 - + 54.14923 47.07692 305.59092 54.14923 110 18 - 55.16277 48.12308 310.35953 55.16277 110 18 - 56.17631 49.16923 315.12815 56.17631 110 18 - 57.18985 50.21538 319.89676 57.18985 110 18 - @@ -1298,46 +1426,46 @@ Status character 89.56200 62.40000 245.32200 89.56200 110 37 - 92.25300 59.60000 252.69300 92.25300 110 37 - 94.94400 56.80000 260.06400 94.94400 110 37 - - 97.63500 54.00000 267.43500 97.63500 110 0 - - 97.63500 54.00000 267.43500 97.63500 110 0 - + 97.63500 54.00000 267.43500 97.63500 110 37 - + 97.63500 54.00000 267.43500 97.63500 110 37 - 100.32600 51.20000 274.80600 100.32600 110 37 - 103.01700 48.40000 282.17700 103.01700 110 37 - 105.70800 45.60000 289.54800 105.70800 110 37 - 108.39900 42.80000 296.91900 108.39900 110 37 - - 111.09000 40.00000 304.29000 111.09000 110 0 - + 111.09000 40.00000 304.29000 111.09000 110 37 - 69.23000 40.00000 1043.28000 69.23000 110 7 - 69.94667 41.66667 1054.08000 69.94667 110 7 - - 70.66333 43.33333 1064.88000 70.66333 110 0 - + 70.66333 43.33333 1064.88000 70.66333 110 7 - 71.38000 45.00000 1075.68000 71.38000 110 7 - - 72.09667 46.66667 1086.48000 72.09667 110 0 - - 72.81333 48.33333 1097.28000 72.81333 110 0 - - 72.81333 48.33333 1097.28000 72.81333 110 0 - - 73.53000 50.00000 1108.08000 73.53000 110 0 - - 74.24667 51.66667 1118.88000 74.24667 110 0 - - 74.96333 53.33333 1129.68000 74.96333 110 0 - - 75.68000 55.00000 1140.48000 75.68000 110 0 - + 72.09667 46.66667 1086.48000 72.09667 110 7 - + 72.81333 48.33333 1097.28000 72.81333 110 7 - + 72.81333 48.33333 1097.28000 72.81333 110 7 - + 73.53000 50.00000 1108.08000 73.53000 110 7 - + 74.24667 51.66667 1118.88000 74.24667 110 7 - + 74.96333 53.33333 1129.68000 74.96333 110 7 - + 75.68000 55.00000 1140.48000 75.68000 110 7 - 76.39667 56.66667 1151.28000 76.39667 110 7 - 76.39667 56.66667 1151.28000 76.39667 110 7 - - 77.11333 58.33333 1162.08000 77.11333 110 0 - + 77.11333 58.33333 1162.08000 77.11333 110 7 - 77.83000 60.00000 1172.88000 77.83000 110 7 - - 78.54667 61.66667 1183.68000 78.54667 110 0 - + 78.54667 61.66667 1183.68000 78.54667 110 7 - 79.26333 63.33333 1194.48000 79.26333 110 7 - - 79.98000 65.00000 1205.28000 79.98000 110 0 - - 79.98000 65.00000 1205.28000 79.98000 110 0 - + 79.98000 65.00000 1205.28000 79.98000 110 7 - + 79.98000 65.00000 1205.28000 79.98000 110 7 - 80.69667 66.66667 1216.08000 80.69667 110 7 - - 81.41333 68.33333 1226.88000 81.41333 110 0 - + 81.41333 68.33333 1226.88000 81.41333 110 7 - 82.13000 70.00000 1237.68000 82.13000 110 7 - 82.84667 71.66667 1248.48000 82.84667 110 7 - 83.56333 73.33333 1259.28000 83.56333 110 7 - 83.56333 73.33333 1259.28000 83.56333 110 7 - - 84.28000 75.00000 1270.08000 84.28000 110 0 - + 84.28000 75.00000 1270.08000 84.28000 110 7 - 84.99667 76.66667 1280.88000 84.99667 110 7 - - 85.71333 78.33333 1291.68000 85.71333 110 0 - + 85.71333 78.33333 1291.68000 85.71333 110 7 - 86.43000 80.00000 1302.48000 86.43000 110 7 - - 87.14667 81.66667 1313.28000 87.14667 110 0 - - 87.14667 81.66667 1313.28000 87.14667 110 0 - + 87.14667 81.66667 1313.28000 87.14667 110 7 - + 87.14667 81.66667 1313.28000 87.14667 110 7 - 87.86333 83.33333 1324.08000 87.86333 110 7 - - 88.58000 85.00000 1334.88000 88.58000 110 0 - + 88.58000 85.00000 1334.88000 88.58000 110 7 - 89.29667 86.66667 1345.68000 89.29667 110 7 - 90.01333 88.33333 1356.48000 90.01333 110 7 - 90.73000 90.00000 1367.28000 90.73000 110 7 - @@ -1436,71 +1564,71 @@ Status character [DATA] 0.00000 0.00000 50.82323 0.00000 110 0 - 0.85400 0.00000 54.84122 0.85400 110 2 - - 1.70800 0.00000 58.85922 1.70800 110 0 - - 2.56200 0.00000 62.87722 2.56200 110 0 - - 3.41600 0.00000 66.89522 3.41600 110 0 - - 4.27000 0.00000 70.91322 4.27000 110 0 - - 4.27000 0.00000 70.91322 4.27000 110 0 - - 5.12400 0.00000 74.93122 5.12400 110 0 - - 5.97800 0.00000 78.94922 5.97800 110 0 - + 1.70800 0.00000 58.85922 1.70800 110 3 - + 2.56200 0.00000 62.87722 2.56200 110 4 - + 3.41600 0.00000 66.89522 3.41600 110 5 - + 4.27000 0.00000 70.91322 4.27000 110 6 - + 4.27000 0.00000 70.91322 4.27000 110 6 - + 5.12400 0.00000 74.93122 5.12400 110 7 - + 5.97800 0.00000 78.94922 5.97800 110 8 - 6.83200 0.00000 82.96722 6.83200 110 8 - 7.68600 0.00000 86.98522 7.68600 110 9 - 8.54000 0.00000 91.00322 8.54000 110 9 - 8.54000 0.00000 91.00322 8.54000 110 9 - - 9.55354 1.04615 95.77184 9.55354 110 0 - + 9.55354 1.04615 95.77184 9.55354 110 10 - 10.56708 2.09231 100.54045 10.56708 110 11 - - 11.58062 3.13846 105.30907 11.58062 110 0 - + 11.58062 3.13846 105.30907 11.58062 110 11 - 12.59415 4.18462 110.07768 12.59415 110 11 - 13.60769 5.23077 114.84630 13.60769 110 12 - 13.60769 5.23077 114.84630 13.60769 110 12 - - 14.62123 6.27692 119.61492 14.62123 110 0 - - 15.63477 7.32308 124.38353 15.63477 110 0 - + 14.62123 6.27692 119.61492 14.62123 110 12 - + 15.63477 7.32308 124.38353 15.63477 110 13 - 16.64831 8.36923 129.15215 16.64831 110 13 - 17.66185 9.41538 133.92076 17.66185 110 13 - - 18.67538 10.46154 138.68938 18.67538 110 0 - - 18.67538 10.46154 138.68938 18.67538 110 0 - - 19.68892 11.50769 143.45799 19.68892 110 0 - - 20.70246 12.55385 148.22661 20.70246 110 0 - - 21.71600 13.60000 152.99522 21.71600 110 0 - + 18.67538 10.46154 138.68938 18.67538 110 13 - + 18.67538 10.46154 138.68938 18.67538 110 13 - + 19.68892 11.50769 143.45799 19.68892 110 14 - + 20.70246 12.55385 148.22661 20.70246 110 14 - + 21.71600 13.60000 152.99522 21.71600 110 14 - 22.72954 14.64615 157.76384 22.72954 110 14 - 23.74308 15.69231 162.53245 23.74308 110 15 - 23.74308 15.69231 162.53245 23.74308 110 15 - - 24.75662 16.73846 167.30107 24.75662 110 0 - - 25.77015 17.78462 172.06968 25.77015 110 0 - + 24.75662 16.73846 167.30107 24.75662 110 15 - + 25.77015 17.78462 172.06968 25.77015 110 15 - 26.78369 18.83077 176.83830 26.78369 110 15 - 27.79723 19.87692 181.60692 27.79723 110 15 - - 28.81077 20.92308 186.37553 28.81077 110 0 - 28.81077 20.92308 186.37553 28.81077 110 15 - - 29.82431 21.96923 191.14415 29.82431 110 0 - + 28.81077 20.92308 186.37553 28.81077 110 15 - + 29.82431 21.96923 191.14415 29.82431 110 16 - 30.83785 23.01538 195.91276 30.83785 110 16 - 31.85138 24.06154 200.68138 31.85138 110 16 - 32.86492 25.10769 205.44999 32.86492 110 16 - - 33.87846 26.15385 210.21861 33.87846 110 0 - - 33.87846 26.15385 210.21861 33.87846 110 0 - + 33.87846 26.15385 210.21861 33.87846 110 16 - + 33.87846 26.15385 210.21861 33.87846 110 16 - 34.89200 27.20000 214.98722 34.89200 110 16 - 35.90554 28.24615 219.75584 35.90554 110 16 - - 36.91908 29.29231 224.52445 36.91908 110 0 - + 36.91908 29.29231 224.52445 36.91908 110 16 - 37.93262 30.33846 229.29307 37.93262 110 17 - 38.94615 31.38462 234.06168 38.94615 110 17 - 38.94615 31.38462 234.06168 38.94615 110 17 - 39.95969 32.43077 238.83030 39.95969 110 17 - - 40.97323 33.47692 243.59892 40.97323 110 0 - + 40.97323 33.47692 243.59892 40.97323 110 17 - 41.98677 34.52308 248.36753 41.98677 110 17 - 43.00031 35.56923 253.13615 43.00031 110 17 - - 44.01385 36.61538 257.90476 44.01385 110 0 - - 44.01385 36.61538 257.90476 44.01385 110 0 - + 44.01385 36.61538 257.90476 44.01385 110 17 - + 44.01385 36.61538 257.90476 44.01385 110 17 - 45.02738 37.66154 262.67338 45.02738 110 17 - - 46.04092 38.70769 267.44199 46.04092 110 0 - + 46.04092 38.70769 267.44199 46.04092 110 17 - 47.05446 39.75385 272.21061 47.05446 110 17 - 48.06800 40.80000 276.97922 48.06800 110 17 - - 49.08154 41.84615 281.74784 49.08154 110 0 - - 49.08154 41.84615 281.74784 49.08154 110 0 - - 50.09508 42.89231 286.51645 50.09508 110 0 - + 49.08154 41.84615 281.74784 49.08154 110 17 - + 49.08154 41.84615 281.74784 49.08154 110 17 - + 50.09508 42.89231 286.51645 50.09508 110 17 - 51.10862 43.93846 291.28507 51.10862 110 18 - 52.12215 44.98462 296.05368 52.12215 110 18 - 53.13569 46.03077 300.82230 53.13569 110 18 - - 54.14923 47.07692 305.59092 54.14923 110 0 - - 54.14923 47.07692 305.59092 54.14923 110 0 - + 54.14923 47.07692 305.59092 54.14923 110 18 - + 54.14923 47.07692 305.59092 54.14923 110 18 - 55.16277 48.12308 310.35953 55.16277 110 18 - 56.17631 49.16923 315.12815 56.17631 110 18 - 57.18985 50.21538 319.89676 57.18985 110 18 - @@ -1529,46 +1657,46 @@ Status character 89.56200 62.40000 245.32200 89.56200 110 37 - 92.25300 59.60000 252.69300 92.25300 110 37 - 94.94400 56.80000 260.06400 94.94400 110 37 - - 97.63500 54.00000 267.43500 97.63500 110 0 - - 97.63500 54.00000 267.43500 97.63500 110 0 - + 97.63500 54.00000 267.43500 97.63500 110 37 - + 97.63500 54.00000 267.43500 97.63500 110 37 - 100.32600 51.20000 274.80600 100.32600 110 37 - 103.01700 48.40000 282.17700 103.01700 110 37 - 105.70800 45.60000 289.54800 105.70800 110 37 - 108.39900 42.80000 296.91900 108.39900 110 37 - - 111.09000 40.00000 304.29000 111.09000 110 0 - + 111.09000 40.00000 304.29000 111.09000 110 37 - 69.23000 40.00000 1043.28000 69.23000 110 7 - 69.94667 41.66667 1054.08000 69.94667 110 7 - - 70.66333 43.33333 1064.88000 70.66333 110 0 - + 70.66333 43.33333 1064.88000 70.66333 110 7 - 71.38000 45.00000 1075.68000 71.38000 110 7 - - 72.09667 46.66667 1086.48000 72.09667 110 0 - - 72.81333 48.33333 1097.28000 72.81333 110 0 - - 72.81333 48.33333 1097.28000 72.81333 110 0 - - 73.53000 50.00000 1108.08000 73.53000 110 0 - - 74.24667 51.66667 1118.88000 74.24667 110 0 - - 74.96333 53.33333 1129.68000 74.96333 110 0 - - 75.68000 55.00000 1140.48000 75.68000 110 0 - + 72.09667 46.66667 1086.48000 72.09667 110 7 - + 72.81333 48.33333 1097.28000 72.81333 110 7 - + 72.81333 48.33333 1097.28000 72.81333 110 7 - + 73.53000 50.00000 1108.08000 73.53000 110 7 - + 74.24667 51.66667 1118.88000 74.24667 110 7 - + 74.96333 53.33333 1129.68000 74.96333 110 7 - + 75.68000 55.00000 1140.48000 75.68000 110 7 - 76.39667 56.66667 1151.28000 76.39667 110 7 - 76.39667 56.66667 1151.28000 76.39667 110 7 - - 77.11333 58.33333 1162.08000 77.11333 110 0 - + 77.11333 58.33333 1162.08000 77.11333 110 7 - 77.83000 60.00000 1172.88000 77.83000 110 7 - - 78.54667 61.66667 1183.68000 78.54667 110 0 - + 78.54667 61.66667 1183.68000 78.54667 110 7 - 79.26333 63.33333 1194.48000 79.26333 110 7 - - 79.98000 65.00000 1205.28000 79.98000 110 0 - - 79.98000 65.00000 1205.28000 79.98000 110 0 - + 79.98000 65.00000 1205.28000 79.98000 110 7 - + 79.98000 65.00000 1205.28000 79.98000 110 7 - 80.69667 66.66667 1216.08000 80.69667 110 7 - - 81.41333 68.33333 1226.88000 81.41333 110 0 - + 81.41333 68.33333 1226.88000 81.41333 110 7 - 82.13000 70.00000 1237.68000 82.13000 110 7 - 82.84667 71.66667 1248.48000 82.84667 110 7 - 83.56333 73.33333 1259.28000 83.56333 110 7 - 83.56333 73.33333 1259.28000 83.56333 110 7 - - 84.28000 75.00000 1270.08000 84.28000 110 0 - + 84.28000 75.00000 1270.08000 84.28000 110 7 - 84.99667 76.66667 1280.88000 84.99667 110 7 - - 85.71333 78.33333 1291.68000 85.71333 110 0 - + 85.71333 78.33333 1291.68000 85.71333 110 7 - 86.43000 80.00000 1302.48000 86.43000 110 7 - - 87.14667 81.66667 1313.28000 87.14667 110 0 - - 87.14667 81.66667 1313.28000 87.14667 110 0 - + 87.14667 81.66667 1313.28000 87.14667 110 7 - + 87.14667 81.66667 1313.28000 87.14667 110 7 - 87.86333 83.33333 1324.08000 87.86333 110 7 - - 88.58000 85.00000 1334.88000 88.58000 110 0 - + 88.58000 85.00000 1334.88000 88.58000 110 7 - 89.29667 86.66667 1345.68000 89.29667 110 7 - 90.01333 88.33333 1356.48000 90.01333 110 7 - 90.73000 90.00000 1367.28000 90.73000 110 7 - diff --git a/tests/test_data/dsheetpiling/benchmarks/bm3-9.shi b/tests/test_data/dsheetpiling/benchmarks/bm3-9.shi index 6fb8a3e0..3a9fdb2e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm3-9.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm3-9.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm3-9.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm3-9.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -350,6 +350,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -373,7 +374,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -384,8 +385,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -396,7 +399,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -404,17 +407,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -422,8 +426,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -431,7 +435,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -442,15 +446,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -458,17 +463,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -476,8 +482,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -496,15 +502,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -523,6 +530,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -544,26 +552,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -571,21 +580,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -598,39 +608,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,16 +706,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -658,6 +726,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -665,16 +734,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -685,6 +810,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -692,8 +818,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -701,7 +827,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -712,6 +838,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -719,8 +846,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -728,7 +855,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -739,6 +866,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -746,8 +874,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shd index a54f5e8f..8449baf5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-10a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-10a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -417,6 +417,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -426,6 +427,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -435,6 +437,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -458,7 +461,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -469,8 +472,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -481,7 +486,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -489,17 +494,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -507,8 +513,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -516,7 +522,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -527,15 +533,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -543,17 +550,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -561,8 +569,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -581,15 +589,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -608,6 +617,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,26 +639,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -656,21 +667,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -683,39 +695,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -723,16 +793,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -743,6 +813,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -750,16 +821,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -770,6 +897,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -777,8 +905,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -786,7 +914,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -797,6 +925,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -804,8 +933,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -813,7 +942,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -824,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -831,8 +961,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shi index c3749cab..c258a97e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-10a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-10a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-10a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,26 +638,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -655,21 +666,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -682,39 +694,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shd index e110098b..d3d2144b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-10b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-10b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -417,6 +417,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -426,6 +427,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -435,6 +437,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -458,7 +461,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -469,8 +472,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -481,7 +486,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -489,17 +494,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -507,8 +513,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -516,7 +522,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -527,15 +533,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -543,17 +550,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -561,8 +569,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -581,15 +589,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -608,6 +617,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,26 +639,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -656,21 +667,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -683,39 +695,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -723,16 +793,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -743,6 +813,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -750,16 +821,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -770,6 +897,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -777,8 +905,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -786,7 +914,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -797,6 +925,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -804,8 +933,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -813,7 +942,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -824,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -831,8 +961,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shi index 6d6f57ca..b2b03dd4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-10b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-10b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-10b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,26 +638,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -655,21 +666,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -682,39 +694,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shd index 2c706090..b44b4204 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-11a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-11a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -341,6 +341,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -350,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -359,6 +361,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -368,6 +371,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -391,7 +395,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -402,8 +406,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -414,7 +420,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -422,17 +428,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -440,8 +447,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -449,7 +456,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -460,15 +467,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -476,17 +484,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -494,8 +503,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -514,15 +523,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,26 +573,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -589,21 +601,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -616,39 +629,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -656,16 +727,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +747,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -683,16 +755,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -703,6 +831,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -710,8 +839,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -719,7 +848,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -730,6 +859,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -737,8 +867,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -746,7 +876,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -757,6 +887,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -764,8 +895,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shi index 185f420c..52ce02c0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-11a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-11a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-11a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -340,6 +340,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -349,6 +350,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -358,6 +360,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -367,6 +370,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -390,7 +394,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -401,8 +405,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -413,7 +419,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -421,17 +427,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -439,8 +446,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -448,7 +455,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -459,15 +466,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -475,17 +483,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -493,8 +502,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -513,15 +522,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -561,26 +572,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -588,21 +600,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -615,39 +628,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -655,16 +726,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +746,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -682,16 +754,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -702,6 +830,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -709,8 +838,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -718,7 +847,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -729,6 +858,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -736,8 +866,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -745,7 +875,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -756,6 +886,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -763,8 +894,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shd index 7e7412b5..31c473f7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-11b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-11b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -335,6 +335,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -344,6 +345,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -353,6 +355,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -362,6 +365,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -385,7 +389,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -396,8 +400,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -408,7 +414,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -416,17 +422,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -434,8 +441,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -443,7 +450,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -454,15 +461,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -470,17 +478,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -488,8 +497,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -508,15 +517,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -535,6 +545,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,26 +567,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,21 +595,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,39 +623,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -650,16 +721,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -670,6 +741,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -677,16 +749,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -697,6 +825,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -704,8 +833,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -713,7 +842,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -724,6 +853,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -731,8 +861,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -740,7 +870,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -751,6 +881,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -758,8 +889,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shi index d084b539..bffc4b2d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-11b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-11b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-11b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -334,6 +334,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -343,6 +344,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -352,6 +354,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -361,6 +364,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -384,7 +388,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -395,8 +399,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -407,7 +413,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -415,17 +421,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -433,8 +440,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -442,7 +449,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -453,15 +460,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -469,17 +477,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -487,8 +496,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -507,15 +516,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -534,6 +544,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,26 +566,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,21 +594,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,39 +622,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -649,16 +720,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -669,6 +740,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -676,16 +748,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -696,6 +824,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -703,8 +832,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -712,7 +841,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -723,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -730,8 +860,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -739,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -750,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -757,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shd index f32a5d4a..1f77312c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-12a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-12a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -341,6 +341,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -350,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -359,6 +361,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -368,6 +371,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -391,7 +395,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -402,8 +406,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -414,7 +420,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -422,17 +428,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -440,8 +447,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -449,7 +456,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -460,15 +467,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -476,17 +484,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -494,8 +503,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -514,15 +523,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,26 +573,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -589,21 +601,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -616,39 +629,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -656,16 +727,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +747,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -683,16 +755,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -703,6 +831,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -710,8 +839,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -719,7 +848,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -730,6 +859,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -737,8 +867,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -746,7 +876,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -757,6 +887,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -764,8 +895,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shi index ca2e3b9e..0ad35016 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-12a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-12a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-12a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -340,6 +340,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -349,6 +350,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -358,6 +360,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -367,6 +370,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -390,7 +394,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -401,8 +405,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -413,7 +419,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -421,17 +427,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -439,8 +446,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -448,7 +455,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -459,15 +466,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -475,17 +483,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -493,8 +502,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -513,15 +522,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -561,26 +572,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -588,21 +600,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -615,39 +628,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -655,16 +726,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +746,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -682,16 +754,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -702,6 +830,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -709,8 +838,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -718,7 +847,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -729,6 +858,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -736,8 +866,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -745,7 +875,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -756,6 +886,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -763,8 +894,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shd index 5a69bcb6..50c28a15 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-12b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-12b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -335,6 +335,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -344,6 +345,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -353,6 +355,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -362,6 +365,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -385,7 +389,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -396,8 +400,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -408,7 +414,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -416,17 +422,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -434,8 +441,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -443,7 +450,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -454,15 +461,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -470,17 +478,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -488,8 +497,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -508,15 +517,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -535,6 +545,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,26 +567,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,21 +595,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,39 +623,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -650,16 +721,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -670,6 +741,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -677,16 +749,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -697,6 +825,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -704,8 +833,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -713,7 +842,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -724,6 +853,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -731,8 +861,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -740,7 +870,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -751,6 +881,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -758,8 +889,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shi index 924530b4..674a153b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-12b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-12b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-12b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -334,6 +334,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -343,6 +344,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -352,6 +354,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -361,6 +364,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -384,7 +388,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -395,8 +399,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -407,7 +413,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -415,17 +421,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -433,8 +440,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -442,7 +449,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -453,15 +460,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -469,17 +477,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -487,8 +496,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -507,15 +516,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -534,6 +544,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,26 +566,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,21 +594,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,39 +622,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -649,16 +720,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -669,6 +740,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -676,16 +748,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -696,6 +824,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -703,8 +832,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -712,7 +841,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -723,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -730,8 +860,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -739,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -750,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -757,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shd index 5774ae6e..e07d78b2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shi index b90b94af..69a7ae99 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shd index acb54319..3b567f4e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shi index be46794e..650fc893 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shd index 62593e13..bdb4c8a8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shi index 2c393726..f3ba329b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shd index 30dcca02..7981528e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shi index fef826d9..e5b7103a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shd index 1329aad0..5e359ee6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shi index 7d259c37..dd5723e6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shd index a1c95727..8d236ae2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shi index 876b9ad6..76a99508 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shd index b2bbc4bb..9efb00dd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shi index abeb10e1..02d09359 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shd index 14f858f3..2c3b2d82 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -375,6 +375,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -398,7 +399,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -409,8 +410,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -421,7 +424,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -429,17 +432,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -447,8 +451,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -456,7 +460,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -467,15 +471,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -483,17 +488,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +507,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -511,8 +517,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -521,15 +527,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -548,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -563,99 +571,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,16 +731,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -683,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,35 +759,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -726,7 +852,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +863,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -744,8 +871,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -753,7 +880,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +891,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +899,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shi index 241036f6..46fe53bd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shd index 4f5eeacf..f74a82a2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shi index a33a0e2a..1c1e9a10 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -373,6 +373,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -396,7 +397,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -407,8 +408,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -419,7 +422,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -427,17 +430,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -445,8 +449,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -454,7 +458,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -465,15 +469,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -481,17 +486,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -499,8 +505,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -509,8 +515,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -519,15 +525,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -546,6 +553,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -561,99 +569,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -661,16 +729,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -681,6 +749,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -688,35 +757,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -724,7 +850,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -735,6 +861,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -742,8 +869,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -751,7 +878,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -762,6 +889,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -769,8 +897,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shd index f4325fe9..cffd32a2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -374,6 +374,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -397,7 +398,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -408,8 +409,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -420,7 +423,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -428,17 +431,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -446,8 +450,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -455,7 +459,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -466,15 +470,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -482,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -510,8 +516,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -520,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -547,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -562,99 +570,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,16 +730,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,35 +758,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -725,7 +851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -743,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -752,7 +879,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +898,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shi index 732a9750..cf451ca8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-13j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-13j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-13j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -373,6 +373,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -396,7 +397,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -407,8 +408,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -419,7 +422,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -427,17 +430,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -445,8 +449,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -454,7 +458,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -465,15 +469,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -481,17 +486,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -499,8 +505,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -509,8 +515,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -519,15 +525,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -546,6 +553,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -561,99 +569,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -661,16 +729,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -681,6 +749,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -688,35 +757,92 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] -[PARTIAL FACTORS CUR I] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] +[PARTIAL FACTORS CUR I] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.800 +OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -724,7 +850,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -735,6 +861,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -742,8 +869,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -751,7 +878,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -762,6 +889,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -769,8 +897,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shd index 20e41624..513a0ef3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -586,26 +594,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -613,21 +622,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -640,39 +650,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shi index b9eda9c3..949749f0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -391,6 +391,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -414,7 +415,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -425,8 +426,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -437,7 +440,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -445,17 +448,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,8 +467,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -472,7 +476,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -483,15 +487,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -499,17 +504,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -517,8 +523,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -537,15 +543,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -564,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -585,26 +593,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -612,21 +621,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -639,39 +649,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,16 +747,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,6 +767,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -706,16 +775,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -726,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -733,8 +859,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -742,7 +868,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -753,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -760,8 +887,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -769,7 +896,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -780,6 +907,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -787,8 +915,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shd index 0b225974..442b49fa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -586,26 +594,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -613,21 +622,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -640,39 +650,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shi index dd4fe4d2..99862756 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -391,6 +391,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -414,7 +415,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -425,8 +426,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -437,7 +440,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -445,17 +448,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,8 +467,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -472,7 +476,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -483,15 +487,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -499,17 +504,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -517,8 +523,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -537,15 +543,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -564,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -585,26 +593,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -612,21 +621,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -639,39 +649,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,16 +747,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,6 +767,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -706,16 +775,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -726,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -733,8 +859,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -742,7 +868,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -753,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -760,8 +887,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -769,7 +896,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -780,6 +907,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -787,8 +915,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shd index d12568e9..6a62a0e8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -745,6 +745,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -768,7 +769,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -779,8 +780,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -791,7 +794,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -799,17 +802,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -817,8 +821,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -826,7 +830,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -837,15 +841,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -853,17 +858,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -871,8 +877,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -891,15 +897,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -918,6 +925,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -939,26 +947,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -966,21 +975,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -993,39 +1003,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1033,16 +1101,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1053,6 +1121,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1060,16 +1129,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1080,6 +1205,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,8 +1213,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1096,7 +1222,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1107,6 +1233,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1114,8 +1241,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1123,7 +1250,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1134,6 +1261,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1141,8 +1269,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shi index 1ae024ac..438b75f3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -744,6 +744,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,7 +768,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -778,8 +779,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -790,7 +793,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -798,17 +801,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -816,8 +820,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -825,7 +829,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -836,15 +840,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -852,17 +857,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -870,8 +876,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -890,15 +896,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -917,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -938,26 +946,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -965,21 +974,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -992,39 +1002,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1032,16 +1100,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1052,6 +1120,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1059,16 +1128,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1079,6 +1204,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1086,8 +1212,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1095,7 +1221,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1106,6 +1232,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1113,8 +1240,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1122,7 +1249,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1133,6 +1260,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1140,8 +1268,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shd index bc069ccb..219c2ae3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -694,6 +694,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -717,7 +718,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -728,8 +729,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -740,7 +743,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -748,17 +751,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -766,8 +770,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -775,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -786,15 +790,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -802,17 +807,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -820,8 +826,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -840,15 +846,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -867,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -888,26 +896,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -915,21 +924,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -942,39 +952,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -982,16 +1050,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1002,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1009,16 +1078,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1029,6 +1154,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1036,8 +1162,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1045,7 +1171,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1056,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1063,8 +1190,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1072,7 +1199,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1083,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1090,8 +1218,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shi index ab134f35..f7062386 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-14d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-14d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-14d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -693,6 +693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -716,7 +717,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -727,8 +728,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -739,7 +742,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -747,17 +750,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -765,8 +769,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -774,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -785,15 +789,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -801,17 +806,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -819,8 +825,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -839,15 +845,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -866,6 +873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -887,26 +895,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -914,21 +923,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -941,39 +951,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -981,16 +1049,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1001,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1008,16 +1077,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1028,6 +1153,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1035,8 +1161,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1044,7 +1170,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1055,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1062,8 +1189,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1071,7 +1198,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1082,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1089,8 +1217,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shd index 69d88fc9..04592d19 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-15a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-15a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -738,6 +738,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -761,7 +762,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -772,8 +773,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -784,7 +787,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -792,17 +795,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -810,8 +814,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -819,7 +823,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -830,15 +834,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -846,17 +851,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,8 +870,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -884,15 +890,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -911,6 +918,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -932,26 +940,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -959,21 +968,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -986,39 +996,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1026,16 +1094,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1046,6 +1114,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1053,16 +1122,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1073,6 +1198,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1080,8 +1206,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1089,7 +1215,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1100,6 +1226,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1107,8 +1234,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1116,7 +1243,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1127,6 +1254,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1134,8 +1262,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shi index ba9a348b..da5042fe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-15a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-15a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-15a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -737,6 +737,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -760,7 +761,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -771,8 +772,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -783,7 +786,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -791,17 +794,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -809,8 +813,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -818,7 +822,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -829,15 +833,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -845,17 +850,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -863,8 +869,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -883,15 +889,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -910,6 +917,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -931,26 +939,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -958,21 +967,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -985,39 +995,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1025,16 +1093,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1045,6 +1113,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1052,16 +1121,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1072,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1079,8 +1205,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1088,7 +1214,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1099,6 +1225,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1106,8 +1233,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1115,7 +1242,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1126,6 +1253,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1133,8 +1261,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shd index 04e8d065..d1d375c7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-15b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-15b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -686,6 +686,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -709,7 +710,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -720,8 +721,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -732,7 +735,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -740,17 +743,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -758,8 +762,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -767,7 +771,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -778,15 +782,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -794,17 +799,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -812,8 +818,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -832,15 +838,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -859,6 +866,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -880,26 +888,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -907,21 +916,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -934,39 +944,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -974,16 +1042,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -994,6 +1062,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1001,16 +1070,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1021,6 +1146,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1028,8 +1154,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1037,7 +1163,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1048,6 +1174,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,8 +1182,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1064,7 +1191,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1075,6 +1202,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1082,8 +1210,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shi index 758b4f2d..561b4b7f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-15b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-15b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-15b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -685,6 +685,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -708,7 +709,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -719,8 +720,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -731,7 +734,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -739,17 +742,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -757,8 +761,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -766,7 +770,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -777,15 +781,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -793,17 +798,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -811,8 +817,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -831,15 +837,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -858,6 +865,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -879,26 +887,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -906,21 +915,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -933,39 +943,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -973,16 +1041,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -993,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1000,16 +1069,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1020,6 +1145,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1027,8 +1153,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1036,7 +1162,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1047,6 +1173,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1054,8 +1181,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1063,7 +1190,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1074,6 +1201,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1081,8 +1209,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shd index ae55d266..e6cb22ab 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-16a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-16a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 7 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.400 1.250 0.000 0.000 1.100 1.000 1.000 + -1 7 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.400 1.250 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shi index 6b21f8ab..c28860dd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-16a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-16a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-16a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shd index fa23eaf9..43784338 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-16b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-16b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 7 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.400 1.250 0.000 0.000 1.100 1.000 1.000 + -1 7 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.400 1.250 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shi index 50accd8c..02403f09 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-16b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-16b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-16b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shd index d906b449..a722167a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 1 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 3 1 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shi index 45453dd6..27e86e9b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:24:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shd index 167985c2..9c38a234 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 2 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 3 2 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shi index 56eea22b..23a4a1cf 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shd index ce43796e..b7d0b56a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shi index 6bf2f384..31dcd9ba 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shd index d15c0872..ede23943 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -824,6 +824,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -833,6 +834,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -842,6 +844,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -865,7 +868,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -876,8 +879,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -888,25 +893,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,53 +920,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,13 +976,13 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 @@ -982,21 +990,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1042,10 +1052,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1055,7 +1066,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1069,7 +1080,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1096,33 +1108,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,26 +1200,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1256,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1312,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1321,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1332,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1340,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1349,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1360,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1368,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shi index a21cf548..c288f995 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -823,6 +823,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -832,6 +833,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -841,6 +843,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -864,7 +867,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -875,8 +878,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -887,25 +892,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,53 +919,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,13 +975,13 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 @@ -981,21 +989,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1014,6 +1023,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1041,10 +1051,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1054,7 +1065,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1068,7 +1079,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1095,33 +1107,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,26 +1199,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1156,16 +1255,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,8 +1311,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1192,7 +1320,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1331,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,8 +1339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1219,7 +1348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1230,6 +1359,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1237,8 +1367,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shd index 8e99f20e..b0ea92b3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -824,6 +824,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -833,6 +834,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -842,6 +844,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -865,7 +868,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -876,8 +879,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -888,25 +893,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,53 +920,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,35 +976,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,10 +1040,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1042,10 +1052,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1055,12 +1066,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1069,7 +1080,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1084,10 +1096,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1096,33 +1108,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,26 +1200,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1256,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1312,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1321,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1332,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1340,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1349,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1360,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1368,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shi index e40d56e6..be9f6ffe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -823,6 +823,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -832,6 +833,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -841,6 +843,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -864,7 +867,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -875,8 +878,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -887,25 +892,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,53 +919,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,35 +975,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1014,6 +1023,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,10 +1039,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1041,10 +1051,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1054,12 +1065,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1068,7 +1079,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1083,10 +1095,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1095,33 +1107,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,26 +1199,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1156,16 +1255,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,8 +1311,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1192,7 +1320,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1331,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,8 +1339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1219,7 +1348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1230,6 +1359,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1237,8 +1367,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shd index c0ba5834..74abba1e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -825,6 +825,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -834,6 +835,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -843,6 +845,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -866,7 +869,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -877,8 +880,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -889,25 +894,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -915,53 +921,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -969,35 +977,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1016,6 +1025,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1031,10 +1041,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1043,10 +1053,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1056,12 +1067,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1070,7 +1081,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1085,10 +1097,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1097,33 +1109,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1131,26 +1201,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1158,16 +1257,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1178,6 +1305,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1185,8 +1313,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1194,7 +1322,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1205,6 +1333,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1212,8 +1341,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1221,7 +1350,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1232,6 +1361,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1239,8 +1369,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shi index 86a19559..8f3cf999 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -824,6 +824,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -833,6 +834,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -842,6 +844,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -865,7 +868,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -876,8 +879,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -888,25 +893,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,53 +920,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,35 +976,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,10 +1040,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1042,10 +1052,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1055,12 +1066,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1069,7 +1080,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1084,10 +1096,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1096,33 +1108,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,26 +1200,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1256,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1312,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1321,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1332,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1340,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1349,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1360,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1368,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shd index 7a38293f..68a0eb08 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -825,6 +825,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -834,6 +835,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -843,6 +845,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -866,7 +869,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -877,8 +880,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -889,25 +894,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -915,53 +921,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -969,35 +977,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1016,6 +1025,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1031,10 +1041,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1043,10 +1053,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1056,12 +1067,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1070,7 +1081,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1085,10 +1097,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1097,33 +1109,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1131,26 +1201,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1158,16 +1257,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1178,6 +1305,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1185,8 +1313,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1194,7 +1322,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1205,6 +1333,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1212,8 +1341,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1221,7 +1350,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1232,6 +1361,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1239,8 +1369,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shi index 405c207c..2335a347 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -824,6 +824,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -833,6 +834,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -842,6 +844,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -865,7 +868,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -876,8 +879,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -888,25 +893,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,53 +920,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,35 +976,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,10 +1040,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1042,10 +1052,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1055,12 +1066,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1069,7 +1080,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1084,10 +1096,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1096,33 +1108,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,26 +1200,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1256,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1312,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1321,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1332,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1340,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1349,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1360,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1368,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shd index c7a3101c..524a531d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,8 +687,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -690,7 +696,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,33 +707,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,8 +743,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -755,15 +763,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,7 +833,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,16 +967,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -917,6 +987,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,35 +1023,64 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shi index 2cb66ecb..4d723055 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,8 +686,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -689,7 +695,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,33 +706,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,8 +742,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -754,15 +762,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,7 +832,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,16 +966,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +986,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,35 +1022,64 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shd index d047fd52..004e16c3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -824,6 +824,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -833,6 +834,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -842,6 +844,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -865,7 +868,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -876,8 +879,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -888,25 +893,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,53 +920,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,13 +976,13 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 @@ -982,21 +990,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1042,10 +1052,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1055,7 +1066,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1069,7 +1080,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1096,33 +1108,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,26 +1200,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1256,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1312,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1321,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1332,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1340,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1349,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1360,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1368,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shi index 1a5aa715..7787d5fb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-17i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-17i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-17i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -823,6 +823,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -832,6 +833,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -841,6 +843,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -864,7 +867,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -875,8 +878,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -887,25 +892,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,53 +919,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,13 +975,13 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 @@ -981,21 +989,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1014,6 +1023,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1041,10 +1051,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1054,7 +1065,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1068,7 +1079,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1095,33 +1107,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,26 +1199,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1156,16 +1255,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,8 +1311,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1192,7 +1320,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1331,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,8 +1339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1219,7 +1348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1230,6 +1359,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1237,8 +1367,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shd index 95493065..d2fd6279 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:10 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,9 +1219,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 - 2 2 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 - 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 2 2 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shi index 1d9ebdfe..56b1c819 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shd index ef0b9d8d..3d0cc597 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shi index 9c4210a9..0e557ec3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shd index bb347eb8..ed1b80a3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 2 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 2 2 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shi index 04b1e981..de12a4c4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shd index 357794bb..b03f9c3a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 3 3 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shi index c4e5db6b..203d2985 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-18d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:38:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-18d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-18d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shd index 0f8454c6..22ebeacc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + -1 1 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shi index 037c9c13..d4a448c5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shd index 85442728..8183dc8d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 2 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + -1 2 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shi index 1ad66083..b6348241 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shd index 88ff11da..a7e309c2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 3 2.000 0.800 0.800 0.25 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 + -1 3 2.000 0.800 0.800 0.25 0.00 0.00 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.250 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shi index 78321412..888d2328 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shd index b78cbcc9..75c321e1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shi index d03f23d7..56073769 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,53 +686,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,35 +742,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,26 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shd index c242eb9a..504f2c2d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shi index 63a1bb7d..8e9bebb3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,53 +686,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,35 +742,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,26 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shd index 88bbbee2..582e920f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -592,6 +592,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -601,6 +602,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -610,6 +612,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -633,7 +636,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -644,8 +647,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -656,25 +661,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -682,53 +688,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -736,35 +744,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -783,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -798,10 +808,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -810,10 +820,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -823,12 +834,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -837,7 +848,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -852,10 +864,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -864,33 +876,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,26 +968,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,16 +1024,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -945,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -952,8 +1080,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -961,7 +1089,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -972,6 +1100,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -979,8 +1108,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -988,7 +1117,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -999,6 +1128,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1006,8 +1136,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shi index db0ade31..15f2b564 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shd index 13a6efb3..1d6986b1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -592,6 +592,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -601,6 +602,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -610,6 +612,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -633,7 +636,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -644,8 +647,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -656,25 +661,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -682,53 +688,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -736,35 +744,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -783,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -798,10 +808,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -810,10 +820,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -823,12 +834,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -837,7 +848,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -852,10 +864,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -864,33 +876,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,26 +968,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,16 +1024,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -945,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -952,8 +1080,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -961,7 +1089,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -972,6 +1100,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -979,8 +1108,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -988,7 +1117,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -999,6 +1128,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1006,8 +1136,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shi index 386e692d..d2295937 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shd index 1e851a2e..3d058425 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,8 +687,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -690,7 +696,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,33 +707,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,8 +743,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -745,8 +753,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -755,15 +763,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,16 +967,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -917,6 +987,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,35 +1023,64 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shi index 538b0c01..e524f5ae 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,8 +686,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -689,7 +695,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,33 +706,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,8 +742,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -744,8 +752,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -754,15 +762,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,16 +966,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +986,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,35 +1022,64 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shd index 2cbe68fd..7701f521 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.300 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,8 +687,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -690,7 +696,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,33 +707,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,8 +743,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -745,8 +753,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -755,15 +763,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,99 +807,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,16 +967,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,26 +995,83 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=1.100 -LoadFactorPermFav=0.900 -LoadFactorVarUnfav=1.050 -LoadFactorVarFav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.050 -MaterialFactorSubgradeReaction=1.200 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,62 +1079,64 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] -LoadFactorPermUnfav=1.200 -LoadFactorPermFav=0.800 -LoadFactorVarUnfav=1.150 -LoadFactorVarFav=0.600 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 -GeometryDeltaActivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] -LoadFactorPermUnfav=1.300 -LoadFactorPermFav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 -LoadFactorVarFav=0.500 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.300 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.200 -MaterialFactorSubgradeReaction=1.400 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 -GeometryDeltaActivePhreaticLine=0.30 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shi index 52c1de66..7de09539 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-19i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-19i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-19i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.300 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,8 +686,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -689,7 +695,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,33 +706,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,8 +742,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -744,8 +752,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -754,15 +762,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,99 +806,159 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,16 +966,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,26 +994,83 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=1.100 -LoadFactorPermFav=0.900 -LoadFactorVarUnfav=1.050 -LoadFactorVarFav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.050 -MaterialFactorSubgradeReaction=1.200 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,62 +1078,64 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] -LoadFactorPermUnfav=1.200 -LoadFactorPermFav=0.800 -LoadFactorVarUnfav=1.150 -LoadFactorVarFav=0.600 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.200 +MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 -GeometryDeltaActivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] -LoadFactorPermUnfav=1.300 -LoadFactorPermFav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 -LoadFactorVarFav=0.500 +LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.300 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.200 -MaterialFactorSubgradeReaction=1.400 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 -GeometryDeltaActivePhreaticLine=0.30 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shd index ac4c0e04..705b0076 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-1a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-1a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shi index 4ee0923c..55d28e9b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-1a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-1a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-1a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shd index 5e72648f..b898b5b7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-1b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-1b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shi index 6e7dfc4c..098e62fa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-1b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-1b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-1b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shd index 9310a2f5..91284db2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shi index b23c3bd8..11317222 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shd index 891f3ae4..063ff12a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shi index bf364169..e01da497 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shd index 4eef5e2f..91bf1b73 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shi index 201ba5ba..9cfd1494 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shd index 3d5e8a2b..64e7bf05 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:38 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=1 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shi index 56c90af9..f650aeba 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=1 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shd index 959f5902..c6cbdcc0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:41 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=1 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shi index 38442032..f24e56eb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:38 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=1 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shd index 7a851a5a..91de95c8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=1 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shi index aecd2ebc..54fce76b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-20f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-20f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:41 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-20f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=0 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=1 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shd index 7499a0f7..bf00d70f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.250 0.000 0.000 0.600 1.000 1.000 - -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.250 0.000 0.000 1.300 1.000 1.000 + -1 5 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.250 0.000 0.000 0.600 1.000 1.000 + -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.250 0.000 0.000 1.300 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -8423,7 +8554,7 @@ Displacements 319.49088 312.22411 -900.13739 350.74018 312.76586 -880.55186 350.73968 312.76184 -880.55186 - 353.86854 313.01049 -878.59785 + 353.86854 313.01048 -878.59785 356.99989 313.25968 -876.64469 360.13373 313.50944 -874.69239 363.27008 313.75975 -872.74096 @@ -9516,7 +9647,7 @@ Displacements 102.88566 -145.44854 -925.04002 101.43146 -145.39152 -924.15931 99.97783 -145.33320 -923.27884 - 98.52480 -145.27359 -922.39862 + 98.52480 -145.27360 -922.39862 98.52480 -145.27360 -922.39862 94.16936 -145.08705 -919.75936 89.81969 -144.88890 -917.12215 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shi index eb2550f2..15e6ae17 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shd index 817489e3..109ab8c3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.250 0.000 0.000 1.100 1.000 1.000 - -1 6 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.250 0.000 0.000 0.800 1.100 0.900 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.250 0.000 0.000 1.100 1.000 1.000 + -1 6 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.250 0.000 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shi index 4e4a3271..18b48de7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shd index df6c20fc..9083410e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 7 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.250 0.000 0.000 0.600 1.000 1.000 + -1 7 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.250 0.000 0.000 0.600 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shi index 53d8436d..2cfc503b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shd index 4a19a522..c073b3a1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 8 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.250 0.000 0.000 0.800 1.100 0.900 + -1 8 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.250 0.000 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shi index 9c83ee9d..7430438a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shd index 0a13d453..477e9e86 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shi index 57f609a8..19bd2c9a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,53 +686,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,35 +742,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,26 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shd index 38c42019..049ab877 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shi index 1f837667..2511f990 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,53 +686,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,35 +742,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,26 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shd index a7733512..f49df4dc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,8 +687,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -690,7 +696,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,33 +707,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,8 +743,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -745,8 +753,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -755,15 +763,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -851,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,16 +967,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -917,6 +987,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -960,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -987,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shi index b1276966..260af0e2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-21g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-21g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-21g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,8 +686,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -689,7 +695,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,33 +706,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,8 +742,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -744,8 +752,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -754,15 +762,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -850,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,16 +966,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +986,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -959,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -977,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -986,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shd index f180d91d..06564f9f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shi index 118861df..d34cce78 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shd index 8faacc68..b223f4bf 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shi index 75c3fd8d..1e35a370 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:25:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shd index 6549593a..c4a463a5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shi index 0060590e..295ea2ff 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shd index e785db38..0bf7d142 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shi index 809de2c0..87060623 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-22d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:39:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-22d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-22d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shd index 4c44f1b2..a879d14a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + -1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shi index 84fac0d8..8cd0e86e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shd index 33b9dc05..f975cb45 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 10 2.000 0.800 0.800 0.30 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + -1 10 2.000 0.800 0.800 0.30 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shi index ced950fa..e4864c9e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:14 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shd index 36cf9fb0..57987dc6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 11 2.000 0.800 0.800 0.35 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + -1 11 2.000 0.800 0.800 0.35 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shi index 5ee802e1..ad820eda 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shd index 11a67160..6f8bc0e5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shi index c9251bff..4abcb853 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shd index 71eadb1f..fdd9004d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shi index e48816ac..f9bab6c0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shd index ea6173ff..63a9b314 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,7 +1219,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shi index b0b13ad4..dc051b45 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shd index c123043a..a5cea9fa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,9 +1219,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 - 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 - 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.350 0.000 0.800 1.100 0.900 + 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.200 0.000 0.800 1.100 0.900 + 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.350 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shi index 52e94652..c9d76c14 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shd index a70c7b09..76c96b47 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:39 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=2.160 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,9 +1219,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.210 0.000 0.800 1.100 0.900 - 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.470 0.000 0.800 1.100 0.900 - 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 2.160 0.000 0.800 1.100 0.900 + 1 9 2.000 0.800 0.800 0.20 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.210 0.000 0.800 1.100 0.900 + 2 10 2.000 0.800 0.800 0.30 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 1.470 0.000 0.800 1.100 0.900 + 3 11 2.000 0.800 0.800 0.35 100.00 0.25 0.00 0.20 0.30 0.30 0.000 0.800 1.100 0.900 1.000 0.000 1.000 1.200 2.160 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shi index ec7e1478..1b9dd8b4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-23h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-23h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-23h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=2.160 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shd index 31abfd1a..e6977b31 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:42 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shi index b73f466d..5dcf05e4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:39 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shd index 06fcf844..0689f00f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shi index 06db21c4..de90bbd0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:42 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shd index defdb123..76048f6e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shi index 993e4485..256d5310 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shd index 0c2a2b58..0247f459 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shi index 868077ae..dd3dac5f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shd index 11554b3b..727ad1d3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shi index 16b4bf4f..292b1c67 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shd index 035c6fc5..6de24a35 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shi index 8a649fa3..230c0ec1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-24f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-24f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-24f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.200 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.25 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shd index 7aa5cb3c..7c655279 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1159,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method A [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.200 0.000 0.000 0.600 1.000 1.000 - -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + -1 12 2.000 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.200 0.000 0.000 0.600 1.000 1.000 + -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4005,7 +4136,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4035,34 +4166,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 - -2.40000 + -2.13333 + -2.26667 -2.40000 - -2.50667 - -2.61333 - -2.72000 - -2.82667 - -2.93333 + -2.53333 + -2.66667 + -2.66667 + -2.80000 -2.93333 - -3.04000 - -3.14667 - -3.25333 - -3.36000 - -3.46667 + -3.06667 + -3.20000 + -3.33333 + -3.33333 -3.46667 - -3.57333 - -3.68000 - -3.78667 - -3.89333 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4095,22 +4214,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.08000 - -7.16000 - -7.24000 - -7.32000 - -7.40000 + -7.10000 + -7.20000 + -7.30000 -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -4178,7 +4291,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=5 +IterationCount=3 PartialFactorSet=12 [UNIFORM LOAD DATA] [TABLE] @@ -4219,20 +4332,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 6.81 : Percentage mobilized resistance left - 3.56 : Percentage mobilized resistance right - 304.84 : Effective left - 304.86 : Effective right + 6.71 : Percentage mobilized resistance left + 3.73 : Percentage mobilized resistance right + 318.98 : Effective left + 318.99 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4476.09 : Max effective resistance left - 8551.99 : Max effective resistance right + 4751.94 : Max effective resistance left + 8551.94 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 139.55 : Vertical force left - 136.54 : Vertical force right + 144.63 : Vertical force left + 141.23 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4242,175 +4355,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -18.00529 - 0.00000 0.00000 -17.80924 - 0.00000 0.00000 -17.61319 - 0.00000 0.00000 -17.41714 - 0.00000 0.00000 -17.22109 - 0.00000 0.00000 -17.02504 - 0.00000 0.00000 -17.02504 - 0.00000 0.00000 -16.82899 - 0.00000 0.00000 -16.63294 - 0.00000 0.00000 -16.43689 - 0.00000 0.00000 -16.24084 - 0.00000 0.00000 -16.04479 - 0.00000 0.00000 -16.04479 - 0.00487 0.09832 -15.84874 - 0.01987 0.20275 -15.65269 - 0.04562 0.31334 -15.45665 - 0.08274 0.43013 -15.26062 - 0.13185 0.55314 -15.06462 - 0.13188 0.55299 -15.06462 - 0.20689 0.95047 -14.86865 - 0.32262 1.36725 -14.67275 - 0.48098 1.80335 -14.47695 - 0.68393 2.25882 -14.28130 - 0.93473 2.77371 -14.08587 - 0.93452 2.76864 -14.08587 - 0.99097 2.87673 -14.04681 - 1.04959 2.98523 -14.00776 - 1.11038 3.09412 -13.96873 - 1.17336 3.20342 -13.92971 - 1.23852 3.31312 -13.89071 - 1.23860 3.31165 -13.89071 - 1.44745 3.65034 -13.77378 - 1.67687 4.00048 -13.65701 - 1.92799 4.37477 -13.54043 - 2.20243 4.77807 -13.42406 - 2.50193 5.21032 -13.30793 - 2.50190 5.20993 -13.30793 - 3.08534 5.69596 -13.10216 - 3.70985 5.97986 -12.89746 - 4.35386 6.06152 -12.69403 - 4.99578 5.94080 -12.49211 - 5.61403 5.61757 -12.29189 - 5.61402 5.61765 -12.29189 - 6.16489 4.71538 -12.09363 - 6.62083 3.83743 -11.89749 - 6.98439 2.98330 -11.70359 - 7.25809 2.15243 -11.51207 - 7.44438 1.34425 -11.32305 - 7.44455 1.34334 -11.32305 - 7.54610 0.56422 -11.13662 - 7.56569 -0.19327 -10.95278 - 7.50561 -0.92972 -10.77153 - 7.36831 -1.63911 -10.59283 - 7.15784 -2.29481 -10.41666 - 7.15817 -2.30438 -10.41666 - 6.79464 -3.14368 -10.19996 - 6.32244 -3.92482 -9.98691 - 5.75231 -4.60934 -9.77720 - 5.09798 -5.18816 -9.57055 - 4.37343 -5.66301 -9.36664 - 4.37312 -5.66424 -9.36664 - 3.58005 -6.21532 -9.16512 - 2.72008 -6.66793 -8.96553 - 1.80626 -7.02318 -8.76738 - 0.85152 -7.28198 -8.57017 - -0.13134 -7.44500 -8.37342 - -0.13132 -7.44502 -8.37342 - -1.13955 -7.66294 -8.17662 - -2.17063 -7.78770 -7.97921 - -3.21213 -7.81922 -7.78063 - -4.25160 -7.75719 -7.58032 - -5.27653 -7.60104 -7.37773 - -5.27654 -7.60127 -7.37773 - -5.97236 -6.31152 -7.22393 - -6.53812 -5.00000 -7.06833 - -6.97163 -3.66657 -6.91078 - -7.27070 -2.31106 -6.75117 - -7.43310 -0.93330 -6.58936 - -7.43310 -0.93341 -6.58936 - -7.45929 0.41333 -6.42525 - -7.34968 1.78266 -6.25888 - -7.10200 3.17475 -6.09033 - -6.71396 4.58983 -5.91967 - -6.18326 6.02807 -5.74698 - -6.18327 6.02799 -5.74698 - -5.65580 7.16119 -5.60744 - -5.03708 8.30937 -5.46681 - -4.32590 9.47261 -5.32522 - -3.52106 10.65095 -5.18281 - -2.62134 11.84445 -5.03972 - -2.62134 11.84443 -5.03972 - -1.62663 13.02588 -4.89609 - -0.53680 14.22250 -4.75215 - 0.64937 15.43427 -4.60813 - 1.93309 16.66117 -4.46424 - 3.31556 17.90315 -4.32073 - 3.31556 17.90315 -4.32073 - 4.04402 18.52045 -4.24919 - 4.79725 19.14148 -4.17785 - 5.57539 19.76622 -4.10674 - 6.37859 20.39467 -4.03590 - 7.20701 21.02680 -3.96537 - 7.20685 21.02809 -3.96537 - 9.81053 18.06577 -3.73312 - 12.03459 15.33291 -3.50615 - 13.90923 12.82329 -3.28548 - 15.46373 10.52960 -3.07211 - 16.72635 8.44344 -2.86708 - 16.72628 8.44732 -2.86708 - 17.71327 6.38923 -2.67121 - 18.43833 4.51671 -2.48487 - 18.92551 2.81944 -2.30831 - 19.19749 1.28678 -2.14182 - 19.27549 -0.09216 -1.98565 - 19.27560 -0.08815 -1.98565 - 19.17749 -1.36076 -1.83995 - 18.91855 -2.50241 -1.70456 - 18.51551 -3.52401 -1.57927 - 17.98368 -4.43623 -1.46385 - 17.33787 -5.22809 -1.35810 - 17.33699 -5.24212 -1.35810 - 16.78620 -5.75412 -1.28497 - 16.18993 -6.15320 -1.21690 - 15.55906 -6.44735 -1.15371 - 14.90370 -6.64424 -1.09522 - 14.23321 -6.75124 -1.04124 - 14.23323 -6.74838 -1.04124 - 13.55553 -6.79242 -0.99156 - 12.87727 -6.76057 -0.94597 - 12.20573 -6.65920 -0.90428 - 11.54755 -6.49442 -0.86628 - 10.90877 -6.27197 -0.83176 - 10.90871 -6.26907 -0.83176 - 10.15364 -6.30355 -0.79468 - 9.39853 -6.27112 -0.76201 - 8.65092 -6.17995 -0.73343 - 7.91739 -6.03762 -0.70862 - 7.20366 -5.85106 -0.68726 - 7.20371 -5.84854 -0.68726 - 6.51363 -5.64703 -0.66902 - 5.84970 -5.41358 -0.65361 - 5.21544 -5.15335 -0.64077 - 4.61378 -4.87100 -0.63020 - 4.04712 -4.57067 -0.62164 - 4.04716 -4.56924 -0.62164 - 3.51647 -4.27349 -0.61482 - 3.02196 -3.96668 -0.60953 - 2.56480 -3.65157 -0.60557 - 2.14582 -3.33053 -0.60274 - 1.76563 -3.00554 -0.60084 - 1.76565 -3.00490 -0.60084 - 1.42375 -2.69318 -0.59969 - 1.11933 -2.38058 -0.59916 - 0.85241 -2.06819 -0.59913 - 0.62292 -1.75687 -0.59949 - 0.43069 -1.44725 -0.60011 - 0.43070 -1.44708 -0.60011 - 0.27476 -1.15232 -0.60091 - 0.15404 -0.86008 -0.60182 - 0.06823 -0.57054 -0.60281 - 0.01700 -0.28384 -0.60385 - 0.00000 -0.00001 -0.60489 + 0.00000 0.00000 -13.06006 + 0.00000 0.00000 -12.94997 + 0.00000 0.00000 -12.83988 + 0.00000 0.00000 -12.72979 + 0.00000 0.00000 -12.61970 + 0.00000 0.00000 -12.50961 + 0.00000 0.00000 -12.50961 + 0.00000 0.00000 -12.39952 + 0.00000 0.00000 -12.28943 + 0.00000 0.00000 -12.17934 + 0.00000 0.00000 -12.06925 + 0.00000 0.00000 -11.95916 + 0.00022 -0.00230 -11.95916 + 0.00485 0.09602 -11.84906 + 0.02041 0.22393 -11.73897 + 0.05276 0.44560 -11.62889 + 0.11402 0.80203 -11.51883 + 0.21768 1.29382 -11.40880 + 0.21759 1.29320 -11.40880 + 0.37060 1.78861 -11.29882 + 0.57964 2.41381 -11.18896 + 0.85770 3.16905 -11.07928 + 1.21778 4.05443 -10.96989 + 1.67292 5.06997 -10.86086 + 1.67291 5.07010 -10.86086 + 2.27839 4.02899 -10.71633 + 2.75178 3.08868 -10.57302 + 3.10648 2.24828 -10.43113 + 3.35572 1.50670 -10.29086 + 3.51260 0.86267 -10.15240 + 3.51286 0.85825 -10.15240 + 3.57498 0.08611 -10.01589 + 3.53948 -0.60373 -9.88130 + 3.41791 -1.20532 -9.74857 + 3.22192 -1.72010 -9.61764 + 2.96301 -2.14951 -9.48844 + 2.96298 -2.14937 -9.48844 + 2.63705 -2.72642 -9.36089 + 2.23942 -3.22509 -9.23475 + 1.78046 -3.64657 -9.10978 + 1.27039 -3.99193 -8.98574 + 0.71929 -4.26211 -8.86239 + 0.71930 -4.26205 -8.86239 + 0.12333 -4.66580 -8.73946 + -0.52179 -4.99922 -8.61660 + -1.20669 -5.26279 -8.49343 + -1.92210 -5.45679 -8.36960 + -2.65875 -5.58135 -8.24474 + -2.65874 -5.58161 -8.24474 + -3.41927 -5.81532 -8.11847 + -4.20650 -5.98185 -7.99036 + -5.01143 -6.08074 -7.85999 + -5.82500 -6.11132 -7.72692 + -6.63804 -6.07273 -7.59072 + -6.63802 -6.07336 -7.59072 + -7.45133 -6.11475 -7.45095 + -8.26553 -6.08658 -7.30718 + -9.07126 -5.98737 -7.15898 + -9.85893 -5.81543 -7.00591 + -10.61873 -5.56889 -6.84754 + -10.61877 -5.56943 -6.84754 + -11.11292 -4.31078 -6.72502 + -11.48033 -3.03426 -6.59914 + -11.71917 -1.73955 -6.46982 + -11.82762 -0.42628 -6.33700 + -11.80380 0.90591 -6.20060 + -11.80380 0.90572 -6.20060 + -11.64848 2.20373 -6.06058 + -11.36240 3.52130 -5.91705 + -10.94356 4.85880 -5.77011 + -10.38996 6.21659 -5.61991 + -9.69956 7.59500 -5.46656 + -9.69956 7.59485 -5.46656 + -8.87264 8.94702 -5.31023 + -7.90945 10.32034 -5.15122 + -6.80786 11.71507 -4.98986 + -5.56571 13.13144 -4.82647 + -4.18084 14.56961 -4.66141 + -4.18085 14.56955 -4.66141 + -2.65314 15.98818 -4.49502 + -0.98248 17.42877 -4.32783 + 0.83334 18.89132 -4.16038 + 2.79652 20.37579 -3.99323 + 4.90923 21.88205 -3.82692 + 4.90910 21.88310 -3.82692 + 7.62950 18.95928 -3.60766 + 9.97452 16.25167 -3.39252 + 11.97266 13.75529 -3.18256 + 13.65170 11.46395 -2.97888 + 15.03850 9.37033 -2.78255 + 15.03844 9.37381 -2.78255 + 16.14796 7.29946 -2.59448 + 16.99286 5.40282 -2.41510 + 17.59619 3.67441 -2.24473 + 17.97974 2.10441 -2.08370 + 18.16395 0.68263 -1.93234 + 18.16405 0.68639 -1.93234 + 18.16609 -0.63387 -1.79086 + 18.00066 -1.82737 -1.65915 + 17.68396 -2.90448 -1.53703 + 17.23085 -3.87536 -1.42434 + 16.65665 -4.70874 -1.32092 + 16.65578 -4.72254 -1.32092 + 16.15605 -5.25294 -1.24928 + 15.60888 -5.67267 -1.18253 + 15.02495 -5.98943 -1.12048 + 14.41418 -6.21062 -1.06297 + 13.78577 -6.34337 -1.00981 + 13.78579 -6.34060 -1.00981 + 13.14753 -6.41160 -0.96082 + 12.50597 -6.40771 -0.91580 + 11.86828 -6.33513 -0.87456 + 11.24104 -6.19978 -0.83692 + 10.63023 -6.00726 -0.80266 + 10.63017 -6.00443 -0.80266 + 9.90585 -6.05566 -0.76578 + 9.17947 -6.04027 -0.73321 + 8.45854 -5.96624 -0.70463 + 7.74963 -5.84096 -0.67974 + 7.05848 -5.67121 -0.65822 + 7.05853 -5.66874 -0.65822 + 6.38903 -5.48370 -0.63976 + 5.74374 -5.26622 -0.62408 + 5.12623 -5.02141 -0.61091 + 4.53951 -4.75382 -0.59998 + 3.98607 -4.46753 -0.59103 + 3.98610 -4.46612 -0.59103 + 3.46698 -4.18363 -0.58380 + 2.98251 -3.88927 -0.57807 + 2.53393 -3.58574 -0.57365 + 2.12220 -3.27538 -0.57035 + 1.74803 -2.96017 -0.56797 + 1.74805 -2.95954 -0.56797 + 1.41106 -2.65665 -0.56633 + 1.11053 -2.35196 -0.56531 + 0.84662 -2.04652 -0.56478 + 0.61936 -1.74119 -0.56463 + 0.42870 -1.43660 -0.56476 + 0.42871 -1.43643 -0.56476 + 0.27380 -1.14574 -0.56505 + 0.15368 -0.85659 -0.56546 + 0.06815 -0.56918 -0.56595 + 0.01700 -0.28364 -0.56648 + 0.00000 -0.00001 -0.56702 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4476,7 +4571,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=28 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -4490,18 +4585,15 @@ Q max -1.00000 63.43600 0.00000 108.78741 0.00000 -1.50000 62.01900 32.37900 237.82117 0.69115 -2.00000 64.69400 32.82900 383.27926 3.41679 - -2.10000 64.99600 32.90600 413.56969 4.09738 - -2.40000 65.68000 33.09900 505.46290 6.26022 - -2.93333 66.42700 42.00000 673.33946 13.85443 - -3.46667 66.88100 40.86200 847.60112 22.55597 + -2.66667 66.10600 42.73200 588.63423 9.79101 + -3.33333 66.78500 41.11300 803.41694 20.31230 -4.00000 72.99400 40.02200 989.05558 31.96043 -4.66667 72.39100 39.24400 1163.78042 44.63750 -5.33333 71.91100 38.66500 1348.35130 58.29389 -6.00000 71.52100 38.22200 1543.05863 72.90176 -6.50000 71.67500 37.89500 1746.12777 84.50525 -7.00000 71.62500 37.62000 1965.95881 96.20246 - -7.40000 71.78600 37.43000 2148.77382 105.62404 - -7.80000 71.91400 37.26100 2332.37785 115.10010 + -7.50000 71.82000 37.38600 2194.59868 107.98801 -8.00000 71.96900 37.18300 2424.49107 119.85805 -8.66667 72.12300 36.69600 2815.30436 133.89529 -9.33333 72.91400 35.88200 3255.48548 147.94601 @@ -4518,7 +4610,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=27 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -4533,19 +4625,16 @@ Lambda passive -0.75000 21.47812 127.62488 0.00000 0.88774 0.00000 5.94209 -1.25000 29.57685 258.06753 1.38230 0.88372 0.04674 8.72532 -1.75000 37.93284 290.91618 5.45128 0.83591 0.14371 7.66924 - -2.05000 42.53773 302.90433 6.80593 0.80589 0.16000 7.12084 - -2.25000 44.10448 306.31067 7.20947 0.79346 0.16346 6.94511 - -2.66667 47.33148 314.76855 14.23913 0.76519 0.30084 6.65030 - -3.20000 51.35347 326.74062 16.31539 0.72953 0.31771 6.36258 - -3.73333 55.23859 265.22711 17.63336 0.69774 0.31922 4.80148 + -2.33333 44.75462 308.03245 9.56133 0.78796 0.21364 6.88270 + -3.00000 49.86108 322.17406 15.78193 0.74256 0.31652 6.46143 + -3.66667 54.76032 278.45797 17.47220 0.70146 0.31907 5.08503 -4.33333 59.45479 262.08726 19.01561 0.66762 0.31983 4.40818 -5.00000 63.97379 276.85631 20.48458 0.64069 0.32020 4.32765 -5.66667 68.34951 292.06100 21.91181 0.61954 0.32058 4.27305 -6.25000 70.83319 406.13827 23.20698 0.54898 0.32763 5.73373 -6.75000 71.47567 439.66208 23.39441 0.53960 0.32731 6.15121 - -7.20000 72.01574 457.03753 23.55395 0.53216 0.32707 6.34636 - -7.60000 72.46993 459.01008 23.69016 0.52627 0.32690 6.33380 - -7.90000 72.79663 460.56608 23.78975 0.52226 0.32680 6.32675 + -7.25000 72.07377 457.27975 23.57111 0.53139 0.32704 6.34461 + -7.75000 72.63468 459.78477 23.74007 0.52422 0.32684 6.33010 -8.33333 75.91684 586.21994 21.05586 0.42066 0.27735 7.72187 -9.00000 81.91216 660.27168 21.07608 0.41299 0.25730 8.06073 -9.66667 87.87278 674.49844 22.26047 0.40725 0.25333 7.67585 @@ -4561,7 +4650,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4586,94 +4675,76 @@ Status character 0.00000 0.00000 151.42274 22.62241 1 0 A 1.19098 0.00000 222.34811 22.51986 1 0 A 1.26706 0.00000 236.55318 23.95858 1 0 A - 1.34375 0.00000 250.87086 25.40870 1 0 A - 1.42097 0.00000 265.28694 26.86879 1 0 A - 1.49864 0.00000 279.78639 28.33732 1 0 A - 1.57667 0.00000 294.35399 29.81276 1 0 A - 4.84810 0.00000 258.72654 28.19990 1 0 A - 5.08891 0.00000 271.57786 29.60063 1 0 A - 5.33037 0.00000 284.46381 31.00513 1 0 A - 5.57227 0.00000 297.37304 32.41217 1 0 A - 5.81441 0.00000 310.29527 33.82063 1 0 A - 7.05777 0.00000 323.22137 35.22951 110 0 - - 6.74312 0.00000 300.10883 33.96442 1 0 A - 6.76825 0.20000 301.22719 34.09099 1 0 A - 6.79337 0.40000 302.34535 34.21754 1 0 A - 6.81849 0.60000 303.46324 34.34405 1 0 A - 6.84360 0.80000 304.58082 34.47053 1 0 A - 6.86870 1.00000 305.69804 34.59697 1 0 A - 7.01749 1.00000 298.15415 34.06326 1 0 A - 7.09437 1.60000 301.42049 34.43643 1 0 A - 7.49503 2.20000 304.68203 34.80906 110 0 - - 8.10015 2.80000 307.93772 35.18101 110 0 - - 8.70406 3.40000 311.18658 35.55218 110 0 - - 9.30662 4.00000 314.42778 35.92248 110 0 - - 13.61993 4.00000 301.08059 34.64264 1 0 A - 13.86861 5.06667 306.57778 35.27515 1 0 A - 14.11598 6.13333 312.04609 35.90434 1 0 A - 14.36192 7.20000 317.48285 36.52990 1 0 A - 14.60634 8.26667 322.88606 37.15160 1 0 A - 14.84918 9.33333 328.25425 37.76927 1 0 A - 15.68183 9.33333 314.05266 36.00935 1 0 A - 15.93657 10.40000 319.15415 36.59428 1 0 A - 16.18956 11.46667 324.22061 37.17521 1 0 A - 16.44078 12.53333 329.25180 37.75208 1 0 A - 16.69025 13.60000 334.24771 38.32492 1 0 A - 16.93796 14.66667 339.20855 38.89373 1 0 A - 17.01868 14.66667 255.98161 37.19889 1 0 A - 17.26584 15.73333 259.69910 37.73911 1 0 A - 17.51128 16.80000 263.39079 38.27558 1 0 A - 17.75503 17.86667 267.05716 38.80838 1 0 A - 18.15191 18.93333 270.69874 39.33757 110 0 - - 19.02991 20.00000 274.31610 39.86324 110 0 - - 18.27256 20.00000 251.84597 38.14217 1 0 A - 18.57155 21.33333 255.96688 38.76629 1 0 A - 19.41163 22.66667 260.05507 39.38544 110 0 - - 20.44542 24.00000 264.11171 39.99982 110 0 - - 21.46851 25.33333 268.13800 40.60961 110 0 - - 22.48169 26.66667 272.13510 41.21497 110 0 - - 20.81895 26.66667 267.16397 39.55223 110 0 - - 21.79885 28.00000 271.06056 40.12909 110 0 - - 22.77099 29.33333 274.93076 40.70206 110 0 - - 23.73653 30.66667 278.77568 41.27128 110 0 - - 24.69658 32.00000 282.59640 41.83692 110 0 - - 25.65228 33.33333 286.39395 42.39912 110 0 - - 24.25305 33.33333 282.78059 40.99990 110 0 - - 25.18713 34.66667 286.50834 41.54038 110 0 - - 26.11940 36.00000 290.21515 42.07783 110 0 - - 27.05111 37.33333 293.90196 42.61237 110 0 - - 27.98350 38.66667 297.56963 43.14414 110 0 - - 28.91780 40.00000 301.21902 43.67326 110 0 - - 32.79693 40.00000 404.18610 38.69912 110 0 - - 32.99565 41.00000 404.97647 38.77479 110 0 - - 33.19458 42.00000 405.75410 38.84925 110 0 - - 33.39390 43.00000 406.51943 38.92252 110 0 - - 33.59373 44.00000 407.27287 38.99466 110 0 - - 33.79422 45.00000 408.01484 39.06570 110 0 - - 33.12638 45.00000 437.72323 38.39787 110 0 - - 33.32645 46.00000 438.50734 38.46665 110 0 - - 33.52732 47.00000 439.27995 38.53443 110 0 - - 33.72897 48.00000 440.04148 38.60123 110 0 - - 33.93136 49.00000 440.79230 38.66709 110 0 - - 34.13447 50.00000 441.53279 38.73205 110 0 - - 33.60055 50.00000 455.54010 38.19814 110 0 - - 33.76281 50.80000 456.14385 38.24876 110 0 - - 33.92540 51.60000 456.74120 38.29885 110 0 - - 34.08824 52.40000 457.33232 38.34842 110 0 - - 34.25123 53.20000 457.91740 38.39748 110 0 - - 34.41427 54.00000 458.49659 38.44605 110 0 - - 33.98894 54.00000 457.58955 38.02071 110 0 - - 34.15139 54.80000 458.16190 38.06827 110 0 - - 34.31364 55.60000 458.72870 38.11536 110 0 - - 34.47551 56.40000 459.29012 38.16201 110 0 - - 34.63683 57.20000 459.84631 38.20822 110 0 - - 34.79743 58.00000 460.39742 38.25402 110 0 - - 34.50617 58.00000 459.88488 37.96275 110 0 - - 34.58596 58.40000 460.15827 37.98532 110 0 - - 34.66551 58.80000 460.43045 38.00779 110 0 - - 34.74476 59.20000 460.70142 38.03016 110 0 - - 34.82371 59.60000 460.97122 38.05243 110 0 - - 34.90231 60.00000 461.23986 38.07460 110 0 - + 1.93076 0.00000 250.87086 25.40870 110 0 - + 3.61102 0.00000 265.28694 26.86879 110 0 - + 5.29967 0.00000 279.78639 28.33732 110 0 - + 6.99515 0.00000 294.35399 29.81276 110 0 - + 5.38229 0.00000 258.72654 28.19990 110 0 - + 7.00298 0.00000 271.57786 29.60063 110 0 - + 8.62722 0.00000 284.46381 31.00513 110 0 - + 10.25361 0.00000 297.37304 32.41217 110 0 - + 11.88085 0.00000 310.29527 33.82063 110 0 - + 13.50778 0.00000 323.22137 35.22951 110 0 - + 11.48701 0.00000 290.07223 33.20874 110 0 - + 12.60050 1.33333 297.27337 34.03316 110 0 - + 13.70915 2.66667 304.45373 34.85520 110 0 - + 14.81128 4.00000 311.60190 35.67355 110 0 - + 15.90547 5.33333 318.70896 36.48720 110 0 - + 16.99057 6.66667 325.76818 37.29537 110 0 - + 14.98127 6.66667 305.82924 35.14665 1 0 A + 15.87080 8.00000 312.40692 35.90257 110 0 - + 16.88985 9.33333 318.93195 36.65245 110 0 - + 17.89890 10.66667 325.40234 37.39604 110 0 - + 18.89796 12.00000 331.81704 38.13323 110 0 - + 19.88710 13.33333 338.17573 38.86399 110 0 - + 17.73596 13.33333 266.13817 36.71285 110 0 - + 18.67533 14.66667 271.09848 37.39711 110 0 - + 19.60590 16.00000 276.01546 38.07539 110 0 - + 20.52825 17.33333 280.88996 38.74781 110 0 - + 21.44302 18.66667 285.72299 39.41451 110 0 - + 22.35086 20.00000 290.51570 40.07565 110 0 - + 20.41738 20.00000 251.84597 38.14217 110 0 - + 21.28736 21.33333 255.96688 38.76629 110 0 - + 22.15225 22.66667 260.05507 39.38544 110 0 - + 23.01296 24.00000 264.11171 39.99982 110 0 - + 23.87040 25.33333 268.13800 40.60961 110 0 - + 24.72548 26.66667 272.13510 41.21497 110 0 - + 23.06274 26.66667 267.16397 39.55223 110 0 - + 23.89215 28.00000 271.06056 40.12909 110 0 - + 24.72133 29.33333 274.93076 40.70206 110 0 - + 25.55130 30.66667 278.77568 41.27128 110 0 - + 26.38309 32.00000 282.59640 41.83692 110 0 - + 27.21769 33.33333 286.39395 42.39912 110 0 - + 25.81847 33.33333 282.78059 40.99990 110 0 - + 26.63848 34.66667 286.50834 41.54038 110 0 - + 27.46346 36.00000 290.21515 42.07783 110 0 - + 28.29442 37.33333 293.90196 42.61237 110 0 - + 29.13233 38.66667 297.56963 43.14414 110 0 - + 29.97817 40.00000 301.21902 43.67326 110 0 - + 33.22108 40.00000 404.18610 38.69912 110 0 - + 33.39478 41.00000 404.97647 38.77479 110 0 - + 33.56994 42.00000 405.75410 38.84925 110 0 - + 33.74667 43.00000 406.51943 38.92252 110 0 - + 33.92507 44.00000 407.27287 38.99466 110 0 - + 34.10522 45.00000 408.01484 39.06570 110 0 - + 33.43739 45.00000 437.72323 38.39787 110 0 - + 33.61818 46.00000 438.50734 38.46665 110 0 - + 33.80079 47.00000 439.27995 38.53443 110 0 - + 33.98514 48.00000 440.04148 38.60123 110 0 - + 34.17117 49.00000 440.79230 38.66709 110 0 - + 34.35880 50.00000 441.53279 38.73205 110 0 - + 33.76949 50.00000 455.41458 38.14274 110 0 - + 33.95766 51.00000 456.16805 38.20585 110 0 - + 34.14715 52.00000 456.91159 38.26812 110 0 - + 34.33771 53.00000 457.64555 38.32959 110 0 - + 34.52911 54.00000 458.37026 38.39029 110 0 - + 34.72112 55.00000 459.08604 38.45024 110 0 - + 34.20296 55.00000 458.03634 37.93209 110 0 - + 34.39450 56.00000 458.74189 37.99052 110 0 - + 34.58600 57.00000 459.43915 38.04826 110 0 - + 34.77704 58.00000 460.12842 38.10534 110 0 - + 34.96720 59.00000 460.80999 38.16179 110 0 - + 35.15608 60.00000 461.48412 38.21761 110 0 - 20.21999 60.00000 562.94850 30.66769 1 0 A 20.55473 61.33333 572.26809 31.17540 1 0 A 20.88894 62.66667 581.57287 31.68229 1 0 A @@ -4691,49 +4762,49 @@ Status character 22.10981 76.00000 669.93329 35.54435 1 0 A 22.41107 77.33333 679.06155 36.02866 1 0 A 22.71207 78.66667 688.18187 36.51255 1 0 A - 23.41500 80.00000 697.29467 36.99605 110 0 - - 23.06710 80.00000 698.28228 36.64814 110 0 - - 24.15745 81.00000 705.12187 37.00711 110 0 - - 25.19688 82.00000 711.95761 37.36587 110 0 - - 26.18729 83.00000 718.78966 37.72444 110 0 - - 27.13058 84.00000 725.61819 38.08282 110 0 - - 28.02864 85.00000 732.44333 38.44103 110 0 - - 27.78151 85.00000 733.35301 38.19390 110 0 - - 28.63405 86.00000 740.18338 38.54963 110 0 - - 29.44549 87.00000 747.01065 38.90520 110 0 - - 30.21784 88.00000 753.83494 39.26062 110 0 - - 30.95313 89.00000 760.65639 39.61589 110 0 - - 31.65338 90.00000 767.47512 39.97102 110 0 - - 23.49343 90.00000 1154.39027 31.81106 110 0 - - 24.20330 91.20000 1166.69274 32.15008 110 0 - - 24.86886 92.40000 1178.98988 32.48894 110 0 - - 25.49336 93.60000 1191.28200 32.82767 110 0 - - 26.08003 94.80000 1203.56938 33.16627 110 0 - - 26.63213 96.00000 1215.85228 33.50475 110 0 - - 26.39397 96.00000 1311.77675 33.26659 110 0 - - 26.91232 97.20000 1325.02416 33.60254 110 0 - - 27.40224 98.40000 1338.26729 33.93839 110 0 - - 27.86648 99.60000 1351.50640 34.27413 110 0 - - 28.30780 100.80000 1364.74173 34.60978 110 0 - - 28.72897 102.00000 1377.97351 34.94534 110 0 - - 28.53231 102.00000 1368.39235 34.74867 110 0 - - 28.93408 103.20000 1381.52885 35.08226 110 0 - - 29.32049 104.40000 1394.66227 35.41576 110 0 - - 29.69353 105.60000 1407.79283 35.74920 110 0 - - 30.05520 106.80000 1420.92071 36.08256 110 0 - - 30.40747 108.00000 1434.04612 36.41587 110 0 - - 30.24581 108.00000 1428.37926 36.25421 110 0 - - 30.58907 109.20000 1441.45052 36.58597 110 0 - - 30.92610 110.40000 1454.51966 36.91769 110 0 - - 31.25806 111.60000 1467.58687 37.24935 110 0 - - 31.58611 112.80000 1480.65229 37.58097 110 0 - - 31.91143 114.00000 1493.71608 37.91255 110 0 - - 31.77932 114.00000 1432.96902 37.78044 110 0 - - 32.10177 115.20000 1445.50011 38.11083 110 0 - - 32.42300 116.40000 1458.02991 38.44118 110 0 - - 32.74339 117.60000 1470.55855 38.77150 110 0 - - 33.06331 118.80000 1483.08616 39.10179 110 0 - - 33.38315 120.00000 1495.61285 39.43206 110 0 - + 23.78687 80.00000 697.29467 36.99605 110 0 - + 23.43896 80.00000 698.28228 36.64814 110 0 - + 24.51428 81.00000 705.12187 37.00711 110 0 - + 25.54058 82.00000 711.95761 37.36587 110 0 - + 26.51963 83.00000 718.78966 37.72444 110 0 - + 27.45317 84.00000 725.61819 38.08282 110 0 - + 28.34296 85.00000 732.44333 38.44103 110 0 - + 28.09583 85.00000 733.35301 38.19390 110 0 - + 28.94145 86.00000 740.18338 38.54963 110 0 - + 29.74719 87.00000 747.01065 38.90520 110 0 - + 30.51498 88.00000 753.83494 39.26062 110 0 - + 31.24673 89.00000 760.65639 39.61589 110 0 - + 31.94437 90.00000 767.47512 39.97102 110 0 - + 23.78442 90.00000 1154.39027 31.81106 110 0 - + 24.49225 91.20000 1166.69274 32.15008 110 0 - + 25.15685 92.40000 1178.98988 32.48894 110 0 - + 25.78134 93.60000 1191.28200 32.82767 110 0 - + 26.36886 94.80000 1203.56938 33.16627 110 0 - + 26.92253 96.00000 1215.85228 33.50475 110 0 - + 26.68437 96.00000 1311.77675 33.26659 110 0 - + 27.20491 97.20000 1325.02416 33.60254 110 0 - + 27.69756 98.40000 1338.26729 33.93839 110 0 - + 28.16500 99.60000 1351.50640 34.27413 110 0 - + 28.60993 100.80000 1364.74173 34.60978 110 0 - + 29.03502 102.00000 1377.97351 34.94534 110 0 - + 28.83835 102.00000 1368.39235 34.74867 110 0 - + 29.24430 103.20000 1381.52885 35.08226 110 0 - + 29.63511 104.40000 1394.66227 35.41576 110 0 - + 30.01272 105.60000 1407.79283 35.74920 110 0 - + 30.37909 106.80000 1420.92071 36.08256 110 0 - + 30.73618 108.00000 1434.04612 36.41587 110 0 - + 30.57452 108.00000 1428.37926 36.25421 110 0 - + 30.92266 109.20000 1441.45052 36.58597 110 0 - + 31.26462 110.40000 1454.51966 36.91769 110 0 - + 31.60156 111.60000 1467.58687 37.24935 110 0 - + 31.93462 112.80000 1480.65229 37.58097 110 0 - + 32.26496 114.00000 1493.71608 37.91255 110 0 - + 32.13286 114.00000 1432.96902 37.78044 110 0 - + 32.46033 115.20000 1445.50011 38.11083 110 0 - + 32.78659 116.40000 1458.02991 38.44118 110 0 - + 33.11201 117.60000 1470.55855 38.77150 110 0 - + 33.43698 118.80000 1483.08616 39.10179 110 0 - + 33.76185 120.00000 1495.61285 39.43206 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4746,10 +4817,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 78.869 'Clay' - -6.00 67.763 'Peat' - -8.00 70.673 'Sand 1' - -11.00 87.550 'Sand 2' + 0.00 91.216 'Clay' + -6.00 68.239 'Peat' + -8.00 71.018 'Sand 1' + -11.00 88.516 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4764,7 +4835,7 @@ Method Ka,K0,Kp [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.40 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile initial @@ -4816,7 +4887,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4851,144 +4922,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.60000 0.00000 0.00000 -1 0 - - 0.00000 0.80000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00000 1.60000 0.00000 0.00000 -1 0 - - 0.00000 2.20000 0.00000 0.00000 -1 0 - - 0.00000 2.80000 0.00000 0.00000 -1 0 - - 0.00000 3.40000 0.00000 0.00000 -1 0 - - 0.00000 4.00000 0.00000 0.00000 -1 0 - - 6.74017 4.00000 6.74017 0.00000 202 100 P - 9.35692 5.06667 9.35692 0.36313 202 100 P - 11.97367 6.13333 11.97367 0.72626 202 100 P - 14.59043 7.20000 14.59043 1.08940 202 100 P - 17.20719 8.26667 17.20719 1.45253 202 100 P - 19.82394 9.33333 19.82394 1.81566 202 100 P - 26.39945 9.33333 33.19895 1.81566 110 80 - - 26.36605 10.40000 35.81571 2.17879 110 74 - - 26.33690 11.46667 38.43246 2.54192 110 69 - - 26.31224 12.53333 41.04922 2.90505 110 64 - - 26.29233 13.60000 43.66597 3.26819 110 60 - - 26.27741 14.66667 46.28273 3.63132 110 57 - - 26.27741 14.66667 51.44317 3.63132 110 51 - - 26.26768 15.73333 54.05992 3.99445 110 49 - - 26.26315 16.80000 56.67668 4.35758 110 46 - - 26.26377 17.86667 59.29343 4.72071 110 44 - - 26.26950 18.93333 61.91019 5.08385 110 42 - - 26.28030 20.00000 64.52695 5.44698 110 41 - - 26.28030 20.00000 64.52695 5.44698 110 41 - - 26.30081 21.33333 67.79789 5.90089 110 39 - - 26.32862 22.66667 71.06884 6.35481 110 37 - - 26.36313 24.00000 74.33978 6.80872 110 35 - - 26.40374 25.33333 77.61073 7.26264 110 34 - - 26.44983 26.66667 80.88167 7.71655 110 33 - - 26.44983 26.66667 80.88167 7.71655 110 33 - - 26.50072 28.00000 84.15262 8.17047 110 31 - - 26.55545 29.33333 87.42356 8.62438 110 30 - - 26.61305 30.66667 90.69450 9.07830 110 29 - - 26.67255 32.00000 93.96545 9.53221 110 28 - - 26.73297 33.33333 97.23639 9.98613 110 27 - - 26.73297 33.33333 97.23639 9.98613 110 27 - - 26.79329 34.66667 100.50734 10.44004 110 27 - - 26.85238 36.00000 103.77828 10.89395 110 26 - - 26.90913 37.33333 107.04923 11.34787 110 25 - - 26.96242 38.66667 110.32017 11.80178 110 24 - - 27.01116 40.00000 113.59112 12.25570 110 24 - - 16.81065 40.00000 111.20665 10.90846 110 15 - - 16.73811 41.00000 111.67158 10.95896 110 15 - - 16.66413 42.00000 112.13652 11.00947 110 15 - - 16.58860 43.00000 112.60145 11.05997 110 15 - - 16.51141 44.00000 113.06638 11.11047 110 15 - - 16.43246 45.00000 113.53131 11.16097 110 14 - - 16.43246 45.00000 113.53131 11.16097 110 14 - - 16.35167 46.00000 113.99625 11.21147 110 14 - - 16.26908 47.00000 114.46118 11.26198 110 14 - - 16.18474 48.00000 114.92611 11.31248 110 14 - - 16.09872 49.00000 115.39105 11.36298 110 14 - - 16.01107 50.00000 115.85598 11.41348 110 14 - - 16.01107 50.00000 115.85598 11.41348 110 14 - - 15.93984 50.80000 116.22793 11.45388 110 14 - - 15.86773 51.60000 116.59987 11.49429 110 14 - - 15.79486 52.40000 116.97182 11.53469 110 14 - - 15.72134 53.20000 117.34376 11.57509 110 13 - - 15.64726 54.00000 117.71571 11.61549 110 13 - - 15.64726 54.00000 117.71571 11.61549 110 13 - - 15.57277 54.80000 118.08766 11.65589 110 13 - - 15.49802 55.60000 118.45960 11.69630 110 13 - - 15.42320 56.40000 118.83155 11.73670 110 13 - - 15.34849 57.20000 119.20350 11.77710 110 13 - - 15.27409 58.00000 119.57544 11.81750 110 13 - - 15.27409 58.00000 119.57544 11.81750 110 13 - - 15.23706 58.40000 119.76142 11.83770 110 13 - - 15.20018 58.80000 119.94739 11.85790 110 13 - - 15.16350 59.20000 120.13336 11.87810 110 13 - - 15.12702 59.60000 120.31933 11.89830 110 13 - - 15.09080 60.00000 120.50531 11.91850 110 13 - - 49.08071 60.00000 338.24848 9.42701 110 15 - - 47.23756 61.33333 355.44755 9.90635 110 13 - - 45.44720 62.66667 372.64663 10.38569 110 12 - - 43.71979 64.00000 389.84570 10.86503 110 11 - - 42.06549 65.33333 407.04478 11.34437 110 10 - - 40.49447 66.66667 424.24385 11.82371 110 10 - - 40.49447 66.66667 424.24385 11.82371 110 10 - - 39.01517 68.00000 441.44293 12.30305 110 9 - - 37.63108 69.33333 458.64200 12.78239 110 8 - - 36.34487 70.66667 475.84108 13.26173 110 8 - - 35.15925 72.00000 493.04015 13.74107 110 7 - - 34.07689 73.33333 510.23923 14.22041 110 7 - - 34.07689 73.33333 510.23923 14.22041 110 7 - - 33.09929 74.66667 527.43830 14.69975 110 6 - - 32.22474 76.00000 544.63738 15.17909 110 6 - - 31.45110 77.33333 561.83645 15.65843 110 6 - - 30.77628 78.66667 579.03553 16.13777 110 5 - - 30.19815 80.00000 596.23460 16.61710 110 5 - - 30.19815 80.00000 596.23460 16.61710 110 5 - - 29.82627 81.00000 609.13391 16.97661 110 5 - - 29.50510 82.00000 622.03322 17.33611 110 5 - - 29.23277 83.00000 634.93252 17.69562 110 5 - - 29.00737 84.00000 647.83183 18.05512 110 4 - - 28.82702 85.00000 660.73113 18.41463 110 4 - - 28.82702 85.00000 660.73113 18.41463 110 4 - - 28.68971 86.00000 673.63044 18.77413 110 4 - - 28.59335 87.00000 686.52975 19.13364 110 4 - - 28.53592 88.00000 699.42905 19.49314 110 4 - - 28.51541 89.00000 712.32836 19.85265 110 4 - - 28.52979 90.00000 725.22767 20.21215 110 4 - - 24.22322 90.00000 634.62802 15.90559 110 4 - - 24.19185 91.20000 648.17344 16.24507 110 4 - - 24.20464 92.40000 661.71886 16.58456 110 4 - - 24.25836 93.60000 675.26428 16.92405 110 4 - - 24.34977 94.80000 688.80970 17.26353 110 4 - - 24.47563 96.00000 702.35512 17.60302 110 3 - - 24.47563 96.00000 702.35512 17.60302 110 3 - - 24.63273 97.20000 715.90054 17.94251 110 3 - - 24.81814 98.40000 729.44596 18.28199 110 3 - - 25.02913 99.60000 742.99138 18.62148 110 3 - - 25.26294 100.80000 756.53680 18.96097 110 3 - - 25.51682 102.00000 770.08223 19.30045 110 3 - - 25.51682 102.00000 770.08223 19.30045 110 3 - - 25.78811 103.20000 783.62765 19.63994 110 3 - - 26.07470 104.40000 797.17307 19.97943 110 3 - - 26.37458 105.60000 810.71849 20.31891 110 3 - - 26.68577 106.80000 824.26391 20.65840 110 3 - - 27.00628 108.00000 837.80933 20.99789 110 3 - - 27.00628 108.00000 837.80933 20.99789 110 3 - - 27.33428 109.20000 851.35475 21.33738 110 3 - - 27.66845 110.40000 864.90017 21.67686 110 3 - - 28.00764 111.60000 878.44559 22.01635 110 3 - - 28.35069 112.80000 891.99101 22.35584 110 3 - - 28.69644 114.00000 905.53643 22.69532 110 3 - - 28.69644 114.00000 905.53643 22.69532 110 3 - - 29.04387 115.20000 919.08185 23.03481 110 3 - - 29.39248 116.40000 932.62727 23.37430 110 3 - - 29.74190 117.60000 946.17269 23.71378 110 3 - - 30.09175 118.80000 959.71811 24.05327 110 3 - - 30.44166 120.00000 973.26353 24.39276 110 3 - + 21.72173 0.00000 25.27561 0.00000 110 86 - + 21.88657 1.33333 28.54655 0.45391 110 77 - + 22.05387 2.66667 31.81750 0.90783 110 69 - + 22.22401 4.00000 35.08844 1.36174 110 63 - + 22.39738 5.33333 38.35939 1.81566 110 58 - + 22.57437 6.66667 41.63033 2.26957 110 54 - + 22.57437 6.66667 41.63033 2.26957 110 54 - + 22.75526 8.00000 44.90128 2.72349 110 51 - + 22.94000 9.33333 48.17222 3.17740 110 48 - + 23.12846 10.66667 51.44317 3.63132 110 45 - + 23.32051 12.00000 54.71411 4.08523 110 43 - + 23.51603 13.33333 57.98506 4.53915 110 41 - + 23.51603 13.33333 57.98506 4.53915 110 41 - + 23.71484 14.66667 61.25600 4.99306 110 39 - + 23.91647 16.00000 64.52695 5.44698 110 37 - + 24.12045 17.33333 67.79789 5.90089 110 36 - + 24.32629 18.66667 71.06884 6.35481 110 34 - + 24.53351 20.00000 74.33978 6.80872 110 33 - + 24.53351 20.00000 74.33978 6.80872 110 33 - + 24.74156 21.33333 77.61073 7.26264 110 32 - + 24.94974 22.66667 80.88167 7.71655 110 31 - + 25.15733 24.00000 84.15262 8.17047 110 30 - + 25.36358 25.33333 87.42356 8.62438 110 29 - + 25.56778 26.66667 90.69450 9.07830 110 28 - + 25.56778 26.66667 90.69450 9.07830 110 28 - + 25.76915 28.00000 93.96545 9.53221 110 27 - + 25.96685 29.33333 97.23639 9.98613 110 27 - + 26.16002 30.66667 100.50734 10.44004 110 26 - + 26.34779 32.00000 103.77828 10.89395 110 25 - + 26.52930 33.33333 107.04923 11.34787 110 25 - + 26.52930 33.33333 107.04923 11.34787 110 25 - + 26.70369 34.66667 110.32017 11.80178 110 24 - + 26.87006 36.00000 113.59112 12.25570 110 24 - + 27.02757 37.33333 116.86206 12.70961 110 23 - + 27.17534 38.66667 120.13301 13.16353 110 23 - + 27.31253 40.00000 123.40395 13.61744 110 22 - + 17.59855 40.00000 122.36504 12.12051 110 14 - + 17.55103 41.00000 122.82997 12.17102 110 14 - + 17.50083 42.00000 123.29490 12.22152 110 14 - + 17.44788 43.00000 123.75984 12.27202 110 14 - + 17.39212 44.00000 124.22477 12.32252 110 14 - + 17.33350 45.00000 124.68970 12.37302 110 14 - + 17.33350 45.00000 124.68970 12.37302 110 14 - + 17.27199 46.00000 125.15464 12.42353 110 14 - + 17.20767 47.00000 125.61957 12.47403 110 14 - + 17.14062 48.00000 126.08450 12.52453 110 14 - + 17.07096 49.00000 126.54944 12.57503 110 13 - + 16.99878 50.00000 127.01437 12.62553 110 13 - + 16.99878 50.00000 127.01437 12.62553 110 13 - + 16.92422 51.00000 127.47930 12.67604 110 13 - + 16.84752 52.00000 127.94423 12.72654 110 13 - + 16.76893 53.00000 128.40917 12.77704 110 13 - + 16.68872 54.00000 128.87410 12.82754 110 13 - + 16.60717 55.00000 129.33903 12.87805 110 13 - + 16.60717 55.00000 129.33903 12.87805 110 13 - + 16.52456 56.00000 129.80397 12.92855 110 13 - + 16.44131 57.00000 130.26890 12.97905 110 13 - + 16.35786 58.00000 130.73383 13.02955 110 13 - + 16.27464 59.00000 131.19876 13.08005 110 12 - + 16.19209 60.00000 131.66370 13.13056 110 12 - + 48.65484 60.00000 372.64663 10.38569 110 13 - + 46.94166 61.33333 389.84570 10.86503 110 12 - + 45.26955 62.66667 407.04478 11.34437 110 11 - + 43.64933 64.00000 424.24385 11.82371 110 10 - + 42.09183 65.33333 441.44293 12.30305 110 10 - + 40.60787 66.66667 458.64200 12.78239 110 9 - + 40.60787 66.66667 458.64200 12.78239 110 9 - + 39.20657 68.00000 475.84108 13.26173 110 8 - + 37.89208 69.33333 493.04015 13.74107 110 8 - + 36.66769 70.66667 510.23923 14.22041 110 7 - + 35.53672 72.00000 527.43830 14.69975 110 7 - + 34.50247 73.33333 544.63738 15.17909 110 6 - + 34.50247 73.33333 544.63738 15.17909 110 6 - + 33.56705 74.66667 561.83645 15.65843 110 6 - + 32.72924 76.00000 579.03553 16.13777 110 6 - + 31.98740 77.33333 596.23460 16.61710 110 5 - + 31.33985 78.66667 613.43368 17.09644 110 5 - + 30.78496 80.00000 630.63275 17.57578 110 5 - + 30.78496 80.00000 630.63275 17.57578 110 5 - + 30.42812 81.00000 643.53206 17.93529 110 5 - + 30.12008 82.00000 656.43137 18.29479 110 5 - + 29.85911 83.00000 669.33067 18.65430 110 4 - + 29.64346 84.00000 682.22998 19.01380 110 4 - + 29.47137 85.00000 695.12929 19.37331 110 4 - + 29.47137 85.00000 695.12929 19.37331 110 4 - + 29.34099 86.00000 708.02859 19.73281 110 4 - + 29.25033 87.00000 720.92790 20.09232 110 4 - + 29.19746 88.00000 733.82720 20.45182 110 4 - + 29.18048 89.00000 746.72651 20.81133 110 4 - + 29.19748 90.00000 759.62582 21.17083 110 4 - + 24.68665 90.00000 664.72896 16.66000 110 4 - + 24.65732 91.20000 678.27438 16.99949 110 4 - + 24.67107 92.40000 691.81980 17.33897 110 4 - + 24.72479 93.60000 705.36522 17.67846 110 4 - + 24.81536 94.80000 718.91064 18.01795 110 3 - + 24.93965 96.00000 732.45606 18.35744 110 3 - + 24.93965 96.00000 732.45606 18.35744 110 3 - + 25.09455 97.20000 746.00148 18.69692 110 3 - + 25.27724 98.40000 759.54690 19.03641 110 3 - + 25.48502 99.60000 773.09232 19.37590 110 3 - + 25.71523 100.80000 786.63774 19.71538 110 3 - + 25.96519 102.00000 800.18316 20.05487 110 3 - + 25.96519 102.00000 800.18316 20.05487 110 3 - + 26.23231 103.20000 813.72858 20.39436 110 3 - + 26.51450 104.40000 827.27400 20.73384 110 3 - + 26.80981 105.60000 840.81942 21.07333 110 3 - + 27.11629 106.80000 854.36484 21.41282 110 3 - + 27.43199 108.00000 867.91026 21.75230 110 3 - + 27.43199 108.00000 867.91026 21.75230 110 3 - + 27.75510 109.20000 881.45568 22.09179 110 3 - + 28.08434 110.40000 895.00110 22.43128 110 3 - + 28.41856 111.60000 908.54652 22.77076 110 3 - + 28.75660 112.80000 922.09194 23.11025 110 3 - + 29.09733 114.00000 935.63736 23.44974 110 3 - + 29.09733 114.00000 935.63736 23.44974 110 3 - + 29.43972 115.20000 949.18278 23.78922 110 3 - + 29.78330 116.40000 962.72820 24.12871 110 3 - + 30.12768 117.60000 976.27362 24.46820 110 3 - + 30.47250 118.80000 989.81904 24.80768 110 3 - + 30.81738 120.00000 1003.36446 25.14717 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5001,10 +5054,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 88.347 'Clay' - -6.00 31.978 'Peat' - -8.00 104.794 'Sand 1' - -11.00 79.720 'Sand 2' + 0.00 98.167 'Clay' + -6.00 33.925 'Peat' + -8.00 105.876 'Sand 1' + -11.00 81.016 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5012,7 +5065,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5042,34 +5095,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 - -2.40000 + -2.13333 + -2.26667 -2.40000 - -2.50667 - -2.61333 - -2.72000 - -2.82667 - -2.93333 + -2.53333 + -2.66667 + -2.66667 + -2.80000 -2.93333 - -3.04000 - -3.14667 - -3.25333 - -3.36000 - -3.46667 + -3.06667 + -3.20000 + -3.33333 + -3.33333 -3.46667 - -3.57333 - -3.68000 - -3.78667 - -3.89333 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5102,22 +5143,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.08000 - -7.16000 - -7.24000 - -7.32000 - -7.40000 + -7.10000 + -7.20000 + -7.30000 -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -5185,7 +5220,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=4 +IterationCount=5 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -5261,21 +5296,21 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.08 : Percentage mobilized resistance left - 4.18 : Percentage mobilized resistance right - 457.51 : Effective left - 357.22 : Effective right + 9.88 : Percentage mobilized resistance left + 4.16 : Percentage mobilized resistance right + 456.29 : Effective left + 356.12 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4538.12 : Max effective resistance left - 8551.99 : Max effective resistance right --40377.89 : Max moment left --69513.78 : Max moment right --2446.37 : Max mobilized moment left --2536.67 : Max mobilized moment right - 181.07 : Vertical force left - 165.71 : Vertical force right - 6.1 : Max mobilized moment percentage left + 4617.52 : Max effective resistance left + 8551.94 : Max effective resistance right +-40821.83 : Max moment left +-69517.19 : Max moment right +-2418.16 : Max mobilized moment left +-2508.83 : Max mobilized moment right + 181.86 : Vertical force left + 164.09 : Vertical force right + 5.9 : Max mobilized moment percentage left 3.6 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support @@ -5284,175 +5319,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -153.91806 - 0.00000 0.00000 -150.57497 - 0.00000 0.00000 -147.23188 - 0.00000 0.00000 -143.88879 - 0.00000 0.00000 -140.54569 - 0.00000 0.00000 -137.20260 - 0.00000 0.00000 -137.20260 - 0.00000 0.00000 -133.85951 - 0.00000 0.00000 -130.51641 - 0.00000 0.00000 -127.17332 - 0.00000 0.00000 -123.83023 - 0.00000 0.00000 -120.48714 - 0.00000 144.00000 -120.48714 - 14.40487 144.09832 -117.14477 - 28.81987 144.20275 -113.80675 - 43.24562 144.31334 -110.47744 - 57.68274 144.43013 -107.16120 - 72.13185 144.55314 -103.86240 - 72.13188 80.79653 -103.86240 - 80.23124 81.19401 -100.58505 - 88.37132 81.61078 -97.33195 - 96.55405 82.04689 -94.10556 - 104.78135 82.50236 -90.90835 - 113.05516 82.97720 -87.74281 - 113.05495 82.97213 -87.74281 - 114.71548 83.08023 -87.11371 - 116.37816 83.18872 -86.48601 - 118.04303 83.29761 -85.85971 - 119.71007 83.40691 -85.23484 - 121.37931 83.51661 -84.61141 - 121.37939 83.51515 -84.61141 - 126.39877 83.77044 -82.75002 - 131.42857 83.86220 -80.90238 - 136.45894 83.78909 -79.06903 - 141.47992 83.54891 -77.25052 - 146.48141 83.13867 -75.44741 - 146.48137 83.13827 -75.44741 - 155.32659 82.62365 -72.28159 - 164.08893 81.57962 -69.16919 - 172.71040 79.97739 -66.11315 - 181.12980 77.78534 -63.11642 - 189.28247 74.97067 -60.18196 - 189.28246 74.97075 -60.18196 - 197.05012 70.53603 -57.31275 - 204.30033 65.26270 -54.51131 - 210.94181 59.11693 -51.77990 - 216.87987 52.06922 -49.12080 - 222.01696 44.09493 -46.53627 - 222.01688 44.09671 -46.53627 - 226.28976 36.06695 -44.02837 - 229.72096 28.31269 -41.59829 - 232.33906 20.81883 -39.24693 - 234.17105 13.57086 -36.97520 - 235.24242 6.55483 -34.78399 - 235.24238 6.55348 -34.78399 - 235.60756 -1.00911 -32.15926 - 234.99053 -8.18381 -29.66111 - 233.44134 -14.99558 -27.28874 - 231.00676 -21.46858 -25.04133 - 227.73039 -27.62637 -22.91805 - 227.73012 -27.61700 -22.91805 - 223.70819 -32.65774 -20.91760 - 219.03531 -37.38522 -19.03734 - 213.75172 -41.82207 -17.27443 - 207.89470 -45.99031 -15.62606 - 201.49862 -49.91133 -14.08939 - 201.50158 -49.91911 -14.08939 - 194.63729 -53.00545 -12.66128 - 187.37697 -55.86276 -11.33773 - 179.75064 -58.49313 -10.11465 - 171.79399 -60.78178 -8.98796 - 163.56126 -62.64084 -7.95357 - 163.55892 -62.65031 -7.95357 - 157.30918 -62.33030 -7.23576 - 151.09562 -61.92757 -6.56548 - 144.92624 -61.44759 -5.94087 - 138.80850 -60.89562 -5.36006 - 132.74935 -60.27670 -4.82119 - 132.74937 -60.27455 -4.82119 - 126.75640 -59.57481 -4.32240 - 120.83633 -58.81729 -3.86192 - 114.99472 -58.00641 -3.43796 - 109.23668 -57.14640 -3.04878 - 103.56694 -56.24127 -2.69260 - 103.56699 -56.23996 -2.69260 - 99.09645 -55.51932 -2.43025 - 94.68456 -54.77416 -2.18705 - 90.33319 -54.00624 -1.96219 - 86.04412 -53.21728 -1.75480 - 81.81895 -52.40889 -1.56404 - 81.81895 -52.40821 -1.56404 - 77.65977 -51.56860 -1.38910 - 73.56842 -50.71250 -1.22917 - 69.54617 -49.84131 -1.08348 - 65.59417 -48.95635 -0.95125 - 61.71349 -48.05886 -0.83170 - 61.71350 -48.05855 -0.83170 - 59.80087 -47.57287 -0.77644 - 57.90771 -47.08446 -0.72408 - 56.03415 -46.59344 -0.67451 - 54.18027 -46.09997 -0.62766 - 52.34618 -45.60415 -0.58342 - 52.34521 -45.59495 -0.58342 - 46.47353 -42.48056 -0.45361 - 41.01595 -39.39124 -0.34875 - 35.96613 -36.37087 -0.26612 - 31.31234 -33.45648 -0.20300 - 27.03835 -30.67825 -0.15669 - 27.03885 -30.66891 -0.15669 - 23.15052 -27.68230 -0.12464 - 19.64952 -24.86175 -0.10502 - 16.51271 -22.22155 -0.09613 - 13.71530 -19.77210 -0.09628 - 11.23138 -17.51992 -0.10378 - 11.23174 -17.51937 -0.10378 - 9.03750 -15.42742 -0.11711 - 7.10891 -13.53460 -0.13530 - 5.41950 -11.83934 -0.15742 - 3.94312 -10.33835 -0.18255 - 2.65514 -9.00519 -0.20979 - 2.65404 -9.02393 -0.20979 - 1.79867 -8.08890 -0.23112 - 1.03520 -7.18589 -0.25299 - 0.36040 -6.31560 -0.27520 - -0.22903 -5.47840 -0.29754 - -0.73639 -4.67435 -0.31981 - -0.73637 -4.67448 -0.31981 - -1.16505 -3.90447 -0.34183 - -1.51834 -3.16678 -0.36349 - -1.79946 -2.46077 -0.38471 - -2.01153 -1.78568 -0.40541 - -2.15760 -1.14062 -0.42550 - -2.15757 -1.14120 -0.42550 - -2.27008 -0.74090 -0.44872 - -2.33702 -0.38147 -0.47095 - -2.36319 -0.06102 -0.49218 - -2.35315 0.22237 -0.51239 - -2.31123 0.47065 -0.53158 - -2.31123 0.46986 -0.53158 - -2.24192 0.67992 -0.54975 - -2.14930 0.85877 -0.56694 - -2.03699 1.00821 -0.58321 - -1.90843 1.12997 -0.59859 - -1.76684 1.22567 -0.61315 - -1.76685 1.22506 -0.61315 - -1.61580 1.28853 -0.62693 - -1.45853 1.32885 -0.64000 - -1.29775 1.34729 -0.65245 - -1.13601 1.34498 -0.66433 - -0.97575 1.32292 -0.67571 - -0.97576 1.32257 -0.67571 - -0.81987 1.27237 -0.68667 - -0.67112 1.20396 -0.69728 - -0.53163 1.11793 -0.70759 - -0.40350 1.01480 -0.71766 - -0.28875 0.89493 -0.72756 - -0.28875 0.89482 -0.72756 - -0.18999 0.74842 -0.73735 - -0.10979 0.58565 -0.74705 - -0.05009 0.40662 -0.75669 - -0.01284 0.21140 -0.76630 - 0.00000 0.00001 -0.77591 + 0.00000 0.00000 -124.85035 + 0.00000 0.00000 -122.01078 + 0.00000 0.00000 -119.17121 + 0.00000 0.00000 -116.33164 + 0.00000 0.00000 -113.49207 + 0.00000 0.00000 -110.65250 + 0.00000 0.00000 -110.65250 + 0.00000 0.00000 -107.81292 + 0.00000 0.00000 -104.97335 + 0.00000 0.00000 -102.13378 + 0.00000 0.00000 -99.29421 + 0.00000 0.00000 -96.45464 + 0.00022 143.99770 -96.45464 + 14.40485 144.09602 -93.61579 + 28.81962 144.20045 -90.78130 + 43.24515 144.31104 -87.95551 + 57.68204 144.42783 -85.14280 + 72.13092 144.55084 -82.34751 + 72.13083 80.79375 -82.34751 + 80.22991 81.19123 -79.57369 + 88.36972 81.60800 -76.82411 + 96.55216 82.04411 -74.10124 + 104.77918 82.49957 -71.40755 + 113.05272 82.97442 -68.74553 + 113.05271 82.97454 -68.74553 + 124.14182 83.07579 -65.24986 + 135.12888 81.43620 -61.82094 + 145.77788 77.99077 -58.46443 + 155.84169 72.63887 -55.18595 + 165.05791 65.25437 -51.99115 + 165.05872 65.24742 -51.99115 + 173.47367 60.76622 -48.88549 + 181.20506 54.98042 -45.87310 + 188.07369 47.81242 -42.95760 + 193.89054 39.19316 -40.14263 + 198.49591 29.91494 -37.43181 + 198.49043 29.83154 -37.43181 + 201.92854 21.79588 -34.82828 + 204.31695 14.08162 -32.33326 + 205.69674 6.66225 -29.94749 + 206.10555 -0.48710 -27.67173 + 205.57781 -7.38988 -25.50674 + 205.57782 -7.38010 -25.50674 + 204.21262 -13.04985 -23.45273 + 202.11023 -18.44130 -21.50845 + 199.30637 -23.57540 -19.67238 + 195.83400 -28.47230 -17.94305 + 191.72344 -33.15152 -16.31894 + 191.72370 -33.14351 -16.31894 + 187.05603 -36.83336 -14.79820 + 181.91124 -40.30338 -13.37795 + 176.31741 -43.57205 -12.05519 + 170.30018 -46.65725 -10.82694 + 163.88720 -49.47871 -9.69018 + 163.88497 -49.50115 -9.69018 + 157.14545 -51.52259 -8.64167 + 150.16324 -53.14731 -7.67756 + 142.98898 -54.40878 -6.79403 + 135.66896 -55.33890 -5.98722 + 128.24532 -55.96805 -5.25331 + 128.24601 -55.96042 -5.25331 + 122.68217 -55.30648 -4.74833 + 117.18661 -54.59553 -4.28042 + 111.76482 -53.83178 -3.84793 + 106.42188 -53.01922 -3.44924 + 101.16248 -52.16166 -3.08270 + 101.16249 -52.16003 -3.08270 + 95.99040 -51.27523 -2.74670 + 90.90872 -50.35241 -2.43969 + 85.92108 -49.39484 -2.16018 + 81.03080 -48.40563 -1.90666 + 76.24091 -47.38772 -1.67762 + 76.24092 -47.38649 -1.67762 + 71.55212 -46.38545 -1.47158 + 66.96461 -45.36111 -1.28715 + 62.48059 -44.31592 -1.12299 + 58.10204 -43.25215 -0.97773 + 53.83071 -42.17191 -0.85003 + 53.83072 -42.17104 -0.85003 + 49.67217 -40.99770 -0.73855 + 45.63161 -39.81141 -0.64208 + 41.71026 -38.61383 -0.55942 + 37.90917 -37.40653 -0.48941 + 34.22924 -36.19089 -0.43084 + 34.22869 -36.18501 -0.43084 + 29.61932 -32.97742 -0.36849 + 25.42825 -29.91526 -0.32204 + 21.63427 -27.02505 -0.28944 + 18.21299 -24.32784 -0.26864 + 15.13758 -21.83917 -0.25761 + 15.13796 -21.83514 -0.25761 + 12.40511 -19.19273 -0.25448 + 10.01042 -16.76359 -0.25801 + 7.92519 -14.55118 -0.26706 + 6.12044 -12.55620 -0.28051 + 4.56729 -10.77662 -0.29723 + 4.56757 -10.77902 -0.29723 + 3.23958 -9.17519 -0.31625 + 2.11181 -7.77481 -0.33701 + 1.15758 -6.57068 -0.35899 + 0.35126 -5.55464 -0.38166 + -0.32978 -4.67634 -0.40451 + -0.33095 -4.69579 -0.40451 + -0.76959 -4.08123 -0.42150 + -1.14801 -3.49104 -0.43826 + -1.46860 -2.92477 -0.45468 + -1.73374 -2.38180 -0.47068 + -1.94571 -1.86139 -0.48615 + -1.94571 -1.86176 -0.48615 + -2.10690 -1.36559 -0.50101 + -2.21951 -0.89002 -0.51524 + -2.28555 -0.43399 -0.52881 + -2.30693 0.00354 -0.54170 + -2.28543 0.42367 -0.55389 + -2.28541 0.42306 -0.55389 + -2.22537 0.57363 -0.56759 + -2.14864 0.70163 -0.58033 + -2.05781 0.80887 -0.59214 + -1.95527 0.89707 -0.60306 + -1.84321 0.96791 -0.61312 + -1.84321 0.96728 -0.61312 + -1.72407 1.01599 -0.62238 + -1.59995 1.05041 -0.63089 + -1.47249 1.07191 -0.63871 + -1.34316 1.08175 -0.64588 + -1.21329 1.08109 -0.65247 + -1.21330 1.08067 -0.65247 + -1.08465 1.06191 -0.65853 + -0.95878 1.03462 -0.66413 + -0.83665 0.99962 -0.66930 + -0.71915 0.95766 -0.67410 + -0.60707 0.90937 -0.67860 + -0.60707 0.90915 -0.67860 + -0.50176 0.84510 -0.68283 + -0.40447 0.77562 -0.68685 + -0.31581 0.70108 -0.69068 + -0.23640 0.62177 -0.69438 + -0.16677 0.53792 -0.69797 + -0.16678 0.53785 -0.69797 + -0.10812 0.43899 -0.70149 + -0.06159 0.33573 -0.70497 + -0.02772 0.22813 -0.70842 + -0.00702 0.11622 -0.71185 + 0.00000 0.00000 -0.71528 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5518,7 +5535,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=28 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -5532,18 +5549,15 @@ Q max -1.00000 63.43600 0.00000 108.78741 0.00000 -1.50000 62.01900 32.37900 237.82117 0.69115 -2.00000 64.69400 32.82900 383.27926 3.41679 - -2.10000 64.99600 32.90600 413.56969 4.09738 - -2.40000 65.68000 33.09900 505.46290 6.26022 - -2.93333 66.42700 42.00000 673.33946 13.85443 - -3.46667 66.88100 40.86200 847.60112 22.55597 + -2.66667 66.10600 42.73200 588.63423 9.79101 + -3.33333 66.78500 41.11300 803.41694 20.31230 -4.00000 72.99400 40.02200 989.05558 31.96043 -4.66667 72.39100 39.24400 1163.78042 44.63750 -5.33333 71.91100 38.66500 1348.35130 58.29389 -6.00000 71.52100 38.22200 1543.05863 72.90176 -6.50000 71.67500 37.89500 1746.12777 84.50525 -7.00000 71.62500 37.62000 1965.95881 96.20246 - -7.40000 71.78600 37.43000 2148.77382 105.62404 - -7.80000 71.91400 37.26100 2332.37785 115.10010 + -7.50000 71.82000 37.38600 2194.59868 107.98801 -8.00000 71.96900 37.18300 2424.49107 119.85805 -8.66667 72.12300 36.69600 2815.30436 133.89529 -9.33333 72.91400 35.88200 3255.48548 147.94601 @@ -5560,7 +5574,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=27 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -5575,19 +5589,16 @@ Lambda passive -0.75000 21.47812 127.62488 0.00000 0.88774 0.00000 5.94209 -1.25000 29.57685 258.06753 1.38230 0.88372 0.04674 8.72532 -1.75000 37.93284 290.91618 5.45128 0.83591 0.14371 7.66924 - -2.05000 42.53773 302.90433 6.80593 0.80589 0.16000 7.12084 - -2.25000 44.10448 306.31067 7.20947 0.79346 0.16346 6.94511 - -2.66667 47.33148 314.76855 14.23913 0.76519 0.30084 6.65030 - -3.20000 51.35347 326.74062 16.31539 0.72953 0.31771 6.36258 - -3.73333 55.23859 265.22711 17.63336 0.69774 0.31922 4.80148 + -2.33333 44.75462 308.03245 9.56133 0.78796 0.21364 6.88270 + -3.00000 49.86108 322.17406 15.78193 0.74256 0.31652 6.46143 + -3.66667 54.76032 278.45797 17.47220 0.70146 0.31907 5.08503 -4.33333 59.45479 262.08726 19.01561 0.66762 0.31983 4.40818 -5.00000 63.97379 276.85631 20.48458 0.64069 0.32020 4.32765 -5.66667 68.34951 292.06100 21.91181 0.61954 0.32058 4.27305 -6.25000 70.83319 406.13827 23.20698 0.54898 0.32763 5.73373 -6.75000 71.47567 439.66208 23.39441 0.53960 0.32731 6.15121 - -7.20000 72.01574 457.03753 23.55395 0.53216 0.32707 6.34636 - -7.60000 72.46993 459.01008 23.69016 0.52627 0.32690 6.33380 - -7.90000 72.79663 460.56608 23.78975 0.52226 0.32680 6.32675 + -7.25000 72.07377 457.27975 23.57111 0.53139 0.32704 6.34461 + -7.75000 72.63468 459.78477 23.74007 0.52422 0.32684 6.33010 -8.33333 75.91684 586.21994 21.05586 0.42066 0.27735 7.72187 -9.00000 81.91216 660.27168 21.07608 0.41299 0.25730 8.06073 -9.66667 87.87278 674.49844 22.26047 0.40725 0.25333 7.67585 @@ -5603,7 +5614,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5638,36 +5649,24 @@ Status character 5.57227 0.00000 297.37304 32.41217 1 0 A 5.81441 0.00000 310.29527 33.82063 1 0 A 6.05662 0.00000 323.22137 35.22951 1 0 A - 6.74312 0.00000 300.10883 33.96442 1 0 A - 6.76825 0.20000 301.22719 34.09099 1 0 A - 6.79337 0.40000 302.34535 34.21754 1 0 A - 6.81849 0.60000 303.46324 34.34405 1 0 A - 6.84360 0.80000 304.58082 34.47053 1 0 A - 6.86870 1.00000 305.69804 34.59697 1 0 A - 7.01749 1.00000 298.15415 34.06326 1 0 A - 7.09437 1.60000 301.42049 34.43643 1 0 A - 7.17114 2.20000 304.68203 34.80906 1 0 A - 7.24777 2.80000 307.93772 35.18101 1 0 A - 7.32423 3.40000 311.18658 35.55218 1 0 A - 7.40052 4.00000 314.42778 35.92248 1 0 A - 13.61993 4.00000 301.08059 34.64264 1 0 A - 13.86861 5.06667 306.57778 35.27515 1 0 A - 14.11598 6.13333 312.04609 35.90434 1 0 A - 14.36192 7.20000 317.48285 36.52990 1 0 A - 14.60634 8.26667 322.88606 37.15160 1 0 A - 14.84918 9.33333 328.25425 37.76927 1 0 A - 15.68183 9.33333 314.05266 36.00935 1 0 A - 15.93657 10.40000 319.15415 36.59428 1 0 A - 16.18956 11.46667 324.22061 37.17521 1 0 A - 16.44078 12.53333 329.25180 37.75208 1 0 A - 16.69025 13.60000 334.24771 38.32492 1 0 A - 16.93796 14.66667 339.20855 38.89373 1 0 A - 17.01868 14.66667 255.98161 37.19889 1 0 A - 17.26584 15.73333 259.69910 37.73911 1 0 A - 17.51128 16.80000 263.39079 38.27558 1 0 A - 17.75503 17.86667 267.05716 38.80838 1 0 A - 17.99714 18.93333 270.69874 39.33757 1 0 A - 18.23763 20.00000 274.31610 39.86324 1 0 A + 9.00384 0.00000 290.07223 33.20874 1 0 A + 9.22737 1.33333 297.27337 34.03316 1 0 A + 9.45025 2.66667 304.45373 34.85520 1 0 A + 9.67212 4.00000 311.60190 35.67355 1 0 A + 9.89273 5.33333 318.70896 36.48720 1 0 A + 10.11185 6.66667 325.76818 37.29537 1 0 A + 14.98127 6.66667 305.82924 35.14665 1 0 A + 15.30348 8.00000 312.40692 35.90257 1 0 A + 15.62311 9.33333 318.93195 36.65245 1 0 A + 15.94007 10.66667 325.40234 37.39604 1 0 A + 16.25430 12.00000 331.81704 38.13323 1 0 A + 16.56578 13.33333 338.17573 38.86399 1 0 A + 16.69918 13.33333 266.13817 36.71285 1 0 A + 17.01042 14.66667 271.09848 37.39711 1 0 A + 17.31894 16.00000 276.01546 38.07539 1 0 A + 17.62480 17.33333 280.88996 38.74781 1 0 A + 17.92805 18.66667 285.72299 39.41451 1 0 A + 18.22878 20.00000 290.51570 40.07565 1 0 A 18.27256 20.00000 251.84597 38.14217 1 0 A 18.57155 21.33333 255.96688 38.76629 1 0 A 18.86817 22.66667 260.05507 39.38544 1 0 A @@ -5679,103 +5678,97 @@ Status character 20.34211 29.33333 274.93076 40.70206 1 0 A 20.62659 30.66667 278.77568 41.27128 1 0 A 20.90929 32.00000 282.59640 41.83692 1 0 A - 21.19027 33.33333 286.39395 42.39912 1 0 A - 21.21555 33.33333 282.78059 40.99990 1 0 A - 21.49522 34.66667 286.50834 41.54038 1 0 A - 21.77332 36.00000 290.21515 42.07783 1 0 A - 22.38307 37.33333 293.90196 42.61237 110 0 - - 25.16822 38.66667 297.56963 43.14414 110 0 - - 27.76611 40.00000 301.21902 43.67326 110 0 - - 32.33626 40.00000 404.18610 38.69912 110 0 - - 32.98618 41.00000 404.97647 38.77479 110 0 - - 33.59686 42.00000 405.75410 38.84925 110 0 - - 34.16983 43.00000 406.51943 38.92252 110 0 - - 34.70662 44.00000 407.27287 38.99466 110 0 - - 35.20875 45.00000 408.01484 39.06570 110 0 - - 34.54092 45.00000 437.72323 38.39787 110 0 - - 35.00873 46.00000 438.50734 38.46665 110 0 - - 35.44489 47.00000 439.27995 38.53443 110 0 - - 35.85086 48.00000 440.04148 38.60123 110 0 - - 36.22807 49.00000 440.79230 38.66709 110 0 - - 36.57797 50.00000 441.53279 38.73205 110 0 - - 36.04406 50.00000 455.54010 38.19814 110 0 - - 36.30457 50.80000 456.14385 38.24876 110 0 - - 36.54921 51.60000 456.74120 38.29885 110 0 - - 36.77867 52.40000 457.33232 38.34842 110 0 - - 36.99364 53.20000 457.91740 38.39748 110 0 - - 37.19481 54.00000 458.49659 38.44605 110 0 - - 36.76948 54.00000 457.58955 38.02071 110 0 - - 36.95699 54.80000 458.16190 38.06827 110 0 - - 37.13203 55.60000 458.72870 38.11536 110 0 - - 37.29523 56.40000 459.29012 38.16201 110 0 - - 37.44723 57.20000 459.84631 38.20822 110 0 - - 37.58866 58.00000 460.39742 38.25402 110 0 - - 37.29739 58.00000 459.88488 37.96275 110 0 - - 37.36417 58.40000 460.15827 37.98532 110 0 - - 37.42853 58.80000 460.43045 38.00779 110 0 - - 37.49055 59.20000 460.70142 38.03016 110 0 - - 37.55030 59.60000 460.97122 38.05243 110 0 - - 37.60787 60.00000 461.23986 38.07460 110 0 - - 54.03948 60.00000 562.94850 30.66769 110 10 - - 53.34983 61.33333 572.26809 31.17540 110 9 - - 52.46297 62.66667 581.57287 31.68229 110 9 - - 51.41623 64.00000 590.86358 32.18842 110 9 - - 50.24697 65.33333 600.14088 32.69382 110 8 - - 48.99253 66.66667 609.40543 33.19852 110 8 - - 47.40994 66.66667 636.14793 32.59330 110 7 - - 46.08007 68.00000 645.80638 33.08815 110 7 - - 44.72076 69.33333 655.45280 33.58239 110 7 - - 43.35166 70.66667 665.08779 34.07604 110 7 - - 41.99241 72.00000 674.71192 34.56914 110 6 - - 40.66263 73.33333 684.32574 35.06170 110 6 - - 40.32517 73.33333 651.65118 34.57436 110 6 - - 39.03671 74.66667 660.79665 35.05959 110 6 - - 37.80249 76.00000 669.93329 35.54435 110 6 - - 36.62959 77.33333 679.06155 36.02866 110 5 - - 35.52505 78.66667 688.18187 36.51255 110 0 - - 34.89811 80.00000 697.29467 36.99605 110 0 - - 34.55021 80.00000 698.28228 36.64814 110 0 - - 34.69588 81.00000 705.12187 37.00711 110 0 - - 34.83594 82.00000 711.95761 37.36587 110 0 - - 34.97243 83.00000 718.78966 37.72444 110 0 - - 35.10741 84.00000 725.61819 38.08282 110 0 - - 35.24293 85.00000 732.44333 38.44103 110 0 - - 34.99579 85.00000 733.35301 38.19390 110 0 - - 35.13136 86.00000 740.18338 38.54963 110 0 - - 35.27031 87.00000 747.01065 38.90520 110 0 - - 35.41348 88.00000 753.83494 39.26062 110 0 - - 35.56175 89.00000 760.65639 39.61589 110 0 - - 35.71599 90.00000 767.47512 39.97102 110 0 - - 27.55603 90.00000 1154.39027 31.81106 110 0 - - 27.66287 91.20000 1166.69274 32.15008 110 0 - - 27.77945 92.40000 1178.98988 32.48894 110 0 - - 27.90589 93.60000 1191.28200 32.82767 110 0 - - 28.04234 94.80000 1203.56938 33.16627 110 0 - - 28.18893 96.00000 1215.85228 33.50475 110 0 - - 27.95077 96.00000 1311.77675 33.26659 110 0 - - 28.10505 97.20000 1325.02416 33.60254 110 0 - - 28.26897 98.40000 1338.26729 33.93839 110 0 - - 28.44206 99.60000 1351.50640 34.27413 110 0 - - 28.62385 100.80000 1364.74173 34.60978 110 0 - - 28.81387 102.00000 1377.97351 34.94534 110 0 - - 28.61721 102.00000 1368.39235 34.74867 110 0 - - 28.81300 103.20000 1381.52885 35.08226 110 0 - - 29.01574 104.40000 1394.66227 35.41576 110 0 - - 29.22474 105.60000 1407.79283 35.74920 110 0 - - 29.43931 106.80000 1420.92071 36.08256 110 0 - - 29.65877 108.00000 1434.04612 36.41587 110 0 - - 29.49711 108.00000 1428.37926 36.25421 110 0 - - 29.71925 109.20000 1441.45052 36.58597 110 0 - - 29.94490 110.40000 1454.51966 36.91769 110 0 - - 30.17346 111.60000 1467.58687 37.24935 110 0 - - 30.40433 112.80000 1480.65229 37.58097 110 0 - - 30.63692 114.00000 1493.71608 37.91255 110 0 - - 30.50481 114.00000 1432.96902 37.78044 110 0 - - 30.73738 115.20000 1445.50011 38.11083 110 0 - - 30.97072 116.40000 1458.02991 38.44118 110 0 - - 31.20459 117.60000 1470.55855 38.77150 110 0 - - 31.43875 118.80000 1483.08616 39.10179 110 0 - - 31.67292 120.00000 1495.61285 39.43206 110 0 - + 23.01876 33.33333 286.39395 42.39912 110 0 - + 21.61954 33.33333 282.78059 40.99990 110 0 - + 24.25705 34.66667 286.50834 41.54038 110 0 - + 26.72270 36.00000 290.21515 42.07783 110 0 - + 29.02432 37.33333 293.90196 42.61237 110 0 - + 31.16969 38.66667 297.56963 43.14414 110 0 - + 33.16663 40.00000 301.21902 43.67326 110 0 - + 34.49647 40.00000 404.18610 38.69912 110 0 - + 34.97613 41.00000 404.97647 38.77479 110 0 - + 35.42491 42.00000 405.75410 38.84925 110 0 - + 35.84418 43.00000 406.51943 38.92252 110 0 - + 36.23527 44.00000 407.27287 38.99466 110 0 - + 36.59954 45.00000 408.01484 39.06570 110 0 - + 35.93171 45.00000 437.72323 38.39787 110 0 - + 36.26929 46.00000 438.50734 38.46665 110 0 - + 36.58267 47.00000 439.27995 38.53443 110 0 - + 36.87308 48.00000 440.04148 38.60123 110 0 - + 37.14177 49.00000 440.79230 38.66709 110 0 - + 37.38995 50.00000 441.53279 38.73205 110 0 - + 36.80065 50.00000 455.41458 38.14274 110 0 - + 37.02859 51.00000 456.16805 38.20585 110 0 - + 37.23840 52.00000 456.91159 38.26812 110 0 - + 37.43120 53.00000 457.64555 38.32959 110 0 - + 37.60810 54.00000 458.37026 38.39029 110 0 - + 37.77022 55.00000 459.08604 38.45024 110 0 - + 37.25206 55.00000 458.03634 37.93209 110 0 - + 37.39968 56.00000 458.74189 37.99052 110 0 - + 37.53460 57.00000 459.43915 38.04826 110 0 - + 37.65780 58.00000 460.12842 38.10534 110 0 - + 37.77026 59.00000 460.80999 38.16179 110 0 - + 37.87294 60.00000 461.48412 38.21761 110 0 - + 54.18076 60.00000 562.94850 30.66769 110 10 - + 52.94647 61.33333 572.26809 31.17540 110 9 - + 51.59375 62.66667 581.57287 31.68229 110 9 - + 50.15390 64.00000 590.86358 32.18842 110 8 - + 48.65821 65.33333 600.14088 32.69382 110 8 - + 47.13800 66.66667 609.40543 33.19852 110 8 - + 45.55541 66.66667 636.14793 32.59330 110 7 - + 44.01437 68.00000 645.80638 33.08815 110 7 - + 42.49319 69.33333 655.45280 33.58239 110 6 - + 41.00648 70.66667 665.08779 34.07604 110 6 - + 39.56886 72.00000 674.71192 34.56914 110 6 - + 38.19495 73.33333 684.32574 35.06170 110 6 - + 37.85750 73.33333 651.65118 34.57436 110 6 - + 36.55436 74.66667 660.79665 35.05959 110 6 - + 35.33116 76.00000 669.93329 35.54435 110 0 - + 34.19147 77.33333 679.06155 36.02866 110 0 - + 33.13885 78.66667 688.18187 36.51255 110 0 - + 32.95092 80.00000 697.29467 36.99605 110 0 - + 32.60302 80.00000 698.28228 36.64814 110 0 - + 32.79209 81.00000 705.12187 37.00711 110 0 - + 32.98330 82.00000 711.95761 37.36587 110 0 - + 33.17762 83.00000 718.78966 37.72444 110 0 - + 33.37604 84.00000 725.61819 38.08282 110 0 - + 33.57954 85.00000 732.44333 38.44103 110 0 - + 33.33241 85.00000 733.35301 38.19390 110 0 - + 33.53951 86.00000 740.18338 38.54963 110 0 - + 33.75282 87.00000 747.01065 38.90520 110 0 - + 33.97256 88.00000 753.83494 39.26062 110 0 - + 34.19893 89.00000 760.65639 39.61589 110 0 - + 34.43214 90.00000 767.47512 39.97102 110 0 - + 26.27218 90.00000 1154.39027 31.81106 110 0 - + 26.47414 91.20000 1166.69274 32.15008 110 0 - + 26.68564 92.40000 1178.98988 32.48894 110 0 - + 26.90629 93.60000 1191.28200 32.82767 110 0 - + 27.13571 94.80000 1203.56938 33.16627 110 0 - + 27.37353 96.00000 1215.85228 33.50475 110 0 - + 27.13537 96.00000 1311.77675 33.26659 110 0 - + 27.37873 97.20000 1325.02416 33.60254 110 0 - + 27.62948 98.40000 1338.26729 33.93839 110 0 - + 27.88707 99.60000 1351.50640 34.27413 110 0 - + 28.15097 100.80000 1364.74173 34.60978 110 0 - + 28.42062 102.00000 1377.97351 34.94534 110 0 - + 28.22396 102.00000 1368.39235 34.74867 110 0 - + 28.49692 103.20000 1381.52885 35.08226 110 0 - + 28.77451 104.40000 1394.66227 35.41576 110 0 - + 29.05622 105.60000 1407.79283 35.74920 110 0 - + 29.34152 106.80000 1420.92071 36.08256 110 0 - + 29.62989 108.00000 1434.04612 36.41587 110 0 - + 29.46823 108.00000 1428.37926 36.25421 110 0 - + 29.75766 109.20000 1441.45052 36.58597 110 0 - + 30.04922 110.40000 1454.51966 36.91769 110 0 - + 30.34253 111.60000 1467.58687 37.24935 110 0 - + 30.63720 112.80000 1480.65229 37.58097 110 0 - + 30.93285 114.00000 1493.71608 37.91255 110 0 - + 30.80075 114.00000 1432.96902 37.78044 110 0 - + 31.09588 115.20000 1445.50011 38.11083 110 0 - + 31.39144 116.40000 1458.02991 38.44118 110 0 - + 31.68729 117.60000 1470.55855 38.77150 110 0 - + 31.98328 118.80000 1483.08616 39.10179 110 0 - + 32.27928 120.00000 1495.61285 39.43206 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5788,10 +5781,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 73.663 'Clay' - -6.00 71.764 'Peat' - -8.00 123.895 'Sand 1' - -11.00 87.896 'Sand 2' + 0.00 76.884 'Clay' + -6.00 73.607 'Peat' + -8.00 118.489 'Sand 1' + -11.00 87.136 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5806,7 +5799,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.10 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile initial @@ -5858,7 +5851,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=23 +DataCount=21 [COLUMN INDICATION] Slide plane position Theta min @@ -5867,35 +5860,33 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.10000 0.00000 0.00000 0.00000 0.00000 - -2.40000 67.27700 0.00000 2.61808 0.00000 - -2.93333 67.27700 0.00000 20.20123 0.00000 - -3.46667 55.65500 0.00000 67.29071 0.00000 - -4.00000 52.29200 0.00000 287.20275 0.00000 - -4.66667 77.84700 49.87400 368.53591 3.34202 - -5.33333 76.43200 47.33600 450.47843 13.13997 - -6.00000 75.30000 45.48100 540.67773 24.74734 - -6.50000 74.87900 44.46000 622.67120 35.76103 - -7.00000 73.57100 43.62200 751.51172 47.05733 - -7.40000 75.93500 43.05300 856.26084 56.25968 - -7.80000 75.68900 41.25700 925.96692 65.33026 - -8.00000 75.57800 40.28000 961.07998 69.64146 - -8.66667 74.60000 37.28600 1124.34651 83.34122 - -9.33333 74.40100 34.65400 1374.62515 95.24349 - -10.00000 75.32200 32.33000 1588.13826 106.85863 - -10.50000 75.11100 30.76300 1768.16832 115.43979 - -11.00000 74.92400 29.32700 1965.50900 123.94209 - -11.60000 74.55700 27.75900 2380.55233 132.56871 - -12.20000 75.19500 26.33800 2973.32329 140.55213 - -12.80000 76.22100 25.04600 3467.39294 147.80734 - -13.40000 76.18600 23.86800 3983.16894 155.15846 - -14.00000 76.15800 22.79100 4537.97471 162.59864 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 66.76400 0.00000 27.82804 0.00000 + -3.33333 56.31100 0.00000 83.09494 0.00000 + -4.00000 78.62300 0.00000 328.26415 0.00000 + -4.66667 77.10300 48.99000 401.98919 0.54984 + -5.33333 75.87700 46.68400 483.80046 10.83892 + -6.00000 74.87300 44.97900 574.46146 22.80152 + -6.50000 74.52400 44.03300 657.86438 34.00351 + -7.00000 73.31400 43.25200 787.34181 45.46299 + -7.50000 75.60700 42.27300 913.73819 57.11613 + -8.00000 75.34300 39.80500 1002.66644 68.18925 + -8.66667 74.42300 36.87000 1167.93995 82.00330 + -9.33333 74.26400 34.28700 1421.15706 93.87030 + -10.00000 75.18000 32.00500 1638.92516 105.44136 + -10.50000 74.98600 30.46600 1821.04692 113.98566 + -11.00000 74.81400 29.05500 2020.51146 122.44882 + -11.60000 74.47800 27.51200 2439.50028 131.03023 + -12.20000 75.13000 26.11400 3037.42343 139.12706 + -12.80000 76.15600 24.84200 3537.43857 146.33112 + -13.40000 76.13000 23.68200 4057.49943 153.63398 + -14.00000 76.10900 22.62000 4616.60088 161.02295 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=22 +DataCount=20 [COLUMN INDICATION] Position Vertical stress @@ -5906,34 +5897,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.25000 0.90502 8.72693 0.00000 3.93372 0.00000 9.64278 - -2.66667 3.64697 32.96840 0.00000 3.45573 0.00000 9.03994 - -3.20000 8.01629 88.29278 0.00000 2.57721 0.00000 11.01418 - -3.73333 13.13796 412.33506 0.00000 1.87285 0.00000 31.38502 - -4.33333 19.05766 121.99975 5.01303 1.36056 0.26305 6.40161 - -5.00000 25.20085 122.91379 14.69692 1.02265 0.58319 4.87737 - -5.66667 30.69190 135.29894 17.41106 0.82393 0.56729 4.40829 - -6.25000 33.76184 163.98694 22.02738 0.67775 0.65243 4.85717 - -6.75000 34.67902 257.68104 22.59259 0.65148 0.65148 7.43046 - -7.20000 35.33079 261.87280 23.00588 0.65116 0.65116 7.41203 - -7.60000 35.80345 174.26521 22.67645 0.63336 0.63336 4.86727 - -7.90000 36.10597 175.56530 21.55602 0.59702 0.59702 4.86250 - -8.33333 39.14814 244.89980 20.54963 0.52492 0.52492 6.25572 - -9.00000 44.95591 375.41795 17.85340 0.40659 0.39713 8.35080 - -9.66667 50.68294 320.26967 17.42271 0.39184 0.34376 6.31908 - -10.25000 55.65589 360.06011 17.16231 0.38423 0.30836 6.46940 - -10.75000 59.90308 394.68137 17.00462 0.38021 0.28387 6.58867 - -11.30000 64.56763 691.73888 14.37770 0.30494 0.22268 10.71340 - -11.90000 69.65494 987.95161 13.30570 0.30218 0.19102 14.18351 - -12.50000 74.74652 823.44942 12.09202 0.30056 0.16177 11.01656 - -13.10000 79.84613 859.62665 12.25187 0.29971 0.15344 10.76604 - -13.70000 84.95607 924.67629 12.40030 0.29938 0.14596 10.88417 + -2.33333 2.05359 41.74206 0.00000 3.77694 0.00000 20.32635 + -3.00000 7.12304 82.90036 0.00000 2.73631 0.00000 11.63835 + -3.66667 13.46890 367.75381 0.00000 1.83730 0.00000 27.30393 + -4.33333 20.01750 110.58755 0.82476 1.29738 0.04120 5.52454 + -5.00000 26.06622 122.71692 15.43362 0.98589 0.59209 4.70789 + -5.66667 31.46188 135.99149 17.94390 0.80194 0.57034 4.32242 + -6.25000 34.46412 166.80584 22.40398 0.66264 0.65007 4.83999 + -6.75000 35.33654 258.95486 22.91895 0.64859 0.64859 7.32825 + -7.25000 36.01842 252.79276 23.30629 0.64707 0.64707 7.01843 + -7.75000 36.55823 177.85650 22.14622 0.60578 0.60578 4.86502 + -8.33333 39.72627 247.91026 20.72109 0.52160 0.52160 6.24046 + -9.00000 45.51908 379.82567 17.80050 0.40386 0.39106 8.34432 + -9.66667 51.23739 326.65215 17.35659 0.39020 0.33875 6.37527 + -10.25000 56.20615 364.24352 17.08860 0.38319 0.30403 6.48049 + -10.75000 60.45154 398.92908 16.92632 0.37951 0.28000 6.59915 + -11.30000 65.11544 698.31470 14.30235 0.30433 0.21965 10.72426 + -11.90000 70.20311 996.53859 13.49471 0.30179 0.19222 14.19508 + -12.50000 75.29582 833.35857 12.00677 0.30032 0.15946 11.06779 + -13.10000 80.39702 866.76810 12.17143 0.29957 0.15139 10.78110 + -13.70000 85.50884 931.83574 12.31495 0.29930 0.14402 10.89754 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5968,144 +5957,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.60000 0.00000 0.00000 -1 0 - - 0.00000 0.80000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00001 1.00000 0.00001 0.00000 202 100 P - 3.47452 1.60000 3.47452 1.41741 202 100 P - 6.96766 2.20000 6.96766 2.84242 202 100 P - 10.49762 2.80000 10.49762 4.28244 202 100 P - 14.08176 3.40000 14.08176 5.74457 202 100 P - 17.73624 4.00000 17.73624 7.23540 202 100 P - 16.62743 4.00000 16.62743 6.35622 202 100 P - 22.92253 5.06667 22.92253 8.76267 202 100 P - 29.53164 6.13333 29.53164 11.28916 202 100 P - 36.49844 7.20000 36.49844 13.95238 202 100 P - 43.84609 8.26667 43.84609 16.76119 202 100 P - 51.57818 9.33333 51.57818 19.71697 202 100 P - 62.84233 9.33333 62.84233 14.70450 202 100 P - 72.71474 10.40000 72.71474 17.01455 202 100 P - 83.00507 11.46667 83.00507 19.42239 202 100 P - 93.66678 12.53333 93.66678 21.91713 202 100 P - 104.64502 13.60000 104.64502 24.48593 202 100 P - 115.88055 14.66667 115.88055 27.11494 202 100 P - 112.77688 14.66667 330.20295 19.70435 110 34 - - 109.70509 15.73333 362.78008 21.64834 110 30 - - 106.81243 16.80000 395.75131 23.61585 110 27 - - 104.09135 17.86667 428.95935 25.59749 110 24 - - 101.53507 18.93333 462.26046 27.58468 110 22 - - 99.13776 20.00000 495.52658 29.56978 110 20 - - 91.04941 20.00000 101.07273 21.48143 110 90 - - 87.59315 21.33333 109.50997 23.27463 110 80 - - 84.37231 22.66667 117.86368 25.05008 110 72 - - 81.37902 24.00000 126.10449 26.80154 110 65 - - 78.60691 25.33333 134.21009 28.52426 110 59 - - 76.05089 26.66667 142.16427 30.21479 110 53 - - 68.54659 26.66667 108.31447 22.71049 110 63 - - 65.79042 28.00000 114.25104 23.95522 110 58 - - 63.24764 29.33333 120.05891 25.17297 110 53 - - 60.91212 30.66667 125.73582 26.36326 110 48 - - 58.77819 32.00000 131.28171 27.52607 110 45 - - 56.84055 33.33333 136.69823 28.66176 110 42 - - 51.27111 33.33333 123.55150 23.09232 110 41 - - 49.30855 34.66667 128.33289 23.98599 110 38 - - 47.53443 36.00000 133.00369 24.85898 110 36 - - 45.94140 37.33333 137.56819 25.71210 110 33 - - 44.52216 38.66667 142.03112 26.54625 110 31 - - 43.26950 40.00000 146.39753 27.36235 110 30 - - 28.87051 40.00000 161.30441 22.50765 110 18 - - 28.45161 41.00000 162.41774 22.66300 110 18 - - 28.06318 42.00000 163.47691 22.81079 110 17 - - 27.70406 43.00000 164.48435 22.95136 110 17 - - 27.37311 44.00000 165.44250 23.08506 110 17 - - 27.06916 45.00000 166.35374 23.21221 110 16 - - 26.16948 45.00000 254.48672 22.31253 110 10 - - 25.88669 46.00000 255.81254 22.42877 110 10 - - 25.62887 47.00000 257.07367 22.53934 110 10 - - 25.39491 48.00000 258.27351 22.64454 110 10 - - 25.18367 49.00000 259.41534 22.74465 110 10 - - 24.99403 50.00000 260.50233 22.83995 110 10 - - 24.98280 50.00000 259.85617 22.82872 110 10 - - 24.84584 50.80000 260.68629 22.90165 110 10 - - 24.72145 51.60000 261.48487 22.97181 110 9 - - 24.60907 52.40000 262.25338 23.03932 110 9 - - 24.50815 53.20000 262.99322 23.10432 110 9 - - 24.41815 54.00000 263.70576 23.16691 110 9 - - 23.78494 54.00000 173.16831 22.53371 110 14 - - 23.70365 54.80000 173.61914 22.59238 110 14 - - 23.63226 55.60000 174.05375 22.64893 110 14 - - 23.57025 56.40000 174.47291 22.70347 110 14 - - 23.51711 57.20000 174.87741 22.75611 110 13 - - 23.47229 58.00000 175.26798 22.80693 110 13 - - 22.16376 58.00000 175.09605 21.49840 110 13 - - 22.14290 58.40000 175.28615 21.52174 110 13 - - 22.12395 58.80000 175.47304 21.54469 110 13 - - 22.10686 59.20000 175.65679 21.56725 110 13 - - 22.09156 59.60000 175.83750 21.58944 110 13 - - 22.07800 60.00000 176.01523 21.61126 110 13 - - 24.83552 60.00000 226.44773 19.00131 110 11 - - 24.15909 61.33333 233.85642 19.62298 110 10 - - 23.72897 62.66667 241.22740 20.24148 110 10 - - 23.51828 64.00000 248.56400 20.85710 110 9 - - 23.50012 65.33333 255.86934 21.47009 110 9 - - 23.64756 66.66667 263.14630 22.08070 110 9 - - 18.67014 66.66667 351.27578 17.10328 110 5 - - 18.82098 68.00000 360.95552 17.57458 110 5 - - 19.09456 69.33333 370.60425 18.04437 110 5 - - 19.47409 70.66667 380.22502 18.51279 110 5 - - 19.94279 72.00000 389.82065 18.97999 110 5 - - 20.48386 73.33333 399.39376 19.44610 110 5 - - 19.77817 73.33333 302.22263 18.74041 110 7 - - 20.35977 74.66667 309.45141 19.18866 110 7 - - 20.98903 76.00000 316.66664 19.63606 110 7 - - 21.65688 77.33333 323.86989 20.08273 110 7 - - 22.35427 78.66667 331.06256 20.52873 110 7 - - 23.07211 80.00000 338.24598 20.97417 110 7 - - 22.66484 80.00000 346.29210 20.56690 110 7 - - 23.20539 81.00000 351.80236 20.89417 110 7 - - 23.75112 82.00000 357.30847 21.22119 110 7 - - 24.29999 83.00000 362.81088 21.54798 110 7 - - 24.85000 84.00000 368.31003 21.87459 110 7 - - 25.39912 85.00000 373.80632 22.20102 110 7 - - 25.16696 85.00000 380.69766 21.96886 110 7 - - 25.71000 86.00000 386.29274 22.29174 110 7 - - 26.24938 87.00000 391.88563 22.61448 110 7 - - 26.78426 88.00000 397.47668 22.93713 110 7 - - 27.31381 89.00000 403.06620 23.25968 110 7 - - 27.83719 90.00000 408.65448 23.58216 110 7 - - 23.16838 90.00000 664.48642 18.91335 110 3 - - 23.71086 91.20000 675.38847 19.22365 110 4 - - 24.24341 92.40000 686.28899 19.53391 110 4 - - 24.76593 93.60000 697.18862 19.84415 110 4 - - 25.27831 94.80000 708.08798 20.15438 110 4 - - 25.78044 96.00000 718.98762 20.46462 110 4 - - 25.59520 96.00000 951.87045 20.27938 110 3 - - 26.08433 97.20000 966.30158 20.58683 110 3 - - 26.56374 98.40000 980.73439 20.89432 110 3 - - 27.03393 99.60000 995.16945 21.20186 110 3 - - 27.49538 100.80000 1009.60728 21.50945 110 3 - - 27.94858 102.00000 1024.04837 21.81712 110 3 - - 27.83197 102.00000 795.39466 21.70051 110 3 - - 28.27586 103.20000 806.61415 22.00661 110 4 - - 28.71282 104.40000 817.83681 22.31279 110 4 - - 29.14353 105.60000 829.06293 22.61907 110 4 - - 29.56870 106.80000 840.29276 22.92545 110 4 - - 29.98904 108.00000 851.52654 23.23194 110 4 - - 29.92343 108.00000 832.16270 23.16633 110 4 - - 30.33878 109.20000 843.14508 23.47206 110 4 - - 30.75070 110.40000 854.13170 23.77791 110 4 - - 31.15978 111.60000 865.12273 24.08389 110 4 - - 31.56663 112.80000 876.11832 24.38999 110 4 - - 31.97186 114.00000 887.11860 24.69623 110 4 - - 31.94417 114.00000 896.85236 24.66854 110 4 - - 32.34801 115.20000 907.97820 24.97456 110 4 - - 32.75118 116.40000 919.10900 25.28072 110 4 - - 33.15393 117.60000 930.24486 25.58702 110 4 - - 33.55651 118.80000 941.38585 25.89346 110 4 - - 33.95918 120.00000 952.53204 26.20005 110 4 - + 0.00002 0.00000 0.00002 0.00000 202 100 P + 16.33288 1.33333 16.33288 3.03489 202 100 P + 33.08694 2.66667 33.08694 6.14805 202 100 P + 50.63731 4.00000 50.63731 9.40917 202 100 P + 69.27571 5.33333 69.27571 12.87246 202 100 P + 89.18810 6.66667 89.18810 16.57248 202 100 P + 51.06682 6.66667 51.06682 12.00640 202 100 P + 63.24028 8.00000 63.24028 14.86852 202 100 P + 76.17009 9.33333 76.17009 17.90846 202 100 P + 89.79306 10.66667 89.79306 21.11138 202 100 P + 104.01249 12.00000 104.01249 24.45453 202 100 P + 102.77418 13.33333 118.71205 27.91056 110 87 - + 93.60421 13.33333 278.50222 18.74059 110 34 - + 90.77397 14.66667 313.82382 21.11741 110 29 - + 88.19776 16.00000 349.69564 23.53125 110 25 - + 85.85921 17.33333 385.85212 25.96424 110 22 - + 83.74397 18.66667 422.05726 28.40051 110 20 - + 81.83994 20.00000 458.10920 30.82646 110 18 - + 72.78102 20.00000 92.69158 21.76755 110 79 - + 70.37086 21.33333 99.92141 23.46539 110 70 - + 68.15860 22.66667 107.05956 25.14170 110 64 - + 66.13638 24.00000 114.08530 26.79162 110 58 - + 64.29765 25.33333 120.98342 28.41156 110 53 - + 62.63695 26.66667 127.74341 29.99907 110 49 - + 55.43444 26.66667 108.86002 22.79656 110 51 - + 53.57349 28.00000 114.49744 23.97710 110 47 - + 51.88713 29.33333 120.00878 25.13124 110 43 - + 50.36924 30.66667 125.39348 26.25886 110 40 - + 49.01409 32.00000 130.65278 27.36022 110 38 - + 47.81622 33.33333 135.78928 28.43586 110 35 - + 42.51055 33.33333 124.67121 23.13018 110 34 - + 41.26817 34.66667 129.27776 23.98483 110 32 - + 40.17507 36.00000 133.77898 24.81994 110 30 - + 39.22441 37.33333 138.17942 25.63635 110 28 - + 38.40942 38.66667 142.48396 26.43497 110 27 - + 37.72337 40.00000 146.69766 27.21674 110 26 - + 26.69169 40.00000 164.26316 22.48903 110 16 - + 26.43220 41.00000 165.31858 22.63353 110 16 - + 26.19531 42.00000 166.32247 22.77097 110 16 - + 25.98003 43.00000 167.27723 22.90169 110 16 - + 25.78539 44.00000 168.18524 23.02600 110 15 - + 25.61040 45.00000 169.04885 23.14424 110 15 - + 25.11985 45.00000 255.95774 22.65369 110 10 - + 24.96113 46.00000 257.20152 22.76377 110 10 - + 24.82026 47.00000 258.38485 22.86850 110 10 - + 24.69632 48.00000 259.51097 22.96817 110 10 - + 24.58838 49.00000 260.58302 23.06305 110 9 - + 24.49551 50.00000 261.60401 23.15342 110 9 - + 24.44107 50.00000 250.54414 23.09898 110 10 - + 24.36214 51.00000 251.47585 23.18488 110 10 - + 24.29649 52.00000 252.36412 23.26677 110 10 - + 24.24329 53.00000 253.21148 23.34489 110 10 - + 24.20166 54.00000 254.02040 23.41947 110 10 - + 24.17074 55.00000 254.79318 23.49072 110 9 - + 22.67190 55.00000 176.61695 21.99188 110 13 - + 22.64649 56.00000 177.12913 22.05565 110 13 - + 22.63034 57.00000 177.61926 22.11668 110 13 - + 22.62268 58.00000 178.08875 22.17514 110 13 - + 22.62272 59.00000 178.53892 22.23119 110 13 - + 22.62967 60.00000 178.97101 22.28500 110 13 - + 23.49653 60.00000 229.56987 19.18814 110 10 - + 23.48838 61.33333 236.93195 19.80349 110 10 - + 23.63627 62.66667 244.25893 20.41590 110 10 - + 23.92001 64.00000 251.55398 21.02564 110 10 - + 24.31939 65.33333 258.82001 21.63296 110 9 - + 24.81419 66.66667 266.05974 22.23808 110 9 - + 19.79446 66.66667 355.75682 17.21835 110 6 - + 20.23015 68.00000 365.40551 17.68534 110 6 - + 20.73102 69.33333 375.02551 18.15094 110 6 - + 21.28591 70.66667 384.61972 18.61529 110 6 - + 21.88366 72.00000 394.19078 19.07852 110 6 - + 22.51309 73.33333 403.74116 19.54075 110 6 - + 21.85202 73.33333 308.46845 18.87968 110 7 - + 22.48796 74.66667 315.75110 19.32541 110 7 - + 23.14051 76.00000 323.02128 19.77038 110 7 - + 23.80457 77.33333 330.28045 20.21468 110 7 - + 24.47501 78.66667 337.52996 20.65838 110 7 - + 25.14670 80.00000 344.77106 21.10157 110 7 - + 24.76757 80.00000 350.46145 20.72244 110 7 - + 25.26359 81.00000 355.97700 21.04857 110 7 - + 25.75705 82.00000 361.48885 21.37448 110 7 - + 26.24701 83.00000 366.99743 21.70020 110 7 - + 26.73252 84.00000 372.50314 22.02574 110 7 - + 27.21263 85.00000 378.00635 22.35114 110 7 - + 26.99847 85.00000 384.92795 22.13699 110 7 - + 27.46926 86.00000 390.52974 22.45914 110 7 - + 27.93357 87.00000 396.12969 22.78119 110 7 - + 28.39122 88.00000 401.72811 23.10315 110 7 - + 28.84201 89.00000 407.32529 23.42504 110 7 - + 29.28576 90.00000 412.92150 23.74688 110 7 - + 24.58137 90.00000 671.03693 19.04249 110 4 - + 25.02808 91.20000 681.94870 19.35214 110 4 - + 25.46507 92.40000 692.85948 19.66177 110 4 - + 25.89276 93.60000 703.76989 19.97138 110 4 - + 26.31156 94.80000 714.68049 20.28100 110 4 - + 26.72185 96.00000 725.59181 20.59063 110 4 - + 26.54977 96.00000 960.42373 20.41856 110 3 - + 26.94946 97.20000 974.86799 20.72564 110 3 - + 27.34168 98.40000 989.31441 21.03277 110 3 - + 27.72702 99.60000 1003.76351 21.33996 110 3 - + 28.10602 100.80000 1018.21580 21.64721 110 3 - + 28.47926 102.00000 1032.67171 21.95454 110 3 - + 28.37251 102.00000 805.16630 21.84780 110 4 - + 28.73906 103.20000 816.44060 22.15372 110 4 - + 29.10099 104.40000 827.71833 22.45974 110 4 - + 29.45883 105.60000 838.99975 22.76585 110 4 - + 29.81312 106.80000 850.28510 23.07207 110 4 - + 30.16439 108.00000 861.57458 23.37841 110 4 - + 30.10618 108.00000 839.25666 23.32020 110 4 - + 30.45420 109.20000 850.25793 23.62589 110 4 - + 30.80017 110.40000 861.26358 23.93170 110 4 - + 31.14446 111.60000 872.27378 24.23764 110 4 - + 31.48748 112.80000 883.28865 24.54371 110 4 - + 31.82960 114.00000 894.30831 24.84991 110 4 - + 31.80748 114.00000 903.96717 24.82779 110 4 - + 32.14880 115.20000 915.11080 25.13386 110 4 - + 32.48980 116.40000 926.25948 25.44006 110 4 - + 32.83061 117.60000 937.41330 25.74640 110 4 - + 33.17140 118.80000 948.57231 26.05289 110 3 - + 33.51230 120.00000 959.73657 26.35952 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6118,10 +6089,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 252.262 'Clay' - -6.00 50.462 'Peat' - -8.00 68.315 'Sand 1' - -11.00 86.467 'Sand 2' + 0.00 247.026 'Clay' + -6.00 48.900 'Peat' + -8.00 72.705 'Sand 1' + -11.00 87.663 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6129,7 +6100,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -6159,34 +6130,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 - -2.40000 + -2.13333 + -2.26667 -2.40000 - -2.50667 - -2.61333 - -2.72000 - -2.82667 - -2.93333 + -2.53333 + -2.66667 + -2.66667 + -2.80000 -2.93333 - -3.04000 - -3.14667 - -3.25333 - -3.36000 - -3.46667 + -3.06667 + -3.20000 + -3.33333 + -3.33333 -3.46667 - -3.57333 - -3.68000 - -3.78667 - -3.89333 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -6219,22 +6178,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.08000 - -7.16000 - -7.24000 - -7.32000 - -7.40000 + -7.10000 + -7.20000 + -7.30000 -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -6317,7 +6270,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 46.38561 210000000.000 1 2 0 'anchor' + -1.50000 36.83362 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6378,22 +6331,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 45.29 : Percentage mobilized resistance left - 3.15 : Percentage mobilized resistance right - 614.01 : Effective left - 292.09 : Effective right + 31.98 : Percentage mobilized resistance left + 2.97 : Percentage mobilized resistance right + 609.25 : Effective left + 275.12 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1355.61 : Max effective resistance left + 1904.81 : Max effective resistance left 9258.01 : Max effective resistance right --11930.29 : Max moment left --77946.75 : Max moment right --5119.14 : Max mobilized moment left --1608.34 : Max mobilized moment right - 333.16 : Vertical force left - 122.59 : Vertical force right - 42.9 : Max mobilized moment percentage left - 2.1 : Max mobilized moment percentage right +-16862.95 : Max moment left +-77946.72 : Max moment right +-4895.43 : Max mobilized moment left +-1379.64 : Max mobilized moment right + 325.72 : Vertical force left + 113.00 : Vertical force right + 29.0 : Max mobilized moment percentage left + 1.8 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -6401,175 +6354,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00267 0.01832 -99.37923 - 0.27199 5.55663 -99.21419 - 1.12501 11.58559 -99.04920 - 2.60546 18.10519 -98.88474 - 4.75301 24.83360 -98.72124 - 7.56248 31.27103 -98.55916 - 7.56870 31.33767 -98.55916 - 11.00313 37.26597 -98.39915 - 15.00491 42.68472 -98.24246 - 19.52327 47.59936 -98.09045 - 24.50862 52.02923 -97.94447 - 29.91339 55.98736 -97.80587 - 29.91339 55.98776 -97.80587 - 35.69037 59.47290 -97.67617 - 41.79217 62.48389 -97.55725 - 48.17132 65.01989 -97.45104 - 54.78030 67.08045 -97.35945 - 61.57156 68.66553 -97.28439 - 61.57695 22.41337 -97.28439 - 63.87774 23.52328 -97.22765 - 66.26579 24.15868 -97.19022 - 68.70187 24.56587 -97.17282 - 71.17993 25.00210 -97.17619 - 73.70363 25.47872 -97.20107 - 73.69807 -134.56917 -97.20107 - 71.00769 -134.46789 -97.20869 - 68.31938 -134.36276 -97.21716 - 65.63320 -134.25378 -97.22646 - 62.94925 -134.14095 -97.23655 - 60.26759 -134.02428 -97.24740 - 60.26767 -134.02575 -97.24740 - 52.23715 -133.65266 -97.28420 - 44.23005 -133.24495 -97.32668 - 36.24845 -132.80264 -97.37397 - 28.29442 -132.32570 -97.42521 - 20.37006 -131.81415 -97.47953 - 20.37002 -131.81455 -97.47953 - 6.36189 -130.81966 -97.58098 - -7.53428 -129.71536 -97.68461 - -21.30683 -128.50167 -97.78570 - -34.94408 -127.17857 -97.87950 - -48.43437 -125.74607 -97.96128 - -48.43438 -125.74599 -97.96128 - -61.76602 -124.20409 -98.02635 - -74.92736 -122.55279 -98.07018 - -87.90672 -120.79208 -98.08830 - -100.69245 -118.92197 -98.07626 - -113.27286 -116.94246 -98.02961 - -113.27293 -116.94069 -98.02961 - -125.63617 -114.85178 -97.94392 - -137.77075 -112.65346 -97.81503 - -149.66502 -110.34575 -97.63885 - -161.30729 -107.92863 -97.41130 - -172.68590 -105.40211 -97.12829 - -172.68594 -25.40347 -97.12829 - -175.85417 -22.09147 -96.69132 - -178.56940 -18.60853 -96.15986 - -180.80885 -14.95466 -95.53272 - -182.54972 -11.12984 -94.80869 - -183.76921 -7.13408 -93.98659 - -183.76948 -7.12471 -93.98659 - -184.44357 -2.95802 -93.06542 - -184.55069 1.37962 -92.04513 - -184.06807 5.88820 -90.92601 - -182.97291 10.56772 -89.70831 - -181.24241 15.41818 -88.39230 - -181.23945 15.41040 -88.39230 - -178.85187 20.43180 -86.97850 - -175.78337 25.62414 -85.46859 - -172.01117 30.98743 -83.86460 - -167.51246 36.52165 -82.16858 - -162.26447 42.22681 -80.38254 - -162.26680 42.21734 -80.38254 - -157.82116 46.70904 -78.98538 - -152.92225 51.28303 -77.54052 - -147.56182 55.93930 -76.04958 - -141.73164 60.67787 -74.51419 - -135.42350 65.49872 -72.93596 - -135.42348 65.50087 -72.93596 - -128.62892 70.40401 -71.31663 - -121.33994 75.38944 -69.65842 - -113.54829 80.45716 -67.96369 - -105.24576 85.60716 -66.23479 - -96.42412 90.83946 -64.47407 - -96.42407 90.84076 -64.47407 - -88.98735 95.08584 -63.04428 - -81.20893 99.38359 -61.59726 - -73.08457 103.73401 -60.13461 - -64.61008 108.13708 -58.65789 - -55.78124 112.59282 -57.16866 - -55.78123 112.59350 -57.16866 - -46.59377 117.10191 -55.66856 - -37.04352 121.66298 -54.15945 - -27.12629 126.27671 -52.64324 - -16.83785 130.94311 -51.12184 - -6.17398 135.66217 -49.59719 - -6.17397 135.66248 -49.59719 - -0.70060 137.99138 -48.83426 - 4.86417 140.23259 -48.07129 - 10.51684 142.38590 -47.30857 - 16.25387 144.45096 -46.54635 - 22.07173 146.42727 -45.78493 - 22.07077 146.43647 -45.78493 - 41.94839 151.40022 -43.25606 - 62.35581 154.37608 -40.74978 - 83.02482 155.31519 -38.27710 - 103.68012 154.16024 -35.84903 - 124.03845 150.85049 -33.47659 - 124.03714 150.87498 -33.47659 - 142.27858 123.12803 -31.17182 - 156.97102 97.62501 -28.94356 - 168.40758 74.27439 -26.79803 - 176.86887 52.97925 -24.74148 - 182.62220 33.63739 -22.78013 - 182.64039 33.34970 -22.78013 - 186.08712 18.20536 -20.91850 - 187.51523 3.51281 -19.15687 - 187.10055 -9.45436 -17.49508 - 185.06605 -20.80203 -15.93297 - 181.62064 -30.63535 -14.47039 - 181.61921 -30.63319 -14.47039 - 178.24683 -36.69356 -13.43812 - 174.30400 -42.04898 -12.45970 - 169.85914 -46.74124 -11.53382 - 164.97650 -50.81099 -10.65914 - 159.71637 -54.29778 -9.83432 - 159.71647 -54.28181 -9.83432 - 154.14114 -57.13733 -9.05789 - 148.30585 -59.48721 -8.32803 - 142.25937 -61.36707 -7.64292 - 136.04697 -62.81108 -7.00075 - 129.71059 -63.85196 -6.39970 - 129.71019 -63.83498 -6.39970 - 121.99390 -64.68744 -5.73004 - 114.20402 -65.06955 -5.11346 - 106.39410 -65.02936 -4.54655 - 98.61207 -64.61171 -4.02595 - 90.90072 -63.85824 -3.54826 - 90.90098 -63.84278 -3.54826 - 83.30409 -62.72605 -3.11007 - 75.85710 -61.34998 -2.70811 - 68.58917 -59.74688 -2.33923 - 61.52576 -57.94604 -2.00028 - 54.68898 -55.97381 -1.68808 - 54.69534 -56.04601 -1.68808 - 48.11565 -53.58538 -1.39954 - 41.84401 -50.89556 -1.13191 - 35.91340 -47.88850 -0.88263 - 30.36444 -44.53977 -0.64912 - 25.23644 -40.87656 -0.42882 - 25.23237 -40.86276 -0.42882 - 20.53902 -37.30706 -0.21926 - 16.29097 -33.44392 -0.01862 - 12.52083 -29.37203 0.17474 - 9.24596 -25.19321 0.36245 - 6.47822 -20.92040 0.54616 - 6.48080 -20.90259 0.54616 - 4.20145 -17.05832 0.72732 - 2.39354 -13.04556 0.90667 - 1.07723 -8.86492 1.08478 - 0.27267 -4.51654 1.26223 - -0.00001 -0.00008 1.43956 + -0.00427 0.03412 -76.05307 + 0.27197 5.57244 -75.77158 + 1.12658 11.60139 -75.49015 + 2.60552 18.02832 -75.20923 + 4.73050 24.40314 -74.92928 + 7.47249 30.36830 -74.65074 + 7.47674 30.40258 -74.65074 + 10.79818 35.95782 -74.37425 + 14.65463 41.10270 -74.10101 + 19.00523 45.84270 -73.83234 + 23.81032 50.19717 -73.56954 + 29.03225 54.17917 -73.31392 + 29.03247 54.17725 -73.31392 + 34.63373 57.78557 -73.06692 + 40.57709 61.01910 -72.83039 + 46.82503 63.87704 -72.60620 + 53.33996 66.35902 -72.39623 + 60.08430 68.46505 -72.20237 + 60.08639 31.75594 -72.20237 + 63.35164 33.48641 -72.02640 + 66.77118 34.84202 -71.86958 + 70.30758 35.82369 -71.73297 + 73.92405 36.44939 -71.61762 + 77.59248 36.92601 -71.52460 + 77.58740 -123.12788 -71.52460 + 61.21831 -122.37999 -71.43526 + 44.96034 -121.46116 -71.37879 + 28.83627 -120.37139 -71.34654 + 12.86890 -119.11068 -71.32985 + -2.91898 -117.67903 -71.32008 + -2.91818 -117.68599 -71.32008 + -18.50470 -116.08340 -71.30860 + -33.86615 -114.30987 -71.28716 + -48.97974 -112.36540 -71.24766 + -63.82266 -110.24999 -71.18198 + -78.37213 -107.96363 -71.08200 + -78.37761 -108.04704 -71.08200 + -92.62196 -105.58974 -70.93972 + -106.52728 -102.96151 -70.74766 + -120.07077 -100.16234 -70.49856 + -133.22963 -97.19222 -70.18515 + -145.98109 -94.05117 -69.80016 + -145.98108 -14.04139 -69.80016 + -147.63436 -10.72939 -69.33743 + -148.83465 -7.24646 -68.79536 + -149.55915 -3.59258 -68.17358 + -149.78508 0.23224 -67.47171 + -149.48963 4.22799 -66.68937 + -149.48937 4.23600 -66.68937 + -148.64868 8.40270 -65.82636 + -147.24105 12.74034 -64.88347 + -145.24366 17.24892 -63.86178 + -142.63374 21.92844 -62.76237 + -139.38848 26.77890 -61.58632 + -139.39071 26.75646 -61.58632 + -135.49032 31.77786 -60.33496 + -130.90902 36.97020 -59.01078 + -125.62401 42.33348 -57.61663 + -119.61249 47.86770 -56.15535 + -112.85169 53.57286 -54.62980 + -112.85100 53.58049 -54.62980 + -107.26905 58.07219 -53.44537 + -101.23382 62.64618 -52.22852 + -94.73707 67.30245 -50.98122 + -87.77058 72.04102 -49.70541 + -80.32613 76.86187 -48.40308 + -80.32611 76.86350 -48.40308 + -72.39529 81.76665 -47.07629 + -63.97004 86.75208 -45.72761 + -55.04213 91.81979 -44.35975 + -45.60334 96.96980 -42.97539 + -35.64543 102.20210 -41.57725 + -35.64457 102.19657 -41.57725 + -25.17768 106.97697 -40.16817 + -14.28220 110.76654 -38.75149 + -3.05374 113.67484 -37.33059 + 8.43937 116.18132 -35.90884 + 20.18120 118.64814 -34.48963 + 20.18036 118.64210 -34.48963 + 32.17407 121.22927 -33.07641 + 44.42551 123.79547 -31.67291 + 56.93223 126.33363 -30.28290 + 69.69106 128.83644 -28.91017 + 82.69810 131.29662 -27.55848 + 82.69644 131.31175 -27.55848 + 98.69358 108.92150 -25.79660 + 111.81440 88.15640 -24.08780 + 122.27126 68.95074 -22.43777 + 130.26746 51.23433 -20.85219 + 135.99662 34.93243 -19.33674 + 135.99657 34.96436 -19.33674 + 139.72695 21.22920 -17.89569 + 141.71933 8.88106 -16.52973 + 142.15334 -2.15976 -15.23915 + 141.19797 -11.97266 -14.02422 + 139.01168 -20.63686 -12.88523 + 139.01200 -20.60768 -12.88523 + 135.81015 -27.23730 -11.82162 + 131.79577 -32.80834 -10.83096 + 127.10499 -37.39541 -9.91078 + 121.86420 -41.07038 -9.05858 + 116.19035 -43.90244 -8.27190 + 116.19042 -43.90160 -8.27190 + 111.73309 -45.18898 -7.72319 + 107.16337 -46.15403 -7.20823 + 102.51217 -46.82245 -6.72563 + 97.80794 -47.21886 -6.27398 + 93.07669 -47.36676 -5.85190 + 93.07677 -47.35757 -5.85190 + 88.34893 -47.16379 -5.45794 + 83.65076 -46.76743 -5.09067 + 79.00152 -46.18866 -4.74869 + 74.41847 -45.44658 -4.43060 + 69.91705 -44.55918 -4.13499 + 69.91686 -44.55021 -4.13499 + 64.64280 -43.32483 -3.80797 + 59.52461 -41.95686 -3.50907 + 54.57785 -40.47156 -3.23613 + 49.81520 -38.89217 -2.98702 + 45.24665 -37.23990 -2.75957 + 45.24680 -37.23229 -2.75957 + 40.88620 -35.43741 -2.55170 + 36.74315 -33.60933 -2.36162 + 32.82066 -31.76382 -2.18761 + 29.11996 -29.91504 -2.02796 + 25.64068 -28.07554 -1.88098 + 25.64254 -28.08699 -1.88098 + 22.37839 -26.31938 -1.74504 + 19.32587 -24.55237 -1.61882 + 16.48805 -22.72964 -1.50110 + 13.87406 -20.82426 -1.39064 + 11.49304 -18.84868 -1.28621 + 11.49238 -18.84920 -1.28621 + 9.33500 -17.09524 -1.18666 + 7.39223 -15.27353 -1.09116 + 5.67179 -13.39081 -0.99897 + 4.18066 -11.45246 -0.90934 + 2.92527 -9.46241 -0.82152 + 2.92535 -9.46126 -0.82152 + 1.89443 -7.70884 -0.73485 + 1.07806 -5.88568 -0.64899 + 0.48465 -3.99284 -0.56369 + 0.12254 -2.03093 -0.47870 + -0.00001 -0.00007 -0.39375 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6635,7 +6570,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6649,56 +6584,44 @@ Status character 66.16242 0.00000 66.16242 5.67393 202 100 P 72.29544 0.00000 72.29544 6.52502 202 100 P 78.42846 0.00000 78.42846 7.37612 202 100 P - 84.56148 0.00000 84.56148 8.22721 202 100 P - 83.64891 0.00000 90.69450 9.07830 110 92 - - 77.28688 0.00000 96.82753 9.92939 110 80 - - 77.28688 0.00000 96.82753 9.92939 110 80 - - 70.92070 0.00000 102.96055 10.78048 110 69 - - 64.54790 0.00000 109.09357 11.63157 110 59 - - 58.31814 0.00000 115.22659 12.48266 110 51 - - 52.42874 0.00000 121.35961 13.33375 110 43 - - 46.52456 0.00000 127.49263 14.18484 110 36 - - 46.52456 0.00000 127.49263 14.18484 110 36 - - 40.60403 0.00000 133.62566 15.03593 110 30 - - 34.67064 0.00000 139.75868 15.88702 110 25 - - 28.72927 0.00000 145.89170 16.73811 110 20 - - 22.78480 0.00000 152.02472 17.58920 110 15 - - 16.84210 0.00000 158.15774 18.44029 110 0 - - 16.84210 0.00000 158.15774 18.44029 110 0 - - 10.90570 0.00000 164.29076 19.29138 110 0 - - 4.97918 0.00000 170.42378 20.14247 110 0 - - 5.20054 0.00000 176.55681 20.99356 1 0 A + 82.24481 0.00000 84.56148 8.22721 110 97 - + 77.12557 0.00000 90.69450 9.07830 110 85 - + 72.00351 0.00000 96.82753 9.92939 110 74 - + 72.00351 0.00000 96.82753 9.92939 110 74 - + 66.87735 0.00000 102.96055 10.78048 110 65 - + 61.74468 0.00000 109.09357 11.63157 110 57 - + 56.75528 0.00000 115.22659 12.48266 110 49 - + 52.10656 0.00000 121.35961 13.33375 110 43 - + 47.44348 0.00000 127.49263 14.18484 110 37 - + 47.44348 0.00000 127.49263 14.18484 110 37 - + 42.76459 0.00000 133.62566 15.03593 110 32 - + 38.07348 0.00000 139.75868 15.88702 110 27 - + 33.37510 0.00000 145.89170 16.73811 110 23 - + 28.67442 0.00000 152.02472 17.58920 110 19 - + 23.97639 0.00000 158.15774 18.44029 110 15 - + 23.97639 0.00000 158.15774 18.44029 110 15 - + 19.28548 0.00000 164.29076 19.29138 110 0 - + 14.60477 0.00000 170.42378 20.14247 110 0 - + 9.93707 0.00000 176.55681 20.99356 110 0 - 5.70535 0.00000 182.68983 21.84465 1 0 A 6.21016 0.00000 188.82285 22.69574 1 0 A 6.21016 0.00000 188.82285 22.69574 1 0 A - 6.25055 0.20000 189.31349 22.76383 1 0 A - 6.29093 0.40000 189.80413 22.83191 1 0 A - 6.33132 0.60000 190.29477 22.90000 1 0 A - 6.37170 0.80000 190.78542 22.96809 1 0 A - 6.41209 1.00000 191.27606 23.03618 1 0 A - 6.41209 1.00000 191.27606 23.03618 1 0 A - 6.53324 1.60000 192.74798 23.24044 1 0 A - 6.65440 2.20000 194.21991 23.44470 1 0 A - 6.77556 2.80000 195.69183 23.64896 1 0 A - 6.89671 3.40000 197.16376 23.85322 1 0 A + 6.47940 1.33333 192.09379 23.14965 1 0 A + 6.74863 2.66667 195.36474 23.60357 1 0 A 7.01787 4.00000 198.63568 24.05748 1 0 A - 7.01787 4.00000 198.63568 24.05748 1 0 A - 7.23325 5.06667 201.25244 24.42062 1 0 A - 7.44864 6.13333 203.86919 24.78375 1 0 A - 7.66403 7.20000 206.48595 25.14688 1 0 A - 7.87941 8.26667 209.10271 25.51001 1 0 A - 8.09480 9.33333 211.71946 25.87314 1 0 A + 7.28710 5.33333 201.90663 24.51140 1 0 A + 7.55633 6.66667 205.17757 24.96531 1 0 A + 7.55633 6.66667 205.17757 24.96531 1 0 A + 7.82557 8.00000 208.44852 25.41923 1 0 A 8.09480 9.33333 211.71946 25.87314 1 0 A - 8.31019 10.40000 214.33622 26.23627 1 0 A - 8.52558 11.46667 216.95297 26.59941 1 0 A - 8.74096 12.53333 219.56973 26.96254 1 0 A - 8.95635 13.60000 222.18649 27.32567 1 0 A + 8.36404 10.66667 214.99041 26.32706 1 0 A + 8.63327 12.00000 218.26135 26.78097 1 0 A + 8.90250 13.33333 221.53230 27.23489 1 0 A + 8.90250 13.33333 221.53230 27.23489 1 0 A 9.17174 14.66667 224.80324 27.68880 1 0 A - 9.17174 14.66667 224.80324 27.68880 1 0 A - 9.38712 15.73333 227.42000 28.05193 1 0 A - 9.60251 16.80000 230.03675 28.41507 1 0 A - 9.81790 17.86667 232.65351 28.77820 1 0 A - 10.03329 18.93333 235.27026 29.14133 1 0 A + 9.44097 16.00000 228.07419 28.14272 1 0 A + 9.71021 17.33333 231.34513 28.59663 1 0 A + 9.97944 18.66667 234.61608 29.05055 1 0 A 10.24867 20.00000 237.88702 29.50446 1 0 A 10.24867 20.00000 237.88702 29.50446 1 0 A 10.51791 21.33333 241.15797 29.95838 1 0 A @@ -6731,22 +6654,16 @@ Status character 15.88939 49.00000 312.52258 32.77589 1 0 A 15.91799 50.00000 312.98752 32.82639 1 0 A 15.91799 50.00000 312.98752 32.82639 1 0 A - 15.94087 50.80000 313.35946 32.86679 1 0 A - 15.96375 51.60000 313.73141 32.90719 1 0 A - 15.98664 52.40000 314.10335 32.94760 1 0 A - 16.00952 53.20000 314.47530 32.98800 1 0 A - 16.03240 54.00000 314.84725 33.02840 1 0 A + 15.94659 51.00000 313.45245 32.87689 1 0 A + 15.97519 52.00000 313.91738 32.92739 1 0 A + 16.00380 53.00000 314.38231 32.97790 1 0 A 16.03240 54.00000 314.84725 33.02840 1 0 A - 16.05528 54.80000 315.21919 33.06880 1 0 A - 16.07817 55.60000 315.59114 33.10920 1 0 A - 16.10105 56.40000 315.96309 33.14960 1 0 A - 16.12393 57.20000 316.33503 33.19001 1 0 A - 16.14681 58.00000 316.70698 33.23041 1 0 A + 16.06100 55.00000 315.31218 33.07890 1 0 A + 16.06100 55.00000 315.31218 33.07890 1 0 A + 16.08961 56.00000 315.77711 33.12940 1 0 A + 16.11821 57.00000 316.24205 33.17990 1 0 A 16.14681 58.00000 316.70698 33.23041 1 0 A - 16.15826 58.40000 316.89295 33.25061 1 0 A - 16.16970 58.80000 317.07892 33.27081 1 0 A - 16.18114 59.20000 317.26490 33.29101 1 0 A - 16.19258 59.60000 317.45087 33.31121 1 0 A + 16.17542 59.00000 317.17191 33.28091 1 0 A 16.20402 60.00000 317.63684 33.33141 1 0 A 13.18724 60.00000 945.94913 26.36368 1 0 A 13.42701 61.33333 963.14821 26.84302 1 0 A @@ -6791,23 +6708,23 @@ Status character 16.04987 100.80000 1288.31997 32.28897 1 0 A 16.21862 102.00000 1301.86539 32.62846 1 0 A 16.21862 102.00000 1301.86539 32.62846 1 0 A - 18.97254 103.20000 1315.41081 32.96794 110 0 - - 21.98831 104.40000 1328.95623 33.30743 110 0 - - 24.82063 105.60000 1342.50165 33.64692 110 0 - - 27.49519 106.80000 1356.04707 33.98640 110 0 - - 30.03771 108.00000 1369.59249 34.32589 110 0 - - 30.03771 108.00000 1369.59249 34.32589 110 0 - - 32.47275 109.20000 1383.13791 34.66538 110 0 - - 34.81863 110.40000 1396.68333 35.00486 110 0 - - 37.09172 111.60000 1410.22875 35.34435 110 3 - - 39.30838 112.80000 1423.77417 35.68384 110 3 - - 41.48496 114.00000 1437.31959 36.02332 110 3 - - 41.48496 114.00000 1437.31959 36.02332 110 3 - - 43.63602 115.20000 1450.86501 36.36281 110 3 - - 45.76902 116.40000 1464.41043 36.70230 110 3 - - 47.88963 117.60000 1477.95585 37.04178 110 3 - - 50.00352 118.80000 1491.50127 37.38127 110 3 - - 52.11638 120.00000 1505.04669 37.72076 110 3 - + 16.38737 103.20000 1315.41081 32.96794 1 0 A + 17.11923 104.40000 1328.95623 33.30743 110 0 - + 18.63593 105.60000 1342.50165 33.64692 110 0 - + 20.08000 106.80000 1356.04707 33.98640 110 0 - + 21.46377 108.00000 1369.59249 34.32589 110 0 - + 21.46377 108.00000 1369.59249 34.32589 110 0 - + 22.79876 109.20000 1383.13791 34.66538 110 0 - + 24.09322 110.40000 1396.68333 35.00486 110 0 - + 25.35462 111.60000 1410.22875 35.34435 110 0 - + 26.59044 112.80000 1423.77417 35.68384 110 0 - + 27.80814 114.00000 1437.31959 36.02332 110 0 - + 27.80814 114.00000 1437.31959 36.02332 110 0 - + 29.01434 115.20000 1450.86501 36.36281 110 0 - + 30.21239 116.40000 1464.41043 36.70230 110 0 - + 31.40486 117.60000 1477.95585 37.04178 110 0 - + 32.59430 118.80000 1491.50127 37.38127 110 0 - + 33.78328 120.00000 1505.04669 37.72076 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6820,10 +6737,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 130.552 'Clay' + 0.00 132.956 'Clay' -6.00 31.836 'Peat' -8.00 47.654 'Sand 1' - -11.00 82.045 'Sand 2' + -11.00 62.677 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6838,7 +6755,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -6892,7 +6809,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -6901,24 +6818,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.13800 30.62300 1.57659 0.00767 - -8.66667 66.57200 30.42700 47.07497 1.02891 - -9.33333 81.80000 30.42100 443.94369 3.55979 - -10.00000 79.59700 45.38500 633.33300 7.98275 - -10.50000 78.55400 42.78700 777.69501 14.59403 - -11.00000 77.93000 41.04700 894.61050 21.62858 - -11.60000 76.46600 39.38300 1086.95125 29.00795 - -12.20000 78.74300 38.26100 1312.15919 36.42343 - -12.80000 78.61500 37.47800 1375.70316 43.62891 - -13.40000 78.58800 36.92500 1389.88002 50.49736 - -14.00000 78.65600 35.04100 1354.79351 56.06658 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 71.51700 0.00000 16.82163 0.00000 + -8.00000 63.43600 0.00000 58.96202 0.00000 + -8.66667 79.28500 29.49600 414.70577 1.10127 + -9.33333 79.78200 48.12400 604.67418 7.87984 + -10.00000 78.22300 44.85300 825.68840 20.31608 + -10.50000 77.44400 40.70900 997.22966 29.15551 + -11.00000 76.95000 39.42200 1143.36805 37.43351 + -11.60000 75.85600 38.07700 1386.27747 45.78603 + -12.20000 77.88700 37.13800 1686.41604 54.04010 + -12.80000 77.75400 36.46300 1807.57450 62.01511 + -13.40000 77.68300 35.97100 1880.15048 69.61230 + -14.00000 77.66000 34.37700 1904.32504 76.22939 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -6929,23 +6847,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00149 7.88293 0.03837 2.54091 0.03831 7.87117 - -8.33333 7.87484 68.24758 1.53185 1.67627 0.19452 8.66654 - -9.00000 20.73705 595.30308 3.79633 1.21441 0.18307 28.70722 - -9.66667 34.59108 284.08396 6.63445 0.90078 0.19180 8.21264 - -10.25000 39.67169 288.72402 13.22256 0.77940 0.33330 7.27783 - -10.75000 35.68543 233.83099 14.06910 0.75037 0.39425 6.55256 - -11.30000 30.87123 320.56791 12.29894 0.65549 0.39839 10.38403 - -11.90000 25.15684 375.34657 12.35914 0.63053 0.49128 14.92026 - -12.50000 19.05875 23.68574 12.00912 0.63011 0.63011 1.24277 - -13.10000 12.67808 23.68574 11.44742 0.90293 0.90293 1.86824 - -13.70000 6.09850 23.68574 9.28204 1.52202 1.52202 3.88386 + -7.25000 2.52296 33.64326 0.00000 2.49385 0.00000 13.33485 + -7.75000 8.03375 84.28078 0.00000 2.13017 0.00000 10.49083 + -8.33333 17.86675 533.61562 1.65191 1.37350 0.09246 29.86641 + -9.00000 31.77814 284.95262 10.16785 0.93304 0.31996 8.96694 + -9.66667 45.45622 331.52132 18.65437 0.70724 0.41038 7.29320 + -10.25000 49.91403 343.08253 17.67886 0.61948 0.35419 6.87347 + -10.75000 45.34373 292.27679 16.55598 0.58888 0.36512 6.44580 + -11.30000 39.96152 404.84902 13.92088 0.49437 0.34836 10.13097 + -11.90000 33.75871 500.23096 13.75678 0.46883 0.40750 14.81783 + -12.50000 27.30345 201.93076 13.29168 0.48681 0.48681 7.39580 + -13.10000 20.67267 120.95997 12.66198 0.61250 0.61250 5.85120 + -13.70000 13.92405 40.29093 11.02848 0.79205 0.79205 2.89362 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=162 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -7028,96 +6947,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14922 0.00000 3.14922 1.01661 202 100 P - 6.30296 0.00000 6.30296 2.03467 202 100 P - 9.46569 0.00000 9.46569 3.05564 202 100 P - 12.64179 0.00000 12.64179 4.08093 202 100 P - 15.83551 0.00000 15.83551 5.11190 202 100 P - 17.43567 0.00000 17.43567 3.37239 202 100 P - 37.44169 0.00000 37.44169 7.24194 202 100 P - 57.85464 0.00000 57.85464 11.19020 202 100 P - 78.77708 0.00000 78.77708 15.23700 202 100 P - 100.26443 0.00000 100.26443 19.39307 202 100 P - 122.32587 0.00000 122.32587 23.66018 202 100 P - 351.90709 0.00000 405.19484 17.14114 110 87 - - 332.02692 0.00000 480.07187 20.30870 110 69 - - 312.97947 0.00000 556.54753 23.54388 110 56 - - 294.81574 0.00000 634.35498 26.83540 110 46 - - 277.58539 0.00000 713.19472 30.17060 110 39 - - 261.33781 0.00000 792.76138 33.53654 110 33 - - 226.79523 0.00000 226.79523 24.87554 202 100 P - 236.57087 0.00000 249.68245 27.38587 110 95 - - 221.47025 0.00000 272.61857 29.90157 110 81 - - 207.36615 0.00000 295.53765 32.41540 110 70 - - 194.25095 0.00000 318.38427 34.92128 110 61 - - 182.11817 0.00000 341.11340 37.41427 110 53 - - 177.07658 0.00000 302.28625 32.37269 110 59 - - 166.17995 3.00000 296.92736 31.79879 110 56 - - 155.81266 6.00000 291.48186 31.21561 110 53 - - 145.96053 9.00000 285.94166 30.62230 110 51 - - 136.60958 12.00000 280.30063 30.01818 110 49 - - 127.74604 15.00000 274.55439 29.40280 110 47 - - 126.65083 15.00000 247.19369 28.30759 110 51 - - 118.28289 18.00000 241.92276 27.70399 110 49 - - 110.36938 21.00000 236.55306 27.08907 110 47 - - 102.89204 24.00000 231.08412 26.46279 110 45 - - 95.83274 27.00000 225.51633 25.82519 110 42 - - 89.17340 30.00000 219.85075 25.17639 110 41 - - 85.99004 30.00000 348.40376 21.99303 110 25 - - 78.60066 33.60000 337.42877 21.30023 110 23 - - 71.72851 37.20000 326.24017 20.59395 110 22 - - 65.34017 40.80000 314.84492 19.87462 110 21 - - 59.40226 44.40000 303.25082 19.14274 110 20 - - 53.88147 48.00000 291.46625 18.39884 110 18 - - 53.18087 48.00000 418.79224 17.69824 110 13 - - 48.07234 51.60000 401.59851 16.97163 110 12 - - 43.31566 55.20000 384.15657 16.23453 110 11 - - 38.87982 58.80000 366.47937 15.48749 110 11 - - 34.73381 62.40000 348.57984 14.73105 110 10 - - 30.84660 66.00000 330.47071 13.96576 110 9 - - 27.52637 66.00000 27.52637 13.95639 202 100 P - 26.00156 69.60000 26.00156 13.18329 202 100 P - 23.72148 73.20000 24.46133 12.40236 110 97 - - 20.44040 76.80000 22.90665 11.61411 110 89 - - 17.31022 80.40000 21.33847 10.81901 110 81 - - 14.30570 84.00000 19.75768 10.01752 110 72 - - 18.64299 84.00000 29.70139 14.35481 110 63 - - 15.39038 87.60000 27.30732 13.19775 110 56 - - 12.21897 91.20000 24.89680 12.03273 110 49 - - 10.86032 94.80000 22.47098 10.86032 1 48 A - 9.68105 98.40000 20.03096 9.68105 1 48 A - 8.49542 102.00000 17.57778 8.49542 1 48 A - 14.32026 102.00000 36.54216 14.32026 1 39 A - 12.31177 105.60000 31.41694 12.31177 1 39 A - 10.29410 109.20000 26.26828 10.29410 1 39 A - 8.26795 112.80000 21.09800 8.26795 1 39 A - 6.23399 116.40000 15.90777 6.23399 1 39 A - 4.19283 120.00000 10.69918 4.19283 1 39 A + 13.35478 0.00000 13.35478 2.49757 202 100 P + 26.82757 0.00000 26.82757 5.01721 202 100 P + 37.44409 0.00000 40.52900 7.57962 110 92 - + 38.92994 0.00000 54.55576 10.20286 110 71 - + 40.49317 0.00000 68.98547 12.90147 110 59 - + 38.61178 0.00000 54.27244 11.02008 110 71 - + 39.85950 0.00000 65.98524 13.39837 110 60 - + 41.19334 0.00000 78.08385 15.85501 110 53 - + 42.61780 0.00000 90.57561 18.39147 110 47 - + 44.13412 0.00000 103.45174 21.00599 110 43 - + 45.74080 0.00000 116.68991 23.69401 110 39 - + 290.86227 0.00000 332.20519 15.27745 110 88 - + 276.90240 0.00000 411.76893 18.93643 110 67 - + 263.53712 0.00000 492.71823 22.65912 110 53 - + 250.80891 0.00000 574.74151 26.43121 110 44 - + 238.75996 0.00000 657.52107 30.23808 110 36 - + 227.43315 0.00000 740.75369 34.06578 110 31 - + 216.50877 0.00000 222.40005 23.14140 110 97 - + 204.70408 0.00000 247.44278 25.74717 110 83 - + 193.64833 0.00000 272.46690 28.35101 110 71 - + 183.33806 0.00000 297.41189 30.94661 110 62 - + 173.77104 0.00000 322.22861 33.52887 110 54 - + 164.94611 0.00000 346.87851 36.09376 110 48 - + 156.21127 0.00000 282.13137 27.35892 110 55 - + 147.50388 0.00000 302.02092 29.28765 110 49 - + 139.50895 0.00000 321.73434 31.19931 110 43 - + 132.20058 0.00000 341.26049 33.09280 110 39 - + 125.55336 0.00000 360.59300 34.96752 110 35 - + 119.54225 0.00000 379.72938 36.82322 110 31 - + 114.97276 0.00000 357.87554 32.25373 110 32 - + 108.95921 3.00000 352.03507 31.72735 110 31 - + 103.27400 6.00000 346.09201 31.19173 110 30 - + 97.90328 9.00000 340.04808 30.64702 110 29 - + 92.83325 12.00000 333.90546 30.09341 110 28 - + 88.05013 15.00000 327.66672 29.53114 110 27 - + 86.59161 15.00000 307.27939 28.07263 110 28 - + 82.10952 18.00000 301.34138 27.53014 110 27 - + 77.88662 21.00000 295.31882 26.97992 110 26 - + 73.90917 24.00000 289.21477 26.42227 110 26 - + 70.16344 27.00000 283.03239 25.85745 110 25 - + 66.63571 30.00000 276.77489 25.28578 110 24 - + 62.57779 30.00000 435.01153 21.22785 110 14 - + 58.72441 33.60000 423.06085 20.64468 110 14 - + 55.14470 37.20000 410.95629 20.05400 110 13 - + 51.81758 40.80000 398.70653 19.45623 110 13 - + 48.72198 44.40000 386.32011 18.85179 110 13 - + 45.83682 48.00000 373.80531 18.24109 110 12 - + 44.89434 48.00000 546.73772 17.29861 110 8 - + 42.23094 51.60000 528.25721 16.71389 110 8 - + 39.74014 55.20000 509.61196 16.12396 110 8 - + 37.40522 58.80000 490.81281 15.52916 110 8 - + 35.20944 62.40000 471.87010 14.92982 110 7 - + 33.13606 66.00000 452.79369 14.32625 110 7 - + 33.68554 66.00000 225.99596 14.87573 110 15 - + 31.69529 69.60000 216.41258 14.24492 110 15 - + 29.79852 73.20000 206.77157 13.61032 110 14 - + 27.98319 76.80000 197.07709 12.97220 110 14 - + 26.23723 80.40000 187.33310 12.33082 110 14 - + 24.54855 84.00000 177.54331 11.68643 110 14 - + 27.56574 84.00000 140.46381 14.70363 110 20 - + 25.75598 87.60000 132.68512 13.88936 110 19 - + 23.98351 91.20000 124.87556 13.07186 110 19 - + 22.24112 94.80000 117.03756 12.25139 110 19 - + 20.52157 98.40000 109.17340 11.42817 110 19 - + 18.81763 102.00000 101.28522 10.60245 110 19 - + 21.92563 102.00000 50.08904 13.71044 110 44 - + 19.98815 105.60000 46.17717 12.63967 110 43 - + 18.05609 109.20000 42.25532 11.56618 110 43 - + 16.12712 112.80000 38.32436 10.49019 110 42 - + 14.19890 116.40000 34.38509 9.41193 110 41 - + 12.26907 120.00000 30.43825 8.33160 110 40 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7131,10 +7032,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 1.579 'Peat' - -8.00 390.982 'Sand 1' - -10.00 129.226 'Sand 1' - -11.00 92.220 'Sand 2' + -6.00 34.678 'Peat' + -8.00 389.065 'Sand 1' + -10.00 88.516 'Sand 1' + -11.00 96.985 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7234,16 +7135,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.06000 + -7.12000 + -7.18000 + -7.24000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.60000 - -7.70000 - -7.80000 - -7.90000 + -7.30000 + -7.44000 + -7.58000 + -7.72000 + -7.86000 -8.00000 -8.00000 -8.13333 @@ -7352,20 +7253,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 26.26 : Percentage mobilized resistance left - 10.15 : Percentage mobilized resistance right - 481.48 : Effective left - 481.48 : Effective right + 26.25 : Percentage mobilized resistance left + 10.23 : Percentage mobilized resistance right + 485.29 : Effective left + 485.27 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 1833.59 : Max effective resistance left + 1848.95 : Max effective resistance left 4745.94 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 148.12 : Vertical force left - 145.73 : Vertical force right + 149.22 : Vertical force left + 146.48 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -7382,162 +7283,162 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -29.54219 - 0.00000 0.00000 -29.22243 - 0.00000 0.00000 -28.90266 - 0.00000 0.00000 -28.58290 - 0.00000 0.00000 -28.26313 - 0.00000 0.00000 -27.94337 - 0.00000 0.00000 -27.94337 - 0.00000 0.00000 -27.62360 - 0.00000 0.00000 -27.30384 - 0.00000 0.00000 -26.98407 - 0.00000 0.00000 -26.66431 - 0.00000 0.00000 -26.34454 - 0.00000 0.00000 -26.34454 - 0.00000 0.00000 -26.02478 - 0.00000 0.00000 -25.70501 - 0.00000 0.00000 -25.38525 - 0.00000 0.00000 -25.06548 - 0.00000 0.00000 -24.74571 - 0.00034 -0.00230 -24.74571 - 0.00599 0.11645 -24.42595 - 0.02383 0.24128 -24.10618 - 0.05445 0.37222 -23.78642 - 0.10002 0.55552 -23.46668 - 0.17186 0.92778 -23.14697 - 0.17107 0.91942 -23.14697 - 0.18137 1.14108 -23.11500 - 0.19390 1.36321 -23.08303 - 0.20864 1.58582 -23.05106 - 0.22561 1.80890 -23.01909 - 0.24482 2.03245 -22.98712 - 0.24482 2.03245 -22.98712 - 0.31597 2.71188 -22.89122 - 0.40758 3.39559 -22.79533 - 0.51975 4.08360 -22.69944 - 0.65263 4.77589 -22.60357 - 0.80635 5.47247 -22.50771 - 0.80635 5.47247 -22.50771 - 1.56438 7.13894 -22.12445 - 2.51430 8.67061 -21.74173 - 3.63991 10.06693 -21.35994 - 4.92493 11.32731 -20.97947 - 6.35300 12.45104 -20.60071 - 6.35308 12.45063 -20.60071 - 7.78299 11.35828 -20.22415 - 9.07355 10.12800 -19.85032 - 10.20816 8.75903 -19.47959 - 11.17013 7.25054 -19.11236 - 11.94516 5.66374 -18.74902 - 11.94443 5.64988 -18.74902 - 12.52700 4.07420 -18.38991 - 12.92569 2.58473 -18.03517 - 13.15072 1.17964 -17.68487 - 13.21210 -0.14291 -17.33909 - 13.11965 -1.38473 -16.99792 - 13.11964 -1.38420 -16.99792 - 12.84568 -2.70922 -16.62428 - 12.40137 -3.93991 -16.25616 - 11.79913 -5.07862 -15.89331 - 11.05106 -6.12762 -15.53547 - 10.16899 -7.08903 -15.18239 - 10.16900 -7.08855 -15.18239 - 9.16209 -8.00104 -14.83374 - 8.03908 -8.83041 -14.48904 - 6.81093 -9.57838 -14.14774 - 5.48840 -10.24649 -13.80934 - 4.08202 -10.83613 -13.47330 - 4.08204 -10.83594 -13.47330 - 2.60026 -11.37802 -13.13906 - 1.05127 -11.84421 -12.80593 - -0.55486 -12.23531 -12.47323 - -2.20816 -12.55192 -12.14028 - -3.89874 -12.79441 -11.80638 - -3.89874 -12.79448 -11.80638 - -5.07807 -10.78452 -11.55487 - -6.05412 -8.72894 -11.30213 - -6.82234 -6.62782 -11.04798 - -7.37817 -4.48119 -10.79222 - -7.71706 -2.28904 -10.53468 - -7.71706 -2.28916 -10.53468 - -7.84073 -0.17661 -10.27520 - -7.75087 1.98132 -10.01382 - -7.44295 4.18469 -9.75062 - -6.91241 6.43357 -9.48567 - -6.15471 8.72801 -9.21905 - -6.15472 8.72791 -9.21905 - -5.17077 10.95856 -8.95087 - -3.96149 13.23466 -8.68143 - -2.52233 15.55618 -8.41109 - -0.84874 17.92306 -8.14019 - 1.06379 20.33519 -7.86908 - 1.06379 20.33521 -7.86908 - 3.21503 22.69711 -7.59815 - 5.60470 25.10370 -7.32800 - 8.23725 27.55464 -7.05925 - 11.11709 30.04950 -6.79256 - 14.24860 32.58777 -6.52854 - 14.24832 32.59021 -6.52854 - 18.25004 27.51099 -6.18211 - 21.60446 22.87894 -5.84354 - 24.37045 18.68256 -5.51403 - 26.60525 14.90874 -5.19477 - 28.36424 11.54279 -4.88698 - 28.36416 11.54939 -4.88698 - 29.68806 8.37260 -4.59161 - 30.61338 5.56775 -4.30901 - 31.18855 3.11747 -4.03942 - 31.45968 1.00407 -3.78312 - 31.47048 -0.79050 -3.54035 - 31.47048 -0.78308 -3.54035 - 31.25574 -2.38972 -3.31123 - 30.84570 -3.71545 -3.09555 - 30.27664 -4.77814 -2.89306 - 29.58244 -5.59536 -2.70352 - 28.79469 -6.18435 -2.52671 - 28.79498 -6.17938 -2.52671 - 28.14794 -6.74253 -2.40228 - 27.45012 -7.19613 -2.28465 - 26.71214 -7.54692 -2.17364 - 25.94395 -7.80149 -2.06909 - 25.15484 -7.96624 -1.97081 - 25.15485 -7.96371 -1.97081 - 24.34107 -8.29886 -1.87861 - 23.49759 -8.55861 -1.79230 - 22.63167 -8.74878 -1.71167 - 21.74997 -8.87496 -1.63650 - 20.85863 -8.94256 -1.56659 - 20.85862 -8.94006 -1.56659 - 19.76449 -9.28295 -1.48935 - 18.63354 -9.55512 -1.41898 - 17.47376 -9.76463 -1.35509 - 16.29223 -9.91903 -1.29728 - 15.09603 -10.00266 -1.24514 - 15.09546 -10.00875 -1.24514 - 13.89206 -10.02983 -1.19825 - 12.69242 -9.94800 -1.15620 - 11.50821 -9.77440 -1.11857 - 10.34983 -9.51919 -1.08495 - 9.22650 -9.19154 -1.05494 - 9.22658 -9.18830 -1.05494 - 8.14519 -8.82486 -1.02812 - 7.11088 -8.40468 -1.00414 - 6.13008 -7.93416 -0.98265 - 5.20847 -7.41892 -0.96331 - 4.35113 -6.86373 -0.94578 - 4.35119 -6.86217 -0.94578 - 3.56158 -6.29231 -0.92974 - 2.84234 -5.68993 -0.91493 - 2.19719 -5.05777 -0.90114 - 1.62958 -4.39799 -0.88814 - 1.14271 -3.71224 -0.87570 - 1.14274 -3.71180 -0.87570 - 0.73880 -3.01652 -0.86362 - 0.41973 -2.29728 -0.85180 - 0.18839 -1.55460 -0.84015 - 0.04755 -0.78880 -0.82860 - 0.00000 -0.00003 -0.81706 + 0.00000 0.00000 -22.55076 + 0.00000 0.00000 -22.34806 + 0.00000 0.00000 -22.14537 + 0.00000 0.00000 -21.94267 + 0.00000 0.00000 -21.73998 + 0.00000 0.00000 -21.53728 + 0.00000 0.00000 -21.53728 + 0.00000 0.00000 -21.33459 + 0.00000 0.00000 -21.13189 + 0.00000 0.00000 -20.92920 + 0.00000 0.00000 -20.72650 + 0.00000 0.00000 -20.52381 + 0.00021 -0.00146 -20.52381 + 0.00007 -0.00146 -20.32111 + -0.00008 -0.00146 -20.11842 + -0.00022 -0.00146 -19.91572 + 0.00346 0.11358 -19.71303 + 0.03082 0.47858 -19.51034 + 0.03033 0.47328 -19.51034 + 0.09020 0.76655 -19.30764 + 0.19211 1.31407 -19.10496 + 0.36152 2.11665 -18.90234 + 0.62396 3.17477 -18.69983 + 1.00500 4.48866 -18.49747 + 1.00500 4.48867 -18.49747 + 1.05099 4.71033 -18.47725 + 1.09921 4.93246 -18.45702 + 1.14964 5.15507 -18.43680 + 1.20231 5.37815 -18.41659 + 1.25721 5.60170 -18.39637 + 1.25721 5.60170 -18.39637 + 1.43544 6.28112 -18.33575 + 1.63412 6.96484 -18.27515 + 1.85337 7.65285 -18.21459 + 2.09333 8.34514 -18.15408 + 2.35412 9.04172 -18.09360 + 2.35448 9.03967 -18.09360 + 3.38573 8.12539 -17.85232 + 4.29918 7.07630 -17.61221 + 5.07863 5.89187 -17.37356 + 5.71070 4.64419 -17.13663 + 6.19466 3.43219 -16.90169 + 6.19382 3.42493 -16.90169 + 6.53580 2.28499 -16.66897 + 6.74464 1.20557 -16.43852 + 6.82751 0.18533 -16.21038 + 6.79143 -0.77710 -15.98458 + 6.64326 -1.68307 -15.76115 + 6.64326 -1.68284 -15.76115 + 6.38827 -2.55799 -15.54008 + 6.03148 -3.37981 -15.32123 + 5.57920 -4.14958 -15.10445 + 5.03761 -4.86853 -14.88959 + 4.41274 -5.53784 -14.67648 + 4.41274 -5.53768 -14.67648 + 3.62544 -6.26213 -14.44153 + 2.74541 -6.92871 -14.20813 + 1.78030 -7.53871 -13.97589 + 0.73756 -8.09323 -13.74438 + -0.37548 -8.59327 -13.51319 + -0.37547 -8.59329 -13.51319 + -1.55402 -9.07630 -13.28187 + -2.79348 -9.50687 -13.04989 + -4.08688 -9.88547 -12.81668 + -5.42731 -10.21243 -12.58170 + -6.80790 -10.48787 -12.34440 + -6.80789 -10.48819 -12.34440 + -8.22379 -10.74176 -12.10418 + -9.67007 -10.94390 -11.86043 + -11.13986 -11.09418 -11.61252 + -12.62619 -11.19196 -11.35981 + -14.12201 -11.23642 -11.10168 + -14.12203 -11.23683 -11.10168 + -15.14010 -9.11843 -10.90410 + -15.94448 -6.96285 -10.70286 + -16.53142 -4.76978 -10.49781 + -16.89717 -2.53886 -10.28882 + -17.03792 -0.26972 -10.07574 + -17.03792 -0.26999 -10.07574 + -16.95611 1.91261 -9.85847 + -16.65410 4.13402 -9.63710 + -16.12800 6.39464 -9.41176 + -15.37386 8.69487 -9.18256 + -14.38769 11.03511 -8.94965 + -14.38770 11.03496 -8.94965 + -13.68457 12.40521 -8.80818 + -12.89879 13.79001 -8.66553 + -12.02948 15.18943 -8.52176 + -11.07576 16.60354 -8.37696 + -10.03676 18.03239 -8.23118 + -10.03675 18.03225 -8.23118 + -7.28535 21.28686 -7.88766 + -4.07266 24.62212 -7.54067 + -0.38739 28.03816 -7.19195 + 3.78178 31.53473 -6.84326 + 8.44607 35.11124 -6.49635 + 8.44586 35.11300 -6.49635 + 12.78622 30.06356 -6.16965 + 16.48158 25.43654 -5.84847 + 19.58770 21.22346 -5.53413 + 22.15911 17.41408 -5.22801 + 24.24886 13.99635 -4.93143 + 24.24876 14.00196 -4.93143 + 25.89544 10.75961 -4.64551 + 27.13401 7.87769 -4.37073 + 28.01150 5.34090 -4.10746 + 28.57289 3.13347 -3.85611 + 28.86100 1.23911 -3.61705 + 28.86099 1.24591 -3.61705 + 28.90989 -0.46474 -3.39053 + 28.74942 -1.89726 -3.17644 + 28.41558 -3.06826 -2.97463 + 27.94212 -3.99416 -2.78497 + 27.36064 -4.69120 -2.60734 + 27.36091 -4.68650 -2.60734 + 26.85915 -5.32976 -2.48188 + 26.29865 -5.86228 -2.36291 + 25.69016 -6.29053 -2.25029 + 25.04381 -6.62082 -2.14387 + 24.36906 -6.85930 -2.04350 + 24.36907 -6.85685 -2.04350 + 23.66238 -7.26356 -1.94904 + 22.91895 -7.59252 -1.86030 + 22.14628 -7.84939 -1.77709 + 21.35130 -8.03965 -1.69922 + 20.54040 -8.16857 -1.62652 + 20.54033 -8.16582 -1.62652 + 19.53487 -8.57856 -1.54583 + 18.48447 -8.91640 -1.47194 + 17.39761 -9.18731 -1.40447 + 16.28189 -9.39880 -1.34305 + 15.14400 -9.55794 -1.28729 + 15.14392 -9.55414 -1.28729 + 13.98917 -9.67209 -1.23682 + 12.82708 -9.67855 -1.19121 + 11.67033 -9.58475 -1.15006 + 10.53034 -9.40097 -1.11299 + 9.41733 -9.13651 -1.07958 + 9.41740 -9.13322 -1.07958 + 8.33923 -8.82490 -1.04943 + 7.30201 -8.45195 -1.02219 + 6.31309 -8.02091 -0.99750 + 5.37909 -7.53755 -0.97502 + 4.50597 -7.00679 -0.95442 + 4.50603 -7.00519 -0.95442 + 3.69816 -6.45244 -0.93536 + 2.95903 -5.86001 -0.91759 + 2.29323 -5.23070 -0.90086 + 1.70505 -4.56678 -0.88496 + 1.19852 -3.86998 -0.86965 + 1.19855 -3.86951 -0.86965 + 0.77669 -3.15631 -0.85473 + 0.44227 -2.41232 -0.84007 + 0.19895 -1.63807 -0.82559 + 0.05033 -0.83393 -0.81121 + 0.00000 -0.00003 -0.79685 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7627,7 +7528,7 @@ Q max -6.00000 69.70900 44.41900 1192.97202 124.99349 -6.50000 69.39600 44.08800 1296.86281 146.35017 -7.00000 68.85700 43.80200 1406.49754 167.84776 - -7.50000 68.66300 43.55200 1522.57810 189.47933 + -7.30000 68.73700 43.64900 1476.07261 180.81099 -8.00000 68.49700 43.33200 1639.28098 211.23964 -8.66667 68.81500 42.53300 1860.81914 238.62046 -9.33333 68.73100 42.20300 2138.07178 266.96836 @@ -7669,8 +7570,8 @@ Lambda passive -5.66667 73.64077 193.24087 37.04033 0.77320 0.50299 2.62410 -6.25000 76.31918 207.78158 42.71335 0.70816 0.55967 2.72253 -6.75000 77.08040 219.26946 42.99518 0.69186 0.55780 2.84469 - -7.25000 77.76024 232.16112 43.26314 0.67775 0.55637 2.98560 - -7.75000 78.37190 233.40575 43.52062 0.66555 0.55531 2.97818 + -7.15000 77.63012 231.91689 43.21077 0.68041 0.55662 2.98746 + -7.65000 78.25446 233.15481 43.46950 0.66785 0.55549 2.97944 -8.33333 81.68087 332.30725 41.07122 0.57694 0.50283 4.06836 -9.00000 87.67230 415.87895 42.52186 0.56578 0.48501 4.74356 -9.66667 93.60009 444.70349 44.53016 0.55767 0.47575 4.75110 @@ -7713,14 +7614,14 @@ Status character 0.00000 0.00000 108.46209 34.97292 1 0 A 0.00000 0.00000 115.36705 37.19938 1 0 A 0.00000 0.00000 122.35320 39.45202 1 0 A - 0.00000 0.00000 129.40813 41.72684 1 0 A - 0.00000 0.00000 136.51931 44.01980 1 0 A - 1.15721 0.00000 191.48372 40.68445 1 0 A - 1.21786 0.00000 201.51972 42.81679 1 0 A - 1.27879 0.00000 211.60132 44.95883 1 0 A - 1.33990 0.00000 221.71356 47.10737 1 0 A - 2.32619 0.00000 231.84293 49.25955 110 0 - - 5.11888 0.00000 241.97739 51.41282 110 0 - + 2.30079 0.00000 129.40813 41.72684 110 0 - + 4.99913 0.00000 136.51931 44.01980 110 0 - + 1.66378 0.00000 191.48372 40.68445 110 0 - + 4.20152 0.00000 201.51972 42.81679 110 0 - + 6.74891 0.00000 211.60132 44.95883 110 0 - + 9.30269 0.00000 221.71356 47.10737 110 0 - + 11.85989 0.00000 231.84293 49.25955 110 0 - + 14.41787 0.00000 241.97739 51.41282 110 0 - 22.14229 0.00000 300.93848 49.00724 1 0 A 22.18965 0.10000 301.58220 49.11207 1 0 A 22.23701 0.20000 302.22584 49.21689 1 0 A @@ -7769,30 +7670,30 @@ Status character 37.26995 37.33333 194.43883 57.29181 1 0 A 37.72613 38.66667 196.81871 57.99305 1 0 A 38.17836 40.00000 199.17801 58.68822 1 0 A - 44.30680 40.00000 206.64938 53.75190 110 0 - - 44.62795 41.00000 207.11052 53.87185 110 0 - - 44.94721 42.00000 207.56059 53.98892 110 0 - - 45.26482 43.00000 207.99994 54.10320 110 0 - - 45.58101 44.00000 208.42895 54.21479 110 0 - - 45.89604 45.00000 208.84797 54.32378 110 0 - - 44.64565 45.00000 218.21827 53.07339 110 0 - - 44.95726 46.00000 218.64601 53.17742 110 0 - - 45.26802 47.00000 219.06401 53.27908 110 0 - - 45.57796 48.00000 219.47261 53.37846 110 0 - - 45.88708 49.00000 219.87213 53.47562 110 0 - - 46.19542 50.00000 220.26289 53.57066 110 0 - - 45.10238 50.00000 231.17400 52.47762 110 0 - - 45.40801 51.00000 231.57524 52.56870 110 0 - - 45.71269 52.00000 231.96790 52.65784 110 0 - - 46.01623 53.00000 232.35230 52.74510 110 0 - - 46.31839 54.00000 232.72872 52.83054 110 0 - - 46.61898 55.00000 233.09743 52.91424 110 0 - - 45.66673 55.00000 232.51810 51.96199 110 0 - - 45.96401 56.00000 232.87849 52.04253 110 0 - - 46.25907 57.00000 233.23173 52.12147 110 0 - - 46.55147 58.00000 233.57808 52.19887 110 0 - - 46.84074 59.00000 233.91778 52.27479 110 0 - - 47.12644 60.00000 234.25106 52.34927 110 0 - + 44.87056 40.00000 206.64938 53.75190 110 0 - + 45.14857 41.00000 207.11052 53.87185 110 0 - + 45.42663 42.00000 207.56059 53.98892 110 0 - + 45.70495 43.00000 207.99994 54.10320 110 0 - + 45.98373 44.00000 208.42895 54.21479 110 0 - + 46.26319 45.00000 208.84797 54.32378 110 0 - + 45.01279 45.00000 218.21827 53.07339 110 0 - + 45.29064 46.00000 218.64601 53.17742 110 0 - + 45.56940 47.00000 219.06401 53.27908 110 0 - + 45.84905 48.00000 219.47261 53.37846 110 0 - + 46.12958 49.00000 219.87213 53.47562 110 0 - + 46.41094 50.00000 220.26289 53.57066 110 0 - + 45.52399 50.00000 231.31790 52.68371 110 0 - + 45.69226 50.60000 231.55984 52.73881 110 0 - + 45.86077 51.20000 231.79864 52.79320 110 0 - + 46.02948 51.80000 232.03438 52.84689 110 0 - + 46.19833 52.40000 232.26713 52.89990 110 0 - + 46.36729 53.00000 232.49693 52.95224 110 0 - + 45.38975 53.00000 231.87310 51.97469 110 0 - + 45.78196 54.40000 232.39683 52.09209 110 0 - + 46.17362 55.80000 232.90571 52.20616 110 0 - + 46.56349 57.20000 233.40047 52.31706 110 0 - + 46.95034 58.60000 233.88181 52.42495 110 0 - + 47.33291 60.00000 234.35039 52.52998 110 0 - 39.55011 60.00000 319.99994 45.37940 1 0 A 40.15987 61.33333 324.93350 46.07903 1 0 A 40.76786 62.66667 329.85276 46.77664 1 0 A @@ -7828,31 +7729,31 @@ Status character 38.30034 92.40000 566.83982 50.76683 1 0 A 38.67355 93.60000 572.36330 51.26152 1 0 A 39.04650 94.80000 577.88281 51.75586 1 0 A - 39.79849 96.00000 583.39858 52.24985 110 0 - - 39.49112 96.00000 567.48560 51.94249 110 0 - - 40.45076 97.20000 572.84750 52.43327 110 0 - - 41.36177 98.40000 578.20616 52.92375 110 0 - - 42.22827 99.60000 583.56180 53.41396 110 0 - - 43.05437 100.80000 588.91459 53.90391 110 0 - - 43.84419 102.00000 594.26471 54.39361 110 0 - - 43.60800 102.00000 601.65209 54.15741 110 0 - - 44.36352 103.20000 607.06620 54.64476 110 0 - - 45.09051 104.40000 612.47794 55.13189 110 0 - - 45.79237 105.60000 617.88747 55.61883 110 0 - - 46.47252 106.80000 623.29496 56.10558 110 0 - - 47.13438 108.00000 628.70055 56.59216 110 0 - - 46.95762 108.00000 630.70670 56.41540 110 0 - - 47.60294 109.20000 636.12776 56.90030 110 0 - - 48.23575 110.40000 641.54720 57.38506 110 0 - - 48.85830 111.60000 646.96513 57.86968 110 0 - - 49.47282 112.80000 652.38168 58.35418 110 0 - - 50.08158 114.00000 657.79697 58.83856 110 0 - - 49.95441 114.00000 659.76385 58.71139 110 0 - - 50.55840 115.20000 665.19419 59.19463 110 0 - - 51.15976 116.40000 670.62348 59.67777 110 0 - - 51.75929 117.60000 676.05183 60.16083 110 0 - - 52.35781 118.80000 681.47935 60.64382 110 0 - - 52.95611 120.00000 686.90613 61.12674 110 0 - + 39.41919 96.00000 583.39858 52.24985 1 0 A + 39.06956 96.00000 567.48560 51.94249 110 0 - + 40.06511 97.20000 572.84750 52.43327 110 0 - + 41.01170 98.40000 578.20616 52.92375 110 0 - + 41.91334 99.60000 583.56180 53.41396 110 0 - + 42.77405 100.80000 588.91459 53.90391 110 0 - + 43.59785 102.00000 594.26471 54.39361 110 0 - + 43.36165 102.00000 601.65209 54.15741 110 0 - + 44.15045 103.20000 607.06620 54.64476 110 0 - + 44.91004 104.40000 612.47794 55.13189 110 0 - + 45.64386 105.60000 617.88747 55.61883 110 0 - + 46.35534 106.80000 623.29496 56.10558 110 0 - + 47.04794 108.00000 628.70055 56.59216 110 0 - + 46.87117 108.00000 630.70670 56.41540 110 0 - + 47.54668 109.20000 636.12776 56.90030 110 0 - + 48.20920 110.40000 641.54720 57.38506 110 0 - + 48.86105 111.60000 646.96513 57.86968 110 0 - + 49.50455 112.80000 652.38168 58.35418 110 0 - + 50.14202 114.00000 657.79697 58.83856 110 0 - + 50.01485 114.00000 659.76385 58.71139 110 0 - + 50.64736 115.20000 665.19419 59.19463 110 0 - + 51.27711 116.40000 670.62348 59.67777 110 0 - + 51.90494 117.60000 676.05183 60.16083 110 0 - + 52.53171 118.80000 681.47935 60.64382 110 0 - + 53.15825 120.00000 686.90613 61.12674 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7865,10 +7766,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 125.245 'Clay' - -6.00 91.396 'Peat' + 0.00 128.810 'Clay' + -6.00 91.878 'Peat' -8.00 129.421 'Sand 1' - -11.00 135.415 'Sand 2' + -11.00 135.165 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7982,126 +7883,126 @@ Status character 0.00000 1.40000 0.00000 0.00000 -1 0 - 0.00000 1.70000 0.00000 0.00000 -1 0 - 0.00000 2.00000 0.00000 0.00000 -1 0 - - 9.21699 2.00000 9.21699 0.00000 202 100 P - 10.91605 3.20000 10.91605 0.50864 202 100 P - 12.61510 4.40000 12.61510 1.01727 202 100 P - 14.31416 5.60000 14.31416 1.52591 202 100 P - 16.01322 6.80000 16.01322 2.03454 202 100 P - 17.71228 8.00000 17.71228 2.54318 202 100 P - 35.12214 8.00000 35.12214 2.54318 202 100 P - 36.82120 9.20000 36.82120 3.05182 202 100 P - 38.52026 10.40000 38.52026 3.56045 202 100 P - 40.21932 11.60000 40.21932 4.06909 202 100 P - 41.91837 12.80000 41.91837 4.57773 202 100 P - 42.58440 14.00000 43.61743 5.08636 110 98 - - 42.58440 14.00000 47.71387 5.08636 110 89 - - 42.37482 15.20000 49.41293 5.59500 110 86 - - 42.17397 16.40000 51.11198 6.10363 110 83 - - 41.98201 17.60000 52.81104 6.61227 110 79 - - 41.79909 18.80000 54.51010 7.12091 110 77 - - 41.62539 20.00000 56.20916 7.62954 110 74 - - 41.62539 20.00000 56.20916 7.62954 110 74 - - 41.44325 21.33333 58.09700 8.19469 110 71 - - 41.27217 22.66667 59.98484 8.75984 110 69 - - 41.11162 24.00000 61.87268 9.32500 110 66 - - 40.96109 25.33333 63.76052 9.89015 110 64 - - 40.82008 26.66667 65.64836 10.45530 110 62 - - 40.82008 26.66667 65.64836 10.45530 110 62 - - 40.68794 28.00000 67.53621 11.02045 110 60 - - 40.56368 29.33333 69.42405 11.58560 110 58 - - 40.44624 30.66667 71.31189 12.15075 110 57 - - 40.33459 32.00000 73.19973 12.71590 110 55 - - 40.22766 33.33333 75.08757 13.28106 110 54 - - 40.22766 33.33333 75.08757 13.28106 110 54 - - 40.12432 34.66667 76.97541 13.84621 110 52 - - 40.02322 36.00000 78.86326 14.41136 110 51 - - 39.92297 37.33333 80.75110 14.97651 110 49 - - 39.82222 38.66667 82.63894 15.54166 110 48 - - 39.71957 40.00000 84.52678 16.10681 110 47 - - 24.43549 40.00000 72.74250 14.99039 110 34 - - 24.30003 41.00000 73.00473 15.05614 110 33 - - 24.16359 42.00000 73.26695 15.12188 110 33 - - 24.02601 43.00000 73.52918 15.18763 110 33 - - 23.88715 44.00000 73.79141 15.25338 110 32 - - 23.74687 45.00000 74.05364 15.31913 110 32 - - 23.74687 45.00000 74.05364 15.31913 110 32 - - 23.60503 46.00000 74.31586 15.38487 110 32 - - 23.46168 47.00000 74.57809 15.45062 110 31 - - 23.31687 48.00000 74.84032 15.51637 110 31 - - 23.17065 49.00000 75.10254 15.58212 110 31 - - 23.02310 50.00000 75.36477 15.64786 110 31 - - 23.02310 50.00000 75.36477 15.64786 110 31 - - 22.87430 51.00000 75.62700 15.71361 110 30 - - 22.72450 52.00000 75.88922 15.77936 110 30 - - 22.57397 53.00000 76.15145 15.84510 110 30 - - 22.42300 54.00000 76.41368 15.91085 110 29 - - 22.27186 55.00000 76.67591 15.97660 110 29 - - 22.27186 55.00000 76.67591 15.97660 110 29 - - 22.12087 56.00000 76.93813 16.04235 110 29 - - 21.97049 57.00000 77.20036 16.10809 110 28 - - 21.82124 58.00000 77.46259 16.17384 110 28 - - 21.67363 59.00000 77.72481 16.23959 110 28 - - 21.52817 60.00000 77.98704 16.30534 110 28 - - 79.34116 60.00000 110.72574 14.05576 110 72 - - 76.55703 61.33333 116.08344 14.73588 110 66 - - 73.85144 62.66667 121.44114 15.41600 110 61 - - 71.23641 64.00000 126.79883 16.09612 110 56 - - 68.72397 65.33333 132.15653 16.77623 110 52 - - 66.32615 66.66667 137.51423 17.45635 110 48 - - 66.32615 66.66667 137.51423 17.45635 110 48 - - 64.05260 68.00000 142.87192 18.13647 110 45 - - 61.90667 69.33333 148.22962 18.81659 110 42 - - 59.89094 70.66667 153.58732 19.49670 110 39 - - 58.00801 72.00000 158.94502 20.17682 110 36 - - 56.26046 73.33333 164.30271 20.85694 110 34 - - 56.26046 73.33333 164.30271 20.85694 110 34 - - 54.64940 74.66667 169.66041 21.53706 110 32 - - 53.17265 76.00000 175.01811 22.21718 110 30 - - 51.82785 77.33333 180.37580 22.89729 110 29 - - 50.61264 78.66667 185.73350 23.57741 110 27 - - 49.52466 80.00000 191.09120 24.25753 110 26 - - 49.52466 80.00000 191.09120 24.25753 110 26 - - 48.79040 81.00000 195.10947 24.76762 110 25 - - 48.12418 82.00000 199.12774 25.27770 110 24 - - 47.52423 83.00000 203.14602 25.78779 110 23 - - 46.98877 84.00000 207.16429 26.29788 110 23 - - 46.51604 85.00000 211.18256 26.80797 110 22 - - 46.51604 85.00000 211.18256 26.80797 110 22 - - 46.10420 86.00000 215.20084 27.31806 110 21 - - 45.75119 87.00000 219.21911 27.82815 110 21 - - 45.45494 88.00000 223.23738 28.33823 110 20 - - 45.21335 89.00000 227.25565 28.84832 110 20 - - 45.02435 90.00000 231.27393 29.35841 110 19 - - 40.72237 90.00000 255.49563 25.05643 110 16 - - 40.47233 91.20000 260.82257 25.57885 110 16 - - 40.29108 92.40000 266.14950 26.10126 110 15 - - 40.17460 93.60000 271.47644 26.62367 110 15 - - 40.11887 94.80000 276.80337 27.14608 110 14 - - 40.11986 96.00000 282.13031 27.66849 110 14 - - 40.11986 96.00000 282.13031 27.66849 110 14 - - 40.17341 97.20000 287.45725 28.19091 110 14 - - 40.27530 98.40000 292.78418 28.71332 110 14 - - 40.42142 99.60000 298.11112 29.23573 110 14 - - 40.60768 100.80000 303.43805 29.75814 110 13 - - 40.82997 102.00000 308.76499 30.28055 110 13 - - 40.82997 102.00000 308.76499 30.28055 110 13 - - 41.08420 103.20000 314.09193 30.80297 110 13 - - 41.36677 104.40000 319.41886 31.32538 110 13 - - 41.67425 105.60000 324.74580 31.84779 110 13 - - 42.00326 106.80000 330.07273 32.37020 110 13 - - 42.35039 108.00000 335.39967 32.89261 110 13 - - 42.35039 108.00000 335.39967 32.89261 110 13 - - 42.71238 109.20000 340.72661 33.41503 110 13 - - 43.08674 110.40000 346.05354 33.93744 110 12 - - 43.47123 111.60000 351.38048 34.45985 110 12 - - 43.86362 112.80000 356.70741 34.98226 110 12 - - 44.26166 114.00000 362.03435 35.50468 110 12 - - 44.26166 114.00000 362.03435 35.50468 110 12 - - 44.66331 115.20000 367.36129 36.02709 110 12 - - 45.06751 116.40000 372.68822 36.54950 110 12 - - 45.47345 117.60000 378.01516 37.07191 110 12 - - 45.88034 118.80000 383.34209 37.59432 110 12 - - 46.28737 120.00000 388.66903 38.11674 110 12 - + 30.72330 2.00000 30.72330 0.00000 202 100 P + 32.42235 3.20000 32.42235 0.50864 202 100 P + 34.12141 4.40000 34.12141 1.01727 202 100 P + 35.82047 5.60000 35.82047 1.52591 202 100 P + 36.30781 6.80000 37.51952 2.03454 110 97 - + 36.34657 8.00000 39.21858 2.54318 110 93 - + 36.34657 8.00000 39.21858 2.54318 110 93 - + 36.38976 9.20000 40.91764 3.05182 110 89 - + 36.43750 10.40000 42.61670 3.56045 110 86 - + 36.48986 11.60000 44.31575 4.06909 110 82 - + 36.54689 12.80000 46.01481 4.57773 110 79 - + 36.60866 14.00000 47.71387 5.08636 110 77 - + 36.60866 14.00000 47.71387 5.08636 110 77 - + 36.67515 15.20000 49.41293 5.59500 110 74 - + 36.74609 16.40000 51.11198 6.10363 110 72 - + 36.82117 17.60000 52.81104 6.61227 110 70 - + 36.90008 18.80000 54.51010 7.12091 110 68 - + 36.98250 20.00000 56.20916 7.62954 110 66 - + 36.98250 20.00000 56.20916 7.62954 110 66 - + 37.07774 21.33333 58.09700 8.19469 110 64 - + 37.17611 22.66667 59.98484 8.75984 110 62 - + 37.27677 24.00000 61.87268 9.32500 110 60 - + 37.37890 25.33333 63.76052 9.89015 110 59 - + 37.48167 26.66667 65.64836 10.45530 110 57 - + 37.48167 26.66667 65.64836 10.45530 110 57 - + 37.58419 28.00000 67.53621 11.02045 110 56 - + 37.68538 29.33333 69.42405 11.58560 110 54 - + 37.78412 30.66667 71.31189 12.15075 110 53 - + 37.87931 32.00000 73.19973 12.71590 110 52 - + 37.96985 33.33333 75.08757 13.28106 110 51 - + 37.96985 33.33333 75.08757 13.28106 110 51 - + 38.05457 34.66667 76.97541 13.84621 110 49 - + 38.13222 36.00000 78.86326 14.41136 110 48 - + 38.20154 37.33333 80.75110 14.97651 110 47 - + 38.26128 38.66667 82.63894 15.54166 110 46 - + 38.31016 40.00000 84.52678 16.10681 110 45 - + 23.87173 40.00000 72.74250 14.99039 110 33 - + 23.77942 41.00000 73.00473 15.05614 110 33 - + 23.68417 42.00000 73.26695 15.12188 110 32 - + 23.58588 43.00000 73.52918 15.18763 110 32 - + 23.48444 44.00000 73.79141 15.25338 110 32 - + 23.37972 45.00000 74.05364 15.31913 110 32 - + 23.37972 45.00000 74.05364 15.31913 110 32 - + 23.27165 46.00000 74.31586 15.38487 110 31 - + 23.16030 47.00000 74.57809 15.45062 110 31 - + 23.04577 48.00000 74.84032 15.51637 110 31 - + 22.92816 49.00000 75.10254 15.58212 110 31 - + 22.80758 50.00000 75.36477 15.64786 110 30 - + 22.80758 50.00000 75.36477 15.64786 110 30 - + 22.73386 50.60000 75.52211 15.68731 110 30 - + 22.65919 51.20000 75.67944 15.72676 110 30 - + 22.58362 51.80000 75.83678 15.76621 110 30 - + 22.50722 52.40000 75.99412 15.80566 110 30 - + 22.43005 53.00000 76.15145 15.84510 110 29 - + 22.43005 53.00000 76.15145 15.84510 110 29 - + 22.24728 54.40000 76.51857 15.93715 110 29 - + 22.06173 55.80000 76.88569 16.02920 110 29 - + 21.87481 57.20000 77.25280 16.12124 110 28 - + 21.68790 58.60000 77.61992 16.21329 110 28 - + 21.50241 60.00000 77.98704 16.30534 110 28 - + 79.01923 60.00000 110.72574 14.05576 110 71 - + 76.43242 61.33333 116.08344 14.73588 110 66 - + 73.90067 62.66667 121.44114 15.41600 110 61 - + 71.43746 64.00000 126.79883 16.09612 110 56 - + 69.05628 65.33333 132.15653 16.77623 110 52 - + 66.77062 66.66667 137.51423 17.45635 110 49 - + 66.77062 66.66667 137.51423 17.45635 110 49 - + 64.59157 68.00000 142.87192 18.13647 110 45 - + 62.52385 69.33333 148.22962 18.81659 110 42 - + 60.57134 70.66667 153.58732 19.49670 110 39 - + 58.73792 72.00000 158.94502 20.17682 110 37 - + 57.02749 73.33333 164.30271 20.85694 110 35 - + 57.02749 73.33333 164.30271 20.85694 110 35 - + 55.44240 74.66667 169.66041 21.53706 110 33 - + 53.98155 76.00000 175.01811 22.21718 110 31 - + 52.64358 77.33333 180.37580 22.89729 110 29 - + 51.42714 78.66667 185.73350 23.57741 110 28 - + 50.33089 80.00000 191.09120 24.25753 110 26 - + 50.33089 80.00000 191.09120 24.25753 110 26 - + 49.58638 81.00000 195.10947 24.76762 110 25 - + 48.90679 82.00000 199.12774 25.27770 110 25 - + 48.29067 83.00000 203.14602 25.78779 110 24 - + 47.73656 84.00000 207.16429 26.29788 110 23 - + 47.24301 85.00000 211.18256 26.80797 110 22 - + 47.24301 85.00000 211.18256 26.80797 110 22 - + 46.80846 86.00000 215.20084 27.31806 110 22 - + 46.43111 87.00000 219.21911 27.82815 110 21 - + 46.10909 88.00000 223.23738 28.33823 110 21 - + 45.84056 89.00000 227.25565 28.84832 110 20 - + 45.62365 90.00000 231.27393 29.35841 110 20 - + 41.32167 90.00000 255.49563 25.05643 110 16 - + 41.03717 91.20000 260.82257 25.57885 110 16 - + 40.82066 92.40000 266.14950 26.10126 110 15 - + 40.66838 93.60000 271.47644 26.62367 110 15 - + 40.57656 94.80000 276.80337 27.14608 110 15 - + 40.54143 96.00000 282.13031 27.66849 110 14 - + 40.54143 96.00000 282.13031 27.66849 110 14 - + 40.55906 97.20000 287.45725 28.19091 110 14 - + 40.62537 98.40000 292.78418 28.71332 110 14 - + 40.73635 99.60000 298.11112 29.23573 110 14 - + 40.88800 100.80000 303.43805 29.75814 110 13 - + 41.07632 102.00000 308.76499 30.28055 110 13 - + 41.07632 102.00000 308.76499 30.28055 110 13 - + 41.29727 103.20000 314.09193 30.80297 110 13 - + 41.54723 104.40000 319.41886 31.32538 110 13 - + 41.82277 105.60000 324.74580 31.84779 110 13 - + 42.12045 106.80000 330.07273 32.37020 110 13 - + 42.43684 108.00000 335.39967 32.89261 110 13 - + 42.43684 108.00000 335.39967 32.89261 110 13 - + 42.76865 109.20000 340.72661 33.41503 110 13 - + 43.11329 110.40000 346.05354 33.93744 110 12 - + 43.46848 111.60000 351.38048 34.45985 110 12 - + 43.83189 112.80000 356.70741 34.98226 110 12 - + 44.20122 114.00000 362.03435 35.50468 110 12 - + 44.20122 114.00000 362.03435 35.50468 110 12 - + 44.57436 115.20000 367.36129 36.02709 110 12 - + 44.95017 116.40000 372.68822 36.54950 110 12 - + 45.32781 117.60000 378.01516 37.07191 110 12 - + 45.70644 118.80000 383.34209 37.59432 110 12 - + 46.08522 120.00000 388.66903 38.11674 110 12 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8114,10 +8015,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 138.015 'Clay' - -6.00 46.014 'Peat' - -8.00 170.975 'Sand 1' - -11.00 126.474 'Sand 2' + 0.00 140.030 'Clay' + -6.00 45.529 'Peat' + -8.00 172.722 'Sand 1' + -11.00 127.008 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8215,16 +8116,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.06000 + -7.12000 + -7.18000 + -7.24000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.60000 - -7.70000 - -7.80000 - -7.90000 + -7.30000 + -7.44000 + -7.58000 + -7.72000 + -7.86000 -8.00000 -8.00000 -8.13333 @@ -8368,22 +8269,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 36.92 : Percentage mobilized resistance left - 13.21 : Percentage mobilized resistance right - 877.50 : Effective left - 626.97 : Effective right + 35.76 : Percentage mobilized resistance left + 12.80 : Percentage mobilized resistance right + 857.75 : Effective left + 607.63 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 2376.95 : Max effective resistance left + 2398.93 : Max effective resistance left 4745.94 : Max effective resistance right --19937.95 : Max moment left --35349.76 : Max moment right --4656.48 : Max mobilized moment left --4819.08 : Max mobilized moment right - 234.80 : Vertical force left - 199.37 : Vertical force right - 23.4 : Max mobilized moment percentage left - 13.6 : Max mobilized moment percentage right +-19957.25 : Max moment left +-35349.74 : Max moment right +-4427.47 : Max mobilized moment left +-4593.42 : Max mobilized moment right + 226.09 : Vertical force left + 192.24 : Vertical force right + 22.2 : Max mobilized moment percentage left + 13.0 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -8398,162 +8299,162 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -864.68672 - 0.00000 0.00000 -850.31548 - 0.00000 0.00000 -835.94424 - 0.00000 0.00000 -821.57300 - 0.00000 0.00000 -807.20176 - 0.00000 0.00000 -792.83052 - 0.00000 0.00000 -792.83052 - 0.00000 0.00000 -778.45928 - 0.00000 0.00000 -764.08804 - 0.00000 0.00000 -749.71680 - 0.00000 0.00000 -735.34556 - 0.00000 0.00000 -720.97432 - 0.00000 330.00000 -720.97432 - 33.00000 330.00000 -706.60441 - 66.00000 330.00000 -692.24248 - 99.00000 330.00000 -677.89649 - 132.00000 330.00000 -663.57445 - 165.00000 330.00000 -649.28430 - 165.00034 250.30212 -649.28430 - 190.03644 250.42088 -635.03372 - 215.08471 250.54571 -620.82907 - 240.14578 250.67664 -606.67642 - 265.22025 250.81369 -592.58182 - 290.30872 250.95687 -578.55133 - 290.30794 250.94851 -578.55133 - 292.81853 251.17017 -577.15204 - 295.33134 251.39230 -575.75346 - 297.84638 251.61491 -574.35559 - 300.36364 251.83799 -572.95844 - 302.88314 252.06154 -571.56202 - 302.88314 252.06154 -571.56202 - 310.45494 252.71846 -567.37717 - 318.04584 253.33461 -563.19907 - 325.65461 253.90992 -559.02789 - 333.28003 254.44423 -554.86380 - 340.92085 254.93731 -550.70696 - 340.92085 254.93731 -550.70696 - 371.61896 256.59076 -534.15542 - 402.47634 257.58671 -517.73323 - 433.41201 257.88885 -501.45116 - 464.34011 257.45232 -485.31996 - 495.16902 256.22704 -469.35036 - 495.16910 256.22664 -469.35036 - 525.85335 255.05922 -453.55319 - 556.35411 253.16174 -437.93908 - 586.58140 250.49509 -422.51852 - 616.44079 247.02482 -407.30204 - 645.83405 242.72208 -392.30012 - 645.83333 242.70822 -392.30012 - 674.63305 237.13604 -377.52326 - 702.70941 230.64975 -362.98127 - 729.95198 223.23815 -348.68360 - 756.24933 214.89569 -334.63972 - 781.48969 205.62181 -320.85908 - 781.48968 205.62234 -320.85908 - 807.42796 183.11841 -305.86783 - 830.23284 158.62521 -291.22372 - 849.64075 132.16862 -276.93502 - 865.39195 103.78029 -263.01002 - 877.23124 73.49609 -249.45698 - 877.23125 73.49656 -249.45698 - 886.16382 60.35038 -236.28239 - 893.28732 46.36367 -223.48870 - 898.49098 31.55602 -211.07812 - 901.66665 15.94711 -199.05285 - 902.70880 -0.44360 -187.41510 - 902.70881 -0.44341 -187.41510 - 902.15885 -7.87134 -176.16610 - 900.59260 -15.68606 -165.30482 - 897.95914 -23.87794 -154.83013 - 894.20880 -32.43774 -144.74088 - 889.29311 -41.35669 -135.03593 - 889.29311 -41.35677 -135.03593 - 884.92336 -46.04656 -128.00843 - 880.08218 -50.78490 -121.19484 - 874.76485 -55.56916 -114.59388 - 868.96690 -60.39689 -108.20426 - 862.68410 -65.26571 -102.02470 - 862.68692 -65.33707 -102.02470 - 855.83416 -71.71503 -96.05383 - 848.35181 -77.85608 -90.28983 - 840.27785 -83.54992 -84.73078 - 831.65621 -88.81236 -79.37471 - 822.52924 -93.65913 -74.21969 - 822.52890 -93.65470 -74.21969 - 812.95222 -97.81340 -69.26363 - 802.97908 -101.58630 -64.50408 - 792.64731 -104.98871 -59.93854 - 781.99319 -108.03576 -55.56454 - 771.05151 -110.74239 -51.37957 - 771.05152 -110.73617 -51.37957 - 759.86861 -112.86885 -47.38105 - 748.48814 -114.68971 -43.56621 - 736.94058 -116.21315 -39.93226 - 725.25495 -117.45335 -36.47641 - 713.45888 -118.42429 -33.19587 - 713.45886 -118.41895 -33.19587 - 696.95742 -129.17437 -29.09004 - 678.99326 -140.35951 -25.28378 - 659.50922 -151.97221 -21.76870 - 638.44842 -164.01049 -18.53640 - 615.75425 -176.47255 -15.57851 - 615.74694 -176.40072 -15.57851 - 591.08600 -192.91586 -12.88603 - 564.45452 -206.01528 -10.44753 - 536.28572 -216.02954 -8.25101 - 506.96978 -223.27324 -6.28446 - 476.85605 -228.04496 -4.53589 - 476.86153 -228.14041 -4.53589 - 446.25367 -230.56450 -2.99247 - 415.50634 -230.09345 -1.64074 - 385.03243 -226.53966 -0.46770 - 355.20659 -220.49237 0.53966 - 326.30206 -212.92417 1.39434 - 326.32523 -212.71110 1.39434 - 305.36056 -206.51086 1.94287 - 285.03620 -199.91636 2.41761 - 265.38828 -192.99233 2.82329 - 246.44671 -185.79892 3.16467 - 228.23562 -178.39172 3.44648 - 228.23592 -178.36860 3.44648 - 210.77243 -170.87805 3.67335 - 194.06418 -163.27143 3.84929 - 178.12057 -155.59199 3.97815 - 162.94689 -147.87935 4.06378 - 148.54461 -140.16944 4.11004 - 148.54438 -140.15025 4.11004 - 132.25884 -131.28827 4.11882 - 117.03118 -122.52658 4.08159 - 102.84668 -113.90944 4.00329 - 89.68558 -105.47568 3.88887 - 77.52475 -97.23591 3.74326 - 77.52455 -97.23083 3.74326 - 66.35823 -88.90496 3.57109 - 56.17951 -80.77549 3.37586 - 46.96322 -72.86825 3.16076 - 38.68136 -65.20516 2.92902 - 31.30350 -57.80431 2.68384 - 31.30345 -57.79531 2.68384 - 24.81736 -50.35264 2.42815 - 19.20748 -43.19355 2.16385 - 14.43919 -36.32741 1.89259 - 10.47689 -29.76159 1.61605 - 7.27825 -23.64988 1.33588 - 7.28127 -23.58963 1.33588 - 4.78369 -18.14918 1.05348 - 2.89839 -13.38554 0.76941 - 1.54395 -9.30216 0.48416 - 0.63857 -5.90132 0.19824 - 0.10029 -3.18410 -0.08789 - 0.10032 -3.18389 -0.08789 - -0.15463 -1.17931 -0.37393 - -0.21007 0.14131 -0.65992 - -0.14807 0.77804 -0.94587 - -0.05069 0.73093 -1.23179 - 0.00000 0.00002 -1.51767 + 0.00000 0.00000 -746.92098 + 0.00000 0.00000 -734.08991 + 0.00000 0.00000 -721.25885 + 0.00000 0.00000 -708.42778 + 0.00000 0.00000 -695.59672 + 0.00000 0.00000 -682.76565 + 0.00000 0.00000 -682.76565 + 0.00000 0.00000 -669.93459 + 0.00000 0.00000 -657.10352 + 0.00000 0.00000 -644.27246 + 0.00000 0.00000 -631.44139 + 0.00000 0.00000 -618.61033 + 0.00021 329.99854 -618.61033 + 33.00007 329.99854 -605.78059 + 65.99992 329.99854 -592.95884 + 98.99978 329.99854 -580.15303 + 131.99963 329.99854 -567.37116 + 164.99948 329.99854 -554.62119 + 164.99899 250.29767 -554.62119 + 190.03464 250.41642 -541.91078 + 215.08247 250.54126 -529.24631 + 240.14309 250.67219 -516.63383 + 265.21712 250.80924 -504.07940 + 290.30515 250.95241 -491.58908 + 290.30515 250.95242 -491.58908 + 292.81578 251.17408 -490.34381 + 295.32863 251.39621 -489.09924 + 297.84371 251.61882 -487.85539 + 300.36101 251.84190 -486.61226 + 302.88054 252.06545 -485.36986 + 302.88054 252.06545 -485.36986 + 310.45048 252.52391 -481.64706 + 318.02760 252.54443 -477.93101 + 325.59876 252.12612 -474.22189 + 333.15076 251.26750 -470.51985 + 340.67038 249.96651 -466.82505 + 340.67074 249.96446 -466.82505 + 370.71429 250.55079 -452.12166 + 400.75123 249.84458 -437.54734 + 430.62259 247.77828 -423.11245 + 460.16027 244.26835 -408.82736 + 489.18552 239.22156 -394.70241 + 489.18467 239.21430 -394.70241 + 517.81608 237.85191 -380.74788 + 546.23852 235.72413 -366.97361 + 574.35763 232.79013 -353.38938 + 602.07446 229.01398 -340.00494 + 629.28609 224.36558 -326.83006 + 629.28609 224.36581 -326.83006 + 655.84126 218.05594 -313.87452 + 681.57979 210.75283 -301.14731 + 706.38172 202.44441 -288.65704 + 730.12600 193.12475 -276.41231 + 752.69119 182.79331 -264.42174 + 752.69119 182.79347 -264.42174 + 775.42227 157.80722 -251.40778 + 794.67620 130.64030 -238.72721 + 810.16403 101.32108 -226.38664 + 821.60104 69.88422 -214.39265 + 828.70745 36.36900 -202.75181 + 828.70746 36.36898 -202.75181 + 832.86587 25.88856 -191.46857 + 835.57980 14.70440 -180.54331 + 836.75650 2.83301 -169.97650 + 836.30546 -9.70900 -159.76864 + 834.13836 -22.90520 -149.92020 + 834.13838 -22.90552 -149.92020 + 830.60505 -30.15859 -140.43093 + 826.07918 -37.79205 -131.29863 + 820.51069 -45.79639 -122.52091 + 813.85073 -54.16252 -114.09536 + 806.05165 -62.88181 -106.01957 + 806.05163 -62.88222 -106.01957 + 799.53246 -67.50942 -100.19053 + 792.54814 -72.18475 -94.55476 + 785.09399 -76.90563 -89.11046 + 777.16558 -81.66960 -83.85583 + 768.75872 -86.47432 -78.78907 + 768.75845 -86.47148 -78.78907 + 759.86567 -91.32029 -73.90827 + 750.50695 -95.79250 -69.21114 + 740.71925 -99.90217 -64.69534 + 730.53814 -103.66322 -60.35849 + 719.99777 -107.08940 -56.19825 + 719.99799 -107.08589 -56.19825 + 713.51977 -108.83550 -53.78585 + 706.93999 -110.47202 -51.43553 + 700.26534 -111.99832 -49.14673 + 693.50234 -113.41727 -46.91886 + 686.65735 -114.73172 -44.75134 + 686.65653 -114.72387 -44.75134 + 670.42756 -117.02897 -39.92519 + 653.91269 -118.81387 -35.41667 + 637.18234 -120.11310 -31.21787 + 620.30211 -120.96037 -27.32087 + 603.33299 -121.38856 -23.71778 + 603.33609 -121.39143 -23.71778 + 586.43857 -132.14317 -20.55259 + 568.07882 -143.32453 -17.63948 + 548.19970 -154.93333 -14.96988 + 526.74435 -166.96759 -12.53524 + 503.67341 -179.03772 -10.32701 + 503.65554 -179.43425 -10.32701 + 479.03615 -189.41492 -8.33582 + 453.25657 -196.88283 -6.55047 + 426.63388 -202.10477 -4.95958 + 399.45962 -205.12953 -3.55179 + 372.04936 -205.52894 -2.31574 + 372.01369 -205.52238 -2.31574 + 344.73648 -203.20868 -1.23951 + 317.93022 -198.52103 -0.31135 + 291.88176 -191.93836 0.47987 + 266.79652 -184.23377 1.14531 + 242.77809 -175.95903 1.69609 + 242.79331 -175.84228 1.69609 + 225.53118 -169.36325 2.04045 + 208.92728 -162.68567 2.33030 + 192.99912 -155.85574 2.56950 + 177.75979 -148.91592 2.76189 + 163.21831 -141.90498 2.91133 + 163.21855 -141.88842 2.91133 + 149.37804 -134.91852 3.02153 + 136.23499 -127.94415 3.09563 + 123.78839 -120.99429 3.13665 + 112.03445 -114.09510 3.14759 + 100.96690 -107.26992 3.13146 + 100.96674 -107.25674 3.13146 + 88.56098 -99.53134 3.08044 + 77.07253 -91.97299 2.99862 + 66.47971 -84.60854 2.88968 + 56.75781 -77.46086 2.75733 + 47.87967 -70.54884 2.60524 + 47.87985 -70.53909 2.60524 + 39.83503 -63.57100 2.43686 + 32.61536 -56.78916 2.25463 + 26.19757 -50.20890 2.06079 + 20.55666 -43.84283 1.85759 + 15.66632 -37.70090 1.64725 + 15.66412 -37.64843 1.64725 + 11.52062 -31.46307 1.43177 + 8.09614 -25.69880 1.21230 + 5.33183 -20.46147 0.98979 + 3.16407 -15.75722 0.76524 + 1.52863 -11.58983 0.53961 + 1.52899 -11.58765 0.53961 + 0.35970 -7.99050 0.31366 + -0.41031 -4.93285 0.08757 + -0.84577 -2.41483 -0.13847 + -1.01144 -0.43620 -0.36431 + -0.97201 1.00371 -0.58977 + -0.97201 1.00346 -0.58977 + -0.79382 1.87668 -0.81484 + -0.54310 2.21253 -1.03965 + -0.28429 2.01151 -1.26426 + -0.08180 1.27397 -1.48876 + 0.00001 0.00004 -1.71322 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8643,7 +8544,7 @@ Q max -6.00000 69.70900 44.41900 1192.97202 124.99349 -6.50000 69.39600 44.08800 1296.86281 146.35017 -7.00000 68.85700 43.80200 1406.49754 167.84776 - -7.50000 68.66300 43.55200 1522.57810 189.47933 + -7.30000 68.73700 43.64900 1476.07261 180.81099 -8.00000 68.49700 43.33200 1639.28098 211.23964 -8.66667 68.81500 42.53300 1860.81914 238.62046 -9.33333 68.73100 42.20300 2138.07178 266.96836 @@ -8685,8 +8586,8 @@ Lambda passive -5.66667 73.64077 193.24087 37.04033 0.77320 0.50299 2.62410 -6.25000 76.31918 207.78158 42.71335 0.70816 0.55967 2.72253 -6.75000 77.08040 219.26946 42.99518 0.69186 0.55780 2.84469 - -7.25000 77.76024 232.16112 43.26314 0.67775 0.55637 2.98560 - -7.75000 78.37190 233.40575 43.52062 0.66555 0.55531 2.97818 + -7.15000 77.63012 231.91689 43.21077 0.68041 0.55662 2.98746 + -7.65000 78.25446 233.15481 43.46950 0.66785 0.55549 2.97944 -8.33333 81.68087 332.30725 41.07122 0.57694 0.50283 4.06836 -9.00000 87.67230 415.87895 42.52186 0.56578 0.48501 4.74356 -9.66667 93.60009 444.70349 44.53016 0.55767 0.47575 4.75110 @@ -8797,18 +8698,18 @@ Status character 43.03501 48.00000 219.47261 53.37846 1 0 A 43.11335 49.00000 219.87213 53.47562 1 0 A 43.18997 50.00000 220.26289 53.57066 1 0 A - 43.07920 50.00000 231.17400 52.47762 1 0 A - 43.15397 51.00000 231.57524 52.56870 1 0 A - 43.22714 52.00000 231.96790 52.65784 1 0 A - 43.29877 53.00000 232.35230 52.74510 1 0 A - 43.36892 54.00000 232.72872 52.83054 1 0 A - 43.43763 55.00000 233.09743 52.91424 1 0 A - 43.35511 55.00000 232.51810 51.96199 1 0 A - 43.42231 56.00000 232.87849 52.04253 1 0 A - 43.48817 57.00000 233.23173 52.12147 1 0 A - 43.55275 58.00000 233.57808 52.19887 1 0 A - 43.61609 59.00000 233.91778 52.27479 1 0 A - 43.67824 60.00000 234.25106 52.34927 1 0 A + 43.09917 50.00000 231.31790 52.68371 1 0 A + 43.14425 50.60000 231.55984 52.73881 1 0 A + 43.18874 51.20000 231.79864 52.79320 1 0 A + 43.23267 51.80000 232.03438 52.84689 1 0 A + 43.27603 52.40000 232.26713 52.89990 1 0 A + 43.31885 53.00000 232.49693 52.95224 1 0 A + 43.23054 53.00000 231.87310 51.97469 1 0 A + 43.32818 54.40000 232.39683 52.09209 1 0 A + 43.42306 55.80000 232.90571 52.20616 1 0 A + 43.51530 57.20000 233.40047 52.31706 1 0 A + 43.60504 58.60000 233.88181 52.42495 1 0 A + 43.69240 60.00000 234.35039 52.52998 1 0 A 39.55011 60.00000 319.99994 45.37940 1 0 A 40.15987 61.33333 324.93350 46.07903 1 0 A 40.76786 62.66667 329.85276 46.77664 1 0 A @@ -8819,56 +8720,56 @@ Status character 41.65370 68.00000 407.38802 48.59064 1 0 A 42.23279 69.33333 413.05175 49.26617 1 0 A 42.81062 70.66667 418.70315 49.94024 1 0 A - 43.38725 72.00000 424.34284 50.61290 1 0 A - 43.96275 73.33333 429.97140 51.28424 1 0 A - 43.12340 73.33333 430.65478 50.54935 1 0 A - 46.87448 74.66667 436.28172 51.20983 110 0 - - 58.79735 76.00000 441.89863 51.86913 110 13 - - 69.06436 77.33333 447.50603 52.52731 110 15 - - 77.80324 78.66667 453.10443 53.18444 110 17 - - 85.14169 80.00000 458.69429 53.84057 110 19 - - 82.53886 80.00000 441.52310 53.33706 110 19 - - 87.17531 81.00000 445.55344 53.82394 110 20 - - 91.14143 82.00000 449.57958 54.31030 110 20 - - 94.48292 83.00000 453.60170 54.79619 110 21 - - 97.24548 84.00000 457.61997 55.28160 110 21 - - 99.47481 85.00000 461.63454 55.76657 110 22 - - 96.94579 85.00000 461.43177 55.42433 110 21 - - 98.66420 86.00000 465.44105 55.90590 110 21 - - 99.93180 87.00000 469.44695 56.38706 110 21 - - 100.78507 88.00000 473.44961 56.86784 110 21 - - 101.26047 89.00000 477.44917 57.34824 110 21 - - 101.39444 90.00000 481.44578 57.82829 110 21 - - 94.31940 90.00000 555.78003 49.77631 110 17 - - 94.00852 91.20000 561.31215 50.27177 110 17 - - 93.30604 92.40000 566.83982 50.76683 110 16 - - 92.25738 93.60000 572.36330 51.26152 110 16 - - 90.90793 94.80000 577.88281 51.75586 110 16 - - 89.68241 96.00000 583.39858 52.24985 110 15 - - 89.37505 96.00000 567.48560 51.94249 110 16 - - 88.14420 97.20000 572.84750 52.43327 110 15 - - 86.68232 98.40000 578.20616 52.92375 110 15 - - 85.02155 99.60000 583.56180 53.41396 110 15 - - 83.19406 100.80000 588.91459 53.90391 110 14 - - 81.23200 102.00000 594.26471 54.39361 110 14 - - 80.99580 102.00000 601.65209 54.15741 110 13 - - 78.92628 103.20000 607.06620 54.64476 110 13 - - 76.77036 104.40000 612.47794 55.13189 110 13 - - 74.54471 105.60000 617.88747 55.61883 110 12 - - 72.26603 106.80000 623.29496 56.10558 110 12 - - 69.95100 108.00000 628.70055 56.59216 110 11 - - 69.77424 108.00000 630.70670 56.41540 110 11 - - 67.43506 109.20000 636.12776 56.90030 110 11 - - 65.07912 110.40000 641.54720 57.38506 110 10 - - 62.71132 111.60000 646.96513 57.86968 110 10 - - 60.33653 112.80000 652.38168 58.35418 110 9 - - 57.95966 114.00000 657.79697 58.83856 110 0 - - 57.83249 114.00000 659.76385 58.71139 110 0 - - 55.45536 115.20000 665.19419 59.19463 110 0 - - 53.07858 116.40000 670.62348 59.67777 110 0 - - 50.70212 117.60000 676.05183 60.16083 110 0 - - 48.32595 118.80000 681.47935 60.64382 110 0 - - 45.95001 120.00000 686.90613 61.12674 110 0 - + 46.43043 72.00000 424.34284 50.61290 110 0 - + 56.97594 73.33333 429.97140 51.28424 110 13 - + 56.13659 73.33333 430.65478 50.54935 110 13 - + 65.19712 74.66667 436.28172 51.20983 110 15 - + 72.90014 76.00000 441.89863 51.86913 110 16 - + 79.35578 77.33333 447.50603 52.52731 110 18 - + 84.67417 78.66667 453.10443 53.18444 110 19 - + 88.96543 80.00000 458.69429 53.84057 110 19 - + 86.36259 80.00000 441.52310 53.33706 110 20 - + 88.94703 81.00000 445.55344 53.82394 110 20 - + 91.05097 82.00000 449.57958 54.31030 110 20 - + 92.71147 83.00000 453.60170 54.79619 110 20 - + 93.96556 84.00000 457.61997 55.28160 110 21 - + 94.85028 85.00000 461.63454 55.76657 110 21 - + 92.32126 85.00000 461.43177 55.42433 110 20 - + 92.85022 86.00000 465.44105 55.90590 110 20 - + 93.07512 87.00000 469.44695 56.38706 110 20 - + 93.02421 88.00000 473.44961 56.86784 110 20 - + 92.72574 89.00000 477.44917 57.34824 110 19 - + 92.20794 90.00000 481.44578 57.82829 110 19 - + 85.13290 90.00000 555.78003 49.77631 110 15 - + 84.18957 91.20000 561.31215 50.27177 110 15 - + 83.00591 92.40000 566.83982 50.76683 110 15 - + 81.61507 93.60000 572.36330 51.26152 110 14 - + 80.05023 94.80000 577.88281 51.75586 110 14 - + 78.34456 96.00000 583.39858 52.24985 110 13 - + 77.99493 96.00000 567.48560 51.94249 110 14 - + 76.80186 97.20000 572.84750 52.43327 110 13 - + 75.47004 98.40000 578.20616 52.92375 110 13 - + 74.02187 99.60000 583.56180 53.41396 110 13 - + 72.47976 100.80000 588.91459 53.90391 110 12 - + 70.86612 102.00000 594.26471 54.39361 110 12 - + 70.62992 102.00000 601.65209 54.15741 110 12 - + 68.96249 103.20000 607.06620 54.64476 110 11 - + 67.25485 104.40000 612.47794 55.13189 110 11 - + 65.51676 105.60000 617.88747 55.61883 110 11 - + 63.75798 106.80000 623.29496 56.10558 110 10 - + 61.98829 108.00000 628.70055 56.59216 110 10 - + 61.81152 108.00000 630.70670 56.41540 110 10 - + 60.03686 109.20000 636.12776 56.90030 110 9 - + 58.26079 110.40000 641.54720 57.38506 110 9 - + 56.48499 111.60000 646.96513 57.86968 110 0 - + 54.71111 112.80000 652.38168 58.35418 110 0 - + 52.94082 114.00000 657.79697 58.83856 110 0 - + 52.81364 114.00000 659.76385 58.71139 110 0 - + 51.04619 115.20000 665.19419 59.19463 110 0 - + 49.28131 116.40000 670.62348 59.67777 110 0 - + 47.51825 117.60000 676.05183 60.16083 110 0 - + 45.75624 118.80000 681.47935 60.64382 110 0 - + 43.99454 120.00000 686.90613 61.12674 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8883,8 +8784,8 @@ Layer name [DATA] 0.00 124.969 'Clay' -6.00 86.242 'Peat' - -8.00 194.036 'Sand 1' - -11.00 221.723 'Sand 2' + -8.00 199.079 'Sand 1' + -11.00 197.338 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8961,27 +8862,27 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.20000 59.97600 0.00000 0.56340 0.00000 - -2.80000 59.97600 0.00000 14.08505 0.00000 - -3.40000 55.98100 0.00000 44.17411 0.00000 - -4.00000 45.72600 0.00000 99.45047 0.00000 - -4.66667 37.39300 54.07200 253.52158 5.85331 - -5.33333 72.63500 51.68100 350.83603 18.67534 - -6.00000 71.29300 49.90700 416.49474 33.73220 - -6.50000 70.77400 48.33000 461.77430 49.62015 - -7.00000 69.45600 45.28800 515.75177 64.58309 - -7.50000 69.19900 42.53400 577.01645 78.33839 - -8.00000 70.72100 40.04100 633.75227 91.01629 - -8.66667 70.66700 37.07700 719.19781 108.59332 - -9.33333 69.64300 34.47000 877.46037 124.50130 - -10.00000 72.38900 32.16700 1031.69468 140.27120 - -10.50000 72.21300 30.61400 1134.98772 152.05714 - -11.00000 72.05100 29.19000 1248.26556 163.83919 - -11.60000 71.85900 27.63500 1428.12993 176.42255 - -12.20000 71.34800 26.22500 1654.84208 188.39747 - -12.80000 71.98900 24.94400 1894.74712 199.46127 - -13.40000 71.83500 23.77500 2127.15534 210.62800 - -14.00000 71.70400 22.70500 2376.91483 221.89684 + -2.20000 59.29400 0.00000 5.53065 0.00000 + -2.80000 59.54600 0.00000 30.86996 0.00000 + -3.40000 55.98100 0.00000 62.29481 0.00000 + -4.00000 45.72600 0.00000 122.05503 0.00000 + -4.66667 39.23900 0.00000 290.44123 0.00000 + -5.33333 71.94600 51.08700 373.07244 11.04793 + -6.00000 70.75600 49.43900 437.79337 26.33343 + -6.50000 70.30300 48.33000 482.75598 42.38045 + -7.00000 69.06100 45.28800 535.99684 57.64542 + -7.30000 68.93300 43.60300 572.60324 66.17033 + -8.00000 70.39000 40.04100 654.74508 84.43780 + -8.66667 70.38100 37.07700 740.17111 102.14057 + -9.33333 69.42400 34.47000 897.85299 118.11798 + -10.00000 72.18900 32.16700 1053.93306 133.91872 + -10.50000 72.03300 30.61400 1157.09290 145.70968 + -11.00000 71.88900 29.19000 1270.25105 157.48523 + -11.60000 71.72100 27.63500 1449.97761 170.04928 + -12.20000 71.23600 26.22500 1676.32690 181.99553 + -12.80000 71.88700 24.94400 1916.70790 193.02390 + -13.40000 71.74600 23.77500 2149.00372 204.15033 + -14.00000 71.62500 22.70500 2398.66877 215.37540 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8998,27 +8899,27 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.12500 0.45063 3.75601 0.00000 4.10410 0.00000 8.33501 - -2.50000 2.82819 22.53608 0.00000 3.76196 0.00000 7.96837 - -3.10000 7.56597 50.14843 0.00000 2.77167 0.00000 6.62816 - -3.70000 13.30337 92.12727 0.00000 1.95843 0.00000 6.92511 - -4.33333 19.53904 231.10666 8.77996 1.42581 0.44935 11.82794 - -5.00000 25.63543 145.97168 19.23305 1.09991 0.75025 5.69414 - -5.66667 31.07852 98.48806 22.58529 0.90981 0.72672 3.16901 - -6.25000 34.11425 90.55912 31.77590 0.93146 0.93146 2.65458 - -6.75000 35.00875 107.95495 29.92588 0.85481 0.85481 3.08366 - -7.25000 35.70735 122.52935 27.51060 0.77045 0.77045 3.43149 - -7.75000 36.25947 113.47163 25.35580 0.69929 0.69929 3.12943 - -8.33333 39.43756 128.16831 26.36554 0.66854 0.66854 3.24990 - -9.00000 45.23771 237.39384 23.86198 0.53354 0.52748 5.24770 - -9.66667 50.96029 231.35147 23.65485 0.52463 0.46418 4.53984 - -10.25000 55.93108 206.58608 23.57188 0.52115 0.42145 3.69358 - -10.75000 60.17734 226.55568 23.56411 0.52012 0.39158 3.76480 - -11.30000 64.84154 299.77395 20.97227 0.44934 0.32344 4.62318 - -11.90000 69.92901 377.85358 19.95820 0.44924 0.28541 5.40339 - -12.50000 75.02114 399.84175 18.43966 0.44990 0.24579 5.32972 - -13.10000 80.12154 387.34703 18.61123 0.45100 0.23229 4.83449 - -13.70000 85.23241 416.26582 18.78140 0.45236 0.22036 4.88389 + -2.12500 0.45063 36.87097 0.00000 4.10410 0.00000 81.82074 + -2.50000 2.82819 42.23219 0.00000 3.76196 0.00000 14.93259 + -3.10000 7.56597 52.37476 0.00000 2.77167 0.00000 6.92241 + -3.70000 13.30337 99.60037 0.00000 1.95843 0.00000 7.48685 + -4.33333 19.53904 252.57929 0.00000 1.42581 0.00000 12.92690 + -5.00000 25.63543 123.94682 16.57190 1.09991 0.64645 4.83498 + -5.66667 31.07852 97.08139 22.92825 0.90981 0.73775 3.12375 + -6.25000 34.11425 89.92522 32.09404 0.94078 0.94078 2.63600 + -6.75000 35.00875 106.48173 30.52994 0.87207 0.87207 3.04157 + -7.15000 35.58079 122.02134 28.41636 0.79864 0.79864 3.42942 + -7.65000 36.15872 117.34548 26.09639 0.72172 0.72172 3.24529 + -8.33333 39.43756 128.13904 26.55415 0.67332 0.67332 3.24916 + -9.00000 45.23771 236.52283 23.96611 0.53354 0.52978 5.22844 + -9.66667 50.96029 234.12010 23.70112 0.52463 0.46509 4.59417 + -10.25000 55.93108 206.31969 23.58192 0.52115 0.42162 3.68882 + -10.75000 60.17734 226.31631 23.55109 0.52012 0.39136 3.76082 + -11.30000 64.84154 299.54426 20.94008 0.44934 0.32294 4.61964 + -11.90000 69.92901 377.24883 19.91042 0.44924 0.28472 5.39474 + -12.50000 75.02114 400.63499 18.38062 0.44990 0.24501 5.34029 + -13.10000 80.12154 387.15970 18.54404 0.45100 0.23145 4.83216 + -13.70000 85.23241 416.10842 18.70846 0.45236 0.21950 4.88204 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9065,132 +8966,132 @@ Status character 0.00000 0.30000 0.00000 0.00000 -1 0 - 0.00000 0.40000 0.00000 0.00000 -1 0 - 0.00000 0.50000 0.00000 0.00000 -1 0 - - 0.00001 0.50000 0.00001 0.00000 202 100 P - 1.50064 0.80000 1.50064 0.73890 202 100 P - 3.00330 1.10000 3.00330 1.47880 202 100 P - 4.50999 1.40000 4.50999 2.22068 202 100 P - 6.02269 1.70000 6.02269 2.96553 202 100 P - 7.54336 2.00000 7.54336 3.71430 202 100 P - 7.21155 2.00000 7.21155 3.40465 202 100 P - 13.13845 3.20000 13.13845 6.20280 202 100 P - 19.32132 4.40000 19.32132 9.12180 202 100 P - 25.84437 5.60000 25.84437 12.20141 202 100 P - 32.76477 6.80000 32.76477 15.46860 202 100 P - 40.11085 8.00000 40.11085 18.93676 202 100 P - 33.36453 8.00000 33.36453 13.95192 202 100 P - 39.82995 9.20000 39.82995 16.65554 202 100 P - 46.63160 10.40000 46.63160 19.49976 202 100 P - 53.73576 11.60000 53.73576 22.47048 202 100 P - 61.09844 12.80000 61.09844 25.54930 202 100 P - 68.66991 14.00000 68.66991 28.71544 202 100 P - 71.74638 14.00000 71.74638 20.28999 202 100 P - 79.82131 15.20000 79.82131 22.57360 202 100 P - 88.00778 16.40000 88.00778 24.88874 202 100 P - 96.25653 17.60000 96.25653 27.22151 202 100 P - 104.52316 18.80000 104.52316 29.55932 202 100 P - 112.76890 20.00000 112.76890 31.89123 202 100 P - 192.60702 20.00000 192.60702 23.21792 202 100 P - 208.14545 21.33333 208.14545 25.09101 202 100 P - 223.50758 22.66667 223.50758 26.94285 202 100 P - 238.64422 24.00000 238.64422 28.76750 202 100 P - 253.51857 25.33333 253.51857 30.56054 202 100 P - 268.10454 26.66667 268.10454 32.31881 202 100 P - 129.06932 26.66667 129.06932 24.93166 202 100 P - 135.94419 28.00000 135.94419 26.25964 202 100 P - 142.66748 29.33333 142.66748 27.55834 202 100 P - 149.23758 30.66667 149.23758 28.82746 202 100 P - 155.65523 32.00000 155.65523 30.06712 202 100 P - 161.92301 33.33333 161.92301 31.27783 202 100 P - 90.11638 33.33333 90.11638 25.87214 202 100 P - 93.52344 34.66667 93.52344 26.85030 202 100 P - 96.85212 36.00000 96.85212 27.80595 202 100 P - 100.10563 37.33333 100.10563 28.74003 202 100 P - 103.28746 38.66667 103.28746 29.65352 202 100 P - 106.40130 40.00000 106.40130 30.54749 202 100 P - 89.12921 40.00000 89.12921 31.27416 202 100 P - 89.72271 41.00000 89.72271 31.48241 202 100 P - 90.28727 42.00000 90.28727 31.68051 202 100 P - 90.82424 43.00000 90.82424 31.86892 202 100 P - 91.33491 44.00000 91.33491 32.04811 202 100 P - 91.82059 45.00000 91.82059 32.21853 202 100 P - 106.66198 45.00000 106.66198 29.56746 202 100 P - 106.55927 46.00000 107.19860 29.71621 110 99 - - 102.08959 47.00000 107.70908 29.85772 110 95 - - 97.77699 48.00000 108.19481 29.99237 110 90 - - 93.62030 49.00000 108.65713 30.12053 110 86 - - 89.61831 50.00000 109.09734 30.24256 110 82 - - 86.63355 50.00000 121.40338 27.25779 110 71 - - 82.77347 51.00000 121.87003 27.36257 110 68 - - 79.06569 52.00000 122.31478 27.46243 110 65 - - 75.50849 53.00000 122.73893 27.55765 110 62 - - 72.10016 54.00000 123.14368 27.64853 110 59 - - 68.83897 55.00000 123.53021 27.73532 110 56 - - 66.27732 55.00000 112.65656 25.17367 110 59 - - 63.15379 56.00000 112.99345 25.24895 110 56 - - 60.17393 57.00000 113.31571 25.32096 110 53 - - 57.33571 58.00000 113.62424 25.38990 110 50 - - 54.63710 59.00000 113.91992 25.45597 110 48 - - 52.07606 60.00000 114.20358 25.51936 110 46 - - 118.59996 60.00000 118.59996 24.39723 202 100 P - 122.44128 61.33333 122.44128 25.18743 202 100 P - 126.26368 62.66667 126.26368 25.97374 202 100 P - 130.06884 64.00000 130.06884 26.75650 202 100 P - 133.85833 65.33333 133.85833 27.53604 202 100 P - 137.63362 66.66667 137.63362 28.31265 202 100 P - 178.38065 66.66667 222.24024 22.59553 110 80 - - 152.07347 68.00000 228.31551 23.21322 110 67 - - 128.30426 69.33333 234.37202 23.82899 110 55 - - 106.95314 70.66667 240.41165 24.44305 110 44 - - 87.90022 72.00000 246.43611 25.05557 110 36 - - 71.02559 73.33333 252.44700 25.66670 110 28 - - 70.59686 73.33333 218.39454 25.23798 110 32 - - 55.76241 74.66667 223.58415 25.83769 110 25 - - 42.84376 76.00000 228.76446 26.43634 110 19 - - 31.71102 77.33333 233.93655 27.03403 110 14 - - 24.44725 78.66667 239.10141 27.63089 1 0 A - 24.97469 80.00000 244.25995 28.22702 1 0 A - 22.67529 80.00000 198.72829 28.04002 1 0 A - 23.03411 81.00000 201.87305 28.48374 1 0 A - 23.39268 82.00000 205.01558 28.92714 1 0 A - 23.75102 83.00000 208.15612 29.37026 1 0 A - 24.10916 84.00000 211.29491 29.81314 1 0 A - 24.46713 85.00000 214.43217 30.25580 1 0 A - 22.73318 85.00000 218.56675 30.19603 1 0 A - 23.06564 86.00000 221.76316 30.63763 1 0 A - 23.39798 87.00000 224.95842 31.07907 1 0 A - 23.73022 88.00000 228.15271 31.52037 1 0 A - 24.06238 89.00000 231.34622 31.96157 1 0 A - 24.39447 90.00000 234.53910 32.40268 1 0 A - 20.14955 90.00000 288.01419 27.99298 1 0 A - 20.47866 91.20000 292.71847 28.45020 1 0 A - 20.80774 92.40000 297.42220 28.90737 1 0 A - 21.13679 93.60000 302.12567 29.36451 1 0 A - 21.46585 94.80000 306.82911 29.82166 1 0 A - 21.79492 96.00000 311.53278 30.27882 1 0 A - 19.23212 96.00000 364.10724 30.27216 1 0 A - 19.52252 97.20000 369.60520 30.72926 1 0 A - 19.81296 98.40000 375.10389 31.18643 1 0 A - 20.10345 99.60000 380.60353 31.64367 1 0 A - 20.39400 100.80000 386.10430 32.10101 1 0 A - 20.68462 102.00000 391.60638 32.55846 1 0 A - 17.81365 102.00000 386.26742 32.60598 1 0 A - 18.06399 103.20000 391.69594 33.06422 1 0 A - 18.31442 104.40000 397.12605 33.52259 1 0 A - 18.56492 105.60000 402.55789 33.98111 1 0 A - 18.81551 106.80000 407.99157 34.43978 1 0 A - 21.53978 108.00000 413.42721 34.89862 110 0 - - 21.62539 108.00000 375.01231 34.98423 110 0 - - 24.90960 109.20000 379.94474 35.44437 110 0 - - 28.21062 110.40000 384.87910 35.90468 110 0 - - 31.52355 111.60000 389.81547 36.36519 110 0 - - 34.84353 112.80000 394.75391 36.82589 110 0 - - 38.16568 114.00000 399.69448 37.28678 110 10 - - 38.27762 114.00000 403.77846 37.39872 110 9 - - 41.60048 115.20000 408.77172 37.86121 110 10 - - 44.92309 116.40000 413.76721 38.32390 110 11 - - 48.24551 117.60000 418.76500 38.78680 110 12 - - 51.56779 118.80000 423.76510 39.24992 110 12 - - 54.88999 120.00000 428.76754 39.71326 110 13 - + 0.00008 0.50000 0.00008 0.00000 202 100 P + 14.73104 0.80000 14.73104 0.73890 202 100 P + 29.48192 1.10000 29.48192 1.47880 202 100 P + 44.27236 1.40000 44.27236 2.22068 202 100 P + 59.12185 1.70000 59.12185 2.96553 202 100 P + 74.04956 2.00000 74.04956 3.71430 202 100 P + 13.51432 2.00000 13.51432 3.40465 202 100 P + 24.62122 3.20000 24.62122 6.20280 202 100 P + 36.20779 4.40000 36.20779 9.12180 202 100 P + 48.43187 5.60000 48.43187 12.20141 202 100 P + 61.40057 6.80000 61.40057 15.46860 202 100 P + 75.16698 8.00000 75.16698 18.93676 202 100 P + 34.84574 8.00000 34.84574 13.95192 202 100 P + 41.59819 9.20000 41.59819 16.65554 202 100 P + 48.70180 10.40000 48.70180 19.49976 202 100 P + 56.12134 11.60000 56.12134 22.47048 202 100 P + 63.81088 12.80000 63.81088 25.54930 202 100 P + 71.71849 14.00000 71.71849 28.71544 202 100 P + 77.56624 14.00000 77.56624 20.28999 202 100 P + 86.29618 15.20000 86.29618 22.57360 202 100 P + 95.14671 16.40000 95.14671 24.88874 202 100 P + 104.06458 17.60000 104.06458 27.22151 202 100 P + 113.00178 18.80000 113.00178 29.55932 202 100 P + 121.91638 20.00000 121.91638 31.89123 202 100 P + 210.50256 20.00000 210.50256 23.21792 202 100 P + 227.48470 21.33333 227.48470 25.09101 202 100 P + 244.27416 22.66667 244.27416 26.94285 202 100 P + 260.81718 24.00000 260.81718 28.76750 202 100 P + 277.07354 25.33333 277.07354 30.56054 202 100 P + 293.01472 26.66667 293.01472 32.31881 202 100 P + 109.59476 26.66667 109.59476 24.93166 202 100 P + 115.43232 28.00000 115.43232 26.25964 202 100 P + 121.14117 29.33333 121.14117 27.55834 202 100 P + 126.71995 30.66667 126.71995 28.82746 202 100 P + 132.16927 32.00000 132.16927 30.06712 202 100 P + 137.49134 33.33333 137.49134 31.27783 202 100 P + 88.82928 33.33333 88.82928 25.87214 202 100 P + 92.18769 34.66667 92.18769 26.85030 202 100 P + 95.46882 36.00000 95.46882 27.80595 202 100 P + 98.67586 37.33333 98.67586 28.74003 202 100 P + 101.81225 38.66667 101.81225 29.65352 202 100 P + 104.88161 40.00000 104.88161 30.54749 202 100 P + 88.50532 40.00000 88.50532 31.58729 202 100 P + 89.09466 41.00000 89.09466 31.79762 202 100 P + 89.65527 42.00000 89.65527 31.99770 202 100 P + 90.18848 43.00000 90.18848 32.18800 202 100 P + 90.69558 44.00000 90.69558 32.36898 202 100 P + 91.17786 45.00000 91.17786 32.54111 202 100 P + 93.19554 45.00000 105.20640 30.16428 110 89 - + 89.44265 46.00000 105.73570 30.31604 110 85 - + 85.82932 47.00000 106.23921 30.46040 110 81 - + 82.35404 48.00000 106.71831 30.59777 110 77 - + 79.01531 49.00000 107.17432 30.72851 110 74 - + 75.81160 50.00000 107.60853 30.85301 110 70 - + 73.21398 50.00000 121.33008 28.25538 110 60 - + 71.34985 50.60000 121.61259 28.32117 110 59 - + 69.53351 51.20000 121.88705 28.38509 110 57 - + 67.76458 51.80000 122.15372 28.44719 110 55 - + 66.04263 52.40000 122.41289 28.50754 110 54 - + 64.36729 53.00000 122.66482 28.56621 110 52 - + 61.61577 53.00000 116.07884 25.81470 110 53 - + 57.87295 54.40000 116.60986 25.93280 110 50 - + 54.37690 55.80000 117.10792 26.04356 110 46 - + 51.12191 57.20000 117.57583 26.14762 110 43 - + 48.10225 58.60000 118.01620 26.24555 110 41 - + 45.31213 60.00000 118.43147 26.33790 110 38 - + 118.57287 60.00000 118.57287 24.57176 202 100 P + 122.41332 61.33333 122.41332 25.36761 202 100 P + 126.23484 62.66667 126.23484 26.15954 202 100 P + 130.03914 64.00000 130.03914 26.94790 202 100 P + 133.82776 65.33333 133.82776 27.73302 202 100 P + 131.78524 66.66667 137.60218 28.51519 110 96 - + 125.86559 66.66667 221.42483 22.59553 110 57 - + 106.57145 68.00000 227.47781 23.21322 110 47 - + 89.33370 69.33333 233.51210 23.82899 110 38 - + 74.03888 70.66667 239.52957 24.44305 110 31 - + 60.57350 72.00000 245.53193 25.05557 110 25 - + 48.82406 73.33333 251.52076 25.66670 110 19 - + 48.39533 73.33333 221.00811 25.23798 110 22 - + 38.23277 74.66667 226.25983 25.83769 110 17 - + 29.54987 76.00000 231.50213 26.43634 110 13 - + 23.96595 77.33333 236.73611 27.03403 1 0 A + 24.49507 78.66667 241.96278 27.63089 1 0 A + 25.02354 80.00000 247.18306 28.22702 1 0 A + 22.68495 80.00000 198.47203 28.04002 1 0 A + 23.04392 81.00000 201.61274 28.48374 1 0 A + 23.40264 82.00000 204.75121 28.92714 1 0 A + 23.76114 83.00000 207.88770 29.37026 1 0 A + 24.11943 84.00000 211.02245 29.81314 1 0 A + 24.47755 85.00000 214.15566 30.25580 1 0 A + 22.72062 85.00000 218.33582 30.19603 1 0 A + 23.05290 86.00000 221.52885 30.63763 1 0 A + 23.38506 87.00000 224.72073 31.07907 1 0 A + 23.71711 88.00000 227.91166 31.52037 1 0 A + 24.04909 89.00000 231.10179 31.96157 1 0 A + 24.38099 90.00000 234.29130 32.40268 1 0 A + 20.11863 90.00000 287.79351 27.99298 1 0 A + 20.44724 91.20000 292.49418 28.45020 1 0 A + 20.77581 92.40000 297.19431 28.90737 1 0 A + 21.10436 93.60000 301.89417 29.36451 1 0 A + 21.43291 94.80000 306.59401 29.82166 1 0 A + 21.76147 96.00000 311.29407 30.27882 1 0 A + 19.18608 96.00000 363.52449 30.27216 1 0 A + 19.47579 97.20000 369.01365 30.72926 1 0 A + 19.76553 98.40000 374.50354 31.18643 1 0 A + 20.05533 99.60000 379.99437 31.64367 1 0 A + 20.34518 100.80000 385.48634 32.10101 1 0 A + 20.63511 102.00000 390.97961 32.55846 1 0 A + 17.75661 102.00000 387.03373 32.60598 1 0 A + 18.74649 103.20000 392.47302 33.06422 110 0 - + 21.39964 104.40000 397.91391 33.52259 110 0 - + 24.08318 105.60000 403.35652 33.98111 110 0 - + 26.78738 106.80000 408.80098 34.43978 110 0 - + 29.50250 108.00000 414.24740 34.89862 110 0 - + 29.58810 108.00000 374.83095 34.98423 110 0 - + 32.30781 109.20000 379.76099 35.44437 110 0 - + 35.02895 110.40000 384.69296 35.90468 110 0 - + 37.74988 111.60000 389.62694 36.36519 110 10 - + 40.46895 112.80000 394.56300 36.82589 110 10 - + 43.18453 114.00000 399.50118 37.28678 110 11 - + 43.29647 114.00000 403.62579 37.39872 110 11 - + 46.00965 115.20000 408.61715 37.86121 110 11 - + 48.72037 116.40000 413.61076 38.32390 110 12 - + 51.42939 117.60000 418.60665 38.78680 110 12 - + 54.13750 118.80000 423.60486 39.24992 110 13 - + 56.84546 120.00000 428.60542 39.71326 110 13 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9203,10 +9104,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 416.607 'Clay' - -6.00 163.249 'Peat' - -8.00 215.999 'Sand 1' - -11.00 81.647 'Sand 2' + 0.00 438.140 'Clay' + -6.00 144.762 'Peat' + -8.00 184.701 'Sand 1' + -11.00 90.145 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9304,16 +9205,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.06000 + -7.12000 + -7.18000 + -7.24000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.60000 - -7.70000 - -7.80000 - -7.90000 + -7.30000 + -7.44000 + -7.58000 + -7.72000 + -7.86000 -8.00000 -8.00000 -8.13333 @@ -9381,7 +9282,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=9 +IterationCount=7 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -9396,7 +9297,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 54.11140 210000000.000 1 2 0 'anchor' + -1.50000 39.61454 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -9457,22 +9358,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 100.00 : Percentage mobilized resistance left - 13.43 : Percentage mobilized resistance right - 836.12 : Effective left - 510.48 : Effective right + 93.92 : Percentage mobilized resistance left + 13.67 : Percentage mobilized resistance right + 859.65 : Effective left + 519.69 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 836.12 : Max effective resistance left + 915.26 : Max effective resistance left 3800.70 : Max effective resistance right --7325.77 : Max moment left +-7992.66 : Max moment left -29687.28 : Max moment right --7325.77 : Max mobilized moment left --3819.04 : Max mobilized moment right - 303.10 : Vertical force left - 157.75 : Vertical force right - 100.0 : Max mobilized moment percentage left - 12.9 : Max mobilized moment percentage right +-7378.88 : Max mobilized moment left +-3871.63 : Max mobilized moment right + 310.14 : Vertical force left + 160.72 : Vertical force right + 92.3 : Max mobilized moment percentage left + 13.0 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -9487,162 +9388,162 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -731.15667 - 0.27751 5.60912 -725.16077 - 1.13362 11.57220 -719.16492 - 2.60375 17.88926 -713.16948 - 4.72327 24.56029 -707.17481 - 7.52760 31.58529 -701.18128 - 7.52760 31.58529 -701.18128 - 11.05213 38.96425 -695.18935 - 15.33225 46.69719 -689.20007 - 20.40337 54.78410 -683.21467 - 26.30087 63.22498 -677.23439 - 33.06016 72.01983 -671.26045 - 33.04883 72.29203 -671.26045 - 40.71480 80.90896 -665.29429 - 49.19077 88.33042 -659.33797 - 58.32540 94.08742 -653.39368 - 67.95403 98.21743 -647.46360 - 77.91540 100.74281 -641.54993 - 77.92825 46.57144 -641.54993 - 82.64700 47.55795 -635.65479 - 87.41646 47.84325 -629.77962 - 92.21806 48.20076 -623.92559 - 97.05902 48.63049 -618.09386 - 101.94657 49.13244 -612.28559 - 101.94453 -150.88372 -612.28559 - 100.43596 -150.82927 -611.70610 - 98.92795 -150.77353 -611.12685 - 97.42050 -150.71651 -610.54784 - 95.91362 -150.65819 -609.96906 - 94.40734 -150.59859 -609.39052 - 94.40734 -150.59859 -609.39052 - 89.89215 -150.41204 -607.65624 - 85.38273 -150.21389 -605.92392 - 80.87943 -150.00414 -604.19346 - 76.38260 -149.78279 -602.46476 - 71.89258 -149.54984 -600.73772 - 71.89258 -149.54984 -600.73772 - 54.00761 -148.50205 -593.84418 - 36.25951 -147.26866 -586.96943 - 18.67055 -145.84968 -580.10736 - 1.26301 -144.24510 -573.25185 - -15.94084 -142.45492 -566.39677 - -15.94077 -142.45533 -566.39677 - -32.91872 -140.47955 -559.53604 - -49.64843 -138.31818 -552.66385 - -66.10765 -135.97121 -545.77446 - -82.27410 -133.43865 -538.86215 - -98.12551 -130.72048 -531.92120 - -98.12623 -130.73435 -531.92120 - -113.64198 -127.83059 -524.94595 - -128.79815 -124.74124 -517.93112 - -143.57246 -121.46628 -510.87159 - -157.94263 -118.00573 -503.76221 - -171.88641 -114.35959 -496.59785 - -171.88642 -14.35906 -496.59785 - -173.51891 -10.09011 -488.56776 - -174.56693 -5.59203 -480.46307 - -174.99993 -0.86482 -472.28362 - -174.78737 4.09153 -464.02921 - -173.89868 9.27700 -455.69967 - -173.89867 9.27748 -455.69967 - -172.30324 14.69209 -447.29503 - -169.97059 20.33583 -438.81631 - -166.87017 26.20870 -430.26486 - -162.97142 32.31070 -421.64200 - -158.24380 38.64184 -412.94910 - -158.24379 38.64202 -412.94910 - -152.65671 45.20229 -404.18773 - -146.17966 51.99169 -395.36072 - -138.78208 59.01022 -386.47125 - -130.43342 66.25788 -377.52252 - -121.10312 73.73468 -368.51772 - -121.10312 73.73460 -368.51772 - -113.41649 80.01542 -361.72944 - -105.09656 86.40053 -354.91374 - -96.13291 92.88995 -348.07277 - -86.51510 99.48367 -341.20871 - -76.23270 106.18169 -334.32373 - -76.22988 106.11034 -334.32373 - -65.27960 112.91266 -327.42011 - -53.64387 119.81929 -320.50070 - -41.31226 126.83022 -313.56848 - -28.27435 133.94545 -306.62643 - -14.51969 141.16498 -299.67753 - -14.52003 141.16941 -299.67753 - -0.03776 148.49324 -292.72490 - 15.18210 155.92138 -285.77225 - 31.14999 163.45382 -278.82343 - 47.87634 171.09056 -271.88231 - 65.37158 178.83161 -264.95275 - 65.37159 178.83783 -264.95275 - 83.63913 186.45408 -258.03877 - 102.65054 193.71442 -251.14499 - 122.36996 200.61291 -244.27619 - 142.76075 207.14004 -237.43711 - 163.78517 213.28331 -230.63253 - 163.78514 213.28865 -230.63253 - 192.68194 219.92497 -221.62195 - 222.36722 225.10819 -212.69418 - 252.64421 228.79333 -203.86219 - 283.31026 230.93698 -195.13894 - 314.15716 231.49994 -186.53738 - 314.14985 231.57177 -186.53738 - 343.82091 212.80690 -178.07164 - 370.71392 189.89232 -169.75388 - 394.27243 162.78323 -161.59406 - 413.93510 131.45123 -153.60218 - 429.13782 95.88305 -145.78822 - 429.14331 95.78761 -145.78822 - 440.78899 78.50767 -138.16044 - 449.97489 58.89240 -130.72223 - 456.39037 36.95367 -123.47627 - 459.72666 12.70761 -116.42525 - 459.67738 -13.82641 -109.57183 - 459.70054 -13.61334 -109.57183 - 457.92757 -21.82052 -104.56217 - 455.34165 -29.87144 -99.66322 - 451.95870 -37.75998 -94.87415 - 447.79527 -45.47989 -90.19416 - 442.86855 -53.02487 -85.62242 - 442.86885 -53.00175 -85.62242 - 437.27572 -58.83534 -81.15794 - 431.10697 -64.51329 -76.79917 - 424.37844 -70.02998 -72.54449 - 417.10653 -75.37987 -68.39226 - 409.30820 -80.55758 -64.34087 - 409.30797 -80.53838 -64.34087 - 399.08843 -89.73200 -59.60995 - 387.78574 -98.58933 -55.01797 - 375.44083 -107.10072 -50.56064 - 362.09578 -115.25693 -46.23367 - 347.79373 -123.04918 -42.03277 - 347.79353 -123.04411 -42.03277 - 332.31139 -134.90020 -37.95344 - 315.43958 -146.20373 -33.98981 - 297.24498 -156.94527 -30.13555 - 277.79555 -167.11593 -26.38436 - 257.16032 -176.70740 -22.72990 - 257.16028 -176.69840 -22.72990 - 235.79944 -179.27161 -19.16529 - 214.14574 -181.57865 -15.68276 - 192.23138 -183.61534 -12.27469 - 170.08903 -185.37778 -8.93346 - 147.75183 -186.86235 -5.65144 - 147.81557 -187.34267 -5.65144 - 125.57469 -183.35287 -2.42068 - 103.88214 -177.58148 0.76646 - 83.10260 -168.12354 3.91712 - 63.68075 -154.95908 7.03844 - 46.05948 -138.11824 10.13757 - 46.03371 -138.25997 10.13757 - 30.62726 -117.90390 13.22165 - 17.88301 -93.89187 16.29522 - 8.23905 -66.23388 19.36155 - 2.13247 -34.93604 22.42391 - -0.00010 -0.00059 25.48557 + 0.00000 0.00000 -630.69325 + 0.27751 5.60912 -624.79531 + 1.13362 11.57220 -618.89741 + 2.60375 17.88926 -612.99993 + 4.72327 24.56029 -607.10322 + 7.52760 31.58529 -601.20765 + 7.52760 31.58529 -601.20765 + 11.05213 38.96425 -595.31367 + 15.33225 46.69719 -589.42235 + 20.40337 54.78410 -583.53491 + 26.30087 63.22498 -577.65259 + 33.06016 72.01983 -571.77660 + 33.05099 72.24384 -571.77660 + 40.70734 80.71698 -565.90840 + 49.15455 87.99508 -560.05003 + 58.26049 93.89716 -554.20369 + 67.88937 98.46070 -548.37155 + 77.90876 101.70806 -542.55579 + 77.92618 62.06439 -542.55579 + 84.24028 63.99922 -536.75862 + 90.68821 64.79973 -530.98181 + 97.18546 65.15725 -525.22694 + 103.72207 65.58697 -519.49557 + 110.30526 66.08892 -513.78927 + 110.29802 -133.96073 -513.78927 + 108.95869 -133.90628 -513.22007 + 107.61990 -133.85054 -512.65115 + 106.28168 -133.79351 -512.08248 + 104.94403 -133.73519 -511.51407 + 103.60698 -133.67559 -510.94591 + 103.60698 -133.67559 -510.94591 + 99.59948 -133.48904 -509.24293 + 95.59775 -133.29089 -507.54211 + 91.60214 -133.08114 -505.84337 + 87.61300 -132.85979 -504.14663 + 83.63067 -132.62685 -502.45179 + 83.63103 -132.62889 -502.45179 + 67.77657 -131.58110 -495.68973 + 52.05899 -130.34771 -488.95126 + 36.50055 -128.92872 -482.23096 + 21.12352 -127.32414 -475.52342 + 5.95018 -125.53397 -468.82323 + 5.94933 -125.54123 -468.82323 + -8.99892 -123.56545 -462.12501 + -23.69895 -121.40408 -455.42365 + -38.12848 -119.05711 -448.71413 + -52.26523 -116.52454 -441.99143 + -66.08695 -113.80638 -435.25053 + -66.08694 -113.80616 -435.25053 + -79.57131 -110.90240 -428.48648 + -92.69610 -107.81304 -421.69472 + -105.43902 -104.53809 -414.87081 + -117.77781 -101.07754 -408.01034 + -129.69021 -97.43140 -401.10886 + -129.69020 2.56877 -401.10886 + -129.06565 6.83772 -393.38811 + -127.85663 11.33580 -385.61188 + -126.03259 16.06301 -377.78095 + -123.56297 21.01936 -369.89611 + -120.41724 26.20483 -361.95816 + -120.41723 26.20481 -361.95816 + -116.56483 31.61942 -353.96807 + -111.97520 37.26316 -345.92787 + -106.61780 43.13603 -337.83985 + -100.46207 49.23803 -329.70633 + -93.47747 55.56917 -321.52961 + -93.47746 55.56884 -321.52961 + -85.63348 62.12911 -313.31226 + -76.89951 68.91851 -305.05807 + -67.24502 75.93704 -296.77121 + -56.63945 83.18470 -288.45581 + -45.05225 90.66149 -280.11605 + -45.05227 90.66109 -280.11605 + -35.67299 96.94190 -273.84796 + -25.66042 103.32702 -267.57122 + -15.00411 109.81644 -261.28843 + -3.69365 116.41016 -255.00216 + 8.28140 123.10818 -248.71498 + 8.28113 123.11102 -248.71498 + 20.93148 129.91334 -242.42959 + 34.26728 136.81997 -236.14926 + 48.29895 143.83090 -229.87736 + 63.03694 150.94613 -223.61729 + 78.49166 158.16566 -217.37244 + 78.49187 158.16917 -217.37244 + 88.11329 162.55096 -213.63432 + 97.99874 166.97029 -209.90386 + 108.15048 171.42717 -206.18195 + 118.57075 175.92160 -202.46948 + 129.26182 180.45359 -198.76732 + 129.26099 180.46144 -198.76732 + 155.23866 190.43212 -190.17397 + 182.52093 199.09453 -181.65417 + 210.92236 206.41188 -173.22131 + 240.25085 212.32765 -164.88879 + 270.30542 216.77176 -156.67003 + 270.30852 216.76889 -156.67003 + 299.47343 220.38552 -148.96120 + 328.99168 222.06004 -141.38111 + 358.60083 221.74084 -133.94242 + 388.03195 219.38273 -126.65777 + 417.01062 214.94860 -119.53983 + 416.99275 214.55208 -119.53983 + 443.95877 189.19178 -112.60231 + 467.24417 159.33771 -105.85583 + 486.24812 124.96790 -99.30841 + 500.36794 86.07559 -92.96806 + 509.00090 42.66711 -86.84280 + 508.96523 42.67366 -86.84280 + 513.84672 30.25662 -80.93808 + 516.95606 16.09357 -75.25428 + 518.06135 0.19838 -69.79183 + 516.93269 -17.41293 -64.55114 + 513.34241 -36.72284 -59.53263 + 513.35763 -36.60609 -59.53263 + 509.25456 -45.42908 -55.91420 + 504.27716 -54.09158 -52.41888 + 498.44180 -62.58741 -49.04526 + 491.76544 -70.91043 -45.79194 + 484.26568 -79.05450 -42.65751 + 484.26591 -79.03794 -42.65751 + 476.03123 -85.62899 -39.64035 + 467.14555 -92.05696 -36.73828 + 457.62545 -98.31652 -33.94899 + 447.48804 -104.40248 -31.27017 + 436.75091 -110.30982 -28.69954 + 436.75075 -110.29664 -28.69954 + 422.90017 -120.48956 -25.75426 + 407.84707 -130.33708 -22.95621 + 391.63344 -139.83037 -20.29976 + 374.30228 -148.96104 -17.77927 + 355.89761 -157.72119 -15.38910 + 355.93737 -158.06610 -15.38910 + 336.17965 -171.13679 -13.12331 + 314.92698 -182.64649 -10.97453 + 292.44665 -191.60226 -8.93500 + 269.04185 -198.07281 -6.99695 + 245.00434 -202.16434 -5.15261 + 245.00417 -202.38936 -5.15261 + 220.56413 -204.56970 -3.39370 + 196.00820 -204.23128 -1.71149 + 171.68538 -200.47398 -0.09761 + 148.03704 -193.15175 1.45632 + 125.42484 -183.43253 2.95868 + 125.44374 -183.20589 2.95868 + 104.11504 -171.99315 4.41787 + 84.23155 -159.12622 5.84089 + 65.98936 -144.64402 7.23406 + 49.58034 -128.57792 8.60368 + 35.19306 -110.95181 9.95608 + 35.19351 -110.94515 9.95608 + 23.01236 -91.81716 11.29718 + 13.21886 -71.15263 12.63037 + 5.99689 -48.95909 13.95813 + 1.52965 -25.24114 15.28293 + -0.00007 -0.00042 16.60725 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9732,13 +9633,13 @@ Status character 86.17864 0.00000 86.17864 16.60132 202 100 P 89.71835 0.00000 89.71835 17.66098 202 100 P 89.71835 0.00000 89.71835 17.66098 202 100 P - 82.62025 0.00000 93.25805 18.72064 110 89 - - 65.80902 0.00000 96.79775 19.78029 110 68 - - 49.33100 0.00000 100.33746 20.83995 110 49 - - 33.26922 0.00000 103.87716 21.89961 110 32 - - 17.23845 0.00000 107.41686 22.95927 110 0 - - 17.23845 0.00000 107.41686 22.95927 110 0 - - 2.49187 0.00000 110.95656 24.01893 1 0 A + 79.74439 0.00000 93.25805 18.72064 110 86 - + 65.81761 0.00000 96.79775 19.78029 110 68 - + 52.22406 0.00000 100.33746 20.83995 110 52 - + 39.04675 0.00000 103.87716 21.89961 110 38 - + 25.90049 0.00000 107.41686 22.95927 110 24 - + 25.90049 0.00000 107.41686 22.95927 110 24 - + 12.79619 0.00000 110.95656 24.01893 110 0 - 3.21404 0.00000 114.49627 25.07859 1 0 A 3.93620 0.00000 118.03597 26.13825 1 0 A 4.65837 0.00000 121.57567 27.19791 1 0 A @@ -9804,16 +9705,16 @@ Status character 22.67382 49.00000 183.14007 42.67001 1 0 A 22.71685 50.00000 183.40230 42.73576 1 0 A 22.71685 50.00000 183.40230 42.73576 1 0 A - 22.75987 51.00000 183.66453 42.80151 1 0 A - 22.80289 52.00000 183.92676 42.86725 1 0 A + 22.74266 50.60000 183.55964 42.77521 1 0 A + 22.76847 51.20000 183.71697 42.81466 1 0 A + 22.79429 51.80000 183.87431 42.85410 1 0 A + 22.82010 52.40000 184.03165 42.89355 1 0 A + 22.84591 53.00000 184.18898 42.93300 1 0 A 22.84591 53.00000 184.18898 42.93300 1 0 A - 22.88893 54.00000 184.45121 42.99875 1 0 A - 22.93195 55.00000 184.71344 43.06450 1 0 A - 22.93195 55.00000 184.71344 43.06450 1 0 A - 22.97498 56.00000 184.97566 43.13024 1 0 A - 23.01800 57.00000 185.23789 43.19599 1 0 A - 23.06102 58.00000 185.50012 43.26174 1 0 A - 23.10404 59.00000 185.76234 43.32748 1 0 A + 22.90614 54.40000 184.55610 43.02505 1 0 A + 22.96637 55.80000 184.92322 43.11709 1 0 A + 23.02660 57.20000 185.29034 43.20914 1 0 A + 23.08683 58.60000 185.65745 43.30119 1 0 A 23.14706 60.00000 186.02457 43.39323 1 0 A 21.65478 60.00000 294.67334 37.40647 1 0 A 22.04851 61.33333 300.03104 38.08659 1 0 A @@ -9859,22 +9760,22 @@ Status character 28.34507 102.00000 511.97773 50.20961 1 0 A 28.34507 102.00000 511.97773 50.20961 1 0 A 28.63999 103.20000 517.30467 50.73202 1 0 A - 28.93491 104.40000 522.63160 51.25443 1 0 A - 29.22983 105.60000 527.95854 51.77685 1 0 A - 29.52475 106.80000 533.28547 52.29926 1 0 A - 29.81967 108.00000 538.61241 52.82167 1 0 A - 29.81967 108.00000 538.61241 52.82167 1 0 A - 30.11459 109.20000 543.93935 53.34408 1 0 A - 61.53108 110.40000 549.26628 53.86649 110 11 - - 93.56008 111.60000 554.59322 54.38891 110 17 - - 125.29573 112.80000 559.92015 54.91132 110 22 - - 156.80948 114.00000 565.24709 55.43373 110 28 - - 156.80948 114.00000 565.24709 55.43373 110 28 - - 188.17266 115.20000 570.57403 55.95614 110 33 - - 219.43078 116.40000 575.90096 56.47855 110 38 - - 250.61650 117.60000 581.22790 57.00097 110 43 - - 281.76251 118.80000 586.55483 57.52338 110 48 - - 312.90149 120.00000 591.88177 58.04579 110 53 - + 34.13954 104.40000 522.63160 51.25443 110 0 - + 50.80073 105.60000 527.95854 51.77685 110 0 - + 66.86243 106.80000 533.28547 52.29926 110 13 - + 82.40847 108.00000 538.61241 52.82167 110 15 - + 82.40847 108.00000 538.61241 52.82167 110 15 - + 97.52275 109.20000 543.93935 53.34408 110 18 - + 112.27538 110.40000 549.26628 53.86649 110 20 - + 126.72948 111.60000 554.59322 54.38891 110 23 - + 140.94814 112.80000 559.92015 54.91132 110 25 - + 154.99448 114.00000 565.24709 55.43373 110 27 - + 154.99448 114.00000 565.24709 55.43373 110 27 - + 168.92790 115.20000 570.57403 55.95614 110 30 - + 182.78223 116.40000 575.90096 56.47855 110 32 - + 196.58223 117.60000 581.22790 57.00097 110 34 - + 210.35268 118.80000 586.55483 57.52338 110 36 - + 224.11833 120.00000 591.88177 58.04579 110 38 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9887,10 +9788,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 147.663 'Clay' + 0.00 150.140 'Clay' -6.00 45.434 'Peat' -8.00 78.253 'Sand 1' - -11.00 239.132 'Sand 2' + -11.00 245.868 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9905,7 +9806,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.30 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -9968,18 +9869,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.00000 64.28300 0.00000 5.77131 0.00000 - -8.66667 59.74400 36.57400 44.63315 2.25654 - -9.33333 56.31100 56.31000 243.23284 14.26672 - -10.00000 78.52900 51.37700 421.76533 29.46246 - -10.50000 77.36400 49.25200 512.86139 42.75421 - -11.00000 76.62700 47.75800 587.83592 55.94716 - -11.60000 75.23000 46.27800 678.47853 69.88472 - -12.20000 74.66900 45.24200 773.95640 83.36176 - -12.80000 75.82500 43.33100 819.59169 95.96789 - -13.40000 75.73100 40.27900 836.37215 106.00609 - -14.00000 75.76300 37.56800 830.55452 112.33068 + -7.30000 0.00000 0.00000 0.00000 0.00000 + -8.00000 63.40400 0.00000 19.02470 0.00000 + -8.66667 55.65500 61.11400 77.90721 0.49687 + -9.33333 56.31100 56.29400 312.82404 15.55754 + -10.00000 77.82700 50.42300 461.13872 32.36922 + -10.50000 76.79700 48.51600 555.27118 46.29056 + -11.00000 76.13100 47.16000 633.95986 59.99050 + -11.60000 74.83300 45.78400 729.51143 74.37520 + -12.20000 74.32500 44.81200 831.00786 88.24455 + -12.80000 75.40200 42.27300 885.08103 100.90709 + -13.40000 75.28900 39.34000 908.48523 110.99794 + -14.00000 75.28500 36.73300 909.50157 117.43987 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9996,17 +9897,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.75000 2.52296 11.54263 0.00000 2.64491 0.00000 4.57504 - -8.33333 11.37225 58.29276 3.38481 1.79407 0.29764 5.12588 - -9.00000 24.82068 297.89953 18.01528 1.26090 0.72582 12.00207 - -9.66667 38.74489 267.79874 22.79360 0.96522 0.58830 6.91185 - -10.25000 43.62441 182.19211 26.58349 0.84936 0.60937 4.17638 - -10.75000 39.41403 149.94908 26.38590 0.80863 0.66945 3.80446 - -11.30000 34.36869 151.07101 23.22927 0.70344 0.67588 4.39560 - -11.90000 28.44912 159.12979 22.46173 0.78954 0.78954 5.59349 - -12.50000 22.19804 76.05881 21.01023 0.94649 0.94649 3.42638 - -13.10000 15.70872 9.13570 16.73032 1.06503 1.06503 1.06503 - -13.70000 9.05478 9.13570 10.54100 1.16414 1.16414 1.16414 + -7.65000 3.56182 27.17814 0.00000 2.59230 0.00000 7.63040 + -8.33333 13.88415 88.32377 0.74530 1.69680 0.05368 6.36148 + -9.00000 27.60020 352.37524 22.59101 1.18450 0.81851 12.76712 + -9.66667 41.46810 222.47202 25.21752 0.91505 0.60812 5.36490 + -10.25000 46.18543 188.26492 27.84268 0.80916 0.60285 4.07628 + -10.75000 41.82678 157.37738 27.39988 0.76936 0.65508 3.76260 + -11.30000 36.63877 159.25262 23.97451 0.66577 0.65435 4.34656 + -11.90000 30.59728 169.16072 23.11559 0.75548 0.75548 5.52862 + -12.50000 24.25735 90.12195 21.10423 0.87001 0.87001 3.71524 + -13.10000 17.70597 39.00700 16.81809 0.94985 0.94985 2.20304 + -13.70000 11.01015 1.69390 10.73654 0.97515 0.97515 0.97515 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10113,72 +10014,72 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P - 4.58187 0.00000 4.58187 2.64886 202 100 P - 9.20424 0.00000 9.20424 5.32113 202 100 P - 13.90505 0.00000 13.90505 8.03875 202 100 P - 18.71747 0.00000 18.71747 10.82090 202 100 P - 23.66814 0.00000 23.66814 13.68297 202 100 P - 26.51780 0.00000 26.51780 9.28128 202 100 P - 38.97407 0.00000 38.97407 13.64100 202 100 P - 51.76828 0.00000 51.76828 18.11900 202 100 P - 64.89952 0.00000 64.89952 22.71496 202 100 P - 78.34464 0.00000 78.34464 27.42078 202 100 P - 92.06414 0.00000 92.06414 32.22264 202 100 P - 215.56514 0.00000 215.56514 22.64657 202 100 P - 248.21520 0.00000 248.21520 26.07668 202 100 P - 281.26478 0.00000 281.26478 29.54876 202 100 P - 314.58702 0.00000 314.58702 33.04948 202 100 P - 348.06246 0.00000 348.06246 36.56630 202 100 P - 381.58387 0.00000 381.58387 40.08795 202 100 P - 219.74953 0.00000 219.74953 30.68736 202 100 P - 239.02727 0.00000 239.02727 33.37943 202 100 P - 258.23373 0.00000 258.23373 36.06156 202 100 P - 277.33316 0.00000 277.33316 38.72874 202 100 P - 296.29775 0.00000 296.29775 41.37708 202 100 P - 315.10684 0.00000 315.10684 44.00372 202 100 P - 190.39861 0.00000 190.39861 38.72181 202 100 P - 187.16151 3.00000 187.16151 38.06348 202 100 P - 183.86403 6.00000 183.86403 37.39286 202 100 P - 180.50452 9.00000 180.50452 36.70963 202 100 P - 177.08206 12.00000 177.08206 36.01359 202 100 P - 173.59635 15.00000 173.59635 35.30470 202 100 P - 158.13699 15.00000 158.13699 33.61154 202 100 P - 154.90430 18.00000 154.90430 32.92444 202 100 P - 151.61482 21.00000 151.61482 32.22527 202 100 P - 148.26951 24.00000 148.26951 31.51423 202 100 P - 144.86957 27.00000 144.86957 30.79159 202 100 P - 141.41644 30.00000 141.41644 30.05763 202 100 P - 163.38985 30.00000 163.38985 26.14783 202 100 P - 158.52368 33.60000 158.52368 25.36908 202 100 P - 153.57509 37.20000 153.57509 24.57714 202 100 P - 148.54770 40.80000 148.54770 23.77259 202 100 P - 143.44529 44.40000 143.44529 22.95603 202 100 P - 138.27165 48.00000 138.27165 22.12808 202 100 P - 175.95339 48.00000 175.95339 24.83644 202 100 P - 169.28407 51.60000 169.28407 23.89504 202 100 P - 162.53380 55.20000 162.53380 22.94222 202 100 P - 155.70730 58.80000 155.70730 21.97863 202 100 P - 148.80916 62.40000 148.80916 21.00494 202 100 P - 141.84385 66.00000 141.84385 20.02176 202 100 P - 86.88862 66.00000 86.88862 24.00182 202 100 P - 82.58339 69.60000 82.58339 22.81256 202 100 P - 78.24216 73.20000 78.24216 21.61335 202 100 P - 73.86735 76.80000 73.86735 20.40487 202 100 P - 69.46125 80.40000 69.46125 19.18774 202 100 P - 65.02604 84.00000 65.02604 17.96258 202 100 P - 20.21230 84.00000 20.21230 20.21230 202 100 P - 18.82528 87.60000 18.82528 18.82528 202 100 P - 17.43047 91.20000 17.43047 17.43047 202 100 P - 16.02843 94.80000 16.02843 16.02843 1 100 A - 14.61972 98.40000 14.61972 14.61972 1 100 A - 13.20482 102.00000 13.20482 13.20482 1 100 A - 14.43355 102.00000 14.43355 14.43355 1 100 A - 12.88077 105.60000 12.88077 12.88077 1 100 A - 11.32226 109.20000 11.32226 11.32226 1 100 A - 9.75847 112.80000 9.75847 9.75847 1 100 A - 8.18983 116.40000 8.18983 8.18983 1 100 A - 6.61674 120.00000 6.61674 6.61674 1 100 A + 0.00001 0.00000 0.00001 0.00000 202 100 P + 10.71375 0.00000 10.71375 3.63982 202 100 P + 21.61001 0.00000 21.61001 7.34163 202 100 P + 32.84935 0.00000 32.84935 11.16001 202 100 P + 44.55309 0.00000 44.55309 15.13616 202 100 P + 56.79352 0.00000 56.79352 19.29464 202 100 P + 47.34888 0.00000 47.34888 12.62941 202 100 P + 63.43833 0.00000 63.43833 16.92096 202 100 P + 79.93470 0.00000 79.93470 21.32106 202 100 P + 96.79816 0.00000 96.79816 25.81906 202 100 P + 113.97246 0.00000 113.97246 30.39998 202 100 P + 131.39244 0.00000 131.39244 35.04643 202 100 P + 263.69692 0.00000 263.69692 24.46502 202 100 P + 299.01474 0.00000 299.01474 27.74170 202 100 P + 334.55770 0.00000 334.55770 31.03927 202 100 P + 370.20476 0.00000 370.20476 34.34650 202 100 P + 405.84944 0.00000 405.84944 37.65351 202 100 P + 441.40147 0.00000 441.40147 40.95192 202 100 P + 185.48206 0.00000 185.48206 31.63628 202 100 P + 200.35142 0.00000 200.35142 34.17244 202 100 P + 215.12618 0.00000 215.12618 36.69246 202 100 P + 229.78762 0.00000 229.78762 39.19315 202 100 P + 244.32216 0.00000 244.32216 41.67220 202 100 P + 258.72065 0.00000 258.72065 44.12804 202 100 P + 196.57772 0.00000 196.57772 39.02150 202 100 P + 193.29873 3.00000 193.29873 38.37061 202 100 P + 189.95829 6.00000 189.95829 37.70752 202 100 P + 186.55612 9.00000 186.55612 37.03217 202 100 P + 183.09245 12.00000 183.09245 36.34462 202 100 P + 179.56795 15.00000 179.56795 35.64499 202 100 P + 165.74949 15.00000 165.74949 33.89157 202 100 P + 162.44099 18.00000 162.44099 33.21506 202 100 P + 159.07846 21.00000 159.07846 32.52751 202 100 P + 155.66332 24.00000 155.66332 31.82920 202 100 P + 152.19714 27.00000 152.19714 31.12045 202 100 P + 148.68160 30.00000 148.68160 30.40162 202 100 P + 171.75723 30.00000 171.75723 26.30822 202 100 P + 166.81150 33.60000 166.81150 25.55068 202 100 P + 161.79032 37.20000 161.79032 24.78158 202 100 P + 156.69746 40.80000 156.69746 24.00150 202 100 P + 151.53670 44.40000 151.53670 23.21102 202 100 P + 146.31179 48.00000 146.31179 22.41072 202 100 P + 186.10172 48.00000 186.10172 25.43055 202 100 P + 179.37899 51.60000 179.37899 24.51190 202 100 P + 155.87497 55.20000 172.58395 23.58337 110 90 - + 132.60345 58.80000 165.72107 22.64556 110 80 - + 110.24439 62.40000 158.79463 21.69907 110 69 - + 88.74309 66.00000 151.80877 20.74447 110 58 - + 91.88808 66.00000 102.01579 23.88946 110 90 - + 71.03609 69.60000 97.28401 22.78140 110 73 - + 50.90305 73.20000 92.51748 21.66520 110 55 - + 31.41548 76.80000 87.71862 20.54143 110 36 - + 19.41062 80.40000 82.88971 19.41062 1 23 A + 18.27329 84.00000 78.03291 18.27329 1 23 A + 19.95021 84.00000 46.27147 19.95021 1 43 A + 18.70189 87.60000 43.37619 18.70189 1 43 A + 17.44746 91.20000 40.46672 17.44746 1 43 A + 16.18737 94.80000 37.54413 16.18737 1 43 A + 14.92206 98.40000 34.60944 14.92206 1 43 A + 13.65194 102.00000 31.66359 13.65194 1 43 A + 14.01549 102.00000 14.01549 14.01549 1 100 A + 12.70700 105.60000 12.70700 12.70700 1 100 A + 11.39433 109.20000 11.39433 11.39433 1 100 A + 10.07783 112.80000 10.07783 10.07783 1 100 A + 8.75781 116.40000 8.75781 8.75781 1 100 A + 7.43458 120.00000 7.43458 7.43458 1 100 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10192,10 +10093,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 5.824 'Peat' - -8.00 416.307 'Sand 1' - -10.00 166.004 'Sand 1' - -11.00 247.987 'Sand 2' + -6.00 19.337 'Peat' + -8.00 442.317 'Sand 1' + -10.00 172.757 'Sand 1' + -11.00 225.235 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -10220,14 +10121,14 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 25.52459 32.25369 -17.04077 0.00000 14.37239 1 3 0 1.000 0 0 - 19.27560 21.02809 -18.00529 0.00000 6.81038 1 10 12 1.000 0 0 - 31.47048 32.59021 -29.54219 0.00000 26.25878 1 11 13 1.000 0 0 + 18.16609 21.88310 -13.06006 0.00000 6.71273 1 10 12 1.000 0 0 + 28.90989 35.11300 -22.55076 0.00000 26.24677 1 11 13 1.000 0 0 -150.00000 -150.00000 -24.59094 10.99910 14.83613 2 3 0 1.000 0 0 - 235.60756 144.55314 -153.91806 6.05869 10.08142 2 10 12 1.000 0 0 - 902.70881 330.00000 -864.68672 23.35488 36.91710 2 11 13 1.000 0 0 + 206.10555 144.55084 -124.85035 5.92368 9.88181 2 10 12 1.000 0 0 + 836.75650 329.99854 -746.92098 22.18479 35.75537 2 11 13 1.000 0 0 -216.51182 -153.80159 -35.63244 25.69793 28.10340 3 3 0 1.000 0 0 - 187.51523 155.31519 -99.37923 42.90873 45.29376 3 10 12 1.000 0 0 - 459.72666 231.57177 -731.15667 100.00000 100.00000 3 11 13 1.000 0 0 + -149.78508 131.31175 -76.05307 29.03066 31.98457 3 10 12 1.000 0 0 + 518.06135 222.06004 -630.69325 92.32067 93.92429 3 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -10252,8 +10153,8 @@ AnchorName 2 10 7 12 1.000 64.00000 0 1 0 0 'anchor' 2 11 7 13 1.000 80.00000 0 1 0 0 'anchor' 3 3 7 0 1.000 32.12063 0 1 0 0 'anchor' - 3 10 7 12 1.000 46.38561 0 1 0 0 'anchor' - 3 11 7 13 1.000 54.11140 0 1 0 0 'anchor' + 3 10 7 12 1.000 36.83362 0 1 0 0 'anchor' + 3 11 7 13 1.000 39.61454 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -10269,15 +10170,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 64.00000 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=902.70881 -MaximumShearForce=330.00000 +MaximumMoment=836.75650 +MaximumShearForce=329.99854 MaximumDisplacement=-35.63244 -MaximumPercentageMobilisedMoment=100.00000 -MaximumPercentageMobilisedResistance=100.00000 +MaximumPercentageMobilisedMoment=92.32067 +MaximumPercentageMobilisedResistance=93.92429 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=206.10555 +MaximumShearForce=144.55084 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=29.03066 +MaximumPercentageMobilisedResistance=31.98457 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shi index c43eb3f1..d3516f46 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shd index 48bcba4b..3286078f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,23 +886,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1159,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method A [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 - -1 13 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.200 0.000 0.000 0.800 1.100 0.900 + -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.200 0.000 0.000 1.111 1.000 1.000 + -1 13 2.000 0.800 0.000 0.00 20.00 0.80 0.20 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.200 0.000 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4005,7 +4136,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4035,34 +4166,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.08000 - -2.11000 - -2.14000 - -2.17000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4202,8 +4321,8 @@ Is permanent (0=false, 1=true) Is favorable (0=false, 1=true) [END OF COLUMN INDICATION] [DATA] - 0 1 2.00 44.00 0 0 - 0 1 10.00 44.00 0 0 + 0 1 2.00 44.44 0 0 + 0 1 10.00 44.44 0 0 [END OF DATA] [END OF TABLE] [END OF SURCHARGE DATA] @@ -4213,20 +4332,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.77 : Percentage mobilized resistance left - 6.34 : Percentage mobilized resistance right - 406.99 : Effective left - 406.99 : Effective right + 14.70 : Percentage mobilized resistance left + 6.54 : Percentage mobilized resistance right + 420.54 : Effective left + 420.53 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 2755.02 : Max effective resistance left - 6419.72 : Max effective resistance right + 2860.05 : Max effective resistance left + 6428.19 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 153.52 : Vertical force left - 150.59 : Vertical force right + 157.38 : Vertical force left + 154.22 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4236,169 +4355,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -20.82776 - 0.00000 0.00000 -20.62169 - 0.00000 0.00000 -20.41562 - 0.00000 0.00000 -20.20956 - 0.00000 0.00000 -20.00349 - 0.00000 0.00000 -19.79742 - 0.00000 0.00000 -19.79742 - 0.00000 0.00000 -19.59135 - 0.00000 0.00000 -19.38528 - 0.00000 0.00000 -19.17921 - 0.00000 0.00000 -18.97314 - 0.00000 0.00000 -18.76707 - 0.00058 -0.00464 -18.76707 - 0.00012 -0.00464 -18.56100 - -0.00035 -0.00464 -18.35493 - 0.00197 0.07881 -18.14886 - 0.02399 0.41960 -17.94279 - 0.09752 1.10936 -17.73673 - 0.09694 1.10473 -17.73673 - 0.23405 1.69231 -17.53067 - 0.44639 2.60933 -17.32465 - 0.76693 3.85679 -17.11873 - 1.22878 5.43531 -16.91296 - 1.86504 7.34514 -16.70742 - 1.86504 7.34515 -16.70742 - 1.93937 7.52165 -16.68688 - 2.01548 7.70005 -16.66635 - 2.09338 7.88035 -16.64581 - 2.17309 8.06254 -16.62528 - 2.25464 8.24662 -16.60476 - 2.25464 8.24662 -16.60476 - 2.51012 8.78862 -16.54321 - 2.78212 9.34752 -16.48170 - 3.07114 9.92330 -16.42024 - 3.37769 10.51595 -16.35882 - 3.70227 11.12544 -16.29746 - 3.70226 11.12554 -16.29746 - 5.03640 11.09537 -16.05267 - 6.36155 10.97525 -15.80919 - 7.66679 10.76332 -15.56734 - 8.94098 10.45738 -15.32745 - 10.17270 10.05498 -15.08988 - 10.17379 10.04560 -15.08988 - 11.24818 7.87169 -14.85496 - 12.06664 5.78897 -14.62296 - 12.64446 3.87955 -14.39400 - 13.00681 2.19713 -14.16826 - 13.18069 0.73769 -13.94587 - 13.18079 0.72433 -13.94587 - 13.15841 -1.07626 -13.72695 - 12.92906 -2.71263 -13.51142 - 12.51540 -4.14866 -13.29919 - 11.94124 -5.38812 -13.09014 - 11.22996 -6.43470 -12.88418 - 11.22989 -6.43415 -12.88418 - 10.26537 -7.99688 -12.65878 - 9.10711 -9.34094 -12.43664 - 7.78399 -10.47047 -12.21736 - 6.32435 -11.38921 -12.00052 - 4.75608 -12.10055 -11.78570 - 4.75612 -12.10012 -11.78570 - 3.06964 -13.16454 -11.57244 - 1.25418 -14.03527 -11.36015 - -0.66458 -14.71429 -11.14824 - -2.66117 -15.20306 -10.93609 - -4.71031 -15.50256 -10.72310 - -4.71027 -15.50302 -10.72310 - -6.81765 -16.07732 -10.50863 - -8.98943 -16.46875 -10.29199 - -11.20116 -16.67662 -10.07248 - -13.42831 -16.69971 -9.84940 - -15.64613 -16.53623 -9.62205 - -15.64617 -16.53696 -9.62205 - -17.16143 -13.76071 -9.44827 - -18.39683 -10.93988 -9.27142 - -19.34791 -8.07411 -9.09132 - -20.01014 -5.16304 -8.90781 - -20.37899 -2.20624 -8.72071 - -20.37899 -2.20656 -8.72071 - -20.45826 0.62886 -8.52989 - -20.25167 3.51065 -8.33541 - -19.75457 6.43932 -8.13735 - -18.96223 9.41535 -7.93580 - -17.86990 12.43921 -7.73085 - -17.86991 12.43893 -7.73085 - -16.48016 15.36410 -7.52263 - -14.79547 18.33774 -7.31146 - -12.81098 21.36021 -7.09769 - -10.52179 24.43181 -6.88167 - -7.92297 27.55277 -6.66377 - -7.92298 27.55265 -6.66377 - -5.01603 30.59460 -6.44438 - -1.80241 33.68592 -6.22408 - 1.72280 36.82655 -6.00352 - 5.56453 40.01628 -5.78331 - 9.72768 43.25480 -5.56410 - 9.72743 43.25688 -5.56410 - 15.08895 37.25059 -5.27475 - 19.68327 31.74719 -4.99021 - 23.57678 26.73665 -4.71173 - 26.83440 22.20666 -4.44057 - 29.51927 18.14270 -4.17798 - 29.51913 18.14953 -4.17798 - 31.66482 14.10820 -3.92500 - 33.30023 10.49239 -3.68211 - 34.48087 7.28343 -3.44968 - 35.25970 4.46192 -3.22811 - 35.68705 2.00783 -3.01779 - 35.68703 2.01622 -3.01779 - 35.80331 -0.21617 -2.81895 - 35.64380 -2.12413 -2.63150 - 35.25038 -3.72823 -2.45534 - 34.66221 -5.04878 -2.29034 - 33.91575 -6.10591 -2.13638 - 33.91608 -6.10009 -2.13638 - 33.26961 -6.80732 -2.02805 - 32.55889 -7.38642 -1.92568 - 31.79633 -7.84538 -1.82912 - 30.99356 -8.19203 -1.73825 - 30.16142 -8.43399 -1.65294 - 30.16237 -8.43851 -1.65294 - 29.28300 -9.13414 -1.57303 - 28.33839 -9.74450 -1.49837 - 27.33728 -10.25949 -1.42877 - 26.29118 -10.63388 -1.36406 - 25.21603 -10.84250 -1.30406 - 25.21485 -10.84389 -1.30406 - 23.87002 -11.53468 -1.23802 - 22.45459 -12.02376 -1.17813 - 20.99161 -12.33051 -1.12401 - 19.50184 -12.47311 -1.07531 - 18.00395 -12.46849 -1.03163 - 18.00405 -12.46222 -1.03163 - 16.51189 -12.38659 -0.99260 - 15.03593 -12.19449 -0.95782 - 13.58934 -11.89915 -0.92692 - 12.18378 -11.51259 -0.89954 - 10.82954 -11.04562 -0.87530 - 10.82963 -11.04182 -0.87530 - 9.53330 -10.55264 -0.85384 - 8.29947 -10.00161 -0.83483 - 7.13509 -9.39623 -0.81798 - 6.04629 -8.74303 -0.80298 - 5.03845 -8.04756 -0.78954 - 5.03852 -8.04575 -0.78954 - 4.11435 -7.35122 -0.77738 - 3.27557 -6.62315 -0.76627 - 2.52601 -5.86469 -0.75603 - 1.86916 -5.07834 -0.74646 - 1.30825 -4.26600 -0.73738 - 1.30828 -4.26549 -0.73738 - 0.84460 -3.45863 -0.72860 - 0.47916 -2.62816 -0.72003 - 0.21476 -1.77469 -0.71161 - 0.05414 -0.89860 -0.70327 - -0.00001 -0.00003 -0.69495 + 0.00000 0.00000 -17.89054 + 0.00000 0.00000 -17.73532 + 0.00000 0.00000 -17.58011 + 0.00000 0.00000 -17.42489 + 0.00000 0.00000 -17.26967 + 0.00000 0.00000 -17.11446 + 0.00000 0.00000 -17.11446 + 0.00000 0.00000 -16.95924 + 0.00000 0.00000 -16.80402 + 0.00000 0.00000 -16.64881 + 0.00000 0.00000 -16.49359 + 0.00000 0.00000 -16.33837 + 0.00028 -0.00679 -16.33837 + 0.00201 0.06527 -16.18315 + 0.02123 0.37416 -16.02792 + 0.08788 1.01431 -15.87271 + 0.23524 1.98887 -15.71753 + 0.49689 3.30046 -15.56238 + 0.49686 3.30028 -15.56238 + 0.88386 4.49251 -15.40730 + 1.40593 6.00194 -15.25238 + 2.09485 7.82956 -15.09773 + 2.98247 9.97595 -14.94349 + 4.10067 12.44128 -14.78978 + 4.10064 12.44159 -14.78978 + 5.59505 10.02207 -14.58604 + 6.78582 7.88666 -14.38408 + 7.71066 6.03267 -14.18421 + 8.40689 4.45668 -13.98672 + 8.91129 3.15466 -13.79193 + 8.91128 3.15548 -13.79193 + 9.20818 1.33944 -13.60005 + 9.27941 -0.23040 -13.41110 + 9.15747 -1.55871 -13.22505 + 8.87427 -2.65025 -13.04187 + 8.46105 -3.50976 -12.86152 + 8.46106 -3.50897 -12.86152 + 7.89827 -4.89795 -12.68393 + 7.16418 -6.07911 -12.50885 + 6.28623 -7.05659 -12.33601 + 5.29130 -7.83428 -12.16514 + 4.20580 -8.41579 -11.99595 + 4.20583 -8.41541 -11.99595 + 3.01152 -9.46925 -11.82815 + 1.68864 -10.34446 -11.66131 + 0.26083 -11.04352 -11.49498 + -1.24857 -11.56851 -11.32870 + -2.81645 -11.92111 -11.16204 + -2.81641 -11.92139 -11.16204 + -4.45737 -12.66598 -10.99450 + -6.18680 -13.24852 -10.82555 + -7.98312 -13.66931 -10.65460 + -9.82476 -13.92813 -10.48111 + -11.69007 -14.02434 -10.30449 + -11.69003 -14.02546 -10.30449 + -13.58856 -14.42612 -10.12416 + -15.52991 -14.66745 -9.93950 + -17.49270 -14.74723 -9.74990 + -19.45521 -14.66280 -9.55472 + -21.39534 -14.41096 -9.35336 + -21.39542 -14.41203 -9.35336 + -22.69929 -11.65874 -9.19787 + -23.72580 -8.86464 -9.03831 + -24.47084 -6.02917 -8.87455 + -24.93024 -3.15176 -8.70645 + -25.09977 -0.23180 -8.53389 + -25.09977 -0.23219 -8.53389 + -24.98366 2.56170 -8.35677 + -24.58598 5.39916 -8.17517 + -23.90235 8.28083 -7.98921 + -22.92832 11.20738 -7.79903 + -21.65936 14.17942 -7.60473 + -21.65937 14.17908 -7.60473 + -20.09836 17.04876 -7.40649 + -18.24807 19.96486 -7.20465 + -16.10382 22.92787 -6.99959 + -13.66091 25.93823 -6.79169 + -10.91459 28.99628 -6.58134 + -10.91459 28.99611 -6.58134 + -7.86657 31.97231 -6.36897 + -4.51854 34.99643 -6.15519 + -0.86569 38.06852 -5.94065 + 3.09676 41.18849 -5.72601 + 7.37360 44.35610 -5.51191 + 7.37337 44.35790 -5.51191 + 12.88252 38.36207 -5.22873 + 17.62515 32.85893 -4.94966 + 21.66640 27.83965 -4.67600 + 25.07007 23.29307 -4.40905 + 27.89830 19.20571 -4.15010 + 27.89816 19.21215 -4.15010 + 30.18348 15.13928 -3.90026 + 31.95399 11.48696 -3.66002 + 33.26457 8.23731 -3.42983 + 34.16768 5.37169 -3.21010 + 34.71323 2.87070 -3.00127 + 34.71320 2.87886 -3.00127 + 34.94119 0.59638 -2.80361 + 34.88658 -1.36336 -2.61708 + 34.59108 -3.02043 -2.44159 + 34.09370 -4.39477 -2.27705 + 33.43083 -5.50614 -2.12336 + 33.43115 -5.50041 -2.12336 + 32.84257 -6.24916 -2.01514 + 32.18559 -6.86977 -1.91279 + 31.47263 -7.37013 -1.81620 + 30.71532 -7.75797 -1.72524 + 29.92453 -8.04085 -1.63977 + 29.92549 -8.04543 -1.63977 + 29.08303 -8.78902 -1.55968 + 28.17054 -9.44703 -1.48479 + 27.19703 -10.00286 -1.41494 + 26.17489 -10.41111 -1.34995 + 25.12036 -10.65282 -1.28965 + 25.11917 -10.65426 -1.28965 + 23.79574 -11.36745 -1.22322 + 22.39910 -11.87767 -1.16293 + 20.95244 -12.20427 -1.10840 + 19.47670 -12.36536 -1.05927 + 17.99070 -12.37788 -1.01516 + 17.99080 -12.37161 -1.01516 + 16.50852 -12.31233 -0.97569 + 15.04056 -12.13520 -0.94047 + 13.60025 -11.85344 -0.90914 + 12.19943 -11.47908 -0.88132 + 10.84854 -11.02295 -0.85665 + 10.84864 -11.01914 -0.85665 + 9.55442 -10.53994 -0.83476 + 8.32158 -9.99755 -0.81534 + 7.15723 -9.39950 -0.79807 + 6.06766 -8.75233 -0.78267 + 5.05842 -8.06161 -0.76883 + 5.05848 -8.05980 -0.76883 + 4.13238 -7.36916 -0.75626 + 3.29128 -6.64374 -0.74476 + 2.53915 -5.88671 -0.73414 + 1.87963 -5.10057 -0.72418 + 1.31610 -4.28724 -0.71471 + 1.31613 -4.28672 -0.71471 + 0.85000 -3.47799 -0.70555 + 0.48241 -2.64446 -0.69661 + 0.21630 -1.78674 -0.68781 + 0.05455 -0.90521 -0.67909 + -0.00001 -0.00003 -0.67039 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4464,7 +4571,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=27 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -4477,35 +4584,33 @@ Q max -0.50000 63.63300 0.00000 47.26388 0.00000 -1.00000 63.43600 0.00000 105.81183 0.00000 -1.50000 53.13100 0.00000 203.19023 0.00000 - -2.00000 56.07000 0.00000 371.59628 0.00000 - -2.05000 56.52200 0.00000 388.15910 0.00000 - -2.20000 57.63200 0.00000 437.42187 0.00000 - -2.80000 60.15600 46.19600 633.09992 2.34311 - -3.40000 61.41100 44.66000 831.63882 14.24870 - -4.00000 62.17100 43.53700 1035.22524 27.40724 - -4.66667 71.77500 42.60200 1197.04252 43.33488 - -5.33333 71.09700 41.88900 1356.74848 60.53996 - -6.00000 70.52300 41.33100 1523.07530 78.96220 - -6.50000 70.35500 41.02600 1664.49351 96.12033 - -7.00000 69.94600 40.76300 1817.88159 113.39657 - -7.50000 69.91200 40.53400 1981.14817 130.78483 - -8.00000 69.88300 40.33300 2145.40037 148.28051 - -8.66667 70.03800 39.51700 2419.34407 171.05080 - -9.33333 69.94600 39.18600 2752.09948 193.86624 - -10.00000 70.85200 38.88500 3091.71381 217.74901 - -10.50000 70.86100 38.65900 3353.66962 236.35992 - -11.00000 70.86700 37.85800 3627.70121 253.72200 - -11.60000 71.98200 37.38400 4103.68025 271.35001 - -12.20000 72.05200 36.95500 4641.82367 289.73509 - -12.80000 72.29700 36.56600 5209.96581 308.86578 - -13.40000 72.48300 36.21100 5802.51528 328.73252 - -14.00000 72.62800 35.53700 6419.78631 348.72103 + -2.00000 55.99100 0.00000 372.53978 0.00000 + -2.66667 59.72000 46.67100 591.55603 0.02519 + -3.33333 61.28100 44.85600 812.35393 13.09396 + -4.00000 62.15600 43.58100 1039.15014 27.74474 + -4.66667 71.81700 42.64300 1200.64677 43.78047 + -5.33333 71.13700 41.92600 1360.46403 61.09624 + -6.00000 70.56100 41.36500 1526.88784 79.63100 + -6.50000 70.39100 41.05900 1668.33515 96.87494 + -7.00000 69.97800 40.79400 1821.90412 114.23750 + -7.50000 69.94100 40.56400 1985.37855 131.71250 + -8.00000 69.91000 40.36100 2149.83789 149.29528 + -8.66667 70.06200 39.54200 2424.02435 172.16695 + -9.33333 69.96500 39.21000 2757.43841 195.07989 + -10.00000 70.87400 38.90800 3097.37326 219.06050 + -10.50000 70.88000 38.65900 3359.63221 237.74456 + -11.00000 70.88500 37.87600 3633.96745 255.15403 + -11.60000 72.00200 37.40200 4109.84558 272.84410 + -12.20000 72.06700 36.97300 4648.57070 291.29173 + -12.80000 72.31100 36.58400 5217.28891 310.48540 + -13.40000 72.49500 36.22800 5810.42600 330.41548 + -14.00000 72.63900 35.53700 6428.29266 350.45652 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -4516,38 +4621,36 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.25000 13.76785 94.52775 0.00000 0.98502 0.00000 6.86583 - -0.75000 21.66822 117.09591 0.00000 1.22235 0.00000 5.40404 - -1.25000 30.26589 194.75680 0.00000 1.20464 0.00000 6.43486 - -1.75000 39.33521 336.81211 0.00000 1.11054 0.00000 8.56261 - -2.02500 44.16768 331.25643 0.00000 1.05659 0.00000 7.49997 - -2.12500 45.10617 328.41846 0.00000 1.04462 0.00000 7.28101 - -2.50000 48.58855 326.13008 3.90518 0.99669 0.08037 6.71208 - -3.10000 53.95112 330.89817 19.84265 0.92146 0.36779 6.13330 - -3.70000 58.99947 339.31069 21.93090 0.85650 0.37171 5.75108 - -4.33333 64.00045 242.72593 23.89147 0.80073 0.37330 3.79257 - -5.00000 68.95194 239.55894 25.80762 0.75451 0.37428 3.47429 - -5.66667 73.64077 249.49022 27.63336 0.71863 0.37525 3.38794 - -6.25000 76.31918 282.83643 34.31626 0.64741 0.44964 3.70597 - -6.75000 77.08040 306.77616 34.55247 0.63124 0.44827 3.97995 - -7.25000 77.76024 326.53316 34.77651 0.61719 0.44723 4.19923 - -7.75000 78.37190 328.50439 34.99137 0.60501 0.44648 4.19161 - -8.33333 81.68087 410.91555 34.15542 0.50783 0.41816 5.03074 - -9.00000 87.67230 499.13312 34.22316 0.49580 0.39035 5.69317 - -9.66667 93.60009 509.42149 35.82416 0.48688 0.38274 5.44253 - -10.25000 98.74635 523.91163 37.22181 0.48101 0.37694 5.30563 - -10.75000 103.13376 548.06318 34.72416 0.47709 0.33669 5.31410 - -11.30000 107.94001 793.29840 29.38002 0.39679 0.27219 7.34944 - -11.90000 113.16473 896.90569 30.64180 0.39342 0.27077 7.92566 - -12.50000 118.37506 946.90358 31.88448 0.39085 0.26935 7.99918 - -13.10000 123.57511 987.58245 33.11124 0.38889 0.26794 7.99176 - -13.70000 128.76820 1028.78504 33.31418 0.38741 0.25871 7.98943 + -0.25000 13.76803 94.52775 0.00000 0.98845 0.00000 6.86574 + -0.75000 21.67240 117.09591 0.00000 1.22805 0.00000 5.40300 + -1.25000 30.28105 194.75680 0.00000 1.20998 0.00000 6.43164 + -1.75000 39.36606 338.69910 0.00000 1.11486 0.00000 8.60383 + -2.33333 47.10064 328.52437 0.03778 1.02167 0.00080 6.97494 + -3.00000 53.14943 331.19684 19.60316 0.93594 0.36883 6.23143 + -3.66667 58.81453 340.19432 21.97617 0.86164 0.37365 5.78419 + -4.33333 64.10046 242.24495 24.05359 0.80207 0.37525 3.77915 + -5.00000 69.06146 239.72589 25.97365 0.75546 0.37609 3.47120 + -5.66667 73.75718 249.63572 27.80214 0.71928 0.37694 3.38456 + -6.25000 76.43987 282.89461 34.48787 0.64793 0.45118 3.70088 + -6.75000 77.20370 307.13793 34.72512 0.63163 0.44979 3.97828 + -7.25000 77.88535 326.94887 34.95001 0.61746 0.44874 4.19782 + -7.75000 78.49812 328.91868 35.16556 0.60517 0.44798 4.19015 + -8.33333 81.80767 411.27969 34.30749 0.50803 0.41937 5.02740 + -9.00000 87.79902 500.12109 34.36942 0.49590 0.39146 5.69620 + -9.66667 93.72609 509.90228 35.97092 0.48690 0.38379 5.44035 + -10.25000 98.87131 524.51790 37.36812 0.48097 0.37795 5.30506 + -10.75000 103.25760 548.67048 34.81893 0.47702 0.33720 5.31361 + -11.30000 108.06241 793.13022 29.48345 0.39677 0.27284 7.33956 + -11.90000 113.28537 897.87519 30.74606 0.39338 0.27140 7.92578 + -12.50000 118.49381 947.86369 31.98944 0.39078 0.26997 7.99927 + -13.10000 123.69186 988.56182 33.21681 0.38880 0.26854 7.99213 + -13.70000 128.88288 1029.77776 33.40174 0.38732 0.25916 7.99003 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4558,162 +4661,150 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 68.65830 9.85022 1 0 A - 0.00000 0.00000 78.96502 11.32890 1 0 A - 0.00000 0.00000 89.31898 12.81436 1 0 A - 0.00000 0.00000 99.76463 14.31297 1 0 A - 0.00000 0.00000 110.34106 15.83034 1 0 A - 0.00000 0.00000 121.08011 17.37104 1 0 A - 0.00000 0.00000 95.30118 21.55640 1 0 A - 0.00000 0.00000 103.90016 23.50142 1 0 A - 0.00000 0.00000 112.65681 25.48211 1 0 A - 0.00000 0.00000 121.57558 27.49947 1 0 A - 0.00000 0.00000 130.65470 29.55310 1 0 A - 0.00000 0.00000 139.88711 31.64140 1 0 A - 0.00000 0.00000 166.57058 31.18287 1 0 A - 0.00000 0.00000 177.73325 33.27258 1 0 A - 0.00000 0.00000 189.04818 35.39079 1 0 A - 1.23620 0.00000 200.49617 37.53391 110 0 - - 3.81255 0.00000 212.05685 39.69813 110 0 - - 6.40615 0.00000 223.70970 41.87961 110 0 - - 3.13467 0.00000 297.68151 38.60813 110 0 - - 5.57031 0.00000 313.28352 40.63165 110 0 - - 8.01507 0.00000 328.95642 42.66436 110 0 - - 10.46580 0.00000 344.67697 44.70326 110 0 - - 12.91968 0.00000 360.42413 46.74560 110 0 - - 15.37413 0.00000 376.17921 48.78898 110 0 - - 13.00424 0.00000 329.49460 46.41908 110 0 - - 13.14461 0.10000 330.19940 46.51837 110 0 - - 13.28496 0.20000 330.90411 46.61765 110 0 - - 13.42529 0.30000 331.60872 46.71692 110 0 - - 13.56560 0.40000 332.31321 46.81616 110 0 - - 13.70588 0.50000 333.01758 46.91539 110 0 - - 13.17419 0.50000 323.29507 46.38371 110 0 - - 13.59149 0.80000 325.34562 46.67791 110 0 - - 14.00848 1.10000 327.39463 46.97188 110 0 - - 14.42512 1.40000 329.44180 47.26559 110 0 - - 14.84136 1.70000 331.48685 47.55900 110 0 - - 15.25714 2.00000 333.52950 47.85206 110 0 - - 13.06155 2.00000 307.46773 45.65647 110 0 - - 14.66563 3.20000 314.97322 46.77098 110 0 - - 16.25935 4.40000 322.42646 47.87773 110 0 - - 17.84047 5.60000 329.81689 48.97514 110 0 - - 19.40712 6.80000 337.13640 50.06203 110 0 - - 20.95774 8.00000 344.37896 51.13749 110 0 - - 18.87030 8.00000 314.68321 47.27751 1 0 A - 19.26271 9.20000 321.22701 48.26064 1 0 A - 19.98632 10.40000 327.69399 49.23223 110 0 - - 21.40405 11.60000 334.08266 50.19206 110 0 - - 22.80351 12.80000 340.39239 51.14002 110 0 - - 24.18440 14.00000 346.62331 52.07614 110 0 - - 21.00739 14.00000 325.02241 48.40495 1 0 A - 21.81026 15.20000 330.79174 49.26417 110 0 - - 23.08977 16.40000 336.48882 50.11262 110 0 - - 24.35215 17.60000 342.11502 50.95052 110 0 - - 25.59782 18.80000 347.67194 51.77810 110 0 - - 26.82728 20.00000 353.16135 52.59563 110 0 - - 23.40274 20.00000 232.89324 49.17109 110 0 - - 24.69206 21.33333 236.86479 50.00961 110 0 - - 25.96395 22.66667 240.78473 50.83723 110 0 - - 27.21962 24.00000 244.65492 51.65435 110 0 - - 28.46032 25.33333 248.47722 52.46136 110 0 - - 29.68725 26.66667 252.25348 53.25865 110 0 - - 26.61300 26.66667 231.08403 50.18439 110 0 - - 27.78199 28.00000 234.50291 50.92687 110 0 - - 28.94061 29.33333 237.88296 51.66091 110 0 - - 30.09040 30.66667 241.22581 52.38688 110 0 - - 31.23292 32.00000 244.53303 53.10511 110 0 - - 32.36973 33.33333 247.80615 53.81593 110 0 - - 29.81092 33.33333 241.64698 51.25712 110 0 - - 30.91013 34.66667 244.80693 51.92739 110 0 - - 32.00723 36.00000 247.93645 52.59121 110 0 - - 33.10390 37.33333 251.03688 53.24886 110 0 - - 34.20182 38.66667 254.10951 53.90062 110 0 - - 35.30264 40.00000 257.15556 54.54673 110 0 - - 41.44283 40.00000 281.29525 49.14047 110 0 - - 41.69151 41.00000 281.92298 49.25013 110 0 - - 41.94002 42.00000 282.53561 49.35715 110 0 - - 42.18857 43.00000 283.13367 49.46163 110 0 - - 42.43740 44.00000 283.71765 49.56365 110 0 - - 42.68672 45.00000 284.28803 49.66329 110 0 - - 41.44644 45.00000 305.30546 48.42301 110 0 - - 41.69401 46.00000 305.90390 48.51793 110 0 - - 41.94235 47.00000 306.48871 48.61068 110 0 - - 42.19147 48.00000 307.06038 48.70135 110 0 - - 42.44137 49.00000 307.61934 48.79000 110 0 - - 42.69203 50.00000 308.16604 48.87671 110 0 - - 41.60410 50.00000 325.14478 47.78878 110 0 - - 41.85362 51.00000 325.70912 47.87172 110 0 - - 42.10373 52.00000 326.26140 47.95289 110 0 - - 42.35421 53.00000 326.80205 48.03236 110 0 - - 42.60483 54.00000 327.33148 48.11017 110 0 - - 42.85538 55.00000 327.85008 48.18639 110 0 - - 41.90408 55.00000 327.25508 47.23510 110 0 - - 42.15280 56.00000 327.76231 47.30831 110 0 - - 42.40080 57.00000 328.25947 47.38007 110 0 - - 42.64761 58.00000 328.74693 47.45043 110 0 - - 42.89278 59.00000 329.22504 47.51943 110 0 - - 43.13586 60.00000 329.69412 47.58714 110 0 - - 32.89045 60.00000 395.69691 39.94406 1 0 A - 33.39753 61.33333 401.79751 40.55989 1 0 A - 33.90315 62.66667 407.88044 41.17394 1 0 A - 34.40736 64.00000 413.94655 41.78629 1 0 A - 34.91025 65.33333 419.99665 42.39702 1 0 A - 35.41187 66.66667 426.03152 43.00622 1 0 A - 33.05729 66.66667 482.12927 41.98736 1 0 A - 33.52443 68.00000 488.94240 42.58069 1 0 A - 33.99051 69.33333 495.73994 43.17267 1 0 A - 34.45557 70.66667 502.52269 43.76337 1 0 A - 34.91967 72.00000 509.29138 44.35283 1 0 A - 35.38285 73.33333 516.04671 44.94114 1 0 A - 34.69243 73.33333 493.32827 44.13265 1 0 A - 35.14573 74.66667 499.77410 44.70929 1 0 A - 35.59821 76.00000 506.20844 45.28490 1 0 A - 36.04993 77.33333 512.63189 45.85953 1 0 A - 36.50092 78.66667 519.04503 46.43325 1 0 A - 36.95122 80.00000 525.44839 47.00608 1 0 A - 36.39196 80.00000 512.23125 46.43888 1 0 A - 36.72416 81.00000 516.90703 46.86278 1 0 A - 37.05601 82.00000 521.57794 47.28625 1 0 A - 37.38753 83.00000 526.24419 47.70929 1 0 A - 37.71873 84.00000 530.90596 48.13192 1 0 A - 38.04962 85.00000 535.56346 48.55417 1 0 A - 33.98637 85.00000 536.41844 48.15846 1 0 A - 34.28167 86.00000 541.07926 48.57690 1 0 A - 34.57673 87.00000 545.73615 48.99498 1 0 A - 35.12499 88.00000 550.38928 49.41273 110 0 - - 36.18951 89.00000 555.03881 49.83016 110 0 - - 37.20663 90.00000 559.68490 50.24727 110 0 - - 28.74907 90.00000 774.04811 41.78971 110 0 - - 29.82549 91.20000 781.75282 42.20568 110 0 - - 30.84004 92.40000 789.45135 42.62131 110 0 - - 31.79648 93.60000 797.14402 43.03663 110 0 - - 32.69857 94.80000 804.83118 43.45164 110 0 - - 33.55007 96.00000 812.51312 43.86638 110 0 - - 33.17856 96.00000 876.21757 43.49487 110 0 - - 33.97986 97.20000 884.49651 43.90583 110 0 - - 34.73836 98.40000 892.77048 44.31654 110 0 - - 35.45779 99.60000 901.03977 44.72702 110 0 - - 36.14187 100.80000 909.30466 45.13729 110 0 - - 36.79433 102.00000 917.56544 45.54735 110 0 - - 36.49580 102.00000 926.07655 45.24882 110 0 - - 37.11763 103.20000 934.41006 45.65600 110 0 - - 37.71473 104.40000 942.73993 46.06301 110 0 - - 38.29009 105.60000 951.06641 46.46985 110 0 - - 38.84673 106.80000 959.38974 46.87653 110 0 - - 39.38765 108.00000 967.71014 47.28307 110 0 - - 39.15046 108.00000 966.81216 47.04588 110 0 - - 39.67647 109.20000 975.12213 47.45025 110 0 - - 40.19178 110.40000 983.42959 47.85450 110 0 - - 40.69832 111.60000 991.73475 48.25864 110 0 - - 41.19803 112.80000 1000.03780 48.66267 110 0 - - 41.69284 114.00000 1008.33892 49.06661 110 0 - - 41.50721 114.00000 1008.04562 48.88098 110 0 - - 41.99734 115.20000 1016.34256 49.28330 110 0 - - 42.48525 116.40000 1024.63791 49.68555 110 0 - - 42.97160 117.60000 1032.93183 50.08773 110 0 - - 43.45710 118.80000 1041.22448 50.48985 110 0 - - 43.94243 120.00000 1049.51599 50.89191 110 0 - + 0.00000 0.00000 68.65741 9.88452 1 0 A + 0.00000 0.00000 78.96408 11.36836 1 0 A + 0.00000 0.00000 89.31846 12.85906 1 0 A + 0.00000 0.00000 99.76543 14.36310 1 0 A + 0.00000 0.00000 110.34450 15.88615 1 0 A + 0.00000 0.00000 121.08782 17.43286 1 0 A + 0.00000 0.00000 95.29009 21.65847 1 0 A + 0.00000 0.00000 103.89234 23.61368 1 0 A + 0.00000 0.00000 112.65381 25.60507 1 0 A + 0.00000 0.00000 121.57898 27.63367 1 0 A + 0.00000 0.00000 130.66608 29.69908 1 0 A + 0.00000 0.00000 139.90796 31.79967 1 0 A + 0.00000 0.00000 166.54416 31.33196 1 0 A + 1.06748 0.00000 177.71634 33.43378 110 0 - + 3.50867 0.00000 189.04222 35.56452 110 0 - + 5.97510 0.00000 200.50242 37.72052 110 0 - + 8.46289 0.00000 212.07639 39.89794 110 0 - + 10.96808 0.00000 223.74340 42.09285 110 0 - + 7.65873 0.00000 299.30957 38.78350 110 0 - + 10.00387 0.00000 315.01441 40.81848 110 0 - + 12.35803 0.00000 330.79119 42.86278 110 0 - + 14.71789 0.00000 346.61633 44.91334 110 0 - + 17.08043 0.00000 362.46848 46.96741 110 0 - + 19.44296 0.00000 378.32866 49.02252 110 0 - + 15.34531 0.00000 306.70296 44.92487 110 0 - + 17.03601 1.33333 315.46351 46.20809 110 0 - + 18.71743 2.66667 324.18509 47.48560 110 0 - + 20.38583 4.00000 332.84625 48.75426 110 0 - + 22.03817 5.33333 341.43027 50.01162 110 0 - + 23.67198 6.66667 349.92455 51.25583 110 0 - + 19.37088 6.66667 312.62323 46.95474 110 0 - + 20.88117 8.00000 320.12365 48.08127 110 0 - + 22.37148 9.33333 327.53007 49.19368 110 0 - + 23.84134 10.66667 334.83892 50.29144 110 0 - + 25.29052 12.00000 342.04831 51.37426 110 0 - + 26.71902 13.33333 349.15768 52.44206 110 0 - + 22.55641 13.33333 324.09806 48.27945 110 0 - + 23.88087 14.66667 330.60477 49.24873 110 0 - + 25.18672 16.00000 337.02026 50.20442 110 0 - + 26.47475 17.33333 343.34625 51.14677 110 0 - + 27.74584 18.66667 349.58489 52.07611 110 0 - + 29.00090 20.00000 355.73862 52.99281 110 0 - + 25.33694 20.00000 232.42465 49.32885 110 0 - + 26.51445 21.33333 236.39149 50.17076 110 0 - + 27.67901 22.66667 240.30640 51.00164 110 0 - + 28.83194 24.00000 244.17122 51.82189 110 0 - + 29.97451 25.33333 247.98785 52.63192 110 0 - + 31.10804 26.66667 251.75814 53.43211 110 0 - + 28.00279 26.66667 231.24327 50.32686 110 0 - + 29.08266 28.00000 234.66550 51.07166 110 0 - + 30.15684 29.33333 238.04854 51.80794 110 0 - + 31.22683 30.66667 241.39405 52.53604 110 0 - + 32.29410 32.00000 244.70360 53.25632 110 0 - + 33.36013 33.33333 247.97873 53.96910 110 0 - + 30.77578 33.33333 241.78963 51.38475 110 0 - + 31.80827 34.66667 244.95093 52.05658 110 0 - + 32.84289 36.00000 248.08152 52.72189 110 0 - + 33.88117 37.33333 251.18275 53.38096 110 0 - + 34.92463 38.66667 254.25594 54.03407 110 0 - + 35.97477 40.00000 257.30232 54.68148 110 0 - + 41.77453 40.00000 281.34941 49.25722 110 0 - + 42.00912 41.00000 281.97884 49.36741 110 0 - + 42.24430 42.00000 282.59305 49.47495 110 0 - + 42.48027 43.00000 283.19256 49.57991 110 0 - + 42.71722 44.00000 283.77786 49.68238 110 0 - + 42.95534 45.00000 284.34945 49.78245 110 0 - + 41.70258 45.00000 305.66309 48.52969 110 0 - + 41.93957 46.00000 306.26329 48.62498 110 0 - + 42.17795 47.00000 306.84972 48.71809 110 0 - + 42.41772 48.00000 307.42288 48.80909 110 0 - + 42.65883 49.00000 307.98322 48.89805 110 0 - + 42.90127 50.00000 308.53118 48.98505 110 0 - + 41.80242 50.00000 325.55758 47.88621 110 0 - + 42.04421 51.00000 326.12317 47.96940 110 0 - + 42.28708 52.00000 326.67659 48.05080 110 0 - + 42.53081 53.00000 327.21827 48.13048 110 0 - + 42.77513 54.00000 327.74861 48.20849 110 0 - + 43.01981 55.00000 328.26802 48.28488 110 0 - + 42.05900 55.00000 327.66779 47.32407 110 0 - + 42.30225 56.00000 328.17572 47.39743 110 0 - + 42.54517 57.00000 328.67349 47.46932 110 0 - + 42.78728 58.00000 329.16146 47.53980 110 0 - + 43.02810 59.00000 329.63999 47.60891 110 0 - + 43.26718 60.00000 330.10941 47.67671 110 0 - + 33.03875 60.00000 396.06991 40.02353 1 0 A + 33.54735 61.33333 402.16709 40.63966 1 0 A + 34.05447 62.66667 408.24644 41.25398 1 0 A + 34.56017 64.00000 414.30880 41.86660 1 0 A + 35.06452 65.33333 420.35501 42.47757 1 0 A + 35.56759 66.66667 426.38584 43.08700 1 0 A + 33.20030 66.66667 483.10893 42.05811 1 0 A + 33.66875 68.00000 489.92550 42.65154 1 0 A + 34.13612 69.33333 496.72633 43.24360 1 0 A + 34.60246 70.66667 503.51220 43.83436 1 0 A + 35.06783 72.00000 510.28387 44.42388 1 0 A + 35.53226 73.33333 517.04204 45.01223 1 0 A + 34.83625 73.33333 493.81786 44.19572 1 0 A + 35.29073 74.66667 500.26025 44.77230 1 0 A + 35.74439 76.00000 506.69104 45.34784 1 0 A + 36.19727 77.33333 513.11084 45.92240 1 0 A + 36.64942 78.66667 519.52022 46.49602 1 0 A + 37.10087 80.00000 525.91973 47.06877 1 0 A + 36.53625 80.00000 512.84136 46.49588 1 0 A + 36.86926 81.00000 517.51563 46.91967 1 0 A + 37.20192 82.00000 522.18500 47.34301 1 0 A + 37.53424 83.00000 526.84965 47.76592 1 0 A + 37.86624 84.00000 531.50979 48.18842 1 0 A + 38.19793 85.00000 536.16560 48.61054 1 0 A + 34.08021 85.00000 537.02995 48.21083 1 0 A + 34.37589 86.00000 541.68912 48.62910 1 0 A + 34.67131 87.00000 546.34432 49.04701 1 0 A + 35.31515 88.00000 550.99572 49.46458 110 0 - + 36.38230 89.00000 555.64349 49.88182 110 0 - + 37.40224 90.00000 560.28778 50.29876 110 0 - + 28.94078 90.00000 773.91174 41.83729 110 0 - + 30.02088 91.20000 781.60377 42.25312 110 0 - + 31.03931 92.40000 789.28956 42.66861 110 0 - + 31.99977 93.60000 796.96945 43.08378 110 0 - + 32.90599 94.80000 804.64376 43.49865 110 0 - + 33.76167 96.00000 812.31283 43.91324 110 0 - + 33.38642 96.00000 877.19387 43.53798 110 0 - + 34.19190 97.20000 885.47013 43.94876 110 0 - + 34.95459 98.40000 893.74136 44.35929 110 0 - + 35.67820 99.60000 902.00787 44.76958 110 0 - + 36.36642 100.80000 910.26994 45.17966 110 0 - + 37.02299 102.00000 918.52784 45.58952 110 0 - + 36.72143 102.00000 927.04414 45.28797 110 0 - + 37.34729 103.20000 935.37468 45.69493 110 0 - + 37.94836 104.40000 943.70156 46.10172 110 0 - + 38.52764 105.60000 952.02500 46.50833 110 0 - + 39.08814 106.80000 960.34526 46.91479 110 0 - + 39.63286 108.00000 968.66257 47.32111 110 0 - + 39.39324 108.00000 967.79863 47.08149 110 0 - + 39.92298 109.20000 976.10578 47.48562 110 0 - + 40.44197 110.40000 984.41039 47.88962 110 0 - + 40.95215 111.60000 992.71269 48.29351 110 0 - + 41.45547 112.80000 1001.01284 48.69730 110 0 - + 41.95385 114.00000 1009.31105 49.10099 110 0 - + 41.76630 114.00000 1009.04511 48.91343 110 0 - + 42.25998 115.20000 1017.33935 49.31549 110 0 - + 42.75141 116.40000 1025.63199 49.71748 110 0 - + 43.24129 117.60000 1033.92318 50.11940 110 0 - + 43.73030 118.80000 1042.21308 50.52125 110 0 - + 44.21914 120.00000 1050.50184 50.92305 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4726,10 +4817,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 104.413 'Clay' - -6.00 84.442 'Peat' - -8.00 105.654 'Sand 1' - -11.00 112.482 'Sand 2' + 0.00 116.378 'Clay' + -6.00 84.869 'Peat' + -8.00 106.095 'Sand 1' + -11.00 113.187 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4744,7 +4835,7 @@ Method Ka,K0,Kp [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.20 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile initial @@ -4796,7 +4887,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4831,138 +4922,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.10000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.30000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.50000 0.00000 0.00000 -1 0 - - 0.00000 0.50000 0.00000 0.00000 -1 0 - - 0.00000 0.80000 0.00000 0.00000 -1 0 - - 0.00000 1.10000 0.00000 0.00000 -1 0 - - 0.00000 1.40000 0.00000 0.00000 -1 0 - - 0.00000 1.70000 0.00000 0.00000 -1 0 - - 0.00000 2.00000 0.00000 0.00000 -1 0 - - 12.97277 2.00000 12.97277 0.00000 202 100 P - 15.12691 3.20000 15.12691 0.46198 202 100 P - 17.28106 4.40000 17.28106 0.92395 202 100 P - 19.43521 5.60000 19.43521 1.38593 202 100 P - 21.58935 6.80000 21.58935 1.84790 202 100 P - 23.74350 8.00000 23.74350 2.30988 202 100 P - 32.48963 8.00000 48.24761 2.30988 110 67 - - 32.48178 9.20000 50.40176 2.77185 110 64 - - 32.47974 10.40000 52.55591 3.23383 110 62 - - 32.48380 11.60000 54.71005 3.69580 110 59 - - 32.49429 12.80000 56.86420 4.15778 110 57 - - 32.51150 14.00000 59.01834 4.61975 110 55 - - 32.51150 14.00000 64.78402 4.61975 110 50 - - 32.53563 15.20000 66.93816 5.08173 110 49 - - 32.56655 16.40000 69.09231 5.54370 110 47 - - 32.60405 17.60000 71.24646 6.00568 110 46 - - 32.64793 18.80000 73.40060 6.46765 110 44 - - 32.69798 20.00000 75.55475 6.92963 110 43 - - 32.69798 20.00000 75.55475 6.92963 110 43 - - 32.76048 21.33333 77.94825 7.44293 110 42 - - 32.82952 22.66667 80.34174 7.95624 110 41 - - 32.90427 24.00000 82.73524 8.46954 110 40 - - 32.98389 25.33333 85.12873 8.98285 110 39 - - 33.06755 26.66667 87.52223 9.49615 110 38 - - 33.06755 26.66667 87.52223 9.49615 110 38 - - 33.15434 28.00000 89.91572 10.00946 110 37 - - 33.24307 29.33333 92.30922 10.52277 110 36 - - 33.33255 30.66667 94.70272 11.03607 110 35 - - 33.42156 32.00000 97.09621 11.54938 110 34 - - 33.50888 33.33333 99.48971 12.06268 110 34 - - 33.50888 33.33333 99.48971 12.06268 110 34 - - 33.59325 34.66667 101.88320 12.57599 110 33 - - 33.67328 36.00000 104.27670 13.08929 110 32 - - 33.74756 37.33333 106.67020 13.60260 110 32 - - 33.81471 38.66667 109.06369 14.11591 110 31 - - 33.87330 40.00000 111.45719 14.62921 110 30 - - 21.04263 40.00000 95.35975 13.34499 110 22 - - 20.96214 41.00000 95.69740 13.40352 110 22 - - 20.87919 42.00000 96.03505 13.46206 110 22 - - 20.79365 43.00000 96.37270 13.52059 110 22 - - 20.70536 44.00000 96.71035 13.57912 110 21 - - 20.61421 45.00000 97.04800 13.63765 110 21 - - 20.61421 45.00000 97.04800 13.63765 110 21 - - 20.52009 46.00000 97.38565 13.69618 110 21 - - 20.42304 47.00000 97.72330 13.75471 110 21 - - 20.32312 48.00000 98.06095 13.81324 110 21 - - 20.22041 49.00000 98.39861 13.87177 110 21 - - 20.11498 50.00000 98.73626 13.93030 110 20 - - 20.11498 50.00000 98.73626 13.93030 110 20 - - 20.00694 51.00000 99.07391 13.98883 110 20 - - 19.89653 52.00000 99.41156 14.04736 110 20 - - 19.78404 53.00000 99.74921 14.10589 110 20 - - 19.66976 54.00000 100.08686 14.16442 110 20 - - 19.55397 55.00000 100.42451 14.22295 110 19 - - 19.55397 55.00000 100.42451 14.22295 110 19 - - 19.43699 56.00000 100.76216 14.28148 110 19 - - 19.31928 57.00000 101.09981 14.34002 110 19 - - 19.20136 58.00000 101.43747 14.39855 110 19 - - 19.08373 59.00000 101.77512 14.45708 110 19 - - 18.96689 60.00000 102.11277 14.51561 110 19 - - 67.66805 60.00000 177.47115 12.02706 110 38 - - 65.35648 61.33333 186.05846 12.60901 110 35 - - 63.09303 62.66667 194.64578 13.19096 110 32 - - 60.89022 64.00000 203.23309 13.77292 110 30 - - 58.76058 65.33333 211.82040 14.35487 110 28 - - 56.71660 66.66667 220.40772 14.93683 110 26 - - 56.71660 66.66667 220.40772 14.93683 110 26 - - 54.76877 68.00000 228.99503 15.51878 110 24 - - 52.92179 69.33333 237.58235 16.10074 110 22 - - 51.17950 70.66667 246.16966 16.68269 110 21 - - 49.54577 72.00000 254.75697 17.26464 110 19 - - 48.02445 73.33333 263.34429 17.84660 110 18 - - 48.02445 73.33333 263.34429 17.84660 110 18 - - 46.61801 74.66667 271.93160 18.42855 110 17 - - 45.32554 76.00000 280.51891 19.01051 110 16 - - 44.14587 77.33333 289.10623 19.59246 110 15 - - 43.07782 78.66667 297.69354 20.17442 110 14 - - 42.12020 80.00000 306.28086 20.75637 110 14 - - 42.12020 80.00000 306.28086 20.75637 110 14 - - 41.47335 81.00000 312.72134 21.19284 110 13 - - 40.88606 82.00000 319.16183 21.62930 110 13 - - 40.35699 83.00000 325.60231 22.06577 110 12 - - 39.88478 84.00000 332.04280 22.50223 110 12 - - 39.46808 85.00000 338.48328 22.93870 110 12 - - 39.46808 85.00000 338.48328 22.93870 110 12 - - 39.10549 86.00000 344.92377 23.37516 110 11 - - 38.79534 87.00000 351.36425 23.81163 110 11 - - 38.53583 88.00000 357.80474 24.24810 110 11 - - 38.32520 89.00000 364.24522 24.68456 110 11 - - 38.16167 90.00000 370.68571 25.12103 110 10 - - 33.66662 90.00000 386.84927 20.62598 110 9 - - 33.43621 91.20000 394.91485 21.05602 110 8 - - 33.26733 92.40000 402.98043 21.48606 110 8 - - 33.15625 93.60000 411.04602 21.91610 110 8 - - 33.09921 94.80000 419.11160 22.34614 110 8 - - 33.09249 96.00000 427.17718 22.77618 110 8 - - 33.09249 96.00000 427.17718 22.77618 110 8 - - 33.13219 97.20000 435.24277 23.20622 110 8 - - 33.21444 98.40000 443.30835 23.63626 110 7 - - 33.33553 99.60000 451.37393 24.06630 110 7 - - 33.49176 100.80000 459.43951 24.49634 110 7 - - 33.67940 102.00000 467.50510 24.92638 110 7 - - 33.67940 102.00000 467.50510 24.92638 110 7 - - 33.89479 103.20000 475.57068 25.35642 110 7 - - 34.13474 104.40000 483.63626 25.78646 110 7 - - 34.39625 105.60000 491.70185 26.21650 110 7 - - 34.67634 106.80000 499.76743 26.64654 110 7 - - 34.97200 108.00000 507.83301 27.07658 110 7 - - 34.97200 108.00000 507.83301 27.07658 110 7 - - 35.28040 109.20000 515.89860 27.50662 110 7 - - 35.59938 110.40000 523.96418 27.93666 110 7 - - 35.92701 111.60000 532.02976 28.36670 110 7 - - 36.26138 112.80000 540.09535 28.79674 110 7 - - 36.60055 114.00000 548.16093 29.22678 110 7 - - 36.60055 114.00000 548.16093 29.22678 110 7 - - 36.94278 115.20000 556.22651 29.65682 110 7 - - 37.28716 116.40000 564.29210 30.08686 110 7 - - 37.63302 117.60000 572.35768 30.51690 110 7 - - 37.97968 118.80000 580.42326 30.94694 110 7 - - 38.32646 120.00000 588.48885 31.37698 110 7 - + 29.57956 0.00000 43.24256 0.00000 110 68 - + 29.68539 1.33333 45.63605 0.51331 110 65 - + 29.79478 2.66667 48.02955 1.02661 110 62 - + 29.90834 4.00000 50.42304 1.53992 110 59 - + 30.02667 5.33333 52.81654 2.05322 110 57 - + 30.15038 6.66667 55.21003 2.56653 110 55 - + 30.15038 6.66667 55.21003 2.56653 110 55 - + 30.27993 8.00000 57.60353 3.07983 110 53 - + 30.41534 9.33333 59.99703 3.59314 110 51 - + 30.55655 10.66667 62.39052 4.10645 110 49 - + 30.70349 12.00000 64.78402 4.61975 110 47 - + 30.85610 13.33333 67.17751 5.13306 110 46 - + 30.85610 13.33333 67.17751 5.13306 110 46 - + 31.01422 14.66667 69.57101 5.64636 110 45 - + 31.17737 16.00000 71.96451 6.15967 110 43 - + 31.34499 17.33333 74.35800 6.67297 110 42 - + 31.51655 18.66667 76.75150 7.18628 110 41 - + 31.69149 20.00000 79.14499 7.69958 110 40 - + 31.69149 20.00000 79.14499 7.69958 110 40 - + 31.86920 21.33333 81.53849 8.21289 110 39 - + 32.04882 22.66667 83.93198 8.72620 110 38 - + 32.22946 24.00000 86.32548 9.23950 110 37 - + 32.41021 25.33333 88.71898 9.75281 110 37 - + 32.59018 26.66667 91.11247 10.26611 110 36 - + 32.59018 26.66667 91.11247 10.26611 110 36 - + 32.76842 28.00000 93.50597 10.77942 110 35 - + 32.94382 29.33333 95.89946 11.29272 110 34 - + 33.11524 30.66667 98.29296 11.80603 110 34 - + 33.28155 32.00000 100.68646 12.31934 110 33 - + 33.44161 33.33333 103.07995 12.83264 110 32 - + 33.44161 33.33333 103.07995 12.83264 110 32 - + 33.59426 34.66667 105.47345 13.34595 110 32 - + 33.73825 36.00000 107.86694 13.85925 110 31 - + 33.87235 37.33333 110.26044 14.37256 110 31 - + 33.99530 38.66667 112.65394 14.88586 110 30 - + 34.10588 40.00000 115.04743 15.39917 110 30 - + 21.53005 40.00000 99.41156 14.04736 110 22 - + 21.46419 41.00000 99.74921 14.10589 110 22 - + 21.39507 42.00000 100.08686 14.16442 110 21 - + 21.32259 43.00000 100.42451 14.22295 110 21 - + 21.24665 44.00000 100.76216 14.28148 110 21 - + 21.16713 45.00000 101.09981 14.34002 110 21 - + 21.16713 45.00000 101.09981 14.34002 110 21 - + 21.08396 46.00000 101.43747 14.39855 110 21 - + 20.99721 47.00000 101.77512 14.45708 110 21 - + 20.90698 48.00000 102.11277 14.51561 110 20 - + 20.81336 49.00000 102.45042 14.57414 110 20 - + 20.71645 50.00000 102.78807 14.63267 110 20 - + 20.71645 50.00000 102.78807 14.63267 110 20 - + 20.61639 51.00000 103.12572 14.69120 110 20 - + 20.51345 52.00000 103.46337 14.74973 110 20 - + 20.40793 53.00000 103.80102 14.80826 110 20 - + 20.30014 54.00000 104.13867 14.86679 110 19 - + 20.19040 55.00000 104.47633 14.92532 110 19 - + 20.19040 55.00000 104.47633 14.92532 110 19 - + 20.07903 56.00000 104.81398 14.98385 110 19 - + 19.96654 57.00000 105.15163 15.04238 110 19 - + 19.85344 58.00000 105.48928 15.10091 110 19 - + 19.74025 59.00000 105.82693 15.15945 110 19 - + 19.62750 60.00000 106.16458 15.21798 110 18 - + 67.72812 60.00000 186.05846 12.60901 110 36 - + 65.47828 61.33333 194.64578 13.19096 110 34 - + 63.26955 62.66667 203.23309 13.77292 110 31 - + 61.11491 64.00000 211.82040 14.35487 110 29 - + 59.02734 65.33333 220.40772 14.93683 110 27 - + 57.01982 66.66667 228.99503 15.51878 110 25 - + 57.01982 66.66667 228.99503 15.51878 110 25 - + 55.10330 68.00000 237.58235 16.10074 110 23 - + 53.28292 69.33333 246.16966 16.68269 110 22 - + 51.56293 70.66667 254.75697 17.26464 110 20 - + 49.94761 72.00000 263.34429 17.84660 110 19 - + 48.44122 73.33333 271.93160 18.42855 110 18 - + 48.44122 73.33333 271.93160 18.42855 110 18 - + 47.04664 74.66667 280.51891 19.01051 110 17 - + 45.76329 76.00000 289.10623 19.59246 110 16 - + 44.59031 77.33333 297.69354 20.17442 110 15 - + 43.52682 78.66667 306.28086 20.75637 110 14 - + 42.57197 80.00000 314.86817 21.33832 110 14 - + 42.57197 80.00000 314.86817 21.33832 110 14 - + 41.92617 81.00000 321.30865 21.77479 110 13 - + 41.33918 82.00000 327.74914 22.21126 110 13 - + 40.80972 83.00000 334.18963 22.64772 110 12 - + 40.33655 84.00000 340.63011 23.08419 110 12 - + 39.91838 85.00000 347.07060 23.52065 110 12 - + 39.91838 85.00000 347.07060 23.52065 110 12 - + 39.55392 86.00000 353.51108 23.95712 110 11 - + 39.24152 87.00000 359.95157 24.39358 110 11 - + 38.97948 88.00000 366.39205 24.83005 110 11 - + 38.76604 89.00000 372.83254 25.26652 110 10 - + 38.59949 90.00000 379.27302 25.70298 110 10 - + 34.00032 90.00000 395.81103 21.10380 110 9 - + 33.76608 91.20000 403.87661 21.53384 110 8 - + 33.59319 92.40000 411.94219 21.96388 110 8 - + 33.47793 93.60000 420.00777 22.39392 110 8 - + 33.41663 94.80000 428.07336 22.82396 110 8 - + 33.40557 96.00000 436.13894 23.25400 110 8 - + 33.40557 96.00000 436.13894 23.25400 110 8 - + 33.44090 97.20000 444.20452 23.68404 110 8 - + 33.51878 98.40000 452.27011 24.11408 110 7 - + 33.63551 99.60000 460.33569 24.54412 110 7 - + 33.78739 100.80000 468.40127 24.97416 110 7 - + 33.97074 102.00000 476.46686 25.40420 110 7 - + 33.97074 102.00000 476.46686 25.40420 110 7 - + 34.18188 103.20000 484.53244 25.83424 110 7 - + 34.41764 104.40000 492.59802 26.26428 110 7 - + 34.67501 105.60000 500.66361 26.69432 110 7 - + 34.95102 106.80000 508.72919 27.12436 110 7 - + 35.24266 108.00000 516.79477 27.55440 110 7 - + 35.24266 108.00000 516.79477 27.55440 110 7 - + 35.54708 109.20000 524.86036 27.98444 110 7 - + 35.86213 110.40000 532.92594 28.41448 110 7 - + 36.18588 111.60000 540.99152 28.84452 110 7 - + 36.51639 112.80000 549.05711 29.27456 110 7 - + 36.85173 114.00000 557.12269 29.70460 110 7 - + 36.85173 114.00000 557.12269 29.70460 110 7 - + 37.19016 115.20000 565.18827 30.13464 110 7 - + 37.53075 116.40000 573.25385 30.56468 110 7 - + 37.87283 117.60000 581.31944 30.99472 110 7 - + 38.21570 118.80000 589.38502 31.42476 110 6 - + 38.55871 120.00000 597.45060 31.85480 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4975,10 +5054,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 116.639 'Clay' - -6.00 40.151 'Peat' - -8.00 145.740 'Sand 1' - -11.00 104.458 'Sand 2' + 0.00 127.048 'Clay' + -6.00 41.336 'Peat' + -8.00 146.856 'Sand 1' + -11.00 105.304 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4986,7 +5065,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5016,34 +5095,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.08000 - -2.11000 - -2.14000 - -2.17000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5200,8 +5267,8 @@ Is permanent (0=false, 1=true) Is favorable (0=false, 1=true) [END OF COLUMN INDICATION] [DATA] - 0 1 2.00 44.00 0 0 - 0 1 10.00 44.00 0 0 + 0 1 2.00 44.44 0 0 + 0 1 10.00 44.44 0 0 1 0 2.00 60.00 1 1 1 0 5.00 60.00 1 1 [END OF DATA] @@ -5219,7 +5286,7 @@ Is favorable (0=false, 1=true) [END OF COLUMN INDICATION] [DATA] 2 0.00 0.00 0 1 - 3 -1.00 -330.00 0 0 + 3 -1.00 -333.30 0 0 [END OF DATA] [END OF TABLE] [END OF HORIZONTAL LINE LOAD DATA] @@ -5229,22 +5296,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 22.61 : Percentage mobilized resistance left - 7.55 : Percentage mobilized resistance right - 734.90 : Effective left - 484.92 : Effective right + 22.23 : Percentage mobilized resistance left + 7.49 : Percentage mobilized resistance right + 734.58 : Effective left + 481.35 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 3250.41 : Max effective resistance left - 6419.72 : Max effective resistance right --27737.33 : Max moment left --49094.47 : Max moment right --3472.22 : Max mobilized moment left --3637.56 : Max mobilized moment right - 222.98 : Vertical force left - 191.16 : Vertical force right - 12.5 : Max mobilized moment percentage left - 7.4 : Max mobilized moment percentage right + 3304.73 : Max effective resistance left + 6428.19 : Max effective resistance right +-27916.49 : Max moment left +-49143.80 : Max moment right +-3398.70 : Max mobilized moment left +-3566.30 : Max mobilized moment right + 223.18 : Vertical force left + 188.78 : Vertical force right + 12.2 : Max mobilized moment percentage left + 7.3 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -5252,169 +5319,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -443.89171 - 0.00000 0.00000 -434.99787 - 0.00000 0.00000 -426.10403 - 0.00000 0.00000 -417.21020 - 0.00000 0.00000 -408.31636 - 0.00000 0.00000 -399.42252 - 0.00000 0.00000 -399.42252 - 0.00000 0.00000 -390.52868 - 0.00000 0.00000 -381.63485 - 0.00000 0.00000 -372.74101 - 0.00000 0.00000 -363.84717 - 0.00000 0.00000 -354.95333 - 0.00058 445.49536 -354.95333 - 44.55012 445.49536 -346.06083 - 89.09965 445.49536 -337.17630 - 133.64919 445.49536 -328.30772 - 178.19872 445.49536 -319.46307 - 222.74826 445.49536 -310.65033 - 222.74768 337.90170 -310.65033 - 256.53785 337.90170 -301.87715 - 290.32802 337.90170 -293.14991 - 324.11819 337.90170 -284.47465 - 357.90836 337.90170 -275.85743 - 391.69853 337.90170 -267.30428 - 391.69853 337.90171 -267.30428 - 395.07755 337.90171 -266.45273 - 398.45657 337.90171 -265.60188 - 401.83559 337.90171 -264.75174 - 405.21460 337.90171 -263.90233 - 408.59362 337.90171 -263.05364 - 408.59362 337.90171 -263.05364 - 418.73024 337.85850 -260.51198 - 428.86427 337.72882 -257.97707 - 438.99310 337.51247 -255.44907 - 449.11414 337.20919 -252.92814 - 459.22478 336.81856 -250.41445 - 459.22477 336.81866 -250.41445 - 499.55211 335.07851 -240.43542 - 539.58840 331.95808 -230.58521 - 579.16408 327.38861 -220.87402 - 618.10030 321.28501 -211.31201 - 656.20732 313.55236 -201.90936 - 656.20841 313.54297 -201.90936 - 693.49041 307.56742 -192.67617 - 729.96140 300.01209 -183.62183 - 765.42692 290.79711 -174.75546 - 799.68351 279.85226 -166.08616 - 832.51993 267.11889 -157.62305 - 832.52003 267.10553 -157.62305 - 863.26302 244.83130 -149.37531 - 891.17161 219.85897 -141.35025 - 915.92004 192.15832 -133.55421 - 937.17990 161.71502 -125.99351 - 954.62193 128.52886 -118.67449 - 954.64418 128.10375 -118.67449 - 969.11986 88.78067 -110.83268 - 978.34022 49.93443 -103.29946 - 982.54259 13.49303 -96.07621 - 982.04046 -20.65112 -89.16432 - 977.13296 -52.60540 -82.56521 - 977.13285 -52.59466 -82.56521 - 969.11074 -67.89720 -76.27853 - 958.98466 -84.15065 -70.30042 - 946.62929 -101.33294 -64.62691 - 931.92225 -119.42193 -59.25404 - 914.74412 -138.39569 -54.17787 - 914.76785 -138.58814 -54.17787 - 895.17036 -155.49832 -49.39375 - 873.31414 -172.12710 -44.89461 - 849.33044 -187.39133 -40.67285 - 823.40422 -201.28077 -36.72087 - 795.71254 -213.88828 -33.03107 - 795.70353 -213.92227 -33.03107 - 774.19877 -216.12820 -30.43075 - 752.48661 -218.07257 -27.96906 - 730.59251 -219.76933 -25.64207 - 708.54054 -221.23203 -23.44586 - 686.35346 -222.47382 -21.37653 - 686.35551 -222.49031 -21.37653 - 664.05361 -223.51413 -19.43012 - 641.65923 -224.34157 -17.60261 - 619.19458 -224.89036 -15.88997 - 596.69298 -225.08447 -14.28820 - 574.18874 -224.94693 -12.79327 - 574.18786 -224.94417 -12.79327 - 551.71434 -224.47641 -11.40115 - 529.30219 -223.72018 -10.10781 - 506.97923 -222.69605 -8.90925 - 484.77125 -221.42372 -7.80149 - 462.70213 -219.92208 -6.78053 - 462.70219 -219.91462 -6.78053 - 440.80661 -217.96303 -5.84238 - 419.11608 -215.81650 -4.98316 - 397.64926 -213.49146 -4.19901 - 376.42322 -211.00355 -3.48610 - 355.45349 -208.36757 -2.84059 - 355.44562 -208.29053 -2.84059 - 327.83397 -205.52006 -2.07808 - 300.72924 -200.74788 -1.41987 - 274.37460 -194.32433 -0.85761 - 248.96868 -186.56746 -0.38295 - 224.66934 -177.77423 0.01245 - 224.67587 -177.65780 0.01245 - 201.65198 -167.68147 0.33678 - 179.96375 -157.63895 0.59695 - 159.61382 -147.62128 0.79945 - 140.59347 -137.70717 0.95075 - 122.88435 -127.96299 1.05733 - 122.88526 -127.93312 1.05733 - 106.49348 -117.98305 1.12532 - 91.41166 -108.29059 1.15943 - 77.60292 -98.89232 1.16408 - 65.02602 -89.81714 1.14366 - 53.63638 -81.08623 1.10258 - 53.63727 -81.07549 1.10258 - 45.85859 -74.53144 1.06064 - 38.72427 -68.18874 1.01049 - 32.21405 -62.04975 0.95331 - 26.30750 -56.11543 0.89025 - 20.98416 -50.38535 0.82250 - 20.98277 -50.36482 0.82250 - 16.20812 -45.16199 0.75111 - 11.94323 -40.17346 0.67683 - 8.16502 -35.43693 0.60033 - 4.84777 -30.94254 0.52229 - 1.96961 -26.65539 0.44339 - 1.96978 -26.65590 0.44339 - -0.97043 -22.39792 0.34842 - -3.41780 -18.44187 0.25371 - -5.40849 -14.78615 0.15977 - -6.97836 -11.42744 0.06713 - -8.16276 -8.36077 -0.02370 - -8.16268 -8.36340 -0.02370 - -8.99932 -5.62750 -0.11232 - -9.52443 -3.17018 -0.19861 - -9.77100 -0.98386 -0.28251 - -9.77108 0.93927 -0.36395 - -9.55578 2.60725 -0.44286 - -9.55580 2.60403 -0.44286 - -9.15822 3.98176 -0.51925 - -8.60976 5.11998 -0.59328 - -7.93871 6.02601 -0.66511 - -7.17253 6.70664 -0.73492 - -6.33788 7.16810 -0.80288 - -6.33794 7.16592 -0.80288 - -5.46346 7.37344 -0.86919 - -4.57667 7.37196 -0.93410 - -3.70239 7.16565 -0.99782 - -2.86497 6.75793 -1.06057 - -2.08843 6.15152 -1.12259 - -2.08848 6.15074 -1.12259 - -1.39885 5.31044 -1.18410 - -0.82180 4.27447 -1.24525 - -0.38076 3.04376 -1.30616 - -0.09907 1.61888 -1.36693 - 0.00001 0.00006 -1.42768 + 0.00000 0.00000 -373.64764 + 0.00000 0.00000 -365.82770 + 0.00000 0.00000 -358.00777 + 0.00000 0.00000 -350.18783 + 0.00000 0.00000 -342.36789 + 0.00000 0.00000 -334.54796 + 0.00000 0.00000 -334.54796 + 0.00000 0.00000 -326.72802 + 0.00000 0.00000 -318.90808 + 0.00000 0.00000 -311.08815 + 0.00000 0.00000 -303.26821 + 0.00000 0.00000 -295.44827 + 0.00028 449.94821 -295.44827 + 44.99510 449.94821 -287.62968 + 89.98993 449.94821 -279.81914 + 134.98475 449.94821 -272.02472 + 179.97957 449.94821 -264.25446 + 224.97439 449.94821 -256.51643 + 224.97436 342.35900 -256.51643 + 259.21026 342.35900 -248.81837 + 293.44616 342.35900 -241.16671 + 327.68206 342.35900 -233.56760 + 361.91796 342.35900 -226.02716 + 396.15386 342.35900 -218.55152 + 396.15382 342.35932 -218.55152 + 441.70958 340.28279 -208.69566 + 486.70837 333.98681 -198.98052 + 530.57830 323.31609 -189.41994 + 572.72088 308.03033 -180.02778 + 612.50122 287.82828 -170.81790 + 612.50121 287.82910 -170.81790 + 650.46921 281.35467 -161.80356 + 687.43656 272.79755 -152.99634 + 723.11706 262.03188 -144.40756 + 757.20858 248.94553 -136.04851 + 789.39523 233.44471 -127.93050 + 789.43033 233.23458 -127.93050 + 818.60246 203.69719 -120.06500 + 843.57480 170.22725 -112.46026 + 863.83689 133.16848 -105.12265 + 879.06307 95.58488 -98.05859 + 889.42015 60.11527 -91.27446 + 889.38353 59.93870 -91.27446 + 895.23656 28.20546 -84.77515 + 896.99579 -1.48472 -78.56088 + 894.92704 -29.23078 -72.63103 + 889.28297 -55.13061 -66.98500 + 880.30328 -79.28125 -61.62216 + 880.32682 -79.38715 -61.62216 + 868.74923 -94.43039 -56.54071 + 855.10488 -110.38492 -51.73586 + 839.27429 -127.21608 -47.20256 + 821.19258 -143.77757 -42.93577 + 800.99347 -158.99199 -38.93045 + 800.97116 -159.08939 -38.93045 + 778.88029 -172.06547 -35.18081 + 755.14065 -183.83518 -31.67913 + 729.90743 -194.48326 -28.41738 + 703.32466 -204.09174 -25.38758 + 675.52564 -212.73990 -22.58171 + 675.52944 -212.74334 -22.58171 + 654.19667 -213.87877 -20.61914 + 632.76018 -214.81948 -18.77370 + 611.24207 -215.48143 -17.04154 + 589.67579 -215.78648 -15.41882 + 568.09591 -215.75723 -13.90168 + 568.09499 -215.75478 -13.90168 + 546.52706 -215.55358 -12.48626 + 524.99399 -215.06108 -11.16870 + 503.52388 -214.29749 -9.94515 + 482.14288 -213.28224 -8.81177 + 460.87520 -212.03392 -7.76472 + 460.87526 -212.02649 -7.76472 + 439.74422 -210.55984 -6.80016 + 418.76991 -208.89468 -5.91434 + 397.97136 -207.04727 -5.10352 + 377.36602 -205.03309 -4.36400 + 356.96981 -202.86686 -3.69204 + 356.96987 -202.86111 -3.69204 + 336.81035 -200.30709 -3.08395 + 316.91264 -197.62724 -2.53616 + 297.28868 -194.83402 -2.04515 + 277.94923 -191.93916 -1.60743 + 258.90387 -188.95363 -1.21947 + 258.89904 -188.90245 -1.21947 + 234.22876 -180.97562 -0.77342 + 210.68005 -172.12229 -0.40189 + 188.35970 -162.58905 -0.09778 + 167.33763 -152.72605 0.14599 + 147.63130 -142.89570 0.33653 + 147.63320 -142.85566 0.33653 + 129.27867 -132.49624 0.48059 + 112.29057 -122.36862 0.58352 + 96.63443 -112.52455 0.65033 + 82.26955 -103.00606 0.68600 + 69.15025 -93.84542 0.69552 + 69.15091 -93.82841 0.69552 + 57.25925 -84.60969 0.68351 + 46.57122 -75.77595 0.65330 + 37.03477 -67.33729 0.60793 + 28.59684 -59.29848 0.55045 + 21.20409 -51.65897 0.48391 + 21.20463 -51.65517 0.48391 + 16.32383 -46.01078 0.42967 + 11.99249 -40.66606 0.37252 + 8.18066 -35.62013 0.31313 + 4.85859 -30.87042 0.25220 + 1.99684 -26.41268 0.19041 + 1.99787 -26.42273 0.19041 + -0.46045 -22.79163 0.12835 + -2.56992 -19.44440 0.06638 + -4.35776 -16.34994 0.00482 + -5.84632 -13.44791 -0.05602 + -7.05262 -10.70408 -0.11580 + -7.05352 -10.71420 -0.11580 + -8.18821 -8.23431 -0.18577 + -9.03847 -5.97235 -0.25363 + -9.63001 -3.92126 -0.31921 + -9.98770 -2.07349 -0.38237 + -10.13546 -0.42097 -0.44295 + -10.13545 -0.42439 -0.44295 + -10.09942 0.99453 -0.50086 + -9.90391 2.23480 -0.55616 + -9.56988 3.30469 -0.60893 + -9.11728 4.21217 -0.65927 + -8.56515 4.96496 -0.70726 + -8.56519 4.96203 -0.70726 + -7.93464 5.52308 -0.75301 + -7.24528 5.94334 -0.79671 + -6.51362 6.22908 -0.83856 + -5.75545 6.38599 -0.87873 + -4.98593 6.41912 -0.91741 + -4.98598 6.41739 -0.91741 + -4.22237 6.28986 -0.95482 + -3.48105 6.04644 -0.99113 + -2.77574 5.69030 -1.02654 + -2.11979 5.22406 -1.06123 + -1.52629 4.64973 -1.09536 + -1.52632 4.64916 -1.09536 + -1.01049 3.93029 -1.12913 + -0.58729 3.10542 -1.16264 + -0.26941 2.17519 -1.19597 + -0.06944 1.14002 -1.22921 + 0.00001 0.00004 -1.26243 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5480,7 +5535,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=27 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -5493,35 +5548,33 @@ Q max -0.50000 63.63300 0.00000 47.26388 0.00000 -1.00000 63.43600 0.00000 105.81183 0.00000 -1.50000 53.13100 0.00000 203.19023 0.00000 - -2.00000 56.07000 0.00000 371.59628 0.00000 - -2.05000 56.52200 0.00000 388.15910 0.00000 - -2.20000 57.63200 0.00000 437.42187 0.00000 - -2.80000 60.15600 46.19600 633.09992 2.34311 - -3.40000 61.41100 44.66000 831.63882 14.24870 - -4.00000 62.17100 43.53700 1035.22524 27.40724 - -4.66667 71.77500 42.60200 1197.04252 43.33488 - -5.33333 71.09700 41.88900 1356.74848 60.53996 - -6.00000 70.52300 41.33100 1523.07530 78.96220 - -6.50000 70.35500 41.02600 1664.49351 96.12033 - -7.00000 69.94600 40.76300 1817.88159 113.39657 - -7.50000 69.91200 40.53400 1981.14817 130.78483 - -8.00000 69.88300 40.33300 2145.40037 148.28051 - -8.66667 70.03800 39.51700 2419.34407 171.05080 - -9.33333 69.94600 39.18600 2752.09948 193.86624 - -10.00000 70.85200 38.88500 3091.71381 217.74901 - -10.50000 70.86100 38.65900 3353.66962 236.35992 - -11.00000 70.86700 37.85800 3627.70121 253.72200 - -11.60000 71.98200 37.38400 4103.68025 271.35001 - -12.20000 72.05200 36.95500 4641.82367 289.73509 - -12.80000 72.29700 36.56600 5209.96581 308.86578 - -13.40000 72.48300 36.21100 5802.51528 328.73252 - -14.00000 72.62800 35.53700 6419.78631 348.72103 + -2.00000 55.99100 0.00000 372.53978 0.00000 + -2.66667 59.72000 46.67100 591.55603 0.02519 + -3.33333 61.28100 44.85600 812.35393 13.09396 + -4.00000 62.15600 43.58100 1039.15014 27.74474 + -4.66667 71.81700 42.64300 1200.64677 43.78047 + -5.33333 71.13700 41.92600 1360.46403 61.09624 + -6.00000 70.56100 41.36500 1526.88784 79.63100 + -6.50000 70.39100 41.05900 1668.33515 96.87494 + -7.00000 69.97800 40.79400 1821.90412 114.23750 + -7.50000 69.94100 40.56400 1985.37855 131.71250 + -8.00000 69.91000 40.36100 2149.83789 149.29528 + -8.66667 70.06200 39.54200 2424.02435 172.16695 + -9.33333 69.96500 39.21000 2757.43841 195.07989 + -10.00000 70.87400 38.90800 3097.37326 219.06050 + -10.50000 70.88000 38.65900 3359.63221 237.74456 + -11.00000 70.88500 37.87600 3633.96745 255.15403 + -11.60000 72.00200 37.40200 4109.84558 272.84410 + -12.20000 72.06700 36.97300 4648.57070 291.29173 + -12.80000 72.31100 36.58400 5217.28891 310.48540 + -13.40000 72.49500 36.22800 5810.42600 330.41548 + -14.00000 72.63900 35.53700 6428.29266 350.45652 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -5532,38 +5585,36 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.25000 13.76785 94.52775 0.00000 0.98502 0.00000 6.86583 - -0.75000 21.66822 117.09591 0.00000 1.22235 0.00000 5.40404 - -1.25000 30.26589 194.75680 0.00000 1.20464 0.00000 6.43486 - -1.75000 39.33521 336.81211 0.00000 1.11054 0.00000 8.56261 - -2.02500 44.16768 331.25643 0.00000 1.05659 0.00000 7.49997 - -2.12500 45.10617 328.41846 0.00000 1.04462 0.00000 7.28101 - -2.50000 48.58855 326.13008 3.90518 0.99669 0.08037 6.71208 - -3.10000 53.95112 330.89817 19.84265 0.92146 0.36779 6.13330 - -3.70000 58.99947 339.31069 21.93090 0.85650 0.37171 5.75108 - -4.33333 64.00045 242.72593 23.89147 0.80073 0.37330 3.79257 - -5.00000 68.95194 239.55894 25.80762 0.75451 0.37428 3.47429 - -5.66667 73.64077 249.49022 27.63336 0.71863 0.37525 3.38794 - -6.25000 76.31918 282.83643 34.31626 0.64741 0.44964 3.70597 - -6.75000 77.08040 306.77616 34.55247 0.63124 0.44827 3.97995 - -7.25000 77.76024 326.53316 34.77651 0.61719 0.44723 4.19923 - -7.75000 78.37190 328.50439 34.99137 0.60501 0.44648 4.19161 - -8.33333 81.68087 410.91555 34.15542 0.50783 0.41816 5.03074 - -9.00000 87.67230 499.13312 34.22316 0.49580 0.39035 5.69317 - -9.66667 93.60009 509.42149 35.82416 0.48688 0.38274 5.44253 - -10.25000 98.74635 523.91163 37.22181 0.48101 0.37694 5.30563 - -10.75000 103.13376 548.06318 34.72416 0.47709 0.33669 5.31410 - -11.30000 107.94001 793.29840 29.38002 0.39679 0.27219 7.34944 - -11.90000 113.16473 896.90569 30.64180 0.39342 0.27077 7.92566 - -12.50000 118.37506 946.90358 31.88448 0.39085 0.26935 7.99918 - -13.10000 123.57511 987.58245 33.11124 0.38889 0.26794 7.99176 - -13.70000 128.76820 1028.78504 33.31418 0.38741 0.25871 7.98943 + -0.25000 13.76803 94.52775 0.00000 0.98845 0.00000 6.86574 + -0.75000 21.67240 117.09591 0.00000 1.22805 0.00000 5.40300 + -1.25000 30.28105 194.75680 0.00000 1.20998 0.00000 6.43164 + -1.75000 39.36606 338.69910 0.00000 1.11486 0.00000 8.60383 + -2.33333 47.10064 328.52437 0.03778 1.02167 0.00080 6.97494 + -3.00000 53.14943 331.19684 19.60316 0.93594 0.36883 6.23143 + -3.66667 58.81453 340.19432 21.97617 0.86164 0.37365 5.78419 + -4.33333 64.10046 242.24495 24.05359 0.80207 0.37525 3.77915 + -5.00000 69.06146 239.72589 25.97365 0.75546 0.37609 3.47120 + -5.66667 73.75718 249.63572 27.80214 0.71928 0.37694 3.38456 + -6.25000 76.43987 282.89461 34.48787 0.64793 0.45118 3.70088 + -6.75000 77.20370 307.13793 34.72512 0.63163 0.44979 3.97828 + -7.25000 77.88535 326.94887 34.95001 0.61746 0.44874 4.19782 + -7.75000 78.49812 328.91868 35.16556 0.60517 0.44798 4.19015 + -8.33333 81.80767 411.27969 34.30749 0.50803 0.41937 5.02740 + -9.00000 87.79902 500.12109 34.36942 0.49590 0.39146 5.69620 + -9.66667 93.72609 509.90228 35.97092 0.48690 0.38379 5.44035 + -10.25000 98.87131 524.51790 37.36812 0.48097 0.37795 5.30506 + -10.75000 103.25760 548.67048 34.81893 0.47702 0.33720 5.31361 + -11.30000 108.06241 793.13022 29.48345 0.39677 0.27284 7.33956 + -11.90000 113.28537 897.87519 30.74606 0.39338 0.27140 7.92578 + -12.50000 118.49381 947.86369 31.98944 0.39078 0.26997 7.99927 + -13.10000 123.69186 988.56182 33.21681 0.38880 0.26854 7.99213 + -13.70000 128.88288 1029.77776 33.40174 0.38732 0.25916 7.99003 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5574,162 +5625,150 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 68.65830 9.85022 1 0 A - 0.00000 0.00000 78.96502 11.32890 1 0 A - 0.00000 0.00000 89.31898 12.81436 1 0 A - 0.00000 0.00000 99.76463 14.31297 1 0 A - 0.00000 0.00000 110.34106 15.83034 1 0 A - 0.00000 0.00000 121.08011 17.37104 1 0 A - 0.00000 0.00000 95.30118 21.55640 1 0 A - 0.00000 0.00000 103.90016 23.50142 1 0 A - 0.00000 0.00000 112.65681 25.48211 1 0 A - 0.00000 0.00000 121.57558 27.49947 1 0 A - 0.00000 0.00000 130.65470 29.55310 1 0 A - 0.00000 0.00000 139.88711 31.64140 1 0 A - 0.00000 0.00000 166.57058 31.18287 1 0 A - 0.00000 0.00000 177.73325 33.27258 1 0 A - 0.00000 0.00000 189.04818 35.39079 1 0 A - 0.00000 0.00000 200.49617 37.53391 1 0 A - 0.00000 0.00000 212.05685 39.69813 1 0 A - 0.00000 0.00000 223.70970 41.87961 1 0 A - 0.00000 0.00000 297.68151 38.60813 1 0 A - 0.00000 0.00000 313.28352 40.63165 1 0 A - 0.00000 0.00000 328.95642 42.66436 1 0 A - 0.00000 0.00000 344.67697 44.70326 1 0 A - 0.00000 0.00000 360.42413 46.74560 1 0 A - 0.00000 0.00000 376.17921 48.78898 1 0 A - 0.00000 0.00000 329.49460 46.41908 1 0 A - 0.00000 0.10000 330.19940 46.51837 1 0 A - 0.00000 0.20000 330.90411 46.61765 1 0 A - 0.00000 0.30000 331.60872 46.71692 1 0 A - 0.00000 0.40000 332.31321 46.81616 1 0 A - 0.00000 0.50000 333.01758 46.91539 1 0 A - 0.00000 0.50000 323.29507 46.38371 1 0 A - 0.00000 0.80000 325.34562 46.67791 1 0 A - 0.00000 1.10000 327.39463 46.97188 1 0 A - 0.00000 1.40000 329.44180 47.26559 1 0 A - 0.00000 1.70000 331.48685 47.55900 1 0 A - 0.00000 2.00000 333.52950 47.85206 1 0 A - 3.68171 2.00000 307.46773 45.65647 1 0 A - 3.77158 3.20000 314.97322 46.77098 1 0 A - 3.86083 4.40000 322.42646 47.87773 1 0 A - 3.94933 5.60000 329.81689 48.97514 1 0 A - 4.03697 6.80000 337.13640 50.06203 1 0 A - 4.12370 8.00000 344.37896 51.13749 1 0 A - 18.87030 8.00000 314.68321 47.27751 1 0 A - 19.26271 9.20000 321.22701 48.26064 1 0 A - 19.65051 10.40000 327.69399 49.23223 1 0 A - 20.03361 11.60000 334.08266 50.19206 1 0 A - 20.41198 12.80000 340.39239 51.14002 1 0 A - 20.78563 14.00000 346.62331 52.07614 1 0 A - 21.00739 14.00000 325.02241 48.40495 1 0 A - 21.38029 15.20000 330.79174 49.26417 1 0 A - 21.74851 16.40000 336.48882 50.11262 1 0 A - 22.11215 17.60000 342.11502 50.95052 1 0 A - 22.47132 18.80000 347.67194 51.77810 1 0 A - 22.82612 20.00000 353.16135 52.59563 1 0 A - 22.92364 20.00000 232.89324 49.17109 1 0 A - 23.31456 21.33333 236.86479 50.00961 1 0 A - 23.70040 22.66667 240.78473 50.83723 1 0 A - 24.08134 24.00000 244.65492 51.65435 1 0 A - 24.45757 25.33333 248.47722 52.46136 1 0 A - 24.82926 26.66667 252.25348 53.25865 1 0 A - 24.89462 26.66667 231.08403 50.18439 1 0 A - 25.26294 28.00000 234.50291 50.92687 1 0 A - 25.62707 29.33333 237.88296 51.66091 1 0 A - 25.98719 30.66667 241.22581 52.38688 1 0 A - 26.34348 32.00000 244.53303 53.10511 1 0 A - 26.69609 33.33333 247.80615 53.81593 1 0 A - 26.76465 33.33333 241.64698 51.25712 1 0 A - 27.11464 34.66667 244.80693 51.92739 1 0 A - 27.46127 36.00000 247.93645 52.59121 1 0 A - 27.80467 37.33333 251.03688 53.24886 1 0 A - 28.14499 38.66667 254.10951 53.90062 1 0 A - 28.48237 40.00000 257.15556 54.54673 1 0 A - 34.12927 40.00000 281.29525 49.14047 1 0 A - 34.20543 41.00000 281.92298 49.25013 1 0 A - 34.27976 42.00000 282.53561 49.35715 1 0 A - 34.35232 43.00000 283.13367 49.46163 1 0 A - 34.42318 44.00000 283.71765 49.56365 1 0 A - 34.49238 45.00000 284.28803 49.66329 1 0 A - 34.38683 45.00000 305.30546 48.42301 1 0 A - 34.45423 46.00000 305.90390 48.51793 1 0 A - 34.52860 47.00000 306.48871 48.61068 110 0 - - 35.98937 48.00000 307.06038 48.70135 110 0 - - 37.35944 49.00000 307.61934 48.79000 110 0 - - 38.64209 50.00000 308.16604 48.87671 110 0 - - 37.55416 50.00000 325.14478 47.78878 110 0 - - 38.75080 51.00000 325.70912 47.87172 110 0 - - 39.86665 52.00000 326.26140 47.95289 110 0 - - 40.90496 53.00000 326.80205 48.03236 110 0 - - 41.86898 54.00000 327.33148 48.11017 110 0 - - 42.76197 55.00000 327.85008 48.18639 110 0 - - 41.81067 55.00000 327.25508 47.23510 110 0 - - 42.63440 56.00000 327.76231 47.30831 110 0 - - 43.39354 57.00000 328.25947 47.38007 110 0 - - 44.09122 58.00000 328.74693 47.45043 110 0 - - 44.73055 59.00000 329.22504 47.51943 110 0 - - 45.31466 60.00000 329.69412 47.58714 110 0 - - 60.12550 60.00000 395.69691 39.94406 110 15 - - 65.36423 61.33333 401.79751 40.55989 110 16 - - 69.60656 62.66667 407.88044 41.17394 110 17 - - 72.94858 64.00000 413.94655 41.78629 110 18 - - 75.48641 65.33333 419.99665 42.39702 110 18 - - 77.31615 66.66667 426.03152 43.00622 110 18 - - 74.96157 66.66667 482.12927 41.98736 110 16 - - 76.14219 68.00000 488.94240 42.58069 110 16 - - 76.78105 69.33333 495.73994 43.17267 110 15 - - 76.94684 70.66667 502.52269 43.76337 110 15 - - 76.70827 72.00000 509.29138 44.35283 110 15 - - 76.13403 73.33333 516.04671 44.94114 110 15 - - 75.44362 73.33333 493.32827 44.13265 110 15 - - 74.58835 74.66667 499.77410 44.70929 110 15 - - 73.50755 76.00000 506.20844 45.28490 110 15 - - 72.24412 77.33333 512.63189 45.85953 110 14 - - 70.84094 78.66667 519.04503 46.43325 110 14 - - 69.34090 80.00000 525.44839 47.00608 110 13 - - 68.78164 80.00000 512.23125 46.43888 110 13 - - 67.61106 81.00000 516.90703 46.86278 110 13 - - 66.41767 82.00000 521.57794 47.28625 110 13 - - 65.21180 83.00000 526.24419 47.70929 110 12 - - 64.00381 84.00000 530.90596 48.13192 110 12 - - 62.80402 85.00000 535.56346 48.55417 110 12 - - 58.74077 85.00000 536.41844 48.15846 110 11 - - 57.52314 86.00000 541.07926 48.57690 110 11 - - 56.32873 87.00000 545.73615 48.99498 110 10 - - 55.41602 88.00000 550.38928 49.41273 110 10 - - 55.05304 89.00000 555.03881 49.83016 110 10 - - 54.68116 90.00000 559.68490 50.24727 110 10 - - 46.22360 90.00000 774.04811 41.78971 110 6 - - 45.68989 91.20000 781.75282 42.20568 110 6 - - 45.15840 92.40000 789.45135 42.62131 110 6 - - 44.63435 93.60000 797.14402 43.03663 110 6 - - 44.12293 94.80000 804.83118 43.45164 110 5 - - 43.62935 96.00000 812.51312 43.86638 110 0 - - 43.25784 96.00000 876.21757 43.49487 110 0 - - 42.78266 97.20000 884.49651 43.90583 110 0 - - 42.33046 98.40000 892.77048 44.31654 110 0 - - 41.90195 99.60000 901.03977 44.72702 110 0 - - 41.49781 100.80000 909.30466 45.13729 110 0 - - 41.11875 102.00000 917.56544 45.54735 110 0 - - 40.82022 102.00000 926.07655 45.24882 110 0 - - 40.46352 103.20000 934.41006 45.65600 110 0 - - 40.13025 104.40000 942.73993 46.06301 110 0 - - 39.81873 105.60000 951.06641 46.46985 110 0 - - 39.52730 106.80000 959.38974 46.87653 110 0 - - 39.25426 108.00000 967.71014 47.28307 110 0 - - 39.01707 108.00000 966.81216 47.04588 110 0 - - 38.75834 109.20000 975.12213 47.45025 110 0 - - 38.51354 110.40000 983.42959 47.85450 110 0 - - 38.28047 111.60000 991.73475 48.25864 110 0 - - 38.05692 112.80000 1000.03780 48.66267 110 0 - - 37.84068 114.00000 1008.33892 49.06661 110 0 - - 37.65505 114.00000 1008.04562 48.88098 110 0 - - 37.44231 115.20000 1016.34256 49.28330 110 0 - - 37.23304 116.40000 1024.63791 49.68555 110 0 - - 37.02615 117.60000 1032.93183 50.08773 110 0 - - 36.82055 118.80000 1041.22448 50.48985 110 0 - - 36.61514 120.00000 1049.51599 50.89191 110 0 - + 0.00000 0.00000 68.65741 9.88452 1 0 A + 0.00000 0.00000 78.96408 11.36836 1 0 A + 0.00000 0.00000 89.31846 12.85906 1 0 A + 0.00000 0.00000 99.76543 14.36310 1 0 A + 0.00000 0.00000 110.34450 15.88615 1 0 A + 0.00000 0.00000 121.08782 17.43286 1 0 A + 0.00000 0.00000 95.29009 21.65847 1 0 A + 0.00000 0.00000 103.89234 23.61368 1 0 A + 0.00000 0.00000 112.65381 25.60507 1 0 A + 0.00000 0.00000 121.57898 27.63367 1 0 A + 0.00000 0.00000 130.66608 29.69908 1 0 A + 0.00000 0.00000 139.90796 31.79967 1 0 A + 0.00000 0.00000 166.54416 31.33196 1 0 A + 0.00000 0.00000 177.71634 33.43378 1 0 A + 0.00000 0.00000 189.04222 35.56452 1 0 A + 0.00000 0.00000 200.50242 37.72052 1 0 A + 0.00000 0.00000 212.07639 39.89794 1 0 A + 0.00000 0.00000 223.74340 42.09285 1 0 A + 0.00000 0.00000 299.30957 38.78350 1 0 A + 0.00000 0.00000 315.01441 40.81848 1 0 A + 0.00000 0.00000 330.79119 42.86278 1 0 A + 0.00000 0.00000 346.61633 44.91334 1 0 A + 0.00000 0.00000 362.46848 46.96741 1 0 A + 0.00000 0.00000 378.32866 49.02252 1 0 A + 0.03527 0.00000 306.70296 44.92487 1 0 A + 0.03628 1.33333 315.46351 46.20809 1 0 A + 0.03728 2.66667 324.18509 47.48560 1 0 A + 0.03828 4.00000 332.84625 48.75426 1 0 A + 0.03926 5.33333 341.43027 50.01162 1 0 A + 0.04024 6.66667 349.92455 51.25583 1 0 A + 18.50381 6.66667 312.62323 46.95474 1 0 A + 18.94775 8.00000 320.12365 48.08127 1 0 A + 19.38613 9.33333 327.53007 49.19368 1 0 A + 19.81873 10.66667 334.83892 50.29144 1 0 A + 20.24545 12.00000 342.04831 51.37426 1 0 A + 20.66625 13.33333 349.15768 52.44206 1 0 A + 20.93637 13.33333 324.09806 48.27945 1 0 A + 21.35670 14.66667 330.60477 49.24873 1 0 A + 21.77113 16.00000 337.02026 50.20442 1 0 A + 22.17979 17.33333 343.34625 51.14677 1 0 A + 22.58279 18.66667 349.58489 52.07611 1 0 A + 22.98032 20.00000 355.73862 52.99281 1 0 A + 23.07849 20.00000 232.42465 49.32885 1 0 A + 23.47238 21.33333 236.39149 50.17076 1 0 A + 23.86111 22.66667 240.30640 51.00164 1 0 A + 24.24486 24.00000 244.17122 51.82189 1 0 A + 24.62383 25.33333 247.98785 52.63192 1 0 A + 24.99820 26.66667 251.75814 53.43211 1 0 A + 25.05458 26.66667 231.24327 50.32686 1 0 A + 25.42537 28.00000 234.66550 51.07166 1 0 A + 25.79192 29.33333 238.04854 51.80794 1 0 A + 26.15439 30.66667 241.39405 52.53604 1 0 A + 26.51297 32.00000 244.70360 53.25632 1 0 A + 26.86783 33.33333 247.97873 53.96910 1 0 A + 26.92832 33.33333 241.78963 51.38475 1 0 A + 27.28039 34.66667 244.95093 52.05658 1 0 A + 27.62905 36.00000 248.08152 52.72189 1 0 A + 27.97444 37.33333 251.18275 53.38096 1 0 A + 28.31670 38.66667 254.25594 54.03407 1 0 A + 28.65598 40.00000 257.30232 54.68148 1 0 A + 34.29949 40.00000 281.34941 49.25722 1 0 A + 34.37622 41.00000 281.97884 49.36741 1 0 A + 34.45599 42.00000 282.59305 49.47495 110 0 - + 35.94667 43.00000 283.19256 49.57991 110 0 - + 37.34732 44.00000 283.77786 49.68238 110 0 - + 38.66110 45.00000 284.34945 49.78245 110 0 - + 37.40834 45.00000 305.66309 48.52969 110 0 - + 38.63597 46.00000 306.26329 48.62498 110 0 - + 39.78313 47.00000 306.84972 48.71809 110 0 - + 40.85297 48.00000 307.42288 48.80909 110 0 - + 41.84864 49.00000 307.98322 48.89805 110 0 - + 42.77327 50.00000 308.53118 48.98505 110 0 - + 41.67443 50.00000 325.55758 47.88621 110 0 - + 42.52927 51.00000 326.12317 47.96940 110 0 - + 43.31933 52.00000 326.67659 48.05080 110 0 - + 44.04766 53.00000 327.21827 48.13048 110 0 - + 44.71729 54.00000 327.74861 48.20849 110 0 - + 45.33125 55.00000 328.26802 48.28488 110 0 - + 44.37044 55.00000 327.66779 47.32407 110 0 - + 44.93027 56.00000 328.17572 47.39743 110 0 - + 45.44040 57.00000 328.67349 47.46932 110 0 - + 45.90368 58.00000 329.16146 47.53980 110 0 - + 46.32297 59.00000 329.63999 47.60891 110 0 - + 46.70113 60.00000 330.10941 47.67671 110 0 - + 75.96321 60.00000 396.06991 40.02353 110 19 - + 78.10047 61.33333 402.16709 40.63966 110 19 - + 79.53220 62.66667 408.24644 41.25398 110 19 - + 80.34237 64.00000 414.30880 41.86660 110 19 - + 80.61496 65.33333 420.35501 42.47757 110 19 - + 80.43394 66.66667 426.38584 43.08700 110 19 - + 78.06665 66.66667 483.10893 42.05811 110 16 - + 77.47720 68.00000 489.92550 42.65154 110 16 - + 76.57159 69.33333 496.72633 43.24360 110 15 - + 75.40405 70.66667 503.51220 43.83436 110 15 - + 74.02882 72.00000 510.28387 44.42388 110 15 - + 72.50011 73.33333 517.04204 45.01223 110 14 - + 71.80410 73.33333 493.81786 44.19572 110 15 - + 70.16197 74.66667 500.26025 44.77230 110 14 - + 68.44822 76.00000 506.69104 45.34784 110 14 - + 66.69249 77.33333 513.11084 45.92240 110 13 - + 64.92440 78.66667 519.52022 46.49602 110 12 - + 63.17357 80.00000 525.91973 47.06877 110 12 - + 62.60896 80.00000 512.84136 46.49588 110 12 - + 61.31734 81.00000 517.51563 46.91967 110 12 - + 60.05501 82.00000 522.18500 47.34301 110 12 - + 58.82757 83.00000 526.84965 47.76592 110 11 - + 57.64062 84.00000 531.50979 48.18842 110 11 - + 56.49977 85.00000 536.16560 48.61054 110 11 - + 52.38205 85.00000 537.02995 48.21083 110 10 - + 51.25622 86.00000 541.68912 48.62910 110 9 - + 50.18306 87.00000 546.34432 49.04701 110 9 - + 49.51275 88.00000 550.99572 49.46458 110 9 - + 49.32166 89.00000 555.64349 49.88182 110 0 - + 49.14078 90.00000 560.28778 50.29876 110 0 - + 40.67932 90.00000 773.91174 41.83729 110 0 - + 40.39543 91.20000 781.60377 42.25312 110 0 - + 40.13234 92.40000 789.28956 42.66861 110 0 - + 39.89164 93.60000 796.96945 43.08378 110 0 - + 39.67490 94.80000 804.64376 43.49865 110 0 - + 39.48371 96.00000 812.31283 43.91324 110 0 - + 39.10846 96.00000 877.19387 43.53798 110 0 - + 38.94020 97.20000 885.47013 43.94876 110 0 - + 38.79773 98.40000 893.74136 44.35929 110 0 - + 38.68025 99.60000 902.00787 44.76958 110 0 - + 38.58693 100.80000 910.26994 45.17966 110 0 - + 38.51696 102.00000 918.52784 45.58952 110 0 - + 38.21540 102.00000 927.04414 45.28797 110 0 - + 38.16487 103.20000 935.37468 45.69493 110 0 - + 38.13462 104.40000 943.70156 46.10172 110 0 - + 38.12278 105.60000 952.02500 46.50833 110 0 - + 38.12751 106.80000 960.34526 46.91479 110 0 - + 38.14696 108.00000 968.66257 47.32111 110 0 - + 37.90734 108.00000 967.79863 47.08149 110 0 - + 37.93744 109.20000 976.10578 47.48562 110 0 - + 37.97829 110.40000 984.41039 47.88962 110 0 - + 38.02808 111.60000 992.71269 48.29351 110 0 - + 38.08504 112.80000 1001.01284 48.69730 110 0 - + 38.14738 114.00000 1009.31105 49.10099 110 0 - + 37.95982 114.00000 1009.04511 48.91343 110 0 - + 38.02421 115.20000 1017.33935 49.31549 110 0 - + 38.09110 116.40000 1025.63199 49.71748 110 0 - + 38.15968 117.60000 1033.92318 50.11940 110 0 - + 38.22917 118.80000 1042.21308 50.52125 110 0 - + 38.29877 120.00000 1050.50184 50.92305 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5742,10 +5781,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 78.947 'Clay' - -6.00 77.038 'Peat' - -8.00 207.384 'Sand 1' - -11.00 121.549 'Sand 2' + 0.00 79.613 'Clay' + -6.00 82.607 'Peat' + -8.00 203.279 'Sand 1' + -11.00 115.850 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5760,7 +5799,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.05 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile initial @@ -5812,7 +5851,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=22 +DataCount=21 [COLUMN INDICATION] Slide plane position Theta min @@ -5821,34 +5860,33 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.20000 63.11500 0.00000 0.80113 0.00000 - -2.80000 63.11500 0.00000 20.02825 0.00000 - -3.40000 55.98100 0.00000 66.03069 0.00000 - -4.00000 45.72600 0.00000 181.77774 0.00000 - -4.66667 74.41900 0.00000 371.52353 0.00000 - -5.33333 72.93900 0.00000 452.37701 0.00000 - -6.00000 71.78700 46.54200 538.81969 9.84935 - -6.50000 71.43000 45.71600 600.83673 22.56992 - -7.00000 70.24000 45.02500 679.92773 35.53384 - -7.50000 70.26600 42.53400 770.59777 48.13050 - -8.00000 71.99100 40.04100 846.34880 59.55418 - -8.66667 71.56500 37.07700 949.51716 75.69032 - -9.33333 71.00900 34.46900 1128.31794 89.83059 - -10.00000 72.55700 32.16700 1299.72923 103.60613 - -10.50000 72.39000 30.61400 1423.91943 113.77652 - -11.00000 72.23600 29.19000 1560.11109 123.85714 - -11.60000 72.42800 27.63500 1821.43377 134.34066 - -12.20000 72.26400 26.22500 2191.41003 144.19001 - -12.80000 73.60400 24.94400 2550.80616 153.14078 - -13.40000 73.56200 23.77500 2887.80950 162.16502 - -14.00000 73.52700 22.70500 3250.20569 171.26468 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.73500 0.00000 39.43293 0.00000 + -3.33333 56.31100 0.00000 92.32227 0.00000 + -4.00000 45.00100 0.00000 245.66994 0.00000 + -4.66667 73.49400 0.00000 409.91398 0.00000 + -5.33333 72.25300 0.00000 489.62634 0.00000 + -6.00000 71.25900 45.94600 575.53293 2.40133 + -6.50000 70.97000 45.19800 637.83642 15.29107 + -7.00000 69.86700 44.56900 716.53918 28.39959 + -7.50000 69.94300 42.27300 807.84479 41.19575 + -8.00000 71.66400 39.80500 885.78083 52.77042 + -8.66667 71.54100 36.87000 989.75092 69.08832 + -9.33333 70.79100 34.28700 1168.98193 83.28748 + -10.00000 72.33900 32.00500 1343.10443 97.08013 + -10.50000 72.19400 30.46600 1467.91790 107.24820 + -11.00000 72.06000 29.05500 1604.75014 117.31334 + -11.60000 72.28000 27.51200 1867.73132 127.76685 + -12.20000 72.14800 26.11400 2238.94933 137.66396 + -12.80000 73.49600 24.84300 2601.52793 146.56446 + -13.40000 73.46800 23.68200 2939.89111 155.53905 + -14.00000 73.44400 22.62000 3303.65604 164.58340 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=21 +DataCount=20 [COLUMN INDICATION] Position Vertical stress @@ -5859,33 +5897,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.12500 0.45063 5.34087 0.00000 4.03938 0.00000 11.85197 - -2.50000 2.82819 32.04520 0.00000 3.70009 0.00000 11.33064 - -3.10000 7.56597 76.67073 0.00000 2.71771 0.00000 10.13363 - -3.70000 13.30337 192.91176 0.00000 1.91020 0.00000 14.50097 - -4.33333 19.53904 284.61868 0.00000 1.38037 0.00000 14.56667 - -5.00000 25.63543 121.28022 0.00000 1.05516 0.00000 4.73096 - -5.66667 31.07852 129.66403 14.77402 0.86456 0.47538 4.17214 - -6.25000 34.11425 124.03407 25.44114 0.74576 0.74576 3.63584 - -6.75000 35.00875 158.18200 25.92784 0.74061 0.74061 4.51836 - -7.25000 35.70735 181.34007 25.19332 0.70555 0.70555 5.07851 - -7.75000 36.25947 151.50207 22.84736 0.63011 0.63011 4.17828 - -8.33333 39.43756 154.75254 24.20422 0.61374 0.61374 3.92399 - -9.00000 45.23771 268.20118 21.21040 0.47079 0.46887 5.92871 - -9.66667 50.96029 257.11693 20.66332 0.45930 0.40548 5.04544 - -10.25000 55.93108 248.38040 20.34077 0.45395 0.36368 4.44083 - -10.75000 60.17734 272.38331 20.16123 0.45155 0.33503 4.52634 - -11.30000 64.84154 435.53780 17.47254 0.37626 0.26947 6.71696 - -11.90000 69.92901 616.62710 16.41558 0.37488 0.23475 8.81790 - -12.50000 75.02114 598.99355 14.91795 0.37442 0.19885 7.98433 - -13.10000 80.12154 561.67223 15.04041 0.37457 0.18772 7.01025 - -13.70000 85.23241 603.99364 15.16610 0.37509 0.17794 7.08643 + -2.33333 2.05359 59.14940 0.00000 3.84924 0.00000 28.80288 + -3.00000 7.12304 79.33401 0.00000 2.79884 0.00000 11.13767 + -3.66667 13.46890 230.02151 0.00000 1.89242 0.00000 17.07798 + -4.33333 20.01750 246.36606 0.00000 1.34930 0.00000 12.30753 + -5.00000 26.06622 119.56854 0.00000 1.03715 0.00000 4.58711 + -5.66667 31.46188 128.85988 3.60200 0.85385 0.11449 4.09575 + -6.25000 34.46412 124.60697 25.77948 0.74801 0.74801 3.61556 + -6.75000 35.33654 157.40552 26.21704 0.74192 0.74192 4.45447 + -7.25000 36.01842 182.61123 25.59232 0.71053 0.71053 5.06994 + -7.75000 36.55823 155.87207 23.14933 0.63322 0.63322 4.26367 + -8.33333 39.72627 155.95514 24.47685 0.61614 0.61614 3.92574 + -9.00000 45.51908 268.84651 21.29874 0.46961 0.46791 5.90624 + -9.66667 51.23739 261.18376 20.68898 0.45862 0.40379 5.09752 + -10.25000 56.20615 249.62694 20.33615 0.45355 0.36181 4.44127 + -10.75000 60.45154 273.66447 20.13027 0.45130 0.33300 4.52701 + -11.30000 65.11544 438.30198 17.42252 0.37605 0.26756 6.73115 + -11.90000 70.20311 618.69667 16.49519 0.37476 0.23496 8.81295 + -12.50000 75.29582 604.29767 14.83416 0.37437 0.19701 8.02565 + -13.10000 80.39702 563.93863 14.95765 0.37456 0.18605 7.01442 + -13.70000 85.50884 606.27488 15.07392 0.37510 0.17628 7.09020 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5920,138 +5957,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.10000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.30000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.50000 0.00000 0.00000 -1 0 - - 0.00001 0.50000 0.00001 0.00000 202 100 P - 2.13383 0.80000 2.13383 0.72725 202 100 P - 4.27054 1.10000 4.27054 1.45548 202 100 P - 6.41298 1.40000 6.41298 2.18567 202 100 P - 8.56397 1.70000 8.56397 2.91877 202 100 P - 10.72629 2.00000 10.72629 3.65573 202 100 P - 10.25448 2.00000 10.25448 3.34866 202 100 P - 18.68224 3.20000 18.68224 6.10079 202 100 P - 27.47397 4.40000 27.47397 8.97178 202 100 P - 36.74943 5.60000 36.74943 12.00074 202 100 P - 46.58990 6.80000 46.58990 15.21420 202 100 P - 57.03565 8.00000 57.03565 18.62532 202 100 P - 51.01022 8.00000 51.01022 13.68028 202 100 P - 60.89505 9.20000 60.89505 16.33126 202 100 P - 71.29393 10.40000 71.29393 19.12011 202 100 P - 82.15531 11.60000 82.15531 22.03299 202 100 P - 93.41193 12.80000 93.41193 25.05187 202 100 P - 104.98777 14.00000 104.98777 28.15636 202 100 P - 150.23478 14.00000 150.23478 19.79034 202 100 P - 167.14344 15.20000 167.14344 22.01771 202 100 P - 184.28567 16.40000 184.28567 24.27584 202 100 P - 201.55831 17.60000 201.55831 26.55116 202 100 P - 218.86840 18.80000 218.86840 28.83141 202 100 P - 236.13471 20.00000 236.13471 31.10589 202 100 P - 237.20457 20.00000 237.20457 22.47797 202 100 P - 245.95673 21.33333 256.34088 24.29137 110 96 - - 232.68310 22.66667 275.26006 26.08419 110 85 - - 220.00310 24.00000 293.90155 27.85069 110 75 - - 207.91523 25.33333 312.22000 29.58658 110 67 - - 196.41923 26.66667 330.18330 31.28882 110 59 - - 107.23693 26.66667 107.23693 23.91739 202 100 P - 112.94890 28.00000 112.94890 25.19135 202 100 P - 118.53493 29.33333 118.53493 26.43722 202 100 P - 123.99368 30.66667 123.99368 27.65471 202 100 P - 129.32577 32.00000 129.32577 28.84394 202 100 P - 134.53334 33.33333 134.53334 30.00540 202 100 P - 118.64233 33.33333 118.64233 24.58537 202 100 P - 123.12789 34.66667 123.12789 25.51488 202 100 P - 116.21222 36.00000 127.51024 26.42300 110 91 - - 108.65632 37.33333 131.79363 27.31062 110 82 - - 101.62042 38.66667 135.98266 28.17868 110 75 - - 95.09033 40.00000 140.08217 29.02819 110 68 - - 51.46428 40.00000 122.07559 25.03943 110 42 - - 49.55076 41.00000 122.88848 25.20616 110 40 - - 47.74001 42.00000 123.66173 25.36477 110 39 - - 46.02927 43.00000 124.39718 25.51562 110 37 - - 44.41578 44.00000 125.09663 25.65908 110 36 - - 42.89676 45.00000 125.76184 25.79553 110 34 - - 42.71853 45.00000 156.28746 25.61730 110 27 - - 41.29028 46.00000 157.07375 25.74619 110 26 - - 39.95087 47.00000 157.82173 25.86879 110 25 - - 38.69743 48.00000 158.53345 25.98545 110 24 - - 37.52705 49.00000 159.21087 26.09648 110 24 - - 36.43683 50.00000 159.85589 26.20221 110 23 - - 35.19643 50.00000 179.67366 24.96181 110 20 - - 34.17868 51.00000 180.36429 25.05776 110 19 - - 33.23545 52.00000 181.02251 25.14920 110 18 - - 32.36381 53.00000 181.65024 25.23641 110 18 - - 31.56083 54.00000 182.24926 25.31963 110 17 - - 30.82353 55.00000 182.82131 25.39911 110 17 - - 28.10767 55.00000 150.41383 22.68325 110 19 - - 27.42498 56.00000 150.86363 22.75108 110 18 - - 26.80249 57.00000 151.29389 22.81596 110 18 - - 26.23729 58.00000 151.70583 22.87809 110 17 - - 25.72650 59.00000 152.10061 22.93762 110 17 - - 25.26721 60.00000 152.47934 22.99474 110 17 - - 50.80320 60.00000 143.19954 22.39726 110 35 - - 43.90345 61.33333 147.83762 23.12268 110 30 - - 38.04318 62.66667 152.45285 23.84453 110 25 - - 33.13921 64.00000 157.04726 24.56313 110 21 - - 29.10830 65.33333 161.62276 25.27876 110 18 - - 25.99171 66.66667 166.18110 25.99171 1 16 A - 19.85647 66.66667 251.08105 19.93817 1 0 A - 20.39928 68.00000 257.94472 20.48321 1 0 A - 20.94041 69.33333 264.78721 21.02657 1 0 A - 21.48003 70.66667 271.61062 21.56841 1 0 A - 22.01830 72.00000 278.41690 22.10889 1 0 A - 22.55535 73.33333 285.20784 22.64816 1 0 A - 19.50606 73.33333 242.71700 22.09507 1 0 A - 19.96958 74.66667 248.48457 22.62010 1 0 A - 20.43226 76.00000 254.24181 23.14420 1 0 A - 20.89421 77.33333 259.98991 23.66746 1 0 A - 21.35551 78.66667 265.72997 24.18999 1 0 A - 21.81625 80.00000 271.46302 24.71188 1 0 A - 19.56708 80.00000 238.93291 24.42416 1 0 A - 19.87672 81.00000 242.71388 24.81066 1 0 A - 20.18614 82.00000 246.49217 25.19688 1 0 A - 20.49536 83.00000 250.26807 25.58286 1 0 A - 20.80441 84.00000 254.04187 25.96863 1 0 A - 21.11331 85.00000 257.81383 26.35420 1 0 A - 19.45030 85.00000 262.77838 26.21461 1 0 A - 19.73474 86.00000 266.62136 26.59798 1 0 A - 20.21291 87.00000 270.46296 26.98121 110 0 - - 21.36105 88.00000 274.30340 27.36433 110 0 - - 22.52447 89.00000 278.14289 27.74736 110 0 - - 23.69642 90.00000 281.98163 28.13031 110 0 - - 19.00661 90.00000 418.45220 23.44050 110 0 - - 20.33915 91.20000 425.28698 23.82336 110 0 - - 21.66909 92.40000 432.12097 24.20618 110 0 - - 22.99126 93.60000 438.95458 24.58898 110 0 - - 24.30050 94.80000 445.78816 24.97178 110 0 - - 25.59163 96.00000 452.62205 25.35460 110 6 - - 25.49815 96.00000 594.19416 25.26112 110 4 - - 26.76573 97.20000 603.16640 25.64256 110 4 - - 28.01013 98.40000 612.13983 26.02405 110 5 - - 29.23068 99.60000 621.11480 26.40560 110 5 - - 30.42671 100.80000 630.09162 26.78724 110 5 - - 31.59756 102.00000 639.07058 27.16896 110 5 - - 31.56472 102.00000 578.65817 27.13612 110 5 - - 32.70997 103.20000 586.79051 27.51749 110 6 - - 33.83173 104.40000 594.92523 27.89897 110 6 - - 34.93168 105.60000 603.06254 28.28057 110 6 - - 36.01153 106.80000 611.20261 28.66229 110 6 - - 37.07297 108.00000 619.34561 29.04416 110 6 - - 37.08411 108.00000 543.78629 29.05530 110 7 - - 38.12937 109.20000 550.93855 29.43745 110 7 - - 39.16072 110.40000 558.09362 29.81976 110 7 - - 40.18038 111.60000 565.25159 30.20222 110 7 - - 41.19059 112.80000 572.41258 30.58484 110 7 - - 42.19355 114.00000 579.57665 30.96763 110 7 - - 42.23641 114.00000 585.87473 31.01048 110 7 - - 43.23496 115.20000 593.11984 31.39397 110 7 - - 44.23014 116.40000 600.36822 31.77762 110 7 - - 45.22304 117.60000 607.61990 32.16146 110 7 - - 46.21477 118.80000 614.87495 32.54547 110 8 - - 47.20643 120.00000 622.13340 32.92966 110 8 - + 0.00003 0.00000 0.00003 0.00000 202 100 P + 23.14404 1.33333 23.14404 3.09299 202 100 P + 46.88492 2.66667 46.88492 6.26574 202 100 P + 71.75416 4.00000 71.75416 9.58929 202 100 P + 98.16518 5.33333 98.16518 13.11888 202 100 P + 126.38147 6.66667 126.38147 16.88973 202 100 P + 48.86994 6.66667 48.86994 12.28078 202 100 P + 60.51971 8.00000 60.51971 15.20831 202 100 P + 72.89328 9.33333 72.89328 18.31773 202 100 P + 85.93019 10.66667 85.93019 21.59384 202 100 P + 99.53791 12.00000 99.53791 25.01340 202 100 P + 113.60509 13.33333 113.60509 28.54841 202 100 P + 174.19670 13.33333 174.19670 19.30281 202 100 P + 196.28955 14.66667 196.28955 21.75092 202 100 P + 218.72654 16.00000 218.72654 24.23718 202 100 P + 236.98847 17.33333 241.34158 26.74316 110 98 - + 225.36969 18.66667 263.98706 29.25251 110 85 - + 214.30017 20.00000 286.53671 31.75125 110 75 - + 205.18762 20.00000 206.49756 22.63870 110 99 - + 193.95479 21.33333 222.60412 24.40449 110 87 - + 183.26965 22.66667 238.50642 26.14789 110 77 - + 173.12590 24.00000 254.15832 27.86383 110 68 - + 163.51860 25.33333 269.52589 29.54861 110 61 - + 154.44396 26.66667 284.58573 31.19964 110 54 - + 106.06715 26.66667 106.06715 23.98196 202 100 P + 111.55994 28.00000 111.55994 25.22389 202 100 P + 116.92988 29.33333 116.92988 26.43804 202 100 P + 122.02942 30.66667 122.17643 27.62430 110 99 - + 114.65447 32.00000 127.30080 28.78293 110 90 - + 107.77540 33.33333 132.30552 29.91450 110 81 - + 102.48837 33.33333 118.13325 24.62748 110 87 - + 95.89907 34.66667 122.49822 25.53745 110 78 - + 89.78487 36.00000 126.76339 26.42662 110 71 - + 84.13065 37.33333 130.93306 27.29588 110 64 - + 78.92136 38.66667 135.01187 28.14620 110 58 - + 74.14200 40.00000 139.00460 28.97857 110 53 - + 43.45189 40.00000 122.70755 25.38651 110 35 - + 42.04494 41.00000 123.49596 25.54963 110 34 - + 40.72373 42.00000 124.24588 25.70478 110 33 - + 39.48556 43.00000 124.95911 25.85233 110 32 - + 38.32772 44.00000 125.63741 25.99266 110 31 - + 37.24748 45.00000 126.28254 26.12613 110 29 - + 37.03495 45.00000 155.58372 25.91360 110 24 - + 36.02854 46.00000 156.33976 26.03953 110 23 - + 35.09429 47.00000 157.05904 26.15933 110 22 - + 34.22946 48.00000 157.74355 26.27334 110 22 - + 33.43129 49.00000 158.39520 26.38188 110 21 - + 32.69702 50.00000 159.01581 26.48524 110 21 - + 31.57645 50.00000 180.98689 25.36467 110 17 - + 30.89913 51.00000 181.65993 25.45900 110 17 - + 30.28040 52.00000 182.30159 25.54893 110 17 - + 29.71753 53.00000 182.91371 25.63471 110 16 - + 29.20780 54.00000 183.49805 25.71660 110 16 - + 28.74847 55.00000 184.05629 25.79484 110 16 - + 25.94163 55.00000 154.78574 22.98800 110 17 - + 25.52182 56.00000 155.23460 23.05466 110 16 - + 25.14738 57.00000 155.66415 23.11846 110 16 - + 24.81569 58.00000 156.07561 23.17956 110 16 - + 24.52410 59.00000 156.47013 23.23816 110 16 - + 24.26997 60.00000 156.84882 23.29440 110 15 - + 34.86071 60.00000 144.41759 22.66605 110 24 - + 31.12713 61.33333 149.04892 23.39293 110 21 - + 28.13524 62.66667 153.65817 24.11634 110 18 - + 25.81443 64.00000 158.24733 24.83660 110 16 - + 25.55400 65.33333 162.81824 25.55400 1 16 A + 26.26880 66.66667 167.37260 26.26880 1 16 A + 19.94908 66.66667 251.81020 20.02162 1 0 A + 20.49013 68.00000 258.63969 20.56464 1 0 A + 21.02957 69.33333 265.44888 21.10604 1 0 A + 21.56756 70.66667 272.23981 21.64599 1 0 A + 22.10426 72.00000 279.01435 22.18464 1 0 A + 22.63980 73.33333 285.77426 22.72213 1 0 A + 19.53729 73.33333 246.64447 22.19052 1 0 A + 19.99855 74.66667 252.46752 22.71441 1 0 A + 20.45902 76.00000 258.28059 23.23741 1 0 A + 20.91879 77.33333 264.08486 23.75962 1 0 A + 21.37794 78.66667 269.88141 24.28114 1 0 A + 21.83657 80.00000 275.67123 24.80204 1 0 A + 19.68867 80.00000 240.18168 24.52774 110 0 - + 20.61705 81.00000 243.96165 24.91375 110 0 - + 21.57434 82.00000 247.73909 25.29951 110 0 - + 22.55371 83.00000 251.51428 25.68504 110 0 - + 23.54835 84.00000 255.28751 26.07037 110 0 - + 24.55141 85.00000 259.05902 26.45552 110 0 - + 24.42031 85.00000 264.05972 26.32442 110 0 - + 25.42398 86.00000 267.90255 26.70752 110 0 - + 26.42667 87.00000 271.74410 27.09049 110 0 - + 27.42518 88.00000 275.58460 27.47335 110 0 - + 28.41630 89.00000 279.42425 27.85613 110 10 - + 29.39682 90.00000 283.26324 28.23884 110 10 - + 24.68822 90.00000 421.18090 23.53025 110 6 - + 25.77057 91.20000 428.02975 23.91288 110 6 - + 26.83174 92.40000 434.87797 24.29547 110 6 - + 27.87019 93.60000 441.72597 24.67805 110 6 - + 28.88438 94.80000 448.57408 25.06063 110 6 - + 29.87277 96.00000 455.42264 25.44324 110 7 - + 29.78537 96.00000 596.27492 25.35585 110 5 - + 30.74575 97.20000 605.24257 25.73719 110 5 - + 31.68014 98.40000 614.21157 26.11858 110 5 - + 32.58939 99.60000 623.18224 26.50005 110 5 - + 33.47433 100.80000 632.15487 26.88160 110 5 - + 34.33581 102.00000 641.12976 27.26324 110 5 - + 34.30745 102.00000 583.85447 27.23489 110 6 - + 35.14630 103.20000 592.02986 27.61624 110 6 - + 35.96481 104.40000 600.20774 27.99771 110 6 - + 36.76486 105.60000 608.38830 28.37931 110 6 - + 37.54832 106.80000 616.57170 28.76104 110 6 - + 38.31705 108.00000 624.75810 29.14291 110 6 - + 38.33149 108.00000 546.03907 29.15734 110 7 - + 39.08771 109.20000 553.19674 29.53954 110 7 - + 39.83323 110.40000 560.35727 29.92190 110 7 - + 40.56984 111.60000 567.52074 30.30441 110 7 - + 41.29934 112.80000 574.68726 30.68709 110 7 - + 42.02355 114.00000 581.85690 31.06993 110 7 - + 42.06881 114.00000 588.14290 31.11520 110 7 - + 42.79005 115.20000 595.39322 31.49877 110 7 - + 43.50890 116.40000 602.64683 31.88252 110 7 - + 44.22616 117.60000 609.90377 32.26644 110 7 - + 44.94262 118.80000 617.16409 32.65054 110 7 - + 45.65910 120.00000 624.42783 33.03482 110 7 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6064,10 +6089,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 487.214 'Clay' - -6.00 72.919 'Peat' - -8.00 72.971 'Sand 1' - -11.00 101.797 'Sand 2' + 0.00 490.361 'Clay' + -6.00 64.996 'Peat' + -8.00 71.318 'Sand 1' + -11.00 107.907 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6075,7 +6100,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -6105,34 +6130,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.08000 - -2.11000 - -2.14000 - -2.17000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -6242,7 +6255,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -6257,7 +6270,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 59.55061 210000000.000 1 2 0 'anchor' + -1.50000 44.53482 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6318,22 +6331,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 64.92 : Percentage mobilized resistance left - 6.65 : Percentage mobilized resistance right - 706.80 : Effective left - 372.46 : Effective right + 50.96 : Percentage mobilized resistance left + 6.02 : Percentage mobilized resistance right + 682.65 : Effective left + 337.29 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1088.72 : Max effective resistance left + 1339.45 : Max effective resistance left 5599.85 : Max effective resistance right --9619.06 : Max moment left --44918.07 : Max moment right --5825.96 : Max mobilized moment left --2342.32 : Max mobilized moment right - 313.68 : Vertical force left - 134.94 : Vertical force right - 60.6 : Max mobilized moment percentage left - 5.2 : Max mobilized moment percentage right +-11789.56 : Max moment left +-44918.06 : Max moment right +-5383.98 : Max mobilized moment left +-1899.23 : Max mobilized moment right + 298.60 : Vertical force left + 118.86 : Vertical force right + 45.7 : Max mobilized moment percentage left + 4.2 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -6341,169 +6354,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -353.84521 - 0.50394 10.17970 -350.22179 - 2.05613 20.96525 -346.59845 - 4.71718 32.35665 -342.97565 - 8.54766 44.35391 -339.35389 - 13.60816 56.95702 -335.73365 - 13.59328 57.07599 -335.73365 - 19.95628 70.28496 -332.11557 - 27.67047 84.09978 -328.50104 - 36.76636 97.61831 -324.89169 - 47.15035 109.82330 -321.28913 - 58.68336 120.59851 -317.69499 - 58.69883 120.71326 -317.69499 - 71.24926 130.05634 -314.11113 - 84.66230 137.96545 -310.54004 - 98.79453 144.44002 -306.98422 - 113.50252 149.48097 -303.44618 - 128.64301 153.09070 -299.92845 - 128.65719 93.64288 -299.92845 - 138.14247 95.82523 -296.43350 - 147.77483 96.58531 -292.96330 - 157.43504 96.61051 -289.51955 - 167.09609 96.61051 -286.10400 - 176.75797 96.63523 -282.71837 - 176.74322 -173.48275 -282.71837 - 175.00842 -173.47697 -282.38152 - 173.27368 -173.46950 -282.04498 - 171.53903 -173.46035 -281.70875 - 169.80448 -173.44952 -281.37283 - 168.07005 -173.43701 -281.03721 - 168.07005 -173.43701 -281.03721 - 162.86761 -173.38940 -280.03215 - 157.66683 -173.32666 -279.02972 - 152.46816 -173.24878 -278.02982 - 147.27206 -173.15578 -277.03238 - 142.07897 -173.04764 -276.03732 - 142.07896 -173.04754 -276.03732 - 121.34586 -172.46371 -272.07910 - 100.69735 -171.63781 -268.15217 - 80.16247 -170.56983 -264.25123 - 59.77027 -169.25977 -260.37099 - 39.54981 -167.70764 -256.50616 - 39.55089 -167.71703 -256.50616 - 19.53008 -165.92282 -252.65146 - -0.26090 -163.88654 -248.80179 - -19.79301 -161.60819 -244.95211 - -39.03719 -159.08776 -241.09740 - -57.96439 -156.32526 -237.23262 - -57.96429 -156.33862 -237.23262 - -76.54707 -153.33404 -233.35278 - -94.75478 -150.08739 -229.45320 - -112.55836 -146.59867 -225.52928 - -129.92877 -142.86786 -221.57644 - -146.83696 -138.89499 -217.59009 - -146.81472 -4.32010 -217.59009 - -147.08084 0.37812 -213.11696 - -146.70060 5.37520 -208.59700 - -145.63417 10.67114 -204.03054 - -143.84168 16.26593 -199.41793 - -141.28330 22.15958 -194.75952 - -141.28341 22.17033 -194.75952 - -137.91786 28.36284 -190.05582 - -133.70671 34.85420 -185.30818 - -128.61012 41.64443 -180.51825 - -122.58824 48.73351 -175.68765 - -115.60123 56.12145 -170.81800 - -115.57750 55.92900 -170.81800 - -107.61117 63.61580 -165.91116 - -98.60001 71.60145 -160.97003 - -88.50417 79.88596 -155.99783 - -77.28380 88.46933 -150.99779 - -64.89907 97.35156 -145.97312 - -64.90808 97.31756 -145.97312 - -54.79021 105.06306 -142.19058 - -43.89081 112.94838 -138.39822 - -32.19588 120.97352 -134.59813 - -19.69144 129.13847 -130.79241 - -6.36352 137.44323 -126.98315 - -6.36147 137.42675 -126.98315 - 7.80227 145.87133 -123.17256 - 22.81745 154.45572 -119.36336 - 38.69807 163.17993 -115.55838 - 55.45810 172.04396 -111.76048 - 73.11152 181.04780 -107.97249 - 73.11064 181.05056 -107.97249 - 91.67171 190.19422 -104.19739 - 111.15414 199.47769 -100.43870 - 131.57191 208.90098 -96.70005 - 152.93900 218.46408 -92.98513 - 175.26938 228.16700 -89.29757 - 175.26944 228.17446 -89.29757 - 198.56302 237.57184 -85.64120 - 222.75865 246.21441 -82.02038 - 247.78035 254.09059 -78.43957 - 273.55061 261.18192 -74.90326 - 299.98976 267.46411 -71.41591 - 299.98190 267.54115 -71.41591 - 336.11703 274.05807 -66.85033 - 372.94827 277.96982 -62.39178 - 410.12308 279.19884 -58.05203 - 447.27873 277.67032 -53.84284 - 484.04294 273.31669 -49.77597 - 484.13208 272.93660 -49.77597 - 517.56360 227.14674 -45.86469 - 544.33168 172.96740 -42.11841 - 563.46190 113.69546 -38.54320 - 574.73494 56.32419 -35.14510 - 578.72254 4.37218 -31.93016 - 578.67391 3.77823 -31.93016 - 577.87128 -16.28752 -28.90161 - 574.20553 -39.16667 -26.05713 - 567.30243 -64.84480 -23.39447 - 556.82983 -92.40738 -20.91138 - 542.72968 -118.41261 -18.60560 - 542.67265 -119.30157 -18.60560 - 529.92890 -135.23429 -16.99056 - 515.69263 -149.16184 -15.47041 - 500.16048 -161.17085 -14.04239 - 483.51868 -171.37353 -12.70373 - 465.94232 -179.87995 -11.45168 - 465.93944 -179.82541 -11.45168 - 447.61874 -186.33291 -10.28324 - 428.72185 -191.37068 -9.19493 - 409.38829 -195.09795 -8.18333 - 389.74116 -197.65822 -7.24497 - 369.89237 -199.14661 -6.37641 - 369.89136 -199.09812 -6.37641 - 345.94718 -199.75319 -5.42126 - 322.00016 -199.16910 -4.55530 - 298.19066 -197.48345 -3.77240 - 274.64308 -194.82403 -3.06643 - 251.46712 -191.30879 -2.43129 - 251.47488 -191.42363 -2.43129 - 228.76239 -187.00005 -1.86082 - 206.63816 -181.49414 -1.34931 - 185.25867 -174.61644 -0.89125 - 164.77857 -166.52994 -0.48117 - 145.33402 -157.37996 -0.11356 - 145.32995 -157.23570 -0.11356 - 127.01728 -147.88338 0.21689 - 109.85535 -138.09593 0.51463 - 93.88605 -128.01376 0.78377 - 79.14216 -117.67875 1.02840 - 65.65185 -107.12616 1.25266 - 65.65288 -107.11231 1.25266 - 53.39770 -97.10267 1.46038 - 42.35692 -86.87582 1.65436 - 32.55543 -76.45084 1.83713 - 24.01604 -65.84279 2.01121 - 16.76004 -55.06274 2.17912 - 16.76024 -55.05983 2.17912 - 10.78843 -44.43729 2.34312 - 6.10317 -33.61786 2.50438 - 2.72790 -22.60440 2.66375 - 0.68581 -11.39844 2.82210 - -0.00003 -0.00017 2.98030 + 0.00000 0.00000 -292.70268 + 0.50394 10.17970 -289.32511 + 2.05613 20.96525 -285.94760 + 4.71718 32.35665 -282.57065 + 8.54766 44.35391 -279.19473 + 13.60816 56.95702 -275.82033 + 13.59342 57.11421 -275.82033 + 19.96024 70.32317 -272.44809 + 27.66718 83.80599 -269.07941 + 36.70041 96.65811 -265.71590 + 46.95866 108.30608 -262.35916 + 58.32142 118.74786 -259.01081 + 58.32805 118.78485 -259.01081 + 70.67828 128.01810 -255.67268 + 83.89132 136.04101 -252.34720 + 97.84612 142.85308 -249.03686 + 112.42161 148.45534 -245.74415 + 127.49694 152.85029 -242.47155 + 127.50318 108.44051 -242.47155 + 138.51682 111.63214 -239.22156 + 149.78967 113.62571 -235.99637 + 161.20224 114.42760 -232.79803 + 172.65192 114.53149 -229.62856 + 184.10590 114.55621 -226.49000 + 184.09132 -155.59840 -226.49000 + 163.35591 -155.38304 -222.35494 + 142.66913 -154.86883 -218.27187 + 122.07083 -154.05576 -214.23424 + 101.60087 -152.94383 -210.23550 + 81.29910 -151.53304 -206.26911 + 81.29909 -151.53222 -206.26911 + 61.20545 -149.82258 -202.32851 + 41.35968 -147.81408 -198.40738 + 21.80164 -145.50672 -194.49951 + 2.57117 -142.90050 -190.59867 + -16.29187 -139.99542 -186.69864 + -16.25677 -140.20555 -186.69864 + -34.74057 -137.00162 -182.79327 + -52.77726 -133.49883 -178.87682 + -70.32698 -129.69718 -174.94372 + -87.34989 -125.59667 -170.98838 + -103.80614 -121.19731 -167.00523 + -103.84275 13.62612 -167.00523 + -101.71604 18.32434 -162.98974 + -98.94298 23.32142 -158.94185 + -95.48372 28.61735 -154.86267 + -91.29840 34.21215 -150.75330 + -86.34719 40.10580 -146.61486 + -86.32366 39.99991 -146.61486 + -80.58083 46.19242 -142.44861 + -73.99240 52.68378 -138.25669 + -66.51853 59.47401 -134.04147 + -58.11938 66.56309 -129.80535 + -48.75510 73.95103 -125.55070 + -48.77740 73.85363 -125.55070 + -38.42112 81.54043 -121.28014 + -27.02001 89.52608 -116.99731 + -14.53422 97.81059 -112.70620 + -0.92390 106.39396 -108.41078 + 13.85079 115.27619 -104.11505 + 13.85459 115.27275 -104.11505 + 25.76798 123.01825 -100.89562 + 38.46290 130.90357 -97.68080 + 51.95335 138.92870 -94.47299 + 66.25330 147.09365 -91.27461 + 81.37674 155.39842 -88.08809 + 81.37582 155.40087 -88.08809 + 97.33697 163.84545 -84.91595 + 114.14957 172.42984 -81.76122 + 131.82760 181.15405 -78.62708 + 150.38504 190.01808 -75.51669 + 169.83588 199.02192 -72.43320 + 169.83719 199.02077 -72.43320 + 190.16254 207.18208 -69.37998 + 211.21248 213.50984 -66.36081 + 232.80254 217.97854 -63.37955 + 254.74615 220.58601 -60.44003 + 276.89023 222.30838 -57.54610 + 276.88988 222.26271 -57.54610 + 299.33267 226.43214 -54.70168 + 322.14352 229.61805 -51.91085 + 345.23335 232.11602 -49.17775 + 368.56154 234.45835 -46.50651 + 392.12682 236.85491 -43.90125 + 392.15304 236.71355 -43.90125 + 422.21188 212.86783 -40.53849 + 448.56766 181.14400 -37.31038 + 470.16124 141.41678 -34.22362 + 486.02239 95.92046 -31.28492 + 495.75687 50.80295 -28.50098 + 495.74720 49.69600 -28.50098 + 500.28024 17.50110 -25.87674 + 500.34948 -16.14919 -23.41182 + 496.10056 -46.94701 -21.10493 + 487.99531 -74.03144 -18.95482 + 476.51382 -97.62899 -16.96021 + 476.51478 -98.22193 -16.96021 + 462.22668 -115.78287 -15.11840 + 445.74897 -130.87715 -13.42373 + 427.45594 -143.05011 -11.87043 + 407.72229 -152.52288 -10.45276 + 386.89358 -159.51159 -9.16496 + 386.89450 -159.46029 -9.16496 + 370.79221 -162.41302 -8.28055 + 354.44492 -164.37510 -7.46252 + 337.94734 -165.43279 -6.70794 + 321.38576 -165.66838 -6.01386 + 304.83845 -165.16025 -5.37732 + 304.83970 -165.13985 -5.37732 + 288.39014 -163.74668 -4.79535 + 272.11019 -161.75886 -4.26502 + 256.05597 -159.24301 -3.78344 + 240.27710 -156.26191 -3.34775 + 224.81713 -152.87454 -2.95509 + 224.81884 -152.87265 -2.95509 + 206.73631 -148.43087 -2.53665 + 189.21102 -143.59936 -2.17150 + 172.28479 -138.45959 -1.85528 + 155.99807 -132.88608 -1.58363 + 140.41494 -126.74240 -1.35220 + 140.40694 -126.77141 -1.35220 + 125.58969 -120.11185 -1.15672 + 111.59505 -113.07861 -0.99361 + 98.46184 -105.77011 -0.85947 + 86.21773 -98.27386 -0.75093 + 74.88056 -90.66647 -0.66460 + 74.88132 -90.63988 -0.66460 + 64.43422 -83.47248 -0.59730 + 54.84829 -76.29589 -0.54659 + 46.12160 -69.15943 -0.51023 + 38.24674 -62.10520 -0.48596 + 31.21167 -55.16805 -0.47154 + 31.21213 -55.15671 -0.47154 + 24.97361 -48.84036 -0.46491 + 19.48484 -42.66432 -0.46470 + 14.72783 -36.64681 -0.46969 + 10.68269 -30.80206 -0.47865 + 7.32802 -25.14040 -0.49034 + 7.32823 -25.13745 -0.49034 + 4.63681 -19.75051 -0.50371 + 2.58063 -14.55057 -0.51826 + 1.13707 -9.54045 -0.53362 + 0.28326 -4.72174 -0.54942 + -0.00003 -0.00017 -0.56528 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6569,7 +6570,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6588,51 +6589,39 @@ Status character 95.60028 0.00000 95.60028 11.22856 202 100 P 95.60028 0.00000 95.60028 11.22856 202 100 P 100.08808 0.00000 100.08808 12.19101 202 100 P - 104.57589 0.00000 104.57589 13.15346 202 100 P - 95.69865 0.00000 109.06369 14.11591 110 88 - - 85.11609 0.00000 113.55150 15.07835 110 75 - - 74.51670 0.00000 118.03930 16.04080 110 63 - - 74.51670 0.00000 118.03930 16.04080 110 63 - - 63.89939 0.00000 122.52711 17.00325 110 52 - - 53.27252 0.00000 127.01491 17.96570 110 42 - - 42.64701 0.00000 131.50271 18.92815 110 32 - - 32.03378 0.00000 135.99052 19.89059 110 24 - - 21.44376 0.00000 140.47832 20.85304 110 15 - - 21.44376 0.00000 140.47832 20.85304 110 15 - - 10.88730 0.00000 144.96613 21.81549 110 0 - - 0.37323 0.00000 149.45393 22.77794 110 0 - - 0.00000 0.00000 153.94174 23.74039 1 0 A + 99.65734 0.00000 104.57589 13.15346 110 95 - + 90.74449 0.00000 109.06369 14.11591 110 83 - + 81.81809 0.00000 113.55150 15.07835 110 72 - + 72.87493 0.00000 118.03930 16.04080 110 62 - + 72.87493 0.00000 118.03930 16.04080 110 62 - + 63.91400 0.00000 122.52711 17.00325 110 52 - + 54.94388 0.00000 127.01491 17.96570 110 43 - + 45.97571 0.00000 131.50271 18.92815 110 35 - + 37.02063 0.00000 135.99052 19.89059 110 27 - + 28.08977 0.00000 140.47832 20.85304 110 20 - + 28.08977 0.00000 140.47832 20.85304 110 20 - + 19.19362 0.00000 144.96613 21.81549 110 0 - + 10.34068 0.00000 149.45393 22.77794 110 0 - + 1.53914 0.00000 153.94174 23.74039 110 0 - 0.00000 0.00000 158.42954 24.70283 1 0 A 0.36627 0.00000 162.91735 25.66528 1 0 A 0.36627 0.00000 162.91735 25.66528 1 0 A - 0.39079 0.10000 163.09686 25.70378 1 0 A - 0.41532 0.20000 163.27637 25.74228 1 0 A - 0.43984 0.30000 163.45588 25.78078 1 0 A - 0.46436 0.40000 163.63540 25.81927 1 0 A - 0.48889 0.50000 163.81491 25.85777 1 0 A - 0.48889 0.50000 163.81491 25.85777 1 0 A - 0.56246 0.80000 164.35345 25.97327 1 0 A - 0.63603 1.10000 164.89198 26.08876 1 0 A - 0.70960 1.40000 165.43052 26.20425 1 0 A - 0.78318 1.70000 165.96905 26.31975 1 0 A - 0.85675 2.00000 166.50759 26.43524 1 0 A - 0.85675 2.00000 166.50759 26.43524 1 0 A - 1.15104 3.20000 168.66174 26.89722 1 0 A - 1.44532 4.40000 170.81588 27.35919 1 0 A - 1.73961 5.60000 172.97003 27.82117 1 0 A - 2.03390 6.80000 175.12418 28.28314 1 0 A - 2.32819 8.00000 177.27832 28.74512 1 0 A + 0.69325 1.33333 165.31084 26.17859 1 0 A + 1.02024 2.66667 167.70434 26.69189 1 0 A + 1.34723 4.00000 170.09784 27.20520 1 0 A + 1.67421 5.33333 172.49133 27.71850 1 0 A + 2.00120 6.66667 174.88483 28.23181 1 0 A + 2.00120 6.66667 174.88483 28.23181 1 0 A 2.32819 8.00000 177.27832 28.74512 1 0 A - 2.62248 9.20000 179.43247 29.20709 1 0 A - 2.91676 10.40000 181.58662 29.66907 1 0 A - 3.21105 11.60000 183.74076 30.13104 1 0 A - 3.50534 12.80000 185.89491 30.59302 1 0 A - 3.79963 14.00000 188.04905 31.05499 1 0 A - 3.79963 14.00000 188.04905 31.05499 1 0 A - 4.09392 15.20000 190.20320 31.51697 1 0 A - 4.38820 16.40000 192.35735 31.97894 1 0 A - 4.68249 17.60000 194.51149 32.44092 1 0 A - 4.97678 18.80000 196.66564 32.90289 1 0 A + 2.65517 9.33333 179.67182 29.25842 1 0 A + 2.98216 10.66667 182.06531 29.77173 1 0 A + 3.30915 12.00000 184.45881 30.28503 1 0 A + 3.63613 13.33333 186.85231 30.79834 1 0 A + 3.63613 13.33333 186.85231 30.79834 1 0 A + 3.96312 14.66667 189.24580 31.31164 1 0 A + 4.29011 16.00000 191.63930 31.82495 1 0 A + 4.61709 17.33333 194.03279 32.33826 1 0 A + 4.94408 18.66667 196.42629 32.85156 1 0 A 5.27107 20.00000 198.81979 33.36487 1 0 A 5.27107 20.00000 198.81979 33.36487 1 0 A 5.59805 21.33333 201.21328 33.87817 1 0 A @@ -6710,32 +6699,32 @@ Status character 19.76578 91.20000 702.60191 37.46124 1 0 A 19.99268 92.40000 710.66749 37.89128 1 0 A 20.21959 93.60000 718.73308 38.32132 1 0 A - 20.44649 94.80000 726.79866 38.75136 1 0 A - 20.67339 96.00000 734.86424 39.18140 1 0 A - 20.67339 96.00000 734.86424 39.18140 1 0 A - 21.00319 97.20000 742.92983 39.61144 110 0 - - 26.54841 98.40000 750.99541 40.04148 110 0 - - 31.55901 99.60000 759.06099 40.47152 110 0 - - 36.08989 100.80000 767.12658 40.90156 110 0 - - 40.19595 102.00000 775.19216 41.33160 110 0 - - 40.19595 102.00000 775.19216 41.33160 110 0 - - 43.93059 103.20000 783.25774 41.76164 110 6 - - 47.33802 104.40000 791.32333 42.19168 110 6 - - 50.45938 105.60000 799.38891 42.62172 110 6 - - 53.33579 106.80000 807.45449 43.05176 110 7 - - 56.00837 108.00000 815.52007 43.48180 110 7 - - 56.00837 108.00000 815.52007 43.48180 110 7 - - 58.51564 109.20000 823.58566 43.91184 110 7 - - 60.88552 110.40000 831.65124 44.34188 110 7 - - 63.14325 111.60000 839.71682 44.77192 110 8 - - 65.31407 112.80000 847.78241 45.20196 110 8 - - 67.42321 114.00000 855.84799 45.63200 110 8 - - 67.42321 114.00000 855.84799 45.63200 110 8 - - 69.49329 115.20000 863.91357 46.06204 110 8 - - 71.53585 116.40000 871.97916 46.49208 110 8 - - 73.55958 117.60000 880.04474 46.92212 110 8 - - 75.57313 118.80000 888.11032 47.35216 110 9 - - 77.58517 120.00000 896.17591 47.78220 110 9 - + 22.91504 94.80000 726.79866 38.75136 110 0 - + 25.65944 96.00000 734.86424 39.18140 110 0 - + 25.65944 96.00000 734.86424 39.18140 110 0 - + 28.04423 97.20000 742.92983 39.61144 110 0 - + 30.10542 98.40000 750.99541 40.04148 110 0 - + 31.87683 99.60000 759.06099 40.47152 110 0 - + 33.39229 100.80000 767.12658 40.90156 110 0 - + 34.68561 102.00000 775.19216 41.33160 110 0 - + 34.68561 102.00000 775.19216 41.33160 110 0 - + 35.78866 103.20000 783.25774 41.76164 110 0 - + 36.72575 104.40000 791.32333 42.19168 110 0 - + 37.51940 105.60000 799.38891 42.62172 110 0 - + 38.19211 106.80000 807.45449 43.05176 110 0 - + 38.76640 108.00000 815.52007 43.48180 110 0 - + 38.76640 108.00000 815.52007 43.48180 110 0 - + 39.26276 109.20000 823.58566 43.91184 110 0 - + 39.69487 110.40000 831.65124 44.34188 110 0 - + 40.07501 111.60000 839.71682 44.77192 110 0 - + 40.41549 112.80000 847.78241 45.20196 110 0 - + 40.72861 114.00000 855.84799 45.63200 110 0 - + 40.72861 114.00000 855.84799 45.63200 110 0 - + 41.02496 115.20000 863.91357 46.06204 110 0 - + 41.30946 116.40000 871.97916 46.49208 110 0 - + 41.58587 117.60000 880.04474 46.92212 110 0 - + 41.85795 118.80000 888.11032 47.35216 110 0 - + 42.12944 120.00000 896.17591 47.78220 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6748,10 +6737,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 136.528 'Clay' + 0.00 138.693 'Clay' -6.00 34.426 'Peat' -8.00 62.119 'Sand 1' - -11.00 139.389 'Sand 2' + -11.00 102.053 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6766,7 +6755,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -6820,7 +6809,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -6829,24 +6818,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.00000 67.71500 0.00000 8.31054 0.00000 - -8.66667 59.74400 33.33200 57.92677 1.61306 - -9.33333 56.31100 54.70600 349.65584 7.96278 - -10.00000 78.25600 47.86500 509.94486 20.23617 - -10.50000 77.12200 45.67700 618.76138 30.37284 - -11.00000 76.41100 44.16300 708.41915 40.58924 - -11.60000 74.66700 42.66100 837.99186 51.25196 - -12.20000 74.76400 41.62300 1007.53438 61.69013 - -12.80000 76.78900 40.88300 1071.25107 71.68853 - -13.40000 76.71400 39.80500 1095.16436 81.08660 - -14.00000 76.74000 37.56800 1086.87229 87.42503 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 66.86200 0.00000 18.33123 0.00000 + -8.00000 63.43600 0.00000 47.78344 0.00000 + -8.66667 55.80200 0.00000 249.08132 0.00000 + -9.33333 78.64700 51.23700 463.45593 11.85254 + -10.00000 76.96300 45.90800 617.37929 27.74472 + -10.50000 76.07200 44.19100 736.78759 39.09872 + -11.00000 75.48900 42.96800 838.37518 50.29579 + -11.60000 74.01500 41.68400 986.59387 61.78946 + -12.20000 74.22000 40.77600 1180.18242 72.95681 + -12.80000 76.03500 40.11800 1275.69878 83.62889 + -13.40000 75.93600 37.99800 1323.31281 93.26985 + -14.00000 75.90400 35.53700 1339.16744 100.02694 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -6857,23 +6847,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.75000 2.52296 16.62108 0.00000 2.57340 0.00000 6.58793 - -8.33333 11.37225 74.42435 2.41960 1.71734 0.21276 6.54438 - -9.00000 24.82068 437.59360 9.52457 1.18839 0.38374 17.63020 - -9.66667 38.74489 240.43353 18.41009 0.89484 0.47516 6.20555 - -10.25000 43.62441 217.63303 20.27333 0.78139 0.46472 4.98879 - -10.75000 39.41403 179.31554 20.43281 0.74481 0.51841 4.54954 - -11.30000 34.36869 215.95453 17.77121 0.64197 0.51708 6.28347 - -11.90000 28.44912 282.57086 17.39695 0.61151 0.61151 9.93250 - -12.50000 22.19804 106.19449 16.66400 0.75070 0.75070 4.78396 - -13.10000 15.70872 13.01768 15.66345 0.99712 0.99712 0.99712 - -13.70000 9.05478 13.01768 10.56404 1.16668 1.16668 1.43766 + -7.25000 2.52296 36.66247 0.00000 2.57340 0.00000 14.53155 + -7.75000 8.03375 58.90441 0.00000 2.20513 0.00000 7.33211 + -8.33333 17.86675 301.94682 0.00000 1.44848 0.00000 16.89993 + -9.00000 31.77814 321.56191 17.77881 1.00569 0.55947 10.11897 + -9.66667 45.45622 230.88505 23.83826 0.77935 0.52442 5.07928 + -10.25000 49.91403 238.81659 22.70801 0.69014 0.45494 4.78456 + -10.75000 45.34373 203.17518 22.39413 0.65630 0.49387 4.48078 + -11.30000 39.96152 247.03116 19.15612 0.55669 0.47936 6.18173 + -11.90000 33.75871 322.64758 18.61225 0.55133 0.55133 9.55746 + -12.50000 27.30345 159.19392 17.78679 0.65145 0.65145 5.83054 + -13.10000 20.67267 79.35673 16.06826 0.77727 0.77727 3.83873 + -13.70000 13.92405 26.42437 11.26182 0.80880 0.80880 1.89775 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=156 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6956,90 +6947,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 6.59778 0.00000 6.59778 2.57725 202 100 P - 13.25386 0.00000 13.25386 5.17727 202 100 P - 20.02290 0.00000 20.02290 7.82141 202 100 P - 26.95266 0.00000 26.95266 10.52834 202 100 P - 34.08150 0.00000 34.08150 13.31303 202 100 P - 33.85618 0.00000 33.85618 8.88435 202 100 P - 49.75953 0.00000 49.75953 13.05762 202 100 P - 66.09432 0.00000 66.09432 17.34410 202 100 P - 82.85942 0.00000 82.85942 21.74351 202 100 P - 100.02526 0.00000 100.02526 26.24807 202 100 P - 117.54142 0.00000 117.54142 30.84456 202 100 P - 316.65014 0.00000 316.65014 21.34430 202 100 P - 364.61080 0.00000 364.61080 24.57717 202 100 P - 413.15833 0.00000 413.15833 27.84959 202 100 P - 424.48708 0.00000 462.10636 31.14901 110 92 - - 395.33147 0.00000 511.27945 34.46360 110 77 - - 367.56487 0.00000 560.52006 37.78274 110 66 - - 197.29427 0.00000 197.29427 28.44984 202 100 P - 214.60209 0.00000 214.60209 30.94563 202 100 P - 231.84593 0.00000 231.84593 33.43219 202 100 P - 248.99367 0.00000 248.99367 35.90490 202 100 P - 256.07608 0.00000 266.02035 38.36014 110 96 - - 234.98147 0.00000 282.90742 40.79526 110 83 - - 227.43590 0.00000 227.43590 35.62289 202 100 P - 210.59528 3.00000 223.56910 35.01724 110 94 - - 194.19853 6.00000 219.63019 34.40030 110 88 - - 178.64116 9.00000 215.61717 33.77175 110 83 - - 163.90704 12.00000 211.52895 33.13142 110 77 - - 149.98018 15.00000 207.36518 32.47925 110 72 - - 146.93626 15.00000 189.10700 30.95875 110 78 - - 133.80614 18.00000 185.24120 30.32588 110 72 - - 121.63124 21.00000 181.30751 29.68189 110 67 - - 110.86026 24.00000 177.30704 29.02697 110 63 - - 100.81106 27.00000 173.24125 28.36136 110 58 - - 91.44941 30.00000 169.11184 27.68533 110 54 - - 87.62705 30.00000 233.56419 23.86297 110 38 - - 77.36491 33.60000 226.60805 23.15227 110 34 - - 67.98254 37.20000 219.53408 22.42953 110 31 - - 59.41926 40.80000 212.34748 21.69529 110 28 - - 51.61443 44.40000 205.05363 20.95008 110 25 - - 44.50740 48.00000 197.65797 20.19448 110 23 - - 43.54912 48.00000 312.44496 19.23619 110 14 - - 37.11531 51.60000 300.60208 18.50707 110 12 - - 31.26217 55.20000 288.61545 17.76909 110 11 - - 25.93529 58.80000 276.49345 17.02278 110 9 - - 21.08031 62.40000 264.24425 16.26864 110 8 - - 16.64280 66.00000 251.87577 15.50715 110 7 - - 20.17239 66.00000 121.31524 19.03674 110 17 - - 18.09350 69.60000 115.30421 18.09350 1 16 A - 17.14236 73.20000 109.24292 17.14236 1 16 A - 16.18387 76.80000 103.13474 16.18387 1 16 A - 15.21852 80.40000 96.98288 15.21852 1 16 A - 14.24679 84.00000 90.79037 14.24679 1 16 A - 18.92338 84.00000 18.92338 18.92338 1 100 A - 17.62481 87.60000 17.62481 17.62481 1 100 A - 16.31895 91.20000 16.31895 16.31895 1 100 A - 15.00632 94.80000 15.00632 15.00632 1 100 A - 13.68743 98.40000 13.68743 13.68743 1 100 A - 12.36277 102.00000 12.36277 12.36277 1 100 A - 14.46510 102.00000 17.82482 14.46510 1 81 A - 12.90893 105.60000 15.90720 12.90893 1 81 A - 11.34701 109.20000 13.98251 11.34701 1 81 A - 9.77980 112.80000 12.05129 9.77980 1 81 A - 8.20773 116.40000 10.11409 8.20773 1 81 A - 6.63121 120.00000 8.17140 6.63121 1 81 A + 14.55326 0.00000 14.55326 2.57725 202 100 P + 29.23512 0.00000 29.23512 5.17727 202 100 P + 44.16614 0.00000 44.16614 7.82141 202 100 P + 58.88036 0.00000 59.45168 10.52834 110 99 - + 59.34991 0.00000 75.17635 13.31303 110 79 - + 37.93138 0.00000 37.93138 11.40782 202 100 P + 46.11754 0.00000 46.11754 13.86980 202 100 P + 54.57334 0.00000 54.57334 16.41288 202 100 P + 58.38079 0.00000 63.30391 19.03859 110 92 - + 58.95030 0.00000 72.30313 21.74509 110 82 - + 59.64870 0.00000 81.55537 24.52770 110 73 - + 187.97857 0.00000 187.97857 16.11148 202 100 P + 232.99977 0.00000 232.99977 19.97021 202 100 P + 278.80500 0.00000 278.80500 23.89614 202 100 P + 325.21794 0.00000 325.21794 27.87415 202 100 P + 346.19801 0.00000 372.05882 31.88885 110 93 - + 324.30065 0.00000 419.15607 35.92551 110 77 - + 250.97291 0.00000 250.97291 24.94340 202 100 P + 279.23300 0.00000 279.23300 27.75208 202 100 P + 270.43561 0.00000 307.47209 30.55867 110 88 - + 250.83060 0.00000 335.62189 33.35639 110 75 - + 232.46753 0.00000 363.62694 36.13973 110 64 - + 215.37926 0.00000 391.44373 38.90435 110 55 - + 196.48786 0.00000 196.48786 30.14854 202 100 P + 187.57717 0.00000 210.33976 32.27394 110 89 - + 172.37237 0.00000 224.06899 34.38051 110 77 - + 158.40986 0.00000 237.66780 36.46707 110 67 - + 145.66187 0.00000 251.13176 38.53294 110 58 - + 134.10104 0.00000 264.45912 40.57786 110 51 - + 127.58280 0.00000 249.11386 35.93321 110 51 - + 118.15226 3.00000 245.04837 35.34678 110 48 - + 109.37529 6.00000 240.91146 34.75006 110 45 - + 101.22262 9.00000 236.70433 34.14320 110 43 - + 93.66500 12.00000 232.42851 33.52644 110 40 - + 86.67325 15.00000 228.08578 32.90003 110 38 - + 85.05983 15.00000 213.60419 31.28661 110 40 - + 78.63556 18.00000 209.47640 30.68201 110 38 - + 72.71898 21.00000 205.28984 30.06881 110 35 - + 67.28170 24.00000 201.04664 29.44730 110 33 - + 62.29536 27.00000 196.74897 28.81783 110 32 - + 57.73159 30.00000 192.39909 28.18070 110 30 - + 53.45448 30.00000 265.43575 23.90359 110 20 - + 48.61343 33.60000 258.14367 23.24691 110 19 - + 44.29680 37.20000 250.75769 22.58177 110 18 - + 40.46147 40.80000 243.28313 21.90865 110 17 - + 37.06435 44.40000 235.72517 21.22803 110 16 - + 34.06231 48.00000 228.08888 20.54035 110 15 - + 33.86460 48.00000 352.64431 20.34264 110 10 - + 31.22225 51.60000 340.72443 19.65503 110 9 - + 28.89736 55.20000 328.69830 18.96129 110 9 - + 26.85652 58.80000 316.57290 18.26183 110 8 - + 25.06629 62.40000 304.35491 17.55702 110 8 - + 23.49322 66.00000 292.05068 16.84724 110 8 - + 26.55253 66.00000 178.16593 19.90655 110 15 - + 25.03539 69.60000 170.61079 19.06241 110 15 - + 23.67912 73.20000 163.01021 18.21319 110 15 - + 22.46159 76.80000 155.36749 17.35927 110 14 - + 21.36063 80.40000 147.68572 16.50098 110 14 - + 20.35406 84.00000 139.96786 15.63866 110 15 - + 23.37454 84.00000 92.15237 18.65914 110 25 - + 22.27490 87.60000 87.04911 17.62583 110 26 - + 21.23542 91.20000 81.92559 16.58841 110 26 - + 20.24412 94.80000 76.78341 15.54721 110 26 - + 19.28901 98.40000 71.62406 14.50254 110 27 - + 18.35807 102.00000 66.44896 13.45468 110 28 - + 18.90391 102.00000 32.85036 14.00052 110 58 - + 17.94418 105.60000 30.28480 12.90710 110 59 - + 16.99351 109.20000 27.71270 11.81089 110 61 - + 16.04839 112.80000 25.13462 10.71214 110 64 - + 15.10528 116.40000 22.55109 9.61106 110 67 - + 12.99108 120.00000 19.96260 8.50787 110 65 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7053,10 +7032,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 8.387 'Peat' - -8.00 464.238 'Sand 1' - -10.00 152.235 'Sand 1' - -11.00 81.943 'Sand 2' + -6.00 44.332 'Peat' + -8.00 471.309 'Sand 1' + -10.00 88.187 'Sand 1' + -11.00 78.823 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7156,22 +7135,22 @@ Depth -6.90000 -7.00000 -7.00000 + -7.04000 -7.08000 + -7.12000 -7.16000 - -7.24000 - -7.32000 - -7.40000 - -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 - -7.80000 + -7.20000 + -7.20000 + -7.28000 + -7.36000 + -7.44000 + -7.52000 + -7.60000 + -7.60000 + -7.68000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -7239,7 +7218,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [UNIFORM LOAD DATA] [TABLE] @@ -7280,20 +7259,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.07 : Percentage mobilized resistance left - 3.65 : Percentage mobilized resistance right - 316.31 : Effective left - 316.32 : Effective right + 7.13 : Percentage mobilized resistance left + 3.70 : Percentage mobilized resistance right + 319.91 : Effective left + 319.93 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4476.09 : Max effective resistance left + 4488.72 : Max effective resistance left 8654.62 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 144.42 : Vertical force left - 141.37 : Vertical force right + 145.74 : Vertical force left + 142.44 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -7310,168 +7289,168 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -19.75070 - 0.00000 0.00000 -19.53564 - 0.00000 0.00000 -19.32058 - 0.00000 0.00000 -19.10553 - 0.00000 0.00000 -18.89047 - 0.00000 0.00000 -18.67542 - 0.00000 0.00000 -18.67542 - 0.00000 0.00000 -18.46036 - 0.00000 0.00000 -18.24530 - 0.00000 0.00000 -18.03025 - 0.00000 0.00000 -17.81519 - 0.00000 0.00000 -17.60013 - 0.00000 0.00000 -17.60013 - 0.00169 0.03408 -17.38508 - 0.00689 0.07042 -17.17002 - 0.01584 0.10901 -16.95497 - 0.02877 0.14990 -16.73992 - 0.04590 0.19309 -16.52488 - 0.04613 0.19154 -16.52488 - 0.08829 0.65563 -16.30984 - 0.17804 1.14342 -16.09482 - 0.31776 1.65499 -15.87985 - 0.51064 2.21469 -15.66497 - 0.76533 2.91331 -15.45022 - 0.76481 2.90741 -15.45022 - 0.82424 3.03625 -15.40729 - 0.88628 3.16818 -15.36436 - 0.95100 3.30483 -15.32145 - 1.01850 3.44620 -15.27854 - 1.08888 3.59229 -15.23564 - 1.08893 3.59173 -15.23564 - 1.32022 4.11885 -15.10702 - 1.58332 4.65218 -14.97851 - 1.87860 5.19171 -14.85013 - 2.20663 5.74676 -14.72193 - 2.56888 6.33500 -14.59392 - 2.56876 6.33299 -14.59392 - 3.29114 7.17050 -14.36690 - 4.08971 7.76179 -14.14079 - 4.93822 8.10662 -13.91582 - 5.81036 8.20477 -13.69221 - 6.67979 8.05597 -13.47019 - 6.67978 8.05606 -13.47019 - 7.47540 6.86854 -13.25003 - 8.14649 5.72098 -13.03193 - 8.69727 4.61263 -12.81604 - 9.13189 3.54274 -12.60251 - 9.45440 2.51051 -12.39149 - 9.45440 2.51074 -12.39149 - 9.66876 1.51466 -12.18311 - 9.77880 0.55457 -11.97739 - 9.78832 -0.37037 -11.77434 - 9.70101 -1.26098 -11.57396 - 9.52050 -2.11809 -11.37624 - 9.52092 -2.11998 -11.37624 - 9.16863 -3.15605 -11.13283 - 8.68150 -4.14278 -10.89335 - 8.06601 -5.08164 -10.65756 - 7.33054 -5.92725 -10.42519 - 6.49183 -6.62840 -10.19598 - 6.49137 -6.64579 -10.19598 - 5.55065 -7.45543 -9.96961 - 4.50767 -8.16580 -9.74562 - 3.37932 -8.73617 -9.52354 - 2.18418 -9.16811 -9.30288 - 0.94059 -9.46289 -9.08317 - 0.94056 -9.46309 -9.08317 - -0.34997 -9.87274 -8.86388 - -1.68630 -10.15020 -8.64445 - -3.05083 -10.29577 -8.42428 - -4.42597 -10.30942 -8.20279 - -5.79412 -10.19079 -7.97941 - -5.79414 -10.19102 -7.97941 - -6.72952 -8.51147 -7.81024 - -7.49541 -6.80139 -7.63945 - -8.08877 -5.06068 -7.46688 - -8.50652 -3.28918 -7.29240 - -8.74558 -1.48675 -7.11585 - -8.74558 -1.48689 -7.11585 - -8.80731 0.25735 -6.93714 - -8.69307 2.03276 -6.75630 - -8.39972 3.83953 -6.57339 - -7.92411 5.67786 -6.38850 - -7.26309 7.54794 -6.20168 - -7.26309 7.54785 -6.20168 - -6.60092 9.00983 -6.05092 - -5.82097 10.49224 -5.89914 - -4.92161 11.99515 -5.74648 - -3.90120 13.51861 -5.59307 - -2.75809 15.06264 -5.43906 - -2.75809 15.06262 -5.43906 - -1.49245 16.58183 -5.28459 - -0.10445 18.12156 -5.12990 - 1.40755 19.68179 -4.97520 - 3.04518 21.26245 -4.82074 - 4.81008 22.86345 -4.66675 - 4.81008 22.86346 -4.66675 - 5.74046 23.65601 -4.59001 - 6.70263 24.45360 -4.51349 - 7.69681 25.25618 -4.43724 - 8.72319 26.06376 -4.36128 - 9.78198 26.87629 -4.28566 - 9.78177 26.87801 -4.28566 - 13.10689 23.05155 -4.03666 - 15.94276 19.53803 -3.79331 - 18.33057 16.32913 -3.55664 - 20.31030 13.41515 -3.32767 - 21.92056 10.78504 -3.10746 - 21.92048 10.79013 -3.10746 - 23.17970 8.14162 -2.89686 - 24.10287 5.74723 -2.69623 - 24.72298 3.59340 -2.50583 - 25.07118 1.66623 -2.32596 - 25.17675 -0.04854 -2.15687 - 25.17675 -0.04262 -2.15687 - 25.06467 -1.60696 -1.99872 - 24.75635 -2.98863 -1.85134 - 24.27518 -4.20192 -1.71453 - 23.64270 -5.26084 -1.58810 - 22.87854 -6.17913 -1.47183 - 22.87948 -6.18081 -1.47183 - 22.22916 -6.81421 -1.39114 - 21.51883 -7.38183 -1.31583 - 20.75569 -7.86258 -1.24570 - 19.95033 -8.22294 -1.18059 - 19.11527 -8.45807 -1.12029 - 19.11454 -8.46028 -1.12029 - 18.25997 -8.61272 -1.06463 - 17.39555 -8.65875 -1.01337 - 16.53148 -8.60701 -0.96633 - 15.67713 -8.46574 -0.92328 - 14.84106 -8.24273 -0.88402 - 14.84097 -8.23878 -0.88402 - 13.84549 -8.33552 -0.84162 - 12.84428 -8.33639 -0.80404 - 11.84815 -8.25255 -0.77093 - 10.86664 -8.09436 -0.74195 - 9.90810 -7.87133 -0.71676 - 9.90816 -7.86786 -0.71676 - 8.97796 -7.62691 -0.69500 - 8.07962 -7.33808 -0.67637 - 7.21845 -7.00851 -0.66056 - 6.39895 -6.64464 -0.64727 - 5.62488 -6.25219 -0.63622 - 5.62493 -6.25020 -0.63622 - 4.89776 -5.86578 -0.62710 - 4.21790 -5.46246 -0.61968 - 3.58737 -5.04410 -0.61375 - 3.00779 -4.61399 -0.60908 - 2.48038 -4.17492 -0.60546 - 2.48041 -4.17403 -0.60546 - 2.00466 -3.75426 -0.60268 - 1.57957 -3.32989 -0.60060 - 1.20561 -2.90244 -0.59908 - 0.88306 -2.47313 -0.59800 - 0.61210 -2.04285 -0.59723 - 0.61211 -2.04261 -0.59723 - 0.39157 -1.63321 -0.59664 - 0.22014 -1.22402 -0.59619 - 0.09778 -0.81533 -0.59584 - 0.02443 -0.40730 -0.59553 - 0.00000 -0.00001 -0.59523 + 0.00000 0.00000 -17.13588 + 0.00000 0.00000 -16.96579 + 0.00000 0.00000 -16.79569 + 0.00000 0.00000 -16.62560 + 0.00000 0.00000 -16.45551 + 0.00000 0.00000 -16.28542 + 0.00000 0.00000 -16.28542 + 0.00000 0.00000 -16.11533 + 0.00000 0.00000 -15.94524 + 0.00000 0.00000 -15.77515 + 0.00000 0.00000 -15.60506 + 0.00000 0.00000 -15.43496 + 0.00018 -0.00122 -15.43496 + 0.00174 0.03286 -15.26487 + 0.00683 0.06919 -15.09478 + 0.01566 0.10779 -14.92469 + 0.03093 0.22287 -14.75461 + 0.06618 0.51659 -14.58453 + 0.06618 0.50770 -14.58453 + 0.13996 0.97179 -14.41446 + 0.26226 1.48751 -14.24442 + 0.44206 2.14111 -14.07446 + 0.69703 2.99094 -13.90462 + 1.04679 4.03712 -13.73495 + 1.04661 4.03591 -13.73495 + 1.12928 4.23154 -13.70104 + 1.21591 4.43154 -13.66714 + 1.30657 4.63590 -13.63326 + 1.40137 4.84462 -13.59938 + 1.50039 5.05769 -13.56552 + 1.50039 5.05770 -13.56552 + 1.82226 5.67773 -13.46403 + 2.18249 6.33636 -13.36270 + 2.58339 7.03353 -13.26156 + 3.02728 7.76914 -13.16064 + 3.51645 8.54309 -13.06000 + 3.51672 8.53699 -13.06000 + 4.37209 7.49154 -12.88186 + 5.11446 6.43310 -12.70494 + 5.74561 5.40620 -12.52939 + 6.26888 4.41027 -12.35539 + 6.68754 3.44472 -12.18312 + 6.68754 3.44454 -12.18312 + 7.00572 2.52629 -12.01273 + 7.22752 1.63738 -11.84426 + 7.35605 0.77714 -11.67776 + 7.39431 -0.05514 -11.51325 + 7.34615 -0.83508 -11.35079 + 7.34627 -0.84327 -11.35079 + 7.21453 -1.62245 -11.19037 + 7.00106 -2.37580 -11.03194 + 6.70873 -3.09999 -10.87541 + 6.34192 -3.76265 -10.72071 + 5.90921 -4.33575 -10.56776 + 5.90965 -4.34474 -10.56776 + 5.27477 -5.17249 -10.37888 + 4.53335 -5.93192 -10.19227 + 3.69801 -6.57704 -10.00757 + 2.78510 -7.09550 -9.82442 + 1.81143 -7.48885 -9.64248 + 1.81110 -7.49049 -9.64248 + 0.77312 -8.05957 -9.46136 + -0.33286 -8.51039 -9.28056 + -1.49110 -8.84369 -9.09960 + -2.68597 -9.05994 -8.91799 + -3.90189 -9.15930 -8.73522 + -3.90186 -9.15967 -8.73522 + -5.13997 -9.39305 -8.55079 + -6.40160 -9.51227 -8.36415 + -7.67147 -9.51655 -8.17476 + -8.93419 -9.40481 -7.98207 + -10.17420 -9.17562 -7.78554 + -10.17423 -9.17611 -7.78554 + -11.00662 -7.46705 -7.63528 + -11.66672 -5.73041 -7.48235 + -12.15177 -3.96590 -7.32665 + -12.45897 -2.17324 -7.16804 + -12.58547 -0.35211 -7.00642 + -12.58547 -0.35231 -7.00642 + -12.53291 1.40832 -6.84170 + -12.30284 3.19795 -6.67395 + -11.89234 5.01692 -6.50327 + -11.29847 6.86556 -6.32975 + -10.51823 8.74420 -6.15350 + -10.51824 8.74410 -6.15350 + -10.15374 9.48153 -6.08226 + -9.75965 10.22381 -6.01063 + -9.33577 10.97096 -5.93863 + -8.88191 11.72299 -5.86626 + -8.39787 12.47993 -5.79355 + -8.39787 12.47990 -5.79355 + -7.33988 13.97314 -5.64717 + -6.16164 15.48610 -5.49964 + -4.86157 17.01884 -5.35118 + -3.43809 18.57143 -5.20199 + -1.88961 20.14390 -5.05226 + -1.88961 20.14389 -5.05226 + -0.21627 21.69313 -4.90222 + 1.58181 23.26218 -4.75214 + 3.50621 24.85097 -4.60232 + 5.55849 26.45941 -4.45306 + 7.74023 28.08736 -4.30467 + 7.74005 28.08888 -4.30467 + 11.22479 24.23402 -4.06027 + 14.21611 20.68650 -3.82070 + 16.75453 17.43905 -3.58707 + 18.87947 14.48292 -3.36047 + 20.62913 11.80792 -3.14200 + 20.62905 11.81270 -3.14200 + 22.02151 9.11734 -2.93260 + 23.07158 6.67484 -2.73266 + 23.81213 4.47226 -2.54252 + 24.27425 2.49628 -2.36250 + 24.48726 0.73311 -2.19293 + 24.48725 0.73886 -2.19293 + 24.47618 -0.87304 -2.03400 + 24.26261 -2.30107 -1.88559 + 23.87012 -3.55920 -1.74754 + 23.32043 -4.66118 -1.61969 + 22.63347 -5.62055 -1.50186 + 22.63442 -5.62239 -1.50186 + 22.03846 -6.28520 -1.41993 + 21.37961 -6.88097 -1.34333 + 20.66477 -7.40165 -1.27189 + 19.90293 -7.81305 -1.20543 + 19.10642 -8.09651 -1.14379 + 19.10568 -8.09884 -1.14379 + 18.28494 -8.29690 -1.08677 + 17.44993 -8.38585 -1.03416 + 16.61112 -8.37436 -0.98578 + 15.77813 -8.27068 -0.94141 + 14.95980 -8.08265 -0.90086 + 14.95971 -8.07867 -0.90086 + 13.98109 -8.21402 -0.85695 + 12.99232 -8.24992 -0.81791 + 12.00464 -8.19768 -0.78339 + 11.02799 -8.06774 -0.75305 + 10.07110 -7.86977 -0.72655 + 10.07117 -7.86625 -0.72655 + 9.13981 -7.64729 -0.70354 + 8.23785 -7.37753 -0.68372 + 7.37094 -7.06424 -0.66677 + 6.54391 -6.71399 -0.65241 + 5.76083 -6.33262 -0.64032 + 5.76088 -6.33059 -0.64032 + 5.02352 -5.95482 -0.63021 + 4.33257 -5.55786 -0.62186 + 3.69033 -5.14363 -0.61502 + 3.09865 -4.71554 -0.60949 + 2.55904 -4.27645 -0.60504 + 2.55907 -4.27552 -0.60504 + 2.07124 -3.85376 -0.60145 + 1.63443 -3.42549 -0.59858 + 1.24932 -2.99229 -0.59630 + 0.91643 -2.55541 -0.59447 + 0.63613 -2.11578 -0.59296 + 0.63615 -2.11552 -0.59296 + 0.40750 -1.69501 -0.59165 + 0.22941 -1.27297 -0.59047 + 0.10204 -0.84968 -0.58940 + 0.02553 -0.42534 -0.58837 + 0.00000 -0.00002 -0.58735 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7561,8 +7540,8 @@ Q max -6.00000 72.30800 39.03400 1604.82592 80.27788 -6.50000 72.34100 38.66100 1804.47291 93.00940 -7.00000 72.15900 38.34600 2027.02175 105.84582 - -7.40000 72.27700 38.12600 2212.84224 116.18521 - -7.80000 72.37100 37.93100 2399.52701 126.58381 + -7.20000 72.22200 38.23300 2119.82609 111.00794 + -7.60000 72.32700 38.02600 2306.07469 121.37727 -8.00000 72.41200 37.84100 2493.20212 131.80457 -8.66667 72.46100 36.89700 2888.64911 147.34350 -9.33333 73.34600 36.43000 3334.95831 162.59598 @@ -7604,9 +7583,9 @@ Lambda passive -5.66667 69.46602 290.75888 24.10121 0.63581 0.34695 4.18563 -6.25000 72.02758 399.29399 25.46305 0.56266 0.35352 5.54363 -6.75000 72.71756 445.09767 25.67283 0.55033 0.35305 6.12091 - -7.20000 73.28766 464.55125 25.84848 0.54057 0.35270 6.33874 - -7.60000 73.75990 466.71192 25.99650 0.53286 0.35245 6.32745 - -7.90000 74.09551 468.37555 26.10380 0.52761 0.35230 6.32124 + -7.10000 73.16473 464.02170 25.81064 0.54264 0.35277 6.34215 + -7.40000 73.52753 465.62151 25.92330 0.53661 0.35257 6.33261 + -7.80000 73.98529 467.81858 26.06826 0.52931 0.35234 6.32313 -8.33333 77.22245 593.17048 23.30839 0.42726 0.30183 7.68132 -9.00000 83.21622 669.46380 22.87872 0.41723 0.27493 8.04487 -9.66667 89.16370 680.59561 24.14850 0.40971 0.27083 7.63310 @@ -7649,26 +7628,26 @@ Status character 0.35202 0.00000 256.22449 26.30820 1 0 A 0.37460 0.00000 272.65951 27.99568 1 0 A 0.39738 0.00000 289.24095 29.69821 1 0 A - 0.42033 0.00000 305.94642 31.41346 1 0 A - 0.44342 0.00000 322.75331 33.13913 1 0 A + 1.90425 0.00000 305.94642 31.41346 110 0 - + 3.97007 0.00000 322.75331 33.13913 110 0 - 4.52259 0.00000 291.28416 30.81411 1 0 A 4.75921 0.00000 306.52402 32.42629 1 0 A - 4.99665 0.00000 321.81679 34.04407 1 0 A - 5.23465 0.00000 337.14512 35.66561 1 0 A - 5.95930 0.00000 352.49332 37.28925 110 0 - - 8.01308 0.00000 367.84743 38.91352 110 0 - - 6.40516 0.00000 332.84455 37.14263 1 0 A - 6.47837 0.20000 334.19157 37.29295 110 0 - - 6.71450 0.40000 335.53827 37.44323 110 0 - - 6.95057 0.60000 336.88458 37.59346 110 0 - - 7.18657 0.80000 338.23042 37.74365 110 0 - - 7.42249 1.00000 339.57572 37.89377 110 0 - - 8.73342 1.00000 328.56510 37.14285 1 0 A - 8.83712 1.60000 332.46630 37.58387 1 0 A - 8.94062 2.20000 336.36043 38.02408 1 0 A - 9.04390 2.80000 340.24589 38.46331 1 0 A - 9.45755 3.40000 344.12129 38.90141 110 0 - - 10.15040 4.00000 347.98535 39.33823 110 0 - + 5.55523 0.00000 321.81679 34.04407 110 0 - + 7.51669 0.00000 337.14512 35.66561 110 0 - + 9.48001 0.00000 352.49332 37.28925 110 0 - + 11.44362 0.00000 367.84743 38.91352 110 0 - + 9.67273 0.00000 332.84455 37.14263 110 0 - + 9.89087 0.20000 334.19157 37.29295 110 0 - + 10.10894 0.40000 335.53827 37.44323 110 0 - + 10.32695 0.60000 336.88458 37.59346 110 0 - + 10.54488 0.80000 338.23042 37.74365 110 0 - + 10.76273 1.00000 339.57572 37.89377 110 0 - + 10.01181 1.00000 328.56510 37.14285 110 0 - + 10.65580 1.60000 332.46630 37.58387 110 0 - + 11.29869 2.20000 336.36043 38.02408 110 0 - + 11.94020 2.80000 340.24589 38.46331 110 0 - + 12.58012 3.40000 344.12129 38.90141 110 0 - + 13.21824 4.00000 347.98535 39.33823 110 0 - 15.74551 4.00000 329.24965 37.56471 1 0 A 16.05492 5.06667 335.71955 38.30287 1 0 A 16.36231 6.13333 342.14732 39.03622 1 0 A @@ -7680,61 +7659,61 @@ Status character 18.03296 11.46667 353.23374 40.12828 1 0 A 18.32849 12.53333 359.02267 40.78591 1 0 A 18.62142 13.60000 364.76071 41.43777 1 0 A - 18.91177 14.66667 370.44816 42.08388 1 0 A + 19.38230 14.66667 370.44816 42.08388 110 0 - 18.90537 14.66667 240.90284 39.78655 1 0 A 19.19307 15.73333 244.56885 40.39201 1 0 A 19.47825 16.80000 248.20281 40.99218 1 0 A - 19.76096 17.86667 251.80528 41.58715 1 0 A - 20.04125 18.93333 255.37694 42.17703 1 0 A - 20.31918 20.00000 258.91850 42.76194 1 0 A + 19.83632 17.86667 251.80528 41.58715 110 0 - + 20.73560 18.93333 255.37694 42.17703 110 0 - + 21.62642 20.00000 258.91850 42.76194 110 0 - 20.24100 20.00000 251.40034 40.44403 1 0 A 20.58386 21.33333 255.65877 41.12910 1 0 A - 20.92326 22.66667 259.87419 41.80726 1 0 A - 21.25931 24.00000 264.04814 42.47874 1 0 A - 22.29342 25.33333 268.18217 43.14380 110 0 - - 23.41074 26.66667 272.27783 43.80269 110 0 - - 21.81990 26.66667 266.21560 41.57322 1 0 A - 22.25374 28.00000 270.18407 42.19295 110 0 - - 23.31605 29.33333 274.11800 42.80728 110 0 - - 24.36938 30.66667 278.01884 43.41645 110 0 - - 25.41491 32.00000 281.88798 44.02067 110 0 - - 26.45382 33.33333 285.72678 44.62016 110 0 - - 24.58345 33.33333 281.42858 42.74978 110 0 - - 25.59202 34.66667 285.18105 43.31979 110 0 - - 26.59675 36.00000 288.90619 43.88565 110 0 - - 27.59898 37.33333 292.60518 44.44754 110 0 - - 28.60005 38.66667 296.27919 45.00563 110 0 - - 29.60128 40.00000 299.92933 45.56010 110 0 - - 33.93508 40.00000 397.23936 40.31861 110 0 - - 34.15507 41.00000 398.07345 40.40326 110 0 - - 34.37470 42.00000 398.89113 40.48626 110 0 - - 34.59413 43.00000 399.69295 40.56764 110 0 - - 34.81355 44.00000 400.47945 40.64747 110 0 - - 35.03311 45.00000 401.25115 40.72579 110 0 - - 34.14076 45.00000 443.03536 39.83344 110 0 - - 34.35892 46.00000 443.87165 39.90863 110 0 - - 34.57742 47.00000 444.69270 39.98245 110 0 - - 34.79624 48.00000 445.49903 40.05495 110 0 - - 35.01538 49.00000 446.29117 40.12617 110 0 - - 35.23481 50.00000 447.06959 40.19616 110 0 - - 34.52208 50.00000 462.97965 39.48342 110 0 - - 34.69684 50.80000 463.61466 39.53757 110 0 - - 34.87169 51.60000 464.24113 39.59100 110 0 - - 35.04654 52.40000 464.85932 39.64372 110 0 - - 35.22130 53.20000 465.46945 39.69575 110 0 - - 35.39587 54.00000 466.07175 39.74712 110 0 - - 34.82844 54.00000 465.24162 39.17968 110 0 - - 35.00200 54.80000 465.83525 39.22967 110 0 - - 35.17513 55.60000 466.42150 39.27904 110 0 - - 35.34765 56.40000 467.00058 39.32781 110 0 - - 35.51939 57.20000 467.57269 39.37599 110 0 - - 35.69020 58.00000 468.13803 39.42360 110 0 - - 35.30176 58.00000 467.67878 39.03517 110 0 - - 35.38652 58.40000 467.95870 39.05853 110 0 - - 35.47096 58.80000 468.23700 39.08176 110 0 - - 35.55506 59.20000 468.51370 39.10485 110 0 - - 35.63880 59.60000 468.78884 39.12782 110 0 - - 35.72213 60.00000 469.06242 39.15065 110 0 - + 21.42272 22.66667 259.87419 41.80726 110 0 - + 22.46361 24.00000 264.04814 42.47874 110 0 - + 23.49495 25.33333 268.18217 43.14380 110 0 - + 24.51773 26.66667 272.27783 43.80269 110 0 - + 22.28825 26.66667 266.21560 41.57322 110 0 - + 23.27023 28.00000 270.18407 42.19295 110 0 - + 24.24616 29.33333 274.11800 42.80728 110 0 - + 25.21725 30.66667 278.01884 43.41645 110 0 - + 26.18470 32.00000 281.88798 44.02067 110 0 - + 27.14971 33.33333 285.72678 44.62016 110 0 - + 25.27934 33.33333 281.42858 42.74978 110 0 - + 26.21821 34.66667 285.18105 43.31979 110 0 - + 27.15735 36.00000 288.90619 43.88565 110 0 - + 28.09802 37.33333 292.60518 44.44754 110 0 - + 29.04149 38.66667 296.27919 45.00563 110 0 - + 29.98901 40.00000 299.92933 45.56010 110 0 - + 34.09017 40.00000 397.23936 40.31861 110 0 - + 34.29504 41.00000 398.07345 40.40326 110 0 - + 34.50037 42.00000 398.89113 40.48626 110 0 - + 34.70632 43.00000 399.69295 40.56764 110 0 - + 34.91303 44.00000 400.47945 40.64747 110 0 - + 35.12065 45.00000 401.25115 40.72579 110 0 - + 34.22830 45.00000 443.03536 39.83344 110 0 - + 34.43527 46.00000 443.87165 39.90863 110 0 - + 34.64329 47.00000 444.69270 39.98245 110 0 - + 34.85233 48.00000 445.49903 40.05495 110 0 - + 35.06237 49.00000 446.29117 40.12617 110 0 - + 35.27336 50.00000 447.06959 40.19616 110 0 - + 34.71152 50.00000 463.22886 39.63432 110 0 - + 34.79579 50.40000 463.54762 39.66160 110 0 - + 34.88018 50.80000 463.86421 39.68869 110 0 - + 34.96469 51.20000 464.17867 39.71559 110 0 - + 35.04931 51.60000 464.49102 39.74232 110 0 - + 35.13402 52.00000 464.80130 39.76886 110 0 - + 34.69199 52.00000 464.10248 39.32683 110 0 - + 34.86109 52.80000 464.71602 39.37882 110 0 - + 35.03043 53.60000 465.32162 39.43014 110 0 - + 35.19986 54.40000 465.91951 39.48080 110 0 - + 35.36924 55.20000 466.50990 39.53083 110 0 - + 35.53844 56.00000 467.09302 39.58024 110 0 - + 34.99993 56.00000 466.39344 39.04174 110 0 - + 35.16812 56.80000 466.96862 39.08989 110 0 - + 35.33575 57.60000 467.53693 39.13746 110 0 - + 35.50262 58.40000 468.09858 39.18448 110 0 - + 35.66850 59.20000 468.65375 39.23095 110 0 - + 35.83317 60.00000 469.20264 39.27690 110 0 - 22.39737 60.00000 569.98615 31.70423 1 0 A 22.76235 61.33333 579.27448 32.22087 1 0 A 23.12656 62.66667 588.54319 32.73643 1 0 A @@ -7756,45 +7735,45 @@ Status character 24.65918 80.00000 704.59497 37.28036 1 0 A 24.89645 81.00000 711.37441 37.63906 1 0 A 25.13353 82.00000 718.14874 37.99749 1 0 A - 25.89862 83.00000 724.91819 38.35566 110 0 - - 26.90772 84.00000 731.68295 38.71359 110 0 - - 27.86834 85.00000 738.44322 39.07128 110 0 - - 27.53911 85.00000 733.93699 38.74205 110 0 - - 28.45022 86.00000 740.65173 39.09650 110 0 - - 29.31699 87.00000 747.36238 39.45073 110 0 - - 30.14149 88.00000 754.06912 39.80476 110 0 - - 30.92583 89.00000 760.77212 40.15859 110 0 - - 31.67207 90.00000 767.47153 40.51223 110 0 - - 23.51601 90.00000 1138.10292 32.35617 110 0 - - 24.27872 91.20000 1150.01793 32.69491 110 0 - - 24.99306 92.40000 1161.92604 33.03346 110 0 - - 25.66249 93.60000 1173.82763 33.37182 110 0 - - 26.29046 94.80000 1185.72305 33.71000 110 0 - - 26.88043 96.00000 1197.61267 34.04802 110 0 - - 26.56333 96.00000 1328.57540 33.73092 110 0 - - 27.11562 97.20000 1341.75911 34.06563 110 0 - - 27.63653 98.40000 1354.93710 34.40021 110 0 - - 28.12906 99.60000 1368.10973 34.73464 110 0 - - 28.59621 100.80000 1381.27731 35.06895 110 0 - - 29.04097 102.00000 1394.44016 35.40314 110 0 - - 28.77893 102.00000 1386.20215 35.14110 110 0 - - 29.20172 103.20000 1399.28285 35.47271 110 0 - - 29.60737 104.40000 1412.35943 35.80421 110 0 - - 29.99809 105.60000 1425.43218 36.13561 110 0 - - 30.37607 106.80000 1438.50137 36.46692 110 0 - - 30.74351 108.00000 1451.56725 36.79815 110 0 - - 30.52796 108.00000 1446.80540 36.58260 110 0 - - 30.88497 109.20000 1459.82536 36.91181 110 0 - - 31.23494 110.40000 1472.84250 37.24095 110 0 - - 31.57919 111.60000 1485.85704 37.57002 110 0 - - 31.91902 112.80000 1498.86919 37.89903 110 0 - - 32.25573 114.00000 1511.87917 38.22799 110 0 - - 32.07945 114.00000 1424.76047 38.05171 110 0 - - 32.41268 115.20000 1437.01890 38.37910 110 0 - - 32.74452 116.40000 1449.27565 38.70645 110 0 - - 33.07540 117.60000 1461.53088 39.03375 110 0 - - 33.40574 118.80000 1473.78475 39.36102 110 0 - - 33.73598 120.00000 1486.03741 39.68826 110 0 - + 25.63676 83.00000 724.91819 38.35566 110 0 - + 26.65927 84.00000 731.68295 38.71359 110 0 - + 27.63342 85.00000 738.44322 39.07128 110 0 - + 27.30420 85.00000 733.93699 38.74205 110 0 - + 28.22885 86.00000 740.65173 39.09650 110 0 - + 29.10909 87.00000 747.36238 39.45073 110 0 - + 29.94696 88.00000 754.06912 39.80476 110 0 - + 30.74446 89.00000 760.77212 40.15859 110 0 - + 31.50363 90.00000 767.47153 40.51223 110 0 - + 23.34757 90.00000 1138.10292 32.35617 110 0 - + 24.12540 91.20000 1150.01793 32.69491 110 0 - + 24.85439 92.40000 1161.92604 33.03346 110 0 - + 25.53796 93.60000 1173.82763 33.37182 110 0 - + 26.17953 94.80000 1185.72305 33.71000 110 0 - + 26.78255 96.00000 1197.61267 34.04802 110 0 - + 26.46544 96.00000 1328.57540 33.73092 110 0 - + 27.03020 97.20000 1341.75911 34.06563 110 0 - + 27.56301 98.40000 1354.93710 34.40021 110 0 - + 28.06690 99.60000 1368.10973 34.73464 110 0 - + 28.54488 100.80000 1381.27731 35.06895 110 0 - + 28.99996 102.00000 1394.44016 35.40314 110 0 - + 28.73792 102.00000 1386.20215 35.14110 110 0 - + 29.17056 103.20000 1399.28285 35.47271 110 0 - + 29.58563 104.40000 1412.35943 35.80421 110 0 - + 29.98536 105.60000 1425.43218 36.13561 110 0 - + 30.37200 106.80000 1438.50137 36.46692 110 0 - + 30.74778 108.00000 1451.56725 36.79815 110 0 - + 30.53222 108.00000 1446.80540 36.58260 110 0 - + 30.89730 109.20000 1459.82536 36.91181 110 0 - + 31.25511 110.40000 1472.84250 37.24095 110 0 - + 31.60699 111.60000 1485.85704 37.57002 110 0 - + 31.95431 112.80000 1498.86919 37.89903 110 0 - + 32.29839 114.00000 1511.87917 38.22799 110 0 - + 32.12211 114.00000 1424.76047 38.05171 110 0 - + 32.46264 115.20000 1437.01890 38.37910 110 0 - + 32.80171 116.40000 1449.27565 38.70645 110 0 - + 33.13979 117.60000 1461.53088 39.03375 110 0 - + 33.47731 118.80000 1473.78475 39.36102 110 0 - + 33.81473 120.00000 1486.03741 39.68826 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7807,10 +7786,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 83.555 'Clay' - -6.00 69.776 'Peat' - -8.00 74.643 'Sand 1' - -11.00 88.344 'Sand 2' + 0.00 87.313 'Clay' + -6.00 69.874 'Peat' + -8.00 74.480 'Sand 1' + -11.00 88.264 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7924,132 +7903,132 @@ Status character 0.00000 2.80000 0.00000 0.00000 -1 0 - 0.00000 3.40000 0.00000 0.00000 -1 0 - 0.00000 4.00000 0.00000 0.00000 -1 0 - - 6.74017 4.00000 6.74017 0.00000 202 100 P - 9.35692 5.06667 9.35692 0.36313 202 100 P - 11.97367 6.13333 11.97367 0.72626 202 100 P - 14.59043 7.20000 14.59043 1.08940 202 100 P - 17.20719 8.26667 17.20719 1.45253 202 100 P - 19.82394 9.33333 19.82394 1.81566 202 100 P - 28.75605 9.33333 33.19895 1.81566 110 87 - - 28.67886 10.40000 35.81571 2.17879 110 80 - - 28.60578 11.46667 38.43246 2.54192 110 74 - - 28.53713 12.53333 41.04922 2.90505 110 70 - - 28.47320 13.60000 43.66597 3.26819 110 65 - - 28.41430 14.66667 46.28273 3.63132 110 61 - - 28.41430 14.66667 51.44317 3.63132 110 55 - - 28.36067 15.73333 54.05992 3.99445 110 52 - - 28.31237 16.80000 56.67668 4.35758 110 50 - - 28.26940 17.86667 59.29343 4.72071 110 48 - - 28.23176 18.93333 61.91019 5.08385 110 46 - - 28.19946 20.00000 64.52695 5.44698 110 44 - - 28.19946 20.00000 64.52695 5.44698 110 44 - - 28.16654 21.33333 67.79789 5.90089 110 42 - - 28.14152 22.66667 71.06884 6.35481 110 40 - - 28.12385 24.00000 74.33978 6.80872 110 38 - - 28.11302 25.33333 77.61073 7.26264 110 36 - - 28.10851 26.66667 80.88167 7.71655 110 35 - - 28.10851 26.66667 80.88167 7.71655 110 35 - - 28.10968 28.00000 84.15262 8.17047 110 33 - - 28.11562 29.33333 87.42356 8.62438 110 32 - - 28.12537 30.66667 90.69450 9.07830 110 31 - - 28.13797 32.00000 93.96545 9.53221 110 30 - - 28.15246 33.33333 97.23639 9.98613 110 29 - - 28.15246 33.33333 97.23639 9.98613 110 29 - - 28.16781 34.66667 100.50734 10.44004 110 28 - - 28.18285 36.00000 103.77828 10.89395 110 27 - - 28.19642 37.33333 107.04923 11.34787 110 26 - - 28.20737 38.66667 110.32017 11.80178 110 26 - - 28.21451 40.00000 113.59112 12.25570 110 25 - - 17.29199 40.00000 111.20665 10.90846 110 16 - - 17.20716 41.00000 111.67158 10.95896 110 15 - - 17.12102 42.00000 112.13652 11.00947 110 15 - - 17.03347 43.00000 112.60145 11.05997 110 15 - - 16.94439 44.00000 113.06638 11.11047 110 15 - - 16.85365 45.00000 113.53131 11.16097 110 15 - - 16.85365 45.00000 113.53131 11.16097 110 15 - - 16.76119 46.00000 113.99625 11.21147 110 15 - - 16.66701 47.00000 114.46118 11.26198 110 15 - - 16.57119 48.00000 114.92611 11.31248 110 14 - - 16.47378 49.00000 115.39105 11.36298 110 14 - - 16.37483 50.00000 115.85598 11.41348 110 14 - - 16.37483 50.00000 115.85598 11.41348 110 14 - - 16.29462 50.80000 116.22793 11.45388 110 14 - - 16.21360 51.60000 116.59987 11.49429 110 14 - - 16.13187 52.40000 116.97182 11.53469 110 14 - - 16.04955 53.20000 117.34376 11.57509 110 14 - - 15.96674 54.00000 117.71571 11.61549 110 14 - - 15.96674 54.00000 117.71571 11.61549 110 14 - - 15.88357 54.80000 118.08766 11.65589 110 13 - - 15.80021 55.60000 118.45960 11.69630 110 13 - - 15.71686 56.40000 118.83155 11.73670 110 13 - - 15.63369 57.20000 119.20350 11.77710 110 13 - - 15.55090 58.00000 119.57544 11.81750 110 13 - - 15.55090 58.00000 119.57544 11.81750 110 13 - - 15.50971 58.40000 119.76142 11.83770 110 13 - - 15.46870 58.80000 119.94739 11.85790 110 13 - - 15.42789 59.20000 120.13336 11.87810 110 13 - - 15.38733 59.60000 120.31933 11.89830 110 13 - - 15.34703 60.00000 120.50531 11.91850 110 13 - - 52.28357 60.00000 338.24848 9.42701 110 15 - - 50.27297 61.33333 355.44755 9.90635 110 14 - - 48.31879 62.66667 372.64663 10.38569 110 13 - - 46.43138 64.00000 389.84570 10.86503 110 12 - - 44.62111 65.33333 407.04478 11.34437 110 11 - - 42.89833 66.66667 424.24385 11.82371 110 10 - - 42.89833 66.66667 424.24385 11.82371 110 10 - - 41.27167 68.00000 441.44293 12.30305 110 9 - - 39.74467 69.33333 458.64200 12.78239 110 9 - - 38.32008 70.66667 475.84108 13.26173 110 8 - - 37.00063 72.00000 493.04015 13.74107 110 8 - - 35.78907 73.33333 510.23923 14.22041 110 7 - - 35.78907 73.33333 510.23923 14.22041 110 7 - - 34.68691 74.66667 527.43830 14.69975 110 7 - - 33.69248 76.00000 544.63738 15.17909 110 6 - - 32.80376 77.33333 561.83645 15.65843 110 6 - - 32.01875 78.66667 579.03553 16.13777 110 6 - - 31.33544 80.00000 596.23460 16.61710 110 5 - - 31.33544 80.00000 596.23460 16.61710 110 5 - - 30.88806 81.00000 609.13391 16.97661 110 5 - - 30.49441 82.00000 622.03322 17.33611 110 5 - - 30.15267 83.00000 634.93252 17.69562 110 5 - - 29.86100 84.00000 647.83183 18.05512 110 5 - - 29.61757 85.00000 660.73113 18.41463 110 4 - - 29.61757 85.00000 660.73113 18.41463 110 4 - - 29.42041 86.00000 673.63044 18.77413 110 4 - - 29.26738 87.00000 686.52975 19.13364 110 4 - - 29.15641 88.00000 699.42905 19.49314 110 4 - - 29.08541 89.00000 712.32836 19.85265 110 4 - - 29.05231 90.00000 725.22767 20.21215 110 4 - - 24.74575 90.00000 634.62802 15.90559 110 4 - - 24.66126 91.20000 648.17344 16.24507 110 4 - - 24.62495 92.40000 661.71886 16.58456 110 4 - - 24.63337 93.60000 675.26428 16.92405 110 4 - - 24.68307 94.80000 688.80970 17.26353 110 4 - - 24.77061 96.00000 702.35512 17.60302 110 4 - - 24.77061 96.00000 702.35512 17.60302 110 4 - - 24.89253 97.20000 715.90054 17.94251 110 3 - - 25.04567 98.40000 729.44596 18.28199 110 3 - - 25.22707 99.60000 742.99138 18.62148 110 3 - - 25.43372 100.80000 756.53680 18.96097 110 3 - - 25.66263 102.00000 770.08223 19.30045 110 3 - - 25.66263 102.00000 770.08223 19.30045 110 3 - - 25.91093 103.20000 783.62765 19.63994 110 3 - - 26.17626 104.40000 797.17307 19.97943 110 3 - - 26.45643 105.60000 810.71849 20.31891 110 3 - - 26.74925 106.80000 824.26391 20.65840 110 3 - - 27.05253 108.00000 837.80933 20.99789 110 3 - - 27.05253 108.00000 837.80933 20.99789 110 3 - - 27.36422 109.20000 851.35475 21.33738 110 3 - - 27.68287 110.40000 864.90017 21.67686 110 3 - - 28.00718 111.60000 878.44559 22.01635 110 3 - - 28.33585 112.80000 891.99101 22.35584 110 3 - - 28.66758 114.00000 905.53643 22.69532 110 3 - - 28.66758 114.00000 905.53643 22.69532 110 3 - - 29.00123 115.20000 919.08185 23.03481 110 3 - - 29.33622 116.40000 932.62727 23.37430 110 3 - - 29.67214 117.60000 946.17269 23.71378 110 3 - - 30.00855 118.80000 959.71811 24.05327 110 3 - - 30.34503 120.00000 973.26353 24.39276 110 3 - + 25.27561 4.00000 25.27561 0.00000 202 100 P + 26.12686 5.06667 27.89236 0.36313 110 94 - + 26.13613 6.13333 30.50912 0.72626 110 86 - + 26.14817 7.20000 33.12588 1.08940 110 79 - + 26.16331 8.26667 35.74263 1.45253 110 73 - + 26.18190 9.33333 38.35939 1.81566 110 68 - + 26.18190 9.33333 38.35939 1.81566 110 68 - + 26.20424 10.40000 40.97614 2.17879 110 64 - + 26.23044 11.46667 43.59290 2.54192 110 60 - + 26.26057 12.53333 46.20966 2.90505 110 57 - + 26.29469 13.60000 48.82641 3.26819 110 54 - + 26.33289 14.66667 51.44317 3.63132 110 51 - + 26.33289 14.66667 51.44317 3.63132 110 51 - + 26.37519 15.73333 54.05992 3.99445 110 49 - + 26.42146 16.80000 56.67668 4.35758 110 47 - + 26.47154 17.86667 59.29343 4.72071 110 45 - + 26.52527 18.93333 61.91019 5.08385 110 43 - + 26.58250 20.00000 64.52695 5.44698 110 41 - + 26.58250 20.00000 64.52695 5.44698 110 41 - + 26.65866 21.33333 67.79789 5.90089 110 39 - + 26.73934 22.66667 71.06884 6.35481 110 38 - + 26.82386 24.00000 74.33978 6.80872 110 36 - + 26.91149 25.33333 77.61073 7.26264 110 35 - + 27.00152 26.66667 80.88167 7.71655 110 33 - + 27.00152 26.66667 80.88167 7.71655 110 33 - + 27.09318 28.00000 84.15262 8.17047 110 32 - + 27.18550 29.33333 87.42356 8.62438 110 31 - + 27.27750 30.66667 90.69450 9.07830 110 30 - + 27.36818 32.00000 93.96545 9.53221 110 29 - + 27.45657 33.33333 97.23639 9.98613 110 28 - + 27.45657 33.33333 97.23639 9.98613 110 28 - + 27.54162 34.66667 100.50734 10.44004 110 27 - + 27.62226 36.00000 103.77828 10.89395 110 27 - + 27.69738 37.33333 107.04923 11.34787 110 26 - + 27.76592 38.66667 110.32017 11.80178 110 25 - + 27.82678 40.00000 113.59112 12.25570 110 24 - + 17.13690 40.00000 111.20665 10.90846 110 15 - + 17.06719 41.00000 111.67158 10.95896 110 15 - + 16.99535 42.00000 112.13652 11.00947 110 15 - + 16.92129 43.00000 112.60145 11.05997 110 15 - + 16.84490 44.00000 113.06638 11.11047 110 15 - + 16.76611 45.00000 113.53131 11.16097 110 15 - + 16.76611 45.00000 113.53131 11.16097 110 15 - + 16.68484 46.00000 113.99625 11.21147 110 15 - + 16.60114 47.00000 114.46118 11.26198 110 15 - + 16.51510 48.00000 114.92611 11.31248 110 14 - + 16.42678 49.00000 115.39105 11.36298 110 14 - + 16.33628 50.00000 115.85598 11.41348 110 14 - + 16.33628 50.00000 115.85598 11.41348 110 14 - + 16.29950 50.40000 116.04195 11.43368 110 14 - + 16.26239 50.80000 116.22793 11.45388 110 14 - + 16.22499 51.20000 116.41390 11.47409 110 14 - + 16.18730 51.60000 116.59987 11.49429 110 14 - + 16.14933 52.00000 116.78584 11.51449 110 14 - + 16.14933 52.00000 116.78584 11.51449 110 14 - + 16.07262 52.80000 117.15779 11.55489 110 14 - + 15.99501 53.60000 117.52974 11.59529 110 14 - + 15.91664 54.40000 117.90168 11.63569 110 13 - + 15.83769 55.20000 118.27363 11.67609 110 13 - + 15.75831 56.00000 118.64558 11.71650 110 13 - + 15.75831 56.00000 118.64558 11.71650 110 13 - + 15.67867 56.80000 119.01752 11.75690 110 13 - + 15.59901 57.60000 119.38947 11.79730 110 13 - + 15.51956 58.40000 119.76142 11.83770 110 13 - + 15.44055 59.20000 120.13336 11.87810 110 13 - + 15.36224 60.00000 120.50531 11.91850 110 13 - + 52.47368 60.00000 338.24848 9.42701 110 16 - + 50.50902 61.33333 355.44755 9.90635 110 14 - + 48.59269 62.66667 372.64663 10.38569 110 13 - + 46.73570 64.00000 389.84570 10.86503 110 12 - + 44.94904 65.33333 407.04478 11.34437 110 11 - + 43.24373 66.66667 424.24385 11.82371 110 10 - + 43.24373 66.66667 424.24385 11.82371 110 10 - + 41.62902 68.00000 441.44293 12.30305 110 9 - + 40.10900 69.33333 458.64200 12.78239 110 9 - + 38.68693 70.66667 475.84108 13.26173 110 8 - + 37.36606 72.00000 493.04015 13.74107 110 8 - + 36.14966 73.33333 510.23923 14.22041 110 7 - + 36.14966 73.33333 510.23923 14.22041 110 7 - + 35.03972 74.66667 527.43830 14.69975 110 7 - + 34.03499 76.00000 544.63738 15.17909 110 6 - + 33.13384 77.33333 561.83645 15.65843 110 6 - + 32.33462 78.66667 579.03553 16.13777 110 6 - + 31.63571 80.00000 596.23460 16.61710 110 5 - + 31.63571 80.00000 596.23460 16.61710 110 5 - + 31.17595 81.00000 609.13391 16.97661 110 5 - + 30.76946 82.00000 622.03322 17.33611 110 5 - + 30.41453 83.00000 634.93252 17.69562 110 5 - + 30.10944 84.00000 647.83183 18.05512 110 5 - + 29.85248 85.00000 660.73113 18.41463 110 5 - + 29.85248 85.00000 660.73113 18.41463 110 5 - + 29.64179 86.00000 673.63044 18.77413 110 4 - + 29.47528 87.00000 686.52975 19.13364 110 4 - + 29.35094 88.00000 699.42905 19.49314 110 4 - + 29.26677 89.00000 712.32836 19.85265 110 4 - + 29.22075 90.00000 725.22767 20.21215 110 4 - + 24.91418 90.00000 634.62802 15.90559 110 4 - + 24.81458 91.20000 648.17344 16.24507 110 4 - + 24.76363 92.40000 661.71886 16.58456 110 4 - + 24.75791 93.60000 675.26428 16.92405 110 4 - + 24.79400 94.80000 688.80970 17.26353 110 4 - + 24.86849 96.00000 702.35512 17.60302 110 4 - + 24.86849 96.00000 702.35512 17.60302 110 4 - + 24.97795 97.20000 715.90054 17.94251 110 3 - + 25.11919 98.40000 729.44596 18.28199 110 3 - + 25.28923 99.60000 742.99138 18.62148 110 3 - + 25.48505 100.80000 756.53680 18.96097 110 3 - + 25.70363 102.00000 770.08223 19.30045 110 3 - + 25.70363 102.00000 770.08223 19.30045 110 3 - + 25.94209 103.20000 783.62765 19.63994 110 3 - + 26.19801 104.40000 797.17307 19.97943 110 3 - + 26.46916 105.60000 810.71849 20.31891 110 3 - + 26.75333 106.80000 824.26391 20.65840 110 3 - + 27.04826 108.00000 837.80933 20.99789 110 3 - + 27.04826 108.00000 837.80933 20.99789 110 3 - + 27.35189 109.20000 851.35475 21.33738 110 3 - + 27.66270 110.40000 864.90017 21.67686 110 3 - + 27.97937 111.60000 878.44559 22.01635 110 3 - + 28.30056 112.80000 891.99101 22.35584 110 3 - + 28.62492 114.00000 905.53643 22.69532 110 3 - + 28.62492 114.00000 905.53643 22.69532 110 3 - + 28.95127 115.20000 919.08185 23.03481 110 3 - + 29.27903 116.40000 932.62727 23.37430 110 3 - + 29.60774 117.60000 946.17269 23.71378 110 3 - + 29.93698 118.80000 959.71811 24.05327 110 3 - + 30.26628 120.00000 973.26353 24.39276 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8062,10 +8041,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 93.716 'Clay' - -6.00 32.709 'Peat' - -8.00 109.771 'Sand 1' - -11.00 80.112 'Sand 2' + 0.00 96.452 'Clay' + -6.00 32.611 'Peat' + -8.00 110.658 'Sand 1' + -11.00 80.192 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8163,22 +8142,22 @@ Depth -6.90000 -7.00000 -7.00000 + -7.04000 -7.08000 + -7.12000 -7.16000 - -7.24000 - -7.32000 - -7.40000 - -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 - -7.80000 + -7.20000 + -7.20000 + -7.28000 + -7.36000 + -7.44000 + -7.52000 + -7.60000 + -7.60000 + -7.68000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -8322,21 +8301,21 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.11 : Percentage mobilized resistance left - 4.57 : Percentage mobilized resistance right - 555.84 : Effective left - 395.76 : Effective right + 11.99 : Percentage mobilized resistance left + 4.54 : Percentage mobilized resistance right + 552.90 : Effective left + 392.69 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4591.40 : Max effective resistance left + 4612.11 : Max effective resistance left 8654.62 : Max effective resistance right --40701.91 : Max moment left +-40726.41 : Max moment left -69913.87 : Max moment right --2696.41 : Max mobilized moment left --2816.88 : Max mobilized moment right - 209.52 : Vertical force left - 185.36 : Vertical force right - 6.6 : Max mobilized moment percentage left +-2662.91 : Max mobilized moment left +-2783.06 : Max mobilized moment right + 209.12 : Vertical force left + 183.44 : Vertical force right + 6.5 : Max mobilized moment percentage left 4.0 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support @@ -8352,168 +8331,168 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -264.87179 - 0.00000 0.00000 -259.33949 - 0.00000 0.00000 -253.80719 - 0.00000 0.00000 -248.27489 - 0.00000 0.00000 -242.74259 - 0.00000 0.00000 -237.21029 - 0.00000 0.00000 -237.21029 - 0.00000 0.00000 -231.67799 - 0.00000 0.00000 -226.14570 - 0.00000 0.00000 -220.61340 - 0.00000 0.00000 -215.08110 - 0.00000 0.00000 -209.54880 - 0.00000 240.00000 -209.54880 - 24.00169 240.03408 -204.01747 - 48.00689 240.07042 -198.49194 - 72.01584 240.10901 -192.97801 - 96.02877 240.14990 -187.48149 - 120.04590 240.19309 -182.00819 - 120.04613 160.49596 -182.00819 - 136.11873 160.96005 -176.56357 - 152.23893 161.44785 -171.15186 - 168.40909 161.95941 -165.77695 - 184.63160 162.49479 -160.44277 - 200.90885 163.05401 -155.15321 - 200.90832 163.04812 -155.15321 - 204.17057 163.17648 -154.10100 - 207.43538 163.30536 -153.05076 - 210.70278 163.43476 -152.00253 - 213.97278 163.56468 -150.95634 - 217.24537 163.69511 -149.91221 - 217.24542 163.69455 -149.91221 - 227.08079 164.11748 -146.79256 - 236.93546 164.33763 -143.69268 - 246.79722 164.35318 -140.61341 - 256.65369 164.16109 -137.55562 - 266.49231 163.75725 -134.52016 - 266.49220 163.75524 -134.52016 - 283.94348 163.34966 -129.18163 - 301.31674 162.28631 -123.92120 - 318.53977 160.52583 -118.74360 - 335.53593 158.02495 -113.65355 - 352.22384 154.73881 -108.65578 - 352.22383 154.73891 -108.65578 - 368.45450 149.41414 -103.75504 - 384.06128 143.03284 -98.95568 - 398.92898 135.54925 -94.26174 - 412.93784 126.92342 -89.67731 - 425.96418 117.12200 -85.20646 - 425.96370 117.12751 -85.20646 - 437.48804 99.07619 -80.85320 - 447.12551 81.74361 -76.62030 - 454.95122 65.10127 -72.50991 - 461.03733 49.12132 -68.52421 - 465.45302 33.77648 -64.66534 - 465.46836 33.69328 -64.66534 - 469.16524 21.56709 -60.02278 - 471.16844 8.29011 -55.58191 - 471.33195 -5.97651 -51.34278 - 469.57557 -20.22373 -47.30546 - 465.97668 -33.62225 -43.46999 - 465.96933 -33.85832 -43.46999 - 460.68685 -45.26387 -39.83563 - 453.93176 -55.93139 -36.39926 - 445.80571 -65.83629 -33.15743 - 436.40720 -75.02619 -30.10666 - 425.82843 -83.54780 -27.24349 - 425.82758 -83.53210 -27.24349 - 414.21098 -90.61170 -24.56388 - 401.69152 -97.08245 -22.06228 - 388.34743 -102.98833 -19.73298 - 374.25118 -108.37190 -17.57026 - 359.46964 -113.27432 -15.56840 - 359.47045 -113.26255 -15.56840 - 348.10696 -113.97120 -14.16890 - 336.68318 -114.47055 -12.85354 - 325.21941 -114.77319 -11.61956 - 313.73470 -114.89127 -10.46418 - 302.24692 -114.83655 -9.38465 - 302.24695 -114.83168 -9.38465 - 290.77000 -114.68124 -8.37817 - 279.31571 -114.38033 -7.44197 - 267.89860 -113.93946 -6.57330 - 256.53215 -113.36876 -5.76939 - 245.22885 -112.67791 -5.02750 - 245.22897 -112.67484 -5.02750 - 236.23762 -112.09762 -4.47678 - 227.29512 -111.45411 -3.96261 - 218.40661 -110.74870 -3.48361 - 209.57687 -109.98562 -3.03841 - 200.81034 -109.16894 -2.62562 - 200.81035 -109.16728 -2.62562 - 192.11256 -108.26946 -2.24389 - 183.48847 -107.32553 -1.89188 - 174.94161 -106.33909 -1.56827 - 166.47526 -105.31354 -1.27173 - 158.09240 -104.25215 -1.00094 - 158.09245 -104.25136 -1.00094 - 153.93406 -103.66668 -0.87480 - 149.79922 -103.07413 -0.75460 - 145.68823 -102.47409 -0.64021 - 141.60138 -101.86691 -0.53144 - 137.53897 -101.25293 -0.42816 - 137.53667 -101.22953 -0.42816 - 124.37334 -96.14556 -0.12121 - 111.91092 -90.76753 0.13231 - 100.17000 -85.35936 0.33746 - 89.14390 -80.05309 0.49928 - 78.81606 -74.89185 0.62283 - 78.81683 -74.87156 0.62283 - 69.20070 -69.40025 0.71287 - 60.30152 -64.12188 0.77320 - 52.09191 -59.06012 0.80735 - 44.54170 -54.23356 0.81885 - 37.61857 -49.65573 0.81124 - 37.61892 -49.64650 0.81124 - 31.31142 -45.00827 0.78779 - 25.60540 -40.62471 0.75090 - 20.46675 -36.49797 0.70278 - 15.86122 -32.62754 0.64566 - 11.75482 -29.01022 0.58175 - 11.75514 -29.00895 0.58175 - 8.99155 -26.28554 0.53056 - 6.49359 -23.69552 0.47720 - 4.24899 -21.20910 0.42221 - 2.24945 -18.79218 0.36614 - 0.48766 -16.46195 0.30953 - 0.48848 -16.45164 0.30953 - -1.04510 -14.23842 0.25288 - -2.36285 -12.13479 0.19647 - -3.47569 -10.13996 0.14060 - -4.39443 -8.25262 0.08552 - -5.12973 -6.47091 0.03151 - -5.12965 -6.47234 0.03151 - -5.80972 -4.88667 -0.03159 - -6.30826 -3.44626 -0.09265 - -6.64243 -2.14613 -0.15158 - -6.82873 -0.98101 -0.20824 - -6.88305 0.05465 -0.26251 - -6.88305 0.05232 -0.26251 - -6.82165 0.95084 -0.31434 - -6.65956 1.73143 -0.36380 - -6.41060 2.39968 -0.41096 - -6.08792 2.96095 -0.45592 - -5.70405 3.42041 -0.49875 - -5.70407 3.41846 -0.49875 - -5.27211 3.76512 -0.53958 - -4.80414 4.01942 -0.57857 - -4.31098 4.18554 -0.61589 - -3.80299 4.26723 -0.65173 - -3.29009 4.26786 -0.68623 - -3.29012 4.26671 -0.68623 - -2.78302 4.17211 -0.71959 - -2.29184 4.00178 -0.75199 - -1.82554 3.75783 -0.78358 - -1.39284 3.44196 -0.81452 - -1.00229 3.05551 -0.84498 - -1.00232 3.05513 -0.84498 - -0.66342 2.58165 -0.87512 - -0.38549 2.03904 -0.90502 - -0.17679 1.42775 -0.93477 - -0.04556 0.74805 -0.96443 - 0.00000 0.00003 -0.99408 + 0.00000 0.00000 -241.82382 + 0.00000 0.00000 -236.68069 + 0.00000 0.00000 -231.53756 + 0.00000 0.00000 -226.39443 + 0.00000 0.00000 -221.25130 + 0.00000 0.00000 -216.10818 + 0.00000 0.00000 -216.10818 + 0.00000 0.00000 -210.96505 + 0.00000 0.00000 -205.82192 + 0.00000 0.00000 -200.67879 + 0.00000 0.00000 -195.53566 + 0.00000 0.00000 -190.39254 + 0.00018 239.99878 -190.39254 + 24.00174 240.03286 -185.25037 + 48.00683 240.06919 -180.11401 + 72.01566 240.10779 -174.98926 + 96.02846 240.14867 -169.88191 + 120.04547 240.19186 -164.79778 + 120.04547 160.48740 -164.79778 + 136.11721 160.95149 -159.74233 + 152.23656 161.43928 -154.71978 + 168.40586 161.95085 -149.73405 + 184.62752 162.48623 -144.78903 + 200.90390 163.04544 -139.88864 + 200.90373 163.04422 -139.88864 + 204.16589 163.17259 -138.91427 + 207.43063 163.30147 -137.94186 + 210.69795 163.43087 -136.97146 + 213.96787 163.56078 -136.00310 + 217.24039 163.69122 -135.03681 + 217.24039 163.69122 -135.03681 + 227.06876 163.77408 -132.15067 + 236.87558 162.97203 -129.28429 + 246.60755 161.27726 -126.43851 + 256.21074 158.67696 -123.61419 + 265.63032 155.15360 -120.81216 + 265.63059 155.14749 -120.81216 + 282.11692 153.81524 -115.88843 + 298.41030 151.52070 -111.04232 + 314.40511 148.20724 -106.27819 + 329.98940 143.81261 -101.60044 + 345.04440 138.27229 -97.01343 + 345.04440 138.27211 -97.01343 + 359.47860 132.17831 -92.52154 + 373.20074 124.91172 -88.12855 + 386.08294 116.42173 -83.83797 + 397.99230 106.66416 -79.65335 + 408.79158 95.60212 -75.57818 + 408.79124 95.59900 -75.57818 + 418.12728 79.56001 -71.61588 + 425.78665 64.15692 -67.76860 + 431.83572 49.36243 -64.03802 + 436.33799 35.14998 -60.42582 + 439.35416 21.49368 -56.93366 + 439.36814 21.41129 -56.93366 + 441.47792 10.05302 -52.73925 + 442.00055 -2.39417 -48.73462 + 440.81580 -15.37403 -44.91927 + 437.91818 -27.96308 -41.29267 + 433.39192 -39.81113 -37.85433 + 433.37781 -39.87502 -37.85433 + 427.38417 -49.90731 -34.60299 + 420.10079 -59.22862 -31.53534 + 411.61948 -67.88371 -28.64775 + 402.02614 -75.91631 -25.93660 + 391.40090 -83.36922 -23.39826 + 391.40103 -83.35079 -23.39826 + 379.87512 -89.44632 -21.02862 + 367.57215 -95.01370 -18.82223 + 354.55983 -100.09298 -16.77351 + 340.90066 -104.72284 -14.87691 + 326.65205 -108.94060 -13.12683 + 326.65278 -108.93000 -13.12683 + 315.74160 -109.26236 -11.90686 + 304.80635 -109.41353 -10.76322 + 293.86456 -109.39483 -9.69325 + 282.93268 -109.21722 -8.69432 + 272.02606 -108.89124 -7.76378 + 272.02609 -108.88686 -7.76378 + 261.15572 -108.49835 -6.89898 + 250.33070 -107.98151 -6.09731 + 239.56338 -107.34574 -5.35616 + 228.86522 -106.60002 -4.67294 + 218.24676 -105.75299 -4.04503 + 218.24692 -105.75099 -4.04503 + 214.02371 -105.40680 -3.80878 + 209.81456 -105.04824 -3.58081 + 205.62004 -104.67581 -3.36095 + 201.44068 -104.29001 -3.14904 + 197.27701 -103.89132 -2.94493 + 197.27696 -103.89045 -2.94493 + 188.99786 -103.07920 -2.55942 + 180.78552 -102.22188 -2.20315 + 172.64349 -101.32199 -1.87485 + 164.57505 -100.38288 -1.57328 + 156.58319 -99.40773 -1.29716 + 156.58320 -99.40644 -1.29716 + 148.67423 -98.31258 -1.04525 + 140.85400 -97.18837 -0.81634 + 133.12482 -96.03656 -0.60923 + 125.48881 -94.85976 -0.42273 + 117.94786 -93.66043 -0.25565 + 117.94715 -93.64966 -0.25565 + 105.82142 -88.19074 -0.01693 + 94.43399 -82.63355 0.17633 + 83.78088 -77.18723 0.32872 + 73.84341 -71.90554 0.44483 + 64.59720 -66.82340 0.52924 + 64.59736 -66.80933 0.52924 + 56.04898 -61.45356 0.58625 + 48.19942 -56.33016 0.61920 + 41.01652 -51.45619 0.63117 + 34.46613 -46.84413 0.62527 + 28.51275 -42.50194 0.60459 + 28.51306 -42.49489 0.60459 + 23.14292 -38.10150 0.57196 + 18.34083 -33.97412 0.52941 + 14.07142 -30.11079 0.47876 + 10.29974 -26.50733 0.42187 + 6.99154 -23.15731 0.36058 + 6.99163 -23.14108 0.36058 + 4.80422 -20.63727 0.31270 + 2.85812 -18.31533 0.26366 + 1.13554 -16.16162 0.21388 + -0.37837 -14.13282 0.16378 + -1.69424 -12.20069 0.11378 + -1.69488 -12.20653 0.11378 + -2.82329 -10.37769 0.06425 + -3.77358 -8.64375 0.01540 + -4.55515 -7.00316 -0.03257 + -5.17726 -5.45400 -0.07948 + -5.64892 -3.99394 -0.12514 + -5.64885 -3.99549 -0.12514 + -6.05376 -2.77355 -0.17805 + -6.31933 -1.67235 -0.22886 + -6.45975 -0.68679 -0.27751 + -6.48858 0.18836 -0.32395 + -6.41875 0.95845 -0.36812 + -6.41875 0.95626 -0.36812 + -6.26361 1.61325 -0.41002 + -6.03535 2.17591 -0.44974 + -5.74497 2.64933 -0.48737 + -5.40288 3.03836 -0.52303 + -5.01895 3.34764 -0.55680 + -5.01898 3.34591 -0.55680 + -4.60366 3.56383 -0.58881 + -4.16652 3.71026 -0.61922 + -3.71591 3.78885 -0.64818 + -3.25978 3.80284 -0.67585 + -2.80570 3.75513 -0.70239 + -2.80573 3.75415 -0.70239 + -2.36209 3.63013 -0.72795 + -1.93678 3.44894 -0.75269 + -1.53656 3.21233 -0.77675 + -1.16798 2.92176 -0.80027 + -0.83745 2.57836 -0.82338 + -0.83747 2.57804 -0.82338 + -0.55236 2.16517 -0.84621 + -0.31990 1.70064 -0.86886 + -0.14626 1.18482 -0.89138 + -0.03758 0.61792 -0.91382 + 0.00000 0.00002 -0.93625 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8603,8 +8582,8 @@ Q max -6.00000 72.30800 39.03400 1604.82592 80.27788 -6.50000 72.34100 38.66100 1804.47291 93.00940 -7.00000 72.15900 38.34600 2027.02175 105.84582 - -7.40000 72.27700 38.12600 2212.84224 116.18521 - -7.80000 72.37100 37.93100 2399.52701 126.58381 + -7.20000 72.22200 38.23300 2119.82609 111.00794 + -7.60000 72.32700 38.02600 2306.07469 121.37727 -8.00000 72.41200 37.84100 2493.20212 131.80457 -8.66667 72.46100 36.89700 2888.64911 147.34350 -9.33333 73.34600 36.43000 3334.95831 162.59598 @@ -8646,9 +8625,9 @@ Lambda passive -5.66667 69.46602 290.75888 24.10121 0.63581 0.34695 4.18563 -6.25000 72.02758 399.29399 25.46305 0.56266 0.35352 5.54363 -6.75000 72.71756 445.09767 25.67283 0.55033 0.35305 6.12091 - -7.20000 73.28766 464.55125 25.84848 0.54057 0.35270 6.33874 - -7.60000 73.75990 466.71192 25.99650 0.53286 0.35245 6.32745 - -7.90000 74.09551 468.37555 26.10380 0.52761 0.35230 6.32124 + -7.10000 73.16473 464.02170 25.81064 0.54264 0.35277 6.34215 + -7.40000 73.52753 465.62151 25.92330 0.53661 0.35257 6.33261 + -7.80000 73.98529 467.81858 26.06826 0.52931 0.35234 6.32313 -8.33333 77.22245 593.17048 23.30839 0.42726 0.30183 7.68132 -9.00000 83.21622 669.46380 22.87872 0.41723 0.27493 8.04487 -9.66667 89.16370 680.59561 24.14850 0.40971 0.27083 7.63310 @@ -8747,96 +8726,96 @@ Status character 24.25425 37.33333 292.60518 44.44754 1 0 A 24.55880 38.66667 296.27919 45.00563 1 0 A 24.86136 40.00000 299.92933 45.56010 1 0 A - 27.86388 40.00000 397.23936 40.31861 110 0 - - 29.06814 41.00000 398.07345 40.40326 110 0 - - 30.20342 42.00000 398.89113 40.48626 110 0 - - 31.27199 43.00000 399.69295 40.56764 110 0 - - 32.27612 44.00000 400.47945 40.64747 110 0 - - 33.21807 45.00000 401.25115 40.72579 110 0 - - 32.32572 45.00000 443.03536 39.83344 110 0 - - 33.20610 46.00000 443.87165 39.90863 110 0 - - 34.02888 47.00000 444.69270 39.98245 110 0 - - 34.79631 48.00000 445.49903 40.05495 110 0 - - 35.51066 49.00000 446.29117 40.12617 110 0 - - 36.17416 50.00000 447.06959 40.19616 110 0 - - 35.46142 50.00000 462.97965 39.48342 110 0 - - 35.95615 50.80000 463.61466 39.53757 110 0 - - 36.42091 51.60000 464.24113 39.59100 110 0 - - 36.85683 52.40000 464.85932 39.64372 110 0 - - 37.26503 53.20000 465.46945 39.69575 110 0 - - 37.64662 54.00000 466.07175 39.74712 110 0 - - 37.07918 54.00000 465.24162 39.17968 110 0 - - 37.43456 54.80000 465.83525 39.22967 110 0 - - 37.76554 55.60000 466.42150 39.27904 110 0 - - 38.07320 56.40000 467.00058 39.32781 110 0 - - 38.35861 57.20000 467.57269 39.37599 110 0 - - 38.62285 58.00000 468.13803 39.42360 110 0 - - 38.23441 58.00000 467.67878 39.03517 110 0 - - 38.35869 58.40000 467.95870 39.05853 110 0 - - 38.47807 58.80000 468.23700 39.08176 110 0 - - 38.59269 59.20000 468.51370 39.10485 110 0 - - 38.70266 59.60000 468.78884 39.12782 110 0 - - 38.80813 60.00000 469.06242 39.15065 110 0 - - 60.97235 60.00000 569.98615 31.70423 110 11 - - 61.91683 61.33333 579.27448 32.22087 110 11 - - 62.38276 62.66667 588.54319 32.73643 110 11 - - 62.43099 64.00000 597.79322 33.25094 110 10 - - 62.12238 65.33333 607.02547 33.76446 110 10 - - 61.51781 66.66667 616.24081 34.27705 110 10 - - 59.35947 66.66667 645.40693 33.47238 110 9 - - 58.48320 68.00000 655.04159 33.97205 110 9 - - 57.40887 69.33333 664.66023 34.47090 110 9 - - 56.17460 70.66667 674.26366 34.96896 110 8 - - 54.81851 72.00000 683.85265 35.46626 110 8 - - 53.37873 73.33333 693.42791 35.96286 110 8 - - 53.02551 73.33333 657.93536 35.31454 110 8 - - 51.53144 74.66667 667.00817 35.80152 110 8 - - 50.01027 76.00000 676.06927 36.28787 110 7 - - 48.48219 77.33333 685.11925 36.77363 110 7 - - 46.96736 78.66667 694.15871 37.25882 110 7 - - 45.48595 80.00000 703.18821 37.74347 110 6 - - 45.19502 80.00000 704.59497 37.28036 110 6 - - 44.11348 81.00000 711.37441 37.63906 110 6 - - 43.06379 82.00000 718.14874 37.99749 110 6 - - 42.57775 83.00000 724.91819 38.35566 110 6 - - 42.37499 84.00000 731.68295 38.71359 110 6 - - 42.16660 85.00000 738.44322 39.07128 110 6 - - 41.83738 85.00000 733.93699 38.74205 110 6 - - 41.62525 86.00000 740.65173 39.09650 110 6 - - 41.41547 87.00000 747.36238 39.45073 110 6 - - 41.21074 88.00000 754.06912 39.80476 110 5 - - 41.01378 89.00000 760.77212 40.15859 110 5 - - 40.82731 90.00000 767.47153 40.51223 110 5 - - 32.67124 90.00000 1138.10292 32.35617 110 3 - - 32.37906 91.20000 1150.01793 32.69491 110 0 - - 32.10692 92.40000 1161.92604 33.03346 110 0 - - 31.85604 93.60000 1173.82763 33.37182 110 0 - - 31.62763 94.80000 1185.72305 33.71000 110 0 - - 31.42288 96.00000 1197.61267 34.04802 110 0 - - 31.10578 96.00000 1328.57540 33.73092 110 0 - - 30.92220 97.20000 1341.75911 34.06563 110 0 - - 30.76223 98.40000 1354.93710 34.40021 110 0 - - 30.62503 99.60000 1368.10973 34.73464 110 0 - - 30.50978 100.80000 1381.27731 35.06895 110 0 - - 30.41564 102.00000 1394.44016 35.40314 110 0 - - 30.15360 102.00000 1386.20215 35.14110 110 0 - - 30.07695 103.20000 1399.28285 35.47271 110 0 - - 30.01853 104.40000 1412.35943 35.80421 110 0 - - 29.97667 105.60000 1425.43218 36.13561 110 0 - - 29.94966 106.80000 1438.50137 36.46692 110 0 - - 29.93583 108.00000 1451.56725 36.79815 110 0 - - 29.72028 108.00000 1446.80540 36.58260 110 0 - - 29.71586 109.20000 1459.82536 36.91181 110 0 - - 29.72104 110.40000 1472.84250 37.24095 110 0 - - 29.73422 111.60000 1485.85704 37.57002 110 0 - - 29.75379 112.80000 1498.86919 37.89903 110 0 - - 29.77816 114.00000 1511.87917 38.22799 110 0 - - 29.60187 114.00000 1424.76047 38.05171 110 0 - - 29.62794 115.20000 1437.01890 38.37910 110 0 - - 29.65623 116.40000 1449.27565 38.70645 110 0 - - 29.68606 117.60000 1461.53088 39.03375 110 0 - - 29.71671 118.80000 1473.78475 39.36102 110 0 - - 29.74747 120.00000 1486.03741 39.68826 110 0 - + 29.81714 40.00000 397.23936 40.31861 110 0 - + 30.87777 41.00000 398.07345 40.40326 110 0 - + 31.87568 42.00000 398.89113 40.48626 110 0 - + 32.81304 43.00000 399.69295 40.56764 110 0 - + 33.69201 44.00000 400.47945 40.64747 110 0 - + 34.51477 45.00000 401.25115 40.72579 110 0 - + 33.62242 45.00000 443.03536 39.83344 110 0 - + 34.38945 46.00000 443.87165 39.90863 110 0 - + 35.10460 47.00000 444.69270 39.98245 110 0 - + 35.77002 48.00000 445.49903 40.05495 110 0 - + 36.38782 49.00000 446.29117 40.12617 110 0 - + 36.96013 50.00000 447.06959 40.19616 110 0 - + 36.39830 50.00000 463.22886 39.63432 110 0 - + 36.61457 50.40000 463.54762 39.66160 110 0 - + 36.82404 50.80000 463.86421 39.68869 110 0 - + 37.02683 51.20000 464.17867 39.71559 110 0 - + 37.22308 51.60000 464.49102 39.74232 110 0 - + 37.41292 52.00000 464.80130 39.76886 110 0 - + 36.97089 52.00000 464.10248 39.32683 110 0 - + 37.33129 52.80000 464.71602 39.37882 110 0 - + 37.66762 53.60000 465.32162 39.43014 110 0 - + 37.98092 54.40000 465.91951 39.48080 110 0 - + 38.27221 55.20000 466.50990 39.53083 110 0 - + 38.54252 56.00000 467.09302 39.58024 110 0 - + 38.00401 56.00000 466.39344 39.04174 110 0 - + 38.25369 56.80000 466.96862 39.08989 110 0 - + 38.48439 57.60000 467.53693 39.13746 110 0 - + 38.69709 58.40000 468.09858 39.18448 110 0 - + 38.89276 59.20000 468.65375 39.23095 110 0 - + 39.07238 60.00000 469.20264 39.27690 110 0 - + 62.88757 60.00000 569.98615 31.70423 110 11 - + 63.19568 61.33333 579.27448 32.22087 110 11 - + 63.09684 62.66667 588.54319 32.73643 110 11 - + 62.64792 64.00000 597.79322 33.25094 110 10 - + 61.90579 65.33333 607.02547 33.76446 110 10 - + 60.92731 66.66667 616.24081 34.27705 110 10 - + 58.76897 66.66667 645.40693 33.47238 110 9 - + 57.57434 68.00000 655.04159 33.97205 110 9 - + 56.23317 69.33333 664.66023 34.47090 110 8 - + 54.77970 70.66667 674.26366 34.96896 110 8 - + 53.24816 72.00000 683.85265 35.46626 110 8 - + 51.67281 73.33333 693.42791 35.96286 110 7 - + 51.31960 73.33333 657.93536 35.31454 110 8 - + 49.72599 74.66667 667.00817 35.80152 110 7 - + 48.13786 76.00000 676.06927 36.28787 110 7 - + 46.57201 77.33333 685.11925 36.77363 110 7 - + 45.04527 78.66667 694.15871 37.25882 110 6 - + 43.57447 80.00000 703.18821 37.74347 110 6 - + 43.28354 80.00000 704.59497 37.28036 110 6 - + 42.22275 81.00000 711.37441 37.63906 110 6 - + 41.20347 82.00000 718.14874 37.99749 110 6 - + 40.49449 83.00000 724.91819 38.35566 110 6 - + 40.35144 84.00000 731.68295 38.71359 110 6 - + 40.20911 85.00000 738.44322 39.07128 110 5 - + 39.87989 85.00000 733.93699 38.74205 110 5 - + 39.73899 86.00000 740.65173 39.09650 110 5 - + 39.60473 87.00000 747.36238 39.45073 110 5 - + 39.47902 88.00000 754.06912 39.80476 110 0 - + 39.36376 89.00000 760.77212 40.15859 110 0 - + 39.26087 90.00000 767.47153 40.51223 110 0 - + 31.10481 90.00000 1138.10292 32.35617 110 0 - + 30.91438 91.20000 1150.01793 32.69491 110 0 - + 30.74484 92.40000 1161.92604 33.03346 110 0 - + 30.59672 93.60000 1173.82763 33.37182 110 0 - + 30.47055 94.80000 1185.72305 33.71000 110 0 - + 30.36685 96.00000 1197.61267 34.04802 110 0 - + 30.04974 96.00000 1328.57540 33.73092 110 0 - + 29.96546 97.20000 1341.75911 34.06563 110 0 - + 29.90284 98.40000 1354.93710 34.40021 110 0 - + 29.86090 99.60000 1368.10973 34.73464 110 0 - + 29.83866 100.80000 1381.27731 35.06895 110 0 - + 29.83513 102.00000 1394.44016 35.40314 110 0 - + 29.57309 102.00000 1386.20215 35.14110 110 0 - + 29.58459 103.20000 1399.28285 35.47271 110 0 - + 29.61201 104.40000 1412.35943 35.80421 110 0 - + 29.65379 105.60000 1425.43218 36.13561 110 0 - + 29.70839 106.80000 1438.50137 36.46692 110 0 - + 29.77427 108.00000 1451.56725 36.79815 110 0 - + 29.55871 108.00000 1446.80540 36.58260 110 0 - + 29.63230 109.20000 1459.82536 36.91181 110 0 - + 29.71402 110.40000 1472.84250 37.24095 110 0 - + 29.80250 111.60000 1485.85704 37.57002 110 0 - + 29.89636 112.80000 1498.86919 37.89903 110 0 - + 29.99424 114.00000 1511.87917 38.22799 110 0 - + 29.81795 114.00000 1424.76047 38.05171 110 0 - + 29.91698 115.20000 1437.01890 38.37910 110 0 - + 30.01785 116.40000 1449.27565 38.70645 110 0 - + 30.12000 117.60000 1461.53088 39.03375 110 0 - + 30.22282 118.80000 1473.78475 39.36102 110 0 - + 30.32572 120.00000 1486.03741 39.68826 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8850,9 +8829,9 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 80.268 'Clay' - -6.00 70.024 'Peat' - -8.00 154.187 'Sand 1' - -11.00 91.284 'Sand 2' + -6.00 71.771 'Peat' + -8.00 150.609 'Sand 1' + -11.00 90.045 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8929,28 +8908,28 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.10000 0.00000 0.00000 0.00000 0.00000 - -2.40000 67.27700 0.00000 2.61808 0.00000 - -2.93333 67.27700 0.00000 20.20123 0.00000 - -3.46667 55.65500 0.00000 67.29071 0.00000 - -4.00000 51.04200 0.00000 300.55331 0.00000 - -4.66667 78.22300 50.14100 386.69299 4.85104 - -5.33333 76.81000 47.60800 469.89463 15.68206 - -6.00000 75.66900 45.75000 561.17489 28.40811 - -6.50000 75.21300 44.72200 643.60394 40.30220 - -7.00000 73.81200 43.87600 778.31198 52.50150 - -7.40000 76.23800 43.30000 883.91434 62.43874 - -7.80000 75.98000 41.25700 954.01762 72.12074 - -8.00000 75.86200 40.28000 989.31335 76.71603 - -8.66667 74.81500 37.28600 1155.54198 91.28005 - -9.33333 75.88800 34.65400 1411.28858 103.83254 - -10.00000 75.54500 32.33000 1625.12970 116.02972 - -10.50000 75.31800 30.76300 1805.63981 125.00801 - -11.00000 75.11500 29.32700 2003.41625 133.87754 - -11.60000 74.65700 27.75900 2420.68321 142.90924 - -12.20000 75.28900 26.33800 3027.66367 151.19903 - -12.80000 76.36000 25.04600 3520.34456 158.65694 - -13.40000 76.30600 23.86800 4036.29315 166.19253 - -14.00000 76.26200 22.79100 4591.23878 173.80091 + -2.40000 66.56000 0.00000 11.16350 0.00000 + -2.93333 66.84500 0.00000 36.49959 0.00000 + -3.46667 55.65500 0.00000 88.61840 0.00000 + -4.00000 53.15900 0.00000 327.37705 0.00000 + -4.66667 77.69100 49.70500 409.06163 0.66367 + -5.33333 76.42300 47.27900 490.75623 11.70015 + -6.00000 75.37800 45.49200 581.06014 24.55601 + -6.50000 74.97400 44.49900 663.15658 36.51517 + -7.00000 73.63800 43.68200 796.96791 48.76464 + -7.20000 73.71900 43.39300 853.94860 53.73229 + -7.60000 75.94300 42.27300 939.19570 63.71022 + -8.00000 75.71700 40.28000 1009.41904 73.15948 + -8.66667 74.70600 37.28600 1174.85508 87.84307 + -9.33333 75.79000 34.65400 1431.43642 100.47760 + -10.00000 75.46400 32.33000 1645.00070 112.73097 + -10.50000 75.24700 30.76300 1825.33594 121.73910 + -11.00000 75.05300 29.32700 2022.96207 130.63054 + -11.60000 74.61000 27.75900 2439.90859 139.68037 + -12.20000 75.25200 26.33800 3047.35075 147.98153 + -12.80000 76.32600 25.04600 3540.94409 155.44563 + -13.40000 76.27700 23.86800 4056.84479 162.98346 + -14.00000 76.23800 22.79100 4611.75202 170.59107 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8967,28 +8946,28 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.25000 0.90552 8.72693 0.00000 4.26830 0.00000 9.63744 - -2.66667 3.67167 32.96840 0.00000 3.72319 0.00000 8.97914 - -3.20000 8.15791 88.29278 0.00000 2.73981 0.00000 10.82296 - -3.73333 13.47175 437.36738 0.00000 1.96782 0.00000 32.46551 - -4.33333 19.62342 129.20952 7.27656 1.41473 0.37081 6.58445 - -5.00000 25.98093 124.80246 16.24652 1.05314 0.62532 4.80362 - -5.66667 31.62109 136.92039 19.08908 0.84129 0.60368 4.33003 - -6.25000 34.77303 164.85809 23.78817 0.68949 0.68410 4.74098 - -6.75000 35.73192 269.41609 24.39860 0.68282 0.68282 7.53993 - -7.20000 36.40387 264.00590 24.84310 0.68243 0.68243 7.25214 - -7.60000 36.88379 175.25819 24.20500 0.65625 0.65625 4.75163 - -7.90000 37.18657 176.47865 22.97648 0.61787 0.61787 4.74576 - -8.33333 40.22295 249.34295 21.84603 0.54312 0.54312 6.19902 - -9.00000 46.01150 383.61990 18.82872 0.40922 0.40922 8.33748 - -9.66667 51.71124 320.76167 18.29577 0.39124 0.35381 6.20294 - -10.25000 56.65647 361.02022 17.95659 0.38300 0.31694 6.37209 - -10.75000 60.87839 395.55289 17.73907 0.37863 0.29139 6.49743 - -11.30000 65.51439 695.44493 15.05282 0.30415 0.22976 10.61515 - -11.90000 70.57043 1011.63410 13.81633 0.30113 0.19578 14.33510 - -12.50000 75.63117 821.13482 12.42984 0.29936 0.16435 10.85710 - -13.10000 80.70074 859.91432 12.55932 0.29842 0.15563 10.65559 - -13.70000 85.78168 924.90938 12.68064 0.29804 0.14782 10.78213 + -2.25000 0.90552 37.21165 0.00000 4.26830 0.00000 41.09405 + -2.66667 3.67167 47.50517 0.00000 3.72319 0.00000 12.93831 + -3.20000 8.15791 97.72278 0.00000 2.73981 0.00000 11.97889 + -3.73333 13.47175 447.67247 0.00000 1.96782 0.00000 33.23045 + -4.33333 19.62342 122.52688 0.99551 1.41473 0.05073 6.24391 + -5.00000 25.98093 122.54189 16.55471 1.05314 0.63719 4.71661 + -5.66667 31.62109 135.45587 19.28379 0.84129 0.60984 4.28372 + -6.25000 34.77303 164.19286 23.91833 0.68949 0.68784 4.72185 + -6.75000 35.73192 267.62267 24.49893 0.68563 0.68563 7.48974 + -7.10000 36.26784 284.90344 24.83824 0.68486 0.68486 7.85554 + -7.40000 36.65589 213.11775 24.94482 0.68051 0.68051 5.81401 + -7.80000 37.09042 175.55835 23.62317 0.63691 0.63691 4.73325 + -8.33333 40.22295 248.15407 22.02538 0.54758 0.54758 6.16946 + -9.00000 46.01150 384.87200 18.95179 0.41189 0.41189 8.36469 + -9.66667 51.71124 320.34642 18.38005 0.39124 0.35544 6.19491 + -10.25000 56.65647 360.67049 18.01627 0.38300 0.31799 6.36592 + -10.75000 60.87839 395.25227 17.78287 0.37863 0.29210 6.49249 + -11.30000 65.51439 694.91086 15.08307 0.30415 0.23023 10.60700 + -11.90000 70.57043 1012.40360 13.83526 0.30113 0.19605 14.34600 + -12.50000 75.63117 822.65556 12.44017 0.29936 0.16448 10.87720 + -13.10000 80.70074 859.83450 12.56306 0.29842 0.15567 10.65461 + -13.70000 85.78168 924.84537 12.67935 0.29804 0.14781 10.78139 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9035,138 +9014,138 @@ Status character 0.00000 0.60000 0.00000 0.00000 -1 0 - 0.00000 0.80000 0.00000 0.00000 -1 0 - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00001 1.00000 0.00001 0.00000 202 100 P - 3.47290 1.60000 3.47290 1.53810 202 100 P - 6.96628 2.20000 6.96628 3.08528 202 100 P - 10.50014 2.80000 10.50014 4.65038 202 100 P - 14.09356 3.40000 14.09356 6.24186 202 100 P - 17.76431 4.00000 17.76431 7.86759 202 100 P - 16.55090 4.00000 16.55090 6.86282 202 100 P - 22.85427 5.06667 22.85427 9.47651 202 100 P - 29.50073 6.13333 29.50073 12.23246 202 100 P - 36.53799 7.20000 36.53799 15.15045 202 100 P - 43.99138 8.26667 43.99138 18.24099 202 100 P - 51.86480 9.33333 51.86480 21.50570 202 100 P - 62.51499 9.33333 62.51499 15.82555 202 100 P - 72.49344 10.40000 72.49344 18.35158 202 100 P - 82.92361 11.46667 82.92361 20.99196 202 100 P - 93.75522 12.53333 93.75522 23.73396 202 100 P - 104.92897 13.60000 104.92897 26.56257 202 100 P - 116.38081 14.66667 116.38081 29.46159 202 100 P - 191.57314 14.66667 349.10622 21.16022 110 55 - - 184.98750 15.73333 384.09695 23.28110 110 48 - - 178.66975 16.80000 419.53612 25.42916 110 43 - - 172.61337 17.86667 455.24475 27.59355 110 38 - - 166.81277 18.93333 491.05929 29.76436 110 34 - - 161.26345 20.00000 526.83400 31.93276 110 31 - - 106.84921 20.00000 106.84921 22.95745 202 100 P - 115.86850 21.33333 115.86850 24.89532 202 100 P - 124.79327 22.66667 124.79327 26.81288 202 100 P - 131.38857 24.00000 133.59032 28.70300 110 98 - - 125.17117 25.33333 142.23438 30.56025 110 88 - - 119.32068 26.66667 150.70713 32.38069 110 79 - - 109.94676 26.66667 109.94676 24.10451 202 100 P - 105.10154 28.00000 115.99395 25.43029 110 91 - - 99.52402 29.33333 121.90172 26.72550 110 82 - - 94.30446 30.66667 127.66761 27.98960 110 74 - - 89.43590 32.00000 133.29155 29.22258 110 67 - - 84.91182 33.33333 138.77534 30.42483 110 61 - - 78.79169 33.33333 125.09363 24.30470 110 63 - - 74.36890 34.66667 129.91338 25.24114 110 57 - - 70.27892 36.00000 134.61364 26.15436 110 52 - - 66.51123 37.33333 139.19905 27.04527 110 48 - - 63.05538 38.66667 143.67472 27.91486 110 44 - - 59.90099 40.00000 148.04610 28.76418 110 40 - - 36.02886 40.00000 162.09642 23.57414 110 22 - - 35.07621 41.00000 163.24438 23.74109 110 21 - - 34.18242 42.00000 164.33418 23.89958 110 21 - - 33.34565 43.00000 165.36845 24.05000 110 20 - - 32.56407 44.00000 166.34980 24.19272 110 20 - - 31.83583 45.00000 167.28077 24.32812 110 19 - - 31.60049 45.00000 266.03907 24.09278 110 12 - - 30.92250 46.00000 267.44356 24.21997 110 12 - - 30.29420 47.00000 268.77584 24.34062 110 11 - - 29.71372 48.00000 270.03970 24.45508 110 11 - - 29.17919 49.00000 271.23882 24.56367 110 11 - - 28.68872 50.00000 272.37673 24.66672 110 11 - - 28.67451 50.00000 261.98050 24.65251 110 11 - - 28.31255 50.80000 262.81592 24.73113 110 11 - - 27.97664 51.60000 263.61739 24.80655 110 11 - - 27.66581 52.40000 264.38650 24.87892 110 10 - - 27.37911 53.20000 265.12475 24.94839 110 10 - - 27.11559 54.00000 265.83362 25.01509 110 10 - - 26.15594 54.00000 174.17529 24.05544 110 15 - - 25.91217 54.80000 174.62142 24.11705 110 15 - - 25.68977 55.60000 175.05011 24.17626 110 15 - - 25.48779 56.40000 175.46223 24.23318 110 15 - - 25.30530 57.20000 175.85859 24.28792 110 14 - - 25.14135 58.00000 176.24000 24.34060 110 14 - - 23.71783 58.00000 176.02233 22.91707 110 13 - - 23.64101 58.40000 176.20743 22.94117 110 13 - - 23.56851 58.80000 176.38909 22.96482 110 13 - - 23.50020 59.20000 176.56738 22.98804 110 13 - - 23.43598 59.60000 176.74240 23.01082 110 13 - - 23.37572 60.00000 176.91423 23.03319 110 13 - - 24.52833 60.00000 231.08935 20.24675 110 11 - - 22.10127 61.33333 238.42116 20.88912 110 9 - - 21.52790 62.66667 245.71187 21.52790 1 9 A - 22.16338 64.00000 252.96511 22.16338 1 9 A - 22.79589 65.33333 260.18427 22.79589 1 9 A - 23.42568 66.66667 267.37249 23.42568 1 9 A - 17.65014 66.66667 359.60713 17.65014 1 5 A - 18.12280 68.00000 369.23736 18.12280 1 5 A - 18.59380 69.33333 378.83353 18.59380 1 5 A - 19.06329 70.66667 388.39899 19.06329 1 5 A - 19.53142 72.00000 397.93685 19.53142 1 5 A - 19.99834 73.33333 407.44997 19.99834 1 5 A - 17.29041 73.33333 303.13567 19.11991 1 0 A - 17.69316 74.66667 310.19683 19.56529 1 0 A - 18.09509 76.00000 317.24336 20.00974 1 0 A - 18.49627 77.33333 324.27694 20.45337 1 0 A - 18.89681 78.66667 331.29911 20.89629 1 0 A - 19.29677 80.00000 338.31129 21.33857 1 0 A - 17.28595 80.00000 347.53693 20.88915 1 0 A - 17.55437 81.00000 352.93356 21.21352 1 0 A - 17.82257 82.00000 358.32569 21.53763 1 0 A - 18.09056 83.00000 363.71382 21.86149 1 0 A - 18.52374 84.00000 369.09841 22.18513 110 0 - - 19.41327 85.00000 374.47990 22.50859 110 0 - - 19.15607 85.00000 381.84574 22.25140 110 0 - - 20.04225 86.00000 387.33033 22.57100 110 0 - - 20.92574 87.00000 392.81255 22.89047 110 0 - - 21.80384 88.00000 398.29277 23.20982 110 0 - - 22.67388 89.00000 403.77133 23.52907 110 0 - - 23.53317 90.00000 409.24855 23.84825 110 0 - - 18.84192 90.00000 668.60824 19.15700 110 0 - - 19.78046 91.20000 679.34408 19.46461 110 3 - - 20.69869 92.40000 690.07825 19.77216 110 3 - - 21.59546 93.60000 700.81145 20.07969 110 3 - - 22.46958 94.80000 711.54435 20.38721 110 3 - - 23.31988 96.00000 722.27756 20.69474 110 3 - - 23.11493 96.00000 975.39113 20.48979 110 2 - - 23.93773 97.20000 989.88684 20.79430 110 2 - - 24.73682 98.40000 1004.38441 21.09884 110 2 - - 25.51305 99.60000 1018.88449 21.40344 110 3 - - 26.26728 100.80000 1033.38765 21.70811 110 3 - - 27.00035 102.00000 1047.89443 22.01285 110 3 - - 26.87076 102.00000 793.65270 21.88325 110 3 - - 27.58205 103.20000 804.64293 22.18628 110 3 - - 28.27509 104.40000 815.63660 22.48941 110 3 - - 28.95158 105.60000 826.63401 22.79264 110 4 - - 29.61324 106.80000 837.63545 23.09598 110 4 - - 30.26176 108.00000 848.64117 23.39944 110 4 - - 30.18823 108.00000 832.89090 23.32592 110 4 - - 30.82449 109.20000 843.69678 23.62855 110 4 - - 31.45121 110.40000 854.50728 23.93130 110 4 - - 32.07000 111.60000 865.32258 24.23420 110 4 - - 32.68248 112.80000 876.14284 24.53723 110 4 - - 33.29024 114.00000 886.96820 24.84040 110 4 - - 33.25848 114.00000 897.50117 24.80864 110 4 - - 33.86274 115.20000 908.46038 25.11157 110 4 - - 34.46487 116.40000 919.42501 25.41466 110 4 - - 35.06558 117.60000 930.39514 25.71789 110 4 - - 35.66560 118.80000 941.37087 26.02128 110 4 - - 36.26562 120.00000 952.35227 26.32483 110 4 - + 0.00004 1.00000 0.00004 0.00000 202 100 P + 14.80847 1.60000 14.80847 1.53810 202 100 P + 29.70424 2.20000 29.70424 3.08528 202 100 P + 44.77261 2.80000 44.77261 4.65038 202 100 P + 60.09497 3.40000 60.09497 6.24186 202 100 P + 75.74706 4.00000 75.74706 7.86759 202 100 P + 23.84869 4.00000 23.84869 6.86282 202 100 P + 32.93140 5.06667 32.93140 9.47651 202 100 P + 42.50849 6.13333 42.50849 12.23246 202 100 P + 52.64870 7.20000 52.64870 15.15045 202 100 P + 63.38851 8.26667 63.38851 18.24099 202 100 P + 74.73356 9.33333 74.73356 21.50570 202 100 P + 69.19182 9.33333 69.19182 15.82555 202 100 P + 80.23600 10.40000 80.23600 18.35158 202 100 P + 91.78016 11.46667 91.78016 20.99196 202 100 P + 103.76862 12.53333 103.76862 23.73396 202 100 P + 116.13577 13.60000 116.13577 26.56257 202 100 P + 128.81071 14.66667 128.81071 29.46159 202 100 P + 172.31659 14.66667 357.33173 21.16022 110 48 - + 166.51286 15.73333 393.14690 23.28110 110 42 - + 160.96637 16.80000 429.42108 25.42916 110 37 - + 155.66960 17.86667 465.97106 27.59355 110 33 - + 150.61600 18.93333 502.62945 29.76436 110 30 - + 145.80007 20.00000 539.24707 31.93276 110 27 - + 101.32303 20.00000 101.32303 22.95745 202 100 P + 109.87585 21.33333 109.87585 24.89532 202 100 P + 118.33904 22.66667 118.33904 26.81288 202 100 P + 118.54153 24.00000 126.68111 28.70300 110 94 - + 113.14559 25.33333 134.87810 30.56025 110 84 - + 108.08935 26.66667 142.91265 32.38069 110 76 - + 99.81317 26.66667 107.95528 24.10451 110 92 - + 94.63627 28.00000 113.89294 25.43029 110 83 - + 89.79618 29.33333 119.69370 26.72550 110 75 - + 85.28510 30.66667 125.35515 27.98960 110 68 - + 81.09578 32.00000 130.87722 29.22258 110 62 - + 77.22136 33.33333 136.26168 30.42483 110 57 - + 71.10123 33.33333 123.75561 24.30470 110 57 - + 67.29837 34.66667 128.52381 25.24114 110 52 - + 63.79881 36.00000 133.17380 26.15436 110 48 - + 60.59230 37.33333 137.71016 27.04527 110 44 - + 57.66867 38.66667 142.13796 27.91486 110 41 - + 55.01784 40.00000 146.46258 28.76418 110 38 - + 34.07560 40.00000 161.44234 23.57414 110 21 - + 33.26658 41.00000 162.58566 23.74109 110 20 - + 32.51016 42.00000 163.67106 23.89958 110 20 - + 31.80460 43.00000 164.70116 24.05000 110 19 - + 31.14818 44.00000 165.67855 24.19272 110 19 - + 30.53914 45.00000 166.60577 24.32812 110 18 - + 30.40287 45.00000 264.26812 24.19185 110 12 - + 29.83875 46.00000 265.66327 24.31956 110 11 - + 29.31856 47.00000 266.98668 24.44071 110 11 - + 28.84057 48.00000 268.24213 24.55564 110 11 - + 28.40303 49.00000 269.43326 24.66468 110 11 - + 28.00418 50.00000 270.56360 24.76816 110 10 - + 27.97615 50.00000 283.77809 24.74013 110 10 - + 27.82701 50.40000 284.23526 24.77998 110 10 - + 27.68367 50.80000 284.68302 24.81902 110 10 - + 27.54601 51.20000 285.12159 24.85725 110 10 - + 27.41394 51.60000 285.55118 24.89471 110 10 - + 27.28734 52.00000 285.97201 24.93140 110 10 - + 27.12926 52.00000 211.65247 24.77331 110 13 - + 26.89156 52.80000 212.25654 24.84402 110 13 - + 26.67442 53.60000 212.83647 24.91190 110 13 - + 26.47697 54.40000 213.39342 24.97709 110 12 - + 26.29834 55.20000 213.92849 25.03972 110 12 - + 26.13764 56.00000 214.44276 25.09991 110 12 - + 24.52929 56.00000 174.58034 23.49156 110 14 - + 24.38193 56.80000 174.98291 23.54573 110 14 - + 24.25092 57.60000 175.37020 23.59785 110 14 - + 24.13539 58.40000 175.74297 23.64801 110 14 - + 24.03450 59.20000 176.10197 23.69631 110 14 - + 23.94738 60.00000 176.44791 23.74286 110 14 - + 22.96945 60.00000 229.98749 20.41298 110 10 - + 21.22997 61.33333 237.28435 21.06062 110 9 - + 21.70464 62.66667 244.54029 21.70464 1 9 A + 22.34534 64.00000 251.75895 22.34534 1 9 A + 22.98304 65.33333 258.94369 22.98304 1 9 A + 23.61800 66.66667 266.09764 23.61800 1 9 A + 17.76550 66.66667 360.78086 17.76550 1 5 A + 18.24125 68.00000 370.44252 18.24125 1 5 A + 18.71533 69.33333 380.07001 18.71533 1 5 A + 19.18789 70.66667 389.66669 19.18789 1 5 A + 19.65908 72.00000 399.23568 19.65908 1 5 A + 20.12905 73.33333 408.77984 20.12905 1 5 A + 17.37006 73.33333 302.74324 19.11991 1 0 A + 17.77467 74.66667 309.79525 19.56529 1 0 A + 18.17845 76.00000 316.83266 20.00974 1 0 A + 18.58148 77.33333 323.85714 20.45337 1 0 A + 18.98386 78.66667 330.87022 20.89629 1 0 A + 19.38567 80.00000 337.87333 21.33857 1 0 A + 17.34340 80.00000 347.20026 20.88915 1 0 A + 18.08656 81.00000 352.59166 21.21352 110 0 - + 18.90103 82.00000 357.97857 21.53763 110 0 - + 19.72266 83.00000 363.36148 21.86149 110 0 - + 20.54729 84.00000 368.74085 22.18513 110 0 - + 21.37076 85.00000 374.11713 22.50859 110 0 - + 21.11356 85.00000 381.55554 22.25140 110 0 - + 21.92851 86.00000 387.03595 22.57100 110 0 - + 22.73647 87.00000 392.51401 22.89047 110 0 - + 23.53556 88.00000 397.99007 23.20982 110 6 - + 24.32390 89.00000 403.46446 23.52907 110 6 - + 25.09961 90.00000 408.93752 23.84825 110 6 - + 20.40836 90.00000 668.09478 19.15700 110 3 - + 21.24514 91.20000 678.82238 19.46461 110 3 - + 22.06078 92.40000 689.54830 19.77216 110 3 - + 22.85478 93.60000 700.27326 20.07969 110 3 - + 23.62666 94.80000 710.99792 20.38721 110 3 - + 24.37591 96.00000 721.72289 20.69474 110 3 - + 24.17096 96.00000 976.13306 20.48979 110 2 - + 24.89447 97.20000 990.63980 20.79430 110 3 - + 25.59621 98.40000 1005.14840 21.09884 110 3 - + 26.27719 99.60000 1019.65951 21.40344 110 3 - + 26.93840 100.80000 1034.17370 21.70811 110 3 - + 27.58086 102.00000 1048.69151 22.01285 110 3 - + 27.45127 102.00000 795.12255 21.88325 110 3 - + 28.07440 103.20000 806.13313 22.18628 110 3 - + 28.68161 104.40000 817.14716 22.48941 110 4 - + 29.27446 105.60000 828.16494 22.79264 110 4 - + 29.85451 106.80000 839.18676 23.09598 110 4 - + 30.42332 108.00000 850.21286 23.39944 110 4 - + 30.34980 108.00000 832.81359 23.32592 110 4 - + 30.90805 109.20000 843.61847 23.62855 110 4 - + 31.45823 110.40000 854.42796 23.93130 110 4 - + 32.00172 111.60000 865.24226 24.23420 110 4 - + 32.53990 112.80000 876.06152 24.53723 110 4 - + 33.07416 114.00000 886.88588 24.84040 110 4 - + 33.04240 114.00000 897.43905 24.80864 110 4 - + 33.57369 115.20000 908.39751 25.11157 110 4 - + 34.10325 116.40000 919.36138 25.41466 110 4 - + 34.63165 117.60000 930.33075 25.71789 110 4 - + 35.15949 118.80000 941.30572 26.02128 110 4 - + 35.68736 120.00000 952.28636 26.32483 110 4 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9179,10 +9158,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 353.538 'Clay' - -6.00 58.025 'Peat' - -8.00 59.470 'Sand 1' - -11.00 84.806 'Sand 2' + 0.00 349.364 'Clay' + -6.00 56.509 'Peat' + -8.00 60.985 'Sand 1' + -11.00 86.044 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9280,22 +9259,22 @@ Depth -6.90000 -7.00000 -7.00000 + -7.04000 -7.08000 + -7.12000 -7.16000 - -7.24000 - -7.32000 - -7.40000 - -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 - -7.80000 + -7.20000 + -7.20000 + -7.28000 + -7.36000 + -7.44000 + -7.52000 + -7.60000 + -7.60000 + -7.68000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -9378,7 +9357,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 40.75685 210000000.000 1 2 0 'anchor' + -1.50000 29.25888 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -9439,22 +9418,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 44.95 : Percentage mobilized resistance left - 3.51 : Percentage mobilized resistance right - 629.48 : Effective left - 320.59 : Effective right + 34.21 : Percentage mobilized resistance left + 3.28 : Percentage mobilized resistance right + 620.31 : Effective left + 299.88 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1400.39 : Max effective resistance left + 1813.18 : Max effective resistance left 9143.56 : Max effective resistance right --12307.27 : Max moment left +-15983.85 : Max moment left -77096.34 : Max moment right --5201.59 : Max mobilized moment left --1734.71 : Max mobilized moment right - 341.72 : Vertical force left - 133.88 : Vertical force right - 42.3 : Max mobilized moment percentage left - 2.3 : Max mobilized moment percentage right +-4906.92 : Max mobilized moment left +-1439.01 : Max mobilized moment right + 332.79 : Vertical force left + 121.85 : Vertical force right + 30.7 : Max mobilized moment percentage left + 1.9 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -9469,168 +9448,168 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -193.36032 - 0.32059 6.51402 -191.79571 - 1.32325 13.64135 -190.23114 - 3.06930 21.38198 -188.66707 - 5.62009 29.73591 -187.10391 - 9.03693 38.70315 -185.54211 - 9.03155 38.83200 -185.54211 - 13.38287 48.23852 -183.98224 - 18.67042 57.38010 -182.42559 - 24.83237 65.72609 -180.87365 - 31.78962 73.29142 -179.32789 - 39.46542 80.09995 -177.78979 - 39.46603 80.10411 -177.78979 - 47.78566 86.16344 -176.26103 - 56.67370 91.47216 -174.74382 - 66.05505 96.02949 -173.24042 - 75.85455 99.83532 -171.75308 - 85.99708 102.89029 -170.28406 - 86.00561 62.22028 -170.28406 - 92.34915 64.52569 -168.83559 - 98.88582 66.08341 -167.40944 - 105.54175 66.91881 -166.00721 - 112.25879 67.43045 -164.63052 - 119.02952 67.99257 -163.28095 - 119.02071 -152.07964 -163.28095 - 115.98030 -151.95976 -163.01443 - 112.94235 -151.83508 -162.74903 - 109.90693 -151.70559 -162.48472 - 106.87416 -151.57129 -162.22147 - 103.84411 -151.43218 -161.95926 - 103.84416 -151.43274 -161.95926 - 94.77137 -150.98657 -161.17853 - 85.72664 -150.49714 -160.40604 - 76.71258 -149.96443 -159.64101 - 67.73177 -149.38846 -158.88267 - 58.78683 -148.76921 -158.13021 - 58.78671 -148.77122 -158.13021 - 42.98098 -147.56350 -156.80462 - 27.31136 -146.21903 -155.49085 - 11.79245 -144.73781 -154.18463 - -3.56118 -143.11984 -152.88169 - -18.73492 -141.36511 -151.57776 - -18.73493 -141.36501 -151.57776 - -33.71420 -139.47353 -150.26862 - -48.48442 -137.44530 -148.95020 - -63.03100 -135.28032 -147.61850 - -77.33936 -132.97858 -146.26953 - -91.39491 -130.54009 -144.89928 - -91.39539 -130.53459 -144.89928 - -105.18295 -127.95934 -143.50381 - -118.68852 -125.24735 -142.07940 - -131.89752 -122.39860 -140.62242 - -144.79536 -119.41311 -139.12924 - -157.36745 -116.29085 -137.59624 - -157.35211 -26.37406 -137.59624 - -160.59802 -22.27894 -135.61936 - -163.28366 -17.97014 -133.57344 - -165.38056 -13.44767 -131.45758 - -166.86021 -8.71152 -129.27090 - -167.69413 -3.76169 -127.01250 - -167.70149 -3.99776 -127.01250 - -167.89266 1.16574 -124.68167 - -167.38113 6.54291 -122.27866 - -166.13839 12.13376 -119.80401 - -164.13596 17.93829 -117.25826 - -161.34535 23.95649 -114.64196 - -161.34620 23.97220 -114.64196 - -157.73682 30.20407 -111.95589 - -153.28228 36.64963 -109.20200 - -147.95409 43.30886 -106.38258 - -141.72376 50.18176 -103.49993 - -134.56279 57.26834 -100.55636 - -134.56198 57.28011 -100.55636 - -128.55553 62.86614 -98.31029 - -121.98533 68.55502 -96.03313 - -114.84110 74.34676 -93.72661 - -107.11255 80.24137 -91.39246 - -98.78940 86.23883 -89.03240 - -98.78936 86.24370 -89.03240 - -89.86084 92.34402 -86.64829 - -80.31713 98.54721 -84.24244 - -70.14796 104.85325 -81.81731 - -59.34305 111.26216 -79.37537 - -47.89210 117.77392 -76.91908 - -47.89198 117.77699 -76.91908 - -38.25893 123.06047 -74.94545 - -28.20055 128.40977 -72.96590 - -17.71161 133.82490 -70.98204 - -6.78681 139.30587 -68.99551 - 4.57909 144.85266 -67.00792 - 4.57910 144.85432 -67.00792 - 16.39151 150.46694 -65.02096 - 28.65556 156.14540 -63.03652 - 41.37653 161.88968 -61.05659 - 54.55967 167.69980 -59.08311 - 68.21025 173.57575 -57.11808 - 68.21030 173.57653 -57.11808 - 75.21172 176.47621 -56.13936 - 82.32693 179.26630 -55.16355 - 89.55156 181.94650 -54.19092 - 96.88118 184.51631 -53.22177 - 104.31138 186.97506 -52.25636 - 104.30908 186.99846 -52.25636 - 129.68176 193.18237 -49.06902 - 155.71393 196.88103 -45.93746 - 182.06993 198.02739 -42.87292 - 208.40430 196.54287 -39.88663 - 234.36073 192.34418 -36.98984 - 234.35866 192.38829 -36.98984 - 257.29795 152.26131 -34.19496 - 275.10848 115.43733 -31.51074 - 288.22253 81.79261 -28.94292 - 297.05518 51.19288 -26.49724 - 302.00288 23.49353 -24.17944 - 302.04957 23.18201 -24.17944 - 303.81855 2.86750 -21.99328 - 302.80420 -17.67281 -19.93771 - 299.21581 -35.73801 -18.01129 - 293.38125 -51.39152 -16.21253 - 285.61161 -64.79046 -14.53999 - 285.59466 -64.84491 -14.53999 - 278.70281 -72.80793 -13.36689 - 271.06882 -79.69842 -12.26117 - 262.79677 -85.57973 -11.22083 - 253.98418 -90.52198 -10.24389 - 244.72062 -94.61661 -9.32836 - 244.72158 -94.58181 -9.32836 - 235.09725 -97.78224 -8.47211 - 225.18868 -100.27599 -7.67268 - 215.06380 -102.11738 -6.92763 - 204.78522 -103.35828 -6.23454 - 194.41051 -104.04814 -5.59095 - 194.40996 -104.02300 -5.59095 - 181.90537 -104.27536 -4.88047 - 169.40914 -103.89601 -4.23330 - 156.99274 -102.95651 -3.64512 - 144.71933 -101.52333 -3.11163 - 132.64443 -99.65782 -2.62851 - 132.65062 -99.67443 -2.62851 - 120.82687 -97.33038 -2.19146 - 109.30415 -94.66573 -1.79646 - 98.12169 -91.63635 -1.43961 - 87.33248 -88.08061 -1.11704 - 77.00568 -83.94137 -0.82486 - 76.99821 -83.94652 -0.82486 - 67.19912 -79.29088 -0.55927 - 57.98670 -74.17780 -0.31704 - 49.41269 -68.65873 -0.09520 - 41.52044 -62.84363 0.10923 - 34.33600 -56.88381 0.29922 - 34.34080 -56.83824 0.29922 - 27.85032 -51.31860 0.47755 - 22.02838 -45.69790 0.64621 - 16.88649 -39.98566 0.80698 - 12.43518 -34.18932 0.96165 - 8.68420 -28.31424 1.11202 - 8.68431 -28.31272 1.11202 - 5.60669 -22.95530 1.25966 - 3.18116 -17.44478 1.40537 - 1.42603 -11.78203 1.54975 - 0.35955 -5.96728 1.69342 - -0.00002 -0.00009 1.83699 + 0.00000 0.00000 -176.26233 + 0.32059 6.51402 -174.46136 + 1.32325 13.64135 -172.66045 + 3.06930 21.38198 -170.86002 + 5.62009 29.73591 -169.06051 + 9.03693 38.70315 -167.26235 + 9.03240 38.81173 -167.26235 + 13.37436 47.99857 -165.46613 + 18.61804 56.76334 -163.67313 + 24.70468 64.85761 -161.88482 + 31.56771 72.29634 -160.10265 + 39.14289 79.10340 -158.32810 + 39.14359 79.10574 -158.32810 + 47.36852 85.28873 -156.56280 + 56.18048 90.84626 -154.80896 + 65.51689 95.77756 -153.06880 + 75.31512 100.08257 -151.34459 + 85.51255 103.76194 -149.63857 + 85.51309 74.60181 -149.63857 + 93.13122 77.65686 -147.95300 + 101.02371 80.08946 -146.28994 + 109.12844 81.90187 -144.65135 + 117.38350 83.09677 -143.03917 + 125.73253 83.83388 -141.45535 + 125.72783 -136.27530 -141.45535 + 123.00352 -136.15542 -141.14216 + 120.28165 -136.03073 -140.83016 + 117.56232 -135.90124 -140.51932 + 114.84563 -135.76694 -140.20961 + 112.13167 -135.62784 -139.90102 + 112.13167 -135.62783 -139.90102 + 104.00717 -135.18166 -138.98164 + 95.91074 -134.69223 -138.07130 + 87.84497 -134.15952 -137.16932 + 79.81246 -133.58355 -136.27499 + 71.81581 -132.96430 -135.38759 + 71.81608 -132.97040 -135.38759 + 57.69576 -131.76269 -133.82497 + 43.71157 -130.41822 -132.27820 + 29.87807 -128.93699 -130.74350 + 16.20987 -127.31902 -129.21705 + 2.72154 -125.56429 -127.69506 + 2.72154 -125.56447 -127.69506 + -10.57234 -123.67299 -126.17375 + -23.65717 -121.64476 -124.64953 + -36.51836 -119.47978 -123.11886 + -49.14133 -117.17804 -121.57820 + -61.51148 -114.73955 -120.02402 + -61.51182 -114.74267 -120.02402 + -73.61491 -112.16743 -118.45284 + -85.43601 -109.45544 -116.86140 + -96.96054 -106.60669 -115.24654 + -108.17391 -103.62119 -113.60509 + -119.06153 -100.49894 -111.93389 + -119.04756 -10.58133 -111.93389 + -120.18777 -6.48621 -109.79912 + -120.76772 -2.17742 -107.61268 + -120.75891 2.34506 -105.37458 + -120.13287 7.08121 -103.08483 + -118.86109 12.03103 -100.74343 + -118.87520 11.96715 -100.74343 + -116.93772 17.13065 -98.35059 + -114.29753 22.50783 -95.90747 + -110.92614 28.09868 -93.41552 + -106.79505 33.90320 -90.87621 + -101.87579 39.92141 -88.29097 + -101.87566 39.93983 -88.29097 + -96.13726 46.17171 -85.66152 + -89.55370 52.61727 -82.99072 + -82.09649 59.27650 -80.28179 + -73.73714 66.14940 -77.53792 + -64.44716 73.23598 -74.76235 + -64.44643 73.24658 -74.76235 + -56.84333 78.83261 -72.66199 + -48.67648 84.52149 -70.54789 + -39.93560 90.31323 -68.42214 + -30.61040 96.20784 -66.28687 + -20.69061 102.20530 -64.14420 + -20.69058 102.20968 -64.14420 + -10.16545 108.31001 -61.99633 + 0.97485 114.51319 -59.84600 + 12.74062 120.81924 -57.69604 + 25.14213 127.22814 -55.54930 + 38.18968 133.73991 -53.40863 + 38.18984 133.74191 -53.40863 + 43.59213 136.37541 -52.55472 + 49.10009 139.02538 -51.70250 + 54.71438 141.69180 -50.85218 + 60.43565 144.37468 -50.00398 + 66.26457 147.07402 -49.15812 + 66.26489 147.07179 -49.15812 + 78.23512 152.03250 -47.47428 + 90.56577 156.08130 -45.80255 + 103.18357 159.20917 -44.14487 + 116.02138 161.66751 -42.50318 + 129.04468 163.91263 -40.87943 + 129.04431 163.88867 -40.87943 + 142.25999 166.43241 -39.27561 + 155.66774 168.76029 -37.69379 + 169.26138 171.07851 -36.13608 + 183.03987 173.38043 -34.60458 + 197.00163 175.65922 -33.10140 + 197.02553 175.20779 -33.10140 + 218.40965 144.63301 -30.66595 + 235.52777 112.56073 -28.32445 + 248.53582 82.96306 -26.08257 + 257.75647 55.73277 -23.94598 + 263.49835 30.76267 -21.92034 + 263.49484 30.80895 -21.92034 + 266.16772 9.66488 -20.00960 + 266.17091 -9.25681 -18.21327 + 263.79255 -26.07896 -16.53040 + 259.30430 -40.92601 -14.96004 + 252.96112 -53.92423 -13.50124 + 252.96147 -53.86445 -13.50124 + 245.11651 -63.51567 -12.15196 + 236.09968 -71.46325 -10.90802 + 226.12989 -77.83032 -9.76518 + 215.40985 -82.73655 -8.71919 + 204.12656 -86.29827 -7.76584 + 204.12872 -86.24777 -7.76584 + 195.43799 -87.47768 -7.10883 + 186.65012 -88.19940 -6.49906 + 177.81345 -88.46096 -5.93440 + 168.97183 -88.30532 -5.41271 + 160.16493 -87.77327 -4.93188 + 160.16443 -87.76282 -4.93188 + 151.43710 -86.73104 -4.48974 + 142.82815 -85.40127 -4.08420 + 134.36563 -83.80813 -3.71321 + 126.07422 -81.98424 -3.37475 + 117.97545 -79.96016 -3.06675 + 117.97517 -79.94532 -3.06675 + 108.53862 -77.29652 -2.73453 + 99.43131 -74.46526 -2.44007 + 90.67256 -71.49389 -2.18033 + 82.27683 -68.42116 -1.95227 + 74.25413 -65.28221 -1.75284 + 74.25741 -65.29761 -1.75284 + 66.61951 -61.99817 -1.57909 + 59.38141 -58.60965 -1.42851 + 52.55926 -55.06950 -1.29874 + 46.16947 -51.41074 -1.18739 + 40.22380 -47.67404 -1.09211 + 40.22270 -47.66833 -1.09211 + 34.72434 -43.96602 -1.01064 + 29.67148 -40.24798 -0.94124 + 25.06439 -36.54067 -0.88231 + 20.90039 -32.86674 -0.83225 + 17.17429 -29.24503 -0.78945 + 17.17453 -29.23881 -0.78945 + 13.85581 -26.08175 -0.75245 + 10.91266 -22.98097 -0.72027 + 8.33773 -19.94643 -0.69200 + 6.12256 -16.98597 -0.66674 + 4.25790 -14.10530 -0.64361 + 4.25798 -14.10338 -0.64361 + 2.73146 -11.33351 -0.62181 + 1.53912 -8.53405 -0.60095 + 0.68441 -5.70648 -0.58073 + 0.17066 -2.85154 -0.56085 + -0.00043 -0.00832 -0.54103 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9714,22 +9693,22 @@ Status character 86.60582 0.00000 86.60582 8.51090 202 100 P 92.73885 0.00000 92.73885 9.36199 202 100 P 92.73885 0.00000 92.73885 9.36199 202 100 P - 95.39152 0.00000 98.87187 10.21308 110 96 - - 87.44021 0.00000 105.00489 11.06417 110 83 - - 79.47950 0.00000 111.13791 11.91526 110 72 - - 71.82709 0.00000 117.27093 12.76635 110 61 - - 64.34351 0.00000 123.40395 13.61744 110 52 - - 64.34351 0.00000 123.40395 13.61744 110 52 - - 56.84317 0.00000 129.53697 14.46853 110 44 - - 49.33134 0.00000 135.67000 15.31962 110 36 - - 41.81510 0.00000 141.80302 16.17071 110 29 - - 34.30156 0.00000 147.93604 17.02180 110 23 - - 26.79780 0.00000 154.06906 17.87289 110 17 - - 26.79780 0.00000 154.06906 17.87289 110 17 - - 19.31033 0.00000 160.20208 18.72398 110 12 - - 11.84402 0.00000 166.33510 19.57507 110 0 - - 4.86399 0.00000 172.46812 20.42617 1 0 A - 5.36881 0.00000 178.60115 21.27726 1 0 A + 90.99783 0.00000 98.87187 10.21308 110 92 - + 84.29757 0.00000 105.00489 11.06417 110 80 - + 77.58794 0.00000 111.13791 11.91526 110 70 - + 71.18669 0.00000 117.27093 12.76635 110 61 - + 64.95436 0.00000 123.40395 13.61744 110 53 - + 64.95436 0.00000 123.40395 13.61744 110 53 - + 58.70544 0.00000 129.53697 14.46853 110 45 - + 52.44523 0.00000 135.67000 15.31962 110 39 - + 46.18084 0.00000 141.80302 16.17071 110 33 - + 39.91938 0.00000 147.93604 17.02180 110 27 - + 33.66797 0.00000 154.06906 17.87289 110 22 - + 33.66797 0.00000 154.06906 17.87289 110 22 - + 27.43303 0.00000 160.20208 18.72398 110 17 - + 21.21887 0.00000 166.33510 19.57507 110 13 - + 15.02940 0.00000 172.46812 20.42617 110 0 - + 8.86854 0.00000 178.60115 21.27726 110 0 - 5.87362 0.00000 184.73417 22.12835 1 0 A 5.87362 0.00000 184.73417 22.12835 1 0 A 5.91401 0.20000 185.22481 22.19643 1 0 A @@ -9792,22 +9771,22 @@ Status character 15.60335 49.00000 307.87325 32.27087 1 0 A 15.63196 50.00000 308.33819 32.32137 1 0 A 15.63196 50.00000 308.33819 32.32137 1 0 A + 15.64340 50.40000 308.52416 32.34157 1 0 A 15.65484 50.80000 308.71013 32.36177 1 0 A + 15.66628 51.20000 308.89611 32.38197 1 0 A 15.67772 51.60000 309.08208 32.40217 1 0 A - 15.70060 52.40000 309.45403 32.44257 1 0 A - 15.72349 53.20000 309.82597 32.48298 1 0 A - 15.74637 54.00000 310.19792 32.52338 1 0 A - 15.74637 54.00000 310.19792 32.52338 1 0 A - 15.76925 54.80000 310.56986 32.56378 1 0 A - 15.79213 55.60000 310.94181 32.60418 1 0 A - 15.81502 56.40000 311.31376 32.64458 1 0 A - 15.83790 57.20000 311.68570 32.68498 1 0 A - 15.86078 58.00000 312.05765 32.72539 1 0 A - 15.86078 58.00000 312.05765 32.72539 1 0 A + 15.68916 52.00000 309.26805 32.42237 1 0 A + 15.68916 52.00000 309.26805 32.42237 1 0 A + 15.71205 52.80000 309.64000 32.46277 1 0 A + 15.73493 53.60000 310.01194 32.50318 1 0 A + 15.75781 54.40000 310.38389 32.54358 1 0 A + 15.78069 55.20000 310.75584 32.58398 1 0 A + 15.80358 56.00000 311.12778 32.62438 1 0 A + 15.80358 56.00000 311.12778 32.62438 1 0 A + 15.82646 56.80000 311.49973 32.66478 1 0 A + 15.84934 57.60000 311.87168 32.70518 1 0 A 15.87222 58.40000 312.24362 32.74559 1 0 A - 15.88366 58.80000 312.42960 32.76579 1 0 A 15.89511 59.20000 312.61557 32.78599 1 0 A - 15.90655 59.60000 312.80154 32.80619 1 0 A 15.91799 60.00000 312.98752 32.82639 1 0 A 12.98744 60.00000 931.61657 25.96423 1 0 A 13.22721 61.33333 948.81564 26.44357 1 0 A @@ -9847,28 +9826,28 @@ Status character 15.21863 96.00000 1221.59623 30.61668 1 0 A 15.21863 96.00000 1221.59623 30.61668 1 0 A 15.38738 97.20000 1235.14165 30.95617 1 0 A - 15.55613 98.40000 1248.68707 31.29566 1 0 A - 17.23904 99.60000 1262.23249 31.63514 110 0 - - 20.80423 100.80000 1275.77791 31.97463 110 0 - - 24.06547 102.00000 1289.32333 32.31412 110 0 - - 24.06547 102.00000 1289.32333 32.31412 110 0 - - 27.06092 103.20000 1302.86875 32.65360 110 0 - - 29.82271 104.40000 1316.41418 32.99309 110 0 - - 32.38061 105.60000 1329.95960 33.33258 110 0 - - 34.76437 106.80000 1343.50502 33.67206 110 3 - - 37.00375 108.00000 1357.05044 34.01155 110 3 - - 37.00375 108.00000 1357.05044 34.01155 110 3 - - 39.12654 109.20000 1370.59586 34.35104 110 3 - - 41.15260 110.40000 1384.14128 34.69052 110 3 - - 43.09980 111.60000 1397.68670 35.03001 110 3 - - 44.98604 112.80000 1411.23212 35.36950 110 3 - - 46.82917 114.00000 1424.77754 35.70898 110 3 - - 46.82917 114.00000 1424.77754 35.70898 110 3 - - 48.64504 115.20000 1438.32296 36.04847 110 3 - - 50.44162 116.40000 1451.86838 36.38796 110 3 - - 52.22498 117.60000 1465.41380 36.72744 110 4 - - 54.00118 118.80000 1478.95922 37.06693 110 4 - - 55.77631 120.00000 1492.50464 37.40642 110 4 - + 17.01052 98.40000 1248.68707 31.29566 110 0 - + 18.64776 99.60000 1262.23249 31.63514 110 0 - + 20.10068 100.80000 1275.77791 31.97463 110 0 - + 21.39300 102.00000 1289.32333 32.31412 110 0 - + 21.39300 102.00000 1289.32333 32.31412 110 0 - + 22.54721 103.20000 1302.86875 32.65360 110 0 - + 23.58068 104.40000 1316.41418 32.99309 110 0 - + 24.50945 105.60000 1329.95960 33.33258 110 0 - + 25.34956 106.80000 1343.50502 33.67206 110 0 - + 26.11705 108.00000 1357.05044 34.01155 110 0 - + 26.11705 108.00000 1357.05044 34.01155 110 0 - + 26.82652 109.20000 1370.59586 34.35104 110 0 - + 27.48786 110.40000 1384.14128 34.69052 110 0 - + 28.11004 111.60000 1397.68670 35.03001 110 0 - + 28.70205 112.80000 1411.23212 35.36950 110 0 - + 29.27287 114.00000 1424.77754 35.70898 110 0 - + 29.27287 114.00000 1424.77754 35.70898 110 0 - + 29.83039 115.20000 1438.32296 36.04847 110 0 - + 30.37850 116.40000 1451.86838 36.38796 110 0 - + 30.92018 117.60000 1465.41380 36.72744 110 0 - + 31.45839 118.80000 1478.95922 37.06693 110 0 - + 31.99610 120.00000 1492.50464 37.40642 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9881,10 +9860,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 148.178 'Clay' + 0.00 152.532 'Clay' -6.00 31.264 'Peat' -8.00 47.054 'Sand 1' - -11.00 94.089 'Sand 2' + -11.00 69.027 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9899,7 +9878,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -9953,7 +9932,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -9962,24 +9941,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.13800 30.62300 1.57659 0.00767 - -8.66667 66.57200 30.42700 47.07497 1.02891 - -9.33333 82.06900 30.42100 469.97750 3.55979 - -10.00000 79.87800 45.62200 662.48573 8.30164 - -10.50000 78.82500 43.02200 808.51771 15.22287 - -11.00000 78.19100 41.26400 926.50171 22.65653 - -11.60000 76.63100 39.59100 1124.56998 30.57434 - -12.20000 78.97400 38.45200 1356.53269 38.58042 - -12.80000 78.84000 37.64900 1420.45908 46.40999 - -13.40000 78.81100 37.07600 1434.71728 53.92511 - -14.00000 78.88200 35.14000 1399.42689 60.01197 + -7.20000 0.00000 0.00000 0.00000 0.00000 + -7.60000 71.41600 0.00000 12.24999 0.00000 + -8.00000 68.19900 0.00000 35.27228 0.00000 + -8.66667 62.94500 29.28200 366.34622 0.81390 + -9.33333 80.49000 49.48700 591.23839 5.80611 + -10.00000 78.79300 45.00000 806.44017 18.13657 + -10.50000 77.94200 41.38800 972.46260 26.65670 + -11.00000 77.40500 39.99100 1112.19530 35.08467 + -11.60000 76.13400 38.57300 1347.08503 43.77196 + -12.20000 78.28700 37.58200 1637.19201 52.42931 + -12.80000 78.14200 36.86900 1744.44747 60.84949 + -13.40000 78.07000 36.34700 1802.75791 68.91968 + -14.00000 78.05900 34.64100 1812.34570 75.82872 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -9990,17 +9970,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00164 7.88293 0.03837 2.74417 0.03830 7.86999 - -8.33333 7.89566 68.24758 1.53185 1.80025 0.19401 8.64369 - -9.00000 20.91076 634.35379 3.79633 1.28846 0.18155 30.33624 - -9.66667 35.01686 288.76235 7.11277 0.94421 0.20312 8.24638 - -10.25000 40.31386 292.06396 13.84246 0.81074 0.34337 7.24475 - -10.75000 36.47897 235.96799 14.86733 0.77707 0.40756 6.46860 - -11.30000 31.78836 330.11379 13.19636 0.67878 0.41513 10.38474 - -11.90000 26.16252 386.60452 13.34346 0.64878 0.51002 14.77704 - -12.50000 20.11463 23.83011 13.04928 0.64875 0.64875 1.18472 - -13.10000 13.75589 23.83011 12.52520 0.91053 0.91053 1.73236 - -13.70000 7.17835 23.83011 10.14477 1.41324 1.41324 3.31972 + -7.40000 2.01302 30.62497 0.00000 2.71334 0.00000 15.21343 + -7.80000 6.31878 57.55572 0.00000 2.42820 0.00000 9.10868 + -8.33333 15.33906 496.61091 1.22085 1.58630 0.07959 32.37558 + -9.00000 29.39452 337.33826 7.48831 1.05400 0.25475 11.47623 + -9.66667 43.45910 322.80267 18.49569 0.77893 0.42559 7.42773 + -10.25000 48.26257 332.04485 17.04027 0.67305 0.35307 6.87997 + -10.75000 43.93852 279.46541 16.85594 0.63761 0.38363 6.36037 + -11.30000 38.76252 391.48288 14.47882 0.54007 0.37353 10.09952 + -11.90000 32.71463 483.51163 14.42891 0.51025 0.44105 14.77968 + -12.50000 26.35589 178.75911 14.03364 0.53247 0.53247 6.78251 + -13.10000 19.77835 97.18407 13.45031 0.68005 0.68005 4.91366 + -13.70000 13.05220 15.97965 11.51507 0.88223 0.88223 1.22429 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10107,78 +10088,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14883 0.00000 3.14883 1.09796 202 100 P - 6.30262 0.00000 6.30262 2.19764 202 100 P - 9.46631 0.00000 9.46631 3.30078 202 100 P - 12.64470 0.00000 12.64470 4.40905 202 100 P - 15.84247 0.00000 15.84247 5.52407 202 100 P - 17.39993 0.00000 17.39993 3.62395 202 100 P - 37.38930 0.00000 37.38930 7.78721 202 100 P - 57.82510 0.00000 57.82510 12.04346 202 100 P - 78.81987 0.00000 78.81987 16.41612 202 100 P - 100.43440 0.00000 100.43440 20.91786 202 100 P - 122.67877 0.00000 122.67877 25.55079 202 100 P - 394.41367 0.00000 430.55857 18.28701 110 92 - - 370.77005 0.00000 510.72096 21.69173 110 73 - - 348.01479 0.00000 592.74164 25.17537 110 59 - - 326.22745 0.00000 676.31042 28.72477 110 48 - - 305.48600 0.00000 761.07915 32.32513 110 40 - - 285.86812 0.00000 846.69288 35.96138 110 34 - - 230.15876 0.00000 230.15876 26.35324 202 100 P - 253.56897 0.00000 253.56897 29.03372 202 100 P - 236.69185 0.00000 277.03319 31.72038 110 85 - - 219.58850 0.00000 300.47859 34.40489 110 73 - - 203.66272 0.00000 323.84395 37.08023 110 63 - - 188.91633 0.00000 347.07954 39.74071 110 54 - - 181.73729 0.00000 304.92230 34.12307 110 60 - - 168.87096 3.00000 299.85124 33.55558 110 56 - - 156.64607 6.00000 294.68533 32.97748 110 53 - - 145.04723 9.00000 289.41573 32.38777 110 50 - - 134.22459 12.00000 284.03573 31.78571 110 47 - - 124.45437 15.00000 278.54053 31.17075 110 45 - - 123.15969 15.00000 248.69975 29.87607 110 50 - - 113.99502 18.00000 243.68757 29.27396 110 47 - - 105.38572 21.00000 238.56813 28.65897 110 44 - - 97.30735 24.00000 233.34093 28.03103 110 42 - - 89.73557 27.00000 228.00638 27.39020 110 39 - - 82.64614 30.00000 222.56563 26.73660 110 37 - - 79.26442 30.00000 357.30834 23.35488 110 22 - - 71.46006 33.60000 346.60582 22.65533 110 21 - - 64.27339 37.20000 335.66831 21.94042 110 19 - - 57.66182 40.80000 324.50347 21.21065 110 18 - - 51.58283 44.40000 313.11988 20.46658 110 16 - - 45.99393 48.00000 301.52675 19.70881 110 15 - - 45.12289 48.00000 429.05959 18.83777 110 11 - - 40.01565 51.60000 412.27861 18.10100 110 10 - - 35.31695 55.20000 395.22721 17.35237 110 9 - - 30.98858 58.80000 377.91953 16.59248 110 8 - - 26.99235 62.40000 360.36962 15.82195 110 7 - - 23.29005 66.00000 342.59136 15.04140 110 7 - - 23.28920 66.00000 27.46649 15.04055 110 85 - - 19.84330 69.60000 26.02393 14.25061 110 76 - - 16.62220 73.20000 24.56521 13.45182 110 68 - - 13.59671 76.80000 23.09135 12.64474 110 59 - - 11.82990 80.40000 21.60332 11.82990 1 55 A - 11.00782 84.00000 20.10206 11.00782 1 55 A - 15.44978 84.00000 29.39435 15.44978 1 53 A - 14.28649 87.60000 27.18110 14.28649 1 53 A - 13.11437 91.20000 24.95106 13.11437 1 53 A - 11.93405 94.80000 22.70541 11.93405 1 53 A - 10.74612 98.40000 20.44528 10.74612 1 53 A - 9.55113 102.00000 18.17172 9.55113 1 53 A - 14.82436 102.00000 34.82250 14.82436 1 43 A - 12.95946 105.60000 30.44185 12.95946 1 43 A - 11.08519 109.20000 26.03918 11.08519 1 43 A - 9.20226 112.80000 21.61617 9.20226 1 43 A - 7.31135 116.40000 17.17440 7.31135 1 43 A - 5.41309 120.00000 12.71538 5.41309 1 43 A + 0.00002 0.00000 0.00002 0.00000 202 100 P + 12.18356 0.00000 12.18356 2.17296 202 100 P + 24.44339 0.00000 24.44339 4.35952 202 100 P + 36.85266 0.00000 36.85266 6.57273 202 100 P + 42.82714 0.00000 49.47864 8.82459 110 87 - + 43.82915 0.00000 62.38019 11.12561 110 70 - + 37.34864 0.00000 37.34864 9.95642 202 100 P + 43.48785 0.00000 45.26723 12.06736 110 96 - + 44.39101 0.00000 53.40216 14.23598 110 83 - + 45.37513 0.00000 61.76843 16.46626 110 73 - + 46.44398 0.00000 70.37391 18.76032 110 66 - + 47.59954 0.00000 79.21966 21.11842 110 60 - + 281.57575 0.00000 281.57575 13.79628 202 100 P + 324.59395 0.00000 366.03487 17.93450 110 89 - + 307.18437 0.00000 452.61507 22.17664 110 68 - + 290.62110 0.00000 541.02041 26.50821 110 54 - + 274.81984 0.00000 630.89495 30.91176 110 44 - + 259.86452 0.00000 721.85985 35.36874 110 36 - + 247.99626 0.00000 255.87898 23.50048 110 97 - + 232.44375 0.00000 288.37787 26.48525 110 81 - + 217.80680 0.00000 321.00836 29.48210 110 68 - + 204.09679 0.00000 353.66136 32.48102 110 58 - + 191.32659 0.00000 386.24353 35.47344 110 50 - + 179.51050 0.00000 418.67776 38.45227 110 43 - + 167.72541 0.00000 270.97985 28.41704 110 62 - + 156.05288 0.00000 291.83658 30.60424 110 53 - + 145.31698 0.00000 312.52708 32.77400 110 46 - + 135.49143 0.00000 333.02882 34.92397 110 41 - + 126.55070 0.00000 353.32628 37.05252 110 36 - + 118.46987 0.00000 373.40977 39.15863 110 32 - + 111.55438 0.00000 345.87216 33.83599 110 32 - + 104.39163 3.00000 340.42715 33.30332 110 31 - + 97.75004 6.00000 334.86754 32.75943 110 29 - + 91.54836 9.00000 329.19374 32.20437 110 28 - + 85.76541 12.00000 323.40700 31.63827 110 27 - + 80.38008 15.00000 317.50918 31.06130 110 25 - + 78.74415 15.00000 293.53007 29.42537 110 27 - + 73.76609 18.00000 287.97722 28.86871 110 26 - + 69.14422 21.00000 282.32654 28.30225 110 24 - + 64.85842 24.00000 276.58093 27.72627 110 23 - + 60.88857 27.00000 270.74356 27.14110 110 22 - + 57.21460 30.00000 264.81774 26.54706 110 22 - + 53.15366 30.00000 420.49924 22.48611 110 13 - + 49.21809 33.60000 409.03010 21.87280 110 12 - + 45.65032 37.20000 397.37615 21.24961 110 11 - + 42.42040 40.80000 385.54703 20.61705 110 11 - + 39.49838 44.40000 373.55236 19.97564 110 11 - + 36.85432 48.00000 361.40162 19.32588 110 10 - + 35.78708 48.00000 528.87647 18.25863 110 7 - + 33.42826 51.60000 510.88019 17.63734 110 7 - + 31.29422 55.20000 492.68224 17.00908 110 6 - + 29.36169 58.80000 474.29534 16.37430 110 6 - + 27.60737 62.40000 455.73172 15.73342 110 6 - + 26.00796 66.00000 437.00309 15.08685 110 6 - + 26.66501 66.00000 200.54417 15.74390 110 13 - + 25.17001 69.60000 191.87885 15.06362 110 13 - + 23.79059 73.20000 183.14781 14.37818 110 13 - + 22.51108 76.80000 174.35568 13.68795 110 13 - + 21.31577 80.40000 165.50684 12.99326 110 13 - + 20.18895 84.00000 156.60542 12.29445 110 13 - + 23.59663 84.00000 113.45437 15.70213 110 21 - + 22.32926 87.60000 106.97039 14.80474 110 21 - + 21.10551 91.20000 100.45380 13.90284 110 21 - + 19.91674 94.80000 93.90711 12.99678 110 21 - + 18.75432 98.40000 87.33266 12.08687 110 21 - + 17.60955 102.00000 80.73267 11.17343 110 22 - + 18.31771 102.00000 20.11536 14.49530 110 91 - + 16.22101 105.60000 18.46505 13.30607 110 88 - + 14.13023 109.20000 16.80936 12.11297 110 84 - + 12.04226 112.80000 15.14876 10.91632 110 79 - + 9.95398 116.40000 13.48364 9.71643 110 74 - + 8.51357 120.00000 11.81442 8.51357 1 72 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10192,10 +10173,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 1.579 'Peat' - -8.00 421.093 'Sand 1' - -10.00 126.721 'Sand 1' - -11.00 80.091 'Sand 2' + -6.00 28.831 'Peat' + -8.00 431.184 'Sand 1' + -10.00 81.206 'Sand 1' + -11.00 79.088 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -10220,14 +10201,14 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 25.52459 32.25369 -17.04077 0.00000 14.37239 1 3 0 1.000 0 0 - 35.80331 43.25688 -20.82776 0.00000 14.77259 1 10 12 1.000 0 0 - 25.17675 26.87801 -19.75070 0.00000 7.06663 1 11 13 1.000 0 0 + 34.94119 44.35790 -17.89054 0.00000 14.70410 1 10 12 1.000 0 0 + 24.48726 28.08888 -17.13588 0.00000 7.12702 1 11 13 1.000 0 0 -150.00000 -150.00000 -24.59094 10.99910 14.83613 2 3 0 1.000 0 0 - 982.54259 445.49536 -443.89171 12.51821 22.60942 2 10 12 1.000 0 0 - 471.33195 240.19309 -264.87179 6.62476 12.10610 2 11 13 1.000 0 0 + 896.99579 449.94821 -373.64764 12.17453 22.22823 2 10 12 1.000 0 0 + 442.00055 240.19186 -241.82382 6.53852 11.98807 2 11 13 1.000 0 0 -216.51182 -153.80159 -35.63244 25.69793 28.10340 3 3 0 1.000 0 0 - 578.72254 279.19884 -353.84521 60.56684 64.92062 3 10 12 1.000 0 0 - 303.81855 198.02739 -193.36032 42.26436 44.95081 3 11 13 1.000 0 0 + 500.34948 236.85491 -292.70268 45.66738 50.96486 3 10 12 1.000 0 0 + 266.17091 175.65922 -176.26233 30.69922 34.21104 3 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -10252,8 +10233,8 @@ AnchorName 2 10 7 12 1.000 108.00000 0 1 0 0 'anchor' 2 11 7 13 1.000 80.00000 0 1 0 0 'anchor' 3 3 7 0 1.000 32.12063 0 1 0 0 'anchor' - 3 10 7 12 1.000 59.55061 0 1 0 0 'anchor' - 3 11 7 13 1.000 40.75685 0 1 0 0 'anchor' + 3 10 7 12 1.000 44.53482 0 1 0 0 'anchor' + 3 11 7 13 1.000 29.25888 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -10269,15 +10250,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 108.00000 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=982.54259 -MaximumShearForce=445.49536 +MaximumMoment=896.99579 +MaximumShearForce=449.94821 MaximumDisplacement=-35.63244 -MaximumPercentageMobilisedMoment=60.56684 -MaximumPercentageMobilisedResistance=64.92062 +MaximumPercentageMobilisedMoment=45.66738 +MaximumPercentageMobilisedResistance=50.96486 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=896.99579 +MaximumShearForce=449.94821 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=45.66738 +MaximumPercentageMobilisedResistance=50.96486 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shi index 55ab53c3..de490316 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,23 +885,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shd index 053e6480..7144ba1a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -20,7 +20,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 18 = number of items + 4 = number of items [SOIL] Clay SoilColor=7648893 @@ -71,643 +71,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.4m a -2.5 -SoilColor=5866717 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.63 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.5m a -2.6 -SoilColor=7187949 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.6m a -2.7 -SoilColor=13827451 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.7m a -2.8 -SoilColor=9544960 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=2.50 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.8m a -2.9 -SoilColor=6270895 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=3.13 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.0m a -3.1 -SoilColor=7648893 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=3.75 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.1m a -3.2 -SoilColor=9094655 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=4.38 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.2m a -3.3 -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.00 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat SoilColor=5953498 SoilSoilType=2 @@ -757,55 +120,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Sand 1 SoilColor=10944420 SoilSoilType=2 @@ -1099,58 +413,28 @@ SurchargeLoadDistribution=2 0 1/0 : Yes/No Unloading curve 0 1/0 : Yes/No Use Cur values - 4 Number of soil profiles -Stage 1 passive - 0.000 X coordinate - 0.000 Y coordinate - - 13 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.40 0.00 0.00 Clay -2.4m a -2.5 - 2 -2.50 0.00 0.00 Clay -2.5m a -2.6 - 3 -2.60 0.00 0.00 Clay -2.6m a -2.7 - 4 -2.70 0.00 0.00 Clay -2.6m a -2.7 - 5 -2.80 0.00 0.00 Clay -2.7m a -2.8 - 6 -2.90 0.00 0.00 Clay -2.8m a -2.9 - 7 -3.00 0.00 0.00 Clay -3.0m a -3.1 - 8 -3.10 0.00 0.00 Clay -3.1m a -3.2 - 9 -3.20 0.00 0.00 Clay -3.2m a -3.3 - 10 -3.40 0.00 0.00 Clay - 11 -6.00 0.00 0.00 Peat - 12 -8.00 0.00 0.00 Sand 1 - 13 -11.00 0.00 0.00 Sand 2 -Stage 2 passive - 0.000 X coordinate - 0.000 Y coordinate - - 6 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 -Stage 3 passive + 2 Number of soil profiles +Soil profile 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m - 2 -8.00 0.00 0.00 Sand 1 - 3 -10.00 0.00 20.00 Sand 1 - 4 -11.00 20.00 80.00 Sand 2 -Stages active + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 +Profile add. pressure 0.000 X coordinate 0.000 Y coordinate - 4 Number of soil layers per soil profile + 5 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name 1 0.00 0.00 0.00 Clay 2 -6.00 0.00 0.00 Peat 3 -8.00 0.00 0.00 Sand 1 - 4 -11.00 0.00 0.00 Sand 2 + 4 -10.00 0.00 20.00 Sand 1 + 5 -11.00 20.00 80.00 Sand 2 [END OF SOIL PROFILES] @@ -1160,17 +444,17 @@ Stages active 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -2.40 + 1 0.00 -2.00 2 1 GLleft2 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -2.10 + 1 0.00 -2.00 3 1 GLleft3 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.00 4 1 GLright1 0.00 Standard deviation 2 Distribution type @@ -1227,8 +511,8 @@ GLleft1 GLright1 WLleft1 WLright1 -Stage 1 passive -Stages active +Soil profile +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 0 Anchors present in stage @@ -1250,8 +534,8 @@ GLleft2 GLright2 WLleft2 WLright2 -Stage 2 passive -Stages active +Soil profile +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1277,8 +561,8 @@ GLleft3 GLright3 WLleft3 WLright3 -Stage 3 passive -Stages active +Profile add. pressure +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1307,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1316,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1325,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1348,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1359,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1371,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1397,53 +687,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1451,35 +743,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1498,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1513,10 +807,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1525,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1538,12 +833,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1552,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1567,10 +863,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1579,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1613,26 +967,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1640,16 +1023,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1660,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1667,8 +1079,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1676,7 +1088,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1687,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1694,8 +1107,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1703,7 +1116,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1714,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1721,8 +1135,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1776,7 +1190,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [POINTS ON SHEETPILE] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -1806,88 +1220,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 + -2.13333 + -2.26667 -2.40000 - -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 - -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 + -2.93333 + -3.06667 -3.20000 - -3.20000 - -3.23400 - -3.26800 - -3.30200 - -3.33600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -1908,28 +1256,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 - -6.60000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 - -7.80000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -1997,7 +1345,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=5 +IterationCount=3 PartialFactorSet=4 [UNIFORM LOAD DATA] [TABLE] @@ -2038,20 +1386,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 6.81 : Percentage mobilized resistance left - 3.56 : Percentage mobilized resistance right - 304.88 : Effective left - 304.90 : Effective right + 6.71 : Percentage mobilized resistance left + 3.73 : Percentage mobilized resistance right + 318.98 : Effective left + 318.98 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4475.45 : Max effective resistance left - 8552.93 : Max effective resistance right + 4752.04 : Max effective resistance left + 8552.87 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 139.56 : Vertical force left - 136.56 : Vertical force right + 144.62 : Vertical force left + 141.23 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -2061,223 +1409,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -17.99483 - 0.00000 0.00000 -17.79875 - 0.00000 0.00000 -17.60266 - 0.00000 0.00000 -17.40657 - 0.00000 0.00000 -17.21048 - 0.00000 0.00000 -17.01440 - 0.00000 0.00000 -17.01440 - 0.00000 0.00000 -16.81831 - 0.00000 0.00000 -16.62222 - 0.00000 0.00000 -16.42613 - 0.00000 0.00000 -16.23005 - 0.00000 0.00000 -16.03396 - 0.00000 0.00000 -16.03396 - 0.00609 0.12302 -15.83787 - 0.02486 0.25368 -15.64178 - 0.05708 0.39205 -15.44570 - 0.10353 0.53817 -15.24964 - 0.16498 0.69208 -15.05360 - 0.16500 0.69190 -15.05360 - 0.25884 1.18884 -14.85760 - 0.40358 1.70989 -14.66165 - 0.60162 2.25512 -14.46581 - 0.85541 2.82455 -14.27013 - 1.16905 3.46943 -14.07466 - 1.16879 3.46309 -14.07466 - 1.23940 3.59823 -14.03559 - 1.31272 3.73387 -13.99654 - 1.38876 3.87001 -13.95750 - 1.46752 4.00665 -13.91847 - 1.54903 4.14379 -13.87946 - 1.54913 4.14196 -13.87946 - 1.81033 4.56539 -13.76251 - 2.09727 5.00384 -13.64572 - 2.41140 5.47317 -13.52912 - 2.75478 5.97878 -13.41273 - 3.12958 6.52058 -13.29657 - 3.12954 6.52008 -13.29657 - 3.26158 6.68257 -13.25791 - 3.39678 6.83600 -13.21929 - 3.53496 6.98035 -13.18069 - 3.67593 7.11565 -13.14213 - 3.81952 7.24187 -13.10360 - 3.81952 7.24187 -13.10360 - 3.96571 7.37486 -13.06512 - 4.11446 7.49899 -13.02667 - 4.26561 7.61428 -12.98826 - 4.41897 7.72072 -12.94989 - 4.57438 7.81831 -12.91156 - 4.57438 7.81831 -12.91156 - 4.73115 7.85739 -12.87328 - 4.88861 7.88763 -12.83504 - 5.04659 7.90901 -12.79685 - 5.20491 7.92155 -12.75871 - 5.36340 7.92523 -12.72062 - 5.36340 7.92523 -12.72062 - 5.41095 7.92483 -12.70921 - 5.45849 7.92363 -12.69779 - 5.50603 7.92164 -12.68639 - 5.55355 7.91885 -12.67498 - 5.60105 7.91526 -12.66359 - 5.60105 7.91527 -12.66359 - 5.71180 7.90415 -12.63701 - 5.82235 7.88870 -12.61046 - 5.93266 7.86891 -12.58394 - 6.04266 7.84478 -12.55745 - 6.15229 7.81632 -12.53098 - 6.15229 7.81632 -12.53098 - 6.30766 7.71874 -12.49323 - 6.46098 7.61231 -12.45553 - 6.61209 7.49703 -12.41790 - 6.76080 7.37289 -12.38033 - 6.90695 7.23990 -12.34283 - 6.90695 7.23977 -12.34283 - 7.04984 7.04773 -12.30539 - 7.18880 6.84684 -12.26802 - 7.32366 6.63734 -12.23072 - 7.45427 6.42420 -12.19350 - 7.58063 6.21215 -12.15634 - 7.58063 6.21202 -12.15634 - 7.70276 6.00168 -12.11926 - 7.82070 5.79241 -12.08225 - 7.93447 5.58420 -12.04532 - 8.04408 5.37706 -12.00846 - 8.14956 5.17098 -11.97168 - 8.14956 5.17098 -11.97168 - 8.25093 4.96649 -11.93498 - 8.34822 4.76304 -11.89837 - 8.44146 4.56065 -11.86183 - 8.53066 4.35929 -11.82537 - 8.61584 4.15898 -11.78899 - 8.61584 4.15898 -11.78899 - 8.75150 3.82180 -11.72735 - 8.87575 3.48758 -11.66595 - 8.98869 3.15631 -11.60480 - 9.09041 2.82796 -11.54390 - 9.18102 2.50251 -11.48325 - 9.18102 2.50251 -11.48325 - 9.19587 2.44549 -11.47257 - 9.21037 2.38856 -11.46190 - 9.22453 2.33171 -11.45124 - 9.23835 2.27496 -11.44059 - 9.25183 2.21829 -11.42995 - 9.25212 2.21672 -11.42995 - 9.45113 1.10594 -11.21880 - 9.51893 0.02977 -11.01095 - 9.45961 -1.01283 -10.80638 - 9.27764 -2.01072 -10.60505 - 8.98051 -2.92181 -10.40696 - 8.98072 -2.93501 -10.40696 - 8.51921 -3.98135 -10.19058 - 7.92230 -4.95385 -9.97787 - 7.20360 -5.80449 -9.76851 - 6.38030 -6.52320 -9.56220 - 5.46985 -7.11213 -9.35865 - 5.46947 -7.11367 -9.35865 - 4.47398 -7.79808 -9.15749 - 3.39545 -8.35958 -8.95825 - 2.25016 -8.79958 -8.76044 - 1.05424 -9.11920 -8.56359 - -0.17631 -9.31928 -8.36718 - -0.17629 -9.31930 -8.36718 - -1.43808 -9.58820 -8.17073 - -2.72797 -9.74081 -7.97365 - -4.03046 -9.77705 -7.77539 - -5.32999 -9.69653 -7.57540 - -6.61098 -9.49853 -7.37313 - -6.61099 -9.49887 -7.37313 - -7.63543 -7.56867 -7.18861 - -8.42590 -5.59930 -7.00144 - -8.97768 -3.59044 -6.81140 - -9.28601 -1.54173 -6.61832 - -9.34608 0.54727 -6.42200 - -9.34608 0.54702 -6.42200 - -9.15870 2.58280 -6.22232 - -8.72457 4.65956 -6.01944 - -8.03875 6.77775 -5.81360 - -7.09624 8.93774 -5.60505 - -5.89201 11.13988 -5.39403 - -5.89202 11.13973 -5.39403 - -4.42584 13.30359 -5.18083 - -2.69745 15.50998 -4.96609 - -0.70174 17.75899 -4.75050 - 1.56641 20.05060 -4.53474 - 4.11210 22.38465 -4.31953 - 4.11210 22.38466 -4.31953 - 5.02291 23.15632 -4.24804 - 5.96467 23.93263 -4.17675 - 6.93758 24.71359 -4.10569 - 7.94182 25.49917 -4.03490 - 8.97757 26.28935 -3.96442 - 8.97738 26.29097 -3.96442 - 12.23284 22.58931 -3.73232 - 15.01393 19.17429 -3.50548 - 17.35838 16.03815 -3.28493 - 19.30276 13.17176 -3.07168 - 20.88237 10.56466 -2.86674 - 20.88229 10.56950 -2.86674 - 22.11742 7.99717 -2.67097 - 23.02518 5.65670 -2.48470 - 23.63561 3.53518 -2.30822 - 23.97703 1.61934 -2.14178 - 24.07597 -0.10443 -1.98566 - 24.07611 -0.09941 -1.98566 - 23.95490 -1.69029 -1.84001 - 23.63264 -3.11752 -1.70466 - 23.13023 -4.39472 -1.57939 - 22.46678 -5.53525 -1.46400 - 21.66084 -6.52544 -1.35827 - 21.65974 -6.54298 -1.35827 - 20.97221 -7.18335 -1.28514 - 20.22778 -7.68259 -1.21708 - 19.44006 -8.05068 -1.15390 - 18.62169 -8.29721 -1.09541 - 17.78436 -8.43139 -1.04143 - 17.78439 -8.42781 -1.04143 - 16.93801 -8.48329 -0.99175 - 16.09089 -8.44388 -0.94616 - 15.25213 -8.31759 -0.90446 - 14.43002 -8.11201 -0.86645 - 13.63213 -7.83433 -0.83194 - 13.63205 -7.83071 -0.83194 - 12.68886 -7.87438 -0.79484 - 11.74555 -7.83438 -0.76216 - 10.81154 -7.72094 -0.73358 - 9.89508 -7.54352 -0.70876 - 9.00331 -7.31078 -0.68738 - 9.00337 -7.30763 -0.68738 - 8.14111 -7.05619 -0.66913 - 7.31149 -6.76478 -0.65371 - 6.51890 -6.43987 -0.64085 - 5.76703 -6.08728 -0.63027 - 5.05886 -5.71218 -0.62170 - 5.05891 -5.71039 -0.62170 - 4.39567 -5.34099 -0.61486 - 3.77762 -4.95774 -0.60956 - 3.20622 -4.56408 -0.60559 - 2.68254 -4.16297 -0.60275 - 2.20731 -3.75690 -0.60084 - 2.20734 -3.75610 -0.60084 - 1.77996 -3.36658 -0.59967 - 1.39941 -2.97594 -0.59913 - 1.06573 -2.58553 -0.59909 - 0.77883 -2.19642 -0.59943 - 0.53850 -1.80942 -0.60005 - 0.53852 -1.80920 -0.60005 - 0.34355 -1.44074 -0.60083 - 0.19262 -1.07540 -0.60173 - 0.08532 -0.71341 -0.60271 - 0.02126 -0.35492 -0.60374 - 0.00000 -0.00001 -0.60477 + 0.00000 0.00000 -13.06102 + 0.00000 0.00000 -12.95092 + 0.00000 0.00000 -12.84081 + 0.00000 0.00000 -12.73071 + 0.00000 0.00000 -12.62061 + 0.00000 0.00000 -12.51050 + 0.00000 0.00000 -12.51050 + 0.00000 0.00000 -12.40040 + 0.00000 0.00000 -12.29029 + 0.00000 0.00000 -12.18019 + 0.00000 0.00000 -12.07008 + 0.00000 0.00000 -11.95998 + 0.00027 -0.00288 -11.95998 + 0.00607 0.12014 -11.84987 + 0.02553 0.28008 -11.73976 + 0.06599 0.55715 -11.62967 + 0.14257 1.00268 -11.51959 + 0.27217 1.61743 -11.40956 + 0.27205 1.61664 -11.40956 + 0.46333 2.23591 -11.29956 + 0.72464 3.01745 -11.18968 + 1.07224 3.96152 -11.07999 + 1.52237 5.06829 -10.97059 + 2.09132 6.33777 -10.86155 + 2.09130 6.33793 -10.86155 + 2.84819 5.03644 -10.71700 + 3.43995 3.86096 -10.57367 + 3.88333 2.81038 -10.43176 + 4.19488 1.88334 -10.29147 + 4.39097 1.07823 -10.15299 + 4.39130 1.07271 -10.15299 + 4.46893 0.10756 -10.01647 + 4.42455 -0.75480 -9.88186 + 4.27256 -1.50681 -9.74911 + 4.02755 -2.15031 -9.61816 + 3.70388 -2.68709 -9.48895 + 3.70386 -2.68692 -9.48895 + 3.29642 -3.40823 -9.36138 + 2.79935 -4.03157 -9.23522 + 2.22562 -4.55841 -9.11024 + 1.58800 -4.99009 -8.98618 + 0.89911 -5.32778 -8.86282 + 0.89912 -5.32771 -8.86282 + 0.15414 -5.83236 -8.73987 + -0.65227 -6.24909 -8.61698 + -1.50841 -6.57849 -8.49380 + -2.40267 -6.82092 -8.36995 + -3.32346 -6.97655 -8.24508 + -3.32344 -6.97687 -8.24508 + -4.27409 -7.26892 -8.11879 + -5.25809 -7.47699 -7.99066 + -6.26420 -7.60051 -7.86027 + -7.28109 -7.63862 -7.72718 + -8.29732 -7.59025 -7.59097 + -8.29730 -7.59105 -7.59097 + -9.31383 -7.64265 -7.45118 + -10.33147 -7.60730 -7.30740 + -11.33850 -7.48313 -7.15918 + -12.32294 -7.26805 -7.00609 + -13.27250 -6.95971 -6.84771 + -13.27255 -6.96039 -6.84771 + -13.89012 -5.38720 -6.72517 + -14.34925 -3.79168 -6.59928 + -14.64770 -2.17341 -6.46995 + -14.78316 -0.53194 -6.33712 + -14.75330 1.13317 -6.20071 + -14.75330 1.13294 -6.20071 + -14.55909 2.75532 -6.06068 + -14.20142 4.40217 -5.91714 + -13.67782 6.07394 -5.77019 + -12.98578 7.77107 -5.61998 + -12.12275 9.49397 -5.46662 + -12.12275 9.49378 -5.46662 + -11.08909 11.18387 -5.31029 + -9.88509 12.90042 -5.15127 + -8.50811 14.64373 -4.98989 + -6.95545 16.41408 -4.82650 + -5.22439 18.21169 -4.66143 + -5.22439 18.21162 -4.66143 + -3.31480 19.98480 -4.49504 + -1.22652 21.78543 -4.32784 + 1.04320 23.61352 -4.16039 + 3.49710 25.46900 -3.99323 + 6.13791 27.35173 -3.82691 + 6.13775 27.35305 -3.82691 + 9.53814 23.69834 -3.60765 + 12.46932 20.31393 -3.39250 + 14.96693 17.19355 -3.18254 + 17.06566 14.32948 -2.97885 + 18.79911 11.71259 -2.78252 + 18.79902 11.71693 -2.78252 + 20.18588 9.12394 -2.59445 + 21.24194 6.75308 -2.41507 + 21.99605 4.59251 -2.24469 + 22.47541 2.62996 -2.08366 + 22.70560 0.85269 -1.93230 + 22.70573 0.85739 -1.93230 + 22.70819 -0.79294 -1.79082 + 22.50132 -2.28482 -1.65910 + 22.10538 -3.63120 -1.53698 + 21.53890 -4.84481 -1.42429 + 20.82107 -5.88649 -1.32087 + 20.81999 -5.90374 -1.32087 + 20.19527 -6.56667 -1.24923 + 19.51126 -7.09128 -1.18248 + 18.78131 -7.48716 -1.12043 + 18.01781 -7.76359 -1.06291 + 17.23227 -7.92946 -1.00976 + 17.23230 -7.92599 -1.00976 + 16.43445 -8.01468 -0.96077 + 15.63248 -8.00975 -0.91575 + 14.83537 -7.91896 -0.87451 + 14.05131 -7.74970 -0.83686 + 13.28781 -7.50898 -0.80261 + 13.28773 -7.50545 -0.80261 + 12.38235 -7.56950 -0.76573 + 11.47438 -7.55028 -0.73315 + 10.57321 -7.45775 -0.70458 + 9.68708 -7.30116 -0.67968 + 8.82316 -7.08899 -0.65816 + 8.82322 -7.08590 -0.65816 + 7.98635 -6.85461 -0.63971 + 7.17973 -6.58278 -0.62402 + 6.40785 -6.27677 -0.61085 + 5.67445 -5.94230 -0.59993 + 4.98263 -5.58443 -0.59097 + 4.98268 -5.58267 -0.59097 + 4.33378 -5.22957 -0.58374 + 3.72818 -4.86161 -0.57801 + 3.16745 -4.48221 -0.57359 + 2.65279 -4.09427 -0.57029 + 2.18507 -3.70025 -0.56791 + 2.18510 -3.69946 -0.56791 + 1.76385 -3.32086 -0.56627 + 1.38818 -2.93998 -0.56524 + 1.05829 -2.55819 -0.56472 + 0.77421 -2.17652 -0.56457 + 0.53589 -1.79578 -0.56470 + 0.53590 -1.79557 -0.56470 + 0.34226 -1.43219 -0.56499 + 0.19210 -1.07076 -0.56539 + 0.08519 -0.71149 -0.56588 + 0.02125 -0.35456 -0.56642 + 0.00000 -0.00001 -0.56696 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2294,7 +1576,7 @@ Method c,phi,delta 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil profile [TABLE] DataCount=4 [COLUMN INDICATION] @@ -2343,7 +1625,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=36 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -2357,26 +1639,15 @@ Q max -1.00000 63.43600 0.00000 108.77529 0.00000 -1.50000 62.01800 32.38000 237.79196 0.69181 -2.00000 64.69300 32.83100 383.23441 3.41792 - -2.10000 64.99500 32.90800 413.52148 4.09862 - -2.40000 65.67900 33.10100 505.40439 6.26179 - -2.50000 65.85400 43.26700 536.41659 7.36099 - -2.60000 66.01000 42.94000 567.63567 8.81085 - -2.70000 66.15000 42.63500 599.06763 10.29125 - -2.73000 66.18900 42.54800 608.53947 10.74116 - -2.80000 66.27600 42.35200 630.71726 11.80110 - -2.90000 66.39000 42.08700 662.58844 13.33946 - -3.00000 66.49500 41.83800 694.68436 14.90551 - -3.10000 66.59000 41.60600 727.00766 16.49855 - -3.20000 66.67800 41.38700 759.56053 18.11794 - -3.37000 66.81100 41.04400 815.43239 20.92984 - -3.40000 66.83300 40.98700 825.36213 21.43362 + -2.66667 66.10500 42.73500 588.56634 9.79446 + -3.33333 66.78400 41.11500 803.32464 20.31717 -4.00000 72.99400 40.02400 988.94946 31.96680 -4.66667 72.39100 39.24600 1163.65486 44.64546 -5.33333 71.91100 38.66700 1348.20505 58.30351 -6.00000 71.52100 38.22400 1542.89042 72.91314 - -6.60000 71.70000 37.83800 1786.79239 86.84817 - -7.20000 71.71000 37.52400 2057.23375 100.91652 - -7.80000 71.91500 37.26200 2332.41894 115.10975 + -6.50000 71.67500 37.89700 1746.00406 84.51613 + -7.00000 71.62500 37.62200 1965.89462 96.21285 + -7.50000 71.82100 37.38700 2194.60045 107.99794 -8.00000 71.97000 37.18400 2424.55831 119.86752 -8.66667 72.12300 36.69700 2815.41462 133.90497 -9.33333 72.91600 35.88300 3255.60713 147.95497 @@ -2393,7 +1664,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=35 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -2408,27 +1679,16 @@ Lambda passive -0.75000 21.47812 127.60924 0.00000 0.88779 0.00000 5.94136 -1.25000 29.57685 258.03334 1.38362 0.88377 0.04678 8.72417 -1.75000 37.93284 290.88490 5.45221 0.83596 0.14373 7.66842 - -2.05000 42.53773 302.87070 6.80700 0.80594 0.16002 7.12005 - -2.25000 44.10448 306.27637 7.21058 0.79351 0.16349 6.94434 - -2.45000 45.66122 310.12198 10.99202 0.78012 0.24073 6.79180 - -2.55000 46.43443 312.19083 14.49859 0.77327 0.31224 6.72326 - -2.65000 47.20368 314.31957 14.80397 0.76638 0.31362 6.65879 - -2.71500 47.70142 315.72801 14.99692 0.76191 0.31439 6.61884 - -2.76500 48.08302 316.82551 15.14202 0.75848 0.31491 6.58913 - -2.85000 48.72914 318.71181 15.38361 0.75269 0.31570 6.54048 - -2.95000 49.48495 320.95921 15.66055 0.74594 0.31647 6.48600 - -3.05000 50.23600 323.23297 15.93035 0.73930 0.31711 6.43429 - -3.15000 50.98219 325.52873 16.19388 0.73279 0.31764 6.38515 - -3.28500 51.98183 328.65802 16.54062 0.72421 0.31820 6.32256 - -3.38500 52.71658 330.99130 16.79268 0.71803 0.31855 6.27869 - -3.70000 54.99971 272.64554 17.55529 0.69964 0.31919 4.95722 + -2.33333 44.75462 307.99790 9.56482 0.78801 0.21372 6.88192 + -3.00000 49.86108 322.13744 15.78406 0.74261 0.31656 6.46070 + -3.66667 54.76032 278.43723 17.47445 0.70151 0.31911 5.08465 -4.33333 59.45479 262.05811 19.01799 0.66766 0.31987 4.40769 -5.00000 63.97379 276.82528 20.48708 0.64073 0.32024 4.32717 -5.66667 68.34951 292.02805 21.91445 0.61959 0.32062 4.27257 - -6.30000 70.89966 406.50330 23.22505 0.54796 0.32758 5.73350 - -6.90000 71.65941 450.73560 23.44725 0.53699 0.32720 6.28997 - -7.50000 72.35847 458.64197 23.65537 0.52766 0.32692 6.33847 - -7.90000 72.79663 460.69685 23.78885 0.52224 0.32678 6.32855 + -6.25000 70.83319 406.22729 23.20597 0.54896 0.32761 5.73499 + -6.75000 71.47567 439.78112 23.39344 0.53957 0.32729 6.15288 + -7.25000 72.07377 457.41165 23.57018 0.53136 0.32703 6.34644 + -7.75000 72.63468 459.91572 23.73916 0.52420 0.32683 6.33190 -8.33333 75.91684 586.28447 21.05617 0.42066 0.27736 7.72272 -9.00000 81.91216 660.28877 21.07500 0.41299 0.25729 8.06094 -9.66667 87.87278 674.50216 22.25963 0.40725 0.25332 7.67589 @@ -2444,7 +1704,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2469,142 +1729,76 @@ Status character 0.00000 0.00000 151.40418 22.62363 1 0 A 1.19211 0.00000 222.31865 22.52106 1 0 A 1.26827 0.00000 236.52184 23.95986 1 0 A - 1.34504 0.00000 250.83763 25.41006 1 0 A - 1.42233 0.00000 265.25180 26.87023 1 0 A - 1.50007 0.00000 279.74932 28.33884 1 0 A - 1.57817 0.00000 294.31500 29.81435 1 0 A - 4.84893 0.00000 258.69872 28.20146 1 0 A - 5.08978 0.00000 271.54866 29.60227 1 0 A - 5.33128 0.00000 284.43322 31.00685 1 0 A - 5.57322 0.00000 297.34106 32.41397 1 0 A - 5.81541 0.00000 310.26190 33.82251 1 0 A - 7.08215 0.00000 323.18662 35.23147 110 0 - - 6.74418 0.00000 300.07550 33.96636 1 0 A - 6.76931 0.20000 301.19375 34.09294 1 0 A - 6.79444 0.40000 302.31178 34.21949 1 0 A - 6.81956 0.60000 303.42955 34.34602 1 0 A - 6.84468 0.80000 304.54700 34.47250 1 0 A - 6.86978 1.00000 305.66409 34.59895 1 0 A - 7.01857 1.00000 298.12076 34.06523 1 0 A - 7.09546 1.60000 301.38674 34.43842 1 0 A - 7.51962 2.20000 304.64792 34.81106 110 0 - - 8.12480 2.80000 307.90324 35.18304 110 0 - - 8.72878 3.40000 311.15174 35.55423 110 0 - - 9.33141 4.00000 314.39257 35.92455 110 0 - - 10.89862 4.00000 307.48688 35.31876 1 0 A - 10.93601 4.20000 308.54163 35.43991 1 0 A - 10.97336 4.40000 309.59544 35.56096 1 0 A - 11.01067 4.60000 310.64828 35.68189 1 0 A - 11.04796 4.80000 311.70014 35.80271 1 0 A - 11.08520 5.00000 312.75098 35.92341 1 0 A - 14.37802 5.00000 309.59475 35.60777 1 0 A - 14.42628 5.20000 310.63396 35.72729 1 0 A - 14.47450 5.40000 311.67214 35.84670 1 0 A - 14.52266 5.60000 312.70925 35.96598 1 0 A - 14.57078 5.80000 313.74529 36.08514 1 0 A - 14.61884 6.00000 314.78023 36.20417 1 0 A - 14.68351 6.00000 311.76189 35.88173 1 0 A - 14.73173 6.20000 312.78580 35.99958 1 0 A - 14.77991 6.40000 313.80860 36.11730 1 0 A - 14.82803 6.60000 314.83026 36.23488 1 0 A - 14.87609 6.80000 315.85078 36.35234 1 0 A - 14.92410 7.00000 316.87014 36.46966 1 0 A - 14.96086 7.00000 314.96884 36.25686 1 0 A - 14.97529 7.06000 315.27258 36.29182 1 0 A - 14.98971 7.12000 315.57623 36.32678 1 0 A - 15.00413 7.18000 315.87976 36.36172 1 0 A - 15.01854 7.24000 316.18319 36.39665 1 0 A - 15.03295 7.30000 316.48652 36.43156 1 0 A - 15.05794 7.30000 315.06618 36.26759 1 0 A - 15.09159 7.44000 315.77035 36.34864 1 0 A - 15.12522 7.58000 316.47393 36.42963 1 0 A - 15.15882 7.72000 317.17694 36.51056 1 0 A - 15.19239 7.86000 317.87936 36.59141 1 0 A - 15.22593 8.00000 318.58119 36.67220 1 0 A - 15.26375 8.00000 316.22862 36.39197 1 0 A - 15.31174 8.20000 317.22280 36.50638 1 0 A - 15.35967 8.40000 318.21578 36.62066 1 0 A - 15.40754 8.60000 319.20754 36.73479 1 0 A - 15.45535 8.80000 320.19808 36.84878 1 0 A - 15.50310 9.00000 321.18738 36.96263 1 0 A - 15.54114 9.00000 318.51193 36.63148 1 0 A - 15.58895 9.20000 319.49177 36.74417 1 0 A - 15.63670 9.40000 320.47037 36.85672 1 0 A - 15.68439 9.60000 321.44774 36.96913 1 0 A - 15.73202 9.80000 322.42387 37.08139 1 0 A - 15.77958 10.00000 323.39875 37.19351 1 0 A - 15.81146 10.00000 320.82063 36.86247 1 0 A - 15.85906 10.20000 321.78650 36.97345 1 0 A - 15.90660 10.40000 322.75112 37.08428 1 0 A - 15.95408 10.60000 323.71450 37.19497 1 0 A - 16.00150 10.80000 324.67663 37.30552 1 0 A - 16.04886 11.00000 325.63751 37.41593 1 0 A - 16.07556 11.00000 323.15032 37.08614 1 0 A - 16.12293 11.20000 324.10262 37.19543 1 0 A - 16.17024 11.40000 325.05367 37.30457 1 0 A - 16.21749 11.60000 326.00348 37.41358 1 0 A - 16.26468 11.80000 326.95204 37.52244 1 0 A - 16.31181 12.00000 327.89936 37.63116 1 0 A - 16.34068 12.00000 324.68516 37.19071 1 0 A - 16.42079 12.34000 326.27698 37.37304 1 0 A - 16.50072 12.68000 327.86523 37.55497 1 0 A - 16.58048 13.02000 329.44992 37.73648 1 0 A - 16.66005 13.36000 331.03106 37.91759 1 0 A - 16.73945 13.70000 332.60865 38.09830 1 0 A - 16.75767 13.70000 330.30125 37.77339 1 0 A - 16.77168 13.76000 330.57735 37.80496 1 0 A - 16.78568 13.82000 330.85334 37.83652 1 0 A - 16.79968 13.88000 331.12922 37.86807 1 0 A - 16.81367 13.94000 331.40500 37.89961 1 0 A - 16.82765 14.00000 331.68066 37.93114 1 0 A - 16.86159 14.00000 261.87183 36.95938 1 0 A - 17.14071 15.20000 266.20671 37.57118 1 0 A - 17.41764 16.40000 270.50763 38.17819 1 0 A - 17.69242 17.60000 274.77521 38.78050 1 0 A - 18.16811 18.80000 279.01022 39.37821 110 0 - - 19.15752 20.00000 283.21350 39.97144 110 0 - - 18.27484 20.00000 251.81796 38.14470 1 0 A - 18.57387 21.33333 255.93841 38.76885 1 0 A - 19.43232 22.66667 260.02615 39.38805 110 0 - - 20.46546 24.00000 264.08234 40.00247 110 0 - - 21.48789 25.33333 268.10818 40.61229 110 0 - - 22.50040 26.66667 272.10483 41.21770 110 0 - - 20.83766 26.66667 267.13403 39.55495 110 0 - - 21.81689 28.00000 271.03017 40.13186 110 0 - - 22.78836 29.33333 274.89994 40.70486 110 0 - - 23.75323 30.66667 278.74444 41.27412 110 0 - - 24.71263 32.00000 282.56473 41.83980 110 0 - - 25.66767 33.33333 286.36185 42.40204 110 0 - - 24.26845 33.33333 282.74869 41.00282 110 0 - - 25.20189 34.66667 286.47601 41.54334 110 0 - - 26.13353 36.00000 290.18241 42.08082 110 0 - - 27.06462 37.33333 293.86879 42.61540 110 0 - - 27.99641 38.66667 297.53605 43.14721 110 0 - - 28.93012 40.00000 301.18503 43.67637 110 0 - - 32.72886 40.00000 404.17007 38.62737 110 0 - - 32.96697 41.20000 405.11692 38.71786 110 0 - - 33.20546 42.40000 406.04557 38.80661 110 0 - - 33.44457 43.60000 406.95675 38.89369 110 0 - - 33.68452 44.80000 407.85117 38.97918 110 0 - - 33.92552 46.00000 408.72951 39.06312 110 0 - - 33.14347 46.00000 448.39909 38.28107 110 0 - - 33.38404 47.20000 449.34577 38.36189 110 0 - - 33.62577 48.40000 450.27623 38.44132 110 0 - - 33.86855 49.60000 451.19116 38.51943 110 0 - - 34.11223 50.80000 452.09117 38.59627 110 0 - - 34.35667 52.00000 452.97691 38.67189 110 0 - - 33.68452 52.00000 456.46964 37.99974 110 0 - - 33.92823 53.20000 457.34841 38.07289 110 0 - - 34.17207 54.40000 458.21397 38.14495 110 0 - - 34.41555 55.60000 459.06688 38.21595 110 0 - - 34.65815 56.80000 459.90766 38.28594 110 0 - - 34.89934 58.00000 460.73683 38.35497 110 0 - - 34.50547 58.00000 460.01546 37.96110 110 0 - - 34.58523 58.40000 460.28893 37.98366 110 0 - - 34.66473 58.80000 460.56118 38.00613 110 0 - - 34.74395 59.20000 460.83223 38.02850 110 0 - - 34.82285 59.60000 461.10211 38.05077 110 0 - - 34.90141 60.00000 461.37082 38.07294 110 0 - + 1.93053 0.00000 250.83763 25.41006 110 0 - + 3.61089 0.00000 265.25180 26.87023 110 0 - + 5.29965 0.00000 279.74932 28.33884 110 0 - + 6.99524 0.00000 294.31500 29.81435 110 0 - + 5.38235 0.00000 258.69872 28.20146 110 0 - + 7.00314 0.00000 271.54866 29.60227 110 0 - + 8.62749 0.00000 284.43322 31.00685 110 0 - + 10.25398 0.00000 297.34106 32.41397 110 0 - + 11.88133 0.00000 310.26190 33.82251 110 0 - + 13.50837 0.00000 323.18662 35.23147 110 0 - + 11.48756 0.00000 290.03969 33.21066 110 0 - + 12.60113 1.33333 297.24002 34.03513 110 0 - + 13.70988 2.66667 304.41958 34.85722 110 0 - + 14.81209 4.00000 311.56694 35.67562 110 0 - + 15.90636 5.33333 318.67320 36.48931 110 0 - + 16.99154 6.66667 325.73164 37.29753 110 0 - + 14.98329 6.66667 305.79448 35.14877 1 0 A + 15.87181 8.00000 312.37141 35.90474 110 0 - + 16.89094 9.33333 318.89570 36.65466 110 0 - + 17.90008 10.66667 325.36536 37.39830 110 0 - + 18.89921 12.00000 331.77933 38.13554 110 0 - + 19.88843 13.33333 338.13730 38.86634 110 0 - + 17.73727 13.33333 266.11835 36.71517 110 0 - + 18.67672 14.66667 271.07828 37.39947 110 0 - + 19.60736 16.00000 275.99491 38.07780 110 0 - + 20.52979 17.33333 280.86904 38.75026 110 0 - + 21.44464 18.66667 285.70171 39.41700 110 0 - + 22.35255 20.00000 290.49407 40.07818 110 0 - + 20.41906 20.00000 251.81796 38.14470 110 0 - + 21.28912 21.33333 255.93841 38.76885 110 0 - + 22.15408 22.66667 260.02615 39.38805 110 0 - + 23.01487 24.00000 264.08234 40.00247 110 0 - + 23.87239 25.33333 268.10818 40.61229 110 0 - + 24.72754 26.66667 272.10483 41.21770 110 0 - + 23.06479 26.66667 267.13403 39.55495 110 0 - + 23.89428 28.00000 271.03017 40.13186 110 0 - + 24.72353 29.33333 274.89994 40.70486 110 0 - + 25.55358 30.66667 278.74444 41.27412 110 0 - + 26.38543 32.00000 282.56473 41.83980 110 0 - + 27.22011 33.33333 286.36185 42.40204 110 0 - + 25.82089 33.33333 282.74869 41.00282 110 0 - + 26.64097 34.66667 286.47601 41.54334 110 0 - + 27.46603 36.00000 290.18241 42.08082 110 0 - + 28.29705 37.33333 293.86879 42.61540 110 0 - + 29.13503 38.66667 297.53605 43.14721 110 0 - + 29.98095 40.00000 301.18503 43.67637 110 0 - + 33.21934 40.00000 404.27469 38.69751 110 0 - + 33.39304 41.00000 405.06523 38.77318 110 0 - + 33.56821 42.00000 405.84303 38.84763 110 0 - + 33.74494 43.00000 406.60852 38.92091 110 0 - + 33.92335 44.00000 407.36214 38.99304 110 0 - + 34.10351 45.00000 408.10427 39.06408 110 0 - + 33.43568 45.00000 437.84176 38.39625 110 0 - + 33.61648 46.00000 438.62607 38.46503 110 0 - + 33.79909 47.00000 439.39889 38.53280 110 0 - + 33.98345 48.00000 440.16063 38.59960 110 0 - + 34.16948 49.00000 440.91165 38.66546 110 0 - + 34.35711 50.00000 441.65234 38.73041 110 0 - + 33.76781 50.00000 455.54594 38.14111 110 0 - + 33.95598 51.00000 456.29964 38.20421 110 0 - + 34.14547 52.00000 457.04339 38.26648 110 0 - + 34.33603 53.00000 457.77756 38.32795 110 0 - + 34.52744 54.00000 458.50247 38.38864 110 0 - + 34.71945 55.00000 459.21846 38.44859 110 0 - + 34.20129 55.00000 458.16679 37.93044 110 0 - + 34.39283 56.00000 458.87254 37.98887 110 0 - + 34.58433 57.00000 459.57000 38.04661 110 0 - + 34.77537 58.00000 460.25947 38.10369 110 0 - + 34.96554 59.00000 460.94123 38.16013 110 0 - + 35.15442 60.00000 461.61555 38.21595 110 0 - 20.22030 60.00000 563.01047 30.66707 1 0 A 20.55504 61.33333 572.33108 31.17476 1 0 A 20.88926 62.66667 581.63689 31.68165 1 0 A @@ -2622,49 +1816,49 @@ Status character 22.10897 76.00000 669.93699 35.54359 1 0 A 22.41022 77.33333 679.06530 36.02789 1 0 A 22.71121 78.66667 688.18567 36.51177 1 0 A - 23.41258 80.00000 697.29852 36.99526 110 0 - - 23.06467 80.00000 698.28794 36.64735 110 0 - - 24.15492 81.00000 705.12758 37.00631 110 0 - - 25.19427 82.00000 711.96338 37.36506 110 0 - - 26.18462 83.00000 718.79549 37.72362 110 0 - - 27.12787 84.00000 725.62407 38.08200 110 0 - - 28.02591 85.00000 732.44926 38.44020 110 0 - - 27.77877 85.00000 733.36034 38.19306 110 0 - - 28.63132 86.00000 740.19078 38.54879 110 0 - - 29.44277 87.00000 747.01812 38.90435 110 0 - - 30.21515 88.00000 753.84248 39.25976 110 0 - - 30.95047 89.00000 760.66400 39.61502 110 0 - - 31.65078 90.00000 767.48280 39.97014 110 0 - - 23.48881 90.00000 1154.60935 31.80818 110 0 - - 24.19873 91.20000 1166.91415 32.14716 110 0 - - 24.86436 92.40000 1179.21363 32.48600 110 0 - - 25.48893 93.60000 1191.50808 32.82469 110 0 - - 26.07568 94.80000 1203.79779 33.16326 110 0 - - 26.62787 96.00000 1216.08302 33.50171 110 0 - - 26.38970 96.00000 1312.04930 33.26354 110 0 - - 26.90813 97.20000 1325.29946 33.59946 110 0 - - 27.39814 98.40000 1338.54534 33.93527 110 0 - - 27.86248 99.60000 1351.78720 34.27098 110 0 - - 28.30390 100.80000 1365.02528 34.60660 110 0 - - 28.72516 102.00000 1378.25981 34.94213 110 0 - - 28.52849 102.00000 1368.67011 34.74545 110 0 - - 28.93036 103.20000 1381.80927 35.07900 110 0 - - 29.31687 104.40000 1394.94536 35.41248 110 0 - - 29.69000 105.60000 1408.07858 35.74588 110 0 - - 30.05176 106.80000 1421.20913 36.07922 110 0 - - 30.40413 108.00000 1434.33721 36.41249 110 0 - - 30.24246 108.00000 1428.66536 36.25082 110 0 - - 30.58581 109.20000 1441.73924 36.58256 110 0 - - 30.92293 110.40000 1454.81100 36.91424 110 0 - - 31.25498 111.60000 1467.88082 37.24587 110 0 - - 31.58312 112.80000 1480.94886 37.57746 110 0 - - 31.90853 114.00000 1494.01527 37.90900 110 0 - - 31.77642 114.00000 1433.20825 37.77689 110 0 - - 32.09895 115.20000 1445.74142 38.10724 110 0 - - 32.42027 116.40000 1458.27332 38.43756 110 0 - - 32.74075 117.60000 1470.80405 38.76785 110 0 - - 33.06076 118.80000 1483.33375 39.09811 110 0 - - 33.38069 120.00000 1495.86254 39.42835 110 0 - + 23.78656 80.00000 697.29852 36.99526 110 0 - + 23.43866 80.00000 698.28794 36.64735 110 0 - + 24.51397 81.00000 705.12758 37.00631 110 0 - + 25.54027 82.00000 711.96338 37.36506 110 0 - + 26.51932 83.00000 718.79549 37.72362 110 0 - + 27.45286 84.00000 725.62407 38.08200 110 0 - + 28.34264 85.00000 732.44926 38.44020 110 0 - + 28.09551 85.00000 733.36034 38.19306 110 0 - + 28.94113 86.00000 740.19078 38.54879 110 0 - + 29.74687 87.00000 747.01812 38.90435 110 0 - + 30.51465 88.00000 753.84248 39.25976 110 0 - + 31.24640 89.00000 760.66400 39.61502 110 0 - + 31.94404 90.00000 767.48280 39.97014 110 0 - + 23.78207 90.00000 1154.60935 31.80818 110 0 - + 24.48988 91.20000 1166.91415 32.14716 110 0 - + 25.15445 92.40000 1179.21363 32.48600 110 0 - + 25.77892 93.60000 1191.50808 32.82469 110 0 - + 26.36641 94.80000 1203.79779 33.16326 110 0 - + 26.92006 96.00000 1216.08302 33.50171 110 0 - + 26.68189 96.00000 1312.04930 33.26354 110 0 - + 27.20240 97.20000 1325.29946 33.59946 110 0 - + 27.69503 98.40000 1338.54534 33.93527 110 0 - + 28.16245 99.60000 1351.78720 34.27098 110 0 - + 28.60734 100.80000 1365.02528 34.60660 110 0 - + 29.03241 102.00000 1378.25981 34.94213 110 0 - + 28.83573 102.00000 1368.67011 34.74545 110 0 - + 29.24165 103.20000 1381.80927 35.07900 110 0 - + 29.63243 104.40000 1394.94536 35.41248 110 0 - + 30.01001 105.60000 1408.07858 35.74588 110 0 - + 30.37636 106.80000 1421.20913 36.07922 110 0 - + 30.73342 108.00000 1434.33721 36.41249 110 0 - + 30.57175 108.00000 1428.66536 36.25082 110 0 - + 30.91986 109.20000 1441.73924 36.58256 110 0 - + 31.26180 110.40000 1454.81100 36.91424 110 0 - + 31.59871 111.60000 1467.88082 37.24587 110 0 - + 31.93174 112.80000 1480.94886 37.57746 110 0 - + 32.26205 114.00000 1494.01527 37.90900 110 0 - + 32.12994 114.00000 1433.20825 37.77689 110 0 - + 32.45738 115.20000 1445.74142 38.10724 110 0 - + 32.78361 116.40000 1458.27332 38.43756 110 0 - + 33.10901 117.60000 1470.80405 38.76785 110 0 - + 33.43394 118.80000 1483.33375 39.09811 110 0 - + 33.75879 120.00000 1495.86254 39.42835 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2677,10 +1871,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 78.934 'Clay' - -6.00 67.761 'Peat' - -8.00 70.669 'Sand 1' - -11.00 87.539 'Sand 2' + 0.00 91.223 'Clay' + -6.00 68.236 'Peat' + -8.00 71.017 'Sand 1' + -11.00 88.508 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2695,12 +1889,12 @@ Method Ka,K0,Kp [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.40 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 1 passive +Soil profile [TABLE] -DataCount=13 +DataCount=4 [COLUMN INDICATION] Level top layer Excess pore top @@ -2717,16 +1911,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -2.40 0.00 0.00 15.00 16.00 0.63 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.4m a -2.5' - -2.50 0.00 0.00 15.00 16.00 1.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.5m a -2.6' - -2.60 0.00 0.00 15.00 16.00 1.88 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.6m a -2.7' - -2.70 0.00 0.00 15.00 16.00 1.88 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.6m a -2.7' - -2.80 0.00 0.00 15.00 16.00 2.50 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.7m a -2.8' - -2.90 0.00 0.00 15.00 16.00 3.13 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.8m a -2.9' - -3.00 0.00 0.00 15.00 16.00 3.75 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.0m a -3.1' - -3.10 0.00 0.00 15.00 16.00 4.38 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.1m a -3.2' - -3.20 0.00 0.00 15.00 16.00 5.00 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.2m a -3.3' - -3.40 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 0.00 0.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -2734,10 +1919,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -13 : Number of layers +4 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=13 +DataCount=4 [COLUMN INDICATION] Layer Branch @@ -2746,18 +1931,9 @@ Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] 1 1 2000.00000 2000.00000 - 2 1 2000.00000 2000.00000 - 3 1 2000.00000 2000.00000 - 4 1 2000.00000 2000.00000 - 5 1 2000.00000 2000.00000 - 6 1 2000.00000 2000.00000 - 7 1 2000.00000 2000.00000 - 8 1 2000.00000 2000.00000 - 9 1 2000.00000 2000.00000 - 10 1 2000.00000 2000.00000 - 11 1 800.00000 800.00000 - 12 1 10000.00000 10000.00000 - 13 1 10000.00000 10000.00000 + 2 1 800.00000 800.00000 + 3 1 10000.00000 10000.00000 + 4 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -2765,7 +1941,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2800,217 +1976,142 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.60000 0.00000 0.00000 -1 0 - - 0.00000 0.80000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00000 1.60000 0.00000 0.00000 -1 0 - - 0.00000 2.20000 0.00000 0.00000 -1 0 - - 0.00000 2.80000 0.00000 0.00000 -1 0 - - 0.00000 3.40000 0.00000 0.00000 -1 0 - - 0.00000 4.00000 0.00000 0.00000 -1 0 - - 2.54763 4.00000 2.54763 0.00000 202 100 P - 3.03821 4.20000 3.03821 0.06809 202 100 P - 3.52879 4.40000 3.52879 0.13619 202 100 P - 4.01937 4.60000 4.01937 0.20428 202 100 P - 4.50995 4.80000 4.50995 0.27237 202 100 P - 5.00053 5.00000 5.00053 0.34047 202 100 P - 7.50772 5.00000 7.50772 0.34047 202 100 P - 7.99830 5.20000 7.99830 0.40856 202 100 P - 8.48889 5.40000 8.48889 0.47665 202 100 P - 8.97947 5.60000 8.97947 0.54474 202 100 P - 9.47005 5.80000 9.47005 0.61284 202 100 P - 9.96063 6.00000 9.96063 0.68093 202 100 P - 12.50826 6.00000 12.50826 0.68093 202 100 P - 12.99884 6.20000 12.99884 0.74902 202 100 P - 13.48942 6.40000 13.48942 0.81712 202 100 P - 13.98000 6.60000 13.98000 0.88521 202 100 P - 14.47058 6.80000 14.47058 0.95330 202 100 P - 14.96117 7.00000 14.96117 1.02140 202 100 P - 14.96117 7.00000 14.96117 1.02140 202 100 P - 15.10834 7.06000 15.10834 1.04182 202 100 P - 15.25551 7.12000 15.25551 1.06225 202 100 P - 15.40269 7.18000 15.40269 1.08268 202 100 P - 15.54986 7.24000 15.54986 1.10311 202 100 P - 15.69704 7.30000 15.69704 1.12354 202 100 P - 15.69704 7.30000 15.69704 1.12354 202 100 P - 16.04045 7.44000 16.04045 1.17120 202 100 P - 16.38385 7.58000 16.38385 1.21887 202 100 P - 16.72726 7.72000 16.72726 1.26653 202 100 P - 17.07067 7.86000 17.07067 1.31420 202 100 P - 17.41407 8.00000 17.41407 1.36186 202 100 P - 19.92126 8.00000 19.92126 1.36186 202 100 P - 20.41184 8.20000 20.41184 1.42995 202 100 P - 20.90243 8.40000 20.90243 1.49805 202 100 P - 21.39301 8.60000 21.39301 1.56614 202 100 P - 21.88359 8.80000 21.88359 1.63423 202 100 P - 22.37417 9.00000 22.37417 1.70233 202 100 P - 24.92180 9.00000 24.92180 1.70233 202 100 P - 25.41238 9.20000 25.41238 1.77042 202 100 P - 25.90296 9.40000 25.90296 1.83851 202 100 P - 26.36805 9.60000 26.39354 1.90661 110 99 - - 26.36169 9.80000 26.88412 1.97470 110 98 - - 26.35547 10.00000 27.37471 2.04279 110 96 - - 26.35547 10.00000 29.88189 2.04279 110 88 - - 26.34940 10.20000 30.37247 2.11088 110 87 - - 26.34348 10.40000 30.86306 2.17898 110 85 - - 26.33771 10.60000 31.35364 2.24707 110 84 - - 26.33209 10.80000 31.84422 2.31516 110 83 - - 26.32662 11.00000 32.33480 2.38326 110 81 - - 26.32662 11.00000 34.88243 2.38326 110 75 - - 26.32132 11.20000 35.37301 2.45135 110 74 - - 26.31617 11.40000 35.86359 2.51944 110 73 - - 26.31119 11.60000 36.35417 2.58754 110 72 - - 26.30637 11.80000 36.84475 2.65563 110 71 - - 26.30171 12.00000 37.33534 2.72372 110 70 - - 26.30171 12.00000 39.84252 2.72372 110 66 - - 26.29418 12.34000 40.67651 2.83948 110 65 - - 26.28714 12.68000 41.51050 2.95524 110 63 - - 26.28059 13.02000 42.34449 3.07100 110 62 - - 26.27455 13.36000 43.17848 3.18675 110 61 - - 26.26901 13.70000 44.01247 3.30251 110 60 - - 26.26901 13.70000 44.01247 3.30251 110 60 - - 26.26808 13.76000 44.15964 3.32294 110 59 - - 26.26718 13.82000 44.30682 3.34337 110 59 - - 26.26628 13.88000 44.45399 3.36380 110 59 - - 26.26541 13.94000 44.60117 3.38422 110 59 - - 26.26455 14.00000 44.74834 3.40465 110 59 - - 26.26455 14.00000 49.80315 3.40465 110 53 - - 26.25082 15.20000 52.74664 3.81321 110 50 - - 26.24368 16.40000 55.69014 4.22177 110 47 - - 26.24308 17.60000 58.63363 4.63033 110 45 - - 26.24899 18.80000 61.57712 5.03889 110 43 - - 26.26137 20.00000 64.52061 5.44744 110 41 - - 26.26137 20.00000 64.52061 5.44744 110 41 - - 26.28256 21.33333 67.79115 5.90140 110 39 - - 26.31108 22.66667 71.06170 6.35535 110 37 - - 26.34632 24.00000 74.33224 6.80931 110 35 - - 26.38766 25.33333 77.60279 7.26326 110 34 - - 26.43450 26.66667 80.87333 7.71721 110 33 - - 26.43450 26.66667 80.87333 7.71721 110 33 - - 26.48614 28.00000 84.14388 8.17117 110 31 - - 26.54162 29.33333 87.41442 8.62512 110 30 - - 26.59996 30.66667 90.68497 9.07907 110 29 - - 26.66020 32.00000 93.95551 9.53303 110 28 - - 26.72135 33.33333 97.22606 9.98698 110 27 - - 26.72135 33.33333 97.22606 9.98698 110 27 - - 26.78239 34.66667 100.49660 10.44093 110 27 - - 26.84218 36.00000 103.76715 10.89489 110 26 - - 26.89962 37.33333 107.03769 11.34884 110 25 - - 26.95360 38.66667 110.30824 11.80280 110 24 - - 27.00300 40.00000 113.57878 12.25675 110 24 - - 16.80642 40.00000 111.22007 10.90792 110 15 - - 16.71941 41.20000 111.77806 10.96852 110 15 - - 16.63027 42.40000 112.33605 11.02912 110 15 - - 16.53884 43.60000 112.89405 11.08972 110 15 - - 16.44497 44.80000 113.45204 11.15032 110 14 - - 16.34851 46.00000 114.01003 11.21092 110 14 - - 16.34851 46.00000 114.01003 11.21092 110 14 - - 16.24937 47.20000 114.56802 11.27152 110 14 - - 16.14766 48.40000 115.12601 11.33212 110 14 - - 16.04360 49.60000 115.68400 11.39271 110 14 - - 15.93736 50.80000 116.24199 11.45331 110 14 - - 15.82913 52.00000 116.79998 11.51391 110 14 - - 15.82913 52.00000 116.79998 11.51391 110 14 - - 15.71918 53.20000 117.35797 11.57451 110 13 - - 15.60799 54.40000 117.91596 11.63511 110 13 - - 15.49611 55.60000 118.47395 11.69571 110 13 - - 15.38411 56.80000 119.03194 11.75631 110 13 - - 15.27254 58.00000 119.58993 11.81691 110 13 - - 15.27254 58.00000 119.58993 11.81691 110 13 - - 15.23555 58.40000 119.77592 11.83711 110 13 - - 15.19871 58.80000 119.96192 11.85731 110 13 - - 15.16206 59.20000 120.14792 11.87751 110 13 - - 15.12563 59.60000 120.33391 11.89771 110 13 - - 15.08944 60.00000 120.51991 11.91791 110 13 - - 49.07094 60.00000 338.15964 9.42679 110 15 - - 47.22928 61.33333 355.35420 9.90612 110 13 - - 45.44027 62.66667 372.54876 10.38545 110 12 - - 43.71408 64.00000 389.74331 10.86477 110 11 - - 42.06089 65.33333 406.93787 11.34410 110 10 - - 40.49085 66.66667 424.13243 11.82343 110 10 - - 40.49085 66.66667 424.13243 11.82343 110 10 - - 39.01243 68.00000 441.32699 12.30276 110 9 - - 37.62911 69.33333 458.52155 12.78209 110 8 - - 36.34359 70.66667 475.71610 13.26142 110 8 - - 35.15855 72.00000 492.91066 13.74074 110 7 - - 34.07670 73.33333 510.10522 14.22007 110 7 - - 34.07670 73.33333 510.10522 14.22007 110 7 - - 33.09952 74.66667 527.29978 14.69940 110 6 - - 32.22531 76.00000 544.49434 15.17873 110 6 - - 31.45196 77.33333 561.68889 15.65806 110 6 - - 30.77735 78.66667 578.88345 16.13738 110 5 - - 30.19939 80.00000 596.07801 16.61671 110 5 - - 30.19939 80.00000 596.07801 16.61671 110 5 - - 29.82760 81.00000 608.97393 16.97621 110 5 - - 29.50650 82.00000 621.86985 17.33571 110 5 - - 29.23421 83.00000 634.76577 17.69520 110 5 - - 29.00883 84.00000 647.66168 18.05470 110 4 - - 28.82848 85.00000 660.55760 18.41419 110 4 - - 28.82848 85.00000 660.55760 18.41419 110 4 - - 28.69116 86.00000 673.45352 18.77369 110 4 - - 28.59477 87.00000 686.34944 19.13319 110 4 - - 28.53730 88.00000 699.24536 19.49268 110 4 - - 28.51673 89.00000 712.14128 19.85218 110 4 - - 28.53104 90.00000 725.03720 20.21167 110 4 - - 24.22338 90.00000 634.76799 15.90402 110 4 - - 24.19190 91.20000 648.31640 16.24347 110 4 - - 24.20456 92.40000 661.86481 16.58293 110 4 - - 24.25814 93.60000 675.41322 16.92238 110 4 - - 24.34941 94.80000 688.96162 17.26183 110 4 - - 24.47512 96.00000 702.51003 17.60129 110 3 - - 24.47512 96.00000 702.51003 17.60129 110 3 - - 24.63206 97.20000 716.05844 17.94074 110 3 - - 24.81732 98.40000 729.60685 18.28019 110 3 - - 25.02815 99.60000 743.15526 18.61965 110 3 - - 25.26180 100.80000 756.70366 18.95910 110 3 - - 25.51552 102.00000 770.25207 19.29855 110 3 - - 25.51552 102.00000 770.25207 19.29855 110 3 - - 25.78665 103.20000 783.80048 19.63801 110 3 - - 26.07307 104.40000 797.34889 19.97746 110 3 - - 26.37279 105.60000 810.89729 20.31691 110 3 - - 26.68383 106.80000 824.44570 20.65637 110 3 - - 27.00418 108.00000 837.99411 20.99582 110 3 - - 27.00418 108.00000 837.99411 20.99582 110 3 - - 27.33202 109.20000 851.54252 21.33527 110 3 - - 27.66603 110.40000 865.09093 21.67473 110 3 - - 28.00507 111.60000 878.63933 22.01418 110 3 - - 28.34797 112.80000 892.18774 22.35363 110 3 - - 28.69356 114.00000 905.73615 22.69309 110 3 - - 28.69356 114.00000 905.73615 22.69309 110 3 - - 29.04083 115.20000 919.28456 23.03254 110 3 - - 29.38929 116.40000 932.83296 23.37199 110 3 - - 29.73855 117.60000 946.38137 23.71145 110 3 - - 30.08825 118.80000 959.92978 24.05090 110 3 - - 30.43801 120.00000 973.47819 24.39035 110 3 - + 21.72310 0.00000 25.27407 0.00000 110 86 - + 21.88795 1.33333 28.54461 0.45395 110 77 - + 22.05525 2.66667 31.81516 0.90791 110 69 - + 22.22539 4.00000 35.08570 1.36186 110 63 - + 22.39876 5.33333 38.35625 1.81581 110 58 - + 22.57576 6.66667 41.62679 2.26977 110 54 - + 22.57576 6.66667 41.62679 2.26977 110 54 - + 22.75665 8.00000 44.89734 2.72372 110 51 - + 22.94139 9.33333 48.16788 3.17768 110 48 - + 23.12985 10.66667 51.43843 3.63163 110 45 - + 23.32191 12.00000 54.70897 4.08558 110 43 - + 23.51744 13.33333 57.97952 4.53954 110 41 - + 23.51744 13.33333 57.97952 4.53954 110 41 - + 23.71624 14.66667 61.25006 4.99349 110 39 - + 23.91788 16.00000 64.52061 5.44744 110 37 - + 24.12187 17.33333 67.79115 5.90140 110 36 - + 24.32772 18.66667 71.06170 6.35535 110 34 - + 24.53494 20.00000 74.33224 6.80931 110 33 - + 24.53494 20.00000 74.33224 6.80931 110 33 - + 24.74299 21.33333 77.60279 7.26326 110 32 - + 24.95118 22.66667 80.87333 7.71721 110 31 - + 25.15877 24.00000 84.14388 8.17117 110 30 - + 25.36503 25.33333 87.41442 8.62512 110 29 - + 25.56923 26.66667 90.68497 9.07907 110 28 - + 25.56923 26.66667 90.68497 9.07907 110 28 - + 25.77061 28.00000 93.95551 9.53303 110 27 - + 25.96831 29.33333 97.22606 9.98698 110 27 - + 26.16148 30.66667 100.49660 10.44093 110 26 - + 26.34925 32.00000 103.76715 10.89489 110 25 - + 26.53077 33.33333 107.03769 11.34884 110 25 - + 26.53077 33.33333 107.03769 11.34884 110 25 - + 26.70516 34.66667 110.30824 11.80280 110 24 - + 26.87154 36.00000 113.57878 12.25675 110 24 - + 27.02905 37.33333 116.84933 12.71070 110 23 - + 27.17684 38.66667 120.11988 13.16466 110 23 - + 27.31403 40.00000 123.39042 13.61861 110 22 - + 17.59808 40.00000 122.37988 12.11991 110 14 - + 17.55055 41.00000 122.84487 12.17041 110 14 - + 17.50033 42.00000 123.30986 12.22091 110 14 - + 17.44737 43.00000 123.77485 12.27141 110 14 - + 17.39160 44.00000 124.23985 12.32191 110 14 - + 17.33297 45.00000 124.70484 12.37241 110 14 - + 17.33297 45.00000 124.70484 12.37241 110 14 - + 17.27145 46.00000 125.16983 12.42291 110 14 - + 17.20712 47.00000 125.63482 12.47341 110 14 - + 17.14006 48.00000 126.09981 12.52391 110 14 - + 17.07039 49.00000 126.56481 12.57441 110 13 - + 16.99820 50.00000 127.02980 12.62491 110 13 - + 16.99820 50.00000 127.02980 12.62491 110 13 - + 16.92363 51.00000 127.49479 12.67540 110 13 - + 16.84692 52.00000 127.95978 12.72590 110 13 - + 16.76832 53.00000 128.42477 12.77640 110 13 - + 16.68811 54.00000 128.88976 12.82690 110 13 - + 16.60655 55.00000 129.35476 12.87740 110 13 - + 16.60655 55.00000 129.35476 12.87740 110 13 - + 16.52393 56.00000 129.81975 12.92790 110 13 - + 16.44068 57.00000 130.28474 12.97840 110 13 - + 16.35721 58.00000 130.74973 13.02890 110 13 - + 16.27399 59.00000 131.21472 13.07940 110 12 - + 16.19143 60.00000 131.67972 13.12990 110 12 - + 48.65457 60.00000 372.54876 10.38545 110 13 - + 46.94131 61.33333 389.74331 10.86477 110 12 - + 45.26913 62.66667 406.93787 11.34410 110 11 - + 43.64886 64.00000 424.13243 11.82343 110 10 - + 42.09130 65.33333 441.32699 12.30276 110 10 - + 40.60729 66.66667 458.52155 12.78209 110 9 - + 40.60729 66.66667 458.52155 12.78209 110 9 - + 39.20595 68.00000 475.71610 13.26142 110 8 - + 37.89141 69.33333 492.91066 13.74074 110 8 - + 36.66698 70.66667 510.10522 14.22007 110 7 - + 35.53597 72.00000 527.29978 14.69940 110 7 - + 34.50170 73.33333 544.49434 15.17873 110 6 - + 34.50170 73.33333 544.49434 15.17873 110 6 - + 33.56625 74.66667 561.68889 15.65806 110 6 - + 32.72841 76.00000 578.88345 16.13738 110 6 - + 31.98654 77.33333 596.07801 16.61671 110 5 - + 31.33898 78.66667 613.27257 17.09604 110 5 - + 30.78406 80.00000 630.46713 17.57537 110 5 - + 30.78406 80.00000 630.46713 17.57537 110 5 - + 30.42720 81.00000 643.36304 17.93487 110 5 - + 30.11915 82.00000 656.25896 18.29436 110 5 - + 29.85816 83.00000 669.15488 18.65386 110 4 - + 29.64250 84.00000 682.05080 19.01335 110 4 - + 29.47040 85.00000 694.94672 19.37285 110 4 - + 29.47040 85.00000 694.94672 19.37285 110 4 - + 29.34001 86.00000 707.84264 19.73235 110 4 - + 29.24933 87.00000 720.73856 20.09184 110 4 - + 29.19645 88.00000 733.63447 20.45134 110 4 - + 29.17946 89.00000 746.53039 20.81084 110 4 - + 29.19643 90.00000 759.42631 21.17033 110 4 - + 24.68446 90.00000 664.87557 16.65836 110 4 - + 24.65509 91.20000 678.42397 16.99781 110 4 - + 24.66881 92.40000 691.97238 17.33727 110 4 - + 24.72249 93.60000 705.52079 17.67672 110 4 - + 24.81302 94.80000 719.06920 18.01617 110 3 - + 24.93727 96.00000 732.61760 18.35563 110 3 - + 24.93727 96.00000 732.61760 18.35563 110 3 - + 25.09213 97.20000 746.16601 18.69508 110 3 - + 25.27478 98.40000 759.71442 19.03453 110 3 - + 25.48253 99.60000 773.26283 19.37399 110 3 - + 25.71270 100.80000 786.81124 19.71344 110 3 - + 25.96262 102.00000 800.35964 20.05289 110 3 - + 25.96262 102.00000 800.35964 20.05289 110 3 - + 26.22970 103.20000 813.90805 20.39235 110 3 - + 26.51185 104.40000 827.45646 20.73180 110 3 - + 26.80712 105.60000 841.00487 21.07125 110 3 - + 27.11357 106.80000 854.55327 21.41071 110 3 - + 27.42923 108.00000 868.10168 21.75016 110 3 - + 27.42923 108.00000 868.10168 21.75016 110 3 - + 27.75231 109.20000 881.65009 22.08961 110 3 - + 28.08151 110.40000 895.19850 22.42907 110 3 - + 28.41568 111.60000 908.74691 22.76852 110 3 - + 28.75369 112.80000 922.29531 23.10797 110 3 - + 29.09438 114.00000 935.84372 23.44743 110 3 - + 29.09438 114.00000 935.84372 23.44743 110 3 - + 29.43674 115.20000 949.39213 23.78688 110 3 - + 29.78028 116.40000 962.94054 24.12633 110 3 - + 30.12463 117.60000 976.48894 24.46579 110 3 - + 30.46941 118.80000 990.03735 24.80524 110 3 - + 30.81425 120.00000 1003.58576 25.14469 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=13 +DataCount=4 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -2.40 0.377 'Clay -2.4m a -2.5' - -2.50 0.873 'Clay -2.5m a -2.6' - -2.60 1.373 'Clay -2.6m a -2.7' - -2.70 1.619 'Clay -2.6m a -2.7' - -2.80 2.115 'Clay -2.7m a -2.8' - -2.90 2.594 'Clay -2.8m a -2.9' - -3.00 2.634 'Clay -3.0m a -3.1' - -3.10 2.631 'Clay -3.1m a -3.2' - -3.20 5.256 'Clay -3.2m a -3.3' - -3.40 68.934 'Clay' - -6.00 31.972 'Peat' - -8.00 104.790 'Sand 1' - -11.00 79.714 'Sand 2' + 0.00 98.173 'Clay' + -6.00 33.923 'Peat' + -8.00 105.874 'Sand 1' + -11.00 81.009 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3018,7 +2119,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -3048,88 +2149,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 + -2.13333 + -2.26667 -2.40000 - -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 - -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 + -2.93333 + -3.06667 -3.20000 - -3.20000 - -3.23400 - -3.26800 - -3.30200 - -3.33600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -3150,28 +2185,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 - -6.60000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 - -7.80000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -3315,21 +2350,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.08 : Percentage mobilized resistance left - 4.18 : Percentage mobilized resistance right - 457.45 : Effective left - 357.16 : Effective right + 9.88 : Percentage mobilized resistance left + 4.16 : Percentage mobilized resistance right + 456.29 : Effective left + 356.11 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4538.41 : Max effective resistance left - 8552.93 : Max effective resistance right --40383.26 : Max moment left --69525.29 : Max moment right --2447.19 : Max mobilized moment left --2537.36 : Max mobilized moment right - 181.02 : Vertical force left - 165.72 : Vertical force right - 6.1 : Max mobilized moment percentage left + 4618.11 : Max effective resistance left + 8552.87 : Max effective resistance right +-40828.08 : Max moment left +-69527.43 : Max moment right +-2418.07 : Max mobilized moment left +-2508.75 : Max mobilized moment right + 181.86 : Vertical force left + 164.09 : Vertical force right + 5.9 : Max mobilized moment percentage left 3.6 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support @@ -3338,223 +2373,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -155.17928 - 0.00000 0.00000 -151.81731 - 0.00000 0.00000 -148.45535 - 0.00000 0.00000 -145.09338 - 0.00000 0.00000 -141.73142 - 0.00000 0.00000 -138.36946 - 0.00000 0.00000 -138.36946 - 0.00000 0.00000 -135.00749 - 0.00000 0.00000 -131.64553 - 0.00000 0.00000 -128.28356 - 0.00000 0.00000 -124.92160 - 0.00000 0.00000 -121.55964 - 0.00000 180.00000 -121.55964 - 18.00609 180.12302 -118.19840 - 36.02486 180.25368 -114.84151 - 54.05708 180.39205 -111.49333 - 72.10353 180.53817 -108.15822 - 90.16498 180.69208 -104.84054 - 90.16500 100.99633 -104.84054 - 100.28928 101.49326 -101.54433 - 110.46446 102.01432 -98.27235 - 120.69295 102.55954 -95.02709 - 130.97718 103.12897 -91.81101 - 141.31955 103.72263 -88.62660 - 141.31929 103.71629 -88.62660 - 143.39497 103.85143 -87.99373 - 145.47335 103.98707 -87.36225 - 147.55445 104.12321 -86.73218 - 149.63828 104.25985 -86.10353 - 151.72485 104.39699 -85.47633 - 151.72495 104.39516 -85.47633 - 157.99792 104.64756 -83.60362 - 164.27589 104.56159 -81.74465 - 170.53849 104.13453 -79.89998 - 176.76512 103.36188 -78.07015 - 182.93488 102.23751 -76.25570 - 182.93484 102.23701 -76.25570 - 184.97841 102.11634 -75.65439 - 187.01934 101.97350 -75.05488 - 189.05720 101.80828 -74.45717 - 191.09152 101.62050 -73.86129 - 193.12187 101.40994 -73.26725 - 193.12187 101.40994 -73.26725 - 195.14905 101.30518 -72.67509 - 197.17394 101.18073 -72.08481 - 199.19615 101.03640 -71.49644 - 201.21527 100.87199 -70.90999 - 203.23089 100.68729 -70.32549 - 203.23089 100.68729 -70.32549 - 205.24316 100.53682 -69.74295 - 207.25224 100.36797 -69.16240 - 209.25776 100.18054 -68.58385 - 211.25934 99.97433 -68.00733 - 213.25661 99.74914 -67.43285 - 213.25661 99.74914 -67.43285 - 213.85492 99.68773 -67.26090 - 214.45285 99.62470 -67.08915 - 215.05041 99.56004 -66.91757 - 215.64757 99.49375 -66.74619 - 216.24433 99.42583 -66.57500 - 216.24433 99.42583 -66.57500 - 217.63346 99.01882 -66.17627 - 219.01679 98.59669 -65.77858 - 220.39410 98.15931 -65.38192 - 221.76518 97.70658 -64.98631 - 223.12981 97.23839 -64.59175 - 223.12981 97.23839 -64.59175 - 225.06859 96.63494 -64.02993 - 226.99501 96.00243 -63.47028 - 228.90849 95.34056 -62.91283 - 230.80844 94.64904 -62.35759 - 232.69425 93.92759 -61.80458 - 232.69426 93.92747 -61.80458 - 234.56618 93.26012 -61.25383 - 236.42448 92.56474 -60.70534 - 238.26858 91.84108 -60.15913 - 240.09793 91.08887 -59.61524 - 241.91194 90.30788 -59.07366 - 241.91194 90.30776 -59.07366 - 243.70990 89.48348 -58.53442 - 245.49108 88.62952 -57.99754 - 247.25488 87.74563 -57.46303 - 249.00071 86.83158 -56.93091 - 250.72794 85.88712 -56.40120 - 250.72794 85.88712 -56.40120 - 252.43524 84.83704 -55.87391 - 254.12121 83.75425 -55.34907 - 255.78519 82.63852 -54.82668 - 257.42653 81.48963 -54.30676 - 259.04455 80.30735 -53.78933 - 259.04455 80.30735 -53.78933 - 261.73345 77.84465 -52.91547 - 264.33671 75.26949 -52.04891 - 266.85049 72.58078 -51.18974 - 269.27091 69.77749 -50.33803 - 271.59405 66.85866 -49.49384 - 271.59405 66.85867 -49.49384 - 271.99333 66.23318 -49.34565 - 272.38885 65.60877 -49.19770 - 272.78064 64.98543 -49.04998 - 273.16868 64.36316 -48.90251 - 273.55300 63.74195 -48.75527 - 273.55279 63.74514 -48.75527 - 280.49496 52.03473 -45.86119 - 286.05908 40.77320 -43.06477 - 290.29738 29.93314 -40.36751 - 293.25885 19.48834 -37.77089 - 294.98939 9.41373 -35.27638 - 294.98932 9.41228 -35.27638 - 295.59993 -0.16857 -32.62578 - 294.96622 -9.25774 -30.10223 - 293.15166 -17.88654 -27.70498 - 290.21559 -26.08532 -25.43326 - 286.21337 -33.88368 -23.28630 - 286.21303 -33.87189 -23.28630 - 281.26581 -40.26772 -21.26284 - 275.49264 -46.26594 -19.36027 - 268.94463 -51.89503 -17.57579 - 261.66914 -57.18269 -15.90658 - 253.70989 -62.15588 -14.34986 - 253.71169 -62.15259 -14.34986 - 245.15966 -66.07719 -12.90249 - 236.10405 -69.71047 -11.56047 - 226.58204 -73.07747 -10.31974 - 216.63480 -76.03781 -9.17620 - 206.32932 -78.45749 -8.12579 - 206.32576 -78.47964 -8.12579 - 196.93532 -78.00169 -7.25643 - 187.61134 -77.37405 -6.45562 - 178.37107 -76.60854 -5.72015 - 169.23036 -75.71641 -5.04679 - 160.20376 -74.70835 -4.43233 - 160.20381 -74.70388 -4.43233 - 151.30449 -73.60129 -3.87358 - 142.54336 -72.40223 -3.36750 - 133.93145 -71.11581 -2.91108 - 125.47872 -69.75060 -2.50133 - 117.19414 -68.31466 -2.13525 - 117.19418 -68.31138 -2.13525 - 109.08441 -66.84153 -1.80988 - 101.15447 -65.31542 -1.52249 - 93.41070 -63.73959 -1.27036 - 85.85871 -62.12012 -1.05081 - 78.50339 -60.46259 -0.86113 - 78.50352 -60.46130 -0.86113 - 76.09716 -59.85609 -0.80409 - 73.71508 -59.24736 -0.74999 - 71.35742 -58.63526 -0.69875 - 69.02431 -58.01998 -0.65026 - 66.71586 -57.40167 -0.60444 - 66.71462 -57.38988 -0.60444 - 59.31866 -53.54757 -0.46972 - 52.43444 -49.72400 -0.36048 - 46.05560 -45.97542 -0.27396 - 40.16888 -42.34943 -0.20743 - 34.75524 -38.88497 -0.15814 - 34.75587 -38.87283 -0.15814 - 29.82376 -35.14051 -0.12353 - 25.37612 -31.60933 -0.10173 - 21.38483 -28.29814 -0.09101 - 17.81956 -25.22085 -0.08965 - 14.64847 -22.38643 -0.09592 - 14.64893 -22.38544 -0.09592 - 11.84276 -19.74831 -0.10830 - 9.37176 -17.35778 -0.12576 - 7.20312 -15.21250 -0.14736 - 5.30435 -13.30891 -0.17217 - 3.64478 -11.61451 -0.19924 - 3.64341 -11.63781 -0.19924 - 2.53945 -10.44793 -0.22054 - 1.55249 -9.29807 -0.24245 - 0.67847 -8.18925 -0.26475 - -0.08674 -7.12206 -0.28725 - -0.74733 -6.09665 -0.30972 - -0.74731 -6.09677 -0.30972 - -1.30752 -5.11436 -0.33198 - -1.77155 -4.17287 -0.35392 - -2.14344 -3.27158 -0.37546 - -2.42717 -2.40959 -0.39650 - -2.62663 -1.58582 -0.41694 - -2.62660 -1.58653 -0.41694 - -2.78523 -1.06630 -0.44061 - -2.88460 -0.59827 -0.46331 - -2.93081 -0.18011 -0.48502 - -2.92972 0.19057 -0.50573 - -2.88688 0.51617 -0.52541 - -2.88688 0.51519 -0.52541 - -2.80805 0.79183 -0.54408 - -2.69845 1.02826 -0.56176 - -2.56278 1.22676 -0.57852 - -2.40546 1.38948 -0.59439 - -2.23066 1.51848 -0.60942 - -2.23067 1.51771 -0.60942 - -2.04298 1.60529 -0.62367 - -1.84660 1.66281 -0.63720 - -1.64505 1.69188 -0.65010 - -1.44163 1.69394 -0.66243 - -1.23953 1.67024 -0.67425 - -1.23954 1.66980 -0.67425 - -1.04252 1.60990 -0.68564 - -0.85412 1.52619 -0.69667 - -0.67716 1.41947 -0.70740 - -0.51435 1.29035 -0.71789 - -0.36835 1.13932 -0.72820 - -0.36836 1.13918 -0.72820 - -0.24255 0.95401 -0.73839 - -0.14025 0.74738 -0.74850 - -0.06403 0.51946 -0.75855 - -0.01643 0.27033 -0.76857 - 0.00000 0.00001 -0.77859 + 0.00000 0.00000 -124.86435 + 0.00000 0.00000 -122.02454 + 0.00000 0.00000 -119.18472 + 0.00000 0.00000 -116.34491 + 0.00000 0.00000 -113.50510 + 0.00000 0.00000 -110.66529 + 0.00000 0.00000 -110.66529 + 0.00000 0.00000 -107.82547 + 0.00000 0.00000 -104.98566 + 0.00000 0.00000 -102.14585 + 0.00000 0.00000 -99.30604 + 0.00000 0.00000 -96.46623 + 0.00027 179.99712 -96.46623 + 18.00607 180.12014 -93.62714 + 36.02455 180.25081 -90.79240 + 54.05649 180.38918 -87.96637 + 72.10265 180.53530 -85.15342 + 90.16381 180.68921 -82.35789 + 90.16369 100.99285 -82.35789 + 100.28762 101.48978 -79.58382 + 110.46245 102.01084 -76.83400 + 120.69059 102.55606 -74.11089 + 130.97447 103.12549 -71.41696 + 141.31650 103.71915 -68.75469 + 141.31648 103.71931 -68.75469 + 155.17806 103.84638 -65.25870 + 168.91214 101.79757 -61.82947 + 182.22376 97.49161 -58.47263 + 194.80400 90.80274 -55.19383 + 206.32491 81.57331 -51.99871 + 206.32592 81.56461 -51.99871 + 216.84542 75.96465 -48.89274 + 226.51069 68.73421 -45.88003 + 235.09777 59.77631 -42.96421 + 242.37043 49.00465 -40.14893 + 248.12899 37.40749 -37.43780 + 248.12214 37.30322 -37.43780 + 252.42152 27.25733 -34.83397 + 255.40862 17.61326 -32.33864 + 257.13478 8.33789 -29.95258 + 257.64706 -0.59989 -27.67653 + 256.98851 -9.22937 -25.51126 + 256.98853 -9.21715 -25.51126 + 255.28302 -16.30527 -23.45698 + 252.65592 -23.04546 -21.51242 + 249.15187 -29.46388 -19.67610 + 244.81207 -35.58574 -17.94651 + 239.67444 -41.43543 -16.32216 + 239.67476 -41.42542 -16.32216 + 233.84066 -46.03834 -14.80118 + 227.41009 -50.37640 -13.38070 + 220.41814 -54.46274 -12.05773 + 212.89689 -58.31967 -10.82926 + 204.88087 -61.84712 -9.69231 + 204.87809 -61.87518 -9.69231 + 196.45381 -64.40281 -8.64361 + 187.72605 -66.43444 -7.67932 + 178.75814 -68.01191 -6.79562 + 169.60795 -69.17510 -5.98865 + 160.32817 -69.96199 -5.25459 + 160.32904 -69.95247 -5.25459 + 153.37403 -69.13533 -4.74950 + 146.50435 -68.24693 -4.28148 + 139.72684 -67.29251 -3.84890 + 133.04788 -66.27705 -3.45011 + 126.47331 -65.20533 -3.08349 + 126.47333 -65.20329 -3.08349 + 120.00786 -64.09769 -2.74740 + 113.65537 -62.94455 -2.44032 + 107.42040 -61.74797 -2.16073 + 101.30710 -60.51183 -1.90714 + 95.31923 -59.23980 -1.67804 + 95.31925 -59.23826 -1.67804 + 89.45771 -57.98727 -1.47194 + 83.72276 -56.70716 -1.28745 + 78.11715 -55.40096 -1.12324 + 72.64334 -54.07153 -0.97794 + 67.30353 -52.72152 -0.85019 + 67.30354 -52.72043 -0.85019 + 62.10469 -51.25385 -0.73867 + 57.05331 -49.77107 -0.64216 + 52.15094 -48.27418 -0.55947 + 47.39888 -46.76512 -0.48942 + 42.79827 -45.24565 -0.43083 + 42.79759 -45.23830 -0.43083 + 37.03494 -41.22868 -0.36845 + 31.79520 -37.40076 -0.32197 + 27.05185 -33.78773 -0.28935 + 22.77441 -30.41590 -0.26853 + 18.92936 -27.30469 -0.25749 + 18.92983 -27.29965 -0.25749 + 15.51302 -23.99643 -0.25434 + 12.51894 -20.95977 -0.25786 + 9.91171 -18.19400 -0.26691 + 7.65512 -15.70002 -0.28036 + 5.71307 -13.47529 -0.29707 + 5.71341 -13.47828 -0.29707 + 4.05285 -11.47318 -0.31609 + 2.64259 -9.72240 -0.33685 + 1.44931 -8.21692 -0.35883 + 0.44096 -6.94657 -0.38151 + -0.41076 -5.84838 -0.40436 + -0.41222 -5.87269 -0.40436 + -0.96081 -5.10422 -0.42135 + -1.43408 -4.36622 -0.43811 + -1.83505 -3.65813 -0.45454 + -2.16667 -2.97918 -0.47054 + -2.43182 -2.32842 -0.48601 + -2.43181 -2.32888 -0.48601 + -2.63346 -1.70844 -0.50088 + -2.77436 -1.11375 -0.51511 + -2.85703 -0.54350 -0.52868 + -2.88383 0.00362 -0.54158 + -2.85703 0.52898 -0.55377 + -2.85700 0.52822 -0.55377 + -2.78202 0.71656 -0.56748 + -2.68616 0.87667 -0.58022 + -2.57266 1.01082 -0.59204 + -2.44451 1.12118 -0.60296 + -2.30445 1.20981 -0.61303 + -2.30446 1.20901 -0.61303 + -2.15553 1.26998 -0.62229 + -2.00038 1.31307 -0.63080 + -1.84104 1.34000 -0.63862 + -1.67936 1.35235 -0.64580 + -1.51700 1.35156 -0.65239 + -1.51701 1.35103 -0.65239 + -1.35618 1.32763 -0.65846 + -1.19881 1.29353 -0.66405 + -1.04612 1.24981 -0.66923 + -0.89920 1.19737 -0.67404 + -0.75907 1.13700 -0.67854 + -0.75908 1.13673 -0.67854 + -0.62740 1.05666 -0.68277 + -0.50575 0.96981 -0.68679 + -0.39490 0.87662 -0.69063 + -0.29560 0.77746 -0.69432 + -0.20854 0.67262 -0.69792 + -0.20854 0.67253 -0.69792 + -0.13520 0.54892 -0.70145 + -0.07702 0.41981 -0.70493 + -0.03466 0.28526 -0.70838 + -0.00877 0.14533 -0.71181 + 0.00000 0.00001 -0.71524 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3571,7 +2540,7 @@ Method c,phi,delta 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil profile [TABLE] DataCount=4 [COLUMN INDICATION] @@ -3620,7 +2589,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=36 +DataCount=25 [COLUMN INDICATION] Slide plane position Theta min @@ -3634,26 +2603,15 @@ Q max -1.00000 63.43600 0.00000 108.77529 0.00000 -1.50000 62.01800 32.38000 237.79196 0.69181 -2.00000 64.69300 32.83100 383.23441 3.41792 - -2.10000 64.99500 32.90800 413.52148 4.09862 - -2.40000 65.67900 33.10100 505.40439 6.26179 - -2.50000 65.85400 43.26700 536.41659 7.36099 - -2.60000 66.01000 42.94000 567.63567 8.81085 - -2.70000 66.15000 42.63500 599.06763 10.29125 - -2.73000 66.18900 42.54800 608.53947 10.74116 - -2.80000 66.27600 42.35200 630.71726 11.80110 - -2.90000 66.39000 42.08700 662.58844 13.33946 - -3.00000 66.49500 41.83800 694.68436 14.90551 - -3.10000 66.59000 41.60600 727.00766 16.49855 - -3.20000 66.67800 41.38700 759.56053 18.11794 - -3.37000 66.81100 41.04400 815.43239 20.92984 - -3.40000 66.83300 40.98700 825.36213 21.43362 + -2.66667 66.10500 42.73500 588.56634 9.79446 + -3.33333 66.78400 41.11500 803.32464 20.31717 -4.00000 72.99400 40.02400 988.94946 31.96680 -4.66667 72.39100 39.24600 1163.65486 44.64546 -5.33333 71.91100 38.66700 1348.20505 58.30351 -6.00000 71.52100 38.22400 1542.89042 72.91314 - -6.60000 71.70000 37.83800 1786.79239 86.84817 - -7.20000 71.71000 37.52400 2057.23375 100.91652 - -7.80000 71.91500 37.26200 2332.41894 115.10975 + -6.50000 71.67500 37.89700 1746.00406 84.51613 + -7.00000 71.62500 37.62200 1965.89462 96.21285 + -7.50000 71.82100 37.38700 2194.60045 107.99794 -8.00000 71.97000 37.18400 2424.55831 119.86752 -8.66667 72.12300 36.69700 2815.41462 133.90497 -9.33333 72.91600 35.88300 3255.60713 147.95497 @@ -3670,7 +2628,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=35 +DataCount=24 [COLUMN INDICATION] Position Vertical stress @@ -3685,27 +2643,16 @@ Lambda passive -0.75000 21.47812 127.60924 0.00000 0.88779 0.00000 5.94136 -1.25000 29.57685 258.03334 1.38362 0.88377 0.04678 8.72417 -1.75000 37.93284 290.88490 5.45221 0.83596 0.14373 7.66842 - -2.05000 42.53773 302.87070 6.80700 0.80594 0.16002 7.12005 - -2.25000 44.10448 306.27637 7.21058 0.79351 0.16349 6.94434 - -2.45000 45.66122 310.12198 10.99202 0.78012 0.24073 6.79180 - -2.55000 46.43443 312.19083 14.49859 0.77327 0.31224 6.72326 - -2.65000 47.20368 314.31957 14.80397 0.76638 0.31362 6.65879 - -2.71500 47.70142 315.72801 14.99692 0.76191 0.31439 6.61884 - -2.76500 48.08302 316.82551 15.14202 0.75848 0.31491 6.58913 - -2.85000 48.72914 318.71181 15.38361 0.75269 0.31570 6.54048 - -2.95000 49.48495 320.95921 15.66055 0.74594 0.31647 6.48600 - -3.05000 50.23600 323.23297 15.93035 0.73930 0.31711 6.43429 - -3.15000 50.98219 325.52873 16.19388 0.73279 0.31764 6.38515 - -3.28500 51.98183 328.65802 16.54062 0.72421 0.31820 6.32256 - -3.38500 52.71658 330.99130 16.79268 0.71803 0.31855 6.27869 - -3.70000 54.99971 272.64554 17.55529 0.69964 0.31919 4.95722 + -2.33333 44.75462 307.99790 9.56482 0.78801 0.21372 6.88192 + -3.00000 49.86108 322.13744 15.78406 0.74261 0.31656 6.46070 + -3.66667 54.76032 278.43723 17.47445 0.70151 0.31911 5.08465 -4.33333 59.45479 262.05811 19.01799 0.66766 0.31987 4.40769 -5.00000 63.97379 276.82528 20.48708 0.64073 0.32024 4.32717 -5.66667 68.34951 292.02805 21.91445 0.61959 0.32062 4.27257 - -6.30000 70.89966 406.50330 23.22505 0.54796 0.32758 5.73350 - -6.90000 71.65941 450.73560 23.44725 0.53699 0.32720 6.28997 - -7.50000 72.35847 458.64197 23.65537 0.52766 0.32692 6.33847 - -7.90000 72.79663 460.69685 23.78885 0.52224 0.32678 6.32855 + -6.25000 70.83319 406.22729 23.20597 0.54896 0.32761 5.73499 + -6.75000 71.47567 439.78112 23.39344 0.53957 0.32729 6.15288 + -7.25000 72.07377 457.41165 23.57018 0.53136 0.32703 6.34644 + -7.75000 72.63468 459.91572 23.73916 0.52420 0.32683 6.33190 -8.33333 75.91684 586.28447 21.05617 0.42066 0.27736 7.72272 -9.00000 81.91216 660.28877 21.07500 0.41299 0.25729 8.06094 -9.66667 87.87278 674.50216 22.25963 0.40725 0.25332 7.67589 @@ -3721,7 +2668,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3756,90 +2703,24 @@ Status character 5.57322 0.00000 297.34106 32.41397 1 0 A 5.81541 0.00000 310.26190 33.82251 1 0 A 6.05766 0.00000 323.18662 35.23147 1 0 A - 6.74418 0.00000 300.07550 33.96636 1 0 A - 6.76931 0.20000 301.19375 34.09294 1 0 A - 6.79444 0.40000 302.31178 34.21949 1 0 A - 6.81956 0.60000 303.42955 34.34602 1 0 A - 6.84468 0.80000 304.54700 34.47250 1 0 A - 6.86978 1.00000 305.66409 34.59895 1 0 A - 7.01857 1.00000 298.12076 34.06523 1 0 A - 7.09546 1.60000 301.38674 34.43842 1 0 A - 7.17224 2.20000 304.64792 34.81106 1 0 A - 7.24888 2.80000 307.90324 35.18304 1 0 A - 7.32536 3.40000 311.15174 35.55423 1 0 A - 7.40166 4.00000 314.39257 35.92455 1 0 A - 10.89862 4.00000 307.48688 35.31876 1 0 A - 10.93601 4.20000 308.54163 35.43991 1 0 A - 10.97336 4.40000 309.59544 35.56096 1 0 A - 11.01067 4.60000 310.64828 35.68189 1 0 A - 11.04796 4.80000 311.70014 35.80271 1 0 A - 11.08520 5.00000 312.75098 35.92341 1 0 A - 14.37802 5.00000 309.59475 35.60777 1 0 A - 14.42628 5.20000 310.63396 35.72729 1 0 A - 14.47450 5.40000 311.67214 35.84670 1 0 A - 14.52266 5.60000 312.70925 35.96598 1 0 A - 14.57078 5.80000 313.74529 36.08514 1 0 A - 14.61884 6.00000 314.78023 36.20417 1 0 A - 14.68351 6.00000 311.76189 35.88173 1 0 A - 14.73173 6.20000 312.78580 35.99958 1 0 A - 14.77991 6.40000 313.80860 36.11730 1 0 A - 14.82803 6.60000 314.83026 36.23488 1 0 A - 14.87609 6.80000 315.85078 36.35234 1 0 A - 14.92410 7.00000 316.87014 36.46966 1 0 A - 14.96086 7.00000 314.96884 36.25686 1 0 A - 14.97529 7.06000 315.27258 36.29182 1 0 A - 14.98971 7.12000 315.57623 36.32678 1 0 A - 15.00413 7.18000 315.87976 36.36172 1 0 A - 15.01854 7.24000 316.18319 36.39665 1 0 A - 15.03295 7.30000 316.48652 36.43156 1 0 A - 15.05794 7.30000 315.06618 36.26759 1 0 A - 15.09159 7.44000 315.77035 36.34864 1 0 A - 15.12522 7.58000 316.47393 36.42963 1 0 A - 15.15882 7.72000 317.17694 36.51056 1 0 A - 15.19239 7.86000 317.87936 36.59141 1 0 A - 15.22593 8.00000 318.58119 36.67220 1 0 A - 15.26375 8.00000 316.22862 36.39197 1 0 A - 15.31174 8.20000 317.22280 36.50638 1 0 A - 15.35967 8.40000 318.21578 36.62066 1 0 A - 15.40754 8.60000 319.20754 36.73479 1 0 A - 15.45535 8.80000 320.19808 36.84878 1 0 A - 15.50310 9.00000 321.18738 36.96263 1 0 A - 15.54114 9.00000 318.51193 36.63148 1 0 A - 15.58895 9.20000 319.49177 36.74417 1 0 A - 15.63670 9.40000 320.47037 36.85672 1 0 A - 15.68439 9.60000 321.44774 36.96913 1 0 A - 15.73202 9.80000 322.42387 37.08139 1 0 A - 15.77958 10.00000 323.39875 37.19351 1 0 A - 15.81146 10.00000 320.82063 36.86247 1 0 A - 15.85906 10.20000 321.78650 36.97345 1 0 A - 15.90660 10.40000 322.75112 37.08428 1 0 A - 15.95408 10.60000 323.71450 37.19497 1 0 A - 16.00150 10.80000 324.67663 37.30552 1 0 A - 16.04886 11.00000 325.63751 37.41593 1 0 A - 16.07556 11.00000 323.15032 37.08614 1 0 A - 16.12293 11.20000 324.10262 37.19543 1 0 A - 16.17024 11.40000 325.05367 37.30457 1 0 A - 16.21749 11.60000 326.00348 37.41358 1 0 A - 16.26468 11.80000 326.95204 37.52244 1 0 A - 16.31181 12.00000 327.89936 37.63116 1 0 A - 16.34068 12.00000 324.68516 37.19071 1 0 A - 16.42079 12.34000 326.27698 37.37304 1 0 A - 16.50072 12.68000 327.86523 37.55497 1 0 A - 16.58048 13.02000 329.44992 37.73648 1 0 A - 16.66005 13.36000 331.03106 37.91759 1 0 A - 16.73945 13.70000 332.60865 38.09830 1 0 A - 16.75767 13.70000 330.30125 37.77339 1 0 A - 16.77168 13.76000 330.57735 37.80496 1 0 A - 16.78568 13.82000 330.85334 37.83652 1 0 A - 16.79968 13.88000 331.12922 37.86807 1 0 A - 16.81367 13.94000 331.40500 37.89961 1 0 A - 16.82765 14.00000 331.68066 37.93114 1 0 A - 16.86159 14.00000 261.87183 36.95938 1 0 A - 17.14071 15.20000 266.20671 37.57118 1 0 A - 17.41764 16.40000 270.50763 38.17819 1 0 A - 17.69242 17.60000 274.77521 38.78050 1 0 A - 17.96511 18.80000 279.01022 39.37821 1 0 A - 18.23575 20.00000 283.21350 39.97144 1 0 A + 9.00713 0.00000 290.03969 33.21066 1 0 A + 9.23073 1.33333 297.24002 34.03513 1 0 A + 9.45369 2.66667 304.41958 34.85722 1 0 A + 9.67565 4.00000 311.56694 35.67562 1 0 A + 9.89633 5.33333 318.67320 36.48931 1 0 A + 10.11553 6.66667 325.73164 37.29753 1 0 A + 14.98329 6.66667 305.79448 35.14877 1 0 A + 15.30555 8.00000 312.37141 35.90474 1 0 A + 15.62522 9.33333 318.89570 36.65466 1 0 A + 15.94222 10.66667 325.36536 37.39830 1 0 A + 16.25649 12.00000 331.77933 38.13554 1 0 A + 16.56802 13.33333 338.13730 38.86634 1 0 A + 16.70133 13.33333 266.11835 36.71517 1 0 A + 17.01261 14.66667 271.07828 37.39947 1 0 A + 17.32117 16.00000 275.99491 38.07780 1 0 A + 17.62707 17.33333 280.86904 38.75026 1 0 A + 17.93036 18.66667 285.70171 39.41700 1 0 A + 18.23112 20.00000 290.49407 40.07818 1 0 A 18.27484 20.00000 251.81796 38.14470 1 0 A 18.57387 21.33333 255.93841 38.76885 1 0 A 18.87052 22.66667 260.02615 39.38805 1 0 A @@ -3851,97 +2732,97 @@ Status character 20.34459 29.33333 274.89994 40.70486 1 0 A 20.62911 30.66667 278.74444 41.27412 1 0 A 20.91184 32.00000 282.56473 41.83980 1 0 A - 21.19286 33.33333 286.36185 42.40204 1 0 A - 21.21810 33.33333 282.74869 41.00282 1 0 A - 21.49781 34.66667 286.47601 41.54334 1 0 A - 21.77595 36.00000 290.18241 42.08082 1 0 A - 22.05258 37.33333 293.86879 42.61540 1 0 A - 24.79480 38.66667 297.53605 43.14721 110 0 - - 27.42480 40.00000 301.18503 43.67637 110 0 - - 32.12674 40.00000 404.17007 38.62737 110 0 - - 32.91271 41.20000 405.11692 38.71786 110 0 - - 33.64211 42.40000 406.04557 38.80661 110 0 - - 34.31758 43.60000 406.95675 38.89369 110 0 - - 34.94175 44.80000 407.85117 38.97918 110 0 - - 35.51726 46.00000 408.72951 39.06312 110 0 - - 34.73520 46.00000 448.39909 38.28107 110 0 - - 35.26302 47.20000 449.34577 38.36189 110 0 - - 35.74733 48.40000 450.27623 38.44132 110 0 - - 36.19057 49.60000 451.19116 38.51943 110 0 - - 36.59521 50.80000 452.09117 38.59627 110 0 - - 36.96369 52.00000 452.97691 38.67189 110 0 - - 36.29154 52.00000 456.46964 37.99974 110 0 - - 36.62498 53.20000 457.34841 38.07289 110 0 - - 36.92696 54.40000 458.21397 38.14495 110 0 - - 37.19966 55.60000 459.06688 38.21595 110 0 - - 37.44530 56.80000 459.90766 38.28594 110 0 - - 37.66606 58.00000 460.73683 38.35497 110 0 - - 37.27219 58.00000 460.01546 37.96110 110 0 - - 37.34039 58.40000 460.28893 37.98366 110 0 - - 37.40613 58.80000 460.56118 38.00613 110 0 - - 37.46950 59.20000 460.83223 38.02850 110 0 - - 37.53056 59.60000 461.10211 38.05077 110 0 - - 37.58939 60.00000 461.37082 38.07294 110 0 - - 53.82000 60.00000 563.01047 30.66707 110 10 - - 53.18097 61.33333 572.33108 31.17476 110 9 - - 52.33932 62.66667 581.63689 31.68165 110 9 - - 51.33269 64.00000 590.92862 32.18777 110 9 - - 50.19870 65.33333 600.20694 32.69315 110 8 - - 48.97501 66.66667 609.47251 33.19785 110 8 - - 47.39104 66.66667 636.16438 32.59261 110 7 - - 46.08765 68.00000 645.82308 33.08746 110 7 - - 44.75093 69.33333 655.46975 33.58169 110 7 - - 43.40081 70.66667 665.10499 34.07533 110 7 - - 42.05724 72.00000 674.72937 34.56842 110 6 - - 40.74015 73.33333 684.34344 35.06097 110 6 - - 40.40301 73.33333 651.65478 34.57362 110 6 - - 39.12456 74.66667 660.80030 35.05884 110 6 - - 37.89795 76.00000 669.93699 35.54359 110 6 - - 36.73048 77.33333 679.06530 36.02789 110 5 - - 35.62945 78.66667 688.18567 36.51177 110 0 - - 35.00281 80.00000 697.29852 36.99526 110 0 - - 34.65490 80.00000 698.28794 36.64735 110 0 - - 34.80091 81.00000 705.12758 37.00631 110 0 - - 34.94060 82.00000 711.96338 37.36506 110 0 - - 35.07609 83.00000 718.79549 37.72362 110 0 - - 35.20951 84.00000 725.62407 38.08200 110 0 - - 35.34299 85.00000 732.44926 38.44020 110 0 - - 35.09586 85.00000 733.36034 38.19306 110 0 - - 35.22898 86.00000 740.19078 38.54879 110 0 - - 35.36511 87.00000 747.01812 38.90435 110 0 - - 35.50517 88.00000 753.84248 39.25976 110 0 - - 35.65006 89.00000 760.66400 39.61502 110 0 - - 35.80071 90.00000 767.48280 39.97014 110 0 - - 27.63874 90.00000 1154.60935 31.80818 110 0 - - 27.74104 91.20000 1166.91415 32.14716 110 0 - - 27.85289 92.40000 1179.21363 32.48600 110 0 - - 27.97448 93.60000 1191.50808 32.82469 110 0 - - 28.10598 94.80000 1203.79779 33.16326 110 0 - - 28.24759 96.00000 1216.08302 33.50171 110 0 - - 28.00942 96.00000 1312.04930 33.26354 110 0 - - 28.15870 97.20000 1325.29946 33.59946 110 0 - - 28.31766 98.40000 1338.54534 33.93527 110 0 - - 28.48583 99.60000 1351.78720 34.27098 110 0 - - 28.66275 100.80000 1365.02528 34.60660 110 0 - - 28.84796 102.00000 1378.25981 34.94213 110 0 - - 28.65128 102.00000 1368.67011 34.74545 110 0 - - 28.84235 103.20000 1381.80927 35.07900 110 0 - - 29.04045 104.40000 1394.94536 35.41248 110 0 - - 29.24488 105.60000 1408.07858 35.74588 110 0 - - 29.45497 106.80000 1421.20913 36.07922 110 0 - - 29.67002 108.00000 1434.33721 36.41249 110 0 - - 29.50834 108.00000 1428.66536 36.25082 110 0 - - 29.72615 109.20000 1441.73924 36.58256 110 0 - - 29.94752 110.40000 1454.81100 36.91424 110 0 - - 30.17185 111.60000 1467.88082 37.24587 110 0 - - 30.39854 112.80000 1480.94886 37.57746 110 0 - - 30.62698 114.00000 1494.01527 37.90900 110 0 - - 30.49486 114.00000 1433.20825 37.77689 110 0 - - 30.72330 115.20000 1445.74142 38.10724 110 0 - - 30.95254 116.40000 1458.27332 38.43756 110 0 - - 31.18232 117.60000 1470.80405 38.76785 110 0 - - 31.41239 118.80000 1483.33375 39.09811 110 0 - - 31.64248 120.00000 1495.86254 39.42835 110 0 - + 23.01742 33.33333 286.36185 42.40204 110 0 - + 21.61820 33.33333 282.74869 41.00282 110 0 - + 24.25613 34.66667 286.47601 41.54334 110 0 - + 26.72218 36.00000 290.18241 42.08082 110 0 - + 29.02417 37.33333 293.86879 42.61540 110 0 - + 31.16991 38.66667 297.53605 43.14721 110 0 - + 33.16719 40.00000 301.18503 43.67637 110 0 - + 34.49384 40.00000 404.27469 38.69751 110 0 - + 34.97358 41.00000 405.06523 38.77318 110 0 - + 35.42245 42.00000 405.84303 38.84763 110 0 - + 35.84179 43.00000 406.60852 38.92091 110 0 - + 36.23295 44.00000 407.36214 38.99304 110 0 - + 36.59729 45.00000 408.10427 39.06408 110 0 - + 35.92946 45.00000 437.84176 38.39625 110 0 - + 36.26711 46.00000 438.62607 38.46503 110 0 - + 36.58055 47.00000 439.39889 38.53280 110 0 - + 36.87101 48.00000 440.16063 38.59960 110 0 - + 37.13975 49.00000 440.91165 38.66546 110 0 - + 37.38798 50.00000 441.65234 38.73041 110 0 - + 36.79868 50.00000 455.54594 38.14111 110 0 - + 37.02666 51.00000 456.29964 38.20421 110 0 - + 37.23652 52.00000 457.04339 38.26648 110 0 - + 37.42936 53.00000 457.77756 38.32795 110 0 - + 37.60630 54.00000 458.50247 38.38864 110 0 - + 37.76844 55.00000 459.21846 38.44859 110 0 - + 37.25029 55.00000 458.16679 37.93044 110 0 - + 37.39793 56.00000 458.87254 37.98887 110 0 - + 37.53288 57.00000 459.57000 38.04661 110 0 - + 37.65611 58.00000 460.25947 38.10369 110 0 - + 37.76859 59.00000 460.94123 38.16013 110 0 - + 37.87129 60.00000 461.61555 38.21595 110 0 - + 54.18111 60.00000 563.01047 30.66707 110 10 - + 52.94709 61.33333 572.33108 31.17476 110 9 - + 51.59459 62.66667 581.63689 31.68165 110 9 - + 50.15492 64.00000 590.92862 32.18777 110 8 - + 48.65939 65.33333 600.20694 32.69315 110 8 - + 47.13930 66.66667 609.47251 33.19785 110 8 - + 45.55533 66.66667 636.16438 32.59261 110 7 - + 44.01437 68.00000 645.82308 33.08746 110 7 - + 42.49323 69.33333 655.46975 33.58169 110 6 - + 41.00654 70.66667 665.10499 34.07533 110 6 - + 39.56893 72.00000 674.72937 34.56842 110 6 - + 38.19501 73.33333 684.34344 35.06097 110 6 - + 37.85787 73.33333 651.65478 34.57362 110 6 - + 36.55472 74.66667 660.80030 35.05884 110 6 - + 35.33149 76.00000 669.93699 35.54359 110 0 - + 34.19175 77.33333 679.06530 36.02789 110 0 - + 33.13909 78.66667 688.18567 36.51177 110 0 - + 32.95167 80.00000 697.29852 36.99526 110 0 - + 32.60376 80.00000 698.28794 36.64735 110 0 - + 32.79279 81.00000 705.12758 37.00631 110 0 - + 32.98396 82.00000 711.96338 37.36506 110 0 - + 33.17824 83.00000 718.79549 37.72362 110 0 - + 33.37662 84.00000 725.62407 38.08200 110 0 - + 33.58007 85.00000 732.44926 38.44020 110 0 - + 33.33294 85.00000 733.36034 38.19306 110 0 - + 33.53999 86.00000 740.19078 38.54879 110 0 - + 33.75325 87.00000 747.01812 38.90435 110 0 - + 33.97294 88.00000 753.84248 39.25976 110 0 - + 34.19926 89.00000 760.66400 39.61502 110 0 - + 34.43243 90.00000 767.48280 39.97014 110 0 - + 26.27046 90.00000 1154.60935 31.80818 110 0 - + 26.47234 91.20000 1166.91415 32.14716 110 0 - + 26.68376 92.40000 1179.21363 32.48600 110 0 - + 26.90434 93.60000 1191.50808 32.82469 110 0 - + 27.13369 94.80000 1203.79779 33.16326 110 0 - + 27.37144 96.00000 1216.08302 33.50171 110 0 - + 27.13327 96.00000 1312.04930 33.26354 110 0 - + 27.37655 97.20000 1325.29946 33.59946 110 0 - + 27.62723 98.40000 1338.54534 33.93527 110 0 - + 27.88476 99.60000 1351.78720 34.27098 110 0 - + 28.14859 100.80000 1365.02528 34.60660 110 0 - + 28.41818 102.00000 1378.25981 34.94213 110 0 - + 28.22151 102.00000 1368.67011 34.74545 110 0 - + 28.49440 103.20000 1381.80927 35.07900 110 0 - + 28.77194 104.40000 1394.94536 35.41248 110 0 - + 29.05359 105.60000 1408.07858 35.74588 110 0 - + 29.33883 106.80000 1421.20913 36.07922 110 0 - + 29.62714 108.00000 1434.33721 36.41249 110 0 - + 29.46546 108.00000 1428.66536 36.25082 110 0 - + 29.75484 109.20000 1441.73924 36.58256 110 0 - + 30.04634 110.40000 1454.81100 36.91424 110 0 - + 30.33959 111.60000 1467.88082 37.24587 110 0 - + 30.63421 112.80000 1480.94886 37.57746 110 0 - + 30.92981 114.00000 1494.01527 37.90900 110 0 - + 30.79769 114.00000 1433.20825 37.77689 110 0 - + 31.09277 115.20000 1445.74142 38.10724 110 0 - + 31.38827 116.40000 1458.27332 38.43756 110 0 - + 31.68407 117.60000 1470.80405 38.76785 110 0 - + 31.98000 118.80000 1483.33375 39.09811 110 0 - + 32.27595 120.00000 1495.86254 39.42835 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3954,10 +2835,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 73.558 'Clay' - -6.00 71.622 'Peat' - -8.00 124.009 'Sand 1' - -11.00 87.968 'Sand 2' + 0.00 76.893 'Clay' + -6.00 73.603 'Peat' + -8.00 118.490 'Sand 1' + -11.00 87.128 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3972,12 +2853,12 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.10 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 2 passive +Soil profile [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Level top layer Excess pore top @@ -3994,9 +2875,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -2.10 0.00 0.00 15.00 16.00 1.98 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.1m à -2.73m' - -2.73 0.00 0.00 15.00 16.00 5.59 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.73m à -3.37m' - -3.37 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 0.00 0.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -4004,10 +2883,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -6 : Number of layers +4 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Layer Branch @@ -4016,11 +2895,9 @@ Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] 1 1 2000.00000 2000.00000 - 2 1 2000.00000 2000.00000 - 3 1 2000.00000 2000.00000 - 4 1 800.00000 800.00000 - 5 1 10000.00000 10000.00000 - 6 1 10000.00000 10000.00000 + 2 1 800.00000 800.00000 + 3 1 10000.00000 10000.00000 + 4 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -4028,7 +2905,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=31 +DataCount=21 [COLUMN INDICATION] Slide plane position Theta min @@ -4037,43 +2914,33 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.10000 0.00000 0.00000 0.00000 0.00000 - -2.40000 66.89700 0.00000 4.29567 0.00000 - -2.50000 67.02800 0.00000 6.22083 0.00000 - -2.60000 67.14300 0.00000 8.39221 0.00000 - -2.70000 67.24400 0.00000 10.80964 0.00000 - -2.73000 67.27300 0.00000 11.58283 0.00000 - -2.80000 67.23700 0.00000 14.82960 0.00000 - -2.90000 67.22200 0.00000 19.67713 0.00000 - -3.00000 65.77300 0.00000 24.86133 0.00000 - -3.10000 63.43600 0.00000 30.87366 0.00000 - -3.20000 61.19000 0.00000 38.07155 0.00000 - -3.37000 57.58500 0.00000 54.32637 0.00000 - -3.40000 56.97700 0.00000 58.04167 0.00000 - -4.00000 52.29600 0.00000 287.24880 0.00000 - -4.66667 77.84500 49.87400 368.58882 3.32912 - -5.33333 76.43000 47.33700 450.51727 13.12956 - -6.00000 75.29900 45.48200 540.70365 24.73917 - -6.60000 73.34300 44.28100 642.49012 37.99264 - -7.20000 73.64900 43.32900 806.48373 51.63558 - -7.80000 75.69000 41.25700 926.12593 65.32450 - -8.00000 75.57900 40.28000 961.24573 69.63570 - -8.66667 74.60100 37.28600 1124.51689 83.33558 - -9.33333 74.40200 34.65400 1374.76989 95.23677 - -10.00000 75.32200 32.33000 1588.28714 106.85099 - -10.50000 75.11100 30.76300 1768.32457 115.43155 - -11.00000 74.92400 29.32700 1965.67342 123.93332 - -11.60000 74.55700 27.75900 2380.80195 132.55863 - -12.20000 75.19500 26.33800 2973.72458 140.54102 - -12.80000 76.22200 25.04600 3467.87239 147.79553 - -13.40000 76.18700 23.86800 3983.74143 155.14598 - -14.00000 76.15800 22.79100 4538.64736 162.58551 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 66.76300 0.00000 27.82619 0.00000 + -3.33333 56.31100 0.00000 83.08400 0.00000 + -4.00000 78.62300 0.00000 328.23310 0.00000 + -4.66667 77.10300 48.99200 401.95123 0.55367 + -5.33333 75.87700 46.68600 483.75449 10.84444 + -6.00000 74.87200 44.98100 574.40631 22.80878 + -6.50000 74.52400 44.03500 657.82467 34.01135 + -7.00000 73.31300 43.25400 787.36004 45.47143 + -7.50000 75.60900 42.27300 913.80731 57.12501 + -8.00000 75.34400 39.80500 1002.75358 68.19765 + -8.66667 74.42500 36.87000 1168.03489 82.01150 + -9.33333 74.26500 34.28700 1421.22654 93.87709 + -10.00000 75.18000 32.00500 1638.99549 105.44700 + -10.50000 74.98700 30.46600 1821.12534 113.99058 + -11.00000 74.81400 29.05500 2020.59868 122.45313 + -11.60000 74.47800 27.51200 2439.67460 131.03314 + -12.20000 75.13100 26.11400 3037.74884 139.12882 + -12.80000 76.15700 24.84200 3537.83999 146.33215 + -13.40000 76.13100 23.68200 4057.99484 153.63432 + -14.00000 76.11000 22.62000 4617.19736 161.02264 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=30 +DataCount=20 [COLUMN INDICATION] Position Vertical stress @@ -4084,42 +2951,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.25000 0.90502 14.31890 0.00000 3.93377 0.00000 15.82161 - -2.45000 2.16182 19.25158 0.00000 3.75784 0.00000 8.90526 - -2.55000 2.82819 21.71377 0.00000 3.62926 0.00000 7.67762 - -2.65000 3.52707 24.17435 0.00000 3.48175 0.00000 6.85394 - -2.71500 4.00041 25.77308 0.00000 3.37872 0.00000 6.44261 - -2.76500 4.37515 46.38237 0.00000 3.29685 0.00000 10.60131 - -2.85000 5.03375 48.47530 0.00000 3.15453 0.00000 9.63005 - -2.95000 5.84300 51.84205 0.00000 2.98545 0.00000 8.87251 - -3.05000 6.68796 60.12326 0.00000 2.81827 0.00000 8.98978 - -3.15000 7.56597 71.97890 0.00000 2.65593 0.00000 9.51351 - -3.28500 8.79735 95.61660 0.00000 2.44798 0.00000 10.86880 - -3.38500 9.73813 123.84314 0.00000 2.30382 0.00000 12.71734 - -3.70000 12.80752 382.01188 0.00000 1.90940 0.00000 29.82715 - -4.33333 19.05766 122.01004 4.99368 1.36060 0.26203 6.40215 - -5.00000 25.20085 122.89267 14.70066 1.02268 0.58334 4.87653 - -5.66667 30.69190 135.27957 17.41442 0.82396 0.56739 4.40766 - -6.30000 33.86425 169.64412 22.08911 0.67125 0.65228 5.00953 - -6.90000 34.91242 273.32267 22.73823 0.65129 0.65129 7.82881 - -7.50000 35.69334 199.40367 22.81487 0.63919 0.63919 5.58658 - -7.90000 36.10597 175.59902 21.55603 0.59702 0.59702 4.86343 - -8.33333 39.14814 244.90674 20.54982 0.52492 0.52492 6.25590 - -9.00000 44.95591 375.37950 17.85177 0.40659 0.39710 8.34995 - -9.66667 50.68294 320.27587 17.42133 0.39183 0.34373 6.31920 - -10.25000 55.65589 360.07486 17.16112 0.38422 0.30834 6.46966 - -10.75000 59.90308 394.69771 17.00356 0.38020 0.28385 6.58894 - -11.30000 64.56763 691.88087 14.37551 0.30491 0.22264 10.71560 - -11.90000 69.65494 988.20439 13.30398 0.30215 0.19100 14.18714 - -12.50000 74.74652 823.57967 12.09086 0.30053 0.16176 11.01830 - -13.10000 79.84613 859.78174 12.25075 0.29968 0.15343 10.76798 - -13.70000 84.95607 924.84322 12.39922 0.29935 0.14595 10.88613 + -2.33333 2.05359 41.73928 0.00000 3.77699 0.00000 20.32500 + -3.00000 7.12304 82.88671 0.00000 2.73635 0.00000 11.63643 + -3.66667 13.46890 367.72366 0.00000 1.83734 0.00000 27.30169 + -4.33333 20.01750 110.57720 0.83051 1.29741 0.04149 5.52403 + -5.00000 26.06622 122.70489 15.43615 0.98592 0.59219 4.70743 + -5.66667 31.46188 135.97772 17.94651 0.80197 0.57042 4.32198 + -6.25000 34.46412 166.83673 22.40515 0.66262 0.65010 4.84088 + -6.75000 35.33654 259.07074 22.92017 0.64863 0.64863 7.33153 + -7.25000 36.01842 252.89454 23.30716 0.64709 0.64709 7.02126 + -7.75000 36.55823 177.89254 22.14526 0.60575 0.60575 4.86600 + -8.33333 39.72627 247.92197 20.72078 0.52159 0.52159 6.24076 + -9.00000 45.51908 379.78747 17.79838 0.40385 0.39101 8.34348 + -9.66667 51.23739 326.65343 17.35487 0.39019 0.33871 6.37529 + -10.25000 56.20615 364.25971 17.08717 0.38318 0.30401 6.48078 + -10.75000 60.45154 398.94667 16.92508 0.37951 0.27998 6.59945 + -11.30000 65.11544 698.45987 14.30003 0.30430 0.21961 10.72649 + -11.90000 70.20311 996.79040 13.49280 0.30176 0.19220 14.19866 + -12.50000 75.29582 833.48526 12.00555 0.30029 0.15945 11.06948 + -13.10000 80.39702 866.92475 12.17028 0.29954 0.15138 10.78305 + -13.70000 85.50884 932.00419 12.31386 0.29928 0.14401 10.89951 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4154,210 +3011,142 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.20000 0.00000 0.00000 -1 0 - - 0.00000 0.40000 0.00000 0.00000 -1 0 - - 0.00000 0.60000 0.00000 0.00000 -1 0 - - 0.00000 0.80000 0.00000 0.00000 -1 0 - - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00002 1.00000 0.00002 0.00000 202 100 P - 5.70090 1.60000 5.70090 1.41743 202 100 P - 11.43234 2.20000 11.43234 2.84245 202 100 P - 17.22421 2.80000 17.22421 4.28250 202 100 P - 23.10497 3.40000 23.10497 5.74465 202 100 P - 29.10113 4.00000 29.10113 7.23549 202 100 P - 16.37969 4.00000 16.37969 6.91191 202 100 P - 17.52150 4.20000 17.52150 7.39372 202 100 P - 18.67249 4.40000 18.67249 7.87942 202 100 P - 19.83312 4.60000 19.83312 8.36918 202 100 P - 21.00380 4.80000 21.00380 8.86319 202 100 P - 22.18491 5.00000 22.18491 9.36159 202 100 P - 19.12661 5.00000 19.12661 9.04126 202 100 P - 20.15422 5.20000 20.15422 9.52702 202 100 P - 21.19146 5.40000 21.19146 10.01733 202 100 P - 22.23859 5.60000 22.23859 10.51232 202 100 P - 23.29588 5.80000 23.29588 11.01210 202 100 P - 24.36355 6.00000 24.36355 11.51680 202 100 P - 21.74976 6.00000 21.74976 11.04872 202 100 P - 22.71235 6.20000 22.71235 11.53771 202 100 P - 23.68458 6.40000 23.68458 12.03160 202 100 P - 24.66659 6.60000 24.66659 12.53045 202 100 P - 25.65851 6.80000 25.65851 13.03434 202 100 P - 26.66047 7.00000 26.66047 13.54333 202 100 P - 25.06047 7.00000 25.06047 13.14253 202 100 P - 25.34487 7.06000 25.34487 13.29168 202 100 P - 25.63012 7.12000 25.63012 13.44128 202 100 P - 25.91624 7.18000 25.91624 13.59132 202 100 P - 26.20322 7.24000 26.20322 13.74183 202 100 P - 26.49106 7.30000 26.49106 13.89278 202 100 P - 43.59101 7.30000 43.59101 13.55615 202 100 P - 44.70172 7.44000 44.70172 13.90156 202 100 P - 45.82020 7.58000 45.82020 14.24939 202 100 P - 46.94648 7.72000 46.94648 14.59965 202 100 P - 48.08057 7.86000 48.08057 14.95233 202 100 P - 49.22247 8.00000 49.22247 15.30744 202 100 P - 44.71285 8.00000 44.71285 14.64666 202 100 P - 46.20699 8.20000 46.20699 15.13610 202 100 P - 47.71559 8.40000 47.71559 15.63027 202 100 P - 49.23861 8.60000 49.23861 16.12917 202 100 P - 50.77599 8.80000 50.77599 16.63277 202 100 P - 52.32762 9.00000 52.32762 17.14104 202 100 P - 48.21132 9.00000 48.21132 16.22230 202 100 P - 49.65394 9.20000 49.65394 16.70771 202 100 P - 51.10948 9.40000 51.10948 17.19748 202 100 P - 52.57780 9.60000 52.57780 17.69154 202 100 P - 54.05876 9.80000 54.05876 18.18986 202 100 P - 55.55217 10.00000 55.55217 18.69237 202 100 P - 56.28640 10.00000 56.28640 17.64564 202 100 P - 57.81200 10.20000 57.81200 18.12391 202 100 P - 59.34982 10.40000 59.34982 18.60601 202 100 P - 60.89967 10.60000 60.89967 19.09189 202 100 P - 62.46132 10.80000 62.46132 19.58146 202 100 P - 64.03451 11.00000 64.03451 20.07465 202 100 P - 67.76506 11.00000 67.76506 18.91831 202 100 P - 69.44187 11.20000 69.44187 19.38643 202 100 P - 71.13036 11.40000 71.13036 19.85781 202 100 P - 72.83024 11.60000 72.83024 20.33238 202 100 P - 74.54123 11.80000 74.54123 20.81004 202 100 P - 76.26301 12.00000 76.26301 21.29072 202 100 P - 87.12740 12.00000 87.12740 19.62368 202 100 P - 90.49870 12.34000 90.49870 20.38300 202 100 P - 93.90281 12.68000 93.90281 21.14971 202 100 P - 97.33789 13.02000 97.33789 21.92339 202 100 P - 100.80204 13.36000 100.80204 22.70362 202 100 P - 104.29336 13.70000 104.29336 23.48997 202 100 P - 121.09433 13.70000 122.03136 22.10665 110 99 - - 120.92911 13.76000 122.75539 22.23781 110 99 - - 120.76454 13.82000 123.48033 22.36914 110 98 - - 120.60060 13.88000 124.20617 22.50063 110 97 - - 120.43729 13.94000 124.93288 22.63228 110 96 - - 120.27462 14.00000 125.66047 22.76409 110 96 - - 116.37735 14.00000 294.72309 18.86681 110 39 - - 112.79855 15.20000 329.23602 21.07617 110 34 - - 109.45181 16.40000 364.32264 23.32226 110 30 - - 106.32605 17.60000 399.76365 25.59103 110 27 - - 103.41142 18.80000 435.35855 27.86965 110 24 - - 100.69953 20.00000 470.92996 30.14677 110 21 - - 92.03473 20.00000 101.08126 21.48197 110 91 - - 88.52677 21.33333 109.51922 23.27522 110 81 - - 85.25517 22.66667 117.87362 25.05071 110 72 - - 82.21217 24.00000 126.11514 26.80221 110 65 - - 79.39148 25.33333 134.22142 28.52497 110 59 - - 76.78814 26.66667 142.17627 30.21555 110 54 - - 69.28383 26.66667 108.29586 22.71124 110 64 - - 66.48169 28.00000 114.23141 23.95601 110 58 - - 63.89434 29.33333 120.03829 25.17380 110 53 - - 61.51570 30.66667 125.71422 26.36412 110 49 - - 59.34015 32.00000 131.25915 27.52698 110 45 - - 57.36243 33.33333 136.67474 28.66271 110 42 - - 51.79300 33.33333 123.53381 23.09328 110 42 - - 49.79195 34.66667 128.31452 23.98697 110 39 - - 47.98095 36.00000 132.98465 24.86000 110 36 - - 46.35264 37.33333 137.54849 25.71316 110 34 - - 44.89975 38.66667 142.01079 26.54734 110 32 - - 43.61505 40.00000 146.37657 27.36348 110 30 - - 28.79267 40.00000 166.36443 22.29204 110 17 - - 28.28091 41.20000 167.73554 22.47576 110 17 - - 27.81330 42.40000 169.02695 22.64880 110 16 - - 27.38786 43.60000 170.24299 22.81175 110 16 - - 27.00259 44.80000 171.38794 22.96517 110 16 - - 26.65549 46.00000 172.46601 23.10962 110 15 - - 25.96830 46.00000 269.52673 22.42244 110 10 - - 25.65330 47.20000 271.11336 22.55443 110 9 - - 25.37277 48.40000 272.60799 22.67877 110 9 - - 25.12482 49.60000 274.01656 22.79596 110 9 - - 24.90751 50.80000 275.34475 22.90645 110 9 - - 24.71890 52.00000 276.59797 23.01071 110 9 - - 24.29133 52.00000 197.37825 22.58313 110 12 - - 24.12766 53.20000 198.22273 22.67975 110 12 - - 23.98907 54.40000 199.02091 22.77108 110 12 - - 23.87377 55.60000 199.77608 22.85748 110 12 - - 23.77997 56.80000 200.49138 22.93932 110 12 - - 23.70585 58.00000 201.16976 23.01694 110 12 - - 22.18732 58.00000 175.12968 21.49841 110 13 - - 22.16503 58.40000 175.31982 21.52175 110 13 - - 22.14469 58.80000 175.50674 21.54470 110 13 - - 22.12626 59.20000 175.69053 21.56726 110 13 - - 22.10966 59.60000 175.87127 21.58945 110 13 - - 22.09483 60.00000 176.04904 21.61127 110 13 - - 25.04593 60.00000 226.45414 19.00149 110 11 - - 24.32039 61.33333 233.86305 19.62316 110 10 - - 23.84642 62.66667 241.23423 20.24166 110 10 - - 23.59688 64.00000 248.57105 20.85729 110 9 - - 23.54456 65.33333 255.87660 21.47029 110 9 - - 23.66228 66.66667 263.15376 22.08090 110 9 - - 18.68436 66.66667 351.23981 17.10298 110 5 - - 18.80957 68.00000 360.91856 17.57427 110 5 - - 19.06133 69.33333 370.56630 18.04405 110 5 - - 19.42255 70.66667 380.18608 18.51246 110 5 - - 19.87614 72.00000 389.78073 18.97966 110 5 - - 20.40500 73.33333 399.35286 19.44576 110 5 - - 19.69930 73.33333 302.22848 18.74005 110 7 - - 20.27129 74.66667 309.45740 19.18829 110 7 - - 20.89329 76.00000 316.67277 19.63569 110 7 - - 21.55599 77.33333 323.87616 20.08234 110 7 - - 22.25007 78.66667 331.06897 20.52834 110 7 - - 22.96622 80.00000 338.25253 20.97377 110 7 - - 22.55894 80.00000 346.30629 20.56649 110 7 - - 23.09915 81.00000 351.81677 20.89375 110 7 - - 23.64522 82.00000 357.32310 21.22076 110 7 - - 24.19509 83.00000 362.82575 21.54755 110 7 - - 24.74663 84.00000 368.32512 21.87415 110 7 - - 25.29778 85.00000 373.82163 22.20058 110 7 - - 25.06561 85.00000 380.71342 21.96841 110 7 - - 25.61108 86.00000 386.30873 22.29127 110 7 - - 26.15325 87.00000 391.90186 22.61402 110 7 - - 26.69124 88.00000 397.49314 22.93665 110 7 - - 27.22415 89.00000 403.08289 23.25920 110 7 - - 27.75111 90.00000 408.67140 23.58167 110 7 - - 23.08114 90.00000 664.62282 18.91171 110 3 - - 23.62811 91.20000 675.52711 19.22199 110 3 - - 24.16533 92.40000 686.42987 19.53222 110 4 - - 24.69265 93.60000 697.33174 19.84243 110 4 - - 25.20991 94.80000 708.23333 20.15263 110 4 - - 25.71697 96.00000 719.13521 20.46285 110 4 - - 25.53170 96.00000 952.11401 20.27758 110 3 - - 26.02576 97.20000 966.54883 20.58500 110 3 - - 26.51007 98.40000 980.98533 20.89246 110 3 - - 26.98513 99.60000 995.42409 21.19997 110 3 - - 27.45139 100.80000 1009.86561 21.50754 110 3 - - 27.90934 102.00000 1024.31039 21.81517 110 3 - - 27.79271 102.00000 795.52048 21.69854 110 3 - - 28.24126 103.20000 806.74174 22.00461 110 4 - - 28.68280 104.40000 817.96617 22.31077 110 4 - - 29.11802 105.60000 829.19407 22.61702 110 4 - - 29.54762 106.80000 840.42567 22.92337 110 4 - - 29.97231 108.00000 851.66123 23.22983 110 4 - - 29.90667 108.00000 832.31283 23.16419 110 4 - - 30.32630 109.20000 843.29719 23.46990 110 4 - - 30.74244 110.40000 854.28579 23.77572 110 4 - - 31.15569 111.60000 865.27881 24.08167 110 4 - - 31.56666 112.80000 876.27638 24.38774 110 4 - - 31.97597 114.00000 887.27864 24.69395 110 4 - - 31.94826 114.00000 897.01427 24.66623 110 4 - - 32.35617 115.20000 908.14212 24.97223 110 4 - - 32.76338 116.40000 919.27493 25.27836 110 4 - - 33.17016 117.60000 930.41280 25.58463 110 4 - - 33.57677 118.80000 941.55580 25.89104 110 4 - - 33.98346 120.00000 952.70400 26.19760 110 4 - + 0.00002 0.00000 0.00002 0.00000 202 100 P + 16.33179 1.33333 16.33179 3.03493 202 100 P + 33.08474 2.66667 33.08474 6.14813 202 100 P + 50.63394 4.00000 50.63394 9.40929 202 100 P + 69.27111 5.33333 69.27111 12.87262 202 100 P + 89.18217 6.66667 89.18217 16.57269 202 100 P + 51.05842 6.66667 51.05842 12.00657 202 100 P + 63.22988 8.00000 63.22988 14.86874 202 100 P + 76.15755 9.33333 76.15755 17.90873 202 100 P + 89.77828 10.66667 89.77828 21.11169 202 100 P + 103.99537 12.00000 103.99537 24.45490 202 100 P + 102.78658 13.33333 118.69251 27.91098 110 87 - + 93.61656 13.33333 278.47939 18.74096 110 34 - + 90.78576 14.66667 313.79809 21.11782 110 29 - + 88.20899 16.00000 349.66697 23.53171 110 25 - + 85.86991 17.33333 385.82048 25.96475 110 22 - + 83.75413 18.66667 422.02265 28.40106 110 20 - + 81.84958 20.00000 458.07164 30.82707 110 18 - + 72.79063 20.00000 92.68290 21.76812 110 79 - + 70.37996 21.33333 99.91205 23.46601 110 70 - + 68.16720 22.66667 107.04953 25.14236 110 64 - + 66.14451 24.00000 114.07462 26.79232 110 58 - + 64.30532 25.33333 120.97209 28.41231 110 53 - + 62.64417 26.66667 127.73144 29.99985 110 49 - + 55.44165 26.66667 108.84935 22.79734 110 51 - + 53.58027 28.00000 114.48622 23.97792 110 47 - + 51.89349 29.33333 119.99701 25.13209 110 43 - + 50.37521 30.66667 125.38119 26.25975 110 40 - + 49.01968 32.00000 130.63997 27.36115 110 38 - + 47.82145 33.33333 135.77596 28.43683 110 35 - + 42.51579 33.33333 124.65858 23.13117 110 34 - + 41.27307 34.66667 129.26467 23.98585 110 32 - + 40.17964 36.00000 133.76543 24.82100 110 30 - + 39.22867 37.33333 138.16542 25.63744 110 28 - + 38.41340 38.66667 142.46953 26.43610 110 27 - + 37.72707 40.00000 146.68281 27.21790 110 26 - + 26.69210 40.00000 164.29358 22.48843 110 16 - + 26.43253 41.00000 165.34920 22.63293 110 16 - + 26.19555 42.00000 166.35326 22.77036 110 16 - + 25.98019 43.00000 167.30820 22.90107 110 16 - + 25.78548 44.00000 168.21639 23.02539 110 15 - + 25.61041 45.00000 169.08015 23.14362 110 15 - + 25.12168 45.00000 256.07227 22.65489 110 10 - + 24.96290 46.00000 257.31661 22.76498 110 10 - + 24.82197 47.00000 258.50047 22.86972 110 10 - + 24.69798 48.00000 259.62709 22.96939 110 10 - + 24.58999 49.00000 260.69962 23.06428 110 9 - + 24.49708 50.00000 261.72107 23.15465 110 9 - + 24.44227 50.00000 250.64502 23.09984 110 10 - + 24.36329 51.00000 251.57711 23.18574 110 10 - + 24.29760 52.00000 252.46573 23.26764 110 10 - + 24.24436 53.00000 253.31343 23.34577 110 10 - + 24.20270 54.00000 254.12267 23.42035 110 10 - + 24.17175 55.00000 254.89577 23.49160 110 9 - + 22.67108 55.00000 176.65274 21.99092 110 13 - + 22.64563 56.00000 177.16502 22.05470 110 13 - + 22.62945 57.00000 177.65525 22.11572 110 13 - + 22.62176 58.00000 178.12483 22.17418 110 13 - + 22.62177 59.00000 178.57509 22.23023 110 13 - + 22.62870 60.00000 179.00728 22.28403 110 13 - + 23.49616 60.00000 229.58071 19.18786 110 10 - + 23.48768 61.33333 236.94314 19.80319 110 10 - + 23.63529 62.66667 244.27047 20.41559 110 10 - + 23.91880 64.00000 251.56586 21.02533 110 10 - + 24.31798 65.33333 258.83223 21.63263 110 9 - + 24.81261 66.66667 266.07231 22.23774 110 9 - + 19.79291 66.66667 355.72105 17.21804 110 6 - + 20.22847 68.00000 365.36876 17.68502 110 6 - + 20.72923 69.33333 374.98780 18.15061 110 6 - + 21.28404 70.66667 384.58104 18.61495 110 6 - + 21.88173 72.00000 394.15114 19.07818 110 6 - + 22.51113 73.33333 403.70056 19.54040 110 6 - + 21.85005 73.33333 308.46965 18.87932 110 7 - + 22.48596 74.66667 315.75233 19.32504 110 7 - + 23.13852 76.00000 323.02254 19.77000 110 7 - + 23.80258 77.33333 330.28174 20.21429 110 7 - + 24.47304 78.66667 337.53127 20.65798 110 7 - + 25.14475 80.00000 344.77240 21.10116 110 7 - + 24.76561 80.00000 350.47702 20.72202 110 7 - + 25.26166 81.00000 355.99282 21.04814 110 7 - + 25.75515 82.00000 361.50491 21.37405 110 7 - + 26.24514 83.00000 367.01374 21.69976 110 7 - + 26.73068 84.00000 372.51969 22.02530 110 7 - + 27.21081 85.00000 378.02315 22.35069 110 7 - + 26.99665 85.00000 384.94492 22.13652 110 7 - + 27.46747 86.00000 390.54697 22.45867 110 7 - + 27.93181 87.00000 396.14717 22.78072 110 7 - + 28.38949 88.00000 401.74583 23.10267 110 7 - + 28.84031 89.00000 407.34326 23.42456 110 7 - + 29.28410 90.00000 412.93972 23.74638 110 7 - + 24.57855 90.00000 671.17643 19.04083 110 4 - + 25.02527 91.20000 682.09047 19.35046 110 4 - + 25.46229 92.40000 693.00352 19.66005 110 4 - + 25.88999 93.60000 703.91620 19.96964 110 4 - + 26.30880 94.80000 714.82907 20.27923 110 4 - + 26.71911 96.00000 725.74265 20.58884 110 4 - + 26.54700 96.00000 960.66642 20.41673 110 3 - + 26.94669 97.20000 975.11432 20.72379 110 3 - + 27.33893 98.40000 989.56439 21.03089 110 3 - + 27.72427 99.60000 1004.01715 21.33805 110 3 - + 28.10329 100.80000 1018.47309 21.64528 110 3 - + 28.47653 102.00000 1032.93265 21.95258 110 3 - + 28.36975 102.00000 805.28871 21.84581 110 4 - + 28.73630 103.20000 816.56473 22.15170 110 4 - + 29.09823 104.40000 827.84417 22.45769 110 4 - + 29.45607 105.60000 839.12730 22.76378 110 4 - + 29.81036 106.80000 850.41437 23.06997 110 4 - + 30.16164 108.00000 861.70557 23.37628 110 4 - + 30.10340 108.00000 839.40833 23.31805 110 4 - + 30.45142 109.20000 850.41159 23.62371 110 4 - + 30.79738 110.40000 861.41923 23.92949 110 4 - + 31.14168 111.60000 872.43142 24.23540 110 4 - + 31.48469 112.80000 883.44828 24.54144 110 4 - + 31.82681 114.00000 894.46994 24.84761 110 4 - + 31.80466 114.00000 904.13058 24.82547 110 4 - + 32.14598 115.20000 915.27623 25.13150 110 4 - + 32.48697 116.40000 926.42692 25.43768 110 4 - + 32.82778 117.60000 937.58275 25.74399 110 4 - + 33.16856 118.80000 948.74378 26.05045 110 3 - + 33.50946 120.00000 959.91006 26.35705 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -2.10 11.611 'Clay -2.1m à -2.73m' - -2.73 42.756 'Clay -2.73m à -3.37m' - -3.37 197.961 'Clay' - -6.00 50.553 'Peat' - -8.00 68.194 'Sand 1' - -11.00 86.379 'Sand 2' + 0.00 247.037 'Clay' + -6.00 48.901 'Peat' + -8.00 72.700 'Sand 1' + -11.00 87.654 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4365,7 +3154,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4395,88 +3184,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.02000 - -2.04000 - -2.06000 - -2.08000 - -2.10000 - -2.10000 - -2.16000 - -2.22000 - -2.28000 - -2.34000 + -2.13333 + -2.26667 -2.40000 - -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 - -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 + -2.93333 + -3.06667 -3.20000 - -3.20000 - -3.23400 - -3.26800 - -3.30200 - -3.33600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4497,28 +3220,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 - -6.60000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 - -7.80000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -4601,7 +3324,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 57.92591 210000000.000 1 2 0 'anchor' + -1.50000 46.04222 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -4662,22 +3385,22 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 45.31 : Percentage mobilized resistance left - 3.16 : Percentage mobilized resistance right - 614.32 : Effective left - 292.33 : Effective right + 31.98 : Percentage mobilized resistance left + 2.97 : Percentage mobilized resistance right + 609.24 : Effective left + 275.12 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1355.75 : Max effective resistance left + 1905.03 : Max effective resistance left 9257.94 : Max effective resistance right --11931.70 : Max moment left --77949.42 : Max moment right --5120.96 : Max mobilized moment left --1610.18 : Max mobilized moment right - 333.27 : Vertical force left - 122.70 : Vertical force right - 42.9 : Max mobilized moment percentage left - 2.1 : Max mobilized moment percentage right +-16865.06 : Max moment left +-77949.37 : Max moment right +-4895.38 : Max mobilized moment left +-1379.60 : Max mobilized moment right + 325.67 : Vertical force left + 113.00 : Vertical force right + 29.0 : Max mobilized moment percentage left + 1.8 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -4685,223 +3408,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00334 0.02292 -100.57813 - 0.33995 6.94512 -100.39724 - 1.40612 14.48055 -100.21642 - 3.25650 22.62920 -100.03611 - 5.94084 31.04430 -99.85677 - 9.45341 39.10083 -99.67885 - 9.46119 39.18421 -99.67885 - 13.75590 46.60372 -99.50299 - 18.76068 53.38567 -99.33046 - 24.41201 59.53691 -99.16260 - 30.64785 65.08161 -99.00078 - 37.40866 70.03603 -98.84635 - 37.40866 70.03653 -98.84635 - 44.63538 74.39911 -98.70081 - 52.26871 78.16839 -98.56607 - 60.24925 81.34333 -98.44404 - 68.51754 83.92337 -98.33663 - 77.01409 85.90845 -98.24578 - 77.02083 28.14909 -98.24578 - 79.91022 29.53961 -98.17325 - 82.90896 30.33636 -98.12004 - 85.96794 30.84649 -98.08688 - 89.07944 31.39188 -98.07452 - 92.24800 31.98775 -98.08369 - 92.24103 -168.07217 -98.08369 - 88.88085 -167.94554 -98.08817 - 85.52324 -167.81411 -98.09350 - 82.16832 -167.67787 -98.09967 - 78.81616 -167.53682 -98.10662 - 75.46687 -167.39096 -98.11434 - 75.46698 -167.39279 -98.11434 - 65.43719 -166.92636 -98.14175 - 55.43668 -166.41667 -98.17485 - 45.46805 -165.86371 -98.21277 - 35.53390 -165.26748 -98.25466 - 25.63682 -164.62798 -98.29963 - 25.63678 -164.62848 -98.29963 - 22.34643 -164.40569 -98.31516 - 19.06058 -164.17810 -98.33091 - 15.77933 -163.94570 -98.34684 - 12.50278 -163.70850 -98.36292 - 9.23103 -163.46648 -98.37913 - 9.23103 -163.46648 -98.37913 - 5.96416 -163.21966 -98.39542 - 2.70227 -162.96803 -98.41177 - -0.55453 -162.71160 -98.42815 - -3.80616 -162.45035 -98.44452 - -7.05252 -162.18430 -98.46085 - -7.05252 -162.18430 -98.46085 - -10.29350 -161.91344 -98.47712 - -13.52902 -161.63777 -98.49329 - -16.75898 -161.35729 -98.50932 - -19.98328 -161.07201 -98.52520 - -23.20183 -160.78192 -98.54088 - -23.20183 -160.78192 -98.54088 - -24.16626 -160.69395 -98.54554 - -25.13015 -160.60555 -98.55018 - -26.09352 -160.51672 -98.55480 - -27.05635 -160.42746 -98.55940 - -28.01865 -160.33776 -98.56397 - -28.01865 -160.33776 -98.56397 - -30.26190 -160.12679 -98.57454 - -32.50219 -159.91346 -98.58497 - -34.73947 -159.69778 -98.59525 - -36.97372 -159.47974 -98.60536 - -39.20489 -159.25934 -98.61530 - -39.20489 -159.25934 -98.61530 - -42.38690 -158.94040 -98.62917 - -45.56248 -158.61666 -98.64263 - -48.73153 -158.28810 -98.65565 - -51.89397 -157.95474 -98.66820 - -55.04969 -157.61657 -98.68024 - -55.04969 -157.61669 -98.68024 - -58.19860 -157.27372 -98.69176 - -61.34060 -156.92593 -98.70271 - -64.47560 -156.57334 -98.71307 - -67.60350 -156.21594 -98.72280 - -70.72421 -155.85373 -98.73188 - -70.72421 -155.85385 -98.73188 - -73.83763 -155.48684 -98.74028 - -76.94365 -155.11501 -98.74797 - -80.04220 -154.73838 -98.75491 - -83.13316 -154.35694 -98.76107 - -86.21644 -153.97069 -98.76643 - -86.21644 -153.97069 -98.76643 - -89.29195 -153.57964 -98.77096 - -92.35959 -153.18377 -98.77463 - -95.41927 -152.78310 -98.77740 - -98.47089 -152.37762 -98.77925 - -101.51434 -151.96734 -98.78015 - -101.51434 -151.96733 -98.78015 - -106.66923 -151.25881 -98.77941 - -111.79979 -150.53640 -98.77568 - -116.90555 -149.80009 -98.76884 - -121.98603 -149.04988 -98.75872 - -127.04078 -148.28578 -98.74520 - -127.04078 -148.28578 -98.74520 - -127.93009 -148.14950 -98.74245 - -128.81857 -148.01278 -98.73959 - -129.70624 -147.87563 -98.73661 - -130.59308 -147.73805 -98.73353 - -131.47909 -147.60004 -98.73033 - -131.47930 -147.59684 -98.73033 - -149.02158 -144.74570 -98.64118 - -166.21134 -141.72147 -98.50015 - -183.02781 -138.52416 -98.30138 - -199.45021 -135.15377 -98.03903 - -215.45779 -131.61030 -97.70725 - -215.45786 -31.61175 -97.70725 - -219.39912 -27.47156 -97.25110 - -222.77412 -23.11770 -96.70065 - -225.55435 -18.55016 -96.05470 - -227.71133 -13.76894 -95.31207 - -229.21657 -8.77403 -94.47156 - -229.21691 -8.76224 -94.47156 - -230.04034 -3.55366 -93.53219 - -230.15506 1.86860 -92.49394 - -229.53255 7.50454 -91.35707 - -228.14435 13.35415 -90.12187 - -225.96195 19.41745 -88.78861 - -225.96015 19.42074 -88.78861 - -222.95462 25.69772 -87.35780 - -219.09793 32.18837 -85.83114 - -214.36156 38.89271 -84.21069 - -208.71704 45.81072 -82.49847 - -202.13587 52.94242 -80.69653 - -202.13943 52.92026 -80.69653 - -195.38550 59.66999 -79.00003 - -187.81271 66.56784 -77.23550 - -179.40329 73.61381 -75.40585 - -170.13947 80.80789 -73.51404 - -160.00347 88.15010 -71.56298 - -160.00342 88.15457 -71.56298 - -148.97693 95.64489 -69.55584 - -137.04272 103.28333 -67.49681 - -124.18301 111.06989 -65.39038 - -110.38002 119.00457 -63.24102 - -95.61599 127.08736 -61.05322 - -95.61594 127.09063 -61.05322 - -79.87269 135.32155 -58.83171 - -63.13285 143.70058 -56.58237 - -45.37863 152.22773 -54.31137 - -26.59227 160.90300 -52.02491 - -6.75598 169.72639 -49.72916 - -6.75585 169.72768 -49.72916 - 0.09184 172.63873 -48.96297 - 7.05378 175.44015 -48.19677 - 14.12559 178.13167 -47.43085 - 21.30285 180.71285 -46.66549 - 28.58114 183.18306 -45.90094 - 28.57990 183.19485 -45.90094 - 53.44682 189.39932 -43.36197 - 78.97594 193.11877 -40.84601 - 104.83200 194.29210 -38.36410 - 130.67082 192.84768 -35.92725 - 156.13832 188.70957 -33.54650 - 156.13669 188.74068 -33.54650 - 178.95211 153.96905 -31.23388 - 197.32022 122.01250 -28.99824 - 211.60877 92.75596 -26.84581 - 222.16973 66.07766 -24.78282 - 229.33837 41.84925 -22.81550 - 229.36117 41.48905 -22.81550 - 233.64223 22.53816 -20.94837 - 235.39574 4.13608 -19.18168 - 234.84133 -12.10281 -17.51525 - 232.25856 -26.31141 -15.94892 - 227.90932 -38.62171 -14.48252 - 227.90754 -38.61882 -14.48252 - 223.65876 -46.20505 -13.44763 - 218.69599 -52.90758 -12.46681 - 213.10496 -58.77885 -11.53871 - 206.96623 -63.86986 -10.66200 - 200.35534 -68.23024 -9.83534 - 200.35546 -68.21018 -9.83534 - 193.35049 -71.77972 -9.05723 - 186.02064 -74.71562 -8.32586 - 178.42700 -77.06255 -7.63940 - 170.62633 -78.86339 -6.99602 - 162.67116 -80.15917 -6.39390 - 162.67066 -80.13787 -6.39390 - 152.98443 -81.19593 -5.72312 - 143.20721 -81.66483 -5.10559 - 133.40603 -81.60480 -4.53790 - 123.64096 -81.07210 -4.01665 - 113.96555 -80.11893 -3.53844 - 113.96588 -80.09955 -3.53844 - 104.43494 -78.69177 -3.09986 - 95.09284 -76.95942 -2.69761 - 85.97604 -74.94298 -2.32853 - 77.11641 -72.67920 -1.98946 - 68.54161 -70.20110 -1.67723 - 68.54956 -70.29146 -1.67723 - 60.29709 -67.21005 -1.38871 - 52.43114 -63.82903 -1.12116 - 44.99425 -60.04492 -0.87200 - 38.03743 -55.83406 -0.63864 - 31.60978 -51.23051 -0.41853 - 31.60468 -51.21324 -0.41853 - 25.72328 -46.74458 -0.20918 - 20.40134 -41.89214 -0.00876 - 15.67935 -36.78509 0.18436 - 11.57802 -31.55059 0.37183 - 8.11189 -26.19890 0.55528 - 8.11512 -26.17662 0.55528 - 5.26076 -21.36098 0.73618 - 2.99690 -16.33504 0.91527 - 1.34873 -11.09957 1.09311 - 0.34138 -5.65473 1.27029 - -0.00002 -0.00009 1.44736 + -0.00533 0.04265 -76.06581 + 0.33993 6.96486 -75.78417 + 1.40808 14.50028 -75.50259 + 3.25659 22.53364 -75.22152 + 5.91265 30.50235 -74.94141 + 9.33999 37.95898 -74.66272 + 9.34531 38.00183 -74.66272 + 13.49697 44.94603 -74.38608 + 18.31741 51.37727 -74.11269 + 23.75556 57.30240 -73.84386 + 29.76183 62.74564 -73.58090 + 36.28916 67.72327 -73.32513 + 36.28944 67.72086 -73.32513 + 43.29095 72.23138 -73.07798 + 50.72010 76.27339 -72.84129 + 58.52998 79.84591 -72.61694 + 66.67362 82.94847 -72.40682 + 75.10401 85.58108 -72.21280 + 75.10662 39.69449 -72.21280 + 79.18814 41.85764 -72.03668 + 83.46253 43.55220 -71.87970 + 87.88300 44.77932 -71.74293 + 92.40357 45.56151 -71.62743 + 96.98909 46.15738 -71.53425 + 96.98274 -153.90998 -71.53425 + 76.52137 -152.97499 -71.44470 + 56.19891 -151.82631 -71.38802 + 36.04385 -150.46396 -71.35555 + 16.08468 -148.88793 -71.33865 + -3.65010 -147.09821 -71.32866 + -3.64909 -147.10691 -71.32866 + -23.13216 -145.10352 -71.31697 + -42.33387 -142.88645 -71.29532 + -61.22572 -140.45570 -71.25560 + -79.77923 -137.81127 -71.18970 + -97.96590 -134.95317 -71.08951 + -97.97274 -135.05743 -71.08951 + -115.77799 -131.98564 -70.94701 + -133.15942 -128.70018 -70.75474 + -150.08854 -125.20103 -70.50542 + -166.53686 -121.48820 -70.19179 + -182.47589 -117.56170 -69.80659 + -182.47588 -17.54947 -69.80659 + -184.54217 -13.40929 -69.34364 + -186.04219 -9.05543 -68.80135 + -186.94745 -4.48788 -68.17936 + -187.22946 0.29334 -67.47728 + -186.85973 5.28824 -66.69472 + -186.85940 5.29825 -66.69472 + -185.80811 10.50683 -65.83149 + -184.04809 15.92909 -64.88839 + -181.55085 21.56503 -63.86649 + -178.28791 27.41465 -62.76687 + -174.23078 33.47794 -61.59062 + -174.23357 33.44989 -61.59062 + -169.35749 39.72687 -60.33905 + -163.63024 46.21752 -59.01467 + -157.02332 52.92186 -57.62032 + -149.50825 59.83987 -56.15884 + -141.05653 66.97157 -54.63310 + -141.05566 66.98110 -54.63310 + -134.07768 72.59558 -53.44853 + -126.53312 78.31293 -52.23154 + -118.41167 84.13314 -50.98409 + -109.70306 90.05621 -49.70815 + -100.39700 96.08214 -48.40568 + -100.39698 96.08418 -48.40568 + -90.48298 102.21297 -47.07876 + -79.95096 108.44462 -45.72996 + -68.79063 114.77913 -44.36197 + -56.99170 121.21650 -42.97749 + -44.54390 127.75673 -41.57922 + -44.54283 127.74982 -41.57922 + -31.45881 133.72504 -40.17003 + -17.83911 138.46148 -38.75324 + -3.80323 142.09638 -37.33222 + 10.56343 145.22923 -35.91037 + 25.24096 148.31249 -34.49105 + 25.23991 148.30495 -34.49105 + 40.23227 151.53868 -33.07773 + 55.54677 154.74620 -31.67414 + 71.18035 157.91868 -30.28403 + 87.12904 161.04699 -28.91121 + 103.38797 164.12202 -27.55944 + 103.38589 164.14093 -27.55944 + 123.38240 136.15196 -25.79744 + 139.78337 110.19455 -24.08854 + 152.85426 86.18659 -22.43842 + 162.84920 64.04031 -20.85275 + 170.01026 43.66229 -19.33722 + 170.01021 43.70220 -19.33722 + 174.67271 26.53271 -17.89609 + 177.16266 11.09711 -16.53006 + 177.70457 -2.70426 -15.23941 + 176.50974 -14.97065 -14.02443 + 173.77622 -25.80107 -12.88539 + 173.77662 -25.76459 -12.88539 + 169.77364 -34.05173 -11.82173 + 164.75498 -41.01557 -10.83103 + 158.89082 -46.74939 -9.91080 + 152.33915 -51.34303 -9.05857 + 145.24618 -54.88299 -8.27186 + 145.24626 -54.88193 -8.27186 + 139.67411 -56.49105 -7.72312 + 133.96148 -57.69722 -7.20814 + 128.14703 -58.53260 -6.72552 + 122.26629 -59.02794 -6.27386 + 116.35180 -59.21263 -5.85176 + 116.35190 -59.20114 -5.85176 + 110.44169 -58.95872 -5.45779 + 104.56860 -58.46306 -5.09051 + 98.75668 -57.73938 -4.74852 + 93.02752 -56.81156 -4.43042 + 87.40042 -55.70207 -4.13481 + 87.40019 -55.69086 -4.13481 + 80.80725 -54.15899 -3.80778 + 74.40916 -52.44888 -3.50887 + 68.22539 -50.59212 -3.23593 + 62.27176 -48.61773 -2.98680 + 56.56077 -46.55225 -2.75935 + 56.56096 -46.54273 -2.75935 + 51.10994 -44.29900 -2.55148 + 45.93086 -42.01377 -2.36139 + 41.02751 -39.70675 -2.18738 + 36.40141 -37.39565 -2.02773 + 32.05209 -35.09614 -1.88075 + 32.05442 -35.11046 -1.88075 + 27.97403 -32.90087 -1.74481 + 24.15818 -30.69196 -1.61859 + 20.61075 -28.41336 -1.50087 + 17.34311 -26.03145 -1.39041 + 14.36671 -23.56179 -1.28598 + 14.36589 -23.56245 -1.28598 + 11.66905 -21.36984 -1.18643 + 9.24051 -19.09255 -1.09094 + 7.08989 -16.73901 -0.99875 + 5.22593 -14.31593 -0.90912 + 3.65665 -11.82824 -0.82130 + 3.65675 -11.82680 -0.82130 + 2.36808 -9.63623 -0.73463 + 1.34760 -7.35723 -0.64877 + 0.60583 -4.99114 -0.56347 + 0.15318 -2.53871 -0.47848 + -0.00001 -0.00009 -0.39353 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4918,7 +3575,7 @@ Method Ka,K0,Kp 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil profile [TABLE] DataCount=4 [COLUMN INDICATION] @@ -4967,7 +3624,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4981,110 +3638,44 @@ Status character 66.15588 0.00000 66.15588 5.67442 202 100 P 72.28815 0.00000 72.28815 6.52558 202 100 P 78.42042 0.00000 78.42042 7.37675 202 100 P - 84.55270 0.00000 84.55270 8.22791 202 100 P - 83.74931 0.00000 90.68497 9.07907 110 92 - - 77.38122 0.00000 96.81724 9.93024 110 80 - - 77.38122 0.00000 96.81724 9.93024 110 80 - - 71.00900 0.00000 102.94951 10.78140 110 69 - - 64.63013 0.00000 109.08179 11.63256 110 59 - - 58.39470 0.00000 115.21406 12.48373 110 51 - - 52.49929 0.00000 121.34633 13.33489 110 43 - - 46.58909 0.00000 127.47860 14.18605 110 37 - - 46.58909 0.00000 127.47860 14.18605 110 37 - - 40.66254 0.00000 133.61087 15.03722 110 30 - - 34.72311 0.00000 139.74315 15.88838 110 25 - - 28.77569 0.00000 145.87542 16.73954 110 20 - - 22.82515 0.00000 152.00769 17.59071 110 15 - - 16.87637 0.00000 158.13996 18.44187 110 0 - - 16.87637 0.00000 158.13996 18.44187 110 0 - - 10.93386 0.00000 164.27224 19.29303 110 0 - - 5.00119 0.00000 170.40451 20.14419 110 0 - - 5.20143 0.00000 176.53678 20.99536 1 0 A + 82.24679 0.00000 84.55270 8.22791 110 97 - + 77.12737 0.00000 90.68497 9.07907 110 85 - + 72.00513 0.00000 96.81724 9.93024 110 74 - + 72.00513 0.00000 96.81724 9.93024 110 74 - + 66.87880 0.00000 102.94951 10.78140 110 65 - + 61.74595 0.00000 109.08179 11.63256 110 57 - + 56.75676 0.00000 115.21406 12.48373 110 49 - + 52.10792 0.00000 121.34633 13.33489 110 43 - + 47.44471 0.00000 127.47860 14.18605 110 37 - + 47.44471 0.00000 127.47860 14.18605 110 37 - + 42.76570 0.00000 133.61087 15.03722 110 32 - + 38.07447 0.00000 139.74315 15.88838 110 27 - + 33.37597 0.00000 145.87542 16.73954 110 23 - + 28.67517 0.00000 152.00769 17.59071 110 19 - + 23.97701 0.00000 158.13996 18.44187 110 15 - + 23.97701 0.00000 158.13996 18.44187 110 15 - + 19.28599 0.00000 164.27224 19.29303 110 0 - + 14.60516 0.00000 170.40451 20.14419 110 0 - + 9.93735 0.00000 176.53678 20.99536 110 0 - 5.70630 0.00000 182.66905 21.84652 1 0 A 6.21116 0.00000 188.80132 22.69768 1 0 A 6.21116 0.00000 188.80132 22.69768 1 0 A - 6.25155 0.20000 189.29191 22.76578 1 0 A - 6.29194 0.40000 189.78249 22.83387 1 0 A - 6.33233 0.60000 190.27307 22.90196 1 0 A - 6.37272 0.80000 190.76365 22.97006 1 0 A - 6.41311 1.00000 191.25423 23.03815 1 0 A - 6.41311 1.00000 191.25423 23.03815 1 0 A - 6.53428 1.60000 192.72598 23.24243 1 0 A - 6.65545 2.20000 194.19772 23.44671 1 0 A - 6.77661 2.80000 195.66947 23.65099 1 0 A - 6.89778 3.40000 197.14121 23.85527 1 0 A + 6.48043 1.33333 192.07187 23.15164 1 0 A + 6.74969 2.66667 195.34241 23.60559 1 0 A 7.01895 4.00000 198.61296 24.05955 1 0 A - 7.01895 4.00000 198.61296 24.05955 1 0 A - 7.05934 4.20000 199.10354 24.12764 1 0 A - 7.09973 4.40000 199.59412 24.19573 1 0 A - 7.14012 4.60000 200.08470 24.26382 1 0 A - 7.18050 4.80000 200.57529 24.33192 1 0 A - 7.22089 5.00000 201.06587 24.40001 1 0 A - 7.22089 5.00000 201.06587 24.40001 1 0 A - 7.26128 5.20000 201.55645 24.46810 1 0 A - 7.30167 5.40000 202.04703 24.53620 1 0 A - 7.34206 5.60000 202.53761 24.60429 1 0 A - 7.38245 5.80000 203.02820 24.67238 1 0 A - 7.42284 6.00000 203.51878 24.74048 1 0 A - 7.42284 6.00000 203.51878 24.74048 1 0 A - 7.46323 6.20000 204.00936 24.80857 1 0 A - 7.50362 6.40000 204.49994 24.87666 1 0 A - 7.54401 6.60000 204.99052 24.94476 1 0 A - 7.58440 6.80000 205.48110 25.01285 1 0 A - 7.62479 7.00000 205.97169 25.08094 1 0 A - 7.62479 7.00000 205.97169 25.08094 1 0 A - 7.63690 7.06000 206.11886 25.10137 1 0 A - 7.64902 7.12000 206.26604 25.12180 1 0 A - 7.66114 7.18000 206.41321 25.14223 1 0 A - 7.67325 7.24000 206.56038 25.16265 1 0 A - 7.68537 7.30000 206.70756 25.18308 1 0 A - 7.68537 7.30000 206.70756 25.18308 1 0 A - 7.71364 7.44000 207.05097 25.23075 1 0 A - 7.74191 7.58000 207.39437 25.27841 1 0 A - 7.77019 7.72000 207.73778 25.32608 1 0 A - 7.79846 7.86000 208.08119 25.37374 1 0 A - 7.82673 8.00000 208.42460 25.42141 1 0 A + 7.28821 5.33333 201.88350 24.51350 1 0 A + 7.55747 6.66667 205.15405 24.96745 1 0 A + 7.55747 6.66667 205.15405 24.96745 1 0 A 7.82673 8.00000 208.42460 25.42141 1 0 A - 7.86712 8.20000 208.91518 25.48950 1 0 A - 7.90751 8.40000 209.40576 25.55759 1 0 A - 7.94790 8.60000 209.89634 25.62569 1 0 A - 7.98829 8.80000 210.38692 25.69378 1 0 A - 8.02868 9.00000 210.87750 25.76187 1 0 A - 8.02868 9.00000 210.87750 25.76187 1 0 A - 8.06907 9.20000 211.36809 25.82996 1 0 A - 8.10946 9.40000 211.85867 25.89806 1 0 A - 8.14985 9.60000 212.34925 25.96615 1 0 A - 8.19023 9.80000 212.83983 26.03424 1 0 A - 8.23062 10.00000 213.33041 26.10234 1 0 A - 8.23062 10.00000 213.33041 26.10234 1 0 A - 8.27101 10.20000 213.82099 26.17043 1 0 A - 8.31140 10.40000 214.31158 26.23852 1 0 A - 8.35179 10.60000 214.80216 26.30662 1 0 A - 8.39218 10.80000 215.29274 26.37471 1 0 A - 8.43257 11.00000 215.78332 26.44280 1 0 A - 8.43257 11.00000 215.78332 26.44280 1 0 A - 8.47296 11.20000 216.27390 26.51090 1 0 A - 8.51335 11.40000 216.76449 26.57899 1 0 A - 8.55374 11.60000 217.25507 26.64708 1 0 A - 8.59413 11.80000 217.74565 26.71517 1 0 A + 8.09599 9.33333 211.69514 25.87536 1 0 A + 8.36525 10.66667 214.96569 26.32931 1 0 A 8.63452 12.00000 218.23623 26.78327 1 0 A - 8.63452 12.00000 218.23623 26.78327 1 0 A - 8.70318 12.34000 219.07022 26.89903 1 0 A - 8.77184 12.68000 219.90421 27.01478 1 0 A - 8.84050 13.02000 220.73820 27.13054 1 0 A - 8.90916 13.36000 221.57219 27.24630 1 0 A - 8.97782 13.70000 222.40618 27.36206 1 0 A - 8.97782 13.70000 222.40618 27.36206 1 0 A - 8.98994 13.76000 222.55335 27.38249 1 0 A - 9.00206 13.82000 222.70052 27.40291 1 0 A - 9.01417 13.88000 222.84770 27.42334 1 0 A - 9.02629 13.94000 222.99487 27.44377 1 0 A - 9.03841 14.00000 223.14205 27.46420 1 0 A - 9.03841 14.00000 223.14205 27.46420 1 0 A - 9.28074 15.20000 226.08554 27.87276 1 0 A - 9.52308 16.40000 229.02903 28.28131 1 0 A - 9.76541 17.60000 231.97252 28.68987 1 0 A - 10.00775 18.80000 234.91601 29.09843 1 0 A + 8.90378 13.33333 221.50678 27.23722 1 0 A + 8.90378 13.33333 221.50678 27.23722 1 0 A + 9.17304 14.66667 224.77732 27.69118 1 0 A + 9.44230 16.00000 228.04787 28.14513 1 0 A + 9.71156 17.33333 231.31841 28.59908 1 0 A + 9.98082 18.66667 234.58896 29.05304 1 0 A 10.25008 20.00000 237.85950 29.50699 1 0 A 10.25008 20.00000 237.85950 29.50699 1 0 A 10.51935 21.33333 241.13005 29.96094 1 0 A @@ -5105,28 +3696,28 @@ Status character 14.01974 38.66667 283.64713 35.86234 1 0 A 14.28900 40.00000 286.91768 36.31630 1 0 A 15.63059 40.00000 308.37662 32.31976 1 0 A - 15.66491 41.20000 308.93461 32.38036 1 0 A - 15.69923 42.40000 309.49260 32.44096 1 0 A - 15.73355 43.60000 310.05059 32.50156 1 0 A - 15.76787 44.80000 310.60858 32.56216 1 0 A - 15.80219 46.00000 311.16657 32.62276 1 0 A + 15.65919 41.00000 308.84161 32.37026 1 0 A + 15.68779 42.00000 309.30660 32.42076 1 0 A + 15.71639 43.00000 309.77159 32.47126 1 0 A + 15.74499 44.00000 310.23659 32.52176 1 0 A + 15.77359 45.00000 310.70158 32.57226 1 0 A + 15.77359 45.00000 310.70158 32.57226 1 0 A 15.80219 46.00000 311.16657 32.62276 1 0 A - 15.83651 47.20000 311.72456 32.68335 1 0 A - 15.87083 48.40000 312.28255 32.74395 1 0 A - 15.90515 49.60000 312.84054 32.80455 1 0 A - 15.93948 50.80000 313.39853 32.86515 1 0 A + 15.83079 47.00000 311.63156 32.67326 1 0 A + 15.85939 48.00000 312.09655 32.72375 1 0 A + 15.88799 49.00000 312.56155 32.77425 1 0 A + 15.91659 50.00000 313.02654 32.82475 1 0 A + 15.91659 50.00000 313.02654 32.82475 1 0 A + 15.94520 51.00000 313.49153 32.87525 1 0 A 15.97380 52.00000 313.95652 32.92575 1 0 A - 15.97380 52.00000 313.95652 32.92575 1 0 A - 16.00812 53.20000 314.51451 32.98635 1 0 A - 16.04244 54.40000 315.07250 33.04695 1 0 A - 16.07676 55.60000 315.63049 33.10755 1 0 A - 16.11108 56.80000 316.18848 33.16815 1 0 A - 16.14540 58.00000 316.74647 33.22875 1 0 A + 16.00240 53.00000 314.42151 32.97625 1 0 A + 16.03100 54.00000 314.88650 33.02675 1 0 A + 16.05960 55.00000 315.35150 33.07725 1 0 A + 16.05960 55.00000 315.35150 33.07725 1 0 A + 16.08820 56.00000 315.81649 33.12775 1 0 A + 16.11680 57.00000 316.28148 33.17825 1 0 A 16.14540 58.00000 316.74647 33.22875 1 0 A - 16.15684 58.40000 316.93247 33.24895 1 0 A - 16.16828 58.80000 317.11847 33.26915 1 0 A - 16.17972 59.20000 317.30446 33.28935 1 0 A - 16.19116 59.60000 317.49046 33.30955 1 0 A + 16.17400 59.00000 317.21146 33.27925 1 0 A 16.20260 60.00000 317.67646 33.32975 1 0 A 13.18739 60.00000 945.70069 26.36305 1 0 A 13.42716 61.33333 962.89525 26.84238 1 0 A @@ -5171,23 +3762,23 @@ Status character 16.04796 100.80000 1288.60412 32.28579 1 0 A 16.21669 102.00000 1302.15252 32.62524 1 0 A 16.21669 102.00000 1302.15252 32.62524 1 0 A - 19.07759 103.20000 1315.70093 32.96469 110 0 - - 22.09257 104.40000 1329.24934 33.30415 110 0 - - 24.92365 105.60000 1342.79775 33.64360 110 0 - - 27.59661 106.80000 1356.34615 33.98305 110 0 - - 30.13723 108.00000 1369.89456 34.32251 110 0 - - 30.13723 108.00000 1369.89456 34.32251 110 0 - - 32.57017 109.20000 1383.44297 34.66196 110 0 - - 34.91378 110.40000 1396.99138 35.00141 110 0 - - 37.18446 111.60000 1410.53979 35.34087 110 3 - - 39.39859 112.80000 1424.08819 35.68032 110 3 - - 41.57258 114.00000 1437.63660 36.01977 110 3 - - 41.57258 114.00000 1437.63660 36.01977 110 3 - - 43.72102 115.20000 1451.18501 36.35923 110 3 - - 45.85136 116.40000 1464.73342 36.69868 110 3 - - 47.96928 117.60000 1478.28182 37.03813 110 3 - - 50.08049 118.80000 1491.83023 37.37759 110 3 - - 52.19065 120.00000 1505.37864 37.71704 110 3 - + 16.38542 103.20000 1315.70093 32.96469 1 0 A + 17.11824 104.40000 1329.24934 33.30415 110 0 - + 18.63490 105.60000 1342.79775 33.64360 110 0 - + 20.07894 106.80000 1356.34615 33.98305 110 0 - + 21.46267 108.00000 1369.89456 34.32251 110 0 - + 21.46267 108.00000 1369.89456 34.32251 110 0 - + 22.79761 109.20000 1383.44297 34.66196 110 0 - + 24.09203 110.40000 1396.99138 35.00141 110 0 - + 25.35339 111.60000 1410.53979 35.34087 110 0 - + 26.58916 112.80000 1424.08819 35.68032 110 0 - + 27.80681 114.00000 1437.63660 36.01977 110 0 - + 27.80681 114.00000 1437.63660 36.01977 110 0 - + 29.01297 115.20000 1451.18501 36.35923 110 0 - + 30.21098 116.40000 1464.73342 36.69868 110 0 - + 31.40340 117.60000 1478.28182 37.03813 110 0 - + 32.59280 118.80000 1491.83023 37.37759 110 0 - + 33.78174 120.00000 1505.37864 37.71704 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5200,10 +3791,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 130.641 'Clay' + 0.00 132.961 'Clay' -6.00 31.833 'Peat' -8.00 47.654 'Sand 1' - -11.00 82.203 'Sand 2' + -11.00 62.672 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5218,12 +3809,12 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 3 passive +Profile add. pressure [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Level top layer Excess pore top @@ -5240,7 +3831,8 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 0.00 0.00 10.00 11.00 0.25 21.80 21.80 29.67 0.29 0.50 4.65 'Peat -7.8m à -8m' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -10.00 0.00 20.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 20.00 80.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -5248,10 +3840,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -4 : Number of layers +5 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Layer Branch @@ -5259,10 +3851,11 @@ Modulus of subgrade reaction top Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] - 1 1 800.00000 800.00000 - 2 1 10000.00000 10000.00000 + 1 1 2000.00000 2000.00000 + 2 1 800.00000 800.00000 3 1 10000.00000 10000.00000 4 1 10000.00000 10000.00000 + 5 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -5270,7 +3863,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -5279,24 +3872,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.14100 30.62200 1.57691 0.00767 - -8.66667 66.57200 30.42600 47.07818 1.02891 - -9.33333 81.80000 30.41900 443.95909 3.55983 - -10.00000 79.59700 45.38400 633.35574 7.98206 - -10.50000 78.55400 42.78700 777.72352 14.59321 - -11.00000 77.93000 41.04600 894.64375 21.62771 - -11.60000 76.46600 39.38200 1087.02671 29.00672 - -12.20000 78.74400 38.26000 1312.29587 36.42199 - -12.80000 78.61500 37.47700 1375.85104 43.62736 - -13.40000 78.58800 36.92500 1390.03039 50.49582 - -14.00000 78.65600 35.04000 1354.93771 56.06526 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 71.51900 0.00000 16.82497 0.00000 + -8.00000 63.43600 0.00000 58.98312 0.00000 + -8.66667 79.28700 29.49400 414.74132 1.10130 + -9.33333 79.78200 48.12300 604.70176 7.87842 + -10.00000 78.22300 44.85200 825.72483 20.31387 + -10.50000 77.44400 40.70800 997.27315 29.15349 + -11.00000 76.95000 39.42200 1143.41762 37.43145 + -11.60000 75.85600 38.07700 1386.37867 45.78354 + -12.20000 77.88700 37.13800 1686.59498 54.03731 + -12.80000 77.75500 36.46200 1807.77493 62.01213 + -13.40000 77.68300 35.97000 1880.36381 69.60923 + -14.00000 77.66100 34.37600 1904.54266 76.22655 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -5307,23 +3901,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00149 7.88454 0.03836 2.54089 0.03830 7.87278 - -8.33333 7.87484 68.25191 1.53186 1.67627 0.19453 8.66709 - -9.00000 20.73705 595.32136 3.79637 1.21441 0.18307 28.70810 - -9.66667 34.59108 284.09498 6.63334 0.90078 0.19176 8.21295 - -10.25000 39.67169 288.73556 13.22232 0.77940 0.33329 7.27813 - -10.75000 35.68543 233.84047 14.06898 0.75036 0.39425 6.55283 - -11.30000 30.87123 320.63827 12.29835 0.65547 0.39838 10.38631 - -11.90000 25.15684 375.44861 12.35878 0.63051 0.49127 14.92432 - -12.50000 19.05875 23.68991 12.00896 0.63010 0.63010 1.24299 - -13.10000 12.67808 23.68991 11.44743 0.90293 0.90293 1.86857 - -13.70000 6.09850 23.68991 9.28239 1.52208 1.52208 3.88454 + -7.25000 2.52296 33.64994 0.00000 2.49382 0.00000 13.33750 + -7.75000 8.03375 84.31630 0.00000 2.13015 0.00000 10.49525 + -8.33333 17.86675 533.63731 1.65196 1.37349 0.09246 29.86763 + -9.00000 31.77814 284.94065 10.16567 0.93303 0.31990 8.96656 + -9.66667 45.45622 331.53461 18.65317 0.70723 0.41035 7.29349 + -10.25000 49.91403 343.09664 17.67924 0.61947 0.35419 6.87375 + -10.75000 45.34373 292.28893 16.55593 0.58887 0.36512 6.44607 + -11.30000 39.96152 404.93509 13.92015 0.49435 0.34834 10.13313 + -11.90000 33.75871 500.36052 13.75628 0.46881 0.40749 14.82167 + -12.50000 27.30345 201.96658 13.29137 0.48680 0.48680 7.39711 + -13.10000 20.67267 120.98146 12.66184 0.61249 0.61249 5.85224 + -13.70000 13.92405 40.29809 11.02886 0.79207 0.79207 2.89414 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5334,78 +3929,6 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - @@ -5479,87 +4002,94 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14987 0.00000 3.14987 1.01660 202 100 P - 6.30425 0.00000 6.30425 2.03465 202 100 P - 9.46763 0.00000 9.46763 3.05561 202 100 P - 12.64439 0.00000 12.64439 4.08089 202 100 P - 15.83876 0.00000 15.83876 5.11185 202 100 P - 17.43677 0.00000 17.43677 3.37237 202 100 P - 37.44406 0.00000 37.44406 7.24190 202 100 P - 57.85830 0.00000 57.85830 11.19014 202 100 P - 78.78207 0.00000 78.78207 15.23692 202 100 P - 100.27078 0.00000 100.27078 19.39296 202 100 P - 122.33362 0.00000 122.33362 23.66005 202 100 P - 352.60600 0.00000 405.20728 17.14102 110 87 - - 332.64733 0.00000 480.08661 20.30855 110 69 - - 313.52611 0.00000 556.56462 23.54371 110 56 - - 295.29334 0.00000 634.37446 26.83521 110 47 - - 277.99863 0.00000 713.21662 30.17038 110 39 - - 261.69135 0.00000 792.78573 33.53630 110 33 - - 226.80403 0.00000 226.80403 24.87531 202 100 P - 236.86933 0.00000 249.69214 27.38562 110 95 - - 221.71805 0.00000 272.62915 29.90129 110 81 - - 207.56758 0.00000 295.54912 32.41510 110 70 - - 194.41014 0.00000 318.39662 34.92096 110 61 - - 182.23910 0.00000 341.12663 37.41393 110 53 - - 177.19753 0.00000 302.29833 32.37236 110 59 - - 166.27474 3.00000 296.93923 31.79847 110 56 - - 155.88335 6.00000 291.49351 31.21530 110 53 - - 146.00909 9.00000 285.95308 30.62199 110 51 - - 136.63790 12.00000 280.31183 30.01788 110 49 - - 127.75592 15.00000 274.56536 29.40251 110 47 - - 126.66073 15.00000 247.20370 28.30732 110 51 - - 118.27607 18.00000 241.93256 27.70372 110 49 - - 110.34746 21.00000 236.56264 27.08881 110 47 - - 102.85657 24.00000 231.09349 26.46254 110 45 - - 95.78517 27.00000 225.52547 25.82494 110 42 - - 89.11512 30.00000 219.85965 25.17615 110 41 - - 85.93126 30.00000 348.48023 21.99230 110 25 - - 78.53073 33.60000 337.50283 21.29952 110 23 - - 71.64913 37.20000 326.31178 20.59326 110 22 - - 65.25291 40.80000 314.91403 19.87396 110 21 - - 59.30858 44.40000 303.31738 19.14211 110 20 - - 53.78267 48.00000 291.53022 18.39823 110 18 - - 53.08216 48.00000 418.90609 17.69772 110 13 - - 47.96968 51.60000 401.70769 16.97113 110 12 - - 43.21012 55.20000 384.26100 16.23405 110 11 - - 38.77234 58.80000 366.57900 15.48703 110 11 - - 34.62524 62.40000 348.67461 14.73062 110 10 - - 30.73767 66.00000 330.56055 13.96535 110 9 - - 27.53122 66.00000 27.53122 13.95621 202 100 P - 26.00613 69.60000 26.00613 13.18311 202 100 P - 23.61378 73.20000 24.46563 12.40220 110 97 - - 20.33391 76.80000 22.91069 11.61396 110 89 - - 17.20532 80.40000 21.34223 10.81887 110 81 - - 14.20266 84.00000 19.76115 10.01739 110 72 - - 18.54010 84.00000 29.70662 14.35483 110 62 - - 15.28956 87.60000 27.31213 13.19776 110 56 - - 12.12039 91.20000 24.90119 12.03275 110 49 - - 10.86034 94.80000 22.47494 10.86034 1 48 A - 9.68106 98.40000 20.03449 9.68106 1 48 A - 8.49543 102.00000 17.58087 8.49543 1 48 A - 14.32080 102.00000 36.54860 14.32080 1 39 A - 12.31223 105.60000 31.42247 12.31223 1 39 A - 10.29448 109.20000 26.27291 10.29448 1 39 A - 8.26826 112.80000 21.10171 8.26826 1 39 A - 6.23422 116.40000 15.91057 6.23422 1 39 A - 4.19299 120.00000 10.70106 4.19299 1 39 A + 13.35742 0.00000 13.35742 2.49755 202 100 P + 26.83289 0.00000 26.83289 5.01716 202 100 P + 37.44532 0.00000 40.53704 7.57954 110 92 - + 38.93105 0.00000 54.56658 10.20276 110 71 - + 40.49418 0.00000 68.99916 12.90134 110 59 - + 38.61280 0.00000 54.29531 11.01996 110 71 - + 39.86041 0.00000 66.01305 13.39823 110 60 - + 41.19414 0.00000 78.11676 15.85483 110 53 - + 42.61850 0.00000 90.61378 18.39127 110 47 - + 44.13472 0.00000 103.49534 21.00575 110 43 - + 45.74130 0.00000 116.73909 23.69375 110 39 - + 290.87173 0.00000 332.21870 15.27736 110 88 - + 276.91076 0.00000 411.78566 18.93631 110 67 - + 263.54444 0.00000 492.73826 22.65899 110 53 - + 250.81525 0.00000 574.76487 26.43105 110 44 - + 238.76539 0.00000 657.54779 30.23790 110 36 - + 227.43773 0.00000 740.78380 34.06557 110 31 - + 216.51335 0.00000 222.39072 23.14120 110 97 - + 204.70788 0.00000 247.43239 25.74695 110 83 - + 193.65140 0.00000 272.45546 28.35076 110 71 - + 183.34047 0.00000 297.39941 30.94635 110 62 - + 173.77283 0.00000 322.21508 33.52858 110 54 - + 164.94734 0.00000 346.86394 36.09345 110 48 - + 156.21250 0.00000 282.14268 27.35861 110 55 - + 147.50461 0.00000 302.03303 29.28733 110 49 - + 139.50921 0.00000 321.74723 31.19896 110 43 - + 132.20043 0.00000 341.27417 33.09243 110 39 - + 125.55283 0.00000 360.60745 34.96713 110 35 - + 119.54138 0.00000 379.74460 36.82281 110 31 - + 114.97190 0.00000 357.89026 32.25332 110 32 - + 108.95814 3.00000 352.04955 31.72696 110 31 - + 103.27275 6.00000 346.10625 31.19134 110 30 - + 97.90186 9.00000 340.06206 30.64664 110 29 - + 92.83167 12.00000 333.91919 30.09304 110 28 - + 88.04841 15.00000 327.68019 29.53077 110 27 - + 86.58991 15.00000 307.29216 28.07227 110 28 - + 82.10770 18.00000 301.35390 27.52979 110 27 - + 77.88469 21.00000 295.33109 26.97958 110 26 - + 73.90714 24.00000 289.22679 26.42193 110 26 - + 70.16132 27.00000 283.04415 25.85713 110 25 - + 66.63352 30.00000 276.78639 25.28546 110 24 - + 62.57492 30.00000 435.10401 21.22687 110 14 - + 58.72149 33.60000 423.15079 20.64372 110 14 - + 55.14173 37.20000 411.04365 20.05306 110 13 - + 51.81457 40.80000 398.79130 19.45532 110 13 - + 48.71895 44.40000 386.40224 18.85091 110 13 - + 45.83378 48.00000 373.88478 18.24024 110 12 - + 44.89136 48.00000 546.87932 17.29782 110 8 - + 42.22796 51.60000 528.39402 16.71313 110 8 - + 39.73716 55.20000 509.74394 16.12323 110 8 - + 37.40225 58.80000 490.93993 15.52846 110 8 - + 35.20649 62.40000 471.99231 14.92914 110 7 - + 33.13312 66.00000 452.91097 14.32560 110 7 - + 33.68290 66.00000 226.03605 14.87538 110 15 - + 31.69266 69.60000 216.45098 14.24458 110 15 - + 29.79591 73.20000 206.80825 13.61000 110 14 - + 27.98059 76.80000 197.11206 12.97189 110 14 - + 26.23465 80.40000 187.36634 12.33053 110 14 - + 24.54599 84.00000 177.57481 11.68615 110 14 - + 27.56329 84.00000 140.48876 14.70346 110 20 - + 25.75355 87.60000 132.70869 13.88920 110 19 - + 23.98110 91.20000 124.89775 13.07171 110 19 - + 22.23873 94.80000 117.05835 12.25125 110 19 - + 20.51920 98.40000 109.19280 11.42804 110 19 - + 18.81528 102.00000 101.30321 10.60232 110 19 - + 21.92387 102.00000 50.09795 13.71091 110 44 - + 19.98636 105.60000 46.18537 12.64011 110 43 - + 18.05428 109.20000 42.26283 11.56657 110 43 - + 16.12528 112.80000 38.33117 10.49055 110 42 - + 14.19704 116.40000 34.39120 9.41225 110 41 - + 12.26719 120.00000 30.44366 8.33188 110 40 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 1.579 'Peat -7.8m à -8m' - -8.00 391.459 'Sand 1' - -10.00 129.244 'Sand 1' - -11.00 92.034 'Sand 2' + 0.00 0.000 'Clay' + -6.00 34.680 'Peat' + -8.00 389.072 'Sand 1' + -10.00 88.515 'Sand 1' + -11.00 96.977 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5582,9 +4112,9 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 24.07611 26.29097 -17.99483 0.00000 6.81237 1 12 4 1.000 0 0 - 295.59993 180.69208 -155.17928 6.05990 10.07961 2 12 4 1.000 0 0 - 235.39574 194.29210 -100.57813 42.91895 45.31170 3 12 4 1.000 0 0 + 22.70819 27.35305 -13.06102 0.00000 6.71246 1 12 4 1.000 0 0 + 257.64706 180.68921 -124.86435 5.92258 9.88050 2 12 4 1.000 0 0 + -187.22946 164.14093 -76.06581 29.02676 31.98085 3 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -5606,7 +4136,7 @@ AnchorName [END OF COLUMN INDICATION] [DATA] 2 12 7 4 1.000 80.00000 0 1 0 0 'anchor' - 3 12 7 4 1.000 57.92591 0 1 0 0 'anchor' + 3 12 7 4 1.000 46.04222 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -5623,11 +4153,11 @@ Force [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=295.59993 -MaximumShearForce=194.29210 -MaximumDisplacement=-155.17928 -MaximumPercentageMobilisedMoment=42.91895 -MaximumPercentageMobilisedResistance=45.31170 +MaximumMoment=257.64706 +MaximumShearForce=180.68921 +MaximumDisplacement=-124.86435 +MaximumPercentageMobilisedMoment=29.02676 +MaximumPercentageMobilisedResistance=31.98085 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] @@ -5643,8 +4173,8 @@ SoilMaterialName Parameter01 [END OF COLUMN INDICATION] [DATA] - 3 -1 -1 'Stages active' '' '' - 3 -1 -1 'Stage 2 passive' '' '' + 3 -1 -1 'Soil profile' '' '' + 3 -1 -1 'Profile add. pressure' '' '' [END OF DATA] [END OF TABLE] [END OF WARNINGS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shi index b0803480..a099e1fa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:26:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -19,7 +19,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 18 = number of items + 4 = number of items [SOIL] Clay SoilColor=7648893 @@ -70,643 +70,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.4m a -2.5 -SoilColor=5866717 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.63 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.5m a -2.6 -SoilColor=7187949 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.6m a -2.7 -SoilColor=13827451 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.7m a -2.8 -SoilColor=9544960 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=2.50 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.8m a -2.9 -SoilColor=6270895 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=3.13 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.0m a -3.1 -SoilColor=7648893 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=3.75 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.1m a -3.2 -SoilColor=9094655 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=4.38 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -3.2m a -3.3 -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.00 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat SoilColor=5953498 SoilSoilType=2 @@ -756,55 +119,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Sand 1 SoilColor=10944420 SoilSoilType=2 @@ -1098,58 +412,28 @@ SurchargeLoadDistribution=2 0 1/0 : Yes/No Unloading curve 0 1/0 : Yes/No Use Cur values - 4 Number of soil profiles -Stage 1 passive - 0.000 X coordinate - 0.000 Y coordinate - - 13 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.40 0.00 0.00 Clay -2.4m a -2.5 - 2 -2.50 0.00 0.00 Clay -2.5m a -2.6 - 3 -2.60 0.00 0.00 Clay -2.6m a -2.7 - 4 -2.70 0.00 0.00 Clay -2.6m a -2.7 - 5 -2.80 0.00 0.00 Clay -2.7m a -2.8 - 6 -2.90 0.00 0.00 Clay -2.8m a -2.9 - 7 -3.00 0.00 0.00 Clay -3.0m a -3.1 - 8 -3.10 0.00 0.00 Clay -3.1m a -3.2 - 9 -3.20 0.00 0.00 Clay -3.2m a -3.3 - 10 -3.40 0.00 0.00 Clay - 11 -6.00 0.00 0.00 Peat - 12 -8.00 0.00 0.00 Sand 1 - 13 -11.00 0.00 0.00 Sand 2 -Stage 2 passive - 0.000 X coordinate - 0.000 Y coordinate - - 6 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 -Stage 3 passive + 2 Number of soil profiles +Soil profile 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m - 2 -8.00 0.00 0.00 Sand 1 - 3 -10.00 0.00 20.00 Sand 1 - 4 -11.00 20.00 80.00 Sand 2 -Stages active + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 +Profile add. pressure 0.000 X coordinate 0.000 Y coordinate - 4 Number of soil layers per soil profile + 5 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name 1 0.00 0.00 0.00 Clay 2 -6.00 0.00 0.00 Peat 3 -8.00 0.00 0.00 Sand 1 - 4 -11.00 0.00 0.00 Sand 2 + 4 -10.00 0.00 20.00 Sand 1 + 5 -11.00 20.00 80.00 Sand 2 [END OF SOIL PROFILES] @@ -1159,17 +443,17 @@ Stages active 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -2.40 + 1 0.00 -2.00 2 1 GLleft2 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -2.10 + 1 0.00 -2.00 3 1 GLleft3 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.00 4 1 GLright1 0.00 Standard deviation 2 Distribution type @@ -1226,8 +510,8 @@ GLleft1 GLright1 WLleft1 WLright1 -Stage 1 passive -Stages active +Soil profile +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 0 Anchors present in stage @@ -1249,8 +533,8 @@ GLleft2 GLright2 WLleft2 WLright2 -Stage 2 passive -Stages active +Soil profile +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1276,8 +560,8 @@ GLleft3 GLright3 WLleft3 WLright3 -Stage 3 passive -Stages active +Profile add. pressure +Soil profile 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1306,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1315,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1324,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1347,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1358,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1370,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1396,53 +686,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1450,35 +742,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1497,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1512,10 +806,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1524,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1537,12 +832,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1551,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1566,10 +862,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1578,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1612,26 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1639,16 +1022,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1659,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1666,8 +1078,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1675,7 +1087,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1686,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1693,8 +1106,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1702,7 +1115,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1713,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1720,8 +1134,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shd index a317ddec..a9c267ec 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1148,59 +1148,28 @@ SurchargeLoadDistribution=2 0 1/0 : Yes/No Unloading curve 0 1/0 : Yes/No Use Cur values - 4 Number of soil profiles -Stage 1 passive - 0.000 X coordinate - 0.000 Y coordinate - - 14 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.40 0.00 0.00 Clay -2.4m à -2.5m - 2 -2.50 0.00 0.00 Clay -2.5m à -2.6m - 3 -2.60 0.00 0.00 Clay -2.6m à -2.7m - 4 -2.70 0.00 0.00 Clay -2.7m à -2.8m - 5 -2.80 0.00 0.00 Clay -2.9m à -3.0m - 6 -2.90 0.00 0.00 Clay -3.0m à -3.1m - 7 -3.00 0.00 0.00 Clay -3.1m à -3.2m - 8 -3.10 0.00 0.00 Clay -3.2m à -3.3m - 9 -3.20 0.00 0.00 Clay -3.3m à -3.4m - 10 -3.30 0.00 0.00 Clay -3.4m à -3.5m - 11 -3.40 0.00 0.00 Clay - 12 -6.00 0.00 0.00 Peat - 13 -8.00 0.00 0.00 Sand 1 - 14 -11.00 0.00 0.00 Sand 2 -Stage 2 passive - 0.000 X coordinate - 0.000 Y coordinate - - 6 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 -Stage 3 passive + 2 Number of soil profiles +Soil initial 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m - 2 -8.00 0.00 0.00 Sand 1 - 3 -10.00 0.00 20.00 Sand 1 - 4 -11.00 20.00 80.00 Sand 2 -Stages active + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 +Profile add. pressure 0.000 X coordinate 0.000 Y coordinate - 4 Number of soil layers per soil profile + 5 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name 1 0.00 0.00 0.00 Clay 2 -6.00 0.00 0.00 Peat 3 -8.00 0.00 0.00 Sand 1 - 4 -11.00 0.00 0.00 Sand 2 + 4 -10.00 0.00 20.00 Sand 1 + 5 -11.00 20.00 80.00 Sand 2 [END OF SOIL PROFILES] @@ -1220,7 +1189,7 @@ Stages active 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.20 4 1 GLright1 0.00 Standard deviation 2 Distribution type @@ -1277,8 +1246,8 @@ GLleft1 GLright1 WLleft1 WLright1 -Stage 1 passive -Stages active +Soil initial +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 0 Anchors present in stage @@ -1300,8 +1269,8 @@ GLleft2 GLright2 WLleft2 WLright2 -Stage 2 passive -Stages active +Soil initial +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1327,8 +1296,8 @@ GLleft3 GLright3 WLleft3 WLright3 -Stage 3 passive -Stages active +Profile add. pressure +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1357,6 +1326,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1366,6 +1336,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1375,6 +1346,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1398,7 +1370,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1409,8 +1381,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1421,25 +1395,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1447,53 +1422,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1501,35 +1478,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1548,6 +1526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1563,10 +1542,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1575,10 +1554,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1588,12 +1568,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1602,7 +1582,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1617,10 +1598,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1629,33 +1610,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1663,26 +1702,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1690,16 +1758,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1710,6 +1806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1717,8 +1814,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1726,7 +1823,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1737,6 +1834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1744,8 +1842,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1753,7 +1851,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1764,6 +1862,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1771,8 +1870,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1826,7 +1925,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -1868,82 +1967,22 @@ Depth -2.34000 -2.40000 -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 - -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 + -2.50667 + -2.61333 + -2.72000 + -2.82667 + -2.93333 + -2.93333 -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 - -3.20000 - -3.20000 - -3.22000 - -3.24000 - -3.26000 - -3.28000 - -3.30000 - -3.30000 - -3.31400 - -3.32800 - -3.34200 - -3.35600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.14667 + -3.25333 + -3.36000 + -3.46667 + -3.46667 + -3.57333 + -3.68000 + -3.78667 + -3.89333 -4.00000 -4.00000 -4.13333 @@ -1976,16 +2015,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -2053,7 +2092,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=4 [UNIFORM LOAD DATA] [TABLE] @@ -2094,20 +2133,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.07 : Percentage mobilized resistance left - 3.66 : Percentage mobilized resistance right - 316.57 : Effective left - 316.59 : Effective right + 7.13 : Percentage mobilized resistance left + 3.70 : Percentage mobilized resistance right + 319.91 : Effective left + 319.93 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4477.23 : Max effective resistance left - 8655.60 : Max effective resistance right + 4488.84 : Max effective resistance left + 8655.55 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 144.51 : Vertical force left - 141.45 : Vertical force right + 145.73 : Vertical force left + 142.43 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -2117,229 +2156,169 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -19.47969 - 0.00000 0.00000 -19.26885 - 0.00000 0.00000 -19.05801 - 0.00000 0.00000 -18.84718 - 0.00000 0.00000 -18.63634 - 0.00000 0.00000 -18.42551 - 0.00000 0.00000 -18.42551 - 0.00000 0.00000 -18.21467 - 0.00000 0.00000 -18.00384 - 0.00000 0.00000 -17.79300 - 0.00000 0.00000 -17.58217 - 0.00000 0.00000 -17.37133 - 0.00003 -0.00020 -17.37133 - 0.00170 0.03400 -17.16050 - 0.00691 0.07044 -16.94966 - 0.01587 0.10916 -16.73883 - 0.02881 0.15018 -16.52800 - 0.04608 0.19658 -16.31718 - 0.04602 0.18823 -16.31718 - 0.08785 0.65240 -16.10636 - 0.17729 1.14028 -15.89556 - 0.31670 1.65193 -15.68481 - 0.50992 2.23085 -15.47416 - 0.76813 2.96740 -15.26363 - 0.76761 2.96190 -15.26363 - 0.82819 3.09659 -15.22154 - 0.89150 3.23597 -15.17946 - 0.95766 3.38004 -15.13738 - 1.02674 3.52879 -15.09532 - 1.09884 3.68223 -15.05327 - 1.09893 3.68097 -15.05327 - 1.33559 4.20851 -14.92718 - 1.60408 4.74226 -14.80120 - 1.90482 5.28412 -14.67537 - 2.23869 5.85168 -14.54970 - 2.60785 6.46056 -14.42423 - 2.60775 6.45930 -14.42423 - 2.73952 6.71621 -14.38245 - 2.87635 6.96446 -14.34070 - 3.01804 7.20405 -14.29898 - 3.16445 7.43498 -14.25729 - 3.31539 7.65725 -14.21563 - 3.31539 7.65725 -14.21563 - 3.47020 7.82237 -14.17400 - 3.62822 7.97884 -14.13240 - 3.78929 8.12664 -14.09084 - 3.95323 8.26579 -14.04932 - 4.11987 8.39626 -14.00783 - 4.11987 8.39626 -14.00783 - 4.28853 8.46844 -13.96639 - 4.45855 8.53196 -13.92498 - 4.62975 8.58682 -13.88362 - 4.80196 8.63301 -13.84230 - 4.97501 8.67053 -13.80103 - 4.97501 8.67053 -13.80103 - 5.02702 8.66527 -13.78866 - 5.07899 8.65922 -13.77629 - 5.13093 8.65240 -13.76393 - 5.18282 8.64480 -13.75157 - 5.23466 8.63642 -13.73922 - 5.23466 8.63642 -13.73922 - 5.35542 8.61414 -13.71041 - 5.47584 8.58762 -13.68163 - 5.59586 8.55685 -13.65287 - 5.71541 8.52183 -13.62414 - 5.83445 8.48256 -13.59544 - 5.83445 8.48256 -13.59544 - 6.00298 8.36880 -13.55448 - 6.16914 8.24636 -13.51358 - 6.33277 8.11524 -13.47274 - 6.49369 7.97545 -13.43196 - 6.65173 7.82698 -13.39125 - 6.65174 7.82684 -13.39125 - 6.80622 7.62014 -13.35060 - 6.95648 7.40476 -13.31001 - 7.10238 7.18525 -13.26949 - 7.24390 6.96664 -13.22905 - 7.38106 6.74941 -13.18867 - 7.38105 6.74928 -13.18867 - 7.51388 6.53385 -13.14836 - 7.64242 6.31979 -13.10812 - 7.76668 6.10711 -13.06796 - 7.88671 5.89579 -13.02788 - 8.00253 5.68582 -12.98787 - 8.00253 5.68582 -12.98787 - 8.11416 5.47750 -12.94793 - 8.22163 5.27052 -12.90808 - 8.32499 5.06489 -12.86831 - 8.42424 4.86060 -12.82861 - 8.51942 4.65765 -12.78900 - 8.51942 4.65765 -12.78900 - 8.61056 4.45619 -12.74947 - 8.69768 4.25605 -12.71002 - 8.78081 4.05724 -12.67066 - 8.85997 3.85974 -12.63138 - 8.93520 3.66355 -12.59219 - 8.93520 3.66355 -12.59219 - 8.98554 3.52704 -12.56481 - 9.03396 3.39117 -12.53747 - 9.08049 3.25593 -12.51017 - 9.12513 3.12133 -12.48291 - 9.16789 2.98736 -12.45570 - 9.16789 2.98736 -12.45570 - 9.18565 2.93014 -12.44405 - 9.20306 2.87303 -12.43241 - 9.22012 2.81604 -12.42078 - 9.23685 2.75917 -12.40915 - 9.25323 2.70241 -12.39754 - 9.25326 2.70233 -12.39754 - 9.51025 1.58842 -12.16694 - 9.63627 0.51927 -11.93965 - 9.63662 -0.50629 -11.71568 - 9.51646 -1.48942 -11.49503 - 9.28088 -2.42958 -11.27769 - 9.28130 -2.44271 -11.27769 - 8.88771 -3.45300 -11.04005 - 8.36263 -4.41547 -10.80623 - 7.71252 -5.32705 -10.57596 - 6.94661 -6.13668 -10.34895 - 6.08265 -6.79829 -10.12494 - 6.08234 -6.81247 -10.12494 - 5.12104 -7.59476 -9.90359 - 4.06179 -8.27094 -9.68444 - 2.92156 -8.80966 -9.46701 - 1.71859 -9.21236 -9.25080 - 0.47092 -9.48024 -9.03535 - 0.47089 -9.48048 -9.03535 - -0.82028 -9.86543 -8.82011 - -2.15411 -10.12031 -8.60452 - -3.51326 -10.24529 -8.38800 - -4.88041 -10.24024 -8.16996 - -6.23819 -10.10470 -7.94983 - -6.23820 -10.10501 -7.94983 - -7.33044 -8.09186 -7.74939 - -8.17851 -6.03525 -7.54639 - -8.77716 -3.93496 -7.34062 - -9.12114 -1.79070 -7.13187 - -9.20515 0.39786 -6.91994 - -9.20515 0.39762 -6.91994 - -9.03142 2.50535 -6.70470 - -8.60208 4.65788 -6.48631 - -7.91172 6.85555 -6.26500 - -6.95493 9.09870 -6.04103 - -5.72621 11.38761 -5.81463 - -5.72621 11.38747 -5.81463 - -4.22655 13.61464 -5.58611 - -2.45686 15.88776 -5.35612 - -0.41165 18.20687 -5.12536 - 1.91462 20.57188 -4.89455 - 4.52743 22.98257 -4.66439 - 4.52743 22.98259 -4.66439 - 5.46257 23.77524 -4.58795 - 6.42952 24.57290 -4.51173 - 7.42847 25.37556 -4.43575 - 8.45963 26.18317 -4.36007 - 9.52319 26.99573 -4.28471 - 9.52299 26.99742 -4.28471 - 12.86409 23.17175 -4.03651 - 15.71598 19.65800 -3.79386 - 18.11972 16.44801 -3.55778 - 20.11519 13.53221 -3.32933 - 21.74090 10.89965 -3.10955 - 21.74082 10.90470 -3.10955 - 23.01511 8.25307 -2.89929 - 23.95292 5.85513 -2.69894 - 24.58716 3.69743 -2.50876 - 24.94896 1.76614 -2.32903 - 25.06756 0.04708 -2.16005 - 25.06756 0.05298 -2.16005 - 24.96793 -1.51574 -2.00195 - 24.67148 -2.90183 -1.85459 - 24.20160 -4.11954 -1.71776 - 23.57980 -5.18282 -1.59127 - 22.82576 -6.10538 -1.47492 - 22.82670 -6.10709 -1.47492 - 22.18360 -6.74359 -1.39416 - 21.48018 -7.31425 -1.31876 - 20.72360 -7.79934 -1.24853 - 19.92428 -8.16530 -1.18331 - 19.09472 -8.40580 -1.12291 - 19.09399 -8.40803 -1.12291 - 18.24438 -8.56561 -1.06713 - 17.38442 -8.61656 -1.01575 - 16.52433 -8.56950 -0.96858 - 15.67351 -8.43265 -0.92541 - 14.84054 -8.21382 -0.88602 - 14.84045 -8.20988 -0.88602 - 13.84815 -8.31141 -0.84348 - 12.84956 -8.31671 -0.80575 - 11.85554 -8.23696 -0.77249 - 10.87568 -8.08250 -0.74337 - 9.91835 -7.86285 -0.71803 - 9.91842 -7.85938 -0.71803 - 8.98904 -7.62148 -0.69614 - 8.09119 -7.33537 -0.67737 - 7.23020 -7.00821 -0.66143 - 6.41060 -6.64644 -0.64802 - 5.63621 -6.25579 -0.63684 - 5.63626 -6.25380 -0.63684 - 4.90857 -5.87089 -0.62761 - 4.22801 -5.46881 -0.62008 - 3.59666 -5.05141 -0.61403 - 3.01615 -4.62201 -0.60926 - 2.48775 -4.18339 -0.60553 - 2.48778 -4.18249 -0.60553 - 2.01100 -3.76292 -0.60265 - 1.58488 -3.33851 -0.60047 - 1.20989 -2.91079 -0.59885 - 0.88637 -2.48097 -0.59768 - 0.61451 -2.04995 -0.59681 - 0.61452 -2.04970 -0.59681 - 0.39318 -1.63934 -0.59613 - 0.22108 -1.22896 -0.59558 - 0.09822 -0.81884 -0.59513 - 0.02454 -0.40917 -0.59473 - 0.00000 -0.00001 -0.59434 + 0.00000 0.00000 -17.13753 + 0.00000 0.00000 -16.96740 + 0.00000 0.00000 -16.79727 + 0.00000 0.00000 -16.62715 + 0.00000 0.00000 -16.45702 + 0.00000 0.00000 -16.28689 + 0.00000 0.00000 -16.28689 + 0.00000 0.00000 -16.11676 + 0.00000 0.00000 -15.94663 + 0.00000 0.00000 -15.77650 + 0.00000 0.00000 -15.60637 + 0.00000 0.00000 -15.43624 + 0.00018 -0.00122 -15.43624 + 0.00175 0.03297 -15.26611 + 0.00685 0.06941 -15.09598 + 0.01571 0.10813 -14.92586 + 0.03102 0.22324 -14.75573 + 0.06630 0.51688 -14.58562 + 0.06630 0.50800 -14.58562 + 0.14012 0.97217 -14.41551 + 0.26246 1.48791 -14.24543 + 0.44229 2.14148 -14.07543 + 0.69730 2.99131 -13.90556 + 1.04710 4.03749 -13.73585 + 1.04692 4.03627 -13.73585 + 1.12960 4.23191 -13.70193 + 1.21623 4.43191 -13.66803 + 1.30690 4.63627 -13.63413 + 1.40171 4.84499 -13.60025 + 1.50073 5.05807 -13.56638 + 1.50073 5.05808 -13.56638 + 1.82262 5.67812 -13.46487 + 2.18288 6.33677 -13.36351 + 2.58381 7.03396 -13.26235 + 3.02772 7.76960 -13.16142 + 3.51692 8.54358 -13.06075 + 3.51719 8.53747 -13.06075 + 4.37263 7.49228 -12.88257 + 5.11508 6.43393 -12.70561 + 5.74632 5.40712 -12.53002 + 6.26970 4.41131 -12.35598 + 6.68848 3.44588 -12.18368 + 6.68848 3.44570 -12.18368 + 7.00679 2.52756 -12.01324 + 7.22873 1.63879 -11.84474 + 7.35741 0.77868 -11.67820 + 7.39585 -0.05346 -11.51366 + 7.34787 -0.83330 -11.35115 + 7.34799 -0.84149 -11.35115 + 7.21645 -1.62052 -11.19070 + 7.00320 -2.37371 -11.03223 + 6.71109 -3.09776 -10.87567 + 6.34453 -3.76031 -10.72094 + 5.91208 -4.33328 -10.56795 + 5.91252 -4.34227 -10.56795 + 5.27798 -5.16979 -10.37903 + 4.53694 -5.92900 -10.19237 + 3.70200 -6.57390 -10.00764 + 2.78953 -7.09211 -9.82446 + 1.81633 -7.48520 -9.64248 + 1.81600 -7.48684 -9.64248 + 0.77851 -8.05564 -9.46132 + -0.32691 -8.50616 -9.28049 + -1.48457 -8.83916 -9.09951 + -2.67882 -9.05508 -8.91787 + -3.89406 -9.15410 -8.73508 + -3.89404 -9.15447 -8.73508 + -5.13143 -9.38750 -8.55063 + -6.39230 -9.50636 -8.36397 + -7.66136 -9.51028 -8.17457 + -8.92321 -9.39816 -7.98187 + -10.16231 -9.16860 -7.78534 + -10.16234 -9.16915 -7.78534 + -11.14046 -7.12632 -7.60469 + -11.87106 -5.04371 -7.42016 + -12.34934 -2.92083 -7.23157 + -12.57043 -0.75716 -7.03877 + -12.52940 1.44786 -6.84158 + -12.52941 1.44752 -6.84158 + -12.22883 3.56900 -6.63992 + -11.67115 5.73277 -6.43400 + -10.85126 7.93939 -6.22410 + -9.76397 10.18940 -6.01050 + -8.40405 12.48327 -5.79350 + -8.40406 12.48310 -5.79350 + -7.34582 13.97626 -5.64712 + -6.16733 15.48914 -5.49961 + -4.86703 17.02181 -5.35116 + -3.44331 18.57432 -5.20198 + -1.89461 20.14670 -5.05226 + -1.89461 20.14669 -5.05226 + -0.22104 21.69585 -4.90222 + 1.57726 23.26481 -4.75215 + 3.50186 24.85352 -4.60234 + 5.55434 26.46187 -4.45308 + 7.73628 28.08974 -4.30469 + 7.73609 28.09126 -4.30469 + 11.22115 24.23640 -4.06030 + 14.21279 20.68888 -3.82074 + 16.75152 17.44142 -3.58711 + 18.87679 14.48529 -3.36051 + 20.62676 11.81029 -3.14205 + 20.62668 11.81506 -3.14205 + 22.01944 9.11954 -2.93264 + 23.06979 6.67685 -2.73270 + 23.81060 4.47411 -2.54256 + 24.27296 2.49795 -2.36254 + 24.48618 0.73461 -2.19296 + 24.48617 0.74037 -2.19296 + 24.47529 -0.87167 -2.03403 + 24.26189 -2.29984 -1.88562 + 23.86955 -3.55810 -1.74757 + 23.32001 -4.66022 -1.61971 + 22.63317 -5.61970 -1.50188 + 22.63411 -5.62155 -1.50188 + 22.03823 -6.28443 -1.41995 + 21.37946 -6.88028 -1.34334 + 20.66468 -7.40102 -1.27190 + 19.90290 -7.81246 -1.20543 + 19.10645 -8.09596 -1.14378 + 19.10571 -8.09829 -1.14378 + 18.28503 -8.29638 -1.08676 + 17.45007 -8.38537 -1.03416 + 16.61130 -8.37389 -0.98577 + 15.77836 -8.27022 -0.94140 + 14.96007 -8.08219 -0.90084 + 14.95998 -8.07822 -0.90084 + 13.98142 -8.21367 -0.85693 + 12.99268 -8.24967 -0.81788 + 12.00502 -8.19750 -0.78336 + 11.02839 -8.06765 -0.75301 + 10.07151 -7.86974 -0.72651 + 10.07157 -7.86622 -0.72651 + 9.14022 -7.64733 -0.70350 + 8.23825 -7.37761 -0.68368 + 7.37133 -7.06437 -0.66673 + 6.54428 -6.71416 -0.65236 + 5.76118 -6.33282 -0.64027 + 5.76123 -6.33079 -0.64027 + 5.02385 -5.95504 -0.63016 + 4.33287 -5.55810 -0.62180 + 3.69059 -5.14388 -0.61496 + 3.09889 -4.71580 -0.60943 + 2.55924 -4.27671 -0.60497 + 2.55928 -4.27578 -0.60497 + 2.07142 -3.85402 -0.60138 + 1.63458 -3.42574 -0.59852 + 1.24944 -2.99253 -0.59623 + 0.91652 -2.55562 -0.59440 + 0.63620 -2.11597 -0.59288 + 0.63622 -2.11571 -0.59288 + 0.40755 -1.69517 -0.59157 + 0.22944 -1.27310 -0.59039 + 0.10205 -0.84978 -0.58932 + 0.02553 -0.42539 -0.58829 + 0.00000 -0.00002 -0.58727 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2356,7 +2335,7 @@ Method c,phi,delta 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil initial [TABLE] DataCount=4 [COLUMN INDICATION] @@ -2405,7 +2384,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=37 +DataCount=27 [COLUMN INDICATION] Slide plane position Theta min @@ -2421,25 +2400,15 @@ Q max -2.00000 63.69300 32.72100 409.67280 2.75184 -2.10000 64.10100 32.80200 443.29026 3.39894 -2.40000 65.00100 45.20900 544.77027 6.09875 - -2.50000 65.22700 44.82000 578.89397 7.67411 - -2.60000 65.42800 44.45800 613.19437 9.28655 - -2.70000 65.60700 44.11900 647.68270 10.93430 - -2.73000 65.65700 44.02200 658.06723 11.43527 - -2.80000 65.76700 43.80300 682.36786 12.61582 - -2.90000 65.91200 43.50600 717.25694 14.32978 - -3.00000 66.04400 43.22700 752.35574 16.07501 - -3.10000 66.16400 42.96400 787.66897 17.85049 - -3.20000 66.27400 42.71700 823.20058 19.65533 - -3.30000 66.37500 42.48300 858.95382 21.48872 - -3.37000 66.44100 42.32700 884.11447 22.78870 - -3.40000 66.46800 42.26200 894.93148 23.34996 + -2.93333 65.95800 43.41100 728.93299 14.90810 + -3.46667 74.66900 42.12200 918.85823 24.60595 -4.00000 74.00000 41.15700 1052.18120 35.07124 -4.66667 73.31900 40.25000 1226.80608 49.13412 -5.33333 72.76500 39.56700 1410.83388 64.22115 -6.00000 72.30800 39.03700 1604.65136 80.29055 -6.60000 72.34600 38.59600 1844.45824 95.58077 -7.20000 72.22200 38.23500 2119.78580 111.01971 - -7.80000 72.37200 37.93300 2399.57207 126.59516 + -7.60000 72.32700 38.02800 2306.09134 121.38875 -8.00000 72.41200 37.84300 2493.27556 131.81578 -8.66667 72.46200 36.89800 2888.77462 147.35478 -9.33333 73.34800 36.43100 3335.09078 162.60647 @@ -2456,7 +2425,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=36 +DataCount=26 [COLUMN INDICATION] Position Vertical stress @@ -2473,26 +2442,16 @@ Lambda passive -1.75000 37.49379 329.44390 5.11650 0.92965 0.13646 8.78663 -2.05000 42.28364 336.17462 6.47098 0.88735 0.15304 7.95047 -2.25000 43.97264 338.26670 8.99937 0.86976 0.20466 7.69266 - -2.45000 45.64829 341.23702 15.75361 0.85110 0.34511 7.47535 - -2.55000 46.47925 343.00397 16.12442 0.84161 0.34692 7.37972 - -2.65000 47.30491 344.88335 16.47748 0.83213 0.34832 7.29065 - -2.71500 47.83856 346.15088 16.69913 0.82599 0.34907 7.23581 - -2.76500 48.24736 347.15181 16.86493 0.82129 0.34955 7.19525 - -2.85000 48.93885 348.89087 17.13957 0.81338 0.35022 7.12912 - -2.95000 49.74660 350.98794 17.45231 0.80419 0.35082 7.05552 - -3.05000 50.54799 353.13236 17.75483 0.79518 0.35125 6.98608 - -3.15000 51.34293 355.31602 18.04836 0.78635 0.35153 6.92045 - -3.25000 52.13136 357.53247 18.33392 0.77774 0.35169 6.85830 - -3.33500 52.79642 359.43785 18.57120 0.77059 0.35175 6.80800 - -3.38500 53.18544 360.56688 18.70860 0.76646 0.35176 6.77943 - -3.70000 55.59962 262.08288 19.53546 0.74180 0.35136 4.71375 + -2.66667 47.44197 345.30510 16.51753 0.83055 0.34816 7.27847 + -3.20000 51.73796 356.10983 18.18347 0.78202 0.35145 6.88295 + -3.73333 55.85145 249.98058 19.62242 0.73933 0.35133 4.47581 -4.33333 60.27306 261.93731 21.09432 0.69926 0.34998 4.34584 -5.00000 64.96505 276.04170 22.63055 0.66367 0.34835 4.24908 -5.66667 69.46602 290.72623 24.10410 0.63585 0.34699 4.18516 -6.30000 72.09955 399.67812 25.48371 0.56133 0.35345 5.54342 -6.90000 72.91255 458.87926 25.73155 0.54692 0.35291 6.29356 - -7.50000 73.64462 466.31045 25.95909 0.53469 0.35249 6.33190 - -7.90000 74.09551 468.51747 26.10313 0.52759 0.35229 6.32316 + -7.40000 73.52753 465.76386 25.92261 0.53659 0.35256 6.33455 + -7.80000 73.98529 467.96056 26.06759 0.52929 0.35233 6.32505 -8.33333 77.22245 593.24858 23.30849 0.42725 0.30184 7.68233 -9.00000 83.21622 669.47425 22.87754 0.41722 0.27492 8.04500 -9.66667 89.16370 680.59331 24.14739 0.40970 0.27082 7.63308 @@ -2508,7 +2467,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2535,146 +2494,86 @@ Status character 0.35313 0.00000 256.18613 26.30943 1 0 A 0.37578 0.00000 272.61870 27.99699 1 0 A 0.39864 0.00000 289.19765 29.69960 1 0 A - 0.42166 0.00000 305.90062 31.41493 1 0 A - 0.50633 0.00000 322.70499 33.14068 110 0 - + 1.90347 0.00000 305.90062 31.41493 110 0 - + 3.96944 0.00000 322.70499 33.14068 110 0 - 4.52339 0.00000 291.25442 30.81563 1 0 A 4.76005 0.00000 306.49273 32.42789 1 0 A - 4.99753 0.00000 321.78394 34.04574 1 0 A - 5.23557 0.00000 337.11070 35.66736 1 0 A - 6.34277 0.00000 352.45733 37.29108 110 0 - - 8.38818 0.00000 367.80987 38.91543 110 0 - - 6.61727 0.00000 332.80807 37.14452 110 0 - - 6.85177 0.20000 334.15493 37.29485 110 0 - - 7.08622 0.40000 335.50149 37.44513 110 0 - - 7.32061 0.60000 336.84765 37.59538 110 0 - - 7.55493 0.80000 338.19334 37.74557 110 0 - - 7.78916 1.00000 339.53849 37.89570 110 0 - - 8.74029 1.00000 328.52854 37.14476 1 0 A - 8.84407 1.60000 332.42931 37.58580 1 0 A - 8.94766 2.20000 336.32300 38.02604 1 0 A - 9.11456 2.80000 340.20804 38.46530 110 0 - - 9.80401 3.40000 344.08300 38.90341 110 0 - - 10.49180 4.00000 347.94664 39.34025 110 0 - - 15.60959 4.00000 338.11747 38.49604 1 0 A - 15.66725 4.20000 339.36633 38.63823 1 0 A - 15.72484 4.40000 340.61381 38.78026 1 0 A - 15.78236 4.60000 341.85987 38.92213 1 0 A - 15.83982 4.80000 343.10448 39.06383 1 0 A - 15.89721 5.00000 344.34760 39.20537 1 0 A - 15.98050 5.00000 339.94253 38.76848 1 0 A - 16.03812 5.20000 341.16825 38.90826 1 0 A - 16.09567 5.40000 342.39245 39.04788 1 0 A - 16.15315 5.60000 343.61510 39.18731 1 0 A - 16.21055 5.80000 344.83617 39.32657 1 0 A - 16.26787 6.00000 346.05564 39.46564 1 0 A - 16.33392 6.00000 341.87857 39.02084 1 0 A - 16.39140 6.20000 343.08171 39.15816 1 0 A - 16.44880 6.40000 344.28321 39.29530 1 0 A - 16.50613 6.60000 345.48307 39.43225 1 0 A - 16.56337 6.80000 346.68125 39.56900 1 0 A - 16.62054 7.00000 347.87774 39.70557 1 0 A - 16.65622 7.00000 345.26138 39.41268 1 0 A - 16.67339 7.06000 345.61729 39.45331 1 0 A - 16.69055 7.12000 345.97306 39.49392 1 0 A - 16.70771 7.18000 346.32867 39.53451 1 0 A - 16.72486 7.24000 346.68412 39.57509 1 0 A - 16.74200 7.30000 347.03943 39.61565 1 0 A - 16.76495 7.30000 345.09392 39.39039 1 0 A - 16.80497 7.44000 345.91771 39.48442 1 0 A - 16.84495 7.58000 346.74066 39.57835 1 0 A - 16.88489 7.72000 347.56275 39.67219 1 0 A - 16.92479 7.86000 348.38399 39.76593 1 0 A - 16.96464 8.00000 349.20438 39.85957 1 0 A - 16.99730 8.00000 345.99487 39.47526 1 0 A - 17.05427 8.20000 347.15459 39.60757 1 0 A - 17.11116 8.40000 348.31255 39.73969 1 0 A - 17.16796 8.60000 349.46875 39.87160 1 0 A - 17.22467 8.80000 350.62316 40.00331 1 0 A - 17.28129 9.00000 351.77578 40.13481 1 0 A - 17.31089 9.00000 348.14393 39.68162 1 0 A - 17.36753 9.20000 349.28288 39.81143 1 0 A - 17.42407 9.40000 350.42003 39.94105 1 0 A - 17.48052 9.60000 351.55540 40.07046 1 0 A - 17.53689 9.80000 352.68896 40.19966 1 0 A - 17.59316 10.00000 353.82071 40.32866 1 0 A - 17.61437 10.00000 350.33869 39.87658 1 0 A - 17.67062 10.20000 351.45751 40.00392 1 0 A - 17.72678 10.40000 352.57453 40.13107 1 0 A - 17.78286 10.60000 353.68975 40.25800 1 0 A - 17.83884 10.80000 354.80316 40.38474 1 0 A - 17.89472 11.00000 355.91476 40.51126 1 0 A - 17.90892 11.00000 352.57099 40.06176 1 0 A - 17.96476 11.20000 353.67035 40.18668 1 0 A - 18.02052 11.40000 354.76791 40.31139 1 0 A - 18.07618 11.60000 355.86368 40.43590 1 0 A - 18.13174 11.80000 356.95764 40.56020 1 0 A - 18.18722 12.00000 358.04980 40.68430 1 0 A - 18.19557 12.00000 354.83439 40.23861 1 0 A - 18.25098 12.20000 355.91496 40.36115 1 0 A - 18.30630 12.40000 356.99375 40.48349 1 0 A - 18.36153 12.60000 358.07075 40.60562 1 0 A - 18.41666 12.80000 359.14597 40.72755 1 0 A - 18.47171 13.00000 360.21940 40.84928 1 0 A - 18.47508 13.00000 357.57736 40.47379 1 0 A - 18.51356 13.14000 358.32220 40.55810 1 0 A - 18.55200 13.28000 359.06618 40.64231 1 0 A - 18.59040 13.42000 359.80929 40.72642 1 0 A - 18.62875 13.56000 360.55154 40.81044 1 0 A - 18.66705 13.70000 361.29293 40.89435 1 0 A - 18.66761 13.70000 359.77682 40.67526 1 0 A - 18.68402 13.76000 360.09296 40.71100 1 0 A - 18.70041 13.82000 360.40895 40.74673 1 0 A - 18.71680 13.88000 360.72477 40.78243 1 0 A - 18.73318 13.94000 361.04044 40.81812 1 0 A - 18.74955 14.00000 361.35595 40.85379 1 0 A - 18.72812 14.00000 251.25169 39.53943 1 0 A - 19.05346 15.20000 255.61637 40.22630 1 0 A - 19.37558 16.40000 259.93797 40.90639 1 0 A - 19.69456 17.60000 264.21733 41.57983 1 0 A - 20.01047 18.80000 268.45538 42.24677 1 0 A - 20.35201 20.00000 272.65320 42.90738 110 0 - + 5.55488 0.00000 321.78394 34.04574 110 0 - + 7.51649 0.00000 337.11070 35.66736 110 0 - + 9.47997 0.00000 352.45733 37.29108 110 0 - + 11.44373 0.00000 367.80987 38.91543 110 0 - + 9.67282 0.00000 332.80807 37.14452 110 0 - + 9.89098 0.20000 334.15493 37.29485 110 0 - + 10.10908 0.40000 335.50149 37.44513 110 0 - + 10.32711 0.60000 336.84765 37.59538 110 0 - + 10.54507 0.80000 338.19334 37.74557 110 0 - + 10.76293 1.00000 339.53849 37.89570 110 0 - + 10.01199 1.00000 328.52854 37.14476 110 0 - + 10.65606 1.60000 332.42931 37.58580 110 0 - + 11.29901 2.20000 336.32300 38.02604 110 0 - + 11.94059 2.80000 340.20804 38.46530 110 0 - + 12.58058 3.40000 344.08300 38.90341 110 0 - + 13.21876 4.00000 347.94664 39.34025 110 0 - + 15.74774 4.00000 329.21243 37.56670 1 0 A + 16.05719 5.06667 335.68160 38.30490 1 0 A + 16.36463 6.13333 342.10864 39.03830 1 0 A + 16.66986 7.20000 348.48964 39.76644 1 0 A + 16.97275 8.26667 354.82168 40.48899 1 0 A + 17.27319 9.33333 361.10261 41.20571 1 0 A + 17.43644 9.33333 341.47985 38.79785 1 0 A + 17.73719 10.40000 347.36978 39.46705 1 0 A + 18.03536 11.46667 353.20919 40.13050 1 0 A + 18.33093 12.53333 358.99772 40.78818 1 0 A + 18.62390 13.60000 364.73537 41.44007 1 0 A + 19.38391 14.66667 370.42242 42.08622 110 0 - + 18.90779 14.66667 240.87647 39.78886 1 0 A + 19.19552 15.73333 244.54209 40.39436 1 0 A + 19.48074 16.80000 248.17564 40.99457 1 0 A + 19.83823 17.86667 251.77772 41.58957 110 0 - + 20.73761 18.93333 255.34899 42.17949 110 0 - + 21.62853 20.00000 258.89016 42.76443 110 0 - 20.24352 20.00000 251.37257 40.44650 1 0 A 20.58642 21.33333 255.63053 41.13162 1 0 A - 20.92586 22.66667 259.84548 41.80981 1 0 A - 21.32943 24.00000 264.01897 42.48134 110 0 - - 22.44854 25.33333 268.15254 43.14644 110 0 - - 23.55550 26.66667 272.24776 43.80537 110 0 - - 21.82255 26.66667 266.18593 41.57589 1 0 A - 22.38848 28.00000 270.15395 42.19566 110 0 - - 23.44116 29.33333 274.08745 42.81004 110 0 - - 24.48523 30.66667 277.98785 43.41925 110 0 - - 25.52189 32.00000 281.85656 44.02350 110 0 - - 26.55233 33.33333 285.69494 44.62302 110 0 - - 24.68196 33.33333 281.39699 42.75265 110 0 - - 25.68248 34.66667 285.14904 43.32270 110 0 - - 26.67955 36.00000 288.87375 43.88860 110 0 - - 27.67452 37.33333 292.57233 44.45052 110 0 - - 28.66872 38.66667 296.24593 45.00865 110 0 - - 29.66349 40.00000 299.89566 45.56316 110 0 - - 33.86342 40.00000 397.22463 40.22329 110 0 - - 34.12492 41.20000 398.22351 40.32443 110 0 - - 34.38610 42.40000 399.19892 40.42320 110 0 - - 34.64720 43.60000 400.15181 40.51969 110 0 - - 34.90850 44.80000 401.08309 40.61400 110 0 - - 35.17025 46.00000 401.99366 40.70620 110 0 - - 34.12549 46.00000 456.39150 39.66145 110 0 - - 34.38556 47.20000 457.40272 39.74933 110 0 - - 34.64628 48.40000 458.39230 39.83532 110 0 - - 34.90752 49.60000 459.36115 39.91952 110 0 - - 35.16916 50.80000 460.31012 40.00199 110 0 - - 35.43110 52.00000 461.24003 40.08280 110 0 - - 34.53412 52.00000 464.05019 39.18583 110 0 - - 34.79439 53.20000 464.96740 39.26328 110 0 - - 35.05435 54.40000 465.86701 39.33924 110 0 - - 35.31350 55.60000 466.74976 39.41379 110 0 - - 35.57133 56.80000 467.61637 39.48696 110 0 - - 35.82732 58.00000 468.46750 39.55884 110 0 - - 35.30202 58.00000 467.82049 39.03353 110 0 - - 35.38653 58.40000 468.10050 39.05690 110 0 - - 35.47074 58.80000 468.37888 39.08012 110 0 - - 35.55462 59.20000 468.65567 39.10322 110 0 - - 35.63813 59.60000 468.93089 39.12618 110 0 - - 35.72125 60.00000 469.20456 39.14902 110 0 - + 21.42506 22.66667 259.84548 41.80981 110 0 - + 22.46607 24.00000 264.01897 42.48134 110 0 - + 23.49753 25.33333 268.15254 43.14644 110 0 - + 24.52041 26.66667 272.24776 43.80537 110 0 - + 22.29093 26.66667 266.18593 41.57589 110 0 - + 23.27302 28.00000 270.15395 42.19566 110 0 - + 24.24905 29.33333 274.08745 42.81004 110 0 - + 25.22023 30.66667 277.98785 43.41925 110 0 - + 26.18777 32.00000 281.85656 44.02350 110 0 - + 27.15287 33.33333 285.69494 44.62302 110 0 - + 25.28250 33.33333 281.39699 42.75265 110 0 - + 26.22144 34.66667 285.14904 43.32270 110 0 - + 27.16065 36.00000 288.87375 43.88860 110 0 - + 28.10139 37.33333 292.57233 44.45052 110 0 - + 29.04491 38.66667 296.24593 45.00865 110 0 - + 29.99247 40.00000 299.89566 45.56316 110 0 - + 33.99501 40.00000 397.22463 40.22329 110 0 - + 34.24068 41.20000 398.22351 40.32443 110 0 - + 34.48708 42.40000 399.19892 40.42320 110 0 - + 34.73444 43.60000 400.15181 40.51969 110 0 - + 34.98298 44.80000 401.08309 40.61400 110 0 - + 35.23293 46.00000 401.99366 40.70620 110 0 - + 34.18818 46.00000 456.39150 39.66145 110 0 - + 34.43739 47.20000 457.40272 39.74933 110 0 - + 34.68812 48.40000 458.39230 39.83532 110 0 - + 34.94024 49.60000 459.36115 39.91952 110 0 - + 35.19359 50.80000 460.31012 40.00199 110 0 - + 35.44800 52.00000 461.24003 40.08280 110 0 - + 34.69042 52.00000 464.24436 39.32522 110 0 - + 34.85951 52.80000 464.85808 39.37721 110 0 - + 35.02883 53.60000 465.46387 39.42852 110 0 - + 35.19825 54.40000 466.06194 39.47918 110 0 - + 35.36763 55.20000 466.65252 39.52921 110 0 - + 35.53681 56.00000 467.23581 39.57862 110 0 - + 34.99831 56.00000 466.53499 39.04012 110 0 - + 35.16649 56.80000 467.11034 39.08826 110 0 - + 35.33412 57.60000 467.67882 39.13583 110 0 - + 35.50098 58.40000 468.24064 39.18285 110 0 - + 35.66685 59.20000 468.79599 39.22932 110 0 - + 35.83151 60.00000 469.34504 39.27526 110 0 - 22.39747 60.00000 570.06119 31.70362 1 0 A 22.76245 61.33333 579.35075 32.22025 1 0 A 23.12666 62.66667 588.62068 32.73579 1 0 A @@ -2696,45 +2595,45 @@ Status character 24.65817 80.00000 704.59446 37.27957 1 0 A 24.89542 81.00000 711.37389 37.63827 1 0 A 25.13250 82.00000 718.14822 37.99669 1 0 A - 25.86952 83.00000 724.91767 38.35486 110 0 - - 26.87965 84.00000 731.68242 38.71278 110 0 - - 27.84137 85.00000 738.44269 39.07046 110 0 - - 27.51214 85.00000 733.92698 38.74123 110 0 - - 28.42440 86.00000 740.64163 39.09567 110 0 - - 29.29235 87.00000 747.35219 39.44989 110 0 - - 30.11808 88.00000 754.05884 39.80391 110 0 - - 30.90364 89.00000 760.76175 40.15773 110 0 - - 31.65112 90.00000 767.46107 40.51136 110 0 - - 23.49307 90.00000 1138.32862 32.35331 110 0 - - 24.25725 91.20000 1150.24600 32.69202 110 0 - - 24.97305 92.40000 1162.15647 33.03054 110 0 - - 25.64392 93.60000 1174.06042 33.36887 110 0 - - 26.27331 94.80000 1185.95820 33.70703 110 0 - - 26.86467 96.00000 1197.85018 34.04502 110 0 - - 26.54754 96.00000 1328.85910 33.72789 110 0 - - 27.10118 97.20000 1342.04563 34.06258 110 0 - - 27.62340 98.40000 1355.22644 34.39712 110 0 - - 28.11720 99.60000 1368.40187 34.73153 110 0 - - 28.58558 100.80000 1381.57227 35.06581 110 0 - - 29.03153 102.00000 1394.73793 35.39997 110 0 - - 28.76948 102.00000 1386.49119 35.13791 110 0 - - 29.19342 103.20000 1399.57462 35.46949 110 0 - - 29.60018 104.40000 1412.65393 35.80096 110 0 - - 29.99198 105.60000 1425.72941 36.13233 110 0 - - 30.37101 106.80000 1438.80132 36.46361 110 0 - - 30.73946 108.00000 1451.86992 36.79481 110 0 - - 30.52389 108.00000 1447.10285 36.57924 110 0 - - 30.88189 109.20000 1460.12548 36.90842 110 0 - - 31.23283 110.40000 1473.14530 37.23753 110 0 - - 31.57803 111.60000 1486.16251 37.56657 110 0 - - 31.91879 112.80000 1499.17734 37.89555 110 0 - - 32.25643 114.00000 1512.18999 38.22448 110 0 - - 32.08013 114.00000 1424.99033 38.04818 110 0 - - 32.41427 115.20000 1437.25075 38.37554 110 0 - - 32.74702 116.40000 1449.50947 38.70286 110 0 - - 33.07881 117.60000 1461.76667 39.03013 110 0 - - 33.41005 118.80000 1474.02252 39.35737 110 0 - - 33.74120 120.00000 1486.27716 39.68458 110 0 - + 25.63590 83.00000 724.91767 38.35486 110 0 - + 26.65844 84.00000 731.68242 38.71278 110 0 - + 27.63262 85.00000 738.44269 39.07046 110 0 - + 27.30339 85.00000 733.92698 38.74123 110 0 - + 28.22807 86.00000 740.64163 39.09567 110 0 - + 29.10834 87.00000 747.35219 39.44989 110 0 - + 29.94623 88.00000 754.05884 39.80391 110 0 - + 30.74376 89.00000 760.76175 40.15773 110 0 - + 31.50296 90.00000 767.46107 40.51136 110 0 - + 23.34490 90.00000 1138.32862 32.35331 110 0 - + 24.12274 91.20000 1150.24600 32.69202 110 0 - + 24.85174 92.40000 1162.15647 33.03054 110 0 - + 25.53531 93.60000 1174.06042 33.36887 110 0 - + 26.17690 94.80000 1185.95820 33.70703 110 0 - + 26.77992 96.00000 1197.85018 34.04502 110 0 - + 26.46279 96.00000 1328.85910 33.72789 110 0 - + 27.02755 97.20000 1342.04563 34.06258 110 0 - + 27.56036 98.40000 1355.22644 34.39712 110 0 - + 28.06425 99.60000 1368.40187 34.73153 110 0 - + 28.54223 100.80000 1381.57227 35.06581 110 0 - + 28.99731 102.00000 1394.73793 35.39997 110 0 - + 28.73526 102.00000 1386.49119 35.13791 110 0 - + 29.16789 103.20000 1399.57462 35.46949 110 0 - + 29.58295 104.40000 1412.65393 35.80096 110 0 - + 29.98268 105.60000 1425.72941 36.13233 110 0 - + 30.36931 106.80000 1438.80132 36.46361 110 0 - + 30.74508 108.00000 1451.86992 36.79481 110 0 - + 30.52951 108.00000 1447.10285 36.57924 110 0 - + 30.89457 109.20000 1460.12548 36.90842 110 0 - + 31.25238 110.40000 1473.14530 37.23753 110 0 - + 31.60426 111.60000 1486.16251 37.56657 110 0 - + 31.95156 112.80000 1499.17734 37.89555 110 0 - + 32.29563 114.00000 1512.18999 38.22448 110 0 - + 32.11933 114.00000 1424.99033 38.04818 110 0 - + 32.45985 115.20000 1437.25075 38.37554 110 0 - + 32.79892 116.40000 1449.50947 38.70286 110 0 - + 33.13698 117.60000 1461.76667 39.03013 110 0 - + 33.47449 118.80000 1474.02252 39.35737 110 0 - + 33.81190 120.00000 1486.27716 39.68458 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2747,10 +2646,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 83.860 'Clay' - -6.00 69.789 'Peat' - -8.00 74.622 'Sand 1' - -11.00 88.322 'Sand 2' + 0.00 87.323 'Clay' + -6.00 69.868 'Peat' + -8.00 74.477 'Sand 1' + -11.00 88.256 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2768,9 +2667,9 @@ Method Ka,K0,Kp 0.00 -2.40 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 1 passive +Soil initial [TABLE] -DataCount=14 +DataCount=4 [COLUMN INDICATION] Level top layer Excess pore top @@ -2787,17 +2686,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -2.40 0.00 0.00 15.00 16.00 0.63 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.4m à -2.5m' - -2.50 0.00 0.00 15.00 16.00 1.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.5m à -2.6m' - -2.60 0.00 0.00 15.00 16.00 1.88 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.6m à -2.7m' - -2.70 0.00 0.00 15.00 16.00 2.50 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.7m à -2.8m' - -2.80 0.00 0.00 15.00 16.00 3.13 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.9m à -3.0m' - -2.90 0.00 0.00 15.00 16.00 3.75 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.0m à -3.1m' - -3.00 0.00 0.00 15.00 16.00 4.38 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.1m à -3.2m' - -3.10 0.00 0.00 15.00 16.00 5.00 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.2m à -3.3m' - -3.20 0.00 0.00 15.00 16.00 5.63 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.3m à -3.4m' - -3.30 0.00 0.00 15.00 16.00 5.63 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -3.4m à -3.5m' - -3.40 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 0.00 0.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -2805,10 +2694,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -14 : Number of layers +4 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=14 +DataCount=4 [COLUMN INDICATION] Layer Branch @@ -2817,19 +2706,9 @@ Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] 1 1 2000.00000 2000.00000 - 2 1 2000.00000 2000.00000 - 3 1 2000.00000 2000.00000 - 4 1 2000.00000 2000.00000 - 5 1 2000.00000 2000.00000 - 6 1 2000.00000 2000.00000 - 7 1 2000.00000 2000.00000 - 8 1 2000.00000 2000.00000 - 9 1 2000.00000 2000.00000 - 10 1 2000.00000 2000.00000 - 11 1 2000.00000 2000.00000 - 12 1 800.00000 800.00000 - 13 1 10000.00000 10000.00000 - 14 1 10000.00000 10000.00000 + 2 1 800.00000 800.00000 + 3 1 10000.00000 10000.00000 + 4 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -2837,7 +2716,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2884,212 +2763,142 @@ Status character 0.00000 2.80000 0.00000 0.00000 -1 0 - 0.00000 3.40000 0.00000 0.00000 -1 0 - 0.00000 4.00000 0.00000 0.00000 -1 0 - - 2.54763 4.00000 2.54763 0.00000 202 100 P - 3.03821 4.20000 3.03821 0.06809 202 100 P - 3.52879 4.40000 3.52879 0.13619 202 100 P - 4.01937 4.60000 4.01937 0.20428 202 100 P - 4.50995 4.80000 4.50995 0.27237 202 100 P - 5.00053 5.00000 5.00053 0.34047 202 100 P - 7.50772 5.00000 7.50772 0.34047 202 100 P - 7.99830 5.20000 7.99830 0.40856 202 100 P - 8.48889 5.40000 8.48889 0.47665 202 100 P - 8.97947 5.60000 8.97947 0.54474 202 100 P - 9.47005 5.80000 9.47005 0.61284 202 100 P - 9.96063 6.00000 9.96063 0.68093 202 100 P - 12.50826 6.00000 12.50826 0.68093 202 100 P - 12.99884 6.20000 12.99884 0.74902 202 100 P - 13.48942 6.40000 13.48942 0.81712 202 100 P - 13.98000 6.60000 13.98000 0.88521 202 100 P - 14.47058 6.80000 14.47058 0.95330 202 100 P - 14.96117 7.00000 14.96117 1.02140 202 100 P - 17.46835 7.00000 17.46835 1.02140 202 100 P - 17.61553 7.06000 17.61553 1.04182 202 100 P - 17.76270 7.12000 17.76270 1.06225 202 100 P - 17.90988 7.18000 17.90988 1.08268 202 100 P - 18.05705 7.24000 18.05705 1.10311 202 100 P - 18.20423 7.30000 18.20423 1.12354 202 100 P - 18.20423 7.30000 18.20423 1.12354 202 100 P - 18.54763 7.44000 18.54763 1.17120 202 100 P - 18.89104 7.58000 18.89104 1.21887 202 100 P - 19.23445 7.72000 19.23445 1.26653 202 100 P - 19.57785 7.86000 19.57785 1.31420 202 100 P - 19.92126 8.00000 19.92126 1.36186 202 100 P - 22.46889 8.00000 22.46889 1.36186 202 100 P - 22.95947 8.20000 22.95947 1.42995 202 100 P - 23.45005 8.40000 23.45005 1.49805 202 100 P - 23.94063 8.60000 23.94063 1.56614 202 100 P - 24.43121 8.80000 24.43121 1.63423 202 100 P - 24.92180 9.00000 24.92180 1.70233 202 100 P - 27.42898 9.00000 27.42898 1.70233 202 100 P - 27.91957 9.20000 27.91957 1.77042 202 100 P - 28.41015 9.40000 28.41015 1.83851 202 100 P - 28.44559 9.60000 28.90073 1.90661 110 98 - - 28.43279 9.80000 29.39131 1.97470 110 97 - - 28.42012 10.00000 29.88189 2.04279 110 95 - - 28.42012 10.00000 32.42952 2.04279 110 88 - - 28.40760 10.20000 32.92010 2.11088 110 86 - - 28.39522 10.40000 33.41068 2.17898 110 85 - - 28.38300 10.60000 33.90126 2.24707 110 84 - - 28.37092 10.80000 34.39185 2.31516 110 82 - - 28.35899 11.00000 34.88243 2.38326 110 81 - - 28.35899 11.00000 37.38961 2.38326 110 76 - - 28.34722 11.20000 37.88020 2.45135 110 75 - - 28.33560 11.40000 38.37078 2.51944 110 74 - - 28.32415 11.60000 38.86136 2.58754 110 73 - - 28.31285 11.80000 39.35194 2.65563 110 72 - - 28.30172 12.00000 39.84252 2.72372 110 71 - - 28.30172 12.00000 42.39015 2.72372 110 67 - - 28.29075 12.20000 42.88073 2.79182 110 66 - - 28.27995 12.40000 43.37131 2.85991 110 65 - - 28.26932 12.60000 43.86189 2.92800 110 64 - - 28.25886 12.80000 44.35248 2.99609 110 64 - - 28.24857 13.00000 44.84306 3.06419 110 63 - - 28.24857 13.00000 44.84306 3.06419 110 63 - - 28.24147 13.14000 45.18646 3.11185 110 62 - - 28.23445 13.28000 45.52987 3.15952 110 62 - - 28.22752 13.42000 45.87328 3.20718 110 62 - - 28.22067 13.56000 46.21669 3.25485 110 61 - - 28.21392 13.70000 46.56009 3.30251 110 61 - - 28.21392 13.70000 46.56009 3.30251 110 61 - - 28.21105 13.76000 46.70727 3.32294 110 60 - - 28.20819 13.82000 46.85444 3.34337 110 60 - - 28.20535 13.88000 47.00162 3.36380 110 60 - - 28.20253 13.94000 47.14879 3.38422 110 60 - - 28.19973 14.00000 47.29597 3.40465 110 60 - - 28.19973 14.00000 49.80315 3.40465 110 57 - - 28.14709 15.20000 52.74664 3.81321 110 53 - - 28.10108 16.40000 55.69014 4.22177 110 50 - - 28.06169 17.60000 58.63363 4.63033 110 48 - - 28.02894 18.80000 61.57712 5.03889 110 46 - - 28.00282 20.00000 64.52061 5.44744 110 43 - - 28.00282 20.00000 64.52061 5.44744 110 43 - - 27.98149 21.33333 67.79115 5.90140 110 41 - - 27.96781 22.66667 71.06170 6.35535 110 39 - - 27.96122 24.00000 74.33224 6.80931 110 38 - - 27.96116 25.33333 77.60279 7.26326 110 36 - - 27.96709 26.66667 80.87333 7.71721 110 35 - - 27.96709 26.66667 80.87333 7.71721 110 35 - - 27.97834 28.00000 84.14388 8.17117 110 33 - - 27.99400 29.33333 87.41442 8.62512 110 32 - - 28.01309 30.66667 90.68497 9.07907 110 31 - - 28.03464 32.00000 93.95551 9.53303 110 30 - - 28.05767 33.33333 97.22606 9.98698 110 29 - - 28.05767 33.33333 97.22606 9.98698 110 29 - - 28.08116 34.66667 100.49660 10.44093 110 28 - - 28.10394 36.00000 103.76715 10.89489 110 27 - - 28.12485 37.33333 107.03769 11.34884 110 26 - - 28.14273 38.66667 110.30824 11.80280 110 26 - - 28.15642 40.00000 113.57878 12.25675 110 25 - - 17.26779 40.00000 111.22007 10.90792 110 16 - - 17.16803 41.20000 111.77806 10.96852 110 15 - - 17.06623 42.40000 112.33605 11.02912 110 15 - - 16.96221 43.60000 112.89405 11.08972 110 15 - - 16.85581 44.80000 113.45204 11.15032 110 15 - - 16.74687 46.00000 114.01003 11.21092 110 15 - - 16.74687 46.00000 114.01003 11.21092 110 15 - - 16.63528 47.20000 114.56802 11.27152 110 15 - - 16.52116 48.40000 115.12601 11.33212 110 14 - - 16.40472 49.60000 115.68400 11.39271 110 14 - - 16.28614 50.80000 116.24199 11.45331 110 14 - - 16.16561 52.00000 116.79998 11.51391 110 14 - - 16.16561 52.00000 116.79998 11.51391 110 14 - - 16.04340 53.20000 117.35797 11.57451 110 14 - - 15.92001 54.40000 117.91596 11.63511 110 14 - - 15.79600 55.60000 118.47395 11.69571 110 13 - - 15.67195 56.80000 119.03194 11.75631 110 13 - - 15.54842 58.00000 119.58993 11.81691 110 13 - - 15.54842 58.00000 119.58993 11.81691 110 13 - - 15.50747 58.40000 119.77592 11.83711 110 13 - - 15.46669 58.80000 119.96192 11.85731 110 13 - - 15.42611 59.20000 120.14792 11.87751 110 13 - - 15.38576 59.60000 120.33391 11.89771 110 13 - - 15.34567 60.00000 120.51991 11.91791 110 13 - - 52.27384 60.00000 338.15964 9.42679 110 15 - - 50.27126 61.33333 355.35420 9.90612 110 14 - - 48.32404 62.66667 372.54876 10.38545 110 13 - - 46.44262 64.00000 389.74331 10.86477 110 12 - - 44.63743 65.33333 406.93787 11.34410 110 11 - - 42.91889 66.66667 424.13243 11.82343 110 10 - - 42.91889 66.66667 424.13243 11.82343 110 10 - - 41.29571 68.00000 441.32699 12.30276 110 9 - - 39.77147 69.33333 458.52155 12.78209 110 9 - - 38.34900 70.66667 475.71610 13.26142 110 8 - - 37.03108 72.00000 492.91066 13.74074 110 8 - - 35.82053 73.33333 510.10522 14.22007 110 7 - - 35.82053 73.33333 510.10522 14.22007 110 7 - - 34.71891 74.66667 527.29978 14.69940 110 7 - - 33.72461 76.00000 544.49434 15.17873 110 6 - - 32.83565 77.33333 561.68889 15.65806 110 6 - - 32.05009 78.66667 578.88345 16.13738 110 6 - - 31.36594 80.00000 596.07801 16.61671 110 5 - - 31.36594 80.00000 596.07801 16.61671 110 5 - - 30.91779 81.00000 608.97393 16.97621 110 5 - - 30.52326 82.00000 621.86985 17.33571 110 5 - - 30.18054 83.00000 634.76577 17.69520 110 5 - - 29.88782 84.00000 647.66168 18.05470 110 5 - - 29.64328 85.00000 660.55760 18.41419 110 4 - - 29.64328 85.00000 660.55760 18.41419 110 4 - - 29.44495 86.00000 673.45352 18.77369 110 4 - - 29.29072 87.00000 686.34944 19.13319 110 4 - - 29.17852 88.00000 699.24536 19.49268 110 4 - - 29.10627 89.00000 712.14128 19.85218 110 4 - - 29.07191 90.00000 725.03720 20.21167 110 4 - - 24.76426 90.00000 634.76799 15.90402 110 4 - - 24.67824 91.20000 648.31640 16.24347 110 4 - - 24.64041 92.40000 661.86481 16.58293 110 4 - - 24.64733 93.60000 675.41322 16.92238 110 4 - - 24.69555 94.80000 688.96162 17.26183 110 4 - - 24.78163 96.00000 702.51003 17.60129 110 4 - - 24.78163 96.00000 702.51003 17.60129 110 4 - - 24.90214 97.20000 716.05844 17.94074 110 3 - - 25.05391 98.40000 729.60685 18.28019 110 3 - - 25.23397 99.60000 743.15526 18.61965 110 3 - - 25.43933 100.80000 756.70366 18.95910 110 3 - - 25.66699 102.00000 770.25207 19.29855 110 3 - - 25.66699 102.00000 770.25207 19.29855 110 3 - - 25.91408 103.20000 783.80048 19.63801 110 3 - - 26.17823 104.40000 797.34889 19.97746 110 3 - - 26.45726 105.60000 810.89729 20.31691 110 3 - - 26.74897 106.80000 824.44570 20.65637 110 3 - - 27.05117 108.00000 837.99411 20.99582 110 3 - - 27.05117 108.00000 837.99411 20.99582 110 3 - - 27.36180 109.20000 851.54252 21.33527 110 3 - - 27.67942 110.40000 865.09093 21.67473 110 3 - - 28.00272 111.60000 878.63933 22.01418 110 3 - - 28.33040 112.80000 892.18774 22.35363 110 3 - - 28.66114 114.00000 905.73615 22.69309 110 3 - - 28.66114 114.00000 905.73615 22.69309 110 3 - - 28.99381 115.20000 919.28456 23.03254 110 3 - - 29.32783 116.40000 932.83296 23.37199 110 3 - - 29.66277 117.60000 946.38137 23.71145 110 3 - - 29.99822 118.80000 959.92978 24.05090 110 3 - - 30.33374 120.00000 973.47819 24.39035 110 3 - + 25.27407 4.00000 25.27407 0.00000 202 100 P + 26.12831 5.06667 27.89050 0.36316 110 94 - + 26.13754 6.13333 30.50694 0.72633 110 86 - + 26.14953 7.20000 33.12337 1.08949 110 79 - + 26.16462 8.26667 35.73981 1.45265 110 73 - + 26.18317 9.33333 38.35625 1.81581 110 68 - + 26.18317 9.33333 38.35625 1.81581 110 68 - + 26.20546 10.40000 40.97268 2.17898 110 64 - + 26.23161 11.46667 43.58912 2.54214 110 60 - + 26.26170 12.53333 46.20555 2.90530 110 57 - + 26.29578 13.60000 48.82199 3.26847 110 54 - + 26.33394 14.66667 51.43843 3.63163 110 51 - + 26.33394 14.66667 51.43843 3.63163 110 51 - + 26.37619 15.73333 54.05486 3.99479 110 49 - + 26.42242 16.80000 56.67130 4.35796 110 47 - + 26.47246 17.86667 59.28773 4.72112 110 45 - + 26.52616 18.93333 61.90417 5.08428 110 43 - + 26.58334 20.00000 64.52061 5.44744 110 41 - + 26.58334 20.00000 64.52061 5.44744 110 41 - + 26.65945 21.33333 67.79115 5.90140 110 39 - + 26.74010 22.66667 71.06170 6.35535 110 38 - + 26.82458 24.00000 74.33224 6.80931 110 36 - + 26.91217 25.33333 77.60279 7.26326 110 35 - + 27.00217 26.66667 80.87333 7.71721 110 33 - + 27.00217 26.66667 80.87333 7.71721 110 33 - + 27.09381 28.00000 84.14388 8.17117 110 32 - + 27.18611 29.33333 87.41442 8.62512 110 31 - + 27.27809 30.66667 90.68497 9.07907 110 30 - + 27.36876 32.00000 93.95551 9.53303 110 29 - + 27.45714 33.33333 97.22606 9.98698 110 28 - + 27.45714 33.33333 97.22606 9.98698 110 28 - + 27.54219 34.66667 100.49660 10.44093 110 27 - + 27.62284 36.00000 103.76715 10.89489 110 27 - + 27.69798 37.33333 107.03769 11.34884 110 26 - + 27.76654 38.66667 110.30824 11.80280 110 25 - + 27.82744 40.00000 113.57878 12.25675 110 25 - + 17.13619 40.00000 111.22007 10.90792 110 15 - + 17.05227 41.20000 111.77806 10.96852 110 15 - + 16.96524 42.40000 112.33605 11.02912 110 15 - + 16.87498 43.60000 112.89405 11.08972 110 15 - + 16.78133 44.80000 113.45204 11.15032 110 15 - + 16.68418 46.00000 114.01003 11.21092 110 15 - + 16.68418 46.00000 114.01003 11.21092 110 15 - + 16.58345 47.20000 114.56802 11.27152 110 14 - + 16.47931 48.40000 115.12601 11.33212 110 14 - + 16.37199 49.60000 115.68400 11.39271 110 14 - + 16.26171 50.80000 116.24199 11.45331 110 14 - + 16.14871 52.00000 116.79998 11.51391 110 14 - + 16.14871 52.00000 116.79998 11.51391 110 14 - + 16.07201 52.80000 117.17197 11.55431 110 14 - + 15.99440 53.60000 117.54396 11.59471 110 14 - + 15.91604 54.40000 117.91596 11.63511 110 13 - + 15.83709 55.20000 118.28795 11.67551 110 13 - + 15.75772 56.00000 118.65994 11.71591 110 13 - + 15.75772 56.00000 118.65994 11.71591 110 13 - + 15.67809 56.80000 119.03194 11.75631 110 13 - + 15.59843 57.60000 119.40393 11.79671 110 13 - + 15.51898 58.40000 119.77592 11.83711 110 13 - + 15.43998 59.20000 120.14792 11.87751 110 13 - + 15.36166 60.00000 120.51991 11.91791 110 13 - + 52.47370 60.00000 338.15964 9.42679 110 16 - + 50.50910 61.33333 355.35420 9.90612 110 14 - + 48.59281 62.66667 372.54876 10.38545 110 13 - + 46.73584 64.00000 389.74331 10.86477 110 12 - + 44.94919 65.33333 406.93787 11.34410 110 11 - + 43.24388 66.66667 424.13243 11.82343 110 10 - + 43.24388 66.66667 424.13243 11.82343 110 10 - + 41.62916 68.00000 441.32699 12.30276 110 9 - + 40.10912 69.33333 458.52155 12.78209 110 9 - + 38.68702 70.66667 475.71610 13.26142 110 8 - + 37.36612 72.00000 492.91066 13.74074 110 8 - + 36.14968 73.33333 510.10522 14.22007 110 7 - + 36.14968 73.33333 510.10522 14.22007 110 7 - + 35.03970 74.66667 527.29978 14.69940 110 7 - + 34.03492 76.00000 544.49434 15.17873 110 6 - + 33.13371 77.33333 561.68889 15.65806 110 6 - + 32.33444 78.66667 578.88345 16.13738 110 6 - + 31.63548 80.00000 596.07801 16.61671 110 5 - + 31.63548 80.00000 596.07801 16.61671 110 5 - + 31.17567 81.00000 608.97393 16.97621 110 5 - + 30.76914 82.00000 621.86985 17.33571 110 5 - + 30.41416 83.00000 634.76577 17.69520 110 5 - + 30.10903 84.00000 647.66168 18.05470 110 5 - + 29.85203 85.00000 660.55760 18.41419 110 5 - + 29.85203 85.00000 660.55760 18.41419 110 5 - + 29.64129 86.00000 673.45352 18.77369 110 4 - + 29.47474 87.00000 686.34944 19.13319 110 4 - + 29.35036 88.00000 699.24536 19.49268 110 4 - + 29.26615 89.00000 712.14128 19.85218 110 4 - + 29.22008 90.00000 725.03720 20.21167 110 4 - + 24.91242 90.00000 634.76799 15.90402 110 4 - + 24.81275 91.20000 648.31640 16.24347 110 4 - + 24.76173 92.40000 661.86481 16.58293 110 4 - + 24.75594 93.60000 675.41322 16.92238 110 4 - + 24.79196 94.80000 688.96162 17.26183 110 4 - + 24.86639 96.00000 702.51003 17.60129 110 4 - + 24.86639 96.00000 702.51003 17.60129 110 4 - + 24.97577 97.20000 716.05844 17.94074 110 3 - + 25.11695 98.40000 729.60685 18.28019 110 3 - + 25.28692 99.60000 743.15526 18.61965 110 3 - + 25.48268 100.80000 756.70366 18.95910 110 3 - + 25.70121 102.00000 770.25207 19.29855 110 3 - + 25.70121 102.00000 770.25207 19.29855 110 3 - + 25.93960 103.20000 783.80048 19.63801 110 3 - + 26.19546 104.40000 797.34889 19.97746 110 3 - + 26.46656 105.60000 810.89729 20.31691 110 3 - + 26.75067 106.80000 824.44570 20.65637 110 3 - + 27.04555 108.00000 837.99411 20.99582 110 3 - + 27.04555 108.00000 837.99411 20.99582 110 3 - + 27.34912 109.20000 851.54252 21.33527 110 3 - + 27.65988 110.40000 865.09093 21.67473 110 3 - + 27.97650 111.60000 878.63933 22.01418 110 3 - + 28.29763 112.80000 892.18774 22.35363 110 3 - + 28.62193 114.00000 905.73615 22.69309 110 3 - + 28.62193 114.00000 905.73615 22.69309 110 3 - + 28.94823 115.20000 919.28456 23.03254 110 3 - + 29.27594 116.40000 932.83296 23.37199 110 3 - + 29.60460 117.60000 946.38137 23.71145 110 3 - + 29.93378 118.80000 959.92978 24.05090 110 3 - + 30.26303 120.00000 973.47819 24.39035 110 3 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=14 +DataCount=4 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -2.40 0.377 'Clay -2.4m à -2.5m' - -2.50 0.873 'Clay -2.5m à -2.6m' - -2.60 1.373 'Clay -2.6m à -2.7m' - -2.70 1.869 'Clay -2.7m à -2.8m' - -2.80 2.370 'Clay -2.9m à -3.0m' - -2.90 2.823 'Clay -3.0m à -3.1m' - -3.00 2.839 'Clay -3.1m à -3.2m' - -3.10 2.833 'Clay -3.2m à -3.3m' - -3.20 2.827 'Clay -3.3m à -3.4m' - -3.30 2.822 'Clay -3.4m à -3.5m' - -3.40 72.913 'Clay' - -6.00 32.688 'Peat' - -8.00 109.841 'Sand 1' - -11.00 80.119 'Sand 2' + 0.00 96.455 'Clay' + -6.00 32.609 'Peat' + -8.00 110.657 'Sand 1' + -11.00 80.185 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3097,7 +2906,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -3139,82 +2948,22 @@ Depth -2.34000 -2.40000 -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 - -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 + -2.50667 + -2.61333 + -2.72000 + -2.82667 + -2.93333 + -2.93333 -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 - -3.20000 - -3.20000 - -3.22000 - -3.24000 - -3.26000 - -3.28000 - -3.30000 - -3.30000 - -3.31400 - -3.32800 - -3.34200 - -3.35600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.14667 + -3.25333 + -3.36000 + -3.46667 + -3.46667 + -3.57333 + -3.68000 + -3.78667 + -3.89333 -4.00000 -4.00000 -4.13333 @@ -3247,16 +2996,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -3400,21 +3149,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.11 : Percentage mobilized resistance left - 4.57 : Percentage mobilized resistance right - 555.86 : Effective left - 395.64 : Effective right + 11.99 : Percentage mobilized resistance left + 4.54 : Percentage mobilized resistance right + 552.89 : Effective left + 392.67 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 4591.66 : Max effective resistance left - 8655.60 : Max effective resistance right --40705.77 : Max moment left --69926.36 : Max moment right --2694.20 : Max mobilized moment left --2814.07 : Max mobilized moment right - 209.56 : Vertical force left - 185.23 : Vertical force right - 6.6 : Max mobilized moment percentage left + 4612.66 : Max effective resistance left + 8655.55 : Max effective resistance right +-40733.09 : Max moment left +-69925.05 : Max moment right +-2662.75 : Max mobilized moment left +-2782.87 : Max mobilized moment right + 209.12 : Vertical force left + 183.42 : Vertical force right + 6.5 : Max mobilized moment percentage left 4.0 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support @@ -3423,229 +3172,169 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -262.20069 - 0.00000 0.00000 -256.70968 - 0.00000 0.00000 -251.21868 - 0.00000 0.00000 -245.72767 - 0.00000 0.00000 -240.23666 - 0.00000 0.00000 -234.74566 - 0.00000 0.00000 -234.74566 - 0.00000 0.00000 -229.25465 - 0.00000 0.00000 -223.76364 - 0.00000 0.00000 -218.27264 - 0.00000 0.00000 -212.78163 - 0.00000 0.00000 -207.29062 - 0.00003 239.99980 -207.29062 - 24.00170 240.03400 -201.80058 - 48.00691 240.07044 -196.31634 - 72.01587 240.10916 -190.84371 - 96.02881 240.15018 -185.38849 - 120.04598 240.19350 -179.95647 - 120.04592 160.48958 -179.95647 - 136.11789 160.95375 -174.55315 - 152.23746 161.44163 -169.18273 - 168.40700 161.95328 -163.84911 - 184.62891 162.48876 -158.55622 - 200.90555 163.04807 -153.30795 - 200.90503 163.04257 -153.30795 - 204.16717 163.17095 -152.26400 - 207.43188 163.29985 -151.22202 - 210.69917 163.42927 -150.18205 - 213.96905 163.55921 -149.14411 - 217.24154 163.68967 -148.10824 - 217.24163 163.68841 -148.10824 - 227.07531 164.04499 -145.01337 - 236.92030 164.06489 -141.93826 - 246.75631 163.74510 -138.88376 - 256.56282 163.08068 -135.85074 - 266.31896 162.06486 -132.84004 - 266.31886 162.06361 -132.84004 - 269.55991 162.03756 -131.84158 - 272.80022 161.98965 -130.84573 - 276.03935 161.91966 -129.85251 - 279.27686 161.82738 -128.86197 - 282.51230 161.71259 -127.87412 - 282.51230 161.71259 -127.87412 - 285.74586 161.64024 -126.88901 - 288.97778 161.54826 -125.90666 - 292.20766 161.43645 -124.92710 - 295.43510 161.30457 -123.95037 - 298.65970 161.15241 -122.97650 - 298.65970 161.15241 -122.97650 - 301.88161 161.03539 -122.00551 - 305.10100 160.90000 -121.03744 - 308.31749 160.74603 -120.07233 - 311.53071 160.57328 -119.11019 - 314.74029 160.38150 -118.15106 - 314.74029 160.38150 -118.15106 - 315.70243 160.33031 -117.86392 - 316.66425 160.27750 -117.57705 - 317.62575 160.22305 -117.29045 - 318.58693 160.16697 -117.00413 - 319.54776 160.10925 -116.71809 - 319.54776 160.10925 -116.71809 - 321.78662 159.72655 -116.05175 - 324.02003 159.32863 -115.38692 - 326.24775 158.91537 -114.72363 - 328.46959 158.48665 -114.06189 - 330.68531 158.04236 -113.40171 - 330.68531 158.04236 -113.40171 - 333.84052 157.47444 -112.46130 - 336.98409 156.87726 -111.52413 - 340.11542 156.25050 -110.59021 - 343.23391 155.59386 -109.65959 - 346.33897 154.90701 -108.73228 - 346.33897 154.90688 -108.73228 - 349.43085 154.27582 -107.80832 - 352.50982 153.61652 -106.88774 - 355.57532 152.92869 -105.97056 - 358.62677 152.21205 -105.05683 - 361.66361 151.46634 -104.14656 - 361.66360 151.46621 -104.14656 - 364.68510 150.67899 -103.23979 - 367.69056 149.86181 -102.33654 - 370.67938 149.01440 -101.43685 - 373.65094 148.13652 -100.54075 - 376.60463 147.22790 -99.64825 - 376.60463 147.22790 -99.64825 - 379.53912 146.21561 -98.75940 - 382.45304 145.17027 -97.87422 - 385.34571 144.09163 -96.99274 - 388.21648 142.97944 -96.11498 - 391.06466 141.83347 -95.24097 - 391.06466 141.83347 -95.24097 - 393.88819 140.51293 -94.37075 - 396.68493 139.15493 -93.50433 - 399.45413 137.75922 -92.64175 - 402.19505 136.32559 -91.78304 - 404.90690 134.85381 -90.92821 - 404.90690 134.85381 -90.92821 - 406.78657 133.66696 -90.33216 - 408.64948 132.45927 -89.73803 - 410.49533 131.23064 -89.14584 - 412.32384 129.98102 -88.55560 - 414.13470 128.71032 -87.96731 - 414.13470 128.71032 -87.96731 - 414.90510 128.08815 -87.71578 - 415.67175 127.46166 -87.46462 - 416.43463 126.83086 -87.21382 - 417.19372 126.19572 -86.96338 - 417.94897 125.55625 -86.71330 - 417.94824 125.56361 -86.71330 - 431.77484 105.03502 -81.78952 - 443.19307 85.41712 -77.01608 - 452.30974 66.66894 -72.39617 - 459.22681 48.75061 -67.93300 - 464.04152 31.62319 -63.62975 - 464.05699 31.53201 -63.62975 - 467.46567 19.40527 -59.03890 - 469.18058 6.12768 -54.64901 - 469.06098 -8.02142 -50.46002 - 467.04736 -22.03953 -46.47186 - 463.22092 -35.22190 -42.68447 - 463.20559 -35.30452 -42.68447 - 457.73749 -46.57977 -39.09698 - 450.81982 -57.05615 -35.70623 - 442.55588 -66.78190 -32.50868 - 433.04258 -75.80427 -29.50081 - 422.37061 -84.16959 -26.67910 - 422.37068 -84.14977 -26.67910 - 410.68154 -91.08394 -24.03944 - 398.10822 -97.41972 -21.57628 - 384.72760 -103.20068 -19.28388 - 370.61083 -108.46896 -17.15652 - 355.82352 -113.26530 -15.18845 - 355.82409 -113.25172 -15.18845 - 342.18622 -113.99540 -13.54830 - 328.47689 -114.44662 -12.02726 - 314.72988 -114.62667 -10.62054 - 300.97652 -114.55599 -9.32337 - 287.24569 -114.25416 -8.13096 - 287.24577 -114.24616 -8.13096 - 273.55786 -113.85185 -7.03853 - 259.92910 -113.26325 -6.04131 - 246.38177 -112.49738 -5.13459 - 232.93617 -111.57043 -4.31366 - 219.61070 -110.49771 -3.57381 - 219.61077 -110.49159 -3.57381 - 206.42097 -109.31765 -2.91035 - 193.37924 -108.02596 -2.31873 - 180.49894 -106.62935 -1.79448 - 167.79192 -105.13986 -1.33311 - 155.26864 -103.56868 -0.93014 - 155.26889 -103.56617 -0.93014 - 151.13800 -102.97715 -0.80802 - 147.03082 -102.38052 -0.69176 - 142.94766 -101.77664 -0.58118 - 138.88878 -101.16587 -0.47612 - 134.85447 -100.54852 -0.37645 - 134.85243 -100.52723 -0.37645 - 121.79120 -95.32114 -0.08078 - 109.44441 -89.86876 0.16258 - 97.82581 -84.42519 0.35862 - 86.92602 -79.09425 0.51233 - 76.72714 -73.91788 0.62873 - 76.72780 -73.89856 0.62873 - 67.24195 -68.42046 0.71252 - 58.47344 -63.14266 0.76744 - 50.39400 -58.08783 0.79696 - 42.97266 -53.27363 0.80456 - 36.17644 -48.71273 0.79373 - 36.17679 -48.70384 0.79373 - 29.99362 -44.08636 0.76768 - 24.40897 -39.72659 0.72875 - 19.38834 -35.62601 0.67912 - 14.89723 -31.78351 0.62094 - 10.90144 -28.19534 0.55639 - 10.90175 -28.19424 0.55639 - 8.21851 -25.49323 0.50496 - 5.79865 -22.92584 0.45154 - 3.62984 -20.46351 0.39667 - 1.70317 -18.08462 0.34087 - 0.00962 -15.80458 0.28466 - 0.01044 -15.79438 0.28466 - -1.45990 -13.63043 0.22851 - -2.71927 -11.57494 0.17273 - -3.77847 -9.62694 0.11755 - -4.64819 -7.78496 0.06325 - -5.33893 -6.04700 0.01007 - -5.33885 -6.04849 0.01007 - -5.97109 -4.51312 -0.05196 - -6.42770 -3.12040 -0.11190 - -6.72549 -1.86521 -0.16966 - -6.88064 -0.74220 -0.22512 - -6.90868 0.25425 -0.27818 - -6.90868 0.25191 -0.27818 - -6.82554 1.11414 -0.32879 - -6.64589 1.86137 -0.37702 - -6.38319 2.49919 -0.42297 - -6.05025 3.03295 -0.46671 - -5.65924 3.46780 -0.50835 - -5.65926 3.46586 -0.50835 - -5.22295 3.79076 -0.54799 - -4.75307 4.02610 -0.58582 - -4.26010 4.17604 -0.62200 - -3.75408 4.24428 -0.65670 - -3.24461 4.23415 -0.69010 - -3.24465 4.23301 -0.69010 - -2.74210 4.13031 -0.72236 - -2.25630 3.95449 -0.75368 - -1.79587 3.70761 -0.78420 - -1.36924 3.39138 -0.81408 - -0.98466 3.00711 -0.84349 - -0.98468 3.00674 -0.84349 - -0.65133 2.53794 -0.87258 - -0.37824 2.00252 -0.90144 - -0.17338 1.40092 -0.93015 - -0.04466 0.73339 -0.95878 - 0.00000 0.00003 -0.98739 + 0.00000 0.00000 -241.83976 + 0.00000 0.00000 -236.69639 + 0.00000 0.00000 -231.55303 + 0.00000 0.00000 -226.40966 + 0.00000 0.00000 -221.26629 + 0.00000 0.00000 -216.12292 + 0.00000 0.00000 -216.12292 + 0.00000 0.00000 -210.97955 + 0.00000 0.00000 -205.83618 + 0.00000 0.00000 -200.69281 + 0.00000 0.00000 -195.54944 + 0.00000 0.00000 -190.40607 + 0.00018 239.99878 -190.40607 + 24.00175 240.03297 -185.26366 + 48.00685 240.06941 -180.12706 + 72.01571 240.10813 -175.00206 + 96.02855 240.14915 -169.89448 + 120.04561 240.19247 -164.81010 + 120.04561 160.48801 -164.81010 + 136.11742 160.95218 -159.75441 + 152.23684 161.44006 -154.73163 + 168.40623 161.95171 -149.74565 + 184.62798 162.48719 -144.80039 + 200.90446 163.04650 -139.89976 + 200.90428 163.04528 -139.89976 + 204.16647 163.17367 -138.92533 + 207.43123 163.30257 -137.95288 + 210.69858 163.43199 -136.98244 + 213.96852 163.56192 -136.01403 + 217.24106 163.69238 -135.04769 + 217.24106 163.69238 -135.04769 + 227.06951 163.77569 -132.16140 + 236.87644 162.97414 -129.29487 + 246.60855 161.27993 -126.44896 + 256.21192 158.68024 -123.62449 + 265.63172 155.15756 -120.82231 + 265.63199 155.15145 -120.82231 + 282.11877 153.81966 -115.89833 + 298.41264 151.52566 -111.05196 + 314.40802 148.21282 -106.28758 + 329.99294 143.81889 -101.60957 + 345.04865 138.27937 -97.02231 + 345.04865 138.27919 -97.02231 + 359.48370 132.18713 -92.53017 + 373.20688 124.92252 -88.13692 + 386.09035 116.43474 -83.84610 + 398.00123 106.67963 -79.66123 + 408.80230 95.62030 -75.58582 + 408.80195 95.61718 -75.58582 + 418.13986 79.57681 -71.62328 + 425.80095 64.17238 -67.77576 + 431.85161 49.37660 -64.04495 + 436.35532 35.16292 -60.43251 + 439.37280 21.50543 -56.94013 + 439.38678 21.42303 -56.94013 + 441.49789 10.06099 -52.74544 + 442.02131 -2.39029 -48.74055 + 440.83686 -15.37291 -44.92494 + 437.93930 -27.96317 -41.29810 + 433.41295 -39.81239 -37.85952 + 433.39884 -39.87627 -37.85952 + 427.40496 -49.90966 -34.60795 + 420.12120 -59.23201 -31.54008 + 411.63937 -67.88808 -28.65228 + 402.04538 -75.92161 -25.94092 + 391.41937 -83.37539 -23.40239 + 391.41950 -83.35697 -23.40239 + 379.89272 -89.45332 -21.03256 + 367.58876 -95.02149 -18.82599 + 354.57535 -100.10150 -16.77710 + 340.91500 -104.73205 -14.88033 + 326.66512 -108.95046 -13.13009 + 326.66563 -108.93808 -13.13009 + 313.56752 -109.31928 -11.67524 + 300.43931 -109.44275 -10.32953 + 287.31079 -109.32790 -9.08839 + 274.20941 -108.99330 -7.94727 + 261.16047 -108.45672 -6.90160 + 261.16055 -108.44944 -6.90160 + 248.18121 -107.84336 -5.94680 + 235.28489 -107.06863 -5.07839 + 222.49088 -106.14060 -4.29191 + 209.81669 -105.07382 -3.58291 + 197.27816 -103.88206 -2.94694 + 197.27842 -103.87828 -2.94694 + 189.00027 -103.06745 -2.56135 + 180.78886 -102.21055 -2.20500 + 172.64772 -101.31106 -1.87663 + 164.58014 -100.37235 -1.57498 + 156.58911 -99.39758 -1.29879 + 156.58912 -99.39629 -1.29879 + 148.68095 -98.30269 -1.04681 + 140.86150 -97.17873 -0.81782 + 133.13309 -96.02716 -0.61065 + 125.49782 -94.85059 -0.42408 + 117.95759 -93.65149 -0.25692 + 117.95688 -93.64069 -0.25692 + 105.83213 -88.18490 -0.01810 + 94.44532 -82.62983 0.17527 + 83.79263 -77.18471 0.32777 + 73.85542 -71.90408 0.44397 + 64.60934 -66.82288 0.52847 + 64.60950 -66.80880 0.52847 + 56.06114 -61.45379 0.58557 + 48.21150 -56.33105 0.61860 + 41.02844 -51.45761 0.63065 + 34.47783 -46.84599 0.62482 + 28.52419 -42.50415 0.60420 + 28.52449 -42.49710 0.60420 + 23.15404 -38.10405 0.57164 + 18.35159 -33.97692 0.52914 + 14.08180 -30.11377 0.47854 + 10.30971 -26.51043 0.42170 + 7.00108 -23.16048 0.36045 + 7.00118 -23.14425 0.36045 + 4.81344 -20.64059 0.31260 + 2.86699 -18.31888 0.26359 + 1.14406 -16.16534 0.21383 + -0.37024 -14.13665 0.16376 + -1.68649 -12.20459 0.11378 + -1.68713 -12.21042 0.11378 + -2.81593 -10.38161 0.06426 + -3.76661 -8.64766 0.01543 + -4.54858 -7.00704 -0.03253 + -5.17106 -5.45780 -0.07942 + -5.64311 -3.99765 -0.12506 + -5.64303 -3.99920 -0.12506 + -6.04839 -2.77721 -0.17797 + -6.31439 -1.67594 -0.22876 + -6.45524 -0.69028 -0.27740 + -6.48448 0.18499 -0.32383 + -6.41504 0.95521 -0.36800 + -6.41505 0.95303 -0.36800 + -6.26029 1.61017 -0.40989 + -6.03238 2.17298 -0.44961 + -5.74234 2.64657 -0.48724 + -5.40058 3.03579 -0.52289 + -5.01694 3.34524 -0.55666 + -5.01697 3.34351 -0.55666 + -4.60193 3.56161 -0.58867 + -4.16504 3.70823 -0.61908 + -3.71466 3.78699 -0.64805 + -3.25874 3.80117 -0.67572 + -2.80485 3.75363 -0.70225 + -2.80488 3.75265 -0.70225 + -2.36141 3.62881 -0.72782 + -1.93626 3.44778 -0.75256 + -1.53616 3.21134 -0.77662 + -1.16769 2.92093 -0.80014 + -0.83725 2.57768 -0.82325 + -0.83727 2.57736 -0.82325 + -0.55224 2.16464 -0.84609 + -0.31983 1.70025 -0.86874 + -0.14623 1.18457 -0.89126 + -0.03758 0.61780 -0.91371 + 0.00000 0.00002 -0.93614 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3662,7 +3351,7 @@ Method c,phi,delta 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil initial [TABLE] DataCount=4 [COLUMN INDICATION] @@ -3711,7 +3400,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=37 +DataCount=27 [COLUMN INDICATION] Slide plane position Theta min @@ -3727,25 +3416,15 @@ Q max -2.00000 63.69300 32.72100 409.67280 2.75184 -2.10000 64.10100 32.80200 443.29026 3.39894 -2.40000 65.00100 45.20900 544.77027 6.09875 - -2.50000 65.22700 44.82000 578.89397 7.67411 - -2.60000 65.42800 44.45800 613.19437 9.28655 - -2.70000 65.60700 44.11900 647.68270 10.93430 - -2.73000 65.65700 44.02200 658.06723 11.43527 - -2.80000 65.76700 43.80300 682.36786 12.61582 - -2.90000 65.91200 43.50600 717.25694 14.32978 - -3.00000 66.04400 43.22700 752.35574 16.07501 - -3.10000 66.16400 42.96400 787.66897 17.85049 - -3.20000 66.27400 42.71700 823.20058 19.65533 - -3.30000 66.37500 42.48300 858.95382 21.48872 - -3.37000 66.44100 42.32700 884.11447 22.78870 - -3.40000 66.46800 42.26200 894.93148 23.34996 + -2.93333 65.95800 43.41100 728.93299 14.90810 + -3.46667 74.66900 42.12200 918.85823 24.60595 -4.00000 74.00000 41.15700 1052.18120 35.07124 -4.66667 73.31900 40.25000 1226.80608 49.13412 -5.33333 72.76500 39.56700 1410.83388 64.22115 -6.00000 72.30800 39.03700 1604.65136 80.29055 -6.60000 72.34600 38.59600 1844.45824 95.58077 -7.20000 72.22200 38.23500 2119.78580 111.01971 - -7.80000 72.37200 37.93300 2399.57207 126.59516 + -7.60000 72.32700 38.02800 2306.09134 121.38875 -8.00000 72.41200 37.84300 2493.27556 131.81578 -8.66667 72.46200 36.89800 2888.77462 147.35478 -9.33333 73.34800 36.43100 3335.09078 162.60647 @@ -3762,7 +3441,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=36 +DataCount=26 [COLUMN INDICATION] Position Vertical stress @@ -3779,26 +3458,16 @@ Lambda passive -1.75000 37.49379 329.44390 5.11650 0.92965 0.13646 8.78663 -2.05000 42.28364 336.17462 6.47098 0.88735 0.15304 7.95047 -2.25000 43.97264 338.26670 8.99937 0.86976 0.20466 7.69266 - -2.45000 45.64829 341.23702 15.75361 0.85110 0.34511 7.47535 - -2.55000 46.47925 343.00397 16.12442 0.84161 0.34692 7.37972 - -2.65000 47.30491 344.88335 16.47748 0.83213 0.34832 7.29065 - -2.71500 47.83856 346.15088 16.69913 0.82599 0.34907 7.23581 - -2.76500 48.24736 347.15181 16.86493 0.82129 0.34955 7.19525 - -2.85000 48.93885 348.89087 17.13957 0.81338 0.35022 7.12912 - -2.95000 49.74660 350.98794 17.45231 0.80419 0.35082 7.05552 - -3.05000 50.54799 353.13236 17.75483 0.79518 0.35125 6.98608 - -3.15000 51.34293 355.31602 18.04836 0.78635 0.35153 6.92045 - -3.25000 52.13136 357.53247 18.33392 0.77774 0.35169 6.85830 - -3.33500 52.79642 359.43785 18.57120 0.77059 0.35175 6.80800 - -3.38500 53.18544 360.56688 18.70860 0.76646 0.35176 6.77943 - -3.70000 55.59962 262.08288 19.53546 0.74180 0.35136 4.71375 + -2.66667 47.44197 345.30510 16.51753 0.83055 0.34816 7.27847 + -3.20000 51.73796 356.10983 18.18347 0.78202 0.35145 6.88295 + -3.73333 55.85145 249.98058 19.62242 0.73933 0.35133 4.47581 -4.33333 60.27306 261.93731 21.09432 0.69926 0.34998 4.34584 -5.00000 64.96505 276.04170 22.63055 0.66367 0.34835 4.24908 -5.66667 69.46602 290.72623 24.10410 0.63585 0.34699 4.18516 -6.30000 72.09955 399.67812 25.48371 0.56133 0.35345 5.54342 -6.90000 72.91255 458.87926 25.73155 0.54692 0.35291 6.29356 - -7.50000 73.64462 466.31045 25.95909 0.53469 0.35249 6.33190 - -7.90000 74.09551 468.51747 26.10313 0.52759 0.35229 6.32316 + -7.40000 73.52753 465.76386 25.92261 0.53659 0.35256 6.33455 + -7.80000 73.98529 467.96056 26.06759 0.52929 0.35233 6.32505 -8.33333 77.22245 593.24858 23.30849 0.42725 0.30184 7.68233 -9.00000 83.21622 669.47425 22.87754 0.41722 0.27492 8.04500 -9.66667 89.16370 680.59331 24.14739 0.40970 0.27082 7.63308 @@ -3814,7 +3483,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3861,84 +3530,24 @@ Status character 9.05102 2.80000 340.20804 38.46530 1 0 A 9.15411 3.40000 344.08300 38.90341 1 0 A 9.25690 4.00000 347.94664 39.34025 1 0 A - 15.60959 4.00000 338.11747 38.49604 1 0 A - 15.66725 4.20000 339.36633 38.63823 1 0 A - 15.72484 4.40000 340.61381 38.78026 1 0 A - 15.78236 4.60000 341.85987 38.92213 1 0 A - 15.83982 4.80000 343.10448 39.06383 1 0 A - 15.89721 5.00000 344.34760 39.20537 1 0 A - 15.98050 5.00000 339.94253 38.76848 1 0 A - 16.03812 5.20000 341.16825 38.90826 1 0 A - 16.09567 5.40000 342.39245 39.04788 1 0 A - 16.15315 5.60000 343.61510 39.18731 1 0 A - 16.21055 5.80000 344.83617 39.32657 1 0 A - 16.26787 6.00000 346.05564 39.46564 1 0 A - 16.33392 6.00000 341.87857 39.02084 1 0 A - 16.39140 6.20000 343.08171 39.15816 1 0 A - 16.44880 6.40000 344.28321 39.29530 1 0 A - 16.50613 6.60000 345.48307 39.43225 1 0 A - 16.56337 6.80000 346.68125 39.56900 1 0 A - 16.62054 7.00000 347.87774 39.70557 1 0 A - 16.65622 7.00000 345.26138 39.41268 1 0 A - 16.67339 7.06000 345.61729 39.45331 1 0 A - 16.69055 7.12000 345.97306 39.49392 1 0 A - 16.70771 7.18000 346.32867 39.53451 1 0 A - 16.72486 7.24000 346.68412 39.57509 1 0 A - 16.74200 7.30000 347.03943 39.61565 1 0 A - 16.76495 7.30000 345.09392 39.39039 1 0 A - 16.80497 7.44000 345.91771 39.48442 1 0 A - 16.84495 7.58000 346.74066 39.57835 1 0 A - 16.88489 7.72000 347.56275 39.67219 1 0 A - 16.92479 7.86000 348.38399 39.76593 1 0 A - 16.96464 8.00000 349.20438 39.85957 1 0 A - 16.99730 8.00000 345.99487 39.47526 1 0 A - 17.05427 8.20000 347.15459 39.60757 1 0 A - 17.11116 8.40000 348.31255 39.73969 1 0 A - 17.16796 8.60000 349.46875 39.87160 1 0 A - 17.22467 8.80000 350.62316 40.00331 1 0 A - 17.28129 9.00000 351.77578 40.13481 1 0 A - 17.31089 9.00000 348.14393 39.68162 1 0 A - 17.36753 9.20000 349.28288 39.81143 1 0 A - 17.42407 9.40000 350.42003 39.94105 1 0 A - 17.48052 9.60000 351.55540 40.07046 1 0 A - 17.53689 9.80000 352.68896 40.19966 1 0 A - 17.59316 10.00000 353.82071 40.32866 1 0 A - 17.61437 10.00000 350.33869 39.87658 1 0 A - 17.67062 10.20000 351.45751 40.00392 1 0 A - 17.72678 10.40000 352.57453 40.13107 1 0 A - 17.78286 10.60000 353.68975 40.25800 1 0 A - 17.83884 10.80000 354.80316 40.38474 1 0 A - 17.89472 11.00000 355.91476 40.51126 1 0 A - 17.90892 11.00000 352.57099 40.06176 1 0 A - 17.96476 11.20000 353.67035 40.18668 1 0 A - 18.02052 11.40000 354.76791 40.31139 1 0 A - 18.07618 11.60000 355.86368 40.43590 1 0 A - 18.13174 11.80000 356.95764 40.56020 1 0 A - 18.18722 12.00000 358.04980 40.68430 1 0 A - 18.19557 12.00000 354.83439 40.23861 1 0 A - 18.25098 12.20000 355.91496 40.36115 1 0 A - 18.30630 12.40000 356.99375 40.48349 1 0 A - 18.36153 12.60000 358.07075 40.60562 1 0 A - 18.41666 12.80000 359.14597 40.72755 1 0 A - 18.47171 13.00000 360.21940 40.84928 1 0 A - 18.47508 13.00000 357.57736 40.47379 1 0 A - 18.51356 13.14000 358.32220 40.55810 1 0 A - 18.55200 13.28000 359.06618 40.64231 1 0 A - 18.59040 13.42000 359.80929 40.72642 1 0 A - 18.62875 13.56000 360.55154 40.81044 1 0 A - 18.66705 13.70000 361.29293 40.89435 1 0 A - 18.66761 13.70000 359.77682 40.67526 1 0 A - 18.68402 13.76000 360.09296 40.71100 1 0 A - 18.70041 13.82000 360.40895 40.74673 1 0 A - 18.71680 13.88000 360.72477 40.78243 1 0 A - 18.73318 13.94000 361.04044 40.81812 1 0 A - 18.74955 14.00000 361.35595 40.85379 1 0 A - 18.72812 14.00000 251.25169 39.53943 1 0 A - 19.05346 15.20000 255.61637 40.22630 1 0 A - 19.37558 16.40000 259.93797 40.90639 1 0 A - 19.69456 17.60000 264.21733 41.57983 1 0 A - 20.01047 18.80000 268.45538 42.24677 1 0 A - 20.32337 20.00000 272.65320 42.90738 1 0 A + 15.74774 4.00000 329.21243 37.56670 1 0 A + 16.05719 5.06667 335.68160 38.30490 1 0 A + 16.36463 6.13333 342.10864 39.03830 1 0 A + 16.66986 7.20000 348.48964 39.76644 1 0 A + 16.97275 8.26667 354.82168 40.48899 1 0 A + 17.27319 9.33333 361.10261 41.20571 1 0 A + 17.43644 9.33333 341.47985 38.79785 1 0 A + 17.73719 10.40000 347.36978 39.46705 1 0 A + 18.03536 11.46667 353.20919 40.13050 1 0 A + 18.33093 12.53333 358.99772 40.78818 1 0 A + 18.62390 13.60000 364.73537 41.44007 1 0 A + 18.91429 14.66667 370.42242 42.08622 1 0 A + 18.90779 14.66667 240.87647 39.78886 1 0 A + 19.19552 15.73333 244.54209 40.39436 1 0 A + 19.48074 16.80000 248.17564 40.99457 1 0 A + 19.76349 17.86667 251.77772 41.58957 1 0 A + 20.04382 18.93333 255.34899 42.17949 1 0 A + 20.32179 20.00000 258.89016 42.76443 1 0 A 20.24352 20.00000 251.37257 40.44650 1 0 A 20.58642 21.33333 255.63053 41.13162 1 0 A 20.92586 22.66667 259.84548 41.80981 1 0 A @@ -3957,90 +3566,90 @@ Status character 24.25716 37.33333 292.57233 44.45052 1 0 A 24.56173 38.66667 296.24593 45.00865 1 0 A 24.86433 40.00000 299.89566 45.56316 1 0 A - 28.07253 40.00000 397.22463 40.22329 110 0 - - 29.48579 41.20000 398.22351 40.32443 110 0 - - 30.80140 42.40000 399.19892 40.42320 110 0 - - 32.02326 43.60000 400.15181 40.51969 110 0 - - 33.15530 44.80000 401.08309 40.61400 110 0 - - 34.20143 46.00000 401.99366 40.70620 110 0 - - 33.15668 46.00000 456.39150 39.66145 110 0 - - 34.11850 47.20000 457.40272 39.74933 110 0 - - 35.00228 48.40000 458.39230 39.83532 110 0 - - 35.81185 49.60000 459.36115 39.91952 110 0 - - 36.55106 50.80000 460.31012 40.00199 110 0 - - 37.22375 52.00000 461.24003 40.08280 110 0 - - 36.32677 52.00000 464.05019 39.18583 110 0 - - 36.93500 53.20000 464.96740 39.26328 110 0 - - 37.48426 54.40000 465.86701 39.33924 110 0 - - 37.97820 55.60000 466.74976 39.41379 110 0 - - 38.42048 56.80000 467.61637 39.48696 110 0 - - 38.81473 58.00000 468.46750 39.55884 110 0 - - 38.28943 58.00000 467.82049 39.03353 110 0 - - 38.41048 58.40000 468.10050 39.05690 110 0 - - 38.52672 58.80000 468.37888 39.08012 110 0 - - 38.63828 59.20000 468.65567 39.10322 110 0 - - 38.74528 59.60000 468.93089 39.12618 110 0 - - 38.84786 60.00000 469.20456 39.14902 110 0 - - 61.48006 60.00000 570.06119 31.70362 110 11 - - 62.31980 61.33333 579.35075 32.22025 110 11 - - 62.69102 62.66667 588.62068 32.73579 110 11 - - 62.65414 64.00000 597.87192 33.25029 110 10 - - 62.26958 65.33333 607.10539 33.76381 110 10 - - 61.59775 66.66667 616.32194 34.27638 110 10 - - 59.43816 66.66667 645.41701 33.47170 110 9 - - 58.50283 68.00000 655.05182 33.97137 110 9 - - 57.37715 69.33333 664.67061 34.47021 110 9 - - 56.09874 70.66667 674.27419 34.96825 110 8 - - 54.70523 72.00000 683.86333 35.46555 110 8 - - 53.23424 73.33333 693.43874 35.96214 110 8 - - 52.88119 73.33333 657.93314 35.31381 110 8 - - 51.36163 74.66667 667.00592 35.80078 110 8 - - 49.82023 76.00000 676.06698 36.28712 110 7 - - 48.27669 77.33333 685.11694 36.77287 110 7 - - 46.75074 78.66667 694.15637 37.25805 110 7 - - 45.26208 80.00000 703.18583 37.74269 110 6 - - 44.97128 80.00000 704.59446 37.27957 110 6 - - 43.88657 81.00000 711.37389 37.63827 110 6 - - 42.83548 82.00000 718.14822 37.99669 110 6 - - 42.32157 83.00000 724.91767 38.35486 110 6 - - 42.12146 84.00000 731.68242 38.71278 110 6 - - 41.91705 85.00000 738.44269 39.07046 110 6 - - 41.58782 85.00000 733.92698 38.74123 110 6 - - 41.38082 86.00000 740.64163 39.09567 110 6 - - 41.17715 87.00000 747.35219 39.44989 110 6 - - 40.97942 88.00000 754.05884 39.80391 110 5 - - 40.79020 89.00000 760.76175 40.15773 110 5 - - 40.61207 90.00000 767.46107 40.51136 110 5 - - 32.45402 90.00000 1138.32862 32.35331 110 3 - - 32.17247 91.20000 1150.24600 32.69202 110 0 - - 31.91153 92.40000 1162.15647 33.03054 110 0 - - 31.67228 93.60000 1174.06042 33.36887 110 0 - - 31.45580 94.80000 1185.95820 33.70703 110 0 - - 31.26318 96.00000 1197.85018 34.04502 110 0 - - 30.94605 96.00000 1328.85910 33.72789 110 0 - - 30.77466 97.20000 1342.04563 34.06258 110 0 - - 30.62689 98.40000 1355.22644 34.39712 110 0 - - 30.50186 99.60000 1368.40187 34.73153 110 0 - - 30.39868 100.80000 1381.57227 35.06581 110 0 - - 30.31649 102.00000 1394.73793 35.39997 110 0 - - 30.05443 102.00000 1386.49119 35.13791 110 0 - - 29.98955 103.20000 1399.57462 35.46949 110 0 - - 29.94274 104.40000 1412.65393 35.80096 110 0 - - 29.91231 105.60000 1425.72941 36.13233 110 0 - - 29.89657 106.80000 1438.80132 36.46361 110 0 - - 29.89384 108.00000 1451.86992 36.79481 110 0 - - 29.67826 108.00000 1447.10285 36.57924 110 0 - - 29.68478 109.20000 1460.12548 36.90842 110 0 - - 29.70074 110.40000 1473.14530 37.23753 110 0 - - 29.72458 111.60000 1486.16251 37.56657 110 0 - - 29.75472 112.80000 1499.17734 37.89555 110 0 - - 29.78956 114.00000 1512.18999 38.22448 110 0 - - 29.61326 114.00000 1424.99033 38.04818 110 0 - - 29.64975 115.20000 1437.25075 38.37554 110 0 - - 29.68842 116.40000 1449.50947 38.70286 110 0 - - 29.72860 117.60000 1461.76667 39.03013 110 0 - - 29.76958 118.80000 1474.02252 39.35737 110 0 - - 29.81067 120.00000 1486.27716 39.68458 110 0 - + 29.71921 40.00000 397.22463 40.22329 110 0 - + 30.98424 41.20000 398.22351 40.32443 110 0 - + 32.15958 42.40000 399.19892 40.42320 110 0 - + 33.24898 43.60000 400.15181 40.51969 110 0 - + 34.25618 44.80000 401.08309 40.61400 110 0 - + 35.18492 46.00000 401.99366 40.70620 110 0 - + 34.14017 46.00000 456.39150 39.66145 110 0 - + 34.99188 47.20000 457.40272 39.74933 110 0 - + 35.77261 48.40000 458.39230 39.83532 110 0 - + 36.48599 49.60000 459.36115 39.91952 110 0 - + 37.13566 50.80000 460.31012 40.00199 110 0 - + 37.72525 52.00000 461.24003 40.08280 110 0 - + 36.96767 52.00000 464.24436 39.32522 110 0 - + 37.32813 52.80000 464.85808 39.37721 110 0 - + 37.66452 53.60000 465.46387 39.42852 110 0 - + 37.97788 54.40000 466.06194 39.47918 110 0 - + 38.26922 55.20000 466.65252 39.52921 110 0 - + 38.53959 56.00000 467.23581 39.57862 110 0 - + 38.00108 56.00000 466.53499 39.04012 110 0 - + 38.25082 56.80000 467.11034 39.08826 110 0 - + 38.48157 57.60000 467.67882 39.13583 110 0 - + 38.69433 58.40000 468.24064 39.18285 110 0 - + 38.89006 59.20000 468.79599 39.22932 110 0 - + 39.06973 60.00000 469.34504 39.27526 110 0 - + 62.87518 60.00000 570.06119 31.70362 110 11 - + 63.18446 61.33333 579.35075 32.22025 110 11 - + 63.08674 62.66667 588.62068 32.73579 110 11 - + 62.63888 64.00000 597.87192 33.25029 110 10 - + 61.89774 65.33333 607.10539 33.76381 110 10 - + 60.92018 66.66667 616.32194 34.27638 110 10 - + 58.76059 66.66667 645.41701 33.47170 110 9 - + 57.56681 68.00000 655.05182 33.97137 110 9 - + 56.22642 69.33333 664.67061 34.47021 110 8 - + 54.77367 70.66667 674.27419 34.96825 110 8 - + 53.24281 72.00000 683.86333 35.46555 110 8 - + 51.66807 73.33333 693.43874 35.96214 110 7 - + 51.31502 73.33333 657.93314 35.31381 110 8 - + 49.72197 74.66667 667.00592 35.80078 110 7 - + 48.13434 76.00000 676.06698 36.28712 110 7 - + 46.56895 77.33333 685.11694 36.77287 110 7 - + 45.04263 78.66667 694.15637 37.25805 110 6 - + 43.57219 80.00000 703.18583 37.74269 110 6 - + 43.28139 80.00000 704.59446 37.27957 110 6 - + 42.22085 81.00000 711.37389 37.63827 110 6 - + 41.20179 82.00000 718.14822 37.99669 110 6 - + 40.49320 83.00000 724.91767 38.35486 110 6 - + 40.35037 84.00000 731.68242 38.71278 110 6 - + 40.20824 85.00000 738.44269 39.07046 110 5 - + 39.87901 85.00000 733.92698 38.74123 110 5 - + 39.73830 86.00000 740.64163 39.09567 110 5 - + 39.60421 87.00000 747.35219 39.44989 110 5 - + 39.47864 88.00000 754.05884 39.80391 110 0 - + 39.36351 89.00000 760.76175 40.15773 110 0 - + 39.26073 90.00000 767.46107 40.51136 110 0 - + 31.10268 90.00000 1138.32862 32.35331 110 0 - + 30.91235 91.20000 1150.24600 32.69202 110 0 - + 30.74290 92.40000 1162.15647 33.03054 110 0 - + 30.59484 93.60000 1174.06042 33.36887 110 0 - + 30.46872 94.80000 1185.95820 33.70703 110 0 - + 30.36505 96.00000 1197.85018 34.04502 110 0 - + 30.04793 96.00000 1328.85910 33.72789 110 0 - + 29.96367 97.20000 1342.04563 34.06258 110 0 - + 29.90106 98.40000 1355.22644 34.39712 110 0 - + 29.85912 99.60000 1368.40187 34.73153 110 0 - + 29.83687 100.80000 1381.57227 35.06581 110 0 - + 29.83332 102.00000 1394.73793 35.39997 110 0 - + 29.57127 102.00000 1386.49119 35.13791 110 0 - + 29.58274 103.20000 1399.57462 35.46949 110 0 - + 29.61013 104.40000 1412.65393 35.80096 110 0 - + 29.65187 105.60000 1425.72941 36.13233 110 0 - + 29.70643 106.80000 1438.80132 36.46361 110 0 - + 29.77227 108.00000 1451.86992 36.79481 110 0 - + 29.55670 108.00000 1447.10285 36.57924 110 0 - + 29.63024 109.20000 1460.12548 36.90842 110 0 - + 29.71191 110.40000 1473.14530 37.23753 110 0 - + 29.80033 111.60000 1486.16251 37.56657 110 0 - + 29.89414 112.80000 1499.17734 37.89555 110 0 - + 29.99197 114.00000 1512.18999 38.22448 110 0 - + 29.81566 114.00000 1424.99033 38.04818 110 0 - + 29.91464 115.20000 1437.25075 38.37554 110 0 - + 30.01546 116.40000 1449.50947 38.70286 110 0 - + 30.11755 117.60000 1461.76667 39.03013 110 0 - + 30.22031 118.80000 1474.02252 39.35737 110 0 - + 30.32316 120.00000 1486.27716 39.68458 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4053,10 +3662,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 80.283 'Clay' - -6.00 70.315 'Peat' - -8.00 153.974 'Sand 1' - -11.00 91.064 'Sand 2' + 0.00 80.280 'Clay' + -6.00 71.758 'Peat' + -8.00 150.595 'Sand 1' + -11.00 90.039 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4074,9 +3683,9 @@ Method c,phi,delta 0.00 -2.10 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 2 passive +Soil initial [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Level top layer Excess pore top @@ -4093,9 +3702,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -2.10 0.00 0.00 15.00 16.00 1.98 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.1m à -2.73m' - -2.73 0.00 0.00 15.00 16.00 5.59 17.09 17.09 25.63 0.34 0.57 4.09 'Clay -2.73m à -3.37m' - -3.37 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 0.00 0.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -4103,10 +3710,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -6 : Number of layers +4 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Layer Branch @@ -4115,11 +3722,9 @@ Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] 1 1 2000.00000 2000.00000 - 2 1 2000.00000 2000.00000 - 3 1 2000.00000 2000.00000 - 4 1 800.00000 800.00000 - 5 1 10000.00000 10000.00000 - 6 1 10000.00000 10000.00000 + 2 1 800.00000 800.00000 + 3 1 10000.00000 10000.00000 + 4 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -4127,7 +3732,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=32 +DataCount=22 [COLUMN INDICATION] Slide plane position Theta min @@ -4137,43 +3742,33 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.10000 0.00000 0.00000 0.00000 0.00000 - -2.40000 66.89700 0.00000 4.29567 0.00000 - -2.50000 67.02800 0.00000 6.22083 0.00000 - -2.60000 67.14300 0.00000 8.39221 0.00000 - -2.70000 67.24400 0.00000 10.80964 0.00000 - -2.73000 67.27300 0.00000 11.58283 0.00000 - -2.80000 67.23700 0.00000 14.82960 0.00000 - -2.90000 67.22200 0.00000 19.67713 0.00000 - -3.00000 65.77300 0.00000 24.86133 0.00000 - -3.10000 63.43600 0.00000 30.87366 0.00000 - -3.20000 61.19000 0.00000 38.07155 0.00000 - -3.30000 59.03700 0.00000 46.88331 0.00000 - -3.37000 57.58500 0.00000 54.32637 0.00000 - -3.40000 56.97700 0.00000 58.04167 0.00000 - -4.00000 51.04500 0.00000 300.60099 0.00000 - -4.66667 78.22100 50.14100 386.74581 4.83845 - -5.33333 76.80800 47.60800 469.93281 15.67212 - -6.00000 75.66700 45.75100 561.19975 28.40057 - -6.60000 73.62100 44.54100 665.13672 42.71356 - -7.20000 73.87600 43.57900 835.37697 57.44685 - -7.80000 75.98000 41.25700 954.18075 72.11581 - -8.00000 75.86300 40.28000 989.48321 76.71111 - -8.66667 74.81700 37.28600 1155.71589 91.27524 - -9.33333 75.88800 34.65400 1411.43028 103.82650 - -10.00000 75.54500 32.33000 1625.27989 116.02264 - -10.50000 75.31800 30.76300 1805.79732 125.00026 - -11.00000 75.11500 29.32700 2003.58190 133.86919 - -11.60000 74.65700 27.75900 2420.93468 142.89950 - -12.20000 75.29000 26.33800 3028.07323 151.18821 - -12.80000 76.36000 25.04600 3520.83041 158.64541 - -13.40000 76.30700 23.86800 4036.87193 166.18032 - -14.00000 76.26300 22.79100 4591.91762 173.78806 + -2.40000 66.55900 0.00000 11.16283 0.00000 + -2.93333 66.84500 0.00000 36.49707 0.00000 + -3.46667 55.65500 0.00000 88.60611 0.00000 + -4.00000 53.15400 0.00000 327.31429 0.00000 + -4.66667 77.69000 49.70700 409.02273 0.66766 + -5.33333 76.42300 47.28100 490.70938 11.70596 + -6.00000 75.37800 45.49400 581.00420 24.56369 + -6.60000 73.40700 44.32600 683.59917 38.95252 + -7.20000 73.71900 43.39500 853.99937 53.74167 + -7.60000 75.94500 42.27300 939.27117 63.71981 + -8.00000 75.71800 40.28000 1009.50871 73.16870 + -8.66667 74.70800 37.28600 1174.95212 87.85192 + -9.33333 75.79100 34.65400 1431.49710 100.48489 + -10.00000 75.46500 32.33000 1645.07098 112.73700 + -10.50000 75.24800 30.76300 1825.41425 121.74433 + -11.00000 75.05300 29.32700 2023.04912 130.63508 + -11.60000 74.61000 27.75900 2440.08276 139.68345 + -12.20000 75.25300 26.33800 3047.68146 147.98348 + -12.80000 76.32700 25.04600 3541.34774 155.44685 + -13.40000 76.27800 23.86800 4057.34159 162.98399 + -14.00000 76.23900 22.79100 4612.34905 170.59095 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=31 +DataCount=21 [COLUMN INDICATION] Position Vertical stress @@ -4184,43 +3779,33 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.25000 0.90552 14.31890 0.00000 4.26834 0.00000 15.81283 - -2.45000 2.16800 19.25158 0.00000 4.06688 0.00000 8.87986 - -2.55000 2.84101 21.71377 0.00000 3.92024 0.00000 7.64298 - -2.65000 3.54978 24.17435 0.00000 3.75268 0.00000 6.81010 - -2.71500 4.03145 25.77308 0.00000 3.63603 0.00000 6.39301 - -2.76500 4.41367 46.38237 0.00000 3.54359 0.00000 10.50880 - -2.85000 5.08713 48.47530 0.00000 3.38338 0.00000 9.52901 - -2.95000 5.91730 51.84205 0.00000 3.19385 0.00000 8.76110 - -3.05000 6.78675 60.12326 0.00000 3.00731 0.00000 8.85891 - -3.15000 7.69256 71.97890 0.00000 2.82697 0.00000 9.35695 - -3.25000 8.63084 88.11763 0.00000 2.65503 0.00000 10.20963 - -3.33500 9.45053 106.32940 0.00000 2.51650 0.00000 11.25115 - -3.38500 9.94094 123.84314 0.00000 2.43849 0.00000 12.45788 - -3.70000 13.12827 404.26554 0.00000 2.00753 0.00000 30.79351 - -4.33333 19.62342 129.21723 7.25768 1.41476 0.36985 6.58485 - -5.00000 25.98093 124.78050 16.25051 1.05317 0.62548 4.80277 - -5.66667 31.62109 136.90041 19.09267 0.84132 0.60380 4.32940 - -6.30000 34.88068 173.22828 23.85498 0.68390 0.68390 4.96631 - -6.90000 35.97366 283.73375 24.55549 0.68260 0.68260 7.88726 - -7.50000 36.77267 198.00631 24.44827 0.66485 0.66485 5.38460 - -7.90000 37.18657 176.51229 22.97649 0.61787 0.61787 4.74667 - -8.33333 40.22295 249.34902 21.84619 0.54313 0.54313 6.19917 - -9.00000 46.01150 383.57159 18.82690 0.40918 0.40918 8.33643 - -9.66667 51.71124 320.77441 18.29421 0.39124 0.35378 6.20319 - -10.25000 56.65647 361.03487 17.95524 0.38300 0.31691 6.37235 - -10.75000 60.87839 395.56915 17.73787 0.37862 0.29137 6.49769 - -11.30000 65.51439 695.58797 15.05050 0.30412 0.22973 10.61733 - -11.90000 70.57043 1011.89758 13.81453 0.30111 0.19576 14.33883 - -12.50000 75.63117 821.26197 12.42866 0.29933 0.16433 10.85878 - -13.10000 80.70074 860.06921 12.55819 0.29839 0.15561 10.65751 - -13.70000 85.78168 925.07615 12.67955 0.29801 0.14781 10.78408 + -2.25000 0.90552 37.20942 0.00000 4.26834 0.00000 41.09158 + -2.66667 3.67167 47.50170 0.00000 3.72324 0.00000 12.93737 + -3.20000 8.15791 97.70446 0.00000 2.73985 0.00000 11.97665 + -3.73333 13.47175 447.57783 0.00000 1.96785 0.00000 33.22343 + -4.33333 19.62342 122.56266 1.00149 1.41476 0.05104 6.24573 + -5.00000 25.98093 122.52997 16.55745 1.05317 0.63729 4.71615 + -5.66667 31.62109 135.44223 19.28660 0.84132 0.60993 4.28329 + -6.30000 34.88068 170.99162 23.98137 0.68753 0.68753 4.90219 + -6.90000 35.97366 284.00033 24.64859 0.68518 0.68518 7.89467 + -7.40000 36.65589 213.17950 24.94535 0.68053 0.68053 5.81570 + -7.80000 37.09042 175.59384 23.62222 0.63688 0.63688 4.73421 + -8.33333 40.22295 248.16512 22.02482 0.54757 0.54757 6.16974 + -9.00000 46.01150 384.81746 18.94946 0.41184 0.41184 8.36351 + -9.66667 51.71124 320.36083 18.37816 0.39124 0.35540 6.19519 + -10.25000 56.65647 360.68654 18.01468 0.38300 0.31796 6.36620 + -10.75000 60.87839 395.26972 17.78149 0.37862 0.29208 6.49278 + -11.30000 65.51439 695.05608 15.08062 0.30412 0.23019 10.60921 + -11.90000 70.57043 1012.66449 13.83338 0.30111 0.19602 14.34970 + -12.50000 75.63117 822.77715 12.43894 0.29933 0.16447 10.87881 + -13.10000 80.70074 859.98974 12.56191 0.29839 0.15566 10.65653 + -13.70000 85.78168 925.01243 12.67826 0.29801 0.14780 10.78333 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4261,210 +3846,148 @@ Status character 0.00000 0.60000 0.00000 0.00000 -1 0 - 0.00000 0.80000 0.00000 0.00000 -1 0 - 0.00000 1.00000 0.00000 0.00000 -1 0 - - 0.00002 1.00000 0.00002 0.00000 202 100 P - 5.69824 1.60000 5.69824 1.53812 202 100 P - 11.43008 2.20000 11.43008 3.08531 202 100 P - 17.22833 2.80000 17.22833 4.65043 202 100 P - 23.12432 3.40000 23.12432 6.24193 202 100 P - 29.14718 4.00000 29.14718 7.86767 202 100 P - 16.36791 4.00000 16.36791 7.49631 202 100 P - 17.51375 4.20000 17.51375 8.02110 202 100 P - 18.66968 4.40000 18.66968 8.55050 202 100 P - 19.83617 4.60000 19.83617 9.08474 202 100 P - 21.01368 4.80000 21.01368 9.62402 202 100 P - 22.20265 5.00000 22.20265 10.16856 202 100 P - 19.11002 5.00000 19.11002 9.80193 202 100 P - 20.14358 5.20000 20.14358 10.33206 202 100 P - 21.18768 5.40000 21.18768 10.86760 202 100 P - 22.24261 5.60000 22.24261 11.40870 202 100 P - 23.30866 5.80000 23.30866 11.95550 202 100 P - 24.38609 6.00000 24.38609 12.50813 202 100 P - 21.72866 6.00000 21.72866 11.97349 202 100 P - 22.69902 6.20000 22.69902 12.50821 202 100 P - 23.67991 6.40000 23.67991 13.04872 202 100 P - 24.67149 6.60000 24.67149 13.59513 202 100 P - 25.67390 6.80000 25.67390 14.14750 202 100 P - 26.68728 7.00000 26.68728 14.70592 202 100 P - 25.05278 7.00000 25.05278 14.24881 202 100 P - 25.34020 7.06000 25.34020 14.41228 202 100 P - 25.62855 7.12000 25.62855 14.57628 202 100 P - 25.91784 7.18000 25.91784 14.74082 202 100 P - 26.20807 7.24000 26.20807 14.90589 202 100 P - 26.49924 7.30000 26.49924 15.07149 202 100 P - 43.55935 7.30000 43.55935 14.68830 202 100 P - 44.68220 7.44000 44.68220 15.06693 202 100 P - 45.81352 7.58000 45.81352 15.44841 202 100 P - 46.95334 7.72000 46.95334 15.83276 202 100 P - 48.10167 7.86000 48.10167 16.21998 202 100 P - 49.25853 8.00000 49.25853 16.61008 202 100 P - 44.66590 8.00000 44.66590 15.85912 202 100 P - 46.17786 8.20000 46.17786 16.39596 202 100 P - 47.70556 8.40000 47.70556 16.93839 202 100 P - 49.24896 8.60000 49.24896 17.48639 202 100 P - 50.80798 8.80000 50.80798 18.03994 202 100 P - 52.38252 9.00000 52.38252 18.59900 202 100 P - 48.16123 9.00000 48.16123 17.55714 202 100 P - 49.62305 9.20000 49.62305 18.09004 202 100 P - 51.09891 9.40000 51.09891 18.62806 202 100 P - 52.58865 9.60000 52.58865 19.17115 202 100 P - 54.09211 9.80000 54.09211 19.71923 202 100 P - 55.60911 10.00000 55.60911 20.27225 202 100 P - 56.22992 10.00000 56.22992 19.08823 202 100 P - 57.77734 10.20000 57.77734 19.61353 202 100 P - 59.33802 10.40000 59.33802 20.14332 202 100 P - 60.91173 10.60000 60.91173 20.67755 202 100 P - 62.49822 10.80000 62.49822 21.21611 202 100 P - 64.09724 11.00000 64.09724 21.75892 202 100 P - 67.70067 11.00000 67.70067 20.45412 202 100 P - 69.40252 11.20000 69.40252 20.96829 202 100 P - 71.11701 11.40000 71.11701 21.48628 202 100 P - 72.84383 11.60000 72.84383 22.00800 202 100 P - 74.58265 11.80000 74.58265 22.53334 202 100 P - 76.33316 12.00000 76.33316 23.06222 202 100 P - 83.28925 12.00000 83.28925 21.65950 202 100 P - 85.21165 12.20000 85.21165 22.15943 202 100 P - 87.14605 12.40000 87.14605 22.66247 202 100 P - 89.09207 12.60000 89.09207 23.16854 202 100 P - 91.04931 12.80000 91.04931 23.67752 202 100 P - 93.01740 13.00000 93.01740 24.18933 202 100 P - 102.50650 13.00000 102.50650 22.92718 202 100 P - 104.03157 13.14000 104.03157 23.26829 202 100 P - 105.56212 13.28000 105.56212 23.61062 202 100 P - 107.09800 13.42000 107.09800 23.95414 202 100 P - 108.63907 13.56000 108.63907 24.29883 202 100 P - 110.18516 13.70000 110.18516 24.64463 202 100 P - 122.00296 13.70000 122.00296 23.88066 202 100 P - 122.73830 13.76000 122.73830 24.02460 202 100 P - 123.47462 13.82000 123.47462 24.16872 202 100 P - 124.21190 13.88000 124.21190 24.31303 202 100 P - 124.95013 13.94000 124.95013 24.45753 202 100 P - 125.68930 14.00000 125.68930 24.60222 202 100 P - 193.68081 14.00000 310.67988 20.25421 110 62 - - 186.24390 15.20000 347.65695 22.66487 110 54 - - 179.15015 16.40000 385.28553 25.11799 110 46 - - 172.38970 17.60000 423.31656 27.59736 110 41 - - 165.95412 18.80000 461.52235 30.08812 110 36 - - 159.83664 20.00000 499.70148 32.57714 110 32 - - 106.85558 20.00000 106.85558 22.95798 202 100 P - 115.87541 21.33333 115.87541 24.89590 202 100 P - 124.80072 22.66667 124.80072 26.81351 202 100 P - 129.62371 24.00000 133.59829 28.70367 110 97 - - 123.50468 25.33333 142.24287 30.56096 110 87 - - 117.75038 26.66667 150.71612 32.38145 110 78 - - 109.47420 26.66667 109.92742 24.10526 110 99 - - 103.62504 28.00000 115.97355 25.43107 110 89 - - 98.13878 29.33333 121.88028 26.72632 110 81 - - 93.00783 30.66667 127.64515 27.99046 110 73 - - 88.22511 32.00000 133.26810 29.22348 110 66 - - 83.78397 33.33333 138.75093 30.42578 110 60 - - 77.66385 33.33333 125.07538 24.30565 110 62 - - 73.32101 34.66667 129.89442 25.24213 110 56 - - 69.30794 36.00000 134.59400 26.15539 110 51 - - 65.61409 37.33333 139.17874 27.04633 110 47 - - 62.22898 38.66667 143.65376 27.91595 110 43 - - 59.14221 40.00000 148.02450 28.76531 110 40 - - 35.53374 40.00000 169.80073 23.38298 110 21 - - 34.41932 41.20000 171.23635 23.58068 110 20 - - 33.38821 42.40000 172.58505 23.76640 110 19 - - 32.43724 43.60000 173.85155 23.94081 110 19 - - 31.56324 44.80000 175.04054 24.10455 110 18 - - 30.76300 46.00000 176.15658 24.25823 110 17 - - 30.71667 46.00000 279.76366 24.21190 110 11 - - 29.98670 47.20000 281.42733 24.35588 110 11 - - 29.32408 48.40000 282.98906 24.49104 110 10 - - 28.72561 49.60000 284.45540 24.61794 110 10 - - 28.18806 50.80000 285.83267 24.73713 110 10 - - 27.70819 52.00000 287.12686 24.84914 110 10 - - 27.06212 52.00000 196.02043 24.20306 110 14 - - 26.63392 53.20000 196.85116 24.30564 110 14 - - 26.25713 54.40000 197.63280 24.40215 110 13 - - 25.92861 55.60000 198.36884 24.49303 110 13 - - 25.64517 56.80000 199.06261 24.57869 110 13 - - 25.40363 58.00000 199.71723 24.65952 110 13 - - 23.66118 58.00000 176.05588 22.91707 110 13 - - 23.58759 58.40000 176.24102 22.94117 110 13 - - 23.51823 58.80000 176.42271 22.96482 110 13 - - 23.45298 59.20000 176.60104 22.98804 110 13 - - 23.39172 59.60000 176.77609 23.01082 110 13 - - 23.33435 60.00000 176.94796 23.03320 110 13 - - 24.01136 60.00000 231.09496 20.24690 110 10 - - 21.69707 61.33333 238.42696 20.88928 110 9 - - 21.52805 62.66667 245.71784 21.52805 1 9 A - 22.16355 64.00000 252.97126 22.16355 1 9 A - 22.79605 65.33333 260.19059 22.79605 1 9 A - 23.42585 66.66667 267.37899 23.42585 1 9 A - 17.64842 66.66667 359.56184 17.64842 1 5 A - 18.12104 68.00000 369.19086 18.12104 1 5 A - 18.59200 69.33333 378.78582 18.59200 1 5 A - 19.06144 70.66667 388.35008 19.06144 1 5 A - 19.52953 72.00000 397.88673 19.52953 1 5 A - 19.99640 73.33333 407.39865 19.99640 1 5 A - 17.28894 73.33333 303.14771 19.11956 1 0 A - 17.69166 74.66667 310.20915 19.56492 1 0 A - 18.09355 76.00000 317.25596 20.00936 1 0 A - 18.49470 77.33333 324.28982 20.45299 1 0 A - 18.89520 78.66667 331.31227 20.89590 1 0 A - 19.29513 80.00000 338.32473 21.33817 1 0 A - 17.28465 80.00000 347.55104 20.88874 1 0 A - 17.55305 81.00000 352.94788 21.21310 1 0 A - 17.82123 82.00000 358.34023 21.53720 1 0 A - 18.08920 83.00000 363.72858 21.86105 1 0 A - 18.77601 84.00000 369.11339 22.18469 110 0 - - 19.66156 85.00000 374.49509 22.50815 110 0 - - 19.40435 85.00000 381.86144 22.25094 110 0 - - 20.28539 86.00000 387.34625 22.57054 110 0 - - 21.16274 87.00000 392.82870 22.89000 110 0 - - 22.03383 88.00000 398.30914 23.20935 110 0 - - 22.89612 89.00000 403.78793 23.52859 110 0 - - 23.74705 90.00000 409.26537 23.84776 110 0 - - 19.05465 90.00000 668.74576 19.15536 110 0 - - 19.98249 91.20000 679.48382 19.46294 110 3 - - 20.88947 92.40000 690.22019 19.77047 110 3 - - 21.77456 93.60000 700.95560 20.07797 110 3 - - 22.63668 94.80000 711.69071 20.38546 110 3 - - 23.47481 96.00000 722.42613 20.69297 110 3 - - 23.26982 96.00000 975.64517 20.48798 110 2 - - 24.08038 97.20000 990.14465 20.79246 110 2 - - 24.86722 98.40000 1004.64600 21.09698 110 2 - - 25.63123 99.60000 1019.14986 21.40156 110 3 - - 26.37332 100.80000 1033.65680 21.70619 110 3 - - 27.09439 102.00000 1048.16735 22.01091 110 3 - - 26.96476 102.00000 793.77559 21.88128 110 3 - - 27.66422 103.20000 804.76752 22.18428 110 3 - - 28.34560 104.40000 815.76289 22.48738 110 3 - - 29.01060 105.60000 826.76201 22.79059 110 4 - - 29.66094 106.80000 837.76516 23.09390 110 4 - - 30.29831 108.00000 848.77258 23.39733 110 4 - - 30.22475 108.00000 833.04093 23.32378 110 4 - - 30.85002 109.20000 843.84875 23.62638 110 4 - - 31.46590 110.40000 854.66120 23.92911 110 4 - - 32.07396 111.60000 865.47844 24.23198 110 4 - - 32.67582 112.80000 876.30065 24.53498 110 4 - - 33.27305 114.00000 887.12797 24.83813 110 4 - - 33.24125 114.00000 897.66299 24.80633 110 4 - - 33.83503 115.20000 908.62418 25.10924 110 4 - - 34.42673 116.40000 919.59078 25.41229 110 4 - - 35.01704 117.60000 930.56290 25.71550 110 4 - - 35.60666 118.80000 941.54060 26.01886 110 4 - - 36.19629 120.00000 952.52398 26.32238 110 4 - + 0.00004 1.00000 0.00004 0.00000 202 100 P + 14.80758 1.60000 14.80758 1.53812 202 100 P + 29.70246 2.20000 29.70246 3.08531 202 100 P + 44.76992 2.80000 44.76992 4.65043 202 100 P + 60.09137 3.40000 60.09137 6.24193 202 100 P + 75.74252 4.00000 75.74252 7.86767 202 100 P + 23.84695 4.00000 23.84695 6.86290 202 100 P + 32.92900 5.06667 32.92900 9.47662 202 100 P + 42.50539 6.13333 42.50539 12.23260 202 100 P + 52.64486 7.20000 52.64486 15.15064 202 100 P + 63.38388 8.26667 63.38388 18.24121 202 100 P + 74.72811 9.33333 74.72811 21.50596 202 100 P + 69.17885 9.33333 69.17885 15.82578 202 100 P + 80.22096 10.40000 80.22096 18.35184 202 100 P + 91.76295 11.46667 91.76295 20.99226 202 100 P + 103.74917 12.53333 103.74917 23.73430 202 100 P + 116.11400 13.60000 116.11400 26.56295 202 100 P + 128.78656 14.66667 128.78656 29.46201 202 100 P + 172.33224 14.66667 357.25620 21.16060 110 48 - + 166.52807 15.73333 393.06380 23.28152 110 42 - + 160.98114 16.80000 429.33031 25.42962 110 37 - + 155.68394 17.86667 465.87256 27.59405 110 33 - + 150.62992 18.93333 502.52320 29.76490 110 30 - + 145.81359 20.00000 539.13308 31.93333 110 27 - + 101.35262 20.00000 101.35262 22.95798 202 100 P + 109.90794 21.33333 109.90794 24.89590 202 100 P + 118.37360 22.66667 118.37360 26.81351 202 100 P + 118.55355 24.00000 126.71811 28.70367 110 94 - + 113.15716 25.33333 134.91750 30.56096 110 84 - + 108.10048 26.66667 142.95439 32.38145 110 76 - + 99.82429 26.66667 107.94477 24.10526 110 92 - + 94.64698 28.00000 113.88186 25.43107 110 83 - + 89.80648 29.33333 119.68205 26.72632 110 75 - + 85.29502 30.66667 125.34295 27.99046 110 68 - + 81.10533 32.00000 130.86448 29.22348 110 62 - + 77.23056 33.33333 136.24842 30.42578 110 57 - + 71.11044 33.33333 123.74315 24.30565 110 57 - + 67.30725 34.66667 128.51087 25.24213 110 52 - + 63.80736 36.00000 133.16039 26.15539 110 48 - + 60.60054 37.33333 137.69629 27.04633 110 44 - + 57.67662 38.66667 142.12365 27.91595 110 41 - + 55.02550 40.00000 146.44783 28.76531 110 38 - + 34.01095 40.00000 167.60833 23.50687 110 20 - + 33.04581 41.20000 169.02541 23.70562 110 20 - + 32.15595 42.40000 170.35669 23.89233 110 19 - + 31.33837 43.60000 171.60684 24.06766 110 18 - + 30.59008 44.80000 172.78048 24.23226 110 18 - + 29.90804 46.00000 173.88211 24.38676 110 17 - + 29.82498 46.00000 280.02651 24.30370 110 11 - + 29.20567 47.20000 281.69175 24.44823 110 10 - + 28.64661 48.40000 283.25494 24.58390 110 10 - + 28.14481 49.60000 284.72266 24.71129 110 10 - + 27.69726 50.80000 286.10122 24.83093 110 10 - + 27.30091 52.00000 287.39663 24.94336 110 9 - + 27.13139 52.00000 211.71380 24.77384 110 13 - + 26.89363 52.80000 212.31805 24.84455 110 13 - + 26.67643 53.60000 212.89815 24.91243 110 13 - + 26.47892 54.40000 213.45525 24.97762 110 12 - + 26.30023 55.20000 213.99048 25.04025 110 12 - + 26.13947 56.00000 214.50490 25.10044 110 12 - + 24.52965 56.00000 174.61563 23.49062 110 14 - + 24.38224 56.80000 175.01829 23.54479 110 14 - + 24.25116 57.60000 175.40565 23.59690 110 14 - + 24.13558 58.40000 175.77850 23.64706 110 14 - + 24.03463 59.20000 176.13757 23.69536 110 14 - + 23.94745 60.00000 176.48358 23.74191 110 14 - + 22.98166 60.00000 229.99774 20.41246 110 10 - + 21.24105 61.33333 237.29492 21.06009 110 9 - + 21.70408 62.66667 244.55119 21.70408 1 9 A + 22.34477 64.00000 251.77017 22.34477 1 9 A + 22.98245 65.33333 258.95522 22.98245 1 9 A + 23.61740 66.66667 266.10949 23.61740 1 9 A + 17.76332 66.66667 360.72973 17.76332 1 5 A + 18.23902 68.00000 370.39003 18.23902 1 5 A + 18.71303 69.33333 380.01615 18.71303 1 5 A + 19.18553 70.66667 389.61147 19.18553 1 5 A + 19.65667 72.00000 399.17910 19.65667 1 5 A + 20.12658 73.33333 408.72192 20.12658 1 5 A + 17.36827 73.33333 302.75685 19.11956 1 0 A + 17.77284 74.66667 309.80919 19.56492 1 0 A + 18.17657 76.00000 316.84691 20.00936 1 0 A + 18.57957 77.33333 323.87170 20.45299 1 0 A + 18.98190 78.66667 330.88510 20.89590 1 0 A + 19.38367 80.00000 337.88852 21.33817 1 0 A + 17.34187 80.00000 347.21571 20.88874 1 0 A + 18.08714 81.00000 352.60735 21.21310 110 0 - + 18.90133 82.00000 357.99450 21.53720 110 0 - + 19.72271 83.00000 363.37765 21.86105 110 0 - + 20.54710 84.00000 368.75726 22.18469 110 0 - + 21.37036 85.00000 374.13378 22.50815 110 0 - + 21.11316 85.00000 381.57239 22.25094 110 0 - + 21.92791 86.00000 387.05305 22.57054 110 0 - + 22.73569 87.00000 392.53135 22.89000 110 0 - + 23.53462 88.00000 398.00765 23.20935 110 6 - + 24.32281 89.00000 403.48228 23.52859 110 6 - + 25.09839 90.00000 408.95558 23.84776 110 6 - + 20.40599 90.00000 668.23439 19.15536 110 3 - + 21.24261 91.20000 678.96424 19.46294 110 3 - + 22.05811 92.40000 689.69240 19.77047 110 3 - + 22.85200 93.60000 700.41960 20.07797 110 3 - + 23.62377 94.80000 711.14650 20.38546 110 3 - + 24.37293 96.00000 721.87371 20.69297 110 3 - + 24.16795 96.00000 976.38460 20.48798 110 2 - + 24.89137 97.20000 990.89508 20.79246 110 3 - + 25.59305 98.40000 1005.40742 21.09698 110 3 - + 26.27397 99.60000 1019.92226 21.40156 110 3 - + 26.93514 100.80000 1034.44019 21.70619 110 3 - + 27.57755 102.00000 1048.96175 22.01091 110 3 - + 27.44793 102.00000 795.24006 21.88128 110 3 - + 28.07103 103.20000 806.25227 22.18428 110 3 - + 28.67821 104.40000 817.26793 22.48738 110 4 - + 29.27104 105.60000 828.28734 22.79059 110 4 - + 29.85108 106.80000 839.31079 23.09390 110 4 - + 30.41987 108.00000 850.33852 23.39733 110 4 - + 30.34632 108.00000 832.96395 23.32378 110 4 - + 30.90456 109.20000 843.77078 23.62638 110 4 - + 31.45473 110.40000 854.58223 23.92911 110 4 - + 31.99821 111.60000 865.39847 24.23198 110 4 - + 32.53639 112.80000 876.21968 24.53498 110 4 - + 33.07064 114.00000 887.04600 24.83813 110 4 - + 33.03885 114.00000 897.60116 24.80633 110 4 - + 33.57015 115.20000 908.56160 25.10924 110 4 - + 34.09969 116.40000 919.52745 25.41229 110 4 - + 34.62809 117.60000 930.49880 25.71550 110 4 - + 35.15593 118.80000 941.47575 26.01886 110 4 - + 35.68380 120.00000 952.45838 26.32238 110 4 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=6 +DataCount=4 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -2.10 11.614 'Clay -2.1m à -2.73m' - -2.73 42.752 'Clay -2.73m à -3.37m' - -3.37 299.323 'Clay' - -6.00 57.629 'Peat' - -8.00 59.533 'Sand 1' - -11.00 85.010 'Sand 2' + 0.00 349.387 'Clay' + -6.00 56.484 'Peat' + -8.00 60.984 'Sand 1' + -11.00 86.035 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4472,7 +3995,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4514,82 +4037,22 @@ Depth -2.34000 -2.40000 -2.40000 - -2.42000 - -2.44000 - -2.46000 - -2.48000 - -2.50000 - -2.50000 - -2.52000 - -2.54000 - -2.56000 - -2.58000 - -2.60000 - -2.60000 - -2.62000 - -2.64000 - -2.66000 - -2.68000 - -2.70000 - -2.70000 - -2.70600 - -2.71200 - -2.71800 - -2.72400 - -2.73000 - -2.73000 - -2.74400 - -2.75800 - -2.77200 - -2.78600 - -2.80000 - -2.80000 - -2.82000 - -2.84000 - -2.86000 - -2.88000 - -2.90000 - -2.90000 - -2.92000 - -2.94000 - -2.96000 - -2.98000 - -3.00000 - -3.00000 - -3.02000 + -2.50667 + -2.61333 + -2.72000 + -2.82667 + -2.93333 + -2.93333 -3.04000 - -3.06000 - -3.08000 - -3.10000 - -3.10000 - -3.12000 - -3.14000 - -3.16000 - -3.18000 - -3.20000 - -3.20000 - -3.22000 - -3.24000 - -3.26000 - -3.28000 - -3.30000 - -3.30000 - -3.31400 - -3.32800 - -3.34200 - -3.35600 - -3.37000 - -3.37000 - -3.37600 - -3.38200 - -3.38800 - -3.39400 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -3.14667 + -3.25333 + -3.36000 + -3.46667 + -3.46667 + -3.57333 + -3.68000 + -3.78667 + -3.89333 -4.00000 -4.00000 -4.13333 @@ -4622,16 +4085,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -4714,7 +4177,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 40.94109 210000000.000 1 2 0 'anchor' + -1.50000 29.25746 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -4775,22 +4238,22 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 44.90 : Percentage mobilized resistance left - 3.50 : Percentage mobilized resistance right - 628.86 : Effective left - 319.99 : Effective right + 34.21 : Percentage mobilized resistance left + 3.28 : Percentage mobilized resistance right + 620.32 : Effective left + 299.88 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1400.53 : Max effective resistance left + 1813.39 : Max effective resistance left 9143.49 : Max effective resistance right --12308.72 : Max moment left --77099.01 : Max moment right --5197.64 : Max mobilized moment left --1730.16 : Max mobilized moment right - 341.32 : Vertical force left - 133.61 : Vertical force right - 42.2 : Max mobilized moment percentage left - 2.2 : Max mobilized moment percentage right +-15985.79 : Max moment left +-77098.99 : Max moment right +-4906.93 : Max mobilized moment left +-1438.99 : Max mobilized moment right + 332.74 : Vertical force left + 121.85 : Vertical force right + 30.7 : Max mobilized moment percentage left + 1.9 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -4798,229 +4261,169 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -190.84811 - 0.32056 6.51338 -189.31787 - 1.32312 13.63999 -187.78769 - 3.06900 21.37983 -186.25800 - 5.61952 29.73290 -184.72923 - 9.03602 38.69919 -183.20181 - 9.03065 38.82782 -183.20181 - 13.38112 48.22210 -181.67632 - 18.66589 57.34090 -180.15406 - 24.82283 65.66547 -178.63650 - 31.77301 73.21079 -177.12511 - 39.43981 80.00071 -175.62139 - 39.44045 80.00467 -175.62139 - 47.74926 86.04678 -174.12700 - 56.62483 91.33969 -172.64416 - 65.99219 95.88257 -171.17510 - 75.77634 99.67537 -169.72210 - 85.90229 102.71870 -168.28739 - 85.91051 61.85847 -168.28739 - 92.21734 64.15365 -166.87320 - 98.71636 65.70254 -165.48131 - 105.33393 66.53392 -164.11331 - 112.01249 67.04565 -162.77078 - 118.74474 67.60787 -161.45532 - 118.73595 -152.46383 -161.45532 - 115.68787 -152.34394 -161.19561 - 112.64223 -152.21924 -160.93702 - 109.59913 -152.08972 -160.67952 - 106.55867 -151.95541 -160.42308 - 103.52095 -151.81628 -160.16767 - 103.52104 -151.81754 -160.16767 - 94.42516 -151.37131 -159.40732 - 85.35735 -150.88181 -158.65519 - 76.32021 -150.34904 -157.91049 - 67.31633 -149.77301 -157.17243 - 58.34831 -149.15370 -156.44023 - 58.34822 -149.15495 -156.44023 - 55.36727 -148.93890 -156.19733 - 52.39069 -148.71804 -155.95497 - 49.41858 -148.49238 -155.71311 - 46.45103 -148.26190 -155.47173 - 43.48814 -148.02662 -155.23080 - 43.48814 -148.02662 -155.23080 - 40.53000 -147.78653 -154.99029 - 37.57671 -147.54163 -154.75017 - 34.62836 -147.29193 -154.51041 - 31.68506 -147.03741 -154.27099 - 28.74690 -146.77809 -154.03188 - 28.74690 -146.77809 -154.03188 - 25.81397 -146.51396 -153.79304 - 22.88637 -146.24502 -153.55445 - 19.96420 -145.97128 -153.31609 - 17.04755 -145.69273 -153.07792 - 14.13652 -145.40937 -152.83991 - 14.13652 -145.40937 -152.83991 - 13.26433 -145.32342 -152.76853 - 12.39264 -145.23704 -152.69717 - 11.52148 -145.15023 -152.62582 - 10.65084 -145.06299 -152.55448 - 9.78073 -144.97531 -152.48314 - 9.78073 -144.97531 -152.48314 - 7.75251 -144.76905 -152.31673 - 5.72720 -144.56043 -152.15036 - 3.70483 -144.34946 -151.98401 - 1.68543 -144.13613 -151.81768 - -0.33097 -143.92045 -151.65136 - -0.33097 -143.92045 -151.65136 - -3.20626 -143.60824 -151.41375 - -6.07527 -143.29123 -151.17611 - -8.93788 -142.96941 -150.93841 - -11.79401 -142.64277 -150.70063 - -14.64356 -142.31134 -150.46273 - -14.64356 -142.31147 -150.46273 - -17.48643 -141.97523 -150.22469 - -20.32253 -141.63417 -149.98648 - -23.15177 -141.28831 -149.74808 - -25.97403 -140.93764 -149.50945 - -28.78924 -140.58216 -149.27057 - -28.78924 -140.58230 -149.27057 - -31.59729 -140.22201 -149.03141 - -34.39809 -139.85692 -148.79195 - -37.19154 -139.48702 -148.55215 - -39.97754 -139.11231 -148.31200 - -42.75600 -138.73280 -148.07145 - -42.75600 -138.73279 -148.07145 - -45.52682 -138.34847 -147.83050 - -48.28991 -137.95934 -147.58910 - -51.04516 -137.56540 -147.34724 - -53.79249 -137.16665 -147.10488 - -56.53179 -136.76310 -146.86200 - -56.53179 -136.76310 -146.86200 - -59.26298 -136.35473 -146.61858 - -61.98595 -135.94156 -146.37458 - -64.70061 -135.52359 -146.12999 - -67.40686 -135.10080 -145.88477 - -70.10461 -134.67321 -145.63889 - -70.10461 -134.67320 -145.63889 - -71.98792 -134.37103 -145.46638 - -73.86699 -134.06650 -145.29353 - -75.74177 -133.75961 -145.12032 - -77.61225 -133.45036 -144.94676 - -79.47837 -133.13877 -144.77283 - -79.47837 -133.13876 -144.77283 - -80.27680 -133.00450 -144.69817 - -81.07443 -132.86980 -144.62345 - -81.87124 -132.73467 -144.54865 - -82.66724 -132.59911 -144.47378 - -83.46243 -132.46312 -144.39884 - -83.46317 -132.45576 -144.39884 - -99.19094 -129.64500 -142.88379 - -114.57104 -126.66116 -141.33420 - -129.58270 -123.50424 -139.74484 - -144.20514 -120.17424 -138.11051 - -158.41759 -116.67116 -136.42597 - -158.40212 -26.76234 -136.42597 - -161.69979 -22.66703 -134.48998 - -164.43716 -18.35805 -132.48449 - -166.58577 -13.83538 -130.40856 - -168.11710 -9.09904 -128.26129 - -169.00268 -4.14901 -126.04175 - -169.01801 -4.23163 -126.04175 - -169.24035 0.93208 -123.74923 - -168.75996 6.30946 -121.38395 - -167.54833 11.90052 -118.94643 - -165.57699 17.70526 -116.43722 - -162.81743 23.72368 -113.85683 - -162.81736 23.74351 -113.85683 - -159.23846 29.97561 -111.20603 - -154.81437 36.42139 -108.48677 - -149.51659 43.08085 -105.70133 - -143.31664 49.95399 -102.85199 - -136.18603 57.04080 -99.94103 - -136.18547 57.05438 -99.94103 - -128.93750 63.76979 -97.27064 - -120.87480 70.63332 -94.55535 - -111.97958 77.64497 -91.79825 - -102.23408 84.80473 -89.00244 - -91.62052 92.11261 -86.17102 - -91.62044 92.12061 -86.17102 - -80.12009 99.57661 -83.30733 - -67.71613 107.18073 -80.41572 - -54.39079 114.93297 -77.50083 - -40.12629 122.83333 -74.56731 - -24.90487 130.88180 -71.61980 - -24.90479 130.88793 -71.61980 - -8.70793 139.08452 -68.66319 - 8.48142 147.42923 -65.70353 - 26.68101 155.92206 -62.74713 - 45.90863 164.56301 -59.80036 - 66.18206 173.35208 -56.86953 - 66.18231 173.35459 -56.86953 - 73.17485 176.25420 -55.89727 - 80.28119 179.04419 -54.92785 - 87.49692 181.72427 -53.96153 - 94.81766 184.29394 -52.99860 - 102.23896 186.75251 -52.03933 - 102.23691 186.77380 -52.03933 - 127.57962 192.95751 -48.87190 - 153.58178 196.65578 -45.75935 - 179.90772 197.80158 -42.71289 - 206.21194 196.31633 -39.74376 - 232.13810 192.11672 -36.86319 - 232.13594 192.15981 -36.86319 - 255.05523 152.18787 -34.08356 - 272.86564 115.50702 -31.41363 - 285.99788 81.99370 -28.85915 - 294.86545 51.51391 -26.42585 - 299.86333 23.92335 -24.11950 - 299.90985 23.61269 -24.11950 - 301.73618 3.29696 -21.94385 - 300.78087 -17.20258 -19.89791 - 297.26049 -35.18979 -17.98024 - 291.50370 -50.77470 -16.18941 - 283.82037 -64.11393 -14.52398 - 283.80348 -64.16834 -14.52398 - 276.98129 -72.09214 -13.35570 - 269.42065 -78.94786 -12.25439 - 261.22521 -84.79866 -11.21806 - 252.49167 -89.72709 -10.24475 - 243.30751 -93.82417 -9.33249 - 243.30846 -93.78956 -9.33249 - 233.76310 -96.99554 -8.47916 - 223.93281 -99.49761 -7.68234 - 213.88525 -101.34977 -6.93960 - 203.68280 -102.60360 -6.24852 - 193.38283 -103.30826 -5.60669 - 193.38228 -103.28329 -5.60669 - 180.96528 -103.55572 -4.89798 - 168.55410 -103.19837 -4.25225 - 156.22001 -102.28244 -3.66522 - 144.02602 -100.87405 -3.13261 - 132.02750 -99.03425 -2.65014 - 132.03366 -99.05086 -2.65014 - 120.28317 -96.73317 -2.21351 - 108.83051 -94.09528 -1.81874 - 97.71435 -91.10634 -1.46197 - 86.98550 -87.60449 -1.13932 - 76.71262 -83.51883 -0.84695 - 76.70517 -83.52397 -0.84695 - 66.95360 -78.92135 -0.58106 - 57.78238 -73.86049 -0.33845 - 49.24336 -68.39265 -0.11616 - 41.38052 -62.61535 0.08878 - 34.22199 -56.68011 0.27933 - 34.22677 -56.63467 0.27933 - 27.75928 -51.13894 0.45826 - 21.95750 -45.54142 0.62755 - 16.83304 -39.85159 0.78898 - 12.39651 -34.07687 0.94433 - 8.65777 -28.22259 1.09538 - 8.65788 -28.22107 1.09538 - 5.59005 -22.88367 1.24372 - 3.17195 -17.39234 1.39013 - 1.42201 -11.74792 1.53522 - 0.35857 -5.95065 1.67960 - -0.00002 -0.00009 1.82388 + 0.00000 0.00000 -176.27627 + 0.32056 6.51338 -174.47517 + 1.32312 13.63999 -172.67412 + 3.06900 21.37983 -170.87356 + 5.61952 29.73290 -169.07391 + 9.03602 38.69919 -167.27562 + 9.03148 38.80778 -167.27562 + 13.37303 47.99426 -165.47926 + 18.61629 56.75929 -163.68613 + 24.70254 64.85381 -161.89768 + 31.56520 72.29278 -160.11538 + 39.14004 79.10007 -158.34069 + 39.14073 79.10242 -158.34069 + 47.36534 85.28563 -156.57526 + 56.17701 90.84337 -154.82127 + 65.51314 95.77487 -153.08098 + 75.31110 100.08006 -151.35663 + 85.50830 103.75959 -149.65047 + 85.50883 74.60087 -149.65047 + 93.12687 77.65607 -147.96475 + 101.01930 80.08880 -146.30155 + 109.12396 81.90133 -144.66282 + 117.37898 83.09634 -143.05049 + 125.72797 83.83354 -141.46653 + 125.72327 -136.27563 -141.46653 + 122.99895 -136.15574 -141.15331 + 120.27707 -136.03103 -140.84128 + 117.55774 -135.90152 -140.53041 + 114.84104 -135.76720 -140.22068 + 112.12708 -135.62808 -139.91205 + 112.12708 -135.62807 -139.91205 + 104.00257 -135.18185 -138.99258 + 95.90612 -134.69235 -138.08216 + 87.84035 -134.15958 -137.18009 + 79.80784 -133.58354 -136.28566 + 71.81119 -132.96424 -135.39818 + 71.81146 -132.97034 -135.39818 + 57.69116 -131.76251 -133.83539 + 43.70699 -130.41793 -132.28847 + 29.87353 -128.93659 -130.75360 + 16.20538 -127.31849 -129.22699 + 2.71711 -125.56364 -127.70483 + 2.71711 -125.56382 -127.70483 + -10.57670 -123.67222 -126.18335 + -23.66144 -121.64386 -124.65896 + -36.52252 -119.47875 -123.12812 + -49.14537 -117.17688 -121.58729 + -61.51539 -114.73825 -120.03294 + -61.51574 -114.74138 -120.03294 + -73.61868 -112.16600 -118.46159 + -85.43962 -109.45387 -116.86997 + -96.96397 -106.60498 -115.25494 + -108.17715 -103.61934 -113.61331 + -119.06457 -100.49694 -111.94193 + -119.05059 -10.57934 -111.94193 + -120.19052 -6.48403 -109.80694 + -120.77017 -2.17505 -107.62028 + -120.76104 2.34762 -105.38195 + -120.13464 7.08396 -103.09197 + -118.86249 12.03399 -100.75035 + -118.87659 11.97010 -100.75035 + -116.93871 17.13381 -98.35729 + -114.29808 22.51119 -95.91394 + -110.92622 28.10225 -93.42176 + -106.79465 33.90699 -90.88222 + -101.87486 39.92542 -88.29675 + -101.87473 39.94384 -88.29675 + -96.13579 46.17594 -85.66708 + -89.55165 52.62172 -82.99605 + -82.09383 59.28118 -80.28689 + -73.73384 66.15432 -77.54280 + -64.44318 73.24114 -74.76700 + -64.44267 73.25351 -74.76700 + -55.25081 79.96892 -72.24459 + -45.24421 86.83245 -69.70291 + -34.40510 93.84409 -67.14576 + -22.71570 101.00386 -64.57690 + -10.15825 108.31174 -62.00011 + -10.15817 108.31902 -62.00011 + 3.28599 115.77502 -59.41940 + 17.63375 123.37914 -56.83980 + 32.90290 131.13137 -54.26664 + 49.11121 139.03173 -51.70523 + 66.27644 147.08021 -49.16089 + 66.27707 147.08089 -49.16089 + 78.24802 152.04139 -47.47694 + 90.57937 156.08979 -45.80509 + 103.19782 159.21706 -44.14729 + 116.03625 161.67494 -42.50550 + 129.06013 163.91981 -40.88165 + 129.05976 163.89585 -40.88165 + 142.27599 166.43900 -39.27772 + 155.68426 168.76665 -37.69580 + 169.27840 171.08464 -36.13799 + 183.05737 173.38635 -34.60640 + 197.01959 175.66493 -33.10312 + 197.04349 175.21351 -33.10312 + 218.42781 144.63193 -30.66752 + 235.54569 112.55839 -28.32588 + 248.55340 82.96028 -26.08386 + 257.77365 55.72959 -23.94715 + 263.51508 30.75913 -21.92140 + 263.51157 30.80542 -21.92140 + 266.18396 9.66103 -20.01054 + 266.18662 -9.26094 -18.21411 + 263.80769 -26.08334 -16.53114 + 259.31884 -40.93061 -14.96069 + 252.97503 -53.92902 -13.50180 + 252.97539 -53.86924 -13.50180 + 245.12978 -63.52043 -12.15245 + 236.11232 -71.46794 -10.90843 + 226.14191 -77.83491 -9.76552 + 215.42128 -82.74102 -8.71947 + 204.13740 -86.30259 -7.76606 + 204.13955 -86.25209 -7.76606 + 195.44840 -87.48203 -7.10901 + 186.66009 -88.20385 -6.49921 + 177.82297 -88.46549 -5.93451 + 168.98090 -88.30988 -5.41279 + 160.17354 -87.77785 -4.93192 + 160.17303 -87.76739 -4.93192 + 151.44525 -86.73558 -4.48976 + 142.83585 -85.40577 -4.08419 + 134.37288 -83.81256 -3.71318 + 126.08103 -81.98857 -3.37469 + 117.98184 -79.96438 -3.06668 + 117.98156 -79.94953 -3.06668 + 108.54450 -77.30072 -2.73443 + 99.43668 -74.46943 -2.43995 + 90.67744 -71.49801 -2.18019 + 82.28122 -68.42520 -1.95211 + 74.25804 -65.28617 -1.75267 + 74.26132 -65.30157 -1.75267 + 66.62295 -62.00205 -1.57890 + 59.38439 -58.61337 -1.42831 + 52.56181 -55.07300 -1.29852 + 46.17162 -51.41400 -1.18716 + 40.22556 -47.67703 -1.09187 + 40.22446 -47.67132 -1.09187 + 34.72576 -43.96876 -1.01038 + 29.67259 -40.25045 -0.94098 + 25.06522 -36.54285 -0.88204 + 20.90097 -32.86861 -0.83197 + 17.17467 -29.24657 -0.78916 + 17.17492 -29.24035 -0.78916 + 13.85603 -26.08296 -0.75215 + 10.91276 -22.98184 -0.71995 + 8.33774 -19.94694 -0.69167 + 6.12253 -16.98610 -0.66641 + 4.25788 -14.10504 -0.64327 + 4.25795 -14.10312 -0.64327 + 2.73146 -11.33340 -0.62146 + 1.53912 -8.53404 -0.60059 + 0.68441 -5.70651 -0.58036 + 0.17066 -2.85156 -0.56048 + -0.00043 -0.00832 -0.54065 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5037,7 +4440,7 @@ Method Ka,K0,Kp 0.00 0.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stages active +Soil initial [TABLE] DataCount=4 [COLUMN INDICATION] @@ -5086,7 +4489,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5104,22 +4507,22 @@ Status character 86.59679 0.00000 86.59679 8.51163 202 100 P 92.72906 0.00000 92.72906 9.36279 202 100 P 92.72906 0.00000 92.72906 9.36279 202 100 P - 95.15666 0.00000 98.86133 10.21396 110 96 - - 87.21917 0.00000 104.99360 11.06512 110 83 - - 79.27228 0.00000 111.12588 11.91628 110 71 - - 71.63410 0.00000 117.25815 12.76745 110 61 - - 64.16441 0.00000 123.39042 13.61861 110 52 - - 64.16441 0.00000 123.39042 13.61861 110 52 - - 56.67796 0.00000 129.52269 14.46977 110 44 - - 49.18004 0.00000 135.65496 15.32094 110 36 - - 41.67775 0.00000 141.78724 16.17210 110 29 - - 34.17817 0.00000 147.91951 17.02326 110 23 - - 26.68842 0.00000 154.05178 17.87443 110 17 - - 26.68842 0.00000 154.05178 17.87443 110 17 - - 19.21502 0.00000 160.18405 18.72559 110 12 - - 11.76282 0.00000 166.31633 19.57675 110 0 - - 4.86486 0.00000 172.44860 20.42792 1 0 A - 5.36972 0.00000 178.58087 21.27908 1 0 A + 91.00056 0.00000 98.86133 10.21396 110 92 - + 84.30009 0.00000 104.99360 11.06512 110 80 - + 77.59024 0.00000 111.12588 11.91628 110 70 - + 71.18918 0.00000 117.25815 12.76745 110 61 - + 64.95669 0.00000 123.39042 13.61861 110 53 - + 64.95669 0.00000 123.39042 13.61861 110 53 - + 58.70761 0.00000 129.52269 14.46977 110 45 - + 52.44724 0.00000 135.65496 15.32094 110 39 - + 46.18270 0.00000 141.78724 16.17210 110 33 - + 39.92109 0.00000 147.91951 17.02326 110 27 - + 33.66953 0.00000 154.05178 17.87443 110 22 - + 33.66953 0.00000 154.05178 17.87443 110 22 - + 27.43444 0.00000 160.18405 18.72559 110 17 - + 21.22013 0.00000 166.31633 19.57675 110 13 - + 15.03052 0.00000 172.44860 20.42792 110 0 - + 8.86952 0.00000 178.58087 21.27908 110 0 - 5.87459 0.00000 184.71314 22.13024 1 0 A 5.87459 0.00000 184.71314 22.13024 1 0 A 5.91498 0.20000 185.20372 22.19834 1 0 A @@ -5134,82 +4537,22 @@ Status character 6.56120 3.40000 193.05303 23.28782 1 0 A 6.68237 4.00000 194.52478 23.49210 1 0 A 6.68237 4.00000 194.52478 23.49210 1 0 A - 6.72276 4.20000 195.01536 23.56020 1 0 A - 6.76315 4.40000 195.50594 23.62829 1 0 A - 6.80354 4.60000 195.99652 23.69638 1 0 A - 6.84393 4.80000 196.48711 23.76448 1 0 A - 6.88432 5.00000 196.97769 23.83257 1 0 A - 6.88432 5.00000 196.97769 23.83257 1 0 A - 6.92471 5.20000 197.46827 23.90066 1 0 A - 6.96510 5.40000 197.95885 23.96875 1 0 A - 7.00548 5.60000 198.44943 24.03685 1 0 A - 7.04587 5.80000 198.94001 24.10494 1 0 A - 7.08626 6.00000 199.43060 24.17303 1 0 A - 7.08626 6.00000 199.43060 24.17303 1 0 A - 7.12665 6.20000 199.92118 24.24113 1 0 A - 7.16704 6.40000 200.41176 24.30922 1 0 A - 7.20743 6.60000 200.90234 24.37731 1 0 A - 7.24782 6.80000 201.39292 24.44541 1 0 A - 7.28821 7.00000 201.88350 24.51350 1 0 A - 7.28821 7.00000 201.88350 24.51350 1 0 A - 7.30033 7.06000 202.03068 24.53393 1 0 A - 7.31244 7.12000 202.17785 24.55436 1 0 A - 7.32456 7.18000 202.32503 24.57478 1 0 A - 7.33668 7.24000 202.47220 24.59521 1 0 A - 7.34879 7.30000 202.61938 24.61564 1 0 A - 7.34879 7.30000 202.61938 24.61564 1 0 A - 7.37707 7.44000 202.96278 24.66330 1 0 A - 7.40534 7.58000 203.30619 24.71097 1 0 A - 7.43361 7.72000 203.64960 24.75863 1 0 A - 7.46188 7.86000 203.99301 24.80630 1 0 A - 7.49016 8.00000 204.33641 24.85396 1 0 A - 7.49016 8.00000 204.33641 24.85396 1 0 A - 7.53054 8.20000 204.82700 24.92206 1 0 A - 7.57093 8.40000 205.31758 24.99015 1 0 A - 7.61132 8.60000 205.80816 25.05824 1 0 A - 7.65171 8.80000 206.29874 25.12634 1 0 A - 7.69210 9.00000 206.78932 25.19443 1 0 A - 7.69210 9.00000 206.78932 25.19443 1 0 A - 7.73249 9.20000 207.27990 25.26252 1 0 A - 7.77288 9.40000 207.77049 25.33062 1 0 A - 7.81327 9.60000 208.26107 25.39871 1 0 A - 7.85366 9.80000 208.75165 25.46680 1 0 A - 7.89405 10.00000 209.24223 25.53490 1 0 A - 7.89405 10.00000 209.24223 25.53490 1 0 A - 7.93444 10.20000 209.73281 25.60299 1 0 A + 6.89778 5.06667 197.14121 23.85527 1 0 A + 7.11319 6.13333 199.75765 24.21843 1 0 A + 7.32860 7.20000 202.37409 24.58159 1 0 A + 7.54401 8.26667 204.99052 24.94476 1 0 A + 7.75942 9.33333 207.60696 25.30792 1 0 A + 7.75942 9.33333 207.60696 25.30792 1 0 A 7.97483 10.40000 210.22339 25.67108 1 0 A - 8.01522 10.60000 210.71398 25.73917 1 0 A - 8.05560 10.80000 211.20456 25.80727 1 0 A - 8.09599 11.00000 211.69514 25.87536 1 0 A - 8.09599 11.00000 211.69514 25.87536 1 0 A - 8.13638 11.20000 212.18572 25.94345 1 0 A - 8.17677 11.40000 212.67630 26.01155 1 0 A - 8.21716 11.60000 213.16689 26.07964 1 0 A - 8.25755 11.80000 213.65747 26.14773 1 0 A - 8.29794 12.00000 214.14805 26.21583 1 0 A - 8.29794 12.00000 214.14805 26.21583 1 0 A - 8.33833 12.20000 214.63863 26.28392 1 0 A - 8.37872 12.40000 215.12921 26.35201 1 0 A - 8.41911 12.60000 215.61979 26.42010 1 0 A - 8.45950 12.80000 216.11038 26.48820 1 0 A - 8.49989 13.00000 216.60096 26.55629 1 0 A - 8.49989 13.00000 216.60096 26.55629 1 0 A - 8.52816 13.14000 216.94437 26.60396 1 0 A - 8.55643 13.28000 217.28777 26.65162 1 0 A - 8.58470 13.42000 217.63118 26.69929 1 0 A - 8.61298 13.56000 217.97459 26.74695 1 0 A - 8.64125 13.70000 218.31799 26.79462 1 0 A - 8.64125 13.70000 218.31799 26.79462 1 0 A - 8.65336 13.76000 218.46517 26.81504 1 0 A - 8.66548 13.82000 218.61234 26.83547 1 0 A - 8.67760 13.88000 218.75952 26.85590 1 0 A - 8.68971 13.94000 218.90669 26.87633 1 0 A - 8.70183 14.00000 219.05387 26.89676 1 0 A - 8.70183 14.00000 219.05387 26.89676 1 0 A - 8.94417 15.20000 221.99736 27.30531 1 0 A - 9.18650 16.40000 224.94085 27.71387 1 0 A - 9.42884 17.60000 227.88434 28.12243 1 0 A - 9.67117 18.80000 230.82783 28.53099 1 0 A + 8.19023 11.46667 212.83983 26.03424 1 0 A + 8.40564 12.53333 215.45627 26.39741 1 0 A + 8.62105 13.60000 218.07270 26.76057 1 0 A + 8.83646 14.66667 220.68914 27.12373 1 0 A + 8.83646 14.66667 220.68914 27.12373 1 0 A + 9.05187 15.73333 223.30558 27.48690 1 0 A + 9.26728 16.80000 225.92201 27.85006 1 0 A + 9.48269 17.86667 228.53845 28.21322 1 0 A + 9.69810 18.93333 231.15488 28.57638 1 0 A 9.91351 20.00000 233.77132 28.93955 1 0 A 9.91351 20.00000 233.77132 28.93955 1 0 A 10.18277 21.33333 237.04187 29.39350 1 0 A @@ -5242,16 +4585,16 @@ Status character 15.65347 50.80000 308.74861 32.36016 1 0 A 15.68779 52.00000 309.30660 32.42076 1 0 A 15.68779 52.00000 309.30660 32.42076 1 0 A - 15.72211 53.20000 309.86459 32.48136 1 0 A + 15.71067 52.80000 309.67860 32.46116 1 0 A + 15.73355 53.60000 310.05059 32.50156 1 0 A 15.75643 54.40000 310.42258 32.54196 1 0 A - 15.79075 55.60000 310.98057 32.60256 1 0 A + 15.77931 55.20000 310.79458 32.58236 1 0 A + 15.80219 56.00000 311.16657 32.62276 1 0 A + 15.80219 56.00000 311.16657 32.62276 1 0 A 15.82507 56.80000 311.53856 32.66316 1 0 A - 15.85939 58.00000 312.09655 32.72375 1 0 A - 15.85939 58.00000 312.09655 32.72375 1 0 A + 15.84795 57.60000 311.91056 32.70355 1 0 A 15.87083 58.40000 312.28255 32.74395 1 0 A - 15.88227 58.80000 312.46855 32.76415 1 0 A 15.89371 59.20000 312.65454 32.78435 1 0 A - 15.90515 59.60000 312.84054 32.80455 1 0 A 15.91659 60.00000 313.02654 32.82475 1 0 A 12.98758 60.00000 931.37189 25.96361 1 0 A 13.22735 61.33333 948.56645 26.44294 1 0 A @@ -5291,28 +4634,28 @@ Status character 15.21682 96.00000 1221.86566 30.61367 1 0 A 15.21682 96.00000 1221.86566 30.61367 1 0 A 15.38554 97.20000 1235.41407 30.95312 1 0 A - 15.55427 98.40000 1248.96248 31.29257 1 0 A - 17.01236 99.60000 1262.51089 31.63203 110 0 - - 20.57825 100.80000 1276.05929 31.97148 110 0 - - 23.84140 102.00000 1289.60770 32.31093 110 0 - - 23.84140 102.00000 1289.60770 32.31093 110 0 - - 26.83975 103.20000 1303.15611 32.65039 110 0 - - 29.60530 104.40000 1316.70452 32.98984 110 0 - - 32.16769 105.60000 1330.25293 33.32929 110 0 - - 34.55655 106.80000 1343.80133 33.66875 110 3 - - 36.80151 108.00000 1357.34974 34.00820 110 3 - - 36.80151 108.00000 1357.34974 34.00820 110 3 - - 38.93025 109.20000 1370.89815 34.34765 110 3 - - 40.96259 110.40000 1384.44656 34.68711 110 3 - - 42.91632 111.60000 1397.99496 35.02656 110 3 - - 44.80928 112.80000 1411.54337 35.36601 110 3 - - 46.65927 114.00000 1425.09178 35.70547 110 3 - - 46.65927 114.00000 1425.09178 35.70547 110 3 - - 48.48209 115.20000 1438.64019 36.04492 110 3 - - 50.28566 116.40000 1452.18859 36.38437 110 3 - - 52.07605 117.60000 1465.73700 36.72383 110 4 - - 53.85931 118.80000 1479.28541 37.06328 110 4 - - 55.64150 120.00000 1492.83382 37.40273 110 4 - + 17.00951 98.40000 1248.96248 31.29257 110 0 - + 18.64685 99.60000 1262.51089 31.63203 110 0 - + 20.09986 100.80000 1276.05929 31.97148 110 0 - + 21.39226 102.00000 1289.60770 32.31093 110 0 - + 21.39226 102.00000 1289.60770 32.31093 110 0 - + 22.54655 103.20000 1303.15611 32.65039 110 0 - + 23.58008 104.40000 1316.70452 32.98984 110 0 - + 24.50892 105.60000 1330.25293 33.32929 110 0 - + 25.34909 106.80000 1343.80133 33.66875 110 0 - + 26.11664 108.00000 1357.34974 34.00820 110 0 - + 26.11664 108.00000 1357.34974 34.00820 110 0 - + 26.82617 109.20000 1370.89815 34.34765 110 0 - + 27.48757 110.40000 1384.44656 34.68711 110 0 - + 28.10981 111.60000 1397.99496 35.02656 110 0 - + 28.70188 112.80000 1411.54337 35.36601 110 0 - + 29.27275 114.00000 1425.09178 35.70547 110 0 - + 29.27275 114.00000 1425.09178 35.70547 110 0 - + 29.83033 115.20000 1438.64019 36.04492 110 0 - + 30.37850 116.40000 1452.18859 36.38437 110 0 - + 30.92024 117.60000 1465.73700 36.72383 110 0 - + 31.45851 118.80000 1479.28541 37.06328 110 0 - + 31.99628 120.00000 1492.83382 37.40273 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5325,10 +4668,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 147.990 'Clay' + 0.00 152.535 'Clay' -6.00 31.261 'Peat' -8.00 47.055 'Sand 1' - -11.00 93.687 'Sand 2' + -11.00 69.024 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5343,12 +4686,12 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] -Stage 3 passive +Profile add. pressure [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Level top layer Excess pore top @@ -5365,7 +4708,8 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 0.00 0.00 10.00 11.00 0.25 21.80 21.80 29.67 0.29 0.50 4.65 'Peat -7.8m à -8m' + 0.00 0.00 0.00 15.00 16.00 6.25 17.09 17.09 25.63 0.34 0.57 4.09 'Clay' + -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -10.00 0.00 20.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 20.00 80.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -5373,10 +4717,10 @@ Layer name [END OF TABLE] [MULTILINEAR BRANCHES] 1 : Number of branches for spring characteristics -4 : Number of layers +5 : Number of layers [MODULUS OF SUBGRADE REACTION] [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Layer Branch @@ -5384,10 +4728,11 @@ Modulus of subgrade reaction top Modulus of subgrade reaction bottom [END OF COLUMN INDICATION] [DATA] - 1 1 800.00000 800.00000 - 2 1 10000.00000 10000.00000 + 1 1 2000.00000 2000.00000 + 2 1 800.00000 800.00000 3 1 10000.00000 10000.00000 4 1 10000.00000 10000.00000 + 5 1 10000.00000 10000.00000 [END OF DATA] [END OF TABLE] [END OF MODULUS OF SUBGRADE REACTION] @@ -5395,7 +4740,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -5404,24 +4749,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.14100 30.62200 1.57691 0.00767 - -8.66667 66.57200 30.42600 47.07818 1.02891 - -9.33333 82.06900 30.41900 469.99372 3.55983 - -10.00000 79.87800 45.62100 662.50937 8.30088 - -10.50000 78.82500 43.02100 808.54716 15.22198 - -11.00000 78.19100 41.26400 926.53591 22.65557 - -11.60000 76.63100 39.59100 1124.64825 30.57302 - -12.20000 78.97500 38.45100 1356.67457 38.57888 - -12.80000 78.84000 37.64900 1420.61220 46.40835 - -13.40000 78.81200 37.07500 1434.87290 53.92348 - -14.00000 78.88300 35.13900 1399.57631 60.01054 + -7.20000 0.00000 0.00000 0.00000 0.00000 + -7.60000 71.41800 0.00000 12.25240 0.00000 + -8.00000 68.19900 0.00000 35.28103 0.00000 + -8.66667 62.94900 29.28100 366.45689 0.81395 + -9.33333 80.49000 49.48700 591.26331 5.80483 + -10.00000 78.79300 45.00000 806.47357 18.13460 + -10.50000 77.94300 41.38700 972.50274 26.65483 + -11.00000 77.40500 39.99100 1112.24119 35.08275 + -11.60000 76.13400 38.57200 1347.18169 43.76962 + -12.20000 78.28800 37.58100 1637.36535 52.42669 + -12.80000 78.14300 36.86800 1744.63977 60.84670 + -13.40000 78.07100 36.34700 1802.96053 68.91683 + -14.00000 78.06000 34.64000 1812.55002 75.82609 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -5432,23 +4778,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00164 7.88454 0.03836 2.74414 0.03829 7.87161 - -8.33333 7.89566 68.25191 1.53186 1.80025 0.19401 8.64423 - -9.00000 20.91076 634.37330 3.79637 1.28846 0.18155 30.33718 - -9.66667 35.01686 288.77348 7.11158 0.94420 0.20309 8.24670 - -10.25000 40.31386 292.07557 13.84219 0.81073 0.34336 7.24504 - -10.75000 36.47897 235.97751 14.86719 0.77706 0.40756 6.46886 - -11.30000 31.78836 330.18723 13.19575 0.67876 0.41511 10.38705 - -11.90000 26.16252 386.71054 13.34310 0.64876 0.51001 14.78109 - -12.50000 20.11463 23.83430 13.04912 0.64874 0.64874 1.18492 - -13.10000 13.75589 23.83430 12.52521 0.91053 0.91053 1.73266 - -13.70000 7.17835 23.83430 10.14510 1.41329 1.41329 3.32030 + -7.40000 2.01302 30.63101 0.00000 2.71331 0.00000 15.21643 + -7.80000 6.31878 57.57157 0.00000 2.42817 0.00000 9.11118 + -8.33333 15.33906 496.76379 1.22092 1.58629 0.07960 32.38555 + -9.00000 29.39452 337.20963 7.48632 1.05399 0.25468 11.47185 + -9.66667 43.45910 322.81539 18.49465 0.77892 0.42556 7.42803 + -10.25000 48.26257 332.05834 17.04046 0.67305 0.35308 6.88025 + -10.75000 43.93852 279.47690 16.85586 0.63760 0.38362 6.36064 + -11.30000 38.76252 391.56749 14.47811 0.54005 0.37351 10.10170 + -11.90000 32.71463 483.63944 14.42844 0.51023 0.44104 14.78358 + -12.50000 26.35589 178.79071 14.03336 0.53246 0.53246 6.78371 + -13.10000 19.77835 97.20126 13.45020 0.68005 0.68005 4.91453 + -13.70000 13.05220 15.98248 11.51544 0.88226 0.88226 1.22450 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=156 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5543,154 +4890,95 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14947 0.00000 3.14947 1.09795 202 100 P - 6.30392 0.00000 6.30392 2.19762 202 100 P - 9.46825 0.00000 9.46825 3.30075 202 100 P - 12.64729 0.00000 12.64729 4.40901 202 100 P - 15.84572 0.00000 15.84572 5.52402 202 100 P - 17.40103 0.00000 17.40103 3.62393 202 100 P - 37.39167 0.00000 37.39167 7.78718 202 100 P - 57.82877 0.00000 57.82877 12.04340 202 100 P - 78.82487 0.00000 78.82487 16.41604 202 100 P - 100.44077 0.00000 100.44077 20.91776 202 100 P - 122.68655 0.00000 122.68655 25.55066 202 100 P - 393.20602 0.00000 430.57181 18.28689 110 91 - - 369.65241 0.00000 510.73668 21.69159 110 72 - - 346.98593 0.00000 592.75987 25.17521 110 59 - - 325.28566 0.00000 676.33122 28.72458 110 48 - - 304.62910 0.00000 761.10257 32.32492 110 40 - - 285.09342 0.00000 846.71893 35.96114 110 34 - - 230.16764 0.00000 230.16764 26.35302 202 100 P - 253.57875 0.00000 253.57875 29.03347 202 100 P - 236.07096 0.00000 277.04388 31.72011 110 85 - - 219.03991 0.00000 300.49018 34.40459 110 73 - - 203.18271 0.00000 323.85644 37.07991 110 63 - - 188.50097 0.00000 347.09293 39.74037 110 54 - - 181.32230 0.00000 304.93442 34.12274 110 59 - - 168.50181 3.00000 299.86316 33.55526 110 56 - - 156.32047 6.00000 294.69705 32.97716 110 53 - - 144.76288 9.00000 289.42724 32.38746 110 50 - - 134.23288 12.00000 284.04703 31.78540 110 47 - - 124.49536 15.00000 278.55160 31.17046 110 45 - - 123.20070 15.00000 248.70978 29.87580 110 50 - - 114.06532 18.00000 243.69740 29.27369 110 47 - - 105.48209 21.00000 238.57775 28.65870 110 44 - - 97.42675 24.00000 233.35034 28.03077 110 42 - - 89.87515 27.00000 228.01558 27.38994 110 39 - - 82.80323 30.00000 222.57461 26.73636 110 37 - - 79.42103 30.00000 357.38783 23.35416 110 22 - - 71.63444 33.60000 346.68292 22.65463 110 21 - - 64.46227 37.20000 335.74298 21.93974 110 19 - - 57.86222 40.80000 324.57566 21.20999 110 18 - - 51.79205 44.40000 313.18953 20.46594 110 17 - - 46.20956 48.00000 301.59383 19.70820 110 15 - - 45.33861 48.00000 429.17724 18.83725 110 11 - - 40.23565 51.60000 412.39166 18.10051 110 10 - - 35.53933 55.20000 395.33559 17.35189 110 9 - - 31.21169 58.80000 378.02316 16.59202 110 8 - - 27.21474 62.40000 360.46844 15.82152 110 8 - - 23.51052 66.00000 342.68530 15.04099 110 7 - - 23.50990 66.00000 27.47131 15.04036 110 86 - - 20.06107 69.60000 26.02850 14.25044 110 77 - - 16.83619 73.20000 24.56953 13.45166 110 69 - - 13.80619 76.80000 23.09541 12.64458 110 60 - - 11.82975 80.40000 21.60711 11.82975 1 55 A - 11.00768 84.00000 20.10559 11.00768 1 55 A - 15.44980 84.00000 29.39951 15.44980 1 53 A - 14.28650 87.60000 27.18587 14.28650 1 53 A - 13.11439 91.20000 24.95544 13.11439 1 53 A - 11.93406 94.80000 22.70940 11.93406 1 53 A - 10.74613 98.40000 20.44887 10.74613 1 53 A - 9.55114 102.00000 18.17491 9.55114 1 53 A - 14.82485 102.00000 34.82862 14.82485 1 43 A - 12.95989 105.60000 30.44720 12.95989 1 43 A - 11.08556 109.20000 26.04375 11.08556 1 43 A - 9.20257 112.80000 21.61996 9.20257 1 43 A - 7.31159 116.40000 17.17742 7.31159 1 43 A - 5.41327 120.00000 12.71761 5.41327 1 43 A + 0.00002 0.00000 0.00002 0.00000 202 100 P + 12.18596 0.00000 12.18596 2.17294 202 100 P + 24.44821 0.00000 24.44821 4.35948 202 100 P + 36.85993 0.00000 36.85993 6.57267 202 100 P + 42.82891 0.00000 49.48840 8.82451 110 87 - + 43.83082 0.00000 62.39250 11.12550 110 70 - + 37.35892 0.00000 37.35892 9.95632 202 100 P + 43.48942 0.00000 45.27970 12.06725 110 96 - + 44.39248 0.00000 53.41686 14.23584 110 83 - + 45.37650 0.00000 61.78544 16.46610 110 73 - + 46.44525 0.00000 70.39328 18.76013 110 66 - + 47.60071 0.00000 79.24147 21.11821 110 60 - + 281.66244 0.00000 281.66244 13.79621 202 100 P + 324.60958 0.00000 366.14756 17.93440 110 89 - + 307.18800 0.00000 452.75441 22.17652 110 68 - + 290.62439 0.00000 541.18697 26.50807 110 54 - + 274.82282 0.00000 631.08917 30.91160 110 44 - + 259.86720 0.00000 722.08208 35.36855 110 36 - + 247.99895 0.00000 255.78140 23.50030 110 97 - + 232.44617 0.00000 288.26790 26.48505 110 81 - + 217.80896 0.00000 320.88595 29.48188 110 68 - + 204.09871 0.00000 353.52650 32.48078 110 58 - + 191.32828 0.00000 386.09624 35.47317 110 50 - + 179.51198 0.00000 418.51810 38.45198 110 43 - + 167.72546 0.00000 270.99053 28.41675 110 62 - + 156.05269 0.00000 291.84809 30.60393 110 53 - + 145.31656 0.00000 312.53940 32.77367 110 46 - + 135.49079 0.00000 333.04195 34.92362 110 41 - + 126.54985 0.00000 353.34021 37.05215 110 36 - + 118.46881 0.00000 373.42449 39.15824 110 32 - + 111.55382 0.00000 345.88621 33.83561 110 32 - + 104.39308 3.00000 340.44098 33.30294 110 31 - + 97.75112 6.00000 334.88114 32.75906 110 29 - + 91.54909 9.00000 329.20711 32.20401 110 28 - + 85.76582 12.00000 323.42014 31.63791 110 27 - + 80.38019 15.00000 317.52208 31.06094 110 25 - + 78.74428 15.00000 293.54214 29.42503 110 27 - + 73.76594 18.00000 287.98906 28.86839 110 26 - + 69.14381 21.00000 282.33814 28.30193 110 24 - + 64.85777 24.00000 276.59231 27.72596 110 23 - + 60.88770 27.00000 270.75470 27.14079 110 22 - + 57.21351 30.00000 264.82863 26.54675 110 22 - + 53.15195 30.00000 420.59012 22.48519 110 13 - + 49.21617 33.60000 409.11851 21.87191 110 12 - + 45.64821 37.20000 397.46203 21.24874 110 11 - + 42.41812 40.80000 385.63036 20.61621 110 11 - + 39.49595 44.40000 373.63310 19.97482 110 11 - + 36.85175 48.00000 361.47973 19.32509 110 10 - + 35.78457 48.00000 529.01627 18.25792 110 7 - + 33.42563 51.60000 511.01523 17.63665 110 7 - + 31.29147 55.20000 492.81247 17.00842 110 6 - + 29.35884 58.80000 474.42071 16.37366 110 6 - + 27.60442 62.40000 455.85218 15.73281 110 6 - + 26.00492 66.00000 437.11859 15.08626 110 6 - + 26.66225 66.00000 200.57962 15.74358 110 13 - + 25.16716 69.60000 191.91277 15.06332 110 13 - + 23.78765 73.20000 183.18019 14.37789 110 13 - + 22.50805 76.80000 174.38651 13.68767 110 13 - + 21.31266 80.40000 165.53610 12.99300 110 13 - + 20.18576 84.00000 156.63311 12.29420 110 13 - + 23.59356 84.00000 113.47445 15.70200 110 21 - + 22.32610 87.60000 106.98932 14.80462 110 21 - + 21.10227 91.20000 100.47157 13.90273 110 21 - + 19.91342 94.80000 93.92373 12.99668 110 21 - + 18.75091 98.40000 87.34812 12.08678 110 21 - + 17.60606 102.00000 80.74695 11.17334 110 22 - + 18.31912 102.00000 20.11892 14.49576 110 91 - + 16.22200 105.60000 18.46832 13.30650 110 88 - + 14.13081 109.20000 16.81234 12.11336 110 84 - + 12.04244 112.80000 15.15144 10.91667 110 79 - + 9.95374 116.40000 13.48603 9.71674 110 74 - + 8.51384 120.00000 11.81651 8.51384 1 72 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] [FORCE FROM LAYER] [TABLE] -DataCount=4 +DataCount=5 [COLUMN INDICATION] Level top layer Force Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 1.580 'Peat -7.8m à -8m' - -8.00 420.192 'Sand 1' - -10.00 126.658 'Sand 1' - -11.00 80.429 'Sand 2' + 0.00 0.000 'Clay' + -6.00 28.834 'Peat' + -8.00 431.194 'Sand 1' + -10.00 81.206 'Sand 1' + -11.00 79.082 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5713,9 +5001,9 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 25.06756 26.99742 -19.47969 0.00000 7.07061 1 12 4 1.000 0 0 - 469.18058 240.19350 -262.20069 6.61872 12.10586 2 12 4 1.000 0 0 - 301.73618 197.80158 -190.84811 42.22733 44.90133 3 12 4 1.000 0 0 + 24.48618 28.09126 -17.13753 0.00000 7.12669 1 12 4 1.000 0 0 + 442.02131 240.19247 -241.83976 6.53708 11.98633 2 12 4 1.000 0 0 + 266.18662 175.66493 -176.27627 30.69559 34.20753 3 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -5737,7 +5025,7 @@ AnchorName [END OF COLUMN INDICATION] [DATA] 2 12 7 4 1.000 80.00000 0 1 0 0 'anchor' - 3 12 7 4 1.000 40.94109 0 1 0 0 'anchor' + 3 12 7 4 1.000 29.25746 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -5754,11 +5042,11 @@ Force [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=469.18058 -MaximumShearForce=240.19350 -MaximumDisplacement=-262.20069 -MaximumPercentageMobilisedMoment=42.22733 -MaximumPercentageMobilisedResistance=44.90133 +MaximumMoment=442.02131 +MaximumShearForce=240.19247 +MaximumDisplacement=-241.83976 +MaximumPercentageMobilisedMoment=30.69559 +MaximumPercentageMobilisedResistance=34.20753 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] @@ -5774,8 +5062,8 @@ SoilMaterialName Parameter01 [END OF COLUMN INDICATION] [DATA] - 3 -1 -1 'Stages active' '' '' - 3 -1 -1 'Stage 2 passive' '' '' + 3 -1 -1 'Soil initial' '' '' + 3 -1 -1 'Profile add. pressure' '' '' [END OF DATA] [END OF TABLE] [END OF WARNINGS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shi index 53ce2079..36049516 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-25d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-25d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-25d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1147,59 +1147,28 @@ SurchargeLoadDistribution=2 0 1/0 : Yes/No Unloading curve 0 1/0 : Yes/No Use Cur values - 4 Number of soil profiles -Stage 1 passive - 0.000 X coordinate - 0.000 Y coordinate - - 14 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.40 0.00 0.00 Clay -2.4m à -2.5m - 2 -2.50 0.00 0.00 Clay -2.5m à -2.6m - 3 -2.60 0.00 0.00 Clay -2.6m à -2.7m - 4 -2.70 0.00 0.00 Clay -2.7m à -2.8m - 5 -2.80 0.00 0.00 Clay -2.9m à -3.0m - 6 -2.90 0.00 0.00 Clay -3.0m à -3.1m - 7 -3.00 0.00 0.00 Clay -3.1m à -3.2m - 8 -3.10 0.00 0.00 Clay -3.2m à -3.3m - 9 -3.20 0.00 0.00 Clay -3.3m à -3.4m - 10 -3.30 0.00 0.00 Clay -3.4m à -3.5m - 11 -3.40 0.00 0.00 Clay - 12 -6.00 0.00 0.00 Peat - 13 -8.00 0.00 0.00 Sand 1 - 14 -11.00 0.00 0.00 Sand 2 -Stage 2 passive - 0.000 X coordinate - 0.000 Y coordinate - - 6 Number of soil layers per soil profile - Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 -Stage 3 passive + 2 Number of soil profiles +Soil initial 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m - 2 -8.00 0.00 0.00 Sand 1 - 3 -10.00 0.00 20.00 Sand 1 - 4 -11.00 20.00 80.00 Sand 2 -Stages active + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 +Profile add. pressure 0.000 X coordinate 0.000 Y coordinate - 4 Number of soil layers per soil profile + 5 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name 1 0.00 0.00 0.00 Clay 2 -6.00 0.00 0.00 Peat 3 -8.00 0.00 0.00 Sand 1 - 4 -11.00 0.00 0.00 Sand 2 + 4 -10.00 0.00 20.00 Sand 1 + 5 -11.00 20.00 80.00 Sand 2 [END OF SOIL PROFILES] @@ -1219,7 +1188,7 @@ Stages active 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.20 4 1 GLright1 0.00 Standard deviation 2 Distribution type @@ -1276,8 +1245,8 @@ GLleft1 GLright1 WLleft1 WLright1 -Stage 1 passive -Stages active +Soil initial +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 0 Anchors present in stage @@ -1299,8 +1268,8 @@ GLleft2 GLright2 WLleft2 WLright2 -Stage 2 passive -Stages active +Soil initial +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1326,8 +1295,8 @@ GLleft3 GLright3 WLleft3 WLright3 -Stage 3 passive -Stages active +Profile add. pressure +Soil initial 0.000 Displacement top sheet piling 0 Use top displacement 1 Anchors present in stage @@ -1356,6 +1325,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1365,6 +1335,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1374,6 +1345,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1397,7 +1369,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1408,8 +1380,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1420,25 +1394,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1446,53 +1421,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1500,35 +1477,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1547,6 +1525,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1562,10 +1541,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1574,10 +1553,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1587,12 +1567,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1601,7 +1581,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1616,10 +1597,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1628,33 +1609,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1662,26 +1701,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1689,16 +1757,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1709,6 +1805,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1716,8 +1813,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1725,7 +1822,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1736,6 +1833,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1743,8 +1841,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1752,7 +1850,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1763,6 +1861,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1770,8 +1869,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shd index c05e6a11..0534d3ff 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-26a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-26a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,9 +1217,9 @@ Design anchor force Design mobilisation percentage [END OF COLUMN INDICATION] [DATA] - 15.000 -99.324 189.911 -184.027 -46.251 38.667 - 14.000 -99.379 187.515 -184.551 -46.386 45.294 - 13.000 -99.463 175.010 -184.574 -46.389 52.882 + 15.000 -75.958 143.170 -149.585 -36.777 28.070 + 14.000 -76.053 142.153 -149.785 -36.834 31.985 + 13.000 -76.813 138.758 -150.286 -37.007 35.736 [END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shi index 3df3fb56..e1c0a278 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-26a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-26a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-26a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shd index a7c0acf5..c99c014b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-26b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-26b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,9 +1217,9 @@ Design anchor force Design mobilisation percentage [END OF COLUMN INDICATION] [DATA] - 15.000 -193.285 306.688 -167.199 -40.584 38.274 - 14.000 -193.360 303.819 -167.893 -40.757 44.951 - 13.000 -192.217 287.815 -170.791 -41.377 52.905 + 15.000 -176.126 266.884 -120.622 -29.218 29.998 + 14.000 -176.262 266.171 -120.768 -29.259 34.211 + 13.000 -175.217 260.362 -123.288 -29.831 38.690 [END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shi index 37e9ce1d..ea66dc32 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-26b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:40:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-26b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-26b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shd index af4c0c61..b03ea149 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1159,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.200 0.000 0.000 0.600 1.000 1.000 - -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 3 12 2.000 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 0.600 1.000 1.000 0.800 0.600 1.100 1.200 0.000 0.000 0.600 1.000 1.000 + 3 13 1.250 1.250 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2041,7 +2172,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=144 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -2119,22 +2250,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.08000 - -7.16000 - -7.24000 - -7.32000 - -7.40000 + -7.10000 + -7.20000 + -7.30000 -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -2217,7 +2342,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 39.62897 210000000.000 1 2 0 'anchor' + -1.50000 31.76737 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -2278,22 +2403,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 43.67 : Percentage mobilized resistance left - 2.82 : Percentage mobilized resistance right - 592.00 : Effective left - 261.34 : Effective right + 31.34 : Percentage mobilized resistance left + 2.77 : Percentage mobilized resistance right + 597.05 : Effective left + 256.69 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1355.61 : Max effective resistance left + 1904.81 : Max effective resistance left 9258.01 : Max effective resistance right --11930.29 : Max moment left +-16862.95 : Max moment left -77946.72 : Max moment right --4997.55 : Max mobilized moment left --1462.45 : Max mobilized moment right - 321.00 : Vertical force left - 110.29 : Vertical force right - 41.9 : Max mobilized moment percentage left - 1.9 : Max mobilized moment percentage right +-4878.46 : Max mobilized moment left +-1341.88 : Max mobilized moment right + 319.44 : Vertical force left + 106.55 : Vertical force right + 28.9 : Max mobilized moment percentage left + 1.7 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -2301,163 +2426,157 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=144 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00002 0.00019 7.24782 - 0.25105 4.98471 5.90168 - 0.98960 9.74947 4.55547 - 2.19359 14.29355 3.20883 - 3.84090 18.61542 1.86140 - 5.90920 22.71289 0.51283 - 5.90915 22.71423 0.51283 - 8.37599 26.58446 -0.83738 - 11.21835 30.22394 -2.19011 - 14.41315 33.63450 -3.54633 - 17.93812 36.83135 -4.90700 - 21.77257 39.82286 -6.27307 - 21.77271 39.82159 -6.27307 - 25.89566 42.60141 -7.64562 - 30.28572 45.16298 -9.02598 - 34.92077 47.50000 -10.41557 - 39.77804 49.60653 -11.81577 - 44.83421 51.47700 -13.22797 - 44.83484 11.99623 -13.22797 - 46.11795 13.62539 -14.65346 - 47.55171 15.00828 -16.09289 - 49.11124 16.14013 -17.54672 - 50.77122 17.01639 -19.01541 - 52.50605 17.63847 -20.49944 - 52.50505 -142.42446 -20.49944 - 33.56308 -141.67657 -22.50093 - 14.73223 -140.75774 -24.52044 - -3.96472 -139.66798 -26.54793 - -22.50497 -138.40727 -28.57337 - -40.86572 -136.97562 -30.58671 - -40.86521 -136.98560 -30.58671 - -59.02501 -135.38301 -32.57797 - -76.95975 -133.60948 -34.53751 - -94.64661 -131.66501 -36.45583 - -112.06282 -129.54960 -38.32344 - -129.18557 -127.26325 -40.13085 - -129.18553 -127.27880 -40.13085 - -145.99412 -124.82151 -41.86865 - -162.46367 -122.19328 -43.52801 - -178.57139 -119.39410 -45.10028 - -194.29450 -116.42399 -46.57682 - -209.61019 -113.28293 -47.94898 - -209.61077 -33.28279 -47.94898 - -213.82957 -29.97080 -49.20921 - -217.59538 -26.48786 -50.35456 - -220.88540 -22.83398 -51.38326 - -223.67685 -19.00917 -52.29355 - -225.94692 -15.01341 -53.08367 - -225.94690 -15.01040 -53.08367 - -227.67241 -10.84370 -53.75206 - -228.83096 -6.50606 -54.29812 - -229.39976 -1.99748 -54.72156 - -229.35602 2.68204 -55.02207 - -228.67695 7.53250 -55.19936 - -228.67692 7.53496 -55.19936 - -227.33940 12.55636 -55.25337 - -225.32096 17.74870 -55.18523 - -222.59882 23.11198 -54.99640 - -219.15017 28.64620 -54.68836 - -214.95223 34.35136 -54.26258 - -214.95213 34.35243 -54.26258 - -211.29299 38.84413 -53.86706 - -207.18056 43.41812 -53.40769 - -202.60662 48.07440 -52.88585 - -197.56294 52.81296 -52.30291 - -192.04129 57.63382 -51.66028 - -192.04128 57.63399 -51.66028 - -186.03341 62.53713 -50.95943 - -179.53111 67.52256 -50.20236 - -172.52616 72.59028 -49.39119 - -165.01031 77.74029 -48.52803 - -156.97536 82.97258 -47.61499 - -156.97535 82.97268 -47.61499 - -150.16809 87.21776 -46.85018 - -143.01911 91.51551 -46.05632 - -135.52420 95.86592 -45.23486 - -127.67915 100.26900 -44.38726 - -119.47976 104.72474 -43.51497 - -119.47976 104.72479 -43.51497 - -110.92179 109.23320 -42.61948 - -102.00104 113.79427 -41.70254 - -92.71330 118.40800 -40.76593 - -83.05435 123.07440 -39.81147 - -73.01999 127.79346 -38.84094 - -73.01999 127.79350 -38.84094 - -67.86138 130.12239 -38.35023 - -62.61137 132.36360 -37.85624 - -57.27346 134.51692 -37.35922 - -51.85119 136.58198 -36.85944 - -46.34809 138.55828 -36.35716 - -46.34822 138.55949 -36.35716 - -27.52086 143.52324 -34.66813 - -8.16371 146.49910 -32.96437 - 11.45505 147.43821 -31.25632 - 31.06008 146.28326 -29.55445 - 50.36815 142.97351 -27.86920 - 50.36727 142.98256 -27.86920 - 67.93979 120.87154 -26.21184 - 82.66967 100.33519 -24.59105 - 94.76365 81.32439 -23.01338 - 104.42154 63.78430 -21.48540 - 111.83547 47.65447 -20.01366 - 111.83513 47.67839 -20.01366 - 117.25567 33.86388 -18.60335 - 120.92641 21.41985 -17.25606 - 123.02552 10.27824 -15.97296 - 123.72211 0.37049 -14.75523 - 123.17608 -8.37267 -13.60407 - 123.17713 -8.35334 -13.60407 - 122.06454 -13.80578 -12.78461 - 120.43402 -18.71673 -12.00203 - 118.33829 -23.11467 -11.25571 - 115.82726 -27.02754 -10.54503 - 112.94804 -30.48270 -9.86937 - 112.94873 -30.47906 -9.86937 - 109.75048 -33.41663 -9.22796 - 106.27884 -35.95121 -8.61971 - 102.57283 -38.10798 -8.04351 - 98.66903 -39.91121 -7.49824 - 94.60160 -41.38433 -6.98280 - 94.60095 -41.37259 -6.98280 - 89.54485 -42.82746 -6.40196 - 84.33803 -43.89047 -5.86008 - 79.02541 -44.59665 -5.35486 - 73.64780 -44.97884 -4.88399 - 68.24222 -45.06775 -4.44517 - 68.24242 -45.05472 -4.44517 - 62.84788 -44.81297 -4.03605 - 57.49674 -44.33553 -3.65426 - 52.21581 -43.64656 -3.29752 - 47.02914 -42.76807 -2.96354 - 41.95826 -41.71994 -2.65002 - 41.96015 -41.72285 -2.65002 - 37.09428 -39.38630 -2.35466 - 32.50476 -37.11683 -2.07543 - 28.18362 -34.91301 -1.81045 - 24.12597 -32.70079 -1.55783 - 20.34079 -30.35452 -1.31571 - 20.33725 -30.38075 -1.31571 - 16.80049 -28.50496 -1.08228 - 13.51025 -26.27434 -0.85614 - 10.50837 -23.70089 -0.63600 - 7.83537 -20.79422 -0.42056 - 5.53079 -17.56147 -0.20852 - 5.52938 -17.52792 -0.20852 - 3.60407 -14.49447 0.00131 - 2.06255 -11.16480 0.20959 - 0.93235 -7.63939 0.41681 - 0.23693 -3.91825 0.62345 - -0.00019 -0.00099 0.83000 + -0.00002 0.00019 4.41360 + 0.22940 4.56187 3.45098 + 0.90707 8.96515 2.48830 + 2.01712 13.20914 1.52522 + 3.54354 17.29228 0.56142 + 5.47014 21.21241 -0.40343 + 5.47009 21.21375 -0.40343 + 7.78058 24.96805 -1.36980 + 10.45806 28.55303 -2.33851 + 13.48560 31.97055 -3.31047 + 16.84710 35.23588 -4.28661 + 20.52799 38.35743 -5.26782 + 20.52813 38.35612 -5.26782 + 24.51359 41.32759 -6.25512 + 28.78843 44.14247 -7.24983 + 33.33666 46.79456 -8.25330 + 38.14172 49.27797 -9.26692 + 43.18645 51.58721 -10.29206 + 43.18686 19.93951 -10.29206 + 45.28882 22.06942 -11.33001 + 47.59460 24.01508 -12.38163 + 50.08554 25.77176 -13.44769 + 52.74250 27.33486 -14.52893 + 55.54591 28.69995 -15.62609 + 55.55308 -131.34995 -15.62609 + 38.14631 -129.79581 -17.11323 + 20.92893 -128.51026 -18.62086 + 3.87143 -127.34791 -20.13980 + -13.02614 -126.08720 -21.66091 + -29.74423 -124.65555 -23.17501 + -29.74989 -124.70264 -23.17501 + -46.27197 -123.10005 -24.67300 + -62.56897 -121.32652 -26.14611 + -78.61811 -119.38205 -27.58574 + -94.39659 -117.26664 -28.98327 + -109.88161 -114.98029 -30.33008 + -109.88157 -114.99584 -30.33008 + -125.05243 -112.53855 -31.61766 + -139.88426 -109.91031 -32.83804 + -154.35425 -107.11114 -33.98347 + -168.43963 -104.14103 -35.04617 + -182.11760 -100.99997 -36.01838 + -182.11817 -20.99983 -36.01838 + -184.69924 -17.68783 -36.89343 + -186.82733 -14.20490 -37.66924 + -188.47962 -10.55102 -38.34493 + -189.63333 -6.72621 -38.91962 + -190.26568 -2.73045 -39.39243 + -190.26566 -2.72744 -39.39243 + -190.35344 1.43926 -39.76267 + -189.87426 5.77690 -40.03063 + -188.80534 10.28548 -40.19689 + -187.12387 14.96500 -40.26203 + -184.80707 19.81546 -40.22664 + -184.80704 19.81792 -40.22664 + -181.83179 24.83932 -40.09153 + -178.17562 30.03166 -39.85871 + -173.81575 35.39494 -39.53054 + -168.72938 40.92916 -39.10935 + -162.89371 46.63433 -38.59750 + -162.89361 46.63539 -38.59750 + -158.00617 51.12709 -38.15574 + -152.66545 55.70108 -37.66623 + -146.86321 60.35736 -37.13071 + -140.59123 65.09592 -36.55095 + -133.84128 69.91678 -35.92870 + -133.84128 69.91695 -35.92870 + -126.60511 74.82010 -35.26583 + -118.87452 79.80553 -34.56469 + -110.64127 84.87324 -33.82777 + -101.89713 90.02325 -33.05756 + -92.63387 95.25555 -32.25655 + -92.63338 95.25174 -32.25655 + -82.86097 100.03213 -31.42739 + -72.65998 103.82171 -30.57319 + -62.11786 106.97427 -29.69714 + -51.27094 109.95243 -28.80240 + -40.12980 112.85777 -27.89216 + -40.13029 112.85369 -27.89216 + -28.69483 115.84740 -26.96968 + -16.96254 118.78931 -26.03852 + -4.93889 121.67355 -25.10232 + 7.37004 124.49400 -24.16470 + 19.95758 127.24457 -23.22930 + 19.95695 127.24965 -23.22930 + 35.70788 109.19700 -21.99280 + 49.12427 92.22712 -20.77554 + 60.34858 76.31023 -19.58361 + 69.51892 61.41157 -18.42306 + 76.76849 47.49147 -17.29998 + 76.76820 47.50800 -17.29998 + 82.30736 35.75318 -16.21929 + 86.34767 25.01746 -15.18285 + 89.02186 15.25339 -14.19212 + 90.45627 6.41257 -13.24859 + 90.77072 -1.55449 -12.35373 + 90.77073 -1.53517 -12.35373 + 90.14450 -7.71421 -11.50828 + 88.75089 -13.05429 -10.71125 + 86.69846 -17.60460 -9.96157 + 84.08930 -21.41311 -9.25819 + 81.01919 -24.52663 -8.60002 + 81.01994 -24.51400 -8.60002 + 78.48714 -26.09745 -8.13522 + 75.80909 -27.42168 -7.69414 + 73.01084 -28.50458 -7.27592 + 70.11565 -29.36342 -6.87975 + 67.14508 -30.01476 -6.50476 + 67.14577 -30.01569 -6.50476 + 64.12547 -30.35991 -6.15008 + 61.07959 -30.53004 -5.81477 + 58.02478 -30.54061 -5.49792 + 54.97632 -30.40542 -5.19860 + 51.94812 -30.13758 -4.91589 + 51.94764 -30.13156 -4.91589 + 48.35868 -29.65987 -4.59726 + 44.83479 -29.05024 -4.29967 + 41.39138 -28.32145 -4.02161 + 38.04171 -27.49089 -3.76160 + 34.79700 -26.57454 -3.51814 + 34.79713 -26.56730 -3.51814 + 31.67303 -25.49080 -3.28976 + 28.68153 -24.35949 -3.07515 + 25.82846 -23.18550 -2.87308 + 23.11828 -21.97983 -2.68230 + 20.55418 -20.75230 -2.50158 + 20.55440 -20.74857 -2.50158 + 18.13580 -19.55949 -2.32972 + 15.86043 -18.36268 -2.16575 + 13.72879 -17.16491 -2.00874 + 11.74065 -15.97209 -1.85775 + 9.89537 -14.78230 -1.71187 + 9.89435 -14.80068 -1.71187 + 8.17537 -13.82357 -1.57022 + 6.58266 -12.69737 -1.43211 + 5.13373 -11.42801 -1.29693 + 3.84547 -10.02021 -1.16404 + 2.73427 -8.47753 -1.03283 + 2.73434 -8.47647 -1.03283 + 1.79892 -7.08805 -0.90270 + 1.03938 -5.54542 -0.77335 + 0.47415 -3.84958 -0.64453 + 0.12158 -2.00109 -0.51600 + -0.00001 -0.00007 -0.38752 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2523,7 +2642,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2534,33 +2653,33 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 63.67812 0.00000 66.16242 5.67393 110 96 - - 60.93481 0.00000 72.29544 6.52502 110 84 - - 58.18412 0.00000 78.42846 7.37612 110 74 - - 55.41807 0.00000 84.56148 8.22721 110 66 - - 52.62868 0.00000 90.69450 9.07830 110 58 - - 49.80800 0.00000 96.82753 9.92939 110 51 - - 49.80800 0.00000 96.82753 9.92939 110 51 - - 46.94779 0.00000 102.96055 10.78048 110 46 - - 44.03903 0.00000 109.09357 11.63157 110 40 - - 41.22492 0.00000 115.22659 12.48266 110 36 - - 38.69633 0.00000 121.35961 13.33375 110 32 - - 36.09165 0.00000 127.49263 14.18484 110 28 - - 36.09165 0.00000 127.49263 14.18484 110 28 - - 33.40393 0.00000 133.62566 15.03593 110 25 - - 30.63530 0.00000 139.75868 15.88702 110 22 - - 27.79023 0.00000 145.89170 16.73811 110 19 - - 24.87316 0.00000 152.02472 17.58920 110 16 - - 21.88857 0.00000 158.15774 18.44029 110 14 - - 21.88857 0.00000 158.15774 18.44029 110 14 - - 18.84051 0.00000 164.29076 19.29138 110 0 - - 15.73171 0.00000 170.42378 20.14247 110 0 - - 12.56465 0.00000 176.55681 20.99356 110 0 - - 9.34180 0.00000 182.68983 21.84465 110 0 - - 6.21016 0.00000 188.82285 22.69574 1 0 A - 6.21016 0.00000 188.82285 22.69574 1 0 A - 6.47940 1.33333 192.09379 23.14965 1 0 A - 6.74863 2.66667 195.36474 23.60357 1 0 A + 58.00907 0.00000 66.16242 5.67393 110 88 - + 56.03284 0.00000 72.29544 6.52502 110 78 - + 54.04925 0.00000 78.42846 7.37612 110 69 - + 52.05036 0.00000 84.56148 8.22721 110 62 - + 50.02827 0.00000 90.69450 9.07830 110 55 - + 47.97505 0.00000 96.82753 9.92939 110 50 - + 47.97505 0.00000 96.82753 9.92939 110 50 - + 45.88256 0.00000 102.96055 10.78048 110 45 - + 43.74188 0.00000 109.09357 11.63157 110 40 - + 41.69631 0.00000 115.22659 12.48266 110 36 - + 39.93682 0.00000 121.35961 13.33375 110 33 - + 38.10190 0.00000 127.49263 14.18484 110 30 - + 38.10190 0.00000 127.49263 14.18484 110 30 - + 36.18470 0.00000 133.62566 15.03593 110 27 - + 34.18743 0.00000 139.75868 15.88702 110 24 - + 32.11461 0.00000 145.89170 16.73811 110 22 - + 29.97073 0.00000 152.02472 17.58920 110 20 - + 27.76031 0.00000 158.15774 18.44029 110 18 - + 27.76031 0.00000 158.15774 18.44029 110 18 - + 25.48738 0.00000 164.29076 19.29138 110 16 - + 23.15422 0.00000 170.42378 20.14247 110 14 - + 20.76274 0.00000 176.55681 20.99356 110 0 - + 18.31483 0.00000 182.68983 21.84465 110 0 - + 15.81241 0.00000 188.82285 22.69574 110 0 - + 15.81241 0.00000 188.82285 22.69574 110 0 - + 11.99448 1.33333 192.09379 23.14965 110 0 - + 8.10955 2.66667 195.36474 23.60357 110 0 - 7.01787 4.00000 198.63568 24.05748 1 0 A 7.28710 5.33333 201.90663 24.51140 1 0 A 7.55633 6.66667 205.17757 24.96531 1 0 A @@ -2607,22 +2726,16 @@ Status character 15.88939 49.00000 312.52258 32.77589 1 0 A 15.91799 50.00000 312.98752 32.82639 1 0 A 15.91799 50.00000 312.98752 32.82639 1 0 A - 15.94087 50.80000 313.35946 32.86679 1 0 A - 15.96375 51.60000 313.73141 32.90719 1 0 A - 15.98664 52.40000 314.10335 32.94760 1 0 A - 16.00952 53.20000 314.47530 32.98800 1 0 A + 15.94659 51.00000 313.45245 32.87689 1 0 A + 15.97519 52.00000 313.91738 32.92739 1 0 A + 16.00380 53.00000 314.38231 32.97790 1 0 A 16.03240 54.00000 314.84725 33.02840 1 0 A - 16.03240 54.00000 314.84725 33.02840 1 0 A - 16.05528 54.80000 315.21919 33.06880 1 0 A - 16.07817 55.60000 315.59114 33.10920 1 0 A - 16.10105 56.40000 315.96309 33.14960 1 0 A - 16.12393 57.20000 316.33503 33.19001 1 0 A - 16.14681 58.00000 316.70698 33.23041 1 0 A + 16.06100 55.00000 315.31218 33.07890 1 0 A + 16.06100 55.00000 315.31218 33.07890 1 0 A + 16.08961 56.00000 315.77711 33.12940 1 0 A + 16.11821 57.00000 316.24205 33.17990 1 0 A 16.14681 58.00000 316.70698 33.23041 1 0 A - 16.15826 58.40000 316.89295 33.25061 1 0 A - 16.16970 58.80000 317.07892 33.27081 1 0 A - 16.18114 59.20000 317.26490 33.29101 1 0 A - 16.19258 59.60000 317.45087 33.31121 1 0 A + 16.17542 59.00000 317.17191 33.28091 1 0 A 16.20402 60.00000 317.63684 33.33141 1 0 A 13.18724 60.00000 945.94913 26.36368 1 0 A 13.42701 61.33333 963.14821 26.84302 1 0 A @@ -2670,20 +2783,20 @@ Status character 16.38737 103.20000 1315.41081 32.96794 1 0 A 16.55612 104.40000 1328.95623 33.30743 1 0 A 16.72487 105.60000 1342.50165 33.64692 1 0 A - 18.40807 106.80000 1356.04707 33.98640 110 0 - - 21.16880 108.00000 1369.59249 34.32589 110 0 - - 21.16880 108.00000 1369.59249 34.32589 110 0 - - 23.84259 109.20000 1383.13791 34.66538 110 0 - - 26.44345 110.40000 1396.68333 35.00486 110 0 - - 28.98435 111.60000 1410.22875 35.34435 110 0 - - 31.47825 112.80000 1423.77417 35.68384 110 0 - - 33.93811 114.00000 1437.31959 36.02332 110 0 - - 33.93811 114.00000 1437.31959 36.02332 110 0 - - 36.37590 115.20000 1450.86501 36.36281 110 3 - - 38.79820 116.40000 1464.41043 36.70230 110 3 - - 41.20987 117.60000 1477.95585 37.04178 110 3 - - 43.61577 118.80000 1491.50127 37.38127 110 3 - - 46.02075 120.00000 1505.04669 37.72076 110 3 - + 16.89362 106.80000 1356.04707 33.98640 1 0 A + 17.20715 108.00000 1369.59249 34.32589 110 0 - + 17.20715 108.00000 1369.59249 34.32589 110 0 - + 18.96319 109.20000 1383.13791 34.66538 110 0 - + 20.68373 110.40000 1396.68333 35.00486 110 0 - + 22.37505 111.60000 1410.22875 35.34435 110 0 - + 24.04340 112.80000 1423.77417 35.68384 110 0 - + 25.69505 114.00000 1437.31959 36.02332 110 0 - + 25.69505 114.00000 1437.31959 36.02332 110 0 - + 27.33577 115.20000 1450.86501 36.36281 110 0 - + 28.96877 116.40000 1464.41043 36.70230 110 0 - + 30.59646 117.60000 1477.95585 37.04178 110 0 - + 32.22124 118.80000 1491.50127 37.38127 110 0 - + 33.84555 120.00000 1505.04669 37.72076 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2696,10 +2809,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 112.393 'Clay' + 0.00 117.986 'Clay' -6.00 31.836 'Peat' -8.00 47.654 'Sand 1' - -11.00 69.456 'Sand 2' + -11.00 59.212 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2714,7 +2827,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -2768,7 +2881,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -2777,24 +2890,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.13800 30.62300 1.57659 0.00767 - -8.66667 66.57200 30.42700 47.07497 1.02891 - -9.33333 81.80000 30.42100 443.94369 3.55979 - -10.00000 79.59700 45.38500 633.33300 7.98275 - -10.50000 78.55400 42.78700 777.69501 14.59403 - -11.00000 77.93000 41.04700 894.61050 21.62858 - -11.60000 76.46600 39.38300 1086.95125 29.00795 - -12.20000 78.74300 38.26100 1312.15919 36.42343 - -12.80000 78.61500 37.47800 1375.70316 43.62891 - -13.40000 78.58800 36.92500 1389.88002 50.49736 - -14.00000 78.65600 35.04100 1354.79351 56.06658 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 71.51700 0.00000 16.82163 0.00000 + -8.00000 63.43600 0.00000 58.96202 0.00000 + -8.66667 79.28500 29.49600 414.70577 1.10127 + -9.33333 79.78200 48.12400 604.67418 7.87984 + -10.00000 78.22300 44.85300 825.68840 20.31608 + -10.50000 77.44400 40.70900 997.22966 29.15551 + -11.00000 76.95000 39.42200 1143.36805 37.43351 + -11.60000 75.85600 38.07700 1386.27747 45.78603 + -12.20000 77.88700 37.13800 1686.41604 54.04010 + -12.80000 77.75400 36.46300 1807.57450 62.01511 + -13.40000 77.68300 35.97100 1880.15048 69.61230 + -14.00000 77.66000 34.37700 1904.32504 76.22939 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -2805,23 +2919,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00149 7.88293 0.03837 2.54091 0.03831 7.87117 - -8.33333 7.87484 68.24758 1.53185 1.67627 0.19452 8.66654 - -9.00000 20.73705 595.30308 3.79633 1.21441 0.18307 28.70722 - -9.66667 34.59108 284.08396 6.63445 0.90078 0.19180 8.21264 - -10.25000 39.67169 288.72402 13.22256 0.77940 0.33330 7.27783 - -10.75000 35.68543 233.83099 14.06910 0.75037 0.39425 6.55256 - -11.30000 30.87123 320.56791 12.29894 0.65549 0.39839 10.38403 - -11.90000 25.15684 375.34657 12.35914 0.63053 0.49128 14.92026 - -12.50000 19.05875 23.68574 12.00912 0.63011 0.63011 1.24277 - -13.10000 12.67808 23.68574 11.44742 0.90293 0.90293 1.86824 - -13.70000 6.09850 23.68574 9.28204 1.52202 1.52202 3.88386 + -7.25000 2.52296 33.64326 0.00000 2.49385 0.00000 13.33485 + -7.75000 8.03375 84.28078 0.00000 2.13017 0.00000 10.49083 + -8.33333 17.86675 533.61562 1.65191 1.37350 0.09246 29.86641 + -9.00000 31.77814 284.95262 10.16785 0.93304 0.31996 8.96694 + -9.66667 45.45622 331.52132 18.65437 0.70724 0.41038 7.29320 + -10.25000 49.91403 343.08253 17.67886 0.61948 0.35419 6.87347 + -10.75000 45.34373 292.27679 16.55598 0.58888 0.36512 6.44580 + -11.30000 39.96152 404.84902 13.92088 0.49437 0.34836 10.13097 + -11.90000 33.75871 500.23096 13.75678 0.46883 0.40750 14.81783 + -12.50000 27.30345 201.93076 13.29168 0.48681 0.48681 7.39580 + -13.10000 20.67267 120.95997 12.66198 0.61250 0.61250 5.85120 + -13.70000 13.92405 40.29093 11.02848 0.79205 0.79205 2.89362 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=144 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2904,84 +3019,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14922 0.00000 3.14922 1.01661 202 100 P - 6.30296 0.00000 6.30296 2.03467 202 100 P - 9.46569 0.00000 9.46569 3.05564 202 100 P - 12.64179 0.00000 12.64179 4.08093 202 100 P - 15.83551 0.00000 15.83551 5.11190 202 100 P - 17.43567 0.00000 17.43567 3.37239 202 100 P - 37.44169 0.00000 37.44169 7.24194 202 100 P - 57.85464 0.00000 57.85464 11.19020 202 100 P - 78.77708 0.00000 78.77708 15.23700 202 100 P - 100.26443 0.00000 100.26443 19.39307 202 100 P - 122.32587 0.00000 122.32587 23.66018 202 100 P - 295.83311 0.00000 405.19484 17.14114 110 73 - - 282.42708 0.00000 480.07187 20.30870 110 59 - - 269.45435 0.00000 556.54753 23.54388 110 48 - - 256.96922 0.00000 634.35498 26.83540 110 41 - - 245.02461 0.00000 713.19472 30.17060 110 34 - - 233.67319 0.00000 792.76138 33.53654 110 29 - - 225.01218 0.00000 226.79523 24.87554 110 99 - - 213.41939 0.00000 249.68245 27.38587 110 85 - - 202.46212 0.00000 272.61857 29.90157 110 74 - - 192.14496 0.00000 295.53765 32.41540 110 65 - - 182.47363 0.00000 318.38427 34.92128 110 57 - - 173.45499 0.00000 341.11340 37.41427 110 51 - - 168.41341 0.00000 302.28625 32.37269 110 56 - - 159.64485 3.00000 296.92736 31.79879 110 54 - - 151.23589 6.00000 291.48186 31.21561 110 52 - - 143.17941 9.00000 285.94166 30.62230 110 50 - - 135.46853 12.00000 280.30063 30.01818 110 48 - - 128.09651 15.00000 274.55439 29.40280 110 47 - - 127.00130 15.00000 247.19369 28.30759 110 51 - - 119.98357 18.00000 241.92276 27.70399 110 50 - - 113.28616 21.00000 236.55306 27.08907 110 48 - - 106.89787 24.00000 231.08412 26.46279 110 46 - - 100.80763 27.00000 225.51633 25.82519 110 45 - - 95.00440 30.00000 219.85075 25.17639 110 43 - - 91.82103 30.00000 348.40376 21.99303 110 26 - - 85.31987 33.60000 337.42877 21.30023 110 25 - - 79.19478 37.20000 326.24017 20.59395 110 24 - - 73.42321 40.80000 314.84492 19.87462 110 23 - - 67.98264 44.40000 303.25082 19.14274 110 22 - - 62.85057 48.00000 291.46625 18.39884 110 22 - - 62.14998 48.00000 418.79224 17.69824 110 15 - - 57.33213 51.60000 401.59851 16.97163 110 14 - - 52.77717 55.20000 384.15657 16.23453 110 14 - - 48.46274 58.80000 366.47937 15.48749 110 13 - - 44.36645 62.40000 348.57984 14.73105 110 13 - - 40.46594 66.00000 330.47071 13.96576 110 12 - - 27.52637 66.00000 27.52637 13.95639 202 100 P - 26.00156 69.60000 26.00156 13.18329 202 100 P - 24.46133 73.20000 24.46133 12.40236 202 100 P - 22.90665 76.80000 22.90665 11.61411 202 100 P - 21.33847 80.40000 21.33847 10.81901 202 100 P - 19.75768 84.00000 19.75768 10.01752 202 100 P - 27.51190 84.00000 29.70139 14.35481 110 93 - - 24.02054 87.60000 27.30732 13.19775 110 88 - - 20.59414 91.20000 24.89680 12.03273 110 83 - - 17.22032 94.80000 22.47098 10.86032 110 77 - - 13.88663 98.40000 20.03096 9.68105 110 69 - - 10.58063 102.00000 17.57778 8.49542 110 60 - - 16.40548 102.00000 36.54216 14.32026 110 45 - - 12.31177 105.60000 31.41694 12.31177 1 39 A - 10.29410 109.20000 26.26828 10.29410 1 39 A - 8.26795 112.80000 21.09800 8.26795 1 39 A - 6.23399 116.40000 15.90777 6.23399 1 39 A - 4.19283 120.00000 10.69918 4.19283 1 39 A + 13.35478 0.00000 13.35478 2.49757 202 100 P + 26.82757 0.00000 26.82757 5.01721 202 100 P + 31.33733 0.00000 40.52900 7.57962 110 77 - + 33.24478 0.00000 54.55576 10.20286 110 61 - + 35.21520 0.00000 68.98547 12.90147 110 51 - + 33.33381 0.00000 54.27244 11.02008 110 61 - + 34.97412 0.00000 65.98524 13.39837 110 53 - + 36.68582 0.00000 78.08385 15.85501 110 47 - + 38.47333 0.00000 90.57561 18.39147 110 42 - + 40.33775 0.00000 103.45174 21.00599 110 39 - + 42.27745 0.00000 116.68991 23.69401 110 36 - + 247.57047 0.00000 332.20519 15.27745 110 75 - + 238.86441 0.00000 411.76893 18.93643 110 58 - + 230.41455 0.00000 492.71823 22.65912 110 47 - + 222.26728 0.00000 574.74151 26.43121 110 39 - + 214.46871 0.00000 657.52107 30.23808 110 33 - + 207.06563 0.00000 740.75369 34.06578 110 28 - + 196.14125 0.00000 222.40005 23.14140 110 88 - + 187.94011 0.00000 247.44278 25.74717 110 76 - + 180.17948 0.00000 272.46690 28.35101 110 66 - + 172.86782 0.00000 297.41189 30.94661 110 58 - + 166.01478 0.00000 322.22861 33.52887 110 52 - + 159.63110 0.00000 346.87851 36.09376 110 46 - + 150.89626 0.00000 282.13137 27.35892 110 53 - + 144.37042 0.00000 302.02092 29.28765 110 48 - + 138.31177 0.00000 321.73434 31.19931 110 43 - + 132.70855 0.00000 341.26049 33.09280 110 39 - + 127.54941 0.00000 360.59300 34.96752 110 35 - + 122.82342 0.00000 379.72938 36.82322 110 32 - + 118.25393 0.00000 357.87554 32.25373 110 33 - + 113.07956 3.00000 352.03507 31.72735 110 32 - + 108.13309 6.00000 346.09201 31.19173 110 31 - + 103.40626 9.00000 340.04808 30.64702 110 30 - + 98.89087 12.00000 333.90546 30.09341 110 30 - + 94.57871 15.00000 327.66672 29.53114 110 29 - + 93.12020 15.00000 307.27939 28.07263 110 30 - + 89.03091 18.00000 301.34138 27.53014 110 30 - + 85.12764 21.00000 295.31882 26.97992 110 29 - + 81.40146 24.00000 289.21477 26.42227 110 28 - + 77.84346 27.00000 283.03239 25.85745 110 28 - + 74.44472 30.00000 276.77489 25.28578 110 27 - + 70.38680 30.00000 435.01153 21.22785 110 16 - + 66.61731 33.60000 423.06085 20.64468 110 16 - + 63.05066 37.20000 410.95629 20.05400 110 15 - + 59.67233 40.80000 398.70653 19.45623 110 15 - + 56.46779 44.40000 386.32011 18.85179 110 15 - + 53.42249 48.00000 373.80531 18.24109 110 14 - + 52.48001 48.00000 546.73772 17.29861 110 10 - + 49.61148 51.60000 528.25721 16.71389 110 9 - + 46.87548 55.20000 509.61196 16.12396 110 9 - + 44.25996 58.80000 490.81281 15.52916 110 9 - + 41.75285 62.40000 471.87010 14.92982 110 9 - + 39.34204 66.00000 452.79369 14.32625 110 9 - + 39.89152 66.00000 225.99596 14.87573 110 18 - + 37.54214 69.60000 216.41258 14.24492 110 17 - + 35.26783 73.20000 206.77157 13.61032 110 17 - + 33.05957 76.80000 197.07709 12.97220 110 17 - + 30.90836 80.40000 187.33310 12.33082 110 16 - + 28.80517 84.00000 177.54331 11.68643 110 16 - + 31.82236 84.00000 140.46381 14.70363 110 23 - + 29.59155 87.60000 132.68512 13.88936 110 22 - + 27.39299 91.20000 124.87556 13.07186 110 22 - + 25.22069 94.80000 117.03756 12.25139 110 22 - + 23.06861 98.40000 109.17340 11.42817 110 21 - + 20.93072 102.00000 101.28522 10.60245 110 21 - + 24.03871 102.00000 50.08904 13.71044 110 48 - + 21.66671 105.60000 46.17717 12.63967 110 47 - + 19.29971 109.20000 42.25532 11.56618 110 46 - + 16.93552 112.80000 38.32436 10.49019 110 44 - + 14.57196 116.40000 34.38509 9.41193 110 42 - + 12.20681 120.00000 30.43825 8.33160 110 40 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2995,10 +3104,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 1.579 'Peat' - -8.00 353.677 'Sand 1' - -10.00 128.976 'Sand 1' - -11.00 107.763 'Sand 2' + -6.00 31.065 'Peat' + -8.00 359.736 'Sand 1' + -10.00 94.711 'Sand 1' + -11.00 111.540 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3086,16 +3195,16 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.06000 + -7.12000 + -7.18000 + -7.24000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.60000 - -7.70000 - -7.80000 - -7.90000 + -7.30000 + -7.44000 + -7.58000 + -7.72000 + -7.86000 -8.00000 -8.00000 -8.13333 @@ -3163,7 +3272,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -3178,7 +3287,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 52.62688 210000000.000 1 2 0 'anchor' + -1.50000 49.24743 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3239,21 +3348,21 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 79.82 : Percentage mobilized resistance left - 8.96 : Percentage mobilized resistance right - 667.36 : Effective left - 340.60 : Effective right + 73.35 : Percentage mobilized resistance left + 8.97 : Percentage mobilized resistance right + 671.32 : Effective left + 341.00 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 836.12 : Max effective resistance left + 915.26 : Max effective resistance left 3800.70 : Max effective resistance right --7325.77 : Max moment left +-7992.66 : Max moment left -29687.27 : Max moment right --5708.44 : Max mobilized moment left --2180.01 : Max mobilized moment right - 241.48 : Vertical force left - 101.16 : Vertical force right - 77.9 : Max mobilized moment percentage left +-5697.55 : Max mobilized moment left +-2167.06 : Max mobilized moment right + 241.65 : Vertical force left + 101.07 : Vertical force right + 71.3 : Max mobilized moment percentage left 7.3 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support @@ -3269,150 +3378,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00379 0.04036 8.75730 - 0.27775 5.64948 7.24873 - 1.13649 11.57017 5.74011 - 2.59112 17.47092 4.23108 - 4.62033 23.06142 2.72130 - 7.19297 28.33896 1.21042 - 7.19453 28.35170 1.21042 - 10.28040 33.31274 -0.30205 - 13.84638 37.95288 -1.81700 - 17.86011 42.26683 -3.33539 - 22.28866 46.24836 -4.85820 - 27.09846 49.89032 -6.38638 - 27.09864 49.88871 -6.38638 - 32.25516 53.18316 -7.92100 - 37.72341 56.12189 -9.46342 - 43.46797 58.71332 -11.01502 - 49.45546 60.98615 -12.57718 - 55.65500 62.95325 -14.15129 - 55.65582 10.52320 -14.15129 - 56.79351 12.17804 -15.73859 - 58.08082 13.51442 -17.33961 - 59.48559 14.52647 -18.95470 - 60.97511 15.20856 -20.58418 - 62.52213 15.73545 -22.22840 - 62.52066 -184.34842 -22.22840 - 37.99379 -183.51644 -24.44230 - 13.59313 -182.45534 -26.67251 - -10.65078 -181.16511 -28.90862 - -34.70738 -179.64574 -31.14024 - -58.54613 -177.89724 -33.35693 - -58.54548 -177.90972 -33.35693 - -82.13748 -175.93209 -35.54833 - -105.45052 -173.72533 -37.70442 - -128.45405 -171.28944 -39.81532 - -151.11752 -168.62441 -41.87115 - -173.41038 -165.73025 -43.86203 - -173.41033 -165.74970 -43.86203 - -195.30461 -162.62641 -45.77818 - -216.76719 -159.27399 -47.61038 - -237.76749 -155.69243 -49.34961 - -258.27498 -151.88175 -50.98686 - -278.25911 -147.84193 -52.51312 - -278.25982 -47.84176 -52.51312 - -284.35667 -43.57281 -53.92045 - -289.86905 -39.07473 -55.20556 - -294.76642 -34.34751 -56.36635 - -299.01821 -29.39117 -57.40072 - -302.59388 -24.20569 -58.30658 - -302.59386 -24.20193 -58.30658 - -305.46236 -18.78732 -59.08203 - -307.59363 -13.14358 -59.72618 - -308.95713 -7.27071 -60.23845 - -309.52230 -1.16871 -60.61827 - -309.25860 5.16243 -60.86505 - -309.25856 5.16550 -60.86505 - -308.13502 11.72577 -60.97848 - -306.12150 18.51517 -60.95945 - -303.18746 25.53370 -60.80924 - -299.30233 32.78136 -60.52912 - -294.43558 40.25816 -60.12035 - -294.43545 40.25949 -60.12035 - -290.09633 46.54030 -59.73032 - -285.12391 52.92542 -59.27016 - -279.50777 59.41484 -58.74122 - -273.23747 66.00856 -58.14487 - -266.30258 72.70658 -57.48245 - -266.30258 72.70680 -57.48245 - -258.69265 79.50913 -56.75546 - -250.39728 86.41575 -55.96592 - -241.40602 93.42668 -55.11601 - -231.70846 100.54191 -54.20790 - -221.29416 107.76145 -53.24378 - -221.29416 107.76159 -53.24378 - -210.15268 115.08543 -52.22594 - -198.27360 122.51357 -51.15728 - -185.64649 130.04601 -50.04087 - -172.26092 137.68275 -48.87975 - -158.10646 145.42379 -47.67697 - -158.10646 145.42392 -47.67697 - -143.18031 153.04017 -46.43576 - -127.51029 160.30052 -45.15993 - -111.13227 167.19900 -43.85343 - -94.08287 173.72613 -42.52022 - -76.39984 179.86940 -41.16425 - -76.40000 179.87099 -41.16425 - -51.95888 186.50730 -39.32803 - -26.72930 191.69053 -37.46950 - -0.90799 195.37567 -35.59971 - 25.30237 197.51932 -33.72969 - 51.69358 198.08227 -31.87049 - 51.72328 197.90613 -31.87049 - 76.90558 179.14126 -30.03428 - 99.30985 156.22668 -28.23129 - 118.42951 130.24031 -26.46968 - 134.04231 104.29236 -24.75762 - 146.32993 80.34973 -23.10327 - 146.33034 79.94371 -23.10327 - 155.86351 62.66377 -21.51331 - 163.00287 44.53304 -19.99040 - 167.79347 27.62808 -18.53662 - 170.44888 12.48988 -17.15410 - 171.19846 -0.97525 -15.84494 - 171.19693 -1.12972 -15.84494 - 170.67232 -9.33690 -14.91189 - 169.34520 -17.07432 -14.02011 - 167.28304 -24.04417 -13.16911 - 164.56068 -30.28467 -12.35839 - 161.24913 -35.83457 -11.58747 - 161.24557 -35.85829 -11.58747 - 157.41799 -40.58820 -10.85569 - 153.14831 -44.70650 -10.16196 - 148.49587 -48.24950 -9.50516 - 143.51642 -51.25241 -8.88419 - 138.26225 -53.74933 -8.29792 - 138.26136 -53.73194 -8.29792 - 131.65531 -56.26360 -7.63849 - 124.78232 -58.18981 -7.02489 - 117.71189 -59.56255 -6.45467 - 110.50748 -60.43092 -5.92536 - 103.22680 -60.84114 -5.43454 - 103.22707 -60.82176 -5.43454 - 95.90554 -61.13603 -4.97968 - 88.56990 -61.06344 -4.55819 - 81.26430 -60.64119 -4.16754 - 74.02863 -59.90352 -3.80519 - 66.89883 -58.88170 -3.46862 - 66.89934 -58.87042 -3.46862 - 59.88094 -58.05852 -3.15529 - 52.97546 -56.99244 -2.86279 - 46.21203 -55.69459 -2.58878 - 39.61724 -54.18469 -2.33091 - 33.22063 -52.35167 -2.08683 - 33.21861 -52.39030 -2.08683 - 27.19351 -47.99120 -1.85415 - 21.70933 -43.37695 -1.63092 - 16.79127 -38.55696 -1.41542 - 12.46359 -33.53867 -1.20596 - 8.74971 -28.32750 -1.00082 - 8.74984 -28.32567 -1.00082 - 5.66438 -23.06469 -0.79845 - 3.22243 -17.60068 -0.59803 - 1.44828 -11.93495 -0.39895 - 0.36609 -6.06811 -0.20059 - -0.00002 -0.00011 -0.00234 + -0.00346 0.03689 7.77228 + 0.27773 5.64601 6.39650 + 1.13372 11.49472 5.02067 + 2.57405 17.26479 3.64444 + 4.57723 22.75118 2.26745 + 7.11474 27.95116 0.88938 + 7.11616 27.96294 0.88938 + 10.16039 32.87300 -0.49026 + 13.68094 37.48873 -1.87235 + 17.64814 41.80485 -3.25785 + 22.03172 45.81513 -4.64771 + 26.80074 49.51244 -6.04288 + 26.80092 49.51083 -6.04288 + 31.92353 52.88724 -7.44442 + 37.36740 55.93457 -8.85368 + 43.09976 58.66125 -10.27203 + 49.08991 61.09598 -11.70086 + 55.30965 63.25166 -13.14155 + 55.31045 14.18832 -13.14155 + 56.82519 16.05843 -14.59534 + 58.51241 17.63680 -16.06288 + 60.34263 18.91752 -17.54458 + 62.28580 19.89494 -19.04090 + 64.31175 20.57616 -20.55227 + 64.31046 -179.50340 -20.55227 + 40.42960 -178.67143 -22.58972 + 16.67493 -177.61032 -24.64453 + -6.92297 -176.32009 -26.70657 + -30.33357 -174.80072 -28.76571 + -53.52632 -173.05222 -30.81181 + -53.52567 -173.06470 -30.81181 + -76.47166 -171.08707 -32.83477 + -99.13870 -168.88031 -34.82486 + -121.49623 -166.44442 -36.77247 + -143.51370 -163.77939 -38.66800 + -165.16055 -160.88523 -40.50185 + -165.16050 -160.90468 -40.50185 + -186.40878 -157.78139 -42.26451 + -207.22535 -154.42896 -43.94705 + -227.57966 -150.84741 -45.54072 + -247.44115 -147.03673 -47.03678 + -266.77927 -142.99691 -48.42650 + -266.77998 -42.99673 -48.42650 + -272.23083 -38.72778 -49.70224 + -277.09721 -34.22970 -50.86096 + -281.34857 -29.50249 -51.90085 + -284.95435 -24.54615 -52.82009 + -287.88402 -19.36067 -53.61686 + -287.88400 -19.35691 -53.61686 + -290.10650 -13.94230 -54.28954 + -291.59177 -8.29856 -54.83753 + -292.30926 -2.42569 -55.26051 + -292.22843 3.67631 -55.55819 + -291.31873 10.00745 -55.73026 + -291.31869 10.01053 -55.73026 + -289.54915 16.57079 -55.77669 + -286.88963 23.36019 -55.69866 + -283.30958 30.37872 -55.49770 + -278.77845 37.62639 -55.17538 + -273.26569 45.10318 -54.73322 + -273.26556 45.10451 -54.73322 + -268.44194 51.38533 -54.32411 + -262.98502 57.77044 -53.85010 + -256.88438 64.25986 -53.31267 + -250.12957 70.85358 -52.71328 + -242.71018 77.55160 -52.05342 + -242.71018 77.55182 -52.05342 + -234.61575 84.35415 -51.33469 + -225.83587 91.26077 -50.55923 + -216.36012 98.27170 -49.72934 + -206.17806 105.38694 -48.84730 + -195.27926 112.60647 -47.91541 + -195.27925 112.60656 -47.91541 + -188.39159 116.98835 -47.33337 + -181.23990 121.40768 -46.73494 + -173.82192 125.86457 -46.12075 + -166.13540 130.35900 -45.49146 + -158.17809 134.89098 -44.84770 + -158.17792 134.89034 -44.84770 + -138.58021 144.86102 -43.29296 + -117.67789 153.52344 -41.67255 + -95.65642 160.84079 -39.99687 + -72.70787 166.75656 -38.27628 + -49.00621 171.78040 -36.52116 + -49.00801 171.75358 -36.52116 + -25.84515 175.37021 -34.82760 + -2.32894 177.04472 -33.12297 + 21.27817 176.72552 -31.41736 + 44.70725 174.36741 -29.72084 + 67.68388 169.93329 -28.04349 + 67.70080 169.61997 -28.04349 + 88.69754 144.74713 -26.39611 + 106.26520 119.09045 -24.78694 + 120.53970 95.33971 -23.22215 + 131.77099 73.43095 -21.70794 + 140.20000 53.29320 -20.25051 + 140.22483 53.09267 -20.25051 + 146.49552 40.67562 -18.85466 + 151.00359 26.72694 -17.52182 + 153.62887 12.91699 -16.25315 + 154.51685 0.65334 -15.04981 + 153.86805 -10.14890 -13.91295 + 153.85779 -10.18423 -13.91295 + 152.49814 -16.89157 -13.10417 + 150.50233 -22.91334 -12.33226 + 147.93715 -28.28487 -11.59660 + 144.86588 -33.04089 -10.89659 + 141.34835 -37.21553 -10.23161 + 141.34921 -37.21096 -10.23161 + 137.45106 -40.66409 -9.60092 + 133.23345 -43.60540 -9.00345 + 128.74599 -46.06649 -8.43813 + 124.03514 -48.07792 -7.90388 + 119.14441 -49.66918 -7.39962 + 119.14359 -49.65436 -7.39962 + 113.08811 -51.18395 -6.83248 + 106.87928 -52.21760 -6.30469 + 100.57394 -52.79987 -5.81409 + 94.22369 -52.97278 -5.35847 + 87.87526 -52.77580 -4.93565 + 87.87551 -52.75907 -4.93565 + 81.55158 -52.58491 -4.54342 + 75.26760 -52.09888 -4.17957 + 69.05906 -51.33260 -3.84195 + 62.95783 -50.31515 -3.52839 + 56.99241 -49.07314 -3.23675 + 56.99422 -49.07134 -3.23675 + 51.16802 -47.99747 -2.96489 + 45.48268 -46.72721 -2.71083 + 39.96058 -45.27981 -2.47266 + 34.62263 -43.65493 -2.24845 + 29.49554 -41.72641 -2.03630 + 29.49190 -41.75098 -2.03630 + 24.60622 -39.60887 -1.83429 + 20.00175 -37.06735 -1.64084 + 15.72531 -34.14447 -1.45445 + 11.82175 -30.85476 -1.27366 + 8.33440 -27.20926 -1.09697 + 8.33465 -27.20640 -1.09697 + 5.37832 -22.04232 -0.92297 + 3.05007 -16.73860 -0.75082 + 1.36658 -11.29661 -0.57994 + 0.34439 -5.71709 -0.40974 + -0.00002 -0.00011 -0.23964 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3491,27 +3600,27 @@ Status character [DATA] 54.32132 0.00000 54.32132 7.06439 202 100 P 57.86102 0.00000 57.86102 8.12405 202 100 P - 60.55287 0.00000 61.40072 9.18371 110 99 - - 57.46208 0.00000 64.94042 10.24337 110 88 - - 54.34802 0.00000 68.48013 11.30303 110 79 - - 51.20275 0.00000 72.01983 12.36268 110 71 - - 51.20275 0.00000 72.01983 12.36268 110 71 - - 48.01806 0.00000 75.55953 13.42234 110 64 - - 44.78489 0.00000 79.09924 14.48200 110 57 - - 41.49407 0.00000 82.63894 15.54166 110 50 - - 38.13642 0.00000 86.17864 16.60132 110 44 - - 34.70276 0.00000 89.71835 17.66098 110 39 - - 34.70276 0.00000 89.71835 17.66098 110 39 - - 31.18610 0.00000 93.25805 18.72064 110 33 - - 27.58859 0.00000 96.79775 19.78029 110 29 - - 24.24007 0.00000 100.33746 20.83995 110 24 - - 21.21647 0.00000 103.87716 21.89961 110 0 - - 18.12547 0.00000 107.41686 22.95927 110 0 - - 18.12547 0.00000 107.41686 22.95927 110 0 - - 14.97118 0.00000 110.95656 24.01893 110 0 - - 11.75658 0.00000 114.49627 25.07859 110 0 - - 8.48439 0.00000 118.03597 26.13825 110 0 - - 5.15734 0.00000 121.57567 27.19791 110 0 - + 59.11326 0.00000 61.40072 9.18371 110 96 - + 56.28809 0.00000 64.94042 10.24337 110 87 - + 53.43968 0.00000 68.48013 11.30303 110 78 - + 50.56007 0.00000 72.01983 12.36268 110 70 - + 50.56007 0.00000 72.01983 12.36268 110 70 - + 47.64106 0.00000 75.55953 13.42234 110 63 - + 44.67364 0.00000 79.09924 14.48200 110 56 - + 41.64866 0.00000 82.63894 15.54166 110 50 - + 38.55694 0.00000 86.17864 16.60132 110 45 - + 35.38933 0.00000 89.71835 17.66098 110 39 - + 35.38933 0.00000 89.71835 17.66098 110 39 - + 32.13888 0.00000 93.25805 18.72064 110 34 - + 28.80773 0.00000 96.79775 19.78029 110 30 - + 25.72575 0.00000 100.33746 20.83995 110 26 - + 22.96885 0.00000 103.87716 21.89961 110 22 - + 20.14473 0.00000 107.41686 22.95927 110 0 - + 20.14473 0.00000 107.41686 22.95927 110 0 - + 17.25748 0.00000 110.95656 24.01893 110 0 - + 14.30989 0.00000 114.49627 25.07859 110 0 - + 11.30450 0.00000 118.03597 26.13825 110 0 - + 8.24382 0.00000 121.57567 27.19791 110 0 - 5.38054 0.00000 125.11538 28.25756 1 0 A 5.38054 0.00000 125.11538 28.25756 1 0 A 5.76569 1.33333 127.00322 28.82272 1 0 A @@ -3562,16 +3671,16 @@ Status character 22.67382 49.00000 183.14007 42.67001 1 0 A 22.71685 50.00000 183.40230 42.73576 1 0 A 22.71685 50.00000 183.40230 42.73576 1 0 A - 22.75987 51.00000 183.66453 42.80151 1 0 A - 22.80289 52.00000 183.92676 42.86725 1 0 A + 22.74266 50.60000 183.55964 42.77521 1 0 A + 22.76847 51.20000 183.71697 42.81466 1 0 A + 22.79429 51.80000 183.87431 42.85410 1 0 A + 22.82010 52.40000 184.03165 42.89355 1 0 A + 22.84591 53.00000 184.18898 42.93300 1 0 A 22.84591 53.00000 184.18898 42.93300 1 0 A - 22.88893 54.00000 184.45121 42.99875 1 0 A - 22.93195 55.00000 184.71344 43.06450 1 0 A - 22.93195 55.00000 184.71344 43.06450 1 0 A - 22.97498 56.00000 184.97566 43.13024 1 0 A - 23.01800 57.00000 185.23789 43.19599 1 0 A - 23.06102 58.00000 185.50012 43.26174 1 0 A - 23.10404 59.00000 185.76234 43.32748 1 0 A + 22.90614 54.40000 184.55610 43.02505 1 0 A + 22.96637 55.80000 184.92322 43.11709 1 0 A + 23.02660 57.20000 185.29034 43.20914 1 0 A + 23.08683 58.60000 185.65745 43.30119 1 0 A 23.14706 60.00000 186.02457 43.39323 1 0 A 21.65478 60.00000 294.67334 37.40647 1 0 A 22.04851 61.33333 300.03104 38.08659 1 0 A @@ -3619,20 +3728,20 @@ Status character 28.63999 103.20000 517.30467 50.73202 1 0 A 28.93491 104.40000 522.63160 51.25443 1 0 A 29.22983 105.60000 527.95854 51.77685 1 0 A - 29.52475 106.80000 533.28547 52.29926 1 0 A - 31.95337 108.00000 538.61241 52.82167 110 0 - - 31.95337 108.00000 538.61241 52.82167 110 0 - - 34.80258 109.20000 543.93935 53.34408 110 0 - - 37.55733 110.40000 549.26628 53.86649 110 0 - - 40.23469 111.60000 554.59322 54.38891 110 0 - - 42.85174 112.80000 559.92015 54.91132 110 0 - - 45.42555 114.00000 565.24709 55.43373 110 0 - - 45.42555 114.00000 565.24709 55.43373 110 0 - - 47.97163 115.20000 570.57403 55.95614 110 0 - - 50.49823 116.40000 575.90096 56.47855 110 0 - - 53.01146 117.60000 581.22790 57.00097 110 0 - - 55.51746 118.80000 586.55483 57.52338 110 0 - - 58.02235 120.00000 591.88177 58.04579 110 0 - + 29.81472 106.80000 533.28547 52.29926 110 0 - + 32.45870 108.00000 538.61241 52.82167 110 0 - + 32.45870 108.00000 538.61241 52.82167 110 0 - + 35.00114 109.20000 543.93935 53.34408 110 0 - + 37.45810 110.40000 549.26628 53.86649 110 0 - + 39.84437 111.60000 554.59322 54.38891 110 0 - + 42.17473 112.80000 559.92015 54.91132 110 0 - + 44.46399 114.00000 565.24709 55.43373 110 0 - + 44.46399 114.00000 565.24709 55.43373 110 0 - + 46.72643 115.20000 570.57403 55.95614 110 0 - + 48.97036 116.40000 575.90096 56.47855 110 0 - + 51.20161 117.60000 581.22790 57.00097 110 0 - + 53.42600 118.80000 586.55483 57.52338 110 0 - + 55.64936 120.00000 591.88177 58.04579 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3645,10 +3754,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 112.745 'Clay' + 0.00 114.224 'Clay' -6.00 45.434 'Peat' -8.00 78.253 'Sand 1' - -11.00 104.165 'Sand 2' + -11.00 103.086 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3663,7 +3772,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.30 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -3726,18 +3835,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.00000 64.28300 0.00000 5.77131 0.00000 - -8.66667 59.74400 36.57400 44.63315 2.25654 - -9.33333 56.31100 56.31000 243.23284 14.26672 - -10.00000 78.52900 51.37700 421.76533 29.46246 - -10.50000 77.36400 49.25200 512.86139 42.75421 - -11.00000 76.62700 47.75800 587.83592 55.94716 - -11.60000 75.23000 46.27800 678.47853 69.88472 - -12.20000 74.66900 45.24200 773.95640 83.36176 - -12.80000 75.82500 43.33100 819.59169 95.96789 - -13.40000 75.73100 40.27900 836.37215 106.00609 - -14.00000 75.76300 37.56800 830.55452 112.33068 + -7.30000 0.00000 0.00000 0.00000 0.00000 + -8.00000 63.40400 0.00000 19.02470 0.00000 + -8.66667 55.65500 61.11400 77.90721 0.49687 + -9.33333 56.31100 56.29400 312.82404 15.55754 + -10.00000 77.82700 50.42300 461.13872 32.36922 + -10.50000 76.79700 48.51600 555.27118 46.29056 + -11.00000 76.13100 47.16000 633.95986 59.99050 + -11.60000 74.83300 45.78400 729.51143 74.37520 + -12.20000 74.32500 44.81200 831.00786 88.24455 + -12.80000 75.40200 42.27300 885.08103 100.90709 + -13.40000 75.28900 39.34000 908.48523 110.99794 + -14.00000 75.28500 36.73300 909.50157 117.43987 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -3754,17 +3863,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.75000 2.52296 11.54263 0.00000 2.64491 0.00000 4.57504 - -8.33333 11.37225 58.29276 3.38481 1.79407 0.29764 5.12588 - -9.00000 24.82068 297.89953 18.01528 1.26090 0.72582 12.00207 - -9.66667 38.74489 267.79874 22.79360 0.96522 0.58830 6.91185 - -10.25000 43.62441 182.19211 26.58349 0.84936 0.60937 4.17638 - -10.75000 39.41403 149.94908 26.38590 0.80863 0.66945 3.80446 - -11.30000 34.36869 151.07101 23.22927 0.70344 0.67588 4.39560 - -11.90000 28.44912 159.12979 22.46173 0.78954 0.78954 5.59349 - -12.50000 22.19804 76.05881 21.01023 0.94649 0.94649 3.42638 - -13.10000 15.70872 9.13570 16.73032 1.06503 1.06503 1.06503 - -13.70000 9.05478 9.13570 10.54100 1.16414 1.16414 1.16414 + -7.65000 3.56182 27.17814 0.00000 2.59230 0.00000 7.63040 + -8.33333 13.88415 88.32377 0.74530 1.69680 0.05368 6.36148 + -9.00000 27.60020 352.37524 22.59101 1.18450 0.81851 12.76712 + -9.66667 41.46810 222.47202 25.21752 0.91505 0.60812 5.36490 + -10.25000 46.18543 188.26492 27.84268 0.80916 0.60285 4.07628 + -10.75000 41.82678 157.37738 27.39988 0.76936 0.65508 3.76260 + -11.30000 36.63877 159.25262 23.97451 0.66577 0.65435 4.34656 + -11.90000 30.59728 169.16072 23.11559 0.75548 0.75548 5.52862 + -12.50000 24.25735 90.12195 21.10423 0.87001 0.87001 3.71524 + -13.10000 17.70597 39.00700 16.81809 0.94985 0.94985 2.20304 + -13.70000 11.01015 1.69390 10.73654 0.97515 0.97515 0.97515 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -3859,72 +3968,72 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P - 4.58187 0.00000 4.58187 2.64886 202 100 P - 9.20424 0.00000 9.20424 5.32113 202 100 P - 13.90505 0.00000 13.90505 8.03875 202 100 P - 18.71747 0.00000 18.71747 10.82090 202 100 P - 23.66814 0.00000 23.66814 13.68297 202 100 P - 26.51780 0.00000 26.51780 9.28128 202 100 P - 38.97407 0.00000 38.97407 13.64100 202 100 P - 51.76828 0.00000 51.76828 18.11900 202 100 P - 64.89952 0.00000 64.89952 22.71496 202 100 P - 78.34464 0.00000 78.34464 27.42078 202 100 P - 92.06414 0.00000 92.06414 32.22264 202 100 P - 215.56514 0.00000 215.56514 22.64657 202 100 P - 248.21520 0.00000 248.21520 26.07668 202 100 P - 281.26478 0.00000 281.26478 29.54876 202 100 P - 297.74624 0.00000 314.58702 33.04948 110 95 - - 284.14246 0.00000 348.06246 36.56630 110 82 - - 271.12063 0.00000 381.58387 40.08795 110 71 - - 219.74953 0.00000 219.74953 30.68736 202 100 P - 239.02727 0.00000 239.02727 33.37943 202 100 P - 235.96552 0.00000 258.23373 36.06156 110 91 - - 224.09495 0.00000 277.33316 38.72874 110 81 - - 212.91807 0.00000 296.29775 41.37708 110 72 - - 202.45307 0.00000 315.10684 44.00372 110 64 - - 190.39861 0.00000 190.39861 38.72181 202 100 P - 187.16151 3.00000 187.16151 38.06348 202 100 P - 177.59401 6.00000 183.86403 37.39286 110 97 - - 168.40073 9.00000 180.50452 36.70963 110 93 - - 159.59752 12.00000 177.08206 36.01359 110 90 - - 151.17942 15.00000 173.59635 35.30470 110 87 - - 149.48626 15.00000 158.13699 33.61154 110 95 - - 141.48132 18.00000 154.90430 32.92444 110 91 - - 133.84484 21.00000 151.61482 32.22527 110 88 - - 126.56586 24.00000 148.26951 31.51423 110 85 - - 119.63347 27.00000 144.86957 30.79159 110 83 - - 113.03680 30.00000 141.41644 30.05763 110 80 - - 109.12699 30.00000 163.38985 26.14783 110 67 - - 101.75401 33.60000 158.52368 25.36908 110 64 - - 94.82606 37.20000 153.57509 24.57714 110 62 - - 88.31924 40.80000 148.54770 23.77259 110 59 - - 82.20968 44.40000 143.44529 22.95603 110 57 - - 76.47351 48.00000 138.27165 22.12808 110 55 - - 79.18187 48.00000 175.95339 24.83644 110 45 - - 73.69181 51.60000 169.28407 23.89504 110 44 - - 68.52408 55.20000 162.53380 22.94222 110 42 - - 63.65399 58.80000 155.70730 21.97863 110 41 - - 59.05686 62.40000 148.80916 21.00494 110 40 - - 54.70796 66.00000 141.84385 20.02176 110 39 - - 58.68803 66.00000 86.88862 24.00182 110 68 - - 54.36545 69.60000 82.58339 22.81256 110 66 - - 50.24129 73.20000 78.24216 21.61335 110 64 - - 46.29271 76.80000 73.86735 20.40487 110 63 - - 42.49687 80.40000 69.46125 19.18774 110 61 - - 38.83087 84.00000 65.02604 17.96258 110 60 - - 20.21230 84.00000 20.21230 20.21230 202 100 P - 18.82528 87.60000 18.82528 18.82528 202 100 P - 17.43047 91.20000 17.43047 17.43047 202 100 P - 16.02843 94.80000 16.02843 16.02843 202 100 P - 14.61972 98.40000 14.61972 14.61972 202 100 P - 13.20482 102.00000 13.20482 13.20482 202 100 P - 14.43355 102.00000 14.43355 14.43355 202 100 P - 12.88077 105.60000 12.88077 12.88077 202 100 P - 11.32226 109.20000 11.32226 11.32226 1 100 A - 9.75847 112.80000 9.75847 9.75847 1 100 A - 8.18983 116.40000 8.18983 8.18983 1 100 A - 6.61674 120.00000 6.61674 6.61674 1 100 A + 0.00001 0.00000 0.00001 0.00000 202 100 P + 10.71375 0.00000 10.71375 3.63982 202 100 P + 21.61001 0.00000 21.61001 7.34163 202 100 P + 32.84935 0.00000 32.84935 11.16001 202 100 P + 44.55309 0.00000 44.55309 15.13616 202 100 P + 48.51157 0.00000 56.79352 19.29464 110 85 - + 47.34888 0.00000 47.34888 12.62941 202 100 P + 63.43833 0.00000 63.43833 16.92096 202 100 P + 79.93470 0.00000 79.93470 21.32106 202 100 P + 96.79816 0.00000 96.79816 25.81906 202 100 P + 113.97246 0.00000 113.97246 30.39998 202 100 P + 131.39244 0.00000 131.39244 35.04643 202 100 P + 263.69692 0.00000 263.69692 24.46502 202 100 P + 291.70283 0.00000 299.01474 27.74170 110 98 - + 278.90862 0.00000 334.55770 31.03927 110 83 - + 266.56796 0.00000 370.20476 34.34650 110 72 - + 254.73291 0.00000 405.84944 37.65351 110 63 - + 243.45703 0.00000 441.40147 40.95192 110 55 - + 185.48206 0.00000 185.48206 31.63628 202 100 P + 200.35142 0.00000 200.35142 34.17244 202 100 P + 211.91061 0.00000 215.12618 36.69246 110 99 - + 201.72461 0.00000 229.78762 39.19315 110 88 - + 192.17025 0.00000 244.32216 41.67220 110 79 - + 183.25757 0.00000 258.72065 44.12804 110 71 - + 178.15103 0.00000 196.57772 39.02150 110 91 - + 169.41234 3.00000 193.29873 38.37061 110 88 - + 161.03012 6.00000 189.95829 37.70752 110 85 - + 152.99821 9.00000 186.55612 37.03217 110 82 - + 145.31054 12.00000 183.09245 36.34462 110 79 - + 137.96112 15.00000 179.56795 35.64499 110 77 - + 136.20770 15.00000 165.74949 33.89157 110 82 - + 129.22426 18.00000 162.44099 33.21506 110 80 - + 122.56203 21.00000 159.07846 32.52751 110 77 - + 116.21052 24.00000 155.66332 31.82920 110 75 - + 110.15925 27.00000 152.19714 31.12045 110 72 - + 104.39781 30.00000 148.68160 30.40162 110 70 - + 100.30442 30.00000 171.75723 26.30822 110 58 - + 93.87546 33.60000 166.81150 25.55068 110 56 - + 87.82853 37.20000 161.79032 24.78158 110 54 - + 82.14236 40.80000 156.69746 24.00150 110 52 - + 76.79569 44.40000 151.53670 23.21102 110 51 - + 71.76726 48.00000 146.31179 22.41072 110 49 - + 74.78709 48.00000 186.10172 25.43055 110 40 - + 69.94614 51.60000 179.37899 24.51190 110 39 - + 65.37909 55.20000 172.58395 23.58337 110 38 - + 61.06503 58.80000 165.72107 22.64556 110 37 - + 56.98298 62.40000 158.79463 21.69907 110 36 - + 53.11197 66.00000 151.80877 20.74447 110 35 - + 56.25696 66.00000 102.01579 23.88946 110 55 - + 52.43030 69.60000 97.28401 22.78140 110 54 - + 48.77352 73.20000 92.51748 21.66520 110 53 - + 45.26802 76.80000 87.71862 20.54143 110 52 - + 41.89516 80.40000 82.88971 19.41062 110 51 - + 38.63626 84.00000 78.03291 18.27329 110 50 - + 40.31318 84.00000 46.27147 19.95021 110 87 - + 37.04483 87.60000 43.37619 18.70189 110 85 - + 33.85585 91.20000 40.46672 17.44746 110 84 - + 30.73191 94.80000 37.54413 16.18737 110 82 - + 27.65865 98.40000 34.60944 14.92206 110 80 - + 24.62168 102.00000 31.66359 13.65194 110 78 - + 14.01549 102.00000 14.01549 14.01549 202 100 P + 12.70700 105.60000 12.70700 12.70700 202 100 P + 11.39433 109.20000 11.39433 11.39433 202 100 P + 10.07783 112.80000 10.07783 10.07783 1 100 A + 8.75781 116.40000 8.75781 8.75781 1 100 A + 7.43458 120.00000 7.43458 7.43458 1 100 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3938,10 +4047,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 5.824 'Peat' - -8.00 369.479 'Sand 1' - -10.00 151.633 'Sand 1' - -11.00 140.427 'Sand 2' + -6.00 18.757 'Peat' + -8.00 370.604 'Sand 1' + -10.00 138.527 'Sand 1' + -11.00 143.428 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3968,8 +4077,8 @@ CalculationStatus 0.00000 0.00000 0.00000 0.00000 0.00000 1 12 4 0.000 1 6 0.00000 0.00000 0.00000 0.00000 0.00000 2 12 4 0.000 1 6 -216.51182 -153.80159 -35.63244 25.69793 28.10340 3 3 0 1.000 0 0 - -229.39976 147.43821 -55.25337 41.88961 43.67008 3 10 12 1.000 0 0 - -309.52230 198.08227 -60.97848 77.92264 79.81653 3 11 13 1.000 0 0 + -190.35344 -131.34995 -40.26203 28.93004 31.34445 3 10 12 1.000 0 0 + -292.30926 -179.50340 -55.77669 71.28481 73.34742 3 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -3992,8 +4101,8 @@ AnchorName [DATA] 2 12 7 4 1.000 0.00000 0 1 0 6 '---' 3 3 7 0 1.000 32.12063 0 1 0 0 'anchor' - 3 10 7 12 1.000 39.62897 0 1 0 0 'anchor' - 3 11 7 13 1.000 52.62688 0 1 0 0 'anchor' + 3 10 7 12 1.000 31.76737 0 1 0 0 'anchor' + 3 11 7 13 1.000 49.24743 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -4005,19 +4114,40 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'anchor' 52.62688 +'anchor' 49.24743 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 31.76737 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-309.52230 -MaximumShearForce=198.08227 +MaximumMoment=-292.30926 +MaximumShearForce=-179.50340 MaximumDisplacement=-35.63244 -MaximumPercentageMobilisedMoment=77.92264 -MaximumPercentageMobilisedResistance=79.81653 +MaximumPercentageMobilisedMoment=71.28481 +MaximumPercentageMobilisedResistance=73.34742 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-190.35344 +MaximumShearForce=-131.34995 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=28.93004 +MaximumPercentageMobilisedResistance=31.34445 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shi index 47efeab7..ff340d4b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shd index 1d6f4f2b..185b136b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:08 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=1 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1159,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,8 +1219,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 - -1 13 2.000 0.800 0.000 0.00 20.00 0.80 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.200 0.000 0.000 0.800 1.100 0.900 + 3 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 3 13 2.000 0.800 0.000 0.00 20.00 0.80 0.20 0.00 0.00 0.00 0.000 0.800 1.100 0.900 1.000 1.000 1.100 1.200 0.000 0.000 0.800 1.100 0.900 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2211,7 +2342,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 55.70867 210000000.000 1 2 0 'anchor' + -1.50000 45.06086 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -2272,22 +2403,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 56.23 : Percentage mobilized resistance left - 4.89 : Percentage mobilized resistance right - 612.24 : Effective left - 273.69 : Effective right + 46.41 : Percentage mobilized resistance left + 4.91 : Percentage mobilized resistance right + 621.61 : Effective left + 275.17 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1088.72 : Max effective resistance left + 1339.45 : Max effective resistance left 5599.85 : Max effective resistance right --9619.06 : Max moment left +-11789.56 : Max moment left -44918.06 : Max moment right --5193.33 : Max mobilized moment left --1663.36 : Max mobilized moment right - 271.58 : Vertical force left - 98.78 : Vertical force right - 54.0 : Max mobilized moment percentage left - 3.7 : Max mobilized moment percentage right +-5145.20 : Max mobilized moment left +-1612.72 : Max mobilized moment right + 272.99 : Vertical force left + 98.26 : Vertical force right + 43.6 : Max mobilized moment percentage left + 3.6 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -2302,150 +2433,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00004 0.00032 7.88732 - 0.43283 8.60086 6.66394 - 1.70888 16.86369 5.44049 - 3.79426 24.78730 4.21661 - 6.65494 32.36906 2.99192 - 10.25656 39.60528 1.76605 - 10.25648 39.60755 1.76605 - 14.56447 46.49344 0.53850 - 19.54329 53.02304 -0.69165 - 25.15696 59.18914 -1.92540 - 31.36872 64.98330 -3.16375 - 38.14090 70.39581 -4.40771 - 38.14114 70.39368 -4.40771 - 45.43483 75.41375 -5.65839 - 53.21044 80.03024 -6.91719 - 61.42707 84.23242 -8.18560 - 70.04277 88.01018 -9.46506 - 79.01464 91.35395 -10.75707 - 79.01532 35.85534 -10.75707 - 82.74962 38.75613 -12.06298 - 86.75149 41.20536 -13.38371 - 90.97536 43.19471 -14.72001 - 95.37484 44.71614 -16.07263 - 99.90356 45.78656 -17.44232 - 99.91960 -224.34997 -17.44232 - 70.06968 -223.49362 -19.29458 - 40.31071 -222.87569 -21.16914 - 10.64483 -222.06262 -23.05656 - -18.89271 -220.95069 -24.94741 - -48.26207 -219.53990 -26.83224 - -48.26732 -219.58830 -26.83224 - -77.43511 -217.87865 -28.70163 - -106.35501 -215.87015 -30.54636 - -134.98720 -213.56279 -32.35731 - -163.29181 -210.95657 -34.12540 - -191.22900 -208.05149 -35.84150 - -191.22893 -208.07774 -35.84150 - -218.76236 -204.87381 -37.49656 - -245.84867 -201.37102 -39.08197 - -272.44801 -197.56937 -40.58927 - -298.52055 -193.46887 -42.01000 - -324.02643 -189.06950 -43.33570 - -324.02739 -54.06927 -43.33570 - -330.92673 -49.37104 -44.55896 - -337.17972 -44.37397 -45.67686 - -342.74651 -39.07803 -46.68764 - -347.58725 -33.48324 -47.58952 - -351.66209 -27.58959 -48.38075 - -351.66206 -27.58451 -48.38075 - -354.93049 -21.39200 -49.05971 - -357.35331 -14.90063 -49.62567 - -358.89070 -8.11041 -50.07814 - -359.50281 -1.02132 -50.41663 - -359.14977 6.36661 -50.64067 - -359.14972 6.37077 -50.64067 - -357.79115 14.05756 -50.74999 - -355.38775 22.04322 -50.74538 - -351.89968 30.32773 -50.62796 - -347.28708 38.91110 -50.39886 - -341.51010 47.79333 -50.05918 - -341.50993 47.79513 -50.05918 - -336.34431 55.54063 -49.73272 - -330.39714 63.42595 -49.34602 - -323.65446 71.45108 -48.90030 - -316.10227 79.61603 -48.39675 - -307.72659 87.92079 -47.83660 - -307.72659 87.92109 -47.83660 - -298.51341 96.36567 -47.22115 - -288.44879 104.95007 -46.55225 - -277.51874 113.67428 -45.83184 - -265.70928 122.53830 -45.06188 - -253.00642 131.54215 -44.24434 - -253.00642 131.54234 -44.24434 - -239.39616 140.68600 -43.38129 - -224.86455 149.96947 -42.47536 - -209.39761 159.39276 -41.52932 - -192.98134 168.95586 -40.54595 - -175.60177 178.65878 -39.52800 - -175.60178 178.65895 -39.52800 - -157.25975 188.05634 -38.47842 - -138.01567 196.69890 -37.40068 - -117.94552 204.57509 -36.29836 - -97.12681 211.66642 -35.17504 - -75.63921 217.94861 -34.03432 - -75.63942 217.95074 -34.03432 - -46.11634 224.46767 -32.49280 - -15.89716 228.37941 -30.93664 - 14.66560 229.60843 -29.37550 - 45.20920 228.07992 -27.81904 - 75.36135 223.72628 -26.27693 - 75.36006 223.74006 -26.27693 - 102.86208 189.19789 -24.75959 - 125.92005 157.06819 -23.27505 - 144.85102 127.28044 -21.82941 - 159.96206 99.75537 -20.42875 - 171.54909 74.40475 -19.07915 - 171.56780 74.09468 -19.07915 - 180.16391 54.55114 -17.78541 - 186.12143 35.15731 -16.54905 - 189.62909 17.78616 -15.37123 - 190.94969 2.33407 -14.25313 - 190.33213 -11.30409 -13.19590 - 190.33159 -11.28444 -13.19590 - 188.77397 -19.72465 -12.44318 - 186.41458 -27.32733 -11.72426 - 183.33497 -34.13621 -11.03861 - 179.61237 -40.19425 -10.38568 - 175.31974 -45.54366 -9.76492 - 175.32089 -45.53905 -9.76492 - 170.53768 -50.01805 -9.17567 - 165.33804 -53.87433 -8.61695 - 159.78227 -57.14696 -8.08778 - 153.92684 -59.87372 -7.58716 - 147.82451 -62.09104 -7.11412 - 147.82345 -62.07279 -7.11412 - 140.23692 -64.26510 -6.58138 - 132.42374 -65.85958 -6.08478 - 124.45233 -66.91123 -5.62230 - 116.38469 -67.47185 -5.19188 - 108.27679 -67.58997 -4.79148 - 108.27710 -67.56919 -4.79148 - 100.19099 -67.13780 -4.41899 - 92.17800 -66.35712 -4.07233 - 84.27770 -65.26594 -3.74947 - 76.52517 -63.89984 -3.44837 - 68.95143 -62.29123 -3.16700 - 68.95201 -62.27947 -3.16700 - 61.55206 -61.01514 -2.90335 - 54.31701 -59.53515 -2.65557 - 47.27133 -57.86250 -2.42184 - 40.43691 -56.01732 -2.20034 - 33.83548 -53.96453 -1.98927 - 33.83310 -54.01017 -1.98927 - 27.63490 -49.25670 -1.78679 - 22.02006 -44.28915 -1.59142 - 17.01369 -39.11685 -1.40188 - 12.63991 -33.74714 -1.21686 - 8.92206 -28.18535 -1.03510 - 8.92453 -28.20971 -1.03510 - 5.83133 -23.29652 -0.85543 - 3.34558 -18.07789 -0.67724 - 1.51034 -12.41655 -0.50007 - 0.38207 -6.34352 -0.32346 - -0.00233 -0.02620 -0.14693 + -0.00004 0.00032 5.31051 + 0.39952 7.94937 4.41492 + 1.58153 15.64922 3.51927 + 3.52101 23.09836 2.62322 + 6.19276 30.29417 1.72641 + 9.57128 37.23298 0.82850 + 9.57119 37.23523 0.82850 + 13.63077 43.91227 -0.07096 + 18.34473 50.32163 -0.97286 + 23.68594 56.45615 -1.87815 + 29.62652 62.30744 -2.78778 + 36.13766 67.86589 -3.70270 + 36.13791 67.86372 -3.70270 + 43.18960 73.11861 -4.62397 + 50.75114 78.05891 -5.55297 + 58.79054 82.67402 -6.49113 + 67.27477 86.95393 -7.43990 + 76.16984 90.88921 -8.40070 + 76.17052 45.99785 -8.40070 + 80.95238 49.57965 -9.37492 + 86.07439 52.79947 -10.36363 + 91.49993 55.64908 -11.36781 + 97.19159 58.12042 -12.38841 + 103.11197 60.23037 -13.42641 + 103.11869 -209.81693 -13.42641 + 75.30642 -207.43540 -14.83732 + 47.78409 -205.46993 -16.27220 + 20.49545 -203.93160 -17.72236 + -6.60862 -202.63965 -19.17910 + -33.53650 -201.22886 -20.63373 + -33.54753 -201.34115 -20.63373 + -60.28236 -199.63150 -22.07758 + -86.76932 -197.62300 -23.50222 + -112.96855 -195.31564 -24.89934 + -138.84020 -192.70942 -26.26058 + -164.34444 -189.80435 -27.57763 + -164.34437 -189.83060 -27.57763 + -189.44485 -186.62666 -28.84221 + -214.09820 -183.12387 -30.04646 + -238.26460 -179.32222 -31.18270 + -261.90418 -175.22172 -32.24325 + -284.97710 -170.82236 -33.22043 + -284.97807 -35.82212 -33.22043 + -289.44446 -31.12390 -34.10761 + -293.26449 -26.12682 -34.90263 + -296.39833 -20.83088 -35.60450 + -298.80611 -15.23609 -36.21223 + -300.44800 -9.34244 -36.72483 + -300.44798 -9.33736 -36.72483 + -301.28345 -3.14485 -37.14148 + -301.27332 3.34652 -37.46219 + -300.37776 10.13674 -37.68726 + -298.55691 17.22582 -37.81699 + -295.77092 24.61376 -37.85166 + -295.77087 24.61791 -37.85166 + -291.97935 32.30471 -37.79178 + -287.14299 40.29037 -37.63893 + -281.22197 48.57488 -37.39499 + -274.17641 57.15825 -37.06187 + -265.96648 66.04047 -36.64144 + -265.96631 66.04227 -36.64144 + -258.97598 73.78778 -36.27015 + -251.20410 81.67309 -35.85248 + -242.63670 89.69823 -35.38996 + -233.25979 97.86318 -34.88413 + -223.05940 106.16794 -34.33652 + -223.05940 106.16824 -34.33652 + -212.02151 114.61282 -33.74879 + -200.13217 123.19721 -33.12308 + -187.37740 131.92142 -32.46168 + -173.74323 140.78545 -31.76687 + -159.21565 149.78929 -31.04094 + -159.21479 149.78038 -31.04094 + -143.81348 157.94169 -30.28633 + -127.68655 164.30003 -29.50598 + -110.98533 169.70263 -28.70286 + -93.75048 174.97165 -27.87996 + -75.99570 180.09959 -27.04026 + -75.99555 180.08408 -27.04026 + -57.72315 185.34764 -26.18683 + -38.92788 190.55542 -25.32306 + -19.61269 195.74452 -24.45240 + 0.22007 200.90504 -23.57832 + 20.56703 206.02674 -22.70427 + 20.59477 205.80304 -22.70427 + 46.53222 181.95732 -21.54585 + 68.97013 154.81319 -20.40232 + 87.87821 129.07486 -19.27974 + 103.46002 104.90981 -18.18414 + 115.92145 82.25872 -17.12160 + 115.90867 82.22025 -17.12160 + 125.57882 63.10450 -16.09705 + 132.80760 45.58781 -15.11251 + 137.80342 29.59770 -14.16960 + 140.76487 15.05985 -13.26996 + 141.88053 1.89790 -12.41520 + 141.88052 1.92783 -12.41520 + 141.44018 -8.30456 -11.60623 + 139.72512 -17.20595 -10.84229 + 136.90767 -24.85313 -10.12251 + 133.15003 -31.32113 -9.44604 + 128.60451 -36.68337 -8.81199 + 128.60570 -36.66352 -8.81199 + 124.79710 -39.43404 -8.36357 + 120.73328 -41.77277 -7.93750 + 116.45600 -43.70799 -7.53301 + 112.00422 -45.26697 -7.14935 + 107.41427 -46.47598 -6.78574 + 107.41542 -46.47814 -6.78574 + 102.73161 -47.14673 -6.44140 + 97.99595 -47.51902 -6.11544 + 93.23691 -47.61812 -5.80703 + 88.48070 -47.46605 -5.51531 + 83.75138 -47.08371 -5.23943 + 83.75057 -47.07406 -5.23943 + 78.13836 -46.41966 -4.92808 + 72.61957 -45.52217 -4.63688 + 67.22156 -44.41175 -4.36442 + 61.96815 -43.11641 -4.10933 + 56.87998 -41.66198 -3.87022 + 56.88018 -41.65009 -3.87022 + 51.97822 -40.02875 -3.64572 + 47.27779 -38.29472 -3.43461 + 42.79121 -36.46780 -3.23575 + 38.52851 -34.56599 -3.04797 + 34.49772 -32.60548 -2.87012 + 34.49788 -32.59821 -2.87012 + 30.67669 -31.07851 -2.70109 + 27.04114 -29.50629 -2.53998 + 23.59683 -27.89282 -2.38588 + 20.34812 -26.24803 -2.23791 + 17.29822 -24.58046 -2.09518 + 17.29996 -24.61002 -2.09518 + 14.42262 -23.30750 -1.95685 + 11.71646 -21.74761 -1.82223 + 9.21441 -19.90729 -1.69068 + 6.94959 -17.79485 -1.56156 + 4.95427 -15.41661 -1.43423 + 4.95421 -15.41569 -1.43423 + 3.25495 -12.86092 -1.30808 + 1.87821 -10.04055 -1.18276 + 0.85576 -6.95641 -1.05801 + 0.21918 -3.60952 -0.93357 + -0.00002 -0.00013 -0.80918 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2522,34 +2653,34 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 64.95651 0.00000 73.16125 6.41632 110 89 - - 62.45877 0.00000 77.64906 7.37877 110 80 - - 59.95364 0.00000 82.13686 8.34122 110 73 - - 57.43313 0.00000 86.62467 9.30366 110 66 - - 54.88926 0.00000 91.11247 10.26611 110 60 - - 52.31402 0.00000 95.60028 11.22856 110 55 - - 52.31402 0.00000 95.60028 11.22856 110 55 - - 49.69916 0.00000 100.08808 12.19101 110 50 - - 47.03560 0.00000 104.57589 13.15346 110 45 - - 44.31406 0.00000 109.06369 14.11591 110 41 - - 41.52531 0.00000 113.55150 15.07835 110 37 - - 38.66008 0.00000 118.03930 16.04080 110 33 - - 38.66008 0.00000 118.03930 16.04080 110 33 - - 35.71133 0.00000 122.52711 17.00325 110 29 - - 32.68105 0.00000 127.01491 17.96570 110 26 - - 29.57356 0.00000 131.50271 18.92815 110 22 - - 26.39317 0.00000 135.99052 19.89059 110 19 - - 23.14421 0.00000 140.47832 20.85304 110 16 - - 23.14421 0.00000 140.47832 20.85304 110 16 - - 19.83052 0.00000 144.96613 21.81549 110 0 - - 16.45434 0.00000 149.45393 22.77794 110 0 - - 13.01756 0.00000 153.94174 23.74039 110 0 - - 9.52208 0.00000 158.42954 24.70283 110 0 - - 6.33607 0.00000 162.91735 25.66528 110 0 - - 6.33607 0.00000 162.91735 25.66528 110 0 - - 1.84564 1.33333 165.31084 26.17859 110 0 - - 1.02024 2.66667 167.70434 26.69189 1 0 A - 1.34723 4.00000 170.09784 27.20520 1 0 A + 59.80290 0.00000 73.16125 6.41632 110 82 - + 57.96074 0.00000 77.64906 7.37877 110 75 - + 56.11120 0.00000 82.13686 8.34122 110 68 - + 54.24635 0.00000 86.62467 9.30366 110 63 - + 52.35823 0.00000 91.11247 10.26611 110 57 - + 50.43892 0.00000 95.60028 11.22856 110 53 - + 50.43892 0.00000 95.60028 11.22856 110 53 - + 48.48023 0.00000 100.08808 12.19101 110 48 - + 46.47316 0.00000 104.57589 13.15346 110 44 - + 44.40856 0.00000 109.06369 14.11591 110 41 - + 42.27726 0.00000 113.55150 15.07835 110 37 - + 40.07011 0.00000 118.03930 16.04080 110 34 - + 40.07011 0.00000 118.03930 16.04080 110 34 - + 37.78017 0.00000 122.52711 17.00325 110 31 - + 35.40950 0.00000 127.01491 17.96570 110 28 - + 32.96248 0.00000 131.50271 18.92815 110 25 - + 30.44351 0.00000 135.99052 19.89059 110 22 - + 27.85695 0.00000 140.47832 20.85304 110 20 - + 27.85695 0.00000 140.47832 20.85304 110 20 - + 25.20664 0.00000 144.96613 21.81549 110 17 - + 22.49449 0.00000 149.45393 22.77794 110 0 - + 19.72196 0.00000 153.94174 23.74039 110 0 - + 16.89051 0.00000 158.42954 24.70283 110 0 - + 14.36788 0.00000 162.91735 25.66528 110 0 - + 14.36788 0.00000 162.91735 25.66528 110 0 - + 10.76015 1.33333 165.31084 26.17859 110 0 - + 7.07847 2.66667 167.70434 26.69189 110 0 - + 3.34744 4.00000 170.09784 27.20520 110 0 - 1.67421 5.33333 172.49133 27.71850 1 0 A 2.00120 6.66667 174.88483 28.23181 1 0 A 2.00120 6.66667 174.88483 28.23181 1 0 A @@ -2601,11 +2732,11 @@ Status character 17.35564 54.00000 239.19913 38.27906 1 0 A 17.39131 55.00000 239.53678 38.33759 1 0 A 17.39131 55.00000 239.53678 38.33759 1 0 A - 17.42698 56.00000 239.87443 38.39612 1 0 A - 17.46265 57.00000 240.21208 38.45465 1 0 A - 17.49832 58.00000 240.54973 38.51318 1 0 A - 17.53399 59.00000 240.88738 38.57172 1 0 A - 17.56966 60.00000 241.22504 38.63025 1 0 A + 17.44666 56.00000 239.87443 38.39612 110 0 - + 18.19621 57.00000 240.21208 38.45465 110 0 - + 18.95126 58.00000 240.54973 38.51318 110 0 - + 19.70906 59.00000 240.88738 38.57172 110 0 - + 20.46683 60.00000 241.22504 38.63025 110 0 - 17.19004 60.00000 472.30225 32.00749 1 0 A 17.50258 61.33333 480.88957 32.58944 1 0 A 17.81513 62.66667 489.47688 33.17140 1 0 A @@ -2653,19 +2784,19 @@ Status character 22.26171 104.40000 791.32333 42.19168 1 0 A 22.48862 105.60000 799.38891 42.62172 1 0 A 22.71552 106.80000 807.45449 43.05176 1 0 A - 23.58908 108.00000 815.52007 43.48180 110 0 - - 23.58908 108.00000 815.52007 43.48180 110 0 - - 26.04391 109.20000 823.58566 43.91184 110 0 - - 28.42764 110.40000 831.65124 44.34188 110 0 - - 30.75315 111.60000 839.71682 44.77192 110 0 - - 33.03331 112.80000 847.78241 45.20196 110 0 - - 35.28099 114.00000 855.84799 45.63200 110 0 - - 35.28099 114.00000 855.84799 45.63200 110 0 - - 37.50774 115.20000 863.91357 46.06204 110 0 - - 39.71966 116.40000 871.97916 46.49208 110 0 - - 41.92138 117.60000 880.04474 46.92212 110 0 - - 44.11757 118.80000 888.11032 47.35216 110 0 - - 46.31287 120.00000 896.17591 47.78220 110 0 - + 22.94242 108.00000 815.52007 43.48180 1 0 A + 22.94242 108.00000 815.52007 43.48180 1 0 A + 24.34334 109.20000 823.58566 43.91184 110 0 - + 26.11959 110.40000 831.65124 44.34188 110 0 - + 27.86514 111.60000 839.71682 44.77192 110 0 - + 29.58639 112.80000 847.78241 45.20196 110 0 - + 31.28973 114.00000 855.84799 45.63200 110 0 - + 31.28973 114.00000 855.84799 45.63200 110 0 - + 32.98125 115.20000 863.91357 46.06204 110 0 - + 34.66449 116.40000 871.97916 46.49208 110 0 - + 36.34204 117.60000 880.04474 46.92212 110 0 - + 38.01648 118.80000 888.11032 47.35216 110 0 - + 39.69041 120.00000 896.17591 47.78220 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2678,10 +2809,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 96.662 'Clay' - -6.00 34.426 'Peat' + 0.00 102.302 'Clay' + -6.00 35.009 'Peat' -8.00 62.119 'Sand 1' - -11.00 80.483 'Sand 2' + -11.00 75.736 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2696,7 +2827,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -2750,7 +2881,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -2759,24 +2890,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.00000 67.71500 0.00000 8.31054 0.00000 - -8.66667 59.74400 33.33200 57.92677 1.61306 - -9.33333 56.31100 54.70600 349.65584 7.96278 - -10.00000 78.25600 47.86500 509.94486 20.23617 - -10.50000 77.12200 45.67700 618.76138 30.37284 - -11.00000 76.41100 44.16300 708.41915 40.58924 - -11.60000 74.66700 42.66100 837.99186 51.25196 - -12.20000 74.76400 41.62300 1007.53438 61.69013 - -12.80000 76.78900 40.88300 1071.25107 71.68853 - -13.40000 76.71400 39.80500 1095.16436 81.08660 - -14.00000 76.74000 37.56800 1086.87229 87.42503 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 66.86200 0.00000 18.33123 0.00000 + -8.00000 63.43600 0.00000 47.78344 0.00000 + -8.66667 55.80200 0.00000 249.08132 0.00000 + -9.33333 78.64700 51.23700 463.45593 11.85254 + -10.00000 76.96300 45.90800 617.37929 27.74472 + -10.50000 76.07200 44.19100 736.78759 39.09872 + -11.00000 75.48900 42.96800 838.37518 50.29579 + -11.60000 74.01500 41.68400 986.59387 61.78946 + -12.20000 74.22000 40.77600 1180.18242 72.95681 + -12.80000 76.03500 40.11800 1275.69878 83.62889 + -13.40000 75.93600 37.99800 1323.31281 93.26985 + -14.00000 75.90400 35.53700 1339.16744 100.02694 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -2787,17 +2919,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.75000 2.52296 16.62108 0.00000 2.57340 0.00000 6.58793 - -8.33333 11.37225 74.42435 2.41960 1.71734 0.21276 6.54438 - -9.00000 24.82068 437.59360 9.52457 1.18839 0.38374 17.63020 - -9.66667 38.74489 240.43353 18.41009 0.89484 0.47516 6.20555 - -10.25000 43.62441 217.63303 20.27333 0.78139 0.46472 4.98879 - -10.75000 39.41403 179.31554 20.43281 0.74481 0.51841 4.54954 - -11.30000 34.36869 215.95453 17.77121 0.64197 0.51708 6.28347 - -11.90000 28.44912 282.57086 17.39695 0.61151 0.61151 9.93250 - -12.50000 22.19804 106.19449 16.66400 0.75070 0.75070 4.78396 - -13.10000 15.70872 13.01768 15.66345 0.99712 0.99712 0.99712 - -13.70000 9.05478 13.01768 10.56404 1.16668 1.16668 1.43766 + -7.25000 2.52296 36.66247 0.00000 2.57340 0.00000 14.53155 + -7.75000 8.03375 58.90441 0.00000 2.20513 0.00000 7.33211 + -8.33333 17.86675 301.94682 0.00000 1.44848 0.00000 16.89993 + -9.00000 31.77814 321.56191 17.77881 1.00569 0.55947 10.11897 + -9.66667 45.45622 230.88505 23.83826 0.77935 0.52442 5.07928 + -10.25000 49.91403 238.81659 22.70801 0.69014 0.45494 4.78456 + -10.75000 45.34373 203.17518 22.39413 0.65630 0.49387 4.48078 + -11.30000 39.96152 247.03116 19.15612 0.55669 0.47936 6.18173 + -11.90000 33.75871 322.64758 18.61225 0.55133 0.55133 9.55746 + -12.50000 27.30345 159.19392 17.78679 0.65145 0.65145 5.83054 + -13.10000 20.67267 79.35673 16.06826 0.77727 0.77727 3.83873 + -13.70000 13.92405 26.42437 11.26182 0.80880 0.80880 1.89775 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -2886,78 +3019,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 6.59778 0.00000 6.59778 2.57725 202 100 P - 13.25386 0.00000 13.25386 5.17727 202 100 P - 20.02290 0.00000 20.02290 7.82141 202 100 P - 26.95266 0.00000 26.95266 10.52834 202 100 P - 34.08150 0.00000 34.08150 13.31303 202 100 P - 33.85618 0.00000 33.85618 8.88435 202 100 P - 49.75953 0.00000 49.75953 13.05762 202 100 P - 66.09432 0.00000 66.09432 17.34410 202 100 P - 82.85942 0.00000 82.85942 21.74351 202 100 P - 100.02526 0.00000 100.02526 26.24807 202 100 P - 117.54142 0.00000 117.54142 30.84456 202 100 P - 284.11361 0.00000 316.65014 21.34430 110 90 - - 272.17303 0.00000 364.61080 24.57717 110 75 - - 260.60012 0.00000 413.15833 27.84959 110 63 - - 249.44314 0.00000 462.10636 31.14901 110 54 - - 238.75110 0.00000 511.27945 34.46360 110 47 - - 228.57421 0.00000 560.52006 37.78274 110 41 - - 197.29427 0.00000 197.29427 28.44984 202 100 P - 208.79968 0.00000 214.60209 30.94563 110 97 - - 198.92265 0.00000 231.84593 33.43219 110 86 - - 189.61722 0.00000 248.99367 35.90490 110 76 - - 180.89143 0.00000 266.02035 38.36014 110 68 - - 172.75425 0.00000 282.90742 40.79526 110 61 - - 167.58189 0.00000 227.43590 35.62289 110 74 - - 159.44904 3.00000 223.56910 35.01724 110 71 - - 151.64294 6.00000 219.63019 34.40030 110 69 - - 144.15787 9.00000 215.61717 33.77175 110 67 - - 136.98820 12.00000 211.52895 33.13142 110 65 - - 130.12845 15.00000 207.36518 32.47925 110 63 - - 128.60794 15.00000 189.10700 30.95875 110 68 - - 122.08253 18.00000 185.24120 30.32588 110 66 - - 115.85136 21.00000 181.30751 29.68189 110 64 - - 109.90474 24.00000 177.30704 29.02697 110 62 - - 104.23300 27.00000 173.24125 28.36136 110 60 - - 98.82655 30.00000 169.11184 27.68533 110 58 - - 95.00419 30.00000 233.56419 23.86297 110 41 - - 88.96603 33.60000 226.60805 23.15227 110 39 - - 83.27738 37.20000 219.53408 22.42953 110 38 - - 77.91831 40.80000 212.34748 21.69529 110 37 - - 72.86891 44.40000 205.05363 20.95008 110 36 - - 68.10927 48.00000 197.65797 20.19448 110 34 - - 67.15099 48.00000 312.44496 19.23619 110 21 - - 62.69700 51.60000 300.60208 18.50707 110 21 - - 58.49243 55.20000 288.61545 17.76909 110 20 - - 54.51747 58.80000 276.49345 17.02278 110 20 - - 50.75230 62.40000 264.24425 16.26864 110 19 - - 47.17711 66.00000 251.87577 15.50715 110 19 - - 50.70671 66.00000 121.31524 19.03674 110 42 - - 47.12700 69.60000 115.30421 18.09350 110 41 - - 43.69804 73.20000 109.24292 17.14236 110 40 - - 40.40224 76.80000 103.13474 16.18387 110 39 - - 37.22195 80.40000 96.98288 15.21852 110 38 - - 34.13952 84.00000 90.79037 14.24679 110 38 - - 18.92338 84.00000 18.92338 18.92338 202 100 P - 17.62481 87.60000 17.62481 17.62481 202 100 P - 16.31895 91.20000 16.31895 16.31895 202 100 P - 15.00632 94.80000 15.00632 15.00632 202 100 P - 13.68743 98.40000 13.68743 13.68743 202 100 P - 12.36277 102.00000 12.36277 12.36277 202 100 P - 17.82482 102.00000 17.82482 14.46510 202 100 P - 15.90720 105.60000 15.90720 12.90893 202 100 P - 13.69261 109.20000 13.98251 11.34701 110 98 - - 10.05544 112.80000 12.05129 9.77980 110 83 - - 8.20773 116.40000 10.11409 8.20773 1 81 A - 6.63121 120.00000 8.17140 6.63121 1 81 A + 14.55326 0.00000 14.55326 2.57725 202 100 P + 28.78205 0.00000 29.23512 5.17727 110 98 - + 30.78370 0.00000 44.16614 7.82141 110 70 - + 32.83230 0.00000 59.45168 10.52834 110 55 - + 34.94523 0.00000 75.17635 13.31303 110 46 - + 33.04003 0.00000 37.93138 11.40782 110 87 - + 34.81927 0.00000 46.11754 13.86980 110 76 - + 36.67132 0.00000 54.57334 16.41288 110 67 - + 38.60051 0.00000 63.30391 19.03859 110 61 - + 40.60775 0.00000 72.30313 21.74509 110 56 - + 42.69111 0.00000 81.55537 24.52770 110 52 - + 187.97857 0.00000 187.97857 16.11148 202 100 P + 232.99977 0.00000 232.99977 19.97021 202 100 P + 227.91937 0.00000 278.80500 23.89614 110 82 - + 220.67152 0.00000 325.21794 27.87415 110 68 - + 213.73028 0.00000 372.05882 31.88885 110 57 - + 207.14147 0.00000 419.15607 35.92551 110 49 - + 196.15936 0.00000 250.97291 24.94340 110 78 - + 188.72258 0.00000 279.23300 27.75208 110 68 - + 181.68377 0.00000 307.47209 30.55867 110 59 - + 175.05242 0.00000 335.62189 33.35639 110 52 - + 168.83929 0.00000 363.62694 36.13973 110 46 - + 163.05633 0.00000 391.44373 38.90435 110 42 - + 154.30052 0.00000 196.48786 30.14854 110 79 - + 148.33623 0.00000 210.33976 32.27394 110 71 - + 142.80341 0.00000 224.06899 34.38051 110 64 - + 137.69222 0.00000 237.66780 36.46707 110 58 - + 132.99330 0.00000 251.13176 38.53294 110 53 - + 128.69772 0.00000 264.45912 40.57786 110 49 - + 124.05307 0.00000 249.11386 35.93321 110 50 - + 118.98249 3.00000 245.04837 35.34678 110 49 - + 114.12506 6.00000 240.91146 34.75006 110 47 - + 109.47335 9.00000 236.70433 34.14320 110 46 - + 105.01994 12.00000 232.42851 33.52644 110 45 - + 100.75748 15.00000 228.08578 32.90003 110 44 - + 99.14406 15.00000 213.60419 31.28661 110 46 - + 95.09597 18.00000 209.47640 30.68201 110 45 - + 91.22320 21.00000 205.28984 30.06881 110 44 - + 87.51757 24.00000 201.04664 29.44730 110 44 - + 83.97090 27.00000 196.74897 28.81783 110 43 - + 80.57503 30.00000 192.39909 28.18070 110 42 - + 76.29792 30.00000 265.43575 23.90359 110 29 - + 72.52775 33.60000 258.14367 23.24691 110 28 - + 68.95054 37.20000 250.75769 22.58177 110 27 - + 65.55289 40.80000 243.28313 21.90865 110 27 - + 62.32137 44.40000 235.72517 21.22803 110 26 - + 59.24258 48.00000 228.08888 20.54035 110 26 - + 59.04487 48.00000 352.64431 20.34264 110 17 - + 56.11223 51.60000 340.72443 19.65503 110 16 - + 53.30743 55.20000 328.69830 18.96129 110 16 - + 50.61930 58.80000 316.57290 18.26183 110 16 - + 48.03669 62.40000 304.35491 17.55702 110 16 - + 45.54841 66.00000 292.05068 16.84724 110 16 - + 48.60771 66.00000 178.16593 19.90655 110 27 - + 46.07335 69.60000 170.61079 19.06241 110 27 - + 43.61297 73.20000 163.01021 18.21319 110 27 - + 41.21805 76.80000 155.36749 17.35927 110 27 - + 38.88007 80.40000 147.68572 16.50098 110 26 - + 36.59048 84.00000 139.96786 15.63866 110 26 - + 39.61097 84.00000 92.15237 18.65914 110 43 - + 37.19433 87.60000 87.04911 17.62583 110 43 - + 34.81069 91.20000 81.92559 16.58841 110 42 - + 32.45399 94.80000 76.78341 15.54721 110 42 - + 30.11811 98.40000 71.62406 14.50254 110 42 - + 27.79694 102.00000 66.44896 13.45468 110 42 - + 28.34278 102.00000 32.85036 14.00052 110 86 - + 25.98788 105.60000 30.28480 12.90710 110 86 - + 23.63848 109.20000 27.71270 11.81089 110 85 - + 21.29222 112.80000 25.13462 10.71214 110 85 - + 18.94674 116.40000 22.55109 9.61106 110 84 - + 16.59967 120.00000 19.96260 8.50787 110 83 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2971,10 +3104,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 8.387 'Peat' - -8.00 348.667 'Sand 1' - -10.00 130.688 'Sand 1' - -11.00 124.495 'Sand 2' + -6.00 31.299 'Peat' + -8.00 358.681 'Sand 1' + -10.00 100.767 'Sand 1' + -11.00 130.860 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3062,22 +3195,22 @@ Depth -6.90000 -7.00000 -7.00000 + -7.04000 -7.08000 + -7.12000 -7.16000 - -7.24000 - -7.32000 - -7.40000 - -7.40000 - -7.48000 - -7.56000 - -7.64000 - -7.72000 - -7.80000 - -7.80000 + -7.20000 + -7.20000 + -7.28000 + -7.36000 + -7.44000 + -7.52000 + -7.60000 + -7.60000 + -7.68000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -3160,7 +3293,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 37.57234 210000000.000 1 2 0 'anchor' + -1.50000 29.82146 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3221,22 +3354,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 41.57 : Percentage mobilized resistance left - 2.95 : Percentage mobilized resistance right - 582.08 : Effective left - 269.52 : Effective right + 32.31 : Percentage mobilized resistance left + 2.91 : Percentage mobilized resistance right + 585.91 : Effective left + 265.72 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1400.39 : Max effective resistance left + 1813.18 : Max effective resistance left 9143.56 : Max effective resistance right --12307.27 : Max moment left +-15983.85 : Max moment left -77096.31 : Max moment right --4928.10 : Max mobilized moment left --1433.30 : Max mobilized moment right - 315.57 : Vertical force left - 112.23 : Vertical force right - 40.0 : Max mobilized moment percentage left - 1.9 : Max mobilized moment percentage right +-4814.11 : Max mobilized moment left +-1318.01 : Max mobilized moment right + 314.55 : Vertical force left + 108.83 : Vertical force right + 30.1 : Max mobilized moment percentage left + 1.7 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -3251,156 +3384,156 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00173 0.04104 9.16287 - 0.31760 6.39417 7.92867 - 1.27775 12.76671 6.69441 - 2.86250 18.88580 5.45970 - 5.04640 24.74950 4.22417 - 7.80379 30.35507 2.98743 - 7.80392 30.35794 2.98743 - 11.10911 35.70182 1.74897 - 14.93542 40.77959 0.50784 - 19.25598 45.58590 -0.73702 - 24.04387 50.13048 -1.98663 - 29.27395 54.43136 -3.24205 - 29.27413 54.42981 -3.24205 - 34.92208 58.48815 -4.50441 - 40.96340 62.29566 -5.77522 - 47.37259 65.84431 -7.05600 - 54.12338 69.12653 -8.34831 - 61.18877 72.13514 -9.65370 - 61.18928 34.70441 -9.65370 - 64.79849 37.43262 -10.97363 - 68.66624 39.87392 -12.30923 - 72.76350 42.02198 -13.66148 - 77.06065 43.87057 -15.03136 - 81.52743 45.41365 -16.41987 - 81.53945 -174.68841 -16.41987 - 58.36142 -173.05466 -18.29986 - 35.37729 -171.74156 -20.20492 - 12.56386 -170.42422 -22.12526 - -10.05967 -168.89320 -24.05107 - -32.46483 -167.14851 -25.97255 - -32.46878 -167.18465 -25.97255 - -54.63188 -165.22628 -27.87995 - -76.51962 -163.05424 -29.76385 - -98.10352 -160.66852 -31.61499 - -119.35507 -158.06913 -33.42411 - -140.24579 -155.25606 -35.18193 - -140.24574 -155.27551 -35.18193 - -160.74973 -152.24877 -36.87927 - -180.83591 -149.00835 -38.50751 - -200.47579 -145.55425 -40.05822 - -219.64088 -141.88648 -41.52296 - -238.30269 -138.00503 -42.89331 - -238.30340 -48.00486 -42.89331 - -244.43342 -43.90974 -44.16183 - -250.00317 -39.60094 -45.32528 - -254.98417 -35.07847 -46.38153 - -259.34793 -30.34232 -47.32845 - -263.06596 -25.39249 -48.16390 - -263.06594 -25.38873 -48.16390 - -266.10925 -20.22523 -48.88595 - -268.44984 -14.84805 -49.49361 - -270.05923 -9.25720 -49.98620 - -270.90893 -3.45268 -50.36303 - -270.97045 2.56553 -50.62343 - -270.97041 2.56860 -50.62343 - -270.21484 8.80048 -50.76694 - -268.61411 15.24604 -50.79430 - -266.13973 21.90527 -50.70658 - -262.76321 28.77817 -50.50484 - -258.45606 35.86475 -50.19016 - -258.45593 35.86608 -50.19016 - -254.59088 41.45211 -49.88088 - -250.16208 47.14099 -49.51005 - -245.15925 52.93273 -49.07888 - -239.57211 58.82734 -48.58858 - -233.39036 64.82480 -48.04035 - -233.39035 64.82502 -48.04035 - -226.60369 70.92535 -47.43553 - -219.20186 77.12853 -46.77592 - -211.17456 83.43457 -46.06347 - -202.51151 89.84348 -45.30011 - -193.20243 96.35525 -44.48778 - -193.20243 96.35536 -44.48778 - -185.28310 101.63883 -43.80407 - -176.93846 106.98813 -43.09168 - -168.16324 112.40327 -42.35199 - -158.95218 117.88423 -41.58634 - -149.30001 123.43103 -40.79609 - -149.30001 123.43109 -40.79609 - -139.20146 129.04371 -39.98267 - -128.65126 134.72217 -39.14770 - -117.64415 140.46646 -38.29289 - -106.17487 146.27657 -37.41995 - -94.23815 152.15252 -36.53058 - -94.23814 152.15256 -36.53058 - -88.09368 155.05224 -36.08029 - -81.83543 157.84233 -35.62658 - -75.46776 160.52253 -35.16972 - -68.99510 163.09234 -34.70994 - -62.42186 165.55109 -34.24749 - -62.42202 165.55260 -34.24749 - -39.90879 171.73651 -32.68994 - -16.73607 175.43517 -31.11529 - 6.76048 176.58153 -29.53354 - 30.23541 175.09701 -27.95472 - 53.33239 170.89832 -26.38883 - 53.33145 170.90834 -26.38883 - 74.36996 144.97137 -24.84665 - 92.06983 120.81982 -23.33649 - 106.66541 98.39711 -21.86470 - 118.38309 77.64010 -20.43758 - 127.44038 58.47921 -19.06149 - 127.43996 58.50621 -19.06149 - 134.13662 42.21246 -17.74144 - 138.76655 27.49228 -16.47906 - 141.53437 14.26766 -15.27559 - 142.63424 2.45999 -14.13227 - 142.24981 -8.01015 -13.05033 - 142.25101 -7.98801 -13.05033 - 141.12275 -14.46945 -12.27946 - 139.37809 -20.32181 -11.54270 - 137.07827 -25.57783 -10.83951 - 134.28133 -30.26959 -10.16934 - 131.04211 -34.42859 -9.53165 - 131.04297 -34.42506 -9.53165 - 127.41998 -37.95395 -8.92575 - 123.46782 -41.01351 -8.35065 - 119.23196 -43.63274 -7.80533 - 114.75502 -45.83961 -7.28879 - 110.07688 -47.66111 -6.79999 - 110.07610 -47.64752 -6.79999 - 104.24570 -49.44613 -6.24852 - 98.22731 -50.78762 -5.73333 - 92.07334 -51.71245 -5.25230 - 85.83147 -52.25857 -4.80328 - 79.54501 -52.46144 -4.38415 - 79.54525 -52.44617 -4.38415 - 73.26140 -52.23625 -3.99271 - 67.01958 -51.75053 -3.62677 - 60.85119 -51.01692 -3.28417 - 54.78442 -50.06086 -2.96279 - 48.84457 -48.90527 -2.66048 - 48.84684 -48.90897 -2.66048 - 43.15296 -46.00479 -2.37509 - 37.80195 -43.19428 -2.10470 - 32.78267 -40.47556 -1.84758 - 28.08641 -37.79198 -1.60197 - 23.71732 -34.99014 -1.36612 - 23.71303 -35.02214 -1.36612 - 19.62888 -32.97398 -1.13839 - 15.81653 -30.49458 -0.91748 - 12.32687 -27.59783 -0.70217 - 9.20930 -24.29480 -0.49127 - 6.51204 -20.59374 -0.28357 - 6.50874 -20.56033 -0.28357 - 4.24683 -17.05975 -0.07796 - 2.43012 -13.16608 0.12620 - 1.09775 -9.00307 0.32935 - 0.27829 -4.61744 0.53196 - -0.00151 -0.00864 0.73449 + -0.00003 0.00024 6.40808 + 0.30691 6.10783 5.51092 + 1.21538 12.03051 4.61369 + 2.70682 17.76716 3.71604 + 4.76254 23.31583 2.81762 + 7.36363 28.67380 1.91805 + 7.36357 28.67548 1.91805 + 10.49094 33.83921 1.01687 + 14.12479 38.80430 0.11315 + 18.24500 43.56542 -0.79408 + 22.83140 48.13237 -1.70583 + 27.86560 52.52322 -2.62309 + 27.86578 52.52164 -2.62309 + 33.33023 56.73762 -3.54696 + 39.20720 60.77050 -4.47887 + 45.47797 64.61235 -5.42035 + 52.12305 68.25566 -6.37290 + 59.12224 71.69337 -7.33805 + 59.12275 41.98399 -7.33805 + 63.48421 45.20939 -8.31726 + 68.15734 48.21607 -9.31182 + 73.11993 50.99772 -10.32291 + 78.34917 53.54813 -11.35174 + 83.82164 55.86120 -12.39950 + 83.82665 -164.17386 -12.39950 + 62.12472 -161.40757 -13.82604 + 40.77039 -158.96170 -15.27926 + 19.72030 -156.84514 -16.75013 + -1.06932 -155.05117 -18.22957 + -21.62887 -153.30648 -19.70854 + -21.63712 -153.39039 -19.70854 + -41.96099 -151.43203 -21.17805 + -62.00950 -149.25999 -22.62952 + -81.75416 -146.87427 -24.05446 + -101.16648 -144.27488 -25.44439 + -120.21796 -141.46181 -26.79085 + -120.21791 -141.48125 -26.79085 + -138.88267 -138.45451 -28.08543 + -157.12962 -135.21409 -29.32032 + -174.93027 -131.76000 -30.48786 + -192.25612 -128.09223 -31.58041 + -209.07870 -124.21078 -32.59033 + -209.07941 -34.21060 -32.59033 + -213.37019 -30.11548 -33.51098 + -217.10071 -25.80668 -34.33991 + -220.24248 -21.28421 -35.07578 + -222.76700 -16.54806 -35.71725 + -224.64580 -11.59824 -36.26297 + -224.64578 -11.59448 -36.26297 + -225.84985 -6.43097 -36.71180 + -226.35121 -1.05380 -37.06354 + -226.12137 4.53705 -37.31830 + -225.13183 10.34158 -37.47619 + -223.35411 16.35978 -37.53731 + -223.35407 16.36286 -37.53731 + -220.75927 22.59474 -37.50201 + -217.31931 29.04029 -37.37181 + -213.00570 35.69952 -37.14857 + -207.78994 42.57243 -36.83414 + -201.64356 49.65901 -36.43040 + -201.64343 49.66034 -36.43040 + -196.39895 55.24636 -36.07030 + -190.59073 60.93525 -35.66272 + -184.20847 66.72699 -35.20920 + -177.24190 72.62159 -34.71127 + -169.68073 78.61906 -34.17050 + -169.68072 78.61928 -34.17050 + -161.51464 84.71960 -33.58852 + -152.73337 90.92278 -32.96749 + -143.32665 97.22883 -32.30968 + -133.28418 103.63773 -31.61737 + -122.59567 110.14950 -30.89283 + -122.59567 110.14959 -30.89283 + -118.13707 112.78309 -30.59452 + -113.57280 115.43306 -30.29165 + -108.90220 118.09948 -29.98439 + -104.12462 120.78236 -29.67291 + -99.23940 123.48170 -29.35742 + -99.23910 123.47877 -29.35742 + -89.15631 128.43947 -28.71506 + -78.71310 132.48827 -28.05892 + -67.97382 135.95084 -27.39063 + -56.96535 139.24920 -26.71188 + -45.69588 142.47501 -26.02430 + -45.69618 142.47195 -26.02430 + -34.16792 145.72488 -25.32960 + -22.38182 148.91708 -24.62962 + -10.34292 152.04407 -23.92621 + 1.94336 155.10098 -23.22123 + 14.47123 158.08275 -22.51655 + 14.47058 158.08783 -22.51655 + 34.10063 136.56549 -21.34868 + 50.94131 116.24155 -20.19553 + 65.15002 97.07941 -19.06324 + 76.87889 79.03639 -17.95796 + 86.27397 62.06401 -16.88583 + 86.27359 62.08238 -16.88583 + 93.58653 47.81011 -15.85190 + 99.07463 34.70055 -14.85822 + 102.88921 22.69799 -13.90646 + 105.17411 11.74570 -12.99830 + 106.06550 1.78576 -12.13542 + 106.06549 1.80815 -12.13542 + 105.78626 -5.82871 -11.31875 + 104.55463 -12.48772 -10.54755 + 102.49711 -18.22643 -9.82096 + 99.73265 -23.10102 -9.13813 + 96.37280 -27.16634 -8.49821 + 96.37369 -27.15145 -8.49821 + 93.55277 -29.21298 -8.04570 + 90.54153 -30.96151 -7.61581 + 87.37020 -32.41813 -7.20777 + 84.06695 -33.60322 -6.82081 + 80.65795 -34.53638 -6.45419 + 80.65881 -34.53787 -6.45419 + 77.17628 -35.07591 -6.10708 + 73.65069 -35.40203 -5.77863 + 70.10236 -35.53349 -5.46797 + 66.54993 -35.48673 -5.17426 + 63.01044 -35.27736 -4.89664 + 63.00983 -35.27008 -4.89664 + 58.80210 -34.82860 -4.58351 + 54.65777 -34.21719 -4.29084 + 50.59587 -33.45841 -4.01722 + 46.63281 -32.57319 -3.76124 + 42.78259 -31.58082 -3.52150 + 42.78274 -31.57190 -3.52150 + 39.06581 -30.36415 -3.29659 + 35.49810 -29.08744 -3.08527 + 32.08699 -27.75657 -2.88636 + 28.83815 -26.38495 -2.69868 + 25.75575 -24.98462 -2.52102 + 25.75587 -24.97919 -2.52102 + 22.83868 -23.63800 -2.35226 + 20.08323 -22.28487 -2.19144 + 17.49045 -20.92820 -2.03767 + 15.06031 -19.57534 -1.89004 + 12.79197 -18.23260 -1.74764 + 12.79326 -18.25444 -1.74764 + 10.66130 -17.25356 -1.60963 + 8.65901 -16.08746 -1.47532 + 6.80751 -14.74148 -1.34407 + 5.12801 -13.22172 -1.21525 + 3.64106 -11.53278 -1.08821 + 3.64192 -11.53733 -1.08821 + 2.37980 -9.48104 -0.96234 + 1.37053 -7.32311 -0.83730 + 0.62631 -5.06373 -0.71281 + 0.16181 -2.64019 -0.58863 + 0.00207 0.01840 -0.46450 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3477,34 +3610,34 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 62.07374 0.00000 62.07374 5.10654 202 100 P - 64.98880 0.00000 68.20676 5.95763 110 95 - - 62.46201 0.00000 74.33978 6.80872 110 84 - - 59.91982 0.00000 80.47280 7.65981 110 74 - - 57.35423 0.00000 86.60582 8.51090 110 66 - - 54.75721 0.00000 92.73885 9.36199 110 59 - - 54.75721 0.00000 92.73885 9.36199 110 59 - - 52.12050 0.00000 98.87187 10.21308 110 53 - - 49.43492 0.00000 105.00489 11.06417 110 47 - - 46.69115 0.00000 111.13791 11.91526 110 42 - - 44.20051 0.00000 117.27093 12.76635 110 38 - - 41.81715 0.00000 123.40395 13.61744 110 34 - - 41.81715 0.00000 123.40395 13.61744 110 34 - - 39.34979 0.00000 129.53697 14.46853 110 30 - - 36.80030 0.00000 135.67000 15.31962 110 27 - - 34.17282 0.00000 141.80302 16.17071 110 24 - - 31.47153 0.00000 147.93604 17.02180 110 21 - - 28.70058 0.00000 154.06906 17.87289 110 19 - - 28.70058 0.00000 154.06906 17.87289 110 19 - - 25.86362 0.00000 160.20208 18.72398 110 16 - - 22.96248 0.00000 166.33510 19.57507 110 14 - - 19.99858 0.00000 172.46812 20.42617 110 0 - - 16.97335 0.00000 178.60115 21.27726 110 0 - - 13.88823 0.00000 184.73417 22.12835 110 0 - - 13.88823 0.00000 184.73417 22.12835 110 0 - - 9.28455 1.33333 188.00511 22.58226 110 0 - - 6.41209 2.66667 191.27606 23.03618 1 0 A - 6.68132 4.00000 194.54700 23.49009 1 0 A + 61.99855 0.00000 62.07374 5.10654 110 99 - + 60.15322 0.00000 68.20676 5.95763 110 88 - + 58.30050 0.00000 74.33978 6.80872 110 78 - + 56.43243 0.00000 80.47280 7.65981 110 70 - + 54.54105 0.00000 86.60582 8.51090 110 63 - + 52.61838 0.00000 92.73885 9.36199 110 57 - + 52.61838 0.00000 92.73885 9.36199 110 57 - + 50.65621 0.00000 98.87187 10.21308 110 51 - + 48.64548 0.00000 105.00489 11.06417 110 46 - + 46.57695 0.00000 111.13791 11.91526 110 42 - + 44.76204 0.00000 117.27093 12.76635 110 38 - + 43.05500 0.00000 123.40395 13.61744 110 35 - + 43.05500 0.00000 123.40395 13.61744 110 35 - + 41.26464 0.00000 129.53697 14.46853 110 32 - + 39.39292 0.00000 135.67000 15.31962 110 29 - + 37.44406 0.00000 141.80302 16.17071 110 26 - + 35.42229 0.00000 147.93604 17.02180 110 24 - + 33.33182 0.00000 154.06906 17.87289 110 22 - + 33.33182 0.00000 154.06906 17.87289 110 22 - + 31.17631 0.00000 160.20208 18.72398 110 19 - + 28.95725 0.00000 166.33510 19.57507 110 17 - + 26.67566 0.00000 172.46812 20.42617 110 15 - + 24.33253 0.00000 178.60115 21.27726 110 14 - + 21.92889 0.00000 184.73417 22.12835 110 0 - + 21.92889 0.00000 184.73417 22.12835 110 0 - + 18.23212 1.33333 188.00511 22.58226 110 0 - + 14.45595 2.66667 191.27606 23.03618 110 0 - + 10.62571 4.00000 194.54700 23.49009 110 0 - 6.95056 5.33333 197.81795 23.94400 1 0 A 7.21979 6.66667 201.08889 24.39792 1 0 A 7.21979 6.66667 201.08889 24.39792 1 0 A @@ -3550,22 +3683,22 @@ Status character 15.60335 49.00000 307.87325 32.27087 1 0 A 15.63196 50.00000 308.33819 32.32137 1 0 A 15.63196 50.00000 308.33819 32.32137 1 0 A + 15.64340 50.40000 308.52416 32.34157 1 0 A 15.65484 50.80000 308.71013 32.36177 1 0 A + 15.66628 51.20000 308.89611 32.38197 1 0 A 15.67772 51.60000 309.08208 32.40217 1 0 A - 15.70060 52.40000 309.45403 32.44257 1 0 A - 15.72349 53.20000 309.82597 32.48298 1 0 A - 15.74637 54.00000 310.19792 32.52338 1 0 A - 15.74637 54.00000 310.19792 32.52338 1 0 A - 15.76925 54.80000 310.56986 32.56378 1 0 A - 15.79213 55.60000 310.94181 32.60418 1 0 A - 15.81502 56.40000 311.31376 32.64458 1 0 A - 15.83790 57.20000 311.68570 32.68498 1 0 A - 15.86078 58.00000 312.05765 32.72539 1 0 A - 15.86078 58.00000 312.05765 32.72539 1 0 A + 15.68916 52.00000 309.26805 32.42237 1 0 A + 15.68916 52.00000 309.26805 32.42237 1 0 A + 15.71205 52.80000 309.64000 32.46277 1 0 A + 15.73493 53.60000 310.01194 32.50318 1 0 A + 15.75781 54.40000 310.38389 32.54358 1 0 A + 15.78069 55.20000 310.75584 32.58398 1 0 A + 15.80358 56.00000 311.12778 32.62438 1 0 A + 15.80358 56.00000 311.12778 32.62438 1 0 A + 15.82646 56.80000 311.49973 32.66478 1 0 A + 15.84934 57.60000 311.87168 32.70518 1 0 A 15.87222 58.40000 312.24362 32.74559 1 0 A - 15.88366 58.80000 312.42960 32.76579 1 0 A 15.89511 59.20000 312.61557 32.78599 1 0 A - 15.90655 59.60000 312.80154 32.80619 1 0 A 15.91799 60.00000 312.98752 32.82639 1 0 A 12.98744 60.00000 931.61657 25.96423 1 0 A 13.22721 61.33333 948.81564 26.44357 1 0 A @@ -3613,20 +3746,20 @@ Status character 16.23112 103.20000 1302.86875 32.65360 1 0 A 16.39987 104.40000 1316.41418 32.99309 1 0 A 16.56862 105.60000 1329.95960 33.33258 1 0 A - 17.65240 106.80000 1343.50502 33.67206 110 0 - - 20.35031 108.00000 1357.05044 34.01155 110 0 - - 20.35031 108.00000 1357.05044 34.01155 110 0 - - 22.96712 109.20000 1370.59586 34.35104 110 0 - - 25.51577 110.40000 1384.14128 34.69052 110 0 - - 28.00831 111.60000 1397.68670 35.03001 110 0 - - 30.45679 112.80000 1411.23212 35.36950 110 0 - - 32.87325 114.00000 1424.77754 35.70898 110 0 - - 32.87325 114.00000 1424.77754 35.70898 110 0 - - 35.26889 115.20000 1438.32296 36.04847 110 0 - - 37.64993 116.40000 1451.86838 36.38796 110 3 - - 40.02096 117.60000 1465.41380 36.72744 110 3 - - 42.38655 118.80000 1478.95922 37.06693 110 3 - - 44.75128 120.00000 1492.50464 37.40642 110 3 - + 16.73737 106.80000 1343.50502 33.67206 1 0 A + 16.90612 108.00000 1357.05044 34.01155 1 0 A + 16.90612 108.00000 1357.05044 34.01155 1 0 A + 18.25475 109.20000 1370.59586 34.35104 110 0 - + 19.93732 110.40000 1384.14128 34.69052 110 0 - + 21.58927 111.60000 1397.68670 35.03001 110 0 - + 23.21698 112.80000 1411.23212 35.36950 110 0 - + 24.82687 114.00000 1424.77754 35.70898 110 0 - + 24.82687 114.00000 1424.77754 35.70898 110 0 - + 26.42503 115.20000 1438.32296 36.04847 110 0 - + 28.01500 116.40000 1451.86838 36.38796 110 0 - + 29.59934 117.60000 1465.41380 36.72744 110 0 - + 31.18062 118.80000 1478.95922 37.06693 110 0 - + 32.76139 120.00000 1492.50464 37.40642 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3639,10 +3772,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 123.404 'Clay' + 0.00 129.499 'Clay' -6.00 31.264 'Peat' -8.00 47.054 'Sand 1' - -11.00 67.793 'Sand 2' + -11.00 57.898 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3657,7 +3790,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Profile add. pressure @@ -3711,7 +3844,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -3720,24 +3853,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.13800 30.62300 1.57659 0.00767 - -8.66667 66.57200 30.42700 47.07497 1.02891 - -9.33333 82.06900 30.42100 469.97750 3.55979 - -10.00000 79.87800 45.62200 662.48573 8.30164 - -10.50000 78.82500 43.02200 808.51771 15.22287 - -11.00000 78.19100 41.26400 926.50171 22.65653 - -11.60000 76.63100 39.59100 1124.56998 30.57434 - -12.20000 78.97400 38.45200 1356.53269 38.58042 - -12.80000 78.84000 37.64900 1420.45908 46.40999 - -13.40000 78.81100 37.07600 1434.71728 53.92511 - -14.00000 78.88200 35.14000 1399.42689 60.01197 + -7.20000 0.00000 0.00000 0.00000 0.00000 + -7.60000 71.41600 0.00000 12.24999 0.00000 + -8.00000 68.19900 0.00000 35.27228 0.00000 + -8.66667 62.94500 29.28200 366.34622 0.81390 + -9.33333 80.49000 49.48700 591.23839 5.80611 + -10.00000 78.79300 45.00000 806.44017 18.13657 + -10.50000 77.94200 41.38800 972.46260 26.65670 + -11.00000 77.40500 39.99100 1112.19530 35.08467 + -11.60000 76.13400 38.57300 1347.08503 43.77196 + -12.20000 78.28700 37.58200 1637.19201 52.42931 + -12.80000 78.14200 36.86900 1744.44747 60.84949 + -13.40000 78.07000 36.34700 1802.75791 68.91968 + -14.00000 78.05900 34.64100 1812.34570 75.82872 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -3748,17 +3882,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00164 7.88293 0.03837 2.74417 0.03830 7.86999 - -8.33333 7.89566 68.24758 1.53185 1.80025 0.19401 8.64369 - -9.00000 20.91076 634.35379 3.79633 1.28846 0.18155 30.33624 - -9.66667 35.01686 288.76235 7.11277 0.94421 0.20312 8.24638 - -10.25000 40.31386 292.06396 13.84246 0.81074 0.34337 7.24475 - -10.75000 36.47897 235.96799 14.86733 0.77707 0.40756 6.46860 - -11.30000 31.78836 330.11379 13.19636 0.67878 0.41513 10.38474 - -11.90000 26.16252 386.60452 13.34346 0.64878 0.51002 14.77704 - -12.50000 20.11463 23.83011 13.04928 0.64875 0.64875 1.18472 - -13.10000 13.75589 23.83011 12.52520 0.91053 0.91053 1.73236 - -13.70000 7.17835 23.83011 10.14477 1.41324 1.41324 3.31972 + -7.40000 2.01302 30.62497 0.00000 2.71334 0.00000 15.21343 + -7.80000 6.31878 57.55572 0.00000 2.42820 0.00000 9.10868 + -8.33333 15.33906 496.61091 1.22085 1.58630 0.07959 32.37558 + -9.00000 29.39452 337.33826 7.48831 1.05400 0.25475 11.47623 + -9.66667 43.45910 322.80267 18.49569 0.77893 0.42559 7.42773 + -10.25000 48.26257 332.04485 17.04027 0.67305 0.35307 6.87997 + -10.75000 43.93852 279.46541 16.85594 0.63761 0.38363 6.36037 + -11.30000 38.76252 391.48288 14.47882 0.54007 0.37353 10.09952 + -11.90000 32.71463 483.51163 14.42891 0.51025 0.44105 14.77968 + -12.50000 26.35589 178.75911 14.03364 0.53247 0.53247 6.78251 + -13.10000 19.77835 97.18407 13.45031 0.68005 0.68005 4.91366 + -13.70000 13.05220 15.97965 11.51507 0.88223 0.88223 1.22429 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -3853,78 +3988,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14883 0.00000 3.14883 1.09796 202 100 P - 6.30262 0.00000 6.30262 2.19764 202 100 P - 9.46631 0.00000 9.46631 3.30078 202 100 P - 12.64470 0.00000 12.64470 4.40905 202 100 P - 15.84247 0.00000 15.84247 5.52407 202 100 P - 17.39993 0.00000 17.39993 3.62395 202 100 P - 37.38930 0.00000 37.38930 7.78721 202 100 P - 57.82510 0.00000 57.82510 12.04346 202 100 P - 78.81987 0.00000 78.81987 16.41612 202 100 P - 100.43440 0.00000 100.43440 20.91786 202 100 P - 122.67877 0.00000 122.67877 25.55079 202 100 P - 282.17532 0.00000 430.55857 18.28701 110 66 - - 270.15820 0.00000 510.72096 21.69173 110 53 - - 258.54030 0.00000 592.74164 25.17537 110 44 - - 247.37172 0.00000 676.31042 28.72477 110 37 - - 236.70098 0.00000 761.07915 32.32513 110 31 - - 226.57628 0.00000 846.69288 35.96138 110 27 - - 216.96814 0.00000 230.15876 26.35324 110 94 - - 206.44808 0.00000 253.56897 29.03372 110 81 - - 196.51094 0.00000 277.03319 31.72038 110 71 - - 187.16075 0.00000 300.47859 34.40489 110 62 - - 178.40289 0.00000 323.84395 37.08023 110 55 - - 170.24406 0.00000 347.07954 39.74071 110 49 - - 164.62642 0.00000 304.92230 34.12307 110 54 - - 156.35015 3.00000 299.85124 33.55558 110 52 - - 148.40445 6.00000 294.68533 32.97748 110 50 - - 140.78284 9.00000 289.41573 32.38777 110 49 - - 133.47910 12.00000 284.03573 31.78571 110 47 - - 126.48721 15.00000 278.54053 31.17075 110 45 - - 125.19252 15.00000 248.69975 29.87607 110 50 - - 118.53142 18.00000 243.68757 29.27396 110 49 - - 112.16545 21.00000 238.56813 28.65897 110 47 - - 106.08437 24.00000 233.34093 28.03103 110 45 - - 100.27805 27.00000 228.00638 27.39020 110 44 - - 94.73645 30.00000 222.56563 26.73660 110 43 - - 91.35474 30.00000 357.30834 23.35488 110 26 - - 85.14051 33.60000 346.60582 22.65533 110 25 - - 79.27375 37.20000 335.66831 21.94042 110 24 - - 73.73363 40.80000 324.50347 21.21065 110 23 - - 68.49939 44.40000 313.11988 20.46658 110 22 - - 63.55030 48.00000 301.52675 19.70881 110 21 - - 62.67926 48.00000 429.05959 18.83777 110 15 - - 58.02811 51.60000 412.27861 18.10100 110 14 - - 53.62003 55.20000 395.22721 17.35237 110 14 - - 49.43422 58.80000 377.91953 16.59248 110 13 - - 45.44990 62.40000 360.36962 15.82195 110 13 - - 41.64625 66.00000 342.59136 15.04140 110 12 - - 27.46649 66.00000 27.46649 15.04055 202 100 P - 26.02393 69.60000 26.02393 14.25061 202 100 P - 24.56521 73.20000 24.56521 13.45182 202 100 P - 23.09135 76.80000 23.09135 12.64474 202 100 P - 21.60332 80.40000 21.60332 11.82990 202 100 P - 20.10206 84.00000 20.10206 11.00782 202 100 P - 29.11103 84.00000 29.39435 15.44978 110 99 - - 25.67041 87.60000 27.18110 14.28649 110 94 - - 22.28912 91.20000 24.95106 13.11437 110 89 - - 18.95575 94.80000 22.70541 11.93405 110 83 - - 15.65883 98.40000 20.44528 10.74612 110 77 - - 12.38686 102.00000 18.17172 9.55113 110 68 - - 17.66010 102.00000 34.82250 14.82436 110 51 - - 13.73905 105.60000 30.44185 12.95946 110 45 - - 11.08519 109.20000 26.03918 11.08519 1 43 A - 9.20226 112.80000 21.61617 9.20226 1 43 A - 7.31135 116.40000 17.17440 7.31135 1 43 A - 5.41309 120.00000 12.71538 5.41309 1 43 A + 0.00002 0.00000 0.00002 0.00000 202 100 P + 12.18356 0.00000 12.18356 2.17296 202 100 P + 24.44339 0.00000 24.44339 4.35952 202 100 P + 28.48524 0.00000 36.85266 6.57273 110 77 - + 30.19410 0.00000 49.47864 8.82459 110 61 - + 31.94505 0.00000 62.38019 11.12561 110 51 - + 30.77586 0.00000 37.34864 9.95642 110 82 - + 32.33105 0.00000 45.26723 12.06736 110 71 - + 33.93967 0.00000 53.40216 14.23598 110 64 - + 35.60723 0.00000 61.76843 16.46626 110 58 - + 37.33730 0.00000 70.37391 18.76032 110 53 - + 39.13166 0.00000 79.21966 21.11842 110 49 - + 238.96178 0.00000 281.57575 13.79628 110 85 - + 231.42127 0.00000 366.03487 17.93450 110 63 - + 224.13190 0.00000 452.61507 22.17664 110 50 - + 217.14060 0.00000 541.02041 26.50821 110 40 - + 210.49137 0.00000 630.89495 30.91176 110 33 - + 204.22709 0.00000 721.85985 35.36874 110 28 - + 192.35883 0.00000 255.87898 23.50048 110 75 - + 185.00425 0.00000 288.37787 26.48525 110 64 - + 178.06426 0.00000 321.00836 29.48210 110 55 - + 171.54559 0.00000 353.66136 32.48102 110 49 - + 165.45643 0.00000 386.24353 35.47344 110 43 - + 159.80644 0.00000 418.67776 38.45227 110 38 - + 149.77121 0.00000 270.97985 28.41704 110 55 - + 143.79174 0.00000 291.83658 30.60424 110 49 - + 138.24950 0.00000 312.52708 32.77400 110 44 - + 133.13360 0.00000 333.02882 34.92397 110 40 - + 128.43386 0.00000 353.32628 37.05252 110 36 - + 124.14072 0.00000 373.40977 39.15863 110 33 - + 118.81808 0.00000 345.87216 33.83599 110 34 - + 113.76033 3.00000 340.42715 33.30332 110 33 - + 108.91752 6.00000 334.86754 32.75943 110 33 - + 104.28204 9.00000 329.19374 32.20437 110 32 - + 99.84641 12.00000 323.40700 31.63827 110 31 - + 95.60317 15.00000 317.50918 31.06130 110 30 - + 93.96724 15.00000 293.53007 29.42537 110 32 - + 89.93952 18.00000 287.97722 28.86871 110 31 - + 86.08854 21.00000 282.32654 28.30225 110 30 - + 82.40602 24.00000 276.58093 27.72627 110 30 - + 78.88374 27.00000 270.74356 27.14110 110 29 - + 75.51348 30.00000 264.81774 26.54706 110 29 - + 71.45254 30.00000 420.49924 22.48611 110 17 - + 67.70789 33.60000 409.03010 21.87280 110 17 - + 64.15799 37.20000 397.37615 21.24961 110 16 - + 60.78925 40.80000 385.54703 20.61705 110 16 - + 57.58807 44.40000 373.55236 19.97564 110 15 - + 54.54086 48.00000 361.40162 19.32588 110 15 - + 53.47361 48.00000 528.87647 18.25863 110 10 - + 50.60323 51.60000 510.88019 17.63734 110 10 - + 47.86182 55.20000 492.68224 17.00908 110 10 - + 45.23795 58.80000 474.29534 16.37430 110 10 - + 42.72017 62.40000 455.73172 15.73342 110 9 - + 40.29704 66.00000 437.00309 15.08685 110 9 - + 40.95409 66.00000 200.54417 15.74390 110 20 - + 38.58621 69.60000 191.87885 15.06362 110 20 - + 36.29262 73.20000 183.14781 14.37818 110 20 - + 34.06465 76.80000 174.35568 13.68795 110 20 - + 31.89364 80.40000 165.50684 12.99326 110 19 - + 29.77086 84.00000 156.60542 12.29445 110 19 - + 33.17855 84.00000 113.45437 15.70213 110 29 - + 30.90103 87.60000 106.97039 14.80474 110 29 - + 28.65604 91.20000 100.45380 13.90284 110 29 - + 26.43752 94.80000 93.90711 12.99678 110 28 - + 24.23939 98.40000 87.33266 12.08687 110 28 - + 22.05555 102.00000 80.73267 11.17343 110 27 - + 20.11536 102.00000 20.11536 14.49530 202 100 P + 18.46505 105.60000 18.46505 13.30607 202 100 P + 16.80936 109.20000 16.80936 12.11297 202 100 P + 15.14876 112.80000 15.14876 10.91632 202 100 P + 12.43882 116.40000 13.48364 9.71643 110 92 - + 9.59345 120.00000 11.81442 8.51357 110 81 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3938,10 +4073,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] 0.00 0.000 'Clay' - -6.00 1.579 'Peat' - -8.00 343.171 'Sand 1' - -10.00 127.160 'Sand 1' - -11.00 110.167 'Sand 2' + -6.00 22.836 'Peat' + -8.00 354.866 'Sand 1' + -10.00 95.608 'Sand 1' + -11.00 112.598 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3968,8 +4103,8 @@ CalculationStatus 0.00000 0.00000 0.00000 0.00000 0.00000 1 12 4 0.000 1 6 0.00000 0.00000 0.00000 0.00000 0.00000 2 12 4 0.000 1 6 -216.51182 -153.80159 -35.63244 25.69793 28.10340 3 3 0 1.000 0 0 - -359.50281 229.60843 -50.74999 53.98992 56.23458 3 10 12 1.000 0 0 - -270.97045 176.58153 -50.79430 40.04217 41.56552 3 11 13 1.000 0 0 + -301.28345 -209.81693 -37.85166 43.64196 46.40750 3 10 12 1.000 0 0 + -226.35121 -164.17386 -37.53731 30.11858 32.31375 3 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -3992,8 +4127,8 @@ AnchorName [DATA] 2 12 7 4 1.000 0.00000 0 1 0 6 '---' 3 3 7 0 1.000 32.12063 0 1 0 0 'anchor' - 3 10 7 12 1.000 55.70867 0 1 0 0 'anchor' - 3 11 7 13 1.000 37.57234 0 1 0 0 'anchor' + 3 10 7 12 1.000 45.06086 0 1 0 0 'anchor' + 3 11 7 13 1.000 29.82146 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -4005,19 +4140,40 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'anchor' 55.70867 +'anchor' 45.06086 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 45.06086 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-359.50281 -MaximumShearForce=229.60843 +MaximumMoment=-301.28345 +MaximumShearForce=-209.81693 MaximumDisplacement=-35.63244 -MaximumPercentageMobilisedMoment=53.98992 -MaximumPercentageMobilisedResistance=56.23458 +MaximumPercentageMobilisedMoment=43.64196 +MaximumPercentageMobilisedResistance=46.40750 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-301.28345 +MaximumShearForce=-209.81693 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=43.64196 +MaximumPercentageMobilisedResistance=46.40750 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shi index a91faff7..13089cc2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=1 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shd index 61e2fdfa..cf3db0c5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:08 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -20,7 +20,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 14 = number of items + 8 = number of items [SOIL] Clay SoilColor=7648893 @@ -71,251 +71,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Clay rep. SoilColor=5866717 SoilSoilType=2 @@ -414,55 +169,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat rep. SoilColor=7187949 SoilSoilType=2 @@ -962,33 +668,29 @@ Stage 1 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -0.40 0.00 0.00 Clay -0.4m à -1m - 2 -1.00 0.00 0.00 Clay -1m à -1.5m - 3 -1.50 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 2 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 3 passive 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m + 1 -6.00 0.00 0.00 Peat 2 -8.00 0.00 0.00 Sand 1 3 -10.00 0.00 20.00 Sand 1 4 -11.00 20.00 80.00 Sand 2 @@ -1031,7 +733,7 @@ Representative profile 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.00 4 1 GLright1 rep 0.00 Standard deviation 2 Distribution type @@ -1168,6 +870,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1177,6 +880,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1186,6 +890,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1209,7 +914,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1220,8 +925,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1232,25 +939,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1258,53 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1312,35 +1022,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1359,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1374,10 +1086,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1386,10 +1098,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1399,12 +1112,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1413,7 +1126,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1428,10 +1142,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1440,33 +1154,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1474,26 +1246,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1501,16 +1302,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1521,6 +1350,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1528,8 +1358,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1537,7 +1367,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1548,6 +1378,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1555,8 +1386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1564,7 +1395,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1575,6 +1406,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1582,8 +1414,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1703,28 +1535,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 - -7.20000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -1840,7 +1672,7 @@ Is favorable (0=false, 1=true) 720.00 : Water pressure left 720.00 : Water pressure right 2860.05 : Max effective resistance left - 6342.17 : Max effective resistance right + 6342.18 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left @@ -1863,150 +1695,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -17.04093 - 0.00000 0.00000 -16.89514 - 0.00000 0.00000 -16.74935 - 0.00000 0.00000 -16.60356 - 0.00000 0.00000 -16.45778 - 0.00000 0.00000 -16.31199 - 0.00000 0.00000 -16.31199 - 0.00000 0.00000 -16.16620 - 0.00000 0.00000 -16.02042 - 0.00000 0.00000 -15.87463 - 0.00000 0.00000 -15.72884 - 0.00000 0.00000 -15.58305 - 0.00020 -0.00472 -15.58305 - 0.00128 0.04184 -15.43726 - 0.01395 0.24981 -15.29147 - 0.05893 0.68855 -15.14568 - 0.15941 1.36005 -14.99992 - 0.33876 2.26598 -14.85420 - 0.33873 2.26585 -14.85420 - 0.60552 3.10678 -14.70854 - 0.96747 4.16924 -14.56302 - 1.44678 5.45387 -14.41776 - 2.06566 6.96101 -14.27288 - 2.84640 8.69078 -14.12850 - 2.84638 8.69100 -14.12850 - 3.88959 6.98936 -13.93711 - 4.71875 5.47993 -13.74741 - 5.35937 4.16091 -13.55965 - 5.83668 3.03001 -13.37414 - 6.17561 2.08454 -13.19114 - 6.17560 2.08511 -13.19114 - 6.36643 0.80535 -13.01088 - 6.39780 -0.30709 -12.83336 - 6.29183 -1.25534 -12.65853 - 6.07020 -2.04255 -12.48636 - 5.75417 -2.67189 -12.31680 - 5.75418 -2.67136 -12.31680 - 5.33132 -3.64767 -12.14978 - 4.78778 -4.48200 -11.98504 - 4.14230 -5.17709 -11.82233 - 3.41329 -5.73548 -11.66136 - 2.61881 -6.15955 -11.50187 - 2.61883 -6.15931 -11.50187 - 1.74727 -6.89351 -11.34354 - 0.78602 -7.50484 -11.18596 - -0.24863 -7.99487 -11.02870 - -1.34061 -8.36488 -10.87130 - -2.47398 -8.61586 -10.71333 - -2.47395 -8.61611 -10.71333 - -3.65787 -9.12387 -10.55433 - -4.90199 -9.51918 -10.39375 - -6.19132 -9.80203 -10.23105 - -7.51085 -9.97209 -10.06568 - -8.84550 -10.02870 -9.89708 - -8.84547 -10.02955 -9.89708 - -10.20094 -10.28394 -9.72469 - -11.58289 -10.42657 -9.54792 - -12.97631 -10.45570 -9.36617 - -14.36594 -10.36924 -9.17884 - -15.73620 -10.16475 -8.98534 - -15.73624 -10.16564 -8.98534 - -16.81463 -7.80068 -8.80536 - -17.60675 -5.39421 -8.61952 - -18.10755 -2.94549 -8.42764 - -18.31194 -0.45373 -8.22955 - -18.21469 2.08191 -8.02509 - -18.21470 2.08142 -8.02509 - -17.82005 4.50347 -7.81415 - -17.13205 6.97081 -7.59700 - -16.14521 9.48428 -7.37399 - -14.85395 12.04469 -7.14545 - -13.25258 14.65276 -6.91173 - -13.25259 14.65241 -6.91173 - -11.34351 17.17364 -6.67326 - -9.12897 19.74352 -6.43084 - -6.60310 22.36247 -6.18534 - -3.76000 25.03077 -5.93764 - -0.59374 27.74852 -5.68863 - -0.59375 27.74845 -5.68863 - 0.53398 28.63911 -5.60549 - 1.69745 29.53524 -5.52238 - 2.89687 30.43682 -5.43934 - 4.13247 31.34386 -5.35641 - 5.40446 32.25632 -5.27363 - 5.40429 32.25763 -5.27363 - 9.41265 27.92669 -4.99965 - 12.86699 23.94641 -4.72972 - 15.81366 20.31036 -4.46512 - 18.29803 17.01043 -4.20713 - 20.36427 14.03679 -3.95703 - 20.36417 14.04149 -3.95703 - 22.03575 11.08288 -3.71589 - 23.33286 8.42250 -3.48423 - 24.29442 6.04729 -3.26247 - 24.95754 3.94367 -3.05103 - 25.35751 2.09748 -2.85033 - 25.35749 2.10344 -2.85033 - 25.52274 0.41437 -2.66065 - 25.47807 -1.04778 -2.48195 - 25.25277 -2.29766 -2.31412 - 24.87415 -3.34981 -2.15708 - 24.36763 -4.21863 -2.01075 - 24.36787 -4.21446 -2.01075 - 23.91609 -4.80589 -1.90792 - 23.40965 -5.30859 -1.81087 - 22.85714 -5.72829 -1.71947 - 22.26657 -6.07062 -1.63359 - 21.64541 -6.34104 -1.55309 - 21.64623 -6.34758 -1.55309 - 20.98288 -6.90921 -1.47784 - 20.26754 -7.37606 -1.40765 - 19.51196 -7.71409 -1.34236 - 18.72887 -7.92796 -1.28178 - 17.93020 -8.02695 -1.22572 - 17.92971 -8.02476 -1.22572 - 16.93898 -8.46300 -1.16417 - 15.90415 -8.76215 -1.10852 - 14.84108 -8.93596 -1.05839 - 13.76402 -8.99728 -1.01343 - 12.68575 -8.95808 -0.97325 - 12.68583 -8.95366 -0.97325 - 11.61582 -8.86574 -0.93749 - 10.56120 -8.69894 -0.90577 - 9.53086 -8.46257 -0.87774 - 8.53263 -8.16506 -0.85303 - 7.57339 -7.81399 -0.83130 - 7.57345 -7.81133 -0.83130 - 6.65757 -7.44611 -0.81218 - 5.78801 -7.04030 -0.79538 - 4.96932 -6.59913 -0.78061 - 4.20545 -6.12716 -0.76758 - 3.49988 -5.62825 -0.75602 - 3.49992 -5.62699 -0.75602 - 2.85427 -5.13027 -0.74565 - 2.26949 -4.61268 -0.73627 - 1.74797 -4.07639 -0.72771 - 1.29184 -3.52313 -0.71977 - 0.90305 -2.95421 -0.71228 - 0.90307 -2.95386 -0.71228 - 0.58227 -2.39043 -0.70507 - 0.32993 -1.81300 -0.69807 - 0.14769 -1.22198 -0.69120 - 0.03719 -0.61761 -0.68441 - 0.00000 -0.00002 -0.67762 + 0.00000 0.00000 -17.04077 + 0.00000 0.00000 -16.89500 + 0.00000 0.00000 -16.74923 + 0.00000 0.00000 -16.60346 + 0.00000 0.00000 -16.45769 + 0.00000 0.00000 -16.31192 + 0.00000 0.00000 -16.31192 + 0.00000 0.00000 -16.16614 + 0.00000 0.00000 -16.02037 + 0.00000 0.00000 -15.87460 + 0.00000 0.00000 -15.72883 + 0.00000 0.00000 -15.58306 + 0.00020 -0.00472 -15.58306 + 0.00128 0.04184 -15.43728 + 0.01395 0.24981 -15.29150 + 0.05893 0.68853 -15.14573 + 0.15941 1.36002 -14.99999 + 0.33875 2.26593 -14.85429 + 0.33872 2.26581 -14.85429 + 0.60551 3.10672 -14.70864 + 0.96745 4.16916 -14.56314 + 1.44675 5.45376 -14.41789 + 2.06562 6.96087 -14.27303 + 2.84634 8.69061 -14.12866 + 2.84632 8.69083 -14.12866 + 3.88950 6.98910 -13.93730 + 4.71862 5.47957 -13.74761 + 5.35918 4.16043 -13.55988 + 5.83643 3.02940 -13.37439 + 6.17526 2.08379 -13.19141 + 6.17526 2.08436 -13.19141 + 6.36597 0.80446 -13.01117 + 6.39721 -0.30814 -12.83367 + 6.29109 -1.25656 -12.65886 + 6.06929 -2.04396 -12.48671 + 5.75305 -2.67349 -12.31717 + 5.75306 -2.67296 -12.31717 + 5.32997 -3.64947 -12.15017 + 4.78618 -4.48402 -11.98545 + 4.14042 -5.17933 -11.82276 + 3.41110 -5.73796 -11.66181 + 2.61627 -6.16226 -11.50233 + 2.61629 -6.16203 -11.50233 + 1.74435 -6.89647 -11.34402 + 0.78269 -7.50807 -11.18645 + -0.25241 -7.99836 -11.02920 + -1.34487 -8.36864 -10.87181 + -2.47876 -8.61990 -10.71385 + -2.47874 -8.62014 -10.71385 + -3.66321 -9.12819 -10.55486 + -4.90792 -9.52377 -10.39428 + -6.19788 -9.80691 -10.23159 + -7.51808 -9.97725 -10.06621 + -8.85344 -10.03415 -9.89761 + -8.85341 -10.03500 -9.89761 + -10.20963 -10.28967 -9.72522 + -11.59236 -10.43257 -9.54843 + -12.98660 -10.46197 -9.36666 + -14.37708 -10.37577 -9.17931 + -15.74823 -10.17153 -8.98579 + -15.74828 -10.17232 -8.98579 + -16.66677 -8.19259 -8.83620 + -17.38584 -6.18410 -8.68259 + -17.90262 -4.14643 -8.52481 + -18.21414 -2.07912 -8.36276 + -18.31744 0.01830 -8.19629 + -18.31744 0.01801 -8.19629 + -18.21513 2.03324 -8.02534 + -17.90976 4.07938 -7.84998 + -17.39820 6.15693 -7.67034 + -16.67731 8.26638 -7.48653 + -15.74385 10.40820 -7.29870 + -15.74385 10.40795 -7.29870 + -14.59955 12.48364 -7.10699 + -13.24602 14.59242 -6.91175 + -11.67995 16.73467 -6.71335 + -9.89796 18.91072 -6.51218 + -7.89667 21.12082 -6.30861 + -7.89667 21.12070 -6.30861 + -5.67700 23.27852 -6.10307 + -3.23983 25.47061 -5.89615 + -0.58173 27.69700 -5.68850 + 2.30071 29.95764 -5.48075 + 5.41093 32.25237 -5.27356 + 5.41077 32.25369 -5.27356 + 9.41861 27.92286 -4.99956 + 12.87245 23.94270 -4.72962 + 15.81863 20.30680 -4.46501 + 18.30253 17.00701 -4.20701 + 20.36833 14.03353 -3.95691 + 20.36823 14.03823 -3.95691 + 22.03938 11.07979 -3.71577 + 23.33610 8.41957 -3.48411 + 24.29727 6.04453 -3.26234 + 24.96004 3.94108 -3.05090 + 25.35967 2.09505 -2.85020 + 25.35965 2.10101 -2.85020 + 25.52459 0.41211 -2.66053 + 25.47963 -1.04988 -2.48183 + 25.25406 -2.29961 -2.31401 + 24.87519 -3.35161 -2.15697 + 24.36844 -4.22029 -2.01064 + 24.36868 -4.21612 -2.01064 + 23.91674 -4.80745 -1.90782 + 23.41015 -5.31005 -1.81078 + 22.85750 -5.72966 -1.71938 + 22.26680 -6.07189 -1.63350 + 21.64551 -6.34223 -1.55301 + 21.64633 -6.34877 -1.55301 + 20.98287 -6.91033 -1.47776 + 20.26743 -7.37706 -1.40758 + 19.51175 -7.71495 -1.34229 + 18.72858 -7.92869 -1.28171 + 17.92984 -8.02755 -1.22566 + 17.92935 -8.02536 -1.22566 + 16.93856 -8.46347 -1.16412 + 15.90368 -8.76250 -1.10847 + 14.84057 -8.93619 -1.05835 + 13.76350 -8.99741 -1.01339 + 12.68522 -8.95812 -0.97322 + 12.68529 -8.95370 -0.97322 + 11.61529 -8.86570 -0.93746 + 10.56068 -8.69883 -0.90575 + 9.53035 -8.46240 -0.87772 + 8.53215 -8.16484 -0.85302 + 7.57293 -7.81374 -0.83128 + 7.57300 -7.81108 -0.83128 + 6.65715 -7.44582 -0.81217 + 5.78762 -7.03999 -0.79537 + 4.96897 -6.59880 -0.78060 + 4.20514 -6.12682 -0.76758 + 3.49961 -5.62791 -0.75602 + 3.49966 -5.62665 -0.75602 + 2.85404 -5.12994 -0.74565 + 2.26930 -4.61236 -0.73628 + 1.74782 -4.07608 -0.72771 + 1.29172 -3.52285 -0.71978 + 0.90296 -2.95396 -0.71229 + 0.90299 -2.95361 -0.71229 + 0.58222 -2.39022 -0.70509 + 0.32990 -1.81284 -0.69809 + 0.14768 -1.22186 -0.69122 + 0.03718 -0.61755 -0.68443 + 0.00000 -0.00002 -0.67765 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2092,9 +1924,9 @@ Q max -4.66667 71.37700 42.21500 1163.95517 39.30704 -5.33333 70.71700 41.53400 1322.65438 55.50489 -6.00000 70.16300 41.00200 1488.10669 72.90330 - -6.60000 69.99800 40.66200 1657.62646 92.57002 - -7.20000 69.64800 40.37700 1845.51127 112.39851 - -7.80000 69.63300 40.13400 2039.77189 132.38050 + -6.50000 70.02300 40.71500 1629.28213 89.28073 + -7.00000 69.65300 40.46700 1781.07448 105.77161 + -7.50000 69.64000 40.25100 1942.46340 122.37073 -8.00000 69.62900 40.06100 2104.84222 139.07419 -8.66667 69.82000 39.27800 2376.60614 160.91945 -9.33333 69.77300 38.95800 2703.42310 182.84828 @@ -2132,10 +1964,10 @@ Lambda passive -4.33333 63.09132 246.65174 22.41597 0.78835 0.35529 3.90944 -5.00000 67.95631 238.04881 24.29676 0.74575 0.35754 3.50297 -5.66667 72.58252 248.17846 26.09762 0.71265 0.35956 3.41926 - -6.30000 75.29944 282.53296 32.77786 0.64100 0.43530 3.75213 - -6.90000 76.16569 313.14135 33.04749 0.62360 0.43389 4.11132 - -7.50000 76.93078 323.76770 33.30331 0.60890 0.43290 4.20856 - -7.90000 77.39439 325.35165 33.46847 0.60041 0.43244 4.20381 + -6.25000 75.22198 282.35089 32.75486 0.64259 0.43544 3.75357 + -6.75000 75.95945 303.58470 32.98175 0.62768 0.43420 3.99667 + -7.25000 76.62295 322.77783 33.19825 0.61472 0.43327 4.21255 + -7.75000 77.22446 324.75765 33.40692 0.60348 0.43260 4.20537 -8.33333 80.52806 407.64588 32.76788 0.50605 0.40691 5.06216 -9.00000 86.52027 490.22543 32.89325 0.49495 0.38018 5.66602 -9.66667 92.45463 504.91333 34.48975 0.48673 0.37305 5.46120 @@ -2175,77 +2007,77 @@ Status character 0.00000 0.00000 130.55106 28.22709 1 0 A 0.00000 0.00000 139.69712 30.20460 1 0 A 0.00000 0.00000 166.81202 29.82552 1 0 A - 0.93132 0.00000 177.88782 31.80584 110 0 - - 3.22810 0.00000 189.10266 33.81103 110 0 - - 5.54657 0.00000 200.43902 35.83794 110 0 - - 7.88340 0.00000 211.87830 37.88325 110 0 - - 10.23520 0.00000 223.40175 39.94361 110 0 - - 7.30364 0.00000 282.51693 37.01204 110 0 - - 9.51503 0.00000 297.17299 38.93211 110 0 - - 11.73420 0.00000 311.89058 40.86023 110 0 - - 13.95826 0.00000 326.64952 42.79378 110 0 - - 16.18459 0.00000 341.43156 44.73035 110 0 - - 18.41082 0.00000 356.22048 46.66781 110 0 - - 14.77094 0.00000 291.84154 43.02793 110 0 - - 16.34894 1.33333 299.94838 44.22317 110 0 - - 17.91863 2.66667 308.02155 45.41345 110 0 - - 19.47671 4.00000 316.04249 46.59602 110 0 - - 21.02049 5.33333 323.99677 47.76877 110 0 - - 22.54779 6.66667 331.87347 48.93008 110 0 - - 18.71739 6.66667 299.31596 45.09968 110 0 - - 20.13670 8.00000 306.34284 46.15846 110 0 - - 21.53817 9.33333 313.28770 47.20488 110 0 - - 22.92142 10.66667 320.14743 48.23848 110 0 - - 24.28629 12.00000 326.92038 49.25900 110 0 - - 25.63277 13.33333 333.60607 50.26637 110 0 - - 21.90666 13.33333 311.04622 46.54026 110 0 - - 23.16129 14.66667 317.19881 47.46084 110 0 - - 24.39937 16.00000 323.27145 48.36946 110 0 - - 25.62168 17.33333 329.26565 49.26634 110 0 - - 26.82904 18.66667 335.18330 50.15177 110 0 - - 28.02233 20.00000 341.02654 51.02606 110 0 - - 24.73292 20.00000 236.72666 47.73666 110 0 - - 25.85742 21.33333 240.73275 48.54450 110 0 - - 26.97066 22.66667 244.69047 49.34259 110 0 - - 28.07388 24.00000 248.60157 50.13127 110 0 - - 29.16831 25.33333 252.46779 50.91091 110 0 - - 30.25518 26.66667 256.29088 51.68185 110 0 - - 27.46249 26.66667 229.64385 48.88916 110 0 - - 28.50188 28.00000 233.03234 49.61054 110 0 - - 29.53684 29.33333 236.38524 50.32434 110 0 - - 30.56878 30.66667 239.70404 51.03088 110 0 - - 31.59912 32.00000 242.99019 51.73048 110 0 - - 32.62925 33.33333 246.24507 52.42341 110 0 - - 30.30270 33.33333 240.36063 50.09686 110 0 - - 31.30357 34.66667 243.50855 50.75296 110 0 - - 32.30740 36.00000 246.62854 51.40324 110 0 - - 33.31563 37.33333 249.72185 52.04796 110 0 - - 34.32969 38.66667 252.78964 52.68736 110 0 - - 35.35101 40.00000 255.83306 53.32168 110 0 - - 40.77224 40.00000 280.73852 47.96050 110 0 - - 41.04137 41.20000 281.47109 48.08565 110 0 - - 41.31180 42.40000 282.18380 48.20741 110 0 - - 41.58380 43.60000 282.87745 48.32591 110 0 - - 41.85765 44.80000 283.55282 48.44129 110 0 - - 42.13360 46.00000 284.21066 48.55367 110 0 - - 40.81546 46.00000 311.41826 47.23553 110 0 - - 41.09075 47.20000 312.12065 47.34207 110 0 - - 41.36833 48.40000 312.80538 47.44593 110 0 - - 41.64803 49.60000 313.47318 47.54722 110 0 - - 41.92969 50.80000 314.12474 47.64605 110 0 - - 42.21313 52.00000 314.76074 47.74251 110 0 - - 41.08772 52.00000 322.20547 46.61711 110 0 - - 41.37048 53.20000 322.84125 46.70909 110 0 - - 41.65429 54.40000 323.46241 46.79896 110 0 - - 41.93854 55.60000 324.06957 46.88681 110 0 - - 42.22260 56.80000 324.66331 46.97271 110 0 - - 42.50585 58.00000 325.24420 47.05675 110 0 - - 41.84989 58.00000 324.87752 46.40079 110 0 - - 41.94363 58.40000 325.06818 46.42802 110 0 - - 42.03715 58.80000 325.25749 46.45506 110 0 - - 42.13044 59.20000 325.44547 46.48191 110 0 - - 42.22345 59.60000 325.63215 46.50857 110 0 - - 42.31614 60.00000 325.81754 46.53505 110 0 - + 0.93128 0.00000 177.88782 31.80584 110 0 - + 3.22802 0.00000 189.10266 33.81103 110 0 - + 5.54647 0.00000 200.43902 35.83794 110 0 - + 7.88326 0.00000 211.87830 37.88325 110 0 - + 10.23503 0.00000 223.40175 39.94361 110 0 - + 7.30347 0.00000 282.51693 37.01204 110 0 - + 9.51483 0.00000 297.17299 38.93211 110 0 - + 11.73396 0.00000 311.89058 40.86023 110 0 - + 13.95799 0.00000 326.64952 42.79378 110 0 - + 16.18429 0.00000 341.43156 44.73035 110 0 - + 18.41050 0.00000 356.22048 46.66781 110 0 - + 14.77061 0.00000 291.84154 43.02793 110 0 - + 16.34857 1.33333 299.94838 44.22317 110 0 - + 17.91822 2.66667 308.02155 45.41345 110 0 - + 19.47626 4.00000 316.04249 46.59602 110 0 - + 21.01999 5.33333 323.99677 47.76877 110 0 - + 22.54725 6.66667 331.87347 48.93008 110 0 - + 18.71685 6.66667 299.31596 45.09968 110 0 - + 20.13612 8.00000 306.34284 46.15846 110 0 - + 21.53755 9.33333 313.28770 47.20488 110 0 - + 22.92076 10.66667 320.14743 48.23848 110 0 - + 24.28558 12.00000 326.92038 49.25900 110 0 - + 25.63203 13.33333 333.60607 50.26637 110 0 - + 21.90592 13.33333 311.04622 46.54026 110 0 - + 23.16051 14.66667 317.19881 47.46084 110 0 - + 24.39855 16.00000 323.27145 48.36946 110 0 - + 25.62083 17.33333 329.26565 49.26634 110 0 - + 26.82816 18.66667 335.18330 50.15177 110 0 - + 28.02141 20.00000 341.02654 51.02606 110 0 - + 24.73200 20.00000 236.72666 47.73666 110 0 - + 25.85647 21.33333 240.73275 48.54450 110 0 - + 26.96968 22.66667 244.69047 49.34259 110 0 - + 28.07288 24.00000 248.60157 50.13127 110 0 - + 29.16728 25.33333 252.46779 50.91091 110 0 - + 30.25414 26.66667 256.29088 51.68185 110 0 - + 27.46145 26.66667 229.64385 48.88916 110 0 - + 28.50082 28.00000 233.03234 49.61054 110 0 - + 29.53577 29.33333 236.38524 50.32434 110 0 - + 30.56771 30.66667 239.70404 51.03088 110 0 - + 31.59805 32.00000 242.99019 51.73048 110 0 - + 32.62819 33.33333 246.24507 52.42341 110 0 - + 30.30164 33.33333 240.36063 50.09686 110 0 - + 31.30253 34.66667 243.50855 50.75296 110 0 - + 32.30638 36.00000 246.62854 51.40324 110 0 - + 33.31464 37.33333 249.72185 52.04796 110 0 - + 34.32874 38.66667 252.78964 52.68736 110 0 - + 35.35011 40.00000 255.83306 53.32168 110 0 - + 40.89047 40.00000 280.84652 48.07910 110 0 - + 41.11492 41.00000 281.45863 48.18389 110 0 - + 41.34023 42.00000 282.05685 48.28630 110 0 - + 41.56656 43.00000 282.64164 48.38641 110 0 - + 41.79410 44.00000 283.21347 48.48431 110 0 - + 42.02302 45.00000 283.77278 48.58006 110 0 - + 40.89614 45.00000 302.15125 47.45318 110 0 - + 41.12441 46.00000 302.73390 47.54468 110 0 - + 41.35425 47.00000 303.30412 47.63424 110 0 - + 41.58563 48.00000 303.86233 47.72190 110 0 - + 41.81852 49.00000 304.40895 47.80775 110 0 - + 42.05288 50.00000 304.94437 47.89184 110 0 - + 41.06409 50.00000 321.41593 46.90305 110 0 - + 41.29815 51.00000 321.96889 46.98374 110 0 - + 41.53343 52.00000 322.51085 47.06282 110 0 - + 41.76968 53.00000 323.04221 47.14036 110 0 - + 42.00666 54.00000 323.56333 47.21641 110 0 - + 42.24412 55.00000 324.07457 47.29101 110 0 - + 41.37934 55.00000 323.52261 46.42623 110 0 - + 41.61565 56.00000 324.02346 46.49811 110 0 - + 41.85174 57.00000 324.51515 46.56866 110 0 - + 42.08715 58.00000 324.99798 46.63795 110 0 - + 42.32141 59.00000 325.47228 46.70601 110 0 - + 42.55405 60.00000 325.93835 46.77290 110 0 - 31.53785 60.00000 392.34377 39.22170 1 0 A 32.03083 61.33333 398.47664 39.83479 1 0 A 32.52251 62.66667 404.59335 40.44626 1 0 A @@ -2272,40 +2104,40 @@ Status character 36.69334 85.00000 530.12048 48.04179 1 0 A 33.13127 85.00000 530.88491 47.68237 1 0 A 33.42310 86.00000 535.56102 48.10236 1 0 A - 34.44551 87.00000 540.23354 48.52203 110 0 - - 35.51779 88.00000 544.90265 48.94140 110 0 - - 36.54269 89.00000 549.56848 49.36047 110 0 - - 37.52202 90.00000 554.23118 49.77926 110 0 - - 29.09992 90.00000 775.12520 41.35717 110 0 - - 30.13265 91.20000 782.94497 41.77439 110 0 - - 31.10612 92.40000 790.75906 42.19132 110 0 - - 32.02403 93.60000 798.56776 42.60795 110 0 - - 32.89006 94.80000 806.37138 43.02432 110 0 - - 33.70791 96.00000 814.17021 43.44043 110 0 - - 33.37036 96.00000 867.47253 43.10288 110 0 - - 34.14059 97.20000 875.77712 43.51552 110 0 - - 34.87018 98.40000 884.07719 43.92793 110 0 - - 35.56272 99.60000 892.37300 44.34013 110 0 - - 36.22179 100.80000 900.66481 44.75213 110 0 - - 36.85097 102.00000 908.95288 45.16395 110 0 - - 36.57995 102.00000 917.30644 44.89293 110 0 - - 37.18030 103.20000 925.66715 45.30210 110 0 - - 37.75734 104.40000 934.02455 45.71111 110 0 - - 38.31391 105.60000 942.37886 46.11997 110 0 - - 38.85288 106.80000 950.73031 46.52869 110 0 - + 34.44623 87.00000 540.23354 48.52203 110 0 - + 35.51848 88.00000 544.90265 48.94140 110 0 - + 36.54333 89.00000 549.56848 49.36047 110 0 - + 37.52261 90.00000 554.23118 49.77926 110 0 - + 29.10052 90.00000 775.12520 41.35717 110 0 - + 30.13319 91.20000 782.94497 41.77439 110 0 - + 31.10661 92.40000 790.75906 42.19132 110 0 - + 32.02447 93.60000 798.56776 42.60795 110 0 - + 32.89046 94.80000 806.37138 43.02432 110 0 - + 33.70826 96.00000 814.17021 43.44043 110 0 - + 33.37071 96.00000 867.47253 43.10288 110 0 - + 34.14090 97.20000 875.77712 43.51552 110 0 - + 34.87045 98.40000 884.07719 43.92793 110 0 - + 35.56295 99.60000 892.37300 44.34013 110 0 - + 36.22198 100.80000 900.66481 44.75213 110 0 - + 36.85112 102.00000 908.95288 45.16395 110 0 - + 36.58010 102.00000 917.30644 44.89293 110 0 - + 37.18042 103.20000 925.66715 45.30210 110 0 - + 37.75742 104.40000 934.02455 45.71111 110 0 - + 38.31396 105.60000 942.37886 46.11997 110 0 - + 38.85290 106.80000 950.73031 46.52869 110 0 - 39.37708 108.00000 959.07910 46.93728 110 0 - - 39.16195 108.00000 957.86423 46.72214 110 0 - - 39.67223 109.20000 966.19998 47.12874 110 0 - - 40.17249 110.40000 974.53345 47.53523 110 0 - - 40.66455 111.60000 982.86484 47.94161 110 0 - - 41.15022 112.80000 991.19429 48.34790 110 0 - - 41.63133 114.00000 999.52200 48.75410 110 0 - - 41.46315 114.00000 998.97497 48.58592 110 0 - - 41.93992 115.20000 1007.29652 48.99064 110 0 - - 42.41463 116.40000 1015.61662 49.39530 110 0 - - 42.88789 117.60000 1023.93543 49.79989 110 0 - - 43.36036 118.80000 1032.25307 50.20442 110 0 - - 43.83267 120.00000 1040.56969 50.60891 110 0 - + 39.16194 108.00000 957.86423 46.72214 110 0 - + 39.67220 109.20000 966.19998 47.12874 110 0 - + 40.17243 110.40000 974.53345 47.53523 110 0 - + 40.66446 111.60000 982.86484 47.94161 110 0 - + 41.15011 112.80000 991.19429 48.34790 110 0 - + 41.63119 114.00000 999.52200 48.75410 110 0 - + 41.46300 114.00000 998.97497 48.58592 110 0 - + 41.93975 115.20000 1007.29652 48.99064 110 0 - + 42.41443 116.40000 1015.61662 49.39530 110 0 - + 42.88767 117.60000 1023.93543 49.79989 110 0 - + 43.36012 118.80000 1032.25307 50.20442 110 0 - + 43.83240 120.00000 1040.56969 50.60891 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2318,10 +2150,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 112.877 'Clay rep.' - -6.00 83.270 'Peat rep.' + 0.00 112.873 'Clay rep.' + -6.00 83.273 'Peat rep.' -8.00 102.233 'Sand 1 rep.' - -11.00 112.662 'Sand 2 rep.' + -11.00 112.663 'Sand 2 rep.' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2423,126 +2255,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 28.25699 0.00000 43.24256 0.00000 110 65 - - 28.38753 1.33333 45.63605 0.51331 110 62 - - 28.52142 2.66667 48.02955 1.02661 110 59 - - 28.65923 4.00000 50.42304 1.53992 110 57 - - 28.80150 5.33333 52.81654 2.05322 110 55 - - 28.94881 6.66667 55.21003 2.56653 110 52 - - 28.94881 6.66667 55.21003 2.56653 110 52 - - 29.10159 8.00000 57.60353 3.07983 110 51 - - 29.25985 9.33333 59.99703 3.59314 110 49 - - 29.42350 10.66667 62.39052 4.10645 110 47 - - 29.59246 12.00000 64.78402 4.61975 110 46 - - 29.76666 13.33333 67.17751 5.13306 110 44 - - 29.76666 13.33333 67.17751 5.13306 110 44 - - 29.94592 14.66667 69.57101 5.64636 110 43 - - 30.12976 16.00000 71.96451 6.15967 110 42 - - 30.31764 17.33333 74.35800 6.67297 110 41 - - 30.50901 18.66667 76.75150 7.18628 110 40 - - 30.70332 20.00000 79.14499 7.69958 110 39 - - 30.70332 20.00000 79.14499 7.69958 110 39 - - 30.89997 21.33333 81.53849 8.21289 110 38 - - 31.09813 22.66667 83.93198 8.72620 110 37 - - 31.29690 24.00000 86.32548 9.23950 110 36 - - 31.49541 25.33333 88.71898 9.75281 110 36 - - 31.69278 26.66667 91.11247 10.26611 110 35 - - 31.69278 26.66667 91.11247 10.26611 110 35 - - 31.88808 28.00000 93.50597 10.77942 110 34 - - 32.08023 29.33333 95.89946 11.29272 110 33 - - 32.26813 30.66667 98.29296 11.80603 110 33 - - 32.45069 32.00000 100.68646 12.31934 110 32 - - 32.62680 33.33333 103.07995 12.83264 110 32 - - 32.62680 33.33333 103.07995 12.83264 110 32 - - 32.79534 34.66667 105.47345 13.34595 110 31 - - 32.95509 36.00000 107.86694 13.85925 110 31 - - 33.10489 37.33333 110.26044 14.37256 110 30 - - 33.24354 38.66667 112.65394 14.88586 110 30 - - 33.36984 40.00000 115.04743 15.39917 110 29 - - 21.23563 40.00000 99.41156 14.04736 110 21 - - 21.16188 41.20000 99.81674 14.11760 110 21 - - 21.08345 42.40000 100.22192 14.18784 110 21 - - 21.00018 43.60000 100.62710 14.25807 110 21 - - 20.91195 44.80000 101.03228 14.32831 110 21 - - 20.81862 46.00000 101.43747 14.39855 110 21 - - 20.81862 46.00000 101.43747 14.39855 110 21 - - 20.72010 47.20000 101.84265 14.46878 110 20 - - 20.61662 48.40000 102.24783 14.53902 110 20 - - 20.50845 49.60000 102.65301 14.60926 110 20 - - 20.39585 50.80000 103.05819 14.67949 110 20 - - 20.27911 52.00000 103.46337 14.74973 110 20 - - 20.27911 52.00000 103.46337 14.74973 110 20 - - 20.15858 53.20000 103.86855 14.81997 110 19 - - 20.03488 54.40000 104.27374 14.89020 110 19 - - 19.90871 55.60000 104.67892 14.96044 110 19 - - 19.78079 56.80000 105.08410 15.03068 110 19 - - 19.65181 58.00000 105.48928 15.10091 110 19 - - 19.65181 58.00000 105.48928 15.10091 110 19 - - 19.60872 58.40000 105.62434 15.12433 110 19 - - 19.56564 58.80000 105.75940 15.14774 110 19 - - 19.52262 59.20000 105.89446 15.17115 110 18 - - 19.47969 59.60000 106.02952 15.19456 110 18 - - 19.43688 60.00000 106.16458 15.21798 110 18 - - 65.34535 60.00000 186.05846 12.60901 110 35 - - 63.18744 61.33333 194.64578 13.19096 110 32 - - 61.07009 62.66667 203.23309 13.77292 110 30 - - 59.00605 64.00000 211.82040 14.35487 110 28 - - 57.00812 65.33333 220.40772 14.93683 110 26 - - 55.08907 66.66667 228.99503 15.51878 110 24 - - 55.08907 66.66667 228.99503 15.51878 110 24 - - 53.25967 68.00000 237.58235 16.10074 110 22 - - 51.52503 69.33333 246.16966 16.68269 110 21 - - 49.88935 70.66667 254.75697 17.26464 110 20 - - 48.35688 72.00000 263.34429 17.84660 110 18 - - 46.93182 73.33333 271.93160 18.42855 110 17 - - 46.93182 73.33333 271.93160 18.42855 110 17 - - 45.61703 74.66667 280.51891 19.01051 110 16 - - 44.41193 76.00000 289.10623 19.59246 110 15 - - 43.31562 77.33333 297.69354 20.17442 110 15 - - 42.32721 78.66667 306.28086 20.75637 110 14 - - 41.44579 80.00000 314.86817 21.33832 110 13 - - 41.44579 80.00000 314.86817 21.33832 110 13 - - 40.85397 81.00000 321.30865 21.77479 110 13 - - 40.31996 82.00000 327.74914 22.21126 110 12 - - 39.84244 83.00000 334.18963 22.64772 110 12 - - 39.42008 84.00000 340.63011 23.08419 110 12 - - 39.05156 85.00000 347.07060 23.52065 110 11 - - 39.05156 85.00000 347.07060 23.52065 110 11 - - 38.73548 86.00000 353.51108 23.95712 110 11 - - 38.47011 87.00000 359.95157 24.39358 110 11 - - 38.25365 88.00000 366.39205 24.83005 110 10 - - 38.08429 89.00000 372.83254 25.26652 110 10 - - 37.96022 90.00000 379.27302 25.70298 110 10 - - 33.36104 90.00000 395.81103 21.10380 110 8 - - 33.17559 91.20000 403.87661 21.53384 110 8 - - 33.04908 92.40000 411.94219 21.96388 110 8 - - 32.97785 93.60000 420.00777 22.39392 110 8 - - 32.95822 94.80000 428.07336 22.82396 110 8 - - 32.98653 96.00000 436.13894 23.25400 110 8 - - 32.98653 96.00000 436.13894 23.25400 110 8 - - 33.05897 97.20000 444.20452 23.68404 110 7 - - 33.17183 98.40000 452.27011 24.11408 110 7 - - 33.32153 99.60000 460.33569 24.54412 110 7 - - 33.50451 100.80000 468.40127 24.97416 110 7 - - 33.71718 102.00000 476.46686 25.40420 110 7 - - 33.71718 102.00000 476.46686 25.40420 110 7 - - 33.95604 103.20000 484.53244 25.83424 110 7 - - 34.21806 104.40000 492.59802 26.26428 110 7 - - 34.50038 105.60000 500.66361 26.69432 110 7 - - 34.80018 106.80000 508.72919 27.12436 110 7 - - 35.11460 108.00000 516.79477 27.55440 110 7 - - 35.11460 108.00000 516.79477 27.55440 110 7 - - 35.44095 109.20000 524.86036 27.98444 110 7 - - 35.77721 110.40000 532.92594 28.41448 110 7 - - 36.12158 111.60000 540.99152 28.84452 110 7 - - 36.47223 112.80000 549.05711 29.27456 110 7 - - 36.82737 114.00000 557.12269 29.70460 110 7 - - 36.82737 114.00000 557.12269 29.70460 110 7 - - 37.18536 115.20000 565.18827 30.13464 110 7 - - 37.54535 116.40000 573.25385 30.56468 110 7 - - 37.90671 117.60000 581.31944 30.99472 110 7 - - 38.26882 118.80000 589.38502 31.42476 110 6 - - 38.63103 120.00000 597.45060 31.85480 110 6 - + 28.25732 0.00000 43.24256 0.00000 110 65 - + 28.38790 1.33333 45.63605 0.51331 110 62 - + 28.52184 2.66667 48.02955 1.02661 110 59 - + 28.65968 4.00000 50.42304 1.53992 110 57 - + 28.80200 5.33333 52.81654 2.05322 110 55 - + 28.94935 6.66667 55.21003 2.56653 110 52 - + 28.94935 6.66667 55.21003 2.56653 110 52 - + 29.10218 8.00000 57.60353 3.07983 110 51 - + 29.26047 9.33333 59.99703 3.59314 110 49 - + 29.42416 10.66667 62.39052 4.10645 110 47 - + 29.59317 12.00000 64.78402 4.61975 110 46 - + 29.76740 13.33333 67.17751 5.13306 110 44 - + 29.76740 13.33333 67.17751 5.13306 110 44 - + 29.94670 14.66667 69.57101 5.64636 110 43 - + 30.13057 16.00000 71.96451 6.15967 110 42 - + 30.31849 17.33333 74.35800 6.67297 110 41 - + 30.50989 18.66667 76.75150 7.18628 110 40 - + 30.70424 20.00000 79.14499 7.69958 110 39 - + 30.70424 20.00000 79.14499 7.69958 110 39 - + 30.90092 21.33333 81.53849 8.21289 110 38 - + 31.09910 22.66667 83.93198 8.72620 110 37 - + 31.29790 24.00000 86.32548 9.23950 110 36 - + 31.49643 25.33333 88.71898 9.75281 110 36 - + 31.69382 26.66667 91.11247 10.26611 110 35 - + 31.69382 26.66667 91.11247 10.26611 110 35 - + 31.88913 28.00000 93.50597 10.77942 110 34 - + 32.08129 29.33333 95.89946 11.29272 110 33 - + 32.26920 30.66667 98.29296 11.80603 110 33 - + 32.45176 32.00000 100.68646 12.31934 110 32 - + 32.62786 33.33333 103.07995 12.83264 110 32 - + 32.62786 33.33333 103.07995 12.83264 110 32 - + 32.79638 34.66667 105.47345 13.34595 110 31 - + 32.95612 36.00000 107.86694 13.85925 110 31 - + 33.10588 37.33333 110.26044 14.37256 110 30 - + 33.24449 38.66667 112.65394 14.88586 110 30 - + 33.37074 40.00000 115.04743 15.39917 110 29 - + 21.23599 40.00000 99.41156 14.04736 110 21 - + 21.17486 41.00000 99.74921 14.10589 110 21 - + 21.11049 42.00000 100.08686 14.16442 110 21 - + 21.04280 43.00000 100.42451 14.22295 110 21 - + 20.97169 44.00000 100.76216 14.28148 110 21 - + 20.89705 45.00000 101.09981 14.34002 110 21 - + 20.89705 45.00000 101.09981 14.34002 110 21 - + 20.81882 46.00000 101.43747 14.39855 110 21 - + 20.73706 47.00000 101.77512 14.45708 110 20 - + 20.65188 48.00000 102.11277 14.51561 110 20 - + 20.56337 49.00000 102.45042 14.57414 110 20 - + 20.47163 50.00000 102.78807 14.63267 110 20 - + 20.47163 50.00000 102.78807 14.63267 110 20 - + 20.37679 51.00000 103.12572 14.69120 110 20 - + 20.27913 52.00000 103.46337 14.74973 110 20 - + 20.17894 53.00000 103.80102 14.80826 110 19 - + 20.07654 54.00000 104.13867 14.86679 110 19 - + 19.97221 55.00000 104.47633 14.92532 110 19 - + 19.97221 55.00000 104.47633 14.92532 110 19 - + 19.86631 56.00000 104.81398 14.98385 110 19 - + 19.75931 57.00000 105.15163 15.04238 110 19 - + 19.65171 58.00000 105.48928 15.10091 110 19 - + 19.54405 59.00000 105.82693 15.15945 110 18 - + 19.43682 60.00000 106.16458 15.21798 110 18 - + 65.34462 60.00000 186.05846 12.60901 110 35 - + 63.18657 61.33333 194.64578 13.19096 110 32 - + 61.06910 62.66667 203.23309 13.77292 110 30 - + 59.00497 64.00000 211.82040 14.35487 110 28 - + 57.00697 65.33333 220.40772 14.93683 110 26 - + 55.08786 66.66667 228.99503 15.51878 110 24 - + 55.08786 66.66667 228.99503 15.51878 110 24 - + 53.25843 68.00000 237.58235 16.10074 110 22 - + 51.52377 69.33333 246.16966 16.68269 110 21 - + 49.88809 70.66667 254.75697 17.26464 110 20 - + 48.35562 72.00000 263.34429 17.84660 110 18 - + 46.93058 73.33333 271.93160 18.42855 110 17 - + 46.93058 73.33333 271.93160 18.42855 110 17 - + 45.61581 74.66667 280.51891 19.01051 110 16 - + 44.41075 76.00000 289.10623 19.59246 110 15 - + 43.31448 77.33333 297.69354 20.17442 110 15 - + 42.32612 78.66667 306.28086 20.75637 110 14 - + 41.44475 80.00000 314.86817 21.33832 110 13 - + 41.44475 80.00000 314.86817 21.33832 110 13 - + 40.85297 81.00000 321.30865 21.77479 110 13 - + 40.31901 82.00000 327.74914 22.21126 110 12 - + 39.84153 83.00000 334.18963 22.64772 110 12 - + 39.41922 84.00000 340.63011 23.08419 110 12 - + 39.05074 85.00000 347.07060 23.52065 110 11 - + 39.05074 85.00000 347.07060 23.52065 110 11 - + 38.73470 86.00000 353.51108 23.95712 110 11 - + 38.46938 87.00000 359.95157 24.39358 110 11 - + 38.25297 88.00000 366.39205 24.83005 110 10 - + 38.08365 89.00000 372.83254 25.26652 110 10 - + 37.95963 90.00000 379.27302 25.70298 110 10 - + 33.36045 90.00000 395.81103 21.10380 110 8 - + 33.17505 91.20000 403.87661 21.53384 110 8 - + 33.04859 92.40000 411.94219 21.96388 110 8 - + 32.97740 93.60000 420.00777 22.39392 110 8 - + 32.95782 94.80000 428.07336 22.82396 110 8 - + 32.98617 96.00000 436.13894 23.25400 110 8 - + 32.98617 96.00000 436.13894 23.25400 110 8 - + 33.05866 97.20000 444.20452 23.68404 110 7 - + 33.17156 98.40000 452.27011 24.11408 110 7 - + 33.32131 99.60000 460.33569 24.54412 110 7 - + 33.50432 100.80000 468.40127 24.97416 110 7 - + 33.71703 102.00000 476.46686 25.40420 110 7 - + 33.71703 102.00000 476.46686 25.40420 110 7 - + 33.95593 103.20000 484.53244 25.83424 110 7 - + 34.21797 104.40000 492.59802 26.26428 110 7 - + 34.50033 105.60000 500.66361 26.69432 110 7 - + 34.80015 106.80000 508.72919 27.12436 110 7 - + 35.11461 108.00000 516.79477 27.55440 110 7 - + 35.11461 108.00000 516.79477 27.55440 110 7 - + 35.44098 109.20000 524.86036 27.98444 110 7 - + 35.77727 110.40000 532.92594 28.41448 110 7 - + 36.12167 111.60000 540.99152 28.84452 110 7 - + 36.47235 112.80000 549.05711 29.27456 110 7 - + 36.82751 114.00000 557.12269 29.70460 110 7 - + 36.82751 114.00000 557.12269 29.70460 110 7 - + 37.18553 115.20000 565.18827 30.13464 110 7 - + 37.54554 116.40000 573.25385 30.56468 110 7 - + 37.90693 117.60000 581.31944 30.99472 110 7 - + 38.26906 118.80000 589.38502 31.42476 110 6 - + 38.63131 120.00000 597.45060 31.85480 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2555,9 +2387,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 123.037 'Clay rep.' + 0.00 123.040 'Clay rep.' -6.00 40.848 'Peat rep.' - -8.00 142.526 'Sand 1 rep.' + -8.00 142.522 'Sand 1 rep.' -11.00 104.646 'Sand 2 rep.' [END OF DATA] [END OF TABLE] @@ -2632,28 +2464,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 - -6.60000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 - -7.80000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -2800,14 +2632,14 @@ Is favorable (0=false, 1=true) 14.84 : Percentage mobilized resistance left 6.62 : Percentage mobilized resistance right 490.29 : Effective left - 420.03 : Effective right + 420.04 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 3304.70 : Max effective resistance left - 6342.17 : Max effective resistance right --27915.89 : Max moment left --48657.30 : Max moment right --3070.57 : Max mobilized moment left + 3304.73 : Max effective resistance left + 6342.18 : Max effective resistance right +-27916.49 : Max moment left +-48657.33 : Max moment right +-3070.56 : Max mobilized moment left -2995.58 : Max mobilized moment right 174.87 : Vertical force left 157.60 : Vertical force right @@ -2827,150 +2659,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 -150.00000 -24.59084 - -15.00000 -150.00000 -24.56534 - -30.00000 -150.00000 -24.53622 - -45.00000 -150.00000 -24.49984 - -60.00000 -150.00000 -24.45259 - -75.00000 -150.00000 -24.39084 - -75.00000 -150.00000 -24.39084 - -90.00000 -150.00000 -24.31095 - -105.00000 -150.00000 -24.20931 - -120.00000 -150.00000 -24.08229 - -135.00000 -150.00000 -23.92627 - -150.00000 -150.00000 -23.73761 - -149.99980 149.99528 -23.73761 - -135.00028 149.99528 -23.51390 - -120.00075 149.99528 -23.25756 - -105.00122 149.99528 -22.97221 - -90.00169 149.99528 -22.66148 - -75.00216 149.99528 -22.32900 - -75.00168 70.29552 -22.32900 - -67.97213 70.29552 -21.97807 - -60.94258 70.29552 -21.61070 - -53.91246 70.31235 -21.22860 - -46.87500 70.48234 -20.83348 - -39.80687 70.92620 -20.42702 - -39.80565 70.90787 -20.42702 - -30.39368 69.80866 -19.87057 - -21.30921 66.02741 -19.30111 - -12.84332 60.96480 -18.72226 - -5.05146 55.91261 -18.13762 - 2.06588 50.84170 -17.55084 - 2.06653 50.82922 -17.55084 - 8.55408 46.45298 -16.96528 - 14.44513 41.87741 -16.38342 - 19.71231 37.09755 -15.80752 - 24.33306 32.21093 -15.23984 - 28.30063 27.29584 -14.68264 - 28.30068 27.27640 -14.68264 - 31.67488 23.31504 -14.13791 - 34.51485 19.28223 -13.60682 - 36.81787 15.27335 -13.09034 - 38.59022 11.32023 -12.58948 - 39.83865 7.41325 -12.10522 - 39.83794 7.41342 -12.10522 - 40.62178 4.36434 -11.63833 - 41.00699 1.43273 -11.18890 - 41.00874 -1.38868 -10.75694 - 40.64127 -4.10654 -10.34246 - 39.91799 -6.72702 -9.94546 - 39.91800 -6.72326 -9.94546 - 38.89231 -8.64000 -9.56578 - 37.61978 -10.42676 -9.20281 - 36.11735 -12.08956 -8.85592 - 34.40116 -13.63405 -8.52447 - 32.48662 -15.06556 -8.20780 - 32.48666 -15.06249 -8.20780 - 30.41573 -15.98029 -7.90519 - 28.23081 -16.77304 -7.61564 - 25.94827 -17.44548 -7.33819 - 23.58384 -18.00194 -7.07186 - 21.15273 -18.44632 -6.81566 - 21.15285 -18.44489 -6.81566 - 19.02436 -17.02419 -6.59287 - 17.06841 -15.56920 -6.37670 - 15.28911 -14.08021 -6.16652 - 13.69051 -12.55744 -5.96172 - 12.27667 -11.00107 -5.76169 - 12.27668 -11.00072 -5.76169 - 11.04424 -9.53434 -5.56584 - 9.98976 -8.03471 -5.37384 - 9.11724 -6.50190 -5.18537 - 8.43063 -4.93597 -5.00014 - 7.93392 -3.33698 -4.81783 - 7.93393 -3.33674 -4.81783 - 7.64060 -1.54633 -4.63820 - 7.56416 0.27793 -4.46122 - 7.70865 2.13588 -4.28694 - 8.07811 4.02731 -4.11542 - 8.67654 5.95199 -3.94670 - 8.67655 5.95211 -3.94670 - 8.92881 6.66153 -3.89111 - 9.20952 7.37467 -3.83585 - 9.51883 8.09152 -3.78096 - 9.85689 8.81207 -3.72643 - 10.22385 9.53628 -3.67229 - 10.22368 9.53780 -3.67229 - 11.39187 7.99785 -3.49480 - 12.35969 6.53103 -3.32221 - 13.13642 5.13034 -3.15485 - 13.73045 3.78959 -2.99307 - 14.14940 2.50334 -2.83719 - 14.14946 2.50529 -2.83719 - 14.43663 1.81326 -2.68747 - 14.63584 1.18534 -2.54395 - 14.75541 0.61791 -2.40669 - 14.80317 0.10776 -2.27574 - 14.78656 -0.34793 -2.15116 - 14.78658 -0.34687 -2.15116 - 14.71192 -0.76451 -2.03296 - 14.58495 -1.13184 -1.92108 - 14.41224 -1.45104 -1.81546 - 14.20005 -1.72421 -1.71601 - 13.95440 -1.95340 -1.62267 - 13.95444 -1.95279 -1.62267 - 13.75054 -2.12126 -1.55661 - 13.53094 -2.26703 -1.49388 - 13.29786 -2.39097 -1.43442 - 13.05344 -2.49399 -1.37817 - 12.79973 -2.57702 -1.32507 - 12.80053 -2.58534 -1.32507 - 12.52144 -2.99390 -1.27507 - 12.20348 -3.35080 -1.22810 - 11.85427 -3.61801 -1.18408 - 11.48284 -3.79638 -1.14291 - 11.09777 -3.89158 -1.10452 - 11.09731 -3.89119 -1.10452 - 10.60180 -4.34972 -1.06200 - 10.05745 -4.70648 -1.02317 - 9.47597 -4.97012 -0.98782 - 8.86802 -5.14882 -0.95577 - 8.24334 -5.25026 -0.92681 - 8.24338 -5.24740 -0.92681 - 7.60934 -5.30890 -0.90072 - 6.97177 -5.30723 -0.87727 - 6.33789 -5.24850 -0.85626 - 5.71419 -5.13832 -0.83745 - 5.10655 -4.98175 -0.82064 - 5.10659 -4.97996 -0.82064 - 4.51875 -4.81080 -0.80559 - 3.95350 -4.60410 -0.79212 - 3.41512 -4.36342 -0.78003 - 2.90751 -4.09192 -0.76913 - 2.43419 -3.79226 -0.75925 - 2.43422 -3.79139 -0.75925 - 1.99688 -3.49351 -0.75021 - 1.59673 -3.17183 -0.74185 - 1.23653 -2.82790 -0.73407 - 0.91887 -2.46297 -0.72673 - 0.64622 -2.07799 -0.71970 - 0.64624 -2.07773 -0.71970 - 0.41944 -1.69908 -0.71288 - 0.23921 -1.30172 -0.70621 - 0.10776 -0.88597 -0.69964 - 0.02730 -0.45203 -0.69312 - 0.00000 -0.00002 -0.68660 + 0.00000 -150.00000 -24.59094 + -15.00000 -150.00000 -24.56544 + -30.00000 -150.00000 -24.53633 + -45.00000 -150.00000 -24.49996 + -60.00000 -150.00000 -24.45271 + -75.00000 -150.00000 -24.39096 + -75.00000 -150.00000 -24.39096 + -90.00000 -150.00000 -24.31108 + -105.00000 -150.00000 -24.20945 + -120.00000 -150.00000 -24.08243 + -135.00000 -150.00000 -23.92641 + -150.00000 -150.00000 -23.73776 + -149.99980 149.99528 -23.73776 + -135.00028 149.99528 -23.51405 + -120.00075 149.99528 -23.25772 + -105.00122 149.99528 -22.97237 + -90.00169 149.99528 -22.66165 + -75.00216 149.99528 -22.32917 + -75.00168 70.29552 -22.32917 + -67.97213 70.29552 -21.97824 + -60.94258 70.29552 -21.61088 + -53.91246 70.31233 -21.22879 + -46.87500 70.48229 -20.83367 + -39.80688 70.92611 -20.42722 + -39.80566 70.90777 -20.42722 + -30.39371 69.80851 -19.87077 + -21.30926 66.02718 -19.30132 + -12.84341 60.96446 -18.72247 + -5.05161 55.91216 -18.13784 + 2.06567 50.84113 -17.55106 + 2.06632 50.82865 -17.55106 + 8.55379 46.45234 -16.96551 + 14.44475 41.87672 -16.38366 + 19.71183 37.09675 -15.80776 + 24.33247 32.21001 -15.24009 + 28.29990 27.29478 -14.68289 + 28.29995 27.27534 -14.68289 + 31.67401 23.31391 -14.13817 + 34.51382 19.28100 -13.60708 + 36.81667 15.27198 -13.09061 + 38.58882 11.31871 -12.58975 + 39.83705 7.41158 -12.10550 + 39.83633 7.41176 -12.10550 + 40.61994 4.36253 -11.63860 + 41.00489 1.43077 -11.18918 + 41.00637 -1.39079 -10.75722 + 40.63862 -4.10880 -10.34274 + 39.91502 -6.72942 -9.94574 + 39.91504 -6.72566 -9.94574 + 38.88901 -8.64255 -9.56605 + 37.61614 -10.42946 -9.20308 + 36.11333 -12.09240 -8.85619 + 34.39675 -13.63703 -8.52472 + 32.48181 -15.06868 -8.20805 + 32.48185 -15.06560 -8.20805 + 30.41050 -15.98354 -7.90542 + 28.22514 -16.77640 -7.61586 + 25.94213 -17.44896 -7.33840 + 23.57724 -18.00553 -7.07204 + 21.14564 -18.45001 -6.81583 + 21.14577 -18.44867 -6.81583 + 19.36024 -17.25797 -6.62969 + 17.69497 -16.04342 -6.44822 + 16.15234 -14.80518 -6.27106 + 14.73472 -13.54340 -6.09783 + 13.44444 -12.25821 -5.92816 + 13.44445 -12.25799 -5.92816 + 12.27931 -11.04094 -5.76171 + 11.23703 -9.80073 -5.59821 + 10.31993 -8.53741 -5.43747 + 9.53032 -7.25102 -5.27924 + 8.87050 -5.94161 -5.12332 + 8.87050 -5.94146 -5.12332 + 8.34344 -4.59573 -4.96950 + 7.95213 -3.22677 -4.81769 + 7.69886 -1.83464 -4.66784 + 7.58597 -0.41938 -4.51988 + 7.61575 1.01892 -4.37375 + 7.61575 1.01905 -4.37375 + 7.80025 2.67488 -4.22942 + 8.15151 4.35425 -4.08696 + 8.67188 6.05701 -3.94652 + 9.36369 7.78294 -3.80820 + 10.22924 9.53183 -3.67215 + 10.22908 9.53341 -3.67215 + 11.39670 7.99373 -3.49465 + 12.36399 6.52717 -3.32206 + 13.14022 5.12675 -3.15470 + 13.73379 3.78625 -2.99291 + 14.15231 2.50025 -2.83704 + 14.15237 2.50220 -2.83704 + 14.43914 1.81040 -2.68732 + 14.63799 1.18271 -2.54380 + 14.75722 0.61550 -2.40655 + 14.80467 0.10555 -2.27560 + 14.78779 -0.34994 -2.15102 + 14.78781 -0.34889 -2.15102 + 14.71289 -0.76635 -2.03283 + 14.58568 -1.13351 -1.92096 + 14.41276 -1.45254 -1.81535 + 14.20038 -1.72556 -1.71590 + 13.95456 -1.95462 -1.62257 + 13.95459 -1.95401 -1.62257 + 13.75058 -2.12239 -1.55652 + 13.53087 -2.26807 -1.49379 + 13.29769 -2.39193 -1.43433 + 13.05318 -2.49488 -1.37809 + 12.79939 -2.57784 -1.32500 + 12.80019 -2.58615 -1.32500 + 12.52102 -2.99465 -1.27500 + 12.20298 -3.35146 -1.22804 + 11.85372 -3.61854 -1.18402 + 11.48223 -3.79680 -1.14286 + 11.09713 -3.89189 -1.10447 + 11.09668 -3.89151 -1.10447 + 10.60113 -4.34991 -1.06196 + 10.05677 -4.70657 -1.02313 + 9.47528 -4.97013 -0.98779 + 8.86734 -5.14874 -0.95574 + 8.24267 -5.25011 -0.92678 + 8.24271 -5.24725 -0.92678 + 7.60869 -5.30870 -0.90069 + 6.97115 -5.30697 -0.87725 + 6.33730 -5.24820 -0.85624 + 5.71364 -5.13799 -0.83744 + 5.10604 -4.98139 -0.82063 + 5.10608 -4.97961 -0.82063 + 4.51828 -4.81043 -0.80558 + 3.95308 -4.60371 -0.79211 + 3.41475 -4.36303 -0.78003 + 2.90718 -4.09153 -0.76914 + 2.43391 -3.79188 -0.75926 + 2.43394 -3.79101 -0.75926 + 1.99665 -3.49314 -0.75021 + 1.59654 -3.17148 -0.74186 + 1.23638 -2.82758 -0.73408 + 0.91876 -2.46268 -0.72674 + 0.64614 -2.07773 -0.71972 + 0.64615 -2.07748 -0.71972 + 0.41938 -1.69887 -0.71290 + 0.23917 -1.30155 -0.70623 + 0.10775 -0.88585 -0.69966 + 0.02730 -0.45197 -0.69314 + 0.00000 -0.00002 -0.68663 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3056,9 +2888,9 @@ Q max -4.66667 71.37700 42.21500 1163.95517 39.30704 -5.33333 70.71700 41.53400 1322.65438 55.50489 -6.00000 70.16300 41.00200 1488.10669 72.90330 - -6.60000 69.99800 40.66200 1657.62646 92.57002 - -7.20000 69.64800 40.37700 1845.51127 112.39851 - -7.80000 69.63300 40.13400 2039.77189 132.38050 + -6.50000 70.02300 40.71500 1629.28213 89.28073 + -7.00000 69.65300 40.46700 1781.07448 105.77161 + -7.50000 69.64000 40.25100 1942.46340 122.37073 -8.00000 69.62900 40.06100 2104.84222 139.07419 -8.66667 69.82000 39.27800 2376.60614 160.91945 -9.33333 69.77300 38.95800 2703.42310 182.84828 @@ -3096,10 +2928,10 @@ Lambda passive -4.33333 63.09132 246.65174 22.41597 0.78835 0.35529 3.90944 -5.00000 67.95631 238.04881 24.29676 0.74575 0.35754 3.50297 -5.66667 72.58252 248.17846 26.09762 0.71265 0.35956 3.41926 - -6.30000 75.29944 282.53296 32.77786 0.64100 0.43530 3.75213 - -6.90000 76.16569 313.14135 33.04749 0.62360 0.43389 4.11132 - -7.50000 76.93078 323.76770 33.30331 0.60890 0.43290 4.20856 - -7.90000 77.39439 325.35165 33.46847 0.60041 0.43244 4.20381 + -6.25000 75.22198 282.35089 32.75486 0.64259 0.43544 3.75357 + -6.75000 75.95945 303.58470 32.98175 0.62768 0.43420 3.99667 + -7.25000 76.62295 322.77783 33.19825 0.61472 0.43327 4.21255 + -7.75000 77.22446 324.75765 33.40692 0.60348 0.43260 4.20537 -8.33333 80.52806 407.64588 32.76788 0.50605 0.40691 5.06216 -9.00000 86.52027 490.22543 32.89325 0.49495 0.38018 5.66602 -9.66667 92.45463 504.91333 34.48975 0.48673 0.37305 5.46120 @@ -3147,129 +2979,129 @@ Status character 0.00000 0.00000 282.51693 37.01204 1 0 A 0.00000 0.00000 297.17299 38.93211 1 0 A 0.00000 0.00000 311.89058 40.86023 1 0 A - 0.33657 0.00000 326.64952 42.79378 110 0 - - 3.06339 0.00000 341.43156 44.73035 110 0 - - 5.81377 0.00000 356.22048 46.66781 110 0 - - 2.17389 0.00000 291.84154 43.02793 110 0 - - 4.48203 1.33333 299.94838 44.22317 110 0 - - 6.81123 2.66667 308.02155 45.41345 110 0 - - 9.15151 4.00000 316.04249 46.59602 110 0 - - 11.49352 5.33333 323.99677 47.76877 110 0 - - 13.82840 6.66667 331.87347 48.93008 110 0 - + 0.33620 0.00000 326.64952 42.79378 110 0 - + 3.06301 0.00000 341.43156 44.73035 110 0 - + 5.81338 0.00000 356.22048 46.66781 110 0 - + 2.17350 0.00000 291.84154 43.02793 110 0 - + 4.48163 1.33333 299.94838 44.22317 110 0 - + 6.81081 2.66667 308.02155 45.41345 110 0 - + 9.15108 4.00000 316.04249 46.59602 110 0 - + 11.49308 5.33333 323.99677 47.76877 110 0 - + 13.82795 6.66667 331.87347 48.93008 110 0 - 15.25971 6.66667 299.31596 45.09968 1 0 A 15.61796 8.00000 306.34284 46.15846 1 0 A 15.97202 9.33333 313.28770 47.20488 1 0 A - 16.62343 10.66667 320.14743 48.23848 110 0 - - 18.77931 12.00000 326.92038 49.25900 110 0 - - 20.90109 13.33333 333.60607 50.26637 110 0 - + 16.62295 10.66667 320.14743 48.23848 110 0 - + 18.77882 12.00000 326.92038 49.25900 110 0 - + 20.90058 13.33333 333.60607 50.26637 110 0 - 19.44494 13.33333 311.04622 46.54026 1 0 A 19.82957 14.66667 317.19881 47.46084 1 0 A - 21.15582 16.00000 323.27145 48.36946 110 0 - - 23.08566 17.33333 329.26565 49.26634 110 0 - - 24.97281 18.66667 335.18330 50.15177 110 0 - - 26.81562 20.00000 341.02654 51.02606 110 0 - - 23.52622 20.00000 236.72666 47.73666 110 0 - - 25.26785 21.33333 240.73275 48.54450 110 0 - - 26.96479 22.66667 244.69047 49.34259 110 0 - - 28.61739 24.00000 248.60157 50.13127 110 0 - - 30.22599 25.33333 252.46779 50.91091 110 0 - - 31.79092 26.66667 256.29088 51.68185 110 0 - - 28.99823 26.66667 229.64385 48.88916 110 0 - - 30.47898 28.00000 233.03234 49.61054 110 0 - - 31.91872 29.33333 236.38524 50.32434 110 0 - - 33.31904 30.66667 239.70404 51.03088 110 0 - - 34.68154 32.00000 242.99019 51.73048 110 0 - - 36.00780 33.33333 246.24507 52.42341 110 0 - - 33.68125 33.33333 240.36063 50.09686 110 0 - - 34.94259 34.66667 243.50855 50.75296 110 0 - - 36.17196 36.00000 246.62854 51.40324 110 0 - - 37.37158 37.33333 249.72185 52.04796 110 0 - - 38.54365 38.66667 252.78964 52.68736 110 0 - - 39.69036 40.00000 255.83306 53.32168 110 0 - - 42.50798 40.00000 280.73852 47.96050 110 0 - - 42.81136 41.20000 281.47109 48.08565 110 0 - - 43.10605 42.40000 282.18380 48.20741 110 0 - - 43.39270 43.60000 282.87745 48.32591 110 0 - - 43.67191 44.80000 283.55282 48.44129 110 0 - - 43.94433 46.00000 284.21066 48.55367 110 0 - - 42.62618 46.00000 311.41826 47.23553 110 0 - - 42.88939 47.20000 312.12065 47.34207 110 0 - - 43.14686 48.40000 312.80538 47.44593 110 0 - - 43.39892 49.60000 313.47318 47.54722 110 0 - - 43.64594 50.80000 314.12474 47.64605 110 0 - - 43.88825 52.00000 314.76074 47.74251 110 0 - - 42.76284 52.00000 322.20547 46.61711 110 0 - - 42.99854 53.20000 322.84125 46.70909 110 0 - - 43.22999 54.40000 323.46241 46.79896 110 0 - - 43.45726 55.60000 324.06957 46.88681 110 0 - - 43.68038 56.80000 324.66331 46.97271 110 0 - - 43.89939 58.00000 325.24420 47.05675 110 0 - - 43.24343 58.00000 324.87752 46.40079 110 0 - - 43.31514 58.40000 325.06818 46.42802 110 0 - - 43.38638 58.80000 325.25749 46.45506 110 0 - - 43.45714 59.20000 325.44547 46.48191 110 0 - - 43.52742 59.60000 325.63215 46.50857 110 0 - - 43.59722 60.00000 325.81754 46.53505 110 0 - - 47.55128 60.00000 392.34377 39.22170 110 12 - - 47.07933 61.33333 398.47664 39.83479 110 12 - - 46.59762 62.66667 404.59335 40.44626 110 12 - - 46.11564 64.00000 410.69466 41.05619 110 11 - - 45.64285 65.33333 416.78133 41.66467 110 11 - - 45.18874 66.66667 422.85408 42.27174 110 11 - - 42.95568 66.66667 473.29582 41.34422 110 9 - - 42.49666 68.00000 480.07815 41.93668 110 9 - - 42.06938 69.33333 486.84638 42.52791 110 0 - - 41.67759 70.66667 493.60122 43.11797 110 0 - - 41.32503 72.00000 500.34333 43.70692 110 0 - - 41.01542 73.33333 507.07337 44.29482 110 0 - - 40.37693 73.33333 488.74352 43.55934 110 0 - - 40.10450 74.66667 495.21924 44.13649 110 0 - - 39.87782 76.00000 501.68447 44.71271 110 0 - + 21.15530 16.00000 323.27145 48.36946 110 0 - + 23.08512 17.33333 329.26565 49.26634 110 0 - + 24.97227 18.66667 335.18330 50.15177 110 0 - + 26.81507 20.00000 341.02654 51.02606 110 0 - + 23.52567 20.00000 236.72666 47.73666 110 0 - + 25.26730 21.33333 240.73275 48.54450 110 0 - + 26.96424 22.66667 244.69047 49.34259 110 0 - + 28.61683 24.00000 248.60157 50.13127 110 0 - + 30.22543 25.33333 252.46779 50.91091 110 0 - + 31.79037 26.66667 256.29088 51.68185 110 0 - + 28.99768 26.66667 229.64385 48.88916 110 0 - + 30.47843 28.00000 233.03234 49.61054 110 0 - + 31.91818 29.33333 236.38524 50.32434 110 0 - + 33.31851 30.66667 239.70404 51.03088 110 0 - + 34.68103 32.00000 242.99019 51.73048 110 0 - + 36.00731 33.33333 246.24507 52.42341 110 0 - + 33.68076 33.33333 240.36063 50.09686 110 0 - + 34.94211 34.66667 243.50855 50.75296 110 0 - + 36.17152 36.00000 246.62854 51.40324 110 0 - + 37.37117 37.33333 249.72185 52.04796 110 0 - + 38.54328 38.66667 252.78964 52.68736 110 0 - + 39.69003 40.00000 255.83306 53.32168 110 0 - + 42.62644 40.00000 280.84652 48.07910 110 0 - + 42.88014 41.00000 281.45863 48.18389 110 0 - + 43.12772 42.00000 282.05685 48.28630 110 0 - + 43.36956 43.00000 282.64164 48.38641 110 0 - + 43.60604 44.00000 283.21347 48.48431 110 0 - + 43.83752 45.00000 283.77278 48.58006 110 0 - + 42.71065 45.00000 302.15125 47.45318 110 0 - + 42.93532 46.00000 302.73390 47.54468 110 0 - + 43.15566 47.00000 303.30412 47.63424 110 0 - + 43.37193 48.00000 303.86233 47.72190 110 0 - + 43.58436 49.00000 304.40895 47.80775 110 0 - + 43.79318 50.00000 304.94437 47.89184 110 0 - + 42.80439 50.00000 321.41593 46.90305 110 0 - + 43.00814 51.00000 321.96889 46.98374 110 0 - + 43.20867 52.00000 322.51085 47.06282 110 0 - + 43.40609 53.00000 323.04221 47.14036 110 0 - + 43.60050 54.00000 323.56333 47.21641 110 0 - + 43.79201 55.00000 324.07457 47.29101 110 0 - + 42.92723 55.00000 323.52261 46.42623 110 0 - + 43.11457 56.00000 324.02346 46.49811 110 0 - + 43.29909 57.00000 324.51515 46.56866 110 0 - + 43.48074 58.00000 324.99798 46.63795 110 0 - + 43.65945 59.00000 325.47228 46.70601 110 0 - + 43.83517 60.00000 325.93835 46.77290 110 0 - + 47.55192 60.00000 392.34377 39.22170 110 12 - + 47.07989 61.33333 398.47664 39.83479 110 12 - + 46.59811 62.66667 404.59335 40.44626 110 12 - + 46.11606 64.00000 410.69466 41.05619 110 11 - + 45.64321 65.33333 416.78133 41.66467 110 11 - + 45.18904 66.66667 422.85408 42.27174 110 11 - + 42.95598 66.66667 473.29582 41.34422 110 9 - + 42.49691 68.00000 480.07815 41.93668 110 9 - + 42.06958 69.33333 486.84638 42.52791 110 0 - + 41.67775 70.66667 493.60122 43.11797 110 0 - + 41.32515 72.00000 500.34333 43.70692 110 0 - + 41.01551 73.33333 507.07337 44.29482 110 0 - + 40.37701 73.33333 488.74352 43.55934 110 0 - + 40.10455 74.66667 495.21924 44.13649 110 0 - + 39.87785 76.00000 501.68447 44.71271 110 0 - 39.69676 77.33333 508.13977 45.28804 110 0 - - 39.56117 78.66667 514.58566 45.86253 110 0 - - 39.47093 80.00000 521.02264 46.43622 110 0 - - 38.95400 80.00000 506.71425 45.92061 110 0 - - 38.91088 81.00000 511.40399 46.34562 110 0 - - 38.89203 82.00000 516.08930 46.77022 110 0 - - 38.89669 83.00000 520.77037 47.19444 110 0 - - 38.92411 84.00000 525.44738 47.61829 110 0 - - 38.97354 85.00000 530.12048 48.04179 110 0 - - 35.41147 85.00000 530.88491 47.68237 110 0 - - 35.45071 86.00000 535.56102 48.10236 110 0 - - 36.24098 87.00000 540.23354 48.52203 110 0 - - 37.10061 88.00000 544.90265 48.94140 110 0 - - 37.93134 89.00000 549.56848 49.36047 110 0 - - 38.73402 90.00000 554.23118 49.77926 110 0 - - 30.31193 90.00000 775.12520 41.35717 110 0 - - 31.15438 91.20000 782.94497 41.77439 110 0 - - 31.95964 92.40000 790.75906 42.19132 110 0 - - 32.72971 93.60000 798.56776 42.60795 110 0 - - 33.46661 94.80000 806.37138 43.02432 110 0 - - 34.17237 96.00000 814.17021 43.44043 110 0 - - 33.83482 96.00000 867.47253 43.10288 110 0 - - 34.50836 97.20000 875.77712 43.51552 110 0 - - 35.15520 98.40000 884.07719 43.92793 110 0 - - 35.77755 99.60000 892.37300 44.34013 110 0 - - 36.37760 100.80000 900.66481 44.75213 110 0 - - 36.95758 102.00000 908.95288 45.16395 110 0 - - 36.68656 102.00000 917.30644 44.89293 110 0 - - 37.24619 103.20000 925.66715 45.30210 110 0 - - 37.78995 104.40000 934.02455 45.71111 110 0 - + 39.56116 78.66667 514.58566 45.86253 110 0 - + 39.47089 80.00000 521.02264 46.43622 110 0 - + 38.95397 80.00000 506.71425 45.92061 110 0 - + 38.91084 81.00000 511.40399 46.34562 110 0 - + 38.89197 82.00000 516.08930 46.77022 110 0 - + 38.89662 83.00000 520.77037 47.19444 110 0 - + 38.92404 84.00000 525.44738 47.61829 110 0 - + 38.97347 85.00000 530.12048 48.04179 110 0 - + 35.41140 85.00000 530.88491 47.68237 110 0 - + 35.45063 86.00000 535.56102 48.10236 110 0 - + 36.24163 87.00000 540.23354 48.52203 110 0 - + 37.10121 88.00000 544.90265 48.94140 110 0 - + 37.93189 89.00000 549.56848 49.36047 110 0 - + 38.73453 90.00000 554.23118 49.77926 110 0 - + 30.31244 90.00000 775.12520 41.35717 110 0 - + 31.15484 91.20000 782.94497 41.77439 110 0 - + 31.96004 92.40000 790.75906 42.19132 110 0 - + 32.73006 93.60000 798.56776 42.60795 110 0 - + 33.46692 94.80000 806.37138 43.02432 110 0 - + 34.17264 96.00000 814.17021 43.44043 110 0 - + 33.83509 96.00000 867.47253 43.10288 110 0 - + 34.50859 97.20000 875.77712 43.51552 110 0 - + 35.15539 98.40000 884.07719 43.92793 110 0 - + 35.77770 99.60000 892.37300 44.34013 110 0 - + 36.37772 100.80000 900.66481 44.75213 110 0 - + 36.95767 102.00000 908.95288 45.16395 110 0 - + 36.68665 102.00000 917.30644 44.89293 110 0 - + 37.24625 103.20000 925.66715 45.30210 110 0 - + 37.78998 104.40000 934.02455 45.71111 110 0 - 38.31971 105.60000 942.37886 46.11997 110 0 - - 38.83734 106.80000 950.73031 46.52869 110 0 - - 39.34473 108.00000 959.07910 46.93728 110 0 - - 39.12959 108.00000 957.86423 46.72214 110 0 - - 39.62667 109.20000 966.19998 47.12874 110 0 - - 40.11670 110.40000 974.53345 47.53523 110 0 - - 40.60094 111.60000 982.86484 47.94161 110 0 - - 41.08064 112.80000 991.19429 48.34790 110 0 - - 41.55708 114.00000 999.52200 48.75410 110 0 - - 41.38889 114.00000 998.97497 48.58592 110 0 - - 41.86179 115.20000 1007.29652 48.99064 110 0 - - 42.33318 116.40000 1015.61662 49.39530 110 0 - - 42.80352 117.60000 1023.93543 49.79989 110 0 - - 43.27326 118.80000 1032.25307 50.20442 110 0 - - 43.74287 120.00000 1040.56969 50.60891 110 0 - + 38.83732 106.80000 950.73031 46.52869 110 0 - + 39.34468 108.00000 959.07910 46.93728 110 0 - + 39.12955 108.00000 957.86423 46.72214 110 0 - + 39.62660 109.20000 966.19998 47.12874 110 0 - + 40.11660 110.40000 974.53345 47.53523 110 0 - + 40.60082 111.60000 982.86484 47.94161 110 0 - + 41.08051 112.80000 991.19429 48.34790 110 0 - + 41.55692 114.00000 999.52200 48.75410 110 0 - + 41.38873 114.00000 998.97497 48.58592 110 0 - + 41.86161 115.20000 1007.29652 48.99064 110 0 - + 42.33298 116.40000 1015.61662 49.39530 110 0 - + 42.80330 117.60000 1023.93543 49.79989 110 0 - + 43.27302 118.80000 1032.25307 50.20442 110 0 - + 43.74261 120.00000 1040.56969 50.60891 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3282,8 +3114,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 96.969 'Clay rep.' - -6.00 86.594 'Peat rep.' + 0.00 96.967 'Clay rep.' + -6.00 86.597 'Peat rep.' -8.00 123.242 'Sand 1 rep.' -11.00 113.230 'Sand 2 rep.' [END OF DATA] @@ -3368,9 +3200,9 @@ Q max -4.66667 73.49400 0.00000 409.91398 0.00000 -5.33333 72.25300 0.00000 489.62634 0.00000 -6.00000 71.25900 45.94600 575.53293 2.40133 - -6.60000 70.91900 45.06400 650.39786 17.89640 - -7.20000 69.90100 43.87600 752.94409 33.66244 - -7.80000 71.75500 40.76300 859.38262 48.27966 + -6.50000 70.97000 45.19800 637.83642 15.29107 + -7.00000 69.86700 44.56900 716.53918 28.39959 + -7.50000 69.94300 42.27300 807.84479 41.19575 -8.00000 71.66400 39.80500 885.78083 52.77042 -8.66667 71.54100 36.87000 989.75092 69.08832 -9.33333 70.79100 34.28700 1168.98193 83.28748 @@ -3404,10 +3236,10 @@ Lambda passive -4.33333 20.01750 246.36606 0.00000 1.34930 0.00000 12.30753 -5.00000 26.06622 119.56854 0.00000 1.03715 0.00000 4.58711 -5.66667 31.46188 128.85988 3.60200 0.85385 0.11449 4.09575 - -6.30000 34.56152 124.77488 25.82512 0.74722 0.74722 3.61023 - -6.90000 35.55871 170.91039 26.27672 0.73897 0.73897 4.80643 - -7.50000 36.30345 177.39754 24.36204 0.67107 0.67107 4.88652 - -7.90000 36.69850 131.99106 22.45380 0.61185 0.61185 3.59663 + -6.25000 34.46412 124.60697 25.77948 0.74801 0.74801 3.61556 + -6.75000 35.33654 157.40552 26.21704 0.74192 0.74192 4.45447 + -7.25000 36.01842 182.61123 25.59232 0.71053 0.71053 5.06994 + -7.75000 36.55823 155.87207 23.14933 0.63322 0.63322 4.26367 -8.33333 39.72627 155.95514 24.47685 0.61614 0.61614 3.92574 -9.00000 45.51908 268.84651 21.29874 0.46961 0.46791 5.90624 -9.66667 51.23739 261.18376 20.68898 0.45862 0.40379 5.09752 @@ -3460,124 +3292,124 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00003 0.00000 0.00003 0.00000 202 100 P 23.14404 1.33333 23.14404 3.09299 202 100 P - 44.86796 2.66667 46.88492 6.26574 110 96 - - 47.03380 4.00000 71.75416 9.58929 110 66 - - 49.39413 5.33333 98.16518 13.11888 110 50 - - 51.99140 6.66667 126.38147 16.88973 110 41 - - 47.38246 6.66667 48.86994 12.28078 110 97 - - 49.13887 8.00000 60.51971 15.20831 110 81 - - 51.08457 9.33333 72.89328 18.31773 110 70 - - 53.20889 10.66667 85.93019 21.59384 110 62 - - 55.49308 12.00000 99.53791 25.01340 110 56 - - 57.91369 13.33333 113.60509 28.54841 110 51 - - 48.66809 13.33333 174.19670 19.30281 110 28 - - 50.02675 14.66667 196.28955 21.75092 110 25 - - 51.45081 16.00000 218.72654 24.23718 110 24 - - 52.92384 17.33333 241.34158 26.74316 110 22 - - 54.43147 18.66667 263.98706 29.25251 110 21 - - 55.96169 20.00000 286.53671 31.75125 110 20 - - 46.84914 20.00000 206.49756 22.63870 110 23 - - 47.68114 21.33333 222.60412 24.40449 110 21 - - 48.52568 22.66667 238.50642 26.14789 110 20 - - 49.37771 24.00000 254.15832 27.86383 110 19 - - 50.23353 25.33333 269.52589 29.54861 110 19 - - 51.09057 26.66667 284.58573 31.19964 110 18 - - 43.87289 26.66667 106.06715 23.98196 110 41 - - 44.35544 28.00000 111.55994 25.22389 110 40 - - 44.84366 29.33333 116.92988 26.43804 110 38 - - 45.33614 30.66667 122.17643 27.62430 110 37 - - 45.83186 32.00000 127.30080 28.78293 110 36 - - 46.33011 33.33333 132.30552 29.91450 110 35 - - 41.04309 33.33333 118.13325 24.62748 110 35 - - 41.34783 34.66667 122.49822 25.53745 110 34 - - 41.65790 36.00000 126.76339 26.42662 110 33 - - 41.97226 37.33333 130.93306 27.29588 110 32 - - 42.28991 38.66667 135.01187 28.14620 110 31 - - 42.60989 40.00000 139.00460 28.97857 110 31 - - 30.81232 40.00000 122.52664 25.35979 110 25 - - 30.82865 41.20000 123.46667 25.55436 110 25 - - 30.83893 42.40000 124.35187 25.73757 110 25 - - 30.84329 43.60000 125.18533 25.91007 110 25 - - 30.84188 44.80000 125.97009 26.07250 110 24 - - 30.83480 46.00000 126.70910 26.22545 110 24 - - 30.54509 46.00000 168.69255 25.93574 110 18 - - 30.53090 47.20000 169.61932 26.07822 110 18 - - 30.51157 48.40000 170.49266 26.21250 110 18 - - 30.48739 49.60000 171.31608 26.33909 110 18 - - 30.45864 50.80000 172.09293 26.45853 110 18 - - 30.42556 52.00000 172.82641 26.57130 110 18 - - 27.98405 52.00000 175.70632 24.12978 110 16 - - 27.93712 53.20000 176.41102 24.22656 110 16 - - 27.88708 54.40000 177.07764 24.31811 110 16 - - 27.83435 55.60000 177.70894 24.40480 110 16 - - 27.77934 56.80000 178.30752 24.48700 110 16 - - 27.72241 58.00000 178.87584 24.56505 110 15 - - 25.55455 58.00000 131.65826 22.39718 110 19 - - 25.53300 58.40000 131.79304 22.42011 110 19 - - 25.51135 58.80000 131.92560 22.44266 110 19 - - 25.48961 59.20000 132.05599 22.46484 110 19 - - 25.46782 59.60000 132.18427 22.48667 110 19 - - 25.44597 60.00000 132.31050 22.50814 110 19 - - 59.38896 60.00000 144.41759 22.66605 110 41 - - 58.34091 61.33333 149.04892 23.39293 110 39 - - 57.33840 62.66667 153.65817 24.11634 110 37 - - 56.38510 64.00000 158.24733 24.83660 110 36 - - 55.48466 65.33333 162.81824 25.55400 110 34 - - 54.64070 66.66667 167.37260 26.26880 110 33 - - 48.39353 66.66667 251.81020 20.02162 110 19 - - 47.43931 68.00000 258.63969 20.56464 110 18 - - 46.54552 69.33333 265.44888 21.10604 110 18 - - 45.71287 70.66667 272.23981 21.64599 110 17 - - 44.94203 72.00000 279.01435 22.18464 110 16 - - 44.23369 73.33333 285.77426 22.72213 110 15 - - 43.70208 73.33333 246.64447 22.19052 110 18 - - 43.04400 74.66667 252.46752 22.71441 110 17 - - 42.44825 76.00000 258.28059 23.23741 110 16 - - 41.91422 77.33333 264.08486 23.75962 110 16 - - 41.44125 78.66667 269.88141 24.28114 110 15 - - 41.02874 80.00000 275.67123 24.80204 110 15 - - 40.75443 80.00000 240.18168 24.52774 110 17 - - 40.47989 81.00000 243.96165 24.91375 110 17 - - 40.23833 82.00000 247.73909 25.29951 110 16 - - 40.02923 83.00000 251.51428 25.68504 110 16 - - 39.85204 84.00000 255.28751 26.07037 110 16 - - 39.70623 85.00000 259.05902 26.45552 110 15 - - 39.57513 85.00000 264.05972 26.32442 110 15 - - 39.45826 86.00000 267.90255 26.70752 110 15 - - 39.37154 87.00000 271.74410 27.09049 110 14 - - 39.31414 88.00000 275.58460 27.47335 110 14 - - 39.28526 89.00000 279.42425 27.85613 110 14 - - 39.28408 90.00000 283.26324 28.23884 110 14 - - 34.57548 90.00000 421.18090 23.53025 110 8 - - 34.53288 91.20000 428.02975 23.91288 110 8 - - 34.52715 92.40000 434.87797 24.29547 110 8 - - 34.55629 93.60000 441.72597 24.67805 110 8 - - 34.61834 94.80000 448.57408 25.06063 110 8 - - 34.71130 96.00000 455.42264 25.44324 110 8 - - 34.62391 96.00000 596.27492 25.35585 110 6 - - 34.74434 97.20000 605.24257 25.73719 110 6 - - 34.89131 98.40000 614.21157 26.11858 110 6 - - 35.06263 99.60000 623.18224 26.50005 110 6 - - 35.25613 100.80000 632.15487 26.88160 110 6 - - 35.46962 102.00000 641.12976 27.26324 110 6 - - 35.44126 102.00000 583.85447 27.23489 110 6 - - 35.67215 103.20000 592.02986 27.61624 110 6 - - 35.91887 104.40000 600.20774 27.99771 110 6 - + 44.86837 2.66667 46.88492 6.26574 110 96 - + 47.03422 4.00000 71.75416 9.58929 110 66 - + 49.39457 5.33333 98.16518 13.11888 110 50 - + 51.99185 6.66667 126.38147 16.88973 110 41 - + 47.38291 6.66667 48.86994 12.28078 110 97 - + 49.13933 8.00000 60.51971 15.20831 110 81 - + 51.08504 9.33333 72.89328 18.31773 110 70 - + 53.20937 10.66667 85.93019 21.59384 110 62 - + 55.49358 12.00000 99.53791 25.01340 110 56 - + 57.91420 13.33333 113.60509 28.54841 110 51 - + 48.66860 13.33333 174.19670 19.30281 110 28 - + 50.02727 14.66667 196.28955 21.75092 110 25 - + 51.45134 16.00000 218.72654 24.23718 110 24 - + 52.92438 17.33333 241.34158 26.74316 110 22 - + 54.43202 18.66667 263.98706 29.25251 110 21 - + 55.96224 20.00000 286.53671 31.75125 110 20 - + 46.84969 20.00000 206.49756 22.63870 110 23 - + 47.68169 21.33333 222.60412 24.40449 110 21 - + 48.52624 22.66667 238.50642 26.14789 110 20 - + 49.37827 24.00000 254.15832 27.86383 110 19 - + 50.23409 25.33333 269.52589 29.54861 110 19 - + 51.09112 26.66667 284.58573 31.19964 110 18 - + 43.87344 26.66667 106.06715 23.98196 110 41 - + 44.35599 28.00000 111.55994 25.22389 110 40 - + 44.84420 29.33333 116.92988 26.43804 110 38 - + 45.33667 30.66667 122.17643 27.62430 110 37 - + 45.83237 32.00000 127.30080 28.78293 110 36 - + 46.33061 33.33333 132.30552 29.91450 110 35 - + 41.04358 33.33333 118.13325 24.62748 110 35 - + 41.34830 34.66667 122.49822 25.53745 110 34 - + 41.65835 36.00000 126.76339 26.42662 110 33 - + 41.97267 37.33333 130.93306 27.29588 110 32 - + 42.29028 38.66667 135.01187 28.14620 110 31 - + 42.61022 40.00000 139.00460 28.97857 110 31 - + 30.83918 40.00000 122.70755 25.38651 110 25 - + 30.85338 41.00000 123.49596 25.54963 110 25 - + 30.86335 42.00000 124.24588 25.70478 110 25 - + 30.86918 43.00000 124.95911 25.85233 110 25 - + 30.87093 44.00000 125.63741 25.99266 110 25 - + 30.86866 45.00000 126.28254 26.12613 110 24 - + 30.65614 45.00000 155.58372 25.91360 110 20 - + 30.64889 46.00000 156.33976 26.03953 110 20 - + 30.63790 47.00000 157.05904 26.15933 110 20 - + 30.62331 48.00000 157.74355 26.27334 110 19 - + 30.60527 49.00000 158.39520 26.38188 110 19 - + 30.58390 50.00000 159.01581 26.48524 110 19 - + 29.46333 50.00000 180.98689 25.36467 110 16 - + 29.43460 51.00000 181.65993 25.45900 110 16 - + 29.40308 52.00000 182.30159 25.54893 110 16 - + 29.36898 53.00000 182.91371 25.63471 110 16 - + 29.33251 54.00000 183.49805 25.71660 110 16 - + 29.29384 55.00000 184.05629 25.79484 110 16 - + 26.48700 55.00000 154.78574 22.98800 110 17 - + 26.43819 56.00000 155.23460 23.05466 110 17 - + 26.38803 57.00000 155.66415 23.11846 110 17 - + 26.33678 58.00000 156.07561 23.17956 110 17 - + 26.28472 59.00000 156.47013 23.23816 110 17 - + 26.23212 60.00000 156.84882 23.29440 110 17 - + 59.38759 60.00000 144.41759 22.66605 110 41 - + 58.33947 61.33333 149.04892 23.39293 110 39 - + 57.33691 62.66667 153.65817 24.11634 110 37 - + 56.38359 64.00000 158.24733 24.83660 110 36 - + 55.48314 65.33333 162.81824 25.55400 110 34 - + 54.63919 66.66667 167.37260 26.26880 110 33 - + 48.39202 66.66667 251.81020 20.02162 110 19 - + 47.43781 68.00000 258.63969 20.56464 110 18 - + 46.54406 69.33333 265.44888 21.10604 110 18 - + 45.71145 70.66667 272.23981 21.64599 110 17 - + 44.94066 72.00000 279.01435 22.18464 110 16 - + 44.23236 73.33333 285.77426 22.72213 110 15 - + 43.70075 73.33333 246.64447 22.19052 110 18 - + 43.04273 74.66667 252.46752 22.71441 110 17 - + 42.44705 76.00000 258.28059 23.23741 110 16 - + 41.91308 77.33333 264.08486 23.75962 110 16 - + 41.44018 78.66667 269.88141 24.28114 110 15 - + 41.02773 80.00000 275.67123 24.80204 110 15 - + 40.75343 80.00000 240.18168 24.52774 110 17 - + 40.47894 81.00000 243.96165 24.91375 110 17 - + 40.23744 82.00000 247.73909 25.29951 110 16 - + 40.02838 83.00000 251.51428 25.68504 110 16 - + 39.85124 84.00000 255.28751 26.07037 110 16 - + 39.70548 85.00000 259.05902 26.45552 110 15 - + 39.57438 85.00000 264.05972 26.32442 110 15 - + 39.45757 86.00000 267.90255 26.70752 110 15 - + 39.37089 87.00000 271.74410 27.09049 110 14 - + 39.31354 88.00000 275.58460 27.47335 110 14 - + 39.28471 89.00000 279.42425 27.85613 110 14 - + 39.28357 90.00000 283.26324 28.23884 110 14 - + 34.57498 90.00000 421.18090 23.53025 110 8 - + 34.53243 91.20000 428.02975 23.91288 110 8 - + 34.52674 92.40000 434.87797 24.29547 110 8 - + 34.55594 93.60000 441.72597 24.67805 110 8 - + 34.61803 94.80000 448.57408 25.06063 110 8 - + 34.71103 96.00000 455.42264 25.44324 110 8 - + 34.62364 96.00000 596.27492 25.35585 110 6 - + 34.74412 97.20000 605.24257 25.73719 110 6 - + 34.89112 98.40000 614.21157 26.11858 110 6 - + 35.06248 99.60000 623.18224 26.50005 110 6 - + 35.25601 100.80000 632.15487 26.88160 110 6 - + 35.46953 102.00000 641.12976 27.26324 110 6 - + 35.44117 102.00000 583.85447 27.23489 110 6 - + 35.67209 103.20000 592.02986 27.61624 110 6 - + 35.91884 104.40000 600.20774 27.99771 110 6 - 36.17957 105.60000 608.38830 28.37931 110 6 - - 36.45238 106.80000 616.57170 28.76104 110 6 - - 36.73546 108.00000 624.75810 29.14291 110 6 - - 36.74989 108.00000 546.03907 29.15734 110 7 - - 37.04161 109.20000 553.19674 29.53954 110 7 - - 37.34043 110.40000 560.35727 29.92190 110 7 - - 37.64508 111.60000 567.52074 30.30441 110 7 - - 37.95434 112.80000 574.68726 30.68709 110 7 - - 38.26696 114.00000 581.85690 31.06993 110 7 - - 38.31223 114.00000 588.14290 31.11520 110 7 - - 38.62762 115.20000 595.39322 31.49877 110 6 - - 38.94463 116.40000 602.64683 31.88252 110 6 - - 39.26281 117.60000 609.90377 32.26644 110 6 - - 39.58170 118.80000 617.16409 32.65054 110 6 - - 39.90086 120.00000 624.42783 33.03482 110 6 - + 36.45241 106.80000 616.57170 28.76104 110 6 - + 36.73550 108.00000 624.75810 29.14291 110 6 - + 36.74993 108.00000 546.03907 29.15734 110 7 - + 37.04168 109.20000 553.19674 29.53954 110 7 - + 37.34052 110.40000 560.35727 29.92190 110 7 - + 37.64520 111.60000 567.52074 30.30441 110 7 - + 37.95448 112.80000 574.68726 30.68709 110 7 - + 38.26712 114.00000 581.85690 31.06993 110 7 - + 38.31239 114.00000 588.14290 31.11520 110 7 - + 38.62780 115.20000 595.39322 31.49877 110 6 - + 38.94483 116.40000 602.64683 31.88252 110 6 - + 39.26303 117.60000 609.90377 32.26644 110 6 - + 39.58195 118.80000 617.16409 32.65054 110 6 - + 39.90112 120.00000 624.42783 33.03482 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3590,9 +3422,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 185.668 'Clay rep.' - -6.00 58.613 'Peat rep.' - -8.00 136.666 'Sand 1 rep.' + 0.00 185.670 'Clay rep.' + -6.00 58.617 'Peat rep.' + -8.00 136.663 'Sand 1 rep.' -11.00 109.344 'Sand 2 rep.' [END OF DATA] [END OF TABLE] @@ -3667,28 +3499,28 @@ Depth -5.86667 -6.00000 -6.00000 - -6.12000 - -6.24000 - -6.36000 - -6.48000 - -6.60000 + -6.10000 + -6.20000 + -6.30000 + -6.40000 + -6.50000 + -6.50000 -6.60000 - -6.72000 - -6.84000 - -6.96000 - -7.08000 + -6.70000 + -6.80000 + -6.90000 + -7.00000 + -7.00000 + -7.10000 -7.20000 - -7.20000 - -7.32000 - -7.44000 - -7.56000 - -7.68000 - -7.80000 + -7.30000 + -7.40000 + -7.50000 + -7.50000 + -7.60000 + -7.70000 -7.80000 - -7.84000 - -7.88000 - -7.92000 - -7.96000 + -7.90000 -8.00000 -8.00000 -8.13333 @@ -3771,7 +3603,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 49.53781 210000000.000 1 2 0 'anchor' + -1.50000 39.71069 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3832,22 +3664,22 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 43.67 : Percentage mobilized resistance left - 2.82 : Percentage mobilized resistance right - 591.99 : Effective left - 261.34 : Effective right + 31.34 : Percentage mobilized resistance left + 2.77 : Percentage mobilized resistance right + 597.05 : Effective left + 256.68 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1355.75 : Max effective resistance left + 1905.03 : Max effective resistance left 9257.94 : Max effective resistance right --11931.70 : Max moment left +-16865.06 : Max moment left -77949.37 : Max moment right --4997.53 : Max mobilized moment left --1462.42 : Max mobilized moment right - 320.95 : Vertical force left - 110.29 : Vertical force right - 41.9 : Max mobilized moment percentage left - 1.9 : Max mobilized moment percentage right +-4878.40 : Max mobilized moment left +-1341.83 : Max mobilized moment right + 319.39 : Vertical force left + 106.54 : Vertical force right + 28.9 : Max mobilized moment percentage left + 1.7 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -3862,150 +3694,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00003 0.00024 7.24787 - 0.31381 6.23081 5.90170 - 1.23698 12.18669 4.55547 - 2.74196 17.86672 3.20881 - 4.80106 23.26898 1.86136 - 7.38640 28.39074 0.51277 - 7.38634 28.39241 0.51277 - 10.46985 33.23012 -0.83746 - 14.02275 37.77938 -2.19021 - 18.01619 42.04252 -3.54645 - 22.42235 46.03853 -4.90714 - 27.21534 49.77789 -6.27324 - 27.21552 49.77629 -6.27324 - 32.36913 53.25103 -7.64580 - 37.85664 56.45296 -9.02619 - 43.65037 59.37421 -10.41579 - 49.72187 62.00735 -11.81601 - 56.04200 64.34541 -13.22824 - 56.04279 14.99285 -13.22824 - 57.64644 17.02929 -14.65375 - 59.43839 18.75788 -16.09320 - 61.38756 20.17269 -17.54704 - 63.46228 21.26800 -19.01576 - 65.63057 22.04565 -20.49981 - 65.62932 -178.03301 -20.49981 - 41.95155 -177.09802 -22.50132 - 18.41268 -175.94934 -24.52085 - -4.95878 -174.58699 -26.54837 - -28.13435 -173.01096 -28.57382 - -51.08554 -171.22125 -30.58719 - -51.08489 -171.23373 -30.58719 - -73.78487 -169.23034 -32.57846 - -96.20348 -167.01327 -34.53802 - -118.31224 -164.58252 -36.45635 - -140.08266 -161.93809 -38.32398 - -161.48624 -159.07998 -40.13140 - -161.48619 -159.09942 -40.13140 - -182.49703 -156.02763 -41.86921 - -203.08406 -152.74217 -43.52858 - -223.21878 -149.24302 -45.10086 - -242.87270 -145.53019 -46.57740 - -262.01733 -141.60369 -47.94956 - -262.01805 -41.60351 -47.94956 - -267.29154 -37.46333 -49.20979 - -271.99877 -33.10947 -50.35513 - -276.11124 -28.54192 -51.38383 - -279.60045 -23.76070 -52.29411 - -282.43793 -18.76580 -53.08423 - -282.43791 -18.76204 -53.08423 - -284.59465 -13.55346 -53.75261 - -286.04267 -8.13120 -54.29866 - -286.75347 -2.49526 -54.72208 - -286.69857 3.35436 -55.02258 - -285.84948 9.41766 -55.19985 - -285.84944 9.42074 -55.19985 - -284.17725 15.69771 -55.25385 - -281.65388 22.18837 -55.18569 - -278.25085 28.89271 -54.99684 - -273.93966 35.81072 -54.68878 - -268.69183 42.94242 -54.26297 - -268.69171 42.94385 -54.26297 - -263.13495 49.69358 -53.78055 - -256.75933 56.59143 -53.20651 - -249.54708 63.63739 -52.54336 - -241.48043 70.83148 -51.79363 - -232.54160 78.17368 -50.95982 - -232.54160 78.17403 -50.95982 - -222.71277 85.66436 -50.04468 - -211.97623 93.30280 -49.05199 - -200.31418 101.08936 -47.98581 - -187.70885 109.02403 -46.85021 - -174.14248 117.10683 -45.64924 - -174.14248 117.10706 -45.64924 - -159.59726 125.33798 -44.38723 - -144.05544 133.71701 -43.06964 - -127.49925 142.24416 -41.70223 - -109.91092 150.91943 -40.29077 - -91.27267 159.74282 -38.84103 - -91.27265 159.74294 -38.84103 - -84.82435 162.65398 -38.35031 - -78.26180 165.45540 -37.85632 - -71.58938 168.14693 -37.35930 - -64.81151 170.72810 -36.85951 - -57.93262 173.19832 -36.35722 - -57.93278 173.19983 -36.35722 - -34.39853 179.40430 -34.66818 - -10.20208 183.12375 -32.96440 - 14.32131 184.29708 -31.25634 - 38.82747 182.85265 -29.55446 - 62.96230 178.71454 -27.86919 - 62.96121 178.72586 -27.86919 - 84.92655 151.08714 -26.21182 - 103.33859 125.41677 -24.59102 - 118.45577 101.65335 -23.01335 - 130.52786 79.72835 -21.48536 - 139.79501 59.56617 -20.01361 - 139.79459 59.59608 -20.01361 - 146.57002 42.32808 -18.60329 - 151.15821 26.77317 -17.25599 - 153.78190 12.84633 -15.97288 - 154.65245 0.46181 -14.75515 - 153.96975 -10.46695 -13.60398 - 153.97106 -10.44279 -13.60398 - 152.58022 -17.25819 -12.78451 - 150.54198 -23.39672 -12.00192 - 147.92225 -28.89400 -11.25560 - 144.78340 -33.78491 -10.54492 - 141.18434 -38.10369 -9.86925 - 141.18520 -38.09915 -9.86925 - 137.18737 -41.77093 -9.22783 - 132.84781 -44.93897 -8.61957 - 128.21531 -47.63474 -8.04336 - 123.33559 -49.88859 -7.49809 - 118.25135 -51.72978 -6.98264 - 118.25055 -51.71510 -6.98264 - 111.93050 -53.53362 -6.40179 - 105.42207 -54.86231 -5.85990 - 98.78139 -55.74494 -5.35467 - 92.05948 -56.22258 -4.88379 - 85.30263 -56.33361 -4.44496 - 85.30289 -56.31733 -4.44496 - 78.55984 -56.01505 -4.03583 - 71.87106 -55.41815 -3.65404 - 65.27006 -54.55682 -3.29729 - 58.78690 -53.45859 -2.96329 - 52.44848 -52.14830 -2.64976 - 52.45085 -52.15194 -2.64976 - 46.36866 -49.23205 -2.35439 - 40.63180 -46.39598 -2.07515 - 35.23034 -43.64194 -1.81016 - 30.15816 -40.87728 -1.55754 - 25.42650 -37.94492 -1.31541 - 25.42207 -37.97771 -1.31541 - 21.00093 -35.63265 -1.08197 - 16.88798 -32.84403 -0.85582 - 13.13551 -29.62687 -0.63567 - 9.79419 -25.99316 -0.42022 - 6.91346 -21.95183 -0.20818 - 6.91169 -21.90989 -0.20818 - 4.50506 -18.11795 0.00166 - 2.57818 -13.95591 0.20995 - 1.16543 -9.54919 0.41717 - 0.29616 -4.89780 0.62382 - -0.00024 -0.00123 0.83038 + -0.00003 0.00024 4.41339 + 0.28675 5.70229 3.45075 + 1.13383 11.20635 2.48806 + 2.52138 16.51128 1.52497 + 4.42939 21.61516 0.56115 + 6.83762 26.51527 -0.40372 + 6.83756 26.51693 -0.40372 + 9.72564 31.20975 -1.37010 + 13.07245 35.69091 -2.33883 + 16.85684 39.96278 -3.31081 + 21.05867 44.04441 -4.28696 + 25.65973 47.94632 -5.26819 + 25.65991 47.94469 -5.26819 + 30.64170 51.65899 -6.25550 + 35.98519 55.17758 -7.25022 + 41.67043 58.49266 -8.25371 + 47.67669 61.59691 -9.26735 + 53.98255 64.48345 -10.29250 + 53.98306 24.92235 -10.29250 + 56.61031 27.58473 -11.33046 + 59.49233 30.01679 -12.38210 + 62.60579 32.21263 -13.44817 + 65.92679 34.16651 -14.52942 + 69.43085 35.87287 -15.62660 + 69.43981 -164.18952 -15.62660 + 47.68107 -162.24684 -17.11376 + 26.15907 -160.63991 -18.62140 + 4.83692 -159.18690 -20.14037 + -16.28531 -157.61087 -21.66149 + -37.18315 -155.82116 -23.17561 + -37.19023 -155.88002 -23.17561 + -57.84304 -153.87663 -24.67360 + -78.21450 -151.65956 -26.14673 + -98.27610 -149.22881 -27.58637 + -117.99935 -146.58438 -28.98390 + -137.35577 -143.72627 -30.33072 + -137.35572 -143.74572 -30.33072 + -156.31940 -140.67393 -31.61831 + -174.85927 -137.38846 -32.83870 + -192.94683 -133.88932 -33.98412 + -210.55359 -130.17649 -35.04682 + -227.65106 -126.24998 -36.01903 + -227.65178 -26.24981 -36.01903 + -230.87811 -22.10962 -36.89408 + -233.53818 -17.75576 -37.66988 + -235.60348 -13.18822 -38.34557 + -237.04554 -8.40700 -38.92025 + -237.83585 -3.41209 -39.39305 + -237.83584 -3.40833 -39.39305 + -237.94542 1.80025 -39.76328 + -237.34627 7.22251 -40.03123 + -236.00992 12.85845 -40.19747 + -233.90786 18.70807 -40.26260 + -231.01160 24.77136 -40.22719 + -231.01156 24.77444 -40.22719 + -227.29221 31.05142 -40.09206 + -222.72169 37.54207 -39.85922 + -217.27149 44.24641 -39.53103 + -210.91315 51.16442 -39.10982 + -203.61815 58.29612 -38.59795 + -203.61802 58.29745 -38.59795 + -197.50841 63.91194 -38.15617 + -190.83221 69.62929 -37.66664 + -183.57913 75.44950 -37.13111 + -175.73888 81.37257 -36.55133 + -167.30118 87.39850 -35.92907 + -167.30118 87.39872 -35.92907 + -158.25573 93.52750 -35.26617 + -148.59225 99.75915 -34.56502 + -138.30047 106.09366 -33.82808 + -127.37009 112.53103 -33.05785 + -115.79083 119.07126 -32.25683 + -115.79022 119.06650 -32.25683 + -103.57453 125.04172 -31.42766 + -90.82317 129.77815 -30.57344 + -77.64544 133.71844 -29.69737 + -64.08673 137.44100 -28.80262 + -50.16027 141.07252 -27.89237 + -50.16089 141.06743 -27.89237 + -35.86653 144.80942 -26.96987 + -21.20116 148.48667 -26.03870 + -6.17160 152.09183 -25.10248 + 9.21455 155.61726 -24.16486 + 24.94894 159.05534 -23.22945 + 24.94815 159.06170 -23.22945 + 44.63675 136.49573 -21.99293 + 61.40717 115.28326 -20.77566 + 75.43745 95.38703 -19.58371 + 86.90028 76.76362 -18.42316 + 95.96212 59.36343 -17.30007 + 95.96175 59.38409 -17.30007 + 102.88558 44.69052 -16.21936 + 107.93584 31.27083 -15.18291 + 111.27845 19.06573 -14.19217 + 113.07133 8.01470 -13.24863 + 113.46425 -1.94411 -12.35377 + 113.46426 -1.91996 -12.35377 + 112.68135 -9.64373 -11.50830 + 110.93921 -16.31878 -10.71126 + 108.37355 -22.00661 -9.96158 + 105.11199 -26.76719 -9.25819 + 101.27424 -30.65901 -8.60001 + 101.27519 -30.64322 -8.60001 + 98.10911 -32.62246 -8.13521 + 94.76150 -34.27767 -7.69412 + 91.26363 -35.63123 -7.27590 + 87.64459 -36.70469 -6.87972 + 83.93134 -37.51878 -6.50472 + 83.93220 -37.51994 -6.50472 + 80.15681 -37.95012 -6.15004 + 76.34943 -38.16269 -5.81473 + 72.53092 -38.17580 -5.49787 + 68.72035 -38.00671 -5.19855 + 64.93510 -37.67180 -4.91583 + 64.93450 -37.66427 -4.91583 + 60.44832 -37.07468 -4.59720 + 56.04347 -36.31266 -4.29959 + 51.73924 -35.40169 -4.02153 + 47.55216 -34.36349 -3.76151 + 43.49629 -33.21806 -3.51805 + 43.49645 -33.20901 -3.51805 + 39.59134 -31.86341 -3.28966 + 35.85197 -30.44928 -3.07505 + 32.28564 -28.98180 -2.87297 + 28.89792 -27.47472 -2.68218 + 25.69281 -25.94031 -2.50146 + 25.69308 -25.93565 -2.50146 + 22.66984 -24.44934 -2.32959 + 19.82562 -22.95337 -2.16561 + 17.16108 -21.45618 -2.00859 + 14.67589 -19.96518 -1.85760 + 12.36928 -18.47796 -1.71172 + 12.36800 -18.50093 -1.71172 + 10.21927 -17.27955 -1.57006 + 8.22837 -15.87181 -1.43194 + 6.41720 -14.28509 -1.29676 + 4.80687 -12.52531 -1.16386 + 3.41787 -10.59693 -1.03264 + 3.41795 -10.59561 -1.03264 + 2.24867 -8.86011 -0.90251 + 1.29924 -6.93184 -0.77315 + 0.59269 -4.81203 -0.64433 + 0.15198 -2.50140 -0.51579 + -0.00001 -0.00009 -0.38730 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4082,33 +3914,33 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 63.67741 0.00000 66.15588 5.67442 110 96 - - 60.93409 0.00000 72.28815 6.52558 110 84 - - 58.18337 0.00000 78.42042 7.37675 110 74 - - 55.41730 0.00000 84.55270 8.22791 110 66 - - 52.62791 0.00000 90.68497 9.07907 110 58 - - 49.80721 0.00000 96.81724 9.93024 110 51 - - 49.80721 0.00000 96.81724 9.93024 110 51 - - 46.94698 0.00000 102.94951 10.78140 110 46 - - 44.03820 0.00000 109.08179 11.63256 110 40 - - 41.22446 0.00000 115.21406 12.48373 110 36 - - 38.69590 0.00000 121.34633 13.33489 110 32 - - 36.09126 0.00000 127.47860 14.18605 110 28 - - 36.09126 0.00000 127.47860 14.18605 110 28 - - 33.40357 0.00000 133.61087 15.03722 110 25 - - 30.63498 0.00000 139.74315 15.88838 110 22 - - 27.78994 0.00000 145.87542 16.73954 110 19 - - 24.87292 0.00000 152.00769 17.59071 110 16 - - 21.88836 0.00000 158.13996 18.44187 110 14 - - 21.88836 0.00000 158.13996 18.44187 110 14 - - 18.84033 0.00000 164.27224 19.29303 110 0 - - 15.73157 0.00000 170.40451 20.14419 110 0 - - 12.56455 0.00000 176.53678 20.99536 110 0 - - 9.34174 0.00000 182.66905 21.84652 110 0 - - 6.21116 0.00000 188.80132 22.69768 1 0 A - 6.21116 0.00000 188.80132 22.69768 1 0 A - 6.48043 1.33333 192.07187 23.15164 1 0 A - 6.74969 2.66667 195.34241 23.60559 1 0 A + 58.00865 0.00000 66.15588 5.67442 110 88 - + 56.03239 0.00000 72.28815 6.52558 110 78 - + 54.04876 0.00000 78.42042 7.37675 110 69 - + 52.04985 0.00000 84.55270 8.22791 110 62 - + 50.02772 0.00000 90.68497 9.07907 110 55 - + 47.97448 0.00000 96.81724 9.93024 110 50 - + 47.97448 0.00000 96.81724 9.93024 110 50 - + 45.88196 0.00000 102.94951 10.78140 110 45 - + 43.74124 0.00000 109.08179 11.63256 110 40 - + 41.69603 0.00000 115.21406 12.48373 110 36 - + 39.93655 0.00000 121.34633 13.33489 110 33 - + 38.10165 0.00000 127.47860 14.18605 110 30 - + 38.10165 0.00000 127.47860 14.18605 110 30 - + 36.18448 0.00000 133.61087 15.03722 110 27 - + 34.18723 0.00000 139.74315 15.88838 110 24 - + 32.11443 0.00000 145.87542 16.73954 110 22 - + 29.97057 0.00000 152.00769 17.59071 110 20 - + 27.76018 0.00000 158.13996 18.44187 110 18 - + 27.76018 0.00000 158.13996 18.44187 110 18 - + 25.48726 0.00000 164.27224 19.29303 110 16 - + 23.15413 0.00000 170.40451 20.14419 110 14 - + 20.76267 0.00000 176.53678 20.99536 110 0 - + 18.31478 0.00000 182.66905 21.84652 110 0 - + 15.81239 0.00000 188.80132 22.69768 110 0 - + 15.81239 0.00000 188.80132 22.69768 110 0 - + 11.99445 1.33333 192.07187 23.15164 110 0 - + 8.10951 2.66667 195.34241 23.60559 110 0 - 7.01895 4.00000 198.61296 24.05955 1 0 A 7.28821 5.33333 201.88350 24.51350 1 0 A 7.55747 6.66667 205.15405 24.96745 1 0 A @@ -4143,28 +3975,28 @@ Status character 14.01974 38.66667 283.64713 35.86234 1 0 A 14.28900 40.00000 286.91768 36.31630 1 0 A 15.63059 40.00000 308.37662 32.31976 1 0 A - 15.66491 41.20000 308.93461 32.38036 1 0 A - 15.69923 42.40000 309.49260 32.44096 1 0 A - 15.73355 43.60000 310.05059 32.50156 1 0 A - 15.76787 44.80000 310.60858 32.56216 1 0 A + 15.65919 41.00000 308.84161 32.37026 1 0 A + 15.68779 42.00000 309.30660 32.42076 1 0 A + 15.71639 43.00000 309.77159 32.47126 1 0 A + 15.74499 44.00000 310.23659 32.52176 1 0 A + 15.77359 45.00000 310.70158 32.57226 1 0 A + 15.77359 45.00000 310.70158 32.57226 1 0 A 15.80219 46.00000 311.16657 32.62276 1 0 A - 15.80219 46.00000 311.16657 32.62276 1 0 A - 15.83651 47.20000 311.72456 32.68335 1 0 A - 15.87083 48.40000 312.28255 32.74395 1 0 A - 15.90515 49.60000 312.84054 32.80455 1 0 A - 15.93948 50.80000 313.39853 32.86515 1 0 A - 15.97380 52.00000 313.95652 32.92575 1 0 A + 15.83079 47.00000 311.63156 32.67326 1 0 A + 15.85939 48.00000 312.09655 32.72375 1 0 A + 15.88799 49.00000 312.56155 32.77425 1 0 A + 15.91659 50.00000 313.02654 32.82475 1 0 A + 15.91659 50.00000 313.02654 32.82475 1 0 A + 15.94520 51.00000 313.49153 32.87525 1 0 A 15.97380 52.00000 313.95652 32.92575 1 0 A - 16.00812 53.20000 314.51451 32.98635 1 0 A - 16.04244 54.40000 315.07250 33.04695 1 0 A - 16.07676 55.60000 315.63049 33.10755 1 0 A - 16.11108 56.80000 316.18848 33.16815 1 0 A + 16.00240 53.00000 314.42151 32.97625 1 0 A + 16.03100 54.00000 314.88650 33.02675 1 0 A + 16.05960 55.00000 315.35150 33.07725 1 0 A + 16.05960 55.00000 315.35150 33.07725 1 0 A + 16.08820 56.00000 315.81649 33.12775 1 0 A + 16.11680 57.00000 316.28148 33.17825 1 0 A 16.14540 58.00000 316.74647 33.22875 1 0 A - 16.14540 58.00000 316.74647 33.22875 1 0 A - 16.15684 58.40000 316.93247 33.24895 1 0 A - 16.16828 58.80000 317.11847 33.26915 1 0 A - 16.17972 59.20000 317.30446 33.28935 1 0 A - 16.19116 59.60000 317.49046 33.30955 1 0 A + 16.17400 59.00000 317.21146 33.27925 1 0 A 16.20260 60.00000 317.67646 33.32975 1 0 A 13.18739 60.00000 945.70069 26.36305 1 0 A 13.42716 61.33333 962.89525 26.84238 1 0 A @@ -4212,20 +4044,20 @@ Status character 16.38542 103.20000 1315.70093 32.96469 1 0 A 16.55415 104.40000 1329.24934 33.30415 1 0 A 16.72287 105.60000 1342.79775 33.64360 1 0 A - 18.40766 106.80000 1356.34615 33.98305 110 0 - - 21.16845 108.00000 1369.89456 34.32251 110 0 - - 21.16845 108.00000 1369.89456 34.32251 110 0 - - 23.84228 109.20000 1383.44297 34.66196 110 0 - - 26.44319 110.40000 1396.99138 35.00141 110 0 - - 28.98414 111.60000 1410.53979 35.34087 110 0 - - 31.47808 112.80000 1424.08819 35.68032 110 0 - - 33.93798 114.00000 1437.63660 36.01977 110 0 - - 33.93798 114.00000 1437.63660 36.01977 110 0 - - 36.37582 115.20000 1451.18501 36.35923 110 3 - - 38.79817 116.40000 1464.73342 36.69868 110 3 - - 41.20988 117.60000 1478.28182 37.03813 110 3 - - 43.61583 118.80000 1491.83023 37.37759 110 3 - - 46.02085 120.00000 1505.37864 37.71704 110 3 - + 16.89160 106.80000 1356.34615 33.98305 1 0 A + 17.20533 108.00000 1369.89456 34.32251 110 0 - + 17.20533 108.00000 1369.89456 34.32251 110 0 - + 18.96139 109.20000 1383.44297 34.66196 110 0 - + 20.68197 110.40000 1396.99138 35.00141 110 0 - + 22.37331 111.60000 1410.53979 35.34087 110 0 - + 24.04170 112.80000 1424.08819 35.68032 110 0 - + 25.69337 114.00000 1437.63660 36.01977 110 0 - + 25.69337 114.00000 1437.63660 36.01977 110 0 - + 27.33412 115.20000 1451.18501 36.35923 110 0 - + 28.96714 116.40000 1464.73342 36.69868 110 0 - + 30.59486 117.60000 1478.28182 37.03813 110 0 - + 32.21967 118.80000 1491.83023 37.37759 110 0 - + 33.84400 120.00000 1505.37864 37.71704 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4238,10 +4070,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 112.398 'Clay' + 0.00 117.991 'Clay' -6.00 31.833 'Peat' -8.00 47.654 'Sand 1' - -11.00 69.453 'Sand 2' + -11.00 59.207 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4256,7 +4088,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Stage 3 passive @@ -4278,7 +4110,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 0.00 0.00 10.00 11.00 0.25 21.80 21.80 29.67 0.29 0.50 4.65 'Peat -7.8m à -8m' + -6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -10.00 0.00 20.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 20.00 80.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -4308,7 +4140,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -4317,24 +4149,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.14100 30.62200 1.57691 0.00767 - -8.66667 66.57200 30.42600 47.07818 1.02891 - -9.33333 81.80000 30.41900 443.95909 3.55983 - -10.00000 79.59700 45.38400 633.35574 7.98206 - -10.50000 78.55400 42.78700 777.72352 14.59321 - -11.00000 77.93000 41.04600 894.64375 21.62771 - -11.60000 76.46600 39.38200 1087.02671 29.00672 - -12.20000 78.74400 38.26000 1312.29587 36.42199 - -12.80000 78.61500 37.47700 1375.85104 43.62736 - -13.40000 78.58800 36.92500 1390.03039 50.49582 - -14.00000 78.65600 35.04000 1354.93771 56.06526 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.50000 71.51900 0.00000 16.82497 0.00000 + -8.00000 63.43600 0.00000 58.98312 0.00000 + -8.66667 79.28700 29.49400 414.74132 1.10130 + -9.33333 79.78200 48.12300 604.70176 7.87842 + -10.00000 78.22300 44.85200 825.72483 20.31387 + -10.50000 77.44400 40.70800 997.27315 29.15349 + -11.00000 76.95000 39.42200 1143.41762 37.43145 + -11.60000 75.85600 38.07700 1386.37867 45.78354 + -12.20000 77.88700 37.13800 1686.59498 54.03731 + -12.80000 77.75500 36.46200 1807.77493 62.01213 + -13.40000 77.68300 35.97000 1880.36381 69.60923 + -14.00000 77.66100 34.37600 1904.54266 76.22655 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -4345,17 +4178,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00149 7.88454 0.03836 2.54089 0.03830 7.87278 - -8.33333 7.87484 68.25191 1.53186 1.67627 0.19453 8.66709 - -9.00000 20.73705 595.32136 3.79637 1.21441 0.18307 28.70810 - -9.66667 34.59108 284.09498 6.63334 0.90078 0.19176 8.21295 - -10.25000 39.67169 288.73556 13.22232 0.77940 0.33329 7.27813 - -10.75000 35.68543 233.84047 14.06898 0.75036 0.39425 6.55283 - -11.30000 30.87123 320.63827 12.29835 0.65547 0.39838 10.38631 - -11.90000 25.15684 375.44861 12.35878 0.63051 0.49127 14.92432 - -12.50000 19.05875 23.68991 12.00896 0.63010 0.63010 1.24299 - -13.10000 12.67808 23.68991 11.44743 0.90293 0.90293 1.86857 - -13.70000 6.09850 23.68991 9.28239 1.52208 1.52208 3.88454 + -7.25000 2.52296 33.64994 0.00000 2.49382 0.00000 13.33750 + -7.75000 8.03375 84.31630 0.00000 2.13015 0.00000 10.49525 + -8.33333 17.86675 533.63731 1.65196 1.37349 0.09246 29.86763 + -9.00000 31.77814 284.94065 10.16567 0.93303 0.31990 8.96656 + -9.66667 45.45622 331.53461 18.65317 0.70723 0.41035 7.29349 + -10.25000 49.91403 343.09664 17.67924 0.61947 0.35419 6.87375 + -10.75000 45.34373 292.28893 16.55593 0.58887 0.36512 6.44607 + -11.30000 39.96152 404.93509 13.92015 0.49435 0.34834 10.13313 + -11.90000 33.75871 500.36052 13.75628 0.46881 0.40749 14.82167 + -12.50000 27.30345 201.96658 13.29137 0.48680 0.48680 7.39711 + -13.10000 20.67267 120.98146 12.66184 0.61249 0.61249 5.85224 + -13.70000 13.92405 40.29809 11.02886 0.79207 0.79207 2.89414 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -4444,78 +4278,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14987 0.00000 3.14987 1.01660 202 100 P - 6.30425 0.00000 6.30425 2.03465 202 100 P - 9.46763 0.00000 9.46763 3.05561 202 100 P - 12.64439 0.00000 12.64439 4.08089 202 100 P - 15.83876 0.00000 15.83876 5.11185 202 100 P - 17.43677 0.00000 17.43677 3.37237 202 100 P - 37.44406 0.00000 37.44406 7.24190 202 100 P - 57.85830 0.00000 57.85830 11.19014 202 100 P - 78.78207 0.00000 78.78207 15.23692 202 100 P - 100.27078 0.00000 100.27078 19.39296 202 100 P - 122.33362 0.00000 122.33362 23.66005 202 100 P - 295.83295 0.00000 405.20728 17.14102 110 73 - - 282.42678 0.00000 480.08661 20.30855 110 59 - - 269.45393 0.00000 556.56462 23.54371 110 48 - - 256.96868 0.00000 634.37446 26.83521 110 41 - - 245.02395 0.00000 713.21662 30.17038 110 34 - - 233.67243 0.00000 792.78573 33.53630 110 29 - - 225.01143 0.00000 226.80403 24.87531 110 99 - - 213.41853 0.00000 249.69214 27.38562 110 85 - - 202.46116 0.00000 272.62915 29.90129 110 74 - - 192.14390 0.00000 295.54912 32.41510 110 65 - - 182.47246 0.00000 318.39662 34.92096 110 57 - - 173.45372 0.00000 341.12663 37.41393 110 51 - - 168.41215 0.00000 302.29833 32.37236 110 56 - - 159.64354 3.00000 296.93923 31.79847 110 54 - - 151.23452 6.00000 291.49351 31.21530 110 52 - - 143.17799 9.00000 285.95308 30.62199 110 50 - - 135.46704 12.00000 280.31183 30.01788 110 48 - - 128.09497 15.00000 274.56536 29.40251 110 47 - - 126.99978 15.00000 247.20370 28.30732 110 51 - - 119.98199 18.00000 241.93256 27.70372 110 50 - - 113.28451 21.00000 236.56264 27.08881 110 48 - - 106.89616 24.00000 231.09349 26.46254 110 46 - - 100.80584 27.00000 225.52547 25.82494 110 45 - - 95.00255 30.00000 219.85965 25.17615 110 43 - - 91.81869 30.00000 348.48023 21.99230 110 26 - - 85.31746 33.60000 337.50283 21.29952 110 25 - - 79.19230 37.20000 326.31178 20.59326 110 24 - - 73.42066 40.80000 314.91403 19.87396 110 23 - - 67.98001 44.40000 303.31738 19.14211 110 22 - - 62.84787 48.00000 291.53022 18.39823 110 22 - - 62.14736 48.00000 418.90609 17.69772 110 15 - - 57.32944 51.60000 401.70769 16.97113 110 14 - - 52.77440 55.20000 384.26100 16.23405 110 14 - - 48.45989 58.80000 366.57900 15.48703 110 13 - - 44.36353 62.40000 348.67461 14.73062 110 13 - - 40.46295 66.00000 330.56055 13.96535 110 12 - - 27.53122 66.00000 27.53122 13.95621 202 100 P - 26.00613 69.60000 26.00613 13.18311 202 100 P - 24.46563 73.20000 24.46563 12.40220 202 100 P - 22.91069 76.80000 22.91069 11.61396 202 100 P - 21.34223 80.40000 21.34223 10.81887 202 100 P - 19.76115 84.00000 19.76115 10.01739 202 100 P - 27.50889 84.00000 29.70662 14.35483 110 93 - - 24.01745 87.60000 27.31213 13.19776 110 88 - - 20.59097 91.20000 24.90119 12.03275 110 83 - - 17.21707 94.80000 22.47494 10.86034 110 77 - - 13.88330 98.40000 20.03449 9.68106 110 69 - - 10.57722 102.00000 17.58087 8.49543 110 60 - - 16.40259 102.00000 36.54860 14.32080 110 45 - - 12.31223 105.60000 31.42247 12.31223 1 39 A - 10.29448 109.20000 26.27291 10.29448 1 39 A - 8.26826 112.80000 21.10171 8.26826 1 39 A - 6.23422 116.40000 15.91057 6.23422 1 39 A - 4.19299 120.00000 10.70106 4.19299 1 39 A + 13.35742 0.00000 13.35742 2.49755 202 100 P + 26.83289 0.00000 26.83289 5.01716 202 100 P + 31.33744 0.00000 40.53704 7.57954 110 77 - + 33.24486 0.00000 54.56658 10.20276 110 61 - + 35.21523 0.00000 68.99916 12.90134 110 51 - + 33.33385 0.00000 54.29531 11.01996 110 61 - + 34.97412 0.00000 66.01305 13.39823 110 53 - + 36.68579 0.00000 78.11676 15.85483 110 47 - + 38.47326 0.00000 90.61378 18.39127 110 42 - + 40.33764 0.00000 103.49534 21.00575 110 39 - + 42.27731 0.00000 116.73909 23.69375 110 36 - + 247.57183 0.00000 332.21870 15.27736 110 75 - + 238.86560 0.00000 411.78566 18.93631 110 58 - + 230.41558 0.00000 492.73826 22.65899 110 47 - + 222.26816 0.00000 574.76487 26.43105 110 39 - + 214.46945 0.00000 657.54779 30.23790 110 33 - + 207.06623 0.00000 740.78380 34.06557 110 28 - + 196.14186 0.00000 222.39072 23.14120 110 88 - + 187.94059 0.00000 247.43239 25.74695 110 76 - + 180.17983 0.00000 272.45546 28.35076 110 66 - + 172.86806 0.00000 297.39941 30.94635 110 58 - + 166.01490 0.00000 322.21508 33.52858 110 52 - + 159.63112 0.00000 346.86394 36.09345 110 46 - + 150.89628 0.00000 282.14268 27.35861 110 53 - + 144.37033 0.00000 302.03303 29.28733 110 48 - + 138.31159 0.00000 321.74723 31.19896 110 43 - + 132.70826 0.00000 341.27417 33.09243 110 39 - + 127.54903 0.00000 360.60745 34.96713 110 35 - + 122.82295 0.00000 379.74460 36.82281 110 32 - + 118.25347 0.00000 357.89026 32.25332 110 33 - + 113.07904 3.00000 352.04955 31.72696 110 32 - + 108.13253 6.00000 346.10625 31.19134 110 31 - + 103.40565 9.00000 340.06206 30.64664 110 30 - + 98.89021 12.00000 333.91919 30.09304 110 30 - + 94.57801 15.00000 327.68019 29.53077 110 29 - + 93.11951 15.00000 307.29216 28.07227 110 30 - + 89.03018 18.00000 301.35390 27.52979 110 30 - + 85.12687 21.00000 295.33109 26.97958 110 29 - + 81.40064 24.00000 289.22679 26.42193 110 28 - + 77.84259 27.00000 283.04415 25.85713 110 28 - + 74.44381 30.00000 276.78639 25.28546 110 27 - + 70.38521 30.00000 435.10401 21.22687 110 16 - + 66.61568 33.60000 423.15079 20.64372 110 16 - + 63.04900 37.20000 411.04365 20.05306 110 15 - + 59.67063 40.80000 398.79130 19.45532 110 15 - + 56.46606 44.40000 386.40224 18.85091 110 15 - + 53.42072 48.00000 373.88478 18.24024 110 14 - + 52.47831 48.00000 546.87932 17.29782 110 10 - + 49.60973 51.60000 528.39402 16.71313 110 9 - + 46.87370 55.20000 509.74394 16.12323 110 9 - + 44.25814 58.80000 490.93993 15.52846 110 9 - + 41.75099 62.40000 471.99231 14.92914 110 9 - + 39.34015 66.00000 452.91097 14.32560 110 9 - + 39.88993 66.00000 226.03605 14.87538 110 18 - + 37.54050 69.60000 216.45098 14.24458 110 17 - + 35.26613 73.20000 206.80825 13.61000 110 17 - + 33.05783 76.80000 197.11206 12.97189 110 17 - + 30.90657 80.40000 187.36634 12.33053 110 16 - + 28.80333 84.00000 177.57481 11.68615 110 16 - + 31.82063 84.00000 140.48876 14.70346 110 23 - + 29.58977 87.60000 132.70869 13.88920 110 22 - + 27.39116 91.20000 124.89775 13.07171 110 22 - + 25.21880 94.80000 117.05835 12.25125 110 22 - + 23.06667 98.40000 109.19280 11.42804 110 21 - + 20.92872 102.00000 101.30321 10.60232 110 21 - + 24.03731 102.00000 50.09795 13.71091 110 48 - + 21.66521 105.60000 46.18537 12.64011 110 47 - + 19.29811 109.20000 42.26283 11.56657 110 46 - + 16.93383 112.80000 38.33117 10.49055 110 44 - + 14.57017 116.40000 34.39120 9.41225 110 42 - + 12.20492 120.00000 30.44366 8.33188 110 40 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4528,10 +4362,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 1.579 'Peat -7.8m à -8m' - -8.00 353.679 'Sand 1' - -10.00 128.975 'Sand 1' - -11.00 107.761 'Sand 2' + -6.00 31.066 'Peat' + -8.00 359.737 'Sand 1' + -10.00 94.711 'Sand 1' + -11.00 111.534 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4554,9 +4388,9 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 25.52274 32.25763 -17.04093 0.00000 14.37237 1 12 4 1.000 0 0 - -150.00000 -150.00000 -24.59084 10.99937 14.83617 2 12 4 1.000 0 0 - -286.75347 184.29708 -55.25385 41.88445 43.66529 3 12 4 1.000 0 0 + 25.52459 32.25369 -17.04077 0.00000 14.37239 1 12 4 1.000 0 0 + -150.00000 -150.00000 -24.59094 10.99910 14.83613 2 12 4 1.000 0 0 + -237.94542 -164.18952 -40.26260 28.92609 31.34063 3 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -4578,7 +4412,7 @@ AnchorName [END OF COLUMN INDICATION] [DATA] 2 12 7 4 1.000 80.00000 0 1 0 0 'anchor' - 3 12 7 4 1.000 49.53781 0 1 0 0 'anchor' + 3 12 7 4 1.000 39.71069 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -4595,11 +4429,11 @@ Force [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-286.75347 -MaximumShearForce=184.29708 -MaximumDisplacement=-55.25385 -MaximumPercentageMobilisedMoment=41.88445 -MaximumPercentageMobilisedResistance=43.66529 +MaximumMoment=-237.94542 +MaximumShearForce=-164.18952 +MaximumDisplacement=-40.26260 +MaximumPercentageMobilisedMoment=28.92609 +MaximumPercentageMobilisedResistance=31.34063 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shi index 8d6c31c7..01e20ef8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:08 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -19,7 +19,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 14 = number of items + 8 = number of items [SOIL] Clay SoilColor=7648893 @@ -70,251 +70,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Clay rep. SoilColor=5866717 SoilSoilType=2 @@ -413,55 +168,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat rep. SoilColor=7187949 SoilSoilType=2 @@ -961,33 +667,29 @@ Stage 1 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -0.40 0.00 0.00 Clay -0.4m à -1m - 2 -1.00 0.00 0.00 Clay -1m à -1.5m - 3 -1.50 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 2 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 3 passive 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m + 1 -6.00 0.00 0.00 Peat 2 -8.00 0.00 0.00 Sand 1 3 -10.00 0.00 20.00 Sand 1 4 -11.00 20.00 80.00 Sand 2 @@ -1030,7 +732,7 @@ Representative profile 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.00 4 1 GLright1 rep 0.00 Standard deviation 2 Distribution type @@ -1167,6 +869,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1176,6 +879,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1185,6 +889,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1208,7 +913,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1219,8 +924,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1231,25 +938,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1257,53 +965,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1311,35 +1021,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1358,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1373,10 +1085,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1385,10 +1097,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1398,12 +1111,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1412,7 +1125,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1427,10 +1141,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1439,33 +1153,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1473,26 +1245,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1500,16 +1301,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1520,6 +1349,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1527,8 +1357,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1536,7 +1366,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1547,6 +1377,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1554,8 +1385,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1563,7 +1394,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1574,6 +1405,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1581,8 +1413,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shd index 9f47338e..41f7069a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -20,7 +20,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 14 = number of items + 8 = number of items [SOIL] Clay SoilColor=7648893 @@ -71,251 +71,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Clay rep. SoilColor=5866717 SoilSoilType=2 @@ -414,55 +169,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat rep. SoilColor=7187949 SoilSoilType=2 @@ -962,33 +668,29 @@ Stage 1 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -0.40 0.00 0.00 Clay -0.4m à -1m - 2 -1.00 0.00 0.00 Clay -1m à -1.5m - 3 -1.50 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 2 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 3 passive 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m + 1 6.00 0.00 0.00 Peat 2 -8.00 0.00 0.00 Sand 1 3 -10.00 0.00 20.00 Sand 1 4 -11.00 20.00 80.00 Sand 2 @@ -1031,7 +733,7 @@ Representative profile 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.20 4 1 GLright1 rep 0.00 Standard deviation 2 Distribution type @@ -1168,6 +870,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1177,6 +880,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1186,6 +890,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1209,7 +914,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1220,8 +925,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1232,25 +939,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1258,53 +966,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1312,35 +1022,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1359,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1374,10 +1086,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1386,10 +1098,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1399,12 +1112,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1413,7 +1126,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1428,10 +1142,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1440,33 +1154,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1474,26 +1246,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1501,16 +1302,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1521,6 +1350,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1528,8 +1358,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1537,7 +1367,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1548,6 +1378,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1555,8 +1386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1564,7 +1395,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1575,6 +1406,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1582,8 +1414,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1715,16 +1547,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -1863,150 +1695,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -17.04093 - 0.00000 0.00000 -16.89514 - 0.00000 0.00000 -16.74935 - 0.00000 0.00000 -16.60356 - 0.00000 0.00000 -16.45778 - 0.00000 0.00000 -16.31199 - 0.00000 0.00000 -16.31199 - 0.00000 0.00000 -16.16620 - 0.00000 0.00000 -16.02042 - 0.00000 0.00000 -15.87463 - 0.00000 0.00000 -15.72884 - 0.00000 0.00000 -15.58305 - 0.00020 -0.00472 -15.58305 - 0.00128 0.04184 -15.43726 - 0.01395 0.24981 -15.29147 - 0.05893 0.68855 -15.14568 - 0.15941 1.36005 -14.99992 - 0.33876 2.26598 -14.85420 - 0.33873 2.26585 -14.85420 - 0.60552 3.10678 -14.70854 - 0.96747 4.16924 -14.56302 - 1.44678 5.45387 -14.41776 - 2.06566 6.96101 -14.27288 - 2.84640 8.69078 -14.12850 - 2.84638 8.69100 -14.12850 - 3.88959 6.98936 -13.93711 - 4.71875 5.47993 -13.74741 - 5.35937 4.16091 -13.55965 - 5.83668 3.03001 -13.37414 - 6.17561 2.08454 -13.19114 - 6.17560 2.08511 -13.19114 - 6.36643 0.80535 -13.01088 - 6.39780 -0.30709 -12.83336 - 6.29183 -1.25534 -12.65853 - 6.07020 -2.04255 -12.48636 - 5.75417 -2.67189 -12.31680 - 5.75418 -2.67136 -12.31680 - 5.33132 -3.64767 -12.14978 - 4.78778 -4.48200 -11.98504 - 4.14230 -5.17709 -11.82233 - 3.41329 -5.73548 -11.66136 - 2.61881 -6.15955 -11.50187 - 2.61883 -6.15931 -11.50187 - 1.74727 -6.89351 -11.34354 - 0.78602 -7.50484 -11.18596 - -0.24863 -7.99487 -11.02870 - -1.34061 -8.36488 -10.87130 - -2.47398 -8.61586 -10.71333 - -2.47395 -8.61611 -10.71333 - -3.65787 -9.12387 -10.55433 - -4.90199 -9.51918 -10.39375 - -6.19132 -9.80203 -10.23105 - -7.51085 -9.97209 -10.06568 - -8.84550 -10.02870 -9.89708 - -8.84547 -10.02955 -9.89708 - -10.20094 -10.28394 -9.72469 - -11.58289 -10.42657 -9.54792 - -12.97631 -10.45570 -9.36617 - -14.36594 -10.36924 -9.17884 - -15.73620 -10.16475 -8.98534 - -15.73624 -10.16564 -8.98534 - -16.81463 -7.80068 -8.80536 - -17.60675 -5.39421 -8.61952 - -18.10755 -2.94549 -8.42764 - -18.31194 -0.45373 -8.22955 - -18.21469 2.08191 -8.02509 - -18.21470 2.08142 -8.02509 - -17.82005 4.50347 -7.81415 - -17.13205 6.97081 -7.59700 - -16.14521 9.48428 -7.37399 - -14.85395 12.04469 -7.14545 - -13.25258 14.65276 -6.91173 - -13.25259 14.65241 -6.91173 - -11.34351 17.17364 -6.67326 - -9.12897 19.74352 -6.43084 - -6.60310 22.36247 -6.18534 - -3.76000 25.03077 -5.93764 - -0.59374 27.74852 -5.68863 - -0.59375 27.74845 -5.68863 - 0.53398 28.63911 -5.60549 - 1.69745 29.53524 -5.52238 - 2.89687 30.43682 -5.43934 - 4.13247 31.34386 -5.35641 - 5.40446 32.25632 -5.27363 - 5.40429 32.25763 -5.27363 - 9.41265 27.92669 -4.99965 - 12.86699 23.94641 -4.72972 - 15.81366 20.31036 -4.46512 - 18.29803 17.01043 -4.20713 - 20.36427 14.03679 -3.95703 - 20.36417 14.04149 -3.95703 - 22.03575 11.08288 -3.71589 - 23.33286 8.42250 -3.48423 - 24.29442 6.04729 -3.26247 - 24.95754 3.94367 -3.05103 - 25.35751 2.09748 -2.85033 - 25.35749 2.10344 -2.85033 - 25.52274 0.41437 -2.66065 - 25.47807 -1.04778 -2.48195 - 25.25277 -2.29766 -2.31412 - 24.87415 -3.34981 -2.15708 - 24.36763 -4.21863 -2.01075 - 24.36787 -4.21446 -2.01075 - 23.91609 -4.80589 -1.90792 - 23.40965 -5.30859 -1.81087 - 22.85714 -5.72829 -1.71947 - 22.26657 -6.07062 -1.63359 - 21.64541 -6.34104 -1.55309 - 21.64623 -6.34758 -1.55309 - 20.98288 -6.90921 -1.47784 - 20.26754 -7.37606 -1.40765 - 19.51196 -7.71409 -1.34236 - 18.72887 -7.92796 -1.28178 - 17.93020 -8.02695 -1.22572 - 17.92971 -8.02476 -1.22572 - 16.93898 -8.46300 -1.16417 - 15.90415 -8.76215 -1.10852 - 14.84108 -8.93596 -1.05839 - 13.76402 -8.99728 -1.01343 - 12.68575 -8.95808 -0.97325 - 12.68583 -8.95366 -0.97325 - 11.61582 -8.86574 -0.93749 - 10.56120 -8.69894 -0.90577 - 9.53086 -8.46257 -0.87774 - 8.53263 -8.16506 -0.85303 - 7.57339 -7.81399 -0.83130 - 7.57345 -7.81133 -0.83130 - 6.65757 -7.44611 -0.81218 - 5.78801 -7.04030 -0.79538 - 4.96932 -6.59913 -0.78061 - 4.20545 -6.12716 -0.76758 - 3.49988 -5.62825 -0.75602 - 3.49992 -5.62699 -0.75602 - 2.85427 -5.13027 -0.74565 - 2.26949 -4.61268 -0.73627 - 1.74797 -4.07639 -0.72771 - 1.29184 -3.52313 -0.71977 - 0.90305 -2.95421 -0.71228 - 0.90307 -2.95386 -0.71228 - 0.58227 -2.39043 -0.70507 - 0.32993 -1.81300 -0.69807 - 0.14769 -1.22198 -0.69120 - 0.03719 -0.61761 -0.68441 - 0.00000 -0.00002 -0.67762 + 0.00000 0.00000 -17.04076 + 0.00000 0.00000 -16.89499 + 0.00000 0.00000 -16.74921 + 0.00000 0.00000 -16.60343 + 0.00000 0.00000 -16.45765 + 0.00000 0.00000 -16.31187 + 0.00000 0.00000 -16.31187 + 0.00000 0.00000 -16.16609 + 0.00000 0.00000 -16.02032 + 0.00000 0.00000 -15.87454 + 0.00000 0.00000 -15.72876 + 0.00000 0.00000 -15.58298 + 0.00020 -0.00472 -15.58298 + 0.00128 0.04185 -15.43720 + 0.01395 0.24983 -15.29141 + 0.05894 0.68858 -15.14563 + 0.15942 1.36008 -14.99988 + 0.33877 2.26602 -14.85417 + 0.33874 2.26589 -14.85417 + 0.60554 3.10683 -14.70852 + 0.96749 4.16930 -14.56301 + 1.44680 5.45392 -14.41776 + 2.06570 6.96106 -14.27288 + 2.84644 8.69083 -14.12851 + 2.84641 8.69105 -14.12851 + 3.88963 6.98940 -13.93714 + 4.71879 5.47995 -13.74745 + 5.35941 4.16091 -13.55970 + 5.83673 3.02998 -13.37420 + 6.17565 2.08447 -13.19122 + 6.17564 2.08504 -13.19122 + 6.36645 0.80524 -13.01097 + 6.39781 -0.30725 -12.83345 + 6.29182 -1.25555 -12.65864 + 6.07015 -2.04283 -12.48648 + 5.75408 -2.67224 -12.31693 + 5.75409 -2.67170 -12.31693 + 5.33118 -3.64809 -12.14992 + 4.78758 -4.48250 -11.98520 + 4.14203 -5.17768 -11.82250 + 3.41294 -5.73617 -11.66154 + 2.61836 -6.16033 -11.50206 + 2.61837 -6.16009 -11.50206 + 1.74670 -6.89439 -11.34374 + 0.78533 -7.50584 -11.18618 + -0.24947 -7.99599 -11.02892 + -1.34160 -8.36612 -10.87154 + -2.47514 -8.61723 -10.71358 + -2.47512 -8.61747 -10.71358 + -3.65922 -9.12537 -10.55458 + -4.90355 -9.52082 -10.39402 + -6.19311 -9.80381 -10.23132 + -7.51289 -9.97402 -10.06596 + -8.84781 -10.03078 -9.89737 + -8.84778 -10.03163 -9.89737 + -10.20353 -10.28617 -9.72499 + -11.58579 -10.42896 -9.54822 + -12.97954 -10.45825 -9.36647 + -14.36952 -10.37195 -9.17914 + -15.74015 -10.16762 -8.98564 + -15.74019 -10.16851 -8.98564 + -16.81893 -7.80360 -8.80566 + -17.61140 -5.39719 -8.61981 + -18.11257 -2.94853 -8.42793 + -18.31732 -0.45682 -8.22984 + -18.22045 2.07876 -8.02537 + -18.22045 2.07827 -8.02537 + -17.82619 4.50027 -7.81442 + -17.13857 6.96756 -7.59726 + -16.15213 9.48099 -7.37423 + -14.86126 12.04135 -7.14567 + -13.26029 14.64938 -6.91193 + -13.26031 14.64912 -6.91193 + -12.02095 16.33848 -6.75345 + -10.64558 18.04941 -6.59310 + -9.13247 19.78205 -6.43113 + -7.47987 21.53652 -6.26776 + -5.68604 23.31291 -6.10324 + -5.68604 23.31287 -6.10324 + -3.75138 25.05737 -5.93781 + -1.67628 26.82382 -5.77179 + 0.54102 28.61221 -5.60554 + 2.90226 30.42248 -5.43939 + 5.40919 32.25455 -5.27369 + 5.40903 32.25586 -5.27369 + 9.41715 27.92486 -4.99969 + 12.87124 23.94454 -4.72974 + 15.81766 20.30847 -4.46513 + 18.30177 17.00853 -4.20713 + 20.36777 14.03490 -3.95702 + 20.36767 14.03960 -3.95702 + 22.03899 11.08102 -3.71587 + 23.33586 8.42067 -3.48420 + 24.29718 6.04551 -3.26243 + 24.96007 3.94194 -3.05099 + 25.35981 2.09581 -2.85028 + 25.35979 2.10177 -2.85028 + 25.52482 0.41276 -2.66060 + 25.47994 -1.04932 -2.48190 + 25.25444 -2.29913 -2.31407 + 24.87563 -3.35121 -2.15703 + 24.36893 -4.21997 -2.01069 + 24.36917 -4.21579 -2.01069 + 23.91726 -4.80717 -1.90787 + 23.41069 -5.30982 -1.81082 + 22.85806 -5.72947 -1.71942 + 22.26738 -6.07174 -1.63354 + 21.64611 -6.34212 -1.55304 + 21.64692 -6.34866 -1.55304 + 20.98347 -6.91024 -1.47779 + 20.26803 -7.37702 -1.40761 + 19.51236 -7.71496 -1.34232 + 18.72918 -7.92874 -1.28174 + 17.93044 -8.02765 -1.22568 + 17.92995 -8.02546 -1.22568 + 16.93914 -8.46361 -1.16414 + 15.90425 -8.76267 -1.10848 + 14.84112 -8.93640 -1.05836 + 13.76401 -8.99764 -1.01340 + 12.68570 -8.95838 -0.97322 + 12.68578 -8.95396 -0.97322 + 11.61574 -8.86596 -0.93747 + 10.56110 -8.69911 -0.90575 + 9.53074 -8.46268 -0.87772 + 8.53250 -8.16513 -0.85302 + 7.57325 -7.81402 -0.83128 + 7.57332 -7.81136 -0.83128 + 6.65744 -7.44610 -0.81217 + 5.78788 -7.04026 -0.79537 + 4.96919 -6.59906 -0.78060 + 4.20533 -6.12707 -0.76757 + 3.49977 -5.62814 -0.75601 + 3.49982 -5.62689 -0.75601 + 2.85417 -5.13016 -0.74565 + 2.26941 -4.61256 -0.73627 + 1.74790 -4.07626 -0.72771 + 1.29179 -3.52301 -0.71977 + 0.90301 -2.95410 -0.71228 + 0.90303 -2.95375 -0.71228 + 0.58225 -2.39034 -0.70508 + 0.32991 -1.81293 -0.69808 + 0.14769 -1.22192 -0.69121 + 0.03718 -0.61758 -0.68442 + 0.00000 -0.00002 -0.67764 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2094,7 +1926,7 @@ Q max -6.00000 70.16300 41.00200 1488.10669 72.90330 -6.60000 69.99800 40.66200 1657.62646 92.57002 -7.20000 69.64800 40.37700 1845.51127 112.39851 - -7.80000 69.63300 40.13400 2039.77189 132.38050 + -7.60000 69.63800 40.21100 1974.85997 125.70319 -8.00000 69.62900 40.06100 2104.84222 139.07419 -8.66667 69.82000 39.27800 2376.60614 160.91945 -9.33333 69.77300 38.95800 2703.42310 182.84828 @@ -2134,8 +1966,8 @@ Lambda passive -5.66667 72.58252 248.17846 26.09762 0.71265 0.35956 3.41926 -6.30000 75.29944 282.53296 32.77786 0.64100 0.43530 3.75213 -6.90000 76.16569 313.14135 33.04749 0.62360 0.43389 4.11132 - -7.50000 76.93078 323.76770 33.30331 0.60890 0.43290 4.20856 - -7.90000 77.39439 325.35165 33.46847 0.60041 0.43244 4.20381 + -7.40000 76.80941 323.37174 33.26169 0.61118 0.43304 4.21005 + -7.80000 77.28161 324.95564 33.42752 0.60244 0.43254 4.20483 -8.33333 80.52806 407.64588 32.76788 0.50605 0.40691 5.06216 -9.00000 86.52027 490.22543 32.89325 0.49495 0.38018 5.66602 -9.66667 92.45463 504.91333 34.48975 0.48673 0.37305 5.46120 @@ -2175,77 +2007,77 @@ Status character 0.00000 0.00000 130.55106 28.22709 1 0 A 0.00000 0.00000 139.69712 30.20460 1 0 A 0.00000 0.00000 166.81202 29.82552 1 0 A - 0.93132 0.00000 177.88782 31.80584 110 0 - - 3.22810 0.00000 189.10266 33.81103 110 0 - - 5.54657 0.00000 200.43902 35.83794 110 0 - - 7.88340 0.00000 211.87830 37.88325 110 0 - - 10.23520 0.00000 223.40175 39.94361 110 0 - - 7.30364 0.00000 282.51693 37.01204 110 0 - - 9.51503 0.00000 297.17299 38.93211 110 0 - - 11.73420 0.00000 311.89058 40.86023 110 0 - - 13.95826 0.00000 326.64952 42.79378 110 0 - - 16.18459 0.00000 341.43156 44.73035 110 0 - - 18.41082 0.00000 356.22048 46.66781 110 0 - - 14.77094 0.00000 291.84154 43.02793 110 0 - - 16.34894 1.33333 299.94838 44.22317 110 0 - - 17.91863 2.66667 308.02155 45.41345 110 0 - - 19.47671 4.00000 316.04249 46.59602 110 0 - - 21.02049 5.33333 323.99677 47.76877 110 0 - - 22.54779 6.66667 331.87347 48.93008 110 0 - - 18.71739 6.66667 299.31596 45.09968 110 0 - - 20.13670 8.00000 306.34284 46.15846 110 0 - - 21.53817 9.33333 313.28770 47.20488 110 0 - - 22.92142 10.66667 320.14743 48.23848 110 0 - - 24.28629 12.00000 326.92038 49.25900 110 0 - - 25.63277 13.33333 333.60607 50.26637 110 0 - - 21.90666 13.33333 311.04622 46.54026 110 0 - - 23.16129 14.66667 317.19881 47.46084 110 0 - - 24.39937 16.00000 323.27145 48.36946 110 0 - - 25.62168 17.33333 329.26565 49.26634 110 0 - - 26.82904 18.66667 335.18330 50.15177 110 0 - - 28.02233 20.00000 341.02654 51.02606 110 0 - - 24.73292 20.00000 236.72666 47.73666 110 0 - - 25.85742 21.33333 240.73275 48.54450 110 0 - - 26.97066 22.66667 244.69047 49.34259 110 0 - - 28.07388 24.00000 248.60157 50.13127 110 0 - - 29.16831 25.33333 252.46779 50.91091 110 0 - - 30.25518 26.66667 256.29088 51.68185 110 0 - - 27.46249 26.66667 229.64385 48.88916 110 0 - - 28.50188 28.00000 233.03234 49.61054 110 0 - - 29.53684 29.33333 236.38524 50.32434 110 0 - - 30.56878 30.66667 239.70404 51.03088 110 0 - - 31.59912 32.00000 242.99019 51.73048 110 0 - - 32.62925 33.33333 246.24507 52.42341 110 0 - - 30.30270 33.33333 240.36063 50.09686 110 0 - - 31.30357 34.66667 243.50855 50.75296 110 0 - - 32.30740 36.00000 246.62854 51.40324 110 0 - - 33.31563 37.33333 249.72185 52.04796 110 0 - - 34.32969 38.66667 252.78964 52.68736 110 0 - - 35.35101 40.00000 255.83306 53.32168 110 0 - - 40.77224 40.00000 280.73852 47.96050 110 0 - - 41.04137 41.20000 281.47109 48.08565 110 0 - - 41.31180 42.40000 282.18380 48.20741 110 0 - - 41.58380 43.60000 282.87745 48.32591 110 0 - - 41.85765 44.80000 283.55282 48.44129 110 0 - - 42.13360 46.00000 284.21066 48.55367 110 0 - - 40.81546 46.00000 311.41826 47.23553 110 0 - - 41.09075 47.20000 312.12065 47.34207 110 0 - - 41.36833 48.40000 312.80538 47.44593 110 0 - - 41.64803 49.60000 313.47318 47.54722 110 0 - - 41.92969 50.80000 314.12474 47.64605 110 0 - - 42.21313 52.00000 314.76074 47.74251 110 0 - - 41.08772 52.00000 322.20547 46.61711 110 0 - - 41.37048 53.20000 322.84125 46.70909 110 0 - - 41.65429 54.40000 323.46241 46.79896 110 0 - - 41.93854 55.60000 324.06957 46.88681 110 0 - - 42.22260 56.80000 324.66331 46.97271 110 0 - - 42.50585 58.00000 325.24420 47.05675 110 0 - - 41.84989 58.00000 324.87752 46.40079 110 0 - - 41.94363 58.40000 325.06818 46.42802 110 0 - - 42.03715 58.80000 325.25749 46.45506 110 0 - - 42.13044 59.20000 325.44547 46.48191 110 0 - - 42.22345 59.60000 325.63215 46.50857 110 0 - - 42.31614 60.00000 325.81754 46.53505 110 0 - + 0.93145 0.00000 177.88782 31.80584 110 0 - + 3.22821 0.00000 189.10266 33.81103 110 0 - + 5.54667 0.00000 200.43902 35.83794 110 0 - + 7.88348 0.00000 211.87830 37.88325 110 0 - + 10.23526 0.00000 223.40175 39.94361 110 0 - + 7.30369 0.00000 282.51693 37.01204 110 0 - + 9.51507 0.00000 297.17299 38.93211 110 0 - + 11.73422 0.00000 311.89058 40.86023 110 0 - + 13.95827 0.00000 326.64952 42.79378 110 0 - + 16.18458 0.00000 341.43156 44.73035 110 0 - + 18.41079 0.00000 356.22048 46.66781 110 0 - + 14.77091 0.00000 291.84154 43.02793 110 0 - + 16.34889 1.33333 299.94838 44.22317 110 0 - + 17.91856 2.66667 308.02155 45.41345 110 0 - + 19.47661 4.00000 316.04249 46.59602 110 0 - + 21.02036 5.33333 323.99677 47.76877 110 0 - + 22.54764 6.66667 331.87347 48.93008 110 0 - + 18.71725 6.66667 299.31596 45.09968 110 0 - + 20.13653 8.00000 306.34284 46.15846 110 0 - + 21.53798 9.33333 313.28770 47.20488 110 0 - + 22.92120 10.66667 320.14743 48.23848 110 0 - + 24.28604 12.00000 326.92038 49.25900 110 0 - + 25.63250 13.33333 333.60607 50.26637 110 0 - + 21.90639 13.33333 311.04622 46.54026 110 0 - + 23.16100 14.66667 317.19881 47.46084 110 0 - + 24.39906 16.00000 323.27145 48.36946 110 0 - + 25.62134 17.33333 329.26565 49.26634 110 0 - + 26.82868 18.66667 335.18330 50.15177 110 0 - + 28.02194 20.00000 341.02654 51.02606 110 0 - + 24.73254 20.00000 236.72666 47.73666 110 0 - + 25.85701 21.33333 240.73275 48.54450 110 0 - + 26.97023 22.66667 244.69047 49.34259 110 0 - + 28.07343 24.00000 248.60157 50.13127 110 0 - + 29.16784 25.33333 252.46779 50.91091 110 0 - + 30.25469 26.66667 256.29088 51.68185 110 0 - + 27.46200 26.66667 229.64385 48.88916 110 0 - + 28.50137 28.00000 233.03234 49.61054 110 0 - + 29.53631 29.33333 236.38524 50.32434 110 0 - + 30.56824 30.66667 239.70404 51.03088 110 0 - + 31.59856 32.00000 242.99019 51.73048 110 0 - + 32.62868 33.33333 246.24507 52.42341 110 0 - + 30.30213 33.33333 240.36063 50.09686 110 0 - + 31.30299 34.66667 243.50855 50.75296 110 0 - + 32.30681 36.00000 246.62854 51.40324 110 0 - + 33.31503 37.33333 249.72185 52.04796 110 0 - + 34.32909 38.66667 252.78964 52.68736 110 0 - + 35.35041 40.00000 255.83306 53.32168 110 0 - + 40.77199 40.00000 280.73852 47.96050 110 0 - + 41.04113 41.20000 281.47109 48.08565 110 0 - + 41.31156 42.40000 282.18380 48.20741 110 0 - + 41.58357 43.60000 282.87745 48.32591 110 0 - + 41.85742 44.80000 283.55282 48.44129 110 0 - + 42.13338 46.00000 284.21066 48.55367 110 0 - + 40.81524 46.00000 311.41826 47.23553 110 0 - + 41.09053 47.20000 312.12065 47.34207 110 0 - + 41.36812 48.40000 312.80538 47.44593 110 0 - + 41.64784 49.60000 313.47318 47.54722 110 0 - + 41.92951 50.80000 314.12474 47.64605 110 0 - + 42.21297 52.00000 314.76074 47.74251 110 0 - + 41.26204 52.00000 322.31988 46.79158 110 0 - + 41.45062 52.80000 322.74555 46.85338 110 0 - + 41.63973 53.60000 323.16462 46.91421 110 0 - + 41.82922 54.40000 323.57728 46.97412 110 0 - + 42.01891 55.20000 323.98371 47.03312 110 0 - + 42.20865 56.00000 324.38409 47.09125 110 0 - + 41.53556 56.00000 323.98126 46.41815 110 0 - + 41.72435 56.80000 324.37527 46.47460 110 0 - + 41.91280 57.60000 324.76358 46.53023 110 0 - + 42.10064 58.40000 325.14634 46.58507 110 0 - + 42.28763 59.20000 325.52373 46.63914 110 0 - + 42.47351 60.00000 325.89589 46.69246 110 0 - 31.53785 60.00000 392.34377 39.22170 1 0 A 32.03083 61.33333 398.47664 39.83479 1 0 A 32.52251 62.66667 404.59335 40.44626 1 0 A @@ -2272,40 +2104,40 @@ Status character 36.69334 85.00000 530.12048 48.04179 1 0 A 33.13127 85.00000 530.88491 47.68237 1 0 A 33.42310 86.00000 535.56102 48.10236 1 0 A - 34.44551 87.00000 540.23354 48.52203 110 0 - - 35.51779 88.00000 544.90265 48.94140 110 0 - - 36.54269 89.00000 549.56848 49.36047 110 0 - - 37.52202 90.00000 554.23118 49.77926 110 0 - - 29.09992 90.00000 775.12520 41.35717 110 0 - - 30.13265 91.20000 782.94497 41.77439 110 0 - - 31.10612 92.40000 790.75906 42.19132 110 0 - - 32.02403 93.60000 798.56776 42.60795 110 0 - - 32.89006 94.80000 806.37138 43.02432 110 0 - - 33.70791 96.00000 814.17021 43.44043 110 0 - - 33.37036 96.00000 867.47253 43.10288 110 0 - - 34.14059 97.20000 875.77712 43.51552 110 0 - - 34.87018 98.40000 884.07719 43.92793 110 0 - - 35.56272 99.60000 892.37300 44.34013 110 0 - - 36.22179 100.80000 900.66481 44.75213 110 0 - - 36.85097 102.00000 908.95288 45.16395 110 0 - - 36.57995 102.00000 917.30644 44.89293 110 0 - - 37.18030 103.20000 925.66715 45.30210 110 0 - - 37.75734 104.40000 934.02455 45.71111 110 0 - - 38.31391 105.60000 942.37886 46.11997 110 0 - - 38.85288 106.80000 950.73031 46.52869 110 0 - - 39.37708 108.00000 959.07910 46.93728 110 0 - - 39.16195 108.00000 957.86423 46.72214 110 0 - - 39.67223 109.20000 966.19998 47.12874 110 0 - - 40.17249 110.40000 974.53345 47.53523 110 0 - + 34.44596 87.00000 540.23354 48.52203 110 0 - + 35.51823 88.00000 544.90265 48.94140 110 0 - + 36.54311 89.00000 549.56848 49.36047 110 0 - + 37.52242 90.00000 554.23118 49.77926 110 0 - + 29.10033 90.00000 775.12520 41.35717 110 0 - + 30.13303 91.20000 782.94497 41.77439 110 0 - + 31.10648 92.40000 790.75906 42.19132 110 0 - + 32.02436 93.60000 798.56776 42.60795 110 0 - + 32.89037 94.80000 806.37138 43.02432 110 0 - + 33.70819 96.00000 814.17021 43.44043 110 0 - + 33.37064 96.00000 867.47253 43.10288 110 0 - + 34.14084 97.20000 875.77712 43.51552 110 0 - + 34.87041 98.40000 884.07719 43.92793 110 0 - + 35.56293 99.60000 892.37300 44.34013 110 0 - + 36.22197 100.80000 900.66481 44.75213 110 0 - + 36.85113 102.00000 908.95288 45.16395 110 0 - + 36.58011 102.00000 917.30644 44.89293 110 0 - + 37.18044 103.20000 925.66715 45.30210 110 0 - + 37.75745 104.40000 934.02455 45.71111 110 0 - + 38.31401 105.60000 942.37886 46.11997 110 0 - + 38.85295 106.80000 950.73031 46.52869 110 0 - + 39.37714 108.00000 959.07910 46.93728 110 0 - + 39.16200 108.00000 957.86423 46.72214 110 0 - + 39.67227 109.20000 966.19998 47.12874 110 0 - + 40.17251 110.40000 974.53345 47.53523 110 0 - 40.66455 111.60000 982.86484 47.94161 110 0 - - 41.15022 112.80000 991.19429 48.34790 110 0 - - 41.63133 114.00000 999.52200 48.75410 110 0 - - 41.46315 114.00000 998.97497 48.58592 110 0 - - 41.93992 115.20000 1007.29652 48.99064 110 0 - - 42.41463 116.40000 1015.61662 49.39530 110 0 - - 42.88789 117.60000 1023.93543 49.79989 110 0 - - 43.36036 118.80000 1032.25307 50.20442 110 0 - - 43.83267 120.00000 1040.56969 50.60891 110 0 - + 41.15020 112.80000 991.19429 48.34790 110 0 - + 41.63129 114.00000 999.52200 48.75410 110 0 - + 41.46310 114.00000 998.97497 48.58592 110 0 - + 41.93986 115.20000 1007.29652 48.99064 110 0 - + 42.41455 116.40000 1015.61662 49.39530 110 0 - + 42.88779 117.60000 1023.93543 49.79989 110 0 - + 43.36024 118.80000 1032.25307 50.20442 110 0 - + 43.83253 120.00000 1040.56969 50.60891 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2318,10 +2150,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 112.877 'Clay rep.' - -6.00 83.270 'Peat rep.' + 0.00 112.875 'Clay rep.' + -6.00 83.272 'Peat rep.' -8.00 102.233 'Sand 1 rep.' - -11.00 112.662 'Sand 2 rep.' + -11.00 112.663 'Sand 2 rep.' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2423,126 +2255,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 28.25699 0.00000 43.24256 0.00000 110 65 - - 28.38753 1.33333 45.63605 0.51331 110 62 - - 28.52142 2.66667 48.02955 1.02661 110 59 - - 28.65923 4.00000 50.42304 1.53992 110 57 - - 28.80150 5.33333 52.81654 2.05322 110 55 - - 28.94881 6.66667 55.21003 2.56653 110 52 - - 28.94881 6.66667 55.21003 2.56653 110 52 - - 29.10159 8.00000 57.60353 3.07983 110 51 - - 29.25985 9.33333 59.99703 3.59314 110 49 - - 29.42350 10.66667 62.39052 4.10645 110 47 - - 29.59246 12.00000 64.78402 4.61975 110 46 - - 29.76666 13.33333 67.17751 5.13306 110 44 - - 29.76666 13.33333 67.17751 5.13306 110 44 - - 29.94592 14.66667 69.57101 5.64636 110 43 - - 30.12976 16.00000 71.96451 6.15967 110 42 - - 30.31764 17.33333 74.35800 6.67297 110 41 - - 30.50901 18.66667 76.75150 7.18628 110 40 - - 30.70332 20.00000 79.14499 7.69958 110 39 - - 30.70332 20.00000 79.14499 7.69958 110 39 - - 30.89997 21.33333 81.53849 8.21289 110 38 - - 31.09813 22.66667 83.93198 8.72620 110 37 - - 31.29690 24.00000 86.32548 9.23950 110 36 - - 31.49541 25.33333 88.71898 9.75281 110 36 - - 31.69278 26.66667 91.11247 10.26611 110 35 - - 31.69278 26.66667 91.11247 10.26611 110 35 - - 31.88808 28.00000 93.50597 10.77942 110 34 - - 32.08023 29.33333 95.89946 11.29272 110 33 - - 32.26813 30.66667 98.29296 11.80603 110 33 - - 32.45069 32.00000 100.68646 12.31934 110 32 - - 32.62680 33.33333 103.07995 12.83264 110 32 - - 32.62680 33.33333 103.07995 12.83264 110 32 - - 32.79534 34.66667 105.47345 13.34595 110 31 - - 32.95509 36.00000 107.86694 13.85925 110 31 - - 33.10489 37.33333 110.26044 14.37256 110 30 - - 33.24354 38.66667 112.65394 14.88586 110 30 - - 33.36984 40.00000 115.04743 15.39917 110 29 - - 21.23563 40.00000 99.41156 14.04736 110 21 - - 21.16188 41.20000 99.81674 14.11760 110 21 - - 21.08345 42.40000 100.22192 14.18784 110 21 - - 21.00018 43.60000 100.62710 14.25807 110 21 - - 20.91195 44.80000 101.03228 14.32831 110 21 - - 20.81862 46.00000 101.43747 14.39855 110 21 - - 20.81862 46.00000 101.43747 14.39855 110 21 - - 20.72010 47.20000 101.84265 14.46878 110 20 - - 20.61662 48.40000 102.24783 14.53902 110 20 - - 20.50845 49.60000 102.65301 14.60926 110 20 - - 20.39585 50.80000 103.05819 14.67949 110 20 - - 20.27911 52.00000 103.46337 14.74973 110 20 - - 20.27911 52.00000 103.46337 14.74973 110 20 - - 20.15858 53.20000 103.86855 14.81997 110 19 - - 20.03488 54.40000 104.27374 14.89020 110 19 - - 19.90871 55.60000 104.67892 14.96044 110 19 - - 19.78079 56.80000 105.08410 15.03068 110 19 - - 19.65181 58.00000 105.48928 15.10091 110 19 - - 19.65181 58.00000 105.48928 15.10091 110 19 - - 19.60872 58.40000 105.62434 15.12433 110 19 - - 19.56564 58.80000 105.75940 15.14774 110 19 - - 19.52262 59.20000 105.89446 15.17115 110 18 - - 19.47969 59.60000 106.02952 15.19456 110 18 - - 19.43688 60.00000 106.16458 15.21798 110 18 - - 65.34535 60.00000 186.05846 12.60901 110 35 - - 63.18744 61.33333 194.64578 13.19096 110 32 - - 61.07009 62.66667 203.23309 13.77292 110 30 - - 59.00605 64.00000 211.82040 14.35487 110 28 - - 57.00812 65.33333 220.40772 14.93683 110 26 - - 55.08907 66.66667 228.99503 15.51878 110 24 - - 55.08907 66.66667 228.99503 15.51878 110 24 - - 53.25967 68.00000 237.58235 16.10074 110 22 - - 51.52503 69.33333 246.16966 16.68269 110 21 - - 49.88935 70.66667 254.75697 17.26464 110 20 - - 48.35688 72.00000 263.34429 17.84660 110 18 - - 46.93182 73.33333 271.93160 18.42855 110 17 - - 46.93182 73.33333 271.93160 18.42855 110 17 - - 45.61703 74.66667 280.51891 19.01051 110 16 - - 44.41193 76.00000 289.10623 19.59246 110 15 - - 43.31562 77.33333 297.69354 20.17442 110 15 - - 42.32721 78.66667 306.28086 20.75637 110 14 - - 41.44579 80.00000 314.86817 21.33832 110 13 - - 41.44579 80.00000 314.86817 21.33832 110 13 - - 40.85397 81.00000 321.30865 21.77479 110 13 - - 40.31996 82.00000 327.74914 22.21126 110 12 - - 39.84244 83.00000 334.18963 22.64772 110 12 - - 39.42008 84.00000 340.63011 23.08419 110 12 - - 39.05156 85.00000 347.07060 23.52065 110 11 - - 39.05156 85.00000 347.07060 23.52065 110 11 - - 38.73548 86.00000 353.51108 23.95712 110 11 - - 38.47011 87.00000 359.95157 24.39358 110 11 - - 38.25365 88.00000 366.39205 24.83005 110 10 - - 38.08429 89.00000 372.83254 25.26652 110 10 - - 37.96022 90.00000 379.27302 25.70298 110 10 - - 33.36104 90.00000 395.81103 21.10380 110 8 - - 33.17559 91.20000 403.87661 21.53384 110 8 - - 33.04908 92.40000 411.94219 21.96388 110 8 - - 32.97785 93.60000 420.00777 22.39392 110 8 - - 32.95822 94.80000 428.07336 22.82396 110 8 - - 32.98653 96.00000 436.13894 23.25400 110 8 - - 32.98653 96.00000 436.13894 23.25400 110 8 - - 33.05897 97.20000 444.20452 23.68404 110 7 - - 33.17183 98.40000 452.27011 24.11408 110 7 - - 33.32153 99.60000 460.33569 24.54412 110 7 - - 33.50451 100.80000 468.40127 24.97416 110 7 - - 33.71718 102.00000 476.46686 25.40420 110 7 - - 33.71718 102.00000 476.46686 25.40420 110 7 - - 33.95604 103.20000 484.53244 25.83424 110 7 - - 34.21806 104.40000 492.59802 26.26428 110 7 - - 34.50038 105.60000 500.66361 26.69432 110 7 - - 34.80018 106.80000 508.72919 27.12436 110 7 - - 35.11460 108.00000 516.79477 27.55440 110 7 - - 35.11460 108.00000 516.79477 27.55440 110 7 - - 35.44095 109.20000 524.86036 27.98444 110 7 - - 35.77721 110.40000 532.92594 28.41448 110 7 - + 28.25702 0.00000 43.24256 0.00000 110 65 - + 28.38759 1.33333 45.63605 0.51331 110 62 - + 28.52150 2.66667 48.02955 1.02661 110 59 - + 28.65933 4.00000 50.42304 1.53992 110 57 - + 28.80163 5.33333 52.81654 2.05322 110 55 - + 28.94896 6.66667 55.21003 2.56653 110 52 - + 28.94896 6.66667 55.21003 2.56653 110 52 - + 29.10177 8.00000 57.60353 3.07983 110 51 - + 29.26005 9.33333 59.99703 3.59314 110 49 - + 29.42372 10.66667 62.39052 4.10645 110 47 - + 29.59271 12.00000 64.78402 4.61975 110 46 - + 29.76692 13.33333 67.17751 5.13306 110 44 - + 29.76692 13.33333 67.17751 5.13306 110 44 - + 29.94621 14.66667 69.57101 5.64636 110 43 - + 30.13007 16.00000 71.96451 6.15967 110 42 - + 30.31797 17.33333 74.35800 6.67297 110 41 - + 30.50937 18.66667 76.75150 7.18628 110 40 - + 30.70371 20.00000 79.14499 7.69958 110 39 - + 30.70371 20.00000 79.14499 7.69958 110 39 - + 30.90038 21.33333 81.53849 8.21289 110 38 - + 31.09855 22.66667 83.93198 8.72620 110 37 - + 31.29735 24.00000 86.32548 9.23950 110 36 - + 31.49588 25.33333 88.71898 9.75281 110 36 - + 31.69327 26.66667 91.11247 10.26611 110 35 - + 31.69327 26.66667 91.11247 10.26611 110 35 - + 31.88859 28.00000 93.50597 10.77942 110 34 - + 32.08076 29.33333 95.89946 11.29272 110 33 - + 32.26868 30.66667 98.29296 11.80603 110 33 - + 32.45125 32.00000 100.68646 12.31934 110 32 - + 32.62738 33.33333 103.07995 12.83264 110 32 - + 32.62738 33.33333 103.07995 12.83264 110 32 - + 32.79592 34.66667 105.47345 13.34595 110 31 - + 32.95569 36.00000 107.86694 13.85925 110 31 - + 33.10549 37.33333 110.26044 14.37256 110 30 - + 33.24414 38.66667 112.65394 14.88586 110 30 - + 33.37044 40.00000 115.04743 15.39917 110 29 - + 21.23587 40.00000 99.41156 14.04736 110 21 - + 21.16212 41.20000 99.81674 14.11760 110 21 - + 21.08369 42.40000 100.22192 14.18784 110 21 - + 21.00042 43.60000 100.62710 14.25807 110 21 - + 20.91218 44.80000 101.03228 14.32831 110 21 - + 20.81884 46.00000 101.43747 14.39855 110 21 - + 20.81884 46.00000 101.43747 14.39855 110 21 - + 20.72032 47.20000 101.84265 14.46878 110 20 - + 20.61683 48.40000 102.24783 14.53902 110 20 - + 20.50864 49.60000 102.65301 14.60926 110 20 - + 20.39603 50.80000 103.05819 14.67949 110 20 - + 20.27928 52.00000 103.46337 14.74973 110 20 - + 20.27928 52.00000 103.46337 14.74973 110 20 - + 20.19931 52.80000 103.73349 14.79655 110 19 - + 20.11786 53.60000 104.00361 14.84338 110 19 - + 20.03511 54.40000 104.27374 14.89020 110 19 - + 19.95124 55.20000 104.54386 14.93703 110 19 - + 19.86645 56.00000 104.81398 14.98385 110 19 - + 19.86645 56.00000 104.81398 14.98385 110 19 - + 19.78092 56.80000 105.08410 15.03068 110 19 - + 19.69494 57.60000 105.35422 15.07750 110 19 - + 19.60876 58.40000 105.62434 15.12433 110 19 - + 19.52267 59.20000 105.89446 15.17115 110 18 - + 19.43693 60.00000 106.16458 15.21798 110 18 - + 65.34592 60.00000 186.05846 12.60901 110 35 - + 63.18783 61.33333 194.64578 13.19096 110 32 - + 61.07032 62.66667 203.23309 13.77292 110 30 - + 59.00615 64.00000 211.82040 14.35487 110 28 - + 57.00809 65.33333 220.40772 14.93683 110 26 - + 55.08893 66.66667 228.99503 15.51878 110 24 - + 55.08893 66.66667 228.99503 15.51878 110 24 - + 53.25945 68.00000 237.58235 16.10074 110 22 - + 51.52473 69.33333 246.16966 16.68269 110 21 - + 49.88899 70.66667 254.75697 17.26464 110 20 - + 48.35646 72.00000 263.34429 17.84660 110 18 - + 46.93136 73.33333 271.93160 18.42855 110 17 - + 46.93136 73.33333 271.93160 18.42855 110 17 - + 45.61654 74.66667 280.51891 19.01051 110 16 - + 44.41142 76.00000 289.10623 19.59246 110 15 - + 43.31510 77.33333 297.69354 20.17442 110 15 - + 42.32668 78.66667 306.28086 20.75637 110 14 - + 41.44526 80.00000 314.86817 21.33832 110 13 - + 41.44526 80.00000 314.86817 21.33832 110 13 - + 40.85344 81.00000 321.30865 21.77479 110 13 - + 40.31944 82.00000 327.74914 22.21126 110 12 - + 39.84193 83.00000 334.18963 22.64772 110 12 - + 39.41958 84.00000 340.63011 23.08419 110 12 - + 39.05107 85.00000 347.07060 23.52065 110 11 - + 39.05107 85.00000 347.07060 23.52065 110 11 - + 38.73501 86.00000 353.51108 23.95712 110 11 - + 38.46966 87.00000 359.95157 24.39358 110 11 - + 38.25322 88.00000 366.39205 24.83005 110 10 - + 38.08387 89.00000 372.83254 25.26652 110 10 - + 37.95982 90.00000 379.27302 25.70298 110 10 - + 33.36064 90.00000 395.81103 21.10380 110 8 - + 33.17521 91.20000 403.87661 21.53384 110 8 - + 33.04872 92.40000 411.94219 21.96388 110 8 - + 32.97752 93.60000 420.00777 22.39392 110 8 - + 32.95791 94.80000 428.07336 22.82396 110 8 - + 32.98624 96.00000 436.13894 23.25400 110 8 - + 32.98624 96.00000 436.13894 23.25400 110 8 - + 33.05872 97.20000 444.20452 23.68404 110 7 - + 33.17160 98.40000 452.27011 24.11408 110 7 - + 33.32132 99.60000 460.33569 24.54412 110 7 - + 33.50432 100.80000 468.40127 24.97416 110 7 - + 33.71702 102.00000 476.46686 25.40420 110 7 - + 33.71702 102.00000 476.46686 25.40420 110 7 - + 33.95590 103.20000 484.53244 25.83424 110 7 - + 34.21794 104.40000 492.59802 26.26428 110 7 - + 34.50029 105.60000 500.66361 26.69432 110 7 - + 34.80010 106.80000 508.72919 27.12436 110 7 - + 35.11454 108.00000 516.79477 27.55440 110 7 - + 35.11454 108.00000 516.79477 27.55440 110 7 - + 35.44091 109.20000 524.86036 27.98444 110 7 - + 35.77720 110.40000 532.92594 28.41448 110 7 - 36.12158 111.60000 540.99152 28.84452 110 7 - - 36.47223 112.80000 549.05711 29.27456 110 7 - - 36.82737 114.00000 557.12269 29.70460 110 7 - - 36.82737 114.00000 557.12269 29.70460 110 7 - - 37.18536 115.20000 565.18827 30.13464 110 7 - - 37.54535 116.40000 573.25385 30.56468 110 7 - - 37.90671 117.60000 581.31944 30.99472 110 7 - - 38.26882 118.80000 589.38502 31.42476 110 6 - - 38.63103 120.00000 597.45060 31.85480 110 6 - + 36.47226 112.80000 549.05711 29.27456 110 7 - + 36.82741 114.00000 557.12269 29.70460 110 7 - + 36.82741 114.00000 557.12269 29.70460 110 7 - + 37.18542 115.20000 565.18827 30.13464 110 7 - + 37.54543 116.40000 573.25385 30.56468 110 7 - + 37.90681 117.60000 581.31944 30.99472 110 7 - + 38.26894 118.80000 589.38502 31.42476 110 6 - + 38.63117 120.00000 597.45060 31.85480 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2555,9 +2387,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 123.037 'Clay rep.' + 0.00 123.038 'Clay rep.' -6.00 40.848 'Peat rep.' - -8.00 142.526 'Sand 1 rep.' + -8.00 142.525 'Sand 1 rep.' -11.00 104.646 'Sand 2 rep.' [END OF DATA] [END OF TABLE] @@ -2644,16 +2476,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -2800,15 +2632,15 @@ Is favorable (0=false, 1=true) 14.84 : Percentage mobilized resistance left 6.62 : Percentage mobilized resistance right 490.29 : Effective left - 420.03 : Effective right + 420.04 : Effective right 720.00 : Water pressure left 720.00 : Water pressure right - 3304.70 : Max effective resistance left + 3304.71 : Max effective resistance left 6342.17 : Max effective resistance right --27915.89 : Max moment left --48657.30 : Max moment right --3070.57 : Max mobilized moment left --2995.58 : Max mobilized moment right +-27915.90 : Max moment left +-48657.31 : Max moment right +-3070.55 : Max mobilized moment left +-2995.56 : Max mobilized moment right 174.87 : Vertical force left 157.60 : Vertical force right 11.0 : Max mobilized moment percentage left @@ -2827,150 +2659,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 -150.00000 -24.59084 - -15.00000 -150.00000 -24.56534 - -30.00000 -150.00000 -24.53622 - -45.00000 -150.00000 -24.49984 - -60.00000 -150.00000 -24.45259 - -75.00000 -150.00000 -24.39084 - -75.00000 -150.00000 -24.39084 - -90.00000 -150.00000 -24.31095 - -105.00000 -150.00000 -24.20931 - -120.00000 -150.00000 -24.08229 - -135.00000 -150.00000 -23.92627 - -150.00000 -150.00000 -23.73761 - -149.99980 149.99528 -23.73761 - -135.00028 149.99528 -23.51390 - -120.00075 149.99528 -23.25756 - -105.00122 149.99528 -22.97221 - -90.00169 149.99528 -22.66148 - -75.00216 149.99528 -22.32900 - -75.00168 70.29552 -22.32900 + 0.00000 -150.00000 -24.59110 + -15.00000 -150.00000 -24.56559 + -30.00000 -150.00000 -24.53645 + -45.00000 -150.00000 -24.50006 + -60.00000 -150.00000 -24.45279 + -75.00000 -150.00000 -24.39102 + -75.00000 -150.00000 -24.39102 + -90.00000 -150.00000 -24.31112 + -105.00000 -150.00000 -24.20947 + -120.00000 -150.00000 -24.08243 + -135.00000 -150.00000 -23.92639 + -150.00000 -150.00000 -23.73771 + -149.99980 149.99528 -23.73771 + -135.00028 149.99528 -23.51399 + -120.00075 149.99528 -23.25763 + -105.00122 149.99528 -22.97227 + -90.00169 149.99528 -22.66152 + -75.00216 149.99528 -22.32902 + -75.00168 70.29552 -22.32902 -67.97213 70.29552 -21.97807 - -60.94258 70.29552 -21.61070 - -53.91246 70.31235 -21.22860 - -46.87500 70.48234 -20.83348 - -39.80687 70.92620 -20.42702 - -39.80565 70.90787 -20.42702 - -30.39368 69.80866 -19.87057 - -21.30921 66.02741 -19.30111 - -12.84332 60.96480 -18.72226 - -5.05146 55.91261 -18.13762 - 2.06588 50.84170 -17.55084 - 2.06653 50.82922 -17.55084 - 8.55408 46.45298 -16.96528 - 14.44513 41.87741 -16.38342 - 19.71231 37.09755 -15.80752 - 24.33306 32.21093 -15.23984 - 28.30063 27.29584 -14.68264 - 28.30068 27.27640 -14.68264 - 31.67488 23.31504 -14.13791 - 34.51485 19.28223 -13.60682 - 36.81787 15.27335 -13.09034 - 38.59022 11.32023 -12.58948 - 39.83865 7.41325 -12.10522 - 39.83794 7.41342 -12.10522 - 40.62178 4.36434 -11.63833 - 41.00699 1.43273 -11.18890 - 41.00874 -1.38868 -10.75694 - 40.64127 -4.10654 -10.34246 - 39.91799 -6.72702 -9.94546 - 39.91800 -6.72326 -9.94546 - 38.89231 -8.64000 -9.56578 - 37.61978 -10.42676 -9.20281 - 36.11735 -12.08956 -8.85592 - 34.40116 -13.63405 -8.52447 - 32.48662 -15.06556 -8.20780 - 32.48666 -15.06249 -8.20780 - 30.41573 -15.98029 -7.90519 - 28.23081 -16.77304 -7.61564 - 25.94827 -17.44548 -7.33819 - 23.58384 -18.00194 -7.07186 - 21.15273 -18.44632 -6.81566 - 21.15285 -18.44489 -6.81566 - 19.02436 -17.02419 -6.59287 - 17.06841 -15.56920 -6.37670 - 15.28911 -14.08021 -6.16652 - 13.69051 -12.55744 -5.96172 - 12.27667 -11.00107 -5.76169 - 12.27668 -11.00072 -5.76169 - 11.04424 -9.53434 -5.56584 - 9.98976 -8.03471 -5.37384 - 9.11724 -6.50190 -5.18537 - 8.43063 -4.93597 -5.00014 - 7.93392 -3.33698 -4.81783 - 7.93393 -3.33674 -4.81783 - 7.64060 -1.54633 -4.63820 - 7.56416 0.27793 -4.46122 - 7.70865 2.13588 -4.28694 - 8.07811 4.02731 -4.11542 - 8.67654 5.95199 -3.94670 - 8.67655 5.95211 -3.94670 - 8.92881 6.66153 -3.89111 - 9.20952 7.37467 -3.83585 - 9.51883 8.09152 -3.78096 - 9.85689 8.81207 -3.72643 - 10.22385 9.53628 -3.67229 - 10.22368 9.53780 -3.67229 - 11.39187 7.99785 -3.49480 - 12.35969 6.53103 -3.32221 - 13.13642 5.13034 -3.15485 - 13.73045 3.78959 -2.99307 - 14.14940 2.50334 -2.83719 - 14.14946 2.50529 -2.83719 - 14.43663 1.81326 -2.68747 - 14.63584 1.18534 -2.54395 - 14.75541 0.61791 -2.40669 - 14.80317 0.10776 -2.27574 - 14.78656 -0.34793 -2.15116 - 14.78658 -0.34687 -2.15116 - 14.71192 -0.76451 -2.03296 - 14.58495 -1.13184 -1.92108 - 14.41224 -1.45104 -1.81546 - 14.20005 -1.72421 -1.71601 - 13.95440 -1.95340 -1.62267 - 13.95444 -1.95279 -1.62267 - 13.75054 -2.12126 -1.55661 - 13.53094 -2.26703 -1.49388 - 13.29786 -2.39097 -1.43442 - 13.05344 -2.49399 -1.37817 - 12.79973 -2.57702 -1.32507 - 12.80053 -2.58534 -1.32507 - 12.52144 -2.99390 -1.27507 - 12.20348 -3.35080 -1.22810 - 11.85427 -3.61801 -1.18408 - 11.48284 -3.79638 -1.14291 - 11.09777 -3.89158 -1.10452 - 11.09731 -3.89119 -1.10452 - 10.60180 -4.34972 -1.06200 - 10.05745 -4.70648 -1.02317 - 9.47597 -4.97012 -0.98782 - 8.86802 -5.14882 -0.95577 - 8.24334 -5.25026 -0.92681 - 8.24338 -5.24740 -0.92681 - 7.60934 -5.30890 -0.90072 - 6.97177 -5.30723 -0.87727 - 6.33789 -5.24850 -0.85626 - 5.71419 -5.13832 -0.83745 - 5.10655 -4.98175 -0.82064 - 5.10659 -4.97996 -0.82064 - 4.51875 -4.81080 -0.80559 - 3.95350 -4.60410 -0.79212 - 3.41512 -4.36342 -0.78003 - 2.90751 -4.09192 -0.76913 - 2.43419 -3.79226 -0.75925 - 2.43422 -3.79139 -0.75925 - 1.99688 -3.49351 -0.75021 - 1.59673 -3.17183 -0.74185 - 1.23653 -2.82790 -0.73407 - 0.91887 -2.46297 -0.72673 - 0.64622 -2.07799 -0.71970 - 0.64624 -2.07773 -0.71970 - 0.41944 -1.69908 -0.71288 - 0.23921 -1.30172 -0.70621 - 0.10776 -0.88597 -0.69964 - 0.02730 -0.45203 -0.69312 - 0.00000 -0.00002 -0.68660 + -60.94258 70.29552 -21.61069 + -53.91246 70.31235 -21.22857 + -46.87500 70.48235 -20.83343 + -39.80686 70.92622 -20.42696 + -39.80565 70.90789 -20.42696 + -30.39367 69.80870 -19.87049 + -21.30919 66.02749 -19.30100 + -12.84329 60.96495 -18.72213 + -5.05141 55.91283 -18.13747 + 2.06597 50.84201 -17.55066 + 2.06661 50.82953 -17.55066 + 8.55421 46.45333 -16.96508 + 14.44531 41.87782 -16.38320 + 19.71255 37.09805 -15.80728 + 24.33338 32.21157 -15.23958 + 28.30104 27.29662 -14.68236 + 28.30109 27.27717 -14.68236 + 31.67540 23.31590 -14.13761 + 34.51549 19.28321 -13.60649 + 36.81866 15.27451 -13.09000 + 38.59117 11.32158 -12.58911 + 39.83980 7.41480 -12.10483 + 39.83908 7.41498 -12.10483 + 40.62314 4.36611 -11.63792 + 41.00860 1.43472 -11.18847 + 41.01063 -1.38647 -10.75650 + 40.64348 -4.10408 -10.34200 + 39.92054 -6.72431 -9.94498 + 39.92055 -6.72055 -9.94498 + 38.89524 -8.63703 -9.56528 + 37.62312 -10.42352 -9.20230 + 36.12114 -12.08605 -8.85540 + 34.40543 -13.63027 -8.52393 + 32.49142 -15.06149 -8.20726 + 32.49146 -15.05841 -8.20726 + 30.42109 -15.97592 -7.90464 + 28.23678 -16.76838 -7.61509 + 25.95487 -17.44052 -7.33763 + 23.59113 -17.99669 -7.07130 + 21.16074 -18.44078 -6.81511 + 21.16085 -18.43934 -6.81511 + 19.03303 -17.01853 -6.59232 + 17.07777 -15.56344 -6.37616 + 15.29917 -14.07435 -6.16600 + 13.70128 -12.55148 -5.96121 + 12.28816 -10.99501 -5.76120 + 12.28817 -10.99466 -5.76120 + 11.05646 -9.52819 -5.56538 + 10.00273 -8.02848 -5.37340 + 9.13095 -6.49559 -5.18497 + 8.44511 -4.92959 -4.99977 + 7.94917 -3.33052 -4.81750 + 7.94919 -3.33037 -4.81750 + 7.72900 -2.17182 -4.69751 + 7.60209 -0.99831 -4.57870 + 7.56967 0.19011 -4.46108 + 7.63291 1.39340 -4.34465 + 7.79301 2.61151 -4.22940 + 7.79300 2.61158 -4.22940 + 8.05609 3.96807 -4.11534 + 8.42830 5.33958 -4.00252 + 8.91082 6.72602 -3.89102 + 9.50485 8.12727 -3.78091 + 10.21158 9.54321 -3.67227 + 10.21142 9.54476 -3.67227 + 11.38054 8.00488 -3.49481 + 12.34930 6.53803 -3.32224 + 13.12695 5.13724 -3.15491 + 13.72189 3.79631 -2.99314 + 14.14172 2.50982 -2.83728 + 14.14178 2.51177 -2.83728 + 14.42979 1.81945 -2.68757 + 14.62981 1.19120 -2.54406 + 14.75014 0.62342 -2.40681 + 14.79860 0.11290 -2.27586 + 14.78266 -0.34317 -2.15128 + 14.78268 -0.34212 -2.15128 + 14.70863 -0.76015 -2.03308 + 14.58221 -1.12787 -1.92121 + 14.41000 -1.44745 -1.81558 + 14.19827 -1.72100 -1.71613 + 13.95302 -1.95056 -1.62278 + 13.95306 -1.94995 -1.62278 + 13.74943 -2.11869 -1.55672 + 13.53007 -2.26472 -1.49398 + 13.29721 -2.38891 -1.43452 + 13.05299 -2.49218 -1.37826 + 12.79945 -2.57544 -1.32516 + 12.80025 -2.58376 -1.32516 + 12.52130 -2.99254 -1.27516 + 12.20346 -3.34963 -1.22818 + 11.85437 -3.61699 -1.18415 + 11.48303 -3.79551 -1.14298 + 11.09804 -3.89084 -1.10459 + 11.09759 -3.89046 -1.10459 + 10.60215 -4.34913 -1.06206 + 10.05787 -4.70603 -1.02322 + 9.47643 -4.96980 -0.98787 + 8.86851 -5.14861 -0.95582 + 8.24385 -5.25015 -0.92685 + 8.24389 -5.24729 -0.92685 + 7.60986 -5.30888 -0.90075 + 6.97229 -5.30729 -0.87730 + 6.33839 -5.24863 -0.85628 + 5.71468 -5.13850 -0.83748 + 5.10701 -4.98199 -0.82066 + 5.10705 -4.98020 -0.82066 + 4.51918 -4.81108 -0.80561 + 3.95389 -4.60440 -0.79213 + 3.41548 -4.36375 -0.78003 + 2.90783 -4.09226 -0.76914 + 2.43447 -3.79261 -0.75926 + 2.43450 -3.79174 -0.75926 + 1.99712 -3.49385 -0.75020 + 1.59693 -3.17216 -0.74185 + 1.23669 -2.82822 -0.73406 + 0.91899 -2.46326 -0.72671 + 0.64631 -2.07825 -0.71969 + 0.64632 -2.07800 -0.71969 + 0.41950 -1.69931 -0.71287 + 0.23924 -1.30190 -0.70619 + 0.10778 -0.88609 -0.69961 + 0.02730 -0.45210 -0.69309 + 0.00000 -0.00002 -0.68657 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3058,7 +2890,7 @@ Q max -6.00000 70.16300 41.00200 1488.10669 72.90330 -6.60000 69.99800 40.66200 1657.62646 92.57002 -7.20000 69.64800 40.37700 1845.51127 112.39851 - -7.80000 69.63300 40.13400 2039.77189 132.38050 + -7.60000 69.63800 40.21100 1974.85997 125.70319 -8.00000 69.62900 40.06100 2104.84222 139.07419 -8.66667 69.82000 39.27800 2376.60614 160.91945 -9.33333 69.77300 38.95800 2703.42310 182.84828 @@ -3098,8 +2930,8 @@ Lambda passive -5.66667 72.58252 248.17846 26.09762 0.71265 0.35956 3.41926 -6.30000 75.29944 282.53296 32.77786 0.64100 0.43530 3.75213 -6.90000 76.16569 313.14135 33.04749 0.62360 0.43389 4.11132 - -7.50000 76.93078 323.76770 33.30331 0.60890 0.43290 4.20856 - -7.90000 77.39439 325.35165 33.46847 0.60041 0.43244 4.20381 + -7.40000 76.80941 323.37174 33.26169 0.61118 0.43304 4.21005 + -7.80000 77.28161 324.95564 33.42752 0.60244 0.43254 4.20483 -8.33333 80.52806 407.64588 32.76788 0.50605 0.40691 5.06216 -9.00000 86.52027 490.22543 32.89325 0.49495 0.38018 5.66602 -9.66667 92.45463 504.91333 34.48975 0.48673 0.37305 5.46120 @@ -3147,129 +2979,129 @@ Status character 0.00000 0.00000 282.51693 37.01204 1 0 A 0.00000 0.00000 297.17299 38.93211 1 0 A 0.00000 0.00000 311.89058 40.86023 1 0 A - 0.33657 0.00000 326.64952 42.79378 110 0 - - 3.06339 0.00000 341.43156 44.73035 110 0 - - 5.81377 0.00000 356.22048 46.66781 110 0 - - 2.17389 0.00000 291.84154 43.02793 110 0 - - 4.48203 1.33333 299.94838 44.22317 110 0 - - 6.81123 2.66667 308.02155 45.41345 110 0 - - 9.15151 4.00000 316.04249 46.59602 110 0 - - 11.49352 5.33333 323.99677 47.76877 110 0 - - 13.82840 6.66667 331.87347 48.93008 110 0 - + 0.33663 0.00000 326.64952 42.79378 110 0 - + 3.06348 0.00000 341.43156 44.73035 110 0 - + 5.81390 0.00000 356.22048 46.66781 110 0 - + 2.17401 0.00000 291.84154 43.02793 110 0 - + 4.48220 1.33333 299.94838 44.22317 110 0 - + 6.81144 2.66667 308.02155 45.41345 110 0 - + 9.15177 4.00000 316.04249 46.59602 110 0 - + 11.49382 5.33333 323.99677 47.76877 110 0 - + 13.82875 6.66667 331.87347 48.93008 110 0 - 15.25971 6.66667 299.31596 45.09968 1 0 A 15.61796 8.00000 306.34284 46.15846 1 0 A 15.97202 9.33333 313.28770 47.20488 1 0 A - 16.62343 10.66667 320.14743 48.23848 110 0 - - 18.77931 12.00000 326.92038 49.25900 110 0 - - 20.90109 13.33333 333.60607 50.26637 110 0 - + 16.62391 10.66667 320.14743 48.23848 110 0 - + 18.77983 12.00000 326.92038 49.25900 110 0 - + 20.90165 13.33333 333.60607 50.26637 110 0 - 19.44494 13.33333 311.04622 46.54026 1 0 A 19.82957 14.66667 317.19881 47.46084 1 0 A - 21.15582 16.00000 323.27145 48.36946 110 0 - - 23.08566 17.33333 329.26565 49.26634 110 0 - - 24.97281 18.66667 335.18330 50.15177 110 0 - - 26.81562 20.00000 341.02654 51.02606 110 0 - - 23.52622 20.00000 236.72666 47.73666 110 0 - - 25.26785 21.33333 240.73275 48.54450 110 0 - - 26.96479 22.66667 244.69047 49.34259 110 0 - - 28.61739 24.00000 248.60157 50.13127 110 0 - - 30.22599 25.33333 252.46779 50.91091 110 0 - - 31.79092 26.66667 256.29088 51.68185 110 0 - - 28.99823 26.66667 229.64385 48.88916 110 0 - - 30.47898 28.00000 233.03234 49.61054 110 0 - - 31.91872 29.33333 236.38524 50.32434 110 0 - - 33.31904 30.66667 239.70404 51.03088 110 0 - - 34.68154 32.00000 242.99019 51.73048 110 0 - - 36.00780 33.33333 246.24507 52.42341 110 0 - - 33.68125 33.33333 240.36063 50.09686 110 0 - - 34.94259 34.66667 243.50855 50.75296 110 0 - - 36.17196 36.00000 246.62854 51.40324 110 0 - - 37.37158 37.33333 249.72185 52.04796 110 0 - - 38.54365 38.66667 252.78964 52.68736 110 0 - - 39.69036 40.00000 255.83306 53.32168 110 0 - - 42.50798 40.00000 280.73852 47.96050 110 0 - - 42.81136 41.20000 281.47109 48.08565 110 0 - - 43.10605 42.40000 282.18380 48.20741 110 0 - - 43.39270 43.60000 282.87745 48.32591 110 0 - - 43.67191 44.80000 283.55282 48.44129 110 0 - - 43.94433 46.00000 284.21066 48.55367 110 0 - - 42.62618 46.00000 311.41826 47.23553 110 0 - - 42.88939 47.20000 312.12065 47.34207 110 0 - - 43.14686 48.40000 312.80538 47.44593 110 0 - - 43.39892 49.60000 313.47318 47.54722 110 0 - - 43.64594 50.80000 314.12474 47.64605 110 0 - - 43.88825 52.00000 314.76074 47.74251 110 0 - - 42.76284 52.00000 322.20547 46.61711 110 0 - - 42.99854 53.20000 322.84125 46.70909 110 0 - - 43.22999 54.40000 323.46241 46.79896 110 0 - - 43.45726 55.60000 324.06957 46.88681 110 0 - - 43.68038 56.80000 324.66331 46.97271 110 0 - - 43.89939 58.00000 325.24420 47.05675 110 0 - - 43.24343 58.00000 324.87752 46.40079 110 0 - - 43.31514 58.40000 325.06818 46.42802 110 0 - - 43.38638 58.80000 325.25749 46.45506 110 0 - - 43.45714 59.20000 325.44547 46.48191 110 0 - - 43.52742 59.60000 325.63215 46.50857 110 0 - - 43.59722 60.00000 325.81754 46.53505 110 0 - - 47.55128 60.00000 392.34377 39.22170 110 12 - - 47.07933 61.33333 398.47664 39.83479 110 12 - - 46.59762 62.66667 404.59335 40.44626 110 12 - - 46.11564 64.00000 410.69466 41.05619 110 11 - - 45.64285 65.33333 416.78133 41.66467 110 11 - - 45.18874 66.66667 422.85408 42.27174 110 11 - - 42.95568 66.66667 473.29582 41.34422 110 9 - - 42.49666 68.00000 480.07815 41.93668 110 9 - - 42.06938 69.33333 486.84638 42.52791 110 0 - - 41.67759 70.66667 493.60122 43.11797 110 0 - - 41.32503 72.00000 500.34333 43.70692 110 0 - - 41.01542 73.33333 507.07337 44.29482 110 0 - - 40.37693 73.33333 488.74352 43.55934 110 0 - - 40.10450 74.66667 495.21924 44.13649 110 0 - - 39.87782 76.00000 501.68447 44.71271 110 0 - - 39.69676 77.33333 508.13977 45.28804 110 0 - - 39.56117 78.66667 514.58566 45.86253 110 0 - - 39.47093 80.00000 521.02264 46.43622 110 0 - - 38.95400 80.00000 506.71425 45.92061 110 0 - - 38.91088 81.00000 511.40399 46.34562 110 0 - - 38.89203 82.00000 516.08930 46.77022 110 0 - - 38.89669 83.00000 520.77037 47.19444 110 0 - - 38.92411 84.00000 525.44738 47.61829 110 0 - - 38.97354 85.00000 530.12048 48.04179 110 0 - - 35.41147 85.00000 530.88491 47.68237 110 0 - - 35.45071 86.00000 535.56102 48.10236 110 0 - - 36.24098 87.00000 540.23354 48.52203 110 0 - - 37.10061 88.00000 544.90265 48.94140 110 0 - - 37.93134 89.00000 549.56848 49.36047 110 0 - - 38.73402 90.00000 554.23118 49.77926 110 0 - - 30.31193 90.00000 775.12520 41.35717 110 0 - - 31.15438 91.20000 782.94497 41.77439 110 0 - - 31.95964 92.40000 790.75906 42.19132 110 0 - - 32.72971 93.60000 798.56776 42.60795 110 0 - - 33.46661 94.80000 806.37138 43.02432 110 0 - - 34.17237 96.00000 814.17021 43.44043 110 0 - - 33.83482 96.00000 867.47253 43.10288 110 0 - - 34.50836 97.20000 875.77712 43.51552 110 0 - - 35.15520 98.40000 884.07719 43.92793 110 0 - - 35.77755 99.60000 892.37300 44.34013 110 0 - - 36.37760 100.80000 900.66481 44.75213 110 0 - - 36.95758 102.00000 908.95288 45.16395 110 0 - - 36.68656 102.00000 917.30644 44.89293 110 0 - - 37.24619 103.20000 925.66715 45.30210 110 0 - - 37.78995 104.40000 934.02455 45.71111 110 0 - - 38.31971 105.60000 942.37886 46.11997 110 0 - - 38.83734 106.80000 950.73031 46.52869 110 0 - + 21.15647 16.00000 323.27145 48.36946 110 0 - + 23.08635 17.33333 329.26565 49.26634 110 0 - + 24.97354 18.66667 335.18330 50.15177 110 0 - + 26.81639 20.00000 341.02654 51.02606 110 0 - + 23.52699 20.00000 236.72666 47.73666 110 0 - + 25.26866 21.33333 240.73275 48.54450 110 0 - + 26.96564 22.66667 244.69047 49.34259 110 0 - + 28.61828 24.00000 248.60157 50.13127 110 0 - + 30.22691 25.33333 252.46779 50.91091 110 0 - + 31.79188 26.66667 256.29088 51.68185 110 0 - + 28.99919 26.66667 229.64385 48.88916 110 0 - + 30.47997 28.00000 233.03234 49.61054 110 0 - + 31.91973 29.33333 236.38524 50.32434 110 0 - + 33.32008 30.66667 239.70404 51.03088 110 0 - + 34.68261 32.00000 242.99019 51.73048 110 0 - + 36.00889 33.33333 246.24507 52.42341 110 0 - + 33.68234 33.33333 240.36063 50.09686 110 0 - + 34.94369 34.66667 243.50855 50.75296 110 0 - + 36.17307 36.00000 246.62854 51.40324 110 0 - + 37.37270 37.33333 249.72185 52.04796 110 0 - + 38.54476 38.66667 252.78964 52.68736 110 0 - + 39.69147 40.00000 255.83306 53.32168 110 0 - + 42.50842 40.00000 280.73852 47.96050 110 0 - + 42.81179 41.20000 281.47109 48.08565 110 0 - + 43.10648 42.40000 282.18380 48.20741 110 0 - + 43.39312 43.60000 282.87745 48.32591 110 0 - + 43.67232 44.80000 283.55282 48.44129 110 0 - + 43.94472 46.00000 284.21066 48.55367 110 0 - + 42.62657 46.00000 311.41826 47.23553 110 0 - + 42.88977 47.20000 312.12065 47.34207 110 0 - + 43.14721 48.40000 312.80538 47.44593 110 0 - + 43.39924 49.60000 313.47318 47.54722 110 0 - + 43.64623 50.80000 314.12474 47.64605 110 0 - + 43.88851 52.00000 314.76074 47.74251 110 0 - + 42.93758 52.00000 322.31988 46.79158 110 0 - + 43.09537 52.80000 322.74555 46.85338 110 0 - + 43.25125 53.60000 323.16462 46.91421 110 0 - + 43.40525 54.40000 323.57728 46.97412 110 0 - + 43.55740 55.20000 323.98371 47.03312 110 0 - + 43.70772 56.00000 324.38409 47.09125 110 0 - + 43.03463 56.00000 323.98126 46.41815 110 0 - + 43.18233 56.80000 324.37527 46.47460 110 0 - + 43.32822 57.60000 324.76358 46.53023 110 0 - + 43.47226 58.40000 325.14634 46.58507 110 0 - + 43.61442 59.20000 325.52373 46.63914 110 0 - + 43.75465 60.00000 325.89589 46.69246 110 0 - + 47.55205 60.00000 392.34377 39.22170 110 12 - + 47.07961 61.33333 398.47664 39.83479 110 12 - + 46.59747 62.66667 404.59335 40.44626 110 12 - + 46.11513 64.00000 410.69466 41.05619 110 11 - + 45.64204 65.33333 416.78133 41.66467 110 11 - + 45.18768 66.66667 422.85408 42.27174 110 11 - + 42.95462 66.66667 473.29582 41.34422 110 9 - + 42.49539 68.00000 480.07815 41.93668 110 9 - + 42.06796 69.33333 486.84638 42.52791 110 0 - + 41.67605 70.66667 493.60122 43.11797 110 0 - + 41.32340 72.00000 500.34333 43.70692 110 0 - + 41.01374 73.33333 507.07337 44.29482 110 0 - + 40.37524 73.33333 488.74352 43.55934 110 0 - + 40.10279 74.66667 495.21924 44.13649 110 0 - + 39.87610 76.00000 501.68447 44.71271 110 0 - + 39.69505 77.33333 508.13977 45.28804 110 0 - + 39.55950 78.66667 514.58566 45.86253 110 0 - + 39.46930 80.00000 521.02264 46.43622 110 0 - + 38.95238 80.00000 506.71425 45.92061 110 0 - + 38.90930 81.00000 511.40399 46.34562 110 0 - + 38.89049 82.00000 516.08930 46.77022 110 0 - + 38.89520 83.00000 520.77037 47.19444 110 0 - + 38.92268 84.00000 525.44738 47.61829 110 0 - + 38.97217 85.00000 530.12048 48.04179 110 0 - + 35.41010 85.00000 530.88491 47.68237 110 0 - + 35.44940 86.00000 535.56102 48.10236 110 0 - + 36.24019 87.00000 540.23354 48.52203 110 0 - + 37.09986 88.00000 544.90265 48.94140 110 0 - + 37.93064 89.00000 549.56848 49.36047 110 0 - + 38.73337 90.00000 554.23118 49.77926 110 0 - + 30.31128 90.00000 775.12520 41.35717 110 0 - + 31.15378 91.20000 782.94497 41.77439 110 0 - + 31.95909 92.40000 790.75906 42.19132 110 0 - + 32.72921 93.60000 798.56776 42.60795 110 0 - + 33.46616 94.80000 806.37138 43.02432 110 0 - + 34.17197 96.00000 814.17021 43.44043 110 0 - + 33.83442 96.00000 867.47253 43.10288 110 0 - + 34.50801 97.20000 875.77712 43.51552 110 0 - + 35.15489 98.40000 884.07719 43.92793 110 0 - + 35.77728 99.60000 892.37300 44.34013 110 0 - + 36.37738 100.80000 900.66481 44.75213 110 0 - + 36.95740 102.00000 908.95288 45.16395 110 0 - + 36.68638 102.00000 917.30644 44.89293 110 0 - + 37.24605 103.20000 925.66715 45.30210 110 0 - + 37.78984 104.40000 934.02455 45.71111 110 0 - + 38.31964 105.60000 942.37886 46.11997 110 0 - + 38.83730 106.80000 950.73031 46.52869 110 0 - 39.34473 108.00000 959.07910 46.93728 110 0 - 39.12959 108.00000 957.86423 46.72214 110 0 - - 39.62667 109.20000 966.19998 47.12874 110 0 - - 40.11670 110.40000 974.53345 47.53523 110 0 - - 40.60094 111.60000 982.86484 47.94161 110 0 - - 41.08064 112.80000 991.19429 48.34790 110 0 - - 41.55708 114.00000 999.52200 48.75410 110 0 - - 41.38889 114.00000 998.97497 48.58592 110 0 - - 41.86179 115.20000 1007.29652 48.99064 110 0 - - 42.33318 116.40000 1015.61662 49.39530 110 0 - - 42.80352 117.60000 1023.93543 49.79989 110 0 - - 43.27326 118.80000 1032.25307 50.20442 110 0 - - 43.74287 120.00000 1040.56969 50.60891 110 0 - + 39.62669 109.20000 966.19998 47.12874 110 0 - + 40.11675 110.40000 974.53345 47.53523 110 0 - + 40.60102 111.60000 982.86484 47.94161 110 0 - + 41.08076 112.80000 991.19429 48.34790 110 0 - + 41.55722 114.00000 999.52200 48.75410 110 0 - + 41.38904 114.00000 998.97497 48.58592 110 0 - + 41.86197 115.20000 1007.29652 48.99064 110 0 - + 42.33338 116.40000 1015.61662 49.39530 110 0 - + 42.80375 117.60000 1023.93543 49.79989 110 0 - + 43.27352 118.80000 1032.25307 50.20442 110 0 - + 43.74316 120.00000 1040.56969 50.60891 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3282,10 +3114,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 96.969 'Clay rep.' - -6.00 86.594 'Peat rep.' - -8.00 123.242 'Sand 1 rep.' - -11.00 113.230 'Sand 2 rep.' + 0.00 96.972 'Clay rep.' + -6.00 86.596 'Peat rep.' + -8.00 123.238 'Sand 1 rep.' + -11.00 113.229 'Sand 2 rep.' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3370,7 +3202,7 @@ Q max -6.00000 71.25900 45.94600 575.53293 2.40133 -6.60000 70.91900 45.06400 650.39786 17.89640 -7.20000 69.90100 43.87600 752.94409 33.66244 - -7.80000 71.75500 40.76300 859.38262 48.27966 + -7.60000 69.95600 41.76000 826.22344 43.60539 -8.00000 71.66400 39.80500 885.78083 52.77042 -8.66667 71.54100 36.87000 989.75092 69.08832 -9.33333 70.79100 34.28700 1168.98193 83.28748 @@ -3406,8 +3238,8 @@ Lambda passive -5.66667 31.46188 128.85988 3.60200 0.85385 0.11449 4.09575 -6.30000 34.56152 124.77488 25.82512 0.74722 0.74722 3.61023 -6.90000 35.55871 170.91039 26.27672 0.73897 0.73897 4.80643 - -7.50000 36.30345 177.39754 24.36204 0.67107 0.67107 4.88652 - -7.90000 36.69850 131.99106 22.45380 0.61185 0.61185 3.59663 + -7.40000 36.19334 183.19837 24.85737 0.68679 0.68679 5.06166 + -7.80000 36.60597 148.89346 22.91258 0.62592 0.62592 4.06746 -8.33333 39.72627 155.95514 24.47685 0.61614 0.61614 3.92574 -9.00000 45.51908 268.84651 21.29874 0.46961 0.46791 5.90624 -9.66667 51.23739 261.18376 20.68898 0.45862 0.40379 5.09752 @@ -3460,124 +3292,124 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00003 0.00000 0.00003 0.00000 202 100 P 23.14404 1.33333 23.14404 3.09299 202 100 P - 44.86796 2.66667 46.88492 6.26574 110 96 - - 47.03380 4.00000 71.75416 9.58929 110 66 - - 49.39413 5.33333 98.16518 13.11888 110 50 - - 51.99140 6.66667 126.38147 16.88973 110 41 - - 47.38246 6.66667 48.86994 12.28078 110 97 - - 49.13887 8.00000 60.51971 15.20831 110 81 - - 51.08457 9.33333 72.89328 18.31773 110 70 - - 53.20889 10.66667 85.93019 21.59384 110 62 - - 55.49308 12.00000 99.53791 25.01340 110 56 - - 57.91369 13.33333 113.60509 28.54841 110 51 - - 48.66809 13.33333 174.19670 19.30281 110 28 - - 50.02675 14.66667 196.28955 21.75092 110 25 - - 51.45081 16.00000 218.72654 24.23718 110 24 - - 52.92384 17.33333 241.34158 26.74316 110 22 - - 54.43147 18.66667 263.98706 29.25251 110 21 - - 55.96169 20.00000 286.53671 31.75125 110 20 - - 46.84914 20.00000 206.49756 22.63870 110 23 - - 47.68114 21.33333 222.60412 24.40449 110 21 - - 48.52568 22.66667 238.50642 26.14789 110 20 - - 49.37771 24.00000 254.15832 27.86383 110 19 - - 50.23353 25.33333 269.52589 29.54861 110 19 - - 51.09057 26.66667 284.58573 31.19964 110 18 - - 43.87289 26.66667 106.06715 23.98196 110 41 - - 44.35544 28.00000 111.55994 25.22389 110 40 - - 44.84366 29.33333 116.92988 26.43804 110 38 - - 45.33614 30.66667 122.17643 27.62430 110 37 - - 45.83186 32.00000 127.30080 28.78293 110 36 - - 46.33011 33.33333 132.30552 29.91450 110 35 - - 41.04309 33.33333 118.13325 24.62748 110 35 - - 41.34783 34.66667 122.49822 25.53745 110 34 - - 41.65790 36.00000 126.76339 26.42662 110 33 - - 41.97226 37.33333 130.93306 27.29588 110 32 - - 42.28991 38.66667 135.01187 28.14620 110 31 - - 42.60989 40.00000 139.00460 28.97857 110 31 - - 30.81232 40.00000 122.52664 25.35979 110 25 - - 30.82865 41.20000 123.46667 25.55436 110 25 - - 30.83893 42.40000 124.35187 25.73757 110 25 - - 30.84329 43.60000 125.18533 25.91007 110 25 - - 30.84188 44.80000 125.97009 26.07250 110 24 - - 30.83480 46.00000 126.70910 26.22545 110 24 - - 30.54509 46.00000 168.69255 25.93574 110 18 - - 30.53090 47.20000 169.61932 26.07822 110 18 - - 30.51157 48.40000 170.49266 26.21250 110 18 - - 30.48739 49.60000 171.31608 26.33909 110 18 - - 30.45864 50.80000 172.09293 26.45853 110 18 - - 30.42556 52.00000 172.82641 26.57130 110 18 - - 27.98405 52.00000 175.70632 24.12978 110 16 - - 27.93712 53.20000 176.41102 24.22656 110 16 - - 27.88708 54.40000 177.07764 24.31811 110 16 - - 27.83435 55.60000 177.70894 24.40480 110 16 - - 27.77934 56.80000 178.30752 24.48700 110 16 - - 27.72241 58.00000 178.87584 24.56505 110 15 - - 25.55455 58.00000 131.65826 22.39718 110 19 - - 25.53300 58.40000 131.79304 22.42011 110 19 - - 25.51135 58.80000 131.92560 22.44266 110 19 - - 25.48961 59.20000 132.05599 22.46484 110 19 - - 25.46782 59.60000 132.18427 22.48667 110 19 - - 25.44597 60.00000 132.31050 22.50814 110 19 - - 59.38896 60.00000 144.41759 22.66605 110 41 - - 58.34091 61.33333 149.04892 23.39293 110 39 - - 57.33840 62.66667 153.65817 24.11634 110 37 - - 56.38510 64.00000 158.24733 24.83660 110 36 - - 55.48466 65.33333 162.81824 25.55400 110 34 - - 54.64070 66.66667 167.37260 26.26880 110 33 - - 48.39353 66.66667 251.81020 20.02162 110 19 - - 47.43931 68.00000 258.63969 20.56464 110 18 - - 46.54552 69.33333 265.44888 21.10604 110 18 - - 45.71287 70.66667 272.23981 21.64599 110 17 - - 44.94203 72.00000 279.01435 22.18464 110 16 - - 44.23369 73.33333 285.77426 22.72213 110 15 - - 43.70208 73.33333 246.64447 22.19052 110 18 - - 43.04400 74.66667 252.46752 22.71441 110 17 - - 42.44825 76.00000 258.28059 23.23741 110 16 - - 41.91422 77.33333 264.08486 23.75962 110 16 - - 41.44125 78.66667 269.88141 24.28114 110 15 - - 41.02874 80.00000 275.67123 24.80204 110 15 - - 40.75443 80.00000 240.18168 24.52774 110 17 - - 40.47989 81.00000 243.96165 24.91375 110 17 - - 40.23833 82.00000 247.73909 25.29951 110 16 - - 40.02923 83.00000 251.51428 25.68504 110 16 - - 39.85204 84.00000 255.28751 26.07037 110 16 - - 39.70623 85.00000 259.05902 26.45552 110 15 - - 39.57513 85.00000 264.05972 26.32442 110 15 - - 39.45826 86.00000 267.90255 26.70752 110 15 - - 39.37154 87.00000 271.74410 27.09049 110 14 - - 39.31414 88.00000 275.58460 27.47335 110 14 - - 39.28526 89.00000 279.42425 27.85613 110 14 - - 39.28408 90.00000 283.26324 28.23884 110 14 - - 34.57548 90.00000 421.18090 23.53025 110 8 - - 34.53288 91.20000 428.02975 23.91288 110 8 - - 34.52715 92.40000 434.87797 24.29547 110 8 - - 34.55629 93.60000 441.72597 24.67805 110 8 - - 34.61834 94.80000 448.57408 25.06063 110 8 - - 34.71130 96.00000 455.42264 25.44324 110 8 - - 34.62391 96.00000 596.27492 25.35585 110 6 - - 34.74434 97.20000 605.24257 25.73719 110 6 - - 34.89131 98.40000 614.21157 26.11858 110 6 - - 35.06263 99.60000 623.18224 26.50005 110 6 - - 35.25613 100.80000 632.15487 26.88160 110 6 - - 35.46962 102.00000 641.12976 27.26324 110 6 - - 35.44126 102.00000 583.85447 27.23489 110 6 - - 35.67215 103.20000 592.02986 27.61624 110 6 - - 35.91887 104.40000 600.20774 27.99771 110 6 - - 36.17957 105.60000 608.38830 28.37931 110 6 - - 36.45238 106.80000 616.57170 28.76104 110 6 - + 44.86775 2.66667 46.88492 6.26574 110 96 - + 47.03354 4.00000 71.75416 9.58929 110 66 - + 49.39383 5.33333 98.16518 13.11888 110 50 - + 51.99105 6.66667 126.38147 16.88973 110 41 - + 47.38211 6.66667 48.86994 12.28078 110 97 - + 49.13848 8.00000 60.51971 15.20831 110 81 - + 51.08413 9.33333 72.89328 18.31773 110 70 - + 53.20841 10.66667 85.93019 21.59384 110 62 - + 55.49256 12.00000 99.53791 25.01340 110 56 - + 57.91313 13.33333 113.60509 28.54841 110 51 - + 48.66752 13.33333 174.19670 19.30281 110 28 - + 50.02614 14.66667 196.28955 21.75092 110 25 - + 51.45016 16.00000 218.72654 24.23718 110 24 - + 52.92315 17.33333 241.34158 26.74316 110 22 - + 54.43074 18.66667 263.98706 29.25251 110 21 - + 55.96092 20.00000 286.53671 31.75125 110 20 - + 46.84836 20.00000 206.49756 22.63870 110 23 - + 47.68033 21.33333 222.60412 24.40449 110 21 - + 48.52483 22.66667 238.50642 26.14789 110 20 - + 49.37683 24.00000 254.15832 27.86383 110 19 - + 50.23261 25.33333 269.52589 29.54861 110 19 - + 51.08961 26.66667 284.58573 31.19964 110 18 - + 43.87193 26.66667 106.06715 23.98196 110 41 - + 44.35446 28.00000 111.55994 25.22389 110 40 - + 44.84265 29.33333 116.92988 26.43804 110 38 - + 45.33510 30.66667 122.17643 27.62430 110 37 - + 45.83079 32.00000 127.30080 28.78293 110 36 - + 46.32903 33.33333 132.30552 29.91450 110 35 - + 41.04200 33.33333 118.13325 24.62748 110 35 - + 41.34673 34.66667 122.49822 25.53745 110 34 - + 41.65680 36.00000 126.76339 26.42662 110 33 - + 41.97115 37.33333 130.93306 27.29588 110 32 - + 42.28880 38.66667 135.01187 28.14620 110 31 - + 42.60879 40.00000 139.00460 28.97857 110 31 - + 30.81188 40.00000 122.52664 25.35979 110 25 - + 30.82822 41.20000 123.46667 25.55436 110 25 - + 30.83850 42.40000 124.35187 25.73757 110 25 - + 30.84287 43.60000 125.18533 25.91007 110 25 - + 30.84147 44.80000 125.97009 26.07250 110 24 - + 30.83441 46.00000 126.70910 26.22545 110 24 - + 30.54469 46.00000 168.69255 25.93574 110 18 - + 30.53053 47.20000 169.61932 26.07822 110 18 - + 30.51122 48.40000 170.49266 26.21250 110 18 - + 30.48707 49.60000 171.31608 26.33909 110 18 - + 30.45834 50.80000 172.09293 26.45853 110 18 - + 30.42530 52.00000 172.82641 26.57130 110 18 - + 28.54930 52.00000 182.00387 24.69530 110 16 - + 28.51995 52.80000 182.49504 24.76194 110 16 - + 28.48911 53.60000 182.96824 24.82615 110 16 - + 28.45690 54.40000 183.42434 24.88803 110 16 - + 28.42344 55.20000 183.86418 24.94771 110 15 - + 28.38882 56.00000 184.28858 25.00530 110 15 - + 26.17264 56.00000 148.09116 22.78912 110 18 - + 26.13205 56.80000 148.42040 22.83978 110 18 - + 26.09074 57.60000 148.73845 22.88873 110 18 - + 26.04885 58.40000 149.04589 22.93604 110 17 - + 26.00652 59.20000 149.34326 22.98180 110 17 - + 25.96391 60.00000 149.63109 23.02609 110 17 - + 59.38876 60.00000 144.41759 22.66605 110 41 - + 58.34102 61.33333 149.04892 23.39293 110 39 - + 57.33878 62.66667 153.65817 24.11634 110 37 - + 56.38570 64.00000 158.24733 24.83660 110 36 - + 55.48544 65.33333 162.81824 25.55400 110 34 - + 54.64163 66.66667 167.37260 26.26880 110 33 - + 48.39446 66.66667 251.81020 20.02162 110 19 - + 47.44035 68.00000 258.63969 20.56464 110 18 - + 46.54665 69.33333 265.44888 21.10604 110 18 - + 45.71405 70.66667 272.23981 21.64599 110 17 - + 44.94325 72.00000 279.01435 22.18464 110 16 - + 44.23492 73.33333 285.77426 22.72213 110 15 - + 43.70331 73.33333 246.64447 22.19052 110 18 - + 43.04523 74.66667 252.46752 22.71441 110 17 - + 42.44947 76.00000 258.28059 23.23741 110 16 - + 41.91540 77.33333 264.08486 23.75962 110 16 - + 41.44240 78.66667 269.88141 24.28114 110 15 - + 41.02984 80.00000 275.67123 24.80204 110 15 - + 40.75553 80.00000 240.18168 24.52774 110 17 - + 40.48095 81.00000 243.96165 24.91375 110 17 - + 40.23936 82.00000 247.73909 25.29951 110 16 - + 40.03020 83.00000 251.51428 25.68504 110 16 - + 39.85297 84.00000 255.28751 26.07037 110 16 - + 39.70711 85.00000 259.05902 26.45552 110 15 - + 39.57602 85.00000 264.05972 26.32442 110 15 - + 39.45910 86.00000 267.90255 26.70752 110 15 - + 39.37233 87.00000 271.74410 27.09049 110 14 - + 39.31489 88.00000 275.58460 27.47335 110 14 - + 39.28596 89.00000 279.42425 27.85613 110 14 - + 39.28473 90.00000 283.26324 28.23884 110 14 - + 34.57614 90.00000 421.18090 23.53025 110 8 - + 34.53348 91.20000 428.02975 23.91288 110 8 - + 34.52770 92.40000 434.87797 24.29547 110 8 - + 34.55679 93.60000 441.72597 24.67805 110 8 - + 34.61879 94.80000 448.57408 25.06063 110 8 - + 34.71170 96.00000 455.42264 25.44324 110 8 - + 34.62431 96.00000 596.27492 25.35585 110 6 - + 34.74470 97.20000 605.24257 25.73719 110 6 - + 34.89162 98.40000 614.21157 26.11858 110 6 - + 35.06290 99.60000 623.18224 26.50005 110 6 - + 35.25635 100.80000 632.15487 26.88160 110 6 - + 35.46980 102.00000 641.12976 27.26324 110 6 - + 35.44144 102.00000 583.85447 27.23489 110 6 - + 35.67230 103.20000 592.02986 27.61624 110 6 - + 35.91898 104.40000 600.20774 27.99771 110 6 - + 36.17964 105.60000 608.38830 28.37931 110 6 - + 36.45242 106.80000 616.57170 28.76104 110 6 - 36.73546 108.00000 624.75810 29.14291 110 6 - 36.74989 108.00000 546.03907 29.15734 110 7 - - 37.04161 109.20000 553.19674 29.53954 110 7 - - 37.34043 110.40000 560.35727 29.92190 110 7 - - 37.64508 111.60000 567.52074 30.30441 110 7 - - 37.95434 112.80000 574.68726 30.68709 110 7 - - 38.26696 114.00000 581.85690 31.06993 110 7 - - 38.31223 114.00000 588.14290 31.11520 110 7 - - 38.62762 115.20000 595.39322 31.49877 110 6 - - 38.94463 116.40000 602.64683 31.88252 110 6 - - 39.26281 117.60000 609.90377 32.26644 110 6 - - 39.58170 118.80000 617.16409 32.65054 110 6 - - 39.90086 120.00000 624.42783 33.03482 110 6 - + 37.04159 109.20000 553.19674 29.53954 110 7 - + 37.34037 110.40000 560.35727 29.92190 110 7 - + 37.64500 111.60000 567.52074 30.30441 110 7 - + 37.95423 112.80000 574.68726 30.68709 110 7 - + 38.26682 114.00000 581.85690 31.06993 110 7 - + 38.31208 114.00000 588.14290 31.11520 110 7 - + 38.62745 115.20000 595.39322 31.49877 110 6 - + 38.94443 116.40000 602.64683 31.88252 110 6 - + 39.26258 117.60000 609.90377 32.26644 110 6 - + 39.58144 118.80000 617.16409 32.65054 110 6 - + 39.90057 120.00000 624.42783 33.03482 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3590,10 +3422,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 185.668 'Clay rep.' - -6.00 58.613 'Peat rep.' - -8.00 136.666 'Sand 1 rep.' - -11.00 109.344 'Sand 2 rep.' + 0.00 185.665 'Clay rep.' + -6.00 58.614 'Peat rep.' + -8.00 136.669 'Sand 1 rep.' + -11.00 109.345 'Sand 2 rep.' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3679,16 +3511,16 @@ Depth -7.08000 -7.20000 -7.20000 - -7.32000 + -7.28000 + -7.36000 -7.44000 - -7.56000 + -7.52000 + -7.60000 + -7.60000 -7.68000 - -7.80000 - -7.80000 + -7.76000 -7.84000 - -7.88000 -7.92000 - -7.96000 -8.00000 -8.00000 -8.13333 @@ -3771,7 +3603,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 37.57365 210000000.000 1 2 0 'anchor' + -1.50000 29.82294 210000000.000 1 2 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3832,22 +3664,22 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 41.56 : Percentage mobilized resistance left - 2.95 : Percentage mobilized resistance right - 582.08 : Effective left - 269.51 : Effective right + 32.31 : Percentage mobilized resistance left + 2.91 : Percentage mobilized resistance right + 585.90 : Effective left + 265.71 : Effective right 240.00 : Water pressure left 720.00 : Water pressure right - 1400.53 : Max effective resistance left + 1813.39 : Max effective resistance left 9143.49 : Max effective resistance right --12308.72 : Max moment left +-15985.79 : Max moment left -77098.96 : Max moment right --4928.07 : Max mobilized moment left --1433.27 : Max mobilized moment right - 315.52 : Vertical force left - 112.23 : Vertical force right - 40.0 : Max mobilized moment percentage left - 1.9 : Max mobilized moment percentage right +-4814.07 : Max mobilized moment left +-1317.97 : Max mobilized moment right + 314.50 : Vertical force left + 108.83 : Vertical force right + 30.1 : Max mobilized moment percentage left + 1.7 : Max mobilized moment percentage right -1.50 : Level of single support 4 : Node of single support 1 : Moment present @@ -3862,150 +3694,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00173 0.04104 9.16302 - 0.31758 6.39384 7.92880 - 1.27770 12.76633 6.69452 - 2.86240 18.88537 5.45979 - 5.04626 24.74901 4.22423 - 7.80360 30.35453 2.98747 - 7.80373 30.35739 2.98747 - 11.10885 35.70121 1.74899 - 14.93510 40.77892 0.50783 - 19.25559 45.58516 -0.73705 - 24.04341 50.12970 -1.98668 - 29.27341 54.43055 -3.24212 - 29.27359 54.42900 -3.24212 - 34.92146 58.48732 -4.50451 - 40.96269 62.29481 -5.77533 - 47.37179 65.84345 -7.05614 - 54.12250 69.12565 -8.34847 - 61.18780 72.13425 -9.65388 - 61.18831 34.70222 -9.65388 - 64.79730 37.43042 -10.97384 - 68.66483 39.87172 -12.30946 - 72.76187 42.01978 -13.66173 - 77.05880 43.86838 -15.03163 - 81.52536 45.41147 -16.42015 - 81.53738 -174.69059 -16.42015 - 58.35906 -173.05683 -18.30017 - 35.37464 -171.74365 -20.20525 - 12.56095 -170.42617 -22.12561 - -10.06284 -168.89502 -24.05145 - -32.46823 -167.15018 -25.97295 - -32.47218 -167.18631 -25.97295 - -54.63549 -165.22780 -27.88037 - -76.52343 -163.05561 -29.76429 - -98.10749 -160.66973 -31.61545 - -119.35919 -158.07018 -33.42458 - -140.25004 -155.25695 -35.18241 - -140.24999 -155.27639 -35.18241 - -160.75409 -152.24948 -36.87976 - -180.84035 -149.00889 -38.50801 - -200.48030 -145.55462 -40.05873 - -219.64542 -141.88667 -41.52348 - -238.30725 -138.00504 -42.89383 - -238.30796 -48.00487 -42.89383 - -244.43796 -43.90956 -44.16235 - -250.00768 -39.60057 -45.32579 - -254.98862 -35.07791 -46.38204 - -259.35229 -30.34156 -47.32896 - -263.07021 -25.39154 -48.16441 - -263.07019 -25.38778 -48.16441 - -266.11335 -20.22407 -48.88644 - -268.45378 -14.84669 -49.49409 - -270.06297 -9.25563 -49.98667 - -270.91245 -3.45089 -50.36349 - -270.97371 2.56754 -50.62387 - -270.97367 2.57061 -50.62387 - -270.21782 8.80271 -50.76737 - -268.61678 15.24849 -50.79472 - -266.14206 21.90795 -50.70697 - -262.76517 28.78109 -50.50521 - -258.45761 35.86791 -50.19051 - -258.45749 35.86934 -50.19051 - -253.75173 42.58475 -49.81186 - -248.23123 49.44828 -49.34486 - -241.87822 56.45992 -48.79172 - -234.67492 63.61969 -48.15466 - -226.60357 70.92757 -47.43589 - -226.60356 70.92792 -47.43589 - -217.64633 78.38392 -46.63786 - -207.78549 85.98804 -45.76404 - -197.00328 93.74028 -44.81819 - -185.28190 101.64064 -43.80407 - -172.60360 109.68911 -42.72543 - -172.60360 109.68934 -42.72543 - -158.95056 117.88593 -41.58629 - -144.30505 126.23065 -40.39179 - -128.64928 134.72348 -39.14738 - -111.96549 143.36443 -37.85852 - -94.23589 152.15350 -36.53065 - -94.23588 152.15361 -36.53065 - -88.09138 155.05323 -36.08035 - -81.83309 157.84322 -35.62665 - -75.46539 160.52330 -35.16978 - -68.99270 163.09296 -34.70999 - -62.41943 165.55154 -34.24754 - -62.41960 165.55305 -34.24754 - -39.90632 171.73676 -32.68997 - -16.73359 175.43503 -31.11531 - 6.76291 176.58083 -29.53355 - 30.23769 175.09558 -27.95472 - 53.33442 170.89597 -26.38882 - 53.33348 170.90599 -26.38882 - 74.37168 144.96909 -24.84662 - 92.07125 120.81762 -23.33646 - 106.66655 98.39500 -21.86465 - 118.38395 77.63811 -20.43753 - 127.44099 58.47734 -19.06143 - 127.44057 58.50435 -19.06143 - 134.13699 42.21074 -17.74137 - 138.76670 27.49070 -16.47898 - 141.53431 14.26625 -15.27551 - 142.63401 2.45876 -14.13218 - 142.24943 -8.01119 -13.05024 - 142.25063 -7.98905 -13.05024 - 141.12228 -14.47035 -12.27936 - 139.37753 -20.32255 -11.54259 - 137.07764 -25.57841 -10.83939 - 134.28065 -30.27000 -10.16922 - 131.04140 -34.42883 -9.53152 - 131.04226 -34.42530 -9.53152 - 127.41926 -37.95402 -8.92562 - 123.46710 -41.01340 -8.35051 - 119.23126 -43.63244 -7.80519 - 114.75436 -45.83912 -7.28864 - 110.07628 -47.66042 -6.79983 - 110.07550 -47.64683 -6.79983 - 104.24519 -49.44536 -6.24835 - 98.22690 -50.78678 -5.73316 - 92.07303 -51.71152 -5.25211 - 85.83128 -52.25755 -4.80309 - 79.54494 -52.46033 -4.38395 - 79.54518 -52.44505 -4.38395 - 73.26147 -52.23505 -3.99250 - 67.01980 -51.74923 -3.62655 - 60.85157 -51.01552 -3.28395 - 54.78498 -50.05935 -2.96256 - 48.84531 -48.90365 -2.66024 - 48.84759 -48.90735 -2.66024 - 43.15385 -46.00396 -2.37483 - 37.80289 -43.19422 -2.10444 - 32.78357 -40.47624 -1.84730 - 28.08719 -37.79328 -1.60169 - 23.71792 -34.99194 -1.36584 - 23.71363 -35.02395 -1.36584 - 19.62927 -32.97550 -1.13810 - 15.81676 -30.49580 -0.91718 - 12.32698 -27.59874 -0.70186 - 9.20932 -24.29538 -0.49096 - 6.51201 -20.59398 -0.28325 - 6.50871 -20.56057 -0.28325 - 4.24679 -17.05970 -0.07763 - 2.43009 -13.16591 0.12653 - 1.09774 -9.00297 0.32969 - 0.27829 -4.61739 0.53231 - -0.00151 -0.00864 0.73484 + -0.00003 0.00024 6.40807 + 0.30691 6.10781 5.51089 + 1.21537 12.03046 4.61365 + 2.70680 17.76708 3.71598 + 4.76252 23.31572 2.81754 + 7.36359 28.67365 1.91796 + 7.36353 28.67533 1.91796 + 10.49088 33.83901 1.01675 + 14.12471 38.80405 0.11302 + 18.24489 43.56511 -0.79424 + 22.83126 48.13202 -1.70601 + 27.86543 52.52286 -2.62328 + 27.86561 52.52127 -2.62328 + 33.33003 56.73723 -3.54716 + 39.20695 60.77009 -4.47910 + 45.47768 64.61192 -5.42059 + 52.12272 68.25522 -6.37316 + 59.12187 71.69291 -7.33833 + 59.12237 41.98207 -7.33833 + 63.48364 45.20745 -8.31756 + 68.15657 48.21412 -9.31214 + 73.11897 50.99575 -10.32325 + 78.34801 53.54614 -11.35210 + 83.82028 55.85920 -12.39987 + 83.82529 -164.17586 -12.39987 + 62.12310 -161.40959 -13.82643 + 40.76850 -158.96374 -15.27968 + 19.71813 -156.84721 -16.75056 + -1.07176 -155.05318 -18.23003 + -21.63157 -153.30834 -19.70901 + -21.63983 -153.39226 -19.70901 + -41.96394 -151.43375 -21.17854 + -62.01266 -149.26155 -22.63002 + -81.75752 -146.87568 -24.05498 + -101.17001 -144.27613 -25.44493 + -120.22166 -141.46289 -26.79140 + -120.22160 -141.48234 -26.79140 + -138.88650 -138.45543 -28.08599 + -157.13355 -135.21484 -29.32089 + -174.93429 -131.76057 -30.48843 + -192.26021 -128.09262 -31.58099 + -209.08282 -124.21099 -32.59092 + -209.08354 -34.21082 -32.59092 + -213.37433 -30.11551 -33.51157 + -217.10484 -25.80652 -34.34050 + -220.24658 -21.28386 -35.07637 + -222.77104 -16.54751 -35.71783 + -224.64975 -11.59749 -36.26355 + -224.64973 -11.59372 -36.26355 + -225.85369 -6.43002 -36.71237 + -226.35491 -1.05264 -37.06410 + -226.12490 4.53843 -37.31885 + -225.13516 10.34317 -37.47673 + -223.35722 16.36159 -37.53784 + -223.35718 16.36467 -37.53784 + -220.76212 22.59677 -37.50252 + -217.32188 29.04255 -37.37231 + -213.00795 35.70200 -37.14905 + -207.79185 42.57514 -36.83461 + -201.64508 49.66196 -36.43084 + -201.64497 49.66340 -36.43084 + -195.28392 56.37880 -35.99289 + -188.10813 63.24233 -35.48694 + -180.09983 70.25398 -34.91577 + -171.24125 77.41374 -34.28219 + -161.51461 84.72162 -33.58898 + -161.51460 84.72197 -33.58898 + -150.90209 92.17797 -32.83917 + -139.38596 99.78209 -32.03680 + -126.94846 107.53433 -31.18621 + -113.57180 115.43469 -30.29173 + -99.23821 123.48316 -29.35769 + -99.23790 123.48035 -29.35769 + -89.15499 128.44085 -28.71532 + -78.71169 132.48925 -28.05917 + -67.97234 135.95151 -27.39087 + -56.96382 139.24976 -26.71210 + -45.69432 142.47544 -26.02452 + -45.69461 142.47239 -26.02452 + -34.16632 145.72520 -25.32981 + -22.38020 148.91729 -24.62982 + -10.34129 152.04416 -23.92639 + 1.94500 155.10097 -23.22141 + 14.47286 158.08262 -22.51672 + 14.47221 158.08770 -22.51672 + 34.10224 136.56518 -21.34883 + 50.94286 116.24109 -20.19567 + 65.15150 97.07880 -19.06337 + 76.88028 79.03566 -17.95808 + 86.27526 62.06318 -16.88594 + 86.27488 62.08155 -16.88594 + 93.58770 47.80919 -15.85199 + 99.07567 34.69957 -14.85830 + 102.89012 22.69696 -13.90653 + 105.17487 11.74464 -12.99836 + 106.06613 1.78469 -12.13547 + 106.06612 1.80708 -12.13547 + 105.78675 -5.82978 -11.31879 + 104.55497 -12.48877 -10.54758 + 102.49731 -18.22745 -9.82099 + 99.73272 -23.10199 -9.13815 + 96.37275 -27.16725 -8.49821 + 96.37363 -27.15236 -8.49821 + 93.55263 -29.21384 -8.04570 + 90.54130 -30.96230 -7.61580 + 87.36990 -32.41886 -7.20775 + 84.06658 -33.60387 -6.82079 + 80.65752 -34.53695 -6.45416 + 80.65838 -34.53844 -6.45416 + 77.17580 -35.07639 -6.10704 + 73.65016 -35.40242 -5.77859 + 70.10180 -35.53379 -5.46792 + 66.54935 -35.48692 -5.17421 + 63.00984 -35.27744 -4.89658 + 63.00923 -35.27016 -4.89658 + 58.80149 -34.82869 -4.58343 + 54.65715 -34.21729 -4.29075 + 50.59523 -33.45851 -4.01713 + 46.63216 -32.57329 -3.76114 + 42.78193 -31.58090 -3.52138 + 42.78208 -31.57198 -3.52138 + 39.06514 -30.36422 -3.29646 + 35.49743 -29.08750 -3.08514 + 32.08631 -27.75660 -2.88622 + 28.83747 -26.38495 -2.69852 + 25.75507 -24.98458 -2.52085 + 25.75520 -24.97915 -2.52085 + 22.83801 -23.63795 -2.35208 + 20.08257 -22.28479 -2.19125 + 17.48980 -20.92808 -2.03747 + 15.05968 -19.57518 -1.88982 + 12.79135 -18.23238 -1.74741 + 12.79264 -18.25422 -1.74741 + 10.66072 -17.25323 -1.60939 + 8.65848 -16.08693 -1.47507 + 6.80706 -14.74072 -1.34381 + 5.12766 -13.22070 -1.21497 + 3.64086 -11.53148 -1.08792 + 3.64171 -11.53603 -1.08792 + 2.37972 -9.48022 -0.96204 + 1.37053 -7.32271 -0.83697 + 0.62633 -5.06371 -0.71248 + 0.16181 -2.64030 -0.58828 + 0.00207 0.01840 -0.46414 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4082,34 +3914,34 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 62.06770 0.00000 62.06770 5.10698 202 100 P - 64.98829 0.00000 68.19997 5.95814 110 95 - - 62.46147 0.00000 74.33224 6.80931 110 84 - - 59.91927 0.00000 80.46451 7.66047 110 74 - - 57.35365 0.00000 86.59679 8.51163 110 66 - - 54.75662 0.00000 92.72906 9.36279 110 59 - - 54.75662 0.00000 92.72906 9.36279 110 59 - - 52.11989 0.00000 98.86133 10.21396 110 53 - - 49.43429 0.00000 104.99360 11.06512 110 47 - - 46.69049 0.00000 111.12588 11.91628 110 42 - - 44.20024 0.00000 117.25815 12.76745 110 38 - - 41.81691 0.00000 123.39042 13.61861 110 34 - - 41.81691 0.00000 123.39042 13.61861 110 34 - - 39.34958 0.00000 129.52269 14.46977 110 30 - - 36.80012 0.00000 135.65496 15.32094 110 27 - - 34.17268 0.00000 141.78724 16.17210 110 24 - - 31.47142 0.00000 147.91951 17.02326 110 21 - - 28.70051 0.00000 154.05178 17.87443 110 19 - - 28.70051 0.00000 154.05178 17.87443 110 19 - - 25.86358 0.00000 160.18405 18.72559 110 16 - - 22.96248 0.00000 166.31633 19.57675 110 14 - - 19.99861 0.00000 172.44860 20.42792 110 0 - - 16.97342 0.00000 178.58087 21.27908 110 0 - - 13.88833 0.00000 184.71314 22.13024 110 0 - - 13.88833 0.00000 184.71314 22.13024 110 0 - - 9.28466 1.33333 187.98369 22.58420 110 0 - - 6.41311 2.66667 191.25423 23.03815 1 0 A - 6.68237 4.00000 194.52478 23.49210 1 0 A + 61.99836 0.00000 62.06770 5.10698 110 99 - + 60.15297 0.00000 68.19997 5.95814 110 88 - + 58.30021 0.00000 74.33224 6.80931 110 78 - + 56.43209 0.00000 80.46451 7.66047 110 70 - + 54.54066 0.00000 86.59679 8.51163 110 63 - + 52.61795 0.00000 92.72906 9.36279 110 57 - + 52.61795 0.00000 92.72906 9.36279 110 57 - + 50.65574 0.00000 98.86133 10.21396 110 51 - + 48.64496 0.00000 104.99360 11.06512 110 46 - + 46.57638 0.00000 111.12588 11.91628 110 42 - + 44.76183 0.00000 117.25815 12.76745 110 38 - + 43.05480 0.00000 123.39042 13.61861 110 35 - + 43.05480 0.00000 123.39042 13.61861 110 35 - + 41.26445 0.00000 129.52269 14.46977 110 32 - + 39.39273 0.00000 135.65496 15.32094 110 29 - + 37.44388 0.00000 141.78724 16.17210 110 26 - + 35.42211 0.00000 147.91951 17.02326 110 24 - + 33.33165 0.00000 154.05178 17.87443 110 22 - + 33.33165 0.00000 154.05178 17.87443 110 22 - + 31.17615 0.00000 160.18405 18.72559 110 19 - + 28.95710 0.00000 166.31633 19.57675 110 17 - + 26.67551 0.00000 172.44860 20.42792 110 15 - + 24.33239 0.00000 178.58087 21.27908 110 14 - + 21.92876 0.00000 184.71314 22.13024 110 0 - + 21.92876 0.00000 184.71314 22.13024 110 0 - + 18.23196 1.33333 187.98369 22.58420 110 0 - + 14.45576 2.66667 191.25423 23.03815 110 0 - + 10.62550 4.00000 194.52478 23.49210 110 0 - 6.95163 5.33333 197.79532 23.94606 1 0 A 7.22089 6.66667 201.06587 24.40001 1 0 A 7.22089 6.66667 201.06587 24.40001 1 0 A @@ -4155,16 +3987,16 @@ Status character 15.65347 50.80000 308.74861 32.36016 1 0 A 15.68779 52.00000 309.30660 32.42076 1 0 A 15.68779 52.00000 309.30660 32.42076 1 0 A - 15.72211 53.20000 309.86459 32.48136 1 0 A + 15.71067 52.80000 309.67860 32.46116 1 0 A + 15.73355 53.60000 310.05059 32.50156 1 0 A 15.75643 54.40000 310.42258 32.54196 1 0 A - 15.79075 55.60000 310.98057 32.60256 1 0 A + 15.77931 55.20000 310.79458 32.58236 1 0 A + 15.80219 56.00000 311.16657 32.62276 1 0 A + 15.80219 56.00000 311.16657 32.62276 1 0 A 15.82507 56.80000 311.53856 32.66316 1 0 A - 15.85939 58.00000 312.09655 32.72375 1 0 A - 15.85939 58.00000 312.09655 32.72375 1 0 A + 15.84795 57.60000 311.91056 32.70355 1 0 A 15.87083 58.40000 312.28255 32.74395 1 0 A - 15.88227 58.80000 312.46855 32.76415 1 0 A 15.89371 59.20000 312.65454 32.78435 1 0 A - 15.90515 59.60000 312.84054 32.80455 1 0 A 15.91659 60.00000 313.02654 32.82475 1 0 A 12.98758 60.00000 931.37189 25.96361 1 0 A 13.22735 61.33333 948.56645 26.44294 1 0 A @@ -4212,20 +4044,20 @@ Status character 16.22919 103.20000 1303.15611 32.65039 1 0 A 16.39792 104.40000 1316.70452 32.98984 1 0 A 16.56664 105.60000 1330.25293 33.32929 1 0 A - 17.65186 106.80000 1343.80133 33.66875 110 0 - - 20.34981 108.00000 1357.34974 34.00820 110 0 - - 20.34981 108.00000 1357.34974 34.00820 110 0 - - 22.96666 109.20000 1370.89815 34.34765 110 0 - - 25.51535 110.40000 1384.44656 34.68711 110 0 - - 28.00792 111.60000 1397.99496 35.02656 110 0 - - 30.45643 112.80000 1411.54337 35.36601 110 0 - - 32.87292 114.00000 1425.09178 35.70547 110 0 - - 32.87292 114.00000 1425.09178 35.70547 110 0 - - 35.26860 115.20000 1438.64019 36.04492 110 0 - - 37.64968 116.40000 1452.18859 36.38437 110 3 - - 40.02074 117.60000 1465.73700 36.72383 110 3 - - 42.38637 118.80000 1479.28541 37.06328 110 3 - - 44.75113 120.00000 1492.83382 37.40273 110 3 - + 16.73537 106.80000 1343.80133 33.66875 1 0 A + 16.90410 108.00000 1357.34974 34.00820 1 0 A + 16.90410 108.00000 1357.34974 34.00820 1 0 A + 18.25378 109.20000 1370.89815 34.34765 110 0 - + 19.93646 110.40000 1384.44656 34.68711 110 0 - + 21.58850 111.60000 1397.99496 35.02656 110 0 - + 23.21631 112.80000 1411.54337 35.36601 110 0 - + 24.82630 114.00000 1425.09178 35.70547 110 0 - + 24.82630 114.00000 1425.09178 35.70547 110 0 - + 26.42455 115.20000 1438.64019 36.04492 110 0 - + 28.01463 116.40000 1452.18859 36.38437 110 0 - + 29.59908 117.60000 1465.73700 36.72383 110 0 - + 31.18045 118.80000 1479.28541 37.06328 110 0 - + 32.76132 120.00000 1492.83382 37.40273 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4238,10 +4070,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 123.408 'Clay' + 0.00 129.504 'Clay' -6.00 31.261 'Peat' -8.00 47.055 'Sand 1' - -11.00 67.790 'Sand 2' + -11.00 57.894 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4256,7 +4088,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.80 + 0.00 -7.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Stage 3 passive @@ -4278,7 +4110,7 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 0.00 0.00 10.00 11.00 0.25 21.80 21.80 29.67 0.29 0.50 4.65 'Peat -7.8m à -8m' + 6.00 0.00 0.00 10.00 11.00 2.50 21.80 21.80 29.67 0.29 0.50 4.65 'Peat' -8.00 0.00 0.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -10.00 0.00 20.00 17.00 19.00 0.00 17.20 28.57 36.91 0.20 0.40 14.33 'Sand 1' -11.00 20.00 80.00 17.00 19.00 0.00 17.20 28.08 43.29 0.16 0.31 12.54 'Sand 2' @@ -4308,7 +4140,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -4317,24 +4149,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.80000 0.00000 0.00000 0.00000 0.00000 - -8.00000 72.14100 30.62200 1.57691 0.00767 - -8.66667 66.57200 30.42600 47.07818 1.02891 - -9.33333 82.06900 30.41900 469.99372 3.55983 - -10.00000 79.87800 45.62100 662.50937 8.30088 - -10.50000 78.82500 43.02100 808.54716 15.22198 - -11.00000 78.19100 41.26400 926.53591 22.65557 - -11.60000 76.63100 39.59100 1124.64825 30.57302 - -12.20000 78.97500 38.45100 1356.67457 38.57888 - -12.80000 78.84000 37.64900 1420.61220 46.40835 - -13.40000 78.81200 37.07500 1434.87290 53.92348 - -14.00000 78.88300 35.13900 1399.57631 60.01054 + -7.20000 0.00000 0.00000 0.00000 0.00000 + -7.60000 71.41800 0.00000 12.25240 0.00000 + -8.00000 68.19900 0.00000 35.28103 0.00000 + -8.66667 62.94900 29.28100 366.45689 0.81395 + -9.33333 80.49000 49.48700 591.26331 5.80483 + -10.00000 78.79300 45.00000 806.47357 18.13460 + -10.50000 77.94300 41.38700 972.50274 26.65483 + -11.00000 77.40500 39.99100 1112.24119 35.08275 + -11.60000 76.13400 38.57200 1347.18169 43.76962 + -12.20000 78.28800 37.58100 1637.36535 52.42669 + -12.80000 78.14300 36.86800 1744.63977 60.84670 + -13.40000 78.07100 36.34700 1802.96053 68.91683 + -14.00000 78.06000 34.64000 1812.55002 75.82609 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -4345,17 +4178,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.90000 1.00164 7.88454 0.03836 2.74414 0.03829 7.87161 - -8.33333 7.89566 68.25191 1.53186 1.80025 0.19401 8.64423 - -9.00000 20.91076 634.37330 3.79637 1.28846 0.18155 30.33718 - -9.66667 35.01686 288.77348 7.11158 0.94420 0.20309 8.24670 - -10.25000 40.31386 292.07557 13.84219 0.81073 0.34336 7.24504 - -10.75000 36.47897 235.97751 14.86719 0.77706 0.40756 6.46886 - -11.30000 31.78836 330.18723 13.19575 0.67876 0.41511 10.38705 - -11.90000 26.16252 386.71054 13.34310 0.64876 0.51001 14.78109 - -12.50000 20.11463 23.83430 13.04912 0.64874 0.64874 1.18492 - -13.10000 13.75589 23.83430 12.52521 0.91053 0.91053 1.73266 - -13.70000 7.17835 23.83430 10.14510 1.41329 1.41329 3.32030 + -7.40000 2.01302 30.63101 0.00000 2.71331 0.00000 15.21643 + -7.80000 6.31878 57.57157 0.00000 2.42817 0.00000 9.11118 + -8.33333 15.33906 496.76379 1.22092 1.58629 0.07960 32.38555 + -9.00000 29.39452 337.20963 7.48632 1.05399 0.25468 11.47185 + -9.66667 43.45910 322.81539 18.49465 0.77892 0.42556 7.42803 + -10.25000 48.26257 332.05834 17.04046 0.67305 0.35308 6.88025 + -10.75000 43.93852 279.47690 16.85586 0.63760 0.38362 6.36064 + -11.30000 38.76252 391.56749 14.47811 0.54005 0.37351 10.10170 + -11.90000 32.71463 483.63944 14.42844 0.51023 0.44104 14.78358 + -12.50000 26.35589 178.79071 14.03336 0.53246 0.53246 6.78371 + -13.10000 19.77835 97.20126 13.45020 0.68005 0.68005 4.91453 + -13.70000 13.05220 15.98248 11.51544 0.88226 0.88226 1.22450 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -4444,78 +4278,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 202 100 P - 3.14947 0.00000 3.14947 1.09795 202 100 P - 6.30392 0.00000 6.30392 2.19762 202 100 P - 9.46825 0.00000 9.46825 3.30075 202 100 P - 12.64729 0.00000 12.64729 4.40901 202 100 P - 15.84572 0.00000 15.84572 5.52402 202 100 P - 17.40103 0.00000 17.40103 3.62393 202 100 P - 37.39167 0.00000 37.39167 7.78718 202 100 P - 57.82877 0.00000 57.82877 12.04340 202 100 P - 78.82487 0.00000 78.82487 16.41604 202 100 P - 100.44077 0.00000 100.44077 20.91776 202 100 P - 122.68655 0.00000 122.68655 25.55066 202 100 P - 282.17505 0.00000 430.57181 18.28689 110 66 - - 270.15781 0.00000 510.73668 21.69159 110 53 - - 258.53979 0.00000 592.75987 25.17521 110 44 - - 247.37110 0.00000 676.33122 28.72458 110 37 - - 236.70026 0.00000 761.10257 32.32492 110 31 - - 226.57546 0.00000 846.71893 35.96114 110 27 - - 216.96733 0.00000 230.16764 26.35302 110 94 - - 206.44717 0.00000 253.57875 29.03347 110 81 - - 196.50993 0.00000 277.04388 31.72011 110 71 - - 187.15965 0.00000 300.49018 34.40459 110 62 - - 178.40170 0.00000 323.85644 37.07991 110 55 - - 170.24276 0.00000 347.09293 39.74037 110 49 - - 164.62514 0.00000 304.93442 34.12274 110 54 - - 156.34883 3.00000 299.86316 33.55526 110 52 - - 148.40307 6.00000 294.69705 32.97716 110 50 - - 140.78141 9.00000 289.42724 32.38746 110 49 - - 133.47761 12.00000 284.04703 31.78540 110 47 - - 126.48566 15.00000 278.55160 31.17046 110 45 - - 125.19101 15.00000 248.70978 29.87580 110 50 - - 118.52985 18.00000 243.69740 29.27369 110 49 - - 112.16382 21.00000 238.57775 28.65870 110 47 - - 106.08268 24.00000 233.35034 28.03077 110 45 - - 100.27630 27.00000 228.01558 27.38994 110 44 - - 94.73463 30.00000 222.57461 26.73636 110 43 - - 91.35243 30.00000 357.38783 23.35416 110 26 - - 85.13814 33.60000 346.68292 22.65463 110 25 - - 79.27131 37.20000 335.74298 21.93974 110 24 - - 73.73113 40.80000 324.57566 21.20999 110 23 - - 68.49682 44.40000 313.18953 20.46594 110 22 - - 63.54767 48.00000 301.59383 19.70820 110 21 - - 62.67673 48.00000 429.17724 18.83725 110 15 - - 58.02550 51.60000 412.39166 18.10051 110 14 - - 53.61735 55.20000 395.33559 17.35189 110 14 - - 49.43147 58.80000 378.02316 16.59202 110 13 - - 45.44708 62.40000 360.46844 15.82152 110 13 - - 41.64337 66.00000 342.68530 15.04099 110 12 - - 27.47131 66.00000 27.47131 15.04036 202 100 P - 26.02850 69.60000 26.02850 14.25044 202 100 P - 24.56953 73.20000 24.56953 13.45166 202 100 P - 23.09541 76.80000 23.09541 12.64458 202 100 P - 21.60711 80.40000 21.60711 11.82975 202 100 P - 20.10559 84.00000 20.10559 11.00768 202 100 P - 29.10819 84.00000 29.39951 15.44980 110 99 - - 25.66750 87.60000 27.18587 14.28650 110 94 - - 22.28614 91.20000 24.95544 13.11439 110 89 - - 18.95270 94.80000 22.70940 11.93406 110 83 - - 15.65571 98.40000 20.44887 10.74613 110 77 - - 12.38368 102.00000 18.17491 9.55114 110 68 - - 17.65739 102.00000 34.82862 14.82485 110 51 - - 13.73621 105.60000 30.44720 12.95989 110 45 - - 11.08556 109.20000 26.04375 11.08556 1 43 A - 9.20257 112.80000 21.61996 9.20257 1 43 A - 7.31159 116.40000 17.17742 7.31159 1 43 A - 5.41327 120.00000 12.71761 5.41327 1 43 A + 0.00002 0.00000 0.00002 0.00000 202 100 P + 12.18596 0.00000 12.18596 2.17294 202 100 P + 24.44821 0.00000 24.44821 4.35948 202 100 P + 28.48537 0.00000 36.85993 6.57267 110 77 - + 30.19420 0.00000 49.48840 8.82451 110 61 - + 31.94512 0.00000 62.39250 11.12550 110 51 - + 30.77594 0.00000 37.35892 9.95632 110 82 - + 32.33109 0.00000 45.27970 12.06725 110 71 - + 33.93969 0.00000 53.41686 14.23584 110 64 - + 35.60722 0.00000 61.78544 16.46610 110 58 - + 37.33726 0.00000 70.39328 18.76013 110 53 - + 39.13159 0.00000 79.24147 21.11821 110 49 - + 238.96340 0.00000 281.66244 13.79621 110 85 - + 231.42272 0.00000 366.14756 17.93440 110 63 - + 224.13319 0.00000 452.75441 22.17652 110 50 - + 217.14173 0.00000 541.18697 26.50807 110 40 - + 210.49235 0.00000 631.08917 30.91160 110 33 - + 204.22793 0.00000 722.08208 35.36855 110 28 - + 192.35968 0.00000 255.78140 23.50030 110 75 - + 185.00496 0.00000 288.26790 26.48505 110 64 - + 178.06484 0.00000 320.88595 29.48188 110 55 - + 171.54605 0.00000 353.52650 32.48078 110 49 - + 165.45676 0.00000 386.09624 35.47317 110 43 - + 159.80666 0.00000 418.51810 38.45198 110 38 - + 149.77143 0.00000 270.99053 28.41675 110 55 - + 143.79184 0.00000 291.84809 30.60393 110 49 - + 138.24949 0.00000 312.53940 32.77367 110 44 - + 133.13348 0.00000 333.04195 34.92362 110 40 - + 128.43363 0.00000 353.34021 37.05215 110 36 - + 124.14038 0.00000 373.42449 39.15824 110 33 - + 118.81775 0.00000 345.88621 33.83561 110 34 - + 113.75994 3.00000 340.44098 33.30294 110 33 - + 108.91706 6.00000 334.88114 32.75906 110 33 - + 104.28152 9.00000 329.20711 32.20401 110 32 - + 99.84583 12.00000 323.42014 31.63791 110 31 - + 95.60252 15.00000 317.52208 31.06094 110 30 - + 93.96661 15.00000 293.54214 29.42503 110 32 - + 89.93883 18.00000 287.98906 28.86839 110 31 - + 86.08778 21.00000 282.33814 28.30193 110 30 - + 82.40520 24.00000 276.59231 27.72596 110 30 - + 78.88285 27.00000 270.75470 27.14079 110 29 - + 75.51252 30.00000 264.82863 26.54675 110 29 - + 71.45096 30.00000 420.59012 22.48519 110 17 - + 67.70625 33.60000 409.11851 21.87191 110 17 - + 64.15628 37.20000 397.46203 21.24874 110 16 - + 60.78746 40.80000 385.63036 20.61621 110 16 - + 57.58621 44.40000 373.63310 19.97482 110 15 - + 54.53892 48.00000 361.47973 19.32509 110 15 - + 53.47175 48.00000 529.01627 18.25792 110 10 - + 50.60129 51.60000 511.01523 17.63665 110 10 - + 47.85980 55.20000 492.81247 17.00842 110 10 - + 45.23584 58.80000 474.42071 16.37366 110 10 - + 42.71798 62.40000 455.85218 15.73281 110 9 - + 40.29476 66.00000 437.11859 15.08626 110 9 - + 40.95209 66.00000 200.57962 15.74358 110 20 - + 38.58411 69.60000 191.91277 15.06332 110 20 - + 36.29041 73.20000 183.18019 14.37789 110 20 - + 34.06234 76.80000 174.38651 13.68767 110 20 - + 31.89121 80.40000 165.53610 12.99300 110 19 - + 29.76833 84.00000 156.63311 12.29420 110 19 - + 33.17613 84.00000 113.47445 15.70200 110 29 - + 30.89850 87.60000 106.98932 14.80462 110 29 - + 28.65338 91.20000 100.47157 13.90273 110 29 - + 26.43474 94.80000 93.92373 12.99668 110 28 - + 24.23648 98.40000 87.34812 12.08678 110 28 - + 22.05251 102.00000 80.74695 11.17334 110 27 - + 20.11892 102.00000 20.11892 14.49576 202 100 P + 18.46832 105.60000 18.46832 13.30650 202 100 P + 16.81234 109.20000 16.81234 12.11336 202 100 P + 15.15144 112.80000 15.15144 10.91667 202 100 P + 12.43796 116.40000 13.48603 9.71674 110 92 - + 9.59217 120.00000 11.81651 8.51384 110 81 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4528,10 +4362,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - -7.80 1.580 'Peat -7.8m à -8m' - -8.00 343.173 'Sand 1' - -10.00 127.158 'Sand 1' - -11.00 110.164 'Sand 2' + 6.00 22.836 'Peat' + -8.00 354.867 'Sand 1' + -10.00 95.607 'Sand 1' + -11.00 112.594 'Sand 2' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4554,9 +4388,9 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 25.52274 32.25763 -17.04093 0.00000 14.37237 1 12 4 1.000 0 0 - -150.00000 -150.00000 -24.59084 10.99937 14.83617 2 12 4 1.000 0 0 - -270.97371 176.58083 -50.79472 40.03720 41.56093 3 12 4 1.000 0 0 + 25.52482 32.25586 -17.04076 0.00000 14.37239 1 12 4 1.000 0 0 + -150.00000 -150.00000 -24.59110 10.99928 14.83616 2 12 4 1.000 0 0 + -226.35491 -164.17586 -37.53784 30.11469 32.30993 3 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -4578,7 +4412,7 @@ AnchorName [END OF COLUMN INDICATION] [DATA] 2 12 7 4 1.000 80.00000 0 1 0 0 'anchor' - 3 12 7 4 1.000 37.57365 0 1 0 0 'anchor' + 3 12 7 4 1.000 29.82294 0 1 0 0 'anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -4595,11 +4429,11 @@ Force [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-270.97371 -MaximumShearForce=176.58083 -MaximumDisplacement=-50.79472 -MaximumPercentageMobilisedMoment=40.03720 -MaximumPercentageMobilisedResistance=41.56093 +MaximumMoment=-226.35491 +MaximumShearForce=-164.17586 +MaximumDisplacement=-37.53784 +MaximumPercentageMobilisedMoment=30.11469 +MaximumPercentageMobilisedResistance=32.30993 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shi index 238e9f21..fa7bcc46 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-27d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-27d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-27d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -19,7 +19,7 @@ DGSCPTipUI.dll=21.3.1.35380 [END OF VERSION EXTERNALS] [SOIL COLLECTION] - 14 = number of items + 8 = number of items [SOIL] Clay SoilColor=7648893 @@ -70,251 +70,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Clay -0.4m à -1m -SoilColor=9764853 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.88 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1.25m à -1.75m -SoilColor=11316396 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=6.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -1m à -1.5m -SoilColor=9211020 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.25 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.1m à -2.73m -SoilColor=9946300 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=1.98 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] -Clay -2.73m à -3.37m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=15.00 -SoilGamWet=16.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=5.59 -SoilPhi=25.63 -SoilDelta=17.09 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.34 -SoilLn=0.57 -SoilLp=4.09 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=1 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=2.00000E+03 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=2.00000E+03 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=4.00000E+03 -SoilCurKb2=2.00000E+03 -SoilCurKb3=8.00000E+02 -SoilCurKo1=4.00000E+03 -SoilCurKo2=2.00000E+03 -SoilCurKo3=8.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Clay rep. SoilColor=5866717 SoilSoilType=2 @@ -413,55 +168,6 @@ SoilElasticity=1.00000E+03 SoilDefaultElasticity=1 [END OF SOIL] [SOIL] -Peat -7.8m à -8m -SoilColor=6923673 -SoilSoilType=2 -SoilGrainType=0 -SoilGamDry=10.00 -SoilGamWet=11.00 -SoilRelativeDensity=72.5 -SoilEModMenard=0.01 -SoilCohesion=0.25 -SoilPhi=29.67 -SoilDelta=21.80 -SoilIsDeltaAngleAutomaticallyCalculated=0 -SoilOCR=1.00 -SoilPermeabKx=1.00000E-03 -SoilStdCohesion=0.00 -SoilStdPhi=0.00 -SoilDistCohesion=3 -SoilDistPhi=3 -SoilLa=0.29 -SoilLn=0.50 -SoilLp=4.65 -SoilUseMenard=1 -SoilUseBrinchHansen=1 -SoilShellFactor=1.00 -SoilLambdaType=2 -SoilLam1=50 -SoilLam2=80 -SoilLam3=90 -SoilKb0=1.00000E+04 -SoilKb1=8.00000E+02 -SoilKb2=1.00000E+04 -SoilKb3=1.00000E+04 -SoilKb4=1.00000E+04 -SoilKo0=1.00000E+04 -SoilKo1=8.00000E+02 -SoilKo2=1.00000E+04 -SoilKo3=1.00000E+04 -SoilKo4=1.00000E+04 -SoilCurKb1=2.00000E+03 -SoilCurKb2=8.00000E+02 -SoilCurKb3=5.00000E+02 -SoilCurKo1=2.00000E+03 -SoilCurKo2=8.00000E+02 -SoilCurKo3=5.00000E+02 -SoilHorizontalBehaviourType=2 -SoilElasticity=1.00000E+03 -SoilDefaultElasticity=1 -[END OF SOIL] -[SOIL] Peat rep. SoilColor=7187949 SoilSoilType=2 @@ -961,33 +667,29 @@ Stage 1 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -0.40 0.00 0.00 Clay -0.4m à -1m - 2 -1.00 0.00 0.00 Clay -1m à -1.5m - 3 -1.50 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 2 passive 0.000 X coordinate 0.000 Y coordinate - 6 Number of soil layers per soil profile + 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -2.10 0.00 0.00 Clay -2.1m à -2.73m - 2 -2.73 0.00 0.00 Clay -2.73m à -3.37m - 3 -3.37 0.00 0.00 Clay - 4 -6.00 0.00 0.00 Peat - 5 -8.00 0.00 0.00 Sand 1 - 6 -11.00 0.00 0.00 Sand 2 + 1 0.00 0.00 0.00 Clay + 2 -6.00 0.00 0.00 Peat + 3 -8.00 0.00 0.00 Sand 1 + 4 -11.00 0.00 0.00 Sand 2 Stage 3 passive 0.000 X coordinate 0.000 Y coordinate 4 Number of soil layers per soil profile Nr Level Wosp Top Wosp Bott Material Name - 1 -7.80 0.00 0.00 Peat -7.8m à -8m + 1 6.00 0.00 0.00 Peat 2 -8.00 0.00 0.00 Sand 1 3 -10.00 0.00 20.00 Sand 1 4 -11.00 20.00 80.00 Sand 2 @@ -1030,7 +732,7 @@ Representative profile 0.00 Standard deviation 2 Distribution type Nr X-coord Value - 1 0.00 -7.80 + 1 0.00 -7.20 4 1 GLright1 rep 0.00 Standard deviation 2 Distribution type @@ -1167,6 +869,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1176,6 +879,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1185,6 +889,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1208,7 +913,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1219,8 +924,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1231,25 +938,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 -MaterialFactorTgPhi=1.100 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1257,53 +965,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.700 -EffectFactorVarUnfav=0.500 -MaterialFactorCohesion=1.200 -MaterialFactorTgPhi=1.300 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.300 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.70 +ResistanceFactor=1.400 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1311,35 +1021,36 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] -LoadFactorPermUnfav=0.800 -LoadFactorPermFav=1.200 -LoadFactorVarUnfav=0.700 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.800 -MaterialFactorTgPhi=0.900 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.400 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.40 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1358,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1373,10 +1085,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -1385,10 +1097,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1398,12 +1111,12 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -1412,7 +1125,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1427,10 +1141,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -1439,33 +1153,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=0.800 -EffectFactorVarUnfav=0.600 -MaterialFactorCohesion=1.050 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 MaterialFactorTgPhi=1.100 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.100 -GeometryIncRetainingHeight=15.00 -GeometryMaxIncRetainingHeight=0.80 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1473,26 +1245,55 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.150 -MaterialFactorTgPhi=1.200 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.200 -GeometryIncRetainingHeight=5.00 -GeometryMaxIncRetainingHeight=0.30 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1500,16 +1301,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1520,6 +1349,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1527,8 +1357,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1536,7 +1366,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1547,6 +1377,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1554,8 +1385,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1563,7 +1394,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1574,6 +1405,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1581,8 +1413,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shd index 2b3cb2d5..cc751f48 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-28a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-28a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,9 +1217,9 @@ Design anchor force Design mobilisation percentage [END OF COLUMN INDICATION] [DATA] - 15.000 -54.993 126.410 -228.935 -39.497 37.712 - 14.000 -55.253 123.722 -229.400 -39.629 43.670 - 13.000 -54.478 109.953 -228.227 -39.316 50.168 + 15.000 -40.142 92.403 -190.019 -31.699 27.645 + 14.000 -40.262 90.771 -190.353 -31.767 31.344 + 13.000 -40.497 85.747 -191.449 -31.945 34.665 [END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shi index cabe30f8..3bac89dc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-28a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-28a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-28a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=2.000 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 -GeometryIncRetainingHeight=20.00 -GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shd index 9e2a85dc..502d3f0e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-28b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-28b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,9 +1217,9 @@ Design anchor force Design mobilisation percentage [END OF COLUMN INDICATION] [DATA] - 15.000 -50.549 145.927 -270.394 -37.452 36.173 - 14.000 -50.794 142.634 -270.970 -37.572 41.566 - 13.000 -49.976 126.048 -269.257 -37.200 47.415 + 15.000 -37.424 107.960 -225.938 -29.746 28.613 + 14.000 -37.537 106.066 -226.351 -29.821 32.314 + 13.000 -37.790 99.682 -227.777 -30.048 35.556 [END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shi index 3d6f7e87..5c8d6164 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-28b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-28b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-28b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 LoadFactorVarUnfav=0.800 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.100 GeometryIncRetainingHeight=20.00 GeometryMaxIncRetainingHeight=0.80 +GeometryIncRetainingHeightDry=0.20 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-29.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-29.shd index db6e7ee4..b244799e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-29.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-29.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-29.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-29.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -250,6 +250,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -273,7 +274,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -284,8 +285,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -296,7 +299,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -304,17 +307,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -322,8 +326,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -331,7 +335,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -342,15 +346,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -358,17 +363,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,8 +382,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -396,15 +402,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -423,6 +430,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -444,13 +452,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -458,12 +467,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -471,13 +480,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -485,7 +495,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -498,13 +508,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -512,25 +523,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -538,16 +606,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -558,6 +626,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +662,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +710,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -592,8 +718,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -601,7 +727,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +746,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -628,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1092,114 +1220,114 @@ Status character 0.62972 1.42857 22.43895 0.62972 110 3 1 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.77835 8.57143 134.63370 3.77835 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 - 5.66752 12.85714 201.95056 5.66752 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 - 7.55669 17.14286 269.26741 7.55669 110 0 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 + 5.66752 12.85714 201.95056 5.66752 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 + 7.55669 17.14286 269.26741 7.55669 110 3 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 13.22421 30.00000 471.21797 13.22421 110 0 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 13.22421 30.00000 471.21797 13.22421 110 3 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 - 18.26201 41.42857 650.72957 18.26201 110 0 1 + 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 20.78091 47.14286 740.48538 20.78091 110 3 1 - 21.41063 48.57143 762.92433 21.41063 110 0 1 + 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1209,11 +1337,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1318,114 +1446,114 @@ Status character 0.62972 1.42857 22.43895 0.62972 110 3 1 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.77835 8.57143 134.63370 3.77835 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 - 5.66752 12.85714 201.95056 5.66752 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 - 7.55669 17.14286 269.26741 7.55669 110 0 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 + 5.66752 12.85714 201.95056 5.66752 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 + 7.55669 17.14286 269.26741 7.55669 110 3 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 13.22421 30.00000 471.21797 13.22421 110 0 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 13.22421 30.00000 471.21797 13.22421 110 3 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 - 18.26201 41.42857 650.72957 18.26201 110 0 1 + 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 20.78091 47.14286 740.48538 20.78091 110 3 1 - 21.41063 48.57143 762.92433 21.41063 110 0 1 + 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1435,11 +1563,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-29.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-29.shi index 070db5cb..cf72a818 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-29.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-29.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-29.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-29.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -249,6 +249,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -272,7 +273,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -283,8 +284,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -295,7 +298,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -303,17 +306,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -321,8 +325,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -330,7 +334,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -341,15 +345,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -357,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -375,8 +381,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -395,15 +401,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -422,6 +429,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -443,13 +451,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -457,12 +466,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -470,13 +479,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -484,7 +494,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -497,13 +507,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -511,25 +522,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -537,16 +605,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -557,6 +625,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +661,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +709,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -591,8 +717,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -600,7 +726,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +745,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -627,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shd index 851ef3c9..8c314b9d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-2a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-2a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shi index a495384f..7d23c16e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-2a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-2a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-2a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shd index f7d308aa..b9f38e0f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-2b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-2b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shi index a80249a3..cdc3ab90 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-2b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-2b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-2b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shd index f0540e68..7506d956 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shi index 549cdea2..c64d8556 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shd index 298f875f..78d5a064 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shi index 7b3e06ee..3cf5652b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shd index 56307ae8..5ae3e380 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1291,6 +1291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1314,7 +1315,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1325,8 +1326,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1337,7 +1340,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1345,17 +1348,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1363,8 +1367,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -1372,7 +1376,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1383,15 +1387,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -1399,17 +1404,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1417,8 +1423,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -1437,15 +1443,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1464,6 +1471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1491,6 +1499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1504,7 +1513,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1518,6 +1527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1545,6 +1555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1555,23 +1566,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1579,16 +1647,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1599,6 +1667,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1606,16 +1675,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1626,6 +1751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1633,7 +1759,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1642,7 +1768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1653,6 +1779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1660,7 +1787,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1669,7 +1796,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1680,6 +1807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1687,7 +1815,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shi index f7be8e18..260289ef 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1290,6 +1290,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1313,7 +1314,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1324,8 +1325,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1336,7 +1339,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1344,17 +1347,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1362,8 +1366,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -1371,7 +1375,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1382,15 +1386,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -1398,17 +1403,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1416,8 +1422,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -1436,15 +1442,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1463,6 +1470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1490,6 +1498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1503,7 +1512,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1517,6 +1526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1544,6 +1554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1554,23 +1565,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1578,16 +1646,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1598,6 +1666,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1605,16 +1674,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1625,6 +1750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1632,7 +1758,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1641,7 +1767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1652,6 +1778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1659,7 +1786,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1668,7 +1795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1679,6 +1806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1686,7 +1814,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shd index 048aae48..a7343f49 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shi index 59845b56..9fcadf61 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shd index f9ffe0f1..5cd617ab 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shi index d19d847b..ce0a979a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-30e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-30e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-30e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shd index 9aa4cf3a..b68f6d14 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -571,6 +571,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -594,7 +595,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -605,8 +606,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -617,7 +620,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -625,17 +628,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,8 +647,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -652,7 +656,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,15 +667,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -679,17 +684,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,8 +703,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -717,15 +723,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -744,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +793,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -798,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -835,23 +846,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,16 +927,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +947,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,16 +955,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1039,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -922,7 +1048,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,6 +1059,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1067,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -949,7 +1076,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -960,6 +1087,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -967,7 +1095,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1381,8 +1509,8 @@ Displacements 126.53864 -37.26739 58.96534 117.32935 -40.92304 57.36061 117.32935 -40.89479 57.36061 - 107.32903 -44.01948 55.65363 - 107.32903 -43.99566 55.65363 + 107.32903 -44.01948 55.65362 + 107.32903 -43.99566 55.65362 96.66155 -46.58940 53.85545 96.66155 -46.57000 53.85545 85.45081 -48.63280 51.97789 @@ -2309,7 +2437,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.93867 0.00000 16.38484 5.28577 1 0 A 3.93867 0.00000 16.38484 5.28577 1 0 A 5.42588 0.00000 22.57165 7.28164 1 0 A diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shi index e1e49682..0a1a7c23 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -570,6 +570,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -593,7 +594,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -604,8 +605,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -616,7 +619,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -624,17 +627,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -642,8 +646,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -651,7 +655,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,15 +666,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -678,17 +683,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,8 +702,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -716,15 +722,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -743,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +792,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -797,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -834,23 +845,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -858,16 +926,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -878,6 +946,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -885,16 +954,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -905,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -912,7 +1038,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -921,7 +1047,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -932,6 +1058,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -939,7 +1066,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -948,7 +1075,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -959,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -966,7 +1094,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shd index 52e03190..f1ce3a91 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -571,6 +571,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -594,7 +595,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -605,8 +606,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -617,7 +620,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -625,17 +628,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,8 +647,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -652,7 +656,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,15 +667,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -679,17 +684,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,8 +703,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -717,15 +723,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -744,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +793,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -798,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -835,23 +846,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,16 +927,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +947,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,16 +955,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1039,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -922,7 +1048,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,6 +1059,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1067,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -949,7 +1076,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -960,6 +1087,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -967,7 +1095,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1835,7 +1963,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.65859 0.00000 13.91012 4.48742 110 0 - 4.23611 0.00000 17.62220 5.68495 1 0 A 5.12844 0.00000 21.33429 6.88247 1 0 A diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shi index 3de0dc94..cb31f2e4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -570,6 +570,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -593,7 +594,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -604,8 +605,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -616,7 +619,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -624,17 +627,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -642,8 +646,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -651,7 +655,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,15 +666,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -678,17 +683,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,8 +702,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -716,15 +722,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -743,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +792,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -797,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -834,23 +845,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -858,16 +926,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -878,6 +946,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -885,16 +954,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -905,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -912,7 +1038,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -921,7 +1047,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -932,6 +1058,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -939,7 +1066,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -948,7 +1075,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -959,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -966,7 +1094,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shd index de3598a8..e4f240fd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1255,6 +1255,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1278,7 +1279,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1289,8 +1290,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1301,7 +1304,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1309,17 +1312,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1327,8 +1331,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -1336,7 +1340,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1347,15 +1351,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -1363,17 +1368,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1381,8 +1387,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -1401,15 +1407,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1428,6 +1435,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1455,6 +1463,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1468,7 +1477,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1482,6 +1491,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1509,6 +1519,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1519,23 +1530,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1543,16 +1611,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1563,6 +1631,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1570,16 +1639,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1590,6 +1715,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1597,7 +1723,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1606,7 +1732,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1617,6 +1743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1624,7 +1751,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1633,7 +1760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1644,6 +1771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1651,7 +1779,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -2727,7 +2855,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.34378 0.00000 13.91012 4.48742 1 0 A 4.23611 0.00000 17.62220 5.68495 1 0 A 5.12844 0.00000 21.33429 6.88247 1 0 A diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shi index 50425114..e334a8af 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1254,6 +1254,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1277,7 +1278,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1288,8 +1289,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1300,7 +1303,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1308,17 +1311,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1326,8 +1330,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -1335,7 +1339,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1346,15 +1350,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -1362,17 +1367,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1380,8 +1386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -1400,15 +1406,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1427,6 +1434,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1454,6 +1462,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1467,7 +1476,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1481,6 +1490,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1508,6 +1518,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1518,23 +1529,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1542,16 +1610,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1562,6 +1630,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1569,16 +1638,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1589,6 +1714,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1596,7 +1722,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1605,7 +1731,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1616,6 +1742,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1623,7 +1750,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1632,7 +1759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1643,6 +1770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1650,7 +1778,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shd index b1c4be67..a8a9bca5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:33 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -571,6 +571,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -594,7 +595,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -605,8 +606,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -617,7 +620,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -625,17 +628,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,8 +647,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -652,7 +656,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,15 +667,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -679,17 +684,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,8 +703,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -717,15 +723,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -744,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +793,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -798,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -835,23 +846,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,16 +927,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +947,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,16 +955,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1039,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -922,7 +1048,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,6 +1059,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1067,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -949,7 +1076,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -960,6 +1087,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -967,7 +1095,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1254,7 +1382,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 -1.55000 -38.07045 0.00000 0 'rigid support' + 1 -1.55000 -38.07040 0.00000 0 'rigid support' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -1310,195 +1438,195 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.29584 43.53206 0.00000 - 9.05381 42.74897 562.24722 - 9.34965 48.21058 562.24722 - 19.69119 47.19609 1124.48788 - 19.69119 47.19609 1124.48788 - 29.77802 45.85937 1686.71481 - 29.77802 45.85937 1686.71481 - 40.28600 44.19039 2292.16652 - 40.28600 44.19039 2292.16652 - 50.39150 42.40956 2897.58562 - 50.39150 42.40956 2897.58562 - 60.06843 40.51689 3502.96393 - 60.06843 40.51689 3502.96393 - 69.29068 38.51237 4108.28604 - 69.29068 38.51237 4108.28604 - 78.03217 36.39601 4713.52525 - 78.03217 36.39601 4713.52525 - 86.26679 34.16780 5318.65219 - 86.26679 34.16780 5318.65219 - 93.96844 31.82774 5923.63949 - 93.96844 31.82774 5923.63949 - 101.11104 29.37584 6528.46170 - 101.11104 29.37584 6528.46170 - 107.66847 26.81209 7133.09535 - 107.66847 26.81209 7133.09535 - 113.61465 24.13650 7737.51893 - 113.61465 24.13650 7737.51893 - 118.92347 21.34906 8341.71297 - 118.92347 21.34906 8341.71297 - 123.56884 18.44977 8542.59397 - 123.56884 18.44977 8542.59397 - 127.35590 15.63298 8344.93405 - 127.35590 15.63298 8344.93405 - 130.51649 12.81159 8147.17426 - 130.51649 12.81160 8147.17426 - 133.04960 9.98561 7949.31135 - 133.04960 9.98561 7949.31135 - 134.95420 7.15502 7751.34268 - 134.95420 7.15502 7751.34268 - 136.22927 4.31983 7553.26628 - 136.22927 4.31984 7553.26628 - 136.87379 1.48005 7355.08077 - 136.87379 1.48005 7355.08077 - 136.88673 -1.36434 7156.78546 - 136.88673 -1.36434 7156.78546 - 136.26707 -4.21333 6958.38026 - 136.26707 -4.21333 6958.38026 - 135.01380 -7.06692 6759.86573 - 135.01380 -7.06692 6759.86573 - 133.12050 -9.99774 6561.24307 - 133.12050 -9.99774 6561.24307 - 130.55925 -13.07844 6362.51412 - 130.55925 -13.07844 6362.51412 - 127.29676 -16.30900 6163.68139 - 127.29676 -16.30901 6163.68139 - 123.29971 -19.68944 5964.74809 - 123.29971 -19.68944 5964.74809 - 118.53479 -23.21975 5765.71815 - 118.53479 -23.21975 5765.71815 - 112.96872 -26.89993 5566.59628 - 112.96872 -26.89993 5566.59628 - 106.56817 -30.72998 5367.38797 - 106.56817 -30.72998 5367.38797 - 99.29985 -34.70990 5168.09952 - 99.29985 -34.70990 5168.09952 - 91.13044 -38.83970 4968.73809 - 91.13044 -38.82189 4968.73809 - 81.49293 -43.00848 4757.57889 - 81.49293 -42.97581 4757.57889 - 70.94049 -46.63145 4546.35607 - 70.94049 -46.60320 4546.35607 - 59.59701 -49.72790 4335.07816 - 59.59701 -49.70407 4335.07816 - 47.58638 -52.29782 4123.75397 - 47.58638 -52.27841 4123.75397 - 35.03248 -54.34121 3912.39283 - 35.03248 -54.32624 3912.39283 - 22.05921 -55.85809 3701.00448 - 22.05921 -55.84753 3701.00448 - 8.79045 -56.84843 3489.59901 - 8.79045 -56.84230 3489.59901 - -4.64991 -57.31226 3278.18672 - -4.64991 -57.31055 3278.18672 - -18.13798 -57.24955 3066.77804 - -18.13798 -57.25228 3066.77804 - -31.54987 -56.66033 2855.38346 - -31.54987 -56.66747 2855.38346 - -44.76170 -55.54458 2644.01339 - -44.76170 -55.55615 2644.01339 - -57.64958 -53.90230 2432.67809 - -57.64958 -53.91830 2432.67809 - -70.08961 -51.73350 2221.38757 - -70.08961 -51.75392 2221.38757 - -81.95792 -49.03818 2010.15149 - -81.95792 -49.06302 2010.15149 - -93.13061 -45.81633 1798.97907 - -93.13061 -45.84560 1798.97907 - -103.48379 -42.06796 1587.87973 - -103.48379 -42.10165 1587.87973 - -112.89358 -37.79306 1376.86414 - -112.89358 -37.78552 1376.86414 - -121.07604 -33.04405 1169.99845 - -121.07604 -32.98853 1169.99845 - -128.09258 -27.73634 963.23297 - -128.09258 -27.67515 963.23297 - -133.82403 -21.91224 756.57554 - -133.82403 -21.84537 756.57554 - -138.15120 -15.57173 550.03256 - -138.15120 -15.49919 550.03256 - -140.95495 -8.71483 343.60892 - -140.95495 -8.63661 343.60892 - -142.11609 -1.34152 137.53314 - -142.24203 0.89642 137.53314 - -141.24367 7.41055 22.80474 - -141.09693 9.26871 22.80474 - -138.50459 12.42413 10.19374 - -138.52529 12.08249 10.19374 - -135.65812 12.69171 8.84426 - -135.66032 12.72979 8.84426 - -132.70018 12.82960 7.61230 - -132.69787 12.85939 7.61230 - -129.78380 12.25709 6.49467 - -129.78380 12.23886 6.49467 - -127.10586 10.84493 5.48823 - -127.10587 10.81854 5.48823 - -124.83915 8.71478 4.59005 - -124.83873 8.60889 4.59005 - -121.71614 17.38100 3.77599 - -121.71616 17.22185 3.77599 - -116.75673 24.27899 3.07031 - -116.75677 24.14873 3.07031 - -110.33086 29.74214 2.46756 - -110.33090 29.63682 2.46756 - -102.75182 34.00281 1.96064 - -102.75640 33.99683 1.96064 - -94.27255 37.26809 1.54105 - -94.26767 37.27751 1.54105 - -85.15348 39.20302 1.19929 - -85.15358 39.15644 1.19929 - -75.77308 39.62077 0.92582 - -75.77316 39.60026 0.92582 - -66.43023 38.90812 0.71236 - -66.43031 38.90831 0.71236 - -57.36222 37.32722 0.55152 - -57.36230 37.34364 0.55152 - -48.74799 35.10655 0.43614 - -48.74806 35.13529 0.43614 - -40.71605 32.44194 0.35941 - -40.71612 32.47959 0.35941 - -33.35205 29.49845 0.31497 - -33.35211 29.54211 0.31497 - -26.70579 26.41272 0.29699 - -26.70584 26.45996 0.29699 - -20.79768 23.29552 0.30021 - -20.79773 23.34434 0.30021 - -15.62461 20.23442 0.31995 - -15.62465 20.28322 0.31995 - -11.16507 17.29657 0.35211 - -11.16511 17.34409 0.35211 - -7.38377 14.53130 0.39316 - -7.38380 14.57659 0.39316 - -4.23547 11.97277 0.44010 - -4.23550 12.01514 0.44010 - -1.66840 9.64234 0.49043 - -1.66842 9.68132 0.49043 - 0.37303 7.55082 0.54212 + -0.29584 43.53204 0.00000 + 9.05381 42.74895 562.24995 + 9.34965 48.21059 562.24995 + 19.69119 47.19610 1124.49334 + 19.69119 47.19610 1124.49334 + 29.77801 45.85937 1686.72300 + 29.77801 45.85937 1686.72300 + 40.28600 44.19039 2292.17765 + 40.28600 44.19039 2292.17765 + 50.39150 42.40957 2897.59969 + 50.39150 42.40957 2897.59969 + 60.06843 40.51690 3502.98094 + 60.06843 40.51690 3502.98094 + 69.29068 38.51238 4108.30599 + 69.29068 38.51238 4108.30599 + 78.03217 36.39601 4713.54814 + 78.03217 36.39601 4713.54814 + 86.26679 34.16780 5318.67802 + 86.26679 34.16780 5318.67802 + 93.96845 31.82775 5923.66826 + 93.96845 31.82775 5923.66826 + 101.11104 29.37585 6528.49341 + 101.11104 29.37585 6528.49341 + 107.66848 26.81210 7133.13000 + 107.66848 26.81210 7133.13000 + 113.61465 24.13650 7737.55652 + 113.61465 24.13650 7737.55652 + 118.92348 21.34906 8341.75350 + 118.92348 21.34906 8341.75350 + 123.56885 18.44978 8542.63548 + 123.56885 18.44978 8542.63548 + 127.35591 15.63299 8344.97458 + 127.35591 15.63299 8344.97458 + 130.51651 12.81160 8147.21383 + 130.51651 12.81160 8147.21383 + 133.04962 9.98562 7949.34995 + 133.04962 9.98561 7949.34995 + 134.95422 7.15503 7751.38032 + 134.95422 7.15503 7751.38032 + 136.22929 4.31984 7553.30295 + 136.22929 4.31984 7553.30295 + 136.87381 1.48005 7355.11648 + 136.87381 1.48005 7355.11648 + 136.88675 -1.36434 7156.82020 + 136.88675 -1.36434 7156.82020 + 136.26709 -4.21333 6958.41403 + 136.26709 -4.21333 6958.41403 + 135.01382 -7.06691 6759.89853 + 135.01382 -7.06691 6759.89853 + 133.12052 -9.99774 6561.27491 + 133.12052 -9.99774 6561.27491 + 130.55928 -13.07843 6362.54499 + 130.55928 -13.07844 6362.54499 + 127.29678 -16.30900 6163.71130 + 127.29678 -16.30900 6163.71130 + 123.29973 -19.68944 5964.77703 + 123.29973 -19.68944 5964.77703 + 118.53482 -23.21975 5765.74612 + 118.53482 -23.21975 5765.74612 + 112.96874 -26.89994 5566.62329 + 112.96874 -26.89994 5566.62329 + 106.56819 -30.72999 5367.41400 + 106.56819 -30.72999 5367.41400 + 99.29986 -34.70991 5168.12459 + 99.29986 -34.70991 5168.12459 + 91.13046 -38.83971 4968.76219 + 91.13046 -38.82189 4968.76219 + 81.49294 -43.00849 4757.60196 + 81.49294 -42.97581 4757.60196 + 70.94050 -46.63146 4546.37812 + 70.94050 -46.60320 4546.37812 + 59.59702 -49.72790 4335.09919 + 59.59702 -49.70407 4335.09919 + 47.58639 -52.29782 4123.77398 + 47.58639 -52.27842 4123.77398 + 35.03249 -54.34122 3912.41181 + 35.03249 -54.32624 3912.41181 + 22.05922 -55.85809 3701.02244 + 22.05922 -55.84754 3701.02244 + 8.79045 -56.84844 3489.61594 + 8.79045 -56.84231 3489.61594 + -4.64991 -57.31226 3278.20263 + -4.64991 -57.31056 3278.20263 + -18.13798 -57.24956 3066.79293 + -18.13798 -57.25228 3066.79293 + -31.54987 -56.66033 2855.39732 + -31.54987 -56.66748 2855.39732 + -44.76170 -55.54458 2644.02622 + -44.76170 -55.55615 2644.02622 + -57.64958 -53.90231 2432.68990 + -57.64958 -53.91830 2432.68990 + -70.08961 -51.73351 2221.39835 + -70.08961 -51.75393 2221.39835 + -81.95792 -49.03819 2010.16125 + -81.95792 -49.06303 2010.16125 + -93.13061 -45.81634 1798.98781 + -93.13061 -45.84561 1798.98781 + -103.48379 -42.06797 1587.88745 + -103.48379 -42.10166 1587.88745 + -112.89358 -37.79307 1376.87083 + -112.89358 -37.78552 1376.87083 + -121.07605 -33.04406 1170.00414 + -121.07605 -32.98854 1170.00414 + -128.09259 -27.73635 963.23766 + -128.09259 -27.67515 963.23766 + -133.82403 -21.91224 756.57922 + -133.82403 -21.84537 756.57922 + -138.15121 -15.57174 550.03524 + -138.15121 -15.49919 550.03524 + -140.95496 -8.71483 343.61059 + -140.95496 -8.63661 343.61059 + -142.11610 -1.34153 137.53381 + -142.24204 0.89643 137.53381 + -141.24368 7.41057 22.80482 + -141.09693 9.26874 22.80482 + -138.50458 12.42417 10.19373 + -138.52529 12.08253 10.19373 + -135.65811 12.69174 8.84425 + -135.66031 12.72983 8.84425 + -132.70016 12.82963 7.61229 + -132.69786 12.85943 7.61229 + -129.78377 12.25712 6.49467 + -129.78378 12.23889 6.49467 + -127.10583 10.84496 5.48823 + -127.10584 10.81857 5.48823 + -124.83911 8.71480 4.59005 + -124.83869 8.60892 4.59005 + -121.71609 17.38102 3.77599 + -121.71612 17.22187 3.77599 + -116.75668 24.27900 3.07030 + -116.75672 24.14874 3.07030 + -110.33081 29.74214 2.46756 + -110.33085 29.63682 2.46756 + -102.75177 34.00282 1.96064 + -102.75635 33.99684 1.96064 + -94.27250 37.26809 1.54105 + -94.26762 37.27750 1.54105 + -85.15343 39.20301 1.19929 + -85.15353 39.15643 1.19929 + -75.77303 39.62076 0.92582 + -75.77311 39.60024 0.92582 + -66.43018 38.90810 0.71236 + -66.43026 38.90829 0.71236 + -57.36218 37.32720 0.55152 + -57.36226 37.34363 0.55152 + -48.74795 35.10653 0.43614 + -48.74803 35.13527 0.43614 + -40.71602 32.44192 0.35941 + -40.71609 32.47957 0.35941 + -33.35202 29.49844 0.31497 + -33.35208 29.54209 0.31497 + -26.70576 26.41271 0.29699 + -26.70582 26.45995 0.29699 + -20.79766 23.29550 0.30021 + -20.79771 23.34433 0.30021 + -15.62459 20.23441 0.31995 + -15.62463 20.28321 0.31995 + -11.16506 17.29655 0.35211 + -11.16509 17.34407 0.35211 + -7.38375 14.53129 0.39316 + -7.38378 14.57658 0.39316 + -4.23546 11.97276 0.44010 + -4.23549 12.01513 0.44010 + -1.66840 9.64233 0.49043 + -1.66842 9.68131 0.49043 + 0.37304 7.55081 0.54212 0.37302 7.58613 0.54212 - 1.94597 5.70052 0.59354 - 1.94596 5.73205 0.59354 + 1.94598 5.70052 0.59354 + 1.94597 5.73205 0.59354 3.10730 4.08711 0.64345 - 3.10729 4.11485 0.64345 - 3.91223 2.70120 0.69093 - 3.91222 2.72523 0.69093 - 4.41333 1.52978 0.73532 + 3.10729 4.11484 0.64345 + 3.91223 2.70119 0.69093 + 3.91223 2.72523 0.69093 + 4.41333 1.52977 0.73532 4.41333 1.55027 0.73532 4.65977 0.55743 0.77624 4.65977 0.57460 0.77624 4.69688 -0.23261 0.81348 - 4.69688 -0.21853 0.81348 + 4.69688 -0.21854 0.81348 4.56593 -0.85765 0.84702 4.56593 -0.84641 0.84702 4.30410 -1.33480 0.87694 - 4.30411 -1.32614 0.87694 + 4.30410 -1.32614 0.87694 3.94458 -1.68046 0.90347 3.94458 -1.67412 0.90347 3.51678 -1.90986 0.92687 3.51679 -1.90560 0.92687 - 3.04669 -2.03678 0.94749 - 3.04670 -2.03438 0.94749 + 3.04669 -2.03678 0.94750 + 3.04669 -2.03438 0.94750 2.55719 -2.07333 0.96571 2.55720 -2.07260 0.96571 2.06851 -2.02986 0.98189 @@ -1507,7 +1635,7 @@ Displacements 1.59862 -1.91703 0.99644 1.16367 -1.73521 1.00972 1.16367 -1.73858 1.00972 - 0.77842 -1.49589 1.02207 + 0.77841 -1.49589 1.02207 0.77842 -1.50041 1.02207 0.45658 -1.20051 1.03380 0.45658 -1.20612 1.03380 @@ -1880,36 +2008,36 @@ Status character 65.06816 117.26723 65.06816 20.99108 202 100 P 67.98166 119.53108 67.98166 21.93097 202 100 P 67.98166 119.53108 67.98166 21.93097 202 100 P - 59.70053 121.79492 70.89516 22.87087 110 84 - - 59.70053 121.79492 70.89516 22.87087 110 84 - - 40.27366 124.05877 73.80866 23.81077 110 55 - - 40.27366 124.05877 73.80866 23.81077 110 55 - - 39.03414 126.32262 76.72216 24.75067 110 51 - - 39.03414 126.32262 76.72216 24.75067 110 51 - - 37.98443 128.58646 79.63566 25.69057 110 48 - - 37.98443 128.58646 79.63566 25.69057 110 48 - - 37.11937 130.85031 82.54916 26.63047 110 45 - - 37.11937 130.85031 82.54916 26.63047 110 45 - + 59.70066 121.79492 70.89516 22.87087 110 84 - + 59.70066 121.79492 70.89516 22.87087 110 84 - + 40.27365 124.05877 73.80866 23.81077 110 55 - + 40.27365 124.05877 73.80866 23.81077 110 55 - + 39.03413 126.32262 76.72216 24.75067 110 51 - + 39.03413 126.32262 76.72216 24.75067 110 51 - + 37.98442 128.58646 79.63566 25.69057 110 48 - + 37.98442 128.58646 79.63566 25.69057 110 48 - + 37.11936 130.85031 82.54916 26.63047 110 45 - + 37.11936 130.85031 82.54916 26.63047 110 45 - 36.43386 133.11415 85.46266 27.57037 110 43 - 36.43386 133.11415 85.46266 27.57037 110 43 - 35.92320 135.37800 88.37616 28.51027 110 41 - - 67.56554 135.37800 132.27256 21.66500 110 51 - - 60.63500 137.70788 139.66043 22.87506 110 43 - - 60.63500 137.70788 138.99530 22.87506 110 44 - - 54.78818 140.03775 146.34798 24.08512 110 37 - - 54.78818 140.03775 145.89161 24.08512 110 38 - - 49.97084 142.36763 153.22136 25.29519 110 33 - - 49.97084 142.36763 152.89151 25.29519 110 33 - - 46.11163 144.69750 160.20549 26.50525 110 29 - - 46.11163 144.69750 159.95812 26.50525 110 29 - - 43.12582 147.02738 167.26080 27.71531 110 26 - - 43.12582 147.02738 167.07004 27.71531 110 26 - - 40.91828 149.35725 174.36439 28.92537 110 23 - - 40.91828 149.35725 174.21402 28.92537 110 23 - + 67.56550 135.37800 132.27256 21.66500 110 51 - + 60.63497 137.70788 139.66043 22.87506 110 43 - + 60.63497 137.70788 138.99530 22.87506 110 44 - + 54.78815 140.03775 146.34798 24.08512 110 37 - + 54.78815 140.03775 145.89161 24.08512 110 38 - + 49.97082 142.36763 153.22136 25.29519 110 33 - + 49.97082 142.36763 152.89151 25.29519 110 33 - + 46.11162 144.69750 160.20549 26.50525 110 29 - + 46.11162 144.69750 159.95812 26.50525 110 29 - + 43.12580 147.02738 167.26080 27.71531 110 26 - + 43.12580 147.02738 167.07004 27.71531 110 26 - + 40.91827 149.35725 174.36439 28.92537 110 23 - + 40.91827 149.35725 174.21402 28.92537 110 23 - 39.39361 151.68713 181.50208 30.13544 110 22 - 39.39361 151.68713 181.38139 30.13544 110 22 - - 38.46906 154.01700 188.66461 31.34550 110 20 - - 38.46906 154.01700 188.56629 31.34550 110 20 - + 38.46905 154.01700 188.66461 31.34550 110 20 - + 38.46905 154.01700 188.56629 31.34550 110 20 - 38.07077 156.34687 195.84571 32.55556 110 19 - 38.07077 156.34687 195.76458 32.55556 110 19 - 38.12707 158.67675 203.04098 33.76562 110 19 - @@ -1922,28 +2050,28 @@ Status character 40.36573 165.66637 224.64281 37.39581 110 18 - 41.60798 167.99625 231.91186 38.60587 110 18 - 41.60798 167.99625 231.87614 38.60587 110 18 - - 43.01543 170.32612 239.14407 39.81594 110 18 - - 43.01543 170.32612 239.11309 39.81594 110 18 - - 44.54710 172.65600 246.38008 41.02600 110 18 - - 44.54710 172.65600 246.35307 41.02600 110 18 - + 43.01544 170.32612 239.14407 39.81594 110 18 - + 43.01544 170.32612 239.11309 39.81594 110 18 - + 44.54711 172.65600 246.38008 41.02600 110 18 - + 44.54711 172.65600 246.35307 41.02600 110 18 - 46.16765 174.98588 253.61926 42.23606 110 18 - 46.16765 174.98588 253.59558 42.23606 110 18 - 47.84710 177.31575 260.86109 43.44612 110 18 - 47.84710 177.31575 260.84024 43.44612 110 18 - 49.56048 179.64562 268.10517 44.65619 110 18 - 49.56048 179.64562 268.08673 44.65619 110 18 - - 51.28742 181.97550 275.35115 45.86625 110 19 - - 51.28742 181.97550 275.33477 45.86625 110 19 - + 51.28743 181.97550 275.35115 45.86625 110 19 - + 51.28743 181.97550 275.33477 45.86625 110 19 - 53.01173 184.30537 282.59877 47.07631 110 19 - 53.01173 184.30537 282.58416 47.07631 110 19 - 54.72090 186.63525 289.84779 48.28637 110 19 - 54.72090 186.63525 289.83472 48.28637 110 19 - - 56.40570 188.96513 297.09801 49.49644 110 19 - - 56.40570 188.96513 297.08629 49.49644 110 19 - + 56.40571 188.96513 297.09801 49.49644 110 19 - + 56.40571 188.96513 297.08629 49.49644 110 19 - 58.05973 191.29500 304.34929 50.70650 110 19 - 58.05973 191.29500 304.33873 50.70650 110 19 - - 59.67897 193.62488 311.60149 51.91656 110 19 - - 59.67897 193.62488 311.59195 51.91656 110 19 - + 59.67898 193.62488 311.60149 51.91656 110 19 - + 59.67898 193.62488 311.59195 51.91656 110 19 - 61.26146 195.95475 318.85448 53.12662 110 19 - 61.26146 195.95475 318.84585 53.12662 110 19 - 62.80685 198.28463 326.10819 54.33669 110 19 - @@ -2309,7 +2437,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.93867 0.00000 16.38484 5.28577 1 0 A 3.93867 0.00000 16.38484 5.28577 1 0 A 5.42588 0.00000 22.57165 7.28164 1 0 A @@ -2428,12 +2556,12 @@ Status character 36.66378 124.05877 152.52116 49.20353 1 0 A 37.36414 126.32262 155.43466 50.14343 1 0 A 37.36414 126.32262 155.43466 50.14343 1 0 A - 38.78947 128.58646 158.34816 51.08333 110 0 - - 38.78947 128.58646 158.34816 51.08333 110 0 - - 41.53433 130.85031 161.26166 52.02323 110 0 - - 41.53433 130.85031 161.26166 52.02323 110 0 - - 44.09963 133.11415 164.17516 52.96313 110 0 - - 44.09963 133.11415 164.17516 52.96313 110 0 - + 38.78948 128.58646 158.34816 51.08333 110 0 - + 38.78948 128.58646 158.34816 51.08333 110 0 - + 41.53434 130.85031 161.26166 52.02323 110 0 - + 41.53434 130.85031 161.26166 52.02323 110 0 - + 44.09964 133.11415 164.17516 52.96313 110 0 - + 44.09964 133.11415 164.17516 52.96313 110 0 - 46.49009 135.37800 167.08866 53.90303 110 0 - 26.76967 135.37800 250.47656 40.96100 1 0 A 27.56049 137.70788 257.87609 42.17106 1 0 A @@ -2444,14 +2572,14 @@ Status character 29.26106 142.36763 270.76263 44.59119 1 0 A 30.05511 144.69750 278.11026 45.80125 1 0 A 30.08922 144.69750 277.68349 45.80125 1 0 A - 31.60081 147.02738 285.01984 47.01131 110 0 - - 31.60081 147.02738 284.65551 47.01131 110 0 - - 36.22847 149.35725 291.98249 48.22137 110 0 - - 36.22847 149.35725 291.66853 48.22137 110 0 - - 40.17326 151.68713 298.98764 49.43144 110 0 - - 40.17326 151.68713 298.71489 49.43144 110 0 - - 43.51794 154.01700 306.02731 50.64150 110 0 - - 43.51794 154.01700 305.78869 50.64150 110 0 - + 31.60082 147.02738 285.01984 47.01131 110 0 - + 31.60082 147.02738 284.65551 47.01131 110 0 - + 36.22848 149.35725 291.98249 48.22137 110 0 - + 36.22848 149.35725 291.66853 48.22137 110 0 - + 40.17327 151.68713 298.98764 49.43144 110 0 - + 40.17327 151.68713 298.71489 49.43144 110 0 - + 43.51795 154.01700 306.02731 50.64150 110 0 - + 43.51795 154.01700 305.78869 50.64150 110 0 - 46.33635 156.34687 313.09541 51.85156 110 0 - 46.33635 156.34687 312.88533 51.85156 110 0 - 48.70018 158.67675 320.18715 53.06162 110 0 - @@ -2466,18 +2594,18 @@ Status character 54.89977 167.99625 348.60579 57.90187 110 0 - 55.91244 170.32612 355.89113 59.11194 110 0 - 55.91244 170.32612 355.78318 59.11194 110 0 - - 56.80090 172.65600 363.06630 60.32200 110 0 - - 56.80090 172.65600 362.96843 60.32200 110 0 - + 56.80089 172.65600 363.06630 60.32200 110 0 - + 56.80089 172.65600 362.96843 60.32200 110 0 - 57.60047 174.98588 370.24960 61.53206 110 0 - 57.60047 174.98588 370.16061 61.53206 110 0 - 58.34115 177.31575 377.44003 62.74212 110 0 - 58.34115 177.31575 377.35890 62.74212 110 0 - - 59.04790 179.64562 384.63675 63.95219 110 0 - - 59.04790 179.64562 384.56259 63.95219 110 0 - - 59.74108 181.97550 391.83904 65.16225 110 0 - - 59.74108 181.97550 391.77110 65.16225 110 0 - - 60.43690 184.30537 399.04628 66.37231 110 0 - - 60.43690 184.30537 398.98389 66.37231 110 0 - + 59.04789 179.64562 384.63675 63.95219 110 0 - + 59.04789 179.64562 384.56259 63.95219 110 0 - + 59.74107 181.97550 391.83904 65.16225 110 0 - + 59.74107 181.97550 391.77110 65.16225 110 0 - + 60.43689 184.30537 399.04628 66.37231 110 0 - + 60.43689 184.30537 398.98389 66.37231 110 0 - 61.14785 186.63525 406.25794 67.58237 110 0 - 61.14785 186.63525 406.20053 67.58237 110 0 - 61.88317 188.96513 413.47355 68.79244 110 0 - @@ -2555,7 +2683,7 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - -142.24203 -57.31226 8542.59397 23.93818 26.78045 1 12 4 1.000 0 0 + -142.24204 -57.31226 8542.63548 23.93818 26.78045 1 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -2575,14 +2703,14 @@ CalculationStatus SupportName [END OF COLUMN INDICATION] [DATA] - 1 12 7 4 1.000 -38.07045 0.00000 0 0 'rigid support' + 1 12 7 4 1.000 -38.07040 0.00000 0 0 'rigid support' [END OF DATA] [END OF TABLE] [END OF SUPPORTS RESUME] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-142.24203 +MaximumMoment=-142.24204 MaximumShearForce=-57.31226 -MaximumDisplacement=8542.59397 +MaximumDisplacement=8542.63548 MaximumPercentageMobilisedMoment=23.93818 MaximumPercentageMobilisedResistance=26.78045 VerticalBalanceSummary=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shi index c708fed8..894d1c82 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -570,6 +570,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -593,7 +594,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -604,8 +605,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -616,7 +619,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -624,17 +627,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -642,8 +646,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -651,7 +655,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,15 +666,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -678,17 +683,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,8 +702,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -716,15 +722,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -743,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +792,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -797,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -834,23 +845,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -858,16 +926,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -878,6 +946,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -885,16 +954,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -905,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -912,7 +1038,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -921,7 +1047,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -932,6 +1058,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -939,7 +1066,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -948,7 +1075,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -959,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -966,7 +1094,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shd index 0f51667a..f7119ae9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -571,6 +571,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -594,7 +595,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -605,8 +606,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -617,7 +620,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -625,17 +628,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,8 +647,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -652,7 +656,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,15 +667,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -679,17 +684,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,8 +703,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -717,15 +723,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -744,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +793,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -798,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -835,23 +846,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,16 +927,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +947,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,16 +955,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1039,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -922,7 +1048,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,6 +1059,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1067,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -949,7 +1076,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -960,6 +1087,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -967,7 +1095,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -2309,7 +2437,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.93867 0.00000 16.38484 5.28577 1 0 A 3.93867 0.00000 16.38484 5.28577 1 0 A 5.42588 0.00000 22.57165 7.28164 1 0 A diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shi index cda66c48..e1db8949 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:33 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -570,6 +570,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -593,7 +594,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -604,8 +605,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -616,7 +619,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -624,17 +627,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -642,8 +646,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -651,7 +655,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,15 +666,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -678,17 +683,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,8 +702,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -716,15 +722,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -743,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +792,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -797,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -834,23 +845,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -858,16 +926,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -878,6 +946,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -885,16 +954,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -905,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -912,7 +1038,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -921,7 +1047,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -932,6 +1058,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -939,7 +1066,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -948,7 +1075,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -959,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -966,7 +1094,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shd index 14bb14a9..d4c593c2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -571,6 +571,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -594,7 +595,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -605,8 +606,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -617,7 +620,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -625,17 +628,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,8 +647,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -652,7 +656,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,15 +667,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -679,17 +684,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,8 +703,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -717,15 +723,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -744,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +793,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -798,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -835,23 +846,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,16 +927,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +947,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,16 +955,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1039,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -922,7 +1048,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,6 +1059,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1067,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -949,7 +1076,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -960,6 +1087,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -967,7 +1095,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1381,8 +1509,8 @@ Displacements 253.07728 -74.53478 58.96534 234.65871 -81.84608 57.36061 234.65871 -81.78957 57.36061 - 214.65806 -88.03897 55.65363 - 214.65806 -87.99131 55.65363 + 214.65806 -88.03897 55.65362 + 214.65806 -87.99131 55.65362 193.32311 -93.17881 53.85545 193.32311 -93.14000 53.85545 170.90162 -97.26560 51.97789 @@ -2309,7 +2437,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 3.28990 0.00000 10.19803 3.28990 110 0 - + 3.28990 0.00000 10.19803 3.28990 110 32 - 3.93867 0.00000 16.38484 5.28577 1 0 A 3.93867 0.00000 16.38484 5.28577 1 0 A 5.42588 0.00000 22.57165 7.28164 1 0 A diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shi index bfff511e..968940f8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-31f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-31f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-31f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -570,6 +570,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -593,7 +594,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -604,8 +605,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -616,7 +619,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -624,17 +627,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -642,8 +646,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -651,7 +655,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,15 +666,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -678,17 +683,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -696,8 +702,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -716,15 +722,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -743,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +792,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -797,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -834,23 +845,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -858,16 +926,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -878,6 +946,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -885,16 +954,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -905,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -912,7 +1038,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -921,7 +1047,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -932,6 +1058,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -939,7 +1066,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -948,7 +1075,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -959,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -966,7 +1094,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shd index 47553d55..606d38bf 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shi index 07bb8dfd..d051d2a9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shd index 23b3e687..9b43fa90 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shi index 7f359547..af6dbc4c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shd index 9d4b8adc..9fccd797 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shi index 516c89c7..0e472796 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shd index c6e244c7..86334c15 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shi index c00c98f1..5642ff24 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-32d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-32d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-32d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shd index a9396ad5..cf0263e7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,7 +381,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -386,7 +390,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,7 +409,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -413,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,7 +437,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -441,8 +447,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -458,7 +465,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +501,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -520,10 +529,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -547,10 +557,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,23 +580,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +661,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +689,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +773,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -656,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -683,7 +810,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +829,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shi index 66367617..f5745940 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -358,17 +361,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,7 +380,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -385,7 +389,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,7 +408,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -412,17 +417,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,7 +436,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -440,8 +446,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -457,7 +464,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,10 +500,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -519,10 +528,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -546,10 +556,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,23 +579,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +660,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,16 +688,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +772,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -655,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -682,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +828,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shd index 6f83e4eb..a234b973 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,7 +381,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -386,7 +390,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,7 +409,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -413,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,7 +437,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -441,8 +447,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -458,7 +465,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +501,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -520,10 +529,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -547,10 +557,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,23 +580,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +661,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +689,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +773,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -656,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -683,7 +810,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,8 +829,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shi index 0f98df7f..8cefaed7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -358,17 +361,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,7 +380,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -385,7 +389,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,7 +408,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -412,17 +417,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,7 +436,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -440,8 +446,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -457,7 +464,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,10 +500,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -519,10 +528,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -546,10 +556,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,23 +579,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +660,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,16 +688,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +772,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -655,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -682,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -700,8 +828,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shd index deac575f..6419a681 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,8 +913,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shi index 7c058d8e..0573b9a2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shd index c19849fd..df5c6c2e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 7 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.100 0.000 0.000 1.000 1.000 1.000 + -1 7 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.100 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shi index 0acbadf4..4504bb75 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shd index cc726629..7141ef41 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shi index 5c705fb6..0606b1cc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shd index 1f744f21..e7ac5512 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shi index e3df3e2c..9f941fbf 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shd index 26b7371d..1e7f555b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 9 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shi index 7bcda2d5..333bc2d8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shd index 57974baa..064dbc10 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 10 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 10 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shi index 7185aefd..5120ccbc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shd index daaef3f4..1143bbd0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 11 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 11 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shi index b3e660ac..2f1d57ff 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shd index 65d730f8..83ae6af5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shi index a9fc1dbc..221a689d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shd index eba0624d..13596f90 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shi index 9ea1cd0a..ea7a02a5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shd index 85f7726c..bcd1a9b4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,7 +913,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shi index b583a977..cf6b529c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shd index b6c36b9a..63062776 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -586,6 +653,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -725,7 +853,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method A [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -766,6 +894,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -784,8 +913,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.000 1.000 1.000 - -1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.000 1.000 1.000 + -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.000 1.000 1.000 + -1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.30 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -3146,6 +3275,15 @@ MaximumPercentageMobilisedResistance=21.91180 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=6.15988 +MaximumShearForce=-6.69261 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=0.00000 +MaximumPercentageMobilisedResistance=21.31454 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shi index 44a4246d..8064c96c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -585,6 +652,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shd index a4f713f3..900c5332 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33q.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33q.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -359,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,7 +381,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -386,7 +390,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -404,7 +409,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -413,17 +418,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -431,7 +437,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -441,8 +447,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -458,7 +465,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,10 +501,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -520,10 +529,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -547,10 +557,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,23 +580,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -593,16 +661,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,16 +689,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -647,7 +773,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -656,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -674,7 +801,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -683,7 +810,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,7 +829,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shi index dd893b34..2d7de5eb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-33q.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-33q.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-33q.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -358,17 +361,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,7 +380,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -385,7 +389,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,7 +408,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -412,17 +417,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -430,7 +436,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -440,8 +446,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -457,7 +464,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -492,10 +500,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -519,10 +528,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -546,10 +556,10 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.485 +ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.400 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,23 +579,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +660,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,16 +688,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -646,7 +772,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -655,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -673,7 +800,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -682,7 +809,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -700,7 +828,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shd index c85bab8e..2dc8f4e3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shi index 4e00d9a3..f0d14f8b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shd index 6781b001..9f93f092 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shi index 12fcbe77..e6d13bc3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shd index 49566f7c..8afd5462 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shi index eb5e4007..d938b00f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shd index f9dff24d..962eede4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shi index ba786577..cae7c9da 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shd index d2f15f20..4531bf94 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shi index f2140fd7..ec73d74b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shd index 02ce025c..72a32258 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shi index 621fe641..95e76a9a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shd index 219e3185..623af5fc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shi index a79d406d..fc44df68 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shd index 060dece7..ed2f1e47 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shi index 3a9c1554..0462a10f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shd index c50004a2..71ccc1d0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shi index 6e143518..f38a50cb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shd index 763e3538..9aa0790a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shi index 1cf2028d..5d173d49 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shd index 8d5ff040..58ed8ede 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shi index e36a2307..0dd3bf77 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shd index 0bfd7194..b03572b0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -586,6 +653,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shi index 58b250ec..8d360be4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -585,6 +652,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shd index 90950be4..7328a879 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shi index f82a1118..42d165c8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shd index 541bc883..96a42258 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34q.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34q.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -305,6 +305,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -328,7 +329,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -339,8 +340,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -351,7 +354,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -370,6 +373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,6 +401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -424,6 +429,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,6 +457,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -478,6 +485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -505,6 +513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -532,6 +541,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -559,6 +569,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -569,7 +580,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -584,8 +651,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,8 +663,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -613,6 +681,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,7 +691,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -640,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -667,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +821,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shi index 136a7051..71c4afb1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-34q.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-34q.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-34q.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -304,6 +304,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -327,7 +328,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -338,8 +339,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -350,7 +353,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -369,6 +372,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,6 +400,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -423,6 +428,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -450,6 +456,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -477,6 +484,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -504,6 +512,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -531,6 +540,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -558,6 +568,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -568,7 +579,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -583,8 +650,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,8 +662,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -612,6 +680,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,7 +690,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -639,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -666,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +820,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shd index f1121c77..73f78df4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:32 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shi index 931ec4a1..5a359c54 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:32 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shd index 8c82aa42..16ef1f41 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:32 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shi index a6650545..068b4f1a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:32 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shd index 359d8aac..626e6334 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shi index aff964ed..8167234f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shd index 0399161c..f0ac8b77 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shi index 7cea9b09..94f3b1f9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shd index 9bdbf3be..72733f83 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shi index 9093879c..7c9039e6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shd index 3a19c6cd..2ebd7ed0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:35 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,8 +1417,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + -1 5 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shi index f2717714..7df2ab27 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shd index 7629d8e6..fdc642a7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 7 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.100 0.000 0.000 1.300 1.000 1.000 + -1 7 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.100 0.000 0.000 1.300 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shi index 9de522fa..b2a3f3b6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:36 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shd index 6652ebf8..ea9fdcd1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:38 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 1.000 1.000 1.000 0.000 0.000 1.200 1.150 1.100 + -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 1.000 1.000 1.000 0.000 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shi index d38262e6..534a4ce7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shd index de717c78..f04f293e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:40 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + -1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shi index f9a13130..1b87a3ab 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:41:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:38 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shd index 1e929447..a4595726 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:42 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + -1 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shi index b4dd7e61..3640d5cd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:41 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shd index c0112827..d0d66c92 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + -1 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shi index 912d29c7..5991fbcc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:43 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shd index c5543d19..674d10ed 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 11 1.000 1.000 1.000 0.35 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + -1 11 1.000 1.000 1.000 0.35 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shi index 0b50e9a8..9393ec47 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shd index f8bacaa6..6811c3eb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1084,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1223,7 +1357,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method A [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,8 +1417,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 - -1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + -1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -21772,6 +21907,18 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 100.00000 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] MaximumMoment=1495.18963 MaximumShearForce=-525.56920 @@ -21781,6 +21928,15 @@ MaximumPercentageMobilisedResistance=50.50029 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=1495.18963 +MaximumShearForce=-525.56920 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=44.68536 +MaximumPercentageMobilisedResistance=50.50029 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shi index 95ad7c77..7b84d4de 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1083,6 +1156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shd index a413bfaa..c6eafdea 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35n.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35n.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + -1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shi index 58ee0d56..fd0f92eb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35n.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35n.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35n.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shd index b1a75b65..0d6de658 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35o.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35o.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + -1 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shi index 2eee18f2..49ab91ce 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35o.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35o.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35o.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shd index 5f1818b2..00811605 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35p.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35p.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,7 +1417,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + -1 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shi index 314f96ad..b9a217bd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-35p.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-35p.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-35p.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shd index c4f5cd41..ed1fdc22 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shi index 12e0ebe6..2feb5ea9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:27:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shd index 45a4fddc..8fa0b6a3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shi index 4fa920e0..215cdc9c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shd index 3eb1dec2..996ce7eb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shi index e9ceab49..7603ea3b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shd index ed75679c..a4f91616 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shi index 1fbe2c32..a805313b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shd index d8c7b554..63130f0f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shi index eec91c22..3b9f76fe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shd index 0561ee52..cb1b75b0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shi index 823a09fd..96e7825c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shd index 69cc5083..8c9ceb4a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shi index d34feb6e..fdd0ebb3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:09 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shd index 1b3771b0..5a88ac0a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shi index fbb0df18..fbc19fa3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shd index 539375ed..c58c2fbe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:14 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1084,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shi index 20b64a73..6434435a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:13 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1083,6 +1156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shd index e7b96431..7bc8b62e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:16 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1084,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shi index 8396d033..b822e37d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1083,6 +1156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shd index fbac2a82..132081c6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shi index 1a2c0016..3be2ed70 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:17 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shd index d51fe2c5..edc77f4a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shi index 3e8e9937..906d80fb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shd index 161008b3..4ec7ef7d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shi index a9ab26b5..7de0d522 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-36m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-36m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-36m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.300 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.300 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shd index ec263234..f5b72e9f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shi index de7fa5be..a61af26e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shd index 4c592793..fa217842 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -619,6 +619,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -642,7 +643,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -653,8 +654,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -665,25 +668,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,7 +695,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -700,7 +704,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -711,6 +715,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,26 +723,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -745,7 +751,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -765,6 +771,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -772,7 +779,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -792,6 +799,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -819,10 +827,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -846,7 +855,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -873,33 +883,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -907,16 +975,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -927,6 +995,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -934,16 +1003,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -954,6 +1079,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -961,7 +1087,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -970,7 +1096,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -981,6 +1107,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -988,7 +1115,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -997,7 +1124,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1008,6 +1135,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,7 +1143,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shi index f35acc9e..134666f4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -618,6 +618,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -641,7 +642,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -652,8 +653,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -664,25 +667,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,7 +694,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -699,7 +703,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -710,6 +714,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,26 +722,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -744,7 +750,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -764,6 +770,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -771,7 +778,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -791,6 +798,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -818,10 +826,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -845,7 +854,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -872,33 +882,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -906,16 +974,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -926,6 +994,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -933,16 +1002,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -953,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -960,7 +1086,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -969,7 +1095,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -980,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -987,7 +1114,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -996,7 +1123,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1007,6 +1134,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,7 +1142,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shd index f14e6eb0..04621af9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -647,6 +647,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -656,6 +657,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -679,7 +681,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -690,8 +692,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -702,25 +706,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,7 +733,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -737,7 +742,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -748,6 +753,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,26 +761,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,7 +789,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -802,6 +809,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -809,7 +817,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -829,6 +837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -856,10 +865,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -883,7 +893,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -910,33 +921,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -944,16 +1013,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -964,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -971,16 +1041,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -991,6 +1117,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -998,7 +1125,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1007,7 +1134,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1018,6 +1145,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1025,7 +1153,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1034,7 +1162,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1045,6 +1173,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1052,7 +1181,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shi index 862670e0..1dee363d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -646,6 +646,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -655,6 +656,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -678,7 +680,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -689,8 +691,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -701,25 +705,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,7 +732,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -736,7 +741,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -747,6 +752,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,26 +760,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,7 +788,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -801,6 +808,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +816,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -828,6 +836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -855,10 +864,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -882,7 +892,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -909,33 +920,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -943,16 +1012,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -963,6 +1032,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -970,16 +1040,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -990,6 +1116,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -997,7 +1124,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1006,7 +1133,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1017,6 +1144,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1024,7 +1152,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1033,7 +1161,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1044,6 +1172,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1051,7 +1180,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shd index 78c75e7e..3eb67b6f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -669,6 +669,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -678,6 +679,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -687,6 +689,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -710,7 +713,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -721,8 +724,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -733,25 +738,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -759,7 +765,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -768,7 +774,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -779,6 +785,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -786,26 +793,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -813,7 +821,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -833,6 +841,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -840,7 +849,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -860,6 +869,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -887,10 +897,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -914,7 +925,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -941,33 +953,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,16 +1045,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1065,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,16 +1073,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1022,6 +1149,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1157,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1038,7 +1166,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1049,6 +1177,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,7 +1185,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1065,7 +1194,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1076,6 +1205,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1083,7 +1213,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shi index baa0e4c5..4d448548 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -668,6 +668,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -677,6 +678,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -686,6 +688,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -709,7 +712,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -720,8 +723,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -732,25 +737,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -758,7 +764,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -767,7 +773,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -778,6 +784,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -785,26 +792,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -812,7 +820,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -832,6 +840,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -839,7 +848,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -859,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -886,10 +896,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -913,7 +924,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -940,33 +952,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -974,16 +1044,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -994,6 +1064,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1001,16 +1072,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1021,6 +1148,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1028,7 +1156,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1037,7 +1165,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1048,6 +1176,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,7 +1184,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1064,7 +1193,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1075,6 +1204,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1082,7 +1212,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shd index 86c7a35c..6bcc6b1c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -692,6 +692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -701,6 +702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -710,6 +712,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -719,6 +722,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,7 +746,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -753,8 +757,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -765,25 +771,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -791,7 +798,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -800,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -811,6 +818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -818,26 +826,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -845,7 +854,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -865,6 +874,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -872,7 +882,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -892,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -919,10 +930,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -946,7 +958,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -973,33 +986,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1007,16 +1078,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1027,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1034,16 +1106,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1054,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1061,7 +1190,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1070,7 +1199,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1081,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1088,7 +1218,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1097,7 +1227,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1108,6 +1238,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1115,7 +1246,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shi index 32b72a57..e229e73e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:50 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -691,6 +691,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -700,6 +701,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -709,6 +711,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -718,6 +721,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,7 +745,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -752,8 +756,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -764,25 +770,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -790,7 +797,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -799,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -810,6 +817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -817,26 +825,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -844,7 +853,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -864,6 +873,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -871,7 +881,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -891,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -918,10 +929,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -945,7 +957,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -972,33 +985,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1006,16 +1077,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1026,6 +1097,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1033,16 +1105,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1053,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1060,7 +1189,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1069,7 +1198,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1080,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,7 +1217,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1096,7 +1226,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1107,6 +1237,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1114,7 +1245,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shd index 7f3ea7f6..c0801974 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -715,6 +715,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -724,6 +725,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -733,6 +735,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,6 +745,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -751,6 +755,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,7 +779,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -785,8 +790,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -797,25 +804,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,7 +831,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -832,7 +840,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -843,6 +851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -850,26 +859,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -877,7 +887,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -897,6 +907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -904,7 +915,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -924,6 +935,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,10 +963,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -978,7 +991,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1005,33 +1019,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1039,16 +1111,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1059,6 +1131,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,16 +1139,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1086,6 +1215,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1093,7 +1223,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1102,7 +1232,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1113,6 +1243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1120,7 +1251,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1129,7 +1260,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1140,6 +1271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1147,7 +1279,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shi index e6f63826..dfa10e8f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -714,6 +714,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -723,6 +724,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -732,6 +734,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,6 +744,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -750,6 +754,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,7 +778,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -784,8 +789,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -796,25 +803,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -822,7 +830,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -831,7 +839,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -842,6 +850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -849,26 +858,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -876,7 +886,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -896,6 +906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -903,7 +914,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -923,6 +934,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,10 +962,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -977,7 +990,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1004,33 +1018,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1038,16 +1110,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1058,6 +1130,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1065,16 +1138,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1085,6 +1214,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1092,7 +1222,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1101,7 +1231,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1112,6 +1242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1119,7 +1250,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1128,7 +1259,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1139,6 +1270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1146,7 +1278,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shd index e0d79a9b..a044e516 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -738,6 +738,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -747,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -756,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -765,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -783,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,7 +812,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -817,8 +823,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -829,25 +837,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -855,7 +864,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -864,7 +873,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +884,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -882,26 +892,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -909,7 +920,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -929,6 +940,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -936,7 +948,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -956,6 +968,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -983,10 +996,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1010,7 +1024,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1037,33 +1052,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1071,16 +1144,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1091,6 +1164,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1098,16 +1172,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1118,6 +1248,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1125,7 +1256,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1134,7 +1265,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1145,6 +1276,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1152,7 +1284,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1161,7 +1293,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1172,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1179,7 +1312,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shi index 37be5c11..0abd8ef0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -737,6 +737,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -746,6 +747,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -755,6 +757,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -764,6 +767,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,6 +777,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -782,6 +787,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,7 +811,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -816,8 +822,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -828,25 +836,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -854,7 +863,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -863,7 +872,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +883,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -881,26 +891,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -908,7 +919,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -928,6 +939,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -935,7 +947,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -955,6 +967,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -982,10 +995,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1009,7 +1023,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1036,33 +1051,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1070,16 +1143,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1090,6 +1163,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1097,16 +1171,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1117,6 +1247,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1124,7 +1255,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1133,7 +1264,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1144,6 +1275,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1151,7 +1283,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1160,7 +1292,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1171,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1178,7 +1311,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shd index 1906a9e9..e419216c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -761,6 +761,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -770,6 +771,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -779,6 +781,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -788,6 +791,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -797,6 +801,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,6 +811,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -815,6 +821,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -838,7 +845,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -849,8 +856,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -861,25 +870,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -887,7 +897,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -896,7 +906,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -907,6 +917,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,26 +925,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -941,7 +953,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -961,6 +973,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,7 +981,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -988,6 +1001,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,10 +1029,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1042,7 +1057,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1069,33 +1085,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1103,16 +1177,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1123,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,16 +1205,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1150,6 +1281,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1157,7 +1289,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1166,7 +1298,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1309,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,7 +1317,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1193,7 +1326,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1337,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,7 +1345,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shi index 0ad9c549..0b9ec600 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -760,6 +760,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -769,6 +770,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -778,6 +780,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -787,6 +790,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -796,6 +800,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,6 +810,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -814,6 +820,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -837,7 +844,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -848,8 +855,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -860,25 +869,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,7 +896,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -895,7 +905,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +916,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,26 +924,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -940,7 +952,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -960,6 +972,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,7 +980,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -987,6 +1000,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,10 +1028,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1041,7 +1056,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1068,33 +1084,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1102,16 +1176,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1122,6 +1196,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,16 +1204,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1149,6 +1280,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1156,7 +1288,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1165,7 +1297,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1308,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,7 +1316,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1192,7 +1325,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1336,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,7 +1344,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shd index f2d81df2..a72adf3b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -943,6 +943,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -966,7 +967,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -977,8 +978,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -989,25 +992,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1015,7 +1019,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1024,7 +1028,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1035,6 +1039,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1042,26 +1047,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1069,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1089,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1096,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1116,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1143,10 +1151,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1170,7 +1179,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1197,33 +1207,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1231,16 +1299,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1251,6 +1319,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1258,16 +1327,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1278,6 +1403,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1285,7 +1411,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1294,7 +1420,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1305,6 +1431,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1312,7 +1439,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1321,7 +1448,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1332,6 +1459,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1339,7 +1467,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shi index ae852c18..8ed7a894 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -942,6 +942,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -965,7 +966,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -976,8 +977,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -988,25 +991,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1014,7 +1018,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1023,7 +1027,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1034,6 +1038,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1041,26 +1046,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1068,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1088,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1095,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1115,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1142,10 +1150,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1169,7 +1178,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1196,33 +1206,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1230,16 +1298,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1250,6 +1318,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1257,16 +1326,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1277,6 +1402,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1284,7 +1410,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1293,7 +1419,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1304,6 +1430,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1311,7 +1438,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1320,7 +1447,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1331,6 +1458,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1338,7 +1466,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shd index 904252f5..0ef46797 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -971,6 +971,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -980,6 +981,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1003,7 +1005,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1014,8 +1016,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1026,25 +1030,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1052,7 +1057,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1061,7 +1066,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1072,6 +1077,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1079,26 +1085,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1106,7 +1113,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1126,6 +1133,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1133,7 +1141,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1153,6 +1161,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1180,10 +1189,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1207,7 +1217,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1234,33 +1245,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1268,16 +1337,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1288,6 +1357,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1295,16 +1365,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1315,6 +1441,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1322,7 +1449,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1331,7 +1458,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1342,6 +1469,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1349,7 +1477,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1358,7 +1486,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1369,6 +1497,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1376,7 +1505,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shi index 1137d0f1..64c18e4c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -970,6 +970,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -979,6 +980,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1002,7 +1004,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1013,8 +1015,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1025,25 +1029,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1051,7 +1056,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1060,7 +1065,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1071,6 +1076,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1078,26 +1084,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1105,7 +1112,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1125,6 +1132,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1132,7 +1140,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1152,6 +1160,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1179,10 +1188,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1206,7 +1216,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1233,33 +1244,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1267,16 +1336,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1287,6 +1356,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1294,16 +1364,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1314,6 +1440,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1321,7 +1448,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1330,7 +1457,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1341,6 +1468,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1348,7 +1476,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1357,7 +1485,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1368,6 +1496,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1375,7 +1504,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shd index 169ba2db..f202e477 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -993,6 +993,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1002,6 +1003,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1011,6 +1013,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1034,7 +1037,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1045,8 +1048,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1057,25 +1062,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1083,7 +1089,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1092,7 +1098,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1103,6 +1109,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1110,26 +1117,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1137,7 +1145,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1157,6 +1165,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1164,7 +1173,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1184,6 +1193,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,10 +1221,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1238,7 +1249,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1265,33 +1277,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1299,16 +1369,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1319,6 +1389,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1326,16 +1397,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1346,6 +1473,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1353,7 +1481,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1362,7 +1490,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1373,6 +1501,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1380,7 +1509,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1389,7 +1518,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1400,6 +1529,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1407,7 +1537,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shi index c25ce938..d118ab79 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -992,6 +992,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1001,6 +1002,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1010,6 +1012,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1033,7 +1036,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1044,8 +1047,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1056,25 +1061,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1082,7 +1088,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1091,7 +1097,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1102,6 +1108,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1109,26 +1116,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1136,7 +1144,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1156,6 +1164,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1163,7 +1172,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1183,6 +1192,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,10 +1220,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1237,7 +1248,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1264,33 +1276,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1298,16 +1368,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1318,6 +1388,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1325,16 +1396,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1345,6 +1472,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1352,7 +1480,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1361,7 +1489,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1372,6 +1500,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1379,7 +1508,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1388,7 +1517,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1399,6 +1528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1406,7 +1536,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shd index 9c6b121e..6df28441 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1016,6 +1016,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1025,6 +1026,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1034,6 +1036,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1043,6 +1046,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1066,7 +1070,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1077,8 +1081,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1089,25 +1095,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1115,7 +1122,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1124,7 +1131,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1135,6 +1142,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1142,26 +1150,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1169,7 +1178,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1189,6 +1198,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1196,7 +1206,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1216,6 +1226,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1243,10 +1254,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1270,7 +1282,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1297,33 +1310,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1331,16 +1402,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1351,6 +1422,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1358,16 +1430,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1378,6 +1506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1385,7 +1514,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1394,7 +1523,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1405,6 +1534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1412,7 +1542,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1421,7 +1551,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1432,6 +1562,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1439,7 +1570,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shi index 53516d13..f870646f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1015,6 +1015,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1024,6 +1025,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1033,6 +1035,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1042,6 +1045,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1065,7 +1069,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1076,8 +1080,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1088,25 +1094,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1114,7 +1121,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1123,7 +1130,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1134,6 +1141,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1141,26 +1149,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1168,7 +1177,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1188,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1195,7 +1205,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1215,6 +1225,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1242,10 +1253,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1269,7 +1281,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1296,33 +1309,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1330,16 +1401,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1350,6 +1421,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1357,16 +1429,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1377,6 +1505,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1384,7 +1513,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1393,7 +1522,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1404,6 +1533,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1411,7 +1541,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1420,7 +1550,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1431,6 +1561,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1438,7 +1569,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shd index 791adc5e..fb0853ca 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1039,6 +1039,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1048,6 +1049,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1057,6 +1059,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1066,6 +1069,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1075,6 +1079,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1098,7 +1103,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1109,8 +1114,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1121,25 +1128,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1147,7 +1155,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1156,7 +1164,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1167,6 +1175,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1174,26 +1183,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1201,7 +1211,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1221,6 +1231,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1228,7 +1239,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1248,6 +1259,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1275,10 +1287,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1302,7 +1315,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1329,33 +1343,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1363,16 +1435,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1383,6 +1455,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1390,16 +1463,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1410,6 +1539,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1417,7 +1547,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1426,7 +1556,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1437,6 +1567,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1444,7 +1575,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1453,7 +1584,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1464,6 +1595,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1471,7 +1603,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shi index 6d93691f..e0bb72e8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1038,6 +1038,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1047,6 +1048,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1056,6 +1058,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1065,6 +1068,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1074,6 +1078,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1097,7 +1102,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1108,8 +1113,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1120,25 +1127,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1146,7 +1154,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1155,7 +1163,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1166,6 +1174,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1173,26 +1182,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1200,7 +1210,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1220,6 +1230,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1227,7 +1238,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1247,6 +1258,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1274,10 +1286,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1301,7 +1314,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1328,33 +1342,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1362,16 +1434,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1382,6 +1454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1389,16 +1462,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1409,6 +1538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1416,7 +1546,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1425,7 +1555,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1436,6 +1566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1443,7 +1574,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1452,7 +1583,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1463,6 +1594,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1470,7 +1602,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shd index 7becd404..5011d1b9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37n.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37n.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1062,6 +1062,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1071,6 +1072,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1080,6 +1082,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1089,6 +1092,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1098,6 +1102,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1107,6 +1112,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1130,7 +1136,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1141,8 +1147,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1153,25 +1161,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1179,7 +1188,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1188,7 +1197,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1199,6 +1208,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1206,26 +1216,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1233,7 +1244,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1253,6 +1264,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1260,7 +1272,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1280,6 +1292,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1307,10 +1320,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1334,7 +1348,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1361,33 +1376,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1395,16 +1468,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1415,6 +1488,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1422,16 +1496,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1442,6 +1572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1449,7 +1580,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1458,7 +1589,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1469,6 +1600,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1476,7 +1608,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1485,7 +1617,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1496,6 +1628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1503,7 +1636,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shi index eb6a0075..cc16573c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37n.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37n.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37n.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1061,6 +1061,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1070,6 +1071,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1079,6 +1081,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1088,6 +1091,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1097,6 +1101,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1106,6 +1111,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1129,7 +1135,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1140,8 +1146,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1152,25 +1160,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1178,7 +1187,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1187,7 +1196,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1198,6 +1207,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1205,26 +1215,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1232,7 +1243,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1252,6 +1263,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1259,7 +1271,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1279,6 +1291,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1306,10 +1319,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1333,7 +1347,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1360,33 +1375,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1394,16 +1467,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1414,6 +1487,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1421,16 +1495,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1441,6 +1571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1448,7 +1579,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1457,7 +1588,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1468,6 +1599,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1475,7 +1607,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1484,7 +1616,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1495,6 +1627,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1502,7 +1635,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shd index 72f3a290..080bb208 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37o.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37o.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1085,6 +1085,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1094,6 +1095,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1103,6 +1105,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1112,6 +1115,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1121,6 +1125,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1130,6 +1135,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1139,6 +1145,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1162,7 +1169,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1173,8 +1180,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1185,25 +1194,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1211,7 +1221,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1220,7 +1230,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1241,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1238,26 +1249,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1265,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1285,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1292,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1312,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1339,10 +1353,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1366,7 +1381,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1393,33 +1409,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1427,16 +1501,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1447,6 +1521,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1454,16 +1529,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1474,6 +1605,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1481,7 +1613,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1490,7 +1622,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1501,6 +1633,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1508,7 +1641,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1517,7 +1650,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1528,6 +1661,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1535,7 +1669,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shi index 6a70f272..0eccc553 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37o.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37o.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37o.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1084,6 +1084,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1093,6 +1094,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1102,6 +1104,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1111,6 +1114,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1120,6 +1124,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1129,6 +1134,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1138,6 +1144,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1161,7 +1168,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1172,8 +1179,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1184,25 +1193,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1210,7 +1220,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1219,7 +1229,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1230,6 +1240,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1237,26 +1248,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1264,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1284,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1291,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1311,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1338,10 +1352,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1365,7 +1380,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1392,33 +1408,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1426,16 +1500,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1446,6 +1520,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1453,16 +1528,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1473,6 +1604,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1480,7 +1612,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1489,7 +1621,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1500,6 +1632,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1507,7 +1640,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1516,7 +1649,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1527,6 +1660,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1534,7 +1668,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shd index b56cfdf7..fdf95606 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37p.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37p.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -633,6 +633,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -642,6 +643,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -665,7 +667,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -676,8 +678,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -688,25 +692,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -714,7 +719,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -723,7 +728,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -734,6 +739,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -741,26 +747,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -768,7 +775,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -788,6 +795,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -795,7 +803,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -815,6 +823,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -842,10 +851,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -869,7 +879,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -896,33 +907,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -930,16 +999,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -950,6 +1019,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -957,16 +1027,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -977,6 +1103,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -984,7 +1111,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -993,7 +1120,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1004,6 +1131,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1011,7 +1139,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1020,7 +1148,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1031,6 +1159,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1038,7 +1167,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shi index 6b5866d5..dccc631f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37p.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37p.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37p.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -632,6 +632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -641,6 +642,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -664,7 +666,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -675,8 +677,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -687,25 +691,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -713,7 +718,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -722,7 +727,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -733,6 +738,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -740,26 +746,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -767,7 +774,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -787,6 +794,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -794,7 +802,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -814,6 +822,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -841,10 +850,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -868,7 +878,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -895,33 +906,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,16 +998,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -949,6 +1018,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,16 +1026,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -976,6 +1102,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -983,7 +1110,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -992,7 +1119,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1003,6 +1130,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1010,7 +1138,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1019,7 +1147,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1030,6 +1158,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1037,7 +1166,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shd index dd06e472..95f853b8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37q.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37q.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -657,6 +657,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -666,6 +667,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -675,6 +677,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -698,7 +701,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -709,8 +712,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -721,25 +726,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -747,7 +753,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -756,7 +762,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -767,6 +773,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,26 +781,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,7 +809,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -821,6 +829,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -828,7 +837,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -848,6 +857,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -875,10 +885,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -902,7 +913,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -929,33 +941,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -963,16 +1033,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -983,6 +1053,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -990,16 +1061,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1010,6 +1137,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1017,7 +1145,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1026,7 +1154,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1037,6 +1165,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1044,7 +1173,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1053,7 +1182,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1064,6 +1193,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1071,7 +1201,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shi index b139683a..105c9d1f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37q.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:42:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37q.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37q.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -656,6 +656,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -665,6 +666,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -674,6 +676,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -697,7 +700,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -708,8 +711,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -720,25 +725,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -746,7 +752,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -755,7 +761,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -766,6 +772,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,26 +780,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,7 +808,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -820,6 +828,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -827,7 +836,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -847,6 +856,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -874,10 +884,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -901,7 +912,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -928,33 +940,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -962,16 +1032,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -982,6 +1052,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -989,16 +1060,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1009,6 +1136,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1016,7 +1144,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1025,7 +1153,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1036,6 +1164,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1043,7 +1172,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1052,7 +1181,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1063,6 +1192,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1070,7 +1200,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shd index 34c88fb8..0d4d178a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37r.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37r.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -680,6 +680,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -689,6 +690,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -698,6 +700,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -707,6 +710,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -730,7 +734,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -741,8 +745,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -753,25 +759,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -779,7 +786,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -788,7 +795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -799,6 +806,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -806,26 +814,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -833,7 +842,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -853,6 +862,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -860,7 +870,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -880,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -907,10 +918,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -934,7 +946,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -961,33 +974,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -995,16 +1066,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1015,6 +1086,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1022,16 +1094,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1042,6 +1170,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1049,7 +1178,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1058,7 +1187,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1069,6 +1198,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1076,7 +1206,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1085,7 +1215,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1096,6 +1226,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1103,7 +1234,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shi index b3d533ef..24b2c33a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37r.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37r.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37r.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -679,6 +679,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -688,6 +689,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -697,6 +699,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -706,6 +709,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -729,7 +733,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -740,8 +744,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -752,25 +758,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -778,7 +785,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -787,7 +794,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -798,6 +805,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -805,26 +813,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -832,7 +841,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -852,6 +861,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,7 +869,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -879,6 +889,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -906,10 +917,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -933,7 +945,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -960,33 +973,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -994,16 +1065,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1014,6 +1085,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1021,16 +1093,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1041,6 +1169,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1048,7 +1177,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1057,7 +1186,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1068,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1075,7 +1205,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1084,7 +1214,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1095,6 +1225,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1102,7 +1233,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shd index 2f7172f9..29027cd3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37s.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37s.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -703,6 +703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -712,6 +713,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -721,6 +723,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -730,6 +733,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -739,6 +743,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -762,7 +767,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -773,8 +778,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -785,25 +792,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -811,7 +819,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -820,7 +828,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -831,6 +839,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -838,26 +847,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -865,7 +875,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -885,6 +895,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -892,7 +903,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -912,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -939,10 +951,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -966,7 +979,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -993,33 +1007,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1027,16 +1099,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1047,6 +1119,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1054,16 +1127,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1074,6 +1203,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1081,7 +1211,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1090,7 +1220,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1101,6 +1231,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1108,7 +1239,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1117,7 +1248,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1128,6 +1259,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1135,7 +1267,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shi index a60e63da..0c8e389d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37s.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37s.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37s.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -702,6 +702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -711,6 +712,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -720,6 +722,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -729,6 +732,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -738,6 +742,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -761,7 +766,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -772,8 +777,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -784,25 +791,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -810,7 +818,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -819,7 +827,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -830,6 +838,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -837,26 +846,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,7 +874,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -884,6 +894,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -891,7 +902,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -911,6 +922,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -938,10 +950,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -965,7 +978,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -992,33 +1006,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1026,16 +1098,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1046,6 +1118,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1053,16 +1126,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1073,6 +1202,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1080,7 +1210,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1089,7 +1219,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1100,6 +1230,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1107,7 +1238,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1116,7 +1247,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1127,6 +1258,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1134,7 +1266,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shd index 41037d01..5599e387 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37t.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37t.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1062,6 +1062,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1071,6 +1072,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1080,6 +1082,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1089,6 +1092,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1098,6 +1102,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1107,6 +1112,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1130,7 +1136,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1141,8 +1147,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1153,25 +1161,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1179,7 +1188,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1188,7 +1197,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1199,6 +1208,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1206,26 +1216,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1233,7 +1244,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1253,6 +1264,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1260,7 +1272,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1280,6 +1292,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1307,10 +1320,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1334,7 +1348,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1361,33 +1376,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1395,16 +1468,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1415,6 +1488,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1422,16 +1496,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1442,6 +1572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1449,7 +1580,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1458,7 +1589,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1469,6 +1600,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1476,7 +1608,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1485,7 +1617,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1496,6 +1628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1503,7 +1636,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shi index 078b874d..04db9fe2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37t.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37t.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37t.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1061,6 +1061,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1070,6 +1071,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1079,6 +1081,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1088,6 +1091,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1097,6 +1101,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1106,6 +1111,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -1129,7 +1135,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1140,8 +1146,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -1152,25 +1160,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1178,7 +1187,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1187,7 +1196,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1198,6 +1207,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1205,26 +1215,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1232,7 +1243,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1252,6 +1263,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1259,7 +1271,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -1279,6 +1291,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1306,10 +1319,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1333,7 +1347,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1360,33 +1375,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1394,16 +1467,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1414,6 +1487,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1421,16 +1495,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1441,6 +1571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1448,7 +1579,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1457,7 +1588,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1468,6 +1599,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1475,7 +1607,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1484,7 +1616,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1495,6 +1627,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1502,7 +1635,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shd index aaffa53e..cc8c4c65 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37u.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37u.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shi index 8e915ce5..4dd1cfa1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37u.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37u.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37u.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shd index 08640b45..77f6d1e1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37v.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:36 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37v.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,13 +1417,13 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 - 2 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.100 0.000 1.250 1.200 1.150 - 3 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.150 0.000 1.300 1.250 1.200 - 4 11 1.000 1.000 1.000 0.35 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 - 5 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.100 0.000 1.250 1.200 1.150 - 6 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.150 0.000 1.300 1.250 1.200 - 7 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + 1 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + 2 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.100 0.000 1.250 1.200 1.150 + 3 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.150 0.000 1.300 1.250 1.200 + 4 11 1.000 1.000 1.000 0.35 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 + 5 9 1.000 1.000 1.000 0.20 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.100 0.000 1.250 1.200 1.150 + 6 10 1.000 1.000 1.000 0.30 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.150 0.000 1.300 1.250 1.200 + 7 14 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 10.000 10.000 10.000 1.000 0.000 1.000 1.200 1.250 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shi index 98bbfa5a..34dab91d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37v.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37v.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37v.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shd index e45b5024..b78420a1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37w.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:42 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37w.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=0.800 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=0.900 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.100 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.300 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.500 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,13 +1417,13 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 - 2 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.250 1.200 1.150 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.200 1.150 - 3 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.250 1.200 1.000 0.000 1.000 1.200 1.200 0.000 1.300 1.250 1.200 - 4 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 - 5 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.250 1.200 1.150 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.200 1.150 - 6 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.250 1.200 1.000 0.000 1.000 1.200 1.200 0.000 1.300 1.250 1.200 - 7 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + 1 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + 2 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.250 1.200 1.150 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.200 1.150 + 3 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.250 1.200 1.000 0.000 1.000 1.200 1.200 0.000 1.300 1.250 1.200 + 4 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 + 5 2 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.250 1.200 1.150 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.200 1.150 + 6 3 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.250 1.200 1.000 0.000 1.000 1.200 1.200 0.000 1.300 1.250 1.200 + 7 1 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 0.000 1.000 1.200 1.200 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shi index 157a6365..fd365af9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-37w.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-37w.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-37w.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=0.800 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=0.900 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.100 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.300 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.500 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shd index f38cc857..730db750 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:43 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,25 +858,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -875,7 +885,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -884,7 +894,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -902,26 +913,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -929,7 +941,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -956,7 +969,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,10 +1017,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1030,7 +1045,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1057,33 +1073,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1091,16 +1165,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1118,16 +1193,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1145,7 +1277,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1154,7 +1286,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1172,7 +1305,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1181,7 +1314,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1199,7 +1333,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shi index 152e89d2..9a5cfc61 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:43 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,25 +857,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -874,7 +884,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -883,7 +893,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -901,26 +912,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -928,7 +940,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -955,7 +968,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,10 +1016,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1029,7 +1044,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1056,33 +1072,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,16 +1164,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1117,16 +1192,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1144,7 +1276,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1153,7 +1285,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1171,7 +1304,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1180,7 +1313,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1198,7 +1332,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shd index f0d58491..b3f08233 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -619,6 +619,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -642,7 +643,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -653,8 +654,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -665,25 +668,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,7 +695,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -700,7 +704,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -711,6 +715,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,26 +723,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -745,7 +751,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -765,6 +771,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -772,7 +779,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -792,6 +799,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -819,10 +827,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -846,7 +855,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -873,33 +883,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -907,16 +975,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -927,6 +995,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -934,16 +1003,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -954,6 +1079,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -961,7 +1087,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -970,7 +1096,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -981,6 +1107,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -988,7 +1115,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -997,7 +1124,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1008,6 +1135,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,7 +1143,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shi index 07f59203..647ef969 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -618,6 +618,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -641,7 +642,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -652,8 +653,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -664,25 +667,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,7 +694,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -699,7 +703,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -710,6 +714,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,26 +722,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -744,7 +750,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -764,6 +770,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -771,7 +778,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -791,6 +798,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -818,10 +826,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -845,7 +854,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -872,33 +882,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -906,16 +974,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -926,6 +994,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -933,16 +1002,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -953,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -960,7 +1086,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -969,7 +1095,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -980,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -987,7 +1114,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -996,7 +1123,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1007,6 +1134,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,7 +1142,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shd index 364e0d29..86149d64 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -647,6 +647,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -656,6 +657,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -679,7 +681,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -690,8 +692,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -702,25 +706,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,7 +733,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -737,7 +742,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -748,6 +753,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,26 +761,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,7 +789,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -802,6 +809,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -809,7 +817,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -829,6 +837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -856,10 +865,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -883,7 +893,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -910,33 +921,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -944,16 +1013,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -964,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -971,16 +1041,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -991,6 +1117,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -998,7 +1125,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1007,7 +1134,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1018,6 +1145,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1025,7 +1153,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1034,7 +1162,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1045,6 +1173,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1052,7 +1181,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shi index 8102b5ac..9a36832b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -646,6 +646,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -655,6 +656,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -678,7 +680,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -689,8 +691,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -701,25 +705,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,7 +732,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -736,7 +741,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -747,6 +752,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,26 +760,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,7 +788,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -801,6 +808,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +816,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -828,6 +836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -855,10 +864,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -882,7 +892,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -909,33 +920,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -943,16 +1012,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -963,6 +1032,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -970,16 +1040,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -990,6 +1116,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -997,7 +1124,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1006,7 +1133,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1017,6 +1144,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1024,7 +1152,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1033,7 +1161,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1044,6 +1172,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1051,7 +1180,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shd index f3b93cf9..f39039ed 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -669,6 +669,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -678,6 +679,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -687,6 +689,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -710,7 +713,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -721,8 +724,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -733,25 +738,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -759,7 +765,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -768,7 +774,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -779,6 +785,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -786,26 +793,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -813,7 +821,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -833,6 +841,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -840,7 +849,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -860,6 +869,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -887,10 +897,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -914,7 +925,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -941,33 +953,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,16 +1045,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1065,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,16 +1073,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1022,6 +1149,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1157,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1038,7 +1166,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1049,6 +1177,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,7 +1185,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1065,7 +1194,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1076,6 +1205,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1083,7 +1213,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shi index 5b667f77..23f87733 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -668,6 +668,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -677,6 +678,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -686,6 +688,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -709,7 +712,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -720,8 +723,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -732,25 +737,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -758,7 +764,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -767,7 +773,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -778,6 +784,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -785,26 +792,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -812,7 +820,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -832,6 +840,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -839,7 +848,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -859,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -886,10 +896,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -913,7 +924,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -940,33 +952,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -974,16 +1044,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -994,6 +1064,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1001,16 +1072,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1021,6 +1148,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1028,7 +1156,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1037,7 +1165,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1048,6 +1176,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,7 +1184,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1064,7 +1193,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1075,6 +1204,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1082,7 +1212,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shd index 0557f091..ae06cd61 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -692,6 +692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -701,6 +702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -710,6 +712,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -719,6 +722,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,7 +746,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -753,8 +757,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -765,25 +771,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -791,7 +798,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -800,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -811,6 +818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -818,26 +826,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -845,7 +854,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -865,6 +874,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -872,7 +882,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -892,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -919,10 +930,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -946,7 +958,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -973,33 +986,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1007,16 +1078,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1027,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1034,16 +1106,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1054,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1061,7 +1190,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1070,7 +1199,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1081,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1088,7 +1218,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1097,7 +1227,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1108,6 +1238,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1115,7 +1246,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shi index fb11a91f..434861ef 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -691,6 +691,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -700,6 +701,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -709,6 +711,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -718,6 +721,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,7 +745,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -752,8 +756,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -764,25 +770,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -790,7 +797,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -799,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -810,6 +817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -817,26 +825,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -844,7 +853,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -864,6 +873,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -871,7 +881,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -891,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -918,10 +929,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -945,7 +957,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -972,33 +985,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1006,16 +1077,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1026,6 +1097,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1033,16 +1105,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1053,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1060,7 +1189,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1069,7 +1198,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1080,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,7 +1217,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1096,7 +1226,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1107,6 +1237,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1114,7 +1245,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shd index fa340e04..e7177797 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -715,6 +715,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -724,6 +725,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -733,6 +735,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,6 +745,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -751,6 +755,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,7 +779,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -785,8 +790,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -797,25 +804,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,7 +831,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -832,7 +840,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -843,6 +851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -850,26 +859,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -877,7 +887,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -897,6 +907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -904,7 +915,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -924,6 +935,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,10 +963,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -978,7 +991,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1005,33 +1019,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1039,16 +1111,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1059,6 +1131,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,16 +1139,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1086,6 +1215,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1093,7 +1223,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1102,7 +1232,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1113,6 +1243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1120,7 +1251,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1129,7 +1260,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1140,6 +1271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1147,7 +1279,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shi index eaea9298..d89faa8c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -714,6 +714,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -723,6 +724,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -732,6 +734,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,6 +744,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -750,6 +754,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,7 +778,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -784,8 +789,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -796,25 +803,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -822,7 +830,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -831,7 +839,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -842,6 +850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -849,26 +858,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -876,7 +886,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -896,6 +906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -903,7 +914,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -923,6 +934,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,10 +962,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -977,7 +990,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1004,33 +1018,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1038,16 +1110,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1058,6 +1130,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1065,16 +1138,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1085,6 +1214,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1092,7 +1222,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1101,7 +1231,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1112,6 +1242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1119,7 +1250,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1128,7 +1259,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1139,6 +1270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1146,7 +1278,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shd index 092ee0a8..453f2813 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -738,6 +738,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -747,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -756,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -765,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -783,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,7 +812,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -817,8 +823,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -829,25 +837,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -855,7 +864,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -864,7 +873,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +884,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -882,26 +892,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -909,7 +920,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -929,6 +940,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -936,7 +948,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -956,6 +968,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -983,10 +996,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1010,7 +1024,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1037,33 +1052,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1071,16 +1144,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1091,6 +1164,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1098,16 +1172,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1118,6 +1248,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1125,7 +1256,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1134,7 +1265,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1145,6 +1276,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1152,7 +1284,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1161,7 +1293,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1172,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1179,7 +1312,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shi index b1061b9c..01e229c8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:45 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -737,6 +737,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -746,6 +747,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -755,6 +757,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -764,6 +767,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,6 +777,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -782,6 +787,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,7 +811,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -816,8 +822,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -828,25 +836,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -854,7 +863,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -863,7 +872,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +883,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -881,26 +891,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -908,7 +919,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -928,6 +939,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -935,7 +947,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -955,6 +967,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -982,10 +995,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1009,7 +1023,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1036,33 +1051,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1070,16 +1143,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1090,6 +1163,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1097,16 +1171,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1117,6 +1247,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1124,7 +1255,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1133,7 +1264,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1144,6 +1275,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1151,7 +1283,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1160,7 +1292,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1171,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1178,7 +1311,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shd index 00ccff07..4b008020 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -761,6 +761,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -770,6 +771,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -779,6 +781,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -788,6 +791,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -797,6 +801,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,6 +811,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -815,6 +821,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -838,7 +845,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -849,8 +856,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -861,25 +870,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -887,7 +897,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -896,7 +906,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -907,6 +917,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,26 +925,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -941,7 +953,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -961,6 +973,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,7 +981,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -988,6 +1001,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,10 +1029,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1042,7 +1057,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1069,33 +1085,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1103,16 +1177,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1123,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,16 +1205,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1150,6 +1281,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1157,7 +1289,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1166,7 +1298,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1309,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,7 +1317,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1193,7 +1326,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1337,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,7 +1345,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shi index 9e187924..c092ed85 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -760,6 +760,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -769,6 +770,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -778,6 +780,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -787,6 +790,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -796,6 +800,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,6 +810,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -814,6 +820,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -837,7 +844,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -848,8 +855,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -860,25 +869,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,7 +896,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -895,7 +905,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +916,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,26 +924,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -940,7 +952,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -960,6 +972,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,7 +980,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -987,6 +1000,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,10 +1028,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1041,7 +1056,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1068,33 +1084,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1102,16 +1176,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1122,6 +1196,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,16 +1204,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1149,6 +1280,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1156,7 +1288,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1165,7 +1297,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1308,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,7 +1316,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1192,7 +1325,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1336,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,7 +1344,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shd index b333d9ec..1b611703 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -619,6 +619,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -642,7 +643,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -653,8 +654,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -665,25 +668,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,7 +695,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -700,7 +704,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -711,6 +715,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,26 +723,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -745,7 +751,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -765,6 +771,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -772,7 +779,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -792,6 +799,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -819,10 +827,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -846,7 +855,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -873,33 +883,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -907,16 +975,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -927,6 +995,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -934,16 +1003,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -954,6 +1079,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -961,7 +1087,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -970,7 +1096,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -981,6 +1107,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -988,7 +1115,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -997,7 +1124,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1008,6 +1135,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,7 +1143,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shi index 6717a4c7..b5d1183a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:46 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -618,6 +618,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -641,7 +642,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -652,8 +653,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -664,25 +667,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,7 +694,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -699,7 +703,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -710,6 +714,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,26 +722,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -744,7 +750,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -764,6 +770,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -771,7 +778,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -791,6 +798,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -818,10 +826,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -845,7 +854,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -872,33 +882,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -906,16 +974,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -926,6 +994,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -933,16 +1002,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -953,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -960,7 +1086,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -969,7 +1095,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -980,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -987,7 +1114,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -996,7 +1123,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1007,6 +1134,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,7 +1142,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shd index 6fbb5204..e1e16635 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -645,6 +645,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -654,6 +655,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -677,7 +679,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -688,8 +690,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -700,25 +704,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -726,7 +731,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -735,7 +740,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -746,6 +751,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -753,26 +759,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,7 +787,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -800,6 +807,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +815,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -827,6 +835,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -854,10 +863,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -881,7 +891,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -908,33 +919,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -942,16 +1011,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -962,6 +1031,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -969,16 +1039,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -989,6 +1115,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -996,7 +1123,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1005,7 +1132,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1016,6 +1143,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1023,7 +1151,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1032,7 +1160,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1043,6 +1171,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1050,7 +1179,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shi index d1c7884f..66c6a23e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -644,6 +644,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -653,6 +654,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -676,7 +678,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -687,8 +689,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -699,25 +703,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -725,7 +730,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -734,7 +739,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +750,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -752,26 +758,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -779,7 +786,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -799,6 +806,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -806,7 +814,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -826,6 +834,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,10 +862,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -880,7 +890,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -907,33 +918,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -941,16 +1010,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -961,6 +1030,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,16 +1038,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -988,6 +1114,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -995,7 +1122,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1004,7 +1131,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1015,6 +1142,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1022,7 +1150,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1031,7 +1159,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1042,6 +1170,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1049,7 +1178,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shd index b5307dbc..9914126a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -669,6 +669,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -678,6 +679,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -687,6 +689,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -710,7 +713,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -721,8 +724,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -733,25 +738,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -759,7 +765,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -768,7 +774,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -779,6 +785,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -786,26 +793,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -813,7 +821,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -833,6 +841,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -840,7 +849,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -860,6 +869,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -887,10 +897,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -914,7 +925,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -941,33 +953,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,16 +1045,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1065,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,16 +1073,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1022,6 +1149,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,7 +1157,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1038,7 +1166,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1049,6 +1177,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,7 +1185,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1065,7 +1194,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1076,6 +1205,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1083,7 +1213,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shi index 1714247f..246ab419 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -668,6 +668,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -677,6 +678,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -686,6 +688,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -709,7 +712,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -720,8 +723,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -732,25 +737,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -758,7 +764,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -767,7 +773,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -778,6 +784,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -785,26 +792,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -812,7 +820,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -832,6 +840,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -839,7 +848,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -859,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -886,10 +896,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -913,7 +924,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -940,33 +952,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -974,16 +1044,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -994,6 +1064,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1001,16 +1072,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1021,6 +1148,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1028,7 +1156,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1037,7 +1165,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1048,6 +1176,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,7 +1184,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1064,7 +1193,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1075,6 +1204,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1082,7 +1212,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shd index 4042cffb..8ae2add8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -692,6 +692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -701,6 +702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -710,6 +712,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -719,6 +722,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,7 +746,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -753,8 +757,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -765,25 +771,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -791,7 +798,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -800,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -811,6 +818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -818,26 +826,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -845,7 +854,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -865,6 +874,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -872,7 +882,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -892,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -919,10 +930,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -946,7 +958,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -973,33 +986,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1007,16 +1078,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1027,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1034,16 +1106,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1054,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1061,7 +1190,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1070,7 +1199,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1081,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1088,7 +1218,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1097,7 +1227,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1108,6 +1238,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1115,7 +1246,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shi index f81822d0..198a7343 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -691,6 +691,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -700,6 +701,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -709,6 +711,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -718,6 +721,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,7 +745,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -752,8 +756,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -764,25 +770,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -790,7 +797,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -799,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -810,6 +817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -817,26 +825,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -844,7 +853,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -864,6 +873,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -871,7 +881,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -891,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -918,10 +929,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -945,7 +957,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -972,33 +985,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1006,16 +1077,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1026,6 +1097,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1033,16 +1105,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1053,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1060,7 +1189,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1069,7 +1198,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1080,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1087,7 +1217,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1096,7 +1226,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1107,6 +1237,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1114,7 +1245,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shd index 30693313..396087f7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -715,6 +715,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -724,6 +725,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -733,6 +735,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -742,6 +745,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -751,6 +755,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,7 +779,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -785,8 +790,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -797,25 +804,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,7 +831,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -832,7 +840,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -843,6 +851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -850,26 +859,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -877,7 +887,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -897,6 +907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -904,7 +915,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -924,6 +935,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,10 +963,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -978,7 +991,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1005,33 +1019,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1039,16 +1111,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1059,6 +1131,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,16 +1139,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1086,6 +1215,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1093,7 +1223,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1102,7 +1232,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1113,6 +1243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1120,7 +1251,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1129,7 +1260,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1140,6 +1271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1147,7 +1279,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shi index f6b31a36..60ccc364 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -714,6 +714,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -723,6 +724,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -732,6 +734,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -741,6 +744,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -750,6 +754,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,7 +778,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -784,8 +789,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -796,25 +803,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -822,7 +830,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -831,7 +839,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -842,6 +850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -849,26 +858,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -876,7 +886,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -896,6 +906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -903,7 +914,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -923,6 +934,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -950,10 +962,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -977,7 +990,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1004,33 +1018,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1038,16 +1110,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1058,6 +1130,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1065,16 +1138,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1085,6 +1214,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1092,7 +1222,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1101,7 +1231,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1112,6 +1242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1119,7 +1250,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1128,7 +1259,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1139,6 +1270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1146,7 +1278,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shd index ac0db75f..d8d663d7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38n.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38n.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -738,6 +738,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -747,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -756,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -765,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -774,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -783,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,7 +812,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -817,8 +823,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -829,25 +837,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -855,7 +864,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -864,7 +873,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +884,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -882,26 +892,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -909,7 +920,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -929,6 +940,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -936,7 +948,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -956,6 +968,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -983,10 +996,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1010,7 +1024,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1037,33 +1052,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1071,16 +1144,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1091,6 +1164,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1098,16 +1172,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1118,6 +1248,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1125,7 +1256,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1134,7 +1265,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1145,6 +1276,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1152,7 +1284,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1161,7 +1293,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1172,6 +1304,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1179,7 +1312,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shi index 9f06a32b..4a2bd46a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38n.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38n.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38n.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -737,6 +737,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -746,6 +747,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -755,6 +757,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -764,6 +767,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -773,6 +777,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -782,6 +787,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,7 +811,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -816,8 +822,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -828,25 +836,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -854,7 +863,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -863,7 +872,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +883,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -881,26 +891,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -908,7 +919,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -928,6 +939,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -935,7 +947,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -955,6 +967,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -982,10 +995,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1009,7 +1023,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1036,33 +1051,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1070,16 +1143,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1090,6 +1163,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1097,16 +1171,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1117,6 +1247,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1124,7 +1255,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1133,7 +1264,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1144,6 +1275,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1151,7 +1283,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1160,7 +1292,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1171,6 +1303,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1178,7 +1311,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shd index 585ff9b3..bbf3e707 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38o.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38o.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -761,6 +761,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -770,6 +771,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -779,6 +781,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -788,6 +791,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -797,6 +801,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -806,6 +811,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -815,6 +821,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -838,7 +845,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -849,8 +856,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -861,25 +870,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -887,7 +897,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -896,7 +906,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -907,6 +917,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,26 +925,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -941,7 +953,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -961,6 +973,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,7 +981,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -988,6 +1001,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1015,10 +1029,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1042,7 +1057,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1069,33 +1085,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1103,16 +1177,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1123,6 +1197,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,16 +1205,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1150,6 +1281,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1157,7 +1289,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1166,7 +1298,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1309,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,7 +1317,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1193,7 +1326,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1337,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,7 +1345,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shi index 00ceddba..c8a9781c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38o.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38o.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38o.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -760,6 +760,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -769,6 +770,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -778,6 +780,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -787,6 +790,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -796,6 +800,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -805,6 +810,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -814,6 +820,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -837,7 +844,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -848,8 +855,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -860,25 +869,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -886,7 +896,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -895,7 +905,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -906,6 +916,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,26 +924,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -940,7 +952,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -960,6 +972,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,7 +980,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -987,6 +1000,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1014,10 +1028,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -1041,7 +1056,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -1068,33 +1084,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1102,16 +1176,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1122,6 +1196,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,16 +1204,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1149,6 +1280,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1156,7 +1288,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -1165,7 +1297,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1308,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,7 +1316,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -1192,7 +1325,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1336,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,7 +1344,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shd index eac7f6c8..44454be4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38p.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38p.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=1 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=1 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=1 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=1 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=1 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=1 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=1 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1084,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1223,7 +1357,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1254,7 +1388,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=14 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -1264,6 +1398,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1282,8 +1417,20 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 - -1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 1 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 2 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 2 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 3 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 3 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 4 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 4 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 5 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 5 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 6 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 6 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 + 7 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.250 1.300 1.000 1.000 0.000 0.000 1.300 1.000 1.000 + 7 13 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.200 1.150 1.100 1.000 1.000 1.000 1.300 0.000 0.000 1.200 1.150 1.100 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -21772,6 +21919,18 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'anchor' 100.00000 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] MaximumMoment=1495.19175 MaximumShearForce=-512.05297 @@ -21781,6 +21940,15 @@ MaximumPercentageMobilisedResistance=34.36942 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=1495.19175 +MaximumShearForce=-512.05297 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=29.80553 +MaximumPercentageMobilisedResistance=34.31874 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=2 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shi index 15382682..3d79b0c0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-38p.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-38p.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-38p.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=1 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=1 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=1 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=1 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=1 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=1 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=1 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1083,6 +1156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shd index 5e035f43..6f7fcf1b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shi index 86afc727..84972f80 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shd index 2853fb9b..9c0319c3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:33 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shi index 12b7e4d8..0e168cf2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shd index 5c759b45..e787dee9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shi index 8c0e5fc8..dc07c456 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:54 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shd index 96bd33da..8ce637a1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shi index eb150821..0035d18b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.250 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shd index e7f75cf1..25dc33a7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=1 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shi index d4148477..f9b53753 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=1 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shd index e132aa3c..a9a30994 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=1 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shi index 9aeeec10..a1988292 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=1 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shd index 8b906254..a1e6538f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=1 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shi index 72b06f5e..67550d0c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:28:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=1 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shd index 6645976d..02ac9706 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1084,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shi index a9458a2e..39a4d7c3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1083,6 +1156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shd index b242336c..c27079b9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -749,6 +749,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -758,6 +759,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -767,6 +769,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -776,6 +779,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -785,6 +789,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -794,6 +799,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -803,6 +809,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -826,7 +833,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -837,8 +844,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -849,7 +858,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -868,6 +877,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,6 +905,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -949,6 +961,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -976,6 +989,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1030,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1057,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,7 +1084,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1082,8 +1155,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1093,8 +1167,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1111,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1120,7 +1195,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1138,6 +1269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1165,6 +1297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1192,6 +1325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shi index 36d58d11..70ac13d9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-39i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-39i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-39i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -748,6 +748,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.800 StageVerifyEC7NADBE=0 @@ -757,6 +758,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -766,6 +768,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -775,6 +778,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -784,6 +788,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.300 StageVerifyEC7NADBE=0 @@ -793,6 +798,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.400 StageVerifyEC7NADBE=0 @@ -802,6 +808,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.500 StageVerifyEC7NADBE=0 @@ -825,7 +832,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -836,8 +843,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -848,7 +857,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -867,6 +876,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,6 +904,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,6 +932,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,6 +960,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -975,6 +988,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,6 +1016,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1029,6 +1044,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,6 +1072,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,7 +1083,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1081,8 +1154,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1092,8 +1166,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.100 LoadFactorPermFav=1.150 LoadFactorVarUnfav=1.200 @@ -1110,6 +1184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1119,7 +1194,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1137,6 +1268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1164,6 +1296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1191,6 +1324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shd index 8cd914ff..e61725ad 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -314,7 +315,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -325,8 +326,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -337,7 +340,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -345,17 +348,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -363,8 +367,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -372,7 +376,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -383,15 +387,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -399,17 +404,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -417,8 +423,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -437,15 +443,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -464,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -491,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -499,12 +508,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -518,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -526,7 +536,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -545,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -553,25 +564,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,16 +647,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -599,6 +667,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -606,16 +675,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -626,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,8 +759,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -642,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -653,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -660,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -669,7 +796,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -680,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -687,8 +815,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shi index 1e77137e..53f83a5f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -290,6 +290,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -313,7 +314,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -324,8 +325,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -336,7 +339,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -344,17 +347,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -362,8 +366,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -371,7 +375,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -382,15 +386,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -398,17 +403,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -416,8 +422,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -436,15 +442,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -463,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -490,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -498,12 +507,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -517,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,7 +535,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -544,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -552,25 +563,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +646,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +666,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,16 +674,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +758,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -641,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -668,7 +795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -679,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -686,8 +814,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shd index 200f2f27..8530eea9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -314,7 +315,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -325,8 +326,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -337,7 +340,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -345,17 +348,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -363,8 +367,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -372,7 +376,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -383,15 +387,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -399,17 +404,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -417,8 +423,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -437,15 +443,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -464,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -491,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -499,12 +508,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -518,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -526,7 +536,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -545,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -553,25 +564,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,16 +647,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -599,6 +667,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -606,16 +675,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -626,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,8 +759,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -642,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -653,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -660,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -669,7 +796,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -680,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -687,8 +815,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shi index 06c40425..1eec6a85 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -290,6 +290,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -313,7 +314,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -324,8 +325,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -336,7 +339,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -344,17 +347,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -362,8 +366,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -371,7 +375,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -382,15 +386,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -398,17 +403,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -416,8 +422,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -436,15 +442,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -463,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -490,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -498,12 +507,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -517,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,7 +535,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -544,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -552,25 +563,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +646,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +666,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,16 +674,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +758,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -641,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -668,7 +795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -679,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -686,8 +814,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shd index c66eab3e..5db6e19c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -314,7 +315,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -325,8 +326,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -337,7 +340,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -345,17 +348,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -363,8 +367,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -372,7 +376,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -383,15 +387,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -399,17 +404,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -417,8 +423,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -437,15 +443,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -464,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -491,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -499,12 +508,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -518,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -526,7 +536,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -545,6 +555,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -553,25 +564,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,16 +647,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -599,6 +667,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -606,16 +675,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -626,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,8 +759,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -642,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -653,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -660,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -669,7 +796,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -680,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -687,8 +815,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shi index ba4f06d0..eb67a682 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-3c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-3c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-3c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -290,6 +290,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -313,7 +314,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -324,8 +325,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -336,7 +339,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -344,17 +347,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -362,8 +366,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -371,7 +375,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -382,15 +386,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -398,17 +403,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -416,8 +422,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -436,15 +442,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -463,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -490,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -498,12 +507,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -517,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,7 +535,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -544,6 +554,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -552,25 +563,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +646,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +666,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,16 +674,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +758,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -641,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -668,7 +795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -679,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -686,8 +814,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shd index 9406e970..365f2303 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -536,6 +536,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -545,6 +546,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -568,7 +570,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -579,8 +581,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.001 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -591,7 +595,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -610,6 +614,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +642,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +670,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,6 +698,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,6 +726,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +754,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -772,6 +782,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -799,6 +810,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -809,7 +821,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -818,14 +830,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -835,8 +904,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -853,6 +922,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -862,7 +932,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -880,6 +1006,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -907,6 +1034,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -934,6 +1062,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1006,6 +1135,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1024,7 +1154,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shi index 312091f3..0b9993ad 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -535,6 +535,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -544,6 +545,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -567,7 +569,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -578,8 +580,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.001 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -590,7 +594,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -609,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +669,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,6 +697,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +781,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -798,6 +809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -808,7 +820,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -817,14 +829,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -834,8 +903,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -852,6 +921,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -861,7 +931,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -879,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -906,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -933,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shd index 784fa1a6..d1d8fe1d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -536,6 +536,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -545,6 +546,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -568,7 +570,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -579,8 +581,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=0.999 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -591,7 +595,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -610,6 +614,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +642,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +670,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,6 +698,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,6 +726,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +754,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -772,6 +782,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -799,6 +810,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -809,7 +821,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -818,14 +830,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -835,8 +904,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -853,6 +922,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -862,7 +932,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -880,6 +1006,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -907,6 +1034,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -934,6 +1062,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1006,6 +1135,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1024,7 +1154,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shi index 212a81f4..4e665fe4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -535,6 +535,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -544,6 +545,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -567,7 +569,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -578,8 +580,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=0.999 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -590,7 +594,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -609,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +669,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,6 +697,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +781,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -798,6 +809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -808,7 +820,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -817,14 +829,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -834,8 +903,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -852,6 +921,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -861,7 +931,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -879,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -906,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -933,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shd index 3c1d7c8e..0e87117c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:14 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -536,6 +536,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -545,6 +546,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -568,7 +570,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -579,8 +581,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=3.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -591,7 +595,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -610,6 +614,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +642,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +670,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -691,6 +698,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -718,6 +726,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +754,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -772,6 +782,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -799,6 +810,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -809,7 +821,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -818,14 +830,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -835,8 +904,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -853,6 +922,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -862,7 +932,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -880,6 +1006,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -907,6 +1034,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -934,6 +1062,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1006,6 +1135,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1024,7 +1154,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 2.000 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 2.000 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shi index 2a21807c..ee69e90f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:43:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -535,6 +535,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -544,6 +545,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -567,7 +569,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -578,8 +580,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=3.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -590,7 +594,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -609,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +669,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -690,6 +697,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -771,6 +781,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -798,6 +809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -808,7 +820,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -817,14 +829,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -834,8 +903,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -852,6 +921,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -861,7 +931,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -879,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -906,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -933,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shd index f4dbb90b..02bc4008 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -536,6 +536,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -545,6 +546,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -568,7 +570,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -579,8 +581,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=3.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -591,7 +595,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -610,6 +614,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +622,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -637,6 +642,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,7 +650,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -664,6 +670,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,7 +678,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -691,6 +698,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -698,7 +706,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -718,6 +726,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +754,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -752,7 +762,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=2.000 +FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] @@ -772,6 +782,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -799,6 +810,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -809,7 +821,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -818,14 +830,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -833,10 +902,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -853,6 +922,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -860,9 +930,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -880,6 +1006,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -887,7 +1014,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -907,6 +1034,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -914,7 +1042,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -934,6 +1062,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -941,7 +1070,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shi index e520f317..5f15082a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-40d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-40d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:14 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-40d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -535,6 +535,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -544,6 +545,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.001 StageVerifyEC7NADBE=0 @@ -567,7 +569,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -578,8 +580,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=3.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -590,7 +594,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -609,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -616,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -636,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -663,6 +669,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,7 +677,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -690,6 +697,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -697,7 +705,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -717,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -751,7 +761,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=2.000 +FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] @@ -771,6 +781,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -798,6 +809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -808,7 +820,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -817,14 +829,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -832,10 +901,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -852,6 +921,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -859,9 +929,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -879,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -886,7 +1013,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -906,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -913,7 +1041,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -933,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -940,7 +1069,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shd index ce6e533c..42b7334f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,25 +660,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,8 +687,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -690,7 +696,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,33 +707,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,8 +743,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -755,15 +763,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,10 +819,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -822,7 +833,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -836,7 +847,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -863,33 +875,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,16 +967,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -917,6 +987,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,89 +1023,120 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shi index 97e62707..abe80240 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,25 +659,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,8 +686,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -689,7 +695,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,33 +706,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,8 +742,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -754,15 +762,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,10 +818,11 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 @@ -821,7 +832,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -835,7 +846,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -862,33 +874,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,16 +966,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +986,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,89 +1022,120 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.050 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.20 +GeometryDeltaPassivePhreaticLine=0.15 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] -LoadFactorPermUnfav=0.900 -LoadFactorPermFav=1.100 -LoadFactorVarUnfav=0.800 +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=2.000 -MaterialFactorTgPhi=0.800 -MaterialFactorSubgradeReaction=0.800 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.200 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.25 -GeometryDeltaPassivePhreaticLine=0.30 -GeometryDeltaActivePhreaticLine=0.20 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryDeltaPassivePhreaticLine=0.25 +GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shd index 5fdaef19..c4387d04 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,9 +1219,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 - 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 - 3 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 3 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shi index 7554d0b1..fd6c0a97 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.400 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shd index 762b65ed..18f808ac 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:21 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -1070,6 +1200,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1088,9 +1219,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 - 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 - 3 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 3 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shi index 9e5deb2f..d802e712 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-41c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-41c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:19 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-41c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=0.900 LoadFactorPermFav=1.100 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=0.800 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.25 GeometryDeltaPassivePhreaticLine=0.30 GeometryDeltaActivePhreaticLine=0.20 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shd index c244d685..3982953d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1844,6 +1844,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1853,6 +1854,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1876,7 +1878,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1887,8 +1889,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1899,7 +1903,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1911,13 +1915,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1925,7 +1930,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1945,6 +1950,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1952,7 +1958,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1965,13 +1971,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1979,7 +1986,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1999,6 +2006,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2006,7 +2014,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2026,6 +2034,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2053,6 +2062,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2080,6 +2090,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2107,6 +2118,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2117,7 +2129,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2126,14 +2138,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2141,10 +2210,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2161,6 +2230,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2168,9 +2238,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2188,6 +2314,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2195,7 +2322,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2215,6 +2342,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2222,7 +2350,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2242,6 +2370,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2249,7 +2378,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shi index 4a8ebf6f..964ead44 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1843,6 +1843,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1852,6 +1853,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1875,7 +1877,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1886,8 +1888,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1898,7 +1902,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1910,13 +1914,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1924,7 +1929,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1944,6 +1949,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1951,7 +1957,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1964,13 +1970,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1978,7 +1985,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -1998,6 +2005,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2005,7 +2013,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2025,6 +2033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2052,6 +2061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2079,6 +2089,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2106,6 +2117,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2116,7 +2128,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2125,14 +2137,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2140,10 +2209,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2160,6 +2229,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2167,9 +2237,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2187,6 +2313,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2194,7 +2321,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2214,6 +2341,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2221,7 +2349,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2241,6 +2369,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2248,7 +2377,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shd index fdc3a264..f6b4d712 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1848,6 +1848,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1857,6 +1858,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1880,7 +1882,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1891,8 +1893,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1903,7 +1907,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1915,13 +1919,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1929,7 +1934,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1949,6 +1954,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1956,7 +1962,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1969,13 +1975,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1983,7 +1990,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -2003,6 +2010,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2010,7 +2018,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2030,6 +2038,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2057,6 +2066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2084,6 +2094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2111,6 +2122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2121,7 +2133,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2130,14 +2142,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2145,10 +2214,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2165,6 +2234,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2172,9 +2242,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2192,6 +2318,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2199,7 +2326,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2219,6 +2346,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2226,7 +2354,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2246,6 +2374,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2253,7 +2382,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shi index 133cd596..233a9939 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1847,6 +1847,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1856,6 +1857,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1879,7 +1881,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1890,8 +1892,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1902,7 +1906,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1914,13 +1918,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1928,7 +1933,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1948,6 +1953,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1955,7 +1961,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1968,13 +1974,14 @@ ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1982,7 +1989,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -2002,6 +2009,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2009,7 +2017,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2029,6 +2037,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2056,6 +2065,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2083,6 +2093,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2110,6 +2121,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2120,7 +2132,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2129,14 +2141,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2144,10 +2213,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2164,6 +2233,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2171,9 +2241,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2191,6 +2317,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2198,7 +2325,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2218,6 +2345,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2225,7 +2353,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2245,6 +2373,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2252,7 +2381,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shd index ae93c951..dfd0e7c1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1850,6 +1850,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1859,6 +1860,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1882,7 +1884,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1893,8 +1895,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1905,7 +1909,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1924,6 +1928,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1951,6 +1956,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1978,6 +1984,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2005,6 +2012,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2032,6 +2040,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2059,6 +2068,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2086,6 +2096,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2113,6 +2124,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2123,7 +2135,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2132,14 +2144,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2149,8 +2218,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2167,6 +2236,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2176,7 +2246,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2194,6 +2320,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2221,6 +2348,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2248,6 +2376,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2320,6 +2449,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -2338,7 +2468,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.500 1.200 1.350 + -1 8 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.500 1.200 1.350 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shi index 632b4f2e..b154cc48 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:15 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1849,6 +1849,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1858,6 +1859,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1881,7 +1883,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1892,8 +1894,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1904,7 +1908,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1923,6 +1927,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1950,6 +1955,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1977,6 +1983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2004,6 +2011,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2031,6 +2039,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2058,6 +2067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2085,6 +2095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2112,6 +2123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2122,7 +2134,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2131,14 +2143,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2148,8 +2217,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2166,6 +2235,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2175,7 +2245,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2193,6 +2319,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2220,6 +2347,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2247,6 +2375,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shd index 11d742b7..bce29262 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1850,6 +1850,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1859,6 +1860,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1882,7 +1884,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1893,8 +1895,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1905,7 +1909,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1924,6 +1928,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1931,7 +1936,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1951,6 +1956,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1958,7 +1964,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1978,6 +1984,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1985,34 +1992,35 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.200 +ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 -MaterialFactorTgPhi=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2032,6 +2040,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2059,6 +2068,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2086,6 +2096,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2113,6 +2124,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2123,7 +2135,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2132,14 +2144,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2147,10 +2216,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2167,6 +2236,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2174,9 +2244,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2194,6 +2320,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2201,7 +2328,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2221,6 +2348,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2228,7 +2356,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2248,6 +2376,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2255,7 +2384,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shi index 1ff98501..025495f7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-42d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:16 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-42d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:22 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-42d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1849,6 +1849,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1858,6 +1859,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1881,7 +1883,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1892,8 +1894,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1904,7 +1908,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1923,6 +1927,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1930,7 +1935,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -1950,6 +1955,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1957,7 +1963,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -1977,6 +1983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1984,34 +1991,35 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.200 +ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 -MaterialFactorTgPhi=1.000 +MaterialFactorCohesion=1.250 +MaterialFactorTgPhi=1.250 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -2031,6 +2039,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2058,6 +2067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2085,6 +2095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2112,6 +2123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2122,7 +2134,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2131,14 +2143,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2146,10 +2215,10 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2166,6 +2235,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2173,9 +2243,65 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2193,6 +2319,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2200,7 +2327,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -2220,6 +2347,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2227,7 +2355,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -2247,6 +2375,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2254,7 +2383,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shd index 34271126..db018138 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -12673,6 +12673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12682,6 +12683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12691,6 +12693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12700,6 +12703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12723,7 +12727,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -12734,8 +12738,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -12746,7 +12752,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -12765,6 +12771,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12792,6 +12799,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12819,6 +12827,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12846,6 +12855,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12873,6 +12883,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -12900,6 +12911,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -12927,6 +12939,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -12954,6 +12967,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -12964,7 +12978,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -12973,14 +12987,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12990,8 +13061,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -13008,6 +13079,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -13017,7 +13089,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -13035,6 +13163,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -13062,6 +13191,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -13089,6 +13219,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shi index 50ae3b00..06523fe7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -12672,6 +12672,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12681,6 +12682,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12690,6 +12692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12699,6 +12702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -12722,7 +12726,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -12733,8 +12737,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -12745,7 +12751,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -12764,6 +12770,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12791,6 +12798,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12818,6 +12826,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12845,6 +12854,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12872,6 +12882,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -12899,6 +12910,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -12926,6 +12938,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -12953,6 +12966,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -12963,7 +12977,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -12972,14 +12986,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -12989,8 +13060,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -13007,6 +13078,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -13016,7 +13088,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -13034,6 +13162,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -13061,6 +13190,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -13088,6 +13218,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shd index 406c481c..e2e9f28d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -420,6 +420,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -429,6 +430,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -452,7 +454,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -463,8 +465,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -475,7 +479,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -483,17 +487,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -501,8 +506,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -510,7 +515,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -521,15 +526,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -537,17 +543,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -555,8 +562,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -575,15 +582,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -602,6 +610,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -625,10 +634,11 @@ EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 -MaterialFactorSubgradeReaction=0.100 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,6 +666,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,6 +694,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -693,23 +705,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -717,16 +786,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -737,6 +806,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -744,16 +814,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -764,6 +890,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -771,8 +898,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -780,7 +907,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -791,6 +918,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -798,8 +926,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -807,7 +935,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -818,6 +946,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -825,8 +954,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shi index 183d47ee..2d89a17a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -419,6 +419,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -428,6 +429,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -451,7 +453,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -462,8 +464,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -474,7 +478,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -482,17 +486,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -500,8 +505,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -509,7 +514,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -520,15 +525,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -536,17 +542,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -554,8 +561,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -574,15 +581,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -601,6 +609,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -624,10 +633,11 @@ EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 -MaterialFactorSubgradeReaction=0.100 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -655,6 +665,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -682,6 +693,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -692,23 +704,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -716,16 +785,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -736,6 +805,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -743,16 +813,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -763,6 +889,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -770,8 +897,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -779,7 +906,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -790,6 +917,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -797,8 +925,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -806,7 +934,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -817,6 +945,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -824,8 +953,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shd index 5cbb813c..38701985 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -581,6 +581,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -590,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -613,7 +615,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -624,8 +626,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.120 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -636,25 +640,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,7 +667,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -671,7 +676,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -682,6 +687,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -689,26 +695,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -716,7 +723,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -736,6 +743,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -743,7 +751,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -763,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -778,26 +787,27 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.100 -MaterialFactorTgPhi=0.100 -MaterialFactorSubgradeReaction=0.100 +MaterialFactorCohesion=1.150 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.00 -GeometryDeltaActivePhreaticLine=0.00 -OverallStabilityFactorDrivingMoment=0.900 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=1.000 +FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] @@ -817,7 +827,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -844,33 +855,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -878,16 +947,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -898,6 +967,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -905,16 +975,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -925,6 +1051,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -932,7 +1059,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -941,7 +1068,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -952,6 +1079,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -959,7 +1087,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -968,7 +1096,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -979,6 +1107,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -986,7 +1115,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -2277,180 +2406,180 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -32.72631 37.80262 2.65307322929E14 - -28.41782 40.78519 2.54426325464E14 - -23.90384 43.96721 2.43545327999E14 - -19.17108 47.34869 2.32664330534E14 - -14.20623 50.92963 2.21783333069E14 - -8.99601 54.71003 2.10902335604E14 - -26.27139 -21.54998 2.10902335604E14 - -25.88728 -17.57012 2.00021338139E14 - -25.23119 -13.39081 1.89140340674E14 - -24.28983 -9.01204 1.78259343209E14 - -23.04991 -4.43381 1.67378345743E14 - -21.49813 0.34388 1.56497348278E14 - -25.74030 127.69898 1.56497348278E14 - -16.79658 132.67613 1.45616350813E14 - -7.51440 137.85273 1.34735353348E14 - 2.11953 143.22879 1.23854355883E14 - 12.11852 148.80431 1.12973358418E14 - 22.49586 154.57929 1.02092360953E14 - 17.33781 190.78287 1.02092360953E14 - 26.98882 195.24500 9.39316128539E13 - 36.86575 199.81932 8.57708647551E13 - 46.97419 204.50584 7.76101166562E13 - 57.31976 209.30455 6.94493685574E13 - 67.90808 214.21546 6.12886204586E13 - 57.42164 -63.40082 6.12886204586E13 - 54.37671 -58.37772 5.31278723597E13 - 51.58574 -53.24242 4.49671242609E13 - 49.05434 -47.99493 3.68063761621E13 - 46.78811 -42.63524 2.86456280632E13 - 44.79268 -37.16335 2.04848799644E13 - 42.53687 -163.08253 2.04848799644E13 - 34.52227 -157.49845 1.23241318656E13 - 26.78967 -151.80217 4.16338376672E12 - 19.29583 -148.92599 -3.99736433211E12 - 11.84992 -148.92599 -1.21581124309E13 + -32.72045 37.82606 2.65307322929E14 + -28.41391 40.80862 2.54426325464E14 + -23.90188 43.99065 2.43545327999E14 + -19.17108 47.37213 2.32664330534E14 + -14.20819 50.95307 2.21783333069E14 + -8.99992 54.73347 2.10902335604E14 + -26.26553 -21.58123 2.10902335604E14 + -25.88181 -17.60137 2.00021338139E14 + -25.22611 -13.42206 1.89140340674E14 + -24.28515 -9.04329 1.78259343209E14 + -23.04561 -4.46506 1.67378345743E14 + -21.49422 0.31263 1.56497348278E14 + -18.62506 85.04273 1.56497348278E14 + -12.52783 90.01988 1.45616350813E14 + -6.09213 95.19648 1.34735353348E14 + 0.69531 100.57254 1.23854355883E14 + 7.84782 106.14806 1.12973358418E14 + 15.37867 111.92304 1.02092360953E14 + 11.01750 241.34537 1.02092360953E14 + 23.19664 245.80750 9.39316128539E13 + 35.60168 250.38182 8.57708647551E13 + 48.23825 255.06834 7.76101166562E13 + 61.11195 259.86705 6.94493685574E13 + 74.22839 264.77796 6.12886204586E13 + 60.58277 -88.68988 6.12886204586E13 + 56.27319 -83.66678 5.31278723597E13 + 52.21757 -78.53148 4.49671242609E13 + 48.42152 -73.28399 3.68063761621E13 + 44.89065 -67.92430 2.86456280632E13 + 41.63057 -62.45242 2.04848799644E13 + 42.53784 -163.08253 2.04848799644E13 + 34.52305 -157.49845 1.23241318656E13 + 26.79026 -151.80217 4.16338376672E12 + 19.29622 -148.92599 -3.99736433211E12 + 11.85011 -148.92599 -1.21581124309E13 4.40401 -148.92599 -2.03188605298E13 - 14.74805 -101.13281 -2.03188605298E13 - 9.69180 -101.13281 -2.84796086286E13 - 4.63555 -101.13281 -3.66403567275E13 - -0.42070 -101.13281 -4.48011048263E13 - -5.47695 -101.13281 -5.29618529251E13 - -10.53320 -101.13281 -6.1122601024E13 - -7.51695 -1.58076 -6.1122601024E13 - -7.67639 -1.55854 -7.20035984891E13 - -7.83288 -1.49187 -8.28845959542E13 - -7.98344 -1.38076 -9.37655934193E13 - -8.12511 -1.22520 -1.04646590884E14 - -8.25492 -1.02520 -1.1552758835E14 - 0.09204 44.80119 -1.1552758835E14 - 3.19281 45.04563 -1.26408585815E14 - 6.31135 45.33452 -1.3728958328E14 - 9.45064 45.66785 -1.48170580745E14 - 12.61363 46.04563 -1.5905157821E14 - 15.80328 46.46785 -1.69932575675E14 - 9.13804 -2.68406 -1.69932575675E14 - 8.91885 -2.21739 -1.8081357314E14 - 8.73225 -1.70628 -1.91694570605E14 - 8.58120 -1.15072 -2.0257556807E14 - 8.46867 -0.55072 -2.13456565536E14 - 8.39762 0.09372 -2.24337563001E14 - 21.80563 -102.79430 -2.24337563001E14 - 14.92165 -102.10541 -2.35218560466E14 - 8.08507 -101.37208 -2.46099557931E14 - 1.29887 -100.59430 -2.56980555396E14 - -5.43400 -99.77208 -2.67861552861E14 - -12.11057 -98.90541 -2.78742550326E14 - 0.97543 14.69429 -2.78742550326E14 - 2.09093 15.60540 -2.89623547791E14 - 3.26866 16.56096 -3.00504545256E14 - 4.51160 17.56227 -3.11385542722E14 - 5.82295 18.61478 -3.22266540187E14 - 7.20632 19.72264 -3.33147537652E14 - 31.35083 -175.11671 -3.33147537652E14 - 19.66081 -173.95351 -3.44028535117E14 - 8.05018 -172.73497 -3.54909532582E14 - -3.47736 -171.46108 -3.65790530047E14 - -14.91814 -170.13184 -3.76671527512E14 - -26.26845 -168.74727 -3.87552524977E14 - -8.41738 70.36336 -3.87552524977E14 - -3.58531 71.80328 -3.98433522442E14 - 1.34460 73.29855 -4.09314519908E14 - 6.37604 74.84916 -4.20195517373E14 - 11.51270 76.45511 -4.31076514838E14 - 16.75826 78.11641 -4.41957512303E14 - -1.02690 -29.10187 -4.41957512303E14 - -2.01795 -27.38523 -4.52838509768E14 - -2.89272 -25.61325 -4.63719507233E14 - -3.64751 -23.78592 -4.74600504698E14 - -4.27864 -21.90325 -4.85481502163E14 - -4.78241 -19.96523 -4.96362499629E14 - 23.24542 -144.40305 -4.96362499629E14 - 13.78651 -142.40969 -5.07243497094E14 - 4.46234 -140.36098 -5.18124494559E14 - -4.72341 -138.25693 -5.29005492024E14 - -13.76704 -136.09754 -5.39886489489E14 - -22.66487 -133.88280 -5.50767486954E14 - 32.77116 25.47546 -5.50767486954E14 - 34.65172 27.74554 -5.61648484419E14 - 36.68547 30.07097 -5.72529481884E14 - 38.87609 32.45174 -5.83410479349E14 - 41.22727 34.88785 -5.94291476815E14 - 43.74270 37.37931 -6.0517247428E14 - 65.45413 -145.02884 -6.0517247428E14 - 56.76420 -142.48204 -6.16053471745E14 - 48.24590 -139.87989 -6.2693446921E14 - 39.90293 -137.22240 -6.37815466675E14 - 31.73896 -134.50957 -6.4869646414E14 - 23.75770 -131.74139 -6.59577461605E14 - 73.92176 -118.04876 -6.59577461605E14 - 66.24992 -115.22524 -6.7045845907E14 - 58.76815 -112.34638 -6.81339456535E14 - 51.48016 -109.41217 -6.92220454001E14 - 44.38962 -106.42261 -7.03101451466E14 - 37.50023 -103.37772 -7.13982448931E14 - 83.51158 -6.19481 -7.13982448931E14 - 83.31743 -2.61918 -7.24863446396E14 - 83.36319 1.00248 -7.35744443861E14 - 83.65192 4.67018 -7.46625441326E14 - 84.18670 8.38390 -7.57506438791E14 - 84.97060 12.14365 -7.68387436256E14 - 60.86044 349.58919 -7.68387436256E14 - 85.19546 353.39497 -7.79268433721E14 - 109.78574 357.24678 -7.90149431187E14 - 134.63434 361.14463 -8.01030428652E14 - 159.74433 365.08850 -8.11911426117E14 - 185.11878 369.07840 -8.22792423582E14 - 170.50569 -64.05650 -8.22792423582E14 - 166.45456 -60.02056 -8.33673421047E14 - 162.67402 -55.93860 -8.44554418512E14 - 159.16715 -51.81061 -8.55435415977E14 - 155.93701 -47.63659 -8.66316413442E14 - 152.98668 -43.41654 -8.77197410908E14 - 303.21441 -235.41312 -8.77197410908E14 - 287.77029 -231.14704 -8.88078408373E14 - 272.61210 -226.83493 -8.98959405838E14 - 257.74293 -222.47679 -9.09840403303E14 - 243.16583 -218.07262 -9.20721400768E14 - 228.88388 -213.62242 -9.31602398233E14 - 297.95145 105.94120 -9.31602398233E14 - 306.07860 110.43743 -9.42483395698E14 - 314.50702 114.97969 -9.53364393163E14 - 323.23980 119.56797 -9.64245390628E14 - 332.28000 124.20229 -9.75126388094E14 - 341.63069 128.88264 -9.86007385559E14 - 437.58059 -23.31386 -9.86007385559E14 - 436.29374 -18.58748 -9.96888383024E14 - 435.32353 -13.81508 -1.00776938049E15 - 434.67300 -8.99664 -1.01865037795E15 - 434.34524 -4.13217 -1.02953137542E15 - 434.34332 0.77832 -1.04041237288E15 - 367.31039 -395.24308 -1.04041237288E15 - 329.50193 -388.51342 -1.05591779427E15 - 292.29897 -382.49569 -1.07142321566E15 - 255.63387 -377.18988 -1.08692863705E15 - 219.43902 -372.59599 -1.10243405844E15 - 183.64676 -368.71403 -1.11793947982E15 - 193.63371 -519.29714 -1.11793947982E15 - 143.85988 -516.12711 -1.13344490121E15 - 94.35338 -513.66900 -1.1489503226E15 - 45.04659 -511.92281 -1.16445574399E15 - -4.12813 -510.88855 -1.17996116537E15 - -53.23841 -510.56622 -1.19546658676E15 - -69.95605 -126.60121 -1.19546658676E15 - -81.09115 -126.99080 -1.21097200815E15 - -92.29708 -128.09231 -1.22647742954E15 - -103.64147 -129.90575 -1.24198285093E15 - -115.19195 -132.43112 -1.25748827231E15 - -127.01616 -135.66840 -1.2729936937E15 - -153.07121 149.31348 -1.2729936937E15 - -139.66172 145.36426 -1.28849911509E15 - -126.66122 140.70312 -1.30400453648E15 - -114.13735 135.33006 -1.31950995786E15 - -102.15773 129.24507 -1.33501537925E15 - -90.79001 122.44816 -1.35052080064E15 + 17.90820 -126.41406 -2.03188605298E13 + 11.58750 -126.41406 -2.84796086286E13 + 5.26680 -126.41406 -3.66403567275E13 + -1.05391 -126.41406 -4.48011048263E13 + -7.37461 -126.41406 -5.29618529251E13 + -13.69531 -126.41406 -6.1122601024E13 + -7.51890 -1.58857 -6.1122601024E13 + -7.67717 -1.56635 -7.20035984891E13 + -7.83249 -1.49968 -8.28845959542E13 + -7.98187 -1.38857 -9.37655934193E13 + -8.12237 -1.23302 -1.04646590884E14 + -8.25102 -1.03302 -1.1552758835E14 + 7.19946 2.11369 -1.1552758835E14 + 7.45687 2.35813 -1.26408585815E14 + 7.73206 2.64702 -1.3728958328E14 + 8.02798 2.98035 -1.48170580745E14 + 8.34761 3.35813 -1.5905157821E14 + 8.69391 3.78035 -1.69932575675E14 + 9.13560 -2.71531 -1.69932575675E14 + 8.91631 -2.24864 -1.8081357314E14 + 8.72961 -1.73753 -1.91694570605E14 + 8.57847 -1.18197 -2.0257556807E14 + 8.46584 -0.58197 -2.13456565536E14 + 8.39470 0.06247 -2.24337563001E14 + 21.81149 -102.76305 -2.24337563001E14 + 14.92555 -102.07416 -2.35218560466E14 + 8.08703 -101.34083 -2.46099557931E14 + 1.29887 -100.56305 -2.56980555396E14 + -5.43595 -99.74083 -2.67861552861E14 + -12.11448 -98.87416 -2.78742550326E14 + 15.20004 -70.64946 -2.78742550326E14 + 10.62609 -69.73835 -2.89623547791E14 + 6.11436 -68.78279 -3.00504545256E14 + 1.66785 -67.78148 -3.11385542722E14 + -2.71025 -66.72897 -3.22266540187E14 + -7.01633 -65.62111 -3.33147537652E14 + 17.13794 -89.78077 -3.33147537652E14 + 11.13503 -88.61757 -3.44028535117E14 + 5.21151 -87.39903 -3.54909532582E14 + -0.62893 -86.12514 -3.65790530047E14 + -6.38259 -84.79591 -3.76671527512E14 + -12.04580 -83.41133 -3.87552524977E14 + -22.66152 155.57430 -3.87552524977E14 + -12.13609 157.01422 -3.98433522442E14 + -1.51282 158.50949 -4.09314519908E14 + 9.21198 160.06010 -4.20195517373E14 + 20.04199 161.66605 -4.31076514838E14 + 30.98092 163.32735 -4.41957512303E14 + 13.18209 -114.51594 -4.41957512303E14 + 6.50627 -112.79930 -4.52838509768E14 + -0.05327 -111.02731 -4.63719507233E14 + -6.49283 -109.19998 -4.74600504698E14 + -12.80872 -107.31731 -4.85481502163E14 + -18.99725 -105.37929 -4.96362499629E14 + 9.01642 -59.19211 -4.96362499629E14 + 5.24804 -57.19875 -5.07243497094E14 + 1.61439 -55.15005 -5.18124494559E14 + -1.88083 -53.04600 -5.29005492024E14 + -5.23394 -50.88660 -5.39886489489E14 + -8.44124 -48.67187 -5.50767486954E14 + 46.99528 -59.93860 -5.50767486954E14 + 43.18200 -57.66852 -5.61648484419E14 + 39.52189 -55.34309 -5.72529481884E14 + 36.01867 -52.96232 -5.83410479349E14 + 32.67600 -50.52621 -5.94291476815E14 + 29.49759 -48.03475 -6.0517247428E14 + 22.78811 111.05710 -6.0517247428E14 + 31.16654 113.60390 -6.16053471745E14 + 39.71660 116.20605 -6.2693446921E14 + 48.44199 118.86354 -6.37815466675E14 + 57.34638 121.57637 -6.4869646414E14 + 66.43348 124.34455 -6.59577461605E14 + 31.25574 137.91999 -6.59577461605E14 + 40.64601 140.74351 -6.7045845907E14 + 50.22635 143.62237 -6.81339456535E14 + 60.00047 146.55658 -6.92220454001E14 + 69.97204 149.54614 -7.03101451466E14 + 80.14476 152.59103 -7.13982448931E14 + 97.75133 -91.47606 -7.13982448931E14 + 91.86958 -87.90043 -7.24863446396E14 + 86.22774 -84.27877 -7.35744443861E14 + 80.82887 -80.61107 -7.46625441326E14 + 75.67606 -76.89735 -7.57506438791E14 + 70.77236 -73.13760 -7.68387436256E14 + 75.10019 264.18294 -7.68387436256E14 + 93.74136 267.98872 -7.79268433721E14 + 112.63779 271.84053 -7.90149431187E14 + 131.79254 275.73838 -8.01030428652E14 + 151.20868 279.68225 -8.11911426117E14 + 170.88928 283.67215 -8.22792423582E14 + 184.71418 -149.72056 -8.22792423582E14 + 174.97545 -145.68463 -8.33673421047E14 + 165.50732 -141.60267 -8.44554418512E14 + 156.31285 -137.47468 -8.55435415977E14 + 147.39512 -133.30065 -8.66316413442E14 + 138.75719 -129.08060 -8.77197410908E14 + 317.42291 -320.56937 -8.77197410908E14 + 296.29119 -316.30329 -8.88078408373E14 + 275.44541 -311.99118 -8.98959405838E14 + 254.88863 -307.63304 -9.09840403303E14 + 234.62394 -303.22887 -9.20721400768E14 + 214.65439 -298.77867 -9.31602398233E14 + 312.19120 21.02714 -9.31602398233E14 + 314.63075 25.52336 -9.42483395698E14 + 317.37157 30.06562 -9.53364393163E14 + 320.41676 34.65391 -9.64245390628E14 + 323.76936 39.28823 -9.75126388094E14 + 327.43245 43.96858 -9.86007385559E14 + 394.94582 232.77208 -9.86007385559E14 + 410.71484 237.49845 -9.96888383024E14 + 426.80048 242.27086 -1.00776938049E15 + 443.20582 247.08930 -1.01865037795E15 + 459.93392 251.95377 -1.02953137542E15 + 476.98785 256.86426 -1.04041237288E15 + 377.29330 -437.25089 -1.04041237288E15 + 335.49196 -430.52123 -1.05591779427E15 + 294.29613 -424.50350 -1.07142321566E15 + 253.63817 -419.19769 -1.08692863705E15 + 213.45044 -414.60381 -1.10243405844E15 + 173.66532 -410.72185 -1.11793947982E15 + 203.61613 -561.37136 -1.11793947982E15 + 149.84972 -558.20133 -1.13344490121E15 + 96.35065 -555.74322 -1.1489503226E15 + 43.05128 -553.99703 -1.16445574399E15 + -10.11602 -552.96277 -1.17996116537E15 + -63.21888 -552.64044 -1.19546658676E15 + -59.98877 -168.60902 -1.19546658676E15 + -75.11049 -168.99861 -1.21097200815E15 + -90.30304 -170.10012 -1.22647742954E15 + -105.63405 -171.91356 -1.24198285093E15 + -121.17115 -174.43893 -1.25748827231E15 + -136.98198 -177.67622 -1.2729936937E15 + -143.12003 107.18066 -1.2729936937E15 + -133.68750 103.23145 -1.28849911509E15 + -124.66395 98.57031 -1.30400453648E15 + -116.11703 93.19725 -1.31950995786E15 + -108.11437 87.11226 -1.33501537925E15 + -100.72360 80.31535 -1.35052080064E15 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3043,7 +3172,7 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] -247.04596 105.44204 -206.63810 99.61043 99.64820 1 12 4 1.000 0 0 - 437.58059 -519.29714 -1.35052080064E15 100.00000 100.00000 2 12 4 1.000 0 1 + 476.98785 -561.37136 -1.35052080064E15 100.00000 100.00000 2 12 4 1.000 0 1 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shi index f640ea4e..a89b1d32 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -580,6 +580,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -589,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -612,7 +614,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -623,8 +625,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.120 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -635,25 +639,26 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -661,7 +666,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -670,7 +675,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -681,6 +686,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -688,26 +694,27 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] -LoadFactorPermUnfav=1.350 +LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.500 +LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -715,7 +722,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -735,6 +742,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -742,7 +750,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -762,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -777,26 +786,27 @@ LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 -ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.215 +ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=0.100 -MaterialFactorTgPhi=0.100 -MaterialFactorSubgradeReaction=0.100 +MaterialFactorCohesion=1.150 +MaterialFactorTgPhi=1.150 +MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.20 -GeometryDeltaPassivePhreaticLine=0.00 -GeometryDeltaActivePhreaticLine=0.00 -OverallStabilityFactorDrivingMoment=0.900 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.20 +GeometryDeltaActivePhreaticLine=0.05 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=1.000 +FactorRepValuesMDPmax=1.200 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] @@ -816,7 +826,8 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -843,33 +854,91 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 +OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -877,16 +946,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -897,6 +966,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -904,16 +974,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -924,6 +1050,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -931,7 +1058,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -940,7 +1067,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -951,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -958,7 +1086,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -967,7 +1095,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -978,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -985,7 +1114,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shd index 47cca2d4..10888081 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -581,6 +581,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -590,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -613,7 +615,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -624,8 +626,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.120 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -636,7 +640,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -655,6 +659,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -682,6 +687,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -709,6 +715,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -736,6 +743,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -763,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -790,6 +799,7 @@ MaterialFactorSubgradeReaction=0.100 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -817,6 +827,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -844,6 +855,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -854,7 +866,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -869,8 +937,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -880,8 +949,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -898,6 +967,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -907,7 +977,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -925,6 +1051,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1079,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -979,6 +1107,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1051,6 +1180,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1069,7 +1199,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 0.100 0.100 0.100 0.20 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.000 0.000 1.000 1.000 1.000 + -1 9 0.100 0.100 0.100 0.20 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2312,180 +2442,180 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -32.72631 37.80262 2.65307322929E14 - -28.41782 40.78519 2.54426325464E14 - -23.90384 43.96721 2.43545327999E14 - -19.17108 47.34869 2.32664330534E14 - -14.20623 50.92963 2.21783333069E14 - -8.99601 54.71003 2.10902335604E14 - -26.27139 -21.54998 2.10902335604E14 - -25.88728 -17.57012 2.00021338139E14 - -25.23119 -13.39081 1.89140340674E14 - -24.28983 -9.01204 1.78259343209E14 - -23.04991 -4.43381 1.67378345743E14 - -21.49813 0.34388 1.56497348278E14 - -25.74030 127.69898 1.56497348278E14 - -16.79658 132.67613 1.45616350813E14 - -7.51440 137.85273 1.34735353348E14 - 2.11953 143.22879 1.23854355883E14 - 12.11852 148.80431 1.12973358418E14 - 22.49586 154.57929 1.02092360953E14 - 17.33781 190.78287 1.02092360953E14 - 26.98882 195.24500 9.39316128539E13 - 36.86575 199.81932 8.57708647551E13 - 46.97419 204.50584 7.76101166562E13 - 57.31976 209.30455 6.94493685574E13 - 67.90808 214.21546 6.12886204586E13 - 57.42164 -63.40082 6.12886204586E13 - 54.37671 -58.37772 5.31278723597E13 - 51.58574 -53.24242 4.49671242609E13 - 49.05434 -47.99493 3.68063761621E13 - 46.78811 -42.63524 2.86456280632E13 - 44.79268 -37.16335 2.04848799644E13 - 42.53687 -163.08253 2.04848799644E13 - 34.52227 -157.49845 1.23241318656E13 - 26.78967 -151.80217 4.16338376672E12 - 19.29583 -148.92599 -3.99736433211E12 - 11.84992 -148.92599 -1.21581124309E13 + -32.72045 37.82606 2.65307322929E14 + -28.41391 40.80862 2.54426325464E14 + -23.90188 43.99065 2.43545327999E14 + -19.17108 47.37213 2.32664330534E14 + -14.20819 50.95307 2.21783333069E14 + -8.99992 54.73347 2.10902335604E14 + -26.26553 -21.58123 2.10902335604E14 + -25.88181 -17.60137 2.00021338139E14 + -25.22611 -13.42206 1.89140340674E14 + -24.28515 -9.04329 1.78259343209E14 + -23.04561 -4.46506 1.67378345743E14 + -21.49422 0.31263 1.56497348278E14 + -18.62506 85.04273 1.56497348278E14 + -12.52783 90.01988 1.45616350813E14 + -6.09213 95.19648 1.34735353348E14 + 0.69531 100.57254 1.23854355883E14 + 7.84782 106.14806 1.12973358418E14 + 15.37867 111.92304 1.02092360953E14 + 11.01750 241.34537 1.02092360953E14 + 23.19664 245.80750 9.39316128539E13 + 35.60168 250.38182 8.57708647551E13 + 48.23825 255.06834 7.76101166562E13 + 61.11195 259.86705 6.94493685574E13 + 74.22839 264.77796 6.12886204586E13 + 60.58277 -88.68988 6.12886204586E13 + 56.27319 -83.66678 5.31278723597E13 + 52.21757 -78.53148 4.49671242609E13 + 48.42152 -73.28399 3.68063761621E13 + 44.89065 -67.92430 2.86456280632E13 + 41.63057 -62.45242 2.04848799644E13 + 42.53784 -163.08253 2.04848799644E13 + 34.52305 -157.49845 1.23241318656E13 + 26.79026 -151.80217 4.16338376672E12 + 19.29622 -148.92599 -3.99736433211E12 + 11.85011 -148.92599 -1.21581124309E13 4.40401 -148.92599 -2.03188605298E13 - 14.74805 -101.13281 -2.03188605298E13 - 9.69180 -101.13281 -2.84796086286E13 - 4.63555 -101.13281 -3.66403567275E13 - -0.42070 -101.13281 -4.48011048263E13 - -5.47695 -101.13281 -5.29618529251E13 - -10.53320 -101.13281 -6.1122601024E13 - -7.51695 -1.58076 -6.1122601024E13 - -7.67639 -1.55854 -7.20035984891E13 - -7.83288 -1.49187 -8.28845959542E13 - -7.98344 -1.38076 -9.37655934193E13 - -8.12511 -1.22520 -1.04646590884E14 - -8.25492 -1.02520 -1.1552758835E14 - 0.09204 44.80119 -1.1552758835E14 - 3.19281 45.04563 -1.26408585815E14 - 6.31135 45.33452 -1.3728958328E14 - 9.45064 45.66785 -1.48170580745E14 - 12.61363 46.04563 -1.5905157821E14 - 15.80328 46.46785 -1.69932575675E14 - 9.13804 -2.68406 -1.69932575675E14 - 8.91885 -2.21739 -1.8081357314E14 - 8.73225 -1.70628 -1.91694570605E14 - 8.58120 -1.15072 -2.0257556807E14 - 8.46867 -0.55072 -2.13456565536E14 - 8.39762 0.09372 -2.24337563001E14 - 21.80563 -102.79430 -2.24337563001E14 - 14.92165 -102.10541 -2.35218560466E14 - 8.08507 -101.37208 -2.46099557931E14 - 1.29887 -100.59430 -2.56980555396E14 - -5.43400 -99.77208 -2.67861552861E14 - -12.11057 -98.90541 -2.78742550326E14 - 0.97543 14.69429 -2.78742550326E14 - 2.09093 15.60540 -2.89623547791E14 - 3.26866 16.56096 -3.00504545256E14 - 4.51160 17.56227 -3.11385542722E14 - 5.82295 18.61478 -3.22266540187E14 - 7.20632 19.72264 -3.33147537652E14 - 31.35083 -175.11671 -3.33147537652E14 - 19.66081 -173.95351 -3.44028535117E14 - 8.05018 -172.73497 -3.54909532582E14 - -3.47736 -171.46108 -3.65790530047E14 - -14.91814 -170.13184 -3.76671527512E14 - -26.26845 -168.74727 -3.87552524977E14 - -8.41738 70.36336 -3.87552524977E14 - -3.58531 71.80328 -3.98433522442E14 - 1.34460 73.29855 -4.09314519908E14 - 6.37604 74.84916 -4.20195517373E14 - 11.51270 76.45511 -4.31076514838E14 - 16.75826 78.11641 -4.41957512303E14 - -1.02690 -29.10187 -4.41957512303E14 - -2.01795 -27.38523 -4.52838509768E14 - -2.89272 -25.61325 -4.63719507233E14 - -3.64751 -23.78592 -4.74600504698E14 - -4.27864 -21.90325 -4.85481502163E14 - -4.78241 -19.96523 -4.96362499629E14 - 23.24542 -144.40305 -4.96362499629E14 - 13.78651 -142.40969 -5.07243497094E14 - 4.46234 -140.36098 -5.18124494559E14 - -4.72341 -138.25693 -5.29005492024E14 - -13.76704 -136.09754 -5.39886489489E14 - -22.66487 -133.88280 -5.50767486954E14 - 32.77116 25.47546 -5.50767486954E14 - 34.65172 27.74554 -5.61648484419E14 - 36.68547 30.07097 -5.72529481884E14 - 38.87609 32.45174 -5.83410479349E14 - 41.22727 34.88785 -5.94291476815E14 - 43.74270 37.37931 -6.0517247428E14 - 65.45413 -145.02884 -6.0517247428E14 - 56.76420 -142.48204 -6.16053471745E14 - 48.24590 -139.87989 -6.2693446921E14 - 39.90293 -137.22240 -6.37815466675E14 - 31.73896 -134.50957 -6.4869646414E14 - 23.75770 -131.74139 -6.59577461605E14 - 73.92176 -118.04876 -6.59577461605E14 - 66.24992 -115.22524 -6.7045845907E14 - 58.76815 -112.34638 -6.81339456535E14 - 51.48016 -109.41217 -6.92220454001E14 - 44.38962 -106.42261 -7.03101451466E14 - 37.50023 -103.37772 -7.13982448931E14 - 83.51158 -6.19481 -7.13982448931E14 - 83.31743 -2.61918 -7.24863446396E14 - 83.36319 1.00248 -7.35744443861E14 - 83.65192 4.67018 -7.46625441326E14 - 84.18670 8.38390 -7.57506438791E14 - 84.97060 12.14365 -7.68387436256E14 - 60.86044 349.58919 -7.68387436256E14 - 85.19546 353.39497 -7.79268433721E14 - 109.78574 357.24678 -7.90149431187E14 - 134.63434 361.14463 -8.01030428652E14 - 159.74433 365.08850 -8.11911426117E14 - 185.11878 369.07840 -8.22792423582E14 - 170.50569 -64.05650 -8.22792423582E14 - 166.45456 -60.02056 -8.33673421047E14 - 162.67402 -55.93860 -8.44554418512E14 - 159.16715 -51.81061 -8.55435415977E14 - 155.93701 -47.63659 -8.66316413442E14 - 152.98668 -43.41654 -8.77197410908E14 - 303.21441 -235.41312 -8.77197410908E14 - 287.77029 -231.14704 -8.88078408373E14 - 272.61210 -226.83493 -8.98959405838E14 - 257.74293 -222.47679 -9.09840403303E14 - 243.16583 -218.07262 -9.20721400768E14 - 228.88388 -213.62242 -9.31602398233E14 - 297.95145 105.94120 -9.31602398233E14 - 306.07860 110.43743 -9.42483395698E14 - 314.50702 114.97969 -9.53364393163E14 - 323.23980 119.56797 -9.64245390628E14 - 332.28000 124.20229 -9.75126388094E14 - 341.63069 128.88264 -9.86007385559E14 - 437.58059 -23.31386 -9.86007385559E14 - 436.29374 -18.58748 -9.96888383024E14 - 435.32353 -13.81508 -1.00776938049E15 - 434.67300 -8.99664 -1.01865037795E15 - 434.34524 -4.13217 -1.02953137542E15 - 434.34332 0.77832 -1.04041237288E15 - 367.31039 -395.24308 -1.04041237288E15 - 329.50193 -388.51342 -1.05591779427E15 - 292.29897 -382.49569 -1.07142321566E15 - 255.63387 -377.18988 -1.08692863705E15 - 219.43902 -372.59599 -1.10243405844E15 - 183.64676 -368.71403 -1.11793947982E15 - 193.63371 -519.29714 -1.11793947982E15 - 143.85988 -516.12711 -1.13344490121E15 - 94.35338 -513.66900 -1.1489503226E15 - 45.04659 -511.92281 -1.16445574399E15 - -4.12813 -510.88855 -1.17996116537E15 - -53.23841 -510.56622 -1.19546658676E15 - -69.95605 -126.60121 -1.19546658676E15 - -81.09115 -126.99080 -1.21097200815E15 - -92.29708 -128.09231 -1.22647742954E15 - -103.64147 -129.90575 -1.24198285093E15 - -115.19195 -132.43112 -1.25748827231E15 - -127.01616 -135.66840 -1.2729936937E15 - -153.07121 149.31348 -1.2729936937E15 - -139.66172 145.36426 -1.28849911509E15 - -126.66122 140.70312 -1.30400453648E15 - -114.13735 135.33006 -1.31950995786E15 - -102.15773 129.24507 -1.33501537925E15 - -90.79001 122.44816 -1.35052080064E15 + 17.90820 -126.41406 -2.03188605298E13 + 11.58750 -126.41406 -2.84796086286E13 + 5.26680 -126.41406 -3.66403567275E13 + -1.05391 -126.41406 -4.48011048263E13 + -7.37461 -126.41406 -5.29618529251E13 + -13.69531 -126.41406 -6.1122601024E13 + -7.51890 -1.58857 -6.1122601024E13 + -7.67717 -1.56635 -7.20035984891E13 + -7.83249 -1.49968 -8.28845959542E13 + -7.98187 -1.38857 -9.37655934193E13 + -8.12237 -1.23302 -1.04646590884E14 + -8.25102 -1.03302 -1.1552758835E14 + 7.19946 2.11369 -1.1552758835E14 + 7.45687 2.35813 -1.26408585815E14 + 7.73206 2.64702 -1.3728958328E14 + 8.02798 2.98035 -1.48170580745E14 + 8.34761 3.35813 -1.5905157821E14 + 8.69391 3.78035 -1.69932575675E14 + 9.13560 -2.71531 -1.69932575675E14 + 8.91631 -2.24864 -1.8081357314E14 + 8.72961 -1.73753 -1.91694570605E14 + 8.57847 -1.18197 -2.0257556807E14 + 8.46584 -0.58197 -2.13456565536E14 + 8.39470 0.06247 -2.24337563001E14 + 21.81149 -102.76305 -2.24337563001E14 + 14.92555 -102.07416 -2.35218560466E14 + 8.08703 -101.34083 -2.46099557931E14 + 1.29887 -100.56305 -2.56980555396E14 + -5.43595 -99.74083 -2.67861552861E14 + -12.11448 -98.87416 -2.78742550326E14 + 15.20004 -70.64946 -2.78742550326E14 + 10.62609 -69.73835 -2.89623547791E14 + 6.11436 -68.78279 -3.00504545256E14 + 1.66785 -67.78148 -3.11385542722E14 + -2.71025 -66.72897 -3.22266540187E14 + -7.01633 -65.62111 -3.33147537652E14 + 17.13794 -89.78077 -3.33147537652E14 + 11.13503 -88.61757 -3.44028535117E14 + 5.21151 -87.39903 -3.54909532582E14 + -0.62893 -86.12514 -3.65790530047E14 + -6.38259 -84.79591 -3.76671527512E14 + -12.04580 -83.41133 -3.87552524977E14 + -22.66152 155.57430 -3.87552524977E14 + -12.13609 157.01422 -3.98433522442E14 + -1.51282 158.50949 -4.09314519908E14 + 9.21198 160.06010 -4.20195517373E14 + 20.04199 161.66605 -4.31076514838E14 + 30.98092 163.32735 -4.41957512303E14 + 13.18209 -114.51594 -4.41957512303E14 + 6.50627 -112.79930 -4.52838509768E14 + -0.05327 -111.02731 -4.63719507233E14 + -6.49283 -109.19998 -4.74600504698E14 + -12.80872 -107.31731 -4.85481502163E14 + -18.99725 -105.37929 -4.96362499629E14 + 9.01642 -59.19211 -4.96362499629E14 + 5.24804 -57.19875 -5.07243497094E14 + 1.61439 -55.15005 -5.18124494559E14 + -1.88083 -53.04600 -5.29005492024E14 + -5.23394 -50.88660 -5.39886489489E14 + -8.44124 -48.67187 -5.50767486954E14 + 46.99528 -59.93860 -5.50767486954E14 + 43.18200 -57.66852 -5.61648484419E14 + 39.52189 -55.34309 -5.72529481884E14 + 36.01867 -52.96232 -5.83410479349E14 + 32.67600 -50.52621 -5.94291476815E14 + 29.49759 -48.03475 -6.0517247428E14 + 22.78811 111.05710 -6.0517247428E14 + 31.16654 113.60390 -6.16053471745E14 + 39.71660 116.20605 -6.2693446921E14 + 48.44199 118.86354 -6.37815466675E14 + 57.34638 121.57637 -6.4869646414E14 + 66.43348 124.34455 -6.59577461605E14 + 31.25574 137.91999 -6.59577461605E14 + 40.64601 140.74351 -6.7045845907E14 + 50.22635 143.62237 -6.81339456535E14 + 60.00047 146.55658 -6.92220454001E14 + 69.97204 149.54614 -7.03101451466E14 + 80.14476 152.59103 -7.13982448931E14 + 97.75133 -91.47606 -7.13982448931E14 + 91.86958 -87.90043 -7.24863446396E14 + 86.22774 -84.27877 -7.35744443861E14 + 80.82887 -80.61107 -7.46625441326E14 + 75.67606 -76.89735 -7.57506438791E14 + 70.77236 -73.13760 -7.68387436256E14 + 75.10019 264.18294 -7.68387436256E14 + 93.74136 267.98872 -7.79268433721E14 + 112.63779 271.84053 -7.90149431187E14 + 131.79254 275.73838 -8.01030428652E14 + 151.20868 279.68225 -8.11911426117E14 + 170.88928 283.67215 -8.22792423582E14 + 184.71418 -149.72056 -8.22792423582E14 + 174.97545 -145.68463 -8.33673421047E14 + 165.50732 -141.60267 -8.44554418512E14 + 156.31285 -137.47468 -8.55435415977E14 + 147.39512 -133.30065 -8.66316413442E14 + 138.75719 -129.08060 -8.77197410908E14 + 317.42291 -320.56937 -8.77197410908E14 + 296.29119 -316.30329 -8.88078408373E14 + 275.44541 -311.99118 -8.98959405838E14 + 254.88863 -307.63304 -9.09840403303E14 + 234.62394 -303.22887 -9.20721400768E14 + 214.65439 -298.77867 -9.31602398233E14 + 312.19120 21.02714 -9.31602398233E14 + 314.63075 25.52336 -9.42483395698E14 + 317.37157 30.06562 -9.53364393163E14 + 320.41676 34.65391 -9.64245390628E14 + 323.76936 39.28823 -9.75126388094E14 + 327.43245 43.96858 -9.86007385559E14 + 394.94582 232.77208 -9.86007385559E14 + 410.71484 237.49845 -9.96888383024E14 + 426.80048 242.27086 -1.00776938049E15 + 443.20582 247.08930 -1.01865037795E15 + 459.93392 251.95377 -1.02953137542E15 + 476.98785 256.86426 -1.04041237288E15 + 377.29330 -437.25089 -1.04041237288E15 + 335.49196 -430.52123 -1.05591779427E15 + 294.29613 -424.50350 -1.07142321566E15 + 253.63817 -419.19769 -1.08692863705E15 + 213.45044 -414.60381 -1.10243405844E15 + 173.66532 -410.72185 -1.11793947982E15 + 203.61613 -561.37136 -1.11793947982E15 + 149.84972 -558.20133 -1.13344490121E15 + 96.35065 -555.74322 -1.1489503226E15 + 43.05128 -553.99703 -1.16445574399E15 + -10.11602 -552.96277 -1.17996116537E15 + -63.21888 -552.64044 -1.19546658676E15 + -59.98877 -168.60902 -1.19546658676E15 + -75.11049 -168.99861 -1.21097200815E15 + -90.30304 -170.10012 -1.22647742954E15 + -105.63405 -171.91356 -1.24198285093E15 + -121.17115 -174.43893 -1.25748827231E15 + -136.98198 -177.67622 -1.2729936937E15 + -143.12003 107.18066 -1.2729936937E15 + -133.68750 103.23145 -1.28849911509E15 + -124.66395 98.57031 -1.30400453648E15 + -116.11703 93.19725 -1.31950995786E15 + -108.11437 87.11226 -1.33501537925E15 + -100.72360 80.31535 -1.35052080064E15 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4300,180 +4430,180 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -32.72631 37.80262 2.65307322929E14 - -28.41782 40.78519 2.54426325464E14 - -23.90384 43.96721 2.43545327999E14 - -19.17108 47.34869 2.32664330534E14 - -14.20623 50.92963 2.21783333069E14 - -8.99601 54.71003 2.10902335604E14 - -26.27139 -21.54998 2.10902335604E14 - -25.88728 -17.57012 2.00021338139E14 - -25.23119 -13.39081 1.89140340674E14 - -24.28983 -9.01204 1.78259343209E14 - -23.04991 -4.43381 1.67378345743E14 - -21.49813 0.34388 1.56497348278E14 - -25.74030 127.69898 1.56497348278E14 - -16.79658 132.67613 1.45616350813E14 - -7.51440 137.85273 1.34735353348E14 - 2.11953 143.22879 1.23854355883E14 - 12.11852 148.80431 1.12973358418E14 - 22.49586 154.57929 1.02092360953E14 - 17.33781 190.78287 1.02092360953E14 - 26.98882 195.24500 9.39316128539E13 - 36.86575 199.81932 8.57708647551E13 - 46.97419 204.50584 7.76101166562E13 - 57.31976 209.30455 6.94493685574E13 - 67.90808 214.21546 6.12886204586E13 - 57.42164 -63.40082 6.12886204586E13 - 54.37671 -58.37772 5.31278723597E13 - 51.58574 -53.24242 4.49671242609E13 - 49.05434 -47.99493 3.68063761621E13 - 46.78811 -42.63524 2.86456280632E13 - 44.79268 -37.16335 2.04848799644E13 - 42.53687 -163.08253 2.04848799644E13 - 34.52227 -157.49845 1.23241318656E13 - 26.78967 -151.80217 4.16338376672E12 - 19.29583 -148.92599 -3.99736433211E12 - 11.84992 -148.92599 -1.21581124309E13 + -32.72045 37.82606 2.65307322929E14 + -28.41391 40.80862 2.54426325464E14 + -23.90188 43.99065 2.43545327999E14 + -19.17108 47.37213 2.32664330534E14 + -14.20819 50.95307 2.21783333069E14 + -8.99992 54.73347 2.10902335604E14 + -26.26553 -21.58123 2.10902335604E14 + -25.88181 -17.60137 2.00021338139E14 + -25.22611 -13.42206 1.89140340674E14 + -24.28515 -9.04329 1.78259343209E14 + -23.04561 -4.46506 1.67378345743E14 + -21.49422 0.31263 1.56497348278E14 + -18.62506 85.04273 1.56497348278E14 + -12.52783 90.01988 1.45616350813E14 + -6.09213 95.19648 1.34735353348E14 + 0.69531 100.57254 1.23854355883E14 + 7.84782 106.14806 1.12973358418E14 + 15.37867 111.92304 1.02092360953E14 + 11.01750 241.34537 1.02092360953E14 + 23.19664 245.80750 9.39316128539E13 + 35.60168 250.38182 8.57708647551E13 + 48.23825 255.06834 7.76101166562E13 + 61.11195 259.86705 6.94493685574E13 + 74.22839 264.77796 6.12886204586E13 + 60.58277 -88.68988 6.12886204586E13 + 56.27319 -83.66678 5.31278723597E13 + 52.21757 -78.53148 4.49671242609E13 + 48.42152 -73.28399 3.68063761621E13 + 44.89065 -67.92430 2.86456280632E13 + 41.63057 -62.45242 2.04848799644E13 + 42.53784 -163.08253 2.04848799644E13 + 34.52305 -157.49845 1.23241318656E13 + 26.79026 -151.80217 4.16338376672E12 + 19.29622 -148.92599 -3.99736433211E12 + 11.85011 -148.92599 -1.21581124309E13 4.40401 -148.92599 -2.03188605298E13 - 14.74805 -101.13281 -2.03188605298E13 - 9.69180 -101.13281 -2.84796086286E13 - 4.63555 -101.13281 -3.66403567275E13 - -0.42070 -101.13281 -4.48011048263E13 - -5.47695 -101.13281 -5.29618529251E13 - -10.53320 -101.13281 -6.1122601024E13 - -7.51695 -1.58076 -6.1122601024E13 - -7.67639 -1.55854 -7.20035984891E13 - -7.83288 -1.49187 -8.28845959542E13 - -7.98344 -1.38076 -9.37655934193E13 - -8.12511 -1.22520 -1.04646590884E14 - -8.25492 -1.02520 -1.1552758835E14 - 0.09204 44.80119 -1.1552758835E14 - 3.19281 45.04563 -1.26408585815E14 - 6.31135 45.33452 -1.3728958328E14 - 9.45064 45.66785 -1.48170580745E14 - 12.61363 46.04563 -1.5905157821E14 - 15.80328 46.46785 -1.69932575675E14 - 9.13804 -2.68406 -1.69932575675E14 - 8.91885 -2.21739 -1.8081357314E14 - 8.73225 -1.70628 -1.91694570605E14 - 8.58120 -1.15072 -2.0257556807E14 - 8.46867 -0.55072 -2.13456565536E14 - 8.39762 0.09372 -2.24337563001E14 - 21.80563 -102.79430 -2.24337563001E14 - 14.92165 -102.10541 -2.35218560466E14 - 8.08507 -101.37208 -2.46099557931E14 - 1.29887 -100.59430 -2.56980555396E14 - -5.43400 -99.77208 -2.67861552861E14 - -12.11057 -98.90541 -2.78742550326E14 - 0.97543 14.69429 -2.78742550326E14 - 2.09093 15.60540 -2.89623547791E14 - 3.26866 16.56096 -3.00504545256E14 - 4.51160 17.56227 -3.11385542722E14 - 5.82295 18.61478 -3.22266540187E14 - 7.20632 19.72264 -3.33147537652E14 - 31.35083 -175.11671 -3.33147537652E14 - 19.66081 -173.95351 -3.44028535117E14 - 8.05018 -172.73497 -3.54909532582E14 - -3.47736 -171.46108 -3.65790530047E14 - -14.91814 -170.13184 -3.76671527512E14 - -26.26845 -168.74727 -3.87552524977E14 - -8.41738 70.36336 -3.87552524977E14 - -3.58531 71.80328 -3.98433522442E14 - 1.34460 73.29855 -4.09314519908E14 - 6.37604 74.84916 -4.20195517373E14 - 11.51270 76.45511 -4.31076514838E14 - 16.75826 78.11641 -4.41957512303E14 - -1.02690 -29.10187 -4.41957512303E14 - -2.01795 -27.38523 -4.52838509768E14 - -2.89272 -25.61325 -4.63719507233E14 - -3.64751 -23.78592 -4.74600504698E14 - -4.27864 -21.90325 -4.85481502163E14 - -4.78241 -19.96523 -4.96362499629E14 - 23.24542 -144.40305 -4.96362499629E14 - 13.78651 -142.40969 -5.07243497094E14 - 4.46234 -140.36098 -5.18124494559E14 - -4.72341 -138.25693 -5.29005492024E14 - -13.76704 -136.09754 -5.39886489489E14 - -22.66487 -133.88280 -5.50767486954E14 - 32.77116 25.47546 -5.50767486954E14 - 34.65172 27.74554 -5.61648484419E14 - 36.68547 30.07097 -5.72529481884E14 - 38.87609 32.45174 -5.83410479349E14 - 41.22727 34.88785 -5.94291476815E14 - 43.74270 37.37931 -6.0517247428E14 - 65.45413 -145.02884 -6.0517247428E14 - 56.76420 -142.48204 -6.16053471745E14 - 48.24590 -139.87989 -6.2693446921E14 - 39.90293 -137.22240 -6.37815466675E14 - 31.73896 -134.50957 -6.4869646414E14 - 23.75770 -131.74139 -6.59577461605E14 - 73.92176 -118.04876 -6.59577461605E14 - 66.24992 -115.22524 -6.7045845907E14 - 58.76815 -112.34638 -6.81339456535E14 - 51.48016 -109.41217 -6.92220454001E14 - 44.38962 -106.42261 -7.03101451466E14 - 37.50023 -103.37772 -7.13982448931E14 - 83.51158 -6.19481 -7.13982448931E14 - 83.31743 -2.61918 -7.24863446396E14 - 83.36319 1.00248 -7.35744443861E14 - 83.65192 4.67018 -7.46625441326E14 - 84.18670 8.38390 -7.57506438791E14 - 84.97060 12.14365 -7.68387436256E14 - 60.86044 349.58919 -7.68387436256E14 - 85.19546 353.39497 -7.79268433721E14 - 109.78574 357.24678 -7.90149431187E14 - 134.63434 361.14463 -8.01030428652E14 - 159.74433 365.08850 -8.11911426117E14 - 185.11878 369.07840 -8.22792423582E14 - 170.50569 -64.05650 -8.22792423582E14 - 166.45456 -60.02056 -8.33673421047E14 - 162.67402 -55.93860 -8.44554418512E14 - 159.16715 -51.81061 -8.55435415977E14 - 155.93701 -47.63659 -8.66316413442E14 - 152.98668 -43.41654 -8.77197410908E14 - 303.21441 -235.41312 -8.77197410908E14 - 287.77029 -231.14704 -8.88078408373E14 - 272.61210 -226.83493 -8.98959405838E14 - 257.74293 -222.47679 -9.09840403303E14 - 243.16583 -218.07262 -9.20721400768E14 - 228.88388 -213.62242 -9.31602398233E14 - 297.95145 105.94120 -9.31602398233E14 - 306.07860 110.43743 -9.42483395698E14 - 314.50702 114.97969 -9.53364393163E14 - 323.23980 119.56797 -9.64245390628E14 - 332.28000 124.20229 -9.75126388094E14 - 341.63069 128.88264 -9.86007385559E14 - 437.58059 -23.31386 -9.86007385559E14 - 436.29374 -18.58748 -9.96888383024E14 - 435.32353 -13.81508 -1.00776938049E15 - 434.67300 -8.99664 -1.01865037795E15 - 434.34524 -4.13217 -1.02953137542E15 - 434.34332 0.77832 -1.04041237288E15 - 367.31039 -395.24308 -1.04041237288E15 - 329.50193 -388.51342 -1.05591779427E15 - 292.29897 -382.49569 -1.07142321566E15 - 255.63387 -377.18988 -1.08692863705E15 - 219.43902 -372.59599 -1.10243405844E15 - 183.64676 -368.71403 -1.11793947982E15 - 193.63371 -519.29714 -1.11793947982E15 - 143.85988 -516.12711 -1.13344490121E15 - 94.35338 -513.66900 -1.1489503226E15 - 45.04659 -511.92281 -1.16445574399E15 - -4.12813 -510.88855 -1.17996116537E15 - -53.23841 -510.56622 -1.19546658676E15 - -69.95605 -126.60121 -1.19546658676E15 - -81.09115 -126.99080 -1.21097200815E15 - -92.29708 -128.09231 -1.22647742954E15 - -103.64147 -129.90575 -1.24198285093E15 - -115.19195 -132.43112 -1.25748827231E15 - -127.01616 -135.66840 -1.2729936937E15 - -153.07121 149.31348 -1.2729936937E15 - -139.66172 145.36426 -1.28849911509E15 - -126.66122 140.70312 -1.30400453648E15 - -114.13735 135.33006 -1.31950995786E15 - -102.15773 129.24507 -1.33501537925E15 - -90.79001 122.44816 -1.35052080064E15 + 17.90820 -126.41406 -2.03188605298E13 + 11.58750 -126.41406 -2.84796086286E13 + 5.26680 -126.41406 -3.66403567275E13 + -1.05391 -126.41406 -4.48011048263E13 + -7.37461 -126.41406 -5.29618529251E13 + -13.69531 -126.41406 -6.1122601024E13 + -7.51890 -1.58857 -6.1122601024E13 + -7.67717 -1.56635 -7.20035984891E13 + -7.83249 -1.49968 -8.28845959542E13 + -7.98187 -1.38857 -9.37655934193E13 + -8.12237 -1.23302 -1.04646590884E14 + -8.25102 -1.03302 -1.1552758835E14 + 7.19946 2.11369 -1.1552758835E14 + 7.45687 2.35813 -1.26408585815E14 + 7.73206 2.64702 -1.3728958328E14 + 8.02798 2.98035 -1.48170580745E14 + 8.34761 3.35813 -1.5905157821E14 + 8.69391 3.78035 -1.69932575675E14 + 9.13560 -2.71531 -1.69932575675E14 + 8.91631 -2.24864 -1.8081357314E14 + 8.72961 -1.73753 -1.91694570605E14 + 8.57847 -1.18197 -2.0257556807E14 + 8.46584 -0.58197 -2.13456565536E14 + 8.39470 0.06247 -2.24337563001E14 + 21.81149 -102.76305 -2.24337563001E14 + 14.92555 -102.07416 -2.35218560466E14 + 8.08703 -101.34083 -2.46099557931E14 + 1.29887 -100.56305 -2.56980555396E14 + -5.43595 -99.74083 -2.67861552861E14 + -12.11448 -98.87416 -2.78742550326E14 + 15.20004 -70.64946 -2.78742550326E14 + 10.62609 -69.73835 -2.89623547791E14 + 6.11436 -68.78279 -3.00504545256E14 + 1.66785 -67.78148 -3.11385542722E14 + -2.71025 -66.72897 -3.22266540187E14 + -7.01633 -65.62111 -3.33147537652E14 + 17.13794 -89.78077 -3.33147537652E14 + 11.13503 -88.61757 -3.44028535117E14 + 5.21151 -87.39903 -3.54909532582E14 + -0.62893 -86.12514 -3.65790530047E14 + -6.38259 -84.79591 -3.76671527512E14 + -12.04580 -83.41133 -3.87552524977E14 + -22.66152 155.57430 -3.87552524977E14 + -12.13609 157.01422 -3.98433522442E14 + -1.51282 158.50949 -4.09314519908E14 + 9.21198 160.06010 -4.20195517373E14 + 20.04199 161.66605 -4.31076514838E14 + 30.98092 163.32735 -4.41957512303E14 + 13.18209 -114.51594 -4.41957512303E14 + 6.50627 -112.79930 -4.52838509768E14 + -0.05327 -111.02731 -4.63719507233E14 + -6.49283 -109.19998 -4.74600504698E14 + -12.80872 -107.31731 -4.85481502163E14 + -18.99725 -105.37929 -4.96362499629E14 + 9.01642 -59.19211 -4.96362499629E14 + 5.24804 -57.19875 -5.07243497094E14 + 1.61439 -55.15005 -5.18124494559E14 + -1.88083 -53.04600 -5.29005492024E14 + -5.23394 -50.88660 -5.39886489489E14 + -8.44124 -48.67187 -5.50767486954E14 + 46.99528 -59.93860 -5.50767486954E14 + 43.18200 -57.66852 -5.61648484419E14 + 39.52189 -55.34309 -5.72529481884E14 + 36.01867 -52.96232 -5.83410479349E14 + 32.67600 -50.52621 -5.94291476815E14 + 29.49759 -48.03475 -6.0517247428E14 + 22.78811 111.05710 -6.0517247428E14 + 31.16654 113.60390 -6.16053471745E14 + 39.71660 116.20605 -6.2693446921E14 + 48.44199 118.86354 -6.37815466675E14 + 57.34638 121.57637 -6.4869646414E14 + 66.43348 124.34455 -6.59577461605E14 + 31.25574 137.91999 -6.59577461605E14 + 40.64601 140.74351 -6.7045845907E14 + 50.22635 143.62237 -6.81339456535E14 + 60.00047 146.55658 -6.92220454001E14 + 69.97204 149.54614 -7.03101451466E14 + 80.14476 152.59103 -7.13982448931E14 + 97.75133 -91.47606 -7.13982448931E14 + 91.86958 -87.90043 -7.24863446396E14 + 86.22774 -84.27877 -7.35744443861E14 + 80.82887 -80.61107 -7.46625441326E14 + 75.67606 -76.89735 -7.57506438791E14 + 70.77236 -73.13760 -7.68387436256E14 + 75.10019 264.18294 -7.68387436256E14 + 93.74136 267.98872 -7.79268433721E14 + 112.63779 271.84053 -7.90149431187E14 + 131.79254 275.73838 -8.01030428652E14 + 151.20868 279.68225 -8.11911426117E14 + 170.88928 283.67215 -8.22792423582E14 + 184.71418 -149.72056 -8.22792423582E14 + 174.97545 -145.68463 -8.33673421047E14 + 165.50732 -141.60267 -8.44554418512E14 + 156.31285 -137.47468 -8.55435415977E14 + 147.39512 -133.30065 -8.66316413442E14 + 138.75719 -129.08060 -8.77197410908E14 + 317.42291 -320.56937 -8.77197410908E14 + 296.29119 -316.30329 -8.88078408373E14 + 275.44541 -311.99118 -8.98959405838E14 + 254.88863 -307.63304 -9.09840403303E14 + 234.62394 -303.22887 -9.20721400768E14 + 214.65439 -298.77867 -9.31602398233E14 + 312.19120 21.02714 -9.31602398233E14 + 314.63075 25.52336 -9.42483395698E14 + 317.37157 30.06562 -9.53364393163E14 + 320.41676 34.65391 -9.64245390628E14 + 323.76936 39.28823 -9.75126388094E14 + 327.43245 43.96858 -9.86007385559E14 + 394.94582 232.77208 -9.86007385559E14 + 410.71484 237.49845 -9.96888383024E14 + 426.80048 242.27086 -1.00776938049E15 + 443.20582 247.08930 -1.01865037795E15 + 459.93392 251.95377 -1.02953137542E15 + 476.98785 256.86426 -1.04041237288E15 + 377.29330 -437.25089 -1.04041237288E15 + 335.49196 -430.52123 -1.05591779427E15 + 294.29613 -424.50350 -1.07142321566E15 + 253.63817 -419.19769 -1.08692863705E15 + 213.45044 -414.60381 -1.10243405844E15 + 173.66532 -410.72185 -1.11793947982E15 + 203.61613 -561.37136 -1.11793947982E15 + 149.84972 -558.20133 -1.13344490121E15 + 96.35065 -555.74322 -1.1489503226E15 + 43.05128 -553.99703 -1.16445574399E15 + -10.11602 -552.96277 -1.17996116537E15 + -63.21888 -552.64044 -1.19546658676E15 + -59.98877 -168.60902 -1.19546658676E15 + -75.11049 -168.99861 -1.21097200815E15 + -90.30304 -170.10012 -1.22647742954E15 + -105.63405 -171.91356 -1.24198285093E15 + -121.17115 -174.43893 -1.25748827231E15 + -136.98198 -177.67622 -1.2729936937E15 + -143.12003 107.18066 -1.2729936937E15 + -133.68750 103.23145 -1.28849911509E15 + -124.66395 98.57031 -1.30400453648E15 + -116.11703 93.19725 -1.31950995786E15 + -108.11437 87.11226 -1.33501537925E15 + -100.72360 80.31535 -1.35052080064E15 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5292,151 +5422,151 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 -0.00007 -111577642.58000 + 0.00001 -0.00007 -111577642.58000 0.00000 -0.00007 -110645197.24700 0.00000 -0.00007 -109712751.91300 -0.00001 -0.00007 -108780306.58000 -0.00001 -0.00007 -107847861.24700 -0.00002 -0.00007 -106915415.91300 - -0.00001 -0.00049 -106915415.91300 - -0.00004 -0.00049 -105982970.58000 - -0.00008 -0.00049 -105050525.24700 - -0.00011 -0.00049 -104118079.91300 - -0.00014 -0.00049 -103185634.58000 - -0.00018 -0.00049 -102253189.24700 + -0.00002 -0.00045 -106915415.91300 + -0.00005 -0.00045 -105982970.58000 + -0.00008 -0.00045 -105050525.24700 + -0.00011 -0.00045 -104118079.91300 + -0.00014 -0.00045 -103185634.58000 + -0.00017 -0.00045 -102253189.24700 -0.00016 -0.00088 -102253189.24700 -0.00022 -0.00088 -101320743.91300 -0.00028 -0.00088 -100388298.58000 -0.00034 -0.00088 -99455853.24640 -0.00040 -0.00088 -98523407.91310 -0.00046 -0.00088 -97590962.57970 - -0.00046 -0.00076 -97590962.57970 - -0.00050 -0.00076 -96891628.57970 - -0.00054 -0.00076 -96192294.57960 - -0.00057 -0.00076 -95492960.57960 - -0.00061 -0.00076 -94793626.57960 - -0.00065 -0.00076 -94094292.57960 + -0.00046 -0.00077 -97590962.57970 + -0.00050 -0.00077 -96891628.57970 + -0.00054 -0.00077 -96192294.57960 + -0.00057 -0.00077 -95492960.57960 + -0.00061 -0.00077 -94793626.57960 + -0.00065 -0.00077 -94094292.57960 -0.00066 -0.00039 -94094292.57960 -0.00068 -0.00039 -93394958.57960 -0.00070 -0.00039 -92695624.57950 -0.00072 -0.00039 -91996290.57950 -0.00074 -0.00039 -91296956.57950 -0.00076 -0.00039 -90597622.57950 - -0.00077 -149.42928 -90597622.57950 - -7.47223 -149.42928 -89898288.57910 - -14.94369 -149.42928 -89198954.57650 - -22.41516 -149.42928 -88499620.56960 - -29.88662 -149.42928 -87800286.55630 - -37.35809 -149.42928 -87100952.53420 - -37.35810 -149.42892 -87100952.53420 - -44.82954 -149.42892 -86401618.50140 - -52.30099 -149.42892 -85702284.45550 - -59.77243 -149.42892 -85002950.39450 - -67.24388 -149.42892 -84303616.31620 - -74.71533 -149.42892 -83604282.21840 - -74.71532 -149.42881 -83604282.21840 - -84.67675 -149.40658 -82671836.72060 - -94.63521 -149.33992 -81739391.17920 - -104.58775 -149.22881 -80806945.58910 - -114.53140 -149.07325 -79874499.94510 - -124.46320 -148.87325 -78942054.24210 + -0.00076 -149.42929 -90597622.57950 + -7.47223 -149.42929 -89898288.57910 + -14.94369 -149.42929 -89198954.57650 + -22.41516 -149.42929 -88499620.56960 + -29.88662 -149.42929 -87800286.55630 + -37.35809 -149.42929 -87100952.53420 + -37.35810 -149.42893 -87100952.53420 + -44.82954 -149.42893 -86401618.50140 + -52.30099 -149.42893 -85702284.45550 + -59.77243 -149.42893 -85002950.39450 + -67.24388 -149.42893 -84303616.31620 + -74.71533 -149.42893 -83604282.21840 + -74.71533 -149.42873 -83604282.21840 + -84.67676 -149.40651 -82671836.72060 + -94.63521 -149.33984 -81739391.17920 + -104.58775 -149.22873 -80806945.58910 + -114.53139 -149.07317 -79874499.94510 + -124.46318 -148.87317 -78942054.24210 -124.46319 -148.87349 -78942054.24210 - -134.38019 -148.62904 -78009608.47500 + -134.38019 -148.62905 -78009608.47500 -144.27941 -148.34016 -77077162.63870 - -154.15789 -148.00682 -76144716.72810 - -164.01267 -147.62904 -75212270.73810 - -173.84077 -147.20682 -74279824.66360 - -173.84078 -147.20711 -74279824.66360 - -183.63928 -146.74044 -73347378.49950 - -193.40519 -146.22933 -72414932.24090 + -154.15789 -148.00683 -76144716.72810 + -164.01267 -147.62905 -75212270.73810 + -173.84078 -147.20683 -74279824.66360 + -173.84078 -147.20712 -74279824.66360 + -183.63928 -146.74045 -73347378.49950 + -193.40519 -146.22934 -72414932.24090 -203.13554 -145.67378 -71482485.88270 -212.82737 -145.07378 -70550039.41980 - -222.47772 -144.42933 -69617592.84740 - -222.47772 -144.42960 -69617592.84740 - -232.08365 -143.74071 -68685146.16030 - -241.64216 -143.00738 -67752699.35370 - -251.15031 -142.22960 -66820252.42260 - -260.60512 -141.40738 -65887805.36230 - -270.00364 -140.54071 -64955358.16770 - -270.00364 -140.54096 -64955358.16770 - -279.34292 -139.62985 -64022910.83390 + -222.47772 -144.42934 -69617592.84740 + -222.47772 -144.42963 -69617592.84740 + -232.08364 -143.74074 -68685146.16030 + -241.64216 -143.00740 -67752699.35370 + -251.15031 -142.22963 -66820252.42260 + -260.60513 -141.40740 -65887805.36230 + -270.00364 -140.54074 -64955358.16770 + -270.00364 -140.54097 -64955358.16770 + -279.34292 -139.62986 -64022910.83390 -288.61997 -138.67430 -63090463.35630 -297.83183 -137.67430 -62158015.73010 - -306.97555 -136.62985 -61225567.95050 - -316.04816 -135.54096 -60293120.01280 + -306.97555 -136.62986 -61225567.95050 + -316.04816 -135.54097 -60293120.01280 -316.04816 -135.54119 -60293120.01280 - -325.04671 -134.40785 -59360671.91230 + -325.04671 -134.40786 -59360671.91230 -333.96822 -133.23008 -58428223.64430 - -342.80973 -132.00785 -57495775.20440 + -342.80973 -132.00786 -57495775.20440 -351.56828 -130.74119 -56563326.58790 - -360.24090 -129.43008 -55630877.79040 + -360.24091 -129.43008 -55630877.79040 -360.24090 -129.43029 -55630877.79040 - -368.82465 -128.07473 -54698428.80720 - -377.31655 -126.67473 -53765979.63410 + -368.82465 -128.07474 -54698428.80720 + -377.31655 -126.67474 -53765979.63410 -385.71363 -125.23029 -52833530.26670 -394.01293 -123.74140 -51901080.70070 -402.21149 -122.20807 -50968630.93170 - -402.21149 -122.20826 -50968630.93170 + -402.21149 -122.20827 -50968630.93170 -410.30636 -120.63049 -50036180.95550 - -418.29457 -119.00826 -49103730.76790 + -418.29457 -119.00827 -49103730.76790 -426.17315 -117.34160 -48171280.36500 -433.93913 -115.63049 -47238829.74260 - -441.58956 -113.87493 -46306378.89670 + -441.58956 -113.87494 -46306378.89670 -441.58956 -113.87509 -46306378.89670 - -449.12148 -112.07509 -45373927.82330 - -456.53191 -110.23064 -44441476.51850 - -463.81791 -108.34175 -43509024.97870 - -470.97649 -106.40842 -42576573.20000 - -478.00471 -104.43064 -41644121.17880 - -478.00471 -104.43080 -41644121.17880 - -484.89960 -102.40858 -40711668.91130 - -491.65820 -100.34191 -39779216.39400 - -498.27754 -98.23080 -38846763.62350 + -449.12147 -112.07509 -45373927.82330 + -456.53191 -110.23065 -44441476.51850 + -463.81791 -108.34176 -43509024.97870 + -470.97649 -106.40843 -42576573.20000 + -478.00471 -104.43065 -41644121.17880 + -478.00471 -104.43081 -41644121.17880 + -484.89960 -102.40859 -40711668.91130 + -491.65820 -100.34192 -39779216.39400 + -498.27754 -98.23081 -38846763.62350 -504.75465 -96.07525 -37914310.59650 -511.08658 -93.87525 -36981857.30940 - -511.08658 -93.87538 -36981857.30940 + -511.08658 -93.87537 -36981857.30940 -517.27037 -91.63093 -36049403.75910 -523.30305 -89.34204 -35116949.94230 - -529.18166 -87.00871 -34184495.85600 + -529.18166 -87.00870 -34184495.85600 -534.90323 -84.63093 -33252041.49730 - -540.46480 -82.20871 -32319586.86310 - -540.46480 -82.20885 -32319586.86310 - -545.86341 -79.74218 -31387131.95030 - -551.09610 -77.23107 -30454676.75650 - -556.15990 -74.67552 -29522221.27880 - -561.05185 -72.07552 -28589765.51480 - -565.76898 -69.43107 -27657309.46180 - -565.76898 -69.43113 -27657309.46180 - -570.30834 -66.74224 -26724853.11730 + -540.46479 -82.20870 -32319586.86310 + -540.46480 -82.20884 -32319586.86310 + -545.86341 -79.74217 -31387131.95030 + -551.09610 -77.23106 -30454676.75650 + -556.15990 -74.67550 -29522221.27880 + -561.05185 -72.07550 -28589765.51480 + -565.76898 -69.43106 -27657309.46180 + -565.76898 -69.43114 -27657309.46180 + -570.30834 -66.74225 -26724853.11730 -574.66696 -64.00891 -25792396.47900 - -578.84188 -61.23113 -24859939.54480 + -578.84188 -61.23114 -24859939.54480 -582.83012 -58.40891 -23927482.31260 - -586.62874 -55.54224 -22995024.78020 - -586.62874 -55.54229 -22995024.78020 - -590.23477 -52.63118 -22062566.94550 + -586.62874 -55.54225 -22995024.78020 + -586.62874 -55.54230 -22995024.78020 + -590.23477 -52.63119 -22062566.94550 -593.64525 -49.67563 -21130108.80670 -596.85720 -46.67563 -20197650.36240 - -599.86768 -43.63118 -19265191.61070 - -602.67371 -40.54229 -18332732.55000 + -599.86768 -43.63119 -19265191.61070 + -602.67371 -40.54230 -18332732.55000 -602.67371 -40.54233 -18332732.55000 -605.27233 -37.40899 -17400273.17880 -607.66059 -34.23121 -16467813.49580 -609.83551 -31.00899 -15535353.49990 -611.79413 -27.74233 -14602893.19010 -613.53350 -24.43121 -13670432.56510 - -613.53350 -24.43127 -13670432.56510 + -613.53350 -24.43126 -13670432.56510 -615.07234 -22.05216 -12737971.62400 - -616.51620 -21.58151 -11805510.36620 + -616.51620 -21.58150 -11805510.36620 -617.99229 -23.01930 -10873048.79090 -619.62785 -26.36555 -9940586.89712 - -621.55010 -31.62026 -9008124.68422 + -621.55010 -31.62025 -9008124.68422 -621.55011 -31.62031 -9008124.68422 -623.88630 -38.78346 -8075662.15144 -626.76364 -47.85507 -7143199.29739 -630.30938 -58.83513 -6210736.12019 -634.65074 -71.72364 -5278272.61797 -639.91494 -86.52061 -4345808.78889 - -391.25743 -2407.32415 -4345808.78889 + -391.25743 -2407.32414 -4345808.78889 -552.29195 -2424.02956 -3413344.64718 -714.50378 -2442.64343 -2480880.18824 -878.02015 -2463.16576 -1548415.38192 @@ -5450,16 +5580,16 @@ Displacements -971.02086 1179.85926 6960352.11287 -971.02086 1179.85926 6960352.11287 -861.00943 1135.35769 8289122.98833 - -755.45741 1085.97674 9617894.76369 + -755.45741 1085.97673 9617894.76369 -654.82836 1031.71639 10946667.33400 -559.58581 972.57666 12275440.59420 -470.19331 908.55754 13604214.43950 -470.19331 908.55753 13604214.43950 - -387.11440 839.65902 14932988.76820 + -387.11440 839.65903 14932988.76820 -310.81261 765.88113 16261763.50100 - -241.75150 687.22384 17590538.56600 - -180.39460 603.68717 18919313.89100 - -127.20545 515.27111 20248089.40430 + -241.75150 687.22385 17590538.56600 + -180.39460 603.68718 18919313.89100 + -127.20545 515.27112 20248089.40430 -127.20545 515.27111 20248089.40430 -82.64760 421.97566 21576865.03930 -47.18459 323.80083 22905640.75970 @@ -6289,129 +6419,129 @@ Displacements [END OF COLUMN INDICATION] [DATA] 0.06153 1.97909 -111577604.76400 - 1.33055 33.87895 -110645178.30100 - 4.15162 46.55940 -109712751.83900 + 1.33056 33.87894 -110645178.30100 + 4.15162 46.55939 -109712751.83900 7.25779 46.60919 -108780325.37900 10.36507 46.60919 -107847898.92300 13.47235 46.60919 -106915472.47200 - 13.31020 44.62925 -106915472.47200 - 16.28548 44.62925 -105983046.02800 - 19.26076 44.62925 -105050619.59300 - 22.23605 44.62925 -104118193.16700 - 25.21133 44.62925 -103185766.75300 - 28.18661 44.62925 -102253340.35200 - 28.18662 44.62890 -102253340.35200 - 31.16188 44.62890 -101320913.96600 - 34.13714 44.62890 -100388487.59500 - 37.11240 44.62890 -99456061.24200 - 40.08766 44.62890 -98523634.90810 - 43.06292 44.62890 -97591208.59490 - 43.06292 44.62892 -97591208.59490 - 45.29437 44.62892 -96891888.87450 - 47.52582 44.62892 -96192569.16720 - 49.75726 44.62892 -95493249.47360 - 51.98871 44.62892 -94793929.79450 - 54.22016 44.62892 -94094610.13040 - 54.22015 44.62937 -94094610.13040 - 56.45162 44.62937 -93395290.48210 - 58.68309 44.62937 -92695970.85010 - 60.91456 44.62937 -91996651.23510 - 63.14603 44.62937 -91297331.63770 - 65.37750 44.62937 -90598012.05860 - 65.37748 -104.79949 -90598012.05860 - 60.13751 -104.79949 -89898692.49820 - 54.89753 -104.79949 -89199372.95510 - 49.65756 -104.79949 -88500053.42800 - 44.41758 -104.79949 -87800733.91520 - 39.17761 -104.79949 -87101414.41530 - 39.17760 -104.79920 -87101414.41530 - 33.93764 -104.79920 -86402094.92680 - 28.69768 -104.79920 -85702775.44800 - 23.45772 -104.79920 -85003455.97760 - 18.21776 -104.79920 -84304136.51400 - 12.97780 -104.79920 -83604817.05570 - 12.97780 -104.79904 -83604817.05570 - 5.99169 -104.77682 -82672391.11690 - -0.99145 -104.71015 -81739965.18110 - -7.96867 -104.59904 -80807539.24480 - -14.93700 -104.44349 -79875113.30450 - -21.89348 -104.24349 -78942687.35640 + 13.31019 44.62929 -106915472.47200 + 16.28548 44.62929 -105983046.02800 + 19.26076 44.62929 -105050619.59300 + 22.23605 44.62929 -104118193.16700 + 25.21133 44.62929 -103185766.75300 + 28.18662 44.62929 -102253340.35200 + 28.18663 44.62889 -102253340.35200 + 31.16188 44.62889 -101320913.96600 + 34.13714 44.62889 -100388487.59500 + 37.11240 44.62889 -99456061.24200 + 40.08766 44.62889 -98523634.90810 + 43.06292 44.62889 -97591208.59490 + 43.06293 44.62891 -97591208.59490 + 45.29437 44.62891 -96891888.87450 + 47.52582 44.62891 -96192569.16720 + 49.75726 44.62891 -95493249.47360 + 51.98871 44.62891 -94793929.79450 + 54.22015 44.62891 -94094610.13040 + 54.22015 44.62936 -94094610.13040 + 56.45162 44.62936 -93395290.48210 + 58.68309 44.62936 -92695970.85010 + 60.91456 44.62936 -91996651.23510 + 63.14603 44.62936 -91297331.63770 + 65.37749 44.62936 -90598012.05860 + 65.37748 -104.79950 -90598012.05860 + 60.13751 -104.79950 -89898692.49820 + 54.89753 -104.79950 -89199372.95510 + 49.65756 -104.79950 -88500053.42800 + 44.41758 -104.79950 -87800733.91520 + 39.17761 -104.79950 -87101414.41530 + 39.17760 -104.79921 -87101414.41530 + 33.93764 -104.79921 -86402094.92680 + 28.69768 -104.79921 -85702775.44800 + 23.45772 -104.79921 -85003455.97760 + 18.21775 -104.79921 -84304136.51400 + 12.97779 -104.79921 -83604817.05570 + 12.97779 -104.79896 -83604817.05570 + 5.99169 -104.77674 -82672391.11690 + -0.99146 -104.71008 -81739965.18110 + -7.96867 -104.59896 -80807539.24480 + -14.93700 -104.44341 -79875113.30450 + -21.89347 -104.24341 -78942687.35640 -21.89348 -104.24375 -78942687.35640 - -28.83516 -103.99930 -78010261.39700 - -35.75907 -103.71041 -77077835.42280 - -42.66223 -103.37708 -76145409.43020 - -49.54169 -102.99930 -75212983.41570 - -56.39448 -102.57708 -74280557.37560 - -56.39449 -102.57737 -74280557.37560 - -63.21767 -102.11070 -73348131.30640 - -70.00826 -101.59959 -72415705.20470 + -28.83516 -103.99931 -78010261.39700 + -35.75907 -103.71042 -77077835.42280 + -42.66223 -103.37709 -76145409.43020 + -49.54169 -102.99931 -75212983.41570 + -56.39448 -102.57709 -74280557.37560 + -56.39449 -102.57738 -74280557.37560 + -63.21767 -102.11071 -73348131.30640 + -70.00826 -101.59960 -72415705.20470 -76.76329 -101.04404 -71483279.06690 -83.47981 -100.44404 -70550852.88960 - -90.15485 -99.79959 -69618426.66940 - -90.15485 -99.79984 -69618426.66940 - -96.78545 -99.11095 -68686000.40260 - -103.36865 -98.37762 -67753574.08600 - -109.90148 -97.59984 -66821147.71620 - -116.38098 -96.77762 -65888721.28980 - -122.80418 -95.91095 -64956294.80350 - -122.80418 -95.91120 -64956294.80350 - -129.16814 -95.00009 -64023868.25390 + -90.15485 -99.79960 -69618426.66940 + -90.15484 -99.79987 -69618426.66940 + -96.78545 -99.11098 -68686000.40260 + -103.36865 -98.37765 -67753574.08600 + -109.90148 -97.59987 -66821147.71620 + -116.38098 -96.77765 -65888721.28980 + -122.80418 -95.91098 -64956294.80350 + -122.80418 -95.91121 -64956294.80350 + -129.16814 -95.00010 -64023868.25390 -135.46987 -94.04454 -63091441.63770 -141.70642 -93.04454 -62159014.95180 - -147.87482 -92.00009 -61226588.19290 - -153.97211 -90.91120 -60294161.35790 - -153.97212 -90.91143 -60294161.35790 + -147.87483 -92.00010 -61226588.19290 + -153.97212 -90.91121 -60294161.35790 + -153.97212 -90.91144 -60294161.35790 -159.99535 -89.77810 -59361734.44350 -165.94155 -88.60032 -58429307.44670 -171.80774 -87.37810 -57496880.36450 - -177.59097 -86.11143 -56564453.19380 + -177.59097 -86.11144 -56564453.19380 -183.28828 -84.80032 -55632025.93170 - -183.28827 -84.80055 -55632025.93170 + -183.28827 -84.80056 -55632025.93170 -188.89670 -83.44500 -54699598.57510 -194.41328 -82.04500 -53767171.12120 - -199.83505 -80.60055 -52834743.56720 - -205.15904 -79.11166 -51902315.91030 + -199.83505 -80.60056 -52834743.56720 + -205.15904 -79.11167 -51902315.91030 -210.38228 -77.57833 -50969888.14780 -210.38228 -77.57851 -50969888.14780 - -215.50184 -76.00073 -50037460.27680 + -215.50184 -76.00074 -50037460.27680 -220.51473 -74.37851 -49105032.29480 - -225.41798 -72.71184 -48172604.19930 - -230.20865 -71.00073 -47240175.98780 + -225.41798 -72.71185 -48172604.19930 + -230.20865 -71.00074 -47240175.98780 -234.88376 -69.24518 -46307747.65760 - -234.88376 -69.24533 -46307747.65760 - -239.44036 -67.44533 -45375319.20650 + -234.88376 -69.24534 -46307747.65760 + -239.44036 -67.44534 -45375319.20650 -243.87549 -65.60089 -44442890.63190 -248.18616 -63.71200 -43510461.93190 -252.36943 -61.77867 -42578033.10400 -256.42233 -59.80089 -41645604.14620 -256.42233 -59.80105 -41645604.14620 - -260.34191 -57.77882 -40713175.05620 + -260.34191 -57.77883 -40713175.05620 -264.12519 -55.71216 -39780745.83210 -267.76921 -53.60105 -38848316.47210 - -271.27101 -51.44549 -37915886.97420 - -274.62762 -49.24549 -36983457.33650 + -271.27101 -51.44550 -37915886.97420 + -274.62762 -49.24550 -36983457.33650 -274.62762 -49.24563 -36983457.33650 - -277.83610 -47.00119 -36051027.55740 - -280.89346 -44.71230 -35118597.63510 + -277.83610 -47.00118 -36051027.55740 + -280.89346 -44.71229 -35118597.63510 -283.79675 -42.37896 -34186167.56820 - -286.54300 -40.00119 -33253737.35520 + -286.54300 -40.00118 -33253737.35520 -289.12925 -37.57896 -32321306.99460 - -289.12925 -37.57911 -32321306.99460 - -291.55255 -35.11244 -31388876.48500 - -293.80992 -32.60133 -30456445.82520 - -295.89840 -30.04577 -29524015.01420 - -297.81504 -27.44577 -28591584.05080 - -299.55685 -24.80133 -27659152.93410 + -289.12925 -37.57909 -32321306.99460 + -291.55255 -35.11242 -31388876.48500 + -293.80992 -32.60131 -30456445.82520 + -295.89840 -30.04576 -29524015.01420 + -297.81503 -27.44576 -28591584.05080 + -299.55685 -24.80131 -27659152.93410 -299.55685 -24.80138 -27659152.93410 -301.12090 -22.11249 -26726721.66290 - -302.50420 -19.37915 -25794290.23670 + -302.50420 -19.37916 -25794290.23670 -303.70380 -16.60138 -24861858.65470 - -304.71673 -13.77915 -23929426.91640 + -304.71673 -13.77916 -23929426.91640 -305.54003 -10.91249 -22996995.02110 -305.54003 -10.91254 -22996995.02110 -306.17074 -8.00143 -22064562.96830 - -306.60590 -5.04587 -21132130.75790 - -306.84254 -2.04587 -20199698.38960 + -306.60590 -5.04588 -21132130.75790 + -306.84254 -2.04588 -20199698.38960 -306.87770 0.99857 -19267265.86330 -306.70841 4.08746 -18334833.17900 -306.70841 4.08742 -18334833.17900 @@ -6420,11 +6550,11 @@ Displacements -304.94426 13.62075 -15537534.17880 -303.92757 16.88742 -14605100.86420 -302.69162 20.19853 -13672667.39310 - -302.69162 20.19848 -13672667.39310 - -301.23345 23.55404 -12740233.76600 - -299.55009 26.95404 -11807799.98370 - -297.63859 30.39848 -10875366.04720 - -295.49597 33.88737 -9942931.95751 + -302.69162 20.19849 -13672667.39310 + -301.23345 23.55405 -12740233.76600 + -299.55009 26.95405 -11807799.98370 + -297.63859 30.39849 -10875366.04720 + -295.49597 33.88738 -9942931.95751 -293.11928 37.42071 -9010497.71562 -293.11929 37.42066 -9010497.71562 -290.50556 40.99844 -8078063.32261 @@ -6444,13 +6574,13 @@ Displacements -905.87214 880.80674 4300021.11291 -822.71552 869.02498 5628745.90952 -740.91585 852.23942 6957471.56673 - -740.91585 852.23942 6957471.56673 + -740.91585 852.23941 6957471.56673 -660.94849 830.45005 8286197.99646 -583.28879 803.65689 9614925.11702 -508.41213 771.85992 10943652.85040 -436.79386 735.05916 12272381.11850 -368.90934 693.25460 13601109.84350 - -368.90934 693.25459 13601109.84350 + -368.90935 693.25460 13601109.84350 -305.23394 646.44623 14929838.94870 -246.24301 594.63407 16258568.37260 -192.41192 537.81811 17587298.05900 @@ -9268,151 +9398,151 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 -0.00007 -111577642.58000 + 0.00001 -0.00007 -111577642.58000 0.00000 -0.00007 -110645197.24700 0.00000 -0.00007 -109712751.91300 -0.00001 -0.00007 -108780306.58000 -0.00001 -0.00007 -107847861.24700 -0.00002 -0.00007 -106915415.91300 - -0.00001 -0.00049 -106915415.91300 - -0.00004 -0.00049 -105982970.58000 - -0.00008 -0.00049 -105050525.24700 - -0.00011 -0.00049 -104118079.91300 - -0.00014 -0.00049 -103185634.58000 - -0.00018 -0.00049 -102253189.24700 + -0.00002 -0.00045 -106915415.91300 + -0.00005 -0.00045 -105982970.58000 + -0.00008 -0.00045 -105050525.24700 + -0.00011 -0.00045 -104118079.91300 + -0.00014 -0.00045 -103185634.58000 + -0.00017 -0.00045 -102253189.24700 -0.00016 -0.00088 -102253189.24700 -0.00022 -0.00088 -101320743.91300 -0.00028 -0.00088 -100388298.58000 -0.00034 -0.00088 -99455853.24640 -0.00040 -0.00088 -98523407.91310 -0.00046 -0.00088 -97590962.57970 - -0.00046 -0.00076 -97590962.57970 - -0.00050 -0.00076 -96891628.57970 - -0.00054 -0.00076 -96192294.57960 - -0.00057 -0.00076 -95492960.57960 - -0.00061 -0.00076 -94793626.57960 - -0.00065 -0.00076 -94094292.57960 + -0.00046 -0.00077 -97590962.57970 + -0.00050 -0.00077 -96891628.57970 + -0.00054 -0.00077 -96192294.57960 + -0.00057 -0.00077 -95492960.57960 + -0.00061 -0.00077 -94793626.57960 + -0.00065 -0.00077 -94094292.57960 -0.00066 -0.00039 -94094292.57960 -0.00068 -0.00039 -93394958.57960 -0.00070 -0.00039 -92695624.57950 -0.00072 -0.00039 -91996290.57950 -0.00074 -0.00039 -91296956.57950 -0.00076 -0.00039 -90597622.57950 - -0.00077 -149.42928 -90597622.57950 - -7.47223 -149.42928 -89898288.57910 - -14.94369 -149.42928 -89198954.57650 - -22.41516 -149.42928 -88499620.56960 - -29.88662 -149.42928 -87800286.55630 - -37.35809 -149.42928 -87100952.53420 - -37.35810 -149.42892 -87100952.53420 - -44.82954 -149.42892 -86401618.50140 - -52.30099 -149.42892 -85702284.45550 - -59.77243 -149.42892 -85002950.39450 - -67.24388 -149.42892 -84303616.31620 - -74.71533 -149.42892 -83604282.21840 - -74.71532 -149.42881 -83604282.21840 - -84.67675 -149.40658 -82671836.72060 - -94.63521 -149.33992 -81739391.17920 - -104.58775 -149.22881 -80806945.58910 - -114.53140 -149.07325 -79874499.94510 - -124.46320 -148.87325 -78942054.24210 + -0.00076 -149.42929 -90597622.57950 + -7.47223 -149.42929 -89898288.57910 + -14.94369 -149.42929 -89198954.57650 + -22.41516 -149.42929 -88499620.56960 + -29.88662 -149.42929 -87800286.55630 + -37.35809 -149.42929 -87100952.53420 + -37.35810 -149.42893 -87100952.53420 + -44.82954 -149.42893 -86401618.50140 + -52.30099 -149.42893 -85702284.45550 + -59.77243 -149.42893 -85002950.39450 + -67.24388 -149.42893 -84303616.31620 + -74.71533 -149.42893 -83604282.21840 + -74.71533 -149.42873 -83604282.21840 + -84.67676 -149.40651 -82671836.72060 + -94.63521 -149.33984 -81739391.17920 + -104.58775 -149.22873 -80806945.58910 + -114.53139 -149.07317 -79874499.94510 + -124.46318 -148.87317 -78942054.24210 -124.46319 -148.87349 -78942054.24210 - -134.38019 -148.62904 -78009608.47500 + -134.38019 -148.62905 -78009608.47500 -144.27941 -148.34016 -77077162.63870 - -154.15789 -148.00682 -76144716.72810 - -164.01267 -147.62904 -75212270.73810 - -173.84077 -147.20682 -74279824.66360 - -173.84078 -147.20711 -74279824.66360 - -183.63928 -146.74044 -73347378.49950 - -193.40519 -146.22933 -72414932.24090 + -154.15789 -148.00683 -76144716.72810 + -164.01267 -147.62905 -75212270.73810 + -173.84078 -147.20683 -74279824.66360 + -173.84078 -147.20712 -74279824.66360 + -183.63928 -146.74045 -73347378.49950 + -193.40519 -146.22934 -72414932.24090 -203.13554 -145.67378 -71482485.88270 -212.82737 -145.07378 -70550039.41980 - -222.47772 -144.42933 -69617592.84740 - -222.47772 -144.42960 -69617592.84740 - -232.08365 -143.74071 -68685146.16030 - -241.64216 -143.00738 -67752699.35370 - -251.15031 -142.22960 -66820252.42260 - -260.60512 -141.40738 -65887805.36230 - -270.00364 -140.54071 -64955358.16770 - -270.00364 -140.54096 -64955358.16770 - -279.34292 -139.62985 -64022910.83390 + -222.47772 -144.42934 -69617592.84740 + -222.47772 -144.42963 -69617592.84740 + -232.08364 -143.74074 -68685146.16030 + -241.64216 -143.00740 -67752699.35370 + -251.15031 -142.22963 -66820252.42260 + -260.60513 -141.40740 -65887805.36230 + -270.00364 -140.54074 -64955358.16770 + -270.00364 -140.54097 -64955358.16770 + -279.34292 -139.62986 -64022910.83390 -288.61997 -138.67430 -63090463.35630 -297.83183 -137.67430 -62158015.73010 - -306.97555 -136.62985 -61225567.95050 - -316.04816 -135.54096 -60293120.01280 + -306.97555 -136.62986 -61225567.95050 + -316.04816 -135.54097 -60293120.01280 -316.04816 -135.54119 -60293120.01280 - -325.04671 -134.40785 -59360671.91230 + -325.04671 -134.40786 -59360671.91230 -333.96822 -133.23008 -58428223.64430 - -342.80973 -132.00785 -57495775.20440 + -342.80973 -132.00786 -57495775.20440 -351.56828 -130.74119 -56563326.58790 - -360.24090 -129.43008 -55630877.79040 + -360.24091 -129.43008 -55630877.79040 -360.24090 -129.43029 -55630877.79040 - -368.82465 -128.07473 -54698428.80720 - -377.31655 -126.67473 -53765979.63410 + -368.82465 -128.07474 -54698428.80720 + -377.31655 -126.67474 -53765979.63410 -385.71363 -125.23029 -52833530.26670 -394.01293 -123.74140 -51901080.70070 -402.21149 -122.20807 -50968630.93170 - -402.21149 -122.20826 -50968630.93170 + -402.21149 -122.20827 -50968630.93170 -410.30636 -120.63049 -50036180.95550 - -418.29457 -119.00826 -49103730.76790 + -418.29457 -119.00827 -49103730.76790 -426.17315 -117.34160 -48171280.36500 -433.93913 -115.63049 -47238829.74260 - -441.58956 -113.87493 -46306378.89670 + -441.58956 -113.87494 -46306378.89670 -441.58956 -113.87509 -46306378.89670 - -449.12148 -112.07509 -45373927.82330 - -456.53191 -110.23064 -44441476.51850 - -463.81791 -108.34175 -43509024.97870 - -470.97649 -106.40842 -42576573.20000 - -478.00471 -104.43064 -41644121.17880 - -478.00471 -104.43080 -41644121.17880 - -484.89960 -102.40858 -40711668.91130 - -491.65820 -100.34191 -39779216.39400 - -498.27754 -98.23080 -38846763.62350 + -449.12147 -112.07509 -45373927.82330 + -456.53191 -110.23065 -44441476.51850 + -463.81791 -108.34176 -43509024.97870 + -470.97649 -106.40843 -42576573.20000 + -478.00471 -104.43065 -41644121.17880 + -478.00471 -104.43081 -41644121.17880 + -484.89960 -102.40859 -40711668.91130 + -491.65820 -100.34192 -39779216.39400 + -498.27754 -98.23081 -38846763.62350 -504.75465 -96.07525 -37914310.59650 -511.08658 -93.87525 -36981857.30940 - -511.08658 -93.87538 -36981857.30940 + -511.08658 -93.87537 -36981857.30940 -517.27037 -91.63093 -36049403.75910 -523.30305 -89.34204 -35116949.94230 - -529.18166 -87.00871 -34184495.85600 + -529.18166 -87.00870 -34184495.85600 -534.90323 -84.63093 -33252041.49730 - -540.46480 -82.20871 -32319586.86310 - -540.46480 -82.20885 -32319586.86310 - -545.86341 -79.74218 -31387131.95030 - -551.09610 -77.23107 -30454676.75650 - -556.15990 -74.67552 -29522221.27880 - -561.05185 -72.07552 -28589765.51480 - -565.76898 -69.43107 -27657309.46180 - -565.76898 -69.43113 -27657309.46180 - -570.30834 -66.74224 -26724853.11730 + -540.46479 -82.20870 -32319586.86310 + -540.46480 -82.20884 -32319586.86310 + -545.86341 -79.74217 -31387131.95030 + -551.09610 -77.23106 -30454676.75650 + -556.15990 -74.67550 -29522221.27880 + -561.05185 -72.07550 -28589765.51480 + -565.76898 -69.43106 -27657309.46180 + -565.76898 -69.43114 -27657309.46180 + -570.30834 -66.74225 -26724853.11730 -574.66696 -64.00891 -25792396.47900 - -578.84188 -61.23113 -24859939.54480 + -578.84188 -61.23114 -24859939.54480 -582.83012 -58.40891 -23927482.31260 - -586.62874 -55.54224 -22995024.78020 - -586.62874 -55.54229 -22995024.78020 - -590.23477 -52.63118 -22062566.94550 + -586.62874 -55.54225 -22995024.78020 + -586.62874 -55.54230 -22995024.78020 + -590.23477 -52.63119 -22062566.94550 -593.64525 -49.67563 -21130108.80670 -596.85720 -46.67563 -20197650.36240 - -599.86768 -43.63118 -19265191.61070 - -602.67371 -40.54229 -18332732.55000 + -599.86768 -43.63119 -19265191.61070 + -602.67371 -40.54230 -18332732.55000 -602.67371 -40.54233 -18332732.55000 -605.27233 -37.40899 -17400273.17880 -607.66059 -34.23121 -16467813.49580 -609.83551 -31.00899 -15535353.49990 -611.79413 -27.74233 -14602893.19010 -613.53350 -24.43121 -13670432.56510 - -613.53350 -24.43127 -13670432.56510 + -613.53350 -24.43126 -13670432.56510 -615.07234 -22.05216 -12737971.62400 - -616.51620 -21.58151 -11805510.36620 + -616.51620 -21.58150 -11805510.36620 -617.99229 -23.01930 -10873048.79090 -619.62785 -26.36555 -9940586.89712 - -621.55010 -31.62026 -9008124.68422 + -621.55010 -31.62025 -9008124.68422 -621.55011 -31.62031 -9008124.68422 -623.88630 -38.78346 -8075662.15144 -626.76364 -47.85507 -7143199.29739 -630.30938 -58.83513 -6210736.12019 -634.65074 -71.72364 -5278272.61797 -639.91494 -86.52061 -4345808.78889 - -391.25743 -2407.32415 -4345808.78889 + -391.25743 -2407.32414 -4345808.78889 -552.29195 -2424.02956 -3413344.64718 -714.50378 -2442.64343 -2480880.18824 -878.02015 -2463.16576 -1548415.38192 @@ -9426,16 +9556,16 @@ Displacements -971.02086 1179.85926 6960352.11287 -971.02086 1179.85926 6960352.11287 -861.00943 1135.35769 8289122.98833 - -755.45741 1085.97674 9617894.76369 + -755.45741 1085.97673 9617894.76369 -654.82836 1031.71639 10946667.33400 -559.58581 972.57666 12275440.59420 -470.19331 908.55754 13604214.43950 -470.19331 908.55753 13604214.43950 - -387.11440 839.65902 14932988.76820 + -387.11440 839.65903 14932988.76820 -310.81261 765.88113 16261763.50100 - -241.75150 687.22384 17590538.56600 - -180.39460 603.68717 18919313.89100 - -127.20545 515.27111 20248089.40430 + -241.75150 687.22385 17590538.56600 + -180.39460 603.68718 18919313.89100 + -127.20545 515.27112 20248089.40430 -127.20545 515.27111 20248089.40430 -82.64760 421.97566 21576865.03930 -47.18459 323.80083 22905640.75970 @@ -10265,129 +10395,129 @@ Displacements [END OF COLUMN INDICATION] [DATA] 0.06153 1.97909 -111577604.76400 - 1.33055 33.87895 -110645178.30100 - 4.15162 46.55940 -109712751.83900 + 1.33056 33.87894 -110645178.30100 + 4.15162 46.55939 -109712751.83900 7.25779 46.60919 -108780325.37900 10.36507 46.60919 -107847898.92300 13.47235 46.60919 -106915472.47200 - 13.31020 44.62925 -106915472.47200 - 16.28548 44.62925 -105983046.02800 - 19.26076 44.62925 -105050619.59300 - 22.23605 44.62925 -104118193.16700 - 25.21133 44.62925 -103185766.75300 - 28.18661 44.62925 -102253340.35200 - 28.18662 44.62890 -102253340.35200 - 31.16188 44.62890 -101320913.96600 - 34.13714 44.62890 -100388487.59500 - 37.11240 44.62890 -99456061.24200 - 40.08766 44.62890 -98523634.90810 - 43.06292 44.62890 -97591208.59490 - 43.06292 44.62892 -97591208.59490 - 45.29437 44.62892 -96891888.87450 - 47.52582 44.62892 -96192569.16720 - 49.75726 44.62892 -95493249.47360 - 51.98871 44.62892 -94793929.79450 - 54.22016 44.62892 -94094610.13040 - 54.22015 44.62937 -94094610.13040 - 56.45162 44.62937 -93395290.48210 - 58.68309 44.62937 -92695970.85010 - 60.91456 44.62937 -91996651.23510 - 63.14603 44.62937 -91297331.63770 - 65.37750 44.62937 -90598012.05860 - 65.37748 -104.79949 -90598012.05860 - 60.13751 -104.79949 -89898692.49820 - 54.89753 -104.79949 -89199372.95510 - 49.65756 -104.79949 -88500053.42800 - 44.41758 -104.79949 -87800733.91520 - 39.17761 -104.79949 -87101414.41530 - 39.17760 -104.79920 -87101414.41530 - 33.93764 -104.79920 -86402094.92680 - 28.69768 -104.79920 -85702775.44800 - 23.45772 -104.79920 -85003455.97760 - 18.21776 -104.79920 -84304136.51400 - 12.97780 -104.79920 -83604817.05570 - 12.97780 -104.79904 -83604817.05570 - 5.99169 -104.77682 -82672391.11690 - -0.99145 -104.71015 -81739965.18110 - -7.96867 -104.59904 -80807539.24480 - -14.93700 -104.44349 -79875113.30450 - -21.89348 -104.24349 -78942687.35640 + 13.31019 44.62929 -106915472.47200 + 16.28548 44.62929 -105983046.02800 + 19.26076 44.62929 -105050619.59300 + 22.23605 44.62929 -104118193.16700 + 25.21133 44.62929 -103185766.75300 + 28.18662 44.62929 -102253340.35200 + 28.18663 44.62889 -102253340.35200 + 31.16188 44.62889 -101320913.96600 + 34.13714 44.62889 -100388487.59500 + 37.11240 44.62889 -99456061.24200 + 40.08766 44.62889 -98523634.90810 + 43.06292 44.62889 -97591208.59490 + 43.06293 44.62891 -97591208.59490 + 45.29437 44.62891 -96891888.87450 + 47.52582 44.62891 -96192569.16720 + 49.75726 44.62891 -95493249.47360 + 51.98871 44.62891 -94793929.79450 + 54.22015 44.62891 -94094610.13040 + 54.22015 44.62936 -94094610.13040 + 56.45162 44.62936 -93395290.48210 + 58.68309 44.62936 -92695970.85010 + 60.91456 44.62936 -91996651.23510 + 63.14603 44.62936 -91297331.63770 + 65.37749 44.62936 -90598012.05860 + 65.37748 -104.79950 -90598012.05860 + 60.13751 -104.79950 -89898692.49820 + 54.89753 -104.79950 -89199372.95510 + 49.65756 -104.79950 -88500053.42800 + 44.41758 -104.79950 -87800733.91520 + 39.17761 -104.79950 -87101414.41530 + 39.17760 -104.79921 -87101414.41530 + 33.93764 -104.79921 -86402094.92680 + 28.69768 -104.79921 -85702775.44800 + 23.45772 -104.79921 -85003455.97760 + 18.21775 -104.79921 -84304136.51400 + 12.97779 -104.79921 -83604817.05570 + 12.97779 -104.79896 -83604817.05570 + 5.99169 -104.77674 -82672391.11690 + -0.99146 -104.71008 -81739965.18110 + -7.96867 -104.59896 -80807539.24480 + -14.93700 -104.44341 -79875113.30450 + -21.89347 -104.24341 -78942687.35640 -21.89348 -104.24375 -78942687.35640 - -28.83516 -103.99930 -78010261.39700 - -35.75907 -103.71041 -77077835.42280 - -42.66223 -103.37708 -76145409.43020 - -49.54169 -102.99930 -75212983.41570 - -56.39448 -102.57708 -74280557.37560 - -56.39449 -102.57737 -74280557.37560 - -63.21767 -102.11070 -73348131.30640 - -70.00826 -101.59959 -72415705.20470 + -28.83516 -103.99931 -78010261.39700 + -35.75907 -103.71042 -77077835.42280 + -42.66223 -103.37709 -76145409.43020 + -49.54169 -102.99931 -75212983.41570 + -56.39448 -102.57709 -74280557.37560 + -56.39449 -102.57738 -74280557.37560 + -63.21767 -102.11071 -73348131.30640 + -70.00826 -101.59960 -72415705.20470 -76.76329 -101.04404 -71483279.06690 -83.47981 -100.44404 -70550852.88960 - -90.15485 -99.79959 -69618426.66940 - -90.15485 -99.79984 -69618426.66940 - -96.78545 -99.11095 -68686000.40260 - -103.36865 -98.37762 -67753574.08600 - -109.90148 -97.59984 -66821147.71620 - -116.38098 -96.77762 -65888721.28980 - -122.80418 -95.91095 -64956294.80350 - -122.80418 -95.91120 -64956294.80350 - -129.16814 -95.00009 -64023868.25390 + -90.15485 -99.79960 -69618426.66940 + -90.15484 -99.79987 -69618426.66940 + -96.78545 -99.11098 -68686000.40260 + -103.36865 -98.37765 -67753574.08600 + -109.90148 -97.59987 -66821147.71620 + -116.38098 -96.77765 -65888721.28980 + -122.80418 -95.91098 -64956294.80350 + -122.80418 -95.91121 -64956294.80350 + -129.16814 -95.00010 -64023868.25390 -135.46987 -94.04454 -63091441.63770 -141.70642 -93.04454 -62159014.95180 - -147.87482 -92.00009 -61226588.19290 - -153.97211 -90.91120 -60294161.35790 - -153.97212 -90.91143 -60294161.35790 + -147.87483 -92.00010 -61226588.19290 + -153.97212 -90.91121 -60294161.35790 + -153.97212 -90.91144 -60294161.35790 -159.99535 -89.77810 -59361734.44350 -165.94155 -88.60032 -58429307.44670 -171.80774 -87.37810 -57496880.36450 - -177.59097 -86.11143 -56564453.19380 + -177.59097 -86.11144 -56564453.19380 -183.28828 -84.80032 -55632025.93170 - -183.28827 -84.80055 -55632025.93170 + -183.28827 -84.80056 -55632025.93170 -188.89670 -83.44500 -54699598.57510 -194.41328 -82.04500 -53767171.12120 - -199.83505 -80.60055 -52834743.56720 - -205.15904 -79.11166 -51902315.91030 + -199.83505 -80.60056 -52834743.56720 + -205.15904 -79.11167 -51902315.91030 -210.38228 -77.57833 -50969888.14780 -210.38228 -77.57851 -50969888.14780 - -215.50184 -76.00073 -50037460.27680 + -215.50184 -76.00074 -50037460.27680 -220.51473 -74.37851 -49105032.29480 - -225.41798 -72.71184 -48172604.19930 - -230.20865 -71.00073 -47240175.98780 + -225.41798 -72.71185 -48172604.19930 + -230.20865 -71.00074 -47240175.98780 -234.88376 -69.24518 -46307747.65760 - -234.88376 -69.24533 -46307747.65760 - -239.44036 -67.44533 -45375319.20650 + -234.88376 -69.24534 -46307747.65760 + -239.44036 -67.44534 -45375319.20650 -243.87549 -65.60089 -44442890.63190 -248.18616 -63.71200 -43510461.93190 -252.36943 -61.77867 -42578033.10400 -256.42233 -59.80089 -41645604.14620 -256.42233 -59.80105 -41645604.14620 - -260.34191 -57.77882 -40713175.05620 + -260.34191 -57.77883 -40713175.05620 -264.12519 -55.71216 -39780745.83210 -267.76921 -53.60105 -38848316.47210 - -271.27101 -51.44549 -37915886.97420 - -274.62762 -49.24549 -36983457.33650 + -271.27101 -51.44550 -37915886.97420 + -274.62762 -49.24550 -36983457.33650 -274.62762 -49.24563 -36983457.33650 - -277.83610 -47.00119 -36051027.55740 - -280.89346 -44.71230 -35118597.63510 + -277.83610 -47.00118 -36051027.55740 + -280.89346 -44.71229 -35118597.63510 -283.79675 -42.37896 -34186167.56820 - -286.54300 -40.00119 -33253737.35520 + -286.54300 -40.00118 -33253737.35520 -289.12925 -37.57896 -32321306.99460 - -289.12925 -37.57911 -32321306.99460 - -291.55255 -35.11244 -31388876.48500 - -293.80992 -32.60133 -30456445.82520 - -295.89840 -30.04577 -29524015.01420 - -297.81504 -27.44577 -28591584.05080 - -299.55685 -24.80133 -27659152.93410 + -289.12925 -37.57909 -32321306.99460 + -291.55255 -35.11242 -31388876.48500 + -293.80992 -32.60131 -30456445.82520 + -295.89840 -30.04576 -29524015.01420 + -297.81503 -27.44576 -28591584.05080 + -299.55685 -24.80131 -27659152.93410 -299.55685 -24.80138 -27659152.93410 -301.12090 -22.11249 -26726721.66290 - -302.50420 -19.37915 -25794290.23670 + -302.50420 -19.37916 -25794290.23670 -303.70380 -16.60138 -24861858.65470 - -304.71673 -13.77915 -23929426.91640 + -304.71673 -13.77916 -23929426.91640 -305.54003 -10.91249 -22996995.02110 -305.54003 -10.91254 -22996995.02110 -306.17074 -8.00143 -22064562.96830 - -306.60590 -5.04587 -21132130.75790 - -306.84254 -2.04587 -20199698.38960 + -306.60590 -5.04588 -21132130.75790 + -306.84254 -2.04588 -20199698.38960 -306.87770 0.99857 -19267265.86330 -306.70841 4.08746 -18334833.17900 -306.70841 4.08742 -18334833.17900 @@ -10396,11 +10526,11 @@ Displacements -304.94426 13.62075 -15537534.17880 -303.92757 16.88742 -14605100.86420 -302.69162 20.19853 -13672667.39310 - -302.69162 20.19848 -13672667.39310 - -301.23345 23.55404 -12740233.76600 - -299.55009 26.95404 -11807799.98370 - -297.63859 30.39848 -10875366.04720 - -295.49597 33.88737 -9942931.95751 + -302.69162 20.19849 -13672667.39310 + -301.23345 23.55405 -12740233.76600 + -299.55009 26.95405 -11807799.98370 + -297.63859 30.39849 -10875366.04720 + -295.49597 33.88738 -9942931.95751 -293.11928 37.42071 -9010497.71562 -293.11929 37.42066 -9010497.71562 -290.50556 40.99844 -8078063.32261 @@ -10420,13 +10550,13 @@ Displacements -905.87214 880.80674 4300021.11291 -822.71552 869.02498 5628745.90952 -740.91585 852.23942 6957471.56673 - -740.91585 852.23942 6957471.56673 + -740.91585 852.23941 6957471.56673 -660.94849 830.45005 8286197.99646 -583.28879 803.65689 9614925.11702 -508.41213 771.85992 10943652.85040 -436.79386 735.05916 12272381.11850 -368.90934 693.25460 13601109.84350 - -368.90934 693.25459 13601109.84350 + -368.90935 693.25460 13601109.84350 -305.23394 646.44623 14929838.94870 -246.24301 594.63407 16258568.37260 -192.41192 537.81811 17587298.05900 @@ -13028,8 +13158,8 @@ CalculationStatus -42367039.55560 28377159.66840 -2.51528408206E19 100.00000 100.00000 2 5 9 1.000 0 1 -1158.73008 81448.58275 -111577604.76400 100.00000 100.00000 2 0 9 1.000 0 0 -42367039.55560 28377159.66840 -2.51528408206E19 100.00000 100.00000 2 1 9 1.000 0 1 - 437.58059 -519.29714 -1.35052080064E15 100.00000 100.00000 2 3 9 1.000 0 1 - 437.58059 -519.29714 -1.35052080064E15 100.00000 100.00000 2 14 9 1.000 0 1 + 476.98785 -561.37136 -1.35052080064E15 100.00000 100.00000 2 3 9 1.000 0 1 + 476.98785 -561.37136 -1.35052080064E15 100.00000 100.00000 2 14 9 1.000 0 1 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shi index 4d9e11de..c0e59dbe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:18 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:23 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -580,6 +580,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -589,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -612,7 +614,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -623,8 +625,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.120 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -635,7 +639,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -654,6 +658,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,6 +686,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -708,6 +714,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -735,6 +742,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -762,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -789,6 +798,7 @@ MaterialFactorSubgradeReaction=0.100 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -816,6 +826,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -843,6 +854,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -853,7 +865,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -868,8 +936,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -879,8 +948,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -897,6 +966,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -906,7 +976,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -924,6 +1050,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -951,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -978,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shd index 1f601847..2066daaf 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -538,6 +538,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -547,6 +548,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -570,7 +572,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -581,8 +583,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -593,7 +597,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -601,7 +605,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -612,6 +616,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,7 +624,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -628,7 +633,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +644,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -646,7 +652,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -655,7 +661,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -666,6 +672,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -673,7 +680,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -693,6 +700,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,7 +708,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -720,6 +728,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -747,6 +756,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -774,6 +784,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -801,6 +812,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -811,23 +823,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -835,16 +904,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -855,6 +924,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -862,16 +932,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -882,6 +1008,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -889,7 +1016,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -898,7 +1025,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -909,6 +1036,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -916,7 +1044,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -925,7 +1053,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -936,6 +1064,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -943,7 +1072,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shi index 06d67500..c798a323 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-43e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-43e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-43e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -537,6 +537,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -546,6 +547,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -569,7 +571,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -580,8 +582,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -592,7 +596,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -600,7 +604,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -611,6 +615,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,7 +623,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -627,7 +632,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +643,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -645,7 +651,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -654,7 +660,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -665,6 +671,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -672,7 +679,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -692,6 +699,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -699,7 +707,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -719,6 +727,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -746,6 +755,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -773,6 +783,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -800,6 +811,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -810,23 +822,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -834,16 +903,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -854,6 +923,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -861,16 +931,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -881,6 +1007,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -888,7 +1015,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -897,7 +1024,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -908,6 +1035,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -915,7 +1043,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -924,7 +1052,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -935,6 +1063,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -942,7 +1071,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shd index e4232fcc..f650fe49 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -545,7 +551,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -563,7 +570,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -572,7 +579,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,7 +598,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -599,7 +607,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +626,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,7 +654,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -779,16 +850,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -806,16 +878,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -833,7 +962,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -842,7 +971,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -860,7 +990,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -869,7 +999,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -887,7 +1018,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -4313,8 +4444,8 @@ Displacements 18.02687 35.73663 0.37779 23.61086 38.52616 -6.54696 23.61085 38.52670 -6.54696 - 29.50881 39.92738 -13.49213 - 29.51311 39.81344 -13.49213 + 29.50881 39.92738 -13.49212 + 29.51311 39.81344 -13.49212 35.51505 40.11266 -20.46277 35.51076 -128.00160 -20.46277 19.51056 -128.00160 -26.29274 @@ -5831,12 +5962,12 @@ Displacements -260.24153 -76.59675 -134.54523 -271.63884 -71.53921 -139.34996 -271.63884 -71.66854 -139.34996 - -282.26135 -66.39526 -143.90808 - -282.26135 -66.52996 -143.90808 + -282.26135 -66.39526 -143.90807 + -282.26135 -66.52996 -143.90807 -292.07690 -61.04333 -148.20992 -292.07690 -61.18333 -148.20992 - -301.05364 -55.48574 -152.24659 - -301.05364 -55.63099 -152.24659 + -301.05364 -55.48574 -152.24658 + -301.05364 -55.63099 -152.24658 -309.16012 -49.72475 -156.00992 -309.16012 -49.87512 -156.00992 -316.36561 -43.76787 -159.49257 @@ -5916,7 +6047,7 @@ Displacements -25.38297 91.36836 -101.23329 -25.38297 91.36806 -101.23329 -11.01169 90.60463 -96.45637 - -11.01169 90.60434 -96.45637 + -11.01169 90.60433 -96.45637 3.22177 89.62395 -91.66891 3.22177 89.62367 -91.66891 17.28326 88.42737 -86.88452 @@ -5957,7 +6088,7 @@ Displacements 135.69600 -67.44473 -17.65583 124.12433 -78.59842 -14.73637 124.12436 -78.58700 -14.73637 - 111.03832 -86.65995 -11.93553 + 111.03831 -86.65995 -11.93553 111.03834 -86.64972 -11.93553 96.87548 -92.25741 -9.24081 96.87551 -92.24848 -9.24081 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shi index 3189e6ca..3eaee9f4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -544,7 +550,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -562,7 +569,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -571,7 +578,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -589,7 +597,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -598,7 +606,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -616,7 +625,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,7 +653,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -778,16 +849,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -805,16 +877,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -832,7 +961,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -841,7 +970,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -859,7 +989,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -868,7 +998,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -886,7 +1017,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shd index 3e28dd57..bdde8e34 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -545,7 +551,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -563,7 +570,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -572,7 +579,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,7 +598,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -599,7 +607,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +626,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,7 +654,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -779,16 +850,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -806,16 +878,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -833,7 +962,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -842,7 +971,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -860,7 +990,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -869,7 +999,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -887,7 +1018,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -4313,8 +4444,8 @@ Displacements 18.02687 35.73663 0.37779 23.61086 38.52616 -6.54696 23.61085 38.52670 -6.54696 - 29.50881 39.92738 -13.49213 - 29.51311 39.81344 -13.49213 + 29.50881 39.92738 -13.49212 + 29.51311 39.81344 -13.49212 35.51505 40.11266 -20.46277 35.51076 -128.00160 -20.46277 19.51056 -128.00160 -26.29274 @@ -5831,12 +5962,12 @@ Displacements -260.24153 -76.59675 -134.54523 -271.63884 -71.53921 -139.34996 -271.63884 -71.66854 -139.34996 - -282.26135 -66.39526 -143.90808 - -282.26135 -66.52996 -143.90808 + -282.26135 -66.39526 -143.90807 + -282.26135 -66.52996 -143.90807 -292.07690 -61.04333 -148.20992 -292.07690 -61.18333 -148.20992 - -301.05364 -55.48574 -152.24659 - -301.05364 -55.63099 -152.24659 + -301.05364 -55.48574 -152.24658 + -301.05364 -55.63099 -152.24658 -309.16012 -49.72475 -156.00992 -309.16012 -49.87512 -156.00992 -316.36561 -43.76787 -159.49257 @@ -5916,7 +6047,7 @@ Displacements -25.38297 91.36836 -101.23329 -25.38297 91.36806 -101.23329 -11.01169 90.60463 -96.45637 - -11.01169 90.60434 -96.45637 + -11.01169 90.60433 -96.45637 3.22177 89.62395 -91.66891 3.22177 89.62367 -91.66891 17.28326 88.42737 -86.88452 @@ -5957,7 +6088,7 @@ Displacements 135.69600 -67.44473 -17.65583 124.12433 -78.59842 -14.73637 124.12436 -78.58700 -14.73637 - 111.03832 -86.65995 -11.93553 + 111.03831 -86.65995 -11.93553 111.03834 -86.64972 -11.93553 96.87548 -92.25741 -9.24081 96.87551 -92.24848 -9.24081 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shi index 3140de53..4360ffb1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -544,7 +550,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -562,7 +569,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -571,7 +578,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -589,7 +597,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -598,7 +606,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -616,7 +625,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,7 +653,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -778,16 +849,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -805,16 +877,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -832,7 +961,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -841,7 +970,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -859,7 +989,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -868,7 +998,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -886,7 +1017,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shd index e718e513..53deefe9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:25 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -545,7 +551,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -563,7 +570,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -572,7 +579,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,7 +598,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -599,7 +607,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,7 +626,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,7 +654,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -779,16 +850,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -806,16 +878,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -833,7 +962,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -842,7 +971,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -860,7 +990,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -869,7 +999,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -887,7 +1018,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -4313,8 +4444,8 @@ Displacements 18.02687 35.73663 0.37779 23.61086 38.52616 -6.54696 23.61085 38.52670 -6.54696 - 29.50881 39.92738 -13.49213 - 29.51311 39.81344 -13.49213 + 29.50881 39.92738 -13.49212 + 29.51311 39.81344 -13.49212 35.51505 40.11266 -20.46277 35.51076 -128.00160 -20.46277 19.51056 -128.00160 -26.29274 @@ -5831,12 +5962,12 @@ Displacements -260.24153 -76.59675 -134.54523 -271.63884 -71.53921 -139.34996 -271.63884 -71.66854 -139.34996 - -282.26135 -66.39526 -143.90808 - -282.26135 -66.52996 -143.90808 + -282.26135 -66.39526 -143.90807 + -282.26135 -66.52996 -143.90807 -292.07690 -61.04333 -148.20992 -292.07690 -61.18333 -148.20992 - -301.05364 -55.48574 -152.24659 - -301.05364 -55.63099 -152.24659 + -301.05364 -55.48574 -152.24658 + -301.05364 -55.63099 -152.24658 -309.16012 -49.72475 -156.00992 -309.16012 -49.87512 -156.00992 -316.36561 -43.76787 -159.49257 @@ -5916,7 +6047,7 @@ Displacements -25.38297 91.36836 -101.23329 -25.38297 91.36806 -101.23329 -11.01169 90.60463 -96.45637 - -11.01169 90.60434 -96.45637 + -11.01169 90.60433 -96.45637 3.22177 89.62395 -91.66891 3.22177 89.62367 -91.66891 17.28326 88.42737 -86.88452 @@ -5957,7 +6088,7 @@ Displacements 135.69600 -67.44473 -17.65583 124.12433 -78.59842 -14.73637 124.12436 -78.58700 -14.73637 - 111.03832 -86.65995 -11.93553 + 111.03831 -86.65995 -11.93553 111.03834 -86.64972 -11.93553 96.87548 -92.25741 -9.24081 96.87551 -92.24848 -9.24081 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shi index 23ba6c6b..6772af7e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -544,7 +550,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -562,7 +569,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -571,7 +578,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -589,7 +597,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -598,7 +606,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -616,7 +625,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,7 +653,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -778,16 +849,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -805,16 +877,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -832,7 +961,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -841,7 +970,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -859,7 +989,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -868,7 +998,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -886,7 +1017,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shd index 95b9fe47..7b6edb9c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:35 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -10408,7 +10540,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -10423,179 +10555,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -10603,11 +10735,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -10615,11 +10747,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11145,12 +11277,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11576,16 +11708,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -11911,24 +12043,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -11941,129 +12073,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -12073,12 +12205,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -12087,7 +12219,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -12097,17 +12229,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12634,11 +12766,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13064,10 +13196,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -16508,7 +16640,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -16523,179 +16655,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -16703,11 +16835,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -16715,11 +16847,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17245,12 +17377,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17676,16 +17808,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -18011,24 +18143,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -18041,129 +18173,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -18173,12 +18305,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -18187,7 +18319,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -18197,17 +18329,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18734,11 +18866,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19164,10 +19296,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -19229,11 +19361,11 @@ CalculationStatus -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 6 5 1.000 0 0 -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 7 6 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 0 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 6 5 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 7 6 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 6 5 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 7 6 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 0 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 6 5 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 7 6 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 6 5 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 7 6 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shi index 769897a0..0720909f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shd index c9ba070b..b64d0307 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:43 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -10408,7 +10540,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -10423,179 +10555,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -10603,11 +10735,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -10615,11 +10747,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11145,12 +11277,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11576,16 +11708,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -11911,24 +12043,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -11941,129 +12073,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -12073,12 +12205,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -12087,7 +12219,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -12097,17 +12229,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12634,11 +12766,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13064,10 +13196,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -16508,7 +16640,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -16523,179 +16655,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -16703,11 +16835,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -16715,11 +16847,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17245,12 +17377,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17676,16 +17808,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -18011,24 +18143,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -18041,129 +18173,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -18173,12 +18305,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -18187,7 +18319,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -18197,17 +18329,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18734,11 +18866,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19164,10 +19296,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -19229,11 +19361,11 @@ CalculationStatus -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 6 5 1.000 0 0 -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 7 6 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 0 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 6 5 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 7 6 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 6 5 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 7 6 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 0 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 6 5 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 7 6 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 6 5 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 7 6 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shi index f6d06fb4..8310c2ea 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:36 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shd index b2d71f05..fd9feef4 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:47 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:53 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -10408,7 +10540,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -10423,179 +10555,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -10603,11 +10735,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -10615,11 +10747,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11145,12 +11277,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11576,16 +11708,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -11911,24 +12043,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -11941,129 +12073,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -12073,12 +12205,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -12087,7 +12219,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -12097,17 +12229,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12634,11 +12766,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13064,10 +13196,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -16508,7 +16640,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -16523,179 +16655,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -16703,11 +16835,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -16715,11 +16847,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17245,12 +17377,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17676,16 +17808,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -18011,24 +18143,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -18041,129 +18173,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -18173,12 +18305,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -18187,7 +18319,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -18197,17 +18329,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18734,11 +18866,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19164,10 +19296,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -19229,11 +19361,11 @@ CalculationStatus -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 6 5 1.000 0 0 -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 7 6 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 0 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 6 5 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 7 6 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 6 5 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 7 6 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 0 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 6 5 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 7 6 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 6 5 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 7 6 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shi index c0a7226c..6f68b3ab 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shd index ebdd142e..0fc58255 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -10408,7 +10540,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -10423,179 +10555,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -10603,11 +10735,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -10615,11 +10747,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11145,12 +11277,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11576,16 +11708,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -11911,24 +12043,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -11941,129 +12073,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -12073,12 +12205,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -12087,7 +12219,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -12097,17 +12229,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12634,11 +12766,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13064,10 +13196,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -16508,7 +16640,7 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00651 55.95305 + -0.00024 0.00651 55.95304 0.20185 4.02890 44.66859 0.20210 4.03542 44.66859 1.11125 8.61213 33.38390 @@ -16523,179 +16655,179 @@ Displacements 12.20230 25.55891 -11.78272 16.07955 25.99301 -23.09331 16.07238 25.80191 -23.09331 - 19.94266 25.80191 -34.41779 - 19.94266 25.80208 -34.41779 + 19.94266 25.80191 -34.41778 + 19.94266 25.80208 -34.41778 23.81297 25.80208 -45.75947 23.81298 25.80224 -45.75947 27.68331 25.80224 -57.12172 27.68331 -142.19763 -57.12172 9.90861 -142.19763 -66.60627 9.90861 -142.19751 -66.60627 - -7.86608 -142.19751 -76.09677 - -7.86608 -142.19743 -76.09677 + -7.86608 -142.19751 -76.09676 + -7.86608 -142.19743 -76.09676 -25.64076 -142.19743 -85.58254 -25.64076 -142.19737 -85.58254 -43.36423 -141.36933 -95.05295 -43.36423 -141.36931 -95.05295 -50.41956 -140.83997 -98.83443 -50.41956 -140.83997 -98.83443 - -71.41827 -139.10761 -110.14716 - -71.41856 -139.09982 -110.14716 - -92.14013 -137.15284 -121.39825 - -92.13983 -137.14513 -121.39825 - -112.55226 -134.98580 -132.56982 - -112.55226 -134.98601 -132.56982 - -132.62501 -132.61609 -143.64425 - -132.62501 -132.61638 -143.64425 - -152.32661 -130.03728 -154.60421 - -152.32661 -130.03763 -154.60421 - -171.62578 -127.25047 -165.43270 - -171.62578 -127.25088 -165.43270 - -190.49139 -124.25659 -176.11306 - -190.49139 -124.25705 -176.11306 - -208.89244 -121.05638 -186.62900 - -208.89244 -121.05688 -186.62900 - -226.79802 -117.65045 -196.96464 - -226.79802 -117.65099 -196.96464 - -244.17732 -114.03933 -207.10453 - -244.17732 -114.03990 -207.10453 - -260.99958 -110.22344 -217.03366 - -260.99958 -110.22405 -217.03366 - -277.23413 -106.20316 -226.73752 - -277.23413 -106.20379 -226.73752 - -292.85033 -101.97880 -236.20209 - -292.85034 -102.04935 -236.20209 - -308.11889 -96.41140 -245.64665 - -308.11889 -96.55481 -245.64665 - -322.52867 -90.74208 -254.81147 - -322.52867 -90.88986 -254.81147 - -336.05348 -84.90259 -263.68347 - -336.05348 -85.05474 -263.68347 - -348.66717 -78.89314 -272.25035 - -348.66717 -79.04965 -272.25035 - -360.34359 -72.71390 -280.50067 - -360.34359 -72.87476 -280.50067 - -371.05664 -66.36504 -288.42383 - -371.05664 -66.53024 -288.42383 - -380.78023 -59.84669 -296.01010 - -380.78023 -60.01616 -296.01010 - -389.48869 -53.16426 -303.25065 - -389.48869 -53.33798 -303.25065 - -397.15652 -46.31429 -310.13757 - -397.15652 -46.49234 -310.13757 - -403.75765 -39.29275 -316.66391 - -403.75765 -39.47519 -316.66391 - -409.26569 -32.09996 -322.82367 - -409.26569 -32.28677 -322.82367 - -413.65433 -24.73616 -328.61185 - -413.65433 -24.92734 -328.61185 - -416.89727 -17.20156 -334.02447 - -416.89726 -17.29882 -334.02447 - -418.92005 -10.99072 -338.71160 - -418.92005 -10.99112 -338.71160 - -420.02858 -4.49875 -343.07076 - -420.02858 -4.49912 -343.07076 - -420.19653 2.17741 -346.32157 - -420.19653 2.17707 -346.32157 - -419.39758 9.03766 -347.31983 - -419.39759 9.03734 -347.31983 - -417.60546 16.08188 -346.66063 - -417.60546 16.08160 -346.66063 - -414.79388 23.31000 -345.48901 - -414.79389 23.30974 -345.48901 - -410.93659 30.72193 -343.99265 - -410.93659 30.72173 -343.99265 - -406.68525 37.30446 -342.41931 - -406.68525 37.30431 -342.41931 - -401.60909 43.91892 -340.60221 - -401.60909 43.91878 -340.60221 - -395.70421 50.56398 -338.54438 - -395.70421 50.56385 -338.54438 - -388.96665 57.24182 -336.24936 - -388.96664 57.24165 -336.24936 - -379.51935 61.66444 -333.03395 - -379.51935 61.66422 -333.03395 - -369.46079 65.88671 -329.45900 - -369.46079 65.88651 -329.45900 - -358.76804 69.90881 -325.53405 - -358.76804 69.90863 -325.53405 - -347.46480 73.73087 -321.26922 - -347.46480 73.73069 -321.26922 - -335.57989 77.35297 -316.67523 - -335.57989 77.35281 -316.67523 - -323.14356 80.77523 -311.76334 - -323.14356 80.77508 -311.76334 - -310.18657 83.99774 -306.54531 - -310.18657 83.99759 -306.54531 - -296.73991 87.02057 -301.03344 - -296.73991 87.02043 -301.03344 - -282.83472 89.84382 -295.24045 - -282.83472 89.84368 -295.24045 - -268.50219 92.46756 -289.17951 - -268.50219 92.46741 -289.17951 + -71.41827 -139.10761 -110.14715 + -71.41856 -139.09982 -110.14715 + -92.14013 -137.15284 -121.39824 + -92.13983 -137.14513 -121.39824 + -112.55226 -134.98580 -132.56981 + -112.55226 -134.98601 -132.56981 + -132.62501 -132.61609 -143.64424 + -132.62501 -132.61638 -143.64424 + -152.32661 -130.03728 -154.60420 + -152.32661 -130.03763 -154.60420 + -171.62578 -127.25047 -165.43269 + -171.62578 -127.25088 -165.43269 + -190.49139 -124.25659 -176.11305 + -190.49139 -124.25705 -176.11305 + -208.89244 -121.05638 -186.62899 + -208.89244 -121.05688 -186.62899 + -226.79802 -117.65045 -196.96463 + -226.79802 -117.65099 -196.96463 + -244.17732 -114.03933 -207.10452 + -244.17732 -114.03990 -207.10452 + -260.99958 -110.22344 -217.03365 + -260.99958 -110.22405 -217.03365 + -277.23413 -106.20316 -226.73751 + -277.23413 -106.20379 -226.73751 + -292.85033 -101.97880 -236.20208 + -292.85034 -102.04935 -236.20208 + -308.11889 -96.41140 -245.64664 + -308.11889 -96.55481 -245.64664 + -322.52867 -90.74208 -254.81146 + -322.52867 -90.88986 -254.81146 + -336.05348 -84.90259 -263.68346 + -336.05348 -85.05474 -263.68346 + -348.66717 -78.89314 -272.25034 + -348.66717 -79.04965 -272.25034 + -360.34359 -72.71390 -280.50066 + -360.34359 -72.87476 -280.50066 + -371.05664 -66.36504 -288.42382 + -371.05664 -66.53024 -288.42382 + -380.78023 -59.84669 -296.01009 + -380.78023 -60.01616 -296.01009 + -389.48869 -53.16426 -303.25064 + -389.48869 -53.33798 -303.25064 + -397.15652 -46.31429 -310.13756 + -397.15652 -46.49234 -310.13756 + -403.75765 -39.29275 -316.66390 + -403.75765 -39.47519 -316.66390 + -409.26569 -32.09996 -322.82366 + -409.26569 -32.28677 -322.82366 + -413.65433 -24.73616 -328.61184 + -413.65433 -24.92734 -328.61184 + -416.89727 -17.20156 -334.02446 + -416.89726 -17.29882 -334.02446 + -418.92005 -10.99072 -338.71159 + -418.92005 -10.99112 -338.71159 + -420.02858 -4.49875 -343.07075 + -420.02858 -4.49912 -343.07075 + -420.19653 2.17741 -346.32156 + -420.19653 2.17707 -346.32156 + -419.39758 9.03766 -347.31981 + -419.39759 9.03734 -347.31981 + -417.60546 16.08188 -346.66062 + -417.60546 16.08160 -346.66062 + -414.79388 23.31000 -345.48899 + -414.79389 23.30974 -345.48899 + -410.93659 30.72193 -343.99264 + -410.93659 30.72173 -343.99264 + -406.68525 37.30446 -342.41930 + -406.68525 37.30431 -342.41930 + -401.60909 43.91892 -340.60220 + -401.60909 43.91878 -340.60220 + -395.70421 50.56398 -338.54437 + -395.70421 50.56385 -338.54437 + -388.96665 57.24182 -336.24935 + -388.96664 57.24165 -336.24935 + -379.51935 61.66444 -333.03394 + -379.51935 61.66422 -333.03394 + -369.46079 65.88671 -329.45899 + -369.46079 65.88651 -329.45899 + -358.76804 69.90881 -325.53404 + -358.76804 69.90863 -325.53404 + -347.46480 73.73087 -321.26921 + -347.46480 73.73069 -321.26921 + -335.57989 77.35297 -316.67522 + -335.57989 77.35281 -316.67522 + -323.14356 80.77523 -311.76332 + -323.14356 80.77508 -311.76332 + -310.18657 83.99774 -306.54530 + -310.18657 83.99759 -306.54530 + -296.73991 87.02057 -301.03343 + -296.73991 87.02043 -301.03343 + -282.83472 89.84382 -295.24044 + -282.83472 89.84368 -295.24044 + -268.50219 92.46756 -289.17950 + -268.50219 92.46741 -289.17950 -253.77354 94.89186 -282.86421 -253.77354 94.89171 -282.86421 - -238.68001 97.11678 -276.30850 - -238.68001 97.11663 -276.30850 - -223.25287 99.14239 -269.52668 - -223.25287 99.14224 -269.52668 - -207.52337 100.96876 -262.53335 - -207.52337 100.96860 -262.53335 - -191.52279 102.59593 -255.34343 - -191.52279 102.59576 -255.34343 - -175.28239 104.02396 -247.97206 - -175.28239 104.02379 -247.97206 + -238.68001 97.11678 -276.30849 + -238.68001 97.11663 -276.30849 + -223.25287 99.14239 -269.52667 + -223.25287 99.14224 -269.52667 + -207.52338 100.96876 -262.53334 + -207.52338 100.96860 -262.53334 + -191.52279 102.59593 -255.34342 + -191.52279 102.59576 -255.34342 + -175.28239 104.02396 -247.97205 + -175.28239 104.02379 -247.97205 -158.83342 105.25291 -240.43463 -158.83342 105.25273 -240.43463 - -142.20715 106.28281 -232.74673 - -142.20715 106.28264 -232.74673 - -125.43483 107.11373 -224.92411 - -125.43483 107.11355 -224.92411 - -108.54772 107.74569 -216.98265 - -108.54772 107.74551 -216.98265 - -91.57705 108.17875 -208.93835 - -91.57705 108.17856 -208.93835 - -74.55407 108.41294 -200.80728 - -74.55407 108.41276 -200.80728 - -57.51002 108.44830 -192.60559 - -57.51002 108.44813 -192.60559 - -40.47613 108.28488 -184.34940 - -40.47613 108.28471 -184.34940 - -23.48363 107.92270 -176.05486 - -23.48363 107.92253 -176.05486 + -142.20715 106.28281 -232.74672 + -142.20715 106.28264 -232.74672 + -125.43484 107.11373 -224.92410 + -125.43484 107.11355 -224.92410 + -108.54772 107.74569 -216.98264 + -108.54772 107.74551 -216.98264 + -91.57705 108.17875 -208.93834 + -91.57705 108.17856 -208.93834 + -74.55408 108.41294 -200.80728 + -74.55408 108.41276 -200.80728 + -57.51002 108.44830 -192.60558 + -57.51002 108.44813 -192.60558 + -40.47613 108.28488 -184.34939 + -40.47613 108.28471 -184.34939 + -23.48363 107.92270 -176.05485 + -23.48363 107.92253 -176.05485 -6.56373 107.36180 -167.73806 -6.56373 107.36165 -167.73806 - 10.25233 106.60222 -159.41504 - 10.25233 106.60208 -159.41504 - 26.93336 105.64398 -151.10172 - 26.93336 105.64386 -151.10172 + 10.25233 106.60222 -159.41503 + 10.25233 106.60208 -159.41503 + 26.93336 105.64398 -151.10171 + 26.93336 105.64386 -151.10171 43.44813 104.48712 -142.81390 43.44813 104.48703 -142.81390 59.76409 103.11431 -134.56724 59.76409 103.11424 -134.56724 - 75.84469 101.49232 -126.37718 + 75.84469 101.49231 -126.37718 75.84469 101.49228 -126.37718 91.65071 99.62017 -118.25896 91.65071 99.62017 -118.25896 107.14283 97.49775 -110.22755 107.14283 97.49780 -110.22755 - 122.28172 95.12502 -102.29763 - 122.28172 95.12512 -102.29763 + 122.28172 95.12501 -102.29762 + 122.28171 95.12512 -102.29762 137.02810 92.50272 -94.48353 - 137.02810 92.54686 -94.48353 + 137.02809 92.54686 -94.48353 150.18842 73.96530 -86.76270 150.18900 74.03711 -86.76270 160.50614 56.47574 -79.18530 160.50554 56.54545 -79.18530 168.06228 39.00939 -71.76122 - 168.06228 39.09508 -71.76122 + 168.06228 39.09507 -71.76122 172.83776 21.23468 -64.49767 172.83776 21.32239 -64.49767 - 174.76728 2.96136 -57.39923 - 174.76728 3.05170 -57.39923 - 173.76397 -15.91503 -50.46772 - 173.76397 -15.82167 -50.46772 - 169.72744 -35.46086 -43.70218 + 174.76728 2.96135 -57.39922 + 174.76728 3.05170 -57.39922 + 173.76396 -15.91503 -50.46772 + 173.76397 -15.82168 -50.46772 + 169.72743 -35.46086 -43.70218 169.72744 -35.36426 -43.70218 162.54818 -55.72498 -37.09875 162.54818 -55.62497 -37.09875 @@ -16703,11 +16835,11 @@ Displacements 152.13247 -77.20163 -30.65054 138.24785 -98.43814 -24.34756 138.22544 -98.90290 -24.34756 - 121.15691 -116.16781 -18.17654 + 121.15690 -116.16781 -18.17654 121.15694 -116.09062 -18.17654 101.90465 -126.66229 -12.12124 - 101.90469 -126.61843 -12.12124 - 81.51058 -130.61552 -6.16332 + 101.90469 -126.61842 -12.12124 + 81.51058 -130.61551 -6.16332 81.53141 -131.13566 -6.16332 60.99631 -127.52027 -0.28337 60.95486 -127.55483 -0.28337 @@ -16715,11 +16847,11 @@ Displacements 41.67883 -115.06491 5.53816 24.94970 -95.76746 11.31962 24.94973 -95.87231 11.31962 - 11.75722 -70.16732 17.07693 - 11.75724 -70.30381 17.07693 - 3.10634 -38.21091 22.82262 + 11.75722 -70.16732 17.07692 + 11.75724 -70.30381 17.07692 + 3.10634 -38.21090 22.82262 3.10635 -38.37856 22.82262 - 0.00000 0.09408 28.56491 + 0.00000 0.09408 28.56490 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17245,12 +17377,12 @@ Status character 112.07608 131.14421 743.21755 56.69448 110 15 - 112.08951 131.14421 741.62700 56.70791 110 15 - 170.57450 132.69316 750.39476 57.37833 110 23 - - 170.58885 132.69316 748.94232 57.39267 110 23 - + 170.58884 132.69316 748.94232 57.39267 110 23 - 228.83264 134.24211 757.69483 58.06339 110 30 - - 228.84785 134.24211 756.36129 58.07859 110 30 - + 228.84784 134.24211 756.36129 58.07859 110 30 - 286.97585 135.79105 765.10016 58.74962 110 38 - - 286.99187 135.79105 763.86963 58.76564 110 38 - - 345.08604 137.34000 772.59626 59.43699 110 45 - + 286.99186 135.79105 763.86963 58.76564 110 38 - + 345.08603 137.34000 772.59626 59.43699 110 45 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17676,16 +17808,16 @@ Status character 272.76107 71.25158 272.76107 22.82671 202 100 P 281.43054 72.80053 281.43054 23.55224 202 100 P 279.94096 72.80053 279.94096 23.55224 202 100 P - 267.75334 74.34947 288.56453 24.27776 110 93 - - 267.75334 74.34947 287.29701 24.27776 110 93 - - 206.76868 75.89842 295.88270 25.00329 110 70 - - 206.76868 75.89842 294.79250 25.00329 110 70 - + 267.75333 74.34947 288.56453 24.27776 110 93 - + 267.75333 74.34947 287.29701 24.27776 110 93 - + 206.76867 75.89842 295.88270 25.00329 110 70 - + 206.76867 75.89842 294.79250 25.00329 110 70 - 146.94120 77.44737 303.34656 25.72882 110 48 - 146.94120 77.44737 302.40039 25.72882 110 49 - 88.08758 78.99632 310.92777 26.45434 110 28 - 88.08758 78.99632 310.10030 26.45434 110 28 - - 30.01356 80.54526 318.60499 27.17987 110 9 - - 30.01356 80.54526 317.87650 27.17987 110 9 - + 30.01355 80.54526 318.60499 27.17987 110 9 - + 30.01355 80.54526 317.87650 27.17987 110 9 - 15.58293 82.09421 326.36174 27.90539 1 0 A 15.58349 82.09421 325.71668 27.90539 1 0 A 15.98865 83.64316 334.18515 28.63092 1 0 A @@ -18011,24 +18143,24 @@ Displacements 9.95371 19.23930 -10.95211 12.85372 19.43452 -22.06468 12.84655 19.24337 -22.06468 - 15.75031 19.48047 -33.18835 - 15.75031 19.48057 -33.18835 + 15.75031 19.48047 -33.18834 + 15.75031 19.48057 -33.18834 18.69284 19.76022 -44.32561 18.69284 19.76030 -44.32561 - 21.68056 20.08334 -55.47902 - 21.68056 -128.59841 -55.47902 + 21.68056 20.08334 -55.47901 + 21.68056 -128.59841 -55.47901 5.62437 -128.29539 -64.78585 5.62437 -128.29531 -64.78585 -10.39197 -127.96096 -74.09606 -10.39197 -127.96090 -74.09606 - -26.36454 -127.59487 -83.40005 - -26.36454 -127.59482 -83.40005 - -42.28935 -127.19693 -92.68823 - -42.28935 -127.19691 -92.68823 + -26.36454 -127.59487 -83.40004 + -26.36454 -127.59482 -83.40004 + -42.28935 -127.19693 -92.68822 + -42.28935 -127.19691 -92.68822 -48.64487 -127.02025 -96.39693 -48.64488 -127.02022 -96.39693 - -67.65065 -126.35680 -107.49263 - -67.65095 -126.34895 -107.49263 + -67.65065 -126.35680 -107.49262 + -67.65095 -126.34895 -107.49262 -86.54104 -125.48579 -118.52992 -86.54075 -125.47800 -118.52992 -105.28527 -124.41594 -129.49252 @@ -18041,129 +18173,129 @@ Displacements -160.32533 -119.79637 -161.77111 -178.13862 -117.68113 -172.27478 -178.13862 -117.68140 -172.27478 - -195.61324 -115.28036 -182.62469 - -195.61324 -115.28066 -182.62469 - -212.70659 -112.59725 -192.80576 - -212.70659 -112.59758 -192.80576 - -229.37656 -109.63542 -202.80323 - -229.37656 -109.63578 -202.80323 - -245.58164 -106.39862 -212.60271 - -245.58164 -106.39900 -212.60271 - -261.28086 -102.89073 -222.19022 - -261.28086 -102.89112 -222.19022 - -276.43385 -99.11572 -231.55221 - -276.43386 -99.17353 -231.55221 - -291.33733 -94.54196 -240.90629 - -291.33733 -94.66070 -240.90629 - -305.52941 -89.80694 -249.99585 - -305.52941 -89.93121 -249.99585 - -318.97697 -84.85777 -258.80801 - -318.97697 -84.98751 -258.80801 - -331.64725 -79.69693 -267.33055 - -331.64725 -79.83206 -267.33055 - -343.50786 -74.32683 -275.55198 - -343.50786 -74.46730 -275.55198 - -354.52678 -68.74989 -283.46153 - -354.52678 -68.89563 -283.46153 - -364.67238 -62.96846 -291.04919 - -364.67238 -63.11935 -291.04919 - -373.91376 -56.99014 -298.30574 - -373.91376 -57.14609 -298.30574 - -382.22053 -50.81360 -305.22281 - -382.22053 -50.97465 -305.22281 - -389.56205 -44.43690 -311.79285 - -389.56205 -44.60305 -311.79285 - -395.90770 -37.86236 -318.00920 - -395.90770 -38.03355 -318.00920 - -401.22721 -31.09217 -323.86609 - -401.22721 -31.26834 -323.86609 - -405.49063 -24.12839 -329.35869 - -405.49063 -24.21820 -329.35869 - -408.49950 -17.87984 -334.12939 - -408.49950 -17.88010 -334.12939 - -410.58928 -11.35073 -338.58027 - -410.58928 -11.35098 -338.58027 - -411.73284 -4.63295 -341.93020 - -411.73284 -4.63317 -341.93020 - -411.90339 2.27135 -343.03421 - -411.90339 2.27114 -343.03421 - -411.07442 9.36017 -342.48663 - -411.07442 9.35997 -342.48663 - -409.21970 16.63169 -341.43173 - -409.21970 16.63150 -341.43173 - -406.31326 24.08427 -340.05646 - -406.31326 24.08412 -340.05646 - -402.88942 30.69899 -338.59208 - -402.88942 30.69888 -338.59208 - -398.63699 37.34163 -336.88621 - -398.63699 37.34152 -336.88621 - -393.55262 44.01011 -334.94139 - -393.55262 44.01000 -334.94139 - -387.63297 50.70596 -332.76067 - -387.63307 50.70846 -332.76067 - -379.19167 55.51324 -329.69003 - -379.19156 55.51568 -329.69003 - -370.04155 60.46176 -326.26016 - -370.04155 60.46154 -326.26016 - -360.14704 65.16464 -322.47976 - -360.14703 65.16441 -322.47976 - -349.53844 69.62438 -318.35818 - -349.53844 69.62414 -318.35818 - -338.25136 73.84117 -313.90548 - -338.25136 73.84091 -313.90548 - -326.32279 77.81545 -309.13234 - -326.32279 77.81519 -309.13234 - -313.79013 81.54793 -304.05008 - -313.79013 81.54766 -304.05008 - -300.69094 85.03952 -298.67056 - -300.69094 85.03924 -298.67056 - -287.06273 88.29130 -293.00618 - -287.06273 88.29101 -293.00618 - -272.94294 91.30449 -287.06986 - -272.94294 91.30419 -287.06986 - -258.36883 94.08045 -280.87497 - -258.36883 94.08014 -280.87497 - -243.37748 96.62059 -274.43532 - -243.37748 96.62027 -274.43532 - -228.00575 98.92642 -267.76511 - -228.00575 98.92610 -267.76511 - -212.29030 100.99947 -260.87890 - -212.29030 100.99915 -260.87890 - -196.26754 102.84133 -253.79157 - -196.26754 102.84100 -253.79157 - -179.97365 104.45358 -246.51831 - -179.97365 104.45324 -246.51831 - -163.44454 105.83778 -239.07455 - -163.44454 105.83745 -239.07455 - -146.71592 106.99551 -231.47595 - -146.71592 106.99517 -231.47595 - -129.82323 107.92829 -223.73835 - -129.82323 107.92796 -223.73835 - -112.80168 108.63764 -215.87776 - -112.80168 108.63731 -215.87776 - -95.68625 109.12501 -207.91030 - -95.68625 109.12468 -207.91030 + -195.61324 -115.28036 -182.62468 + -195.61324 -115.28066 -182.62468 + -212.70659 -112.59725 -192.80575 + -212.70659 -112.59758 -192.80575 + -229.37656 -109.63542 -202.80322 + -229.37656 -109.63578 -202.80322 + -245.58164 -106.39862 -212.60270 + -245.58164 -106.39900 -212.60270 + -261.28086 -102.89073 -222.19021 + -261.28086 -102.89112 -222.19021 + -276.43385 -99.11572 -231.55220 + -276.43386 -99.17353 -231.55220 + -291.33733 -94.54196 -240.90628 + -291.33733 -94.66070 -240.90628 + -305.52941 -89.80694 -249.99584 + -305.52941 -89.93121 -249.99584 + -318.97697 -84.85777 -258.80800 + -318.97697 -84.98751 -258.80800 + -331.64725 -79.69693 -267.33054 + -331.64725 -79.83206 -267.33054 + -343.50786 -74.32683 -275.55197 + -343.50786 -74.46730 -275.55197 + -354.52678 -68.74989 -283.46152 + -354.52678 -68.89563 -283.46152 + -364.67238 -62.96846 -291.04917 + -364.67238 -63.11935 -291.04917 + -373.91376 -56.99014 -298.30573 + -373.91376 -57.14609 -298.30573 + -382.22053 -50.81360 -305.22280 + -382.22053 -50.97465 -305.22280 + -389.56205 -44.43690 -311.79284 + -389.56205 -44.60305 -311.79284 + -395.90770 -37.86236 -318.00919 + -395.90770 -38.03355 -318.00919 + -401.22721 -31.09217 -323.86607 + -401.22721 -31.26834 -323.86607 + -405.49063 -24.12839 -329.35868 + -405.49063 -24.21820 -329.35868 + -408.49950 -17.87984 -334.12937 + -408.49950 -17.88010 -334.12937 + -410.58928 -11.35073 -338.58026 + -410.58928 -11.35098 -338.58026 + -411.73284 -4.63295 -341.93019 + -411.73284 -4.63317 -341.93019 + -411.90339 2.27135 -343.03419 + -411.90339 2.27114 -343.03419 + -411.07442 9.36017 -342.48661 + -411.07442 9.35997 -342.48661 + -409.21970 16.63169 -341.43171 + -409.21970 16.63150 -341.43171 + -406.31326 24.08427 -340.05645 + -406.31326 24.08412 -340.05645 + -402.88942 30.69899 -338.59207 + -402.88942 30.69888 -338.59207 + -398.63699 37.34163 -336.88619 + -398.63699 37.34152 -336.88619 + -393.55262 44.01011 -334.94137 + -393.55262 44.01000 -334.94137 + -387.63297 50.70596 -332.76066 + -387.63307 50.70846 -332.76066 + -379.19167 55.51323 -329.69001 + -379.19156 55.51568 -329.69001 + -370.04155 60.46176 -326.26015 + -370.04155 60.46154 -326.26015 + -360.14704 65.16464 -322.47974 + -360.14704 65.16441 -322.47974 + -349.53844 69.62438 -318.35817 + -349.53844 69.62414 -318.35817 + -338.25136 73.84117 -313.90546 + -338.25136 73.84091 -313.90546 + -326.32279 77.81545 -309.13233 + -326.32279 77.81519 -309.13233 + -313.79013 81.54793 -304.05007 + -313.79013 81.54766 -304.05007 + -300.69094 85.03952 -298.67055 + -300.69094 85.03924 -298.67055 + -287.06274 88.29130 -293.00617 + -287.06274 88.29101 -293.00617 + -272.94294 91.30449 -287.06985 + -272.94294 91.30419 -287.06985 + -258.36883 94.08045 -280.87496 + -258.36883 94.08014 -280.87496 + -243.37748 96.62059 -274.43531 + -243.37748 96.62027 -274.43531 + -228.00575 98.92642 -267.76510 + -228.00575 98.92610 -267.76510 + -212.29030 100.99947 -260.87889 + -212.29030 100.99915 -260.87889 + -196.26754 102.84133 -253.79156 + -196.26754 102.84100 -253.79156 + -179.97365 104.45358 -246.51830 + -179.97365 104.45324 -246.51830 + -163.44454 105.83778 -239.07454 + -163.44454 105.83744 -239.07454 + -146.71592 106.99550 -231.47594 + -146.71592 106.99517 -231.47594 + -129.82323 107.92829 -223.73834 + -129.82323 107.92796 -223.73834 + -112.80168 108.63764 -215.87775 + -112.80168 108.63731 -215.87775 + -95.68625 109.12501 -207.91029 + -95.68625 109.12468 -207.91029 -78.51171 109.39182 -199.85218 -78.51171 109.39150 -199.85218 -61.31259 109.43942 -191.71968 -61.31259 109.43911 -191.71968 - -44.12323 109.26913 -183.52909 - -44.12323 109.26883 -183.52909 - -26.97776 108.88220 -175.29669 - -26.97776 108.88191 -175.29669 + -44.12323 109.26913 -183.52908 + -44.12323 109.26883 -183.52908 + -26.97776 108.88220 -175.29668 + -26.97776 108.88191 -175.29668 -9.91013 108.27983 -167.03872 -9.91013 108.27956 -167.03872 - 7.04592 107.46317 -158.77136 - 7.04592 107.46293 -158.77136 - 23.85680 106.43332 -150.51066 - 23.85680 106.43310 -150.51066 + 7.04592 107.46317 -158.77135 + 7.04592 107.46292 -158.77135 + 23.85680 106.43332 -150.51065 + 23.85680 106.43310 -150.51065 40.48909 105.19133 -142.27254 40.48909 105.19113 -142.27254 - 56.90819 103.72084 -134.07278 - 56.90819 103.72067 -134.07278 - 73.07566 101.98957 -125.92691 - 73.07565 101.98944 -125.92691 - 88.95051 99.99745 -117.85025 + 56.90819 103.72084 -134.07277 + 56.90819 103.72067 -134.07277 + 73.07565 101.98957 -125.92690 + 73.07565 101.98944 -125.92690 + 88.95051 99.99744 -117.85025 88.95051 99.99736 -117.85025 104.49182 97.74525 -109.85785 104.49182 97.74521 -109.85785 @@ -18173,12 +18305,12 @@ Displacements 134.41083 92.50774 -94.18433 147.59317 74.27265 -86.49517 147.59375 74.34250 -86.49517 - 157.98247 57.06737 -78.94697 - 157.98187 57.13542 -78.94697 + 157.98247 57.06737 -78.94696 + 157.98187 57.13542 -78.94696 165.65072 39.83058 -71.54966 165.65071 39.91486 -71.54966 - 170.57057 22.23566 -64.31060 - 170.57057 22.32222 -64.31060 + 170.57057 22.23566 -64.31059 + 170.57057 22.32222 -64.31059 172.66925 4.09710 -57.23446 172.66925 4.18653 -57.23446 171.85313 -14.68516 -50.32326 @@ -18187,7 +18319,7 @@ Displacements 168.01573 -34.07736 -43.57620 161.04205 -54.41302 -36.98961 161.04205 -54.31332 -36.98961 - 150.81123 -75.43275 -30.55681 + 150.81122 -75.43275 -30.55681 150.83342 -75.89501 -30.55681 137.15291 -97.16356 -24.26798 137.13050 -97.62830 -24.26798 @@ -18197,17 +18329,17 @@ Displacements 101.19310 -125.47983 -12.06703 80.97106 -129.57785 -6.12068 80.99189 -130.09756 -6.12068 - 60.61138 -126.60321 -0.25178 - 60.56997 -126.63817 -0.25178 + 60.61138 -126.60320 -0.25178 + 60.56997 -126.63816 -0.25178 41.40650 -114.75534 5.55907 41.42719 -114.30030 5.55907 24.80494 -95.17921 11.33008 24.80496 -95.28322 11.33008 - 11.69107 -69.76156 17.07709 + 11.69107 -69.76155 17.07709 11.69105 -69.89621 17.07709 - 3.08926 -37.99919 22.81256 + 3.08926 -37.99918 22.81256 3.08931 -38.16492 22.81256 - 0.00000 0.09357 28.54463 + 0.00000 0.09357 28.54462 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18734,11 +18866,11 @@ Status character 110.51856 131.14421 650.50506 54.92789 110 17 - 168.95426 132.69316 659.09739 55.65342 110 26 - 168.95426 132.69316 657.51280 55.65342 110 26 - - 227.14988 134.24211 666.08447 56.37895 110 34 - - 227.14988 134.24211 664.64940 56.37895 110 34 - - 285.23005 135.79105 673.20261 57.10447 110 42 - - 285.23005 135.79105 671.89759 57.10447 110 42 - - 343.27626 137.34000 680.43421 57.83000 110 50 - + 227.14987 134.24211 666.08447 56.37895 110 34 - + 227.14987 134.24211 664.64940 56.37895 110 34 - + 285.23004 135.79105 673.20261 57.10447 110 42 - + 285.23004 135.79105 671.89759 57.10447 110 42 - + 343.27625 137.34000 680.43421 57.83000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19164,10 +19296,10 @@ Status character 271.66972 71.25158 272.76107 22.82671 110 99 - 280.49321 72.80053 281.43054 23.55224 110 99 - 279.00363 72.80053 279.94096 23.55224 110 99 - - 266.95761 74.34947 288.56453 24.27776 110 93 - - 266.95761 74.34947 287.29701 24.27776 110 93 - - 206.10406 75.89842 295.88270 25.00329 110 70 - - 206.10406 75.89842 294.79250 25.00329 110 70 - + 266.95760 74.34947 288.56453 24.27776 110 93 - + 266.95760 74.34947 287.29701 24.27776 110 93 - + 206.10405 75.89842 295.88270 25.00329 110 70 - + 206.10405 75.89842 294.79250 25.00329 110 70 - 146.39909 77.44737 303.34656 25.72882 110 48 - 146.39909 77.44737 302.40039 25.72882 110 48 - 87.66117 78.99632 310.92777 26.45434 110 28 - @@ -19229,11 +19361,11 @@ CalculationStatus -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 6 5 1.000 0 0 -23.43730 -32.48666 -6.73046 16.29470 18.68516 2 7 6 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 0 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 6 5 1.000 0 0 - -420.19653 -142.19763 -347.31983 67.68173 72.50354 3 7 6 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 6 5 1.000 0 0 + -420.19653 -142.19763 -347.31981 67.68173 72.50354 3 7 6 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 0 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 6 5 1.000 0 0 - -411.90339 -130.09756 -343.03421 66.59876 71.00256 4 7 6 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 6 5 1.000 0 0 + -411.90339 -130.09756 -343.03419 66.59876 71.00256 4 7 6 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shi index 8562a751..82926749 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:29:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shd index 8b08383c..88bfd3e9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:15 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,10 +1102,10 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16414,216 +16546,216 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00025 0.00657 167.08360 - 0.20186 4.02896 133.79116 - 0.20211 4.03553 133.79116 - 1.11128 8.61225 100.49848 - 1.11128 8.61226 100.49848 + -0.00025 0.00657 167.08363 + 0.20186 4.02896 133.79118 + 0.20211 4.03553 133.79118 + 1.11128 8.61225 100.49849 + 1.11128 8.61226 100.49849 2.75992 13.73841 67.20479 2.75992 13.73843 67.20479 - 5.22405 19.41838 33.90865 - 5.20245 19.99437 33.90865 + 5.22405 19.41838 33.90866 + 5.20245 19.99437 33.90866 8.61084 24.95212 0.60794 8.65404 24.95214 0.60794 - 12.55671 26.55067 -32.70026 - 12.53511 25.97478 -32.70026 - 16.43133 25.97478 -66.01928 - 16.43133 25.97490 -66.01928 - 20.32756 25.97490 -99.35249 - 20.32756 25.97525 -99.35249 - 24.22384 25.97525 -132.70324 - 24.22385 25.97565 -132.70324 - 28.12020 25.97565 -166.07491 - 28.12020 -142.02412 -166.07491 - 6.81658 -142.02412 -199.46723 - 6.81658 -142.02393 -199.46723 - -14.48701 -142.02393 -232.86543 - -14.48701 -142.02381 -232.86543 - -35.76703 -141.70567 -266.25113 - -35.76703 -141.70562 -266.25113 - -42.83954 -141.19081 -277.37374 - -42.83955 -141.21183 -277.37374 - -64.43379 -139.47624 -311.56845 - -64.43409 -139.51420 -311.56845 - -85.74971 -137.55204 -345.70468 - -85.74941 -137.59593 -345.70468 - -106.75266 -135.40981 -379.76305 - -106.75266 -135.46746 -379.76305 - -127.41137 -133.05941 -413.72451 - -127.41137 -133.12266 -413.72451 - -147.69238 -130.49427 -447.57029 - -147.69238 -130.56309 -447.57029 - -167.56274 -127.71561 -481.28197 - -167.56273 -127.78996 -481.28197 - -186.98967 -124.72444 -514.84153 - -186.98967 -124.80428 -514.84153 - -205.94055 -121.52154 -548.23131 - -205.94055 -121.60685 -548.23131 - -224.38286 -118.10759 -581.43411 - -224.38286 -118.19835 -581.43411 - -242.28416 -114.48314 -614.43318 - -242.28416 -114.57932 -614.43318 - -259.61210 -110.64865 -647.21227 - -259.61210 -110.75024 -647.21227 - -276.33440 -106.60450 -679.75565 - -276.33440 -106.71150 -679.75565 - -292.41883 -102.35103 -712.04813 - -292.41884 -102.47693 -712.04813 - -307.75086 -96.80887 -744.07511 - -307.75086 -96.95305 -744.07511 - -322.21959 -91.11025 -775.82269 - -322.21959 -91.25880 -775.82269 - -335.79886 -85.24150 -807.27771 - -335.79886 -85.39441 -807.27771 - -348.46249 -79.20281 -838.42786 - -348.46249 -79.36007 -838.42786 - -360.18437 -72.99436 -869.26164 - -360.18437 -73.15597 -869.26164 - -370.93838 -66.61631 -899.76839 - -370.93838 -66.78227 -899.76839 - -380.69844 -60.06880 -929.93836 - -380.69844 -60.23902 -929.93836 - -389.43889 -53.35728 -959.76269 - -389.43889 -53.53175 -959.76269 - -397.13425 -46.47825 -989.23344 - -397.13425 -46.65705 -989.23344 - -403.75842 -39.42767 -1018.34363 - -403.75842 -39.61086 -1018.34363 - -409.28504 -32.20586 -1047.08723 - -409.28504 -32.39343 -1047.08723 - -413.68780 -24.81306 -1075.45924 - -413.68780 -25.00499 -1075.45924 - -416.94040 -17.24948 -1103.45565 - -416.94040 -17.34711 -1103.45565 - -418.96811 -11.01139 -1129.11341 - -418.96811 -11.01180 -1129.11341 - -420.07762 -4.49180 -1153.68526 - -420.07762 -4.49217 -1153.68526 - -420.24260 2.21201 -1170.60083 - -420.24260 2.21166 -1170.60083 - -419.43674 9.09991 -1171.09815 - -419.43674 9.09959 -1171.09815 - -417.63375 16.17180 -1159.25947 - -417.63375 16.17151 -1159.25947 - -414.80735 23.42760 -1144.60410 - -414.80735 23.42733 -1144.60410 - -410.93127 30.86722 -1129.62400 - -410.93128 30.86701 -1129.62400 - -406.65802 37.52763 -1116.25239 - -406.65802 37.52748 -1116.25239 - -401.54351 44.32729 -1102.63703 - -401.54351 44.32715 -1102.63703 - -395.57265 51.21121 -1088.78098 - -395.57265 51.21108 -1088.78098 - -388.73926 58.12791 -1074.68783 - -388.73926 58.12774 -1074.68783 - -379.12912 62.85082 -1056.64068 - -379.12913 62.85060 -1056.64068 - -368.86054 67.37338 -1038.23436 - -368.86054 67.37317 -1038.23436 - -357.91058 71.69577 -1019.47862 - -357.91058 71.69558 -1019.47862 - -346.30293 75.81812 -1000.38381 - -346.30293 75.81794 -1000.38381 - -334.06644 79.74052 -980.96095 - -334.06644 79.74035 -980.96095 - -321.23132 83.46307 -961.22162 - -321.23132 83.46292 -961.22162 - -307.82836 86.98587 -941.17798 - -307.82836 86.98572 -941.17798 - -293.88855 90.30901 -920.84272 - -293.88855 90.30886 -920.84272 - -279.44301 93.43256 -900.22905 - -279.44301 93.43241 -900.22905 - -264.52293 96.35659 -879.35066 - -264.52293 96.35644 -879.35066 - -249.15955 99.08119 -858.22168 - -249.15955 99.08104 -858.22168 - -233.38411 101.60641 -836.85666 - -233.38411 101.60626 -836.85666 - -217.22786 103.93233 -815.27054 - -217.22786 103.93217 -815.27054 - -200.72206 106.05899 -793.47864 - -200.72206 106.05884 -793.47864 - -183.89799 107.98647 -771.49659 - -183.89799 107.98631 -771.49659 - -166.78691 109.71480 -749.34032 - -166.78691 109.71464 -749.34032 - -149.42007 111.24405 -727.02605 - -149.42007 111.24388 -727.02605 - -131.82874 112.57426 -704.57022 - -131.82874 112.57409 -704.57022 - -114.04417 113.70548 -681.98951 - -114.04417 113.70530 -681.98951 - -96.09761 114.63775 -659.30076 - -96.09761 114.63757 -659.30076 - -78.02031 115.37111 -636.52096 - -78.02031 115.37093 -636.52096 - -59.84351 115.90561 -613.66726 - -59.84351 115.90543 -613.66726 - -41.59844 116.24127 -590.75686 - -41.59844 116.24110 -590.75686 - -23.31635 116.37815 -567.80705 - -23.31635 116.37798 -567.80705 - -5.02844 116.31628 -544.83515 - -5.02845 116.31612 -544.83515 - 13.23404 116.05568 -521.85848 - 13.23404 116.05553 -521.85848 - 31.43988 115.59640 -498.89435 - 31.43988 115.59627 -498.89435 - 49.55787 114.93847 -475.96000 - 49.55787 114.93835 -475.96000 - 67.55681 114.08191 -453.07259 - 67.55681 114.08182 -453.07259 - 85.40414 113.00975 -430.24918 - 85.40414 113.00968 -430.24918 - 103.06338 111.68867 -407.50667 - 103.06338 111.68864 -407.50667 - 120.49535 110.11764 -384.86179 - 120.49534 110.11765 -384.86179 - 137.66074 108.29655 -362.33106 - 137.66074 108.29660 -362.33106 - 154.52028 106.22534 -339.93073 - 154.52028 106.22545 -339.93073 - 171.03471 103.90478 -317.67678 - 171.03470 103.94814 -317.67678 - 186.01996 85.67986 -295.47946 - 186.02054 85.75013 -295.47946 - 198.21184 68.50211 -273.45985 - 198.21124 68.57031 -273.45985 - 207.69139 51.34769 -251.62963 - 207.69139 51.43188 -251.62963 - 214.43954 33.88501 -229.99785 - 214.43954 33.97122 -229.99785 - 218.39099 15.92380 -208.57098 - 218.39100 16.01265 -208.57098 - 219.45891 -2.64038 -187.35277 - 219.45891 -2.54853 -187.35277 - 217.54292 -21.87391 -166.34425 - 217.54292 -21.77881 -166.34425 - 212.53351 -41.82563 -145.54358 - 212.53351 -41.72713 -145.54358 - 204.31479 -62.52768 -124.94595 - 204.31479 -62.42448 -124.94595 - 192.72767 -84.49699 -104.54348 - 192.72767 -84.38880 -104.54348 - 177.60275 -107.34429 -84.32509 - 177.60276 -107.23222 -84.32509 - 158.80701 -130.99752 -64.27629 - 158.80701 -130.88171 -64.27629 - 136.21209 -155.47044 -44.37909 - 136.28286 -157.15607 -44.37909 + 12.55671 26.55067 -32.70027 + 12.53511 25.97478 -32.70027 + 16.43133 25.97478 -66.01929 + 16.43133 25.97490 -66.01929 + 20.32756 25.97490 -99.35251 + 20.32756 25.97525 -99.35251 + 24.22384 25.97525 -132.70327 + 24.22385 25.97565 -132.70327 + 28.12020 25.97565 -166.07494 + 28.12020 -142.02412 -166.07494 + 6.81658 -142.02412 -199.46726 + 6.81658 -142.02393 -199.46726 + -14.48701 -142.02393 -232.86547 + -14.48701 -142.02381 -232.86547 + -35.76703 -141.70567 -266.25117 + -35.76703 -141.70562 -266.25117 + -42.83954 -141.19081 -277.37378 + -42.83955 -141.21183 -277.37378 + -64.43379 -139.47624 -311.56850 + -64.43409 -139.51420 -311.56850 + -85.74971 -137.55204 -345.70473 + -85.74941 -137.59593 -345.70473 + -106.75266 -135.40981 -379.76311 + -106.75266 -135.46746 -379.76311 + -127.41137 -133.05941 -413.72457 + -127.41137 -133.12266 -413.72457 + -147.69238 -130.49427 -447.57036 + -147.69238 -130.56309 -447.57036 + -167.56274 -127.71561 -481.28205 + -167.56273 -127.78996 -481.28205 + -186.98967 -124.72444 -514.84161 + -186.98967 -124.80428 -514.84161 + -205.94055 -121.52154 -548.23140 + -205.94055 -121.60685 -548.23140 + -224.38286 -118.10759 -581.43420 + -224.38286 -118.19835 -581.43420 + -242.28416 -114.48314 -614.43328 + -242.28416 -114.57932 -614.43328 + -259.61210 -110.64865 -647.21237 + -259.61210 -110.75024 -647.21237 + -276.33440 -106.60450 -679.75576 + -276.33440 -106.71150 -679.75576 + -292.41883 -102.35103 -712.04824 + -292.41884 -102.47693 -712.04824 + -307.75086 -96.80887 -744.07523 + -307.75086 -96.95305 -744.07523 + -322.21959 -91.11025 -775.82281 + -322.21959 -91.25880 -775.82281 + -335.79886 -85.24150 -807.27784 + -335.79886 -85.39441 -807.27784 + -348.46249 -79.20281 -838.42800 + -348.46249 -79.36007 -838.42800 + -360.18437 -72.99436 -869.26178 + -360.18437 -73.15597 -869.26178 + -370.93838 -66.61631 -899.76854 + -370.93838 -66.78227 -899.76854 + -380.69844 -60.06880 -929.93852 + -380.69844 -60.23902 -929.93852 + -389.43889 -53.35728 -959.76285 + -389.43889 -53.53175 -959.76285 + -397.13424 -46.47825 -989.23361 + -397.13425 -46.65705 -989.23361 + -403.75842 -39.42767 -1018.34379 + -403.75842 -39.61086 -1018.34379 + -409.28504 -32.20586 -1047.08740 + -409.28504 -32.39343 -1047.08740 + -413.68780 -24.81306 -1075.45942 + -413.68780 -25.00499 -1075.45942 + -416.94040 -17.24948 -1103.45584 + -416.94039 -17.34711 -1103.45584 + -418.96811 -11.01139 -1129.11360 + -418.96811 -11.01180 -1129.11360 + -420.07762 -4.49180 -1153.68545 + -420.07762 -4.49217 -1153.68545 + -420.24260 2.21201 -1170.60103 + -420.24260 2.21166 -1170.60103 + -419.43674 9.09991 -1171.09835 + -419.43674 9.09959 -1171.09835 + -417.63375 16.17180 -1159.25966 + -417.63375 16.17151 -1159.25966 + -414.80735 23.42760 -1144.60429 + -414.80735 23.42733 -1144.60429 + -410.93127 30.86722 -1129.62419 + -410.93127 30.86701 -1129.62419 + -406.65802 37.52763 -1116.25258 + -406.65802 37.52748 -1116.25258 + -401.54351 44.32729 -1102.63721 + -401.54351 44.32715 -1102.63721 + -395.57265 51.21121 -1088.78116 + -395.57265 51.21108 -1088.78116 + -388.73926 58.12791 -1074.68801 + -388.73926 58.12774 -1074.68801 + -379.12912 62.85082 -1056.64085 + -379.12912 62.85060 -1056.64085 + -368.86054 67.37338 -1038.23453 + -368.86054 67.37318 -1038.23453 + -357.91058 71.69577 -1019.47878 + -357.91058 71.69559 -1019.47878 + -346.30293 75.81812 -1000.38398 + -346.30293 75.81794 -1000.38398 + -334.06643 79.74052 -980.96111 + -334.06643 79.74035 -980.96111 + -321.23132 83.46307 -961.22177 + -321.23132 83.46292 -961.22177 + -307.82836 86.98588 -941.17813 + -307.82836 86.98572 -941.17813 + -293.88854 90.30901 -920.84287 + -293.88854 90.30886 -920.84287 + -279.44301 93.43256 -900.22920 + -279.44301 93.43241 -900.22920 + -264.52293 96.35659 -879.35080 + -264.52293 96.35644 -879.35080 + -249.15955 99.08119 -858.22182 + -249.15955 99.08104 -858.22182 + -233.38410 101.60641 -836.85679 + -233.38410 101.60626 -836.85679 + -217.22785 103.93233 -815.27068 + -217.22785 103.93217 -815.27068 + -200.72206 106.05899 -793.47877 + -200.72206 106.05884 -793.47877 + -183.89799 107.98647 -771.49671 + -183.89799 107.98631 -771.49671 + -166.78690 109.71481 -749.34044 + -166.78690 109.71464 -749.34044 + -149.42007 111.24405 -727.02617 + -149.42007 111.24388 -727.02617 + -131.82874 112.57426 -704.57034 + -131.82874 112.57409 -704.57034 + -114.04417 113.70548 -681.98962 + -114.04417 113.70530 -681.98962 + -96.09761 114.63775 -659.30086 + -96.09761 114.63757 -659.30086 + -78.02031 115.37111 -636.52107 + -78.02031 115.37093 -636.52107 + -59.84350 115.90561 -613.66736 + -59.84350 115.90543 -613.66736 + -41.59844 116.24127 -590.75696 + -41.59844 116.24110 -590.75696 + -23.31634 116.37815 -567.80714 + -23.31634 116.37798 -567.80714 + -5.02844 116.31628 -544.83524 + -5.02844 116.31612 -544.83524 + 13.23404 116.05568 -521.85857 + 13.23404 116.05553 -521.85857 + 31.43988 115.59640 -498.89443 + 31.43988 115.59627 -498.89443 + 49.55788 114.93847 -475.96007 + 49.55788 114.93835 -475.96007 + 67.55681 114.08191 -453.07266 + 67.55681 114.08182 -453.07266 + 85.40414 113.00975 -430.24925 + 85.40414 113.00969 -430.24925 + 103.06339 111.68867 -407.50674 + 103.06339 111.68864 -407.50674 + 120.49535 110.11765 -384.86186 + 120.49535 110.11765 -384.86186 + 137.66075 108.29655 -362.33112 + 137.66075 108.29661 -362.33112 + 154.52028 106.22535 -339.93079 + 154.52028 106.22545 -339.93079 + 171.03471 103.90478 -317.67683 + 171.03471 103.94814 -317.67683 + 186.01997 85.67986 -295.47951 + 186.02055 85.75013 -295.47951 + 198.21184 68.50211 -273.45990 + 198.21125 68.57031 -273.45990 + 207.69140 51.34769 -251.62967 + 207.69139 51.43188 -251.62967 + 214.43954 33.88501 -229.99789 + 214.43954 33.97122 -229.99789 + 218.39100 15.92380 -208.57101 + 218.39100 16.01265 -208.57101 + 219.45892 -2.64038 -187.35281 + 219.45892 -2.54853 -187.35281 + 217.54292 -21.87391 -166.34428 + 217.54292 -21.77881 -166.34428 + 212.53351 -41.82563 -145.54361 + 212.53352 -41.72712 -145.54361 + 204.31479 -62.52768 -124.94597 + 204.31480 -62.42448 -124.94597 + 192.72767 -84.49699 -104.54350 + 192.72768 -84.38880 -104.54350 + 177.60276 -107.34429 -84.32511 + 177.60276 -107.23222 -84.32511 + 158.80701 -130.99752 -64.27630 + 158.80702 -130.88171 -64.27630 + 136.21210 -155.47044 -44.37910 + 136.28286 -157.15607 -44.37910 109.60524 -180.07533 -24.61187 109.53432 -181.78668 -24.61187 - 79.75275 -191.83061 -4.94916 - 79.75281 -191.83045 -4.94916 - 50.20135 -178.20483 14.63724 - 50.20140 -178.32315 14.63724 - 24.70441 -141.03470 34.17529 - 24.70445 -141.26143 34.17529 - 6.76590 -82.36070 53.68911 - 6.69598 -80.90958 53.68911 - -0.06995 -1.58399 73.19557 + 79.75276 -191.83062 -4.94917 + 79.75281 -191.83046 -4.94917 + 50.20136 -178.20484 14.63724 + 50.20141 -178.32316 14.63724 + 24.70442 -141.03471 34.17530 + 24.70445 -141.26144 34.17530 + 6.76590 -82.36070 53.68912 + 6.69598 -80.90958 53.68912 + -0.06995 -1.58399 73.19558 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16951,7 +17083,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 32.96830 0.00000 79.15458 26.18108 110 42 - - 30.44815 0.00000 91.92500 23.66092 110 33 - + 30.44814 0.00000 91.92500 23.66092 110 33 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17146,10 +17278,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 203.53043 133.18366 747.78252 57.15802 110 27 - 203.54488 133.18366 746.33401 57.17248 110 27 - - 399.59602 134.73261 755.08820 57.84309 110 53 - - 399.61133 134.73261 753.75802 57.85840 110 53 - - 595.42042 136.28155 762.49856 58.52932 110 78 - - 595.43654 136.28155 761.27091 58.54544 110 78 - + 399.59605 134.73261 755.08820 57.84309 110 53 - + 399.61136 134.73261 753.75802 57.85840 110 53 - + 595.42048 136.28155 762.49856 58.52932 110 78 - + 595.43660 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -17582,10 +17714,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.29853 78.09276 318.60499 27.17987 110 86 - - 273.29853 78.09276 317.87650 27.17987 110 86 - - 77.39701 79.64171 326.36174 27.90539 110 24 - - 77.39701 79.64171 325.71668 27.90539 110 24 - + 273.29860 78.09276 318.60499 27.17987 110 86 - + 273.29860 78.09276 317.87650 27.17987 110 86 - + 77.39705 79.64171 326.36174 27.90539 110 24 - + 77.39705 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -22481,186 +22613,186 @@ Displacements 12.56076 25.97133 -14.28992 16.45646 25.97133 -31.53893 16.45646 25.97146 -31.53893 - 20.35217 25.97146 -48.80215 - 20.35217 25.97181 -48.80215 - 24.24794 25.97181 -66.08294 - 24.24794 25.97221 -66.08294 + 20.35217 25.97146 -48.80216 + 20.35217 25.97181 -48.80216 + 24.24794 25.97181 -66.08295 + 24.24794 25.97221 -66.08295 28.14377 25.97221 -83.38467 28.14378 -142.02757 -83.38467 - 6.83964 -142.02757 -100.70706 - 6.83964 -142.02738 -100.70706 - -14.46446 -142.02738 -118.03536 - -14.46446 -142.02725 -118.03536 + 6.83964 -142.02757 -100.70707 + 6.83964 -142.02738 -100.70707 + -14.46446 -142.02738 -118.03537 + -14.46446 -142.02725 -118.03537 -35.74501 -141.70911 -135.35118 -35.74500 -141.70907 -135.35118 - -42.81769 -141.19426 -141.11716 - -42.81769 -141.21527 -141.11716 - -64.41247 -139.47969 -158.82997 - -64.41276 -139.51765 -158.82997 - -85.72892 -137.55549 -176.48431 - -85.72861 -137.59938 -176.48431 - -106.73240 -135.41326 -194.06081 - -106.73240 -135.47091 -194.06081 - -127.39164 -133.06285 -211.54042 - -127.39163 -133.12611 -211.54042 - -147.67317 -130.49771 -228.90437 - -147.67317 -130.56653 -228.90437 - -167.54406 -127.71906 -246.13424 - -167.54406 -127.79340 -246.13424 - -186.97153 -124.72788 -263.21200 - -186.97153 -124.80772 -263.21200 - -205.92294 -121.52499 -280.12000 - -205.92294 -121.61030 -280.12000 - -224.36577 -118.11104 -296.84104 - -224.36577 -118.20179 -296.84104 - -242.26760 -114.48659 -313.35836 - -242.26760 -114.58277 -313.35836 - -259.59607 -110.65209 -329.65572 - -259.59607 -110.75369 -329.65572 - -276.31891 -106.60794 -345.71738 - -276.31890 -106.71494 -345.71738 - -292.40387 -102.35448 -361.52815 - -292.40387 -102.48037 -361.52815 - -307.73642 -96.81232 -377.07344 - -307.73642 -96.95649 -377.07344 - -322.20569 -91.11370 -392.33934 - -322.20569 -91.26224 -392.33934 - -335.78548 -85.24494 -407.31270 - -335.78548 -85.39785 -407.31270 - -348.44965 -79.20625 -421.98120 - -348.44965 -79.36352 -421.98120 - -360.17205 -72.99781 -436.33333 - -360.17205 -73.15942 -436.33333 - -370.92659 -66.61976 -450.35845 - -370.92659 -66.78571 -450.35845 - -380.68718 -60.07224 -464.04681 - -380.68718 -60.24247 -464.04681 - -389.42817 -53.36072 -477.38952 - -389.42817 -53.53519 -477.38952 - -397.12405 -46.48169 -490.37867 - -397.12405 -46.66050 -490.37867 - -403.74875 -39.43112 -503.00727 - -403.74875 -39.61430 -503.00727 - -409.27591 -32.20931 -515.26929 - -409.27591 -32.39687 -515.26929 - -413.67920 -24.81651 -527.15972 - -413.67920 -25.00843 -527.15972 - -416.93232 -17.25292 -538.67457 - -416.93232 -17.35056 -538.67457 - -418.96053 -11.01484 -549.02803 - -418.96053 -11.01525 -549.02803 - -420.07053 -4.49524 -558.86110 - -420.07053 -4.49562 -558.86110 - -420.23600 2.20856 -565.79823 - -420.23600 2.20821 -565.79823 - -419.43063 9.09646 -566.61418 - -419.43063 9.09614 -566.61418 - -417.62813 16.16835 -562.88686 - -417.62813 16.16806 -562.88686 - -414.80223 23.42415 -558.03424 - -414.80223 23.42389 -558.03424 - -410.92664 30.86377 -552.85689 - -410.92665 30.86357 -552.85689 - -406.65382 37.52418 -548.06270 - -406.65382 37.52403 -548.06270 - -401.53974 44.32384 -543.02475 - -401.53974 44.32370 -543.02475 - -395.56932 51.20777 -537.74612 - -395.56932 51.20764 -537.74612 - -388.73635 58.12447 -532.23039 - -388.73635 58.12429 -532.23039 - -379.12676 62.84737 -524.96628 - -379.12676 62.84715 -524.96628 - -368.85871 67.36993 -517.34302 - -368.85871 67.36973 -517.34302 - -357.90930 71.69233 -509.37032 - -357.90930 71.69214 -509.37032 - -346.30219 75.81467 -501.05857 - -346.30219 75.81450 -501.05857 - -334.06624 79.73707 -492.41875 - -334.06624 79.73691 -492.41875 - -321.23166 83.45963 -483.46247 - -321.23166 83.45947 -483.46247 - -307.82924 86.98243 -474.20188 - -307.82924 86.98228 -474.20188 - -293.88997 90.30556 -464.64967 - -293.88997 90.30541 -464.64967 - -279.44497 93.42911 -454.81906 - -279.44497 93.42896 -454.81906 - -264.52544 96.35315 -444.72371 - -264.52544 96.35300 -444.72371 - -249.16260 99.07774 -434.37777 - -249.16260 99.07759 -434.37777 - -233.38769 101.60297 -423.79580 - -233.38769 101.60282 -423.79580 - -217.23199 103.92888 -412.99272 - -217.23199 103.92873 -412.99272 - -200.72673 106.05555 -401.98385 - -200.72673 106.05539 -401.98385 - -183.90320 107.98302 -390.78483 - -183.90320 107.98286 -390.78483 - -166.79266 109.71136 -379.41159 - -166.79266 109.71119 -379.41159 - -149.42636 111.24061 -367.88033 - -149.42636 111.24044 -367.88033 - -131.83557 112.57082 -356.20752 - -131.83557 112.57064 -356.20752 - -114.05155 113.70203 -344.40981 - -114.05155 113.70186 -344.40981 - -96.10553 114.63430 -332.50406 - -96.10553 114.63412 -332.50406 - -78.02877 115.36766 -320.50726 - -78.02877 115.36748 -320.50726 - -59.85251 115.90216 -308.43654 - -59.85251 115.90198 -308.43654 - -41.60799 116.23783 -296.30912 - -41.60799 116.23765 -296.30912 - -23.32643 116.37471 -284.14227 - -23.32643 116.37454 -284.14227 - -5.03907 116.31283 -271.95333 - -5.03907 116.31267 -271.95333 - 13.22287 116.05224 -259.75961 - 13.22287 116.05209 -259.75961 - 31.42817 115.59296 -247.57841 - 31.42817 115.59282 -247.57841 - 49.54562 114.93502 -235.42699 - 49.54562 114.93491 -235.42699 - 67.54402 114.07847 -223.32249 - 67.54402 114.07837 -223.32249 - 85.39081 113.00630 -211.28198 - 85.39081 113.00624 -211.28198 - 103.04951 111.68523 -199.32236 - 103.04951 111.68520 -199.32236 - 120.48093 110.11420 -187.46036 - 120.48093 110.11421 -187.46036 - 137.64579 108.29311 -175.71249 - 137.64578 108.29316 -175.71249 - 154.50478 106.22190 -164.09501 - 154.50478 106.22201 -164.09501 - 171.01867 103.90134 -152.62389 - 171.01866 103.94470 -152.62389 - 186.00338 85.67642 -141.26098 - 186.00396 85.74669 -141.26098 - 198.19471 68.49867 -130.07577 - 198.19411 68.56686 -130.07577 - 207.67372 51.34424 -119.07992 - 207.67372 51.42843 -119.07992 - 214.42132 33.88156 -108.28251 - 214.42132 33.96777 -108.28251 - 218.37224 15.92036 -97.68998 - 218.37224 16.00921 -97.68998 - 219.43961 -2.64382 -87.30610 - 219.43961 -2.55197 -87.30610 - 217.52307 -21.87735 -77.13189 - 217.52307 -21.78226 -77.13189 + -42.81769 -141.19426 -141.11717 + -42.81769 -141.21527 -141.11717 + -64.41247 -139.47969 -158.82998 + -64.41276 -139.51765 -158.82998 + -85.72892 -137.55549 -176.48432 + -85.72861 -137.59938 -176.48432 + -106.73240 -135.41326 -194.06082 + -106.73240 -135.47091 -194.06082 + -127.39164 -133.06285 -211.54043 + -127.39163 -133.12611 -211.54043 + -147.67317 -130.49771 -228.90438 + -147.67317 -130.56653 -228.90438 + -167.54406 -127.71906 -246.13426 + -167.54406 -127.79340 -246.13426 + -186.97153 -124.72788 -263.21201 + -186.97153 -124.80772 -263.21201 + -205.92294 -121.52499 -280.12001 + -205.92294 -121.61030 -280.12001 + -224.36577 -118.11104 -296.84105 + -224.36577 -118.20179 -296.84105 + -242.26760 -114.48659 -313.35837 + -242.26760 -114.58277 -313.35837 + -259.59607 -110.65209 -329.65573 + -259.59607 -110.75369 -329.65573 + -276.31891 -106.60794 -345.71739 + -276.31890 -106.71494 -345.71739 + -292.40387 -102.35448 -361.52817 + -292.40387 -102.48037 -361.52817 + -307.73642 -96.81232 -377.07346 + -307.73642 -96.95649 -377.07346 + -322.20569 -91.11370 -392.33936 + -322.20569 -91.26224 -392.33936 + -335.78548 -85.24494 -407.31272 + -335.78548 -85.39785 -407.31272 + -348.44965 -79.20625 -421.98122 + -348.44965 -79.36352 -421.98122 + -360.17205 -72.99781 -436.33335 + -360.17205 -73.15942 -436.33335 + -370.92659 -66.61976 -450.35848 + -370.92659 -66.78571 -450.35848 + -380.68718 -60.07224 -464.04683 + -380.68718 -60.24247 -464.04683 + -389.42817 -53.36072 -477.38955 + -389.42817 -53.53519 -477.38955 + -397.12405 -46.48169 -490.37870 + -397.12405 -46.66050 -490.37870 + -403.74875 -39.43112 -503.00729 + -403.74875 -39.61430 -503.00729 + -409.27591 -32.20931 -515.26931 + -409.27591 -32.39687 -515.26931 + -413.67920 -24.81651 -527.15975 + -413.67920 -25.00843 -527.15975 + -416.93232 -17.25292 -538.67460 + -416.93232 -17.35056 -538.67460 + -418.96053 -11.01484 -549.02806 + -418.96053 -11.01525 -549.02806 + -420.07053 -4.49524 -558.86113 + -420.07053 -4.49562 -558.86113 + -420.23600 2.20856 -565.79826 + -420.23600 2.20821 -565.79826 + -419.43063 9.09646 -566.61421 + -419.43063 9.09614 -566.61421 + -417.62813 16.16835 -562.88689 + -417.62813 16.16806 -562.88689 + -414.80223 23.42415 -558.03427 + -414.80223 23.42389 -558.03427 + -410.92664 30.86377 -552.85692 + -410.92665 30.86357 -552.85692 + -406.65382 37.52418 -548.06273 + -406.65382 37.52403 -548.06273 + -401.53974 44.32384 -543.02478 + -401.53974 44.32370 -543.02478 + -395.56932 51.20777 -537.74615 + -395.56932 51.20764 -537.74615 + -388.73635 58.12447 -532.23042 + -388.73635 58.12429 -532.23042 + -379.12676 62.84737 -524.96631 + -379.12676 62.84715 -524.96631 + -368.85871 67.36993 -517.34304 + -368.85871 67.36973 -517.34304 + -357.90930 71.69233 -509.37034 + -357.90930 71.69214 -509.37034 + -346.30219 75.81467 -501.05859 + -346.30219 75.81450 -501.05859 + -334.06623 79.73707 -492.41878 + -334.06623 79.73691 -492.41878 + -321.23166 83.45963 -483.46250 + -321.23166 83.45947 -483.46250 + -307.82924 86.98243 -474.20191 + -307.82924 86.98228 -474.20191 + -293.88997 90.30556 -464.64970 + -293.88997 90.30541 -464.64970 + -279.44497 93.42911 -454.81908 + -279.44497 93.42896 -454.81908 + -264.52544 96.35315 -444.72373 + -264.52544 96.35300 -444.72373 + -249.16260 99.07774 -434.37780 + -249.16260 99.07759 -434.37780 + -233.38769 101.60297 -423.79582 + -233.38769 101.60282 -423.79582 + -217.23199 103.92888 -412.99274 + -217.23198 103.92873 -412.99274 + -200.72673 106.05555 -401.98387 + -200.72673 106.05539 -401.98387 + -183.90320 107.98302 -390.78485 + -183.90320 107.98286 -390.78485 + -166.79266 109.71136 -379.41160 + -166.79266 109.71119 -379.41160 + -149.42636 111.24061 -367.88035 + -149.42636 111.24044 -367.88035 + -131.83557 112.57082 -356.20754 + -131.83557 112.57064 -356.20754 + -114.05155 113.70203 -344.40983 + -114.05155 113.70186 -344.40983 + -96.10553 114.63430 -332.50408 + -96.10553 114.63412 -332.50408 + -78.02877 115.36767 -320.50728 + -78.02877 115.36748 -320.50728 + -59.85251 115.90216 -308.43655 + -59.85251 115.90198 -308.43655 + -41.60798 116.23783 -296.30913 + -41.60798 116.23765 -296.30913 + -23.32643 116.37471 -284.14229 + -23.32643 116.37454 -284.14229 + -5.03907 116.31283 -271.95334 + -5.03907 116.31267 -271.95334 + 13.22287 116.05224 -259.75962 + 13.22287 116.05209 -259.75962 + 31.42817 115.59296 -247.57842 + 31.42817 115.59282 -247.57842 + 49.54563 114.93502 -235.42700 + 49.54563 114.93491 -235.42700 + 67.54402 114.07847 -223.32250 + 67.54402 114.07837 -223.32250 + 85.39081 113.00630 -211.28199 + 85.39081 113.00624 -211.28199 + 103.04951 111.68523 -199.32237 + 103.04951 111.68520 -199.32237 + 120.48093 110.11420 -187.46037 + 120.48093 110.11421 -187.46037 + 137.64579 108.29311 -175.71250 + 137.64579 108.29316 -175.71250 + 154.50478 106.22190 -164.09502 + 154.50478 106.22201 -164.09502 + 171.01867 103.90134 -152.62390 + 171.01867 103.94470 -152.62390 + 186.00338 85.67642 -141.26099 + 186.00396 85.74669 -141.26099 + 198.19471 68.49867 -130.07578 + 198.19412 68.56686 -130.07578 + 207.67372 51.34425 -119.07993 + 207.67372 51.42843 -119.07993 + 214.42133 33.88157 -108.28252 + 214.42133 33.96777 -108.28252 + 218.37224 15.92036 -97.68999 + 218.37224 16.00921 -97.68999 + 219.43961 -2.64382 -87.30611 + 219.43961 -2.55197 -87.30611 + 217.52307 -21.87735 -77.13190 + 217.52307 -21.78226 -77.13190 212.51312 -41.82907 -67.16551 212.51312 -41.73057 -67.16551 - 204.29385 -62.53112 -57.40214 - 204.29386 -62.42792 -57.40214 + 204.29386 -62.53112 -57.40215 + 204.29386 -62.42792 -57.40215 192.70619 -84.50043 -47.83393 - 192.70619 -84.39224 -47.83393 - 177.58073 -107.34774 -38.44976 - 177.58073 -107.23566 -38.44976 + 192.70620 -84.39224 -47.83393 + 177.58073 -107.34774 -38.44977 + 177.58074 -107.23566 -38.44977 158.78444 -131.00097 -29.23517 158.78445 -130.88516 -29.23517 136.18898 -155.47389 -20.17216 @@ -22671,7 +22803,7 @@ Displacements 79.71828 -191.84891 -2.41053 50.16967 -178.15030 6.34177 50.16978 -178.26347 6.34177 - 24.68627 -140.93451 15.04574 + 24.68627 -140.93452 15.04574 24.68636 -141.15847 15.04574 6.76210 -82.29892 23.72550 6.69256 -80.85562 23.72550 @@ -23198,10 +23330,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 204.19210 133.18366 747.78252 57.15802 110 27 - 204.20655 133.18366 746.33401 57.17248 110 27 - - 399.66733 134.73261 755.08820 57.84309 110 53 - - 399.68264 134.73261 753.75802 57.85840 110 53 - - 594.60393 136.28155 762.49856 58.52932 110 78 - - 594.62005 136.28155 761.27091 58.54544 110 78 - + 399.66734 134.73261 755.08820 57.84309 110 53 - + 399.68265 134.73261 753.75802 57.85840 110 53 - + 594.60395 136.28155 762.49856 58.52932 110 78 - + 594.62007 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -23634,10 +23766,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.57691 78.09276 318.60499 27.17987 110 86 - - 273.57691 78.09276 317.87650 27.17987 110 86 - - 76.73790 79.64171 326.36174 27.90539 110 24 - - 76.73790 79.64171 325.71668 27.90539 110 24 - + 273.57693 78.09276 318.60499 27.17987 110 86 - + 273.57693 78.09276 317.87650 27.17987 110 86 - + 76.73791 79.64171 326.36174 27.90539 110 24 - + 76.73791 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -25172,8 +25304,8 @@ CalculationStatus -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 10 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 3 4 11 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 3 5 11 0.000 1 5 - -420.24260 -191.83061 -1171.09815 78.83289 82.26089 3 0 11 1.000 0 0 - -420.23600 -191.85733 -566.61418 78.82736 82.25620 3 1 11 1.000 0 0 + -420.24260 -191.83062 -1171.09835 78.83290 82.26089 3 0 11 1.000 0 0 + -420.23600 -191.85733 -566.61421 78.82736 82.25620 3 1 11 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 11 1.000 0 0 -469.96168 -172.80216 -181.75590 57.58640 63.64131 3 14 11 1.350 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 0 0.000 1 5 @@ -25255,7 +25387,7 @@ Force MaximumMoment=-469.96168 MaximumShearForce=-191.85733 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=78.83289 +MaximumPercentageMobilisedMoment=78.83290 MaximumPercentageMobilisedResistance=82.26089 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shi index 5ff08edf..98f8bb7e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:44:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shd index f5acb4b7..4c48a323 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:17 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:25 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,10 +1102,10 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16414,216 +16546,216 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00025 0.00657 167.08360 - 0.20186 4.02896 133.79116 - 0.20211 4.03553 133.79116 - 1.11128 8.61225 100.49848 - 1.11128 8.61226 100.49848 + -0.00025 0.00657 167.08363 + 0.20186 4.02896 133.79118 + 0.20211 4.03553 133.79118 + 1.11128 8.61225 100.49849 + 1.11128 8.61226 100.49849 2.75992 13.73841 67.20479 2.75992 13.73843 67.20479 - 5.22405 19.41838 33.90865 - 5.20245 19.99437 33.90865 + 5.22405 19.41838 33.90866 + 5.20245 19.99437 33.90866 8.61084 24.95212 0.60794 8.65404 24.95214 0.60794 - 12.55671 26.55067 -32.70026 - 12.53511 25.97478 -32.70026 - 16.43133 25.97478 -66.01928 - 16.43133 25.97490 -66.01928 - 20.32756 25.97490 -99.35249 - 20.32756 25.97525 -99.35249 - 24.22384 25.97525 -132.70324 - 24.22385 25.97565 -132.70324 - 28.12020 25.97565 -166.07491 - 28.12020 -142.02412 -166.07491 - 6.81658 -142.02412 -199.46723 - 6.81658 -142.02393 -199.46723 - -14.48701 -142.02393 -232.86543 - -14.48701 -142.02381 -232.86543 - -35.76703 -141.70567 -266.25113 - -35.76703 -141.70562 -266.25113 - -42.83954 -141.19081 -277.37374 - -42.83955 -141.21183 -277.37374 - -64.43379 -139.47624 -311.56845 - -64.43409 -139.51420 -311.56845 - -85.74971 -137.55204 -345.70468 - -85.74941 -137.59593 -345.70468 - -106.75266 -135.40981 -379.76305 - -106.75266 -135.46746 -379.76305 - -127.41137 -133.05941 -413.72451 - -127.41137 -133.12266 -413.72451 - -147.69238 -130.49427 -447.57029 - -147.69238 -130.56309 -447.57029 - -167.56274 -127.71561 -481.28197 - -167.56273 -127.78996 -481.28197 - -186.98967 -124.72444 -514.84153 - -186.98967 -124.80428 -514.84153 - -205.94055 -121.52154 -548.23131 - -205.94055 -121.60685 -548.23131 - -224.38286 -118.10759 -581.43411 - -224.38286 -118.19835 -581.43411 - -242.28416 -114.48314 -614.43318 - -242.28416 -114.57932 -614.43318 - -259.61210 -110.64865 -647.21227 - -259.61210 -110.75024 -647.21227 - -276.33440 -106.60450 -679.75565 - -276.33440 -106.71150 -679.75565 - -292.41883 -102.35103 -712.04813 - -292.41884 -102.47693 -712.04813 - -307.75086 -96.80887 -744.07511 - -307.75086 -96.95305 -744.07511 - -322.21959 -91.11025 -775.82269 - -322.21959 -91.25880 -775.82269 - -335.79886 -85.24150 -807.27771 - -335.79886 -85.39441 -807.27771 - -348.46249 -79.20281 -838.42786 - -348.46249 -79.36007 -838.42786 - -360.18437 -72.99436 -869.26164 - -360.18437 -73.15597 -869.26164 - -370.93838 -66.61631 -899.76839 - -370.93838 -66.78227 -899.76839 - -380.69844 -60.06880 -929.93836 - -380.69844 -60.23902 -929.93836 - -389.43889 -53.35728 -959.76269 - -389.43889 -53.53175 -959.76269 - -397.13425 -46.47825 -989.23344 - -397.13425 -46.65705 -989.23344 - -403.75842 -39.42767 -1018.34363 - -403.75842 -39.61086 -1018.34363 - -409.28504 -32.20586 -1047.08723 - -409.28504 -32.39343 -1047.08723 - -413.68780 -24.81306 -1075.45924 - -413.68780 -25.00499 -1075.45924 - -416.94040 -17.24948 -1103.45565 - -416.94040 -17.34711 -1103.45565 - -418.96811 -11.01139 -1129.11341 - -418.96811 -11.01180 -1129.11341 - -420.07762 -4.49180 -1153.68526 - -420.07762 -4.49217 -1153.68526 - -420.24260 2.21201 -1170.60083 - -420.24260 2.21166 -1170.60083 - -419.43674 9.09991 -1171.09815 - -419.43674 9.09959 -1171.09815 - -417.63375 16.17180 -1159.25947 - -417.63375 16.17151 -1159.25947 - -414.80735 23.42760 -1144.60410 - -414.80735 23.42733 -1144.60410 - -410.93127 30.86722 -1129.62400 - -410.93128 30.86701 -1129.62400 - -406.65802 37.52763 -1116.25239 - -406.65802 37.52748 -1116.25239 - -401.54351 44.32729 -1102.63703 - -401.54351 44.32715 -1102.63703 - -395.57265 51.21121 -1088.78098 - -395.57265 51.21108 -1088.78098 - -388.73926 58.12791 -1074.68783 - -388.73926 58.12774 -1074.68783 - -379.12912 62.85082 -1056.64068 - -379.12913 62.85060 -1056.64068 - -368.86054 67.37338 -1038.23436 - -368.86054 67.37317 -1038.23436 - -357.91058 71.69577 -1019.47862 - -357.91058 71.69558 -1019.47862 - -346.30293 75.81812 -1000.38381 - -346.30293 75.81794 -1000.38381 - -334.06644 79.74052 -980.96095 - -334.06644 79.74035 -980.96095 - -321.23132 83.46307 -961.22162 - -321.23132 83.46292 -961.22162 - -307.82836 86.98587 -941.17798 - -307.82836 86.98572 -941.17798 - -293.88855 90.30901 -920.84272 - -293.88855 90.30886 -920.84272 - -279.44301 93.43256 -900.22905 - -279.44301 93.43241 -900.22905 - -264.52293 96.35659 -879.35066 - -264.52293 96.35644 -879.35066 - -249.15955 99.08119 -858.22168 - -249.15955 99.08104 -858.22168 - -233.38411 101.60641 -836.85666 - -233.38411 101.60626 -836.85666 - -217.22786 103.93233 -815.27054 - -217.22786 103.93217 -815.27054 - -200.72206 106.05899 -793.47864 - -200.72206 106.05884 -793.47864 - -183.89799 107.98647 -771.49659 - -183.89799 107.98631 -771.49659 - -166.78691 109.71480 -749.34032 - -166.78691 109.71464 -749.34032 - -149.42007 111.24405 -727.02605 - -149.42007 111.24388 -727.02605 - -131.82874 112.57426 -704.57022 - -131.82874 112.57409 -704.57022 - -114.04417 113.70548 -681.98951 - -114.04417 113.70530 -681.98951 - -96.09761 114.63775 -659.30076 - -96.09761 114.63757 -659.30076 - -78.02031 115.37111 -636.52096 - -78.02031 115.37093 -636.52096 - -59.84351 115.90561 -613.66726 - -59.84351 115.90543 -613.66726 - -41.59844 116.24127 -590.75686 - -41.59844 116.24110 -590.75686 - -23.31635 116.37815 -567.80705 - -23.31635 116.37798 -567.80705 - -5.02844 116.31628 -544.83515 - -5.02845 116.31612 -544.83515 - 13.23404 116.05568 -521.85848 - 13.23404 116.05553 -521.85848 - 31.43988 115.59640 -498.89435 - 31.43988 115.59627 -498.89435 - 49.55787 114.93847 -475.96000 - 49.55787 114.93835 -475.96000 - 67.55681 114.08191 -453.07259 - 67.55681 114.08182 -453.07259 - 85.40414 113.00975 -430.24918 - 85.40414 113.00968 -430.24918 - 103.06338 111.68867 -407.50667 - 103.06338 111.68864 -407.50667 - 120.49535 110.11764 -384.86179 - 120.49534 110.11765 -384.86179 - 137.66074 108.29655 -362.33106 - 137.66074 108.29660 -362.33106 - 154.52028 106.22534 -339.93073 - 154.52028 106.22545 -339.93073 - 171.03471 103.90478 -317.67678 - 171.03470 103.94814 -317.67678 - 186.01996 85.67986 -295.47946 - 186.02054 85.75013 -295.47946 - 198.21184 68.50211 -273.45985 - 198.21124 68.57031 -273.45985 - 207.69139 51.34769 -251.62963 - 207.69139 51.43188 -251.62963 - 214.43954 33.88501 -229.99785 - 214.43954 33.97122 -229.99785 - 218.39099 15.92380 -208.57098 - 218.39100 16.01265 -208.57098 - 219.45891 -2.64038 -187.35277 - 219.45891 -2.54853 -187.35277 - 217.54292 -21.87391 -166.34425 - 217.54292 -21.77881 -166.34425 - 212.53351 -41.82563 -145.54358 - 212.53351 -41.72713 -145.54358 - 204.31479 -62.52768 -124.94595 - 204.31479 -62.42448 -124.94595 - 192.72767 -84.49699 -104.54348 - 192.72767 -84.38880 -104.54348 - 177.60275 -107.34429 -84.32509 - 177.60276 -107.23222 -84.32509 - 158.80701 -130.99752 -64.27629 - 158.80701 -130.88171 -64.27629 - 136.21209 -155.47044 -44.37909 - 136.28286 -157.15607 -44.37909 + 12.55671 26.55067 -32.70027 + 12.53511 25.97478 -32.70027 + 16.43133 25.97478 -66.01929 + 16.43133 25.97490 -66.01929 + 20.32756 25.97490 -99.35251 + 20.32756 25.97525 -99.35251 + 24.22384 25.97525 -132.70327 + 24.22385 25.97565 -132.70327 + 28.12020 25.97565 -166.07494 + 28.12020 -142.02412 -166.07494 + 6.81658 -142.02412 -199.46726 + 6.81658 -142.02393 -199.46726 + -14.48701 -142.02393 -232.86547 + -14.48701 -142.02381 -232.86547 + -35.76703 -141.70567 -266.25117 + -35.76703 -141.70562 -266.25117 + -42.83954 -141.19081 -277.37378 + -42.83955 -141.21183 -277.37378 + -64.43379 -139.47624 -311.56850 + -64.43409 -139.51420 -311.56850 + -85.74971 -137.55204 -345.70473 + -85.74941 -137.59593 -345.70473 + -106.75266 -135.40981 -379.76311 + -106.75266 -135.46746 -379.76311 + -127.41137 -133.05941 -413.72457 + -127.41137 -133.12266 -413.72457 + -147.69238 -130.49427 -447.57036 + -147.69238 -130.56309 -447.57036 + -167.56274 -127.71561 -481.28205 + -167.56273 -127.78996 -481.28205 + -186.98967 -124.72444 -514.84161 + -186.98967 -124.80428 -514.84161 + -205.94055 -121.52154 -548.23140 + -205.94055 -121.60685 -548.23140 + -224.38286 -118.10759 -581.43420 + -224.38286 -118.19835 -581.43420 + -242.28416 -114.48314 -614.43328 + -242.28416 -114.57932 -614.43328 + -259.61210 -110.64865 -647.21237 + -259.61210 -110.75024 -647.21237 + -276.33440 -106.60450 -679.75576 + -276.33440 -106.71150 -679.75576 + -292.41883 -102.35103 -712.04824 + -292.41884 -102.47693 -712.04824 + -307.75086 -96.80887 -744.07523 + -307.75086 -96.95305 -744.07523 + -322.21959 -91.11025 -775.82281 + -322.21959 -91.25880 -775.82281 + -335.79886 -85.24150 -807.27784 + -335.79886 -85.39441 -807.27784 + -348.46249 -79.20281 -838.42800 + -348.46249 -79.36007 -838.42800 + -360.18437 -72.99436 -869.26178 + -360.18437 -73.15597 -869.26178 + -370.93838 -66.61631 -899.76854 + -370.93838 -66.78227 -899.76854 + -380.69844 -60.06880 -929.93852 + -380.69844 -60.23902 -929.93852 + -389.43889 -53.35728 -959.76285 + -389.43889 -53.53175 -959.76285 + -397.13424 -46.47825 -989.23361 + -397.13425 -46.65705 -989.23361 + -403.75842 -39.42767 -1018.34379 + -403.75842 -39.61086 -1018.34379 + -409.28504 -32.20586 -1047.08740 + -409.28504 -32.39343 -1047.08740 + -413.68780 -24.81306 -1075.45942 + -413.68780 -25.00499 -1075.45942 + -416.94040 -17.24948 -1103.45584 + -416.94039 -17.34711 -1103.45584 + -418.96811 -11.01139 -1129.11360 + -418.96811 -11.01180 -1129.11360 + -420.07762 -4.49180 -1153.68545 + -420.07762 -4.49217 -1153.68545 + -420.24260 2.21201 -1170.60103 + -420.24260 2.21166 -1170.60103 + -419.43674 9.09991 -1171.09835 + -419.43674 9.09959 -1171.09835 + -417.63375 16.17180 -1159.25966 + -417.63375 16.17151 -1159.25966 + -414.80735 23.42760 -1144.60429 + -414.80735 23.42733 -1144.60429 + -410.93127 30.86722 -1129.62419 + -410.93127 30.86701 -1129.62419 + -406.65802 37.52763 -1116.25258 + -406.65802 37.52748 -1116.25258 + -401.54351 44.32729 -1102.63721 + -401.54351 44.32715 -1102.63721 + -395.57265 51.21121 -1088.78116 + -395.57265 51.21108 -1088.78116 + -388.73926 58.12791 -1074.68801 + -388.73926 58.12774 -1074.68801 + -379.12912 62.85082 -1056.64085 + -379.12912 62.85060 -1056.64085 + -368.86054 67.37338 -1038.23453 + -368.86054 67.37318 -1038.23453 + -357.91058 71.69577 -1019.47878 + -357.91058 71.69559 -1019.47878 + -346.30293 75.81812 -1000.38398 + -346.30293 75.81794 -1000.38398 + -334.06643 79.74052 -980.96111 + -334.06643 79.74035 -980.96111 + -321.23132 83.46307 -961.22177 + -321.23132 83.46292 -961.22177 + -307.82836 86.98588 -941.17813 + -307.82836 86.98572 -941.17813 + -293.88854 90.30901 -920.84287 + -293.88854 90.30886 -920.84287 + -279.44301 93.43256 -900.22920 + -279.44301 93.43241 -900.22920 + -264.52293 96.35659 -879.35080 + -264.52293 96.35644 -879.35080 + -249.15955 99.08119 -858.22182 + -249.15955 99.08104 -858.22182 + -233.38410 101.60641 -836.85679 + -233.38410 101.60626 -836.85679 + -217.22785 103.93233 -815.27068 + -217.22785 103.93217 -815.27068 + -200.72206 106.05899 -793.47877 + -200.72206 106.05884 -793.47877 + -183.89799 107.98647 -771.49671 + -183.89799 107.98631 -771.49671 + -166.78690 109.71481 -749.34044 + -166.78690 109.71464 -749.34044 + -149.42007 111.24405 -727.02617 + -149.42007 111.24388 -727.02617 + -131.82874 112.57426 -704.57034 + -131.82874 112.57409 -704.57034 + -114.04417 113.70548 -681.98962 + -114.04417 113.70530 -681.98962 + -96.09761 114.63775 -659.30086 + -96.09761 114.63757 -659.30086 + -78.02031 115.37111 -636.52107 + -78.02031 115.37093 -636.52107 + -59.84350 115.90561 -613.66736 + -59.84350 115.90543 -613.66736 + -41.59844 116.24127 -590.75696 + -41.59844 116.24110 -590.75696 + -23.31634 116.37815 -567.80714 + -23.31634 116.37798 -567.80714 + -5.02844 116.31628 -544.83524 + -5.02844 116.31612 -544.83524 + 13.23404 116.05568 -521.85857 + 13.23404 116.05553 -521.85857 + 31.43988 115.59640 -498.89443 + 31.43988 115.59627 -498.89443 + 49.55788 114.93847 -475.96007 + 49.55788 114.93835 -475.96007 + 67.55681 114.08191 -453.07266 + 67.55681 114.08182 -453.07266 + 85.40414 113.00975 -430.24925 + 85.40414 113.00969 -430.24925 + 103.06339 111.68867 -407.50674 + 103.06339 111.68864 -407.50674 + 120.49535 110.11765 -384.86186 + 120.49535 110.11765 -384.86186 + 137.66075 108.29655 -362.33112 + 137.66075 108.29661 -362.33112 + 154.52028 106.22535 -339.93079 + 154.52028 106.22545 -339.93079 + 171.03471 103.90478 -317.67683 + 171.03471 103.94814 -317.67683 + 186.01997 85.67986 -295.47951 + 186.02055 85.75013 -295.47951 + 198.21184 68.50211 -273.45990 + 198.21125 68.57031 -273.45990 + 207.69140 51.34769 -251.62967 + 207.69139 51.43188 -251.62967 + 214.43954 33.88501 -229.99789 + 214.43954 33.97122 -229.99789 + 218.39100 15.92380 -208.57101 + 218.39100 16.01265 -208.57101 + 219.45892 -2.64038 -187.35281 + 219.45892 -2.54853 -187.35281 + 217.54292 -21.87391 -166.34428 + 217.54292 -21.77881 -166.34428 + 212.53351 -41.82563 -145.54361 + 212.53352 -41.72712 -145.54361 + 204.31479 -62.52768 -124.94597 + 204.31480 -62.42448 -124.94597 + 192.72767 -84.49699 -104.54350 + 192.72768 -84.38880 -104.54350 + 177.60276 -107.34429 -84.32511 + 177.60276 -107.23222 -84.32511 + 158.80701 -130.99752 -64.27630 + 158.80702 -130.88171 -64.27630 + 136.21210 -155.47044 -44.37910 + 136.28286 -157.15607 -44.37910 109.60524 -180.07533 -24.61187 109.53432 -181.78668 -24.61187 - 79.75275 -191.83061 -4.94916 - 79.75281 -191.83045 -4.94916 - 50.20135 -178.20483 14.63724 - 50.20140 -178.32315 14.63724 - 24.70441 -141.03470 34.17529 - 24.70445 -141.26143 34.17529 - 6.76590 -82.36070 53.68911 - 6.69598 -80.90958 53.68911 - -0.06995 -1.58399 73.19557 + 79.75276 -191.83062 -4.94917 + 79.75281 -191.83046 -4.94917 + 50.20136 -178.20484 14.63724 + 50.20141 -178.32316 14.63724 + 24.70442 -141.03471 34.17530 + 24.70445 -141.26144 34.17530 + 6.76590 -82.36070 53.68912 + 6.69598 -80.90958 53.68912 + -0.06995 -1.58399 73.19558 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16951,7 +17083,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 32.96830 0.00000 79.15458 26.18108 110 42 - - 30.44815 0.00000 91.92500 23.66092 110 33 - + 30.44814 0.00000 91.92500 23.66092 110 33 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17146,10 +17278,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 203.53043 133.18366 747.78252 57.15802 110 27 - 203.54488 133.18366 746.33401 57.17248 110 27 - - 399.59602 134.73261 755.08820 57.84309 110 53 - - 399.61133 134.73261 753.75802 57.85840 110 53 - - 595.42042 136.28155 762.49856 58.52932 110 78 - - 595.43654 136.28155 761.27091 58.54544 110 78 - + 399.59605 134.73261 755.08820 57.84309 110 53 - + 399.61136 134.73261 753.75802 57.85840 110 53 - + 595.42048 136.28155 762.49856 58.52932 110 78 - + 595.43660 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -17582,10 +17714,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.29853 78.09276 318.60499 27.17987 110 86 - - 273.29853 78.09276 317.87650 27.17987 110 86 - - 77.39701 79.64171 326.36174 27.90539 110 24 - - 77.39701 79.64171 325.71668 27.90539 110 24 - + 273.29860 78.09276 318.60499 27.17987 110 86 - + 273.29860 78.09276 317.87650 27.17987 110 86 - + 77.39705 79.64171 326.36174 27.90539 110 24 - + 77.39705 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -22481,186 +22613,186 @@ Displacements 12.56076 25.97133 -14.28992 16.45646 25.97133 -31.53893 16.45646 25.97146 -31.53893 - 20.35217 25.97146 -48.80215 - 20.35217 25.97181 -48.80215 - 24.24794 25.97181 -66.08294 - 24.24794 25.97221 -66.08294 + 20.35217 25.97146 -48.80216 + 20.35217 25.97181 -48.80216 + 24.24794 25.97181 -66.08295 + 24.24794 25.97221 -66.08295 28.14377 25.97221 -83.38467 28.14378 -142.02757 -83.38467 - 6.83964 -142.02757 -100.70706 - 6.83964 -142.02738 -100.70706 - -14.46446 -142.02738 -118.03536 - -14.46446 -142.02725 -118.03536 + 6.83964 -142.02757 -100.70707 + 6.83964 -142.02738 -100.70707 + -14.46446 -142.02738 -118.03537 + -14.46446 -142.02725 -118.03537 -35.74501 -141.70911 -135.35118 -35.74500 -141.70907 -135.35118 - -42.81769 -141.19426 -141.11716 - -42.81769 -141.21527 -141.11716 - -64.41247 -139.47969 -158.82997 - -64.41276 -139.51765 -158.82997 - -85.72892 -137.55549 -176.48431 - -85.72861 -137.59938 -176.48431 - -106.73240 -135.41326 -194.06081 - -106.73240 -135.47091 -194.06081 - -127.39164 -133.06285 -211.54042 - -127.39163 -133.12611 -211.54042 - -147.67317 -130.49771 -228.90437 - -147.67317 -130.56653 -228.90437 - -167.54406 -127.71906 -246.13424 - -167.54406 -127.79340 -246.13424 - -186.97153 -124.72788 -263.21200 - -186.97153 -124.80772 -263.21200 - -205.92294 -121.52499 -280.12000 - -205.92294 -121.61030 -280.12000 - -224.36577 -118.11104 -296.84104 - -224.36577 -118.20179 -296.84104 - -242.26760 -114.48659 -313.35836 - -242.26760 -114.58277 -313.35836 - -259.59607 -110.65209 -329.65572 - -259.59607 -110.75369 -329.65572 - -276.31891 -106.60794 -345.71738 - -276.31890 -106.71494 -345.71738 - -292.40387 -102.35448 -361.52815 - -292.40387 -102.48037 -361.52815 - -307.73642 -96.81232 -377.07344 - -307.73642 -96.95649 -377.07344 - -322.20569 -91.11370 -392.33934 - -322.20569 -91.26224 -392.33934 - -335.78548 -85.24494 -407.31270 - -335.78548 -85.39785 -407.31270 - -348.44965 -79.20625 -421.98120 - -348.44965 -79.36352 -421.98120 - -360.17205 -72.99781 -436.33333 - -360.17205 -73.15942 -436.33333 - -370.92659 -66.61976 -450.35845 - -370.92659 -66.78571 -450.35845 - -380.68718 -60.07224 -464.04681 - -380.68718 -60.24247 -464.04681 - -389.42817 -53.36072 -477.38952 - -389.42817 -53.53519 -477.38952 - -397.12405 -46.48169 -490.37867 - -397.12405 -46.66050 -490.37867 - -403.74875 -39.43112 -503.00727 - -403.74875 -39.61430 -503.00727 - -409.27591 -32.20931 -515.26929 - -409.27591 -32.39687 -515.26929 - -413.67920 -24.81651 -527.15972 - -413.67920 -25.00843 -527.15972 - -416.93232 -17.25292 -538.67457 - -416.93232 -17.35056 -538.67457 - -418.96053 -11.01484 -549.02803 - -418.96053 -11.01525 -549.02803 - -420.07053 -4.49524 -558.86110 - -420.07053 -4.49562 -558.86110 - -420.23600 2.20856 -565.79823 - -420.23600 2.20821 -565.79823 - -419.43063 9.09646 -566.61418 - -419.43063 9.09614 -566.61418 - -417.62813 16.16835 -562.88686 - -417.62813 16.16806 -562.88686 - -414.80223 23.42415 -558.03424 - -414.80223 23.42389 -558.03424 - -410.92664 30.86377 -552.85689 - -410.92665 30.86357 -552.85689 - -406.65382 37.52418 -548.06270 - -406.65382 37.52403 -548.06270 - -401.53974 44.32384 -543.02475 - -401.53974 44.32370 -543.02475 - -395.56932 51.20777 -537.74612 - -395.56932 51.20764 -537.74612 - -388.73635 58.12447 -532.23039 - -388.73635 58.12429 -532.23039 - -379.12676 62.84737 -524.96628 - -379.12676 62.84715 -524.96628 - -368.85871 67.36993 -517.34302 - -368.85871 67.36973 -517.34302 - -357.90930 71.69233 -509.37032 - -357.90930 71.69214 -509.37032 - -346.30219 75.81467 -501.05857 - -346.30219 75.81450 -501.05857 - -334.06624 79.73707 -492.41875 - -334.06624 79.73691 -492.41875 - -321.23166 83.45963 -483.46247 - -321.23166 83.45947 -483.46247 - -307.82924 86.98243 -474.20188 - -307.82924 86.98228 -474.20188 - -293.88997 90.30556 -464.64967 - -293.88997 90.30541 -464.64967 - -279.44497 93.42911 -454.81906 - -279.44497 93.42896 -454.81906 - -264.52544 96.35315 -444.72371 - -264.52544 96.35300 -444.72371 - -249.16260 99.07774 -434.37777 - -249.16260 99.07759 -434.37777 - -233.38769 101.60297 -423.79580 - -233.38769 101.60282 -423.79580 - -217.23199 103.92888 -412.99272 - -217.23199 103.92873 -412.99272 - -200.72673 106.05555 -401.98385 - -200.72673 106.05539 -401.98385 - -183.90320 107.98302 -390.78483 - -183.90320 107.98286 -390.78483 - -166.79266 109.71136 -379.41159 - -166.79266 109.71119 -379.41159 - -149.42636 111.24061 -367.88033 - -149.42636 111.24044 -367.88033 - -131.83557 112.57082 -356.20752 - -131.83557 112.57064 -356.20752 - -114.05155 113.70203 -344.40981 - -114.05155 113.70186 -344.40981 - -96.10553 114.63430 -332.50406 - -96.10553 114.63412 -332.50406 - -78.02877 115.36766 -320.50726 - -78.02877 115.36748 -320.50726 - -59.85251 115.90216 -308.43654 - -59.85251 115.90198 -308.43654 - -41.60799 116.23783 -296.30912 - -41.60799 116.23765 -296.30912 - -23.32643 116.37471 -284.14227 - -23.32643 116.37454 -284.14227 - -5.03907 116.31283 -271.95333 - -5.03907 116.31267 -271.95333 - 13.22287 116.05224 -259.75961 - 13.22287 116.05209 -259.75961 - 31.42817 115.59296 -247.57841 - 31.42817 115.59282 -247.57841 - 49.54562 114.93502 -235.42699 - 49.54562 114.93491 -235.42699 - 67.54402 114.07847 -223.32249 - 67.54402 114.07837 -223.32249 - 85.39081 113.00630 -211.28198 - 85.39081 113.00624 -211.28198 - 103.04951 111.68523 -199.32236 - 103.04951 111.68520 -199.32236 - 120.48093 110.11420 -187.46036 - 120.48093 110.11421 -187.46036 - 137.64579 108.29311 -175.71249 - 137.64578 108.29316 -175.71249 - 154.50478 106.22190 -164.09501 - 154.50478 106.22201 -164.09501 - 171.01867 103.90134 -152.62389 - 171.01866 103.94470 -152.62389 - 186.00338 85.67642 -141.26098 - 186.00396 85.74669 -141.26098 - 198.19471 68.49867 -130.07577 - 198.19411 68.56686 -130.07577 - 207.67372 51.34424 -119.07992 - 207.67372 51.42843 -119.07992 - 214.42132 33.88156 -108.28251 - 214.42132 33.96777 -108.28251 - 218.37224 15.92036 -97.68998 - 218.37224 16.00921 -97.68998 - 219.43961 -2.64382 -87.30610 - 219.43961 -2.55197 -87.30610 - 217.52307 -21.87735 -77.13189 - 217.52307 -21.78226 -77.13189 + -42.81769 -141.19426 -141.11717 + -42.81769 -141.21527 -141.11717 + -64.41247 -139.47969 -158.82998 + -64.41276 -139.51765 -158.82998 + -85.72892 -137.55549 -176.48432 + -85.72861 -137.59938 -176.48432 + -106.73240 -135.41326 -194.06082 + -106.73240 -135.47091 -194.06082 + -127.39164 -133.06285 -211.54043 + -127.39163 -133.12611 -211.54043 + -147.67317 -130.49771 -228.90438 + -147.67317 -130.56653 -228.90438 + -167.54406 -127.71906 -246.13426 + -167.54406 -127.79340 -246.13426 + -186.97153 -124.72788 -263.21201 + -186.97153 -124.80772 -263.21201 + -205.92294 -121.52499 -280.12001 + -205.92294 -121.61030 -280.12001 + -224.36577 -118.11104 -296.84105 + -224.36577 -118.20179 -296.84105 + -242.26760 -114.48659 -313.35837 + -242.26760 -114.58277 -313.35837 + -259.59607 -110.65209 -329.65573 + -259.59607 -110.75369 -329.65573 + -276.31891 -106.60794 -345.71739 + -276.31890 -106.71494 -345.71739 + -292.40387 -102.35448 -361.52817 + -292.40387 -102.48037 -361.52817 + -307.73642 -96.81232 -377.07346 + -307.73642 -96.95649 -377.07346 + -322.20569 -91.11370 -392.33936 + -322.20569 -91.26224 -392.33936 + -335.78548 -85.24494 -407.31272 + -335.78548 -85.39785 -407.31272 + -348.44965 -79.20625 -421.98122 + -348.44965 -79.36352 -421.98122 + -360.17205 -72.99781 -436.33335 + -360.17205 -73.15942 -436.33335 + -370.92659 -66.61976 -450.35848 + -370.92659 -66.78571 -450.35848 + -380.68718 -60.07224 -464.04683 + -380.68718 -60.24247 -464.04683 + -389.42817 -53.36072 -477.38955 + -389.42817 -53.53519 -477.38955 + -397.12405 -46.48169 -490.37870 + -397.12405 -46.66050 -490.37870 + -403.74875 -39.43112 -503.00729 + -403.74875 -39.61430 -503.00729 + -409.27591 -32.20931 -515.26931 + -409.27591 -32.39687 -515.26931 + -413.67920 -24.81651 -527.15975 + -413.67920 -25.00843 -527.15975 + -416.93232 -17.25292 -538.67460 + -416.93232 -17.35056 -538.67460 + -418.96053 -11.01484 -549.02806 + -418.96053 -11.01525 -549.02806 + -420.07053 -4.49524 -558.86113 + -420.07053 -4.49562 -558.86113 + -420.23600 2.20856 -565.79826 + -420.23600 2.20821 -565.79826 + -419.43063 9.09646 -566.61421 + -419.43063 9.09614 -566.61421 + -417.62813 16.16835 -562.88689 + -417.62813 16.16806 -562.88689 + -414.80223 23.42415 -558.03427 + -414.80223 23.42389 -558.03427 + -410.92664 30.86377 -552.85692 + -410.92665 30.86357 -552.85692 + -406.65382 37.52418 -548.06273 + -406.65382 37.52403 -548.06273 + -401.53974 44.32384 -543.02478 + -401.53974 44.32370 -543.02478 + -395.56932 51.20777 -537.74615 + -395.56932 51.20764 -537.74615 + -388.73635 58.12447 -532.23042 + -388.73635 58.12429 -532.23042 + -379.12676 62.84737 -524.96631 + -379.12676 62.84715 -524.96631 + -368.85871 67.36993 -517.34304 + -368.85871 67.36973 -517.34304 + -357.90930 71.69233 -509.37034 + -357.90930 71.69214 -509.37034 + -346.30219 75.81467 -501.05859 + -346.30219 75.81450 -501.05859 + -334.06623 79.73707 -492.41878 + -334.06623 79.73691 -492.41878 + -321.23166 83.45963 -483.46250 + -321.23166 83.45947 -483.46250 + -307.82924 86.98243 -474.20191 + -307.82924 86.98228 -474.20191 + -293.88997 90.30556 -464.64970 + -293.88997 90.30541 -464.64970 + -279.44497 93.42911 -454.81908 + -279.44497 93.42896 -454.81908 + -264.52544 96.35315 -444.72373 + -264.52544 96.35300 -444.72373 + -249.16260 99.07774 -434.37780 + -249.16260 99.07759 -434.37780 + -233.38769 101.60297 -423.79582 + -233.38769 101.60282 -423.79582 + -217.23199 103.92888 -412.99274 + -217.23198 103.92873 -412.99274 + -200.72673 106.05555 -401.98387 + -200.72673 106.05539 -401.98387 + -183.90320 107.98302 -390.78485 + -183.90320 107.98286 -390.78485 + -166.79266 109.71136 -379.41160 + -166.79266 109.71119 -379.41160 + -149.42636 111.24061 -367.88035 + -149.42636 111.24044 -367.88035 + -131.83557 112.57082 -356.20754 + -131.83557 112.57064 -356.20754 + -114.05155 113.70203 -344.40983 + -114.05155 113.70186 -344.40983 + -96.10553 114.63430 -332.50408 + -96.10553 114.63412 -332.50408 + -78.02877 115.36767 -320.50728 + -78.02877 115.36748 -320.50728 + -59.85251 115.90216 -308.43655 + -59.85251 115.90198 -308.43655 + -41.60798 116.23783 -296.30913 + -41.60798 116.23765 -296.30913 + -23.32643 116.37471 -284.14229 + -23.32643 116.37454 -284.14229 + -5.03907 116.31283 -271.95334 + -5.03907 116.31267 -271.95334 + 13.22287 116.05224 -259.75962 + 13.22287 116.05209 -259.75962 + 31.42817 115.59296 -247.57842 + 31.42817 115.59282 -247.57842 + 49.54563 114.93502 -235.42700 + 49.54563 114.93491 -235.42700 + 67.54402 114.07847 -223.32250 + 67.54402 114.07837 -223.32250 + 85.39081 113.00630 -211.28199 + 85.39081 113.00624 -211.28199 + 103.04951 111.68523 -199.32237 + 103.04951 111.68520 -199.32237 + 120.48093 110.11420 -187.46037 + 120.48093 110.11421 -187.46037 + 137.64579 108.29311 -175.71250 + 137.64579 108.29316 -175.71250 + 154.50478 106.22190 -164.09502 + 154.50478 106.22201 -164.09502 + 171.01867 103.90134 -152.62390 + 171.01867 103.94470 -152.62390 + 186.00338 85.67642 -141.26099 + 186.00396 85.74669 -141.26099 + 198.19471 68.49867 -130.07578 + 198.19412 68.56686 -130.07578 + 207.67372 51.34425 -119.07993 + 207.67372 51.42843 -119.07993 + 214.42133 33.88157 -108.28252 + 214.42133 33.96777 -108.28252 + 218.37224 15.92036 -97.68999 + 218.37224 16.00921 -97.68999 + 219.43961 -2.64382 -87.30611 + 219.43961 -2.55197 -87.30611 + 217.52307 -21.87735 -77.13190 + 217.52307 -21.78226 -77.13190 212.51312 -41.82907 -67.16551 212.51312 -41.73057 -67.16551 - 204.29385 -62.53112 -57.40214 - 204.29386 -62.42792 -57.40214 + 204.29386 -62.53112 -57.40215 + 204.29386 -62.42792 -57.40215 192.70619 -84.50043 -47.83393 - 192.70619 -84.39224 -47.83393 - 177.58073 -107.34774 -38.44976 - 177.58073 -107.23566 -38.44976 + 192.70620 -84.39224 -47.83393 + 177.58073 -107.34774 -38.44977 + 177.58074 -107.23566 -38.44977 158.78444 -131.00097 -29.23517 158.78445 -130.88516 -29.23517 136.18898 -155.47389 -20.17216 @@ -22671,7 +22803,7 @@ Displacements 79.71828 -191.84891 -2.41053 50.16967 -178.15030 6.34177 50.16978 -178.26347 6.34177 - 24.68627 -140.93451 15.04574 + 24.68627 -140.93452 15.04574 24.68636 -141.15847 15.04574 6.76210 -82.29892 23.72550 6.69256 -80.85562 23.72550 @@ -23198,10 +23330,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 204.19210 133.18366 747.78252 57.15802 110 27 - 204.20655 133.18366 746.33401 57.17248 110 27 - - 399.66733 134.73261 755.08820 57.84309 110 53 - - 399.68264 134.73261 753.75802 57.85840 110 53 - - 594.60393 136.28155 762.49856 58.52932 110 78 - - 594.62005 136.28155 761.27091 58.54544 110 78 - + 399.66734 134.73261 755.08820 57.84309 110 53 - + 399.68265 134.73261 753.75802 57.85840 110 53 - + 594.60395 136.28155 762.49856 58.52932 110 78 - + 594.62007 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -23634,10 +23766,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.57691 78.09276 318.60499 27.17987 110 86 - - 273.57691 78.09276 317.87650 27.17987 110 86 - - 76.73790 79.64171 326.36174 27.90539 110 24 - - 76.73790 79.64171 325.71668 27.90539 110 24 - + 273.57693 78.09276 318.60499 27.17987 110 86 - + 273.57693 78.09276 317.87650 27.17987 110 86 - + 76.73791 79.64171 326.36174 27.90539 110 24 - + 76.73791 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -25172,8 +25304,8 @@ CalculationStatus -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 10 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 3 4 11 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 3 5 11 0.000 1 5 - -420.24260 -191.83061 -1171.09815 78.83289 82.26089 3 0 11 1.000 0 0 - -420.23600 -191.85733 -566.61418 78.82736 82.25620 3 1 11 1.000 0 0 + -420.24260 -191.83062 -1171.09835 78.83290 82.26089 3 0 11 1.000 0 0 + -420.23600 -191.85733 -566.61421 78.82736 82.25620 3 1 11 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 11 1.000 0 0 -469.96168 -172.80216 -181.75590 57.58640 63.64131 3 14 11 1.350 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 0 0.000 1 5 @@ -25255,7 +25387,7 @@ Force MaximumMoment=-469.96168 MaximumShearForce=-191.85733 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=78.83289 +MaximumPercentageMobilisedMoment=78.83290 MaximumPercentageMobilisedResistance=82.26089 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shi index 3223127c..94c3fa4b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:16 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shd index 133d8a51..dcc13921 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:35 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,10 +1102,10 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16414,216 +16546,216 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00025 0.00657 167.08360 - 0.20186 4.02896 133.79116 - 0.20211 4.03553 133.79116 - 1.11128 8.61225 100.49848 - 1.11128 8.61226 100.49848 + -0.00025 0.00657 167.08363 + 0.20186 4.02896 133.79118 + 0.20211 4.03553 133.79118 + 1.11128 8.61225 100.49849 + 1.11128 8.61226 100.49849 2.75992 13.73841 67.20479 2.75992 13.73843 67.20479 - 5.22405 19.41838 33.90865 - 5.20245 19.99437 33.90865 + 5.22405 19.41838 33.90866 + 5.20245 19.99437 33.90866 8.61084 24.95212 0.60794 8.65404 24.95214 0.60794 - 12.55671 26.55067 -32.70026 - 12.53511 25.97478 -32.70026 - 16.43133 25.97478 -66.01928 - 16.43133 25.97490 -66.01928 - 20.32756 25.97490 -99.35249 - 20.32756 25.97525 -99.35249 - 24.22384 25.97525 -132.70324 - 24.22385 25.97565 -132.70324 - 28.12020 25.97565 -166.07491 - 28.12020 -142.02412 -166.07491 - 6.81658 -142.02412 -199.46723 - 6.81658 -142.02393 -199.46723 - -14.48701 -142.02393 -232.86543 - -14.48701 -142.02381 -232.86543 - -35.76703 -141.70567 -266.25113 - -35.76703 -141.70562 -266.25113 - -42.83954 -141.19081 -277.37374 - -42.83955 -141.21183 -277.37374 - -64.43379 -139.47624 -311.56845 - -64.43409 -139.51420 -311.56845 - -85.74971 -137.55204 -345.70468 - -85.74941 -137.59593 -345.70468 - -106.75266 -135.40981 -379.76305 - -106.75266 -135.46746 -379.76305 - -127.41137 -133.05941 -413.72451 - -127.41137 -133.12266 -413.72451 - -147.69238 -130.49427 -447.57029 - -147.69238 -130.56309 -447.57029 - -167.56274 -127.71561 -481.28197 - -167.56273 -127.78996 -481.28197 - -186.98967 -124.72444 -514.84153 - -186.98967 -124.80428 -514.84153 - -205.94055 -121.52154 -548.23131 - -205.94055 -121.60685 -548.23131 - -224.38286 -118.10759 -581.43411 - -224.38286 -118.19835 -581.43411 - -242.28416 -114.48314 -614.43318 - -242.28416 -114.57932 -614.43318 - -259.61210 -110.64865 -647.21227 - -259.61210 -110.75024 -647.21227 - -276.33440 -106.60450 -679.75565 - -276.33440 -106.71150 -679.75565 - -292.41883 -102.35103 -712.04813 - -292.41884 -102.47693 -712.04813 - -307.75086 -96.80887 -744.07511 - -307.75086 -96.95305 -744.07511 - -322.21959 -91.11025 -775.82269 - -322.21959 -91.25880 -775.82269 - -335.79886 -85.24150 -807.27771 - -335.79886 -85.39441 -807.27771 - -348.46249 -79.20281 -838.42786 - -348.46249 -79.36007 -838.42786 - -360.18437 -72.99436 -869.26164 - -360.18437 -73.15597 -869.26164 - -370.93838 -66.61631 -899.76839 - -370.93838 -66.78227 -899.76839 - -380.69844 -60.06880 -929.93836 - -380.69844 -60.23902 -929.93836 - -389.43889 -53.35728 -959.76269 - -389.43889 -53.53175 -959.76269 - -397.13425 -46.47825 -989.23344 - -397.13425 -46.65705 -989.23344 - -403.75842 -39.42767 -1018.34363 - -403.75842 -39.61086 -1018.34363 - -409.28504 -32.20586 -1047.08723 - -409.28504 -32.39343 -1047.08723 - -413.68780 -24.81306 -1075.45924 - -413.68780 -25.00499 -1075.45924 - -416.94040 -17.24948 -1103.45565 - -416.94040 -17.34711 -1103.45565 - -418.96811 -11.01139 -1129.11341 - -418.96811 -11.01180 -1129.11341 - -420.07762 -4.49180 -1153.68526 - -420.07762 -4.49217 -1153.68526 - -420.24260 2.21201 -1170.60083 - -420.24260 2.21166 -1170.60083 - -419.43674 9.09991 -1171.09815 - -419.43674 9.09959 -1171.09815 - -417.63375 16.17180 -1159.25947 - -417.63375 16.17151 -1159.25947 - -414.80735 23.42760 -1144.60410 - -414.80735 23.42733 -1144.60410 - -410.93127 30.86722 -1129.62400 - -410.93128 30.86701 -1129.62400 - -406.65802 37.52763 -1116.25239 - -406.65802 37.52748 -1116.25239 - -401.54351 44.32729 -1102.63703 - -401.54351 44.32715 -1102.63703 - -395.57265 51.21121 -1088.78098 - -395.57265 51.21108 -1088.78098 - -388.73926 58.12791 -1074.68783 - -388.73926 58.12774 -1074.68783 - -379.12912 62.85082 -1056.64068 - -379.12913 62.85060 -1056.64068 - -368.86054 67.37338 -1038.23436 - -368.86054 67.37317 -1038.23436 - -357.91058 71.69577 -1019.47862 - -357.91058 71.69558 -1019.47862 - -346.30293 75.81812 -1000.38381 - -346.30293 75.81794 -1000.38381 - -334.06644 79.74052 -980.96095 - -334.06644 79.74035 -980.96095 - -321.23132 83.46307 -961.22162 - -321.23132 83.46292 -961.22162 - -307.82836 86.98587 -941.17798 - -307.82836 86.98572 -941.17798 - -293.88855 90.30901 -920.84272 - -293.88855 90.30886 -920.84272 - -279.44301 93.43256 -900.22905 - -279.44301 93.43241 -900.22905 - -264.52293 96.35659 -879.35066 - -264.52293 96.35644 -879.35066 - -249.15955 99.08119 -858.22168 - -249.15955 99.08104 -858.22168 - -233.38411 101.60641 -836.85666 - -233.38411 101.60626 -836.85666 - -217.22786 103.93233 -815.27054 - -217.22786 103.93217 -815.27054 - -200.72206 106.05899 -793.47864 - -200.72206 106.05884 -793.47864 - -183.89799 107.98647 -771.49659 - -183.89799 107.98631 -771.49659 - -166.78691 109.71480 -749.34032 - -166.78691 109.71464 -749.34032 - -149.42007 111.24405 -727.02605 - -149.42007 111.24388 -727.02605 - -131.82874 112.57426 -704.57022 - -131.82874 112.57409 -704.57022 - -114.04417 113.70548 -681.98951 - -114.04417 113.70530 -681.98951 - -96.09761 114.63775 -659.30076 - -96.09761 114.63757 -659.30076 - -78.02031 115.37111 -636.52096 - -78.02031 115.37093 -636.52096 - -59.84351 115.90561 -613.66726 - -59.84351 115.90543 -613.66726 - -41.59844 116.24127 -590.75686 - -41.59844 116.24110 -590.75686 - -23.31635 116.37815 -567.80705 - -23.31635 116.37798 -567.80705 - -5.02844 116.31628 -544.83515 - -5.02845 116.31612 -544.83515 - 13.23404 116.05568 -521.85848 - 13.23404 116.05553 -521.85848 - 31.43988 115.59640 -498.89435 - 31.43988 115.59627 -498.89435 - 49.55787 114.93847 -475.96000 - 49.55787 114.93835 -475.96000 - 67.55681 114.08191 -453.07259 - 67.55681 114.08182 -453.07259 - 85.40414 113.00975 -430.24918 - 85.40414 113.00968 -430.24918 - 103.06338 111.68867 -407.50667 - 103.06338 111.68864 -407.50667 - 120.49535 110.11764 -384.86179 - 120.49534 110.11765 -384.86179 - 137.66074 108.29655 -362.33106 - 137.66074 108.29660 -362.33106 - 154.52028 106.22534 -339.93073 - 154.52028 106.22545 -339.93073 - 171.03471 103.90478 -317.67678 - 171.03470 103.94814 -317.67678 - 186.01996 85.67986 -295.47946 - 186.02054 85.75013 -295.47946 - 198.21184 68.50211 -273.45985 - 198.21124 68.57031 -273.45985 - 207.69139 51.34769 -251.62963 - 207.69139 51.43188 -251.62963 - 214.43954 33.88501 -229.99785 - 214.43954 33.97122 -229.99785 - 218.39099 15.92380 -208.57098 - 218.39100 16.01265 -208.57098 - 219.45891 -2.64038 -187.35277 - 219.45891 -2.54853 -187.35277 - 217.54292 -21.87391 -166.34425 - 217.54292 -21.77881 -166.34425 - 212.53351 -41.82563 -145.54358 - 212.53351 -41.72713 -145.54358 - 204.31479 -62.52768 -124.94595 - 204.31479 -62.42448 -124.94595 - 192.72767 -84.49699 -104.54348 - 192.72767 -84.38880 -104.54348 - 177.60275 -107.34429 -84.32509 - 177.60276 -107.23222 -84.32509 - 158.80701 -130.99752 -64.27629 - 158.80701 -130.88171 -64.27629 - 136.21209 -155.47044 -44.37909 - 136.28286 -157.15607 -44.37909 + 12.55671 26.55067 -32.70027 + 12.53511 25.97478 -32.70027 + 16.43133 25.97478 -66.01929 + 16.43133 25.97490 -66.01929 + 20.32756 25.97490 -99.35251 + 20.32756 25.97525 -99.35251 + 24.22384 25.97525 -132.70327 + 24.22385 25.97565 -132.70327 + 28.12020 25.97565 -166.07494 + 28.12020 -142.02412 -166.07494 + 6.81658 -142.02412 -199.46726 + 6.81658 -142.02393 -199.46726 + -14.48701 -142.02393 -232.86547 + -14.48701 -142.02381 -232.86547 + -35.76703 -141.70567 -266.25117 + -35.76703 -141.70562 -266.25117 + -42.83954 -141.19081 -277.37378 + -42.83955 -141.21183 -277.37378 + -64.43379 -139.47624 -311.56850 + -64.43409 -139.51420 -311.56850 + -85.74971 -137.55204 -345.70473 + -85.74941 -137.59593 -345.70473 + -106.75266 -135.40981 -379.76311 + -106.75266 -135.46746 -379.76311 + -127.41137 -133.05941 -413.72457 + -127.41137 -133.12266 -413.72457 + -147.69238 -130.49427 -447.57036 + -147.69238 -130.56309 -447.57036 + -167.56274 -127.71561 -481.28205 + -167.56273 -127.78996 -481.28205 + -186.98967 -124.72444 -514.84161 + -186.98967 -124.80428 -514.84161 + -205.94055 -121.52154 -548.23140 + -205.94055 -121.60685 -548.23140 + -224.38286 -118.10759 -581.43420 + -224.38286 -118.19835 -581.43420 + -242.28416 -114.48314 -614.43328 + -242.28416 -114.57932 -614.43328 + -259.61210 -110.64865 -647.21237 + -259.61210 -110.75024 -647.21237 + -276.33440 -106.60450 -679.75576 + -276.33440 -106.71150 -679.75576 + -292.41883 -102.35103 -712.04824 + -292.41884 -102.47693 -712.04824 + -307.75086 -96.80887 -744.07523 + -307.75086 -96.95305 -744.07523 + -322.21959 -91.11025 -775.82281 + -322.21959 -91.25880 -775.82281 + -335.79886 -85.24150 -807.27784 + -335.79886 -85.39441 -807.27784 + -348.46249 -79.20281 -838.42800 + -348.46249 -79.36007 -838.42800 + -360.18437 -72.99436 -869.26178 + -360.18437 -73.15597 -869.26178 + -370.93838 -66.61631 -899.76854 + -370.93838 -66.78227 -899.76854 + -380.69844 -60.06880 -929.93852 + -380.69844 -60.23902 -929.93852 + -389.43889 -53.35728 -959.76285 + -389.43889 -53.53175 -959.76285 + -397.13424 -46.47825 -989.23361 + -397.13425 -46.65705 -989.23361 + -403.75842 -39.42767 -1018.34379 + -403.75842 -39.61086 -1018.34379 + -409.28504 -32.20586 -1047.08740 + -409.28504 -32.39343 -1047.08740 + -413.68780 -24.81306 -1075.45942 + -413.68780 -25.00499 -1075.45942 + -416.94040 -17.24948 -1103.45584 + -416.94039 -17.34711 -1103.45584 + -418.96811 -11.01139 -1129.11360 + -418.96811 -11.01180 -1129.11360 + -420.07762 -4.49180 -1153.68545 + -420.07762 -4.49217 -1153.68545 + -420.24260 2.21201 -1170.60103 + -420.24260 2.21166 -1170.60103 + -419.43674 9.09991 -1171.09835 + -419.43674 9.09959 -1171.09835 + -417.63375 16.17180 -1159.25966 + -417.63375 16.17151 -1159.25966 + -414.80735 23.42760 -1144.60429 + -414.80735 23.42733 -1144.60429 + -410.93127 30.86722 -1129.62419 + -410.93127 30.86701 -1129.62419 + -406.65802 37.52763 -1116.25258 + -406.65802 37.52748 -1116.25258 + -401.54351 44.32729 -1102.63721 + -401.54351 44.32715 -1102.63721 + -395.57265 51.21121 -1088.78116 + -395.57265 51.21108 -1088.78116 + -388.73926 58.12791 -1074.68801 + -388.73926 58.12774 -1074.68801 + -379.12912 62.85082 -1056.64085 + -379.12912 62.85060 -1056.64085 + -368.86054 67.37338 -1038.23453 + -368.86054 67.37318 -1038.23453 + -357.91058 71.69577 -1019.47878 + -357.91058 71.69559 -1019.47878 + -346.30293 75.81812 -1000.38398 + -346.30293 75.81794 -1000.38398 + -334.06643 79.74052 -980.96111 + -334.06643 79.74035 -980.96111 + -321.23132 83.46307 -961.22177 + -321.23132 83.46292 -961.22177 + -307.82836 86.98588 -941.17813 + -307.82836 86.98572 -941.17813 + -293.88854 90.30901 -920.84287 + -293.88854 90.30886 -920.84287 + -279.44301 93.43256 -900.22920 + -279.44301 93.43241 -900.22920 + -264.52293 96.35659 -879.35080 + -264.52293 96.35644 -879.35080 + -249.15955 99.08119 -858.22182 + -249.15955 99.08104 -858.22182 + -233.38410 101.60641 -836.85679 + -233.38410 101.60626 -836.85679 + -217.22785 103.93233 -815.27068 + -217.22785 103.93217 -815.27068 + -200.72206 106.05899 -793.47877 + -200.72206 106.05884 -793.47877 + -183.89799 107.98647 -771.49671 + -183.89799 107.98631 -771.49671 + -166.78690 109.71481 -749.34044 + -166.78690 109.71464 -749.34044 + -149.42007 111.24405 -727.02617 + -149.42007 111.24388 -727.02617 + -131.82874 112.57426 -704.57034 + -131.82874 112.57409 -704.57034 + -114.04417 113.70548 -681.98962 + -114.04417 113.70530 -681.98962 + -96.09761 114.63775 -659.30086 + -96.09761 114.63757 -659.30086 + -78.02031 115.37111 -636.52107 + -78.02031 115.37093 -636.52107 + -59.84350 115.90561 -613.66736 + -59.84350 115.90543 -613.66736 + -41.59844 116.24127 -590.75696 + -41.59844 116.24110 -590.75696 + -23.31634 116.37815 -567.80714 + -23.31634 116.37798 -567.80714 + -5.02844 116.31628 -544.83524 + -5.02844 116.31612 -544.83524 + 13.23404 116.05568 -521.85857 + 13.23404 116.05553 -521.85857 + 31.43988 115.59640 -498.89443 + 31.43988 115.59627 -498.89443 + 49.55788 114.93847 -475.96007 + 49.55788 114.93835 -475.96007 + 67.55681 114.08191 -453.07266 + 67.55681 114.08182 -453.07266 + 85.40414 113.00975 -430.24925 + 85.40414 113.00969 -430.24925 + 103.06339 111.68867 -407.50674 + 103.06339 111.68864 -407.50674 + 120.49535 110.11765 -384.86186 + 120.49535 110.11765 -384.86186 + 137.66075 108.29655 -362.33112 + 137.66075 108.29661 -362.33112 + 154.52028 106.22535 -339.93079 + 154.52028 106.22545 -339.93079 + 171.03471 103.90478 -317.67683 + 171.03471 103.94814 -317.67683 + 186.01997 85.67986 -295.47951 + 186.02055 85.75013 -295.47951 + 198.21184 68.50211 -273.45990 + 198.21125 68.57031 -273.45990 + 207.69140 51.34769 -251.62967 + 207.69139 51.43188 -251.62967 + 214.43954 33.88501 -229.99789 + 214.43954 33.97122 -229.99789 + 218.39100 15.92380 -208.57101 + 218.39100 16.01265 -208.57101 + 219.45892 -2.64038 -187.35281 + 219.45892 -2.54853 -187.35281 + 217.54292 -21.87391 -166.34428 + 217.54292 -21.77881 -166.34428 + 212.53351 -41.82563 -145.54361 + 212.53352 -41.72712 -145.54361 + 204.31479 -62.52768 -124.94597 + 204.31480 -62.42448 -124.94597 + 192.72767 -84.49699 -104.54350 + 192.72768 -84.38880 -104.54350 + 177.60276 -107.34429 -84.32511 + 177.60276 -107.23222 -84.32511 + 158.80701 -130.99752 -64.27630 + 158.80702 -130.88171 -64.27630 + 136.21210 -155.47044 -44.37910 + 136.28286 -157.15607 -44.37910 109.60524 -180.07533 -24.61187 109.53432 -181.78668 -24.61187 - 79.75275 -191.83061 -4.94916 - 79.75281 -191.83045 -4.94916 - 50.20135 -178.20483 14.63724 - 50.20140 -178.32315 14.63724 - 24.70441 -141.03470 34.17529 - 24.70445 -141.26143 34.17529 - 6.76590 -82.36070 53.68911 - 6.69598 -80.90958 53.68911 - -0.06995 -1.58399 73.19557 + 79.75276 -191.83062 -4.94917 + 79.75281 -191.83046 -4.94917 + 50.20136 -178.20484 14.63724 + 50.20141 -178.32316 14.63724 + 24.70442 -141.03471 34.17530 + 24.70445 -141.26144 34.17530 + 6.76590 -82.36070 53.68912 + 6.69598 -80.90958 53.68912 + -0.06995 -1.58399 73.19558 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16951,7 +17083,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 32.96830 0.00000 79.15458 26.18108 110 42 - - 30.44815 0.00000 91.92500 23.66092 110 33 - + 30.44814 0.00000 91.92500 23.66092 110 33 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17146,10 +17278,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 203.53043 133.18366 747.78252 57.15802 110 27 - 203.54488 133.18366 746.33401 57.17248 110 27 - - 399.59602 134.73261 755.08820 57.84309 110 53 - - 399.61133 134.73261 753.75802 57.85840 110 53 - - 595.42042 136.28155 762.49856 58.52932 110 78 - - 595.43654 136.28155 761.27091 58.54544 110 78 - + 399.59605 134.73261 755.08820 57.84309 110 53 - + 399.61136 134.73261 753.75802 57.85840 110 53 - + 595.42048 136.28155 762.49856 58.52932 110 78 - + 595.43660 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -17582,10 +17714,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.29853 78.09276 318.60499 27.17987 110 86 - - 273.29853 78.09276 317.87650 27.17987 110 86 - - 77.39701 79.64171 326.36174 27.90539 110 24 - - 77.39701 79.64171 325.71668 27.90539 110 24 - + 273.29860 78.09276 318.60499 27.17987 110 86 - + 273.29860 78.09276 317.87650 27.17987 110 86 - + 77.39705 79.64171 326.36174 27.90539 110 24 - + 77.39705 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -22481,186 +22613,186 @@ Displacements 12.56076 25.97133 -14.28992 16.45646 25.97133 -31.53893 16.45646 25.97146 -31.53893 - 20.35217 25.97146 -48.80215 - 20.35217 25.97181 -48.80215 - 24.24794 25.97181 -66.08294 - 24.24794 25.97221 -66.08294 + 20.35217 25.97146 -48.80216 + 20.35217 25.97181 -48.80216 + 24.24794 25.97181 -66.08295 + 24.24794 25.97221 -66.08295 28.14377 25.97221 -83.38467 28.14378 -142.02757 -83.38467 - 6.83964 -142.02757 -100.70706 - 6.83964 -142.02738 -100.70706 - -14.46446 -142.02738 -118.03536 - -14.46446 -142.02725 -118.03536 + 6.83964 -142.02757 -100.70707 + 6.83964 -142.02738 -100.70707 + -14.46446 -142.02738 -118.03537 + -14.46446 -142.02725 -118.03537 -35.74501 -141.70911 -135.35118 -35.74500 -141.70907 -135.35118 - -42.81769 -141.19426 -141.11716 - -42.81769 -141.21527 -141.11716 - -64.41247 -139.47969 -158.82997 - -64.41276 -139.51765 -158.82997 - -85.72892 -137.55549 -176.48431 - -85.72861 -137.59938 -176.48431 - -106.73240 -135.41326 -194.06081 - -106.73240 -135.47091 -194.06081 - -127.39164 -133.06285 -211.54042 - -127.39163 -133.12611 -211.54042 - -147.67317 -130.49771 -228.90437 - -147.67317 -130.56653 -228.90437 - -167.54406 -127.71906 -246.13424 - -167.54406 -127.79340 -246.13424 - -186.97153 -124.72788 -263.21200 - -186.97153 -124.80772 -263.21200 - -205.92294 -121.52499 -280.12000 - -205.92294 -121.61030 -280.12000 - -224.36577 -118.11104 -296.84104 - -224.36577 -118.20179 -296.84104 - -242.26760 -114.48659 -313.35836 - -242.26760 -114.58277 -313.35836 - -259.59607 -110.65209 -329.65572 - -259.59607 -110.75369 -329.65572 - -276.31891 -106.60794 -345.71738 - -276.31890 -106.71494 -345.71738 - -292.40387 -102.35448 -361.52815 - -292.40387 -102.48037 -361.52815 - -307.73642 -96.81232 -377.07344 - -307.73642 -96.95649 -377.07344 - -322.20569 -91.11370 -392.33934 - -322.20569 -91.26224 -392.33934 - -335.78548 -85.24494 -407.31270 - -335.78548 -85.39785 -407.31270 - -348.44965 -79.20625 -421.98120 - -348.44965 -79.36352 -421.98120 - -360.17205 -72.99781 -436.33333 - -360.17205 -73.15942 -436.33333 - -370.92659 -66.61976 -450.35845 - -370.92659 -66.78571 -450.35845 - -380.68718 -60.07224 -464.04681 - -380.68718 -60.24247 -464.04681 - -389.42817 -53.36072 -477.38952 - -389.42817 -53.53519 -477.38952 - -397.12405 -46.48169 -490.37867 - -397.12405 -46.66050 -490.37867 - -403.74875 -39.43112 -503.00727 - -403.74875 -39.61430 -503.00727 - -409.27591 -32.20931 -515.26929 - -409.27591 -32.39687 -515.26929 - -413.67920 -24.81651 -527.15972 - -413.67920 -25.00843 -527.15972 - -416.93232 -17.25292 -538.67457 - -416.93232 -17.35056 -538.67457 - -418.96053 -11.01484 -549.02803 - -418.96053 -11.01525 -549.02803 - -420.07053 -4.49524 -558.86110 - -420.07053 -4.49562 -558.86110 - -420.23600 2.20856 -565.79823 - -420.23600 2.20821 -565.79823 - -419.43063 9.09646 -566.61418 - -419.43063 9.09614 -566.61418 - -417.62813 16.16835 -562.88686 - -417.62813 16.16806 -562.88686 - -414.80223 23.42415 -558.03424 - -414.80223 23.42389 -558.03424 - -410.92664 30.86377 -552.85689 - -410.92665 30.86357 -552.85689 - -406.65382 37.52418 -548.06270 - -406.65382 37.52403 -548.06270 - -401.53974 44.32384 -543.02475 - -401.53974 44.32370 -543.02475 - -395.56932 51.20777 -537.74612 - -395.56932 51.20764 -537.74612 - -388.73635 58.12447 -532.23039 - -388.73635 58.12429 -532.23039 - -379.12676 62.84737 -524.96628 - -379.12676 62.84715 -524.96628 - -368.85871 67.36993 -517.34302 - -368.85871 67.36973 -517.34302 - -357.90930 71.69233 -509.37032 - -357.90930 71.69214 -509.37032 - -346.30219 75.81467 -501.05857 - -346.30219 75.81450 -501.05857 - -334.06624 79.73707 -492.41875 - -334.06624 79.73691 -492.41875 - -321.23166 83.45963 -483.46247 - -321.23166 83.45947 -483.46247 - -307.82924 86.98243 -474.20188 - -307.82924 86.98228 -474.20188 - -293.88997 90.30556 -464.64967 - -293.88997 90.30541 -464.64967 - -279.44497 93.42911 -454.81906 - -279.44497 93.42896 -454.81906 - -264.52544 96.35315 -444.72371 - -264.52544 96.35300 -444.72371 - -249.16260 99.07774 -434.37777 - -249.16260 99.07759 -434.37777 - -233.38769 101.60297 -423.79580 - -233.38769 101.60282 -423.79580 - -217.23199 103.92888 -412.99272 - -217.23199 103.92873 -412.99272 - -200.72673 106.05555 -401.98385 - -200.72673 106.05539 -401.98385 - -183.90320 107.98302 -390.78483 - -183.90320 107.98286 -390.78483 - -166.79266 109.71136 -379.41159 - -166.79266 109.71119 -379.41159 - -149.42636 111.24061 -367.88033 - -149.42636 111.24044 -367.88033 - -131.83557 112.57082 -356.20752 - -131.83557 112.57064 -356.20752 - -114.05155 113.70203 -344.40981 - -114.05155 113.70186 -344.40981 - -96.10553 114.63430 -332.50406 - -96.10553 114.63412 -332.50406 - -78.02877 115.36766 -320.50726 - -78.02877 115.36748 -320.50726 - -59.85251 115.90216 -308.43654 - -59.85251 115.90198 -308.43654 - -41.60799 116.23783 -296.30912 - -41.60799 116.23765 -296.30912 - -23.32643 116.37471 -284.14227 - -23.32643 116.37454 -284.14227 - -5.03907 116.31283 -271.95333 - -5.03907 116.31267 -271.95333 - 13.22287 116.05224 -259.75961 - 13.22287 116.05209 -259.75961 - 31.42817 115.59296 -247.57841 - 31.42817 115.59282 -247.57841 - 49.54562 114.93502 -235.42699 - 49.54562 114.93491 -235.42699 - 67.54402 114.07847 -223.32249 - 67.54402 114.07837 -223.32249 - 85.39081 113.00630 -211.28198 - 85.39081 113.00624 -211.28198 - 103.04951 111.68523 -199.32236 - 103.04951 111.68520 -199.32236 - 120.48093 110.11420 -187.46036 - 120.48093 110.11421 -187.46036 - 137.64579 108.29311 -175.71249 - 137.64578 108.29316 -175.71249 - 154.50478 106.22190 -164.09501 - 154.50478 106.22201 -164.09501 - 171.01867 103.90134 -152.62389 - 171.01866 103.94470 -152.62389 - 186.00338 85.67642 -141.26098 - 186.00396 85.74669 -141.26098 - 198.19471 68.49867 -130.07577 - 198.19411 68.56686 -130.07577 - 207.67372 51.34424 -119.07992 - 207.67372 51.42843 -119.07992 - 214.42132 33.88156 -108.28251 - 214.42132 33.96777 -108.28251 - 218.37224 15.92036 -97.68998 - 218.37224 16.00921 -97.68998 - 219.43961 -2.64382 -87.30610 - 219.43961 -2.55197 -87.30610 - 217.52307 -21.87735 -77.13189 - 217.52307 -21.78226 -77.13189 + -42.81769 -141.19426 -141.11717 + -42.81769 -141.21527 -141.11717 + -64.41247 -139.47969 -158.82998 + -64.41276 -139.51765 -158.82998 + -85.72892 -137.55549 -176.48432 + -85.72861 -137.59938 -176.48432 + -106.73240 -135.41326 -194.06082 + -106.73240 -135.47091 -194.06082 + -127.39164 -133.06285 -211.54043 + -127.39163 -133.12611 -211.54043 + -147.67317 -130.49771 -228.90438 + -147.67317 -130.56653 -228.90438 + -167.54406 -127.71906 -246.13426 + -167.54406 -127.79340 -246.13426 + -186.97153 -124.72788 -263.21201 + -186.97153 -124.80772 -263.21201 + -205.92294 -121.52499 -280.12001 + -205.92294 -121.61030 -280.12001 + -224.36577 -118.11104 -296.84105 + -224.36577 -118.20179 -296.84105 + -242.26760 -114.48659 -313.35837 + -242.26760 -114.58277 -313.35837 + -259.59607 -110.65209 -329.65573 + -259.59607 -110.75369 -329.65573 + -276.31891 -106.60794 -345.71739 + -276.31890 -106.71494 -345.71739 + -292.40387 -102.35448 -361.52817 + -292.40387 -102.48037 -361.52817 + -307.73642 -96.81232 -377.07346 + -307.73642 -96.95649 -377.07346 + -322.20569 -91.11370 -392.33936 + -322.20569 -91.26224 -392.33936 + -335.78548 -85.24494 -407.31272 + -335.78548 -85.39785 -407.31272 + -348.44965 -79.20625 -421.98122 + -348.44965 -79.36352 -421.98122 + -360.17205 -72.99781 -436.33335 + -360.17205 -73.15942 -436.33335 + -370.92659 -66.61976 -450.35848 + -370.92659 -66.78571 -450.35848 + -380.68718 -60.07224 -464.04683 + -380.68718 -60.24247 -464.04683 + -389.42817 -53.36072 -477.38955 + -389.42817 -53.53519 -477.38955 + -397.12405 -46.48169 -490.37870 + -397.12405 -46.66050 -490.37870 + -403.74875 -39.43112 -503.00729 + -403.74875 -39.61430 -503.00729 + -409.27591 -32.20931 -515.26931 + -409.27591 -32.39687 -515.26931 + -413.67920 -24.81651 -527.15975 + -413.67920 -25.00843 -527.15975 + -416.93232 -17.25292 -538.67460 + -416.93232 -17.35056 -538.67460 + -418.96053 -11.01484 -549.02806 + -418.96053 -11.01525 -549.02806 + -420.07053 -4.49524 -558.86113 + -420.07053 -4.49562 -558.86113 + -420.23600 2.20856 -565.79826 + -420.23600 2.20821 -565.79826 + -419.43063 9.09646 -566.61421 + -419.43063 9.09614 -566.61421 + -417.62813 16.16835 -562.88689 + -417.62813 16.16806 -562.88689 + -414.80223 23.42415 -558.03427 + -414.80223 23.42389 -558.03427 + -410.92664 30.86377 -552.85692 + -410.92665 30.86357 -552.85692 + -406.65382 37.52418 -548.06273 + -406.65382 37.52403 -548.06273 + -401.53974 44.32384 -543.02478 + -401.53974 44.32370 -543.02478 + -395.56932 51.20777 -537.74615 + -395.56932 51.20764 -537.74615 + -388.73635 58.12447 -532.23042 + -388.73635 58.12429 -532.23042 + -379.12676 62.84737 -524.96631 + -379.12676 62.84715 -524.96631 + -368.85871 67.36993 -517.34304 + -368.85871 67.36973 -517.34304 + -357.90930 71.69233 -509.37034 + -357.90930 71.69214 -509.37034 + -346.30219 75.81467 -501.05859 + -346.30219 75.81450 -501.05859 + -334.06623 79.73707 -492.41878 + -334.06623 79.73691 -492.41878 + -321.23166 83.45963 -483.46250 + -321.23166 83.45947 -483.46250 + -307.82924 86.98243 -474.20191 + -307.82924 86.98228 -474.20191 + -293.88997 90.30556 -464.64970 + -293.88997 90.30541 -464.64970 + -279.44497 93.42911 -454.81908 + -279.44497 93.42896 -454.81908 + -264.52544 96.35315 -444.72373 + -264.52544 96.35300 -444.72373 + -249.16260 99.07774 -434.37780 + -249.16260 99.07759 -434.37780 + -233.38769 101.60297 -423.79582 + -233.38769 101.60282 -423.79582 + -217.23199 103.92888 -412.99274 + -217.23198 103.92873 -412.99274 + -200.72673 106.05555 -401.98387 + -200.72673 106.05539 -401.98387 + -183.90320 107.98302 -390.78485 + -183.90320 107.98286 -390.78485 + -166.79266 109.71136 -379.41160 + -166.79266 109.71119 -379.41160 + -149.42636 111.24061 -367.88035 + -149.42636 111.24044 -367.88035 + -131.83557 112.57082 -356.20754 + -131.83557 112.57064 -356.20754 + -114.05155 113.70203 -344.40983 + -114.05155 113.70186 -344.40983 + -96.10553 114.63430 -332.50408 + -96.10553 114.63412 -332.50408 + -78.02877 115.36767 -320.50728 + -78.02877 115.36748 -320.50728 + -59.85251 115.90216 -308.43655 + -59.85251 115.90198 -308.43655 + -41.60798 116.23783 -296.30913 + -41.60798 116.23765 -296.30913 + -23.32643 116.37471 -284.14229 + -23.32643 116.37454 -284.14229 + -5.03907 116.31283 -271.95334 + -5.03907 116.31267 -271.95334 + 13.22287 116.05224 -259.75962 + 13.22287 116.05209 -259.75962 + 31.42817 115.59296 -247.57842 + 31.42817 115.59282 -247.57842 + 49.54563 114.93502 -235.42700 + 49.54563 114.93491 -235.42700 + 67.54402 114.07847 -223.32250 + 67.54402 114.07837 -223.32250 + 85.39081 113.00630 -211.28199 + 85.39081 113.00624 -211.28199 + 103.04951 111.68523 -199.32237 + 103.04951 111.68520 -199.32237 + 120.48093 110.11420 -187.46037 + 120.48093 110.11421 -187.46037 + 137.64579 108.29311 -175.71250 + 137.64579 108.29316 -175.71250 + 154.50478 106.22190 -164.09502 + 154.50478 106.22201 -164.09502 + 171.01867 103.90134 -152.62390 + 171.01867 103.94470 -152.62390 + 186.00338 85.67642 -141.26099 + 186.00396 85.74669 -141.26099 + 198.19471 68.49867 -130.07578 + 198.19412 68.56686 -130.07578 + 207.67372 51.34425 -119.07993 + 207.67372 51.42843 -119.07993 + 214.42133 33.88157 -108.28252 + 214.42133 33.96777 -108.28252 + 218.37224 15.92036 -97.68999 + 218.37224 16.00921 -97.68999 + 219.43961 -2.64382 -87.30611 + 219.43961 -2.55197 -87.30611 + 217.52307 -21.87735 -77.13190 + 217.52307 -21.78226 -77.13190 212.51312 -41.82907 -67.16551 212.51312 -41.73057 -67.16551 - 204.29385 -62.53112 -57.40214 - 204.29386 -62.42792 -57.40214 + 204.29386 -62.53112 -57.40215 + 204.29386 -62.42792 -57.40215 192.70619 -84.50043 -47.83393 - 192.70619 -84.39224 -47.83393 - 177.58073 -107.34774 -38.44976 - 177.58073 -107.23566 -38.44976 + 192.70620 -84.39224 -47.83393 + 177.58073 -107.34774 -38.44977 + 177.58074 -107.23566 -38.44977 158.78444 -131.00097 -29.23517 158.78445 -130.88516 -29.23517 136.18898 -155.47389 -20.17216 @@ -22671,7 +22803,7 @@ Displacements 79.71828 -191.84891 -2.41053 50.16967 -178.15030 6.34177 50.16978 -178.26347 6.34177 - 24.68627 -140.93451 15.04574 + 24.68627 -140.93452 15.04574 24.68636 -141.15847 15.04574 6.76210 -82.29892 23.72550 6.69256 -80.85562 23.72550 @@ -23198,10 +23330,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 204.19210 133.18366 747.78252 57.15802 110 27 - 204.20655 133.18366 746.33401 57.17248 110 27 - - 399.66733 134.73261 755.08820 57.84309 110 53 - - 399.68264 134.73261 753.75802 57.85840 110 53 - - 594.60393 136.28155 762.49856 58.52932 110 78 - - 594.62005 136.28155 761.27091 58.54544 110 78 - + 399.66734 134.73261 755.08820 57.84309 110 53 - + 399.68265 134.73261 753.75802 57.85840 110 53 - + 594.60395 136.28155 762.49856 58.52932 110 78 - + 594.62007 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -23634,10 +23766,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.57691 78.09276 318.60499 27.17987 110 86 - - 273.57691 78.09276 317.87650 27.17987 110 86 - - 76.73790 79.64171 326.36174 27.90539 110 24 - - 76.73790 79.64171 325.71668 27.90539 110 24 - + 273.57693 78.09276 318.60499 27.17987 110 86 - + 273.57693 78.09276 317.87650 27.17987 110 86 - + 76.73791 79.64171 326.36174 27.90539 110 24 - + 76.73791 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -25172,8 +25304,8 @@ CalculationStatus -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 10 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 3 4 11 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 3 5 11 0.000 1 5 - -420.24260 -191.83061 -1171.09815 78.83289 82.26089 3 0 11 1.000 0 0 - -420.23600 -191.85733 -566.61418 78.82736 82.25620 3 1 11 1.000 0 0 + -420.24260 -191.83062 -1171.09835 78.83290 82.26089 3 0 11 1.000 0 0 + -420.23600 -191.85733 -566.61421 78.82736 82.25620 3 1 11 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 11 1.000 0 0 -469.96168 -172.80216 -181.75590 57.58640 63.64131 3 14 11 1.350 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 0 0.000 1 5 @@ -25255,7 +25387,7 @@ Force MaximumMoment=-469.96168 MaximumShearForce=-191.85733 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=78.83289 +MaximumPercentageMobilisedMoment=78.83290 MaximumPercentageMobilisedResistance=82.26089 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shi index a0c71eec..47de4b81 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:26 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shd index f02d3fb2..1f0e472c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,10 +1102,10 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 11 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16414,216 +16546,216 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00025 0.00657 167.08360 - 0.20186 4.02896 133.79116 - 0.20211 4.03553 133.79116 - 1.11128 8.61225 100.49848 - 1.11128 8.61226 100.49848 + -0.00025 0.00657 167.08363 + 0.20186 4.02896 133.79118 + 0.20211 4.03553 133.79118 + 1.11128 8.61225 100.49849 + 1.11128 8.61226 100.49849 2.75992 13.73841 67.20479 2.75992 13.73843 67.20479 - 5.22405 19.41838 33.90865 - 5.20245 19.99437 33.90865 + 5.22405 19.41838 33.90866 + 5.20245 19.99437 33.90866 8.61084 24.95212 0.60794 8.65404 24.95214 0.60794 - 12.55671 26.55067 -32.70026 - 12.53511 25.97478 -32.70026 - 16.43133 25.97478 -66.01928 - 16.43133 25.97490 -66.01928 - 20.32756 25.97490 -99.35249 - 20.32756 25.97525 -99.35249 - 24.22384 25.97525 -132.70324 - 24.22385 25.97565 -132.70324 - 28.12020 25.97565 -166.07491 - 28.12020 -142.02412 -166.07491 - 6.81658 -142.02412 -199.46723 - 6.81658 -142.02393 -199.46723 - -14.48701 -142.02393 -232.86543 - -14.48701 -142.02381 -232.86543 - -35.76703 -141.70567 -266.25113 - -35.76703 -141.70562 -266.25113 - -42.83954 -141.19081 -277.37374 - -42.83955 -141.21183 -277.37374 - -64.43379 -139.47624 -311.56845 - -64.43409 -139.51420 -311.56845 - -85.74971 -137.55204 -345.70468 - -85.74941 -137.59593 -345.70468 - -106.75266 -135.40981 -379.76305 - -106.75266 -135.46746 -379.76305 - -127.41137 -133.05941 -413.72451 - -127.41137 -133.12266 -413.72451 - -147.69238 -130.49427 -447.57029 - -147.69238 -130.56309 -447.57029 - -167.56274 -127.71561 -481.28197 - -167.56273 -127.78996 -481.28197 - -186.98967 -124.72444 -514.84153 - -186.98967 -124.80428 -514.84153 - -205.94055 -121.52154 -548.23131 - -205.94055 -121.60685 -548.23131 - -224.38286 -118.10759 -581.43411 - -224.38286 -118.19835 -581.43411 - -242.28416 -114.48314 -614.43318 - -242.28416 -114.57932 -614.43318 - -259.61210 -110.64865 -647.21227 - -259.61210 -110.75024 -647.21227 - -276.33440 -106.60450 -679.75565 - -276.33440 -106.71150 -679.75565 - -292.41883 -102.35103 -712.04813 - -292.41884 -102.47693 -712.04813 - -307.75086 -96.80887 -744.07511 - -307.75086 -96.95305 -744.07511 - -322.21959 -91.11025 -775.82269 - -322.21959 -91.25880 -775.82269 - -335.79886 -85.24150 -807.27771 - -335.79886 -85.39441 -807.27771 - -348.46249 -79.20281 -838.42786 - -348.46249 -79.36007 -838.42786 - -360.18437 -72.99436 -869.26164 - -360.18437 -73.15597 -869.26164 - -370.93838 -66.61631 -899.76839 - -370.93838 -66.78227 -899.76839 - -380.69844 -60.06880 -929.93836 - -380.69844 -60.23902 -929.93836 - -389.43889 -53.35728 -959.76269 - -389.43889 -53.53175 -959.76269 - -397.13425 -46.47825 -989.23344 - -397.13425 -46.65705 -989.23344 - -403.75842 -39.42767 -1018.34363 - -403.75842 -39.61086 -1018.34363 - -409.28504 -32.20586 -1047.08723 - -409.28504 -32.39343 -1047.08723 - -413.68780 -24.81306 -1075.45924 - -413.68780 -25.00499 -1075.45924 - -416.94040 -17.24948 -1103.45565 - -416.94040 -17.34711 -1103.45565 - -418.96811 -11.01139 -1129.11341 - -418.96811 -11.01180 -1129.11341 - -420.07762 -4.49180 -1153.68526 - -420.07762 -4.49217 -1153.68526 - -420.24260 2.21201 -1170.60083 - -420.24260 2.21166 -1170.60083 - -419.43674 9.09991 -1171.09815 - -419.43674 9.09959 -1171.09815 - -417.63375 16.17180 -1159.25947 - -417.63375 16.17151 -1159.25947 - -414.80735 23.42760 -1144.60410 - -414.80735 23.42733 -1144.60410 - -410.93127 30.86722 -1129.62400 - -410.93128 30.86701 -1129.62400 - -406.65802 37.52763 -1116.25239 - -406.65802 37.52748 -1116.25239 - -401.54351 44.32729 -1102.63703 - -401.54351 44.32715 -1102.63703 - -395.57265 51.21121 -1088.78098 - -395.57265 51.21108 -1088.78098 - -388.73926 58.12791 -1074.68783 - -388.73926 58.12774 -1074.68783 - -379.12912 62.85082 -1056.64068 - -379.12913 62.85060 -1056.64068 - -368.86054 67.37338 -1038.23436 - -368.86054 67.37317 -1038.23436 - -357.91058 71.69577 -1019.47862 - -357.91058 71.69558 -1019.47862 - -346.30293 75.81812 -1000.38381 - -346.30293 75.81794 -1000.38381 - -334.06644 79.74052 -980.96095 - -334.06644 79.74035 -980.96095 - -321.23132 83.46307 -961.22162 - -321.23132 83.46292 -961.22162 - -307.82836 86.98587 -941.17798 - -307.82836 86.98572 -941.17798 - -293.88855 90.30901 -920.84272 - -293.88855 90.30886 -920.84272 - -279.44301 93.43256 -900.22905 - -279.44301 93.43241 -900.22905 - -264.52293 96.35659 -879.35066 - -264.52293 96.35644 -879.35066 - -249.15955 99.08119 -858.22168 - -249.15955 99.08104 -858.22168 - -233.38411 101.60641 -836.85666 - -233.38411 101.60626 -836.85666 - -217.22786 103.93233 -815.27054 - -217.22786 103.93217 -815.27054 - -200.72206 106.05899 -793.47864 - -200.72206 106.05884 -793.47864 - -183.89799 107.98647 -771.49659 - -183.89799 107.98631 -771.49659 - -166.78691 109.71480 -749.34032 - -166.78691 109.71464 -749.34032 - -149.42007 111.24405 -727.02605 - -149.42007 111.24388 -727.02605 - -131.82874 112.57426 -704.57022 - -131.82874 112.57409 -704.57022 - -114.04417 113.70548 -681.98951 - -114.04417 113.70530 -681.98951 - -96.09761 114.63775 -659.30076 - -96.09761 114.63757 -659.30076 - -78.02031 115.37111 -636.52096 - -78.02031 115.37093 -636.52096 - -59.84351 115.90561 -613.66726 - -59.84351 115.90543 -613.66726 - -41.59844 116.24127 -590.75686 - -41.59844 116.24110 -590.75686 - -23.31635 116.37815 -567.80705 - -23.31635 116.37798 -567.80705 - -5.02844 116.31628 -544.83515 - -5.02845 116.31612 -544.83515 - 13.23404 116.05568 -521.85848 - 13.23404 116.05553 -521.85848 - 31.43988 115.59640 -498.89435 - 31.43988 115.59627 -498.89435 - 49.55787 114.93847 -475.96000 - 49.55787 114.93835 -475.96000 - 67.55681 114.08191 -453.07259 - 67.55681 114.08182 -453.07259 - 85.40414 113.00975 -430.24918 - 85.40414 113.00968 -430.24918 - 103.06338 111.68867 -407.50667 - 103.06338 111.68864 -407.50667 - 120.49535 110.11764 -384.86179 - 120.49534 110.11765 -384.86179 - 137.66074 108.29655 -362.33106 - 137.66074 108.29660 -362.33106 - 154.52028 106.22534 -339.93073 - 154.52028 106.22545 -339.93073 - 171.03471 103.90478 -317.67678 - 171.03470 103.94814 -317.67678 - 186.01996 85.67986 -295.47946 - 186.02054 85.75013 -295.47946 - 198.21184 68.50211 -273.45985 - 198.21124 68.57031 -273.45985 - 207.69139 51.34769 -251.62963 - 207.69139 51.43188 -251.62963 - 214.43954 33.88501 -229.99785 - 214.43954 33.97122 -229.99785 - 218.39099 15.92380 -208.57098 - 218.39100 16.01265 -208.57098 - 219.45891 -2.64038 -187.35277 - 219.45891 -2.54853 -187.35277 - 217.54292 -21.87391 -166.34425 - 217.54292 -21.77881 -166.34425 - 212.53351 -41.82563 -145.54358 - 212.53351 -41.72713 -145.54358 - 204.31479 -62.52768 -124.94595 - 204.31479 -62.42448 -124.94595 - 192.72767 -84.49699 -104.54348 - 192.72767 -84.38880 -104.54348 - 177.60275 -107.34429 -84.32509 - 177.60276 -107.23222 -84.32509 - 158.80701 -130.99752 -64.27629 - 158.80701 -130.88171 -64.27629 - 136.21209 -155.47044 -44.37909 - 136.28286 -157.15607 -44.37909 + 12.55671 26.55067 -32.70027 + 12.53511 25.97478 -32.70027 + 16.43133 25.97478 -66.01929 + 16.43133 25.97490 -66.01929 + 20.32756 25.97490 -99.35251 + 20.32756 25.97525 -99.35251 + 24.22384 25.97525 -132.70327 + 24.22385 25.97565 -132.70327 + 28.12020 25.97565 -166.07494 + 28.12020 -142.02412 -166.07494 + 6.81658 -142.02412 -199.46726 + 6.81658 -142.02393 -199.46726 + -14.48701 -142.02393 -232.86547 + -14.48701 -142.02381 -232.86547 + -35.76703 -141.70567 -266.25117 + -35.76703 -141.70562 -266.25117 + -42.83954 -141.19081 -277.37378 + -42.83955 -141.21183 -277.37378 + -64.43379 -139.47624 -311.56850 + -64.43409 -139.51420 -311.56850 + -85.74971 -137.55204 -345.70473 + -85.74941 -137.59593 -345.70473 + -106.75266 -135.40981 -379.76311 + -106.75266 -135.46746 -379.76311 + -127.41137 -133.05941 -413.72457 + -127.41137 -133.12266 -413.72457 + -147.69238 -130.49427 -447.57036 + -147.69238 -130.56309 -447.57036 + -167.56274 -127.71561 -481.28205 + -167.56273 -127.78996 -481.28205 + -186.98967 -124.72444 -514.84161 + -186.98967 -124.80428 -514.84161 + -205.94055 -121.52154 -548.23140 + -205.94055 -121.60685 -548.23140 + -224.38286 -118.10759 -581.43420 + -224.38286 -118.19835 -581.43420 + -242.28416 -114.48314 -614.43328 + -242.28416 -114.57932 -614.43328 + -259.61210 -110.64865 -647.21237 + -259.61210 -110.75024 -647.21237 + -276.33440 -106.60450 -679.75576 + -276.33440 -106.71150 -679.75576 + -292.41883 -102.35103 -712.04824 + -292.41884 -102.47693 -712.04824 + -307.75086 -96.80887 -744.07523 + -307.75086 -96.95305 -744.07523 + -322.21959 -91.11025 -775.82281 + -322.21959 -91.25880 -775.82281 + -335.79886 -85.24150 -807.27784 + -335.79886 -85.39441 -807.27784 + -348.46249 -79.20281 -838.42800 + -348.46249 -79.36007 -838.42800 + -360.18437 -72.99436 -869.26178 + -360.18437 -73.15597 -869.26178 + -370.93838 -66.61631 -899.76854 + -370.93838 -66.78227 -899.76854 + -380.69844 -60.06880 -929.93852 + -380.69844 -60.23902 -929.93852 + -389.43889 -53.35728 -959.76285 + -389.43889 -53.53175 -959.76285 + -397.13424 -46.47825 -989.23361 + -397.13425 -46.65705 -989.23361 + -403.75842 -39.42767 -1018.34379 + -403.75842 -39.61086 -1018.34379 + -409.28504 -32.20586 -1047.08740 + -409.28504 -32.39343 -1047.08740 + -413.68780 -24.81306 -1075.45942 + -413.68780 -25.00499 -1075.45942 + -416.94040 -17.24948 -1103.45584 + -416.94039 -17.34711 -1103.45584 + -418.96811 -11.01139 -1129.11360 + -418.96811 -11.01180 -1129.11360 + -420.07762 -4.49180 -1153.68545 + -420.07762 -4.49217 -1153.68545 + -420.24260 2.21201 -1170.60103 + -420.24260 2.21166 -1170.60103 + -419.43674 9.09991 -1171.09835 + -419.43674 9.09959 -1171.09835 + -417.63375 16.17180 -1159.25966 + -417.63375 16.17151 -1159.25966 + -414.80735 23.42760 -1144.60429 + -414.80735 23.42733 -1144.60429 + -410.93127 30.86722 -1129.62419 + -410.93127 30.86701 -1129.62419 + -406.65802 37.52763 -1116.25258 + -406.65802 37.52748 -1116.25258 + -401.54351 44.32729 -1102.63721 + -401.54351 44.32715 -1102.63721 + -395.57265 51.21121 -1088.78116 + -395.57265 51.21108 -1088.78116 + -388.73926 58.12791 -1074.68801 + -388.73926 58.12774 -1074.68801 + -379.12912 62.85082 -1056.64085 + -379.12912 62.85060 -1056.64085 + -368.86054 67.37338 -1038.23453 + -368.86054 67.37318 -1038.23453 + -357.91058 71.69577 -1019.47878 + -357.91058 71.69559 -1019.47878 + -346.30293 75.81812 -1000.38398 + -346.30293 75.81794 -1000.38398 + -334.06643 79.74052 -980.96111 + -334.06643 79.74035 -980.96111 + -321.23132 83.46307 -961.22177 + -321.23132 83.46292 -961.22177 + -307.82836 86.98588 -941.17813 + -307.82836 86.98572 -941.17813 + -293.88854 90.30901 -920.84287 + -293.88854 90.30886 -920.84287 + -279.44301 93.43256 -900.22920 + -279.44301 93.43241 -900.22920 + -264.52293 96.35659 -879.35080 + -264.52293 96.35644 -879.35080 + -249.15955 99.08119 -858.22182 + -249.15955 99.08104 -858.22182 + -233.38410 101.60641 -836.85679 + -233.38410 101.60626 -836.85679 + -217.22785 103.93233 -815.27068 + -217.22785 103.93217 -815.27068 + -200.72206 106.05899 -793.47877 + -200.72206 106.05884 -793.47877 + -183.89799 107.98647 -771.49671 + -183.89799 107.98631 -771.49671 + -166.78690 109.71481 -749.34044 + -166.78690 109.71464 -749.34044 + -149.42007 111.24405 -727.02617 + -149.42007 111.24388 -727.02617 + -131.82874 112.57426 -704.57034 + -131.82874 112.57409 -704.57034 + -114.04417 113.70548 -681.98962 + -114.04417 113.70530 -681.98962 + -96.09761 114.63775 -659.30086 + -96.09761 114.63757 -659.30086 + -78.02031 115.37111 -636.52107 + -78.02031 115.37093 -636.52107 + -59.84350 115.90561 -613.66736 + -59.84350 115.90543 -613.66736 + -41.59844 116.24127 -590.75696 + -41.59844 116.24110 -590.75696 + -23.31634 116.37815 -567.80714 + -23.31634 116.37798 -567.80714 + -5.02844 116.31628 -544.83524 + -5.02844 116.31612 -544.83524 + 13.23404 116.05568 -521.85857 + 13.23404 116.05553 -521.85857 + 31.43988 115.59640 -498.89443 + 31.43988 115.59627 -498.89443 + 49.55788 114.93847 -475.96007 + 49.55788 114.93835 -475.96007 + 67.55681 114.08191 -453.07266 + 67.55681 114.08182 -453.07266 + 85.40414 113.00975 -430.24925 + 85.40414 113.00969 -430.24925 + 103.06339 111.68867 -407.50674 + 103.06339 111.68864 -407.50674 + 120.49535 110.11765 -384.86186 + 120.49535 110.11765 -384.86186 + 137.66075 108.29655 -362.33112 + 137.66075 108.29661 -362.33112 + 154.52028 106.22535 -339.93079 + 154.52028 106.22545 -339.93079 + 171.03471 103.90478 -317.67683 + 171.03471 103.94814 -317.67683 + 186.01997 85.67986 -295.47951 + 186.02055 85.75013 -295.47951 + 198.21184 68.50211 -273.45990 + 198.21125 68.57031 -273.45990 + 207.69140 51.34769 -251.62967 + 207.69139 51.43188 -251.62967 + 214.43954 33.88501 -229.99789 + 214.43954 33.97122 -229.99789 + 218.39100 15.92380 -208.57101 + 218.39100 16.01265 -208.57101 + 219.45892 -2.64038 -187.35281 + 219.45892 -2.54853 -187.35281 + 217.54292 -21.87391 -166.34428 + 217.54292 -21.77881 -166.34428 + 212.53351 -41.82563 -145.54361 + 212.53352 -41.72712 -145.54361 + 204.31479 -62.52768 -124.94597 + 204.31480 -62.42448 -124.94597 + 192.72767 -84.49699 -104.54350 + 192.72768 -84.38880 -104.54350 + 177.60276 -107.34429 -84.32511 + 177.60276 -107.23222 -84.32511 + 158.80701 -130.99752 -64.27630 + 158.80702 -130.88171 -64.27630 + 136.21210 -155.47044 -44.37910 + 136.28286 -157.15607 -44.37910 109.60524 -180.07533 -24.61187 109.53432 -181.78668 -24.61187 - 79.75275 -191.83061 -4.94916 - 79.75281 -191.83045 -4.94916 - 50.20135 -178.20483 14.63724 - 50.20140 -178.32315 14.63724 - 24.70441 -141.03470 34.17529 - 24.70445 -141.26143 34.17529 - 6.76590 -82.36070 53.68911 - 6.69598 -80.90958 53.68911 - -0.06995 -1.58399 73.19557 + 79.75276 -191.83062 -4.94917 + 79.75281 -191.83046 -4.94917 + 50.20136 -178.20484 14.63724 + 50.20141 -178.32316 14.63724 + 24.70442 -141.03471 34.17530 + 24.70445 -141.26144 34.17530 + 6.76590 -82.36070 53.68912 + 6.69598 -80.90958 53.68912 + -0.06995 -1.58399 73.19558 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16951,7 +17083,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 32.96830 0.00000 79.15458 26.18108 110 42 - - 30.44815 0.00000 91.92500 23.66092 110 33 - + 30.44814 0.00000 91.92500 23.66092 110 33 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17146,10 +17278,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 203.53043 133.18366 747.78252 57.15802 110 27 - 203.54488 133.18366 746.33401 57.17248 110 27 - - 399.59602 134.73261 755.08820 57.84309 110 53 - - 399.61133 134.73261 753.75802 57.85840 110 53 - - 595.42042 136.28155 762.49856 58.52932 110 78 - - 595.43654 136.28155 761.27091 58.54544 110 78 - + 399.59605 134.73261 755.08820 57.84309 110 53 - + 399.61136 134.73261 753.75802 57.85840 110 53 - + 595.42048 136.28155 762.49856 58.52932 110 78 - + 595.43660 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -17582,10 +17714,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.29853 78.09276 318.60499 27.17987 110 86 - - 273.29853 78.09276 317.87650 27.17987 110 86 - - 77.39701 79.64171 326.36174 27.90539 110 24 - - 77.39701 79.64171 325.71668 27.90539 110 24 - + 273.29860 78.09276 318.60499 27.17987 110 86 - + 273.29860 78.09276 317.87650 27.17987 110 86 - + 77.39705 79.64171 326.36174 27.90539 110 24 - + 77.39705 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -22481,186 +22613,186 @@ Displacements 12.56076 25.97133 -14.28992 16.45646 25.97133 -31.53893 16.45646 25.97146 -31.53893 - 20.35217 25.97146 -48.80215 - 20.35217 25.97181 -48.80215 - 24.24794 25.97181 -66.08294 - 24.24794 25.97221 -66.08294 + 20.35217 25.97146 -48.80216 + 20.35217 25.97181 -48.80216 + 24.24794 25.97181 -66.08295 + 24.24794 25.97221 -66.08295 28.14377 25.97221 -83.38467 28.14378 -142.02757 -83.38467 - 6.83964 -142.02757 -100.70706 - 6.83964 -142.02738 -100.70706 - -14.46446 -142.02738 -118.03536 - -14.46446 -142.02725 -118.03536 + 6.83964 -142.02757 -100.70707 + 6.83964 -142.02738 -100.70707 + -14.46446 -142.02738 -118.03537 + -14.46446 -142.02725 -118.03537 -35.74501 -141.70911 -135.35118 -35.74500 -141.70907 -135.35118 - -42.81769 -141.19426 -141.11716 - -42.81769 -141.21527 -141.11716 - -64.41247 -139.47969 -158.82997 - -64.41276 -139.51765 -158.82997 - -85.72892 -137.55549 -176.48431 - -85.72861 -137.59938 -176.48431 - -106.73240 -135.41326 -194.06081 - -106.73240 -135.47091 -194.06081 - -127.39164 -133.06285 -211.54042 - -127.39163 -133.12611 -211.54042 - -147.67317 -130.49771 -228.90437 - -147.67317 -130.56653 -228.90437 - -167.54406 -127.71906 -246.13424 - -167.54406 -127.79340 -246.13424 - -186.97153 -124.72788 -263.21200 - -186.97153 -124.80772 -263.21200 - -205.92294 -121.52499 -280.12000 - -205.92294 -121.61030 -280.12000 - -224.36577 -118.11104 -296.84104 - -224.36577 -118.20179 -296.84104 - -242.26760 -114.48659 -313.35836 - -242.26760 -114.58277 -313.35836 - -259.59607 -110.65209 -329.65572 - -259.59607 -110.75369 -329.65572 - -276.31891 -106.60794 -345.71738 - -276.31890 -106.71494 -345.71738 - -292.40387 -102.35448 -361.52815 - -292.40387 -102.48037 -361.52815 - -307.73642 -96.81232 -377.07344 - -307.73642 -96.95649 -377.07344 - -322.20569 -91.11370 -392.33934 - -322.20569 -91.26224 -392.33934 - -335.78548 -85.24494 -407.31270 - -335.78548 -85.39785 -407.31270 - -348.44965 -79.20625 -421.98120 - -348.44965 -79.36352 -421.98120 - -360.17205 -72.99781 -436.33333 - -360.17205 -73.15942 -436.33333 - -370.92659 -66.61976 -450.35845 - -370.92659 -66.78571 -450.35845 - -380.68718 -60.07224 -464.04681 - -380.68718 -60.24247 -464.04681 - -389.42817 -53.36072 -477.38952 - -389.42817 -53.53519 -477.38952 - -397.12405 -46.48169 -490.37867 - -397.12405 -46.66050 -490.37867 - -403.74875 -39.43112 -503.00727 - -403.74875 -39.61430 -503.00727 - -409.27591 -32.20931 -515.26929 - -409.27591 -32.39687 -515.26929 - -413.67920 -24.81651 -527.15972 - -413.67920 -25.00843 -527.15972 - -416.93232 -17.25292 -538.67457 - -416.93232 -17.35056 -538.67457 - -418.96053 -11.01484 -549.02803 - -418.96053 -11.01525 -549.02803 - -420.07053 -4.49524 -558.86110 - -420.07053 -4.49562 -558.86110 - -420.23600 2.20856 -565.79823 - -420.23600 2.20821 -565.79823 - -419.43063 9.09646 -566.61418 - -419.43063 9.09614 -566.61418 - -417.62813 16.16835 -562.88686 - -417.62813 16.16806 -562.88686 - -414.80223 23.42415 -558.03424 - -414.80223 23.42389 -558.03424 - -410.92664 30.86377 -552.85689 - -410.92665 30.86357 -552.85689 - -406.65382 37.52418 -548.06270 - -406.65382 37.52403 -548.06270 - -401.53974 44.32384 -543.02475 - -401.53974 44.32370 -543.02475 - -395.56932 51.20777 -537.74612 - -395.56932 51.20764 -537.74612 - -388.73635 58.12447 -532.23039 - -388.73635 58.12429 -532.23039 - -379.12676 62.84737 -524.96628 - -379.12676 62.84715 -524.96628 - -368.85871 67.36993 -517.34302 - -368.85871 67.36973 -517.34302 - -357.90930 71.69233 -509.37032 - -357.90930 71.69214 -509.37032 - -346.30219 75.81467 -501.05857 - -346.30219 75.81450 -501.05857 - -334.06624 79.73707 -492.41875 - -334.06624 79.73691 -492.41875 - -321.23166 83.45963 -483.46247 - -321.23166 83.45947 -483.46247 - -307.82924 86.98243 -474.20188 - -307.82924 86.98228 -474.20188 - -293.88997 90.30556 -464.64967 - -293.88997 90.30541 -464.64967 - -279.44497 93.42911 -454.81906 - -279.44497 93.42896 -454.81906 - -264.52544 96.35315 -444.72371 - -264.52544 96.35300 -444.72371 - -249.16260 99.07774 -434.37777 - -249.16260 99.07759 -434.37777 - -233.38769 101.60297 -423.79580 - -233.38769 101.60282 -423.79580 - -217.23199 103.92888 -412.99272 - -217.23199 103.92873 -412.99272 - -200.72673 106.05555 -401.98385 - -200.72673 106.05539 -401.98385 - -183.90320 107.98302 -390.78483 - -183.90320 107.98286 -390.78483 - -166.79266 109.71136 -379.41159 - -166.79266 109.71119 -379.41159 - -149.42636 111.24061 -367.88033 - -149.42636 111.24044 -367.88033 - -131.83557 112.57082 -356.20752 - -131.83557 112.57064 -356.20752 - -114.05155 113.70203 -344.40981 - -114.05155 113.70186 -344.40981 - -96.10553 114.63430 -332.50406 - -96.10553 114.63412 -332.50406 - -78.02877 115.36766 -320.50726 - -78.02877 115.36748 -320.50726 - -59.85251 115.90216 -308.43654 - -59.85251 115.90198 -308.43654 - -41.60799 116.23783 -296.30912 - -41.60799 116.23765 -296.30912 - -23.32643 116.37471 -284.14227 - -23.32643 116.37454 -284.14227 - -5.03907 116.31283 -271.95333 - -5.03907 116.31267 -271.95333 - 13.22287 116.05224 -259.75961 - 13.22287 116.05209 -259.75961 - 31.42817 115.59296 -247.57841 - 31.42817 115.59282 -247.57841 - 49.54562 114.93502 -235.42699 - 49.54562 114.93491 -235.42699 - 67.54402 114.07847 -223.32249 - 67.54402 114.07837 -223.32249 - 85.39081 113.00630 -211.28198 - 85.39081 113.00624 -211.28198 - 103.04951 111.68523 -199.32236 - 103.04951 111.68520 -199.32236 - 120.48093 110.11420 -187.46036 - 120.48093 110.11421 -187.46036 - 137.64579 108.29311 -175.71249 - 137.64578 108.29316 -175.71249 - 154.50478 106.22190 -164.09501 - 154.50478 106.22201 -164.09501 - 171.01867 103.90134 -152.62389 - 171.01866 103.94470 -152.62389 - 186.00338 85.67642 -141.26098 - 186.00396 85.74669 -141.26098 - 198.19471 68.49867 -130.07577 - 198.19411 68.56686 -130.07577 - 207.67372 51.34424 -119.07992 - 207.67372 51.42843 -119.07992 - 214.42132 33.88156 -108.28251 - 214.42132 33.96777 -108.28251 - 218.37224 15.92036 -97.68998 - 218.37224 16.00921 -97.68998 - 219.43961 -2.64382 -87.30610 - 219.43961 -2.55197 -87.30610 - 217.52307 -21.87735 -77.13189 - 217.52307 -21.78226 -77.13189 + -42.81769 -141.19426 -141.11717 + -42.81769 -141.21527 -141.11717 + -64.41247 -139.47969 -158.82998 + -64.41276 -139.51765 -158.82998 + -85.72892 -137.55549 -176.48432 + -85.72861 -137.59938 -176.48432 + -106.73240 -135.41326 -194.06082 + -106.73240 -135.47091 -194.06082 + -127.39164 -133.06285 -211.54043 + -127.39163 -133.12611 -211.54043 + -147.67317 -130.49771 -228.90438 + -147.67317 -130.56653 -228.90438 + -167.54406 -127.71906 -246.13426 + -167.54406 -127.79340 -246.13426 + -186.97153 -124.72788 -263.21201 + -186.97153 -124.80772 -263.21201 + -205.92294 -121.52499 -280.12001 + -205.92294 -121.61030 -280.12001 + -224.36577 -118.11104 -296.84105 + -224.36577 -118.20179 -296.84105 + -242.26760 -114.48659 -313.35837 + -242.26760 -114.58277 -313.35837 + -259.59607 -110.65209 -329.65573 + -259.59607 -110.75369 -329.65573 + -276.31891 -106.60794 -345.71739 + -276.31890 -106.71494 -345.71739 + -292.40387 -102.35448 -361.52817 + -292.40387 -102.48037 -361.52817 + -307.73642 -96.81232 -377.07346 + -307.73642 -96.95649 -377.07346 + -322.20569 -91.11370 -392.33936 + -322.20569 -91.26224 -392.33936 + -335.78548 -85.24494 -407.31272 + -335.78548 -85.39785 -407.31272 + -348.44965 -79.20625 -421.98122 + -348.44965 -79.36352 -421.98122 + -360.17205 -72.99781 -436.33335 + -360.17205 -73.15942 -436.33335 + -370.92659 -66.61976 -450.35848 + -370.92659 -66.78571 -450.35848 + -380.68718 -60.07224 -464.04683 + -380.68718 -60.24247 -464.04683 + -389.42817 -53.36072 -477.38955 + -389.42817 -53.53519 -477.38955 + -397.12405 -46.48169 -490.37870 + -397.12405 -46.66050 -490.37870 + -403.74875 -39.43112 -503.00729 + -403.74875 -39.61430 -503.00729 + -409.27591 -32.20931 -515.26931 + -409.27591 -32.39687 -515.26931 + -413.67920 -24.81651 -527.15975 + -413.67920 -25.00843 -527.15975 + -416.93232 -17.25292 -538.67460 + -416.93232 -17.35056 -538.67460 + -418.96053 -11.01484 -549.02806 + -418.96053 -11.01525 -549.02806 + -420.07053 -4.49524 -558.86113 + -420.07053 -4.49562 -558.86113 + -420.23600 2.20856 -565.79826 + -420.23600 2.20821 -565.79826 + -419.43063 9.09646 -566.61421 + -419.43063 9.09614 -566.61421 + -417.62813 16.16835 -562.88689 + -417.62813 16.16806 -562.88689 + -414.80223 23.42415 -558.03427 + -414.80223 23.42389 -558.03427 + -410.92664 30.86377 -552.85692 + -410.92665 30.86357 -552.85692 + -406.65382 37.52418 -548.06273 + -406.65382 37.52403 -548.06273 + -401.53974 44.32384 -543.02478 + -401.53974 44.32370 -543.02478 + -395.56932 51.20777 -537.74615 + -395.56932 51.20764 -537.74615 + -388.73635 58.12447 -532.23042 + -388.73635 58.12429 -532.23042 + -379.12676 62.84737 -524.96631 + -379.12676 62.84715 -524.96631 + -368.85871 67.36993 -517.34304 + -368.85871 67.36973 -517.34304 + -357.90930 71.69233 -509.37034 + -357.90930 71.69214 -509.37034 + -346.30219 75.81467 -501.05859 + -346.30219 75.81450 -501.05859 + -334.06623 79.73707 -492.41878 + -334.06623 79.73691 -492.41878 + -321.23166 83.45963 -483.46250 + -321.23166 83.45947 -483.46250 + -307.82924 86.98243 -474.20191 + -307.82924 86.98228 -474.20191 + -293.88997 90.30556 -464.64970 + -293.88997 90.30541 -464.64970 + -279.44497 93.42911 -454.81908 + -279.44497 93.42896 -454.81908 + -264.52544 96.35315 -444.72373 + -264.52544 96.35300 -444.72373 + -249.16260 99.07774 -434.37780 + -249.16260 99.07759 -434.37780 + -233.38769 101.60297 -423.79582 + -233.38769 101.60282 -423.79582 + -217.23199 103.92888 -412.99274 + -217.23198 103.92873 -412.99274 + -200.72673 106.05555 -401.98387 + -200.72673 106.05539 -401.98387 + -183.90320 107.98302 -390.78485 + -183.90320 107.98286 -390.78485 + -166.79266 109.71136 -379.41160 + -166.79266 109.71119 -379.41160 + -149.42636 111.24061 -367.88035 + -149.42636 111.24044 -367.88035 + -131.83557 112.57082 -356.20754 + -131.83557 112.57064 -356.20754 + -114.05155 113.70203 -344.40983 + -114.05155 113.70186 -344.40983 + -96.10553 114.63430 -332.50408 + -96.10553 114.63412 -332.50408 + -78.02877 115.36767 -320.50728 + -78.02877 115.36748 -320.50728 + -59.85251 115.90216 -308.43655 + -59.85251 115.90198 -308.43655 + -41.60798 116.23783 -296.30913 + -41.60798 116.23765 -296.30913 + -23.32643 116.37471 -284.14229 + -23.32643 116.37454 -284.14229 + -5.03907 116.31283 -271.95334 + -5.03907 116.31267 -271.95334 + 13.22287 116.05224 -259.75962 + 13.22287 116.05209 -259.75962 + 31.42817 115.59296 -247.57842 + 31.42817 115.59282 -247.57842 + 49.54563 114.93502 -235.42700 + 49.54563 114.93491 -235.42700 + 67.54402 114.07847 -223.32250 + 67.54402 114.07837 -223.32250 + 85.39081 113.00630 -211.28199 + 85.39081 113.00624 -211.28199 + 103.04951 111.68523 -199.32237 + 103.04951 111.68520 -199.32237 + 120.48093 110.11420 -187.46037 + 120.48093 110.11421 -187.46037 + 137.64579 108.29311 -175.71250 + 137.64579 108.29316 -175.71250 + 154.50478 106.22190 -164.09502 + 154.50478 106.22201 -164.09502 + 171.01867 103.90134 -152.62390 + 171.01867 103.94470 -152.62390 + 186.00338 85.67642 -141.26099 + 186.00396 85.74669 -141.26099 + 198.19471 68.49867 -130.07578 + 198.19412 68.56686 -130.07578 + 207.67372 51.34425 -119.07993 + 207.67372 51.42843 -119.07993 + 214.42133 33.88157 -108.28252 + 214.42133 33.96777 -108.28252 + 218.37224 15.92036 -97.68999 + 218.37224 16.00921 -97.68999 + 219.43961 -2.64382 -87.30611 + 219.43961 -2.55197 -87.30611 + 217.52307 -21.87735 -77.13190 + 217.52307 -21.78226 -77.13190 212.51312 -41.82907 -67.16551 212.51312 -41.73057 -67.16551 - 204.29385 -62.53112 -57.40214 - 204.29386 -62.42792 -57.40214 + 204.29386 -62.53112 -57.40215 + 204.29386 -62.42792 -57.40215 192.70619 -84.50043 -47.83393 - 192.70619 -84.39224 -47.83393 - 177.58073 -107.34774 -38.44976 - 177.58073 -107.23566 -38.44976 + 192.70620 -84.39224 -47.83393 + 177.58073 -107.34774 -38.44977 + 177.58074 -107.23566 -38.44977 158.78444 -131.00097 -29.23517 158.78445 -130.88516 -29.23517 136.18898 -155.47389 -20.17216 @@ -22671,7 +22803,7 @@ Displacements 79.71828 -191.84891 -2.41053 50.16967 -178.15030 6.34177 50.16978 -178.26347 6.34177 - 24.68627 -140.93451 15.04574 + 24.68627 -140.93452 15.04574 24.68636 -141.15847 15.04574 6.76210 -82.29892 23.72550 6.69256 -80.85562 23.72550 @@ -23198,10 +23330,10 @@ Status character 32.42807 131.63471 739.01307 56.48771 1 0 A 204.19210 133.18366 747.78252 57.15802 110 27 - 204.20655 133.18366 746.33401 57.17248 110 27 - - 399.66733 134.73261 755.08820 57.84309 110 53 - - 399.68264 134.73261 753.75802 57.85840 110 53 - - 594.60393 136.28155 762.49856 58.52932 110 78 - - 594.62005 136.28155 761.27091 58.54544 110 78 - + 399.66734 134.73261 755.08820 57.84309 110 53 - + 399.68265 134.73261 753.75802 57.85840 110 53 - + 594.60395 136.28155 762.49856 58.52932 110 78 - + 594.62007 136.28155 761.27091 58.54544 110 78 - 769.99919 137.83050 769.99919 59.21669 202 100 P [END OF DATA] [END OF TABLE] @@ -23634,10 +23766,10 @@ Status character 302.40039 74.99487 302.40039 25.72882 202 100 P 310.92777 76.54382 310.92777 26.45434 202 100 P 310.10030 76.54382 310.10030 26.45434 202 100 P - 273.57691 78.09276 318.60499 27.17987 110 86 - - 273.57691 78.09276 317.87650 27.17987 110 86 - - 76.73790 79.64171 326.36174 27.90539 110 24 - - 76.73790 79.64171 325.71668 27.90539 110 24 - + 273.57693 78.09276 318.60499 27.17987 110 86 - + 273.57693 78.09276 317.87650 27.17987 110 86 - + 76.73791 79.64171 326.36174 27.90539 110 24 - + 76.73791 79.64171 325.71668 27.90539 110 24 - 15.98865 81.19066 334.18515 28.63092 1 0 A 15.98918 81.19066 333.61100 28.63092 1 0 A 16.39436 82.73961 342.06492 29.35645 1 0 A @@ -25172,8 +25304,8 @@ CalculationStatus -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 10 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 3 4 11 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 3 5 11 0.000 1 5 - -420.24260 -191.83061 -1171.09815 78.83289 82.26089 3 0 11 1.000 0 0 - -420.23600 -191.85733 -566.61418 78.82736 82.25620 3 1 11 1.000 0 0 + -420.24260 -191.83062 -1171.09835 78.83290 82.26089 3 0 11 1.000 0 0 + -420.23600 -191.85733 -566.61421 78.82736 82.25620 3 1 11 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 11 1.000 0 0 -469.96168 -172.80216 -181.75590 57.58640 63.64131 3 14 11 1.350 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 0 0.000 1 5 @@ -25255,7 +25387,7 @@ Force MaximumMoment=-469.96168 MaximumShearForce=-191.85733 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=78.83289 +MaximumPercentageMobilisedMoment=78.83290 MaximumPercentageMobilisedResistance=82.26089 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shi index 585a0c59..487ab761 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:35 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shd index 790ad5fd..c297b571 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,9 +1102,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shi index 4182b9d6..9cfaba45 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shd index f3db79dd..79a5057a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,9 +1102,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 10 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 4 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shi index 32f34207..24c2ed12 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shd index 0398990d..33505c6d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44n.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44n.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,7 +1102,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16437,218 +16569,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00632 140.08544 - 0.20183 4.02871 111.43945 - 0.20207 4.03503 111.43945 - 1.11117 8.61175 82.79323 - 1.11117 8.61176 82.79323 - 2.75973 13.73791 54.14599 - 2.75973 13.73793 54.14599 - 5.22379 19.41788 25.49632 - 5.20523 19.91280 25.49632 + -0.00024 0.00632 140.08542 + 0.20183 4.02871 111.43943 + 0.20207 4.03503 111.43943 + 1.11117 8.61175 82.79321 + 1.11117 8.61176 82.79321 + 2.75973 13.73791 54.14598 + 2.75973 13.73793 54.14598 + 5.22379 19.41788 25.49631 + 5.20523 19.91280 25.49631 8.58732 24.58929 -3.15794 8.62444 24.58932 -3.15794 - 12.44456 25.90659 -31.81965 - 12.42600 25.41178 -31.81965 - 16.23777 25.41178 -60.49209 - 16.23777 25.41191 -60.49209 - 20.04955 25.41191 -89.17855 - 20.04955 25.41208 -89.17855 - 23.86136 25.41208 -117.88232 - 23.86136 25.41249 -117.88232 - 27.67323 25.41249 -146.60669 - 27.67324 -142.58708 -146.60669 - 6.28517 -142.58708 -175.35132 - 6.28518 -142.58688 -175.35132 - -15.10286 -142.58688 -204.10138 - -15.10286 -142.58675 -204.10138 - -36.46732 -142.26861 -232.83840 - -36.46732 -142.26856 -232.83840 - -43.56798 -141.75375 -242.41132 - -43.56798 -141.75375 -242.41132 - -50.64229 -141.21465 -251.98006 - -50.64229 -141.21465 -251.98006 - -71.69501 -139.45309 -280.65444 - -71.69530 -139.44522 -280.65444 - -92.46650 -137.46909 -309.26695 - -92.46620 -137.46131 -309.26695 - -112.92387 -135.27286 -337.79966 - -112.92386 -135.27308 -337.79966 - -133.03749 -132.87406 -366.23490 - -133.03749 -132.87435 -366.23490 - -152.77560 -130.26617 -394.55532 - -152.77560 -130.26653 -394.55532 - -172.10693 -127.45030 -422.74388 - -172.10692 -127.45071 -422.74388 - -191.00033 -124.42736 -450.78390 - -191.00033 -124.42782 -450.78390 - -209.42481 -121.19808 -478.65906 - -209.42481 -121.19859 -478.65906 - -227.34947 -117.76310 -506.35346 - -227.34947 -117.76364 -506.35346 - -244.74348 -114.12291 -533.85163 - -244.74348 -114.12349 -533.85163 - -261.57611 -110.27796 -561.13856 - -261.57611 -110.27858 -561.13856 - -277.81666 -106.22862 -588.19971 - -277.81666 -106.22926 -588.19971 - -293.43449 -101.97519 -615.02108 - -293.43450 -102.04613 -615.02108 - -308.70024 -96.37807 -642.26696 - -308.70024 -96.52224 -642.26696 - -323.10270 -90.67945 -669.23257 - -323.10270 -90.82799 -669.23257 - -336.61568 -84.81069 -695.90483 - -336.61568 -84.96360 -695.90483 - -349.21304 -78.77200 -722.27148 - -349.21304 -78.92927 -722.27148 - -360.86864 -72.56356 -748.32106 - -360.86864 -72.72517 -748.32106 - -371.55637 -66.18551 -774.04301 - -371.55637 -66.35147 -774.04301 - -381.25015 -59.63800 -799.42761 - -381.25015 -59.80823 -799.42761 - -389.92433 -52.92648 -824.46607 - -389.92433 -53.10095 -824.46607 - -397.55341 -46.04745 -849.15050 - -397.55341 -46.22626 -849.15050 - -404.11130 -38.99688 -873.47399 - -404.11130 -39.18007 -873.47399 - -409.57165 -31.77507 -897.43058 - -409.57165 -31.96263 -897.43058 - -413.90814 -24.38227 -921.01532 - -413.90814 -24.57420 -921.01532 - -417.09446 -16.81869 -944.22426 - -417.09446 -16.91632 -944.22426 - -419.06063 -10.58060 -965.43638 - -419.06063 -10.58101 -965.43638 - -420.10860 -4.06101 -985.57618 - -420.10860 -4.06138 -985.57618 - -420.21204 2.64280 -998.86477 - -420.21204 2.64245 -998.86477 - -419.34463 9.53070 -998.54995 - -419.34463 9.53038 -998.54995 - -417.48010 16.60260 -988.69350 - -417.48010 16.60231 -988.69350 - -414.59216 23.85840 -976.79125 - -414.59216 23.85814 -976.79125 - -410.65454 31.29802 -964.56444 - -410.65454 31.29786 -964.56444 - -407.25962 36.61510 -955.81416 - -407.25962 36.61503 -955.81416 - -403.32847 42.02227 -946.90765 - -403.32847 42.02212 -946.90765 - -396.41083 50.21977 -933.25828 - -396.41083 50.21954 -933.25828 - -388.26005 58.46430 -919.26678 - -388.26005 58.46408 -919.26678 - -378.60130 63.13321 -904.24974 - -378.60130 63.13300 -904.24974 - -368.29258 67.60182 -888.87403 - -368.29258 67.60162 -888.87403 - -357.31096 71.87027 -873.14943 - -357.31096 71.87008 -873.14943 - -345.68013 75.93866 -857.08634 - -345.68013 75.93849 -857.08634 - -333.42893 79.80711 -840.69578 - -333.42893 79.80695 -840.69578 - -320.58759 83.47572 -823.98936 - -320.58759 83.47556 -823.98936 - -307.18688 86.94457 -806.97923 - -307.18688 86.94442 -806.97923 - -293.25780 90.21375 -789.67810 - -293.25780 90.21360 -789.67810 - -278.83147 93.28334 -772.09915 - -278.83147 93.28319 -772.09915 - -263.93908 96.15342 -754.25606 - -263.93908 96.15327 -754.25606 - -248.61186 98.82406 -736.16292 - -248.61186 98.82391 -736.16292 - -232.88106 101.29533 -717.83427 - -232.88106 101.29518 -717.83427 - -216.77794 103.56729 -699.28501 - -216.77794 103.56713 -699.28501 - -200.33375 105.64000 -680.53038 - -200.33375 105.63984 -680.53038 - -183.57976 107.51351 -661.58596 - -183.57976 107.51335 -661.58596 - -166.54723 109.18789 -642.46763 - -166.54723 109.18772 -642.46763 - -149.26744 110.66318 -623.19152 - -149.26744 110.66300 -623.19152 - -131.77163 111.93942 -603.77401 - -131.77163 111.93924 -603.77401 - -114.09106 113.01668 -584.23166 - -114.09106 113.01649 -584.23166 - -96.25698 113.89498 -564.58122 - -96.25698 113.89479 -564.58122 - -78.30064 114.57438 -544.83960 - -78.30064 114.57419 -544.83960 - -60.25328 115.05491 -525.02379 - -60.25328 115.05472 -525.02379 - -42.14614 115.33661 -505.15090 - -42.14614 115.33642 -505.15090 - -24.01044 115.41952 -485.23808 - -24.01044 115.41934 -485.23808 - -5.87742 115.30368 -465.30252 - -5.87743 115.30351 -465.30252 - 12.22169 114.98912 -445.36138 - 12.22169 114.98895 -445.36138 - 30.25569 114.47587 -425.43181 - 30.25569 114.47572 -425.43181 - 48.19336 113.76397 -405.53090 - 48.19336 113.76384 -405.53090 - 66.00349 112.85344 -385.67565 - 66.00349 112.85334 -385.67565 - 83.65354 111.72732 -365.88292 - 83.65353 111.72724 -365.88292 - 101.10701 110.35227 -346.16943 - 101.10701 110.35223 -346.16943 - 118.32473 108.72728 -326.55172 - 118.32473 108.72728 -326.55172 - 135.26740 106.85222 -307.04609 - 135.26740 106.85227 -307.04609 - 151.89573 104.72706 -287.66861 - 151.89573 104.72716 -287.66861 - 168.17047 102.35253 -268.43501 - 168.17047 102.39603 -268.43501 - 182.90638 84.07354 -249.26976 - 182.90637 84.15896 -249.26976 - 194.84215 66.85673 -230.27924 - 194.84276 66.92411 -230.27924 - 204.05871 49.64728 -211.47489 - 204.05808 49.71580 -211.47489 - 210.53099 32.11472 -192.86550 - 210.53099 32.20123 -192.86550 - 214.19870 14.09961 -174.45728 - 214.19870 14.18877 -174.45728 - 214.97435 -4.51847 -156.25372 - 214.97435 -4.42630 -156.25372 - 212.75759 -23.80589 -138.25555 - 212.75759 -23.71048 -138.25555 - 207.43890 -43.81151 -120.46065 - 207.43890 -43.71269 -120.46065 - 198.90239 -64.56745 -102.86391 - 198.90239 -64.46394 -102.86391 - 186.98897 -86.59066 -85.45717 - 186.98897 -86.48216 -85.45717 - 171.52924 -109.49187 -68.22901 - 171.52924 -109.37949 -68.22901 - 152.39017 -133.19901 -51.16463 - 152.39018 -133.08290 -51.16463 - 129.44342 -157.72584 -34.24571 - 129.50347 -159.14456 -34.24571 - 102.71589 -178.16033 -17.45031 - 102.71543 -181.14920 -17.45031 - 73.61621 -184.07153 -0.75292 - 73.49695 -184.10265 -0.75292 - 45.53763 -166.61526 15.87401 - 45.59727 -165.22467 15.87401 - 22.18615 -128.25655 32.45697 - 22.18619 -128.47420 32.45697 - 6.02657 -73.15861 49.01813 - 6.02659 -73.46498 49.01813 - 0.00000 0.18253 65.57271 + 12.44456 25.90659 -31.81964 + 12.42600 25.41178 -31.81964 + 16.23777 25.41178 -60.49208 + 16.23777 25.41191 -60.49208 + 20.04955 25.41191 -89.17853 + 20.04955 25.41208 -89.17853 + 23.86136 25.41208 -117.88230 + 23.86136 25.41249 -117.88230 + 27.67323 25.41249 -146.60666 + 27.67324 -142.58708 -146.60666 + 6.28518 -142.58708 -175.35128 + 6.28518 -142.58688 -175.35128 + -15.10286 -142.58688 -204.10133 + -15.10285 -142.58675 -204.10133 + -36.46732 -142.26861 -232.83835 + -36.46732 -142.26856 -232.83835 + -43.56798 -141.75375 -242.41127 + -43.56798 -141.75375 -242.41127 + -50.64228 -141.21465 -251.98001 + -50.64228 -141.21465 -251.98001 + -71.69500 -139.45309 -280.65439 + -71.69530 -139.44522 -280.65439 + -92.46649 -137.46909 -309.26689 + -92.46620 -137.46131 -309.26689 + -112.92386 -135.27286 -337.79959 + -112.92386 -135.27308 -337.79959 + -133.03749 -132.87407 -366.23483 + -133.03749 -132.87435 -366.23483 + -152.77560 -130.26617 -394.55525 + -152.77560 -130.26653 -394.55525 + -172.10693 -127.45030 -422.74380 + -172.10692 -127.45071 -422.74380 + -191.00033 -124.42736 -450.78381 + -191.00033 -124.42782 -450.78381 + -209.42481 -121.19808 -478.65897 + -209.42481 -121.19859 -478.65897 + -227.34947 -117.76310 -506.35336 + -227.34947 -117.76364 -506.35336 + -244.74348 -114.12291 -533.85153 + -244.74348 -114.12350 -533.85153 + -261.57611 -110.27796 -561.13845 + -261.57611 -110.27858 -561.13845 + -277.81666 -106.22862 -588.19960 + -277.81665 -106.22926 -588.19960 + -293.43449 -101.97519 -615.02096 + -293.43450 -102.04613 -615.02096 + -308.70024 -96.37807 -642.26683 + -308.70024 -96.52224 -642.26683 + -323.10270 -90.67945 -669.23244 + -323.10270 -90.82799 -669.23244 + -336.61568 -84.81069 -695.90470 + -336.61568 -84.96360 -695.90470 + -349.21304 -78.77200 -722.27133 + -349.21304 -78.92927 -722.27133 + -360.86864 -72.56356 -748.32091 + -360.86864 -72.72517 -748.32091 + -371.55637 -66.18551 -774.04285 + -371.55637 -66.35147 -774.04285 + -381.25015 -59.63800 -799.42745 + -381.25015 -59.80823 -799.42745 + -389.92433 -52.92648 -824.46590 + -389.92433 -53.10095 -824.46590 + -397.55341 -46.04745 -849.15033 + -397.55341 -46.22626 -849.15033 + -404.11130 -38.99688 -873.47382 + -404.11130 -39.18007 -873.47382 + -409.57165 -31.77507 -897.43040 + -409.57165 -31.96263 -897.43040 + -413.90814 -24.38227 -921.01513 + -413.90814 -24.57420 -921.01513 + -417.09446 -16.81869 -944.22407 + -417.09446 -16.91632 -944.22407 + -419.06063 -10.58060 -965.43618 + -419.06063 -10.58102 -965.43618 + -420.10860 -4.06101 -985.57598 + -420.10860 -4.06138 -985.57598 + -420.21204 2.64280 -998.86457 + -420.21204 2.64245 -998.86457 + -419.34463 9.53070 -998.54974 + -419.34463 9.53038 -998.54974 + -417.48010 16.60260 -988.69330 + -417.48010 16.60231 -988.69330 + -414.59216 23.85840 -976.79106 + -414.59216 23.85814 -976.79106 + -410.65454 31.29802 -964.56424 + -410.65454 31.29786 -964.56424 + -407.25962 36.61510 -955.81397 + -407.25962 36.61502 -955.81397 + -403.32847 42.02227 -946.90746 + -403.32847 42.02211 -946.90746 + -396.41084 50.21976 -933.25809 + -396.41084 50.21954 -933.25809 + -388.26005 58.46430 -919.26660 + -388.26005 58.46408 -919.26660 + -378.60131 63.13321 -904.24956 + -378.60131 63.13299 -904.24956 + -368.29258 67.60182 -888.87386 + -368.29258 67.60162 -888.87386 + -357.31096 71.87027 -873.14926 + -357.31096 71.87008 -873.14926 + -345.68014 75.93866 -857.08617 + -345.68014 75.93849 -857.08617 + -333.42893 79.80711 -840.69562 + -333.42893 79.80695 -840.69562 + -320.58760 83.47572 -823.98920 + -320.58760 83.47556 -823.98920 + -307.18688 86.94457 -806.97907 + -307.18688 86.94441 -806.97907 + -293.25780 90.21375 -789.67794 + -293.25780 90.21360 -789.67794 + -278.83147 93.28334 -772.09900 + -278.83147 93.28319 -772.09900 + -263.93908 96.15342 -754.25591 + -263.93908 96.15327 -754.25591 + -248.61187 98.82406 -736.16278 + -248.61187 98.82391 -736.16278 + -232.88107 101.29533 -717.83414 + -232.88107 101.29518 -717.83414 + -216.77794 103.56729 -699.28487 + -216.77794 103.56713 -699.28487 + -200.33375 105.64000 -680.53025 + -200.33375 105.63983 -680.53025 + -183.57976 107.51351 -661.58583 + -183.57976 107.51334 -661.58583 + -166.54724 109.18789 -642.46751 + -166.54724 109.18771 -642.46751 + -149.26744 110.66318 -623.19140 + -149.26744 110.66300 -623.19140 + -131.77163 111.93942 -603.77389 + -131.77163 111.93924 -603.77389 + -114.09106 113.01668 -584.23155 + -114.09106 113.01649 -584.23155 + -96.25699 113.89498 -564.58111 + -96.25699 113.89479 -564.58111 + -78.30065 114.57438 -544.83949 + -78.30065 114.57419 -544.83949 + -60.25329 115.05491 -525.02369 + -60.25329 115.05472 -525.02369 + -42.14614 115.33661 -505.15080 + -42.14614 115.33642 -505.15080 + -24.01045 115.41952 -485.23799 + -24.01045 115.41934 -485.23799 + -5.87743 115.30368 -465.30242 + -5.87743 115.30351 -465.30242 + 12.22168 114.98912 -445.36129 + 12.22168 114.98896 -445.36129 + 30.25568 114.47587 -425.43173 + 30.25568 114.47572 -425.43173 + 48.19335 113.76397 -405.53082 + 48.19335 113.76384 -405.53082 + 66.00348 112.85344 -385.67557 + 66.00348 112.85334 -385.67557 + 83.65353 111.72732 -365.88285 + 83.65353 111.72724 -365.88285 + 101.10700 110.35227 -346.16936 + 101.10700 110.35223 -346.16936 + 118.32472 108.72728 -326.55165 + 118.32472 108.72728 -326.55165 + 135.26739 106.85222 -307.04603 + 135.26739 106.85227 -307.04603 + 151.89572 104.72705 -287.66855 + 151.89572 104.72716 -287.66855 + 168.17047 102.35253 -268.43495 + 168.17046 102.39603 -268.43495 + 182.90637 84.07354 -249.26970 + 182.90636 84.15896 -249.26970 + 194.84214 66.85673 -230.27919 + 194.84276 66.92411 -230.27919 + 204.05870 49.64728 -211.47484 + 204.05807 49.71580 -211.47484 + 210.53098 32.11472 -192.86546 + 210.53098 32.20123 -192.86546 + 214.19869 14.09961 -174.45724 + 214.19869 14.18877 -174.45724 + 214.97434 -4.51847 -156.25368 + 214.97435 -4.42630 -156.25368 + 212.75758 -23.80590 -138.25552 + 212.75758 -23.71048 -138.25552 + 207.43889 -43.81151 -120.46062 + 207.43889 -43.71269 -120.46062 + 198.90238 -64.56745 -102.86389 + 198.90238 -64.46394 -102.86389 + 186.98896 -86.59066 -85.45715 + 186.98896 -86.48216 -85.45715 + 171.52923 -109.49187 -68.22899 + 171.52924 -109.37949 -68.22899 + 152.39016 -133.19901 -51.16462 + 152.39017 -133.08290 -51.16462 + 129.44341 -157.72584 -34.24570 + 129.50346 -159.14456 -34.24570 + 102.71589 -178.16032 -17.45030 + 102.71542 -181.14920 -17.45030 + 73.61621 -184.07152 -0.75292 + 73.49694 -184.10264 -0.75292 + 45.53763 -166.61525 15.87401 + 45.59727 -165.22466 15.87401 + 22.18615 -128.25654 32.45697 + 22.18618 -128.47419 32.45697 + 6.02657 -73.15860 49.01813 + 6.02659 -73.46497 49.01813 + 0.00000 0.18253 65.57270 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16978,7 +17110,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 27.61109 0.00000 79.15458 26.18108 110 35 - - 25.09093 0.00000 91.92500 23.66092 110 27 - + 25.09094 0.00000 91.92500 23.66092 110 27 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17171,15 +17303,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 48.94497 131.63471 740.59906 56.47417 110 0 - - 48.95851 131.63471 739.01307 56.48771 110 0 - + 48.94500 131.63471 740.59906 56.47417 110 0 - + 48.95854 131.63471 739.01307 56.48771 110 0 - 215.89816 133.18366 747.78252 57.15802 110 29 - - 215.91261 133.18366 746.33401 57.17248 110 29 - - 382.41283 134.73261 755.08820 57.84309 110 51 - - 382.42815 134.73261 753.75802 57.85840 110 51 - - 548.71065 136.28155 762.49856 58.52932 110 72 - - 548.72677 136.28155 761.27091 58.54544 110 72 - - 714.94383 137.83050 769.99919 59.21669 110 93 - + 215.91262 133.18366 746.33401 57.17248 110 29 - + 382.41280 134.73261 755.08820 57.84309 110 51 - + 382.42811 134.73261 753.75802 57.85840 110 51 - + 548.71058 136.28155 762.49856 58.52932 110 72 - + 548.72670 136.28155 761.27091 58.54544 110 72 - + 714.94373 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17613,10 +17745,10 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 201.68294 78.58326 318.60499 27.17987 110 63 - - 201.68294 78.58326 317.87650 27.17987 110 63 - - 35.43460 80.13221 326.36174 27.90539 110 11 - - 35.43460 80.13221 325.71668 27.90539 110 11 - + 201.68287 78.58326 318.60499 27.17987 110 63 - + 201.68287 78.58326 317.87650 27.17987 110 63 - + 35.43456 80.13221 326.36174 27.90539 110 11 - + 35.43456 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -17925,218 +18057,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00010 0.00280 139.60043 - 0.18736 3.74377 111.15589 - 0.18747 3.74657 111.15589 - 1.00161 7.55655 82.71114 - 1.00161 7.55655 82.71114 - 2.41274 11.55048 54.26548 - 2.41274 11.55050 54.26548 + -0.00010 0.00280 139.60041 + 0.18736 3.74377 111.15587 + 0.18747 3.74657 111.15587 + 1.00161 7.55655 82.71113 + 1.00161 7.55655 82.71113 + 2.41274 11.55048 54.26547 + 2.41274 11.55050 54.26547 4.44846 15.82073 25.81769 4.42991 16.31563 25.81769 - 7.15742 19.39135 -2.63399 - 7.19454 19.39135 -2.63399 + 7.15742 19.39135 -2.63398 + 7.19454 19.39135 -2.63398 10.16186 20.01580 -31.09187 - 10.14331 19.52095 -31.09187 - 13.08399 19.69540 -59.55852 - 13.08399 19.69548 -59.55852 - 16.05411 19.91342 -88.03646 - 16.05411 19.91353 -88.03646 - 19.06024 20.17563 -116.52827 - 19.06023 20.17597 -116.52827 - 22.10909 20.48301 -145.03653 - 22.10910 -129.05159 -145.03653 - 2.77725 -128.69870 -173.56066 - 2.77725 -128.69856 -173.56066 - -16.49816 -128.29905 -202.08718 - -16.49816 -128.29894 -202.08718 - -35.71010 -127.85236 -230.59947 - -35.71009 -127.85231 -230.59947 - -42.09861 -127.68438 -240.09754 - -42.09861 -127.68438 -240.09754 - -48.47816 -127.49405 -249.59156 - -48.47816 -127.49402 -249.59156 - -67.55189 -126.78880 -278.04330 - -67.55218 -126.78087 -278.04330 - -86.50386 -125.87476 -306.43672 - -86.50356 -125.86690 -306.43672 - -105.30314 -124.76081 -334.75548 - -105.30313 -124.76091 -334.75548 - -123.92188 -123.45608 -362.98335 - -123.92188 -123.45623 -362.98335 - -142.32592 -121.89842 -391.10425 - -142.32592 -121.89862 -391.10425 - -160.47438 -120.04795 -419.10230 - -160.47438 -120.04819 -419.10230 - -178.32355 -117.90768 -446.96184 - -178.32355 -117.90795 -446.96184 - -195.83021 -115.48088 -474.66745 - -195.83021 -115.48119 -474.66745 - -212.95163 -112.77104 -502.20404 - -212.95163 -112.77137 -502.20404 - -229.64563 -109.78182 -529.55682 - -229.64563 -109.78218 -529.55682 - -245.87057 -106.51703 -556.71138 - -245.87057 -106.51741 -556.71138 - -261.58542 -102.98060 -583.65372 - -261.58542 -102.98100 -583.65372 - -276.74972 -99.17656 -610.37028 - -276.74972 -99.23475 -610.37028 - -291.66028 -94.57291 -637.52362 - -291.66028 -94.69242 -637.52362 - -305.85491 -89.80826 -664.41216 - -305.85491 -89.93329 -664.41216 - -319.30045 -84.82936 -691.02300 - -319.30045 -84.95986 -691.02300 - -331.96412 -79.63868 -717.34394 - -331.96412 -79.77458 -717.34394 - -343.81352 -74.23867 -743.36347 - -343.81352 -74.37991 -743.36347 - -354.81664 -68.63175 -769.07084 - -354.81664 -68.77827 -769.07084 - -364.94181 -62.82030 -794.45606 - -364.94181 -62.97196 -794.45606 - -374.15815 -56.81197 -819.50994 - -374.15815 -56.96869 -819.50994 - -382.43526 -50.60541 -844.22410 - -382.43526 -50.76724 -844.22410 - -389.74250 -44.19868 -868.59104 - -389.74250 -44.36561 -868.59104 - -396.04925 -37.59413 -892.60413 - -396.04925 -37.76609 -892.60413 - -401.32524 -30.79393 -916.25763 - -401.32524 -30.97087 -916.25763 - -405.54054 -23.80018 -939.54675 - -405.54053 -23.89037 -939.54675 - -408.50044 -17.52207 -960.84275 - -408.50044 -17.52234 -960.84275 - -410.53697 -10.96309 -981.07468 - -410.53697 -10.96334 -981.07468 - -411.62303 -4.21551 -994.46291 - -411.62303 -4.21574 -994.46291 - -411.73182 2.71848 -994.25445 - -411.73182 2.71827 -994.25445 - -410.83686 9.83688 -984.51033 - -410.83686 9.83668 -984.51033 - -408.91194 17.13784 -972.72560 - -408.91194 17.13765 -972.72560 - -405.93109 24.61970 -960.62076 - -405.93109 24.61958 -960.62076 - -403.20255 29.96384 -951.95811 - -403.20255 29.96378 -951.95811 - -399.93521 35.39548 -943.14078 - -399.93521 35.39536 -943.14078 - -394.00892 43.62403 -929.62754 - -394.00892 43.62384 -929.62754 - -386.84542 51.89180 -915.77425 - -386.84553 51.89429 -915.77425 - -378.19835 56.94637 -900.90330 - -378.19824 56.94885 -900.90330 - -368.80360 62.14206 -885.67407 - -368.80360 62.14185 -885.67407 - -358.62565 67.09146 -870.09548 - -358.62565 67.09123 -870.09548 - -347.69494 71.79706 -854.17715 - -347.69494 71.79682 -854.17715 - -336.04717 76.25903 -837.92946 - -336.04717 76.25878 -837.92946 - -323.71943 80.47779 -821.36342 - -323.71943 80.47753 -821.36342 - -310.74924 84.45402 -804.49073 - -310.74924 84.45375 -804.49073 - -297.17427 88.18862 -787.32365 - -297.17427 88.18834 -787.32365 - -283.03217 91.68265 -769.87506 - -283.03217 91.68236 -769.87506 - -268.36047 94.93733 -752.15835 - -268.36047 94.93702 -752.15835 - -253.19656 97.95398 -734.18741 - -253.19656 97.95367 -734.18741 - -237.57764 100.73403 -715.97662 - -237.57764 100.73371 -715.97662 - -221.54072 103.27897 -697.54076 - -221.54072 103.27865 -697.54076 - -205.12257 105.59036 -678.89503 - -205.12257 105.59003 -678.89503 - -188.35971 107.66976 -660.05498 - -188.35971 107.66943 -660.05498 - -171.28844 109.51878 -641.03649 - -171.28844 109.51844 -641.03649 - -153.94483 111.13901 -621.85573 - -153.94483 111.13867 -621.85573 - -136.36466 112.53203 -602.52914 - -136.36466 112.53168 -602.52914 - -118.58350 113.69941 -583.07336 - -118.58350 113.69907 -583.07336 - -100.63667 114.64270 -563.50523 - -100.63667 114.64235 -563.50523 - -82.55925 115.36339 -543.84177 - -82.55925 115.36305 -543.84177 - -64.38610 115.86297 -524.10010 - -64.38610 115.86264 -524.10010 - -46.15183 116.14287 -504.29742 - -46.15183 116.14254 -504.29742 - -27.89085 116.20446 -484.45102 - -27.89085 116.20414 -484.45102 - -9.63735 116.04910 -464.57820 - -9.63735 116.04879 -464.57820 - 8.57470 115.67808 -444.69624 - 8.57470 115.67779 -444.69624 - 26.71150 115.09269 -424.82239 - 26.71150 115.09242 -424.82239 - 44.73947 114.29414 -404.97385 - 44.73947 114.29389 -404.97385 - 62.62522 113.28364 -385.16769 - 62.62522 113.28342 -385.16769 - 80.33420 112.04535 -365.42084 - 80.33420 112.04516 -365.42084 - 97.82810 110.54708 -345.75010 - 97.82810 110.54692 -345.75010 - 115.06607 108.78891 -326.17202 - 115.06607 108.78879 -326.17202 - 132.00736 106.77183 -306.70294 - 132.00736 106.77176 -306.70294 - 148.61136 104.49692 -287.35890 - 148.61136 104.49690 -287.35890 - 164.83772 101.96606 -268.15564 - 164.83772 102.00845 -268.15564 - 179.53741 83.99339 -249.01770 - 179.53741 84.07688 -249.01770 - 191.48119 67.03234 -230.05127 - 191.48180 67.09801 -230.05127 - 200.74269 50.03602 -211.26779 - 200.74206 50.10302 -211.26779 - 207.29066 32.68077 -192.67611 - 207.29066 32.76594 -192.67611 - 211.05968 14.81386 -174.28250 - 211.05968 14.90182 -174.28250 - 211.95819 -3.67862 -156.09054 - 211.95819 -3.58754 -156.09054 - 209.88274 -22.85674 -138.10110 - 209.88274 -22.76233 -138.10110 - 204.72175 -42.76334 -120.31217 - 204.72175 -42.66546 -120.31217 - 196.35813 -63.42485 -102.71881 - 196.35814 -63.32224 -102.71881 - 184.63252 -85.35284 -85.31301 - 184.63252 -85.24522 -85.31301 - 169.37602 -108.15304 -68.08354 - 169.37602 -108.04155 -68.08354 - 150.45689 -131.74882 -51.01579 - 150.45689 -131.63361 -51.01579 - 127.74874 -156.14976 -34.09166 - 127.80879 -157.56942 -34.09166 - 101.28109 -176.44018 -17.28942 + 10.14331 19.52096 -31.09187 + 13.08399 19.69540 -59.55851 + 13.08399 19.69548 -59.55851 + 16.05411 19.91342 -88.03644 + 16.05411 19.91353 -88.03644 + 19.06024 20.17563 -116.52824 + 19.06023 20.17597 -116.52824 + 22.10909 20.48301 -145.03650 + 22.10910 -129.05159 -145.03650 + 2.77725 -128.69870 -173.56062 + 2.77725 -128.69856 -173.56062 + -16.49816 -128.29905 -202.08714 + -16.49816 -128.29894 -202.08714 + -35.71010 -127.85236 -230.59943 + -35.71009 -127.85231 -230.59943 + -42.09860 -127.68438 -240.09749 + -42.09860 -127.68438 -240.09749 + -48.47816 -127.49405 -249.59151 + -48.47816 -127.49402 -249.59151 + -67.55189 -126.78880 -278.04324 + -67.55218 -126.78087 -278.04324 + -86.50386 -125.87476 -306.43666 + -86.50356 -125.86690 -306.43666 + -105.30314 -124.76081 -334.75542 + -105.30313 -124.76091 -334.75542 + -123.92188 -123.45608 -362.98328 + -123.92188 -123.45623 -362.98328 + -142.32592 -121.89842 -391.10417 + -142.32592 -121.89862 -391.10417 + -160.47438 -120.04795 -419.10222 + -160.47438 -120.04819 -419.10222 + -178.32355 -117.90768 -446.96175 + -178.32355 -117.90795 -446.96175 + -195.83021 -115.48088 -474.66736 + -195.83021 -115.48119 -474.66736 + -212.95163 -112.77104 -502.20394 + -212.95163 -112.77137 -502.20394 + -229.64563 -109.78182 -529.55671 + -229.64563 -109.78218 -529.55671 + -245.87057 -106.51703 -556.71127 + -245.87057 -106.51741 -556.71127 + -261.58542 -102.98060 -583.65361 + -261.58542 -102.98100 -583.65361 + -276.74972 -99.17656 -610.37016 + -276.74972 -99.23475 -610.37016 + -291.66028 -94.57291 -637.52350 + -291.66028 -94.69242 -637.52350 + -305.85491 -89.80826 -664.41203 + -305.85491 -89.93329 -664.41203 + -319.30045 -84.82936 -691.02286 + -319.30045 -84.95986 -691.02286 + -331.96412 -79.63868 -717.34379 + -331.96412 -79.77458 -717.34379 + -343.81352 -74.23867 -743.36332 + -343.81352 -74.37991 -743.36332 + -354.81664 -68.63175 -769.07069 + -354.81664 -68.77827 -769.07069 + -364.94181 -62.82030 -794.45590 + -364.94181 -62.97196 -794.45590 + -374.15815 -56.81197 -819.50977 + -374.15815 -56.96869 -819.50977 + -382.43526 -50.60541 -844.22393 + -382.43526 -50.76724 -844.22393 + -389.74250 -44.19868 -868.59087 + -389.74250 -44.36561 -868.59087 + -396.04925 -37.59413 -892.60395 + -396.04925 -37.76609 -892.60395 + -401.32524 -30.79393 -916.25744 + -401.32524 -30.97087 -916.25744 + -405.54054 -23.80018 -939.54656 + -405.54053 -23.89037 -939.54656 + -408.50044 -17.52207 -960.84255 + -408.50044 -17.52234 -960.84255 + -410.53697 -10.96309 -981.07448 + -410.53698 -10.96334 -981.07448 + -411.62303 -4.21551 -994.46271 + -411.62303 -4.21574 -994.46271 + -411.73182 2.71848 -994.25424 + -411.73182 2.71827 -994.25424 + -410.83686 9.83688 -984.51013 + -410.83686 9.83668 -984.51013 + -408.91194 17.13784 -972.72541 + -408.91194 17.13765 -972.72541 + -405.93109 24.61970 -960.62056 + -405.93109 24.61957 -960.62056 + -403.20255 29.96384 -951.95792 + -403.20255 29.96378 -951.95792 + -399.93521 35.39548 -943.14059 + -399.93521 35.39536 -943.14059 + -394.00893 43.62403 -929.62736 + -394.00893 43.62384 -929.62736 + -386.84542 51.89180 -915.77407 + -386.84553 51.89429 -915.77407 + -378.19835 56.94637 -900.90312 + -378.19824 56.94885 -900.90312 + -368.80360 62.14206 -885.67390 + -368.80360 62.14184 -885.67390 + -358.62565 67.09146 -870.09531 + -358.62565 67.09123 -870.09531 + -347.69494 71.79706 -854.17699 + -347.69494 71.79682 -854.17699 + -336.04718 76.25903 -837.92929 + -336.04718 76.25878 -837.92929 + -323.71943 80.47779 -821.36326 + -323.71943 80.47752 -821.36326 + -310.74924 84.45402 -804.49057 + -310.74924 84.45375 -804.49057 + -297.17428 88.18862 -787.32350 + -297.17428 88.18834 -787.32350 + -283.03217 91.68265 -769.87491 + -283.03217 91.68236 -769.87491 + -268.36047 94.93732 -752.15820 + -268.36047 94.93702 -752.15820 + -253.19656 97.95397 -734.18727 + -253.19656 97.95366 -734.18727 + -237.57765 100.73402 -715.97648 + -237.57765 100.73371 -715.97648 + -221.54073 103.27897 -697.54063 + -221.54073 103.27865 -697.54063 + -205.12257 105.59036 -678.89490 + -205.12257 105.59003 -678.89490 + -188.35971 107.66976 -660.05485 + -188.35971 107.66943 -660.05485 + -171.28845 109.51878 -641.03637 + -171.28845 109.51844 -641.03637 + -153.94483 111.13901 -621.85561 + -153.94483 111.13866 -621.85561 + -136.36466 112.53203 -602.52902 + -136.36466 112.53168 -602.52902 + -118.58350 113.69941 -583.07324 + -118.58350 113.69906 -583.07324 + -100.63668 114.64269 -563.50513 + -100.63668 114.64235 -563.50513 + -82.55926 115.36339 -543.84167 + -82.55926 115.36305 -543.84167 + -64.38611 115.86297 -524.10000 + -64.38611 115.86264 -524.10000 + -46.15184 116.14286 -504.29732 + -46.15184 116.14254 -504.29732 + -27.89086 116.20446 -484.45093 + -27.89086 116.20414 -484.45093 + -9.63735 116.04909 -464.57811 + -9.63735 116.04879 -464.57811 + 8.57469 115.67808 -444.69615 + 8.57469 115.67780 -444.69615 + 26.71149 115.09269 -424.82231 + 26.71149 115.09242 -424.82231 + 44.73946 114.29414 -404.97377 + 44.73946 114.29389 -404.97377 + 62.62521 113.28364 -385.16761 + 62.62521 113.28342 -385.16761 + 80.33419 112.04535 -365.42077 + 80.33419 112.04516 -365.42077 + 97.82809 110.54708 -345.75003 + 97.82809 110.54692 -345.75003 + 115.06607 108.78891 -326.17195 + 115.06606 108.78879 -326.17195 + 132.00735 106.77183 -306.70288 + 132.00735 106.77176 -306.70288 + 148.61136 104.49692 -287.35884 + 148.61136 104.49691 -287.35884 + 164.83771 101.96606 -268.15559 + 164.83771 102.00845 -268.15559 + 179.53741 83.99339 -249.01765 + 179.53741 84.07688 -249.01765 + 191.48119 67.03234 -230.05122 + 191.48180 67.09801 -230.05122 + 200.74269 50.03602 -211.26774 + 200.74206 50.10302 -211.26774 + 207.29066 32.68077 -192.67607 + 207.29066 32.76594 -192.67607 + 211.05967 14.81386 -174.28246 + 211.05967 14.90182 -174.28246 + 211.95818 -3.67862 -156.09051 + 211.95818 -3.58753 -156.09051 + 209.88274 -22.85674 -138.10107 + 209.88274 -22.76233 -138.10107 + 204.72174 -42.76334 -120.31214 + 204.72174 -42.66546 -120.31214 + 196.35813 -63.42485 -102.71879 + 196.35813 -63.32224 -102.71879 + 184.63251 -85.35284 -85.31299 + 184.63251 -85.24522 -85.31299 + 169.37601 -108.15305 -68.08352 + 169.37602 -108.04155 -68.08352 + 150.45688 -131.74882 -51.01578 + 150.45688 -131.63361 -51.01578 + 127.74874 -156.14976 -34.09165 + 127.80878 -157.56942 -34.09165 + 101.28108 -176.44018 -17.28942 101.28062 -179.43004 -17.28942 - 72.46567 -182.18598 -0.58383 - 72.34637 -182.21712 -0.58383 - 44.69426 -164.63795 16.05241 - 44.75393 -163.24678 16.05241 - 21.65595 -126.26511 32.64548 - 21.65599 -126.48290 32.64548 + 72.46567 -182.18597 -0.58383 + 72.34636 -182.21711 -0.58383 + 44.69425 -164.63794 16.05241 + 44.75393 -163.24677 16.05241 + 21.65595 -126.26510 32.64547 + 21.65599 -126.48289 32.64547 5.81287 -71.13794 49.21725 - 5.81285 -71.44022 49.21725 - -0.00004 0.17506 65.78266 + 5.81285 -71.44021 49.21725 + -0.00004 0.17506 65.78265 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18465,8 +18597,8 @@ Status character 34.14843 0.00000 46.21367 4.77649 110 74 - 47.18935 0.00000 61.61823 6.36865 110 77 - 48.14629 0.00000 52.62146 6.36865 110 91 - - 10.43873 0.00000 65.77683 7.96082 110 16 - - 10.43873 0.00000 58.61717 7.96082 110 18 - + 10.43874 0.00000 65.77683 7.96082 110 16 - + 10.43874 0.00000 58.61717 7.96082 110 18 - 1.45556 0.00000 70.34061 9.55298 110 0 - 1.45556 0.00000 64.38983 9.55298 110 0 - 1.86715 0.00000 75.12146 11.14515 110 0 - @@ -18643,7 +18775,7 @@ Status character 35.85157 116.14524 594.02752 47.45238 110 0 - 36.28160 117.69418 603.10994 48.17791 110 0 - 35.89886 117.69418 596.74967 48.17791 110 0 - - 36.35263 119.24313 605.73631 48.90343 110 0 - + 36.35262 119.24313 605.73631 48.90343 110 0 - 35.95490 119.24313 600.50339 48.90343 110 0 - 36.43093 120.79208 609.41240 49.62896 110 0 - 36.05374 120.79208 605.02281 49.62896 110 0 - @@ -18652,21 +18784,21 @@ Status character 32.20948 123.88997 618.91941 51.08001 110 0 - 31.14337 123.88997 615.69414 51.08001 110 0 - 31.61254 125.43892 624.43929 51.80554 110 0 - - 31.35795 125.43892 621.62820 51.80554 110 0 - + 31.35794 125.43892 621.62820 51.80554 110 0 - 31.84449 126.98787 630.33398 52.53107 110 0 - 31.58349 126.98787 627.86220 52.53107 110 0 - - 32.08526 128.53682 636.53384 53.25659 110 0 - + 32.08525 128.53682 636.53384 53.25659 110 0 - 31.82165 128.53682 634.34393 53.25659 110 0 - 32.33636 130.08576 642.98574 53.98212 110 0 - 32.07413 130.08576 641.03277 53.98212 110 0 - - 48.86933 131.63471 649.64833 54.70764 110 0 - - 48.86933 131.63471 647.89661 54.70764 110 0 - - 215.95724 133.18366 656.48894 55.43317 110 33 - - 215.95724 133.18366 654.90967 55.43317 110 33 - - 382.61347 134.73261 663.48133 56.15870 110 58 - - 382.61347 134.73261 662.05104 56.15870 110 58 - - 549.05675 136.28155 670.60422 56.88422 110 82 - - 549.05675 136.28155 669.30353 56.88422 110 82 - + 48.86936 131.63471 649.64833 54.70764 110 0 - + 48.86936 131.63471 647.89661 54.70764 110 0 - + 215.95723 133.18366 656.48894 55.43317 110 33 - + 215.95723 133.18366 654.90967 55.43317 110 33 - + 382.61344 134.73261 663.48133 56.15870 110 58 - + 382.61344 134.73261 662.05104 56.15870 110 58 - + 549.05667 136.28155 670.60422 56.88422 110 82 - + 549.05667 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -19088,23 +19220,23 @@ Status character 260.17895 66.19168 261.81071 21.37566 110 99 - 257.52692 66.19168 259.15868 21.37566 110 99 - 266.41044 67.74063 267.95497 22.10118 110 99 - - 264.26422 67.74063 265.80876 22.10118 110 99 - + 264.26423 67.74063 265.80876 22.10118 110 99 - 273.04980 69.28958 274.53459 22.82671 110 99 - 271.27628 69.28958 272.76107 22.82671 110 99 - 279.97951 70.83853 281.43054 23.55224 110 99 - 278.48993 70.83853 279.94096 23.55224 110 99 - - 287.12294 72.38747 288.56453 24.27776 110 99 - + 287.12295 72.38747 288.56453 24.27776 110 99 - 285.85542 72.38747 287.29701 24.27776 110 99 - 294.42803 73.93642 295.88270 25.00329 110 99 - 293.33782 73.93642 294.79250 25.00329 110 99 - 301.85821 75.48537 303.34656 25.72882 110 99 - - 300.91204 75.48537 302.40039 25.72882 110 99 - - 309.38727 77.03432 310.92777 26.45434 110 99 - + 300.91205 75.48537 302.40039 25.72882 110 99 - + 309.38728 77.03432 310.92777 26.45434 110 99 - 308.55980 77.03432 310.10030 26.45434 110 99 - - 200.07409 78.58326 318.60499 27.17987 110 63 - - 200.07409 78.58326 317.87650 27.17987 110 63 - - 33.74371 80.13221 326.36174 27.90539 110 10 - - 33.74371 80.13221 325.71668 27.90539 110 10 - + 200.07403 78.58326 318.60499 27.17987 110 63 - + 200.07403 78.58326 317.87650 27.17987 110 63 - + 33.74368 80.13221 326.36174 27.90539 110 10 - + 33.74368 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -22543,7 +22675,7 @@ Displacements 1.11106 8.61128 43.60945 1.11106 8.61130 43.60945 2.75956 13.73745 28.65440 - 2.75956 13.73751 28.65440 + 2.75956 13.73750 28.65440 5.22355 19.41746 13.69692 5.20171 19.99998 13.69692 8.59665 24.67190 -1.26515 @@ -22557,155 +22689,155 @@ Displacements 23.88179 25.40312 -61.22094 23.88177 25.40412 -61.22094 27.69238 25.40412 -76.25320 - 27.69240 -142.59483 -76.25320 - 6.30318 -142.59483 -91.30575 + 27.69240 -142.59484 -76.25320 + 6.30318 -142.59484 -91.30575 6.30318 -142.59434 -91.30575 - -15.08597 -142.59434 -106.36374 - -15.08597 -142.59399 -106.36374 + -15.08597 -142.59434 -106.36373 + -15.08597 -142.59399 -106.36373 -36.45152 -142.27585 -121.40870 -36.45152 -142.27571 -121.40870 - -43.55253 -141.76090 -126.41761 - -43.55253 -141.76089 -126.41761 - -50.62720 -141.22180 -131.42234 - -50.62720 -141.22175 -131.42234 - -71.68098 -139.46018 -146.40469 - -71.68136 -139.45002 -146.40469 + -43.55253 -141.76090 -126.41760 + -43.55253 -141.76089 -126.41760 + -50.62720 -141.22180 -131.42233 + -50.62720 -141.22175 -131.42233 + -71.68098 -139.46018 -146.40468 + -71.68136 -139.45002 -146.40468 -92.45327 -137.47388 -161.32517 -92.45289 -137.46386 -161.32517 -112.91094 -135.27541 -176.16587 -112.91094 -135.27566 -176.16587 - -133.02495 -132.87665 -190.90912 - -133.02495 -132.87704 -190.90912 + -133.02495 -132.87665 -190.90911 + -133.02495 -132.87704 -190.90911 -152.76347 -130.26886 -205.53755 -152.76346 -130.26937 -205.53755 - -172.09522 -127.45315 -220.03414 - -172.09521 -127.45376 -220.03414 - -190.98908 -124.43041 -234.38219 - -190.98908 -124.43111 -234.38219 - -209.41405 -121.20137 -248.56539 - -209.41405 -121.20214 -248.56539 + -172.09522 -127.45315 -220.03413 + -172.09521 -127.45376 -220.03413 + -190.98908 -124.43041 -234.38218 + -190.98908 -124.43111 -234.38218 + -209.41405 -121.20137 -248.56538 + -209.41405 -121.20214 -248.56538 -227.33924 -117.76665 -262.56784 -227.33924 -117.76749 -262.56784 - -244.73383 -114.12676 -276.37408 - -244.73383 -114.12765 -276.37408 - -261.56708 -110.28212 -289.96907 - -261.56708 -110.28306 -289.96907 + -244.73383 -114.12675 -276.37407 + -244.73383 -114.12765 -276.37407 + -261.56708 -110.28212 -289.96906 + -261.56708 -110.28306 -289.96906 -277.80830 -106.23310 -303.33830 -277.80830 -106.23409 -303.33830 - -293.42686 -101.98002 -316.46775 - -293.42687 -102.05122 -316.46775 - -308.69339 -96.38316 -329.67065 - -308.69339 -96.52749 -329.67065 - -323.09666 -90.68469 -342.59329 - -323.09666 -90.83340 -342.59329 - -336.61048 -84.81610 -355.22258 - -336.61048 -84.96916 -355.22258 - -349.20869 -78.77757 -367.54625 - -349.20869 -78.93499 -367.54625 - -360.86516 -72.56928 -379.55288 - -360.86517 -72.73104 -379.55288 - -371.55380 -66.19138 -391.23186 - -371.55380 -66.35748 -391.23186 - -381.24851 -59.64401 -402.57351 - -381.24851 -59.81438 -402.57351 - -389.92364 -52.93263 -413.56901 - -389.92364 -53.10723 -413.56901 - -397.55368 -46.05373 -424.21049 - -397.55368 -46.23265 -424.21049 - -404.11256 -39.00327 -434.49102 - -404.11256 -39.18656 -434.49102 - -409.57391 -31.78156 -444.40466 - -409.57391 -31.96921 -444.40466 - -413.91140 -24.38884 -453.94643 - -413.91140 -24.58083 -453.94643 - -417.09874 -16.82532 -463.11241 - -417.09874 -16.92302 -463.11241 - -419.06587 -10.58730 -471.28464 - -419.06587 -10.58775 -471.28464 - -420.11480 -4.06775 -478.95656 - -420.11481 -4.06813 -478.95656 - -420.21921 2.63605 -484.20654 - -420.21921 2.63573 -484.20654 - -419.35276 9.52397 -484.74521 - -419.35277 9.52371 -484.74521 - -417.48919 16.59592 -482.01101 - -417.48919 16.59571 -482.01101 - -414.60219 23.85180 -478.46598 - -414.60219 23.85163 -478.46598 - -410.66550 31.29152 -474.59638 - -410.66550 31.29143 -474.59638 - -407.27122 36.60867 -471.69615 - -407.27122 36.60864 -471.69615 - -403.34071 42.01588 -468.63968 - -403.34071 42.01583 -468.63968 - -396.42402 50.21348 -463.76537 - -396.42402 50.21342 -463.76537 - -388.27415 58.45818 -458.54891 - -388.27415 58.45815 -458.54891 - -378.61634 63.12727 -452.72476 - -378.61634 63.12726 -452.72476 - -368.30852 67.59609 -446.54193 - -368.30852 67.59609 -446.54193 - -357.32777 71.86474 -440.01019 - -357.32777 71.86476 -440.01019 - -345.69778 75.93333 -433.13995 - -345.69778 75.93336 -433.13995 - -333.44738 79.80198 -425.94221 - -333.44738 79.80201 -425.94221 - -320.60682 83.47078 -418.42860 - -320.60682 83.47080 -418.42860 - -307.20685 86.93980 -410.61126 - -307.20685 86.93982 -410.61126 - -293.27849 90.20915 -402.50290 - -293.27849 90.20916 -402.50290 - -278.85286 93.27890 -394.11671 - -278.85286 93.27889 -394.11671 - -263.96115 96.14912 -385.46635 - -263.96115 96.14909 -385.46635 - -248.63459 98.81988 -376.56593 - -248.63459 98.81983 -376.56593 - -232.90443 101.29124 -367.42997 - -232.90443 101.29117 -367.42997 - -216.80194 103.56328 -358.07337 - -216.80194 103.56318 -358.07337 - -200.35837 105.63605 -348.51139 - -200.35837 105.63593 -348.51139 - -183.60499 107.50961 -338.75960 - -183.60499 107.50946 -338.75960 - -166.57308 109.18400 -328.83387 - -166.57308 109.18382 -328.83387 - -149.29389 110.65928 -318.75033 - -149.29389 110.65908 -318.75033 - -131.79870 111.93551 -308.52537 - -131.79870 111.93528 -308.52537 - -114.11875 113.01272 -298.17554 - -114.11875 113.01247 -298.17554 + -293.42686 -101.98002 -316.46774 + -293.42687 -102.05122 -316.46774 + -308.69339 -96.38316 -329.67064 + -308.69339 -96.52749 -329.67064 + -323.09666 -90.68469 -342.59328 + -323.09666 -90.83340 -342.59328 + -336.61048 -84.81610 -355.22257 + -336.61048 -84.96916 -355.22257 + -349.20869 -78.77757 -367.54624 + -349.20869 -78.93499 -367.54624 + -360.86517 -72.56928 -379.55286 + -360.86517 -72.73104 -379.55286 + -371.55380 -66.19138 -391.23185 + -371.55380 -66.35748 -391.23185 + -381.24851 -59.64401 -402.57349 + -381.24851 -59.81438 -402.57349 + -389.92364 -52.93263 -413.56899 + -389.92364 -53.10723 -413.56899 + -397.55368 -46.05373 -424.21048 + -397.55368 -46.23265 -424.21048 + -404.11256 -39.00327 -434.49101 + -404.11256 -39.18656 -434.49101 + -409.57391 -31.78156 -444.40464 + -409.57391 -31.96921 -444.40464 + -413.91140 -24.38884 -453.94642 + -413.91140 -24.58083 -453.94642 + -417.09874 -16.82532 -463.11240 + -417.09874 -16.92302 -463.11240 + -419.06587 -10.58730 -471.28462 + -419.06587 -10.58775 -471.28462 + -420.11480 -4.06775 -478.95655 + -420.11481 -4.06813 -478.95655 + -420.21921 2.63605 -484.20652 + -420.21921 2.63573 -484.20652 + -419.35276 9.52397 -484.74519 + -419.35277 9.52371 -484.74519 + -417.48919 16.59592 -482.01099 + -417.48919 16.59571 -482.01099 + -414.60219 23.85180 -478.46597 + -414.60219 23.85163 -478.46597 + -410.66550 31.29152 -474.59636 + -410.66550 31.29143 -474.59636 + -407.27122 36.60867 -471.69614 + -407.27122 36.60864 -471.69614 + -403.34071 42.01588 -468.63967 + -403.34071 42.01583 -468.63967 + -396.42402 50.21348 -463.76535 + -396.42402 50.21342 -463.76535 + -388.27415 58.45818 -458.54890 + -388.27416 58.45815 -458.54890 + -378.61634 63.12727 -452.72475 + -378.61634 63.12726 -452.72475 + -368.30852 67.59608 -446.54191 + -368.30852 67.59609 -446.54191 + -357.32777 71.86474 -440.01018 + -357.32777 71.86476 -440.01018 + -345.69778 75.93333 -433.13993 + -345.69778 75.93336 -433.13993 + -333.44738 79.80198 -425.94220 + -333.44738 79.80201 -425.94220 + -320.60682 83.47078 -418.42859 + -320.60682 83.47080 -418.42859 + -307.20686 86.93980 -410.61125 + -307.20686 86.93982 -410.61125 + -293.27849 90.20915 -402.50289 + -293.27849 90.20916 -402.50289 + -278.85286 93.27890 -394.11670 + -278.85286 93.27889 -394.11670 + -263.96115 96.14912 -385.46634 + -263.96115 96.14909 -385.46634 + -248.63459 98.81988 -376.56592 + -248.63459 98.81982 -376.56592 + -232.90444 101.29124 -367.42996 + -232.90444 101.29117 -367.42996 + -216.80194 103.56328 -358.07336 + -216.80194 103.56318 -358.07336 + -200.35837 105.63605 -348.51138 + -200.35837 105.63593 -348.51138 + -183.60499 107.50961 -338.75959 + -183.60499 107.50946 -338.75959 + -166.57308 109.18400 -328.83386 + -166.57308 109.18382 -328.83386 + -149.29390 110.65928 -318.75033 + -149.29390 110.65908 -318.75033 + -131.79870 111.93551 -308.52536 + -131.79870 111.93528 -308.52536 + -114.11875 113.01272 -298.17553 + -114.11875 113.01247 -298.17553 -96.28531 113.89096 -287.71760 -96.28531 113.89069 -287.71760 - -78.32961 114.57028 -277.16845 - -78.32961 114.56999 -277.16845 - -60.28291 115.05071 -266.54509 - -60.28291 115.05041 -266.54509 - -42.17644 115.33230 -255.86461 - -42.17644 115.33199 -255.86461 - -24.04145 115.41509 -245.14418 - -24.04145 115.41477 -245.14418 - -5.90915 115.29911 -234.40097 - -5.90915 115.29880 -234.40097 - 12.18923 114.98441 -223.65216 - 12.18923 114.98411 -223.65216 - 30.22247 114.47102 -212.91489 - 30.22247 114.47073 -212.91489 - 48.15935 113.75898 -202.20625 - 48.15935 113.75871 -202.20625 - 65.96868 112.84832 -191.54322 + -78.32961 114.57028 -277.16844 + -78.32961 114.56999 -277.16844 + -60.28291 115.05071 -266.54508 + -60.28291 115.05041 -266.54508 + -42.17645 115.33230 -255.86461 + -42.17645 115.33199 -255.86461 + -24.04145 115.41509 -245.14417 + -24.04145 115.41477 -245.14417 + -5.90915 115.29911 -234.40096 + -5.90915 115.29880 -234.40096 + 12.18923 114.98441 -223.65215 + 12.18923 114.98411 -223.65215 + 30.22247 114.47102 -212.91488 + 30.22247 114.47073 -212.91488 + 48.15935 113.75898 -202.20624 + 48.15935 113.75871 -202.20624 + 65.96867 112.84832 -191.54322 65.96867 112.84809 -191.54322 - 83.61790 111.72207 -180.94269 - 83.61790 111.72189 -180.94269 - 101.07053 110.34692 -170.42137 - 101.07053 110.34680 -170.42137 - 118.28739 108.72184 -159.99579 - 118.28739 108.72179 -159.99579 + 83.61789 111.72207 -180.94269 + 83.61789 111.72189 -180.94269 + 101.07053 110.34692 -170.42136 + 101.07053 110.34680 -170.42136 + 118.28739 108.72184 -159.99578 + 118.28739 108.72179 -159.99578 135.22920 106.84674 -149.68226 135.22920 106.84677 -149.68226 151.85666 104.72156 -139.49683 @@ -22718,33 +22850,33 @@ Displacements 194.80128 66.91775 -109.77138 204.01622 49.64092 -100.20291 204.01551 49.70843 -100.20291 - 210.48725 32.10736 -90.82938 - 210.48725 32.19495 -90.82938 - 214.15397 14.09332 -81.65696 - 214.15397 14.18356 -81.65696 - 214.92880 -4.52368 -72.68916 - 214.92880 -4.43048 -72.68916 - 212.71138 -23.81007 -63.92671 - 212.71138 -23.71369 -63.92671 + 210.48725 32.10736 -90.82937 + 210.48725 32.19495 -90.82937 + 214.15396 14.09332 -81.65695 + 214.15397 14.18356 -81.65695 + 214.92880 -4.52368 -72.68915 + 214.92880 -4.43048 -72.68915 + 212.71137 -23.81007 -63.92670 + 212.71138 -23.71369 -63.92670 207.39218 -43.81472 -55.36748 - 207.39219 -43.71503 -55.36748 + 207.39218 -43.71503 -55.36748 198.85530 -64.56980 -47.00637 198.85531 -64.46552 -47.00637 - 186.94164 -86.59224 -38.83522 - 186.94164 -86.48309 -38.83522 - 171.48177 -109.49279 -30.84259 + 186.94163 -86.59224 -38.83521 + 186.94164 -86.48309 -38.83521 + 171.48176 -109.49279 -30.84259 171.48177 -109.37987 -30.84259 152.34264 -133.19939 -23.01371 152.34264 -133.08285 -23.01371 129.39590 -157.72579 -15.33024 129.45672 -159.16388 -15.33024 - 102.66515 -178.19773 -7.77023 + 102.66514 -178.19773 -7.77023 102.66409 -181.21070 -7.77023 73.55672 -184.08538 -0.30820 - 73.43693 -184.11284 -0.30820 + 73.43693 -184.11283 -0.30820 45.48478 -166.52450 7.08344 - 45.54469 -165.12379 7.08344 - 22.15359 -128.11321 14.43115 + 45.54469 -165.12378 7.08344 + 22.15359 -128.11320 14.43115 22.15367 -128.32833 14.43115 6.01597 -73.04123 21.75709 6.01601 -73.34641 21.75709 @@ -23271,15 +23403,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 49.53967 131.63471 740.59906 56.47417 110 0 - + 49.53968 131.63471 740.59906 56.47417 110 0 - 49.55322 131.63471 739.01307 56.48771 110 0 - 216.53536 133.18366 747.78252 57.15802 110 29 - 216.54982 133.18366 746.33401 57.17248 110 29 - - 382.54398 134.73261 755.08820 57.84309 110 51 - - 382.55929 134.73261 753.75802 57.85840 110 51 - - 548.06388 136.28155 762.49856 58.52932 110 72 - - 548.08001 136.28155 761.27091 58.54544 110 72 - - 713.43721 137.83050 769.99919 59.21669 110 93 - + 382.54397 134.73261 755.08820 57.84309 110 51 - + 382.55928 134.73261 753.75802 57.85840 110 51 - + 548.06387 136.28155 762.49856 58.52932 110 72 - + 548.07999 136.28155 761.27091 58.54544 110 72 - + 713.43719 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23713,8 +23845,8 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 202.01012 78.58326 318.60499 27.17987 110 63 - - 202.01012 78.58326 317.87650 27.17987 110 64 - + 202.01011 78.58326 318.60499 27.17987 110 63 - + 202.01011 78.58326 317.87650 27.17987 110 64 - 34.83989 80.13221 326.36174 27.90539 110 11 - 34.83989 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -24056,187 +24188,187 @@ Displacements -43.35739 -131.67453 -124.95097 -49.93471 -131.41456 -129.91480 -49.93472 -131.41449 -129.91480 - -69.58044 -130.49307 -144.77505 - -69.58081 -130.48284 -144.77505 + -69.58044 -130.49307 -144.77504 + -69.58081 -130.48284 -144.77504 -89.07089 -129.34964 -159.57523 -89.07051 -129.33950 -159.57523 - -108.37327 -127.99565 -174.29854 - -108.37327 -127.99575 -174.29854 - -127.45876 -126.44284 -188.92830 + -108.37327 -127.99565 -174.29853 + -108.37327 -127.99575 -174.29853 + -127.45877 -126.44284 -188.92830 -127.45876 -126.44305 -188.92830 - -146.29160 -124.62740 -203.44805 - -146.29160 -124.62770 -203.44805 - -164.82951 -122.51011 -217.84153 - -164.82951 -122.51048 -217.84153 + -146.29160 -124.62740 -203.44804 + -146.29160 -124.62770 -203.44804 + -164.82951 -122.51011 -217.84152 + -164.82951 -122.51048 -217.84152 -183.02749 -120.09476 -232.09273 -183.02748 -120.09519 -232.09273 - -200.84112 -117.38553 -246.18596 - -200.84112 -117.38602 -246.18596 + -200.84112 -117.38553 -246.18595 + -200.84112 -117.38602 -246.18595 -218.22667 -114.38689 -260.10583 -218.22667 -114.38742 -260.10583 - -235.14106 -111.10356 -273.83735 - -235.14106 -111.10413 -273.83735 - -251.54195 -107.54050 -287.36591 - -251.54195 -107.54110 -287.36591 - -267.38777 -103.70283 -300.67735 - -267.38777 -103.70347 -300.67735 - -282.63771 -99.59586 -313.75801 - -282.63772 -99.65579 -313.75801 + -235.14106 -111.10356 -273.83734 + -235.14106 -111.10413 -273.83734 + -251.54195 -107.54050 -287.36590 + -251.54195 -107.54110 -287.36590 + -267.38777 -103.70283 -300.67734 + -267.38777 -103.70347 -300.67734 + -282.63771 -99.59586 -313.75800 + -282.63772 -99.65579 -313.75800 -297.60348 -94.86943 -326.92053 -297.60348 -94.99215 -326.92053 - -311.83467 -89.98393 -339.81286 - -311.83467 -90.11217 -339.81286 - -325.29824 -84.88525 -352.42206 - -325.29824 -85.01891 -352.42206 - -337.96165 -79.57646 -364.73590 - -337.96165 -79.71548 -364.73590 - -349.79278 -74.06065 -376.74290 - -349.79278 -74.20493 -376.74290 - -360.76001 -68.34082 -388.43231 - -360.76001 -68.49029 -388.43231 - -370.83219 -62.41995 -399.79417 - -370.83219 -62.57446 -399.79417 - -379.97899 -56.30623 -410.81934 - -379.97899 -56.46569 -410.81934 - -388.17069 -49.99886 -421.49952 - -388.17069 -50.16329 -421.49952 - -395.37737 -43.49635 -431.82726 - -395.37738 -43.66573 -431.82726 - -401.56924 -36.80149 -441.79603 - -401.56924 -36.97574 -441.79603 - -406.71689 -29.91682 -451.40020 - -406.71689 -30.09589 -451.40020 - -410.79130 -22.84474 -460.63510 - -410.79130 -22.93596 -460.63510 - -413.60239 -16.39554 -468.87648 - -413.60239 -16.39584 -468.87648 - -415.46656 -9.67895 -476.62183 - -415.46657 -9.67920 -476.62183 - -416.35878 -2.78841 -481.94887 - -416.35879 -2.78862 -481.94887 - -416.25437 4.27380 -482.56763 - -416.25437 4.27363 -482.56763 - -415.12893 11.50571 -479.91595 - -415.12893 11.50557 -479.91595 - -412.95836 18.90563 -476.45530 - -412.95836 18.90552 -476.45530 - -409.71875 26.47216 -472.67136 - -409.71875 26.47209 -472.67136 - -406.80236 31.86724 -469.83156 - -406.80236 31.86721 -469.83156 - -403.34241 37.34310 -466.83571 - -403.34241 37.34305 -466.83571 - -397.11973 45.62588 -462.05226 - -397.11973 45.62580 -462.05226 - -389.65275 53.93393 -456.92607 - -389.65290 53.93768 -456.92607 - -380.68169 59.02816 -451.19520 - -380.68154 59.03185 -451.19520 - -370.95696 64.25392 -445.10370 - -370.95696 64.25372 -445.10370 - -360.44652 69.20735 -438.66079 - -360.44652 69.20713 -438.66079 - -349.18449 73.89446 -431.87643 - -349.18449 73.89422 -431.87643 - -337.20991 78.31781 -424.76128 - -337.20991 78.31755 -424.76128 - -324.56286 82.48026 -417.32670 - -324.56286 82.47998 -417.32670 - -311.28344 86.38492 -409.58465 - -311.28344 86.38461 -409.58465 - -297.41153 90.03503 -401.54772 - -297.41153 90.03471 -401.54772 - -282.98662 93.43396 -393.22905 - -282.98662 93.43362 -393.22905 - -268.04776 96.58510 -384.64229 - -268.04776 96.58475 -384.64229 - -252.63348 99.49184 -375.80161 - -252.63348 99.49148 -375.80161 - -236.78185 102.15753 -366.72160 - -236.78185 102.15715 -366.72160 - -220.53042 104.58541 -357.41728 - -220.53041 104.58502 -357.41728 - -203.91625 106.77862 -347.90404 - -203.91625 106.77822 -347.90404 - -186.97594 108.74017 -338.19763 - -186.97594 108.73976 -338.19763 + -311.83467 -89.98393 -339.81285 + -311.83467 -90.11217 -339.81285 + -325.29825 -84.88525 -352.42205 + -325.29825 -85.01891 -352.42205 + -337.96165 -79.57646 -364.73589 + -337.96165 -79.71548 -364.73589 + -349.79278 -74.06065 -376.74289 + -349.79278 -74.20493 -376.74289 + -360.76001 -68.34082 -388.43230 + -360.76001 -68.49029 -388.43230 + -370.83219 -62.41994 -399.79416 + -370.83219 -62.57446 -399.79416 + -379.97899 -56.30623 -410.81933 + -379.97899 -56.46569 -410.81933 + -388.17069 -49.99886 -421.49950 + -388.17069 -50.16329 -421.49950 + -395.37737 -43.49635 -431.82725 + -395.37738 -43.66573 -431.82725 + -401.56924 -36.80149 -441.79601 + -401.56924 -36.97574 -441.79601 + -406.71689 -29.91682 -451.40019 + -406.71689 -30.09589 -451.40019 + -410.79130 -22.84474 -460.63509 + -410.79130 -22.93596 -460.63509 + -413.60239 -16.39554 -468.87646 + -413.60239 -16.39584 -468.87646 + -415.46656 -9.67895 -476.62181 + -415.46657 -9.67920 -476.62181 + -416.35878 -2.78841 -481.94886 + -416.35879 -2.78862 -481.94886 + -416.25437 4.27380 -482.56762 + -416.25437 4.27363 -482.56762 + -415.12893 11.50571 -479.91594 + -415.12893 11.50557 -479.91594 + -412.95836 18.90563 -476.45528 + -412.95836 18.90552 -476.45528 + -409.71875 26.47216 -472.67134 + -409.71876 26.47209 -472.67134 + -406.80236 31.86724 -469.83155 + -406.80236 31.86721 -469.83155 + -403.34241 37.34310 -466.83569 + -403.34241 37.34305 -466.83569 + -397.11973 45.62588 -462.05224 + -397.11973 45.62580 -462.05224 + -389.65275 53.93393 -456.92605 + -389.65290 53.93768 -456.92605 + -380.68169 59.02816 -451.19518 + -380.68154 59.03185 -451.19518 + -370.95696 64.25392 -445.10368 + -370.95696 64.25372 -445.10368 + -360.44652 69.20735 -438.66077 + -360.44652 69.20713 -438.66077 + -349.18449 73.89446 -431.87642 + -349.18449 73.89422 -431.87642 + -337.20991 78.31781 -424.76127 + -337.20991 78.31755 -424.76127 + -324.56286 82.48026 -417.32669 + -324.56286 82.47998 -417.32669 + -311.28344 86.38491 -409.58464 + -311.28344 86.38461 -409.58464 + -297.41153 90.03503 -401.54771 + -297.41153 90.03471 -401.54771 + -282.98663 93.43395 -393.22903 + -282.98663 93.43362 -393.22903 + -268.04776 96.58510 -384.64228 + -268.04776 96.58475 -384.64228 + -252.63348 99.49184 -375.80160 + -252.63348 99.49148 -375.80160 + -236.78185 102.15753 -366.72159 + -236.78185 102.15715 -366.72159 + -220.53042 104.58541 -357.41727 + -220.53042 104.58502 -357.41727 + -203.91625 106.77862 -347.90403 + -203.91625 106.77822 -347.90403 + -186.97594 108.74017 -338.19762 + -186.97594 108.73976 -338.19762 -169.74564 110.47291 -328.31408 -169.74564 110.47249 -328.31408 - -152.26106 111.97952 -318.26973 - -152.26106 111.97908 -318.26973 + -152.26106 111.97952 -318.26972 + -152.26106 111.97908 -318.26972 -134.55752 113.26249 -308.08113 -134.55752 113.26205 -308.08113 -116.66995 114.32416 -297.76506 -116.66995 114.32371 -297.76506 -98.63294 115.16666 -287.33846 -98.63294 115.16620 -287.33846 - -80.48076 115.79194 -276.81842 - -80.48076 115.79149 -276.81842 - -62.24740 116.20180 -266.22213 - -62.24740 116.20134 -266.22213 - -43.96656 116.39784 -255.56687 - -43.96656 116.39738 -255.56687 - -25.67172 116.38151 -244.86995 - -25.67172 116.38107 -244.86995 - -7.39614 116.15413 -234.14871 - -7.39614 116.15370 -234.14871 + -80.48077 115.79194 -276.81841 + -80.48077 115.79149 -276.81841 + -62.24740 116.20180 -266.22212 + -62.24740 116.20134 -266.22212 + -43.96656 116.39784 -255.56686 + -43.96656 116.39738 -255.56686 + -25.67173 116.38151 -244.86994 + -25.67173 116.38107 -244.86994 + -7.39615 116.15413 -234.14870 + -7.39615 116.15370 -234.14870 10.82711 115.71688 -223.42045 10.82711 115.71646 -223.42045 28.96516 115.07080 -212.70245 28.96516 115.07042 -212.70245 - 46.98527 114.21688 -202.01188 - 46.98527 114.21653 -202.01188 - 64.85485 113.15600 -191.36582 - 64.85484 113.15568 -191.36582 - 82.54011 111.87196 -180.78119 - 82.54011 111.87170 -180.78119 + 46.98526 114.21688 -202.01188 + 46.98526 114.21653 -202.01188 + 64.85484 113.15600 -191.36581 + 64.85484 113.15568 -191.36581 + 82.54011 111.87196 -180.78118 + 82.54011 111.87170 -180.78118 100.00344 110.33223 -170.27474 100.00344 110.33202 -170.27474 - 117.20465 108.53652 -159.86303 - 117.20465 108.53638 -159.86303 - 134.10356 106.48547 -149.56234 - 134.10356 106.48542 -149.56234 - 150.66012 104.17984 -139.38868 - 150.66011 104.17989 -139.38868 + 117.20465 108.53652 -159.86302 + 117.20465 108.53638 -159.86302 + 134.10356 106.48547 -149.56233 + 134.10356 106.48542 -149.56233 + 150.66011 104.17984 -139.38867 + 150.66011 104.17989 -139.38867 166.83443 101.62126 -129.35773 166.83443 101.66415 -129.35773 181.46965 83.52329 -119.43789 181.46965 83.60768 -119.43789 - 193.33028 66.45047 -109.69142 - 193.33096 66.51530 -109.69142 - 202.49179 49.35347 -100.12966 - 202.49108 49.41990 -100.12966 - 208.92479 31.91072 -90.76137 + 193.33028 66.45047 -109.69141 + 193.33096 66.51530 -109.69141 + 202.49179 49.35347 -100.12965 + 202.49108 49.41990 -100.12965 + 208.92478 31.91072 -90.76137 208.92478 31.99730 -90.76137 212.56645 13.97159 -81.59271 212.56645 14.06087 -81.59271 213.32728 -4.57913 -72.62715 213.32728 -4.48687 -72.62715 211.10612 -23.80050 -63.86541 - 211.10613 -23.70508 -63.86541 - 205.79384 -43.73400 -55.30536 - 205.79385 -43.63530 -55.30536 + 211.10612 -23.70508 -63.86541 + 205.79384 -43.73400 -55.30535 + 205.79385 -43.63530 -55.30535 197.27608 -64.40435 -46.94190 197.27609 -64.30115 -46.94190 - 185.39646 -86.32117 -38.76688 - 185.39646 -86.21319 -38.76688 - 169.98943 -109.08795 -30.76891 + 185.39646 -86.32117 -38.76687 + 185.39646 -86.21319 -38.76687 + 169.98942 -109.08795 -30.76891 169.98943 -108.97634 -30.76891 150.92693 -132.62561 -22.93326 - 150.92694 -132.51053 -22.93326 + 150.92693 -132.51053 -22.93326 128.08670 -156.94116 -15.24168 128.14752 -158.38088 -15.24168 101.49947 -177.15403 -7.67231 101.49841 -180.16883 -7.67231 72.57963 -182.72870 -0.19979 - 72.45975 -182.75555 -0.19979 + 72.45975 -182.75554 -0.19979 44.74276 -164.94234 7.20325 44.80276 -163.54018 7.20325 21.67100 -126.40578 14.56308 21.67107 -126.62167 14.56308 5.81490 -71.17569 21.90160 5.81484 -71.47582 21.90160 - -0.00011 0.17336 29.23375 + -0.00011 0.17336 29.23374 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24759,14 +24891,14 @@ Status character 32.27378 128.53682 634.34393 53.25659 110 0 - 32.93090 130.08576 642.98574 53.98212 110 0 - 32.66866 130.08576 641.03277 53.98212 110 0 - - 50.21227 131.63471 649.64833 54.70764 110 0 - - 50.21227 131.63471 647.89661 54.70764 110 0 - + 50.21228 131.63471 649.64833 54.70764 110 0 - + 50.21228 131.63471 647.89661 54.70764 110 0 - 217.50633 133.18366 656.48894 55.43317 110 33 - 217.50633 133.18366 654.90967 55.43317 110 33 - - 383.82803 134.73261 663.48133 56.15870 110 58 - - 383.82803 134.73261 662.05104 56.15870 110 58 - - 549.67020 136.28155 670.60422 56.88422 110 82 - - 549.67020 136.28155 669.30353 56.88422 110 82 - + 383.82802 134.73261 663.48133 56.15870 110 58 - + 383.82802 134.73261 662.05104 56.15870 110 58 - + 549.67019 136.28155 670.60422 56.88422 110 82 - + 549.67019 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -25201,8 +25333,8 @@ Status character 300.59039 75.48537 302.40039 25.72882 110 99 - 308.93514 77.03432 310.92777 26.45434 110 99 - 308.10767 77.03432 310.10030 26.45434 110 99 - - 199.80674 78.58326 318.60499 27.17987 110 63 - - 199.80674 78.58326 317.87650 27.17987 110 63 - + 199.80673 78.58326 318.60499 27.17987 110 63 - + 199.80673 78.58326 317.87650 27.17987 110 63 - 32.40076 80.13221 326.36174 27.90539 110 10 - 32.40076 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -25261,12 +25393,12 @@ CalculationStatus 18.80793 -30.77475 -3.39136 16.59675 19.19600 2 1 9 1.000 0 0 -23.92098 -32.88294 6.76983 16.24830 18.59902 2 3 9 1.000 0 0 -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 9 1.200 0 0 - -420.21204 -184.10265 -998.86477 77.20799 80.86198 3 0 9 1.000 0 0 - -420.21921 -184.11284 -484.74521 77.20408 80.85869 3 1 9 1.000 0 0 + -420.21204 -184.10264 -998.86457 77.20798 80.86198 3 0 9 1.000 0 0 + -420.21921 -184.11283 -484.74519 77.20408 80.85869 3 1 9 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 9 1.000 0 0 -417.74372 -153.60192 -181.75590 57.58640 63.64131 3 14 9 1.200 0 0 - -411.73182 -182.21712 -994.46291 76.02984 79.28254 4 0 9 1.000 0 0 - -416.35879 -182.75555 -482.56763 76.12714 79.41917 4 1 9 1.000 0 0 + -411.73182 -182.21711 -994.46271 76.02984 79.28254 4 0 9 1.000 0 0 + -416.35879 -182.75554 -482.56762 76.12714 79.41917 4 1 9 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 9 1.000 0 0 -407.02562 -137.77463 -178.01182 56.51282 62.10748 4 14 9 1.200 0 0 [END OF DATA] @@ -25340,9 +25472,9 @@ Force [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] MaximumMoment=-420.21921 -MaximumShearForce=-184.11284 +MaximumShearForce=-184.11283 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=77.20799 +MaximumPercentageMobilisedMoment=77.20798 MaximumPercentageMobilisedResistance=80.86198 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shi index 744289f4..1a400979 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44n.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:45:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44n.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:30:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44n.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shd index d3f89bce..23b9abeb 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44o.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:10 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44o.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,7 +1102,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16437,218 +16569,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00632 140.08544 - 0.20183 4.02871 111.43945 - 0.20207 4.03503 111.43945 - 1.11117 8.61175 82.79323 - 1.11117 8.61176 82.79323 - 2.75973 13.73791 54.14599 - 2.75973 13.73793 54.14599 - 5.22379 19.41788 25.49632 - 5.20523 19.91280 25.49632 + -0.00024 0.00632 140.08542 + 0.20183 4.02871 111.43943 + 0.20207 4.03503 111.43943 + 1.11117 8.61175 82.79321 + 1.11117 8.61176 82.79321 + 2.75973 13.73791 54.14598 + 2.75973 13.73793 54.14598 + 5.22379 19.41788 25.49631 + 5.20523 19.91280 25.49631 8.58732 24.58929 -3.15794 8.62444 24.58932 -3.15794 - 12.44456 25.90659 -31.81965 - 12.42600 25.41178 -31.81965 - 16.23777 25.41178 -60.49209 - 16.23777 25.41191 -60.49209 - 20.04955 25.41191 -89.17855 - 20.04955 25.41208 -89.17855 - 23.86136 25.41208 -117.88232 - 23.86136 25.41249 -117.88232 - 27.67323 25.41249 -146.60669 - 27.67324 -142.58708 -146.60669 - 6.28517 -142.58708 -175.35132 - 6.28518 -142.58688 -175.35132 - -15.10286 -142.58688 -204.10138 - -15.10286 -142.58675 -204.10138 - -36.46732 -142.26861 -232.83840 - -36.46732 -142.26856 -232.83840 - -43.56798 -141.75375 -242.41132 - -43.56798 -141.75375 -242.41132 - -50.64229 -141.21465 -251.98006 - -50.64229 -141.21465 -251.98006 - -71.69501 -139.45309 -280.65444 - -71.69530 -139.44522 -280.65444 - -92.46650 -137.46909 -309.26695 - -92.46620 -137.46131 -309.26695 - -112.92387 -135.27286 -337.79966 - -112.92386 -135.27308 -337.79966 - -133.03749 -132.87406 -366.23490 - -133.03749 -132.87435 -366.23490 - -152.77560 -130.26617 -394.55532 - -152.77560 -130.26653 -394.55532 - -172.10693 -127.45030 -422.74388 - -172.10692 -127.45071 -422.74388 - -191.00033 -124.42736 -450.78390 - -191.00033 -124.42782 -450.78390 - -209.42481 -121.19808 -478.65906 - -209.42481 -121.19859 -478.65906 - -227.34947 -117.76310 -506.35346 - -227.34947 -117.76364 -506.35346 - -244.74348 -114.12291 -533.85163 - -244.74348 -114.12349 -533.85163 - -261.57611 -110.27796 -561.13856 - -261.57611 -110.27858 -561.13856 - -277.81666 -106.22862 -588.19971 - -277.81666 -106.22926 -588.19971 - -293.43449 -101.97519 -615.02108 - -293.43450 -102.04613 -615.02108 - -308.70024 -96.37807 -642.26696 - -308.70024 -96.52224 -642.26696 - -323.10270 -90.67945 -669.23257 - -323.10270 -90.82799 -669.23257 - -336.61568 -84.81069 -695.90483 - -336.61568 -84.96360 -695.90483 - -349.21304 -78.77200 -722.27148 - -349.21304 -78.92927 -722.27148 - -360.86864 -72.56356 -748.32106 - -360.86864 -72.72517 -748.32106 - -371.55637 -66.18551 -774.04301 - -371.55637 -66.35147 -774.04301 - -381.25015 -59.63800 -799.42761 - -381.25015 -59.80823 -799.42761 - -389.92433 -52.92648 -824.46607 - -389.92433 -53.10095 -824.46607 - -397.55341 -46.04745 -849.15050 - -397.55341 -46.22626 -849.15050 - -404.11130 -38.99688 -873.47399 - -404.11130 -39.18007 -873.47399 - -409.57165 -31.77507 -897.43058 - -409.57165 -31.96263 -897.43058 - -413.90814 -24.38227 -921.01532 - -413.90814 -24.57420 -921.01532 - -417.09446 -16.81869 -944.22426 - -417.09446 -16.91632 -944.22426 - -419.06063 -10.58060 -965.43638 - -419.06063 -10.58101 -965.43638 - -420.10860 -4.06101 -985.57618 - -420.10860 -4.06138 -985.57618 - -420.21204 2.64280 -998.86477 - -420.21204 2.64245 -998.86477 - -419.34463 9.53070 -998.54995 - -419.34463 9.53038 -998.54995 - -417.48010 16.60260 -988.69350 - -417.48010 16.60231 -988.69350 - -414.59216 23.85840 -976.79125 - -414.59216 23.85814 -976.79125 - -410.65454 31.29802 -964.56444 - -410.65454 31.29786 -964.56444 - -407.25962 36.61510 -955.81416 - -407.25962 36.61503 -955.81416 - -403.32847 42.02227 -946.90765 - -403.32847 42.02212 -946.90765 - -396.41083 50.21977 -933.25828 - -396.41083 50.21954 -933.25828 - -388.26005 58.46430 -919.26678 - -388.26005 58.46408 -919.26678 - -378.60130 63.13321 -904.24974 - -378.60130 63.13300 -904.24974 - -368.29258 67.60182 -888.87403 - -368.29258 67.60162 -888.87403 - -357.31096 71.87027 -873.14943 - -357.31096 71.87008 -873.14943 - -345.68013 75.93866 -857.08634 - -345.68013 75.93849 -857.08634 - -333.42893 79.80711 -840.69578 - -333.42893 79.80695 -840.69578 - -320.58759 83.47572 -823.98936 - -320.58759 83.47556 -823.98936 - -307.18688 86.94457 -806.97923 - -307.18688 86.94442 -806.97923 - -293.25780 90.21375 -789.67810 - -293.25780 90.21360 -789.67810 - -278.83147 93.28334 -772.09915 - -278.83147 93.28319 -772.09915 - -263.93908 96.15342 -754.25606 - -263.93908 96.15327 -754.25606 - -248.61186 98.82406 -736.16292 - -248.61186 98.82391 -736.16292 - -232.88106 101.29533 -717.83427 - -232.88106 101.29518 -717.83427 - -216.77794 103.56729 -699.28501 - -216.77794 103.56713 -699.28501 - -200.33375 105.64000 -680.53038 - -200.33375 105.63984 -680.53038 - -183.57976 107.51351 -661.58596 - -183.57976 107.51335 -661.58596 - -166.54723 109.18789 -642.46763 - -166.54723 109.18772 -642.46763 - -149.26744 110.66318 -623.19152 - -149.26744 110.66300 -623.19152 - -131.77163 111.93942 -603.77401 - -131.77163 111.93924 -603.77401 - -114.09106 113.01668 -584.23166 - -114.09106 113.01649 -584.23166 - -96.25698 113.89498 -564.58122 - -96.25698 113.89479 -564.58122 - -78.30064 114.57438 -544.83960 - -78.30064 114.57419 -544.83960 - -60.25328 115.05491 -525.02379 - -60.25328 115.05472 -525.02379 - -42.14614 115.33661 -505.15090 - -42.14614 115.33642 -505.15090 - -24.01044 115.41952 -485.23808 - -24.01044 115.41934 -485.23808 - -5.87742 115.30368 -465.30252 - -5.87743 115.30351 -465.30252 - 12.22169 114.98912 -445.36138 - 12.22169 114.98895 -445.36138 - 30.25569 114.47587 -425.43181 - 30.25569 114.47572 -425.43181 - 48.19336 113.76397 -405.53090 - 48.19336 113.76384 -405.53090 - 66.00349 112.85344 -385.67565 - 66.00349 112.85334 -385.67565 - 83.65354 111.72732 -365.88292 - 83.65353 111.72724 -365.88292 - 101.10701 110.35227 -346.16943 - 101.10701 110.35223 -346.16943 - 118.32473 108.72728 -326.55172 - 118.32473 108.72728 -326.55172 - 135.26740 106.85222 -307.04609 - 135.26740 106.85227 -307.04609 - 151.89573 104.72706 -287.66861 - 151.89573 104.72716 -287.66861 - 168.17047 102.35253 -268.43501 - 168.17047 102.39603 -268.43501 - 182.90638 84.07354 -249.26976 - 182.90637 84.15896 -249.26976 - 194.84215 66.85673 -230.27924 - 194.84276 66.92411 -230.27924 - 204.05871 49.64728 -211.47489 - 204.05808 49.71580 -211.47489 - 210.53099 32.11472 -192.86550 - 210.53099 32.20123 -192.86550 - 214.19870 14.09961 -174.45728 - 214.19870 14.18877 -174.45728 - 214.97435 -4.51847 -156.25372 - 214.97435 -4.42630 -156.25372 - 212.75759 -23.80589 -138.25555 - 212.75759 -23.71048 -138.25555 - 207.43890 -43.81151 -120.46065 - 207.43890 -43.71269 -120.46065 - 198.90239 -64.56745 -102.86391 - 198.90239 -64.46394 -102.86391 - 186.98897 -86.59066 -85.45717 - 186.98897 -86.48216 -85.45717 - 171.52924 -109.49187 -68.22901 - 171.52924 -109.37949 -68.22901 - 152.39017 -133.19901 -51.16463 - 152.39018 -133.08290 -51.16463 - 129.44342 -157.72584 -34.24571 - 129.50347 -159.14456 -34.24571 - 102.71589 -178.16033 -17.45031 - 102.71543 -181.14920 -17.45031 - 73.61621 -184.07153 -0.75292 - 73.49695 -184.10265 -0.75292 - 45.53763 -166.61526 15.87401 - 45.59727 -165.22467 15.87401 - 22.18615 -128.25655 32.45697 - 22.18619 -128.47420 32.45697 - 6.02657 -73.15861 49.01813 - 6.02659 -73.46498 49.01813 - 0.00000 0.18253 65.57271 + 12.44456 25.90659 -31.81964 + 12.42600 25.41178 -31.81964 + 16.23777 25.41178 -60.49208 + 16.23777 25.41191 -60.49208 + 20.04955 25.41191 -89.17853 + 20.04955 25.41208 -89.17853 + 23.86136 25.41208 -117.88230 + 23.86136 25.41249 -117.88230 + 27.67323 25.41249 -146.60666 + 27.67324 -142.58708 -146.60666 + 6.28518 -142.58708 -175.35128 + 6.28518 -142.58688 -175.35128 + -15.10286 -142.58688 -204.10133 + -15.10285 -142.58675 -204.10133 + -36.46732 -142.26861 -232.83835 + -36.46732 -142.26856 -232.83835 + -43.56798 -141.75375 -242.41127 + -43.56798 -141.75375 -242.41127 + -50.64228 -141.21465 -251.98001 + -50.64228 -141.21465 -251.98001 + -71.69500 -139.45309 -280.65439 + -71.69530 -139.44522 -280.65439 + -92.46649 -137.46909 -309.26689 + -92.46620 -137.46131 -309.26689 + -112.92386 -135.27286 -337.79959 + -112.92386 -135.27308 -337.79959 + -133.03749 -132.87407 -366.23483 + -133.03749 -132.87435 -366.23483 + -152.77560 -130.26617 -394.55525 + -152.77560 -130.26653 -394.55525 + -172.10693 -127.45030 -422.74380 + -172.10692 -127.45071 -422.74380 + -191.00033 -124.42736 -450.78381 + -191.00033 -124.42782 -450.78381 + -209.42481 -121.19808 -478.65897 + -209.42481 -121.19859 -478.65897 + -227.34947 -117.76310 -506.35336 + -227.34947 -117.76364 -506.35336 + -244.74348 -114.12291 -533.85153 + -244.74348 -114.12350 -533.85153 + -261.57611 -110.27796 -561.13845 + -261.57611 -110.27858 -561.13845 + -277.81666 -106.22862 -588.19960 + -277.81665 -106.22926 -588.19960 + -293.43449 -101.97519 -615.02096 + -293.43450 -102.04613 -615.02096 + -308.70024 -96.37807 -642.26683 + -308.70024 -96.52224 -642.26683 + -323.10270 -90.67945 -669.23244 + -323.10270 -90.82799 -669.23244 + -336.61568 -84.81069 -695.90470 + -336.61568 -84.96360 -695.90470 + -349.21304 -78.77200 -722.27133 + -349.21304 -78.92927 -722.27133 + -360.86864 -72.56356 -748.32091 + -360.86864 -72.72517 -748.32091 + -371.55637 -66.18551 -774.04285 + -371.55637 -66.35147 -774.04285 + -381.25015 -59.63800 -799.42745 + -381.25015 -59.80823 -799.42745 + -389.92433 -52.92648 -824.46590 + -389.92433 -53.10095 -824.46590 + -397.55341 -46.04745 -849.15033 + -397.55341 -46.22626 -849.15033 + -404.11130 -38.99688 -873.47382 + -404.11130 -39.18007 -873.47382 + -409.57165 -31.77507 -897.43040 + -409.57165 -31.96263 -897.43040 + -413.90814 -24.38227 -921.01513 + -413.90814 -24.57420 -921.01513 + -417.09446 -16.81869 -944.22407 + -417.09446 -16.91632 -944.22407 + -419.06063 -10.58060 -965.43618 + -419.06063 -10.58102 -965.43618 + -420.10860 -4.06101 -985.57598 + -420.10860 -4.06138 -985.57598 + -420.21204 2.64280 -998.86457 + -420.21204 2.64245 -998.86457 + -419.34463 9.53070 -998.54974 + -419.34463 9.53038 -998.54974 + -417.48010 16.60260 -988.69330 + -417.48010 16.60231 -988.69330 + -414.59216 23.85840 -976.79106 + -414.59216 23.85814 -976.79106 + -410.65454 31.29802 -964.56424 + -410.65454 31.29786 -964.56424 + -407.25962 36.61510 -955.81397 + -407.25962 36.61502 -955.81397 + -403.32847 42.02227 -946.90746 + -403.32847 42.02211 -946.90746 + -396.41084 50.21976 -933.25809 + -396.41084 50.21954 -933.25809 + -388.26005 58.46430 -919.26660 + -388.26005 58.46408 -919.26660 + -378.60131 63.13321 -904.24956 + -378.60131 63.13299 -904.24956 + -368.29258 67.60182 -888.87386 + -368.29258 67.60162 -888.87386 + -357.31096 71.87027 -873.14926 + -357.31096 71.87008 -873.14926 + -345.68014 75.93866 -857.08617 + -345.68014 75.93849 -857.08617 + -333.42893 79.80711 -840.69562 + -333.42893 79.80695 -840.69562 + -320.58760 83.47572 -823.98920 + -320.58760 83.47556 -823.98920 + -307.18688 86.94457 -806.97907 + -307.18688 86.94441 -806.97907 + -293.25780 90.21375 -789.67794 + -293.25780 90.21360 -789.67794 + -278.83147 93.28334 -772.09900 + -278.83147 93.28319 -772.09900 + -263.93908 96.15342 -754.25591 + -263.93908 96.15327 -754.25591 + -248.61187 98.82406 -736.16278 + -248.61187 98.82391 -736.16278 + -232.88107 101.29533 -717.83414 + -232.88107 101.29518 -717.83414 + -216.77794 103.56729 -699.28487 + -216.77794 103.56713 -699.28487 + -200.33375 105.64000 -680.53025 + -200.33375 105.63983 -680.53025 + -183.57976 107.51351 -661.58583 + -183.57976 107.51334 -661.58583 + -166.54724 109.18789 -642.46751 + -166.54724 109.18771 -642.46751 + -149.26744 110.66318 -623.19140 + -149.26744 110.66300 -623.19140 + -131.77163 111.93942 -603.77389 + -131.77163 111.93924 -603.77389 + -114.09106 113.01668 -584.23155 + -114.09106 113.01649 -584.23155 + -96.25699 113.89498 -564.58111 + -96.25699 113.89479 -564.58111 + -78.30065 114.57438 -544.83949 + -78.30065 114.57419 -544.83949 + -60.25329 115.05491 -525.02369 + -60.25329 115.05472 -525.02369 + -42.14614 115.33661 -505.15080 + -42.14614 115.33642 -505.15080 + -24.01045 115.41952 -485.23799 + -24.01045 115.41934 -485.23799 + -5.87743 115.30368 -465.30242 + -5.87743 115.30351 -465.30242 + 12.22168 114.98912 -445.36129 + 12.22168 114.98896 -445.36129 + 30.25568 114.47587 -425.43173 + 30.25568 114.47572 -425.43173 + 48.19335 113.76397 -405.53082 + 48.19335 113.76384 -405.53082 + 66.00348 112.85344 -385.67557 + 66.00348 112.85334 -385.67557 + 83.65353 111.72732 -365.88285 + 83.65353 111.72724 -365.88285 + 101.10700 110.35227 -346.16936 + 101.10700 110.35223 -346.16936 + 118.32472 108.72728 -326.55165 + 118.32472 108.72728 -326.55165 + 135.26739 106.85222 -307.04603 + 135.26739 106.85227 -307.04603 + 151.89572 104.72705 -287.66855 + 151.89572 104.72716 -287.66855 + 168.17047 102.35253 -268.43495 + 168.17046 102.39603 -268.43495 + 182.90637 84.07354 -249.26970 + 182.90636 84.15896 -249.26970 + 194.84214 66.85673 -230.27919 + 194.84276 66.92411 -230.27919 + 204.05870 49.64728 -211.47484 + 204.05807 49.71580 -211.47484 + 210.53098 32.11472 -192.86546 + 210.53098 32.20123 -192.86546 + 214.19869 14.09961 -174.45724 + 214.19869 14.18877 -174.45724 + 214.97434 -4.51847 -156.25368 + 214.97435 -4.42630 -156.25368 + 212.75758 -23.80590 -138.25552 + 212.75758 -23.71048 -138.25552 + 207.43889 -43.81151 -120.46062 + 207.43889 -43.71269 -120.46062 + 198.90238 -64.56745 -102.86389 + 198.90238 -64.46394 -102.86389 + 186.98896 -86.59066 -85.45715 + 186.98896 -86.48216 -85.45715 + 171.52923 -109.49187 -68.22899 + 171.52924 -109.37949 -68.22899 + 152.39016 -133.19901 -51.16462 + 152.39017 -133.08290 -51.16462 + 129.44341 -157.72584 -34.24570 + 129.50346 -159.14456 -34.24570 + 102.71589 -178.16032 -17.45030 + 102.71542 -181.14920 -17.45030 + 73.61621 -184.07152 -0.75292 + 73.49694 -184.10264 -0.75292 + 45.53763 -166.61525 15.87401 + 45.59727 -165.22466 15.87401 + 22.18615 -128.25654 32.45697 + 22.18618 -128.47419 32.45697 + 6.02657 -73.15860 49.01813 + 6.02659 -73.46497 49.01813 + 0.00000 0.18253 65.57270 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16978,7 +17110,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 27.61109 0.00000 79.15458 26.18108 110 35 - - 25.09093 0.00000 91.92500 23.66092 110 27 - + 25.09094 0.00000 91.92500 23.66092 110 27 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17171,15 +17303,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 48.94497 131.63471 740.59906 56.47417 110 0 - - 48.95851 131.63471 739.01307 56.48771 110 0 - + 48.94500 131.63471 740.59906 56.47417 110 0 - + 48.95854 131.63471 739.01307 56.48771 110 0 - 215.89816 133.18366 747.78252 57.15802 110 29 - - 215.91261 133.18366 746.33401 57.17248 110 29 - - 382.41283 134.73261 755.08820 57.84309 110 51 - - 382.42815 134.73261 753.75802 57.85840 110 51 - - 548.71065 136.28155 762.49856 58.52932 110 72 - - 548.72677 136.28155 761.27091 58.54544 110 72 - - 714.94383 137.83050 769.99919 59.21669 110 93 - + 215.91262 133.18366 746.33401 57.17248 110 29 - + 382.41280 134.73261 755.08820 57.84309 110 51 - + 382.42811 134.73261 753.75802 57.85840 110 51 - + 548.71058 136.28155 762.49856 58.52932 110 72 - + 548.72670 136.28155 761.27091 58.54544 110 72 - + 714.94373 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17613,10 +17745,10 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 201.68294 78.58326 318.60499 27.17987 110 63 - - 201.68294 78.58326 317.87650 27.17987 110 63 - - 35.43460 80.13221 326.36174 27.90539 110 11 - - 35.43460 80.13221 325.71668 27.90539 110 11 - + 201.68287 78.58326 318.60499 27.17987 110 63 - + 201.68287 78.58326 317.87650 27.17987 110 63 - + 35.43456 80.13221 326.36174 27.90539 110 11 - + 35.43456 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -17925,218 +18057,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00010 0.00280 139.60043 - 0.18736 3.74377 111.15589 - 0.18747 3.74657 111.15589 - 1.00161 7.55655 82.71114 - 1.00161 7.55655 82.71114 - 2.41274 11.55048 54.26548 - 2.41274 11.55050 54.26548 + -0.00010 0.00280 139.60041 + 0.18736 3.74377 111.15587 + 0.18747 3.74657 111.15587 + 1.00161 7.55655 82.71113 + 1.00161 7.55655 82.71113 + 2.41274 11.55048 54.26547 + 2.41274 11.55050 54.26547 4.44846 15.82073 25.81769 4.42991 16.31563 25.81769 - 7.15742 19.39135 -2.63399 - 7.19454 19.39135 -2.63399 + 7.15742 19.39135 -2.63398 + 7.19454 19.39135 -2.63398 10.16186 20.01580 -31.09187 - 10.14331 19.52095 -31.09187 - 13.08399 19.69540 -59.55852 - 13.08399 19.69548 -59.55852 - 16.05411 19.91342 -88.03646 - 16.05411 19.91353 -88.03646 - 19.06024 20.17563 -116.52827 - 19.06023 20.17597 -116.52827 - 22.10909 20.48301 -145.03653 - 22.10910 -129.05159 -145.03653 - 2.77725 -128.69870 -173.56066 - 2.77725 -128.69856 -173.56066 - -16.49816 -128.29905 -202.08718 - -16.49816 -128.29894 -202.08718 - -35.71010 -127.85236 -230.59947 - -35.71009 -127.85231 -230.59947 - -42.09861 -127.68438 -240.09754 - -42.09861 -127.68438 -240.09754 - -48.47816 -127.49405 -249.59156 - -48.47816 -127.49402 -249.59156 - -67.55189 -126.78880 -278.04330 - -67.55218 -126.78087 -278.04330 - -86.50386 -125.87476 -306.43672 - -86.50356 -125.86690 -306.43672 - -105.30314 -124.76081 -334.75548 - -105.30313 -124.76091 -334.75548 - -123.92188 -123.45608 -362.98335 - -123.92188 -123.45623 -362.98335 - -142.32592 -121.89842 -391.10425 - -142.32592 -121.89862 -391.10425 - -160.47438 -120.04795 -419.10230 - -160.47438 -120.04819 -419.10230 - -178.32355 -117.90768 -446.96184 - -178.32355 -117.90795 -446.96184 - -195.83021 -115.48088 -474.66745 - -195.83021 -115.48119 -474.66745 - -212.95163 -112.77104 -502.20404 - -212.95163 -112.77137 -502.20404 - -229.64563 -109.78182 -529.55682 - -229.64563 -109.78218 -529.55682 - -245.87057 -106.51703 -556.71138 - -245.87057 -106.51741 -556.71138 - -261.58542 -102.98060 -583.65372 - -261.58542 -102.98100 -583.65372 - -276.74972 -99.17656 -610.37028 - -276.74972 -99.23475 -610.37028 - -291.66028 -94.57291 -637.52362 - -291.66028 -94.69242 -637.52362 - -305.85491 -89.80826 -664.41216 - -305.85491 -89.93329 -664.41216 - -319.30045 -84.82936 -691.02300 - -319.30045 -84.95986 -691.02300 - -331.96412 -79.63868 -717.34394 - -331.96412 -79.77458 -717.34394 - -343.81352 -74.23867 -743.36347 - -343.81352 -74.37991 -743.36347 - -354.81664 -68.63175 -769.07084 - -354.81664 -68.77827 -769.07084 - -364.94181 -62.82030 -794.45606 - -364.94181 -62.97196 -794.45606 - -374.15815 -56.81197 -819.50994 - -374.15815 -56.96869 -819.50994 - -382.43526 -50.60541 -844.22410 - -382.43526 -50.76724 -844.22410 - -389.74250 -44.19868 -868.59104 - -389.74250 -44.36561 -868.59104 - -396.04925 -37.59413 -892.60413 - -396.04925 -37.76609 -892.60413 - -401.32524 -30.79393 -916.25763 - -401.32524 -30.97087 -916.25763 - -405.54054 -23.80018 -939.54675 - -405.54053 -23.89037 -939.54675 - -408.50044 -17.52207 -960.84275 - -408.50044 -17.52234 -960.84275 - -410.53697 -10.96309 -981.07468 - -410.53697 -10.96334 -981.07468 - -411.62303 -4.21551 -994.46291 - -411.62303 -4.21574 -994.46291 - -411.73182 2.71848 -994.25445 - -411.73182 2.71827 -994.25445 - -410.83686 9.83688 -984.51033 - -410.83686 9.83668 -984.51033 - -408.91194 17.13784 -972.72560 - -408.91194 17.13765 -972.72560 - -405.93109 24.61970 -960.62076 - -405.93109 24.61958 -960.62076 - -403.20255 29.96384 -951.95811 - -403.20255 29.96378 -951.95811 - -399.93521 35.39548 -943.14078 - -399.93521 35.39536 -943.14078 - -394.00892 43.62403 -929.62754 - -394.00892 43.62384 -929.62754 - -386.84542 51.89180 -915.77425 - -386.84553 51.89429 -915.77425 - -378.19835 56.94637 -900.90330 - -378.19824 56.94885 -900.90330 - -368.80360 62.14206 -885.67407 - -368.80360 62.14185 -885.67407 - -358.62565 67.09146 -870.09548 - -358.62565 67.09123 -870.09548 - -347.69494 71.79706 -854.17715 - -347.69494 71.79682 -854.17715 - -336.04717 76.25903 -837.92946 - -336.04717 76.25878 -837.92946 - -323.71943 80.47779 -821.36342 - -323.71943 80.47753 -821.36342 - -310.74924 84.45402 -804.49073 - -310.74924 84.45375 -804.49073 - -297.17427 88.18862 -787.32365 - -297.17427 88.18834 -787.32365 - -283.03217 91.68265 -769.87506 - -283.03217 91.68236 -769.87506 - -268.36047 94.93733 -752.15835 - -268.36047 94.93702 -752.15835 - -253.19656 97.95398 -734.18741 - -253.19656 97.95367 -734.18741 - -237.57764 100.73403 -715.97662 - -237.57764 100.73371 -715.97662 - -221.54072 103.27897 -697.54076 - -221.54072 103.27865 -697.54076 - -205.12257 105.59036 -678.89503 - -205.12257 105.59003 -678.89503 - -188.35971 107.66976 -660.05498 - -188.35971 107.66943 -660.05498 - -171.28844 109.51878 -641.03649 - -171.28844 109.51844 -641.03649 - -153.94483 111.13901 -621.85573 - -153.94483 111.13867 -621.85573 - -136.36466 112.53203 -602.52914 - -136.36466 112.53168 -602.52914 - -118.58350 113.69941 -583.07336 - -118.58350 113.69907 -583.07336 - -100.63667 114.64270 -563.50523 - -100.63667 114.64235 -563.50523 - -82.55925 115.36339 -543.84177 - -82.55925 115.36305 -543.84177 - -64.38610 115.86297 -524.10010 - -64.38610 115.86264 -524.10010 - -46.15183 116.14287 -504.29742 - -46.15183 116.14254 -504.29742 - -27.89085 116.20446 -484.45102 - -27.89085 116.20414 -484.45102 - -9.63735 116.04910 -464.57820 - -9.63735 116.04879 -464.57820 - 8.57470 115.67808 -444.69624 - 8.57470 115.67779 -444.69624 - 26.71150 115.09269 -424.82239 - 26.71150 115.09242 -424.82239 - 44.73947 114.29414 -404.97385 - 44.73947 114.29389 -404.97385 - 62.62522 113.28364 -385.16769 - 62.62522 113.28342 -385.16769 - 80.33420 112.04535 -365.42084 - 80.33420 112.04516 -365.42084 - 97.82810 110.54708 -345.75010 - 97.82810 110.54692 -345.75010 - 115.06607 108.78891 -326.17202 - 115.06607 108.78879 -326.17202 - 132.00736 106.77183 -306.70294 - 132.00736 106.77176 -306.70294 - 148.61136 104.49692 -287.35890 - 148.61136 104.49690 -287.35890 - 164.83772 101.96606 -268.15564 - 164.83772 102.00845 -268.15564 - 179.53741 83.99339 -249.01770 - 179.53741 84.07688 -249.01770 - 191.48119 67.03234 -230.05127 - 191.48180 67.09801 -230.05127 - 200.74269 50.03602 -211.26779 - 200.74206 50.10302 -211.26779 - 207.29066 32.68077 -192.67611 - 207.29066 32.76594 -192.67611 - 211.05968 14.81386 -174.28250 - 211.05968 14.90182 -174.28250 - 211.95819 -3.67862 -156.09054 - 211.95819 -3.58754 -156.09054 - 209.88274 -22.85674 -138.10110 - 209.88274 -22.76233 -138.10110 - 204.72175 -42.76334 -120.31217 - 204.72175 -42.66546 -120.31217 - 196.35813 -63.42485 -102.71881 - 196.35814 -63.32224 -102.71881 - 184.63252 -85.35284 -85.31301 - 184.63252 -85.24522 -85.31301 - 169.37602 -108.15304 -68.08354 - 169.37602 -108.04155 -68.08354 - 150.45689 -131.74882 -51.01579 - 150.45689 -131.63361 -51.01579 - 127.74874 -156.14976 -34.09166 - 127.80879 -157.56942 -34.09166 - 101.28109 -176.44018 -17.28942 + 10.14331 19.52096 -31.09187 + 13.08399 19.69540 -59.55851 + 13.08399 19.69548 -59.55851 + 16.05411 19.91342 -88.03644 + 16.05411 19.91353 -88.03644 + 19.06024 20.17563 -116.52824 + 19.06023 20.17597 -116.52824 + 22.10909 20.48301 -145.03650 + 22.10910 -129.05159 -145.03650 + 2.77725 -128.69870 -173.56062 + 2.77725 -128.69856 -173.56062 + -16.49816 -128.29905 -202.08714 + -16.49816 -128.29894 -202.08714 + -35.71010 -127.85236 -230.59943 + -35.71009 -127.85231 -230.59943 + -42.09860 -127.68438 -240.09749 + -42.09860 -127.68438 -240.09749 + -48.47816 -127.49405 -249.59151 + -48.47816 -127.49402 -249.59151 + -67.55189 -126.78880 -278.04324 + -67.55218 -126.78087 -278.04324 + -86.50386 -125.87476 -306.43666 + -86.50356 -125.86690 -306.43666 + -105.30314 -124.76081 -334.75542 + -105.30313 -124.76091 -334.75542 + -123.92188 -123.45608 -362.98328 + -123.92188 -123.45623 -362.98328 + -142.32592 -121.89842 -391.10417 + -142.32592 -121.89862 -391.10417 + -160.47438 -120.04795 -419.10222 + -160.47438 -120.04819 -419.10222 + -178.32355 -117.90768 -446.96175 + -178.32355 -117.90795 -446.96175 + -195.83021 -115.48088 -474.66736 + -195.83021 -115.48119 -474.66736 + -212.95163 -112.77104 -502.20394 + -212.95163 -112.77137 -502.20394 + -229.64563 -109.78182 -529.55671 + -229.64563 -109.78218 -529.55671 + -245.87057 -106.51703 -556.71127 + -245.87057 -106.51741 -556.71127 + -261.58542 -102.98060 -583.65361 + -261.58542 -102.98100 -583.65361 + -276.74972 -99.17656 -610.37016 + -276.74972 -99.23475 -610.37016 + -291.66028 -94.57291 -637.52350 + -291.66028 -94.69242 -637.52350 + -305.85491 -89.80826 -664.41203 + -305.85491 -89.93329 -664.41203 + -319.30045 -84.82936 -691.02286 + -319.30045 -84.95986 -691.02286 + -331.96412 -79.63868 -717.34379 + -331.96412 -79.77458 -717.34379 + -343.81352 -74.23867 -743.36332 + -343.81352 -74.37991 -743.36332 + -354.81664 -68.63175 -769.07069 + -354.81664 -68.77827 -769.07069 + -364.94181 -62.82030 -794.45590 + -364.94181 -62.97196 -794.45590 + -374.15815 -56.81197 -819.50977 + -374.15815 -56.96869 -819.50977 + -382.43526 -50.60541 -844.22393 + -382.43526 -50.76724 -844.22393 + -389.74250 -44.19868 -868.59087 + -389.74250 -44.36561 -868.59087 + -396.04925 -37.59413 -892.60395 + -396.04925 -37.76609 -892.60395 + -401.32524 -30.79393 -916.25744 + -401.32524 -30.97087 -916.25744 + -405.54054 -23.80018 -939.54656 + -405.54053 -23.89037 -939.54656 + -408.50044 -17.52207 -960.84255 + -408.50044 -17.52234 -960.84255 + -410.53697 -10.96309 -981.07448 + -410.53698 -10.96334 -981.07448 + -411.62303 -4.21551 -994.46271 + -411.62303 -4.21574 -994.46271 + -411.73182 2.71848 -994.25424 + -411.73182 2.71827 -994.25424 + -410.83686 9.83688 -984.51013 + -410.83686 9.83668 -984.51013 + -408.91194 17.13784 -972.72541 + -408.91194 17.13765 -972.72541 + -405.93109 24.61970 -960.62056 + -405.93109 24.61957 -960.62056 + -403.20255 29.96384 -951.95792 + -403.20255 29.96378 -951.95792 + -399.93521 35.39548 -943.14059 + -399.93521 35.39536 -943.14059 + -394.00893 43.62403 -929.62736 + -394.00893 43.62384 -929.62736 + -386.84542 51.89180 -915.77407 + -386.84553 51.89429 -915.77407 + -378.19835 56.94637 -900.90312 + -378.19824 56.94885 -900.90312 + -368.80360 62.14206 -885.67390 + -368.80360 62.14184 -885.67390 + -358.62565 67.09146 -870.09531 + -358.62565 67.09123 -870.09531 + -347.69494 71.79706 -854.17699 + -347.69494 71.79682 -854.17699 + -336.04718 76.25903 -837.92929 + -336.04718 76.25878 -837.92929 + -323.71943 80.47779 -821.36326 + -323.71943 80.47752 -821.36326 + -310.74924 84.45402 -804.49057 + -310.74924 84.45375 -804.49057 + -297.17428 88.18862 -787.32350 + -297.17428 88.18834 -787.32350 + -283.03217 91.68265 -769.87491 + -283.03217 91.68236 -769.87491 + -268.36047 94.93732 -752.15820 + -268.36047 94.93702 -752.15820 + -253.19656 97.95397 -734.18727 + -253.19656 97.95366 -734.18727 + -237.57765 100.73402 -715.97648 + -237.57765 100.73371 -715.97648 + -221.54073 103.27897 -697.54063 + -221.54073 103.27865 -697.54063 + -205.12257 105.59036 -678.89490 + -205.12257 105.59003 -678.89490 + -188.35971 107.66976 -660.05485 + -188.35971 107.66943 -660.05485 + -171.28845 109.51878 -641.03637 + -171.28845 109.51844 -641.03637 + -153.94483 111.13901 -621.85561 + -153.94483 111.13866 -621.85561 + -136.36466 112.53203 -602.52902 + -136.36466 112.53168 -602.52902 + -118.58350 113.69941 -583.07324 + -118.58350 113.69906 -583.07324 + -100.63668 114.64269 -563.50513 + -100.63668 114.64235 -563.50513 + -82.55926 115.36339 -543.84167 + -82.55926 115.36305 -543.84167 + -64.38611 115.86297 -524.10000 + -64.38611 115.86264 -524.10000 + -46.15184 116.14286 -504.29732 + -46.15184 116.14254 -504.29732 + -27.89086 116.20446 -484.45093 + -27.89086 116.20414 -484.45093 + -9.63735 116.04909 -464.57811 + -9.63735 116.04879 -464.57811 + 8.57469 115.67808 -444.69615 + 8.57469 115.67780 -444.69615 + 26.71149 115.09269 -424.82231 + 26.71149 115.09242 -424.82231 + 44.73946 114.29414 -404.97377 + 44.73946 114.29389 -404.97377 + 62.62521 113.28364 -385.16761 + 62.62521 113.28342 -385.16761 + 80.33419 112.04535 -365.42077 + 80.33419 112.04516 -365.42077 + 97.82809 110.54708 -345.75003 + 97.82809 110.54692 -345.75003 + 115.06607 108.78891 -326.17195 + 115.06606 108.78879 -326.17195 + 132.00735 106.77183 -306.70288 + 132.00735 106.77176 -306.70288 + 148.61136 104.49692 -287.35884 + 148.61136 104.49691 -287.35884 + 164.83771 101.96606 -268.15559 + 164.83771 102.00845 -268.15559 + 179.53741 83.99339 -249.01765 + 179.53741 84.07688 -249.01765 + 191.48119 67.03234 -230.05122 + 191.48180 67.09801 -230.05122 + 200.74269 50.03602 -211.26774 + 200.74206 50.10302 -211.26774 + 207.29066 32.68077 -192.67607 + 207.29066 32.76594 -192.67607 + 211.05967 14.81386 -174.28246 + 211.05967 14.90182 -174.28246 + 211.95818 -3.67862 -156.09051 + 211.95818 -3.58753 -156.09051 + 209.88274 -22.85674 -138.10107 + 209.88274 -22.76233 -138.10107 + 204.72174 -42.76334 -120.31214 + 204.72174 -42.66546 -120.31214 + 196.35813 -63.42485 -102.71879 + 196.35813 -63.32224 -102.71879 + 184.63251 -85.35284 -85.31299 + 184.63251 -85.24522 -85.31299 + 169.37601 -108.15305 -68.08352 + 169.37602 -108.04155 -68.08352 + 150.45688 -131.74882 -51.01578 + 150.45688 -131.63361 -51.01578 + 127.74874 -156.14976 -34.09165 + 127.80878 -157.56942 -34.09165 + 101.28108 -176.44018 -17.28942 101.28062 -179.43004 -17.28942 - 72.46567 -182.18598 -0.58383 - 72.34637 -182.21712 -0.58383 - 44.69426 -164.63795 16.05241 - 44.75393 -163.24678 16.05241 - 21.65595 -126.26511 32.64548 - 21.65599 -126.48290 32.64548 + 72.46567 -182.18597 -0.58383 + 72.34636 -182.21711 -0.58383 + 44.69425 -164.63794 16.05241 + 44.75393 -163.24677 16.05241 + 21.65595 -126.26510 32.64547 + 21.65599 -126.48289 32.64547 5.81287 -71.13794 49.21725 - 5.81285 -71.44022 49.21725 - -0.00004 0.17506 65.78266 + 5.81285 -71.44021 49.21725 + -0.00004 0.17506 65.78265 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18465,8 +18597,8 @@ Status character 34.14843 0.00000 46.21367 4.77649 110 74 - 47.18935 0.00000 61.61823 6.36865 110 77 - 48.14629 0.00000 52.62146 6.36865 110 91 - - 10.43873 0.00000 65.77683 7.96082 110 16 - - 10.43873 0.00000 58.61717 7.96082 110 18 - + 10.43874 0.00000 65.77683 7.96082 110 16 - + 10.43874 0.00000 58.61717 7.96082 110 18 - 1.45556 0.00000 70.34061 9.55298 110 0 - 1.45556 0.00000 64.38983 9.55298 110 0 - 1.86715 0.00000 75.12146 11.14515 110 0 - @@ -18643,7 +18775,7 @@ Status character 35.85157 116.14524 594.02752 47.45238 110 0 - 36.28160 117.69418 603.10994 48.17791 110 0 - 35.89886 117.69418 596.74967 48.17791 110 0 - - 36.35263 119.24313 605.73631 48.90343 110 0 - + 36.35262 119.24313 605.73631 48.90343 110 0 - 35.95490 119.24313 600.50339 48.90343 110 0 - 36.43093 120.79208 609.41240 49.62896 110 0 - 36.05374 120.79208 605.02281 49.62896 110 0 - @@ -18652,21 +18784,21 @@ Status character 32.20948 123.88997 618.91941 51.08001 110 0 - 31.14337 123.88997 615.69414 51.08001 110 0 - 31.61254 125.43892 624.43929 51.80554 110 0 - - 31.35795 125.43892 621.62820 51.80554 110 0 - + 31.35794 125.43892 621.62820 51.80554 110 0 - 31.84449 126.98787 630.33398 52.53107 110 0 - 31.58349 126.98787 627.86220 52.53107 110 0 - - 32.08526 128.53682 636.53384 53.25659 110 0 - + 32.08525 128.53682 636.53384 53.25659 110 0 - 31.82165 128.53682 634.34393 53.25659 110 0 - 32.33636 130.08576 642.98574 53.98212 110 0 - 32.07413 130.08576 641.03277 53.98212 110 0 - - 48.86933 131.63471 649.64833 54.70764 110 0 - - 48.86933 131.63471 647.89661 54.70764 110 0 - - 215.95724 133.18366 656.48894 55.43317 110 33 - - 215.95724 133.18366 654.90967 55.43317 110 33 - - 382.61347 134.73261 663.48133 56.15870 110 58 - - 382.61347 134.73261 662.05104 56.15870 110 58 - - 549.05675 136.28155 670.60422 56.88422 110 82 - - 549.05675 136.28155 669.30353 56.88422 110 82 - + 48.86936 131.63471 649.64833 54.70764 110 0 - + 48.86936 131.63471 647.89661 54.70764 110 0 - + 215.95723 133.18366 656.48894 55.43317 110 33 - + 215.95723 133.18366 654.90967 55.43317 110 33 - + 382.61344 134.73261 663.48133 56.15870 110 58 - + 382.61344 134.73261 662.05104 56.15870 110 58 - + 549.05667 136.28155 670.60422 56.88422 110 82 - + 549.05667 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -19088,23 +19220,23 @@ Status character 260.17895 66.19168 261.81071 21.37566 110 99 - 257.52692 66.19168 259.15868 21.37566 110 99 - 266.41044 67.74063 267.95497 22.10118 110 99 - - 264.26422 67.74063 265.80876 22.10118 110 99 - + 264.26423 67.74063 265.80876 22.10118 110 99 - 273.04980 69.28958 274.53459 22.82671 110 99 - 271.27628 69.28958 272.76107 22.82671 110 99 - 279.97951 70.83853 281.43054 23.55224 110 99 - 278.48993 70.83853 279.94096 23.55224 110 99 - - 287.12294 72.38747 288.56453 24.27776 110 99 - + 287.12295 72.38747 288.56453 24.27776 110 99 - 285.85542 72.38747 287.29701 24.27776 110 99 - 294.42803 73.93642 295.88270 25.00329 110 99 - 293.33782 73.93642 294.79250 25.00329 110 99 - 301.85821 75.48537 303.34656 25.72882 110 99 - - 300.91204 75.48537 302.40039 25.72882 110 99 - - 309.38727 77.03432 310.92777 26.45434 110 99 - + 300.91205 75.48537 302.40039 25.72882 110 99 - + 309.38728 77.03432 310.92777 26.45434 110 99 - 308.55980 77.03432 310.10030 26.45434 110 99 - - 200.07409 78.58326 318.60499 27.17987 110 63 - - 200.07409 78.58326 317.87650 27.17987 110 63 - - 33.74371 80.13221 326.36174 27.90539 110 10 - - 33.74371 80.13221 325.71668 27.90539 110 10 - + 200.07403 78.58326 318.60499 27.17987 110 63 - + 200.07403 78.58326 317.87650 27.17987 110 63 - + 33.74368 80.13221 326.36174 27.90539 110 10 - + 33.74368 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -22543,7 +22675,7 @@ Displacements 1.11106 8.61128 43.60945 1.11106 8.61130 43.60945 2.75956 13.73745 28.65440 - 2.75956 13.73751 28.65440 + 2.75956 13.73750 28.65440 5.22355 19.41746 13.69692 5.20171 19.99998 13.69692 8.59665 24.67190 -1.26515 @@ -22557,155 +22689,155 @@ Displacements 23.88179 25.40312 -61.22094 23.88177 25.40412 -61.22094 27.69238 25.40412 -76.25320 - 27.69240 -142.59483 -76.25320 - 6.30318 -142.59483 -91.30575 + 27.69240 -142.59484 -76.25320 + 6.30318 -142.59484 -91.30575 6.30318 -142.59434 -91.30575 - -15.08597 -142.59434 -106.36374 - -15.08597 -142.59399 -106.36374 + -15.08597 -142.59434 -106.36373 + -15.08597 -142.59399 -106.36373 -36.45152 -142.27585 -121.40870 -36.45152 -142.27571 -121.40870 - -43.55253 -141.76090 -126.41761 - -43.55253 -141.76089 -126.41761 - -50.62720 -141.22180 -131.42234 - -50.62720 -141.22175 -131.42234 - -71.68098 -139.46018 -146.40469 - -71.68136 -139.45002 -146.40469 + -43.55253 -141.76090 -126.41760 + -43.55253 -141.76089 -126.41760 + -50.62720 -141.22180 -131.42233 + -50.62720 -141.22175 -131.42233 + -71.68098 -139.46018 -146.40468 + -71.68136 -139.45002 -146.40468 -92.45327 -137.47388 -161.32517 -92.45289 -137.46386 -161.32517 -112.91094 -135.27541 -176.16587 -112.91094 -135.27566 -176.16587 - -133.02495 -132.87665 -190.90912 - -133.02495 -132.87704 -190.90912 + -133.02495 -132.87665 -190.90911 + -133.02495 -132.87704 -190.90911 -152.76347 -130.26886 -205.53755 -152.76346 -130.26937 -205.53755 - -172.09522 -127.45315 -220.03414 - -172.09521 -127.45376 -220.03414 - -190.98908 -124.43041 -234.38219 - -190.98908 -124.43111 -234.38219 - -209.41405 -121.20137 -248.56539 - -209.41405 -121.20214 -248.56539 + -172.09522 -127.45315 -220.03413 + -172.09521 -127.45376 -220.03413 + -190.98908 -124.43041 -234.38218 + -190.98908 -124.43111 -234.38218 + -209.41405 -121.20137 -248.56538 + -209.41405 -121.20214 -248.56538 -227.33924 -117.76665 -262.56784 -227.33924 -117.76749 -262.56784 - -244.73383 -114.12676 -276.37408 - -244.73383 -114.12765 -276.37408 - -261.56708 -110.28212 -289.96907 - -261.56708 -110.28306 -289.96907 + -244.73383 -114.12675 -276.37407 + -244.73383 -114.12765 -276.37407 + -261.56708 -110.28212 -289.96906 + -261.56708 -110.28306 -289.96906 -277.80830 -106.23310 -303.33830 -277.80830 -106.23409 -303.33830 - -293.42686 -101.98002 -316.46775 - -293.42687 -102.05122 -316.46775 - -308.69339 -96.38316 -329.67065 - -308.69339 -96.52749 -329.67065 - -323.09666 -90.68469 -342.59329 - -323.09666 -90.83340 -342.59329 - -336.61048 -84.81610 -355.22258 - -336.61048 -84.96916 -355.22258 - -349.20869 -78.77757 -367.54625 - -349.20869 -78.93499 -367.54625 - -360.86516 -72.56928 -379.55288 - -360.86517 -72.73104 -379.55288 - -371.55380 -66.19138 -391.23186 - -371.55380 -66.35748 -391.23186 - -381.24851 -59.64401 -402.57351 - -381.24851 -59.81438 -402.57351 - -389.92364 -52.93263 -413.56901 - -389.92364 -53.10723 -413.56901 - -397.55368 -46.05373 -424.21049 - -397.55368 -46.23265 -424.21049 - -404.11256 -39.00327 -434.49102 - -404.11256 -39.18656 -434.49102 - -409.57391 -31.78156 -444.40466 - -409.57391 -31.96921 -444.40466 - -413.91140 -24.38884 -453.94643 - -413.91140 -24.58083 -453.94643 - -417.09874 -16.82532 -463.11241 - -417.09874 -16.92302 -463.11241 - -419.06587 -10.58730 -471.28464 - -419.06587 -10.58775 -471.28464 - -420.11480 -4.06775 -478.95656 - -420.11481 -4.06813 -478.95656 - -420.21921 2.63605 -484.20654 - -420.21921 2.63573 -484.20654 - -419.35276 9.52397 -484.74521 - -419.35277 9.52371 -484.74521 - -417.48919 16.59592 -482.01101 - -417.48919 16.59571 -482.01101 - -414.60219 23.85180 -478.46598 - -414.60219 23.85163 -478.46598 - -410.66550 31.29152 -474.59638 - -410.66550 31.29143 -474.59638 - -407.27122 36.60867 -471.69615 - -407.27122 36.60864 -471.69615 - -403.34071 42.01588 -468.63968 - -403.34071 42.01583 -468.63968 - -396.42402 50.21348 -463.76537 - -396.42402 50.21342 -463.76537 - -388.27415 58.45818 -458.54891 - -388.27415 58.45815 -458.54891 - -378.61634 63.12727 -452.72476 - -378.61634 63.12726 -452.72476 - -368.30852 67.59609 -446.54193 - -368.30852 67.59609 -446.54193 - -357.32777 71.86474 -440.01019 - -357.32777 71.86476 -440.01019 - -345.69778 75.93333 -433.13995 - -345.69778 75.93336 -433.13995 - -333.44738 79.80198 -425.94221 - -333.44738 79.80201 -425.94221 - -320.60682 83.47078 -418.42860 - -320.60682 83.47080 -418.42860 - -307.20685 86.93980 -410.61126 - -307.20685 86.93982 -410.61126 - -293.27849 90.20915 -402.50290 - -293.27849 90.20916 -402.50290 - -278.85286 93.27890 -394.11671 - -278.85286 93.27889 -394.11671 - -263.96115 96.14912 -385.46635 - -263.96115 96.14909 -385.46635 - -248.63459 98.81988 -376.56593 - -248.63459 98.81983 -376.56593 - -232.90443 101.29124 -367.42997 - -232.90443 101.29117 -367.42997 - -216.80194 103.56328 -358.07337 - -216.80194 103.56318 -358.07337 - -200.35837 105.63605 -348.51139 - -200.35837 105.63593 -348.51139 - -183.60499 107.50961 -338.75960 - -183.60499 107.50946 -338.75960 - -166.57308 109.18400 -328.83387 - -166.57308 109.18382 -328.83387 - -149.29389 110.65928 -318.75033 - -149.29389 110.65908 -318.75033 - -131.79870 111.93551 -308.52537 - -131.79870 111.93528 -308.52537 - -114.11875 113.01272 -298.17554 - -114.11875 113.01247 -298.17554 + -293.42686 -101.98002 -316.46774 + -293.42687 -102.05122 -316.46774 + -308.69339 -96.38316 -329.67064 + -308.69339 -96.52749 -329.67064 + -323.09666 -90.68469 -342.59328 + -323.09666 -90.83340 -342.59328 + -336.61048 -84.81610 -355.22257 + -336.61048 -84.96916 -355.22257 + -349.20869 -78.77757 -367.54624 + -349.20869 -78.93499 -367.54624 + -360.86517 -72.56928 -379.55286 + -360.86517 -72.73104 -379.55286 + -371.55380 -66.19138 -391.23185 + -371.55380 -66.35748 -391.23185 + -381.24851 -59.64401 -402.57349 + -381.24851 -59.81438 -402.57349 + -389.92364 -52.93263 -413.56899 + -389.92364 -53.10723 -413.56899 + -397.55368 -46.05373 -424.21048 + -397.55368 -46.23265 -424.21048 + -404.11256 -39.00327 -434.49101 + -404.11256 -39.18656 -434.49101 + -409.57391 -31.78156 -444.40464 + -409.57391 -31.96921 -444.40464 + -413.91140 -24.38884 -453.94642 + -413.91140 -24.58083 -453.94642 + -417.09874 -16.82532 -463.11240 + -417.09874 -16.92302 -463.11240 + -419.06587 -10.58730 -471.28462 + -419.06587 -10.58775 -471.28462 + -420.11480 -4.06775 -478.95655 + -420.11481 -4.06813 -478.95655 + -420.21921 2.63605 -484.20652 + -420.21921 2.63573 -484.20652 + -419.35276 9.52397 -484.74519 + -419.35277 9.52371 -484.74519 + -417.48919 16.59592 -482.01099 + -417.48919 16.59571 -482.01099 + -414.60219 23.85180 -478.46597 + -414.60219 23.85163 -478.46597 + -410.66550 31.29152 -474.59636 + -410.66550 31.29143 -474.59636 + -407.27122 36.60867 -471.69614 + -407.27122 36.60864 -471.69614 + -403.34071 42.01588 -468.63967 + -403.34071 42.01583 -468.63967 + -396.42402 50.21348 -463.76535 + -396.42402 50.21342 -463.76535 + -388.27415 58.45818 -458.54890 + -388.27416 58.45815 -458.54890 + -378.61634 63.12727 -452.72475 + -378.61634 63.12726 -452.72475 + -368.30852 67.59608 -446.54191 + -368.30852 67.59609 -446.54191 + -357.32777 71.86474 -440.01018 + -357.32777 71.86476 -440.01018 + -345.69778 75.93333 -433.13993 + -345.69778 75.93336 -433.13993 + -333.44738 79.80198 -425.94220 + -333.44738 79.80201 -425.94220 + -320.60682 83.47078 -418.42859 + -320.60682 83.47080 -418.42859 + -307.20686 86.93980 -410.61125 + -307.20686 86.93982 -410.61125 + -293.27849 90.20915 -402.50289 + -293.27849 90.20916 -402.50289 + -278.85286 93.27890 -394.11670 + -278.85286 93.27889 -394.11670 + -263.96115 96.14912 -385.46634 + -263.96115 96.14909 -385.46634 + -248.63459 98.81988 -376.56592 + -248.63459 98.81982 -376.56592 + -232.90444 101.29124 -367.42996 + -232.90444 101.29117 -367.42996 + -216.80194 103.56328 -358.07336 + -216.80194 103.56318 -358.07336 + -200.35837 105.63605 -348.51138 + -200.35837 105.63593 -348.51138 + -183.60499 107.50961 -338.75959 + -183.60499 107.50946 -338.75959 + -166.57308 109.18400 -328.83386 + -166.57308 109.18382 -328.83386 + -149.29390 110.65928 -318.75033 + -149.29390 110.65908 -318.75033 + -131.79870 111.93551 -308.52536 + -131.79870 111.93528 -308.52536 + -114.11875 113.01272 -298.17553 + -114.11875 113.01247 -298.17553 -96.28531 113.89096 -287.71760 -96.28531 113.89069 -287.71760 - -78.32961 114.57028 -277.16845 - -78.32961 114.56999 -277.16845 - -60.28291 115.05071 -266.54509 - -60.28291 115.05041 -266.54509 - -42.17644 115.33230 -255.86461 - -42.17644 115.33199 -255.86461 - -24.04145 115.41509 -245.14418 - -24.04145 115.41477 -245.14418 - -5.90915 115.29911 -234.40097 - -5.90915 115.29880 -234.40097 - 12.18923 114.98441 -223.65216 - 12.18923 114.98411 -223.65216 - 30.22247 114.47102 -212.91489 - 30.22247 114.47073 -212.91489 - 48.15935 113.75898 -202.20625 - 48.15935 113.75871 -202.20625 - 65.96868 112.84832 -191.54322 + -78.32961 114.57028 -277.16844 + -78.32961 114.56999 -277.16844 + -60.28291 115.05071 -266.54508 + -60.28291 115.05041 -266.54508 + -42.17645 115.33230 -255.86461 + -42.17645 115.33199 -255.86461 + -24.04145 115.41509 -245.14417 + -24.04145 115.41477 -245.14417 + -5.90915 115.29911 -234.40096 + -5.90915 115.29880 -234.40096 + 12.18923 114.98441 -223.65215 + 12.18923 114.98411 -223.65215 + 30.22247 114.47102 -212.91488 + 30.22247 114.47073 -212.91488 + 48.15935 113.75898 -202.20624 + 48.15935 113.75871 -202.20624 + 65.96867 112.84832 -191.54322 65.96867 112.84809 -191.54322 - 83.61790 111.72207 -180.94269 - 83.61790 111.72189 -180.94269 - 101.07053 110.34692 -170.42137 - 101.07053 110.34680 -170.42137 - 118.28739 108.72184 -159.99579 - 118.28739 108.72179 -159.99579 + 83.61789 111.72207 -180.94269 + 83.61789 111.72189 -180.94269 + 101.07053 110.34692 -170.42136 + 101.07053 110.34680 -170.42136 + 118.28739 108.72184 -159.99578 + 118.28739 108.72179 -159.99578 135.22920 106.84674 -149.68226 135.22920 106.84677 -149.68226 151.85666 104.72156 -139.49683 @@ -22718,33 +22850,33 @@ Displacements 194.80128 66.91775 -109.77138 204.01622 49.64092 -100.20291 204.01551 49.70843 -100.20291 - 210.48725 32.10736 -90.82938 - 210.48725 32.19495 -90.82938 - 214.15397 14.09332 -81.65696 - 214.15397 14.18356 -81.65696 - 214.92880 -4.52368 -72.68916 - 214.92880 -4.43048 -72.68916 - 212.71138 -23.81007 -63.92671 - 212.71138 -23.71369 -63.92671 + 210.48725 32.10736 -90.82937 + 210.48725 32.19495 -90.82937 + 214.15396 14.09332 -81.65695 + 214.15397 14.18356 -81.65695 + 214.92880 -4.52368 -72.68915 + 214.92880 -4.43048 -72.68915 + 212.71137 -23.81007 -63.92670 + 212.71138 -23.71369 -63.92670 207.39218 -43.81472 -55.36748 - 207.39219 -43.71503 -55.36748 + 207.39218 -43.71503 -55.36748 198.85530 -64.56980 -47.00637 198.85531 -64.46552 -47.00637 - 186.94164 -86.59224 -38.83522 - 186.94164 -86.48309 -38.83522 - 171.48177 -109.49279 -30.84259 + 186.94163 -86.59224 -38.83521 + 186.94164 -86.48309 -38.83521 + 171.48176 -109.49279 -30.84259 171.48177 -109.37987 -30.84259 152.34264 -133.19939 -23.01371 152.34264 -133.08285 -23.01371 129.39590 -157.72579 -15.33024 129.45672 -159.16388 -15.33024 - 102.66515 -178.19773 -7.77023 + 102.66514 -178.19773 -7.77023 102.66409 -181.21070 -7.77023 73.55672 -184.08538 -0.30820 - 73.43693 -184.11284 -0.30820 + 73.43693 -184.11283 -0.30820 45.48478 -166.52450 7.08344 - 45.54469 -165.12379 7.08344 - 22.15359 -128.11321 14.43115 + 45.54469 -165.12378 7.08344 + 22.15359 -128.11320 14.43115 22.15367 -128.32833 14.43115 6.01597 -73.04123 21.75709 6.01601 -73.34641 21.75709 @@ -23271,15 +23403,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 49.53967 131.63471 740.59906 56.47417 110 0 - + 49.53968 131.63471 740.59906 56.47417 110 0 - 49.55322 131.63471 739.01307 56.48771 110 0 - 216.53536 133.18366 747.78252 57.15802 110 29 - 216.54982 133.18366 746.33401 57.17248 110 29 - - 382.54398 134.73261 755.08820 57.84309 110 51 - - 382.55929 134.73261 753.75802 57.85840 110 51 - - 548.06388 136.28155 762.49856 58.52932 110 72 - - 548.08001 136.28155 761.27091 58.54544 110 72 - - 713.43721 137.83050 769.99919 59.21669 110 93 - + 382.54397 134.73261 755.08820 57.84309 110 51 - + 382.55928 134.73261 753.75802 57.85840 110 51 - + 548.06387 136.28155 762.49856 58.52932 110 72 - + 548.07999 136.28155 761.27091 58.54544 110 72 - + 713.43719 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23713,8 +23845,8 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 202.01012 78.58326 318.60499 27.17987 110 63 - - 202.01012 78.58326 317.87650 27.17987 110 64 - + 202.01011 78.58326 318.60499 27.17987 110 63 - + 202.01011 78.58326 317.87650 27.17987 110 64 - 34.83989 80.13221 326.36174 27.90539 110 11 - 34.83989 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -24056,187 +24188,187 @@ Displacements -43.35739 -131.67453 -124.95097 -49.93471 -131.41456 -129.91480 -49.93472 -131.41449 -129.91480 - -69.58044 -130.49307 -144.77505 - -69.58081 -130.48284 -144.77505 + -69.58044 -130.49307 -144.77504 + -69.58081 -130.48284 -144.77504 -89.07089 -129.34964 -159.57523 -89.07051 -129.33950 -159.57523 - -108.37327 -127.99565 -174.29854 - -108.37327 -127.99575 -174.29854 - -127.45876 -126.44284 -188.92830 + -108.37327 -127.99565 -174.29853 + -108.37327 -127.99575 -174.29853 + -127.45877 -126.44284 -188.92830 -127.45876 -126.44305 -188.92830 - -146.29160 -124.62740 -203.44805 - -146.29160 -124.62770 -203.44805 - -164.82951 -122.51011 -217.84153 - -164.82951 -122.51048 -217.84153 + -146.29160 -124.62740 -203.44804 + -146.29160 -124.62770 -203.44804 + -164.82951 -122.51011 -217.84152 + -164.82951 -122.51048 -217.84152 -183.02749 -120.09476 -232.09273 -183.02748 -120.09519 -232.09273 - -200.84112 -117.38553 -246.18596 - -200.84112 -117.38602 -246.18596 + -200.84112 -117.38553 -246.18595 + -200.84112 -117.38602 -246.18595 -218.22667 -114.38689 -260.10583 -218.22667 -114.38742 -260.10583 - -235.14106 -111.10356 -273.83735 - -235.14106 -111.10413 -273.83735 - -251.54195 -107.54050 -287.36591 - -251.54195 -107.54110 -287.36591 - -267.38777 -103.70283 -300.67735 - -267.38777 -103.70347 -300.67735 - -282.63771 -99.59586 -313.75801 - -282.63772 -99.65579 -313.75801 + -235.14106 -111.10356 -273.83734 + -235.14106 -111.10413 -273.83734 + -251.54195 -107.54050 -287.36590 + -251.54195 -107.54110 -287.36590 + -267.38777 -103.70283 -300.67734 + -267.38777 -103.70347 -300.67734 + -282.63771 -99.59586 -313.75800 + -282.63772 -99.65579 -313.75800 -297.60348 -94.86943 -326.92053 -297.60348 -94.99215 -326.92053 - -311.83467 -89.98393 -339.81286 - -311.83467 -90.11217 -339.81286 - -325.29824 -84.88525 -352.42206 - -325.29824 -85.01891 -352.42206 - -337.96165 -79.57646 -364.73590 - -337.96165 -79.71548 -364.73590 - -349.79278 -74.06065 -376.74290 - -349.79278 -74.20493 -376.74290 - -360.76001 -68.34082 -388.43231 - -360.76001 -68.49029 -388.43231 - -370.83219 -62.41995 -399.79417 - -370.83219 -62.57446 -399.79417 - -379.97899 -56.30623 -410.81934 - -379.97899 -56.46569 -410.81934 - -388.17069 -49.99886 -421.49952 - -388.17069 -50.16329 -421.49952 - -395.37737 -43.49635 -431.82726 - -395.37738 -43.66573 -431.82726 - -401.56924 -36.80149 -441.79603 - -401.56924 -36.97574 -441.79603 - -406.71689 -29.91682 -451.40020 - -406.71689 -30.09589 -451.40020 - -410.79130 -22.84474 -460.63510 - -410.79130 -22.93596 -460.63510 - -413.60239 -16.39554 -468.87648 - -413.60239 -16.39584 -468.87648 - -415.46656 -9.67895 -476.62183 - -415.46657 -9.67920 -476.62183 - -416.35878 -2.78841 -481.94887 - -416.35879 -2.78862 -481.94887 - -416.25437 4.27380 -482.56763 - -416.25437 4.27363 -482.56763 - -415.12893 11.50571 -479.91595 - -415.12893 11.50557 -479.91595 - -412.95836 18.90563 -476.45530 - -412.95836 18.90552 -476.45530 - -409.71875 26.47216 -472.67136 - -409.71875 26.47209 -472.67136 - -406.80236 31.86724 -469.83156 - -406.80236 31.86721 -469.83156 - -403.34241 37.34310 -466.83571 - -403.34241 37.34305 -466.83571 - -397.11973 45.62588 -462.05226 - -397.11973 45.62580 -462.05226 - -389.65275 53.93393 -456.92607 - -389.65290 53.93768 -456.92607 - -380.68169 59.02816 -451.19520 - -380.68154 59.03185 -451.19520 - -370.95696 64.25392 -445.10370 - -370.95696 64.25372 -445.10370 - -360.44652 69.20735 -438.66079 - -360.44652 69.20713 -438.66079 - -349.18449 73.89446 -431.87643 - -349.18449 73.89422 -431.87643 - -337.20991 78.31781 -424.76128 - -337.20991 78.31755 -424.76128 - -324.56286 82.48026 -417.32670 - -324.56286 82.47998 -417.32670 - -311.28344 86.38492 -409.58465 - -311.28344 86.38461 -409.58465 - -297.41153 90.03503 -401.54772 - -297.41153 90.03471 -401.54772 - -282.98662 93.43396 -393.22905 - -282.98662 93.43362 -393.22905 - -268.04776 96.58510 -384.64229 - -268.04776 96.58475 -384.64229 - -252.63348 99.49184 -375.80161 - -252.63348 99.49148 -375.80161 - -236.78185 102.15753 -366.72160 - -236.78185 102.15715 -366.72160 - -220.53042 104.58541 -357.41728 - -220.53041 104.58502 -357.41728 - -203.91625 106.77862 -347.90404 - -203.91625 106.77822 -347.90404 - -186.97594 108.74017 -338.19763 - -186.97594 108.73976 -338.19763 + -311.83467 -89.98393 -339.81285 + -311.83467 -90.11217 -339.81285 + -325.29825 -84.88525 -352.42205 + -325.29825 -85.01891 -352.42205 + -337.96165 -79.57646 -364.73589 + -337.96165 -79.71548 -364.73589 + -349.79278 -74.06065 -376.74289 + -349.79278 -74.20493 -376.74289 + -360.76001 -68.34082 -388.43230 + -360.76001 -68.49029 -388.43230 + -370.83219 -62.41994 -399.79416 + -370.83219 -62.57446 -399.79416 + -379.97899 -56.30623 -410.81933 + -379.97899 -56.46569 -410.81933 + -388.17069 -49.99886 -421.49950 + -388.17069 -50.16329 -421.49950 + -395.37737 -43.49635 -431.82725 + -395.37738 -43.66573 -431.82725 + -401.56924 -36.80149 -441.79601 + -401.56924 -36.97574 -441.79601 + -406.71689 -29.91682 -451.40019 + -406.71689 -30.09589 -451.40019 + -410.79130 -22.84474 -460.63509 + -410.79130 -22.93596 -460.63509 + -413.60239 -16.39554 -468.87646 + -413.60239 -16.39584 -468.87646 + -415.46656 -9.67895 -476.62181 + -415.46657 -9.67920 -476.62181 + -416.35878 -2.78841 -481.94886 + -416.35879 -2.78862 -481.94886 + -416.25437 4.27380 -482.56762 + -416.25437 4.27363 -482.56762 + -415.12893 11.50571 -479.91594 + -415.12893 11.50557 -479.91594 + -412.95836 18.90563 -476.45528 + -412.95836 18.90552 -476.45528 + -409.71875 26.47216 -472.67134 + -409.71876 26.47209 -472.67134 + -406.80236 31.86724 -469.83155 + -406.80236 31.86721 -469.83155 + -403.34241 37.34310 -466.83569 + -403.34241 37.34305 -466.83569 + -397.11973 45.62588 -462.05224 + -397.11973 45.62580 -462.05224 + -389.65275 53.93393 -456.92605 + -389.65290 53.93768 -456.92605 + -380.68169 59.02816 -451.19518 + -380.68154 59.03185 -451.19518 + -370.95696 64.25392 -445.10368 + -370.95696 64.25372 -445.10368 + -360.44652 69.20735 -438.66077 + -360.44652 69.20713 -438.66077 + -349.18449 73.89446 -431.87642 + -349.18449 73.89422 -431.87642 + -337.20991 78.31781 -424.76127 + -337.20991 78.31755 -424.76127 + -324.56286 82.48026 -417.32669 + -324.56286 82.47998 -417.32669 + -311.28344 86.38491 -409.58464 + -311.28344 86.38461 -409.58464 + -297.41153 90.03503 -401.54771 + -297.41153 90.03471 -401.54771 + -282.98663 93.43395 -393.22903 + -282.98663 93.43362 -393.22903 + -268.04776 96.58510 -384.64228 + -268.04776 96.58475 -384.64228 + -252.63348 99.49184 -375.80160 + -252.63348 99.49148 -375.80160 + -236.78185 102.15753 -366.72159 + -236.78185 102.15715 -366.72159 + -220.53042 104.58541 -357.41727 + -220.53042 104.58502 -357.41727 + -203.91625 106.77862 -347.90403 + -203.91625 106.77822 -347.90403 + -186.97594 108.74017 -338.19762 + -186.97594 108.73976 -338.19762 -169.74564 110.47291 -328.31408 -169.74564 110.47249 -328.31408 - -152.26106 111.97952 -318.26973 - -152.26106 111.97908 -318.26973 + -152.26106 111.97952 -318.26972 + -152.26106 111.97908 -318.26972 -134.55752 113.26249 -308.08113 -134.55752 113.26205 -308.08113 -116.66995 114.32416 -297.76506 -116.66995 114.32371 -297.76506 -98.63294 115.16666 -287.33846 -98.63294 115.16620 -287.33846 - -80.48076 115.79194 -276.81842 - -80.48076 115.79149 -276.81842 - -62.24740 116.20180 -266.22213 - -62.24740 116.20134 -266.22213 - -43.96656 116.39784 -255.56687 - -43.96656 116.39738 -255.56687 - -25.67172 116.38151 -244.86995 - -25.67172 116.38107 -244.86995 - -7.39614 116.15413 -234.14871 - -7.39614 116.15370 -234.14871 + -80.48077 115.79194 -276.81841 + -80.48077 115.79149 -276.81841 + -62.24740 116.20180 -266.22212 + -62.24740 116.20134 -266.22212 + -43.96656 116.39784 -255.56686 + -43.96656 116.39738 -255.56686 + -25.67173 116.38151 -244.86994 + -25.67173 116.38107 -244.86994 + -7.39615 116.15413 -234.14870 + -7.39615 116.15370 -234.14870 10.82711 115.71688 -223.42045 10.82711 115.71646 -223.42045 28.96516 115.07080 -212.70245 28.96516 115.07042 -212.70245 - 46.98527 114.21688 -202.01188 - 46.98527 114.21653 -202.01188 - 64.85485 113.15600 -191.36582 - 64.85484 113.15568 -191.36582 - 82.54011 111.87196 -180.78119 - 82.54011 111.87170 -180.78119 + 46.98526 114.21688 -202.01188 + 46.98526 114.21653 -202.01188 + 64.85484 113.15600 -191.36581 + 64.85484 113.15568 -191.36581 + 82.54011 111.87196 -180.78118 + 82.54011 111.87170 -180.78118 100.00344 110.33223 -170.27474 100.00344 110.33202 -170.27474 - 117.20465 108.53652 -159.86303 - 117.20465 108.53638 -159.86303 - 134.10356 106.48547 -149.56234 - 134.10356 106.48542 -149.56234 - 150.66012 104.17984 -139.38868 - 150.66011 104.17989 -139.38868 + 117.20465 108.53652 -159.86302 + 117.20465 108.53638 -159.86302 + 134.10356 106.48547 -149.56233 + 134.10356 106.48542 -149.56233 + 150.66011 104.17984 -139.38867 + 150.66011 104.17989 -139.38867 166.83443 101.62126 -129.35773 166.83443 101.66415 -129.35773 181.46965 83.52329 -119.43789 181.46965 83.60768 -119.43789 - 193.33028 66.45047 -109.69142 - 193.33096 66.51530 -109.69142 - 202.49179 49.35347 -100.12966 - 202.49108 49.41990 -100.12966 - 208.92479 31.91072 -90.76137 + 193.33028 66.45047 -109.69141 + 193.33096 66.51530 -109.69141 + 202.49179 49.35347 -100.12965 + 202.49108 49.41990 -100.12965 + 208.92478 31.91072 -90.76137 208.92478 31.99730 -90.76137 212.56645 13.97159 -81.59271 212.56645 14.06087 -81.59271 213.32728 -4.57913 -72.62715 213.32728 -4.48687 -72.62715 211.10612 -23.80050 -63.86541 - 211.10613 -23.70508 -63.86541 - 205.79384 -43.73400 -55.30536 - 205.79385 -43.63530 -55.30536 + 211.10612 -23.70508 -63.86541 + 205.79384 -43.73400 -55.30535 + 205.79385 -43.63530 -55.30535 197.27608 -64.40435 -46.94190 197.27609 -64.30115 -46.94190 - 185.39646 -86.32117 -38.76688 - 185.39646 -86.21319 -38.76688 - 169.98943 -109.08795 -30.76891 + 185.39646 -86.32117 -38.76687 + 185.39646 -86.21319 -38.76687 + 169.98942 -109.08795 -30.76891 169.98943 -108.97634 -30.76891 150.92693 -132.62561 -22.93326 - 150.92694 -132.51053 -22.93326 + 150.92693 -132.51053 -22.93326 128.08670 -156.94116 -15.24168 128.14752 -158.38088 -15.24168 101.49947 -177.15403 -7.67231 101.49841 -180.16883 -7.67231 72.57963 -182.72870 -0.19979 - 72.45975 -182.75555 -0.19979 + 72.45975 -182.75554 -0.19979 44.74276 -164.94234 7.20325 44.80276 -163.54018 7.20325 21.67100 -126.40578 14.56308 21.67107 -126.62167 14.56308 5.81490 -71.17569 21.90160 5.81484 -71.47582 21.90160 - -0.00011 0.17336 29.23375 + -0.00011 0.17336 29.23374 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24759,14 +24891,14 @@ Status character 32.27378 128.53682 634.34393 53.25659 110 0 - 32.93090 130.08576 642.98574 53.98212 110 0 - 32.66866 130.08576 641.03277 53.98212 110 0 - - 50.21227 131.63471 649.64833 54.70764 110 0 - - 50.21227 131.63471 647.89661 54.70764 110 0 - + 50.21228 131.63471 649.64833 54.70764 110 0 - + 50.21228 131.63471 647.89661 54.70764 110 0 - 217.50633 133.18366 656.48894 55.43317 110 33 - 217.50633 133.18366 654.90967 55.43317 110 33 - - 383.82803 134.73261 663.48133 56.15870 110 58 - - 383.82803 134.73261 662.05104 56.15870 110 58 - - 549.67020 136.28155 670.60422 56.88422 110 82 - - 549.67020 136.28155 669.30353 56.88422 110 82 - + 383.82802 134.73261 663.48133 56.15870 110 58 - + 383.82802 134.73261 662.05104 56.15870 110 58 - + 549.67019 136.28155 670.60422 56.88422 110 82 - + 549.67019 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -25201,8 +25333,8 @@ Status character 300.59039 75.48537 302.40039 25.72882 110 99 - 308.93514 77.03432 310.92777 26.45434 110 99 - 308.10767 77.03432 310.10030 26.45434 110 99 - - 199.80674 78.58326 318.60499 27.17987 110 63 - - 199.80674 78.58326 317.87650 27.17987 110 63 - + 199.80673 78.58326 318.60499 27.17987 110 63 - + 199.80673 78.58326 317.87650 27.17987 110 63 - 32.40076 80.13221 326.36174 27.90539 110 10 - 32.40076 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -25261,12 +25393,12 @@ CalculationStatus 18.80793 -30.77475 -3.39136 16.59675 19.19600 2 1 9 1.000 0 0 -23.92098 -32.88294 6.76983 16.24830 18.59902 2 3 9 1.000 0 0 -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 9 1.200 0 0 - -420.21204 -184.10265 -998.86477 77.20799 80.86198 3 0 9 1.000 0 0 - -420.21921 -184.11284 -484.74521 77.20408 80.85869 3 1 9 1.000 0 0 + -420.21204 -184.10264 -998.86457 77.20798 80.86198 3 0 9 1.000 0 0 + -420.21921 -184.11283 -484.74519 77.20408 80.85869 3 1 9 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 9 1.000 0 0 -417.74372 -153.60192 -181.75590 57.58640 63.64131 3 14 9 1.200 0 0 - -411.73182 -182.21712 -994.46291 76.02984 79.28254 4 0 9 1.000 0 0 - -416.35879 -182.75555 -482.56763 76.12714 79.41917 4 1 9 1.000 0 0 + -411.73182 -182.21711 -994.46271 76.02984 79.28254 4 0 9 1.000 0 0 + -416.35879 -182.75554 -482.56762 76.12714 79.41917 4 1 9 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 9 1.000 0 0 -407.02562 -137.77463 -178.01182 56.51282 62.10748 4 14 9 1.200 0 0 [END OF DATA] @@ -25340,9 +25472,9 @@ Force [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] MaximumMoment=-420.21921 -MaximumShearForce=-184.11284 +MaximumShearForce=-184.11283 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=77.20799 +MaximumPercentageMobilisedMoment=77.20798 MaximumPercentageMobilisedResistance=80.86198 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shi index 8220b79c..7607cd47 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44o.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44o.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44o.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shd index 118a35e5..62d588f3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:19 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44p.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44p.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,7 +1102,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16437,218 +16569,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00632 140.08544 - 0.20183 4.02871 111.43945 - 0.20207 4.03503 111.43945 - 1.11117 8.61175 82.79323 - 1.11117 8.61176 82.79323 - 2.75973 13.73791 54.14599 - 2.75973 13.73793 54.14599 - 5.22379 19.41788 25.49632 - 5.20523 19.91280 25.49632 + -0.00024 0.00632 140.08542 + 0.20183 4.02871 111.43943 + 0.20207 4.03503 111.43943 + 1.11117 8.61175 82.79321 + 1.11117 8.61176 82.79321 + 2.75973 13.73791 54.14598 + 2.75973 13.73793 54.14598 + 5.22379 19.41788 25.49631 + 5.20523 19.91280 25.49631 8.58732 24.58929 -3.15794 8.62444 24.58932 -3.15794 - 12.44456 25.90659 -31.81965 - 12.42600 25.41178 -31.81965 - 16.23777 25.41178 -60.49209 - 16.23777 25.41191 -60.49209 - 20.04955 25.41191 -89.17855 - 20.04955 25.41208 -89.17855 - 23.86136 25.41208 -117.88232 - 23.86136 25.41249 -117.88232 - 27.67323 25.41249 -146.60669 - 27.67324 -142.58708 -146.60669 - 6.28517 -142.58708 -175.35132 - 6.28518 -142.58688 -175.35132 - -15.10286 -142.58688 -204.10138 - -15.10286 -142.58675 -204.10138 - -36.46732 -142.26861 -232.83840 - -36.46732 -142.26856 -232.83840 - -43.56798 -141.75375 -242.41132 - -43.56798 -141.75375 -242.41132 - -50.64229 -141.21465 -251.98006 - -50.64229 -141.21465 -251.98006 - -71.69501 -139.45309 -280.65444 - -71.69530 -139.44522 -280.65444 - -92.46650 -137.46909 -309.26695 - -92.46620 -137.46131 -309.26695 - -112.92387 -135.27286 -337.79966 - -112.92386 -135.27308 -337.79966 - -133.03749 -132.87406 -366.23490 - -133.03749 -132.87435 -366.23490 - -152.77560 -130.26617 -394.55532 - -152.77560 -130.26653 -394.55532 - -172.10693 -127.45030 -422.74388 - -172.10692 -127.45071 -422.74388 - -191.00033 -124.42736 -450.78390 - -191.00033 -124.42782 -450.78390 - -209.42481 -121.19808 -478.65906 - -209.42481 -121.19859 -478.65906 - -227.34947 -117.76310 -506.35346 - -227.34947 -117.76364 -506.35346 - -244.74348 -114.12291 -533.85163 - -244.74348 -114.12349 -533.85163 - -261.57611 -110.27796 -561.13856 - -261.57611 -110.27858 -561.13856 - -277.81666 -106.22862 -588.19971 - -277.81666 -106.22926 -588.19971 - -293.43449 -101.97519 -615.02108 - -293.43450 -102.04613 -615.02108 - -308.70024 -96.37807 -642.26696 - -308.70024 -96.52224 -642.26696 - -323.10270 -90.67945 -669.23257 - -323.10270 -90.82799 -669.23257 - -336.61568 -84.81069 -695.90483 - -336.61568 -84.96360 -695.90483 - -349.21304 -78.77200 -722.27148 - -349.21304 -78.92927 -722.27148 - -360.86864 -72.56356 -748.32106 - -360.86864 -72.72517 -748.32106 - -371.55637 -66.18551 -774.04301 - -371.55637 -66.35147 -774.04301 - -381.25015 -59.63800 -799.42761 - -381.25015 -59.80823 -799.42761 - -389.92433 -52.92648 -824.46607 - -389.92433 -53.10095 -824.46607 - -397.55341 -46.04745 -849.15050 - -397.55341 -46.22626 -849.15050 - -404.11130 -38.99688 -873.47399 - -404.11130 -39.18007 -873.47399 - -409.57165 -31.77507 -897.43058 - -409.57165 -31.96263 -897.43058 - -413.90814 -24.38227 -921.01532 - -413.90814 -24.57420 -921.01532 - -417.09446 -16.81869 -944.22426 - -417.09446 -16.91632 -944.22426 - -419.06063 -10.58060 -965.43638 - -419.06063 -10.58101 -965.43638 - -420.10860 -4.06101 -985.57618 - -420.10860 -4.06138 -985.57618 - -420.21204 2.64280 -998.86477 - -420.21204 2.64245 -998.86477 - -419.34463 9.53070 -998.54995 - -419.34463 9.53038 -998.54995 - -417.48010 16.60260 -988.69350 - -417.48010 16.60231 -988.69350 - -414.59216 23.85840 -976.79125 - -414.59216 23.85814 -976.79125 - -410.65454 31.29802 -964.56444 - -410.65454 31.29786 -964.56444 - -407.25962 36.61510 -955.81416 - -407.25962 36.61503 -955.81416 - -403.32847 42.02227 -946.90765 - -403.32847 42.02212 -946.90765 - -396.41083 50.21977 -933.25828 - -396.41083 50.21954 -933.25828 - -388.26005 58.46430 -919.26678 - -388.26005 58.46408 -919.26678 - -378.60130 63.13321 -904.24974 - -378.60130 63.13300 -904.24974 - -368.29258 67.60182 -888.87403 - -368.29258 67.60162 -888.87403 - -357.31096 71.87027 -873.14943 - -357.31096 71.87008 -873.14943 - -345.68013 75.93866 -857.08634 - -345.68013 75.93849 -857.08634 - -333.42893 79.80711 -840.69578 - -333.42893 79.80695 -840.69578 - -320.58759 83.47572 -823.98936 - -320.58759 83.47556 -823.98936 - -307.18688 86.94457 -806.97923 - -307.18688 86.94442 -806.97923 - -293.25780 90.21375 -789.67810 - -293.25780 90.21360 -789.67810 - -278.83147 93.28334 -772.09915 - -278.83147 93.28319 -772.09915 - -263.93908 96.15342 -754.25606 - -263.93908 96.15327 -754.25606 - -248.61186 98.82406 -736.16292 - -248.61186 98.82391 -736.16292 - -232.88106 101.29533 -717.83427 - -232.88106 101.29518 -717.83427 - -216.77794 103.56729 -699.28501 - -216.77794 103.56713 -699.28501 - -200.33375 105.64000 -680.53038 - -200.33375 105.63984 -680.53038 - -183.57976 107.51351 -661.58596 - -183.57976 107.51335 -661.58596 - -166.54723 109.18789 -642.46763 - -166.54723 109.18772 -642.46763 - -149.26744 110.66318 -623.19152 - -149.26744 110.66300 -623.19152 - -131.77163 111.93942 -603.77401 - -131.77163 111.93924 -603.77401 - -114.09106 113.01668 -584.23166 - -114.09106 113.01649 -584.23166 - -96.25698 113.89498 -564.58122 - -96.25698 113.89479 -564.58122 - -78.30064 114.57438 -544.83960 - -78.30064 114.57419 -544.83960 - -60.25328 115.05491 -525.02379 - -60.25328 115.05472 -525.02379 - -42.14614 115.33661 -505.15090 - -42.14614 115.33642 -505.15090 - -24.01044 115.41952 -485.23808 - -24.01044 115.41934 -485.23808 - -5.87742 115.30368 -465.30252 - -5.87743 115.30351 -465.30252 - 12.22169 114.98912 -445.36138 - 12.22169 114.98895 -445.36138 - 30.25569 114.47587 -425.43181 - 30.25569 114.47572 -425.43181 - 48.19336 113.76397 -405.53090 - 48.19336 113.76384 -405.53090 - 66.00349 112.85344 -385.67565 - 66.00349 112.85334 -385.67565 - 83.65354 111.72732 -365.88292 - 83.65353 111.72724 -365.88292 - 101.10701 110.35227 -346.16943 - 101.10701 110.35223 -346.16943 - 118.32473 108.72728 -326.55172 - 118.32473 108.72728 -326.55172 - 135.26740 106.85222 -307.04609 - 135.26740 106.85227 -307.04609 - 151.89573 104.72706 -287.66861 - 151.89573 104.72716 -287.66861 - 168.17047 102.35253 -268.43501 - 168.17047 102.39603 -268.43501 - 182.90638 84.07354 -249.26976 - 182.90637 84.15896 -249.26976 - 194.84215 66.85673 -230.27924 - 194.84276 66.92411 -230.27924 - 204.05871 49.64728 -211.47489 - 204.05808 49.71580 -211.47489 - 210.53099 32.11472 -192.86550 - 210.53099 32.20123 -192.86550 - 214.19870 14.09961 -174.45728 - 214.19870 14.18877 -174.45728 - 214.97435 -4.51847 -156.25372 - 214.97435 -4.42630 -156.25372 - 212.75759 -23.80589 -138.25555 - 212.75759 -23.71048 -138.25555 - 207.43890 -43.81151 -120.46065 - 207.43890 -43.71269 -120.46065 - 198.90239 -64.56745 -102.86391 - 198.90239 -64.46394 -102.86391 - 186.98897 -86.59066 -85.45717 - 186.98897 -86.48216 -85.45717 - 171.52924 -109.49187 -68.22901 - 171.52924 -109.37949 -68.22901 - 152.39017 -133.19901 -51.16463 - 152.39018 -133.08290 -51.16463 - 129.44342 -157.72584 -34.24571 - 129.50347 -159.14456 -34.24571 - 102.71589 -178.16033 -17.45031 - 102.71543 -181.14920 -17.45031 - 73.61621 -184.07153 -0.75292 - 73.49695 -184.10265 -0.75292 - 45.53763 -166.61526 15.87401 - 45.59727 -165.22467 15.87401 - 22.18615 -128.25655 32.45697 - 22.18619 -128.47420 32.45697 - 6.02657 -73.15861 49.01813 - 6.02659 -73.46498 49.01813 - 0.00000 0.18253 65.57271 + 12.44456 25.90659 -31.81964 + 12.42600 25.41178 -31.81964 + 16.23777 25.41178 -60.49208 + 16.23777 25.41191 -60.49208 + 20.04955 25.41191 -89.17853 + 20.04955 25.41208 -89.17853 + 23.86136 25.41208 -117.88230 + 23.86136 25.41249 -117.88230 + 27.67323 25.41249 -146.60666 + 27.67324 -142.58708 -146.60666 + 6.28518 -142.58708 -175.35128 + 6.28518 -142.58688 -175.35128 + -15.10286 -142.58688 -204.10133 + -15.10285 -142.58675 -204.10133 + -36.46732 -142.26861 -232.83835 + -36.46732 -142.26856 -232.83835 + -43.56798 -141.75375 -242.41127 + -43.56798 -141.75375 -242.41127 + -50.64228 -141.21465 -251.98001 + -50.64228 -141.21465 -251.98001 + -71.69500 -139.45309 -280.65439 + -71.69530 -139.44522 -280.65439 + -92.46649 -137.46909 -309.26689 + -92.46620 -137.46131 -309.26689 + -112.92386 -135.27286 -337.79959 + -112.92386 -135.27308 -337.79959 + -133.03749 -132.87407 -366.23483 + -133.03749 -132.87435 -366.23483 + -152.77560 -130.26617 -394.55525 + -152.77560 -130.26653 -394.55525 + -172.10693 -127.45030 -422.74380 + -172.10692 -127.45071 -422.74380 + -191.00033 -124.42736 -450.78381 + -191.00033 -124.42782 -450.78381 + -209.42481 -121.19808 -478.65897 + -209.42481 -121.19859 -478.65897 + -227.34947 -117.76310 -506.35336 + -227.34947 -117.76364 -506.35336 + -244.74348 -114.12291 -533.85153 + -244.74348 -114.12350 -533.85153 + -261.57611 -110.27796 -561.13845 + -261.57611 -110.27858 -561.13845 + -277.81666 -106.22862 -588.19960 + -277.81665 -106.22926 -588.19960 + -293.43449 -101.97519 -615.02096 + -293.43450 -102.04613 -615.02096 + -308.70024 -96.37807 -642.26683 + -308.70024 -96.52224 -642.26683 + -323.10270 -90.67945 -669.23244 + -323.10270 -90.82799 -669.23244 + -336.61568 -84.81069 -695.90470 + -336.61568 -84.96360 -695.90470 + -349.21304 -78.77200 -722.27133 + -349.21304 -78.92927 -722.27133 + -360.86864 -72.56356 -748.32091 + -360.86864 -72.72517 -748.32091 + -371.55637 -66.18551 -774.04285 + -371.55637 -66.35147 -774.04285 + -381.25015 -59.63800 -799.42745 + -381.25015 -59.80823 -799.42745 + -389.92433 -52.92648 -824.46590 + -389.92433 -53.10095 -824.46590 + -397.55341 -46.04745 -849.15033 + -397.55341 -46.22626 -849.15033 + -404.11130 -38.99688 -873.47382 + -404.11130 -39.18007 -873.47382 + -409.57165 -31.77507 -897.43040 + -409.57165 -31.96263 -897.43040 + -413.90814 -24.38227 -921.01513 + -413.90814 -24.57420 -921.01513 + -417.09446 -16.81869 -944.22407 + -417.09446 -16.91632 -944.22407 + -419.06063 -10.58060 -965.43618 + -419.06063 -10.58102 -965.43618 + -420.10860 -4.06101 -985.57598 + -420.10860 -4.06138 -985.57598 + -420.21204 2.64280 -998.86457 + -420.21204 2.64245 -998.86457 + -419.34463 9.53070 -998.54974 + -419.34463 9.53038 -998.54974 + -417.48010 16.60260 -988.69330 + -417.48010 16.60231 -988.69330 + -414.59216 23.85840 -976.79106 + -414.59216 23.85814 -976.79106 + -410.65454 31.29802 -964.56424 + -410.65454 31.29786 -964.56424 + -407.25962 36.61510 -955.81397 + -407.25962 36.61502 -955.81397 + -403.32847 42.02227 -946.90746 + -403.32847 42.02211 -946.90746 + -396.41084 50.21976 -933.25809 + -396.41084 50.21954 -933.25809 + -388.26005 58.46430 -919.26660 + -388.26005 58.46408 -919.26660 + -378.60131 63.13321 -904.24956 + -378.60131 63.13299 -904.24956 + -368.29258 67.60182 -888.87386 + -368.29258 67.60162 -888.87386 + -357.31096 71.87027 -873.14926 + -357.31096 71.87008 -873.14926 + -345.68014 75.93866 -857.08617 + -345.68014 75.93849 -857.08617 + -333.42893 79.80711 -840.69562 + -333.42893 79.80695 -840.69562 + -320.58760 83.47572 -823.98920 + -320.58760 83.47556 -823.98920 + -307.18688 86.94457 -806.97907 + -307.18688 86.94441 -806.97907 + -293.25780 90.21375 -789.67794 + -293.25780 90.21360 -789.67794 + -278.83147 93.28334 -772.09900 + -278.83147 93.28319 -772.09900 + -263.93908 96.15342 -754.25591 + -263.93908 96.15327 -754.25591 + -248.61187 98.82406 -736.16278 + -248.61187 98.82391 -736.16278 + -232.88107 101.29533 -717.83414 + -232.88107 101.29518 -717.83414 + -216.77794 103.56729 -699.28487 + -216.77794 103.56713 -699.28487 + -200.33375 105.64000 -680.53025 + -200.33375 105.63983 -680.53025 + -183.57976 107.51351 -661.58583 + -183.57976 107.51334 -661.58583 + -166.54724 109.18789 -642.46751 + -166.54724 109.18771 -642.46751 + -149.26744 110.66318 -623.19140 + -149.26744 110.66300 -623.19140 + -131.77163 111.93942 -603.77389 + -131.77163 111.93924 -603.77389 + -114.09106 113.01668 -584.23155 + -114.09106 113.01649 -584.23155 + -96.25699 113.89498 -564.58111 + -96.25699 113.89479 -564.58111 + -78.30065 114.57438 -544.83949 + -78.30065 114.57419 -544.83949 + -60.25329 115.05491 -525.02369 + -60.25329 115.05472 -525.02369 + -42.14614 115.33661 -505.15080 + -42.14614 115.33642 -505.15080 + -24.01045 115.41952 -485.23799 + -24.01045 115.41934 -485.23799 + -5.87743 115.30368 -465.30242 + -5.87743 115.30351 -465.30242 + 12.22168 114.98912 -445.36129 + 12.22168 114.98896 -445.36129 + 30.25568 114.47587 -425.43173 + 30.25568 114.47572 -425.43173 + 48.19335 113.76397 -405.53082 + 48.19335 113.76384 -405.53082 + 66.00348 112.85344 -385.67557 + 66.00348 112.85334 -385.67557 + 83.65353 111.72732 -365.88285 + 83.65353 111.72724 -365.88285 + 101.10700 110.35227 -346.16936 + 101.10700 110.35223 -346.16936 + 118.32472 108.72728 -326.55165 + 118.32472 108.72728 -326.55165 + 135.26739 106.85222 -307.04603 + 135.26739 106.85227 -307.04603 + 151.89572 104.72705 -287.66855 + 151.89572 104.72716 -287.66855 + 168.17047 102.35253 -268.43495 + 168.17046 102.39603 -268.43495 + 182.90637 84.07354 -249.26970 + 182.90636 84.15896 -249.26970 + 194.84214 66.85673 -230.27919 + 194.84276 66.92411 -230.27919 + 204.05870 49.64728 -211.47484 + 204.05807 49.71580 -211.47484 + 210.53098 32.11472 -192.86546 + 210.53098 32.20123 -192.86546 + 214.19869 14.09961 -174.45724 + 214.19869 14.18877 -174.45724 + 214.97434 -4.51847 -156.25368 + 214.97435 -4.42630 -156.25368 + 212.75758 -23.80590 -138.25552 + 212.75758 -23.71048 -138.25552 + 207.43889 -43.81151 -120.46062 + 207.43889 -43.71269 -120.46062 + 198.90238 -64.56745 -102.86389 + 198.90238 -64.46394 -102.86389 + 186.98896 -86.59066 -85.45715 + 186.98896 -86.48216 -85.45715 + 171.52923 -109.49187 -68.22899 + 171.52924 -109.37949 -68.22899 + 152.39016 -133.19901 -51.16462 + 152.39017 -133.08290 -51.16462 + 129.44341 -157.72584 -34.24570 + 129.50346 -159.14456 -34.24570 + 102.71589 -178.16032 -17.45030 + 102.71542 -181.14920 -17.45030 + 73.61621 -184.07152 -0.75292 + 73.49694 -184.10264 -0.75292 + 45.53763 -166.61525 15.87401 + 45.59727 -165.22466 15.87401 + 22.18615 -128.25654 32.45697 + 22.18618 -128.47419 32.45697 + 6.02657 -73.15860 49.01813 + 6.02659 -73.46497 49.01813 + 0.00000 0.18253 65.57270 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16978,7 +17110,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 27.61109 0.00000 79.15458 26.18108 110 35 - - 25.09093 0.00000 91.92500 23.66092 110 27 - + 25.09094 0.00000 91.92500 23.66092 110 27 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17171,15 +17303,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 48.94497 131.63471 740.59906 56.47417 110 0 - - 48.95851 131.63471 739.01307 56.48771 110 0 - + 48.94500 131.63471 740.59906 56.47417 110 0 - + 48.95854 131.63471 739.01307 56.48771 110 0 - 215.89816 133.18366 747.78252 57.15802 110 29 - - 215.91261 133.18366 746.33401 57.17248 110 29 - - 382.41283 134.73261 755.08820 57.84309 110 51 - - 382.42815 134.73261 753.75802 57.85840 110 51 - - 548.71065 136.28155 762.49856 58.52932 110 72 - - 548.72677 136.28155 761.27091 58.54544 110 72 - - 714.94383 137.83050 769.99919 59.21669 110 93 - + 215.91262 133.18366 746.33401 57.17248 110 29 - + 382.41280 134.73261 755.08820 57.84309 110 51 - + 382.42811 134.73261 753.75802 57.85840 110 51 - + 548.71058 136.28155 762.49856 58.52932 110 72 - + 548.72670 136.28155 761.27091 58.54544 110 72 - + 714.94373 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17613,10 +17745,10 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 201.68294 78.58326 318.60499 27.17987 110 63 - - 201.68294 78.58326 317.87650 27.17987 110 63 - - 35.43460 80.13221 326.36174 27.90539 110 11 - - 35.43460 80.13221 325.71668 27.90539 110 11 - + 201.68287 78.58326 318.60499 27.17987 110 63 - + 201.68287 78.58326 317.87650 27.17987 110 63 - + 35.43456 80.13221 326.36174 27.90539 110 11 - + 35.43456 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -17925,218 +18057,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00010 0.00280 139.60043 - 0.18736 3.74377 111.15589 - 0.18747 3.74657 111.15589 - 1.00161 7.55655 82.71114 - 1.00161 7.55655 82.71114 - 2.41274 11.55048 54.26548 - 2.41274 11.55050 54.26548 + -0.00010 0.00280 139.60041 + 0.18736 3.74377 111.15587 + 0.18747 3.74657 111.15587 + 1.00161 7.55655 82.71113 + 1.00161 7.55655 82.71113 + 2.41274 11.55048 54.26547 + 2.41274 11.55050 54.26547 4.44846 15.82073 25.81769 4.42991 16.31563 25.81769 - 7.15742 19.39135 -2.63399 - 7.19454 19.39135 -2.63399 + 7.15742 19.39135 -2.63398 + 7.19454 19.39135 -2.63398 10.16186 20.01580 -31.09187 - 10.14331 19.52095 -31.09187 - 13.08399 19.69540 -59.55852 - 13.08399 19.69548 -59.55852 - 16.05411 19.91342 -88.03646 - 16.05411 19.91353 -88.03646 - 19.06024 20.17563 -116.52827 - 19.06023 20.17597 -116.52827 - 22.10909 20.48301 -145.03653 - 22.10910 -129.05159 -145.03653 - 2.77725 -128.69870 -173.56066 - 2.77725 -128.69856 -173.56066 - -16.49816 -128.29905 -202.08718 - -16.49816 -128.29894 -202.08718 - -35.71010 -127.85236 -230.59947 - -35.71009 -127.85231 -230.59947 - -42.09861 -127.68438 -240.09754 - -42.09861 -127.68438 -240.09754 - -48.47816 -127.49405 -249.59156 - -48.47816 -127.49402 -249.59156 - -67.55189 -126.78880 -278.04330 - -67.55218 -126.78087 -278.04330 - -86.50386 -125.87476 -306.43672 - -86.50356 -125.86690 -306.43672 - -105.30314 -124.76081 -334.75548 - -105.30313 -124.76091 -334.75548 - -123.92188 -123.45608 -362.98335 - -123.92188 -123.45623 -362.98335 - -142.32592 -121.89842 -391.10425 - -142.32592 -121.89862 -391.10425 - -160.47438 -120.04795 -419.10230 - -160.47438 -120.04819 -419.10230 - -178.32355 -117.90768 -446.96184 - -178.32355 -117.90795 -446.96184 - -195.83021 -115.48088 -474.66745 - -195.83021 -115.48119 -474.66745 - -212.95163 -112.77104 -502.20404 - -212.95163 -112.77137 -502.20404 - -229.64563 -109.78182 -529.55682 - -229.64563 -109.78218 -529.55682 - -245.87057 -106.51703 -556.71138 - -245.87057 -106.51741 -556.71138 - -261.58542 -102.98060 -583.65372 - -261.58542 -102.98100 -583.65372 - -276.74972 -99.17656 -610.37028 - -276.74972 -99.23475 -610.37028 - -291.66028 -94.57291 -637.52362 - -291.66028 -94.69242 -637.52362 - -305.85491 -89.80826 -664.41216 - -305.85491 -89.93329 -664.41216 - -319.30045 -84.82936 -691.02300 - -319.30045 -84.95986 -691.02300 - -331.96412 -79.63868 -717.34394 - -331.96412 -79.77458 -717.34394 - -343.81352 -74.23867 -743.36347 - -343.81352 -74.37991 -743.36347 - -354.81664 -68.63175 -769.07084 - -354.81664 -68.77827 -769.07084 - -364.94181 -62.82030 -794.45606 - -364.94181 -62.97196 -794.45606 - -374.15815 -56.81197 -819.50994 - -374.15815 -56.96869 -819.50994 - -382.43526 -50.60541 -844.22410 - -382.43526 -50.76724 -844.22410 - -389.74250 -44.19868 -868.59104 - -389.74250 -44.36561 -868.59104 - -396.04925 -37.59413 -892.60413 - -396.04925 -37.76609 -892.60413 - -401.32524 -30.79393 -916.25763 - -401.32524 -30.97087 -916.25763 - -405.54054 -23.80018 -939.54675 - -405.54053 -23.89037 -939.54675 - -408.50044 -17.52207 -960.84275 - -408.50044 -17.52234 -960.84275 - -410.53697 -10.96309 -981.07468 - -410.53697 -10.96334 -981.07468 - -411.62303 -4.21551 -994.46291 - -411.62303 -4.21574 -994.46291 - -411.73182 2.71848 -994.25445 - -411.73182 2.71827 -994.25445 - -410.83686 9.83688 -984.51033 - -410.83686 9.83668 -984.51033 - -408.91194 17.13784 -972.72560 - -408.91194 17.13765 -972.72560 - -405.93109 24.61970 -960.62076 - -405.93109 24.61958 -960.62076 - -403.20255 29.96384 -951.95811 - -403.20255 29.96378 -951.95811 - -399.93521 35.39548 -943.14078 - -399.93521 35.39536 -943.14078 - -394.00892 43.62403 -929.62754 - -394.00892 43.62384 -929.62754 - -386.84542 51.89180 -915.77425 - -386.84553 51.89429 -915.77425 - -378.19835 56.94637 -900.90330 - -378.19824 56.94885 -900.90330 - -368.80360 62.14206 -885.67407 - -368.80360 62.14185 -885.67407 - -358.62565 67.09146 -870.09548 - -358.62565 67.09123 -870.09548 - -347.69494 71.79706 -854.17715 - -347.69494 71.79682 -854.17715 - -336.04717 76.25903 -837.92946 - -336.04717 76.25878 -837.92946 - -323.71943 80.47779 -821.36342 - -323.71943 80.47753 -821.36342 - -310.74924 84.45402 -804.49073 - -310.74924 84.45375 -804.49073 - -297.17427 88.18862 -787.32365 - -297.17427 88.18834 -787.32365 - -283.03217 91.68265 -769.87506 - -283.03217 91.68236 -769.87506 - -268.36047 94.93733 -752.15835 - -268.36047 94.93702 -752.15835 - -253.19656 97.95398 -734.18741 - -253.19656 97.95367 -734.18741 - -237.57764 100.73403 -715.97662 - -237.57764 100.73371 -715.97662 - -221.54072 103.27897 -697.54076 - -221.54072 103.27865 -697.54076 - -205.12257 105.59036 -678.89503 - -205.12257 105.59003 -678.89503 - -188.35971 107.66976 -660.05498 - -188.35971 107.66943 -660.05498 - -171.28844 109.51878 -641.03649 - -171.28844 109.51844 -641.03649 - -153.94483 111.13901 -621.85573 - -153.94483 111.13867 -621.85573 - -136.36466 112.53203 -602.52914 - -136.36466 112.53168 -602.52914 - -118.58350 113.69941 -583.07336 - -118.58350 113.69907 -583.07336 - -100.63667 114.64270 -563.50523 - -100.63667 114.64235 -563.50523 - -82.55925 115.36339 -543.84177 - -82.55925 115.36305 -543.84177 - -64.38610 115.86297 -524.10010 - -64.38610 115.86264 -524.10010 - -46.15183 116.14287 -504.29742 - -46.15183 116.14254 -504.29742 - -27.89085 116.20446 -484.45102 - -27.89085 116.20414 -484.45102 - -9.63735 116.04910 -464.57820 - -9.63735 116.04879 -464.57820 - 8.57470 115.67808 -444.69624 - 8.57470 115.67779 -444.69624 - 26.71150 115.09269 -424.82239 - 26.71150 115.09242 -424.82239 - 44.73947 114.29414 -404.97385 - 44.73947 114.29389 -404.97385 - 62.62522 113.28364 -385.16769 - 62.62522 113.28342 -385.16769 - 80.33420 112.04535 -365.42084 - 80.33420 112.04516 -365.42084 - 97.82810 110.54708 -345.75010 - 97.82810 110.54692 -345.75010 - 115.06607 108.78891 -326.17202 - 115.06607 108.78879 -326.17202 - 132.00736 106.77183 -306.70294 - 132.00736 106.77176 -306.70294 - 148.61136 104.49692 -287.35890 - 148.61136 104.49690 -287.35890 - 164.83772 101.96606 -268.15564 - 164.83772 102.00845 -268.15564 - 179.53741 83.99339 -249.01770 - 179.53741 84.07688 -249.01770 - 191.48119 67.03234 -230.05127 - 191.48180 67.09801 -230.05127 - 200.74269 50.03602 -211.26779 - 200.74206 50.10302 -211.26779 - 207.29066 32.68077 -192.67611 - 207.29066 32.76594 -192.67611 - 211.05968 14.81386 -174.28250 - 211.05968 14.90182 -174.28250 - 211.95819 -3.67862 -156.09054 - 211.95819 -3.58754 -156.09054 - 209.88274 -22.85674 -138.10110 - 209.88274 -22.76233 -138.10110 - 204.72175 -42.76334 -120.31217 - 204.72175 -42.66546 -120.31217 - 196.35813 -63.42485 -102.71881 - 196.35814 -63.32224 -102.71881 - 184.63252 -85.35284 -85.31301 - 184.63252 -85.24522 -85.31301 - 169.37602 -108.15304 -68.08354 - 169.37602 -108.04155 -68.08354 - 150.45689 -131.74882 -51.01579 - 150.45689 -131.63361 -51.01579 - 127.74874 -156.14976 -34.09166 - 127.80879 -157.56942 -34.09166 - 101.28109 -176.44018 -17.28942 + 10.14331 19.52096 -31.09187 + 13.08399 19.69540 -59.55851 + 13.08399 19.69548 -59.55851 + 16.05411 19.91342 -88.03644 + 16.05411 19.91353 -88.03644 + 19.06024 20.17563 -116.52824 + 19.06023 20.17597 -116.52824 + 22.10909 20.48301 -145.03650 + 22.10910 -129.05159 -145.03650 + 2.77725 -128.69870 -173.56062 + 2.77725 -128.69856 -173.56062 + -16.49816 -128.29905 -202.08714 + -16.49816 -128.29894 -202.08714 + -35.71010 -127.85236 -230.59943 + -35.71009 -127.85231 -230.59943 + -42.09860 -127.68438 -240.09749 + -42.09860 -127.68438 -240.09749 + -48.47816 -127.49405 -249.59151 + -48.47816 -127.49402 -249.59151 + -67.55189 -126.78880 -278.04324 + -67.55218 -126.78087 -278.04324 + -86.50386 -125.87476 -306.43666 + -86.50356 -125.86690 -306.43666 + -105.30314 -124.76081 -334.75542 + -105.30313 -124.76091 -334.75542 + -123.92188 -123.45608 -362.98328 + -123.92188 -123.45623 -362.98328 + -142.32592 -121.89842 -391.10417 + -142.32592 -121.89862 -391.10417 + -160.47438 -120.04795 -419.10222 + -160.47438 -120.04819 -419.10222 + -178.32355 -117.90768 -446.96175 + -178.32355 -117.90795 -446.96175 + -195.83021 -115.48088 -474.66736 + -195.83021 -115.48119 -474.66736 + -212.95163 -112.77104 -502.20394 + -212.95163 -112.77137 -502.20394 + -229.64563 -109.78182 -529.55671 + -229.64563 -109.78218 -529.55671 + -245.87057 -106.51703 -556.71127 + -245.87057 -106.51741 -556.71127 + -261.58542 -102.98060 -583.65361 + -261.58542 -102.98100 -583.65361 + -276.74972 -99.17656 -610.37016 + -276.74972 -99.23475 -610.37016 + -291.66028 -94.57291 -637.52350 + -291.66028 -94.69242 -637.52350 + -305.85491 -89.80826 -664.41203 + -305.85491 -89.93329 -664.41203 + -319.30045 -84.82936 -691.02286 + -319.30045 -84.95986 -691.02286 + -331.96412 -79.63868 -717.34379 + -331.96412 -79.77458 -717.34379 + -343.81352 -74.23867 -743.36332 + -343.81352 -74.37991 -743.36332 + -354.81664 -68.63175 -769.07069 + -354.81664 -68.77827 -769.07069 + -364.94181 -62.82030 -794.45590 + -364.94181 -62.97196 -794.45590 + -374.15815 -56.81197 -819.50977 + -374.15815 -56.96869 -819.50977 + -382.43526 -50.60541 -844.22393 + -382.43526 -50.76724 -844.22393 + -389.74250 -44.19868 -868.59087 + -389.74250 -44.36561 -868.59087 + -396.04925 -37.59413 -892.60395 + -396.04925 -37.76609 -892.60395 + -401.32524 -30.79393 -916.25744 + -401.32524 -30.97087 -916.25744 + -405.54054 -23.80018 -939.54656 + -405.54053 -23.89037 -939.54656 + -408.50044 -17.52207 -960.84255 + -408.50044 -17.52234 -960.84255 + -410.53697 -10.96309 -981.07448 + -410.53698 -10.96334 -981.07448 + -411.62303 -4.21551 -994.46271 + -411.62303 -4.21574 -994.46271 + -411.73182 2.71848 -994.25424 + -411.73182 2.71827 -994.25424 + -410.83686 9.83688 -984.51013 + -410.83686 9.83668 -984.51013 + -408.91194 17.13784 -972.72541 + -408.91194 17.13765 -972.72541 + -405.93109 24.61970 -960.62056 + -405.93109 24.61957 -960.62056 + -403.20255 29.96384 -951.95792 + -403.20255 29.96378 -951.95792 + -399.93521 35.39548 -943.14059 + -399.93521 35.39536 -943.14059 + -394.00893 43.62403 -929.62736 + -394.00893 43.62384 -929.62736 + -386.84542 51.89180 -915.77407 + -386.84553 51.89429 -915.77407 + -378.19835 56.94637 -900.90312 + -378.19824 56.94885 -900.90312 + -368.80360 62.14206 -885.67390 + -368.80360 62.14184 -885.67390 + -358.62565 67.09146 -870.09531 + -358.62565 67.09123 -870.09531 + -347.69494 71.79706 -854.17699 + -347.69494 71.79682 -854.17699 + -336.04718 76.25903 -837.92929 + -336.04718 76.25878 -837.92929 + -323.71943 80.47779 -821.36326 + -323.71943 80.47752 -821.36326 + -310.74924 84.45402 -804.49057 + -310.74924 84.45375 -804.49057 + -297.17428 88.18862 -787.32350 + -297.17428 88.18834 -787.32350 + -283.03217 91.68265 -769.87491 + -283.03217 91.68236 -769.87491 + -268.36047 94.93732 -752.15820 + -268.36047 94.93702 -752.15820 + -253.19656 97.95397 -734.18727 + -253.19656 97.95366 -734.18727 + -237.57765 100.73402 -715.97648 + -237.57765 100.73371 -715.97648 + -221.54073 103.27897 -697.54063 + -221.54073 103.27865 -697.54063 + -205.12257 105.59036 -678.89490 + -205.12257 105.59003 -678.89490 + -188.35971 107.66976 -660.05485 + -188.35971 107.66943 -660.05485 + -171.28845 109.51878 -641.03637 + -171.28845 109.51844 -641.03637 + -153.94483 111.13901 -621.85561 + -153.94483 111.13866 -621.85561 + -136.36466 112.53203 -602.52902 + -136.36466 112.53168 -602.52902 + -118.58350 113.69941 -583.07324 + -118.58350 113.69906 -583.07324 + -100.63668 114.64269 -563.50513 + -100.63668 114.64235 -563.50513 + -82.55926 115.36339 -543.84167 + -82.55926 115.36305 -543.84167 + -64.38611 115.86297 -524.10000 + -64.38611 115.86264 -524.10000 + -46.15184 116.14286 -504.29732 + -46.15184 116.14254 -504.29732 + -27.89086 116.20446 -484.45093 + -27.89086 116.20414 -484.45093 + -9.63735 116.04909 -464.57811 + -9.63735 116.04879 -464.57811 + 8.57469 115.67808 -444.69615 + 8.57469 115.67780 -444.69615 + 26.71149 115.09269 -424.82231 + 26.71149 115.09242 -424.82231 + 44.73946 114.29414 -404.97377 + 44.73946 114.29389 -404.97377 + 62.62521 113.28364 -385.16761 + 62.62521 113.28342 -385.16761 + 80.33419 112.04535 -365.42077 + 80.33419 112.04516 -365.42077 + 97.82809 110.54708 -345.75003 + 97.82809 110.54692 -345.75003 + 115.06607 108.78891 -326.17195 + 115.06606 108.78879 -326.17195 + 132.00735 106.77183 -306.70288 + 132.00735 106.77176 -306.70288 + 148.61136 104.49692 -287.35884 + 148.61136 104.49691 -287.35884 + 164.83771 101.96606 -268.15559 + 164.83771 102.00845 -268.15559 + 179.53741 83.99339 -249.01765 + 179.53741 84.07688 -249.01765 + 191.48119 67.03234 -230.05122 + 191.48180 67.09801 -230.05122 + 200.74269 50.03602 -211.26774 + 200.74206 50.10302 -211.26774 + 207.29066 32.68077 -192.67607 + 207.29066 32.76594 -192.67607 + 211.05967 14.81386 -174.28246 + 211.05967 14.90182 -174.28246 + 211.95818 -3.67862 -156.09051 + 211.95818 -3.58753 -156.09051 + 209.88274 -22.85674 -138.10107 + 209.88274 -22.76233 -138.10107 + 204.72174 -42.76334 -120.31214 + 204.72174 -42.66546 -120.31214 + 196.35813 -63.42485 -102.71879 + 196.35813 -63.32224 -102.71879 + 184.63251 -85.35284 -85.31299 + 184.63251 -85.24522 -85.31299 + 169.37601 -108.15305 -68.08352 + 169.37602 -108.04155 -68.08352 + 150.45688 -131.74882 -51.01578 + 150.45688 -131.63361 -51.01578 + 127.74874 -156.14976 -34.09165 + 127.80878 -157.56942 -34.09165 + 101.28108 -176.44018 -17.28942 101.28062 -179.43004 -17.28942 - 72.46567 -182.18598 -0.58383 - 72.34637 -182.21712 -0.58383 - 44.69426 -164.63795 16.05241 - 44.75393 -163.24678 16.05241 - 21.65595 -126.26511 32.64548 - 21.65599 -126.48290 32.64548 + 72.46567 -182.18597 -0.58383 + 72.34636 -182.21711 -0.58383 + 44.69425 -164.63794 16.05241 + 44.75393 -163.24677 16.05241 + 21.65595 -126.26510 32.64547 + 21.65599 -126.48289 32.64547 5.81287 -71.13794 49.21725 - 5.81285 -71.44022 49.21725 - -0.00004 0.17506 65.78266 + 5.81285 -71.44021 49.21725 + -0.00004 0.17506 65.78265 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18465,8 +18597,8 @@ Status character 34.14843 0.00000 46.21367 4.77649 110 74 - 47.18935 0.00000 61.61823 6.36865 110 77 - 48.14629 0.00000 52.62146 6.36865 110 91 - - 10.43873 0.00000 65.77683 7.96082 110 16 - - 10.43873 0.00000 58.61717 7.96082 110 18 - + 10.43874 0.00000 65.77683 7.96082 110 16 - + 10.43874 0.00000 58.61717 7.96082 110 18 - 1.45556 0.00000 70.34061 9.55298 110 0 - 1.45556 0.00000 64.38983 9.55298 110 0 - 1.86715 0.00000 75.12146 11.14515 110 0 - @@ -18643,7 +18775,7 @@ Status character 35.85157 116.14524 594.02752 47.45238 110 0 - 36.28160 117.69418 603.10994 48.17791 110 0 - 35.89886 117.69418 596.74967 48.17791 110 0 - - 36.35263 119.24313 605.73631 48.90343 110 0 - + 36.35262 119.24313 605.73631 48.90343 110 0 - 35.95490 119.24313 600.50339 48.90343 110 0 - 36.43093 120.79208 609.41240 49.62896 110 0 - 36.05374 120.79208 605.02281 49.62896 110 0 - @@ -18652,21 +18784,21 @@ Status character 32.20948 123.88997 618.91941 51.08001 110 0 - 31.14337 123.88997 615.69414 51.08001 110 0 - 31.61254 125.43892 624.43929 51.80554 110 0 - - 31.35795 125.43892 621.62820 51.80554 110 0 - + 31.35794 125.43892 621.62820 51.80554 110 0 - 31.84449 126.98787 630.33398 52.53107 110 0 - 31.58349 126.98787 627.86220 52.53107 110 0 - - 32.08526 128.53682 636.53384 53.25659 110 0 - + 32.08525 128.53682 636.53384 53.25659 110 0 - 31.82165 128.53682 634.34393 53.25659 110 0 - 32.33636 130.08576 642.98574 53.98212 110 0 - 32.07413 130.08576 641.03277 53.98212 110 0 - - 48.86933 131.63471 649.64833 54.70764 110 0 - - 48.86933 131.63471 647.89661 54.70764 110 0 - - 215.95724 133.18366 656.48894 55.43317 110 33 - - 215.95724 133.18366 654.90967 55.43317 110 33 - - 382.61347 134.73261 663.48133 56.15870 110 58 - - 382.61347 134.73261 662.05104 56.15870 110 58 - - 549.05675 136.28155 670.60422 56.88422 110 82 - - 549.05675 136.28155 669.30353 56.88422 110 82 - + 48.86936 131.63471 649.64833 54.70764 110 0 - + 48.86936 131.63471 647.89661 54.70764 110 0 - + 215.95723 133.18366 656.48894 55.43317 110 33 - + 215.95723 133.18366 654.90967 55.43317 110 33 - + 382.61344 134.73261 663.48133 56.15870 110 58 - + 382.61344 134.73261 662.05104 56.15870 110 58 - + 549.05667 136.28155 670.60422 56.88422 110 82 - + 549.05667 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -19088,23 +19220,23 @@ Status character 260.17895 66.19168 261.81071 21.37566 110 99 - 257.52692 66.19168 259.15868 21.37566 110 99 - 266.41044 67.74063 267.95497 22.10118 110 99 - - 264.26422 67.74063 265.80876 22.10118 110 99 - + 264.26423 67.74063 265.80876 22.10118 110 99 - 273.04980 69.28958 274.53459 22.82671 110 99 - 271.27628 69.28958 272.76107 22.82671 110 99 - 279.97951 70.83853 281.43054 23.55224 110 99 - 278.48993 70.83853 279.94096 23.55224 110 99 - - 287.12294 72.38747 288.56453 24.27776 110 99 - + 287.12295 72.38747 288.56453 24.27776 110 99 - 285.85542 72.38747 287.29701 24.27776 110 99 - 294.42803 73.93642 295.88270 25.00329 110 99 - 293.33782 73.93642 294.79250 25.00329 110 99 - 301.85821 75.48537 303.34656 25.72882 110 99 - - 300.91204 75.48537 302.40039 25.72882 110 99 - - 309.38727 77.03432 310.92777 26.45434 110 99 - + 300.91205 75.48537 302.40039 25.72882 110 99 - + 309.38728 77.03432 310.92777 26.45434 110 99 - 308.55980 77.03432 310.10030 26.45434 110 99 - - 200.07409 78.58326 318.60499 27.17987 110 63 - - 200.07409 78.58326 317.87650 27.17987 110 63 - - 33.74371 80.13221 326.36174 27.90539 110 10 - - 33.74371 80.13221 325.71668 27.90539 110 10 - + 200.07403 78.58326 318.60499 27.17987 110 63 - + 200.07403 78.58326 317.87650 27.17987 110 63 - + 33.74368 80.13221 326.36174 27.90539 110 10 - + 33.74368 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -22543,7 +22675,7 @@ Displacements 1.11106 8.61128 43.60945 1.11106 8.61130 43.60945 2.75956 13.73745 28.65440 - 2.75956 13.73751 28.65440 + 2.75956 13.73750 28.65440 5.22355 19.41746 13.69692 5.20171 19.99998 13.69692 8.59665 24.67190 -1.26515 @@ -22557,155 +22689,155 @@ Displacements 23.88179 25.40312 -61.22094 23.88177 25.40412 -61.22094 27.69238 25.40412 -76.25320 - 27.69240 -142.59483 -76.25320 - 6.30318 -142.59483 -91.30575 + 27.69240 -142.59484 -76.25320 + 6.30318 -142.59484 -91.30575 6.30318 -142.59434 -91.30575 - -15.08597 -142.59434 -106.36374 - -15.08597 -142.59399 -106.36374 + -15.08597 -142.59434 -106.36373 + -15.08597 -142.59399 -106.36373 -36.45152 -142.27585 -121.40870 -36.45152 -142.27571 -121.40870 - -43.55253 -141.76090 -126.41761 - -43.55253 -141.76089 -126.41761 - -50.62720 -141.22180 -131.42234 - -50.62720 -141.22175 -131.42234 - -71.68098 -139.46018 -146.40469 - -71.68136 -139.45002 -146.40469 + -43.55253 -141.76090 -126.41760 + -43.55253 -141.76089 -126.41760 + -50.62720 -141.22180 -131.42233 + -50.62720 -141.22175 -131.42233 + -71.68098 -139.46018 -146.40468 + -71.68136 -139.45002 -146.40468 -92.45327 -137.47388 -161.32517 -92.45289 -137.46386 -161.32517 -112.91094 -135.27541 -176.16587 -112.91094 -135.27566 -176.16587 - -133.02495 -132.87665 -190.90912 - -133.02495 -132.87704 -190.90912 + -133.02495 -132.87665 -190.90911 + -133.02495 -132.87704 -190.90911 -152.76347 -130.26886 -205.53755 -152.76346 -130.26937 -205.53755 - -172.09522 -127.45315 -220.03414 - -172.09521 -127.45376 -220.03414 - -190.98908 -124.43041 -234.38219 - -190.98908 -124.43111 -234.38219 - -209.41405 -121.20137 -248.56539 - -209.41405 -121.20214 -248.56539 + -172.09522 -127.45315 -220.03413 + -172.09521 -127.45376 -220.03413 + -190.98908 -124.43041 -234.38218 + -190.98908 -124.43111 -234.38218 + -209.41405 -121.20137 -248.56538 + -209.41405 -121.20214 -248.56538 -227.33924 -117.76665 -262.56784 -227.33924 -117.76749 -262.56784 - -244.73383 -114.12676 -276.37408 - -244.73383 -114.12765 -276.37408 - -261.56708 -110.28212 -289.96907 - -261.56708 -110.28306 -289.96907 + -244.73383 -114.12675 -276.37407 + -244.73383 -114.12765 -276.37407 + -261.56708 -110.28212 -289.96906 + -261.56708 -110.28306 -289.96906 -277.80830 -106.23310 -303.33830 -277.80830 -106.23409 -303.33830 - -293.42686 -101.98002 -316.46775 - -293.42687 -102.05122 -316.46775 - -308.69339 -96.38316 -329.67065 - -308.69339 -96.52749 -329.67065 - -323.09666 -90.68469 -342.59329 - -323.09666 -90.83340 -342.59329 - -336.61048 -84.81610 -355.22258 - -336.61048 -84.96916 -355.22258 - -349.20869 -78.77757 -367.54625 - -349.20869 -78.93499 -367.54625 - -360.86516 -72.56928 -379.55288 - -360.86517 -72.73104 -379.55288 - -371.55380 -66.19138 -391.23186 - -371.55380 -66.35748 -391.23186 - -381.24851 -59.64401 -402.57351 - -381.24851 -59.81438 -402.57351 - -389.92364 -52.93263 -413.56901 - -389.92364 -53.10723 -413.56901 - -397.55368 -46.05373 -424.21049 - -397.55368 -46.23265 -424.21049 - -404.11256 -39.00327 -434.49102 - -404.11256 -39.18656 -434.49102 - -409.57391 -31.78156 -444.40466 - -409.57391 -31.96921 -444.40466 - -413.91140 -24.38884 -453.94643 - -413.91140 -24.58083 -453.94643 - -417.09874 -16.82532 -463.11241 - -417.09874 -16.92302 -463.11241 - -419.06587 -10.58730 -471.28464 - -419.06587 -10.58775 -471.28464 - -420.11480 -4.06775 -478.95656 - -420.11481 -4.06813 -478.95656 - -420.21921 2.63605 -484.20654 - -420.21921 2.63573 -484.20654 - -419.35276 9.52397 -484.74521 - -419.35277 9.52371 -484.74521 - -417.48919 16.59592 -482.01101 - -417.48919 16.59571 -482.01101 - -414.60219 23.85180 -478.46598 - -414.60219 23.85163 -478.46598 - -410.66550 31.29152 -474.59638 - -410.66550 31.29143 -474.59638 - -407.27122 36.60867 -471.69615 - -407.27122 36.60864 -471.69615 - -403.34071 42.01588 -468.63968 - -403.34071 42.01583 -468.63968 - -396.42402 50.21348 -463.76537 - -396.42402 50.21342 -463.76537 - -388.27415 58.45818 -458.54891 - -388.27415 58.45815 -458.54891 - -378.61634 63.12727 -452.72476 - -378.61634 63.12726 -452.72476 - -368.30852 67.59609 -446.54193 - -368.30852 67.59609 -446.54193 - -357.32777 71.86474 -440.01019 - -357.32777 71.86476 -440.01019 - -345.69778 75.93333 -433.13995 - -345.69778 75.93336 -433.13995 - -333.44738 79.80198 -425.94221 - -333.44738 79.80201 -425.94221 - -320.60682 83.47078 -418.42860 - -320.60682 83.47080 -418.42860 - -307.20685 86.93980 -410.61126 - -307.20685 86.93982 -410.61126 - -293.27849 90.20915 -402.50290 - -293.27849 90.20916 -402.50290 - -278.85286 93.27890 -394.11671 - -278.85286 93.27889 -394.11671 - -263.96115 96.14912 -385.46635 - -263.96115 96.14909 -385.46635 - -248.63459 98.81988 -376.56593 - -248.63459 98.81983 -376.56593 - -232.90443 101.29124 -367.42997 - -232.90443 101.29117 -367.42997 - -216.80194 103.56328 -358.07337 - -216.80194 103.56318 -358.07337 - -200.35837 105.63605 -348.51139 - -200.35837 105.63593 -348.51139 - -183.60499 107.50961 -338.75960 - -183.60499 107.50946 -338.75960 - -166.57308 109.18400 -328.83387 - -166.57308 109.18382 -328.83387 - -149.29389 110.65928 -318.75033 - -149.29389 110.65908 -318.75033 - -131.79870 111.93551 -308.52537 - -131.79870 111.93528 -308.52537 - -114.11875 113.01272 -298.17554 - -114.11875 113.01247 -298.17554 + -293.42686 -101.98002 -316.46774 + -293.42687 -102.05122 -316.46774 + -308.69339 -96.38316 -329.67064 + -308.69339 -96.52749 -329.67064 + -323.09666 -90.68469 -342.59328 + -323.09666 -90.83340 -342.59328 + -336.61048 -84.81610 -355.22257 + -336.61048 -84.96916 -355.22257 + -349.20869 -78.77757 -367.54624 + -349.20869 -78.93499 -367.54624 + -360.86517 -72.56928 -379.55286 + -360.86517 -72.73104 -379.55286 + -371.55380 -66.19138 -391.23185 + -371.55380 -66.35748 -391.23185 + -381.24851 -59.64401 -402.57349 + -381.24851 -59.81438 -402.57349 + -389.92364 -52.93263 -413.56899 + -389.92364 -53.10723 -413.56899 + -397.55368 -46.05373 -424.21048 + -397.55368 -46.23265 -424.21048 + -404.11256 -39.00327 -434.49101 + -404.11256 -39.18656 -434.49101 + -409.57391 -31.78156 -444.40464 + -409.57391 -31.96921 -444.40464 + -413.91140 -24.38884 -453.94642 + -413.91140 -24.58083 -453.94642 + -417.09874 -16.82532 -463.11240 + -417.09874 -16.92302 -463.11240 + -419.06587 -10.58730 -471.28462 + -419.06587 -10.58775 -471.28462 + -420.11480 -4.06775 -478.95655 + -420.11481 -4.06813 -478.95655 + -420.21921 2.63605 -484.20652 + -420.21921 2.63573 -484.20652 + -419.35276 9.52397 -484.74519 + -419.35277 9.52371 -484.74519 + -417.48919 16.59592 -482.01099 + -417.48919 16.59571 -482.01099 + -414.60219 23.85180 -478.46597 + -414.60219 23.85163 -478.46597 + -410.66550 31.29152 -474.59636 + -410.66550 31.29143 -474.59636 + -407.27122 36.60867 -471.69614 + -407.27122 36.60864 -471.69614 + -403.34071 42.01588 -468.63967 + -403.34071 42.01583 -468.63967 + -396.42402 50.21348 -463.76535 + -396.42402 50.21342 -463.76535 + -388.27415 58.45818 -458.54890 + -388.27416 58.45815 -458.54890 + -378.61634 63.12727 -452.72475 + -378.61634 63.12726 -452.72475 + -368.30852 67.59608 -446.54191 + -368.30852 67.59609 -446.54191 + -357.32777 71.86474 -440.01018 + -357.32777 71.86476 -440.01018 + -345.69778 75.93333 -433.13993 + -345.69778 75.93336 -433.13993 + -333.44738 79.80198 -425.94220 + -333.44738 79.80201 -425.94220 + -320.60682 83.47078 -418.42859 + -320.60682 83.47080 -418.42859 + -307.20686 86.93980 -410.61125 + -307.20686 86.93982 -410.61125 + -293.27849 90.20915 -402.50289 + -293.27849 90.20916 -402.50289 + -278.85286 93.27890 -394.11670 + -278.85286 93.27889 -394.11670 + -263.96115 96.14912 -385.46634 + -263.96115 96.14909 -385.46634 + -248.63459 98.81988 -376.56592 + -248.63459 98.81982 -376.56592 + -232.90444 101.29124 -367.42996 + -232.90444 101.29117 -367.42996 + -216.80194 103.56328 -358.07336 + -216.80194 103.56318 -358.07336 + -200.35837 105.63605 -348.51138 + -200.35837 105.63593 -348.51138 + -183.60499 107.50961 -338.75959 + -183.60499 107.50946 -338.75959 + -166.57308 109.18400 -328.83386 + -166.57308 109.18382 -328.83386 + -149.29390 110.65928 -318.75033 + -149.29390 110.65908 -318.75033 + -131.79870 111.93551 -308.52536 + -131.79870 111.93528 -308.52536 + -114.11875 113.01272 -298.17553 + -114.11875 113.01247 -298.17553 -96.28531 113.89096 -287.71760 -96.28531 113.89069 -287.71760 - -78.32961 114.57028 -277.16845 - -78.32961 114.56999 -277.16845 - -60.28291 115.05071 -266.54509 - -60.28291 115.05041 -266.54509 - -42.17644 115.33230 -255.86461 - -42.17644 115.33199 -255.86461 - -24.04145 115.41509 -245.14418 - -24.04145 115.41477 -245.14418 - -5.90915 115.29911 -234.40097 - -5.90915 115.29880 -234.40097 - 12.18923 114.98441 -223.65216 - 12.18923 114.98411 -223.65216 - 30.22247 114.47102 -212.91489 - 30.22247 114.47073 -212.91489 - 48.15935 113.75898 -202.20625 - 48.15935 113.75871 -202.20625 - 65.96868 112.84832 -191.54322 + -78.32961 114.57028 -277.16844 + -78.32961 114.56999 -277.16844 + -60.28291 115.05071 -266.54508 + -60.28291 115.05041 -266.54508 + -42.17645 115.33230 -255.86461 + -42.17645 115.33199 -255.86461 + -24.04145 115.41509 -245.14417 + -24.04145 115.41477 -245.14417 + -5.90915 115.29911 -234.40096 + -5.90915 115.29880 -234.40096 + 12.18923 114.98441 -223.65215 + 12.18923 114.98411 -223.65215 + 30.22247 114.47102 -212.91488 + 30.22247 114.47073 -212.91488 + 48.15935 113.75898 -202.20624 + 48.15935 113.75871 -202.20624 + 65.96867 112.84832 -191.54322 65.96867 112.84809 -191.54322 - 83.61790 111.72207 -180.94269 - 83.61790 111.72189 -180.94269 - 101.07053 110.34692 -170.42137 - 101.07053 110.34680 -170.42137 - 118.28739 108.72184 -159.99579 - 118.28739 108.72179 -159.99579 + 83.61789 111.72207 -180.94269 + 83.61789 111.72189 -180.94269 + 101.07053 110.34692 -170.42136 + 101.07053 110.34680 -170.42136 + 118.28739 108.72184 -159.99578 + 118.28739 108.72179 -159.99578 135.22920 106.84674 -149.68226 135.22920 106.84677 -149.68226 151.85666 104.72156 -139.49683 @@ -22718,33 +22850,33 @@ Displacements 194.80128 66.91775 -109.77138 204.01622 49.64092 -100.20291 204.01551 49.70843 -100.20291 - 210.48725 32.10736 -90.82938 - 210.48725 32.19495 -90.82938 - 214.15397 14.09332 -81.65696 - 214.15397 14.18356 -81.65696 - 214.92880 -4.52368 -72.68916 - 214.92880 -4.43048 -72.68916 - 212.71138 -23.81007 -63.92671 - 212.71138 -23.71369 -63.92671 + 210.48725 32.10736 -90.82937 + 210.48725 32.19495 -90.82937 + 214.15396 14.09332 -81.65695 + 214.15397 14.18356 -81.65695 + 214.92880 -4.52368 -72.68915 + 214.92880 -4.43048 -72.68915 + 212.71137 -23.81007 -63.92670 + 212.71138 -23.71369 -63.92670 207.39218 -43.81472 -55.36748 - 207.39219 -43.71503 -55.36748 + 207.39218 -43.71503 -55.36748 198.85530 -64.56980 -47.00637 198.85531 -64.46552 -47.00637 - 186.94164 -86.59224 -38.83522 - 186.94164 -86.48309 -38.83522 - 171.48177 -109.49279 -30.84259 + 186.94163 -86.59224 -38.83521 + 186.94164 -86.48309 -38.83521 + 171.48176 -109.49279 -30.84259 171.48177 -109.37987 -30.84259 152.34264 -133.19939 -23.01371 152.34264 -133.08285 -23.01371 129.39590 -157.72579 -15.33024 129.45672 -159.16388 -15.33024 - 102.66515 -178.19773 -7.77023 + 102.66514 -178.19773 -7.77023 102.66409 -181.21070 -7.77023 73.55672 -184.08538 -0.30820 - 73.43693 -184.11284 -0.30820 + 73.43693 -184.11283 -0.30820 45.48478 -166.52450 7.08344 - 45.54469 -165.12379 7.08344 - 22.15359 -128.11321 14.43115 + 45.54469 -165.12378 7.08344 + 22.15359 -128.11320 14.43115 22.15367 -128.32833 14.43115 6.01597 -73.04123 21.75709 6.01601 -73.34641 21.75709 @@ -23271,15 +23403,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 49.53967 131.63471 740.59906 56.47417 110 0 - + 49.53968 131.63471 740.59906 56.47417 110 0 - 49.55322 131.63471 739.01307 56.48771 110 0 - 216.53536 133.18366 747.78252 57.15802 110 29 - 216.54982 133.18366 746.33401 57.17248 110 29 - - 382.54398 134.73261 755.08820 57.84309 110 51 - - 382.55929 134.73261 753.75802 57.85840 110 51 - - 548.06388 136.28155 762.49856 58.52932 110 72 - - 548.08001 136.28155 761.27091 58.54544 110 72 - - 713.43721 137.83050 769.99919 59.21669 110 93 - + 382.54397 134.73261 755.08820 57.84309 110 51 - + 382.55928 134.73261 753.75802 57.85840 110 51 - + 548.06387 136.28155 762.49856 58.52932 110 72 - + 548.07999 136.28155 761.27091 58.54544 110 72 - + 713.43719 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23713,8 +23845,8 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 202.01012 78.58326 318.60499 27.17987 110 63 - - 202.01012 78.58326 317.87650 27.17987 110 64 - + 202.01011 78.58326 318.60499 27.17987 110 63 - + 202.01011 78.58326 317.87650 27.17987 110 64 - 34.83989 80.13221 326.36174 27.90539 110 11 - 34.83989 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -24056,187 +24188,187 @@ Displacements -43.35739 -131.67453 -124.95097 -49.93471 -131.41456 -129.91480 -49.93472 -131.41449 -129.91480 - -69.58044 -130.49307 -144.77505 - -69.58081 -130.48284 -144.77505 + -69.58044 -130.49307 -144.77504 + -69.58081 -130.48284 -144.77504 -89.07089 -129.34964 -159.57523 -89.07051 -129.33950 -159.57523 - -108.37327 -127.99565 -174.29854 - -108.37327 -127.99575 -174.29854 - -127.45876 -126.44284 -188.92830 + -108.37327 -127.99565 -174.29853 + -108.37327 -127.99575 -174.29853 + -127.45877 -126.44284 -188.92830 -127.45876 -126.44305 -188.92830 - -146.29160 -124.62740 -203.44805 - -146.29160 -124.62770 -203.44805 - -164.82951 -122.51011 -217.84153 - -164.82951 -122.51048 -217.84153 + -146.29160 -124.62740 -203.44804 + -146.29160 -124.62770 -203.44804 + -164.82951 -122.51011 -217.84152 + -164.82951 -122.51048 -217.84152 -183.02749 -120.09476 -232.09273 -183.02748 -120.09519 -232.09273 - -200.84112 -117.38553 -246.18596 - -200.84112 -117.38602 -246.18596 + -200.84112 -117.38553 -246.18595 + -200.84112 -117.38602 -246.18595 -218.22667 -114.38689 -260.10583 -218.22667 -114.38742 -260.10583 - -235.14106 -111.10356 -273.83735 - -235.14106 -111.10413 -273.83735 - -251.54195 -107.54050 -287.36591 - -251.54195 -107.54110 -287.36591 - -267.38777 -103.70283 -300.67735 - -267.38777 -103.70347 -300.67735 - -282.63771 -99.59586 -313.75801 - -282.63772 -99.65579 -313.75801 + -235.14106 -111.10356 -273.83734 + -235.14106 -111.10413 -273.83734 + -251.54195 -107.54050 -287.36590 + -251.54195 -107.54110 -287.36590 + -267.38777 -103.70283 -300.67734 + -267.38777 -103.70347 -300.67734 + -282.63771 -99.59586 -313.75800 + -282.63772 -99.65579 -313.75800 -297.60348 -94.86943 -326.92053 -297.60348 -94.99215 -326.92053 - -311.83467 -89.98393 -339.81286 - -311.83467 -90.11217 -339.81286 - -325.29824 -84.88525 -352.42206 - -325.29824 -85.01891 -352.42206 - -337.96165 -79.57646 -364.73590 - -337.96165 -79.71548 -364.73590 - -349.79278 -74.06065 -376.74290 - -349.79278 -74.20493 -376.74290 - -360.76001 -68.34082 -388.43231 - -360.76001 -68.49029 -388.43231 - -370.83219 -62.41995 -399.79417 - -370.83219 -62.57446 -399.79417 - -379.97899 -56.30623 -410.81934 - -379.97899 -56.46569 -410.81934 - -388.17069 -49.99886 -421.49952 - -388.17069 -50.16329 -421.49952 - -395.37737 -43.49635 -431.82726 - -395.37738 -43.66573 -431.82726 - -401.56924 -36.80149 -441.79603 - -401.56924 -36.97574 -441.79603 - -406.71689 -29.91682 -451.40020 - -406.71689 -30.09589 -451.40020 - -410.79130 -22.84474 -460.63510 - -410.79130 -22.93596 -460.63510 - -413.60239 -16.39554 -468.87648 - -413.60239 -16.39584 -468.87648 - -415.46656 -9.67895 -476.62183 - -415.46657 -9.67920 -476.62183 - -416.35878 -2.78841 -481.94887 - -416.35879 -2.78862 -481.94887 - -416.25437 4.27380 -482.56763 - -416.25437 4.27363 -482.56763 - -415.12893 11.50571 -479.91595 - -415.12893 11.50557 -479.91595 - -412.95836 18.90563 -476.45530 - -412.95836 18.90552 -476.45530 - -409.71875 26.47216 -472.67136 - -409.71875 26.47209 -472.67136 - -406.80236 31.86724 -469.83156 - -406.80236 31.86721 -469.83156 - -403.34241 37.34310 -466.83571 - -403.34241 37.34305 -466.83571 - -397.11973 45.62588 -462.05226 - -397.11973 45.62580 -462.05226 - -389.65275 53.93393 -456.92607 - -389.65290 53.93768 -456.92607 - -380.68169 59.02816 -451.19520 - -380.68154 59.03185 -451.19520 - -370.95696 64.25392 -445.10370 - -370.95696 64.25372 -445.10370 - -360.44652 69.20735 -438.66079 - -360.44652 69.20713 -438.66079 - -349.18449 73.89446 -431.87643 - -349.18449 73.89422 -431.87643 - -337.20991 78.31781 -424.76128 - -337.20991 78.31755 -424.76128 - -324.56286 82.48026 -417.32670 - -324.56286 82.47998 -417.32670 - -311.28344 86.38492 -409.58465 - -311.28344 86.38461 -409.58465 - -297.41153 90.03503 -401.54772 - -297.41153 90.03471 -401.54772 - -282.98662 93.43396 -393.22905 - -282.98662 93.43362 -393.22905 - -268.04776 96.58510 -384.64229 - -268.04776 96.58475 -384.64229 - -252.63348 99.49184 -375.80161 - -252.63348 99.49148 -375.80161 - -236.78185 102.15753 -366.72160 - -236.78185 102.15715 -366.72160 - -220.53042 104.58541 -357.41728 - -220.53041 104.58502 -357.41728 - -203.91625 106.77862 -347.90404 - -203.91625 106.77822 -347.90404 - -186.97594 108.74017 -338.19763 - -186.97594 108.73976 -338.19763 + -311.83467 -89.98393 -339.81285 + -311.83467 -90.11217 -339.81285 + -325.29825 -84.88525 -352.42205 + -325.29825 -85.01891 -352.42205 + -337.96165 -79.57646 -364.73589 + -337.96165 -79.71548 -364.73589 + -349.79278 -74.06065 -376.74289 + -349.79278 -74.20493 -376.74289 + -360.76001 -68.34082 -388.43230 + -360.76001 -68.49029 -388.43230 + -370.83219 -62.41994 -399.79416 + -370.83219 -62.57446 -399.79416 + -379.97899 -56.30623 -410.81933 + -379.97899 -56.46569 -410.81933 + -388.17069 -49.99886 -421.49950 + -388.17069 -50.16329 -421.49950 + -395.37737 -43.49635 -431.82725 + -395.37738 -43.66573 -431.82725 + -401.56924 -36.80149 -441.79601 + -401.56924 -36.97574 -441.79601 + -406.71689 -29.91682 -451.40019 + -406.71689 -30.09589 -451.40019 + -410.79130 -22.84474 -460.63509 + -410.79130 -22.93596 -460.63509 + -413.60239 -16.39554 -468.87646 + -413.60239 -16.39584 -468.87646 + -415.46656 -9.67895 -476.62181 + -415.46657 -9.67920 -476.62181 + -416.35878 -2.78841 -481.94886 + -416.35879 -2.78862 -481.94886 + -416.25437 4.27380 -482.56762 + -416.25437 4.27363 -482.56762 + -415.12893 11.50571 -479.91594 + -415.12893 11.50557 -479.91594 + -412.95836 18.90563 -476.45528 + -412.95836 18.90552 -476.45528 + -409.71875 26.47216 -472.67134 + -409.71876 26.47209 -472.67134 + -406.80236 31.86724 -469.83155 + -406.80236 31.86721 -469.83155 + -403.34241 37.34310 -466.83569 + -403.34241 37.34305 -466.83569 + -397.11973 45.62588 -462.05224 + -397.11973 45.62580 -462.05224 + -389.65275 53.93393 -456.92605 + -389.65290 53.93768 -456.92605 + -380.68169 59.02816 -451.19518 + -380.68154 59.03185 -451.19518 + -370.95696 64.25392 -445.10368 + -370.95696 64.25372 -445.10368 + -360.44652 69.20735 -438.66077 + -360.44652 69.20713 -438.66077 + -349.18449 73.89446 -431.87642 + -349.18449 73.89422 -431.87642 + -337.20991 78.31781 -424.76127 + -337.20991 78.31755 -424.76127 + -324.56286 82.48026 -417.32669 + -324.56286 82.47998 -417.32669 + -311.28344 86.38491 -409.58464 + -311.28344 86.38461 -409.58464 + -297.41153 90.03503 -401.54771 + -297.41153 90.03471 -401.54771 + -282.98663 93.43395 -393.22903 + -282.98663 93.43362 -393.22903 + -268.04776 96.58510 -384.64228 + -268.04776 96.58475 -384.64228 + -252.63348 99.49184 -375.80160 + -252.63348 99.49148 -375.80160 + -236.78185 102.15753 -366.72159 + -236.78185 102.15715 -366.72159 + -220.53042 104.58541 -357.41727 + -220.53042 104.58502 -357.41727 + -203.91625 106.77862 -347.90403 + -203.91625 106.77822 -347.90403 + -186.97594 108.74017 -338.19762 + -186.97594 108.73976 -338.19762 -169.74564 110.47291 -328.31408 -169.74564 110.47249 -328.31408 - -152.26106 111.97952 -318.26973 - -152.26106 111.97908 -318.26973 + -152.26106 111.97952 -318.26972 + -152.26106 111.97908 -318.26972 -134.55752 113.26249 -308.08113 -134.55752 113.26205 -308.08113 -116.66995 114.32416 -297.76506 -116.66995 114.32371 -297.76506 -98.63294 115.16666 -287.33846 -98.63294 115.16620 -287.33846 - -80.48076 115.79194 -276.81842 - -80.48076 115.79149 -276.81842 - -62.24740 116.20180 -266.22213 - -62.24740 116.20134 -266.22213 - -43.96656 116.39784 -255.56687 - -43.96656 116.39738 -255.56687 - -25.67172 116.38151 -244.86995 - -25.67172 116.38107 -244.86995 - -7.39614 116.15413 -234.14871 - -7.39614 116.15370 -234.14871 + -80.48077 115.79194 -276.81841 + -80.48077 115.79149 -276.81841 + -62.24740 116.20180 -266.22212 + -62.24740 116.20134 -266.22212 + -43.96656 116.39784 -255.56686 + -43.96656 116.39738 -255.56686 + -25.67173 116.38151 -244.86994 + -25.67173 116.38107 -244.86994 + -7.39615 116.15413 -234.14870 + -7.39615 116.15370 -234.14870 10.82711 115.71688 -223.42045 10.82711 115.71646 -223.42045 28.96516 115.07080 -212.70245 28.96516 115.07042 -212.70245 - 46.98527 114.21688 -202.01188 - 46.98527 114.21653 -202.01188 - 64.85485 113.15600 -191.36582 - 64.85484 113.15568 -191.36582 - 82.54011 111.87196 -180.78119 - 82.54011 111.87170 -180.78119 + 46.98526 114.21688 -202.01188 + 46.98526 114.21653 -202.01188 + 64.85484 113.15600 -191.36581 + 64.85484 113.15568 -191.36581 + 82.54011 111.87196 -180.78118 + 82.54011 111.87170 -180.78118 100.00344 110.33223 -170.27474 100.00344 110.33202 -170.27474 - 117.20465 108.53652 -159.86303 - 117.20465 108.53638 -159.86303 - 134.10356 106.48547 -149.56234 - 134.10356 106.48542 -149.56234 - 150.66012 104.17984 -139.38868 - 150.66011 104.17989 -139.38868 + 117.20465 108.53652 -159.86302 + 117.20465 108.53638 -159.86302 + 134.10356 106.48547 -149.56233 + 134.10356 106.48542 -149.56233 + 150.66011 104.17984 -139.38867 + 150.66011 104.17989 -139.38867 166.83443 101.62126 -129.35773 166.83443 101.66415 -129.35773 181.46965 83.52329 -119.43789 181.46965 83.60768 -119.43789 - 193.33028 66.45047 -109.69142 - 193.33096 66.51530 -109.69142 - 202.49179 49.35347 -100.12966 - 202.49108 49.41990 -100.12966 - 208.92479 31.91072 -90.76137 + 193.33028 66.45047 -109.69141 + 193.33096 66.51530 -109.69141 + 202.49179 49.35347 -100.12965 + 202.49108 49.41990 -100.12965 + 208.92478 31.91072 -90.76137 208.92478 31.99730 -90.76137 212.56645 13.97159 -81.59271 212.56645 14.06087 -81.59271 213.32728 -4.57913 -72.62715 213.32728 -4.48687 -72.62715 211.10612 -23.80050 -63.86541 - 211.10613 -23.70508 -63.86541 - 205.79384 -43.73400 -55.30536 - 205.79385 -43.63530 -55.30536 + 211.10612 -23.70508 -63.86541 + 205.79384 -43.73400 -55.30535 + 205.79385 -43.63530 -55.30535 197.27608 -64.40435 -46.94190 197.27609 -64.30115 -46.94190 - 185.39646 -86.32117 -38.76688 - 185.39646 -86.21319 -38.76688 - 169.98943 -109.08795 -30.76891 + 185.39646 -86.32117 -38.76687 + 185.39646 -86.21319 -38.76687 + 169.98942 -109.08795 -30.76891 169.98943 -108.97634 -30.76891 150.92693 -132.62561 -22.93326 - 150.92694 -132.51053 -22.93326 + 150.92693 -132.51053 -22.93326 128.08670 -156.94116 -15.24168 128.14752 -158.38088 -15.24168 101.49947 -177.15403 -7.67231 101.49841 -180.16883 -7.67231 72.57963 -182.72870 -0.19979 - 72.45975 -182.75555 -0.19979 + 72.45975 -182.75554 -0.19979 44.74276 -164.94234 7.20325 44.80276 -163.54018 7.20325 21.67100 -126.40578 14.56308 21.67107 -126.62167 14.56308 5.81490 -71.17569 21.90160 5.81484 -71.47582 21.90160 - -0.00011 0.17336 29.23375 + -0.00011 0.17336 29.23374 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24759,14 +24891,14 @@ Status character 32.27378 128.53682 634.34393 53.25659 110 0 - 32.93090 130.08576 642.98574 53.98212 110 0 - 32.66866 130.08576 641.03277 53.98212 110 0 - - 50.21227 131.63471 649.64833 54.70764 110 0 - - 50.21227 131.63471 647.89661 54.70764 110 0 - + 50.21228 131.63471 649.64833 54.70764 110 0 - + 50.21228 131.63471 647.89661 54.70764 110 0 - 217.50633 133.18366 656.48894 55.43317 110 33 - 217.50633 133.18366 654.90967 55.43317 110 33 - - 383.82803 134.73261 663.48133 56.15870 110 58 - - 383.82803 134.73261 662.05104 56.15870 110 58 - - 549.67020 136.28155 670.60422 56.88422 110 82 - - 549.67020 136.28155 669.30353 56.88422 110 82 - + 383.82802 134.73261 663.48133 56.15870 110 58 - + 383.82802 134.73261 662.05104 56.15870 110 58 - + 549.67019 136.28155 670.60422 56.88422 110 82 - + 549.67019 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -25201,8 +25333,8 @@ Status character 300.59039 75.48537 302.40039 25.72882 110 99 - 308.93514 77.03432 310.92777 26.45434 110 99 - 308.10767 77.03432 310.10030 26.45434 110 99 - - 199.80674 78.58326 318.60499 27.17987 110 63 - - 199.80674 78.58326 317.87650 27.17987 110 63 - + 199.80673 78.58326 318.60499 27.17987 110 63 - + 199.80673 78.58326 317.87650 27.17987 110 63 - 32.40076 80.13221 326.36174 27.90539 110 10 - 32.40076 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -25261,12 +25393,12 @@ CalculationStatus 18.80793 -30.77475 -3.39136 16.59675 19.19600 2 1 9 1.000 0 0 -23.92098 -32.88294 6.76983 16.24830 18.59902 2 3 9 1.000 0 0 -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 9 1.200 0 0 - -420.21204 -184.10265 -998.86477 77.20799 80.86198 3 0 9 1.000 0 0 - -420.21921 -184.11284 -484.74521 77.20408 80.85869 3 1 9 1.000 0 0 + -420.21204 -184.10264 -998.86457 77.20798 80.86198 3 0 9 1.000 0 0 + -420.21921 -184.11283 -484.74519 77.20408 80.85869 3 1 9 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 9 1.000 0 0 -417.74372 -153.60192 -181.75590 57.58640 63.64131 3 14 9 1.200 0 0 - -411.73182 -182.21712 -994.46291 76.02984 79.28254 4 0 9 1.000 0 0 - -416.35879 -182.75555 -482.56763 76.12714 79.41917 4 1 9 1.000 0 0 + -411.73182 -182.21711 -994.46271 76.02984 79.28254 4 0 9 1.000 0 0 + -416.35879 -182.75554 -482.56762 76.12714 79.41917 4 1 9 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 9 1.000 0 0 -407.02562 -137.77463 -178.01182 56.51282 62.10748 4 14 9 1.200 0 0 [END OF DATA] @@ -25340,9 +25472,9 @@ Force [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] MaximumMoment=-420.21921 -MaximumShearForce=-184.11284 +MaximumShearForce=-184.11283 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=77.20799 +MaximumPercentageMobilisedMoment=77.20798 MaximumPercentageMobilisedResistance=80.86198 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shi index f31ee646..d77204a5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44p.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44p.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:11 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44p.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shd index 5f2fd029..34e17e65 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44q.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:27 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44q.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,7 +1102,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 9 1.000 1.000 1.000 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -16437,218 +16569,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00024 0.00632 140.08544 - 0.20183 4.02871 111.43945 - 0.20207 4.03503 111.43945 - 1.11117 8.61175 82.79323 - 1.11117 8.61176 82.79323 - 2.75973 13.73791 54.14599 - 2.75973 13.73793 54.14599 - 5.22379 19.41788 25.49632 - 5.20523 19.91280 25.49632 + -0.00024 0.00632 140.08542 + 0.20183 4.02871 111.43943 + 0.20207 4.03503 111.43943 + 1.11117 8.61175 82.79321 + 1.11117 8.61176 82.79321 + 2.75973 13.73791 54.14598 + 2.75973 13.73793 54.14598 + 5.22379 19.41788 25.49631 + 5.20523 19.91280 25.49631 8.58732 24.58929 -3.15794 8.62444 24.58932 -3.15794 - 12.44456 25.90659 -31.81965 - 12.42600 25.41178 -31.81965 - 16.23777 25.41178 -60.49209 - 16.23777 25.41191 -60.49209 - 20.04955 25.41191 -89.17855 - 20.04955 25.41208 -89.17855 - 23.86136 25.41208 -117.88232 - 23.86136 25.41249 -117.88232 - 27.67323 25.41249 -146.60669 - 27.67324 -142.58708 -146.60669 - 6.28517 -142.58708 -175.35132 - 6.28518 -142.58688 -175.35132 - -15.10286 -142.58688 -204.10138 - -15.10286 -142.58675 -204.10138 - -36.46732 -142.26861 -232.83840 - -36.46732 -142.26856 -232.83840 - -43.56798 -141.75375 -242.41132 - -43.56798 -141.75375 -242.41132 - -50.64229 -141.21465 -251.98006 - -50.64229 -141.21465 -251.98006 - -71.69501 -139.45309 -280.65444 - -71.69530 -139.44522 -280.65444 - -92.46650 -137.46909 -309.26695 - -92.46620 -137.46131 -309.26695 - -112.92387 -135.27286 -337.79966 - -112.92386 -135.27308 -337.79966 - -133.03749 -132.87406 -366.23490 - -133.03749 -132.87435 -366.23490 - -152.77560 -130.26617 -394.55532 - -152.77560 -130.26653 -394.55532 - -172.10693 -127.45030 -422.74388 - -172.10692 -127.45071 -422.74388 - -191.00033 -124.42736 -450.78390 - -191.00033 -124.42782 -450.78390 - -209.42481 -121.19808 -478.65906 - -209.42481 -121.19859 -478.65906 - -227.34947 -117.76310 -506.35346 - -227.34947 -117.76364 -506.35346 - -244.74348 -114.12291 -533.85163 - -244.74348 -114.12349 -533.85163 - -261.57611 -110.27796 -561.13856 - -261.57611 -110.27858 -561.13856 - -277.81666 -106.22862 -588.19971 - -277.81666 -106.22926 -588.19971 - -293.43449 -101.97519 -615.02108 - -293.43450 -102.04613 -615.02108 - -308.70024 -96.37807 -642.26696 - -308.70024 -96.52224 -642.26696 - -323.10270 -90.67945 -669.23257 - -323.10270 -90.82799 -669.23257 - -336.61568 -84.81069 -695.90483 - -336.61568 -84.96360 -695.90483 - -349.21304 -78.77200 -722.27148 - -349.21304 -78.92927 -722.27148 - -360.86864 -72.56356 -748.32106 - -360.86864 -72.72517 -748.32106 - -371.55637 -66.18551 -774.04301 - -371.55637 -66.35147 -774.04301 - -381.25015 -59.63800 -799.42761 - -381.25015 -59.80823 -799.42761 - -389.92433 -52.92648 -824.46607 - -389.92433 -53.10095 -824.46607 - -397.55341 -46.04745 -849.15050 - -397.55341 -46.22626 -849.15050 - -404.11130 -38.99688 -873.47399 - -404.11130 -39.18007 -873.47399 - -409.57165 -31.77507 -897.43058 - -409.57165 -31.96263 -897.43058 - -413.90814 -24.38227 -921.01532 - -413.90814 -24.57420 -921.01532 - -417.09446 -16.81869 -944.22426 - -417.09446 -16.91632 -944.22426 - -419.06063 -10.58060 -965.43638 - -419.06063 -10.58101 -965.43638 - -420.10860 -4.06101 -985.57618 - -420.10860 -4.06138 -985.57618 - -420.21204 2.64280 -998.86477 - -420.21204 2.64245 -998.86477 - -419.34463 9.53070 -998.54995 - -419.34463 9.53038 -998.54995 - -417.48010 16.60260 -988.69350 - -417.48010 16.60231 -988.69350 - -414.59216 23.85840 -976.79125 - -414.59216 23.85814 -976.79125 - -410.65454 31.29802 -964.56444 - -410.65454 31.29786 -964.56444 - -407.25962 36.61510 -955.81416 - -407.25962 36.61503 -955.81416 - -403.32847 42.02227 -946.90765 - -403.32847 42.02212 -946.90765 - -396.41083 50.21977 -933.25828 - -396.41083 50.21954 -933.25828 - -388.26005 58.46430 -919.26678 - -388.26005 58.46408 -919.26678 - -378.60130 63.13321 -904.24974 - -378.60130 63.13300 -904.24974 - -368.29258 67.60182 -888.87403 - -368.29258 67.60162 -888.87403 - -357.31096 71.87027 -873.14943 - -357.31096 71.87008 -873.14943 - -345.68013 75.93866 -857.08634 - -345.68013 75.93849 -857.08634 - -333.42893 79.80711 -840.69578 - -333.42893 79.80695 -840.69578 - -320.58759 83.47572 -823.98936 - -320.58759 83.47556 -823.98936 - -307.18688 86.94457 -806.97923 - -307.18688 86.94442 -806.97923 - -293.25780 90.21375 -789.67810 - -293.25780 90.21360 -789.67810 - -278.83147 93.28334 -772.09915 - -278.83147 93.28319 -772.09915 - -263.93908 96.15342 -754.25606 - -263.93908 96.15327 -754.25606 - -248.61186 98.82406 -736.16292 - -248.61186 98.82391 -736.16292 - -232.88106 101.29533 -717.83427 - -232.88106 101.29518 -717.83427 - -216.77794 103.56729 -699.28501 - -216.77794 103.56713 -699.28501 - -200.33375 105.64000 -680.53038 - -200.33375 105.63984 -680.53038 - -183.57976 107.51351 -661.58596 - -183.57976 107.51335 -661.58596 - -166.54723 109.18789 -642.46763 - -166.54723 109.18772 -642.46763 - -149.26744 110.66318 -623.19152 - -149.26744 110.66300 -623.19152 - -131.77163 111.93942 -603.77401 - -131.77163 111.93924 -603.77401 - -114.09106 113.01668 -584.23166 - -114.09106 113.01649 -584.23166 - -96.25698 113.89498 -564.58122 - -96.25698 113.89479 -564.58122 - -78.30064 114.57438 -544.83960 - -78.30064 114.57419 -544.83960 - -60.25328 115.05491 -525.02379 - -60.25328 115.05472 -525.02379 - -42.14614 115.33661 -505.15090 - -42.14614 115.33642 -505.15090 - -24.01044 115.41952 -485.23808 - -24.01044 115.41934 -485.23808 - -5.87742 115.30368 -465.30252 - -5.87743 115.30351 -465.30252 - 12.22169 114.98912 -445.36138 - 12.22169 114.98895 -445.36138 - 30.25569 114.47587 -425.43181 - 30.25569 114.47572 -425.43181 - 48.19336 113.76397 -405.53090 - 48.19336 113.76384 -405.53090 - 66.00349 112.85344 -385.67565 - 66.00349 112.85334 -385.67565 - 83.65354 111.72732 -365.88292 - 83.65353 111.72724 -365.88292 - 101.10701 110.35227 -346.16943 - 101.10701 110.35223 -346.16943 - 118.32473 108.72728 -326.55172 - 118.32473 108.72728 -326.55172 - 135.26740 106.85222 -307.04609 - 135.26740 106.85227 -307.04609 - 151.89573 104.72706 -287.66861 - 151.89573 104.72716 -287.66861 - 168.17047 102.35253 -268.43501 - 168.17047 102.39603 -268.43501 - 182.90638 84.07354 -249.26976 - 182.90637 84.15896 -249.26976 - 194.84215 66.85673 -230.27924 - 194.84276 66.92411 -230.27924 - 204.05871 49.64728 -211.47489 - 204.05808 49.71580 -211.47489 - 210.53099 32.11472 -192.86550 - 210.53099 32.20123 -192.86550 - 214.19870 14.09961 -174.45728 - 214.19870 14.18877 -174.45728 - 214.97435 -4.51847 -156.25372 - 214.97435 -4.42630 -156.25372 - 212.75759 -23.80589 -138.25555 - 212.75759 -23.71048 -138.25555 - 207.43890 -43.81151 -120.46065 - 207.43890 -43.71269 -120.46065 - 198.90239 -64.56745 -102.86391 - 198.90239 -64.46394 -102.86391 - 186.98897 -86.59066 -85.45717 - 186.98897 -86.48216 -85.45717 - 171.52924 -109.49187 -68.22901 - 171.52924 -109.37949 -68.22901 - 152.39017 -133.19901 -51.16463 - 152.39018 -133.08290 -51.16463 - 129.44342 -157.72584 -34.24571 - 129.50347 -159.14456 -34.24571 - 102.71589 -178.16033 -17.45031 - 102.71543 -181.14920 -17.45031 - 73.61621 -184.07153 -0.75292 - 73.49695 -184.10265 -0.75292 - 45.53763 -166.61526 15.87401 - 45.59727 -165.22467 15.87401 - 22.18615 -128.25655 32.45697 - 22.18619 -128.47420 32.45697 - 6.02657 -73.15861 49.01813 - 6.02659 -73.46498 49.01813 - 0.00000 0.18253 65.57271 + 12.44456 25.90659 -31.81964 + 12.42600 25.41178 -31.81964 + 16.23777 25.41178 -60.49208 + 16.23777 25.41191 -60.49208 + 20.04955 25.41191 -89.17853 + 20.04955 25.41208 -89.17853 + 23.86136 25.41208 -117.88230 + 23.86136 25.41249 -117.88230 + 27.67323 25.41249 -146.60666 + 27.67324 -142.58708 -146.60666 + 6.28518 -142.58708 -175.35128 + 6.28518 -142.58688 -175.35128 + -15.10286 -142.58688 -204.10133 + -15.10285 -142.58675 -204.10133 + -36.46732 -142.26861 -232.83835 + -36.46732 -142.26856 -232.83835 + -43.56798 -141.75375 -242.41127 + -43.56798 -141.75375 -242.41127 + -50.64228 -141.21465 -251.98001 + -50.64228 -141.21465 -251.98001 + -71.69500 -139.45309 -280.65439 + -71.69530 -139.44522 -280.65439 + -92.46649 -137.46909 -309.26689 + -92.46620 -137.46131 -309.26689 + -112.92386 -135.27286 -337.79959 + -112.92386 -135.27308 -337.79959 + -133.03749 -132.87407 -366.23483 + -133.03749 -132.87435 -366.23483 + -152.77560 -130.26617 -394.55525 + -152.77560 -130.26653 -394.55525 + -172.10693 -127.45030 -422.74380 + -172.10692 -127.45071 -422.74380 + -191.00033 -124.42736 -450.78381 + -191.00033 -124.42782 -450.78381 + -209.42481 -121.19808 -478.65897 + -209.42481 -121.19859 -478.65897 + -227.34947 -117.76310 -506.35336 + -227.34947 -117.76364 -506.35336 + -244.74348 -114.12291 -533.85153 + -244.74348 -114.12350 -533.85153 + -261.57611 -110.27796 -561.13845 + -261.57611 -110.27858 -561.13845 + -277.81666 -106.22862 -588.19960 + -277.81665 -106.22926 -588.19960 + -293.43449 -101.97519 -615.02096 + -293.43450 -102.04613 -615.02096 + -308.70024 -96.37807 -642.26683 + -308.70024 -96.52224 -642.26683 + -323.10270 -90.67945 -669.23244 + -323.10270 -90.82799 -669.23244 + -336.61568 -84.81069 -695.90470 + -336.61568 -84.96360 -695.90470 + -349.21304 -78.77200 -722.27133 + -349.21304 -78.92927 -722.27133 + -360.86864 -72.56356 -748.32091 + -360.86864 -72.72517 -748.32091 + -371.55637 -66.18551 -774.04285 + -371.55637 -66.35147 -774.04285 + -381.25015 -59.63800 -799.42745 + -381.25015 -59.80823 -799.42745 + -389.92433 -52.92648 -824.46590 + -389.92433 -53.10095 -824.46590 + -397.55341 -46.04745 -849.15033 + -397.55341 -46.22626 -849.15033 + -404.11130 -38.99688 -873.47382 + -404.11130 -39.18007 -873.47382 + -409.57165 -31.77507 -897.43040 + -409.57165 -31.96263 -897.43040 + -413.90814 -24.38227 -921.01513 + -413.90814 -24.57420 -921.01513 + -417.09446 -16.81869 -944.22407 + -417.09446 -16.91632 -944.22407 + -419.06063 -10.58060 -965.43618 + -419.06063 -10.58102 -965.43618 + -420.10860 -4.06101 -985.57598 + -420.10860 -4.06138 -985.57598 + -420.21204 2.64280 -998.86457 + -420.21204 2.64245 -998.86457 + -419.34463 9.53070 -998.54974 + -419.34463 9.53038 -998.54974 + -417.48010 16.60260 -988.69330 + -417.48010 16.60231 -988.69330 + -414.59216 23.85840 -976.79106 + -414.59216 23.85814 -976.79106 + -410.65454 31.29802 -964.56424 + -410.65454 31.29786 -964.56424 + -407.25962 36.61510 -955.81397 + -407.25962 36.61502 -955.81397 + -403.32847 42.02227 -946.90746 + -403.32847 42.02211 -946.90746 + -396.41084 50.21976 -933.25809 + -396.41084 50.21954 -933.25809 + -388.26005 58.46430 -919.26660 + -388.26005 58.46408 -919.26660 + -378.60131 63.13321 -904.24956 + -378.60131 63.13299 -904.24956 + -368.29258 67.60182 -888.87386 + -368.29258 67.60162 -888.87386 + -357.31096 71.87027 -873.14926 + -357.31096 71.87008 -873.14926 + -345.68014 75.93866 -857.08617 + -345.68014 75.93849 -857.08617 + -333.42893 79.80711 -840.69562 + -333.42893 79.80695 -840.69562 + -320.58760 83.47572 -823.98920 + -320.58760 83.47556 -823.98920 + -307.18688 86.94457 -806.97907 + -307.18688 86.94441 -806.97907 + -293.25780 90.21375 -789.67794 + -293.25780 90.21360 -789.67794 + -278.83147 93.28334 -772.09900 + -278.83147 93.28319 -772.09900 + -263.93908 96.15342 -754.25591 + -263.93908 96.15327 -754.25591 + -248.61187 98.82406 -736.16278 + -248.61187 98.82391 -736.16278 + -232.88107 101.29533 -717.83414 + -232.88107 101.29518 -717.83414 + -216.77794 103.56729 -699.28487 + -216.77794 103.56713 -699.28487 + -200.33375 105.64000 -680.53025 + -200.33375 105.63983 -680.53025 + -183.57976 107.51351 -661.58583 + -183.57976 107.51334 -661.58583 + -166.54724 109.18789 -642.46751 + -166.54724 109.18771 -642.46751 + -149.26744 110.66318 -623.19140 + -149.26744 110.66300 -623.19140 + -131.77163 111.93942 -603.77389 + -131.77163 111.93924 -603.77389 + -114.09106 113.01668 -584.23155 + -114.09106 113.01649 -584.23155 + -96.25699 113.89498 -564.58111 + -96.25699 113.89479 -564.58111 + -78.30065 114.57438 -544.83949 + -78.30065 114.57419 -544.83949 + -60.25329 115.05491 -525.02369 + -60.25329 115.05472 -525.02369 + -42.14614 115.33661 -505.15080 + -42.14614 115.33642 -505.15080 + -24.01045 115.41952 -485.23799 + -24.01045 115.41934 -485.23799 + -5.87743 115.30368 -465.30242 + -5.87743 115.30351 -465.30242 + 12.22168 114.98912 -445.36129 + 12.22168 114.98896 -445.36129 + 30.25568 114.47587 -425.43173 + 30.25568 114.47572 -425.43173 + 48.19335 113.76397 -405.53082 + 48.19335 113.76384 -405.53082 + 66.00348 112.85344 -385.67557 + 66.00348 112.85334 -385.67557 + 83.65353 111.72732 -365.88285 + 83.65353 111.72724 -365.88285 + 101.10700 110.35227 -346.16936 + 101.10700 110.35223 -346.16936 + 118.32472 108.72728 -326.55165 + 118.32472 108.72728 -326.55165 + 135.26739 106.85222 -307.04603 + 135.26739 106.85227 -307.04603 + 151.89572 104.72705 -287.66855 + 151.89572 104.72716 -287.66855 + 168.17047 102.35253 -268.43495 + 168.17046 102.39603 -268.43495 + 182.90637 84.07354 -249.26970 + 182.90636 84.15896 -249.26970 + 194.84214 66.85673 -230.27919 + 194.84276 66.92411 -230.27919 + 204.05870 49.64728 -211.47484 + 204.05807 49.71580 -211.47484 + 210.53098 32.11472 -192.86546 + 210.53098 32.20123 -192.86546 + 214.19869 14.09961 -174.45724 + 214.19869 14.18877 -174.45724 + 214.97434 -4.51847 -156.25368 + 214.97435 -4.42630 -156.25368 + 212.75758 -23.80590 -138.25552 + 212.75758 -23.71048 -138.25552 + 207.43889 -43.81151 -120.46062 + 207.43889 -43.71269 -120.46062 + 198.90238 -64.56745 -102.86389 + 198.90238 -64.46394 -102.86389 + 186.98896 -86.59066 -85.45715 + 186.98896 -86.48216 -85.45715 + 171.52923 -109.49187 -68.22899 + 171.52924 -109.37949 -68.22899 + 152.39016 -133.19901 -51.16462 + 152.39017 -133.08290 -51.16462 + 129.44341 -157.72584 -34.24570 + 129.50346 -159.14456 -34.24570 + 102.71589 -178.16032 -17.45030 + 102.71542 -181.14920 -17.45030 + 73.61621 -184.07152 -0.75292 + 73.49694 -184.10264 -0.75292 + 45.53763 -166.61525 15.87401 + 45.59727 -165.22466 15.87401 + 22.18615 -128.25654 32.45697 + 22.18618 -128.47419 32.45697 + 6.02657 -73.15860 49.01813 + 6.02659 -73.46497 49.01813 + 0.00000 0.18253 65.57270 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16978,7 +17110,7 @@ Status character 62.71500 0.00000 62.71500 22.53706 202 100 P 61.46495 0.00000 61.46495 20.33008 202 100 P 27.61109 0.00000 79.15458 26.18108 110 35 - - 25.09093 0.00000 91.92500 23.66092 110 27 - + 25.09094 0.00000 91.92500 23.66092 110 27 - 0.00000 0.00000 112.98445 29.08149 1 0 A 0.00000 0.00000 138.97790 26.45229 1 0 A 0.00000 0.00000 165.08875 31.42209 1 0 A @@ -17171,15 +17303,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 48.94497 131.63471 740.59906 56.47417 110 0 - - 48.95851 131.63471 739.01307 56.48771 110 0 - + 48.94500 131.63471 740.59906 56.47417 110 0 - + 48.95854 131.63471 739.01307 56.48771 110 0 - 215.89816 133.18366 747.78252 57.15802 110 29 - - 215.91261 133.18366 746.33401 57.17248 110 29 - - 382.41283 134.73261 755.08820 57.84309 110 51 - - 382.42815 134.73261 753.75802 57.85840 110 51 - - 548.71065 136.28155 762.49856 58.52932 110 72 - - 548.72677 136.28155 761.27091 58.54544 110 72 - - 714.94383 137.83050 769.99919 59.21669 110 93 - + 215.91262 133.18366 746.33401 57.17248 110 29 - + 382.41280 134.73261 755.08820 57.84309 110 51 - + 382.42811 134.73261 753.75802 57.85840 110 51 - + 548.71058 136.28155 762.49856 58.52932 110 72 - + 548.72670 136.28155 761.27091 58.54544 110 72 - + 714.94373 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17613,10 +17745,10 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 201.68294 78.58326 318.60499 27.17987 110 63 - - 201.68294 78.58326 317.87650 27.17987 110 63 - - 35.43460 80.13221 326.36174 27.90539 110 11 - - 35.43460 80.13221 325.71668 27.90539 110 11 - + 201.68287 78.58326 318.60499 27.17987 110 63 - + 201.68287 78.58326 317.87650 27.17987 110 63 - + 35.43456 80.13221 326.36174 27.90539 110 11 - + 35.43456 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -17925,218 +18057,218 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00010 0.00280 139.60043 - 0.18736 3.74377 111.15589 - 0.18747 3.74657 111.15589 - 1.00161 7.55655 82.71114 - 1.00161 7.55655 82.71114 - 2.41274 11.55048 54.26548 - 2.41274 11.55050 54.26548 + -0.00010 0.00280 139.60041 + 0.18736 3.74377 111.15587 + 0.18747 3.74657 111.15587 + 1.00161 7.55655 82.71113 + 1.00161 7.55655 82.71113 + 2.41274 11.55048 54.26547 + 2.41274 11.55050 54.26547 4.44846 15.82073 25.81769 4.42991 16.31563 25.81769 - 7.15742 19.39135 -2.63399 - 7.19454 19.39135 -2.63399 + 7.15742 19.39135 -2.63398 + 7.19454 19.39135 -2.63398 10.16186 20.01580 -31.09187 - 10.14331 19.52095 -31.09187 - 13.08399 19.69540 -59.55852 - 13.08399 19.69548 -59.55852 - 16.05411 19.91342 -88.03646 - 16.05411 19.91353 -88.03646 - 19.06024 20.17563 -116.52827 - 19.06023 20.17597 -116.52827 - 22.10909 20.48301 -145.03653 - 22.10910 -129.05159 -145.03653 - 2.77725 -128.69870 -173.56066 - 2.77725 -128.69856 -173.56066 - -16.49816 -128.29905 -202.08718 - -16.49816 -128.29894 -202.08718 - -35.71010 -127.85236 -230.59947 - -35.71009 -127.85231 -230.59947 - -42.09861 -127.68438 -240.09754 - -42.09861 -127.68438 -240.09754 - -48.47816 -127.49405 -249.59156 - -48.47816 -127.49402 -249.59156 - -67.55189 -126.78880 -278.04330 - -67.55218 -126.78087 -278.04330 - -86.50386 -125.87476 -306.43672 - -86.50356 -125.86690 -306.43672 - -105.30314 -124.76081 -334.75548 - -105.30313 -124.76091 -334.75548 - -123.92188 -123.45608 -362.98335 - -123.92188 -123.45623 -362.98335 - -142.32592 -121.89842 -391.10425 - -142.32592 -121.89862 -391.10425 - -160.47438 -120.04795 -419.10230 - -160.47438 -120.04819 -419.10230 - -178.32355 -117.90768 -446.96184 - -178.32355 -117.90795 -446.96184 - -195.83021 -115.48088 -474.66745 - -195.83021 -115.48119 -474.66745 - -212.95163 -112.77104 -502.20404 - -212.95163 -112.77137 -502.20404 - -229.64563 -109.78182 -529.55682 - -229.64563 -109.78218 -529.55682 - -245.87057 -106.51703 -556.71138 - -245.87057 -106.51741 -556.71138 - -261.58542 -102.98060 -583.65372 - -261.58542 -102.98100 -583.65372 - -276.74972 -99.17656 -610.37028 - -276.74972 -99.23475 -610.37028 - -291.66028 -94.57291 -637.52362 - -291.66028 -94.69242 -637.52362 - -305.85491 -89.80826 -664.41216 - -305.85491 -89.93329 -664.41216 - -319.30045 -84.82936 -691.02300 - -319.30045 -84.95986 -691.02300 - -331.96412 -79.63868 -717.34394 - -331.96412 -79.77458 -717.34394 - -343.81352 -74.23867 -743.36347 - -343.81352 -74.37991 -743.36347 - -354.81664 -68.63175 -769.07084 - -354.81664 -68.77827 -769.07084 - -364.94181 -62.82030 -794.45606 - -364.94181 -62.97196 -794.45606 - -374.15815 -56.81197 -819.50994 - -374.15815 -56.96869 -819.50994 - -382.43526 -50.60541 -844.22410 - -382.43526 -50.76724 -844.22410 - -389.74250 -44.19868 -868.59104 - -389.74250 -44.36561 -868.59104 - -396.04925 -37.59413 -892.60413 - -396.04925 -37.76609 -892.60413 - -401.32524 -30.79393 -916.25763 - -401.32524 -30.97087 -916.25763 - -405.54054 -23.80018 -939.54675 - -405.54053 -23.89037 -939.54675 - -408.50044 -17.52207 -960.84275 - -408.50044 -17.52234 -960.84275 - -410.53697 -10.96309 -981.07468 - -410.53697 -10.96334 -981.07468 - -411.62303 -4.21551 -994.46291 - -411.62303 -4.21574 -994.46291 - -411.73182 2.71848 -994.25445 - -411.73182 2.71827 -994.25445 - -410.83686 9.83688 -984.51033 - -410.83686 9.83668 -984.51033 - -408.91194 17.13784 -972.72560 - -408.91194 17.13765 -972.72560 - -405.93109 24.61970 -960.62076 - -405.93109 24.61958 -960.62076 - -403.20255 29.96384 -951.95811 - -403.20255 29.96378 -951.95811 - -399.93521 35.39548 -943.14078 - -399.93521 35.39536 -943.14078 - -394.00892 43.62403 -929.62754 - -394.00892 43.62384 -929.62754 - -386.84542 51.89180 -915.77425 - -386.84553 51.89429 -915.77425 - -378.19835 56.94637 -900.90330 - -378.19824 56.94885 -900.90330 - -368.80360 62.14206 -885.67407 - -368.80360 62.14185 -885.67407 - -358.62565 67.09146 -870.09548 - -358.62565 67.09123 -870.09548 - -347.69494 71.79706 -854.17715 - -347.69494 71.79682 -854.17715 - -336.04717 76.25903 -837.92946 - -336.04717 76.25878 -837.92946 - -323.71943 80.47779 -821.36342 - -323.71943 80.47753 -821.36342 - -310.74924 84.45402 -804.49073 - -310.74924 84.45375 -804.49073 - -297.17427 88.18862 -787.32365 - -297.17427 88.18834 -787.32365 - -283.03217 91.68265 -769.87506 - -283.03217 91.68236 -769.87506 - -268.36047 94.93733 -752.15835 - -268.36047 94.93702 -752.15835 - -253.19656 97.95398 -734.18741 - -253.19656 97.95367 -734.18741 - -237.57764 100.73403 -715.97662 - -237.57764 100.73371 -715.97662 - -221.54072 103.27897 -697.54076 - -221.54072 103.27865 -697.54076 - -205.12257 105.59036 -678.89503 - -205.12257 105.59003 -678.89503 - -188.35971 107.66976 -660.05498 - -188.35971 107.66943 -660.05498 - -171.28844 109.51878 -641.03649 - -171.28844 109.51844 -641.03649 - -153.94483 111.13901 -621.85573 - -153.94483 111.13867 -621.85573 - -136.36466 112.53203 -602.52914 - -136.36466 112.53168 -602.52914 - -118.58350 113.69941 -583.07336 - -118.58350 113.69907 -583.07336 - -100.63667 114.64270 -563.50523 - -100.63667 114.64235 -563.50523 - -82.55925 115.36339 -543.84177 - -82.55925 115.36305 -543.84177 - -64.38610 115.86297 -524.10010 - -64.38610 115.86264 -524.10010 - -46.15183 116.14287 -504.29742 - -46.15183 116.14254 -504.29742 - -27.89085 116.20446 -484.45102 - -27.89085 116.20414 -484.45102 - -9.63735 116.04910 -464.57820 - -9.63735 116.04879 -464.57820 - 8.57470 115.67808 -444.69624 - 8.57470 115.67779 -444.69624 - 26.71150 115.09269 -424.82239 - 26.71150 115.09242 -424.82239 - 44.73947 114.29414 -404.97385 - 44.73947 114.29389 -404.97385 - 62.62522 113.28364 -385.16769 - 62.62522 113.28342 -385.16769 - 80.33420 112.04535 -365.42084 - 80.33420 112.04516 -365.42084 - 97.82810 110.54708 -345.75010 - 97.82810 110.54692 -345.75010 - 115.06607 108.78891 -326.17202 - 115.06607 108.78879 -326.17202 - 132.00736 106.77183 -306.70294 - 132.00736 106.77176 -306.70294 - 148.61136 104.49692 -287.35890 - 148.61136 104.49690 -287.35890 - 164.83772 101.96606 -268.15564 - 164.83772 102.00845 -268.15564 - 179.53741 83.99339 -249.01770 - 179.53741 84.07688 -249.01770 - 191.48119 67.03234 -230.05127 - 191.48180 67.09801 -230.05127 - 200.74269 50.03602 -211.26779 - 200.74206 50.10302 -211.26779 - 207.29066 32.68077 -192.67611 - 207.29066 32.76594 -192.67611 - 211.05968 14.81386 -174.28250 - 211.05968 14.90182 -174.28250 - 211.95819 -3.67862 -156.09054 - 211.95819 -3.58754 -156.09054 - 209.88274 -22.85674 -138.10110 - 209.88274 -22.76233 -138.10110 - 204.72175 -42.76334 -120.31217 - 204.72175 -42.66546 -120.31217 - 196.35813 -63.42485 -102.71881 - 196.35814 -63.32224 -102.71881 - 184.63252 -85.35284 -85.31301 - 184.63252 -85.24522 -85.31301 - 169.37602 -108.15304 -68.08354 - 169.37602 -108.04155 -68.08354 - 150.45689 -131.74882 -51.01579 - 150.45689 -131.63361 -51.01579 - 127.74874 -156.14976 -34.09166 - 127.80879 -157.56942 -34.09166 - 101.28109 -176.44018 -17.28942 + 10.14331 19.52096 -31.09187 + 13.08399 19.69540 -59.55851 + 13.08399 19.69548 -59.55851 + 16.05411 19.91342 -88.03644 + 16.05411 19.91353 -88.03644 + 19.06024 20.17563 -116.52824 + 19.06023 20.17597 -116.52824 + 22.10909 20.48301 -145.03650 + 22.10910 -129.05159 -145.03650 + 2.77725 -128.69870 -173.56062 + 2.77725 -128.69856 -173.56062 + -16.49816 -128.29905 -202.08714 + -16.49816 -128.29894 -202.08714 + -35.71010 -127.85236 -230.59943 + -35.71009 -127.85231 -230.59943 + -42.09860 -127.68438 -240.09749 + -42.09860 -127.68438 -240.09749 + -48.47816 -127.49405 -249.59151 + -48.47816 -127.49402 -249.59151 + -67.55189 -126.78880 -278.04324 + -67.55218 -126.78087 -278.04324 + -86.50386 -125.87476 -306.43666 + -86.50356 -125.86690 -306.43666 + -105.30314 -124.76081 -334.75542 + -105.30313 -124.76091 -334.75542 + -123.92188 -123.45608 -362.98328 + -123.92188 -123.45623 -362.98328 + -142.32592 -121.89842 -391.10417 + -142.32592 -121.89862 -391.10417 + -160.47438 -120.04795 -419.10222 + -160.47438 -120.04819 -419.10222 + -178.32355 -117.90768 -446.96175 + -178.32355 -117.90795 -446.96175 + -195.83021 -115.48088 -474.66736 + -195.83021 -115.48119 -474.66736 + -212.95163 -112.77104 -502.20394 + -212.95163 -112.77137 -502.20394 + -229.64563 -109.78182 -529.55671 + -229.64563 -109.78218 -529.55671 + -245.87057 -106.51703 -556.71127 + -245.87057 -106.51741 -556.71127 + -261.58542 -102.98060 -583.65361 + -261.58542 -102.98100 -583.65361 + -276.74972 -99.17656 -610.37016 + -276.74972 -99.23475 -610.37016 + -291.66028 -94.57291 -637.52350 + -291.66028 -94.69242 -637.52350 + -305.85491 -89.80826 -664.41203 + -305.85491 -89.93329 -664.41203 + -319.30045 -84.82936 -691.02286 + -319.30045 -84.95986 -691.02286 + -331.96412 -79.63868 -717.34379 + -331.96412 -79.77458 -717.34379 + -343.81352 -74.23867 -743.36332 + -343.81352 -74.37991 -743.36332 + -354.81664 -68.63175 -769.07069 + -354.81664 -68.77827 -769.07069 + -364.94181 -62.82030 -794.45590 + -364.94181 -62.97196 -794.45590 + -374.15815 -56.81197 -819.50977 + -374.15815 -56.96869 -819.50977 + -382.43526 -50.60541 -844.22393 + -382.43526 -50.76724 -844.22393 + -389.74250 -44.19868 -868.59087 + -389.74250 -44.36561 -868.59087 + -396.04925 -37.59413 -892.60395 + -396.04925 -37.76609 -892.60395 + -401.32524 -30.79393 -916.25744 + -401.32524 -30.97087 -916.25744 + -405.54054 -23.80018 -939.54656 + -405.54053 -23.89037 -939.54656 + -408.50044 -17.52207 -960.84255 + -408.50044 -17.52234 -960.84255 + -410.53697 -10.96309 -981.07448 + -410.53698 -10.96334 -981.07448 + -411.62303 -4.21551 -994.46271 + -411.62303 -4.21574 -994.46271 + -411.73182 2.71848 -994.25424 + -411.73182 2.71827 -994.25424 + -410.83686 9.83688 -984.51013 + -410.83686 9.83668 -984.51013 + -408.91194 17.13784 -972.72541 + -408.91194 17.13765 -972.72541 + -405.93109 24.61970 -960.62056 + -405.93109 24.61957 -960.62056 + -403.20255 29.96384 -951.95792 + -403.20255 29.96378 -951.95792 + -399.93521 35.39548 -943.14059 + -399.93521 35.39536 -943.14059 + -394.00893 43.62403 -929.62736 + -394.00893 43.62384 -929.62736 + -386.84542 51.89180 -915.77407 + -386.84553 51.89429 -915.77407 + -378.19835 56.94637 -900.90312 + -378.19824 56.94885 -900.90312 + -368.80360 62.14206 -885.67390 + -368.80360 62.14184 -885.67390 + -358.62565 67.09146 -870.09531 + -358.62565 67.09123 -870.09531 + -347.69494 71.79706 -854.17699 + -347.69494 71.79682 -854.17699 + -336.04718 76.25903 -837.92929 + -336.04718 76.25878 -837.92929 + -323.71943 80.47779 -821.36326 + -323.71943 80.47752 -821.36326 + -310.74924 84.45402 -804.49057 + -310.74924 84.45375 -804.49057 + -297.17428 88.18862 -787.32350 + -297.17428 88.18834 -787.32350 + -283.03217 91.68265 -769.87491 + -283.03217 91.68236 -769.87491 + -268.36047 94.93732 -752.15820 + -268.36047 94.93702 -752.15820 + -253.19656 97.95397 -734.18727 + -253.19656 97.95366 -734.18727 + -237.57765 100.73402 -715.97648 + -237.57765 100.73371 -715.97648 + -221.54073 103.27897 -697.54063 + -221.54073 103.27865 -697.54063 + -205.12257 105.59036 -678.89490 + -205.12257 105.59003 -678.89490 + -188.35971 107.66976 -660.05485 + -188.35971 107.66943 -660.05485 + -171.28845 109.51878 -641.03637 + -171.28845 109.51844 -641.03637 + -153.94483 111.13901 -621.85561 + -153.94483 111.13866 -621.85561 + -136.36466 112.53203 -602.52902 + -136.36466 112.53168 -602.52902 + -118.58350 113.69941 -583.07324 + -118.58350 113.69906 -583.07324 + -100.63668 114.64269 -563.50513 + -100.63668 114.64235 -563.50513 + -82.55926 115.36339 -543.84167 + -82.55926 115.36305 -543.84167 + -64.38611 115.86297 -524.10000 + -64.38611 115.86264 -524.10000 + -46.15184 116.14286 -504.29732 + -46.15184 116.14254 -504.29732 + -27.89086 116.20446 -484.45093 + -27.89086 116.20414 -484.45093 + -9.63735 116.04909 -464.57811 + -9.63735 116.04879 -464.57811 + 8.57469 115.67808 -444.69615 + 8.57469 115.67780 -444.69615 + 26.71149 115.09269 -424.82231 + 26.71149 115.09242 -424.82231 + 44.73946 114.29414 -404.97377 + 44.73946 114.29389 -404.97377 + 62.62521 113.28364 -385.16761 + 62.62521 113.28342 -385.16761 + 80.33419 112.04535 -365.42077 + 80.33419 112.04516 -365.42077 + 97.82809 110.54708 -345.75003 + 97.82809 110.54692 -345.75003 + 115.06607 108.78891 -326.17195 + 115.06606 108.78879 -326.17195 + 132.00735 106.77183 -306.70288 + 132.00735 106.77176 -306.70288 + 148.61136 104.49692 -287.35884 + 148.61136 104.49691 -287.35884 + 164.83771 101.96606 -268.15559 + 164.83771 102.00845 -268.15559 + 179.53741 83.99339 -249.01765 + 179.53741 84.07688 -249.01765 + 191.48119 67.03234 -230.05122 + 191.48180 67.09801 -230.05122 + 200.74269 50.03602 -211.26774 + 200.74206 50.10302 -211.26774 + 207.29066 32.68077 -192.67607 + 207.29066 32.76594 -192.67607 + 211.05967 14.81386 -174.28246 + 211.05967 14.90182 -174.28246 + 211.95818 -3.67862 -156.09051 + 211.95818 -3.58753 -156.09051 + 209.88274 -22.85674 -138.10107 + 209.88274 -22.76233 -138.10107 + 204.72174 -42.76334 -120.31214 + 204.72174 -42.66546 -120.31214 + 196.35813 -63.42485 -102.71879 + 196.35813 -63.32224 -102.71879 + 184.63251 -85.35284 -85.31299 + 184.63251 -85.24522 -85.31299 + 169.37601 -108.15305 -68.08352 + 169.37602 -108.04155 -68.08352 + 150.45688 -131.74882 -51.01578 + 150.45688 -131.63361 -51.01578 + 127.74874 -156.14976 -34.09165 + 127.80878 -157.56942 -34.09165 + 101.28108 -176.44018 -17.28942 101.28062 -179.43004 -17.28942 - 72.46567 -182.18598 -0.58383 - 72.34637 -182.21712 -0.58383 - 44.69426 -164.63795 16.05241 - 44.75393 -163.24678 16.05241 - 21.65595 -126.26511 32.64548 - 21.65599 -126.48290 32.64548 + 72.46567 -182.18597 -0.58383 + 72.34636 -182.21711 -0.58383 + 44.69425 -164.63794 16.05241 + 44.75393 -163.24677 16.05241 + 21.65595 -126.26510 32.64547 + 21.65599 -126.48289 32.64547 5.81287 -71.13794 49.21725 - 5.81285 -71.44022 49.21725 - -0.00004 0.17506 65.78266 + 5.81285 -71.44021 49.21725 + -0.00004 0.17506 65.78265 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18465,8 +18597,8 @@ Status character 34.14843 0.00000 46.21367 4.77649 110 74 - 47.18935 0.00000 61.61823 6.36865 110 77 - 48.14629 0.00000 52.62146 6.36865 110 91 - - 10.43873 0.00000 65.77683 7.96082 110 16 - - 10.43873 0.00000 58.61717 7.96082 110 18 - + 10.43874 0.00000 65.77683 7.96082 110 16 - + 10.43874 0.00000 58.61717 7.96082 110 18 - 1.45556 0.00000 70.34061 9.55298 110 0 - 1.45556 0.00000 64.38983 9.55298 110 0 - 1.86715 0.00000 75.12146 11.14515 110 0 - @@ -18643,7 +18775,7 @@ Status character 35.85157 116.14524 594.02752 47.45238 110 0 - 36.28160 117.69418 603.10994 48.17791 110 0 - 35.89886 117.69418 596.74967 48.17791 110 0 - - 36.35263 119.24313 605.73631 48.90343 110 0 - + 36.35262 119.24313 605.73631 48.90343 110 0 - 35.95490 119.24313 600.50339 48.90343 110 0 - 36.43093 120.79208 609.41240 49.62896 110 0 - 36.05374 120.79208 605.02281 49.62896 110 0 - @@ -18652,21 +18784,21 @@ Status character 32.20948 123.88997 618.91941 51.08001 110 0 - 31.14337 123.88997 615.69414 51.08001 110 0 - 31.61254 125.43892 624.43929 51.80554 110 0 - - 31.35795 125.43892 621.62820 51.80554 110 0 - + 31.35794 125.43892 621.62820 51.80554 110 0 - 31.84449 126.98787 630.33398 52.53107 110 0 - 31.58349 126.98787 627.86220 52.53107 110 0 - - 32.08526 128.53682 636.53384 53.25659 110 0 - + 32.08525 128.53682 636.53384 53.25659 110 0 - 31.82165 128.53682 634.34393 53.25659 110 0 - 32.33636 130.08576 642.98574 53.98212 110 0 - 32.07413 130.08576 641.03277 53.98212 110 0 - - 48.86933 131.63471 649.64833 54.70764 110 0 - - 48.86933 131.63471 647.89661 54.70764 110 0 - - 215.95724 133.18366 656.48894 55.43317 110 33 - - 215.95724 133.18366 654.90967 55.43317 110 33 - - 382.61347 134.73261 663.48133 56.15870 110 58 - - 382.61347 134.73261 662.05104 56.15870 110 58 - - 549.05675 136.28155 670.60422 56.88422 110 82 - - 549.05675 136.28155 669.30353 56.88422 110 82 - + 48.86936 131.63471 649.64833 54.70764 110 0 - + 48.86936 131.63471 647.89661 54.70764 110 0 - + 215.95723 133.18366 656.48894 55.43317 110 33 - + 215.95723 133.18366 654.90967 55.43317 110 33 - + 382.61344 134.73261 663.48133 56.15870 110 58 - + 382.61344 134.73261 662.05104 56.15870 110 58 - + 549.05667 136.28155 670.60422 56.88422 110 82 - + 549.05667 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -19088,23 +19220,23 @@ Status character 260.17895 66.19168 261.81071 21.37566 110 99 - 257.52692 66.19168 259.15868 21.37566 110 99 - 266.41044 67.74063 267.95497 22.10118 110 99 - - 264.26422 67.74063 265.80876 22.10118 110 99 - + 264.26423 67.74063 265.80876 22.10118 110 99 - 273.04980 69.28958 274.53459 22.82671 110 99 - 271.27628 69.28958 272.76107 22.82671 110 99 - 279.97951 70.83853 281.43054 23.55224 110 99 - 278.48993 70.83853 279.94096 23.55224 110 99 - - 287.12294 72.38747 288.56453 24.27776 110 99 - + 287.12295 72.38747 288.56453 24.27776 110 99 - 285.85542 72.38747 287.29701 24.27776 110 99 - 294.42803 73.93642 295.88270 25.00329 110 99 - 293.33782 73.93642 294.79250 25.00329 110 99 - 301.85821 75.48537 303.34656 25.72882 110 99 - - 300.91204 75.48537 302.40039 25.72882 110 99 - - 309.38727 77.03432 310.92777 26.45434 110 99 - + 300.91205 75.48537 302.40039 25.72882 110 99 - + 309.38728 77.03432 310.92777 26.45434 110 99 - 308.55980 77.03432 310.10030 26.45434 110 99 - - 200.07409 78.58326 318.60499 27.17987 110 63 - - 200.07409 78.58326 317.87650 27.17987 110 63 - - 33.74371 80.13221 326.36174 27.90539 110 10 - - 33.74371 80.13221 325.71668 27.90539 110 10 - + 200.07403 78.58326 318.60499 27.17987 110 63 - + 200.07403 78.58326 317.87650 27.17987 110 63 - + 33.74368 80.13221 326.36174 27.90539 110 10 - + 33.74368 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A 15.98918 81.68116 333.61100 28.63092 1 0 A 16.39436 83.23011 342.06492 29.35645 1 0 A @@ -22543,7 +22675,7 @@ Displacements 1.11106 8.61128 43.60945 1.11106 8.61130 43.60945 2.75956 13.73745 28.65440 - 2.75956 13.73751 28.65440 + 2.75956 13.73750 28.65440 5.22355 19.41746 13.69692 5.20171 19.99998 13.69692 8.59665 24.67190 -1.26515 @@ -22557,155 +22689,155 @@ Displacements 23.88179 25.40312 -61.22094 23.88177 25.40412 -61.22094 27.69238 25.40412 -76.25320 - 27.69240 -142.59483 -76.25320 - 6.30318 -142.59483 -91.30575 + 27.69240 -142.59484 -76.25320 + 6.30318 -142.59484 -91.30575 6.30318 -142.59434 -91.30575 - -15.08597 -142.59434 -106.36374 - -15.08597 -142.59399 -106.36374 + -15.08597 -142.59434 -106.36373 + -15.08597 -142.59399 -106.36373 -36.45152 -142.27585 -121.40870 -36.45152 -142.27571 -121.40870 - -43.55253 -141.76090 -126.41761 - -43.55253 -141.76089 -126.41761 - -50.62720 -141.22180 -131.42234 - -50.62720 -141.22175 -131.42234 - -71.68098 -139.46018 -146.40469 - -71.68136 -139.45002 -146.40469 + -43.55253 -141.76090 -126.41760 + -43.55253 -141.76089 -126.41760 + -50.62720 -141.22180 -131.42233 + -50.62720 -141.22175 -131.42233 + -71.68098 -139.46018 -146.40468 + -71.68136 -139.45002 -146.40468 -92.45327 -137.47388 -161.32517 -92.45289 -137.46386 -161.32517 -112.91094 -135.27541 -176.16587 -112.91094 -135.27566 -176.16587 - -133.02495 -132.87665 -190.90912 - -133.02495 -132.87704 -190.90912 + -133.02495 -132.87665 -190.90911 + -133.02495 -132.87704 -190.90911 -152.76347 -130.26886 -205.53755 -152.76346 -130.26937 -205.53755 - -172.09522 -127.45315 -220.03414 - -172.09521 -127.45376 -220.03414 - -190.98908 -124.43041 -234.38219 - -190.98908 -124.43111 -234.38219 - -209.41405 -121.20137 -248.56539 - -209.41405 -121.20214 -248.56539 + -172.09522 -127.45315 -220.03413 + -172.09521 -127.45376 -220.03413 + -190.98908 -124.43041 -234.38218 + -190.98908 -124.43111 -234.38218 + -209.41405 -121.20137 -248.56538 + -209.41405 -121.20214 -248.56538 -227.33924 -117.76665 -262.56784 -227.33924 -117.76749 -262.56784 - -244.73383 -114.12676 -276.37408 - -244.73383 -114.12765 -276.37408 - -261.56708 -110.28212 -289.96907 - -261.56708 -110.28306 -289.96907 + -244.73383 -114.12675 -276.37407 + -244.73383 -114.12765 -276.37407 + -261.56708 -110.28212 -289.96906 + -261.56708 -110.28306 -289.96906 -277.80830 -106.23310 -303.33830 -277.80830 -106.23409 -303.33830 - -293.42686 -101.98002 -316.46775 - -293.42687 -102.05122 -316.46775 - -308.69339 -96.38316 -329.67065 - -308.69339 -96.52749 -329.67065 - -323.09666 -90.68469 -342.59329 - -323.09666 -90.83340 -342.59329 - -336.61048 -84.81610 -355.22258 - -336.61048 -84.96916 -355.22258 - -349.20869 -78.77757 -367.54625 - -349.20869 -78.93499 -367.54625 - -360.86516 -72.56928 -379.55288 - -360.86517 -72.73104 -379.55288 - -371.55380 -66.19138 -391.23186 - -371.55380 -66.35748 -391.23186 - -381.24851 -59.64401 -402.57351 - -381.24851 -59.81438 -402.57351 - -389.92364 -52.93263 -413.56901 - -389.92364 -53.10723 -413.56901 - -397.55368 -46.05373 -424.21049 - -397.55368 -46.23265 -424.21049 - -404.11256 -39.00327 -434.49102 - -404.11256 -39.18656 -434.49102 - -409.57391 -31.78156 -444.40466 - -409.57391 -31.96921 -444.40466 - -413.91140 -24.38884 -453.94643 - -413.91140 -24.58083 -453.94643 - -417.09874 -16.82532 -463.11241 - -417.09874 -16.92302 -463.11241 - -419.06587 -10.58730 -471.28464 - -419.06587 -10.58775 -471.28464 - -420.11480 -4.06775 -478.95656 - -420.11481 -4.06813 -478.95656 - -420.21921 2.63605 -484.20654 - -420.21921 2.63573 -484.20654 - -419.35276 9.52397 -484.74521 - -419.35277 9.52371 -484.74521 - -417.48919 16.59592 -482.01101 - -417.48919 16.59571 -482.01101 - -414.60219 23.85180 -478.46598 - -414.60219 23.85163 -478.46598 - -410.66550 31.29152 -474.59638 - -410.66550 31.29143 -474.59638 - -407.27122 36.60867 -471.69615 - -407.27122 36.60864 -471.69615 - -403.34071 42.01588 -468.63968 - -403.34071 42.01583 -468.63968 - -396.42402 50.21348 -463.76537 - -396.42402 50.21342 -463.76537 - -388.27415 58.45818 -458.54891 - -388.27415 58.45815 -458.54891 - -378.61634 63.12727 -452.72476 - -378.61634 63.12726 -452.72476 - -368.30852 67.59609 -446.54193 - -368.30852 67.59609 -446.54193 - -357.32777 71.86474 -440.01019 - -357.32777 71.86476 -440.01019 - -345.69778 75.93333 -433.13995 - -345.69778 75.93336 -433.13995 - -333.44738 79.80198 -425.94221 - -333.44738 79.80201 -425.94221 - -320.60682 83.47078 -418.42860 - -320.60682 83.47080 -418.42860 - -307.20685 86.93980 -410.61126 - -307.20685 86.93982 -410.61126 - -293.27849 90.20915 -402.50290 - -293.27849 90.20916 -402.50290 - -278.85286 93.27890 -394.11671 - -278.85286 93.27889 -394.11671 - -263.96115 96.14912 -385.46635 - -263.96115 96.14909 -385.46635 - -248.63459 98.81988 -376.56593 - -248.63459 98.81983 -376.56593 - -232.90443 101.29124 -367.42997 - -232.90443 101.29117 -367.42997 - -216.80194 103.56328 -358.07337 - -216.80194 103.56318 -358.07337 - -200.35837 105.63605 -348.51139 - -200.35837 105.63593 -348.51139 - -183.60499 107.50961 -338.75960 - -183.60499 107.50946 -338.75960 - -166.57308 109.18400 -328.83387 - -166.57308 109.18382 -328.83387 - -149.29389 110.65928 -318.75033 - -149.29389 110.65908 -318.75033 - -131.79870 111.93551 -308.52537 - -131.79870 111.93528 -308.52537 - -114.11875 113.01272 -298.17554 - -114.11875 113.01247 -298.17554 + -293.42686 -101.98002 -316.46774 + -293.42687 -102.05122 -316.46774 + -308.69339 -96.38316 -329.67064 + -308.69339 -96.52749 -329.67064 + -323.09666 -90.68469 -342.59328 + -323.09666 -90.83340 -342.59328 + -336.61048 -84.81610 -355.22257 + -336.61048 -84.96916 -355.22257 + -349.20869 -78.77757 -367.54624 + -349.20869 -78.93499 -367.54624 + -360.86517 -72.56928 -379.55286 + -360.86517 -72.73104 -379.55286 + -371.55380 -66.19138 -391.23185 + -371.55380 -66.35748 -391.23185 + -381.24851 -59.64401 -402.57349 + -381.24851 -59.81438 -402.57349 + -389.92364 -52.93263 -413.56899 + -389.92364 -53.10723 -413.56899 + -397.55368 -46.05373 -424.21048 + -397.55368 -46.23265 -424.21048 + -404.11256 -39.00327 -434.49101 + -404.11256 -39.18656 -434.49101 + -409.57391 -31.78156 -444.40464 + -409.57391 -31.96921 -444.40464 + -413.91140 -24.38884 -453.94642 + -413.91140 -24.58083 -453.94642 + -417.09874 -16.82532 -463.11240 + -417.09874 -16.92302 -463.11240 + -419.06587 -10.58730 -471.28462 + -419.06587 -10.58775 -471.28462 + -420.11480 -4.06775 -478.95655 + -420.11481 -4.06813 -478.95655 + -420.21921 2.63605 -484.20652 + -420.21921 2.63573 -484.20652 + -419.35276 9.52397 -484.74519 + -419.35277 9.52371 -484.74519 + -417.48919 16.59592 -482.01099 + -417.48919 16.59571 -482.01099 + -414.60219 23.85180 -478.46597 + -414.60219 23.85163 -478.46597 + -410.66550 31.29152 -474.59636 + -410.66550 31.29143 -474.59636 + -407.27122 36.60867 -471.69614 + -407.27122 36.60864 -471.69614 + -403.34071 42.01588 -468.63967 + -403.34071 42.01583 -468.63967 + -396.42402 50.21348 -463.76535 + -396.42402 50.21342 -463.76535 + -388.27415 58.45818 -458.54890 + -388.27416 58.45815 -458.54890 + -378.61634 63.12727 -452.72475 + -378.61634 63.12726 -452.72475 + -368.30852 67.59608 -446.54191 + -368.30852 67.59609 -446.54191 + -357.32777 71.86474 -440.01018 + -357.32777 71.86476 -440.01018 + -345.69778 75.93333 -433.13993 + -345.69778 75.93336 -433.13993 + -333.44738 79.80198 -425.94220 + -333.44738 79.80201 -425.94220 + -320.60682 83.47078 -418.42859 + -320.60682 83.47080 -418.42859 + -307.20686 86.93980 -410.61125 + -307.20686 86.93982 -410.61125 + -293.27849 90.20915 -402.50289 + -293.27849 90.20916 -402.50289 + -278.85286 93.27890 -394.11670 + -278.85286 93.27889 -394.11670 + -263.96115 96.14912 -385.46634 + -263.96115 96.14909 -385.46634 + -248.63459 98.81988 -376.56592 + -248.63459 98.81982 -376.56592 + -232.90444 101.29124 -367.42996 + -232.90444 101.29117 -367.42996 + -216.80194 103.56328 -358.07336 + -216.80194 103.56318 -358.07336 + -200.35837 105.63605 -348.51138 + -200.35837 105.63593 -348.51138 + -183.60499 107.50961 -338.75959 + -183.60499 107.50946 -338.75959 + -166.57308 109.18400 -328.83386 + -166.57308 109.18382 -328.83386 + -149.29390 110.65928 -318.75033 + -149.29390 110.65908 -318.75033 + -131.79870 111.93551 -308.52536 + -131.79870 111.93528 -308.52536 + -114.11875 113.01272 -298.17553 + -114.11875 113.01247 -298.17553 -96.28531 113.89096 -287.71760 -96.28531 113.89069 -287.71760 - -78.32961 114.57028 -277.16845 - -78.32961 114.56999 -277.16845 - -60.28291 115.05071 -266.54509 - -60.28291 115.05041 -266.54509 - -42.17644 115.33230 -255.86461 - -42.17644 115.33199 -255.86461 - -24.04145 115.41509 -245.14418 - -24.04145 115.41477 -245.14418 - -5.90915 115.29911 -234.40097 - -5.90915 115.29880 -234.40097 - 12.18923 114.98441 -223.65216 - 12.18923 114.98411 -223.65216 - 30.22247 114.47102 -212.91489 - 30.22247 114.47073 -212.91489 - 48.15935 113.75898 -202.20625 - 48.15935 113.75871 -202.20625 - 65.96868 112.84832 -191.54322 + -78.32961 114.57028 -277.16844 + -78.32961 114.56999 -277.16844 + -60.28291 115.05071 -266.54508 + -60.28291 115.05041 -266.54508 + -42.17645 115.33230 -255.86461 + -42.17645 115.33199 -255.86461 + -24.04145 115.41509 -245.14417 + -24.04145 115.41477 -245.14417 + -5.90915 115.29911 -234.40096 + -5.90915 115.29880 -234.40096 + 12.18923 114.98441 -223.65215 + 12.18923 114.98411 -223.65215 + 30.22247 114.47102 -212.91488 + 30.22247 114.47073 -212.91488 + 48.15935 113.75898 -202.20624 + 48.15935 113.75871 -202.20624 + 65.96867 112.84832 -191.54322 65.96867 112.84809 -191.54322 - 83.61790 111.72207 -180.94269 - 83.61790 111.72189 -180.94269 - 101.07053 110.34692 -170.42137 - 101.07053 110.34680 -170.42137 - 118.28739 108.72184 -159.99579 - 118.28739 108.72179 -159.99579 + 83.61789 111.72207 -180.94269 + 83.61789 111.72189 -180.94269 + 101.07053 110.34692 -170.42136 + 101.07053 110.34680 -170.42136 + 118.28739 108.72184 -159.99578 + 118.28739 108.72179 -159.99578 135.22920 106.84674 -149.68226 135.22920 106.84677 -149.68226 151.85666 104.72156 -139.49683 @@ -22718,33 +22850,33 @@ Displacements 194.80128 66.91775 -109.77138 204.01622 49.64092 -100.20291 204.01551 49.70843 -100.20291 - 210.48725 32.10736 -90.82938 - 210.48725 32.19495 -90.82938 - 214.15397 14.09332 -81.65696 - 214.15397 14.18356 -81.65696 - 214.92880 -4.52368 -72.68916 - 214.92880 -4.43048 -72.68916 - 212.71138 -23.81007 -63.92671 - 212.71138 -23.71369 -63.92671 + 210.48725 32.10736 -90.82937 + 210.48725 32.19495 -90.82937 + 214.15396 14.09332 -81.65695 + 214.15397 14.18356 -81.65695 + 214.92880 -4.52368 -72.68915 + 214.92880 -4.43048 -72.68915 + 212.71137 -23.81007 -63.92670 + 212.71138 -23.71369 -63.92670 207.39218 -43.81472 -55.36748 - 207.39219 -43.71503 -55.36748 + 207.39218 -43.71503 -55.36748 198.85530 -64.56980 -47.00637 198.85531 -64.46552 -47.00637 - 186.94164 -86.59224 -38.83522 - 186.94164 -86.48309 -38.83522 - 171.48177 -109.49279 -30.84259 + 186.94163 -86.59224 -38.83521 + 186.94164 -86.48309 -38.83521 + 171.48176 -109.49279 -30.84259 171.48177 -109.37987 -30.84259 152.34264 -133.19939 -23.01371 152.34264 -133.08285 -23.01371 129.39590 -157.72579 -15.33024 129.45672 -159.16388 -15.33024 - 102.66515 -178.19773 -7.77023 + 102.66514 -178.19773 -7.77023 102.66409 -181.21070 -7.77023 73.55672 -184.08538 -0.30820 - 73.43693 -184.11284 -0.30820 + 73.43693 -184.11283 -0.30820 45.48478 -166.52450 7.08344 - 45.54469 -165.12379 7.08344 - 22.15359 -128.11321 14.43115 + 45.54469 -165.12378 7.08344 + 22.15359 -128.11320 14.43115 22.15367 -128.32833 14.43115 6.01597 -73.04123 21.75709 6.01601 -73.34641 21.75709 @@ -23271,15 +23403,15 @@ Status character 32.14639 128.53682 724.75358 55.12183 1 0 A 32.53698 130.08576 733.55954 55.79158 1 0 A 32.28732 130.08576 731.81246 55.80415 1 0 A - 49.53967 131.63471 740.59906 56.47417 110 0 - + 49.53968 131.63471 740.59906 56.47417 110 0 - 49.55322 131.63471 739.01307 56.48771 110 0 - 216.53536 133.18366 747.78252 57.15802 110 29 - 216.54982 133.18366 746.33401 57.17248 110 29 - - 382.54398 134.73261 755.08820 57.84309 110 51 - - 382.55929 134.73261 753.75802 57.85840 110 51 - - 548.06388 136.28155 762.49856 58.52932 110 72 - - 548.08001 136.28155 761.27091 58.54544 110 72 - - 713.43721 137.83050 769.99919 59.21669 110 93 - + 382.54397 134.73261 755.08820 57.84309 110 51 - + 382.55928 134.73261 753.75802 57.85840 110 51 - + 548.06387 136.28155 762.49856 58.52932 110 72 - + 548.07999 136.28155 761.27091 58.54544 110 72 - + 713.43719 137.83050 769.99919 59.21669 110 93 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23713,8 +23845,8 @@ Status character 302.40039 75.48537 302.40039 25.72882 202 100 P 310.92777 77.03432 310.92777 26.45434 202 100 P 310.10030 77.03432 310.10030 26.45434 202 100 P - 202.01012 78.58326 318.60499 27.17987 110 63 - - 202.01012 78.58326 317.87650 27.17987 110 64 - + 202.01011 78.58326 318.60499 27.17987 110 63 - + 202.01011 78.58326 317.87650 27.17987 110 64 - 34.83989 80.13221 326.36174 27.90539 110 11 - 34.83989 80.13221 325.71668 27.90539 110 11 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -24056,187 +24188,187 @@ Displacements -43.35739 -131.67453 -124.95097 -49.93471 -131.41456 -129.91480 -49.93472 -131.41449 -129.91480 - -69.58044 -130.49307 -144.77505 - -69.58081 -130.48284 -144.77505 + -69.58044 -130.49307 -144.77504 + -69.58081 -130.48284 -144.77504 -89.07089 -129.34964 -159.57523 -89.07051 -129.33950 -159.57523 - -108.37327 -127.99565 -174.29854 - -108.37327 -127.99575 -174.29854 - -127.45876 -126.44284 -188.92830 + -108.37327 -127.99565 -174.29853 + -108.37327 -127.99575 -174.29853 + -127.45877 -126.44284 -188.92830 -127.45876 -126.44305 -188.92830 - -146.29160 -124.62740 -203.44805 - -146.29160 -124.62770 -203.44805 - -164.82951 -122.51011 -217.84153 - -164.82951 -122.51048 -217.84153 + -146.29160 -124.62740 -203.44804 + -146.29160 -124.62770 -203.44804 + -164.82951 -122.51011 -217.84152 + -164.82951 -122.51048 -217.84152 -183.02749 -120.09476 -232.09273 -183.02748 -120.09519 -232.09273 - -200.84112 -117.38553 -246.18596 - -200.84112 -117.38602 -246.18596 + -200.84112 -117.38553 -246.18595 + -200.84112 -117.38602 -246.18595 -218.22667 -114.38689 -260.10583 -218.22667 -114.38742 -260.10583 - -235.14106 -111.10356 -273.83735 - -235.14106 -111.10413 -273.83735 - -251.54195 -107.54050 -287.36591 - -251.54195 -107.54110 -287.36591 - -267.38777 -103.70283 -300.67735 - -267.38777 -103.70347 -300.67735 - -282.63771 -99.59586 -313.75801 - -282.63772 -99.65579 -313.75801 + -235.14106 -111.10356 -273.83734 + -235.14106 -111.10413 -273.83734 + -251.54195 -107.54050 -287.36590 + -251.54195 -107.54110 -287.36590 + -267.38777 -103.70283 -300.67734 + -267.38777 -103.70347 -300.67734 + -282.63771 -99.59586 -313.75800 + -282.63772 -99.65579 -313.75800 -297.60348 -94.86943 -326.92053 -297.60348 -94.99215 -326.92053 - -311.83467 -89.98393 -339.81286 - -311.83467 -90.11217 -339.81286 - -325.29824 -84.88525 -352.42206 - -325.29824 -85.01891 -352.42206 - -337.96165 -79.57646 -364.73590 - -337.96165 -79.71548 -364.73590 - -349.79278 -74.06065 -376.74290 - -349.79278 -74.20493 -376.74290 - -360.76001 -68.34082 -388.43231 - -360.76001 -68.49029 -388.43231 - -370.83219 -62.41995 -399.79417 - -370.83219 -62.57446 -399.79417 - -379.97899 -56.30623 -410.81934 - -379.97899 -56.46569 -410.81934 - -388.17069 -49.99886 -421.49952 - -388.17069 -50.16329 -421.49952 - -395.37737 -43.49635 -431.82726 - -395.37738 -43.66573 -431.82726 - -401.56924 -36.80149 -441.79603 - -401.56924 -36.97574 -441.79603 - -406.71689 -29.91682 -451.40020 - -406.71689 -30.09589 -451.40020 - -410.79130 -22.84474 -460.63510 - -410.79130 -22.93596 -460.63510 - -413.60239 -16.39554 -468.87648 - -413.60239 -16.39584 -468.87648 - -415.46656 -9.67895 -476.62183 - -415.46657 -9.67920 -476.62183 - -416.35878 -2.78841 -481.94887 - -416.35879 -2.78862 -481.94887 - -416.25437 4.27380 -482.56763 - -416.25437 4.27363 -482.56763 - -415.12893 11.50571 -479.91595 - -415.12893 11.50557 -479.91595 - -412.95836 18.90563 -476.45530 - -412.95836 18.90552 -476.45530 - -409.71875 26.47216 -472.67136 - -409.71875 26.47209 -472.67136 - -406.80236 31.86724 -469.83156 - -406.80236 31.86721 -469.83156 - -403.34241 37.34310 -466.83571 - -403.34241 37.34305 -466.83571 - -397.11973 45.62588 -462.05226 - -397.11973 45.62580 -462.05226 - -389.65275 53.93393 -456.92607 - -389.65290 53.93768 -456.92607 - -380.68169 59.02816 -451.19520 - -380.68154 59.03185 -451.19520 - -370.95696 64.25392 -445.10370 - -370.95696 64.25372 -445.10370 - -360.44652 69.20735 -438.66079 - -360.44652 69.20713 -438.66079 - -349.18449 73.89446 -431.87643 - -349.18449 73.89422 -431.87643 - -337.20991 78.31781 -424.76128 - -337.20991 78.31755 -424.76128 - -324.56286 82.48026 -417.32670 - -324.56286 82.47998 -417.32670 - -311.28344 86.38492 -409.58465 - -311.28344 86.38461 -409.58465 - -297.41153 90.03503 -401.54772 - -297.41153 90.03471 -401.54772 - -282.98662 93.43396 -393.22905 - -282.98662 93.43362 -393.22905 - -268.04776 96.58510 -384.64229 - -268.04776 96.58475 -384.64229 - -252.63348 99.49184 -375.80161 - -252.63348 99.49148 -375.80161 - -236.78185 102.15753 -366.72160 - -236.78185 102.15715 -366.72160 - -220.53042 104.58541 -357.41728 - -220.53041 104.58502 -357.41728 - -203.91625 106.77862 -347.90404 - -203.91625 106.77822 -347.90404 - -186.97594 108.74017 -338.19763 - -186.97594 108.73976 -338.19763 + -311.83467 -89.98393 -339.81285 + -311.83467 -90.11217 -339.81285 + -325.29825 -84.88525 -352.42205 + -325.29825 -85.01891 -352.42205 + -337.96165 -79.57646 -364.73589 + -337.96165 -79.71548 -364.73589 + -349.79278 -74.06065 -376.74289 + -349.79278 -74.20493 -376.74289 + -360.76001 -68.34082 -388.43230 + -360.76001 -68.49029 -388.43230 + -370.83219 -62.41994 -399.79416 + -370.83219 -62.57446 -399.79416 + -379.97899 -56.30623 -410.81933 + -379.97899 -56.46569 -410.81933 + -388.17069 -49.99886 -421.49950 + -388.17069 -50.16329 -421.49950 + -395.37737 -43.49635 -431.82725 + -395.37738 -43.66573 -431.82725 + -401.56924 -36.80149 -441.79601 + -401.56924 -36.97574 -441.79601 + -406.71689 -29.91682 -451.40019 + -406.71689 -30.09589 -451.40019 + -410.79130 -22.84474 -460.63509 + -410.79130 -22.93596 -460.63509 + -413.60239 -16.39554 -468.87646 + -413.60239 -16.39584 -468.87646 + -415.46656 -9.67895 -476.62181 + -415.46657 -9.67920 -476.62181 + -416.35878 -2.78841 -481.94886 + -416.35879 -2.78862 -481.94886 + -416.25437 4.27380 -482.56762 + -416.25437 4.27363 -482.56762 + -415.12893 11.50571 -479.91594 + -415.12893 11.50557 -479.91594 + -412.95836 18.90563 -476.45528 + -412.95836 18.90552 -476.45528 + -409.71875 26.47216 -472.67134 + -409.71876 26.47209 -472.67134 + -406.80236 31.86724 -469.83155 + -406.80236 31.86721 -469.83155 + -403.34241 37.34310 -466.83569 + -403.34241 37.34305 -466.83569 + -397.11973 45.62588 -462.05224 + -397.11973 45.62580 -462.05224 + -389.65275 53.93393 -456.92605 + -389.65290 53.93768 -456.92605 + -380.68169 59.02816 -451.19518 + -380.68154 59.03185 -451.19518 + -370.95696 64.25392 -445.10368 + -370.95696 64.25372 -445.10368 + -360.44652 69.20735 -438.66077 + -360.44652 69.20713 -438.66077 + -349.18449 73.89446 -431.87642 + -349.18449 73.89422 -431.87642 + -337.20991 78.31781 -424.76127 + -337.20991 78.31755 -424.76127 + -324.56286 82.48026 -417.32669 + -324.56286 82.47998 -417.32669 + -311.28344 86.38491 -409.58464 + -311.28344 86.38461 -409.58464 + -297.41153 90.03503 -401.54771 + -297.41153 90.03471 -401.54771 + -282.98663 93.43395 -393.22903 + -282.98663 93.43362 -393.22903 + -268.04776 96.58510 -384.64228 + -268.04776 96.58475 -384.64228 + -252.63348 99.49184 -375.80160 + -252.63348 99.49148 -375.80160 + -236.78185 102.15753 -366.72159 + -236.78185 102.15715 -366.72159 + -220.53042 104.58541 -357.41727 + -220.53042 104.58502 -357.41727 + -203.91625 106.77862 -347.90403 + -203.91625 106.77822 -347.90403 + -186.97594 108.74017 -338.19762 + -186.97594 108.73976 -338.19762 -169.74564 110.47291 -328.31408 -169.74564 110.47249 -328.31408 - -152.26106 111.97952 -318.26973 - -152.26106 111.97908 -318.26973 + -152.26106 111.97952 -318.26972 + -152.26106 111.97908 -318.26972 -134.55752 113.26249 -308.08113 -134.55752 113.26205 -308.08113 -116.66995 114.32416 -297.76506 -116.66995 114.32371 -297.76506 -98.63294 115.16666 -287.33846 -98.63294 115.16620 -287.33846 - -80.48076 115.79194 -276.81842 - -80.48076 115.79149 -276.81842 - -62.24740 116.20180 -266.22213 - -62.24740 116.20134 -266.22213 - -43.96656 116.39784 -255.56687 - -43.96656 116.39738 -255.56687 - -25.67172 116.38151 -244.86995 - -25.67172 116.38107 -244.86995 - -7.39614 116.15413 -234.14871 - -7.39614 116.15370 -234.14871 + -80.48077 115.79194 -276.81841 + -80.48077 115.79149 -276.81841 + -62.24740 116.20180 -266.22212 + -62.24740 116.20134 -266.22212 + -43.96656 116.39784 -255.56686 + -43.96656 116.39738 -255.56686 + -25.67173 116.38151 -244.86994 + -25.67173 116.38107 -244.86994 + -7.39615 116.15413 -234.14870 + -7.39615 116.15370 -234.14870 10.82711 115.71688 -223.42045 10.82711 115.71646 -223.42045 28.96516 115.07080 -212.70245 28.96516 115.07042 -212.70245 - 46.98527 114.21688 -202.01188 - 46.98527 114.21653 -202.01188 - 64.85485 113.15600 -191.36582 - 64.85484 113.15568 -191.36582 - 82.54011 111.87196 -180.78119 - 82.54011 111.87170 -180.78119 + 46.98526 114.21688 -202.01188 + 46.98526 114.21653 -202.01188 + 64.85484 113.15600 -191.36581 + 64.85484 113.15568 -191.36581 + 82.54011 111.87196 -180.78118 + 82.54011 111.87170 -180.78118 100.00344 110.33223 -170.27474 100.00344 110.33202 -170.27474 - 117.20465 108.53652 -159.86303 - 117.20465 108.53638 -159.86303 - 134.10356 106.48547 -149.56234 - 134.10356 106.48542 -149.56234 - 150.66012 104.17984 -139.38868 - 150.66011 104.17989 -139.38868 + 117.20465 108.53652 -159.86302 + 117.20465 108.53638 -159.86302 + 134.10356 106.48547 -149.56233 + 134.10356 106.48542 -149.56233 + 150.66011 104.17984 -139.38867 + 150.66011 104.17989 -139.38867 166.83443 101.62126 -129.35773 166.83443 101.66415 -129.35773 181.46965 83.52329 -119.43789 181.46965 83.60768 -119.43789 - 193.33028 66.45047 -109.69142 - 193.33096 66.51530 -109.69142 - 202.49179 49.35347 -100.12966 - 202.49108 49.41990 -100.12966 - 208.92479 31.91072 -90.76137 + 193.33028 66.45047 -109.69141 + 193.33096 66.51530 -109.69141 + 202.49179 49.35347 -100.12965 + 202.49108 49.41990 -100.12965 + 208.92478 31.91072 -90.76137 208.92478 31.99730 -90.76137 212.56645 13.97159 -81.59271 212.56645 14.06087 -81.59271 213.32728 -4.57913 -72.62715 213.32728 -4.48687 -72.62715 211.10612 -23.80050 -63.86541 - 211.10613 -23.70508 -63.86541 - 205.79384 -43.73400 -55.30536 - 205.79385 -43.63530 -55.30536 + 211.10612 -23.70508 -63.86541 + 205.79384 -43.73400 -55.30535 + 205.79385 -43.63530 -55.30535 197.27608 -64.40435 -46.94190 197.27609 -64.30115 -46.94190 - 185.39646 -86.32117 -38.76688 - 185.39646 -86.21319 -38.76688 - 169.98943 -109.08795 -30.76891 + 185.39646 -86.32117 -38.76687 + 185.39646 -86.21319 -38.76687 + 169.98942 -109.08795 -30.76891 169.98943 -108.97634 -30.76891 150.92693 -132.62561 -22.93326 - 150.92694 -132.51053 -22.93326 + 150.92693 -132.51053 -22.93326 128.08670 -156.94116 -15.24168 128.14752 -158.38088 -15.24168 101.49947 -177.15403 -7.67231 101.49841 -180.16883 -7.67231 72.57963 -182.72870 -0.19979 - 72.45975 -182.75555 -0.19979 + 72.45975 -182.75554 -0.19979 44.74276 -164.94234 7.20325 44.80276 -163.54018 7.20325 21.67100 -126.40578 14.56308 21.67107 -126.62167 14.56308 5.81490 -71.17569 21.90160 5.81484 -71.47582 21.90160 - -0.00011 0.17336 29.23375 + -0.00011 0.17336 29.23374 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24759,14 +24891,14 @@ Status character 32.27378 128.53682 634.34393 53.25659 110 0 - 32.93090 130.08576 642.98574 53.98212 110 0 - 32.66866 130.08576 641.03277 53.98212 110 0 - - 50.21227 131.63471 649.64833 54.70764 110 0 - - 50.21227 131.63471 647.89661 54.70764 110 0 - + 50.21228 131.63471 649.64833 54.70764 110 0 - + 50.21228 131.63471 647.89661 54.70764 110 0 - 217.50633 133.18366 656.48894 55.43317 110 33 - 217.50633 133.18366 654.90967 55.43317 110 33 - - 383.82803 134.73261 663.48133 56.15870 110 58 - - 383.82803 134.73261 662.05104 56.15870 110 58 - - 549.67020 136.28155 670.60422 56.88422 110 82 - - 549.67020 136.28155 669.30353 56.88422 110 82 - + 383.82802 134.73261 663.48133 56.15870 110 58 - + 383.82802 134.73261 662.05104 56.15870 110 58 - + 549.67019 136.28155 670.60422 56.88422 110 82 - + 549.67019 136.28155 669.30353 56.88422 110 82 - 677.84012 137.83050 677.84012 57.60975 202 100 P [END OF DATA] [END OF TABLE] @@ -25201,8 +25333,8 @@ Status character 300.59039 75.48537 302.40039 25.72882 110 99 - 308.93514 77.03432 310.92777 26.45434 110 99 - 308.10767 77.03432 310.10030 26.45434 110 99 - - 199.80674 78.58326 318.60499 27.17987 110 63 - - 199.80674 78.58326 317.87650 27.17987 110 63 - + 199.80673 78.58326 318.60499 27.17987 110 63 - + 199.80673 78.58326 317.87650 27.17987 110 63 - 32.40076 80.13221 326.36174 27.90539 110 10 - 32.40076 80.13221 325.71668 27.90539 110 10 - 15.98865 81.68116 334.18515 28.63092 1 0 A @@ -25261,12 +25393,12 @@ CalculationStatus 18.80793 -30.77475 -3.39136 16.59675 19.19600 2 1 9 1.000 0 0 -23.92098 -32.88294 6.76983 16.24830 18.59902 2 3 9 1.000 0 0 -28.70518 -39.45953 6.76983 16.24830 18.59902 2 14 9 1.200 0 0 - -420.21204 -184.10265 -998.86477 77.20799 80.86198 3 0 9 1.000 0 0 - -420.21921 -184.11284 -484.74521 77.20408 80.85869 3 1 9 1.000 0 0 + -420.21204 -184.10264 -998.86457 77.20798 80.86198 3 0 9 1.000 0 0 + -420.21921 -184.11283 -484.74519 77.20408 80.85869 3 1 9 1.000 0 0 -348.11976 -128.00160 -181.75590 57.58640 63.64131 3 3 9 1.000 0 0 -417.74372 -153.60192 -181.75590 57.58640 63.64131 3 14 9 1.200 0 0 - -411.73182 -182.21712 -994.46291 76.02984 79.28254 4 0 9 1.000 0 0 - -416.35879 -182.75555 -482.56763 76.12714 79.41917 4 1 9 1.000 0 0 + -411.73182 -182.21711 -994.46271 76.02984 79.28254 4 0 9 1.000 0 0 + -416.35879 -182.75554 -482.56762 76.12714 79.41917 4 1 9 1.000 0 0 -339.18801 -114.81219 -178.01182 56.51282 62.10748 4 3 9 1.000 0 0 -407.02562 -137.77463 -178.01182 56.51282 62.10748 4 14 9 1.200 0 0 [END OF DATA] @@ -25340,9 +25472,9 @@ Force [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] MaximumMoment=-420.21921 -MaximumShearForce=-184.11284 +MaximumShearForce=-184.11283 MaximumDisplacement=-181.75590 -MaximumPercentageMobilisedMoment=77.20799 +MaximumPercentageMobilisedMoment=77.20798 MaximumPercentageMobilisedResistance=80.86198 VerticalBalanceSummary=0 AllStagesAreStable=1 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shi index 43595f34..80347a40 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44q.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44q.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:19 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44q.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shd index 3d83d2ce..6d47de86 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44r.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44r.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shi index a618e781..0274a2b8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44r.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44r.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:28 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44r.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shd index 6889d87c..d0070abe 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44s.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44s.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shi index 485f65c5..7b76f8fd 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44s.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44s.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:29 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44s.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shd index d48c7e57..f08a05ae 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44t.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44t.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shi index 5f4f8d8e..c1cb7cd7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44t.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44t.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44t.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shd index 5f9c7d31..fb2432e2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44u.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44u.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shi index 70f9e2ef..4715c052 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44u.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:31 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44u.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:30 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44u.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shd index c9fe477d..c5cc94a5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44v.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44v.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shi index b3d508a6..97b8dd63 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-44v.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-44v.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-44v.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shd index cdeb3743..f611528a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.415 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.627 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.415 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.627 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.415 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.627 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shi index bcac8b21..545069aa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:31 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.415 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.627 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shd index 5945bfc6..7a1f1704 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.418 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.627 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.418 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.627 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.418 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.627 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shi index 62d85588..12f032c5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:34 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:33 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.418 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.627 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shd index b70907b5..395baf8d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:37 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:36 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.415 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.630 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.415 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.630 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.415 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.630 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shi index decbd564..5970bde1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:36 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:35 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.415 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.630 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shd index 79af75a1..0a350b5d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:38 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.418 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.630 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,7 +769,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -770,8 +840,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -799,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.418 1.000 0.000 0.000 1.000 1.000 1.000 - -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.630 1.300 0.000 0.000 1.000 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.418 1.000 0.000 0.000 1.000 1.000 1.000 + -1 6 0.900 0.900 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.630 1.300 0.000 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shi index 9071161e..e858878a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.418 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.630 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,7 +768,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -769,8 +839,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -798,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shd index 2662c89c..a9cf830f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:41 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.391 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.166 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -796,9 +867,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.018 +ResistanceFactor=2.038 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -911,7 +1042,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -942,7 +1073,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=8 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.391 1.000 0.000 0.000 1.000 1.000 1.000 - -1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.018 1.300 0.000 0.000 1.100 1.000 1.000 + 1 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 2 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 2 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 3 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 3 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 4 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 4 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4780,7 +4918,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4804,28 +4942,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.04000 - -2.08000 - -2.12000 - -2.16000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4943,20 +5075,20 @@ PartialFactorSet=12 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.75 : Percentage mobilized resistance left - 11.73 : Percentage mobilized resistance right - 311.63 : Effective left - 311.65 : Effective right + 13.32 : Percentage mobilized resistance left + 8.26 : Percentage mobilized resistance right + 280.87 : Effective left + 280.88 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1578.21 : Max effective resistance left - 2657.66 : Max effective resistance right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 73.14 : Vertical force left - 68.78 : Vertical force right + 79.58 : Vertical force left + 74.94 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4966,157 +5098,151 @@ PartialFactorSet=12 [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.83591 - 0.00000 0.00000 -7.82398 - 0.00000 0.00000 -7.81204 - 0.00000 0.00000 -7.80010 - 0.00000 0.00000 -7.78816 - 0.00000 0.00000 -7.77622 - 0.00000 -0.00001 -7.77622 - 0.00000 -0.00001 -7.76429 - 0.00000 -0.00001 -7.75235 - 0.00000 -0.00001 -7.74041 - 0.00000 -0.00001 -7.72847 - 0.00128 0.02564 -7.71653 - 0.00125 0.02523 -7.71653 - 0.00674 0.09714 -7.70857 - 0.02319 0.24446 -7.70061 - 0.05815 0.46720 -7.69266 - 0.11915 0.76535 -7.68475 - 0.21373 1.13891 -7.67688 - 0.21373 1.13891 -7.67688 - 0.26261 1.30595 -7.67375 - 0.31828 1.47807 -7.67063 - 0.38093 1.65528 -7.66754 - 0.45077 1.83756 -7.66447 - 0.52800 2.02492 -7.66143 - 0.52801 2.02483 -7.66143 - 0.79602 2.36559 -7.65253 - 1.07744 2.24845 -7.64409 - 1.31923 1.72092 -7.63621 - 1.48325 1.01317 -7.62904 - 1.56248 0.30769 -7.62268 - 1.56246 0.30769 -7.62268 - 1.55716 -0.39581 -7.61723 - 1.46754 -1.09761 -7.61265 - 1.29379 -1.79801 -7.60883 - 1.03606 -2.49724 -7.60569 - 0.69449 -3.19551 -7.60312 - 0.69449 -3.19547 -7.60312 - 0.26918 -3.89295 -7.60100 - -0.23979 -4.58974 -7.59903 - -0.83233 -5.28584 -7.59688 - -1.50836 -5.98114 -7.59423 - -2.26776 -6.67540 -7.59075 - -2.26776 -6.67552 -7.59075 - -3.10549 -5.89030 -7.58539 - -3.83846 -5.10412 -7.57790 - -4.46653 -4.31664 -7.56785 - -4.98949 -3.52742 -7.55483 - -5.40708 -2.73601 -7.53839 - -5.40707 -2.73624 -7.53839 - -5.71900 -1.94209 -7.51818 - -5.92482 -1.14463 -7.49406 - -6.02406 -0.34328 -7.46597 - -6.01616 0.46257 -7.43383 - -5.90048 1.27353 -7.39759 - -5.90048 1.27329 -7.39759 - -5.67633 2.08997 -7.35723 - -5.34287 2.91296 -7.31298 - -4.89923 3.74283 -7.26517 - -4.34446 4.58009 -7.21408 - -3.67753 5.42519 -7.16002 - -3.67753 5.42503 -7.16002 - -3.15771 4.97348 -7.11778 - -2.68244 4.53393 -7.07432 - -2.25051 4.10669 -7.02983 - -1.86068 3.69203 -6.98445 - -1.51168 3.29018 -6.93836 - -1.51168 3.29011 -6.93836 - -1.20222 2.90124 -6.89172 - -0.93099 2.52550 -6.84461 - -0.69668 2.16300 -6.79713 - -0.49795 1.81383 -6.74937 - -0.33347 1.47806 -6.70142 - -0.33347 1.47804 -6.70142 - -0.14802 0.99960 -6.62932 - -0.03207 0.55146 -6.55710 - 0.01893 0.13368 -6.48480 - 0.00955 -0.25373 -6.41246 - -0.05567 -0.61077 -6.34015 - -0.05566 -0.61079 -6.34015 - -0.17216 -0.93745 -6.26783 - -0.33538 -1.23371 -6.19537 - -0.54075 -1.49947 -6.12259 - -0.78369 -1.73456 -6.04931 - -1.05957 -1.93872 -5.97536 - -1.05956 -1.93889 -5.97536 - -1.36376 -2.11181 -5.90053 - -1.69152 -2.25306 -5.82451 - -2.03806 -2.36207 -5.74703 - -2.39850 -2.43816 -5.66777 - -2.76782 -2.48053 -5.58644 - -2.76781 -2.48095 -5.58644 - -3.14097 -2.48867 -5.50273 - -3.51262 -2.46065 -5.41630 - -3.87732 -2.39570 -5.32685 - -4.22942 -2.29248 -5.23406 - -4.56308 -2.14952 -5.13762 - -4.56306 -2.15020 -5.13762 - -4.87230 -1.96590 -5.03721 - -5.15068 -1.73855 -4.93260 - -5.39162 -1.46633 -4.82356 - -5.58824 -1.14734 -4.70991 - -5.73339 -0.77961 -4.59143 - -5.73338 -0.78046 -4.59143 - -5.81971 -0.36191 -4.46793 - -5.83931 0.10956 -4.33941 - -5.78409 0.63606 -4.20590 - -5.64564 1.21966 -4.06747 - -5.41523 1.86244 -3.92415 - -5.41524 1.86164 -3.92415 - -5.08398 2.56561 -3.77606 - -4.64240 3.33271 -3.62356 - -4.08092 4.16467 -3.46715 - -3.38968 5.06305 -3.30732 - -2.55862 6.02917 -3.14456 - -2.55865 6.02882 -3.14456 - -1.57757 7.06380 -2.97942 - -0.43603 8.16842 -2.81291 - 0.87645 9.34304 -2.64616 - 2.37037 10.58749 -2.48030 - 4.05616 11.90118 -2.31649 - 4.05891 11.88172 -2.31649 - 5.62970 9.08482 -2.15627 - 6.79193 6.43934 -2.00093 - 7.57354 4.03463 -1.85117 - 8.01771 1.93785 -1.70766 - 8.16960 0.13513 -1.57112 - 8.16829 0.13504 -1.57112 - 8.07088 -1.38863 -1.44190 - 7.76490 -2.64827 -1.31965 - 7.28888 -3.65809 -1.20398 - 6.67929 -4.43148 -1.09448 - 5.97063 -4.98101 -0.99078 - 5.97077 -4.97658 -0.99078 - 5.19640 -5.31382 -0.89230 - 4.38672 -5.44896 -0.79830 - 3.57138 -5.39068 -0.70809 - 2.77883 -5.14621 -0.62098 - 2.03654 -4.72132 -0.53627 - 2.03667 -4.71968 -0.53627 - 1.37161 -4.11867 -0.45324 - 0.80972 -3.34452 -0.37137 - 0.37681 -2.39930 -0.29031 - 0.09842 -1.28431 -0.20970 - -0.00002 -0.00012 -0.12916 + 0.00000 0.00000 -6.03943 + 0.00000 0.00000 -6.04955 + 0.00000 0.00000 -6.05967 + 0.00000 0.00000 -6.06980 + 0.00000 0.00000 -6.07992 + 0.00000 0.00000 -6.09004 + -0.00002 0.00008 -6.09004 + -0.00001 0.00008 -6.10016 + 0.00001 0.00008 -6.11028 + 0.00002 0.00008 -6.12040 + 0.00202 0.03998 -6.13052 + 0.01775 0.19468 -6.14065 + 0.01779 0.19496 -6.14065 + 0.04605 0.38130 -6.14740 + 0.09627 0.63422 -6.15416 + 0.17511 0.95371 -6.16098 + 0.28923 1.33975 -6.16787 + 0.44528 1.79233 -6.17487 + 0.44526 1.79267 -6.17487 + 0.70177 1.86235 -6.18450 + 0.91611 1.35203 -6.19462 + 1.06214 0.83782 -6.20533 + 1.13934 0.31948 -6.21671 + 1.14714 -0.20325 -6.22888 + 1.14714 -0.20313 -6.22888 + 1.08495 -0.73056 -6.24189 + 0.95211 -1.26298 -6.25564 + 0.74792 -1.80065 -6.26999 + 0.47169 -2.34377 -6.28482 + 0.12267 -2.89248 -6.29996 + 0.12268 -2.89248 -6.29996 + -0.29988 -3.44687 -6.31526 + -0.79674 -4.00694 -6.33035 + -1.36864 -4.57253 -6.34485 + -2.01631 -5.14335 -6.35838 + -2.74042 -5.71896 -6.37053 + -2.74042 -5.71913 -6.37053 + -3.45706 -5.03076 -6.38080 + -4.08201 -4.34375 -6.38871 + -4.61543 -3.65771 -6.39390 + -5.05743 -2.97222 -6.39599 + -5.40803 -2.28678 -6.39463 + -5.40803 -2.28701 -6.39463 + -5.66724 -1.60109 -6.38950 + -5.83494 -0.91411 -6.38050 + -5.91093 -0.22550 -6.36758 + -5.89497 0.46534 -6.35068 + -5.78671 1.15901 -6.32976 + -5.78672 1.15877 -6.32976 + -5.58578 1.85586 -6.30481 + -5.29164 2.55696 -6.27605 + -4.90372 3.26262 -6.24373 + -4.42138 3.97335 -6.20813 + -3.84392 4.68962 -6.16951 + -3.84392 4.68945 -6.16951 + -3.39369 4.31663 -6.13878 + -2.98030 3.95259 -6.10674 + -2.60287 3.59769 -6.07355 + -2.26045 3.25222 -6.03935 + -1.95210 2.91644 -6.00429 + -1.95210 2.91635 -6.00429 + -1.67684 2.59050 -5.96849 + -1.43367 2.27476 -5.93204 + -1.22155 1.96931 -5.89504 + -1.03946 1.67428 -5.85756 + -0.88634 1.38980 -5.81968 + -0.88634 1.38973 -5.81968 + -0.70868 0.98302 -5.76228 + -0.59022 0.60055 -5.70427 + -0.52729 0.24256 -5.64570 + -0.51622 -0.09073 -5.58664 + -0.55327 -0.39912 -5.52714 + -0.55327 -0.39922 -5.52714 + -0.63471 -0.68253 -5.46721 + -0.75676 -0.94055 -5.40674 + -0.91560 -1.17304 -5.34558 + -1.10738 -1.37966 -5.28360 + -1.32819 -1.56005 -5.22067 + -1.32818 -1.56026 -5.22067 + -1.57408 -1.71399 -5.15663 + -1.84102 -1.84053 -5.09122 + -2.12485 -1.93927 -5.02421 + -2.42137 -2.00948 -4.95536 + -2.72623 -2.05032 -4.88441 + -2.72622 -2.05074 -4.88441 + -3.03500 -2.06129 -4.81112 + -3.34304 -2.04052 -4.73521 + -3.64554 -1.98726 -4.65641 + -3.93753 -1.90024 -4.57448 + -4.21385 -1.77810 -4.48915 + -4.21384 -1.77873 -4.48915 + -4.46921 -1.61998 -4.40015 + -4.69793 -1.42304 -4.30729 + -4.89413 -1.18625 -4.21041 + -5.05172 -0.90789 -4.10933 + -5.16433 -0.58616 -4.00388 + -5.16433 -0.58693 -4.00388 + -5.22542 -0.21997 -3.89393 + -5.22796 0.19413 -3.77945 + -5.16473 0.65724 -3.66052 + -5.02824 1.17123 -3.53718 + -4.81073 1.73793 -3.40950 + -4.81074 1.73723 -3.40950 + -4.50426 2.35845 -3.27756 + -4.10039 3.03590 -3.14173 + -3.59060 3.77112 -3.00245 + -2.96610 4.56548 -2.86015 + -2.21794 5.42014 -2.71529 + -2.21797 5.41984 -2.71529 + -1.33707 6.33577 -2.56837 + -0.31414 7.31366 -2.42028 + 0.86014 8.35377 -2.27205 + 2.19510 9.45597 -2.12468 + 3.70000 10.61966 -1.97919 + 3.70244 10.60243 -1.97919 + 5.09664 8.00689 -1.83700 + 6.11435 5.60821 -1.69921 + 6.79292 3.48588 -1.56644 + 7.17376 1.63647 -1.43929 + 7.29688 0.04753 -1.31837 + 7.29572 0.04749 -1.31837 + 7.19920 -1.29439 -1.20399 + 6.91908 -2.40260 -1.09583 + 6.48947 -3.28982 -0.99352 + 5.94259 -3.96798 -0.89672 + 5.30897 -4.44827 -0.80507 + 5.30908 -4.44433 -0.80507 + 4.61820 -4.73704 -0.71808 + 3.89690 -4.85122 -0.63505 + 3.17137 -4.79459 -0.55540 + 2.46674 -4.57357 -0.47849 + 1.80726 -4.19329 -0.40372 + 1.80738 -4.19184 -0.40372 + 1.21686 -3.65611 -0.33044 + 0.71818 -2.96757 -0.25819 + 0.33413 -2.12806 -0.18666 + 0.08726 -1.13874 -0.11552 + -0.00002 -0.00010 -0.04445 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5152,10 +5278,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5182,7 +5308,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -5192,36 +5318,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.20000 60.51500 0.00000 162.67095 0.00000 - -2.80000 60.70000 0.00000 230.46293 0.00000 - -3.40000 60.83300 0.00000 303.46162 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -5232,36 +5357,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.10000 30.61900 107.20332 0.00000 0.70763 0.00000 3.50120 - -2.50000 33.09500 112.98663 0.00000 0.70763 0.00000 3.41401 - -3.10000 36.80900 121.66449 0.00000 0.70763 0.00000 3.30529 - -3.70000 40.52300 130.34316 0.00000 0.70763 0.00000 3.21652 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5273,149 +5397,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00001 0.00000 1 0 A - 0.00000 0.00000 19.44961 1.59216 1 0 A - 0.00000 0.00000 38.89922 3.18433 1 0 A - 0.00000 0.00000 58.34883 4.77649 1 0 A - 0.00000 0.00000 77.79845 6.36865 1 0 A - 0.00000 0.00000 97.24806 7.96082 1 0 A - 0.00000 0.00000 50.01834 7.96082 1 0 A - 0.00000 0.00000 60.02201 9.55298 1 0 A - 0.00000 0.00000 70.02568 11.14515 1 0 A - 0.00000 0.00000 80.02935 12.73731 1 0 A - 0.00000 0.00000 90.03302 14.32947 1 0 A - 0.48857 0.00000 100.03668 15.92164 110 0 - - 0.48857 0.00000 83.12851 15.92164 110 0 - - 1.56594 0.00000 88.67041 16.98308 110 0 - - 2.64330 0.00000 94.21231 18.04452 110 0 - - 3.72064 0.00000 99.75421 19.10596 110 0 - - 4.79791 0.00000 105.29611 20.16741 110 0 - - 5.87509 0.00000 110.83802 21.22885 110 0 - - 5.87509 0.00000 105.03607 21.22885 110 0 - - 6.05656 0.39240 105.90297 21.40406 110 0 - - 6.23800 0.78480 106.76987 21.57927 110 0 - - 6.41939 1.17720 107.63677 21.75448 110 0 - - 6.60074 1.56960 108.50366 21.92968 110 0 - - 6.78204 1.96200 109.37056 22.10489 110 0 - - 6.78204 1.96200 106.64682 22.10489 110 0 - - 7.32546 3.13920 109.18274 22.63052 110 0 - - 7.86797 4.31640 111.71867 23.15615 110 0 - - 8.40934 5.49360 114.25460 23.68177 110 0 - - 8.94933 6.67080 116.79052 24.20740 110 0 - - 9.48767 7.84800 119.32645 24.73302 110 0 - - 9.48767 7.84800 115.52656 24.73302 110 0 - - 10.02419 9.02520 117.98173 25.25865 110 0 - - 10.55898 10.20240 120.43690 25.78428 110 0 - - 11.09224 11.37960 122.89207 26.30990 110 0 - - 11.62415 12.55680 125.34725 26.83553 110 0 - - 12.15491 13.73400 127.80242 27.36116 110 0 - - 12.15491 13.73400 124.37008 27.36116 110 0 - - 12.68479 14.91120 126.75931 27.88678 110 0 - - 13.21436 16.08840 129.14854 28.41241 110 0 - - 13.74428 17.26560 131.53778 28.93803 110 0 - - 14.27520 18.44280 133.92701 29.46366 110 0 - - 14.80778 19.62000 136.31624 29.98929 110 0 - - 21.81258 19.62000 93.61408 27.88519 110 0 - - 21.92128 20.92800 93.96456 27.98959 110 0 - - 22.03167 22.23600 94.31504 28.09399 110 0 - - 22.14410 23.54400 94.66552 28.19838 110 0 - - 22.25892 24.85200 95.01601 28.30278 110 0 - - 22.37647 26.16000 95.36649 28.40718 110 0 - - 22.37647 26.16000 94.99596 28.40718 110 0 - - 22.49704 27.46800 95.34508 28.51158 110 0 - - 22.62073 28.77600 95.69420 28.61598 110 0 - - 22.74761 30.08400 96.04332 28.72038 110 0 - - 22.87771 31.39200 96.39244 28.82478 110 0 - - 23.01111 32.70000 96.74156 28.92918 110 0 - - 23.01111 32.70000 96.43144 28.92918 110 0 - - 23.14780 34.00800 96.77944 29.03358 110 0 - - 23.28759 35.31600 97.12744 29.13798 110 0 - - 23.43025 36.62400 97.47544 29.24238 110 0 - - 23.57552 37.93200 97.82344 29.34678 110 0 - - 23.72316 39.24000 98.17145 29.45118 110 0 - - 17.35340 39.24000 139.39178 31.67344 110 0 - - 17.87591 40.22100 141.31947 32.11146 110 0 - - 18.40084 41.20200 143.24716 32.54949 110 0 - - 18.92785 42.18300 145.17485 32.98751 110 0 - - 19.45663 43.16400 147.10255 33.42553 110 0 - - 19.98682 44.14500 149.03024 33.86355 110 0 - - 19.98682 44.14500 146.65286 33.86355 110 0 - - 20.51814 45.12600 148.54980 34.30157 110 0 - - 21.05038 46.10700 150.44674 34.73960 110 0 - - 21.58336 47.08800 152.34368 35.17762 110 0 - - 22.11690 48.06900 154.24062 35.61564 110 0 - - 22.65082 49.05000 156.13756 36.05366 110 0 - - 22.65082 49.05000 153.40009 36.05366 110 0 - - 23.45205 50.52150 156.19561 36.71069 110 0 - - 24.25353 51.99300 158.99114 37.36773 110 0 - - 25.05516 53.46450 161.78666 38.02476 110 0 - - 25.85686 54.93600 164.58219 38.68179 110 0 - - 26.65854 56.40750 167.37771 39.33883 110 0 - - 26.65854 56.40750 164.33167 39.33883 110 0 - - 27.46019 57.87900 167.07632 39.99586 110 0 - - 28.26214 59.35050 169.82097 40.65289 110 0 - - 29.06474 60.82200 172.56562 41.30992 110 0 - - 29.86833 62.29350 175.31027 41.96696 110 0 - - 30.67326 63.76500 178.05492 42.62399 110 0 - - 30.67326 63.76500 175.25279 42.62399 110 0 - - 31.47997 65.23650 177.95425 43.28102 110 0 - - 32.28903 66.70800 180.65570 43.93806 110 0 - - 33.10103 68.17950 183.35716 44.59509 110 0 - - 33.91658 69.65100 186.05862 45.25212 110 0 - - 34.73627 71.12250 188.76007 45.90915 110 0 - - 34.73627 71.12250 186.16443 45.90915 110 0 - - 35.56073 72.59400 188.82874 46.56619 110 0 - - 36.39061 74.06550 191.49305 47.22322 110 0 - - 37.22655 75.53700 194.15736 47.88025 110 0 - - 38.06916 77.00850 196.82167 48.53729 110 0 - - 38.91908 78.48000 199.48598 49.19432 110 0 - - 38.91908 78.48000 197.06773 49.19432 110 0 - - 39.77692 79.95150 199.69974 49.85135 110 0 - - 40.64319 81.42300 202.33175 50.50838 110 0 - - 41.51829 82.89450 204.96376 51.16542 110 0 - - 42.40264 84.36600 207.59577 51.82245 110 0 - - 43.29663 85.83750 210.22778 52.47948 110 0 - - 43.29663 85.83750 207.96375 52.47948 110 0 - - 44.20065 87.30900 210.56741 53.13652 110 0 - - 45.11473 88.78050 213.17108 53.79355 110 0 - - 46.03878 90.25200 215.77474 54.45058 110 0 - - 46.97268 91.72350 218.37841 55.10761 110 0 - - 47.91634 93.19500 220.98207 55.76465 110 0 - - 47.91634 93.19500 218.85344 55.76465 110 0 - - 48.86957 94.66650 221.43202 56.42168 110 0 - - 49.83160 96.13800 224.01061 57.07871 110 0 - - 50.80145 97.60950 226.58920 57.73575 110 0 - - 51.77814 99.08100 229.16778 58.39278 110 0 - - 52.76070 100.55250 231.74637 59.04981 110 0 - - 52.76070 100.55250 229.73763 59.04981 110 0 - - 53.74800 102.02400 232.29387 59.70685 110 0 - - 54.73806 103.49550 234.85010 60.36388 110 0 - - 55.72860 104.96700 237.40634 61.02091 110 0 - - 56.71734 106.43850 239.96257 61.67794 110 0 - - 57.70200 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.41416 110.85300 609.04150 45.42350 110 0 - - 27.60110 112.32450 618.28301 46.11275 110 0 - - 29.72539 113.79600 627.52452 46.80200 110 0 - - 31.78006 115.26750 636.76604 47.49125 110 0 - - 31.78006 115.26750 585.69985 47.49125 110 0 - - 33.76147 116.73900 594.20023 48.18050 110 0 - - 35.67322 118.21050 602.70061 48.86975 110 0 - - 37.51923 119.68200 611.20099 49.55900 110 0 - - 39.30342 121.15350 619.70137 50.24825 110 0 - - 41.02973 122.62500 628.20175 50.93750 110 0 - - 41.02973 122.62500 610.51735 50.93750 110 0 - - 42.70373 124.09650 618.77844 51.62675 110 0 - - 44.33296 125.56800 627.03952 52.31600 110 0 - - 45.92433 127.03950 635.30061 53.00525 110 0 - - 47.48473 128.51100 643.56170 53.69450 110 0 - - 49.02106 129.98250 651.82278 54.38375 110 0 - - 49.02106 129.98250 642.44252 54.38375 110 0 - - 50.54062 131.45400 650.58472 55.07300 110 0 - - 52.04852 132.92550 658.72693 55.76225 110 0 - - 53.54837 134.39700 666.86913 56.45150 110 0 - - 55.04378 135.86850 675.01133 57.14075 110 0 - - 56.53837 137.34000 683.15353 57.83000 110 0 - + 0.00000 0.00000 27.59211 1.44679 1 0 A + 0.00000 0.00000 55.18421 2.89358 1 0 A + 0.00000 0.00000 82.77632 4.34037 1 0 A + 0.00000 0.00000 110.36843 5.78715 1 0 A + 0.00000 0.00000 137.96054 7.23394 1 0 A + 0.00000 0.00000 68.20749 7.23394 1 0 A + 0.00000 0.00000 81.84899 8.68073 1 0 A + 0.00000 0.00000 95.49049 10.12752 1 0 A + 0.00000 0.00000 109.13199 11.57431 1 0 A + 0.76005 0.00000 122.77349 13.02110 110 0 - + 2.18659 0.00000 136.41499 14.46788 110 0 - + 2.18659 0.00000 111.45332 14.46788 110 0 - + 3.13761 0.00000 118.88354 15.43241 110 0 - + 4.08861 0.00000 126.31376 16.39693 110 0 - + 5.03951 0.00000 133.74398 17.36146 110 0 - + 5.99025 0.00000 141.17421 18.32599 110 0 - + 6.94077 0.00000 148.60443 19.29051 110 0 - + 6.94077 0.00000 137.71826 19.29051 110 0 - + 7.45220 1.30800 141.50704 19.82121 110 0 - + 7.96267 2.61600 145.29582 20.35192 110 0 - + 8.47197 3.92400 149.08461 20.88262 110 0 - + 8.97990 5.23200 152.87339 21.41333 110 0 - + 9.48627 6.54000 156.66217 21.94403 110 0 - + 9.48627 6.54000 150.27634 21.94403 110 0 - + 9.99096 7.84800 153.91069 22.47473 110 0 - + 10.49416 9.15600 157.54503 23.00544 110 0 - + 10.99615 10.46400 161.17938 23.53614 110 0 - + 11.49721 11.77200 164.81372 24.06684 110 0 - + 11.99762 13.08000 168.44806 24.59755 110 0 - + 11.99762 13.08000 162.75727 24.59755 110 0 - + 12.49774 14.38800 166.26883 25.12825 110 0 - + 12.99825 15.69600 169.78039 25.65895 110 0 - + 13.49995 17.00400 173.29196 26.18966 110 0 - + 14.00361 18.31200 176.80352 26.72036 110 0 - + 14.51001 19.62000 180.31508 27.25106 110 0 - + 19.73327 19.62000 112.91072 24.82969 110 0 - + 19.81801 20.92800 113.33345 24.92265 110 0 - + 19.90464 22.23600 113.75618 25.01561 110 0 - + 19.99345 23.54400 114.17890 25.10857 110 0 - + 20.08474 24.85200 114.60163 25.20153 110 0 - + 20.17879 26.16000 115.02436 25.29449 110 0 - + 20.17879 26.16000 114.42115 25.29449 110 0 - + 20.27585 27.46800 114.84166 25.38745 110 0 - + 20.37601 28.77600 115.26217 25.48041 110 0 - + 20.47931 30.08400 115.68268 25.57337 110 0 - + 20.58578 31.39200 116.10319 25.66633 110 0 - + 20.69548 32.70000 116.52370 25.75929 110 0 - + 20.69548 32.70000 116.01583 25.75929 110 0 - + 20.80840 34.00800 116.43451 25.85225 110 0 - + 20.92437 35.31600 116.85318 25.94521 110 0 - + 21.04318 36.62400 117.27186 26.03817 110 0 - + 21.16463 37.93200 117.69054 26.13113 110 0 - + 21.28848 39.24000 118.10921 26.22409 110 0 - + 16.44243 39.24000 183.43874 28.78144 110 0 - + 16.90192 40.22100 185.97557 29.17947 110 0 - + 17.36401 41.20200 188.51241 29.57750 110 0 - + 17.82842 42.18300 191.04924 29.97553 110 0 - + 18.29485 43.16400 193.58607 30.37355 110 0 - + 18.76301 44.14500 196.12290 30.77158 110 0 - + 18.76301 44.14500 192.60019 30.77158 110 0 - + 19.23264 45.12600 195.09146 31.16961 110 0 - + 19.70355 46.10700 197.58272 31.56764 110 0 - + 20.17558 47.08800 200.07399 31.96566 110 0 - + 20.64857 48.06900 202.56525 32.36369 110 0 - + 21.12236 49.05000 205.05652 32.76172 110 0 - + 21.12236 49.05000 201.00495 32.76172 110 0 - + 21.83421 50.52150 204.66801 33.35876 110 0 - + 22.54727 51.99300 208.33107 33.95580 110 0 - + 23.26144 53.46450 211.99414 34.55284 110 0 - + 23.97660 54.93600 215.65720 35.14988 110 0 - + 24.69264 56.40750 219.32027 35.74693 110 0 - + 24.69264 56.40750 214.81611 35.74693 110 0 - + 25.40954 57.87900 218.40395 36.34397 110 0 - + 26.12754 59.35050 221.99178 36.94101 110 0 - + 26.84689 60.82200 225.57962 37.53805 110 0 - + 27.56789 62.29350 229.16745 38.13509 110 0 - + 28.29078 63.76500 232.75529 38.73213 110 0 - + 28.29078 63.76500 228.61475 38.73213 110 0 - + 29.01592 65.23650 232.13876 39.32917 110 0 - + 29.74378 66.70800 235.66278 39.92621 110 0 - + 30.47484 68.17950 239.18679 40.52326 110 0 - + 31.20959 69.65100 242.71080 41.12030 110 0 - + 31.94851 71.12250 246.23481 41.71734 110 0 - + 31.94851 71.12250 242.40131 41.71734 110 0 - + 32.69214 72.59400 245.87046 42.31438 110 0 - + 33.44101 74.06550 249.33961 42.91142 110 0 - + 34.19564 75.53700 252.80875 43.50846 110 0 - + 34.95655 77.00850 256.27790 44.10550 110 0 - + 35.72426 78.48000 259.74705 44.70255 110 0 - + 35.72426 78.48000 256.17685 44.70255 110 0 - + 36.49928 79.95150 259.59831 45.29959 110 0 - + 37.28204 81.42300 263.01977 45.89663 110 0 - + 38.07285 82.89450 266.44124 46.49367 110 0 - + 38.87206 84.36600 269.86270 47.09071 110 0 - + 39.67998 85.83750 273.28417 47.68775 110 0 - + 39.67998 85.83750 269.94257 47.68775 110 0 - + 40.49694 87.30900 273.32219 48.28479 110 0 - + 41.32293 88.78050 276.70182 48.88183 110 0 - + 42.15785 90.25200 280.08145 49.47888 110 0 - + 43.00156 91.72350 283.46108 50.07592 110 0 - + 43.85397 93.19500 286.84071 50.67296 110 0 - + 43.85397 93.19500 283.69963 50.67296 110 0 - + 44.71487 94.66650 287.04225 51.27000 110 0 - + 45.58357 96.13800 290.38487 51.86704 110 0 - + 46.45918 97.60950 293.72749 52.46408 110 0 - + 47.34082 99.08100 297.07011 53.06112 110 0 - + 48.22758 100.55250 300.41273 53.65817 110 0 - + 48.22758 100.55250 297.44910 53.65817 110 0 - + 49.11846 102.02400 300.75875 54.25521 110 0 - + 50.01168 103.49550 304.06839 54.85225 110 0 - + 50.90520 104.96700 307.37804 55.44929 110 0 - + 51.79698 106.43850 310.68768 56.04633 110 0 - + 52.68498 107.91000 313.99732 56.64337 110 0 - + 18.59731 107.91000 734.00940 36.53923 1 0 A + 18.88833 109.38150 745.49575 37.11102 1 0 A + 20.69072 110.85300 756.98209 37.68281 110 0 - + 22.59023 112.32450 768.46843 38.25461 110 0 - + 24.43351 113.79600 779.95478 38.82640 110 0 - + 26.21450 115.26750 791.44112 39.39820 110 0 - + 26.21450 115.26750 738.87493 39.39820 110 0 - + 27.93007 116.73900 749.59837 39.96999 110 0 - + 29.58350 118.21050 760.32181 40.54178 110 0 - + 31.17833 119.68200 771.04525 41.11358 110 0 - + 32.71813 121.15350 781.76869 41.68537 110 0 - + 34.20642 122.62500 792.49213 42.25717 110 0 - + 34.20642 122.62500 772.62437 42.25717 110 0 - + 35.64820 124.09650 783.07897 42.82896 110 0 - + 37.05021 125.56800 793.53357 43.40075 110 0 - + 38.41858 127.03950 803.98818 43.97255 110 0 - + 39.75944 128.51100 814.44278 44.54434 110 0 - + 41.07892 129.98250 824.89738 45.11614 110 0 - + 41.07892 129.98250 814.08791 45.11614 110 0 - + 42.38354 131.45400 824.40552 45.68793 110 0 - + 43.67781 132.92550 834.72313 46.25972 110 0 - + 44.96494 134.39700 845.04073 46.83152 110 0 - + 46.24813 135.86850 855.35834 47.40331 110 0 - + 47.53059 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5428,10 +5546,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 22.358 'Clay' - -4.00 45.426 'Peat' - -6.00 256.291 'Clay' - -13.00 121.135 'Sand' + 0.00 24.034 'Clay' + -4.00 40.912 'Peat' + -6.00 235.708 'Clay' + -13.00 100.609 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5446,7 +5564,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.20 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -5468,10 +5586,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5507,27 +5625,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 59.75500 0.00000 8.99123 0.00000 - -3.40000 59.77200 0.00000 35.25668 0.00000 - -4.00000 59.89800 0.00000 69.58790 0.00000 - -4.66667 59.20900 0.00000 89.31503 0.00000 - -5.33333 58.67600 0.00000 110.07099 0.00000 - -6.00000 58.25100 0.00000 131.87061 0.00000 - -6.50000 58.76300 0.00000 167.37780 0.00000 - -7.00000 59.13400 0.00000 206.48598 0.00000 - -7.75000 59.54300 0.00000 271.91621 0.00000 - -8.50000 59.84800 0.00000 345.47614 0.00000 - -9.25000 60.08900 0.00000 427.16878 0.00000 - -10.00000 60.28800 0.00000 516.99470 0.00000 - -10.75000 60.45500 0.00000 614.95354 0.00000 - -11.50000 60.59900 36.27400 721.04464 3.71405 - -12.25000 60.72500 36.50100 835.26727 11.91689 - -13.00000 60.83700 36.71200 957.62069 21.79553 - -13.75000 65.59200 36.44300 1259.58412 34.35345 - -14.50000 67.30200 36.20200 1567.65056 48.36323 - -15.25000 68.31000 35.98600 1898.11566 63.82466 - -16.00000 68.98700 35.79600 2254.58535 80.73725 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5544,32 +5662,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 14.98539 0.00000 0.70763 0.00000 8.06968 - -3.10000 5.57100 43.77575 0.00000 0.70763 0.00000 7.85779 - -3.70000 9.28500 57.21870 0.00000 0.70763 0.00000 6.16249 - -4.33333 11.53867 29.59068 0.00000 0.65798 0.00000 2.56448 - -5.00000 12.33200 31.13394 0.00000 0.65798 0.00000 2.52465 - -5.66667 13.12533 32.69943 0.00000 0.65798 0.00000 2.49132 - -6.25000 15.06950 71.01438 0.00000 0.70763 0.00000 4.71246 - -6.75000 18.16450 78.21636 0.00000 0.70763 0.00000 4.30600 - -7.37500 22.03325 87.24031 0.00000 0.70763 0.00000 3.95948 - -8.12500 26.67575 98.07990 0.00000 0.70763 0.00000 3.67674 - -8.87500 31.31825 108.92353 0.00000 0.70763 0.00000 3.47796 - -9.62500 35.96075 119.76789 0.00000 0.70763 0.00000 3.33052 - -10.37500 40.60325 130.61179 0.00000 0.70763 0.00000 3.21678 - -11.12500 45.24575 141.45480 4.95207 0.70763 0.10945 3.12637 - -11.87500 49.88825 152.29683 10.93712 0.70763 0.21923 3.05276 - -12.62500 54.53075 163.13790 13.17152 0.70763 0.24154 2.99167 - -13.37500 60.29825 402.61790 16.74389 0.50000 0.27768 6.67711 - -14.12500 67.19075 410.75525 18.67970 0.50000 0.27801 6.11327 - -14.87500 74.08325 440.62014 20.61524 0.50000 0.27827 5.94764 - -15.62500 80.97575 475.29291 22.55013 0.50000 0.27848 5.86957 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5598,132 +5716,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.78480 0.00000 0.00000 -1 0 - - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.56960 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 5.99416 3.13920 5.99416 0.52563 202 100 P - 11.98831 4.31640 11.98831 1.05125 202 100 P - 16.84931 5.49360 17.98247 1.57688 110 94 - - 17.36058 6.67080 23.97662 2.10251 110 72 - - 17.87348 7.84800 29.97078 2.62813 110 60 - - 17.87348 7.84800 29.18383 2.62813 110 61 - - 18.38822 9.02520 35.02060 3.15376 110 53 - - 18.90468 10.20240 40.85737 3.67938 110 46 - - 19.42267 11.37960 46.69414 4.20501 110 42 - - 19.94201 12.55680 52.53090 4.73064 110 38 - - 20.46251 13.73400 58.36767 5.25626 110 35 - - 20.46251 13.73400 45.77496 5.25626 110 45 - - 20.98389 14.91120 50.35245 5.78189 110 42 - - 21.50557 16.08840 54.92995 6.30752 110 39 - - 22.02690 17.26560 59.50745 6.83314 110 37 - - 22.54723 18.44280 64.08494 7.35877 110 35 - - 23.06590 19.62000 68.66244 7.88439 110 34 - - 13.40381 19.62000 28.57344 7.33121 110 47 - - 13.50392 20.92800 28.98034 7.43561 110 47 - - 13.60233 22.23600 29.38724 7.54001 110 46 - - 13.69869 23.54400 29.79413 7.64441 110 46 - - 13.79267 24.85200 30.20103 7.74881 110 46 - - 13.88392 26.16000 30.60793 7.85321 110 45 - - 13.88392 26.16000 30.13250 7.85321 110 46 - - 13.97215 27.46800 30.53308 7.95761 110 46 - - 14.05726 28.77600 30.93365 8.06201 110 45 - - 14.13918 30.08400 31.33423 8.16641 110 45 - - 14.21787 31.39200 31.73481 8.27081 110 45 - - 14.29328 32.70000 32.13539 8.37521 110 44 - - 14.29328 32.70000 31.71121 8.37521 110 45 - - 14.36539 34.00800 32.10650 8.47961 110 45 - - 14.43439 35.31600 32.50178 8.58401 110 44 - - 14.50054 36.62400 32.89707 8.68840 110 44 - - 14.56407 37.93200 33.29236 8.79280 110 44 - - 14.62522 39.24000 33.68765 8.89720 110 43 - - 23.88859 39.24000 63.72185 9.56855 110 37 - - 24.24213 40.22100 66.63886 10.00657 110 36 - - 24.59324 41.20200 69.55587 10.44459 110 35 - - 24.94227 42.18300 72.47288 10.88262 110 34 - - 25.28954 43.16400 75.38990 11.32064 110 34 - - 25.63539 44.14500 78.30691 11.75866 110 33 - - 25.63539 44.14500 71.55282 11.75866 110 36 - - 25.98011 45.12600 74.21824 12.19668 110 35 - - 26.32392 46.10700 76.88365 12.63470 110 34 - - 26.66698 47.08800 79.54907 13.07273 110 34 - - 27.00948 48.06900 82.21448 13.51075 110 33 - - 27.35161 49.05000 84.87990 13.94877 110 32 - - 27.35161 49.05000 78.04936 13.94877 110 35 - - 27.86445 50.52150 81.72574 14.60580 110 34 - - 28.37703 51.99300 85.40212 15.26283 110 33 - - 28.88946 53.46450 89.07850 15.91987 110 32 - - 29.40183 54.93600 92.75488 16.57690 110 32 - - 29.91422 56.40750 96.43126 17.23393 110 31 - - 29.91422 56.40750 89.54526 17.23393 110 33 - - 30.42663 57.87900 92.95912 17.89097 110 33 - - 30.93875 59.35050 96.37297 18.54800 110 32 - - 31.45022 60.82200 99.78683 19.20503 110 32 - - 31.96069 62.29350 103.20069 19.86206 110 31 - - 32.46982 63.76500 106.61454 20.51910 110 30 - - 32.46982 63.76500 100.85032 20.51910 110 32 - - 32.97719 65.23650 104.07961 21.17613 110 32 - - 33.48219 66.70800 107.30889 21.83316 110 31 - - 33.98425 68.17950 110.53817 22.49020 110 31 - - 34.48277 69.65100 113.76746 23.14723 110 30 - - 34.97715 71.12250 116.99674 23.80426 110 30 - - 34.97715 71.12250 112.03693 23.80426 110 31 - - 35.46676 72.59400 115.12931 24.46129 110 31 - - 35.95094 74.06550 118.22170 25.11833 110 30 - - 36.42907 75.53700 121.31408 25.77536 110 30 - - 36.90052 77.00850 124.40647 26.43239 110 30 - - 37.36467 78.48000 127.49885 27.08943 110 29 - - 37.36467 78.48000 123.14483 27.08943 110 30 - - 37.82089 79.95150 126.13161 27.74646 110 30 - - 38.26869 81.42300 129.11840 28.40349 110 30 - - 38.70765 82.89450 132.10518 29.06053 110 29 - - 39.13737 84.36600 135.09196 29.71756 110 29 - - 39.55745 85.83750 138.07874 30.37459 110 29 - - 39.55745 85.83750 134.19773 30.37459 110 29 - - 39.96749 87.30900 137.10056 31.03162 110 29 - - 40.36747 88.78050 140.00339 31.68866 110 29 - - 40.75749 90.25200 142.90622 32.34569 110 29 - - 41.13765 91.72350 145.80905 33.00272 110 28 - - 41.50806 93.19500 148.71188 33.65976 110 28 - - 41.50806 93.19500 145.21062 33.65976 110 29 - - 41.86890 94.66650 148.04510 34.31679 110 28 - - 42.22094 96.13800 150.87959 34.97382 110 28 - - 42.56515 97.60950 153.71408 35.63085 110 28 - - 42.90252 99.08100 156.54857 36.28789 110 27 - - 43.23403 100.55250 159.38305 36.94492 110 27 - - 43.23403 100.55250 156.19349 36.94492 110 28 - - 43.56079 102.02400 158.97125 37.60195 110 27 - - 43.88480 103.49550 161.74901 38.25899 110 27 - - 44.20833 104.96700 164.52678 38.91602 110 27 - - 44.53366 106.43850 167.30454 39.57305 110 27 - - 44.86306 107.91000 170.08231 40.23008 110 26 - - 51.59086 107.91000 379.60692 28.42600 110 14 - - 50.67798 109.38150 388.81131 29.11525 110 13 - - 49.81384 110.85300 398.01570 29.80450 110 13 - - 49.00540 112.32450 407.22009 30.49375 110 12 - - 48.25961 113.79600 416.42449 31.18300 110 12 - - 47.58344 115.26750 425.62888 31.87225 110 11 - - 47.58344 115.26750 389.68739 31.87225 110 12 - - 46.98053 116.73900 398.11454 32.56150 110 12 - - 46.44728 118.21050 406.54168 33.25075 110 11 - - 45.97977 119.68200 414.96883 33.94000 110 11 - - 45.57408 121.15350 423.39597 34.62925 110 11 - - 45.22627 122.62500 431.82311 35.31850 110 10 - - 45.22627 122.62500 420.12310 35.31850 110 11 - - 44.93077 124.09650 428.32192 36.00775 110 10 - - 44.68004 125.56800 436.52073 36.69700 110 10 - - 44.46717 127.03950 444.71955 37.38625 110 10 - - 44.28527 128.51100 452.91836 38.07550 110 10 - - 44.12744 129.98250 461.11718 38.76475 110 10 - - 44.12744 129.98250 455.06490 38.76475 110 10 - - 43.98638 131.45400 463.15611 39.45400 110 9 - - 43.85698 132.92550 471.24731 40.14325 110 9 - - 43.73563 134.39700 479.33852 40.83250 110 9 - - 43.61872 135.86850 487.42972 41.52175 110 9 - - 43.50263 137.34000 495.52092 42.21100 110 9 - + 0.00003 0.00000 0.00003 0.00000 202 100 P + 12.89971 1.30800 23.36326 0.53070 110 55 - + 13.45066 2.61600 46.72653 1.06141 110 29 - + 14.00277 3.92400 70.08979 1.59211 110 20 - + 14.55624 5.23200 93.45305 2.12281 110 16 - + 15.11128 6.54000 116.81631 2.65352 110 13 - + 15.11128 6.54000 47.10799 2.65352 110 32 - + 15.66799 7.84800 56.52959 3.18422 110 28 - + 16.22620 9.15600 65.95118 3.71492 110 25 - + 16.78562 10.46400 75.37278 4.24563 110 22 - + 17.34596 11.77200 84.79438 4.77633 110 20 - + 17.90696 13.08000 94.21598 5.30703 110 19 - + 17.90696 13.08000 66.31764 5.30703 110 27 - + 18.46825 14.38800 72.94940 5.83774 110 25 - + 19.02914 15.69600 79.58117 6.36844 110 24 - + 19.58885 17.00400 86.21293 6.89914 110 23 - + 20.14660 18.31200 92.84470 7.42985 110 22 - + 20.70160 19.62000 99.47646 7.96055 110 21 - + 12.34964 19.62000 38.17169 7.25322 110 32 - + 12.45082 20.92800 38.66091 7.34618 110 32 - + 12.55011 22.23600 39.15013 7.43914 110 32 - + 12.64722 23.54400 39.63936 7.53210 110 32 - + 12.74185 24.85200 40.12858 7.62506 110 32 - + 12.83373 26.16000 40.61780 7.71802 110 32 - + 12.83373 26.16000 39.99387 7.71802 110 32 - + 12.92258 27.46800 40.47558 7.81098 110 32 - + 13.00834 28.77600 40.95728 7.90394 110 32 - + 13.09097 30.08400 41.43899 7.99690 110 32 - + 13.17041 31.39200 41.92070 8.08986 110 31 - + 13.24663 32.70000 42.40241 8.18282 110 31 - + 13.24663 32.70000 41.83585 8.18282 110 32 - + 13.31963 34.00800 42.31112 8.27578 110 31 - + 13.38958 35.31600 42.78639 8.36874 110 31 - + 13.45669 36.62400 43.26166 8.46170 110 31 - + 13.52117 37.93200 43.73693 8.55466 110 31 - + 13.58323 39.24000 44.21220 8.64762 110 31 - + 21.82995 39.24000 91.40237 9.49093 110 24 - + 22.16651 40.22100 95.23558 9.88896 110 23 - + 22.50047 41.20200 99.06878 10.28699 110 23 - + 22.83212 42.18300 102.90198 10.68501 110 22 - + 23.16175 43.16400 106.73518 11.08304 110 22 - + 23.48964 44.14500 110.56839 11.48107 110 21 - + 23.48964 44.14500 101.29500 11.48107 110 23 - + 23.81607 45.12600 104.80671 11.87910 110 23 - + 24.14121 46.10700 108.31842 12.27712 110 22 - + 24.46523 47.08800 111.83013 12.67515 110 22 - + 24.78830 48.06900 115.34184 13.07318 110 21 - + 25.11056 49.05000 118.85355 13.47121 110 21 - + 25.11056 49.05000 109.34264 13.47121 110 23 - + 25.59280 50.52150 114.18869 14.06825 110 22 - + 26.07382 51.99300 119.03473 14.66529 110 22 - + 26.55374 53.46450 123.88078 15.26233 110 21 - + 27.03266 54.93600 128.72682 15.85937 110 21 - + 27.51070 56.40750 133.57287 16.45641 110 21 - + 27.51070 56.40750 123.89446 16.45641 110 22 - + 27.98788 57.87900 128.38937 17.05346 110 22 - + 28.46397 59.35050 132.88428 17.65050 110 21 - + 28.93869 60.82200 137.37919 18.24754 110 21 - + 29.41178 62.29350 141.87411 18.84458 110 21 - + 29.88297 63.76500 146.36902 19.44162 110 20 - + 29.88297 63.76500 138.20216 19.44162 110 22 - + 30.35191 65.23650 142.44627 20.03866 110 21 - + 30.81814 66.70800 146.69039 20.63570 110 21 - + 31.28116 68.17950 150.93450 21.23274 110 21 - + 31.74050 69.65100 155.17861 21.82979 110 20 - + 32.19565 71.12250 159.42272 22.42683 110 20 - + 32.19565 71.12250 152.35575 22.42683 110 21 - + 32.64611 72.59400 156.41173 23.02387 110 21 - + 33.09132 74.06550 160.46771 23.62091 110 21 - + 33.53078 75.53700 164.52368 24.21795 110 20 - + 33.96395 77.00850 168.57966 24.81499 110 20 - + 34.39032 78.48000 172.63564 25.41203 110 20 - + 34.39032 78.48000 166.40568 25.41203 110 21 - + 34.80938 79.95150 170.31528 26.00908 110 20 - + 35.22071 81.42300 174.22489 26.60612 110 20 - + 35.62398 82.89450 178.13450 27.20316 110 20 - + 36.01885 84.36600 182.04410 27.80020 110 20 - + 36.40501 85.83750 185.95371 28.39724 110 20 - + 36.40501 85.83750 180.38244 28.39724 110 20 - + 36.78214 87.30900 184.17492 28.99428 110 20 - + 37.15023 88.78050 187.96739 29.59132 110 20 - + 37.50939 90.25200 191.75986 30.18836 110 20 - + 37.85976 91.72350 195.55234 30.78541 110 19 - + 38.20144 93.19500 199.34481 31.38245 110 19 - + 38.20144 93.19500 194.30563 31.38245 110 20 - + 38.53462 94.66650 198.00223 31.97949 110 19 - + 38.86000 96.13800 201.69884 32.57653 110 19 - + 39.17847 97.60950 205.39544 33.17357 110 19 - + 39.49092 99.08100 209.09205 33.77061 110 19 - + 39.79824 100.55250 212.78865 34.36765 110 19 - + 39.79824 100.55250 208.18836 34.36765 110 19 - + 40.10144 102.02400 211.80505 34.96469 110 19 - + 40.40231 103.49550 215.42174 35.56174 110 19 - + 40.70287 104.96700 219.03843 36.15878 110 19 - + 41.00517 106.43850 222.65511 36.75582 110 18 - + 41.31125 107.91000 226.27180 37.35286 110 18 - + 43.88734 107.91000 484.03714 24.09540 110 9 - + 43.03716 109.38150 495.52355 24.66719 110 9 - + 42.23108 110.85300 507.00995 25.23899 110 8 - + 41.47516 112.32450 518.49635 25.81078 110 8 - + 40.77547 113.79600 529.98276 26.38257 110 8 - + 40.13807 115.26750 541.46916 26.95437 110 7 - + 40.13807 115.26750 502.94282 26.95437 110 8 - + 39.56609 116.73900 513.61195 27.52616 110 8 - + 39.05624 118.21050 524.28108 28.09796 110 7 - + 38.60499 119.68200 534.95021 28.66975 110 7 - + 38.20879 121.15350 545.61934 29.24154 110 7 - + 37.86409 122.62500 556.28847 29.81334 110 7 - + 37.86409 122.62500 542.36706 29.81334 110 7 - + 37.56589 124.09650 552.76919 30.38513 110 7 - + 37.30747 125.56800 563.17132 30.95693 110 7 - + 37.08269 127.03950 573.57345 31.52872 110 6 - + 36.88542 128.51100 583.97558 32.10051 110 6 - + 36.70952 129.98250 594.37771 32.67231 110 6 - + 36.70952 129.98250 586.93748 32.67231 110 6 - + 36.54849 131.45400 597.20940 33.24410 110 6 - + 36.39781 132.92550 607.48132 33.81589 110 6 - + 36.25427 134.39700 617.75323 34.38769 110 6 - + 36.11466 135.86850 628.02515 34.95948 110 6 - + 35.97579 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5736,10 +5848,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 31.894 'Clay' - -4.00 28.139 'Peat' - -6.00 247.034 'Clay' - -13.00 138.118 'Sand' + 0.00 32.205 'Clay' + -4.00 26.042 'Peat' + -6.00 227.232 'Clay' + -13.00 115.763 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5747,7 +5859,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5771,28 +5883,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.18000 - -2.31000 - -2.44000 - -2.57000 - -2.70000 - -2.70000 - -2.83000 - -2.96000 - -3.09000 - -3.22000 - -3.35000 - -3.35000 - -3.48000 - -3.61000 - -3.74000 - -3.87000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 + -2.80000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5927,22 +6033,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.84 : Percentage mobilized resistance left - 13.52 : Percentage mobilized resistance right - 303.42 : Effective left - 359.42 : Effective right + 12.72 : Percentage mobilized resistance left + 9.53 : Percentage mobilized resistance right + 268.25 : Effective left + 324.25 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1610.58 : Max effective resistance left - 2657.66 : Max effective resistance right --17279.80 : Max moment left --25718.23 : Max moment right --2820.49 : Max mobilized moment left --2837.06 : Max mobilized moment right - 71.78 : Vertical force left - 77.82 : Vertical force right - 16.3 : Max mobilized moment percentage left - 11.0 : Max mobilized moment percentage right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right +-22259.41 : Max moment left +-32715.60 : Max moment right +-2473.90 : Max mobilized moment left +-2491.58 : Max mobilized moment right + 76.92 : Vertical force left + 85.09 : Vertical force right + 11.1 : Max mobilized moment percentage left + 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -5950,157 +6056,151 @@ Name [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00153 0.01088 7.14681 - 0.05116 1.03199 6.73506 - 0.37587 3.40912 6.32330 - 1.08855 6.07952 5.91093 - 2.19555 8.66650 5.49731 - 3.68432 11.16974 5.08181 - 3.68492 11.17318 5.08181 - 5.54337 13.59219 4.66353 - 7.75832 15.92617 4.24048 - 10.31691 18.17389 3.81047 - 13.20852 20.38228 3.37128 - 16.43362 22.63113 2.92071 - 16.43372 -33.36786 2.92071 - 13.17363 -31.82883 2.61315 - 10.06899 -30.25890 2.30054 - 7.12286 -28.65872 1.98401 - 4.33824 -27.02874 1.66470 - 1.71809 -25.36928 1.34372 - 1.71810 -25.36921 1.34372 - 1.46524 -25.20187 1.31157 - 1.21406 -25.03467 1.27942 - 0.96455 -24.86762 1.24726 - 0.71671 -24.70071 1.21510 - 0.47053 -24.53394 1.18294 - 0.46955 -24.52761 1.18294 - -2.57870 -22.37267 0.76511 - -5.34839 -20.24181 0.34896 - -7.84622 -18.21811 -0.06388 - -10.09244 -16.36384 -0.47179 - -12.10720 -14.65686 -0.87313 - -12.10617 -14.65195 -0.87313 - -13.90782 -13.08960 -1.26645 - -15.51560 -11.66878 -1.65074 - -16.94769 -10.38602 -2.02508 - -18.22178 -9.23754 -2.38852 - -19.35509 -8.21920 -2.74014 - -19.35506 -8.22109 -2.74014 - -20.36444 -7.32843 -3.07910 - -21.26570 -6.55676 -3.40486 - -22.07423 -5.90116 -3.71688 - -22.80481 -5.35654 -4.01464 - -23.47151 -4.91761 -4.29760 - -23.47157 -4.91922 -4.29760 - -24.04707 -3.72013 -4.57190 - -24.46537 -2.56077 -4.82979 - -24.73160 -1.43869 -5.07109 - -24.85057 -0.35139 -5.29562 - -24.82674 0.70366 -5.50318 - -24.82674 0.70261 -5.50318 - -24.66439 1.72793 -5.69369 - -24.36717 2.72605 -5.86737 - -23.93854 3.69948 -6.02451 - -23.38163 4.65065 -6.16540 - -22.69925 5.58197 -6.29033 - -22.69926 5.58102 -6.29033 - -21.89402 6.49485 -6.39968 - -20.96797 7.39346 -6.49408 - -19.92300 8.27904 -6.57426 - -18.76071 9.15366 -6.64092 - -17.48243 10.01928 -6.69478 - -17.48245 10.01851 -6.69478 - -16.49941 9.64077 -6.72727 - -15.55456 9.25483 -6.75343 - -14.64866 8.86239 -6.77361 - -13.78225 8.46510 -6.78815 - -12.95575 8.06447 -6.79741 - -12.95575 8.06388 -6.79741 - -12.16948 7.66136 -6.80171 - -11.42350 7.25828 -6.80135 - -10.71780 6.85592 -6.79659 - -10.05225 6.45547 -6.78771 - -9.42661 6.05804 -6.77496 - -9.42655 6.05719 -6.77496 - -8.56221 5.46914 -6.74920 - -7.78519 4.89346 -6.71605 - -7.09341 4.33313 -6.67612 - -6.48435 3.79087 -6.62999 - -5.95512 3.26916 -6.57828 - -5.95514 3.26824 -6.57828 - -5.50262 2.76932 -6.52150 - -5.12310 2.29523 -6.45998 - -4.81271 1.84793 -6.39398 - -4.56729 1.42922 -6.32377 - -4.38243 1.04084 -6.24963 - -4.38243 1.04016 -6.24963 - -4.25355 0.68369 -6.17176 - -4.17565 0.36070 -6.09022 - -4.14359 0.07272 -6.00505 - -4.15201 -0.17873 -5.91626 - -4.19531 -0.39214 -5.82389 - -4.19531 -0.39278 -5.82389 - -4.26777 -0.56664 -5.72793 - -4.36324 -0.69942 -5.62829 - -4.47546 -0.78956 -5.52487 - -4.59790 -0.83544 -5.41757 - -4.72380 -0.83543 -5.30631 - -4.72379 -0.83615 -5.30631 - -4.84625 -0.78855 -5.19097 - -4.95789 -0.69163 -5.07143 - -5.05118 -0.54361 -4.94764 - -5.11833 -0.34268 -4.81950 - -5.15125 -0.08701 -4.68695 - -5.15125 -0.08778 -4.68695 - -5.14171 0.22451 -4.54990 - -5.08097 0.59529 -4.40840 - -4.96011 1.02642 -4.26257 - -4.76994 1.51967 -4.11251 - -4.50101 2.07682 -3.95833 - -4.50103 2.07617 -3.95833 - -4.14372 2.69891 -3.80016 - -3.68799 3.38883 -3.63841 - -3.12365 4.14734 -3.47357 - -2.44030 4.97564 -3.30611 - -1.62742 5.87470 -3.13655 - -1.62745 5.87449 -3.13655 - -0.67438 6.84510 -2.96543 - 0.42968 7.88771 -2.79371 - 1.69553 9.00233 -2.62250 - 3.13396 10.18852 -2.45288 - 4.75562 11.44539 -2.28596 - 4.75840 11.42588 -2.28596 - 6.25963 8.61360 -2.12325 - 7.35108 5.97344 -1.96595 - 8.06475 3.59499 -1.81471 - 8.44511 1.52712 -1.67017 - 8.53767 -0.24491 -1.53295 - 8.53635 -0.24479 -1.53295 - 8.38434 -1.73668 -1.40337 - 8.02857 -2.96406 -1.28103 - 7.50761 -3.94167 -1.16550 - 6.85787 -4.68335 -1.05634 - 6.11376 -5.20203 -0.95312 - 6.11389 -5.19749 -0.95312 - 5.30864 -5.50503 -0.85525 - 4.47242 -5.61185 -0.76196 - 3.63467 -5.52680 -0.67252 - 2.82361 -5.25726 -0.58625 - 2.06643 -4.80911 -0.50242 - 2.06655 -4.80745 -0.50242 - 1.38996 -4.18503 -0.42028 - 0.81961 -3.39138 -0.33933 - 0.38101 -2.42858 -0.25920 - 0.09942 -1.29798 -0.17951 - -0.00002 -0.00012 -0.09991 + -0.00076 0.01214 6.99532 + 0.07077 1.40628 6.62579 + 0.48896 4.15714 6.25622 + 1.31416 6.83311 5.88592 + 2.53513 9.43394 5.51417 + 4.14057 11.95927 5.14026 + 4.14060 11.96008 5.14026 + 6.11926 14.40935 4.76318 + 8.45956 16.78166 4.38083 + 11.14984 19.07566 3.99091 + 14.17825 21.28954 3.59109 + 17.53501 23.46954 3.17906 + 17.53511 -32.52947 3.17906 + 14.35552 -31.05766 2.89667 + 11.32450 -29.55825 2.60878 + 8.44477 -28.03193 2.31649 + 5.71899 -26.47926 2.02090 + 3.14978 -24.90060 1.72313 + 3.14879 -24.89423 1.72313 + -0.02952 -22.78457 1.32454 + -2.92820 -20.69977 0.92599 + -5.55167 -18.66457 0.52927 + -7.91034 -16.73991 0.13616 + -10.02212 -14.96100 -0.25153 + -10.02108 -14.95603 -0.25153 + -11.90460 -13.32054 -0.63219 + -13.57947 -11.82565 -1.00472 + -15.06421 -10.46814 -1.36811 + -16.37692 -9.24439 -1.72134 + -17.53515 -8.15042 -2.06338 + -17.53513 -8.15225 -2.06338 + -18.55616 -7.18373 -2.39334 + -19.45616 -6.33602 -2.71064 + -20.25092 -5.60431 -3.01473 + -20.95557 -4.98355 -3.30507 + -21.58456 -4.46852 -3.58110 + -21.58463 -4.47009 -3.58110 + -22.10780 -3.38390 -3.84231 + -22.48869 -2.33559 -4.08844 + -22.73220 -1.32290 -4.31931 + -22.84294 -0.34353 -4.53476 + -22.82519 0.60482 -4.73462 + -22.82519 0.60386 -4.73462 + -22.68306 1.52355 -4.91881 + -22.42008 2.41688 -5.08751 + -22.03963 3.28615 -5.24100 + -21.54474 4.13362 -5.37952 + -20.93820 4.96151 -5.50335 + -20.93820 4.96063 -5.50335 + -20.22257 5.77109 -5.61279 + -19.39993 6.56624 -5.70844 + -18.47217 7.34809 -5.79092 + -17.44094 8.11857 -5.86086 + -16.30764 8.87948 -5.91890 + -16.30766 8.87876 -5.91890 + -15.43530 8.56674 -5.95506 + -14.59462 8.24543 -5.98530 + -13.78647 7.91643 -6.00993 + -13.01154 7.58128 -6.02926 + -12.27037 7.24142 -6.04360 + -12.27037 7.24086 -6.04360 + -11.56343 6.89764 -6.05324 + -10.89092 6.55234 -6.05845 + -10.25299 6.20617 -6.05947 + -9.64967 5.86026 -6.05654 + -9.08089 5.51569 -6.04991 + -9.08084 5.51487 -6.04991 + -8.29209 5.00285 -6.03355 + -7.57956 4.49919 -6.01004 + -6.94177 4.00680 -5.97993 + -6.37683 3.52833 -5.94376 + -5.88246 3.06620 -5.90210 + -5.88247 3.06530 -5.90210 + -5.45619 2.62172 -5.85543 + -5.09493 2.19873 -5.80405 + -4.79545 1.79825 -5.74823 + -4.55423 1.42210 -5.68822 + -4.36751 1.07198 -5.62429 + -4.36752 1.07131 -5.62429 + -4.23137 0.74882 -5.55663 + -4.14142 0.45551 -5.48533 + -4.09318 0.19291 -5.41042 + -4.08193 -0.03748 -5.33194 + -4.10274 -0.23418 -5.24995 + -4.10274 -0.23480 -5.24995 + -4.15052 -0.39632 -5.16444 + -4.21980 -0.52117 -5.07535 + -4.30496 -0.60784 -4.98260 + -4.40016 -0.65477 -4.88613 + -4.49933 -0.66038 -4.78586 + -4.49932 -0.66106 -4.78586 + -4.59623 -0.62374 -4.68170 + -4.68422 -0.54185 -4.57358 + -4.75647 -0.41369 -4.46142 + -4.80593 -0.23757 -4.34517 + -4.82526 -0.01176 -4.22478 + -4.82526 -0.01248 -4.22478 + -4.80699 0.26479 -4.10018 + -4.74316 0.59526 -3.97142 + -4.62567 0.98065 -3.83861 + -4.44614 1.42266 -3.70185 + -4.19596 1.92291 -3.56126 + -4.19597 1.92230 -3.56126 + -3.86637 2.48238 -3.41696 + -3.44819 3.10377 -3.26930 + -2.93211 3.78778 -3.11875 + -2.30867 4.53553 -2.96576 + -1.56822 5.34797 -2.81076 + -1.56825 5.34776 -2.81076 + -0.70107 6.22561 -2.65428 + 0.30273 7.16931 -2.49717 + 1.45302 8.17891 -2.34045 + 2.75968 9.25405 -2.18510 + 4.23247 10.39394 -2.03212 + 4.23512 10.37530 -2.03212 + 5.60620 7.92604 -1.88290 + 6.61890 5.59611 -1.73852 + 7.29342 3.43405 -1.59960 + 7.66156 1.52100 -1.46673 + 7.76332 -0.12000 -1.34051 + 7.76207 -0.12015 -1.34051 + 7.63717 -1.50338 -1.22124 + 7.32323 -2.64306 -1.10856 + 6.85576 -3.55262 -1.00208 + 6.26832 -4.24469 -0.90142 + 5.59264 -4.73109 -0.80620 + 5.59276 -4.72694 -0.80620 + 4.85948 -5.01850 -0.71587 + 4.09647 -5.12477 -0.62972 + 3.33091 -5.05384 -0.54712 + 2.58884 -4.81248 -0.46740 + 1.89542 -4.40607 -0.38993 + 1.89554 -4.40455 -0.38993 + 1.27542 -3.83708 -0.31401 + 0.75233 -3.11133 -0.23918 + 0.34984 -2.22922 -0.16510 + 0.09132 -1.19198 -0.09143 + -0.00002 -0.00011 -0.01784 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6136,10 +6236,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6166,7 +6266,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -6176,36 +6276,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.05000 60.45400 0.00000 146.53626 0.00000 - -2.70000 60.67300 0.00000 218.80272 0.00000 - -3.35000 60.82300 0.00000 297.17951 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -6216,36 +6315,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.02500 30.15475 106.11937 0.00000 0.70763 0.00000 3.51916 - -2.37500 32.32125 111.17918 0.00000 0.70763 0.00000 3.43982 - -3.02500 36.34475 120.57968 0.00000 0.70763 0.00000 3.31766 - -3.67500 40.36825 129.98155 0.00000 0.70763 0.00000 3.21990 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6257,149 +6355,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.44961 0.00000 19.44961 1.59216 202 100 P - 25.82900 0.00000 38.89922 3.18433 110 66 - - 25.03580 0.00000 58.34883 4.77649 110 43 - - 24.24011 0.00000 77.79845 6.36865 110 31 - - 23.44067 0.00000 97.24806 7.96082 110 24 - - 23.44067 0.00000 50.01834 7.96082 110 47 - - 22.63566 0.00000 60.02201 9.55298 110 38 - - 21.82111 0.00000 70.02568 11.14515 110 31 - - 20.99263 0.00000 80.02935 12.73731 110 26 - - 21.07203 0.00000 90.03302 14.32947 110 23 - - 21.76306 0.00000 100.03668 15.92164 110 22 - - 21.76306 0.00000 83.12851 15.92164 110 26 - - 22.20938 0.00000 88.67041 16.98308 110 25 - - 22.64560 0.00000 94.21231 18.04452 110 24 - - 23.07399 0.00000 99.75421 19.10596 110 23 - - 23.49680 0.00000 105.29611 20.16741 110 22 - - 23.91628 0.00000 110.83802 21.22885 110 22 - - 23.91628 0.00000 105.57478 21.22885 110 23 - - 23.89579 0.09810 105.79261 21.27265 110 23 - - 23.87529 0.19620 106.01045 21.31645 110 23 - - 23.85478 0.29430 106.22828 21.36026 110 22 - - 23.83426 0.39240 106.44612 21.40406 110 22 - - 23.81374 0.49050 106.66396 21.44786 110 22 - - 23.81374 0.49050 104.25913 21.44786 110 23 - - 23.54750 1.76580 107.02715 22.01729 110 22 - - 23.28463 3.04110 109.79517 22.58672 110 21 - - 23.02838 4.31640 112.56319 23.15615 110 0 - - 22.78200 5.59170 115.33121 23.72557 110 0 - - 22.54874 6.86700 118.09923 24.29500 110 0 - - 22.54874 6.86700 113.90536 24.29500 110 0 - - 22.33153 8.14230 116.57509 24.86443 110 0 - - 22.13237 9.41760 119.24481 25.43386 110 0 - - 21.95313 10.69290 121.91454 26.00329 110 0 - - 21.79567 11.96820 124.58426 26.57272 110 0 - - 21.66187 13.24350 127.25399 27.14214 110 0 - - 21.66187 13.24350 123.50392 27.14214 110 0 - - 21.55337 14.51880 126.09497 27.71157 110 0 - - 21.47128 15.79410 128.68602 28.28100 110 0 - - 21.41667 17.06940 131.27707 28.85043 110 0 - - 21.39059 18.34470 133.86812 29.41986 110 0 - - 21.39410 19.62000 136.45917 29.98929 110 0 - - 24.44711 19.62000 93.61408 27.88519 110 0 - - 24.33207 20.92800 93.96456 27.98959 110 0 - - 24.23015 22.23600 94.31504 28.09399 110 0 - - 24.14151 23.54400 94.66552 28.19838 110 0 - - 24.06629 24.85200 95.01601 28.30278 110 0 - - 24.00464 26.16000 95.36649 28.40718 110 0 - - 24.00464 26.16000 94.99596 28.40718 110 0 - - 23.95663 27.46800 95.34508 28.51158 110 0 - - 23.92209 28.77600 95.69420 28.61598 110 0 - - 23.90078 30.08400 96.04332 28.72038 110 0 - - 23.89246 31.39200 96.39244 28.82478 110 0 - - 23.89692 32.70000 96.74156 28.92918 110 0 - - 23.89692 32.70000 96.43144 28.92918 110 0 - - 23.91384 34.00800 96.77944 29.03358 110 0 - - 23.94271 35.31600 97.12744 29.13798 110 0 - - 23.98297 36.62400 97.47544 29.24238 110 0 - - 24.03404 37.93200 97.82344 29.34678 110 0 - - 24.09535 39.24000 98.17145 29.45118 110 0 - - 18.28388 39.24000 139.39178 31.67344 110 0 - - 18.65693 40.22100 141.31947 32.11146 110 0 - - 19.04263 41.20200 143.24716 32.54949 110 0 - - 19.44029 42.18300 145.17485 32.98751 110 0 - - 19.84923 43.16400 147.10255 33.42553 110 0 - - 20.26874 44.14500 149.03024 33.86355 110 0 - - 20.26874 44.14500 146.65286 33.86355 110 0 - - 20.69815 45.12600 148.54980 34.30157 110 0 - - 21.13689 46.10700 150.44674 34.73960 110 0 - - 21.58444 47.08800 152.34368 35.17762 110 0 - - 22.04023 48.06900 154.24062 35.61564 110 0 - - 22.50374 49.05000 156.13756 36.05366 110 0 - - 22.50374 49.05000 153.40009 36.05366 110 0 - - 23.21229 50.52150 156.19561 36.71069 110 0 - - 23.93562 51.99300 158.99114 37.36773 110 0 - - 24.67253 53.46450 161.78666 38.02476 110 0 - - 25.42181 54.93600 164.58219 38.68179 110 0 - - 26.18227 56.40750 167.37771 39.33883 110 0 - - 26.18227 56.40750 164.33167 39.33883 110 0 - - 26.95286 57.87900 167.07632 39.99586 110 0 - - 27.73294 59.35050 169.82097 40.65289 110 0 - - 28.52197 60.82200 172.56562 41.30992 110 0 - - 29.31941 62.29350 175.31027 41.96696 110 0 - - 30.12473 63.76500 178.05492 42.62399 110 0 - - 30.12473 63.76500 175.25279 42.62399 110 0 - - 30.93750 65.23650 177.95425 43.28102 110 0 - - 31.75761 66.70800 180.65570 43.93806 110 0 - - 32.58500 68.17950 183.35716 44.59509 110 0 - - 33.41960 69.65100 186.05862 45.25212 110 0 - - 34.26137 71.12250 188.76007 45.90915 110 0 - - 34.26137 71.12250 186.16443 45.90915 110 0 - - 35.11032 72.59400 188.82874 46.56619 110 0 - - 35.96664 74.06550 191.49305 47.22322 110 0 - - 36.83052 75.53700 194.15736 47.88025 110 0 - - 37.70214 77.00850 196.82167 48.53729 110 0 - - 38.58170 78.48000 199.48598 49.19432 110 0 - - 38.58170 78.48000 197.06773 49.19432 110 0 - - 39.46942 79.95150 199.69974 49.85135 110 0 - - 40.36552 81.42300 202.33175 50.50838 110 0 - - 41.27014 82.89450 204.96376 51.16542 110 0 - - 42.18345 84.36600 207.59577 51.82245 110 0 - - 43.10559 85.83750 210.22778 52.47948 110 0 - - 43.10559 85.83750 207.96375 52.47948 110 0 - - 44.03672 87.30900 210.56741 53.13652 110 0 - - 44.97675 88.78050 213.17108 53.79355 110 0 - - 45.92544 90.25200 215.77474 54.45058 110 0 - - 46.88260 91.72350 218.37841 55.10761 110 0 - - 47.84799 93.19500 220.98207 55.76465 110 0 - - 47.84799 93.19500 218.85344 55.76465 110 0 - - 48.82135 94.66650 221.43202 56.42168 110 0 - - 49.80189 96.13800 224.01061 57.07871 110 0 - - 50.78862 97.60950 226.58920 57.73575 110 0 - - 51.78055 99.08100 229.16778 58.39278 110 0 - - 52.77671 100.55250 231.74637 59.04981 110 0 - - 52.77671 100.55250 229.73763 59.04981 110 0 - - 53.77598 102.02400 232.29387 59.70685 110 0 - - 54.77645 103.49550 234.85010 60.36388 110 0 - - 55.77592 104.96700 237.40634 61.02091 110 0 - - 56.77219 106.43850 239.96257 61.67794 110 0 - - 57.76306 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.76397 110.85300 609.04150 45.42350 110 0 - - 27.96562 112.32450 618.28301 46.11275 110 0 - - 30.10034 113.79600 627.52452 46.80200 110 0 - - 32.16175 115.26750 636.76604 47.49125 110 0 - - 32.16175 115.26750 585.69985 47.49125 110 0 - - 34.14677 116.73900 594.20023 48.18050 110 0 - - 36.05942 118.21050 602.70061 48.86975 110 0 - - 37.90401 119.68200 611.20099 49.55900 110 0 - - 39.68487 121.15350 619.70137 50.24825 110 0 - - 41.40631 122.62500 628.20175 50.93750 110 0 - - 41.40631 122.62500 610.51735 50.93750 110 0 - - 43.07424 124.09650 618.77844 51.62675 110 0 - - 44.69644 125.56800 627.03952 52.31600 110 0 - - 46.28001 127.03950 635.30061 53.00525 110 0 - - 47.83203 128.51100 643.56170 53.69450 110 0 - - 49.35960 129.98250 651.82278 54.38375 110 0 - - 49.35960 129.98250 642.44252 54.38375 110 0 - - 50.87017 131.45400 650.58472 55.07300 110 0 - - 52.36893 132.92550 658.72693 55.76225 110 0 - - 53.85953 134.39700 666.86913 56.45150 110 0 - - 55.34564 135.86850 675.01133 57.14075 110 0 - - 56.83092 137.34000 683.15353 57.83000 110 0 - + 26.55500 0.00000 27.59211 1.44679 110 96 - + 25.84241 0.00000 55.18421 2.89358 110 47 - + 25.12835 0.00000 82.77632 4.34037 110 30 - + 24.41139 0.00000 110.36843 5.78715 110 22 - + 23.69012 0.00000 137.96054 7.23394 110 17 - + 23.69012 0.00000 68.20749 7.23394 110 35 - + 22.96249 0.00000 81.84899 8.68073 110 28 - + 22.22434 0.00000 95.49049 10.12752 110 23 - + 21.47104 0.00000 109.13199 11.57431 110 20 - + 20.69795 0.00000 122.77349 13.02110 110 17 - + 20.82601 0.00000 136.41499 14.46788 110 15 - + 20.82601 0.00000 111.45332 14.46788 110 19 - + 21.22576 0.00000 118.88354 15.43241 110 18 - + 21.61450 0.00000 126.31376 16.39693 110 17 - + 21.99444 0.00000 133.74398 17.36146 110 16 - + 22.36779 0.00000 141.17421 18.32599 110 16 - + 22.73676 0.00000 148.60443 19.29051 110 15 - + 22.73676 0.00000 137.71826 19.29051 110 17 - + 22.47030 1.30800 141.50704 19.82121 110 16 - + 22.20390 2.61600 145.29582 20.35192 110 15 - + 21.94115 3.92400 149.08461 20.88262 110 15 - + 21.68565 5.23200 152.87339 21.41333 110 14 - + 21.44097 6.54000 156.66217 21.94403 110 0 - + 21.44097 6.54000 150.27634 21.94403 110 0 - + 21.21035 7.84800 153.91069 22.47473 110 0 - + 20.99599 9.15600 157.54503 23.00544 110 0 - + 20.79991 10.46400 161.17938 23.53614 110 0 - + 20.62417 11.77200 164.81372 24.06684 110 0 - + 20.47079 13.08000 168.44806 24.59755 110 0 - + 20.47079 13.08000 162.75727 24.59755 110 0 - + 20.34158 14.38800 166.26883 25.12825 110 0 - + 20.23768 15.69600 169.78039 25.65895 110 0 - + 20.16020 17.00400 173.29196 26.18966 110 0 - + 20.11023 18.31200 176.80352 26.72036 110 0 - + 20.08886 19.62000 180.31508 27.25106 110 0 - + 21.96481 19.62000 112.91072 24.82969 110 0 - + 21.84880 20.92800 113.33345 24.92265 110 0 - + 21.74486 22.23600 113.75618 25.01561 110 0 - + 21.65312 23.54400 114.17890 25.10857 110 0 - + 21.57372 24.85200 114.60163 25.20153 110 0 - + 21.50679 26.16000 115.02436 25.29449 110 0 - + 21.50679 26.16000 114.42115 25.29449 110 0 - + 21.45240 27.46800 114.84166 25.38745 110 0 - + 21.41040 28.77600 115.26217 25.48041 110 0 - + 21.38057 30.08400 115.68268 25.57337 110 0 - + 21.36271 31.39200 116.10319 25.66633 110 0 - + 21.35661 32.70000 116.52370 25.75929 110 0 - + 21.35661 32.70000 116.01583 25.75929 110 0 - + 21.36202 34.00800 116.43451 25.85225 110 0 - + 21.37846 35.31600 116.85318 25.94521 110 0 - + 21.40544 36.62400 117.27186 26.03817 110 0 - + 21.44244 37.93200 117.69054 26.13113 110 0 - + 21.48897 39.24000 118.10921 26.22409 110 0 - + 16.94364 39.24000 183.43874 28.78144 110 0 - + 17.26934 40.22100 185.97557 29.17947 110 0 - + 17.60689 41.20200 188.51241 29.57750 110 0 - + 17.95566 42.18300 191.04924 29.97553 110 0 - + 18.31503 43.16400 193.58607 30.37355 110 0 - + 18.68439 44.14500 196.12290 30.77158 110 0 - + 18.68439 44.14500 192.60019 30.77158 110 0 - + 19.06312 45.12600 195.09146 31.16961 110 0 - + 19.45073 46.10700 197.58272 31.56764 110 0 - + 19.84672 47.08800 200.07399 31.96566 110 0 - + 20.25061 48.06900 202.56525 32.36369 110 0 - + 20.66189 49.05000 205.05652 32.76172 110 0 - + 20.66189 49.05000 201.00495 32.76172 110 0 - + 21.29165 50.52150 204.66801 33.35876 110 0 - + 21.93572 51.99300 208.33107 33.95580 110 0 - + 22.59298 53.46450 211.99414 34.55284 110 0 - + 23.26235 54.93600 215.65720 35.14988 110 0 - + 23.94272 56.40750 219.32027 35.74693 110 0 - + 23.94272 56.40750 214.81611 35.74693 110 0 - + 24.63310 57.87900 218.40395 36.34397 110 0 - + 25.33290 59.35050 221.99178 36.94101 110 0 - + 26.04159 60.82200 225.57962 37.53805 110 0 - + 26.75865 62.29350 229.16745 38.13509 110 0 - + 27.48356 63.76500 232.75529 38.73213 110 0 - + 27.48356 63.76500 228.61475 38.73213 110 0 - + 28.21591 65.23650 232.13876 39.32917 110 0 - + 28.95556 66.70800 235.66278 39.92621 110 0 - + 29.70242 68.17950 239.18679 40.52326 110 0 - + 30.45641 69.65100 242.71080 41.12030 110 0 - + 31.21745 71.12250 246.23481 41.71734 110 0 - + 31.21745 71.12250 242.40131 41.71734 110 0 - + 31.98550 72.59400 245.87046 42.31438 110 0 - + 32.76073 74.06550 249.33961 42.91142 110 0 - + 33.54326 75.53700 252.80875 43.50846 110 0 - + 34.33325 77.00850 256.27790 44.10550 110 0 - + 35.13083 78.48000 259.74705 44.70255 110 0 - + 35.13083 78.48000 256.17685 44.70255 110 0 - + 35.93618 79.95150 259.59831 45.29959 110 0 - + 36.74948 81.42300 263.01977 45.89663 110 0 - + 37.57083 82.89450 266.44124 46.49367 110 0 - + 38.40037 84.36600 269.86270 47.09071 110 0 - + 39.23820 85.83750 273.28417 47.68775 110 0 - + 39.23820 85.83750 269.94257 47.68775 110 0 - + 40.08444 87.30900 273.32219 48.28479 110 0 - + 40.93900 88.78050 276.70182 48.88183 110 0 - + 41.80166 90.25200 280.08145 49.47888 110 0 - + 42.67221 91.72350 283.46108 50.07592 110 0 - + 43.55044 93.19500 286.84071 50.67296 110 0 - + 43.55044 93.19500 283.69963 50.67296 110 0 - + 44.43609 94.66650 287.04225 51.27000 110 0 - + 45.32843 96.13800 290.38487 51.86704 110 0 - + 46.22657 97.60950 293.72749 52.46408 110 0 - + 47.12961 99.08100 297.07011 53.06112 110 0 - + 48.03664 100.55250 300.41273 53.65817 110 0 - + 48.03664 100.55250 297.44910 53.65817 110 0 - + 48.94665 102.02400 300.75875 54.25521 110 0 - + 49.85790 103.49550 304.06839 54.85225 110 0 - + 50.76840 104.96700 307.37804 55.44929 110 0 - + 51.67614 106.43850 310.68768 56.04633 110 0 - + 52.57913 107.91000 313.99732 56.64337 110 0 - + 20.50984 107.91000 734.00940 36.53923 110 0 - + 20.75046 109.38150 745.49575 37.11102 110 0 - + 20.99022 110.85300 756.98209 37.68281 110 0 - + 22.25859 112.32450 768.46843 38.25461 110 0 - + 24.15909 113.79600 779.95478 38.82640 110 0 - + 25.99310 115.26750 791.44112 39.39820 110 0 - + 25.99310 115.26750 738.87493 39.39820 110 0 - + 27.75762 116.73900 749.59837 39.96999 110 0 - + 29.45623 118.21050 760.32181 40.54178 110 0 - + 31.09279 119.68200 771.04525 41.11358 110 0 - + 32.67116 121.15350 781.76869 41.68537 110 0 - + 34.19521 122.62500 792.49213 42.25717 110 0 - + 34.19521 122.62500 772.62437 42.25717 110 0 - + 35.67030 124.09650 783.07897 42.82896 110 0 - + 37.10354 125.56800 793.53357 43.40075 110 0 - + 38.50140 127.03950 803.98818 43.97255 110 0 - + 39.87035 128.51100 814.44278 44.54434 110 0 - + 41.21687 129.98250 824.89738 45.11614 110 0 - + 41.21687 129.98250 814.08791 45.11614 110 0 - + 42.54781 131.45400 824.40552 45.68793 110 0 - + 43.86790 132.92550 834.72313 46.25972 110 0 - + 45.18052 134.39700 845.04073 46.83152 110 0 - + 46.48900 135.86850 855.35834 47.40331 110 0 - + 47.79672 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6412,10 +6504,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 88.285 'Clay' - -4.00 48.065 'Peat' - -6.00 254.985 'Clay' - -13.00 122.120 'Sand' + 0.00 86.555 'Clay' + -4.00 43.014 'Peat' + -6.00 232.556 'Clay' + -13.00 101.089 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6430,7 +6522,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.05 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -6452,10 +6544,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6491,27 +6583,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 59.75500 0.00000 10.55221 0.00000 - -3.35000 59.78900 0.00000 40.61526 0.00000 - -4.00000 59.93300 0.00000 78.98783 0.00000 - -4.66667 59.27900 0.00000 99.99586 0.00000 - -5.33333 58.76500 0.00000 122.03151 0.00000 - -6.00000 58.35000 0.00000 145.10928 0.00000 - -6.50000 58.82300 0.00000 181.70389 0.00000 - -7.00000 59.17400 0.00000 221.90084 0.00000 - -7.75000 59.56800 0.00000 288.96438 0.00000 - -8.50000 59.86600 0.00000 364.15694 0.00000 - -9.25000 60.10300 0.00000 447.48137 0.00000 - -10.00000 60.29800 0.00000 538.93827 0.00000 - -10.75000 60.46400 0.00000 638.52740 0.00000 - -11.50000 60.60700 36.30900 746.24820 5.95961 - -12.25000 60.73200 36.53400 862.10000 14.49704 - -13.00000 60.84200 36.74200 986.08217 24.71056 - -13.75000 65.56900 36.47300 1292.86714 37.45998 - -14.50000 67.27700 36.23100 1605.37759 51.66150 - -15.25000 68.28400 36.01600 1940.14003 67.31490 - -16.00000 68.96200 35.82400 2300.82648 84.41969 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -6528,32 +6620,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 16.23417 0.00000 0.70763 0.00000 8.06968 - -3.02500 6.03525 46.25085 0.00000 0.70763 0.00000 7.66345 - -3.67500 10.05875 59.03472 0.00000 0.70763 0.00000 5.86899 - -4.33333 12.46717 31.51203 0.00000 0.65798 0.00000 2.52760 - -5.00000 13.26050 33.05349 0.00000 0.65798 0.00000 2.49263 - -5.66667 14.05383 34.61665 0.00000 0.65798 0.00000 2.46315 - -6.25000 15.99800 73.18922 0.00000 0.70763 0.00000 4.57490 - -6.75000 19.09300 80.39390 0.00000 0.70763 0.00000 4.21065 - -7.37500 22.96175 89.41805 0.00000 0.70763 0.00000 3.89422 - -8.12500 27.60425 100.25674 0.00000 0.70763 0.00000 3.63193 - -8.87500 32.24675 111.09924 0.00000 0.70763 0.00000 3.44528 - -9.62500 36.88925 121.94254 0.00000 0.70763 0.00000 3.30564 - -10.37500 41.53175 132.78551 0.00000 0.70763 0.00000 3.19720 - -11.12500 46.17425 143.62773 7.94615 0.70763 0.17209 3.11056 - -11.87500 50.81675 154.46907 11.38323 0.70763 0.22401 3.03973 - -12.62500 55.45925 165.30955 13.61803 0.70763 0.24555 2.98074 - -13.37500 61.22675 409.04663 16.99923 0.50000 0.27764 6.68085 - -14.12500 68.11925 416.68061 18.93536 0.50000 0.27797 6.11693 - -14.87500 75.01175 446.34992 20.87121 0.50000 0.27824 5.95040 - -15.62500 81.90425 480.91526 22.80638 0.50000 0.27845 5.87168 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6582,132 +6674,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.09810 0.00000 0.00000 -1 0 - - 0.00000 0.19620 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 6.49367 0.56943 1 0 A - 0.00000 3.04110 12.98734 1.13886 1 0 A - 1.83605 4.31640 19.48100 1.70829 110 9 - - 3.22129 5.59170 25.97467 2.27771 110 12 - - 4.59340 6.86700 32.46834 2.84714 110 14 - - 4.59340 6.86700 30.83390 2.84714 110 15 - - 5.94947 8.14230 37.00068 3.41657 110 16 - - 7.28749 9.41760 43.16746 3.98600 110 17 - - 8.60559 10.69290 49.33424 4.55543 110 17 - - 9.90191 11.96820 55.50102 5.12486 110 18 - - 11.17456 13.24350 61.66780 5.69428 110 18 - - 11.17456 13.24350 47.22778 5.69428 110 24 - - 12.42192 14.51880 51.95055 6.26371 110 24 - - 13.64286 15.79410 56.67333 6.83314 110 24 - - 14.83633 17.06940 61.39611 7.40257 110 24 - - 16.00127 18.34470 66.11889 7.97200 110 24 - - 17.13662 19.62000 70.84166 8.54143 110 24 - - 11.38022 19.62000 30.50942 7.94215 110 37 - - 11.70406 20.92800 30.91047 8.04655 110 38 - - 12.01478 22.23600 31.31151 8.15094 110 38 - - 12.31222 23.54400 31.71256 8.25534 110 39 - - 12.59624 24.85200 32.11360 8.35974 110 39 - - 12.86669 26.16000 32.51465 8.46414 110 40 - - 12.86669 26.16000 32.06475 8.46414 110 40 - - 13.12349 27.46800 32.46024 8.56854 110 40 - - 13.36683 28.77600 32.85574 8.67294 110 41 - - 13.59695 30.08400 33.25124 8.77734 110 41 - - 13.81406 31.39200 33.64673 8.88174 110 41 - - 14.01841 32.70000 34.04223 8.98614 110 41 - - 14.01841 32.70000 33.63961 8.98614 110 42 - - 14.21028 34.00800 34.03043 9.09054 110 42 - - 14.39021 35.31600 34.42124 9.19494 110 42 - - 14.55875 36.62400 34.81206 9.29934 110 42 - - 14.71648 37.93200 35.20288 9.40374 110 42 - - 14.86396 39.24000 35.59370 9.50814 110 42 - - 23.61514 39.24000 66.10956 10.22558 110 36 - - 24.11814 40.22100 68.94142 10.66360 110 35 - - 24.60848 41.20200 71.77328 11.10163 110 34 - - 25.08686 42.18300 74.60515 11.53965 110 34 - - 25.55397 43.16400 77.43701 11.97767 110 33 - - 26.01051 44.14500 80.26887 12.41569 110 32 - - 26.01051 44.14500 73.87792 12.41569 110 35 - - 26.45714 45.12600 76.48431 12.85371 110 35 - - 26.89444 46.10700 79.09071 13.29174 110 34 - - 27.32294 47.08800 81.69710 13.72976 110 33 - - 27.74319 48.06900 84.30349 14.16778 110 33 - - 28.15573 49.05000 86.90988 14.60580 110 32 - - 28.15573 49.05000 80.37860 14.60580 110 35 - - 28.76124 50.52150 83.99438 15.26283 110 34 - - 29.35197 51.99300 87.61016 15.91987 110 34 - - 29.92914 53.46450 91.22594 16.57690 110 33 - - 30.49392 54.93600 94.84172 17.23393 110 32 - - 31.04752 56.40750 98.45750 17.89097 110 32 - - 31.04752 56.40750 91.82612 17.89097 110 34 - - 31.59100 57.87900 95.19837 18.54800 110 33 - - 32.12499 59.35050 98.57062 19.20503 110 33 - - 32.65002 60.82200 101.94287 19.86206 110 32 - - 33.16664 62.29350 105.31512 20.51910 110 31 - - 33.67539 63.76500 108.68736 21.17613 110 31 - - 33.67539 63.76500 103.10187 21.17613 110 33 - - 34.17669 65.23650 106.30082 21.83316 110 32 - - 34.67065 66.70800 109.49977 22.49020 110 32 - - 35.15732 68.17950 112.69871 23.14723 110 31 - - 35.63678 69.65100 115.89766 23.80426 110 31 - - 36.10908 71.12250 119.09661 24.46129 110 30 - - 36.10908 71.12250 114.26933 24.46129 110 32 - - 36.57420 72.59400 117.33861 25.11833 110 31 - - 37.03194 74.06550 120.40790 25.77536 110 31 - - 37.48213 75.53700 123.47718 26.43239 110 30 - - 37.92457 77.00850 126.54647 27.08943 110 30 - - 38.35908 78.48000 129.61575 27.74646 110 30 - - 38.35908 78.48000 125.36400 27.74646 110 31 - - 38.78543 79.95150 128.33260 28.40349 110 30 - - 39.20339 81.42300 131.30121 29.06053 110 30 - - 39.61283 82.89450 134.26981 29.71756 110 30 - - 40.01359 84.36600 137.23841 30.37459 110 29 - - 40.40552 85.83750 140.20702 31.03162 110 29 - - 40.40552 85.83750 136.40734 31.03162 110 30 - - 40.78845 87.30900 139.29550 31.68866 110 29 - - 41.16249 88.78050 142.18365 32.34569 110 29 - - 41.52786 90.25200 145.07180 33.00272 110 29 - - 41.88477 91.72350 147.95996 33.65976 110 28 - - 42.23344 93.19500 150.84811 34.31679 110 28 - - 42.23344 93.19500 147.41311 34.31679 110 29 - - 42.57415 94.66650 150.23549 34.97382 110 28 - - 42.90768 96.13800 153.05788 35.63085 110 28 - - 43.23502 97.60950 155.88027 36.28789 110 28 - - 43.55715 99.08100 158.70265 36.94492 110 27 - - 43.87505 100.55250 161.52504 37.60195 110 27 - - 43.87505 100.55250 158.39051 37.60195 110 28 - - 44.18985 102.02400 161.15813 38.25899 110 27 - - 44.50344 103.49550 163.92574 38.91602 110 27 - - 44.81804 104.96700 166.69336 39.57305 110 27 - - 45.13584 106.43850 169.46097 40.23008 110 27 - - 45.45903 107.91000 172.22859 40.88712 110 26 - - 51.74982 107.91000 386.02275 28.89025 110 13 - - 50.81196 109.38150 395.23230 29.57950 110 13 - - 49.92828 110.85300 404.44185 30.26875 110 12 - - 49.10513 112.32450 413.65140 30.95800 110 12 - - 48.34891 113.79600 422.86095 31.64725 110 11 - - 47.66600 115.26750 432.07050 32.33650 110 11 - - 47.66600 115.26750 395.60014 32.33650 110 12 - - 47.05948 116.73900 404.03233 33.02575 110 12 - - 46.52533 118.21050 412.46451 33.71500 110 11 - - 46.05924 119.68200 420.89670 34.40425 110 11 - - 45.65688 121.15350 429.32889 35.09350 110 11 - - 45.31394 122.62500 437.76107 35.78275 110 10 - - 45.31394 122.62500 425.84335 35.78275 110 11 - - 45.02451 124.09650 434.04598 36.47200 110 10 - - 44.78081 125.56800 442.24860 37.16125 110 10 - - 44.57574 127.03950 450.45123 37.85050 110 10 - - 44.40222 128.51100 458.65386 38.53975 110 10 - - 44.25315 129.98250 466.85648 39.22900 110 9 - - 44.25315 129.98250 460.68000 39.22900 110 10 - - 44.12108 131.45400 468.77411 39.91825 110 9 - - 44.00082 132.92550 476.86821 40.60750 110 9 - - 43.88872 134.39700 484.96232 41.29675 110 9 - - 43.78111 135.86850 493.05642 41.98600 110 9 - - 43.67433 137.34000 501.15053 42.67525 110 9 - + 0.00000 0.00000 0.00003 0.00000 1 0 A + 0.00000 1.30800 23.36326 0.53070 1 0 A + 0.00000 2.61600 46.72653 1.06141 1 0 A + 0.53358 3.92400 70.08979 1.59211 110 0 - + 1.85049 5.23200 93.45305 2.12281 110 0 - + 3.15657 6.54000 116.81631 2.65352 110 3 - + 3.15657 6.54000 47.10799 2.65352 110 7 - + 4.44860 7.84800 56.52959 3.18422 110 8 - + 5.72437 9.15600 65.95118 3.71492 110 9 - + 6.98186 10.46400 75.37278 4.24563 110 9 - + 8.21901 11.77200 84.79438 4.77633 110 10 - + 9.43379 13.08000 94.21598 5.30703 110 10 - + 9.43379 13.08000 66.31764 5.30703 110 14 - + 10.62441 14.38800 72.94940 5.83774 110 15 - + 11.78971 15.69600 79.58117 6.36844 110 15 - + 12.92860 17.00400 86.21293 6.89914 110 15 - + 14.03998 18.31200 92.84470 7.42985 110 15 - + 15.12275 19.62000 99.47646 7.96055 110 15 - + 10.11810 19.62000 38.17169 7.25322 110 27 - + 10.42003 20.92800 38.66091 7.34618 110 27 - + 10.70989 22.23600 39.15013 7.43914 110 27 - + 10.98755 23.54400 39.63936 7.53210 110 28 - + 11.25287 24.85200 40.12858 7.62506 110 28 - + 11.50572 26.16000 40.61780 7.71802 110 28 - + 11.50572 26.16000 39.99387 7.71802 110 29 - + 11.74603 27.46800 40.47558 7.81098 110 29 - + 11.97395 28.77600 40.95728 7.90394 110 29 - + 12.18970 30.08400 41.43899 7.99690 110 29 - + 12.39348 31.39200 41.92070 8.08986 110 30 - + 12.58550 32.70000 42.40241 8.18282 110 30 - + 12.58550 32.70000 41.83585 8.18282 110 30 - + 12.76601 34.00800 42.31112 8.27578 110 30 - + 12.93549 35.31600 42.78639 8.36874 110 30 - + 13.09444 36.62400 43.26166 8.46170 110 30 - + 13.24335 37.93200 43.73693 8.55466 110 30 - + 13.38274 39.24000 44.21220 8.64762 110 30 - + 21.32873 39.24000 91.40237 9.49093 110 23 - + 21.79909 40.22100 95.23558 9.88896 110 23 - + 22.25759 41.20200 99.06878 10.28699 110 22 - + 22.70488 42.18300 102.90198 10.68501 110 22 - + 23.14156 43.16400 106.73518 11.08304 110 22 - + 23.56826 44.14500 110.56839 11.48107 110 21 - + 23.56826 44.14500 101.29500 11.48107 110 23 - + 23.98558 45.12600 104.80671 11.87910 110 23 - + 24.39403 46.10700 108.31842 12.27712 110 23 - + 24.79409 47.08800 111.83013 12.67515 110 22 - + 25.18626 48.06900 115.34184 13.07318 110 22 - + 25.57103 49.05000 118.85355 13.47121 110 22 - + 25.57103 49.05000 109.34264 13.47121 110 23 - + 26.13536 50.52150 114.18869 14.06825 110 23 - + 26.68538 51.99300 119.03473 14.66529 110 22 - + 27.22219 53.46450 123.88078 15.26233 110 22 - + 27.74690 54.93600 128.72682 15.85937 110 22 - + 28.26062 56.40750 133.57287 16.45641 110 21 - + 28.26062 56.40750 123.89446 16.45641 110 23 - + 28.76432 57.87900 128.38937 17.05346 110 22 - + 29.25861 59.35050 132.88428 17.65050 110 22 - + 29.74400 60.82200 137.37919 18.24754 110 22 - + 30.22102 62.29350 141.87411 18.84458 110 21 - + 30.69019 63.76500 146.36902 19.44162 110 21 - + 30.69019 63.76500 138.20216 19.44162 110 22 - + 31.15193 65.23650 142.44627 20.03866 110 22 - + 31.60636 66.70800 146.69039 20.63570 110 22 - + 32.05358 68.17950 150.93450 21.23274 110 21 - + 32.49367 69.65100 155.17861 21.82979 110 21 - + 32.92672 71.12250 159.42272 22.42683 110 21 - + 32.92672 71.12250 152.35575 22.42683 110 22 - + 33.35275 72.59400 156.41173 23.02387 110 21 - + 33.77160 74.06550 160.46771 23.62091 110 21 - + 34.18315 75.53700 164.52368 24.21795 110 21 - + 34.58725 77.00850 168.57966 24.81499 110 21 - + 34.98375 78.48000 172.63564 25.41203 110 20 - + 34.98375 78.48000 166.40568 25.41203 110 21 - + 35.37248 79.95150 170.31528 26.00908 110 21 - + 35.75327 81.42300 174.22489 26.60612 110 21 - + 36.12599 82.89450 178.13450 27.20316 110 20 - + 36.49054 84.36600 182.04410 27.80020 110 20 - + 36.84679 85.83750 185.95371 28.39724 110 20 - + 36.84679 85.83750 180.38244 28.39724 110 20 - + 37.19463 87.30900 184.17492 28.99428 110 20 - + 37.53416 88.78050 187.96739 29.59132 110 20 - + 37.86558 90.25200 191.75986 30.18836 110 20 - + 38.18911 91.72350 195.55234 30.78541 110 20 - + 38.50496 93.19500 199.34481 31.38245 110 19 - + 38.50496 93.19500 194.30563 31.38245 110 20 - + 38.81340 94.66650 198.00223 31.97949 110 20 - + 39.11514 96.13800 201.69884 32.57653 110 19 - + 39.41108 97.60950 205.39544 33.17357 110 19 - + 39.70213 99.08100 209.09205 33.77061 110 19 - + 39.98918 100.55250 212.78865 34.36765 110 19 - + 39.98918 100.55250 208.18836 34.36765 110 19 - + 40.27325 102.02400 211.80505 34.96469 110 19 - + 40.55608 103.49550 215.42174 35.56174 110 19 - + 40.83967 104.96700 219.03843 36.15878 110 19 - + 41.12601 106.43850 222.65511 36.75582 110 18 - + 41.41710 107.91000 226.27180 37.35286 110 18 - + 44.41662 107.91000 484.03714 24.09540 110 9 - + 43.49614 109.38150 495.52355 24.66719 110 9 - + 42.62421 110.85300 507.00995 25.23899 110 8 - + 41.80680 112.32450 518.49635 25.81078 110 8 - + 41.04989 113.79600 529.98276 26.38257 110 8 - + 40.35947 115.26750 541.46916 26.95437 110 7 - + 40.35947 115.26750 502.94282 26.95437 110 8 - + 39.73853 116.73900 513.61195 27.52616 110 8 - + 39.18351 118.21050 524.28108 28.09796 110 7 - + 38.69054 119.68200 534.95021 28.66975 110 7 - + 38.25576 121.15350 545.61934 29.24154 110 7 - + 37.87529 122.62500 556.28847 29.81334 110 7 - + 37.87529 122.62500 542.36706 29.81334 110 7 - + 37.54379 124.09650 552.76919 30.38513 110 7 - + 37.25414 125.56800 563.17132 30.95693 110 7 - + 36.99987 127.03950 573.57345 31.52872 110 6 - + 36.77451 128.51100 583.97558 32.10051 110 6 - + 36.57157 129.98250 594.37771 32.67231 110 6 - + 36.57157 129.98250 586.93748 32.67231 110 6 - + 36.38422 131.45400 597.20940 33.24410 110 6 - + 36.20771 132.92550 607.48132 33.81589 110 6 - + 36.03869 134.39700 617.75323 34.38769 110 6 - + 35.87379 135.86850 628.02515 34.95948 110 6 - + 35.70966 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6720,10 +6806,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 15.345 'Clay' - -4.00 26.722 'Peat' - -6.00 252.938 'Clay' - -13.00 138.452 'Sand' + 0.00 12.972 'Clay' + -4.00 23.941 'Peat' + -6.00 230.384 'Clay' + -13.00 115.919 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6803,52 +6889,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -6895,7 +6981,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 168.00000 210000000.000 0 2 0 'Anchor' + -1.50000 141.67839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6922,22 +7008,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 71.84 : Percentage mobilized resistance left - 13.56 : Percentage mobilized resistance right - 634.47 : Effective left - 409.48 : Effective right + 43.01 : Percentage mobilized resistance left + 7.59 : Percentage mobilized resistance right + 545.44 : Effective left + 292.37 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 3019.75 : Max effective resistance right --10540.07 : Max moment left --28008.30 : Max moment right --7076.51 : Max mobilized moment left --3699.87 : Max mobilized moment right - 183.84 : Vertical force left - 97.32 : Vertical force right - 67.1 : Max mobilized moment percentage left - 13.2 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3850.19 : Max effective resistance right +-14781.58 : Max moment left +-35709.89 : Max moment right +-5450.60 : Max mobilized moment left +-2071.19 : Max mobilized moment right + 170.74 : Vertical force left + 75.29 : Vertical force right + 36.9 : Max mobilized moment percentage left + 5.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -6952,144 +7038,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.03242 0.17559 42.23997 - 0.04515 1.20023 32.41834 - 0.43272 4.32621 22.59678 - 1.42861 9.16407 12.77437 - 3.17592 13.88157 2.95018 - 5.51835 17.10448 -6.87670 - 5.56987 16.95231 -6.87670 - 8.17275 17.55270 -16.70802 - 10.80566 17.55270 -26.54639 - 13.43856 17.55270 -36.39409 - 16.07147 17.55270 -46.25340 - 18.70437 17.55270 -56.12658 - 18.70224 -150.45558 -56.12658 - 3.66392 -150.30922 -62.71645 - -11.35928 -150.15318 -69.30773 - -26.36640 -149.98757 -75.89465 - -41.35648 -149.81249 -82.47146 - -56.32858 -149.62806 -89.03241 - -56.32983 -149.61771 -89.03241 - -76.18272 -148.14774 -97.74561 - -95.82847 -146.51076 -106.40684 - -115.24488 -144.70790 -115.00284 - -134.40992 -142.74020 -123.52039 - -153.30165 -140.60861 -131.94625 - -153.30106 -140.60700 -131.94625 - -171.89673 -138.30085 -140.26729 - -190.17407 -135.83219 -148.47106 - -208.11146 -133.20176 -156.54532 - -225.68738 -130.41022 -164.47785 - -242.88038 -127.45820 -172.25642 - -242.88036 -127.46019 -172.25642 - -259.66857 -124.33630 -179.86898 - -276.02961 -121.05276 -187.30438 - -291.94223 -117.61007 -194.55179 - -307.38524 -114.00869 -201.60035 - -322.33751 -110.24901 -208.43922 - -322.33758 -110.25070 -208.43922 - -336.71484 -105.38530 -215.05774 - -350.43425 -100.38313 -221.44653 - -363.47762 -95.24468 -227.59672 - -375.82679 -89.97042 -233.49941 - -387.46371 -84.56077 -239.14572 - -387.46371 -84.56181 -239.14572 - -398.37201 -79.04019 -244.52711 - -408.53512 -73.38408 -249.63672 - -417.93513 -67.59381 -254.46815 - -426.55419 -61.66973 -259.01498 - -434.37446 -55.61215 -263.27083 - -434.37447 -55.61310 -263.27083 - -441.37923 -49.43618 -267.22968 - -447.55154 -43.12639 -270.88742 - -452.87371 -36.68397 -274.24042 - -457.32805 -30.10919 -277.28504 - -460.89695 -23.40228 -280.01768 - -460.89697 -23.40304 -280.01768 - -463.01784 -18.99995 -281.86058 - -464.69406 -14.50993 -283.52580 - -465.91693 -9.93307 -285.01290 - -466.67778 -5.26940 -286.32139 - -466.96792 -0.51900 -287.45081 - -466.96793 -0.51958 -287.45081 - -466.77791 4.33452 -288.40083 - -466.09813 9.27544 -289.17174 - -464.91992 14.30314 -289.76399 - -463.23461 19.41755 -290.17803 - -461.03353 24.61865 -290.41432 - -461.03353 24.61823 -290.41432 - -458.30846 29.88623 -290.47348 - -455.05568 35.17230 -290.35677 - -451.27340 40.47640 -290.06565 - -446.95980 45.79850 -289.60157 - -442.11310 51.13855 -288.96599 - -442.11305 51.13785 -288.96599 - -433.43588 59.16236 -287.62443 - -423.56206 66.36796 -285.87217 - -412.62028 72.75452 -283.71951 - -400.73926 78.32195 -281.17675 - -388.04772 83.07012 -278.25417 - -388.04774 83.06929 -278.25417 - -374.62641 87.62903 -274.96305 - -360.54443 91.47775 -271.31698 - -345.91351 94.61537 -267.32977 - -330.84542 97.04180 -263.01521 - -315.45192 98.75697 -258.38711 - -315.45192 98.75624 -258.38711 - -299.68559 101.81975 -253.45965 - -283.47857 104.36497 -248.24826 - -266.91232 106.39183 -242.76858 - -250.06830 107.90027 -237.03626 - -233.02797 108.89025 -231.06696 - -233.02796 108.88945 -231.06696 - -215.76270 110.77876 -224.87659 - -198.23425 112.23906 -218.48180 - -180.51004 113.27034 -211.89935 - -162.65748 113.87253 -205.14599 - -144.74400 114.04562 -198.23849 - -144.74400 114.04475 -198.23849 - -126.75524 114.83997 -191.19375 - -108.67130 115.25598 -184.02893 - -90.55179 115.29275 -176.76118 - -72.45630 114.95027 -169.40761 - -54.44443 114.22850 -161.98538 - -54.44445 114.22773 -161.98538 - -36.51069 113.96223 -154.51165 - -18.64594 113.34932 -147.00335 - -0.90482 112.38897 -139.47727 - 16.65810 111.08117 -131.95019 - 33.98821 109.42593 -124.43889 - 33.98817 109.42566 -124.43889 - 51.07262 107.95828 -116.96008 - 67.90079 106.16402 -109.52969 - 84.42133 104.04287 -102.16337 - 100.58286 101.59482 -94.87673 - 116.33401 98.81988 -87.68540 - 116.33675 98.80059 -87.68540 - 130.03544 83.69838 -80.92511 - 141.40121 67.69507 -74.27730 - 150.29890 50.79065 -67.74959 - 156.59335 32.98514 -61.34960 - 160.14939 14.27854 -55.08492 - 160.15453 14.25191 -55.08492 - 160.99663 -3.16114 -48.96142 - 159.16501 -21.39775 -42.97714 - 154.53613 -40.45793 -37.12804 - 146.98646 -60.34165 -31.41006 - 136.40740 -80.75006 -25.81914 - 136.41044 -82.59707 -25.81914 - 122.57979 -100.87689 -20.34814 - 106.42758 -113.55249 -14.98277 - 88.79170 -120.67509 -9.70822 - 70.49832 -122.33229 -4.50969 - 52.43857 -117.05838 0.62763 - 52.32679 -117.06695 0.62763 - 35.62875 -104.57621 5.72105 - 21.23711 -86.42187 10.78422 - 9.96878 -62.93568 15.82647 - 2.62214 -34.13471 20.85713 - -0.00626 -0.02621 25.88552 + -0.01244 0.06903 33.20519 + 0.07684 1.64753 29.47363 + 0.64368 6.46323 25.74217 + 2.12103 13.38334 22.00944 + 4.67472 20.62411 18.27407 + 8.29656 27.63074 14.53470 + 8.30802 27.69274 14.53470 + 12.87145 33.07087 10.78905 + 18.20468 37.95690 7.03232 + 24.23382 42.34892 3.25933 + 30.88643 46.28234 -0.53509 + 38.09916 49.82844 -4.35610 + 38.09931 -91.84827 -4.35610 + 28.98815 -90.41016 -6.92015 + 20.01020 -89.18446 -9.49532 + 11.14408 -88.17416 -12.07821 + 2.36810 -87.38177 -14.66541 + -6.33961 -86.80923 -17.25351 + -6.33577 -86.89029 -17.25351 + -17.91415 -86.78110 -20.69990 + -29.47411 -86.59798 -24.13407 + -41.00152 -86.29278 -27.54815 + -52.48009 -85.86550 -30.93430 + -63.89356 -85.31614 -34.28465 + -63.89354 -85.31717 -34.28465 + -75.17035 -83.81115 -37.59130 + -86.23683 -82.16240 -40.84666 + -97.07399 -80.37131 -44.04334 + -107.66287 -78.43822 -47.17396 + -117.98456 -76.36344 -50.23113 + -117.98453 -76.36544 -50.23113 + -128.00116 -73.85950 -53.20756 + -137.67386 -71.20653 -56.09666 + -146.98305 -68.40683 -58.89208 + -155.90918 -65.46073 -61.58747 + -164.43275 -62.36848 -64.17651 + -164.43282 -62.37016 -64.17651 + -172.46154 -58.03819 -66.65296 + -179.90371 -53.57209 -69.01174 + -186.74148 -48.97225 -71.24819 + -192.95705 -44.23907 -73.35764 + -198.53266 -39.37288 -75.33545 + -198.53266 -39.37392 -75.33545 + -203.45191 -34.39287 -77.17727 + -207.69821 -29.27954 -78.88028 + -211.25392 -24.03423 -80.44205 + -214.10148 -18.65720 -81.86016 + -216.22333 -13.14871 -83.13220 + -216.22334 -13.14966 -83.13220 + -217.60329 -7.52771 -84.25612 + -218.22491 -1.77483 -85.23156 + -218.07077 4.10875 -86.05863 + -217.12344 10.12284 -86.73745 + -215.36555 16.26724 -87.26813 + -215.36557 16.26648 -87.26813 + -213.54491 20.16028 -87.56931 + -211.33081 24.13527 -87.78854 + -208.71515 28.19140 -87.92682 + -205.68983 32.32864 -87.98517 + -202.24672 36.54694 -87.96459 + -202.24673 36.54636 -87.96459 + -198.37635 40.87468 -87.86620 + -194.06908 45.28430 -87.69168 + -189.31678 49.77519 -87.44286 + -184.11134 54.34731 -87.12156 + -178.44461 59.00064 -86.72961 + -178.44456 58.99980 -86.72961 + -169.12409 64.86376 -86.01374 + -159.10826 68.27121 -85.15198 + -148.76555 69.22204 -84.15306 + -138.46448 67.71617 -83.02574 + -128.57354 63.75351 -81.77876 + -128.57356 63.75260 -81.77876 + -118.87158 65.44186 -80.42074 + -108.99062 66.13889 -78.96016 + -99.07952 65.84362 -77.40548 + -89.28715 64.55598 -75.76520 + -79.76235 62.27590 -74.04780 + -79.76236 62.27523 -74.04780 + -70.42300 62.13302 -72.26169 + -61.15740 61.29192 -70.41483 + -52.07037 59.75188 -68.51502 + -43.26678 57.51286 -66.57005 + -34.85147 54.57480 -64.58771 + -34.85147 54.57416 -64.58771 + -26.78098 52.93681 -62.57564 + -18.99907 50.72662 -60.54050 + -11.59164 47.94355 -58.48866 + -4.64465 44.58756 -56.42645 + 1.75598 40.65863 -54.36024 + 1.76226 40.62442 -54.36024 + 7.63574 37.60482 -52.29606 + 13.01858 34.08264 -50.23853 + 17.85276 30.40508 -48.19180 + 22.15476 27.02055 -46.16007 + 25.97854 24.02823 -44.14751 + 25.97213 23.99596 -44.14751 + 29.37495 21.43933 -42.15781 + 32.42309 19.26588 -40.19348 + 35.17360 17.47004 -38.25690 + 37.68267 16.04570 -36.35049 + 40.00555 14.98627 -34.47665 + 40.00550 14.98895 -34.47665 + 42.20023 14.33323 -32.63749 + 44.32301 14.02832 -30.83474 + 46.42588 14.06637 -29.07025 + 48.55966 14.43915 -27.34585 + 50.77393 15.13804 -25.66339 + 50.77386 15.14178 -25.66339 + 53.12071 16.20169 -24.02462 + 55.64978 17.56972 -22.43168 + 58.40654 19.23599 -20.88697 + 61.43497 21.19012 -19.39289 + 64.77742 23.42122 -17.95184 + 64.77899 23.41555 -17.95184 + 67.41440 11.96271 -16.56730 + 68.43810 1.91588 -15.24098 + 68.05642 -6.78595 -13.97266 + 66.46653 -14.20354 -12.76211 + 63.85654 -20.39745 -11.60910 + 63.85550 -20.37680 -11.60910 + 60.39192 -25.61560 -10.51216 + 56.22605 -29.74980 -9.46735 + 51.51958 -32.83202 -8.47066 + 46.42662 -34.91072 -7.51813 + 41.09433 -36.03014 -6.60575 + 41.09489 -36.01247 -6.60575 + 35.61779 -36.86677 -5.72904 + 30.07870 -36.84424 -4.88301 + 24.60687 -35.97465 -4.06303 + 19.32741 -34.28289 -3.26442 + 14.36211 -31.78895 -2.48253 + 14.36980 -31.89862 -2.48253 + 9.82323 -28.52678 -1.71247 + 5.88099 -23.77044 -0.95074 + 2.77157 -17.42473 -0.19479 + 0.73257 -9.49906 0.55797 + 0.00064 0.00252 1.31008 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7125,10 +7211,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7165,29 +7251,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 53.13200 0.00000 38.13147 0.00000 - -1.50000 53.43500 0.00000 153.26606 0.00000 - -2.00000 56.65900 45.89800 239.51060 1.18304 - -2.66667 58.46300 44.06500 361.48824 11.88154 - -3.33333 59.36100 42.95400 489.12749 24.13096 - -4.00000 59.90600 42.22100 622.89025 37.82198 - -4.66667 70.57400 41.59300 719.91616 59.26559 - -5.33333 69.67000 41.00400 789.46016 81.00492 - -6.00000 68.84900 40.37000 858.77104 103.04236 - -6.50000 68.24100 40.07300 932.16140 114.88806 - -7.00000 67.81200 39.82900 1010.43175 127.50144 - -7.50000 67.42500 39.71000 1092.01804 140.86292 - -8.28571 66.80100 39.65700 1227.02750 163.36071 - -9.07143 66.12200 39.62500 1374.00539 187.70700 - -9.85714 65.85500 39.60600 1529.91503 213.90131 - -10.64286 65.97500 39.59900 1693.80903 241.94340 - -11.42857 65.65400 39.60000 1863.22277 271.83319 - -12.21429 65.37100 39.30700 2041.28525 303.54588 - -13.00000 65.12200 37.56800 2228.03902 335.90755 - -13.75000 67.03300 36.02700 2686.49316 363.21037 - -14.50000 68.38400 34.59200 3206.69893 390.57567 - -15.25000 69.17300 33.25400 3747.39457 414.73221 - -16.00000 69.70300 32.00500 4313.14360 439.37742 + -0.75000 53.13200 0.00000 58.74308 0.00000 + -1.50000 59.48000 0.00000 213.92070 0.00000 + -2.00000 61.25600 0.00000 325.00869 0.00000 + -2.66667 62.34900 0.00000 483.26370 0.00000 + -3.33333 62.92000 39.81500 649.08942 6.25380 + -4.00000 63.27500 39.16500 822.80070 15.35186 + -4.66667 71.14200 38.61900 910.56207 32.94817 + -5.33333 70.32400 38.13900 990.49637 50.79495 + -6.00000 69.57600 37.55400 1070.09728 68.84072 + -6.50000 69.04000 37.27700 1163.71315 76.96688 + -7.00000 68.70400 37.05100 1265.18769 85.74594 + -7.75000 68.26900 36.90700 1425.43283 100.13097 + -8.50000 67.37800 36.88700 1599.72367 115.95228 + -9.25000 67.23300 36.88000 1787.54639 133.20250 + -10.00000 67.11000 36.88300 1985.58688 151.88154 + -10.75000 67.38200 36.89300 2187.63614 171.98942 + -11.50000 67.16300 36.90900 2397.80662 193.52625 + -12.25000 66.97100 36.92900 2618.02203 216.49217 + -13.00000 66.80300 36.95200 2848.31744 240.88737 + -13.75000 68.45900 36.02700 3433.01501 264.12135 + -14.50000 69.62200 34.59200 4093.16237 287.35594 + -15.25000 70.31500 33.25400 4780.03317 307.24212 + -16.00000 70.78600 32.00500 5498.95199 327.51200 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -7204,29 +7290,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.91707 50.84197 0.00000 2.49156 0.00000 8.59243 - -1.12500 20.20692 153.51278 0.00000 1.53894 0.00000 7.59704 - -1.75000 32.16051 172.48908 2.36608 1.17241 0.07357 5.36338 - -2.33333 39.67219 182.96645 16.04774 1.02016 0.40451 4.61196 - -3.00000 45.10271 191.45888 18.37413 0.92129 0.40738 4.24495 - -3.66667 50.08346 200.64414 20.53653 0.85201 0.41005 4.00620 - -4.33333 53.09954 145.53887 32.16541 0.76517 0.60576 2.74087 - -5.00000 54.24199 104.31599 32.60900 0.73120 0.60118 1.92316 - -5.66667 55.23467 103.96632 33.05617 0.70356 0.59847 1.88227 - -6.25000 57.26078 146.78073 23.69140 0.72322 0.41375 2.56337 - -6.75000 60.37230 156.54070 25.22674 0.70911 0.41785 2.59292 - -7.25000 63.44388 163.17258 26.72296 0.69802 0.42121 2.57192 - -7.89286 67.34610 171.83022 28.63356 0.68723 0.42517 2.55145 - -8.67857 72.06047 187.06277 30.98619 0.67804 0.43000 2.59591 - -9.46429 76.73092 198.43045 33.33821 0.67207 0.43448 2.58606 - -10.25000 81.37112 208.59236 35.68994 0.66839 0.43861 2.56347 - -11.03571 85.99146 215.61748 38.04155 0.66635 0.44239 2.50743 - -11.82143 90.59987 226.62497 40.36160 0.66548 0.44549 2.50138 - -12.60714 95.20234 237.68662 41.18759 0.66542 0.43263 2.49665 - -13.37500 100.82375 611.27218 36.40376 0.47789 0.36106 6.06278 - -14.12500 107.46720 693.60770 36.48706 0.47790 0.33952 6.45413 - -14.87500 114.11437 720.92752 32.20872 0.47821 0.28225 6.31759 - -15.62500 120.76679 754.33203 32.86028 0.47872 0.27210 6.24619 + -0.37500 5.91707 78.32410 0.00000 2.43014 0.00000 13.23698 + -1.12500 20.20692 206.90350 0.00000 1.48498 0.00000 10.23924 + -1.75000 32.16051 222.17598 0.00000 1.11967 0.00000 6.90835 + -2.33333 39.67219 237.38251 0.00000 0.96794 0.00000 5.98360 + -3.00000 45.10271 248.73857 9.38070 0.86945 0.20799 5.51494 + -3.66667 50.08346 260.56693 13.64709 0.80000 0.27249 5.20265 + -4.33333 53.09954 131.64206 26.39447 0.70709 0.49708 2.47916 + -5.00000 54.24199 119.90145 26.77017 0.67329 0.49353 2.21049 + -5.66667 55.23467 119.40135 27.06865 0.64566 0.49007 2.16171 + -6.25000 57.26078 187.23175 16.25232 0.67097 0.28383 3.26981 + -6.75000 60.37230 202.94909 17.55810 0.65624 0.29083 3.36163 + -7.37500 64.20643 213.66018 19.18004 0.64204 0.29872 3.32771 + -8.12500 68.74452 232.38779 21.09509 0.62968 0.30686 3.38046 + -8.87500 73.23160 250.43030 23.00030 0.62110 0.31408 3.41970 + -9.62500 77.68213 264.05399 24.90538 0.61526 0.32061 3.39916 + -10.37500 82.10727 269.39901 26.81051 0.61144 0.32653 3.28106 + -11.12500 86.51562 280.22731 28.71577 0.60908 0.33191 3.23904 + -11.87500 90.91381 293.62054 30.62124 0.60779 0.33682 3.22966 + -12.62500 95.30691 307.06055 32.52693 0.60729 0.34129 3.22181 + -13.37500 100.82375 779.59676 30.97864 0.40053 0.30726 7.73227 + -14.12500 107.46720 880.19648 30.97945 0.39986 0.28827 8.19037 + -14.87500 114.11437 915.82773 26.51491 0.39957 0.23235 8.02552 + -15.62500 120.76679 958.55844 27.02650 0.39955 0.22379 7.93727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7244,143 +7330,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.51697 0.00000 19.51697 5.65938 202 100 P - 40.02548 0.00000 40.02548 11.60628 202 100 P - 52.12426 0.00000 62.05941 17.99550 110 84 - - 37.73278 0.00000 85.58758 24.81802 110 44 - - 23.65602 0.00000 110.21970 31.96064 110 0 - - 11.43613 0.00000 97.45134 19.74075 110 0 - - 0.00000 0.00000 119.77683 24.26324 1 0 A - 0.00000 0.00000 142.28023 28.82176 1 0 A - 0.00000 0.00000 164.70023 33.36339 1 0 A - 0.00000 0.00000 186.87625 37.85560 1 0 A - 0.00000 0.00000 208.72337 42.28118 1 0 A - 2.02132 0.00000 147.35515 32.21115 1 0 A - 2.16041 0.00000 157.49553 34.42779 1 0 A - 2.29792 0.00000 167.51997 36.61908 1 0 A - 2.43386 0.00000 177.42992 38.78535 1 0 A - 2.56827 0.00000 187.22874 40.92733 1 0 A - 2.70122 0.00000 196.92097 43.04601 1 0 A - 14.85186 0.00000 169.33180 37.45605 1 0 A - 15.33954 1.30800 174.89194 38.68595 1 0 A - 15.81461 2.61600 180.30847 39.88408 1 0 A - 16.27809 3.92400 185.59276 41.05296 1 0 A - 16.73093 5.23200 190.75574 42.19501 1 0 A - 17.17402 6.54000 195.80767 43.31249 1 0 A - 17.29612 6.54000 180.22598 39.11476 1 0 A - 17.73340 7.84800 184.78240 40.10364 1 0 A - 18.16246 9.15600 189.25326 41.07396 1 0 A - 18.58401 10.46400 193.64576 42.02728 1 0 A - 18.99865 11.77200 197.96640 42.96499 1 0 A - 19.40697 13.08000 202.22101 43.88838 1 0 A - 19.53377 13.08000 190.84708 40.58787 1 0 A - 19.93888 14.38800 194.80505 41.42962 1 0 A - 20.33858 15.69600 198.71015 42.26013 1 0 A - 20.73328 17.00400 202.56638 43.08024 1 0 A - 21.12334 18.31200 206.37738 43.89074 1 0 A - 21.50912 19.62000 210.14642 44.69231 1 0 A - 31.77520 19.62000 143.77324 40.13708 1 0 A - 31.93536 20.92800 144.49792 40.33939 1 0 A - 32.09002 22.23600 145.19775 40.53476 1 0 A - 32.23957 23.54400 145.87439 40.72365 1 0 A - 32.38432 24.85200 146.52937 40.90650 1 0 A - 32.52460 26.16000 147.16407 41.08369 1 0 A - 32.27865 26.16000 103.25921 39.25994 1 0 A - 32.41369 27.46800 103.69121 39.42420 1 0 A - 32.54482 28.77600 104.11070 39.58369 1 0 A - 32.67228 30.08400 104.51842 39.73871 1 0 A - 32.79627 31.39200 104.91508 39.88952 1 0 A - 32.91701 32.70000 105.30131 40.03637 1 0 A - 32.76870 32.70000 103.06220 38.52321 1 0 A - 32.88583 34.00800 103.43059 38.66091 1 0 A - 33.00007 35.31600 103.78991 38.79521 1 0 A - 33.11159 36.62400 104.14065 38.92632 1 0 A - 33.22054 37.93200 104.48330 39.05439 1 0 A - 33.32705 39.24000 104.81828 39.17961 1 0 A - 23.04038 39.24000 142.74730 40.27400 1 0 A - 23.30143 40.22100 144.36464 40.73031 1 0 A - 23.56162 41.20200 145.97665 41.18512 1 0 A - 23.82098 42.18300 147.58355 41.63848 1 0 A - 24.07956 43.16400 149.18555 42.09046 1 0 A - 24.33737 44.14500 150.78284 42.54111 1 0 A - 24.57897 44.14500 152.52104 41.71129 1 0 A - 24.83861 45.12600 154.13217 42.15190 1 0 A - 25.09754 46.10700 155.73892 42.59132 1 0 A - 25.35579 47.08800 157.34146 43.02958 1 0 A - 25.61339 48.06900 158.93995 43.46673 1 0 A - 25.87036 49.05000 160.53455 43.90282 1 0 A - 26.07797 49.05000 159.23421 43.21613 1 0 A - 26.33640 50.03100 160.81220 43.64440 1 0 A - 26.59425 51.01200 162.38664 44.07170 1 0 A - 26.85154 51.99300 163.95768 44.49808 1 0 A - 27.10829 52.97400 165.52544 44.92357 1 0 A - 27.36453 53.95500 167.09007 45.34821 1 0 A - 27.62206 53.95500 165.76021 44.64705 1 0 A - 28.02751 55.49657 168.19334 45.30241 1 0 A - 28.43181 57.03814 170.61956 45.95591 1 0 A - 28.83504 58.57971 173.03931 46.60766 1 0 A - 29.23725 60.12129 175.45300 47.25778 1 0 A - 29.63852 61.66286 177.86102 47.90637 1 0 A - 29.97539 61.66286 180.96059 47.26616 1 0 A - 30.38032 63.20443 183.40519 47.90468 1 0 A - 30.78443 64.74600 185.84476 48.54188 1 0 A - 31.18776 66.28757 188.27965 49.17787 1 0 A - 31.59036 67.82914 190.71017 49.81271 1 0 A - 31.99230 69.37071 193.13664 50.44649 1 0 A - 32.32557 69.37071 192.40318 50.00211 1 0 A - 32.73106 70.91229 194.81667 50.62933 1 0 A - 33.13597 72.45386 197.22668 51.25565 1 0 A - 33.54033 73.99543 199.63345 51.88112 1 0 A - 33.94419 75.53700 202.03724 52.50583 1 0 A - 34.34759 77.07857 204.43828 53.12981 1 0 A - 34.67367 77.07857 202.65273 52.83903 1 0 A - 35.08047 78.62014 205.03029 53.45895 1 0 A - 35.48687 80.16171 207.40554 54.07826 1 0 A - 35.89292 81.70329 209.77869 54.69703 1 0 A - 36.29863 83.24486 212.14991 55.31530 1 0 A - 36.70404 84.78643 214.51938 55.93310 1 0 A - 37.02041 84.78643 209.82974 55.76242 1 0 A - 37.42905 86.32800 212.14586 56.37793 1 0 A - 37.83744 87.86957 214.46059 56.99307 1 0 A - 38.24561 89.41114 216.77407 57.60788 1 0 A - 38.65358 90.95271 219.08643 58.22239 1 0 A - 39.06138 92.49429 221.39781 58.83664 1 0 A - 39.33557 92.49429 220.86397 58.75943 1 0 A - 39.74608 94.03586 223.16891 59.37264 1 0 A - 40.15646 95.57743 225.47312 59.98566 1 0 A - 40.56672 97.11900 227.77668 60.59851 1 0 A - 40.97689 98.66057 230.07972 61.21122 1 0 A - 41.38697 100.20214 232.38232 61.82381 1 0 A - 40.19219 100.20214 231.94234 61.81893 1 0 A - 40.59038 101.74371 234.24023 62.43138 1 0 A - 40.98853 103.28529 236.53787 63.04376 1 0 A - 41.38665 104.82686 238.83533 63.65610 1 0 A - 41.78474 106.36843 241.13270 64.26841 1 0 A - 42.18284 107.91000 243.43003 64.88071 1 0 A - 35.20468 107.91000 591.13792 46.59562 1 0 A - 35.68430 109.38150 599.19144 47.23043 1 0 A - 36.16393 110.85300 607.24519 47.86526 1 0 A - 36.64359 112.32450 615.29928 48.50011 1 0 A - 37.12327 113.79600 623.35383 49.13500 1 0 A - 37.60299 115.26750 631.40896 49.76993 1 0 A - 35.35915 115.26750 672.16658 49.77093 1 0 A - 35.81028 116.73900 680.74239 50.40593 1 0 A - 36.26145 118.21050 689.31904 51.04099 1 0 A - 36.71267 119.68200 697.89660 51.67612 1 0 A - 37.16395 121.15350 706.47519 52.31133 1 0 A - 37.61528 122.62500 715.05488 52.94662 1 0 A - 31.27048 122.62500 699.92686 52.98106 1 0 A - 31.64574 124.09650 708.32619 53.61685 1 0 A - 32.02105 125.56800 716.72676 54.25273 1 0 A - 32.39642 127.03950 725.12862 54.88872 1 0 A - 32.77185 128.51100 733.53186 55.52480 1 0 A - 62.43728 129.98250 741.93651 56.16099 110 8 - - 62.49733 129.98250 733.55135 56.22103 110 9 - - 114.06847 131.45400 741.86248 56.85802 110 15 - - 165.33730 132.92550 750.17513 57.49512 110 22 - - 216.39706 134.39700 758.48933 58.13234 110 29 - - 267.34100 135.86850 766.80514 58.76968 110 35 - - 318.26237 137.34000 775.12259 59.40715 110 41 - + 30.06668 0.00000 30.06668 5.51986 202 100 P + 61.66087 0.00000 61.66087 11.32016 202 100 P + 70.15077 0.00000 95.60503 17.55188 110 73 - + 67.76874 0.00000 131.85112 24.20620 110 51 - + 65.69092 0.00000 169.79789 31.17275 110 39 - + 53.56679 0.00000 131.34426 19.04861 110 41 - + 48.87379 0.00000 161.43441 23.41253 110 30 - + 44.19339 0.00000 191.76434 27.81123 110 23 - + 39.46417 0.00000 221.98186 32.19362 110 18 - + 35.45814 0.00000 251.87056 36.52832 110 0 - + 32.08653 0.00000 281.31596 40.79873 110 0 - + 22.05004 0.00000 189.80201 30.76224 110 0 - + 19.03887 0.00000 202.86341 32.87917 110 0 - + 15.98125 0.00000 215.77548 34.97190 110 0 - + 12.88430 0.00000 228.54007 37.04073 110 0 - + 9.75553 0.00000 241.16152 39.08635 110 0 - + 6.60271 0.00000 253.64568 41.10973 110 0 - + 1.03176 0.00000 219.69278 35.53878 110 0 - + 0.00000 1.30800 226.90657 36.70572 1 0 A + 0.00000 2.61600 233.93403 37.84253 1 0 A + 0.00000 3.92400 240.78991 38.95157 1 0 A + 0.00000 5.23200 247.48841 40.03516 1 0 A + 0.00000 6.54000 254.04284 41.09544 1 0 A + 8.83034 6.54000 234.14507 36.91366 1 0 A + 9.05358 7.84800 240.06465 37.84690 1 0 A + 9.27263 9.15600 245.87308 38.76262 1 0 A + 9.48785 10.46400 251.57971 39.66229 1 0 A + 9.69954 11.77200 257.19297 40.54723 1 0 A + 9.90800 13.08000 262.72046 41.41866 1 0 A + 12.98073 13.08000 247.84396 38.11016 1 0 A + 13.24994 14.38800 252.98399 38.90052 1 0 A + 13.51555 15.69600 258.05535 39.68033 1 0 A + 13.77784 17.00400 263.06326 40.45038 1 0 A + 14.03705 18.31200 268.01242 41.21139 1 0 A + 14.29340 19.62000 272.90708 41.96403 1 0 A + 26.07426 19.62000 130.04502 37.09040 1 0 A + 26.20568 20.92800 130.70050 37.27735 1 0 A + 26.33260 22.23600 131.33351 37.45789 1 0 A + 26.45531 23.54400 131.94554 37.63245 1 0 A + 26.57410 24.85200 132.53798 37.80142 1 0 A + 26.68921 26.16000 133.11207 37.96516 1 0 A + 26.49897 26.16000 118.68678 36.15047 1 0 A + 26.60984 27.46800 119.18333 36.30172 1 0 A + 26.71749 28.77600 119.66549 36.44858 1 0 A + 26.82212 30.08400 120.13413 36.59132 1 0 A + 26.92391 31.39200 120.59005 36.73019 1 0 A + 27.02303 32.70000 121.03398 36.86540 1 0 A + 26.83326 32.70000 118.36300 35.35253 1 0 A + 26.92917 34.00800 118.78609 35.47890 1 0 A + 27.02272 35.31600 119.19875 35.60215 1 0 A + 27.11404 36.62400 119.60157 35.72247 1 0 A + 27.20325 37.93200 119.99508 35.84000 1 0 A + 27.29047 39.24000 120.37980 35.95491 1 0 A + 15.80572 39.24000 182.08676 37.36424 1 0 A + 15.98480 40.22100 184.14981 37.78758 1 0 A + 16.16329 41.20200 186.20607 38.20952 1 0 A + 16.34121 42.18300 188.25582 38.63013 1 0 A + 16.51860 43.16400 190.29931 39.04945 1 0 A + 16.69546 44.14500 192.33680 39.46755 1 0 A + 17.10724 44.14500 197.73775 38.60130 1 0 A + 17.28795 45.12600 199.82652 39.00906 1 0 A + 17.46817 46.10700 201.90961 39.41571 1 0 A + 17.64792 47.08800 203.98724 39.82129 1 0 A + 17.82721 48.06900 206.05962 40.22585 1 0 A + 18.00607 49.05000 208.12697 40.62943 1 0 A + 18.49481 49.05000 206.02693 39.75007 1 0 A + 18.76958 50.52150 209.08775 40.34061 1 0 A + 19.04344 51.99300 212.13844 40.92920 1 0 A + 19.31644 53.46450 215.17961 41.51595 1 0 A + 19.58864 54.93600 218.21182 42.10097 1 0 A + 19.86008 56.40750 221.23562 42.68438 1 0 A + 20.40109 56.40750 224.74252 41.86288 1 0 A + 20.67919 57.87900 227.80622 42.43356 1 0 A + 20.95662 59.35050 230.86239 43.00283 1 0 A + 21.23340 60.82200 233.91148 43.57079 1 0 A + 21.50958 62.29350 236.95393 44.13751 1 0 A + 21.78520 63.76500 239.99018 44.70307 1 0 A + 22.29735 63.76500 242.77646 44.09377 1 0 A + 22.57890 65.23650 245.84208 44.65056 1 0 A + 22.85995 66.70800 248.90219 45.20634 1 0 A + 23.14053 68.17950 251.95717 45.76120 1 0 A + 23.42067 69.65100 255.00735 46.31518 1 0 A + 23.70040 71.12250 258.05306 46.86835 1 0 A + 24.19317 71.12250 256.50288 46.42816 1 0 A + 24.47832 72.59400 259.52617 46.97538 1 0 A + 24.76311 74.06550 262.54561 47.52192 1 0 A + 25.04757 75.53700 265.56150 48.06781 1 0 A + 25.33171 77.00850 268.57409 48.61310 1 0 A + 25.61557 78.48000 271.58364 49.15784 1 0 A + 26.08888 78.48000 262.14792 48.85224 1 0 A + 26.37771 79.95150 265.05020 49.39309 1 0 A + 26.66630 81.42300 267.94999 49.93348 1 0 A + 26.95466 82.89450 270.84749 50.47344 1 0 A + 27.24281 84.36600 273.74292 51.01301 1 0 A + 27.53077 85.83750 276.63644 51.55223 1 0 A + 27.98472 85.83750 273.09323 51.35352 1 0 A + 28.27725 87.30900 275.94799 51.89034 1 0 A + 28.56963 88.78050 278.80122 52.42687 1 0 A + 28.86187 90.25200 281.65307 52.96315 1 0 A + 29.15399 91.72350 284.50370 53.49919 1 0 A + 29.44599 93.19500 287.35324 54.03503 1 0 A + 29.88085 93.19500 286.52119 53.92091 1 0 A + 30.17707 94.66650 289.36153 54.45544 1 0 A + 30.47320 96.13800 292.20105 54.98982 1 0 A + 30.76925 97.60950 295.03987 55.52406 1 0 A + 31.06525 99.08100 297.87809 56.05819 1 0 A + 31.36119 100.55250 300.71584 56.59223 1 0 A + 31.77741 100.55250 299.98489 56.54478 1 0 A + 32.07724 102.02400 302.81536 57.07830 1 0 A + 32.37704 103.49550 305.64554 57.61177 1 0 A + 32.67682 104.96700 308.47553 58.14520 1 0 A + 32.97659 106.43850 311.30540 58.67861 1 0 A + 33.27636 107.91000 314.13525 59.21202 1 0 A + 29.95826 107.91000 753.91816 39.05311 1 0 A + 30.36640 109.38150 764.18937 39.58516 1 0 A + 30.77456 110.85300 774.46086 40.11722 1 0 A + 31.18273 112.32450 784.73278 40.64931 1 0 A + 31.59093 113.79600 795.00530 41.18143 1 0 A + 31.99915 115.26750 805.27855 41.71359 1 0 A + 30.02180 115.26750 852.98745 41.64349 1 0 A + 30.40483 116.73900 863.87026 42.17480 1 0 A + 30.78790 118.21050 874.75412 42.70615 1 0 A + 31.17101 119.68200 885.63916 43.23757 1 0 A + 31.55416 121.15350 896.52549 43.76905 1 0 A + 31.93737 122.62500 907.41321 44.30060 1 0 A + 25.74253 122.62500 889.14960 44.26850 1 0 A + 26.05145 124.09650 899.81967 44.79974 1 0 A + 26.36041 125.56800 910.49130 45.33105 1 0 A + 26.66942 127.03950 921.16458 45.86245 1 0 A + 26.97848 128.51100 931.83960 46.39393 1 0 A + 27.28760 129.98250 942.51642 46.92550 1 0 A + 26.28197 129.98250 932.15163 46.92318 1 0 A + 30.33011 131.45400 942.71290 47.45481 110 0 - + 38.47912 132.92550 953.27610 47.98655 110 0 - + 46.57053 134.39700 963.84128 48.51839 110 0 - + 54.62998 135.86850 974.40849 49.05032 110 6 - + 62.68313 137.34000 984.97779 49.58237 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7393,10 +7479,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 62.846 'Clay' - -4.00 65.212 'Peat' - -6.00 232.861 'Clay' - -13.00 224.050 'Sand' + 0.00 93.610 'Clay' + -4.00 53.482 'Peat' + -6.00 172.044 'Clay' + -13.00 98.529 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7411,7 +7497,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -7433,10 +7519,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7463,7 +7549,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -7472,24 +7558,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -7500,17 +7587,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7593,78 +7681,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 117.94548 58.86000 117.94548 24.09121 202 100 P - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 262.91521 69.16050 262.91521 21.84725 202 100 P - 271.20981 70.63200 271.20981 22.53650 202 100 P - 279.50442 72.10350 279.50442 23.22575 202 100 P - 282.10636 73.57500 287.79902 23.91500 110 98 - - 281.11759 73.57500 281.11759 23.91500 202 100 P - 228.08563 75.04650 289.21963 24.60425 110 79 - - 175.12117 76.51800 297.32167 25.29350 110 59 - - 123.06494 77.98950 305.42371 25.98275 110 40 - - 71.76888 79.46100 313.52575 26.67200 110 23 - - 21.08496 80.93250 321.62779 27.36125 110 0 - - 21.08496 80.93250 318.36273 27.36125 110 0 - - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00003 0.00000 0.00003 0.00000 202 100 P + 23.66976 1.47150 23.66976 0.59704 202 100 P + 47.33953 2.94300 47.33953 1.19408 202 100 P + 71.00929 4.41450 71.00929 1.79112 202 100 P + 94.67906 5.88600 94.67906 2.38817 202 100 P + 118.34882 7.35750 118.34882 2.98521 202 100 P + 48.63809 7.35750 48.63809 2.98521 202 100 P + 58.36571 8.82900 58.36571 3.58225 202 100 P + 68.09332 10.30050 68.09332 4.17929 202 100 P + 77.82094 11.77200 77.82094 4.77633 202 100 P + 87.54856 13.24350 87.54856 5.37337 202 100 P + 97.27618 14.71500 97.27618 5.97041 202 100 P + 69.37382 14.71500 69.37382 5.97041 202 100 P + 76.31120 16.18650 76.31120 6.56745 202 100 P + 83.24858 17.65800 83.24858 7.16450 202 100 P + 90.18597 19.12950 90.18597 7.76154 202 100 P + 97.12335 20.60100 97.12335 8.35858 202 100 P + 104.06073 22.07250 104.06073 8.95562 202 100 P + 86.10925 22.07250 86.10925 8.95562 202 100 P + 91.84986 23.54400 91.84986 9.55266 202 100 P + 97.59048 25.01550 97.59048 10.14970 202 100 P + 103.33110 26.48700 103.33110 10.74674 202 100 P + 109.07171 27.95850 109.07171 11.34379 202 100 P + 114.81233 29.43000 114.81233 11.94083 202 100 P + 101.50379 29.43000 101.50379 11.94083 202 100 P + 106.57898 30.90150 106.57898 12.53787 202 100 P + 111.65417 32.37300 111.65417 13.13491 202 100 P + 110.11555 33.84450 116.72936 13.73195 110 94 - + 106.64913 35.31600 121.80455 14.32899 110 88 - + 103.22106 36.78750 126.87974 14.92603 110 81 - + 103.22106 36.78750 116.28466 14.92603 110 89 - + 99.83870 38.25900 120.93605 15.52307 110 83 - + 96.50707 39.73050 125.58743 16.12012 110 77 - + 93.23096 41.20200 130.23882 16.71716 110 72 - + 90.01518 42.67350 134.89020 17.31420 110 67 - + 86.86454 44.14500 139.54159 17.91124 110 62 - + 86.86454 44.14500 130.73258 17.91124 110 66 - + 83.78326 45.61650 135.09033 18.50828 110 62 - + 80.77480 47.08800 139.44808 19.10532 110 58 - + 77.84285 48.55950 143.80584 19.70236 110 54 - + 74.99110 50.03100 148.16359 20.29941 110 51 - + 72.22322 51.50250 152.52134 20.89645 110 47 - + 72.22322 51.50250 144.97918 20.89645 110 50 - + 69.54273 52.97400 149.12144 21.49349 110 47 - + 66.95389 54.44550 153.26370 22.09053 110 44 - + 64.46151 55.91700 157.40596 22.68757 110 41 - + 62.07039 57.38850 161.54823 23.28461 110 38 - + 59.78533 58.86000 165.69049 23.88165 110 36 - + 194.92385 58.86000 306.18963 15.40546 110 64 - + 181.65023 60.33150 317.55426 15.97725 110 57 - + 168.95887 61.80300 328.91889 16.54905 110 51 - + 156.84749 63.27450 340.28352 17.12084 110 46 - + 145.31377 64.74600 351.64815 17.69263 110 41 - + 134.35543 66.21750 363.01278 18.26443 110 37 - + 134.35543 66.21750 336.73401 18.26443 110 40 - + 123.95787 67.68900 347.27595 18.83622 110 36 - + 114.08150 69.16050 357.81789 19.40802 110 32 - + 104.68645 70.63200 368.35983 19.97981 110 28 - + 95.73289 72.10350 378.90176 20.55160 110 25 - + 87.18094 73.57500 389.44370 21.12340 110 22 - + 87.18094 73.57500 380.66080 21.12340 110 23 - + 78.98554 75.04650 390.96499 21.69519 110 20 - + 71.09713 76.51800 401.26918 22.26699 110 18 - + 63.46909 77.98950 411.57337 22.83878 110 15 - + 56.05482 79.46100 421.87756 23.41057 110 13 - + 48.80770 80.93250 432.18175 23.98237 110 11 - + 48.80770 80.93250 427.69172 23.98237 110 11 - + 41.67886 82.40400 437.88886 24.55416 110 10 - + 34.63338 83.87550 448.08600 25.12596 110 8 - + 27.64561 85.34700 458.28314 25.69775 110 6 - + 20.68989 86.81850 468.48028 26.26954 110 0 - + 13.74058 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7679,8 +7767,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.694 'Clay' - -13.00 509.692 'Sand' + -6.00 500.177 'Clay' + -13.00 279.024 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7760,52 +7848,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -7837,7 +7925,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=5 +IterationCount=2 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -7852,7 +7940,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 143.74462 210000000.000 1 2 0 'Anchor' + -1.50000 142.65945 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7862,22 +7950,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 63.64 : Percentage mobilized resistance left - 11.76 : Percentage mobilized resistance right - 562.08 : Effective left - 312.61 : Effective right + 46.09 : Percentage mobilized resistance left + 9.78 : Percentage mobilized resistance right + 584.53 : Effective left + 332.86 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 2657.66 : Max effective resistance right --10540.07 : Max moment left --25718.27 : Max moment right --6131.39 : Max mobilized moment left --2757.57 : Max mobilized moment right - 157.52 : Vertical force left - 74.19 : Vertical force right - 58.2 : Max mobilized moment percentage left - 10.7 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3402.22 : Max effective resistance right +-14781.58 : Max moment left +-32715.60 : Max moment right +-6258.91 : Max mobilized moment left +-2869.26 : Max mobilized moment right + 196.81 : Vertical force left + 95.18 : Vertical force right + 42.3 : Max mobilized moment percentage left + 8.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -7892,144 +7980,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01249 0.05939 51.34205 - 0.04456 1.02219 44.28473 - 0.38505 3.80269 37.22750 - 1.27370 8.34988 30.16947 - 2.95558 14.20850 23.10976 - 5.51922 19.72662 16.04749 - 5.54729 19.90780 16.04749 - 8.85478 23.94519 8.98095 - 12.65675 26.50058 1.90672 - 16.73257 27.60821 -5.17864 - 20.90428 28.01723 -12.27856 - 25.13853 28.44217 -19.39648 - 25.12430 -115.53101 -19.39648 - 13.58577 -115.23842 -24.15259 - 2.07688 -114.93802 -28.91392 - -9.40157 -114.62957 -33.67605 - -20.84876 -114.31293 -38.43458 - -32.26388 -113.98804 -43.18512 - -32.26514 -113.97760 -43.18512 - -47.42987 -113.47057 -49.49910 - -62.51790 -112.82708 -55.78072 - -77.51105 -112.04764 -62.01976 - -92.39126 -111.13296 -68.20599 - -107.14054 -110.08398 -74.32921 - -107.13997 -110.08187 -74.32921 - -121.72565 -108.68072 -80.37920 - -136.11548 -107.14422 -86.34615 - -150.29145 -105.47291 -92.22038 - -164.23563 -103.66755 -97.99225 - -177.93021 -101.72909 -103.65208 - -177.93019 -101.73031 -103.65208 - -191.33619 -99.33670 -109.19030 - -204.41388 -96.80585 -114.59798 - -217.14505 -94.13926 -119.86645 - -229.51172 -91.33853 -124.98702 - -241.49611 -88.40536 -129.95103 - -241.49615 -88.40641 -129.95103 - -253.02315 -84.47778 -134.74993 - -264.01804 -80.42500 -139.37620 - -274.46433 -76.24886 -143.82273 - -284.34562 -71.95011 -148.08240 - -293.64561 -67.52951 -152.14808 - -293.64561 -67.53019 -152.14808 - -302.33837 -62.84095 -156.01295 - -310.39783 -58.03078 -159.67156 - -317.80790 -53.10042 -163.11884 - -324.55263 -48.05057 -166.34977 - -330.61611 -42.88193 -169.35928 - -330.61611 -42.88260 -169.35928 - -335.97414 -37.46818 -172.14267 - -340.60238 -31.93574 -174.69685 - -344.48512 -26.28584 -177.01917 - -347.60674 -20.51897 -179.10698 - -349.95167 -14.63554 -180.95766 - -349.95168 -14.63614 -180.95766 - -351.21912 -10.70185 -182.18875 - -352.08985 -6.70178 -183.28506 - -352.55730 -2.63617 -184.24643 - -352.61491 1.49479 -185.07268 - -352.25616 5.69102 -185.76362 - -352.25616 5.69045 -185.76362 - -351.47083 10.02729 -186.31919 - -350.24850 14.43018 -186.73990 - -348.58258 18.89922 -187.02638 - -346.46645 23.43462 -187.17928 - -343.89344 28.03665 -187.19922 - -343.89344 28.03607 -187.19922 - -340.85494 32.73367 -187.08700 - -337.34672 37.43066 -186.84399 - -333.36881 42.12757 -186.47170 - -328.92119 46.82501 -185.97167 - -324.00377 51.52368 -185.34543 - -324.00364 51.52221 -185.34543 - -315.34118 58.58476 -184.11023 - -305.63602 64.79339 -182.57624 - -295.02211 70.15124 -180.75344 - -283.63288 74.66148 -178.65181 - -271.60130 78.32732 -176.28134 - -271.60132 78.32526 -176.28134 - -259.00643 81.85168 -173.65284 - -245.91469 84.64928 -170.77896 - -232.44040 86.72091 -167.67239 - -218.69743 88.06927 -164.34585 - -204.79924 88.69691 -160.81203 - -204.79925 88.69522 -160.81203 - -190.69600 90.71342 -157.08390 - -176.31668 92.20929 -153.17510 - -161.74319 93.18498 -149.09940 - -147.05711 93.64254 -144.87057 - -132.33971 93.58390 -140.50237 - -132.33972 93.58237 -140.50237 - -117.55946 94.45937 -136.00869 - -102.67463 94.91367 -131.40364 - -87.75151 94.94694 -126.70134 - -72.85613 94.56077 -121.91589 - -58.05430 93.75669 -117.06138 - -58.05430 93.75522 -117.06138 - -43.32837 93.60482 -112.15194 - -28.65476 93.08953 -107.20149 - -14.09070 92.21071 -102.22378 - 0.30678 90.96966 -97.23259 - 14.48086 89.36767 -92.24167 - 14.48084 89.36640 -92.24167 - 28.44061 88.24880 -87.26473 - 42.19907 86.80466 -82.31477 - 55.70503 85.03516 -77.40456 - 68.90743 82.94143 -72.54688 - 81.75541 80.52458 -67.75449 - 81.76284 80.49125 -67.75449 - 94.24231 78.28823 -63.03999 - 106.35198 75.78479 -58.41483 - 118.04471 72.98195 -53.89006 - 129.27353 69.88068 -49.47675 - 140.00165 66.67343 -45.18593 - 139.99060 66.51898 -45.18593 - 148.76097 50.26731 -41.21545 - 155.02522 33.10412 -37.37364 - 158.64663 15.02940 -33.66354 - 159.48847 -3.95683 -30.08822 - 157.41400 -23.85459 -26.65074 - 157.41262 -24.91657 -26.65074 - 152.30762 -43.28855 -23.35177 - 144.48747 -60.43213 -20.18430 - 134.34099 -74.31557 -17.13980 - 122.35289 -84.99728 -14.20974 - 108.99754 -92.56428 -11.38562 - 109.01256 -92.64169 -11.38562 - 94.71064 -97.57842 -8.65664 - 79.87855 -99.72487 -6.00928 - 64.92874 -99.16006 -3.43086 - 50.30183 -95.16921 -0.90869 - 36.61253 -86.48735 1.56988 - 36.56714 -86.80147 1.56988 - 24.42986 -74.59521 4.01836 - 14.31818 -59.79700 6.44605 - 6.61943 -42.42528 8.85942 - 1.71869 -22.49168 11.26492 - -0.00023 -0.00110 13.66899 + -0.01256 0.05602 50.37504 + 0.03687 0.87660 43.23304 + 0.33461 3.38091 36.09113 + 1.14031 7.66845 28.94850 + 2.69903 13.23378 21.80434 + 5.09050 18.40023 14.65784 + 5.11950 18.58747 14.65784 + 8.20051 22.24027 7.50739 + 11.71584 24.37824 0.34982 + 15.45048 25.24615 -6.81803 + 19.26527 25.62572 -13.99931 + 23.14061 26.05372 -21.19719 + 23.12588 -116.84236 -21.19719 + 11.45710 -116.52955 -26.00568 + -0.17928 -116.19430 -30.81857 + -11.78100 -115.83629 -35.63141 + -23.34578 -115.45531 -40.43974 + -34.87129 -115.05120 -45.23910 + -34.87255 -115.04081 -45.23910 + -50.17075 -114.40492 -51.61662 + -65.37328 -113.60585 -57.95990 + -80.45841 -112.64394 -64.25867 + -95.40445 -111.51976 -70.50264 + -110.18983 -110.23408 -76.68154 + -110.18926 -110.23203 -76.68154 + -124.79150 -108.77517 -82.78511 + -139.18896 -107.16053 -88.80355 + -153.36064 -105.38856 -94.72719 + -167.28562 -103.45997 -100.54637 + -180.94305 -101.37566 -106.25144 + -180.94303 -101.37687 -106.25144 + -194.29093 -98.81479 -111.83282 + -207.28654 -96.09286 -117.28165 + -219.90866 -93.21262 -122.58932 + -232.13628 -90.17577 -127.74724 + -243.94865 -86.98414 -132.74680 + -243.94869 -86.98514 -132.74680 + -255.29098 -83.12674 -137.57956 + -266.10987 -79.13449 -142.23815 + -276.38760 -75.00926 -146.71556 + -286.10647 -70.75193 -151.00480 + -295.24895 -66.36341 -155.09886 + -295.24895 -66.36402 -155.09886 + -303.78784 -61.69767 -158.99101 + -311.69588 -56.90136 -162.67590 + -318.95580 -51.97603 -166.14859 + -325.55046 -46.92259 -169.40414 + -331.46284 -41.74195 -172.43759 + -331.46285 -41.74252 -172.43759 + -336.66761 -36.30794 -175.24434 + -341.13937 -30.74745 -177.82141 + -344.86137 -25.06186 -180.16625 + -347.81701 -19.25196 -182.27634 + -349.98974 -13.31848 -184.14914 + -349.98975 -13.31894 -184.14914 + -351.10221 -8.91807 -185.39679 + -351.77091 -4.44366 -186.50971 + -351.98851 0.10368 -187.48782 + -351.74776 4.72337 -188.33104 + -351.04145 9.41489 -189.03929 + -351.04145 9.41452 -189.03929 + -349.85868 14.25278 -189.61262 + -348.18850 19.16274 -190.05169 + -346.02376 24.14402 -190.35735 + -343.35733 29.19627 -190.53042 + -340.18215 34.31919 -190.57173 + -340.18242 34.32361 -190.57173 + -334.46238 41.82773 -190.38881 + -327.69488 48.11626 -189.91718 + -320.11435 52.66801 -189.16326 + -311.98134 55.48246 -188.13347 + -303.55648 56.55947 -186.83421 + -303.55643 56.55860 -186.83421 + -294.69548 61.46339 -185.27226 + -285.15462 65.62416 -183.45590 + -275.04540 69.04166 -181.39381 + -264.47924 71.71682 -179.09465 + -253.56741 73.65079 -176.56710 + -253.56740 73.64958 -176.56710 + -242.26050 77.01922 -173.82018 + -230.48858 79.84996 -170.86413 + -218.33238 82.14334 -167.70939 + -205.87237 83.90092 -164.36641 + -193.18881 85.12433 -160.84566 + -193.18881 85.12302 -160.84566 + -180.25846 87.20737 -157.15785 + -167.04884 88.84691 -153.31443 + -153.62654 90.04331 -149.32696 + -140.05792 90.79824 -145.20699 + -126.40906 91.11331 -140.96608 + -126.40906 91.11196 -140.96608 + -112.66941 92.01850 -136.61593 + -98.82295 92.53631 -132.16854 + -84.92788 92.66690 -127.63586 + -71.04217 92.41171 -123.02986 + -57.22359 91.77209 -118.36252 + -57.22359 91.77080 -118.36252 + -43.46906 91.56427 -113.64583 + -29.77187 91.00652 -108.89165 + -16.18461 90.09874 -104.11167 + -2.75970 88.84206 -99.31760 + 10.45062 87.23757 -94.52114 + 10.45060 87.23650 -94.52114 + 23.44398 85.95440 -89.73393 + 36.22069 84.34768 -84.96699 + 48.73210 82.41728 -80.23111 + 60.92974 80.16415 -75.53706 + 72.76525 77.58917 -70.89561 + 72.76522 77.58858 -70.89561 + 84.22117 75.10639 -66.31738 + 95.28184 72.31825 -61.81191 + 105.90140 69.22510 -57.38835 + 116.03417 65.82792 -53.05582 + 125.63462 62.12772 -48.82349 + 125.63749 62.10697 -48.82349 + 133.96540 48.78448 -44.70108 + 140.22879 34.58103 -40.69452 + 144.29596 19.50254 -36.80727 + 146.03610 3.55493 -33.04276 + 145.31928 -13.25587 -29.40445 + 145.37971 -13.70005 -29.40445 + 142.11316 -29.98853 -25.89408 + 136.34557 -47.02849 -22.50650 + 128.07180 -62.72463 -19.23474 + 117.69454 -75.09376 -16.07184 + 105.70460 -84.24437 -13.01084 + 105.70040 -84.43147 -13.01084 + 92.50316 -91.02157 -10.04235 + 78.54491 -94.59196 -7.15358 + 64.27276 -95.21854 -4.33244 + 50.13335 -92.76512 -1.56683 + 36.66742 -85.82789 1.15534 + 36.58884 -85.73011 1.15534 + 24.54343 -74.34578 3.84722 + 14.43493 -59.96494 6.51825 + 6.69435 -42.77613 9.17487 + 1.74191 -22.79088 11.82357 + -0.00334 -0.01401 14.47082 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8065,10 +8153,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8105,29 +8193,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.66667 60.66400 0.00000 214.94813 0.00000 - -3.33333 60.82000 0.00000 295.09351 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.50000 60.14900 36.46100 800.53878 50.39193 - -8.28571 60.36800 36.71200 932.41935 61.47235 - -9.07143 60.54900 36.93700 1073.19877 74.39543 - -9.85714 60.70100 37.14100 1222.88248 89.16209 - -10.64286 60.83300 37.32700 1381.47404 105.77317 - -11.42857 60.94700 37.49700 1548.97583 124.22935 - -12.21429 61.04800 37.65300 1725.38951 144.53126 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8144,29 +8232,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.33333 32.06333 110.57676 0.00000 0.70763 0.00000 3.44870 - -3.00000 36.19000 120.21807 0.00000 0.70763 0.00000 3.32186 - -3.66667 40.31667 129.86101 0.00000 0.70763 0.00000 3.22103 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.25000 52.49750 158.58900 12.18453 0.70763 0.23210 3.02089 - -7.89286 56.47679 167.84799 14.10235 0.70763 0.24970 2.97198 - -8.67857 61.34036 179.17380 16.44755 0.70763 0.26814 2.92098 - -9.46429 66.20393 190.50654 18.79394 0.70763 0.28388 2.87757 - -10.25000 71.06750 201.84380 21.14137 0.70763 0.29748 2.84017 - -11.03571 75.93107 213.18410 23.48969 0.70763 0.30936 2.80760 - -11.82143 80.79464 224.52650 25.83879 0.70763 0.31981 2.77898 - -12.60714 85.65821 235.87039 28.18858 0.70763 0.32908 2.75362 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8183,144 +8271,144 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00001 0.00000 0.00001 0.00000 202 100 P - 18.33896 0.00000 19.44961 1.59216 110 94 - - 34.62293 0.00000 38.89922 3.18433 110 89 - - 51.99021 0.00000 58.34883 4.77649 110 89 - - 59.60258 0.00000 77.79845 6.36865 110 77 - - 45.50458 0.00000 97.24806 7.96082 110 47 - - 45.50458 0.00000 50.01834 7.96082 110 91 - - 31.39804 0.00000 60.02201 9.55298 110 52 - - 17.27611 0.00000 70.02568 11.14515 110 25 - - 3.82169 0.00000 80.02935 12.73731 110 0 - - 3.96903 0.00000 90.03302 14.32947 110 0 - - 4.12506 0.00000 100.03668 15.92164 110 0 - - 4.12506 0.00000 83.12851 15.92164 110 0 - - 4.23473 0.00000 88.67041 16.98308 110 0 - - 4.34826 0.00000 94.21231 18.04452 110 0 - - 4.46450 0.00000 99.75421 19.10596 110 0 - - 4.58229 0.00000 105.29611 20.16741 110 0 - - 4.70047 0.00000 110.83802 21.22885 110 0 - - 4.70047 0.00000 103.46095 21.22885 110 0 - - 4.85652 1.30800 106.30727 21.81288 110 0 - - 5.00843 2.61600 109.15360 22.39691 110 0 - - 5.15385 3.92400 111.99992 22.98094 110 0 - - 5.29043 5.23200 114.84625 23.56497 110 0 - - 5.41582 6.54000 117.69258 24.14899 110 0 - - 7.74618 6.54000 113.36397 24.14899 110 0 - - 7.89060 7.84800 116.10561 24.73302 110 0 - - 8.03041 9.15600 118.84725 25.31705 110 0 - - 8.16329 10.46400 121.58890 25.90108 110 0 - - 8.28700 11.77200 124.33054 26.48511 110 0 - - 8.39937 13.08000 127.07218 27.06914 110 0 - - 11.82668 13.08000 123.21496 27.06914 110 0 - - 11.99689 14.38800 125.87338 27.65317 110 0 - - 12.15158 15.69600 128.53180 28.23720 110 0 - - 12.28963 17.00400 131.19022 28.82123 110 0 - - 12.41000 18.31200 133.84864 29.40526 110 0 - - 12.51166 19.62000 136.50706 29.98929 110 0 - - 21.80553 19.62000 93.61408 27.88519 110 0 - - 21.83159 20.92800 93.96456 27.98959 110 0 - - 21.84953 22.23600 94.31504 28.09399 110 0 - - 21.85929 23.54400 94.66552 28.19838 110 0 - - 21.86086 24.85200 95.01601 28.30278 110 0 - - 21.85419 26.16000 95.36649 28.40718 110 0 - - 23.43199 26.16000 94.99596 28.40718 110 0 - - 23.42373 27.46800 95.34508 28.51158 110 0 - - 23.40738 28.77600 95.69420 28.61598 110 0 - - 23.38325 30.08400 96.04332 28.72038 110 0 - - 23.35168 31.39200 96.39244 28.82478 110 0 - - 23.31303 32.70000 96.74156 28.92918 110 0 - - 24.67788 32.70000 96.43144 28.92918 110 0 - - 24.63741 34.00800 96.77944 29.03358 110 0 - - 24.59074 35.31600 97.12744 29.13798 110 0 - - 24.53852 36.62400 97.47544 29.24238 110 0 - - 24.48141 37.93200 97.82344 29.34678 110 0 - - 24.42007 39.24000 98.17145 29.45118 110 0 - - 16.49345 39.24000 139.39178 31.67344 110 0 - - 16.45401 40.22100 141.31947 32.11146 110 0 - - 16.41069 41.20200 143.24716 32.54949 110 0 - - 16.36444 42.18300 145.17485 32.98751 110 0 - - 16.31621 43.16400 147.10255 33.42553 110 0 - - 16.26694 44.14500 149.03024 33.86355 110 0 - - 17.33836 44.14500 146.65286 33.86355 110 0 - - 17.30036 45.12600 148.54980 34.30157 110 0 - - 17.26339 46.10700 150.44674 34.73960 110 0 - - 17.22863 47.08800 152.34368 35.17762 110 0 - - 17.19721 48.06900 154.24062 35.61564 110 0 - - 17.17031 49.05000 156.13756 36.05366 110 0 - - 18.06460 49.05000 153.91418 36.05366 110 0 - - 18.05240 50.03100 155.78411 36.49168 110 0 - - 18.04726 51.01200 157.65404 36.92971 110 0 - - 18.05026 51.99300 159.52396 37.36773 110 0 - - 18.06247 52.97400 161.39389 37.80575 110 0 - - 18.08497 53.95500 163.26382 38.24377 110 0 - - 19.04366 53.95500 160.62077 38.24377 110 0 - - 19.11593 55.49657 163.51166 38.93209 110 0 - - 19.21670 57.03814 166.40255 39.62041 110 0 - - 19.34619 58.57971 169.29344 40.30873 110 0 - - 19.50465 60.12129 172.18433 40.99705 110 0 - - 19.69231 61.66286 175.07522 41.68537 110 0 - - 20.66939 61.66286 172.07061 41.68537 110 0 - - 20.89872 63.20443 174.91189 42.37369 110 0 - - 21.15468 64.74600 177.75316 43.06201 110 0 - - 21.43590 66.28757 180.59444 43.75033 110 0 - - 21.74098 67.82914 183.43572 44.43865 110 0 - - 22.06854 69.37071 186.27699 45.12697 110 0 - - 22.84620 69.37071 183.50891 45.12697 110 0 - - 23.20470 70.91229 186.30796 45.81529 110 0 - - 23.58327 72.45386 189.10702 46.50361 110 0 - - 23.98092 73.99543 191.90607 47.19193 110 0 - - 24.39663 75.53700 194.70513 47.88025 110 0 - - 24.82939 77.07857 197.50418 48.56857 110 0 - - 25.44626 77.07857 194.93712 48.56857 110 0 - - 25.90239 78.62014 197.69979 49.25689 110 0 - - 26.37397 80.16171 200.46246 49.94521 110 0 - - 26.86035 81.70329 203.22514 50.63353 110 0 - - 27.36090 83.24486 205.98781 51.32185 110 0 - - 27.87497 84.78643 208.75049 52.01017 110 0 - - 28.36203 84.78643 206.35662 52.01017 110 0 - - 28.89442 86.32800 209.08761 52.69849 110 0 - - 29.43936 87.86957 211.81860 53.38681 110 0 - - 29.99645 89.41114 214.54960 54.07513 110 0 - - 30.56531 90.95271 217.28059 54.76345 110 0 - - 31.14554 92.49429 220.01158 55.45178 110 0 - - 31.49694 92.49429 217.76862 55.45178 110 0 - - 32.09188 94.03586 220.47178 56.14010 110 0 - - 32.69757 95.57743 223.17493 56.82842 110 0 - - 33.31375 97.11900 225.87808 57.51674 110 0 - - 33.94012 98.66057 228.58123 58.20506 110 0 - - 34.57641 100.20214 231.28438 58.89338 110 0 - - 33.38651 100.20214 229.17417 58.89338 110 0 - - 34.02067 101.74371 231.85266 59.58170 110 0 - - 34.66418 103.28529 234.53115 60.27002 110 0 - - 35.31668 104.82686 237.20964 60.95834 110 0 - - 35.97784 106.36843 239.88813 61.64666 110 0 - - 36.64730 107.91000 242.56661 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.06785 110.85300 609.04150 45.42350 1 0 A - 25.44822 112.32450 618.28301 46.11275 1 0 A - 25.82860 113.79600 627.52452 46.80200 1 0 A - 26.20898 115.26750 636.76604 47.49125 1 0 A - 26.26150 115.26750 585.69985 47.49125 1 0 A - 26.64264 116.73900 594.20023 48.18050 1 0 A - 27.02378 118.21050 602.70061 48.86975 1 0 A - 28.05442 119.68200 611.20099 49.55900 110 0 - - 29.64201 121.15350 619.70137 50.24825 110 0 - - 31.21902 122.62500 628.20175 50.93750 110 0 - - 28.21355 122.62500 610.51735 50.93750 1 0 A - 28.59532 124.09650 618.77844 51.62675 1 0 A - 28.97708 125.56800 627.03952 52.31600 1 0 A - 29.35885 127.03950 635.30061 53.00525 1 0 A - 44.60756 128.51100 643.56170 53.69450 110 0 - - 70.08260 129.98250 651.82278 54.38375 110 11 - - 70.08260 129.98250 642.44252 54.38375 110 11 - - 95.25656 131.45400 650.58472 55.07300 110 15 - - 120.22276 132.92550 658.72693 55.76225 110 18 - - 145.04570 134.39700 666.86913 56.45150 110 22 - - 169.78991 135.86850 675.01133 57.14075 110 25 - - 194.51991 137.34000 683.15353 57.83000 110 28 - + 0.00000 0.00000 0.00001 0.00000 1 0 A + 15.62994 0.00000 27.59211 1.44679 110 57 - + 32.07129 0.00000 55.18421 2.89358 110 58 - + 49.59610 0.00000 82.77632 4.34037 110 60 - + 56.41024 0.00000 110.36843 5.78715 110 51 - + 41.99841 0.00000 137.96054 7.23394 110 30 - + 41.99841 0.00000 68.20749 7.23394 110 62 - + 27.57867 0.00000 81.84899 8.68073 110 34 - + 13.14469 0.00000 95.49049 10.12752 110 14 - + 3.38695 0.00000 109.13199 11.57431 110 0 - + 3.84286 0.00000 122.77349 13.02110 110 0 - + 4.30962 0.00000 136.41499 14.46788 110 0 - + 4.30962 0.00000 111.45332 14.46788 110 0 - + 4.62779 0.00000 118.88354 15.43241 110 0 - + 4.95092 0.00000 126.31376 16.39693 110 0 - + 5.27785 0.00000 133.74398 17.36146 110 0 - + 5.60740 0.00000 141.17421 18.32599 110 0 - + 5.93841 0.00000 148.60443 19.29051 110 0 - + 5.93841 0.00000 137.71826 19.29051 110 0 - + 6.37987 1.30800 141.50704 19.82121 110 0 - + 6.81901 2.61600 145.29582 20.35192 110 0 - + 7.25334 3.92400 149.08461 20.88262 110 0 - + 7.68040 5.23200 152.87339 21.41333 110 0 - + 8.09769 6.54000 156.66217 21.94403 110 0 - + 8.22308 6.54000 150.27634 21.94403 110 0 - + 8.60736 7.84800 153.91069 22.47473 110 0 - + 8.98805 9.15600 157.54503 23.00544 110 0 - + 9.36258 10.46400 161.17938 23.53614 110 0 - + 9.72845 11.77200 164.81372 24.06684 110 0 - + 10.08326 13.08000 168.44806 24.59755 110 0 - + 13.51056 13.08000 162.75727 24.59755 110 0 - + 13.92321 14.38800 166.26883 25.12825 110 0 - + 14.31997 15.69600 169.78039 25.65895 110 0 - + 14.69936 17.00400 173.29196 26.18966 110 0 - + 15.05993 18.31200 176.80352 26.72036 110 0 - + 15.40024 19.62000 180.31508 27.25106 110 0 - + 21.00075 19.62000 112.91072 24.82969 110 0 - + 21.13137 20.92800 113.33345 24.92265 110 0 - + 21.25285 22.23600 113.75618 25.01561 110 0 - + 21.36496 23.54400 114.17890 25.10857 110 0 - + 21.46749 24.85200 114.60163 25.20153 110 0 - + 21.56020 26.16000 115.02436 25.29449 110 0 - + 23.13800 26.16000 114.42115 25.29449 110 0 - + 23.22737 27.46800 114.84166 25.38745 110 0 - + 23.30669 28.77600 115.26217 25.48041 110 0 - + 23.37611 30.08400 115.68268 25.57337 110 0 - + 23.43580 31.39200 116.10319 25.66633 110 0 - + 23.48591 32.70000 116.52370 25.75929 110 0 - + 24.85077 32.70000 116.01583 25.75929 110 0 - + 24.89641 34.00800 116.43451 25.85225 110 0 - + 24.93299 35.31600 116.85318 25.94521 110 0 - + 24.96101 36.62400 117.27186 26.03817 110 0 - + 24.98091 37.93200 117.69054 26.13113 110 0 - + 24.99319 39.24000 118.10921 26.22409 110 0 - + 23.10196 39.24000 183.43874 28.78144 110 0 - + 23.17615 40.22100 185.97557 29.17947 110 0 - + 23.24119 41.20200 188.51241 29.57750 110 0 - + 23.29774 42.18300 191.04924 29.97553 110 0 - + 23.34644 43.16400 193.58607 30.37355 110 0 - + 23.38794 44.14500 196.12290 30.77158 110 0 - + 24.45936 44.14500 192.60019 30.77158 110 0 - + 24.50565 45.12600 195.09146 31.16961 110 0 - + 24.54603 46.10700 197.58272 31.56764 110 0 - + 24.58119 47.08800 200.07399 31.96566 110 0 - + 24.61180 48.06900 202.56525 32.36369 110 0 - + 24.63852 49.05000 205.05652 32.76172 110 0 - + 25.72647 49.05000 201.00495 32.76172 110 0 - + 25.77707 50.52150 204.66801 33.35876 110 0 - + 25.82271 51.99300 208.33107 33.95580 110 0 - + 25.86527 53.46450 211.99414 34.55284 110 0 - + 25.90662 54.93600 215.65720 35.14988 110 0 - + 25.94862 56.40750 219.32027 35.74693 110 0 - + 27.02615 56.40750 214.81611 35.74693 110 0 - + 27.08517 57.87900 218.40395 36.34397 110 0 - + 27.14754 59.35050 221.99178 36.94101 110 0 - + 27.21418 60.82200 225.57962 37.53805 110 0 - + 27.28603 62.29350 229.16745 38.13509 110 0 - + 27.36403 63.76500 232.75529 38.73213 110 0 - + 28.24034 63.76500 228.61475 38.73213 110 0 - + 28.33634 65.23650 232.13876 39.32917 110 0 - + 28.43960 66.70800 235.66278 39.92621 110 0 - + 28.55038 68.17950 239.18679 40.52326 110 0 - + 28.66898 69.65100 242.71080 41.12030 110 0 - + 28.79568 71.12250 246.23481 41.71734 110 0 - + 29.49993 71.12250 242.40131 41.71734 110 0 - + 29.64320 72.59400 245.87046 42.31438 110 0 - + 29.79463 74.06550 249.33961 42.91142 110 0 - + 29.95411 75.53700 252.80875 43.50846 110 0 - + 30.12152 77.00850 256.27790 44.10550 110 0 - + 30.29675 78.48000 259.74705 44.70255 110 0 - + 30.86086 78.48000 256.17685 44.70255 110 0 - + 31.04997 79.95150 259.59831 45.29959 110 0 - + 31.24642 81.42300 263.01977 45.89663 110 0 - + 31.44991 82.89450 266.44124 46.49367 110 0 - + 31.66017 84.36600 269.86270 47.09071 110 0 - + 31.87689 85.83750 273.28417 47.68775 110 0 - + 32.32673 85.83750 269.94257 47.68775 110 0 - + 32.55431 87.30900 273.32219 48.28479 110 0 - + 32.78773 88.78050 276.70182 48.88183 110 0 - + 33.02673 90.25200 280.08145 49.47888 110 0 - + 33.27102 91.72350 283.46108 50.07592 110 0 - + 33.52034 93.19500 286.84071 50.67296 110 0 - + 33.82431 93.19500 283.69963 50.67296 110 0 - + 34.08139 94.66650 287.04225 51.27000 110 0 - + 34.34307 96.13800 290.38487 51.86704 110 0 - + 34.60924 97.60950 293.72749 52.46408 110 0 - + 34.87981 99.08100 297.07011 53.06112 110 0 - + 35.15466 100.55250 300.41273 53.65817 110 0 - + 33.91693 100.55250 297.44910 53.65817 110 0 - + 34.18433 102.02400 300.75875 54.25521 110 0 - + 34.45607 103.49550 304.06839 54.85225 110 0 - + 34.73237 104.96700 307.37804 55.44929 110 0 - + 35.01342 106.43850 310.68768 56.04633 110 0 - + 35.29942 107.91000 313.99732 56.64337 110 0 - + 32.15155 107.91000 734.00940 36.53923 110 0 - + 32.06422 109.38150 745.49575 37.11102 110 0 - + 32.00503 110.85300 756.98209 37.68281 110 0 - + 31.97402 112.32450 768.46843 38.25461 110 0 - + 31.97124 113.79600 779.95478 38.82640 110 0 - + 31.99674 115.26750 791.44112 39.39820 110 0 - + 29.75191 115.26750 738.87493 39.39820 110 0 - + 29.77635 116.73900 749.59837 39.96999 110 0 - + 29.82632 118.21050 760.32181 40.54178 110 0 - + 29.89984 119.68200 771.04525 41.11358 110 0 - + 29.99490 121.15350 781.76869 41.68537 110 0 - + 30.10952 122.62500 792.49213 42.25717 110 0 - + 24.84373 122.62500 772.62437 42.25717 110 0 - + 24.88099 124.09650 783.07897 42.82896 110 0 - + 24.93319 125.56800 793.53357 43.40075 110 0 - + 24.99794 127.03950 803.98818 43.97255 110 0 - + 28.87604 128.51100 814.44278 44.54434 110 0 - + 56.66951 129.98250 824.89738 45.11614 110 7 - + 56.66951 129.98250 814.08791 45.11614 110 7 - + 84.16016 131.45400 824.40552 45.68793 110 10 - + 111.44217 132.92550 834.72313 46.25972 110 13 - + 138.58023 134.39700 845.04073 46.83152 110 16 - + 165.63905 135.86850 855.35834 47.40331 110 19 - + 192.68331 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8333,10 +8421,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 59.403 'Clay' - -4.00 46.529 'Peat' - -6.00 174.194 'Clay' - -13.00 166.454 'Sand' + 0.00 59.891 'Clay' + -4.00 46.380 'Peat' + -6.00 207.480 'Clay' + -13.00 161.769 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8351,7 +8439,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -8373,10 +8461,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8403,7 +8491,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -8412,24 +8500,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -8440,17 +8529,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8533,78 +8623,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 114.46307 58.86000 117.94548 24.09121 110 97 - - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 223.69025 69.16050 262.91521 21.84725 110 85 - - 193.93446 70.63200 271.20981 22.53650 110 72 - - 165.32317 72.10350 279.50442 23.22575 110 59 - - 137.77116 73.57500 287.79902 23.91500 110 48 - - 137.77116 73.57500 281.11759 23.91500 110 49 - - 111.17070 75.04650 289.21963 24.60425 110 38 - - 85.38634 76.51800 297.32167 25.29350 110 29 - - 60.29134 77.98950 305.42371 25.98275 110 20 - - 35.75894 79.46100 313.52575 26.67200 110 11 - - 11.66240 80.93250 321.62779 27.36125 110 0 - - 15.27710 80.93250 318.36273 27.36125 1 0 A - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00000 0.00000 0.00003 0.00000 1 0 A + 6.66779 1.47150 23.66976 0.59704 110 28 - + 23.25063 2.94300 47.33953 1.19408 110 49 - + 39.83734 4.41450 71.00929 1.79112 110 56 - + 56.42600 5.88600 94.67906 2.38817 110 60 - + 73.01470 7.35750 118.34882 2.98521 110 62 - + 25.81940 7.35750 48.63809 2.98521 110 53 - + 32.96736 8.82900 58.36571 3.58225 110 56 - + 40.11254 10.30050 68.09332 4.17929 110 59 - + 47.25399 11.77200 77.82094 4.77633 110 61 - + 54.39073 13.24350 87.54856 5.37337 110 62 - + 61.52180 14.71500 97.27618 5.97041 110 63 - + 42.62896 14.71500 69.37382 5.97041 110 61 - + 47.86426 16.18650 76.31120 6.56745 110 63 - + 53.09269 17.65800 83.24858 7.16450 110 64 - + 58.31396 19.12950 90.18597 7.76154 110 65 - + 63.52775 20.60100 97.12335 8.35858 110 65 - + 68.73378 22.07250 104.06073 8.95562 110 66 - + 56.57681 22.07250 86.10925 8.95562 110 66 - + 60.96440 23.54400 91.84986 9.55266 110 66 - + 65.34409 25.01550 97.59048 10.14970 110 67 - + 69.71597 26.48700 103.33110 10.74674 110 67 - + 74.08015 27.95850 109.07171 11.34379 110 68 - + 78.43673 29.43000 114.81233 11.94083 110 68 - + 69.42255 29.43000 101.50379 11.94083 110 68 - + 73.32098 30.90150 106.57898 12.53787 110 69 - + 77.21224 32.37300 111.65417 13.13491 110 69 - + 81.09662 33.84450 116.72936 13.73195 110 69 - + 84.97438 35.31600 121.80455 14.32899 110 70 - + 88.84580 36.78750 126.87974 14.92603 110 70 - + 81.66837 36.78750 116.28466 14.92603 110 70 - + 85.24666 38.25900 120.93605 15.52307 110 70 - + 88.81921 39.73050 125.58743 16.12012 110 71 - + 92.38629 41.20200 130.23882 16.71716 110 71 - + 95.94815 42.67350 134.89020 17.31420 110 71 - + 99.50507 44.14500 139.54159 17.91124 110 71 - + 93.53668 44.14500 130.73258 17.91124 110 72 - + 96.88996 45.61650 135.09033 18.50828 110 72 - + 100.23870 47.08800 139.44808 19.10532 110 72 - + 103.58300 48.55950 143.80584 19.70236 110 72 - + 106.92294 50.03100 148.16359 20.29941 110 72 - + 110.25863 51.50250 152.52134 20.89645 110 72 - + 105.14786 51.50250 144.97918 20.89645 110 73 - + 108.33334 52.97400 149.12144 21.49349 110 73 - + 111.51448 54.44550 153.26370 22.09053 110 73 - + 114.69108 55.91700 157.40596 22.68757 110 73 - + 117.86294 57.38850 161.54823 23.28461 110 73 - + 121.02985 58.86000 165.69049 23.88165 110 73 - + 203.87329 58.86000 306.18963 15.40546 110 67 - + 212.20418 60.33150 317.55426 15.97725 110 67 - + 220.50694 61.80300 328.91889 16.54905 110 67 - + 228.78150 63.27450 340.28352 17.12084 110 67 - + 237.02783 64.74600 351.64815 17.69263 110 67 - + 245.24587 66.21750 363.01278 18.26443 110 68 - + 230.08456 66.21750 336.73401 18.26443 110 68 - + 237.80035 67.68900 347.27595 18.83622 110 68 - + 244.47305 69.16050 357.81789 19.40802 110 68 - + 212.32723 70.63200 368.35983 19.97981 110 58 - + 181.27001 72.10350 378.90176 20.55160 110 48 - + 151.23178 73.57500 389.44370 21.12340 110 39 - + 151.23178 73.57500 380.66080 21.12340 110 40 - + 122.11873 75.04650 390.96499 21.69519 110 31 - + 93.80283 76.51800 401.26918 22.26699 110 23 - + 66.16318 77.98950 411.57337 22.83878 110 16 - + 39.07887 79.46100 421.87756 23.41057 110 9 - + 12.42900 80.93250 432.18175 23.98237 110 0 - + 12.42900 80.93250 427.69172 23.98237 110 0 - + 9.65636 82.40400 437.88886 24.55416 110 0 - + 10.12515 83.87550 448.08600 25.12596 110 0 - + 10.59142 85.34700 458.28314 25.69775 110 0 - + 11.05632 86.81850 468.48028 26.26954 110 0 - + 11.52098 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8619,8 +8709,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.420 'Clay' - -13.00 406.557 'Sand' + -6.00 438.139 'Clay' + -13.00 396.901 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8793,20 +8883,20 @@ PartialFactorSet=13 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 8.11 : Percentage mobilized resistance right - 275.90 : Effective left - 275.92 : Effective right + 13.45 : Percentage mobilized resistance left + 8.12 : Percentage mobilized resistance right + 276.20 : Effective left + 276.22 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2033.67 : Max effective resistance left + 2053.74 : Max effective resistance left 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 78.48 : Vertical force left - 73.70 : Vertical force right + 78.56 : Vertical force left + 73.77 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -8823,150 +8913,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -6.91935 - 0.00000 0.00000 -6.91223 - 0.00000 0.00000 -6.90511 - 0.00000 0.00000 -6.89799 - 0.00000 0.00000 -6.89087 - 0.00000 0.00000 -6.88375 - 0.00000 -0.00001 -6.88375 - 0.00000 -0.00001 -6.87663 - 0.00000 -0.00001 -6.86951 - 0.00000 -0.00001 -6.86239 - 0.00000 -0.00001 -6.85528 - 0.00202 0.04050 -6.84816 - 0.00201 0.04026 -6.84816 - 0.00987 0.12836 -6.84340 - 0.02995 0.28464 -6.83866 - 0.06907 0.50911 -6.83393 - 0.13404 0.80175 -6.82923 - 0.23169 1.16256 -6.82459 - 0.23169 1.16256 -6.82459 - 0.28138 1.32279 -6.82275 - 0.33758 1.48759 -6.82093 - 0.40045 1.65695 -6.81913 - 0.47019 1.83087 -6.81736 - 0.54698 2.00934 -6.81561 - 0.54699 2.00926 -6.81561 - 0.80721 2.21589 -6.81062 - 1.05597 1.85160 -6.80608 - 1.24221 1.25270 -6.80209 - 1.35666 0.65503 -6.79876 - 1.39946 0.05835 -6.79618 - 1.39945 0.05842 -6.79618 - 1.37070 -0.53752 -6.79441 - 1.27047 -1.13301 -6.79341 - 1.09879 -1.72826 -6.79307 - 0.85568 -2.32351 -6.79331 - 0.54114 -2.91890 -6.79402 - 0.54115 -2.91887 -6.79402 - 0.15514 -3.51457 -6.79508 - -0.30236 -4.11064 -6.79623 - -0.83142 -4.70705 -6.79717 - -1.43207 -5.30371 -6.79762 - -2.10431 -5.90038 -6.79728 - -2.10431 -5.90049 -6.79728 - -2.84483 -5.20725 -6.79551 - -3.49289 -4.51360 -6.79179 - -4.04842 -3.81923 -6.78576 - -4.51130 -3.12375 -6.77701 - -4.88135 -2.42673 -6.76519 - -4.88135 -2.42693 -6.76519 - -5.15836 -1.72789 -6.74995 - -5.34201 -1.02632 -6.73119 - -5.43191 -0.32167 -6.70885 - -5.42763 0.38658 -6.68286 - -5.32864 1.09899 -6.65316 - -5.32864 1.09877 -6.65316 - -5.13439 1.81589 -6.61975 - -4.84417 2.53827 -6.58282 - -4.45726 3.26640 -6.54266 - -3.97285 4.00075 -6.49951 - -3.39010 4.74175 -6.45365 - -3.39010 4.74160 -6.45365 - -2.93582 4.34567 -6.41770 - -2.52063 3.95997 -6.38061 - -2.14348 3.58478 -6.34255 - -1.80331 3.22037 -6.30365 - -1.49904 2.86695 -6.26406 - -1.49904 2.86688 -6.26406 - -1.22956 2.52463 -6.22391 - -0.99374 2.19368 -6.18329 - -0.79044 1.87416 -6.14228 - -0.61852 1.56617 -6.10095 - -0.47682 1.26978 -6.05939 - -0.47682 1.26974 -6.05939 - -0.31839 0.84704 -5.99676 - -0.22139 0.45070 -5.93386 - -0.18186 0.08083 -5.87072 - -0.19581 -0.26249 -5.80738 - -0.25927 -0.57916 -5.74388 - -0.25927 -0.57921 -5.74388 - -0.36823 -0.86918 -5.68020 - -0.51868 -1.13234 -5.61621 - -0.70658 -1.36852 -5.55174 - -0.92788 -1.57748 -5.48663 - -1.17845 -1.75894 -5.42073 - -1.17844 -1.75913 -5.42073 - -1.45418 -1.91269 -5.35383 - -1.75083 -2.03790 -5.28568 - -2.06410 -2.13417 -5.21601 - -2.38960 -2.20079 -5.14454 - -2.72282 -2.23697 -5.07101 - -2.72281 -2.23738 -5.07101 - -3.05917 -2.24219 -4.99514 - -3.39384 -2.21457 -4.91662 - -3.72186 -2.15336 -4.83518 - -4.03811 -2.05727 -4.75053 - -4.33723 -1.92489 -4.66240 - -4.33722 -1.92554 -4.66240 - -4.61377 -1.75536 -4.57050 - -4.86186 -1.54575 -4.47461 - -5.07544 -1.29498 -4.37455 - -5.24820 -1.00128 -4.27015 - -5.37358 -0.66277 -4.16121 - -5.37358 -0.66357 -4.16121 - -5.44482 -0.27833 -4.04757 - -5.45464 0.15564 -3.92922 - -5.39559 0.64028 -3.80623 - -5.25992 1.17755 -3.67863 - -5.03960 1.76937 -3.54649 - -5.03961 1.76863 -3.54649 - -4.72641 2.41688 -3.40989 - -4.31163 3.12336 -3.26921 - -3.78641 3.88969 -3.12489 - -3.14166 4.71729 -2.97740 - -2.36810 5.60742 -2.82719 - -2.36813 5.60710 -2.82719 - -1.45634 6.56077 -2.67478 - -0.39669 7.57873 -2.52111 - 0.82051 8.66127 -2.36721 - 2.20492 9.80827 -2.21416 - 3.76618 11.01915 -2.06300 - 3.76871 11.00121 -2.06300 - 5.22032 8.37454 -1.91519 - 6.28930 5.91241 -1.77189 - 7.00638 3.69700 -1.63376 - 7.41260 1.76559 -1.50142 - 7.54962 0.10534 -1.37551 - 7.54841 0.10527 -1.37551 - 7.45585 -1.29770 -1.25638 - 7.17127 -2.45724 -1.14368 - 6.73019 -3.38649 -1.03705 - 6.16622 -4.09782 -0.93614 - 5.51116 -4.60283 -0.84056 - 5.51128 -4.59875 -0.84056 - 4.79588 -4.90812 -0.74981 - 4.04816 -5.03127 -0.66320 - 3.29542 -4.97619 -0.58008 - 2.56388 -4.74956 -0.49982 - 1.87886 -4.35670 -0.42177 - 1.87898 -4.35519 -0.42177 - 1.26532 -3.80008 -0.34528 - 0.74693 -3.08545 -0.26986 - 0.34757 -2.21323 -0.19518 - 0.09078 -1.18461 -0.12092 - -0.00002 -0.00011 -0.04672 + 0.00000 0.00000 -6.75383 + 0.00000 0.00000 -6.75139 + 0.00000 0.00000 -6.74895 + 0.00000 0.00000 -6.74650 + 0.00000 0.00000 -6.74406 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.73918 + 0.00000 0.00000 -6.73674 + 0.00000 0.00000 -6.73430 + 0.00000 0.00000 -6.73186 + 0.00265 0.05297 -6.72942 + 0.00264 0.05289 -6.72942 + 0.01259 0.15740 -6.72778 + 0.03638 0.32965 -6.72615 + 0.08078 0.56964 -6.72455 + 0.15257 0.87738 -6.72298 + 0.25851 1.25284 -6.72147 + 0.25851 1.25284 -6.72147 + 0.31193 1.41882 -6.72089 + 0.37208 1.58929 -6.72033 + 0.43913 1.76424 -6.71979 + 0.51328 1.94369 -6.71928 + 0.59469 2.12761 -6.71880 + 0.59469 2.12762 -6.71880 + 0.86094 2.12195 -6.71763 + 1.08139 1.55221 -6.71693 + 1.23348 0.98262 -6.71680 + 1.31722 0.41296 -6.71732 + 1.33258 -0.15700 -6.71856 + 1.33258 -0.15691 -6.71856 + 1.27953 -0.72741 -6.72059 + 1.15797 -1.29872 -6.72333 + 0.96779 -1.87105 -6.72668 + 0.70887 -2.44459 -6.73052 + 0.38104 -3.01949 -6.73476 + 0.38104 -3.01947 -6.73476 + -0.01586 -3.59583 -6.73926 + -0.48202 -4.17371 -6.74375 + -1.01761 -4.75304 -6.74794 + -1.62280 -5.33368 -6.75154 + -2.29773 -5.91538 -6.75424 + -2.29773 -5.91550 -6.75424 + -3.03983 -5.21608 -6.75572 + -3.68869 -4.51672 -6.75512 + -4.24428 -3.81709 -6.75207 + -4.70655 -3.11679 -6.74617 + -5.07537 -2.41537 -6.73707 + -5.07537 -2.41558 -6.73707 + -5.35060 -1.71254 -6.72442 + -5.53195 -1.00733 -6.70811 + -5.61910 -0.29942 -6.68809 + -5.61165 0.41177 -6.66430 + -5.50913 1.12680 -6.63667 + -5.50913 1.12657 -6.63667 + -5.31101 1.84601 -6.60521 + -5.01664 2.57042 -6.57011 + -4.62532 3.30032 -6.53166 + -4.13629 4.03620 -6.49011 + -3.54871 4.77849 -6.44573 + -3.54872 4.77833 -6.44573 + -3.09066 4.38448 -6.41082 + -2.67149 4.00056 -6.37472 + -2.29021 3.62690 -6.33758 + -1.94576 3.26376 -6.29955 + -1.63710 2.91138 -6.26077 + -1.63710 2.91130 -6.26077 + -1.36313 2.56986 -6.22138 + -1.12276 2.23952 -6.18147 + -0.91485 1.92042 -6.14112 + -0.73829 1.61266 -6.10040 + -0.59194 1.31635 -6.05941 + -0.59194 1.31630 -6.05941 + -0.42653 0.89343 -5.99755 + -0.32261 0.49662 -5.93532 + -0.27624 0.12601 -5.87277 + -0.28349 -0.21827 -5.80993 + -0.34040 -0.53610 -5.74686 + -0.34039 -0.53617 -5.74686 + -0.44300 -0.82746 -5.68354 + -0.58730 -1.09209 -5.61984 + -0.76928 -1.32984 -5.55561 + -0.98489 -1.54047 -5.49068 + -1.23005 -1.72366 -5.42491 + -1.23004 -1.72385 -5.42491 + -1.50062 -1.87919 -5.35810 + -1.79238 -2.00621 -5.29000 + -2.10103 -2.10429 -5.22034 + -2.42219 -2.17273 -5.14885 + -2.75133 -2.21071 -5.07528 + -2.75132 -2.21112 -5.07528 + -3.08388 -2.21770 -4.99933 + -3.41500 -2.19182 -4.92071 + -3.73974 -2.13230 -4.83916 + -4.05295 -2.03786 -4.75439 + -4.34928 -1.90707 -4.66611 + -4.34927 -1.90772 -4.66611 + -4.62326 -1.73907 -4.57406 + -4.86902 -1.53092 -4.47801 + -5.08048 -1.28155 -4.37779 + -5.25133 -0.98917 -4.27321 + -5.37498 -0.65191 -4.16410 + -5.37498 -0.65271 -4.16410 + -5.44468 -0.26864 -4.05029 + -5.45313 0.16422 -3.93177 + -5.39288 0.64783 -3.80859 + -5.25615 1.18414 -3.68083 + -5.03490 1.77507 -3.54852 + -5.03491 1.77433 -3.54852 + -4.72092 2.42177 -3.41176 + -4.30547 3.12749 -3.27092 + -3.77968 3.89313 -3.12645 + -3.13446 4.72012 -2.97881 + -2.36052 5.60968 -2.82846 + -2.36055 5.60936 -2.82846 + -1.44846 6.56253 -2.67592 + -0.38857 7.58004 -2.52211 + 0.82879 8.66218 -2.36810 + 2.21331 9.80884 -2.21493 + 3.77463 11.01942 -2.06367 + 3.77717 11.00147 -2.06367 + 5.22877 8.37415 -1.91575 + 6.29763 5.91123 -1.77237 + 7.01447 3.69491 -1.63414 + 7.42032 1.76277 -1.50173 + 7.55686 0.10194 -1.37575 + 7.55565 0.10187 -1.37575 + 7.46255 -1.30153 -1.25655 + 7.17737 -2.46138 -1.14380 + 6.73565 -3.39082 -1.03712 + 6.17102 -4.10223 -0.93615 + 5.51531 -4.60722 -0.84053 + 5.51543 -4.60313 -0.84053 + 4.79938 -4.91239 -0.74974 + 4.05103 -5.03534 -0.66309 + 3.29769 -4.97999 -0.57993 + 2.56561 -4.75302 -0.49963 + 1.88010 -4.35975 -0.42156 + 1.88022 -4.35824 -0.42156 + 1.26614 -3.80264 -0.34503 + 0.74740 -3.08747 -0.26958 + 0.34778 -2.21464 -0.19488 + 0.09084 -1.18534 -0.12058 + -0.00002 -0.00011 -0.04636 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9133,139 +9223,139 @@ Status character 0.00000 0.00000 95.49049 10.12752 1 0 A 0.00000 0.00000 109.13199 11.57431 1 0 A 0.00000 0.00000 122.77349 13.02110 1 0 A - 0.77157 0.00000 136.41499 14.46788 110 0 - - 0.77157 0.00000 111.45332 14.46788 110 0 - - 1.74560 0.00000 118.88354 15.43241 110 0 - - 2.71962 0.00000 126.31376 16.39693 110 0 - - 3.69361 0.00000 133.74398 17.36146 110 0 - - 4.66752 0.00000 141.17421 18.32599 110 0 - - 5.64134 0.00000 148.60443 19.29051 110 0 - - 5.64134 0.00000 140.04174 19.29051 110 0 - - 5.80422 0.39240 141.19755 19.44972 110 0 - - 5.96707 0.78480 142.35336 19.60893 110 0 - - 6.12988 1.17720 143.50917 19.76814 110 0 - - 6.29264 1.56960 144.66498 19.92736 110 0 - - 6.45534 1.96200 145.82080 20.08657 110 0 - - 6.45534 1.96200 141.80292 20.08657 110 0 - - 6.94296 3.13920 145.17481 20.56420 110 0 - - 7.42968 4.31640 148.54670 21.04183 110 0 - - 7.91528 5.49360 151.91860 21.51947 110 0 - - 8.39958 6.67080 155.29049 21.99710 110 0 - - 8.88238 7.84800 158.66238 22.47473 110 0 - - 8.88238 7.84800 153.05638 22.47473 110 0 - - 9.36354 9.02520 156.30914 22.95236 110 0 - - 9.84318 10.20240 159.56189 23.43000 110 0 - - 10.32148 11.37960 162.81464 23.90763 110 0 - - 10.79865 12.55680 166.06740 24.38526 110 0 - - 11.27486 13.73400 169.32015 24.86290 110 0 - - 11.27486 13.73400 164.25619 24.86290 110 0 - - 11.75038 14.91120 167.41166 25.34053 110 0 - - 12.22571 16.08840 170.56714 25.81816 110 0 - - 12.70146 17.26560 173.72261 26.29580 110 0 - - 13.17819 18.44280 176.87808 26.77343 110 0 - - 13.65650 19.62000 180.03355 27.25106 110 0 - - 19.39187 19.62000 112.91072 24.82969 110 0 - - 19.48624 20.92800 113.33345 24.92265 110 0 - - 19.58217 22.23600 113.75618 25.01561 110 0 - - 19.67997 23.54400 114.17890 25.10857 110 0 - - 19.77992 24.85200 114.60163 25.20153 110 0 - - 19.88234 26.16000 115.02436 25.29449 110 0 - - 19.88234 26.16000 114.42115 25.29449 110 0 - - 19.98749 27.46800 114.84166 25.38745 110 0 - - 20.09546 28.77600 115.26217 25.48041 110 0 - - 20.20629 30.08400 115.68268 25.57337 110 0 - - 20.32004 31.39200 116.10319 25.66633 110 0 - - 20.43676 32.70000 116.52370 25.75929 110 0 - - 20.43676 32.70000 116.01583 25.75929 110 0 - - 20.55645 34.00800 116.43451 25.85225 110 0 - - 20.67895 35.31600 116.85318 25.94521 110 0 - - 20.80404 36.62400 117.27186 26.03817 110 0 - - 20.93152 37.93200 117.69054 26.13113 110 0 - - 21.06117 39.24000 118.10921 26.22409 110 0 - - 15.87413 39.24000 183.43874 28.78144 110 0 - - 16.34408 40.22100 185.97557 29.17947 110 0 - - 16.81627 41.20200 188.51241 29.57750 110 0 - - 17.29043 42.18300 191.04924 29.97553 110 0 - - 17.76625 43.16400 193.58607 30.37355 110 0 - - 18.24346 44.14500 196.12290 30.77158 110 0 - - 18.24346 44.14500 192.60019 30.77158 110 0 - - 18.72179 45.12600 195.09146 31.16961 110 0 - - 19.20105 46.10700 197.58272 31.56764 110 0 - - 19.68111 47.08800 200.07399 31.96566 110 0 - - 20.16179 48.06900 202.56525 32.36369 110 0 - - 20.64294 49.05000 205.05652 32.76172 110 0 - - 20.64294 49.05000 201.00495 32.76172 110 0 - - 21.36524 50.52150 204.66801 33.35876 110 0 - - 22.08809 51.99300 208.33107 33.95580 110 0 - - 22.81140 53.46450 211.99414 34.55284 110 0 - - 23.53512 54.93600 215.65720 35.14988 110 0 - - 24.25917 56.40750 219.32027 35.74693 110 0 - - 24.25917 56.40750 214.81611 35.74693 110 0 - - 24.98356 57.87900 218.40395 36.34397 110 0 - - 25.70859 59.35050 221.99178 36.94101 110 0 - - 26.43457 60.82200 225.57962 37.53805 110 0 - - 27.16183 62.29350 229.16745 38.13509 110 0 - - 27.89068 63.76500 232.75529 38.73213 110 0 - - 27.89068 63.76500 228.61475 38.73213 110 0 - - 28.62151 65.23650 232.13876 39.32917 110 0 - - 29.35485 66.70800 235.66278 39.92621 110 0 - - 30.09124 68.17950 239.18679 40.52326 110 0 - - 30.83121 69.65100 242.71080 41.12030 110 0 - - 31.57531 71.12250 246.23481 41.71734 110 0 - - 31.57531 71.12250 242.40131 41.71734 110 0 - - 32.32410 72.59400 245.87046 42.31438 110 0 - - 33.07818 74.06550 249.33961 42.91142 110 0 - - 33.83810 75.53700 252.80875 43.50846 110 0 - - 34.60444 77.00850 256.27790 44.10550 110 0 - - 35.37774 78.48000 259.74705 44.70255 110 0 - - 35.37774 78.48000 256.17685 44.70255 110 0 - - 36.15858 79.95150 259.59831 45.29959 110 0 - - 36.94740 81.42300 263.01977 45.89663 110 0 - - 37.74456 82.89450 266.44124 46.49367 110 0 - - 38.55042 84.36600 269.86270 47.09071 110 0 - - 39.36534 85.83750 273.28417 47.68775 110 0 - - 39.36534 85.83750 269.94257 47.68775 110 0 - - 40.18965 87.30900 273.32219 48.28479 110 0 - - 41.02339 88.78050 276.70182 48.88183 110 0 - - 41.86643 90.25200 280.08145 49.47888 110 0 - - 42.71866 91.72350 283.46108 50.07592 110 0 - - 43.57998 93.19500 286.84071 50.67296 110 0 - - 43.57998 93.19500 283.69963 50.67296 110 0 - - 44.45021 94.66650 287.04225 51.27000 110 0 - - 45.32862 96.13800 290.38487 51.86704 110 0 - - 46.21430 97.60950 293.72749 52.46408 110 0 - - 47.10633 99.08100 297.07011 53.06112 110 0 - - 48.00379 100.55250 300.41273 53.65817 110 0 - - 48.00379 100.55250 297.44910 53.65817 110 0 - - 48.90564 102.02400 300.75875 54.25521 110 0 - - 49.81003 103.49550 304.06839 54.85225 110 0 - - 50.71486 104.96700 307.37804 55.44929 110 0 - - 51.61801 106.43850 310.68768 56.04633 110 0 - - 52.51737 107.91000 313.99732 56.64337 110 0 - + 1.00905 0.00000 136.41499 14.46788 110 0 - + 1.00905 0.00000 111.45332 14.46788 110 0 - + 1.97684 0.00000 118.88354 15.43241 110 0 - + 2.94462 0.00000 126.31376 16.39693 110 0 - + 3.91236 0.00000 133.74398 17.36146 110 0 - + 4.88002 0.00000 141.17421 18.32599 110 0 - + 5.84757 0.00000 148.60443 19.29051 110 0 - + 5.84757 0.00000 140.04174 19.29051 110 0 - + 6.00794 0.39240 141.19755 19.44972 110 0 - + 6.16827 0.78480 142.35336 19.60893 110 0 - + 6.32856 1.17720 143.50917 19.76814 110 0 - + 6.48879 1.56960 144.66498 19.92736 110 0 - + 6.64896 1.96200 145.82080 20.08657 110 0 - + 6.64896 1.96200 141.80292 20.08657 110 0 - + 7.12895 3.13920 145.17481 20.56420 110 0 - + 7.60797 4.31640 148.54670 21.04183 110 0 - + 8.08586 5.49360 151.91860 21.51947 110 0 - + 8.56247 6.67080 155.29049 21.99710 110 0 - + 9.03760 7.84800 158.66238 22.47473 110 0 - + 9.03760 7.84800 153.05638 22.47473 110 0 - + 9.51118 9.02520 156.30914 22.95236 110 0 - + 9.98333 10.20240 159.56189 23.43000 110 0 - + 10.45427 11.37960 162.81464 23.90763 110 0 - + 10.92422 12.55680 166.06740 24.38526 110 0 - + 11.39337 13.73400 169.32015 24.86290 110 0 - + 11.39337 13.73400 164.25619 24.86290 110 0 - + 11.86201 14.91120 167.41166 25.34053 110 0 - + 12.33066 16.08840 170.56714 25.81816 110 0 - + 12.79991 17.26560 173.72261 26.29580 110 0 - + 13.27035 18.44280 176.87808 26.77343 110 0 - + 13.74259 19.62000 180.03355 27.25106 110 0 - + 19.42630 19.62000 112.91072 24.82969 110 0 - + 19.51807 20.92800 113.33345 24.92265 110 0 - + 19.61151 22.23600 113.75618 25.01561 110 0 - + 19.70692 23.54400 114.17890 25.10857 110 0 - + 19.80459 24.85200 114.60163 25.20153 110 0 - + 19.90484 26.16000 115.02436 25.29449 110 0 - + 19.90484 26.16000 114.42115 25.29449 110 0 - + 20.00792 27.46800 114.84166 25.38745 110 0 - + 20.11392 28.77600 115.26217 25.48041 110 0 - + 20.22290 30.08400 115.68268 25.57337 110 0 - + 20.33489 31.39200 116.10319 25.66633 110 0 - + 20.44995 32.70000 116.52370 25.75929 110 0 - + 20.44995 32.70000 116.01583 25.75929 110 0 - + 20.56808 34.00800 116.43451 25.85225 110 0 - + 20.68912 35.31600 116.85318 25.94521 110 0 - + 20.81284 36.62400 117.27186 26.03817 110 0 - + 20.93904 37.93200 117.69054 26.13113 110 0 - + 21.06750 39.24000 118.10921 26.22409 110 0 - + 15.88998 39.24000 183.43874 28.78144 110 0 - + 16.35784 40.22100 185.97557 29.17947 110 0 - + 16.82807 41.20200 188.51241 29.57750 110 0 - + 17.30037 42.18300 191.04924 29.97553 110 0 - + 17.77446 43.16400 193.58607 30.37355 110 0 - + 18.25004 44.14500 196.12290 30.77158 110 0 - + 18.25004 44.14500 192.60019 30.77158 110 0 - + 18.72685 45.12600 195.09146 31.16961 110 0 - + 19.20469 46.10700 197.58272 31.56764 110 0 - + 19.68343 47.08800 200.07399 31.96566 110 0 - + 20.16288 48.06900 202.56525 32.36369 110 0 - + 20.64290 49.05000 205.05652 32.76172 110 0 - + 20.64290 49.05000 201.00495 32.76172 110 0 - + 21.36367 50.52150 204.66801 33.35876 110 0 - + 22.08517 51.99300 208.33107 33.95580 110 0 - + 22.80731 53.46450 211.99414 34.55284 110 0 - + 23.53002 54.93600 215.65720 35.14988 110 0 - + 24.25321 56.40750 219.32027 35.74693 110 0 - + 24.25321 56.40750 214.81611 35.74693 110 0 - + 24.97688 57.87900 218.40395 36.34397 110 0 - + 25.70132 59.35050 221.99178 36.94101 110 0 - + 26.42683 60.82200 225.57962 37.53805 110 0 - + 27.15372 62.29350 229.16745 38.13509 110 0 - + 27.88231 63.76500 232.75529 38.73213 110 0 - + 27.88231 63.76500 228.61475 38.73213 110 0 - + 28.61296 65.23650 232.13876 39.32917 110 0 - + 29.34621 66.70800 235.66278 39.92621 110 0 - + 30.08258 68.17950 239.18679 40.52326 110 0 - + 30.82260 69.65100 242.71080 41.12030 110 0 - + 31.56679 71.12250 246.23481 41.71734 110 0 - + 31.56679 71.12250 242.40131 41.71734 110 0 - + 32.31573 72.59400 245.87046 42.31438 110 0 - + 33.06999 74.06550 249.33961 42.91142 110 0 - + 33.83014 75.53700 252.80875 43.50846 110 0 - + 34.59673 77.00850 256.27790 44.10550 110 0 - + 35.37032 78.48000 259.74705 44.70255 110 0 - + 35.37032 78.48000 256.17685 44.70255 110 0 - + 36.15147 79.95150 259.59831 45.29959 110 0 - + 36.94060 81.42300 263.01977 45.89663 110 0 - + 37.73809 82.89450 266.44124 46.49367 110 0 - + 38.54429 84.36600 269.86270 47.09071 110 0 - + 39.35956 85.83750 273.28417 47.68775 110 0 - + 39.35956 85.83750 269.94257 47.68775 110 0 - + 40.18422 87.30900 273.32219 48.28479 110 0 - + 41.01830 88.78050 276.70182 48.88183 110 0 - + 41.86169 90.25200 280.08145 49.47888 110 0 - + 42.71426 91.72350 283.46108 50.07592 110 0 - + 43.57592 93.19500 286.84071 50.67296 110 0 - + 43.57592 93.19500 283.69963 50.67296 110 0 - + 44.44648 94.66650 287.04225 51.27000 110 0 - + 45.32520 96.13800 290.38487 51.86704 110 0 - + 46.21119 97.60950 293.72749 52.46408 110 0 - + 47.10351 99.08100 297.07011 53.06112 110 0 - + 48.00125 100.55250 300.41273 53.65817 110 0 - + 48.00125 100.55250 297.44910 53.65817 110 0 - + 48.90337 102.02400 300.75875 54.25521 110 0 - + 49.80802 103.49550 304.06839 54.85225 110 0 - + 50.71309 104.96700 307.37804 55.44929 110 0 - + 51.61647 106.43850 310.68768 56.04633 110 0 - + 52.51604 107.91000 313.99732 56.64337 110 0 - 18.59731 107.91000 734.00940 36.53923 1 0 A 18.88833 109.38150 745.49575 37.11102 1 0 A - 19.96389 110.85300 756.98209 37.68281 110 0 - - 21.91705 112.32450 768.46843 38.25461 110 0 - - 23.81224 113.79600 779.95478 38.82640 110 0 - - 25.64307 115.26750 791.44112 39.39820 110 0 - - 25.64307 115.26750 738.87493 39.39820 110 0 - - 27.40620 116.73900 749.59837 39.96999 110 0 - - 29.10497 118.21050 760.32181 40.54178 110 0 - - 30.74303 119.68200 771.04525 41.11358 110 0 - - 32.32401 121.15350 781.76869 41.68537 110 0 - - 33.85155 122.62500 792.49213 42.25717 110 0 - - 33.85155 122.62500 772.62437 42.25717 110 0 - - 35.33081 124.09650 783.07897 42.82896 110 0 - - 36.76876 125.56800 793.53357 43.40075 110 0 - - 38.17176 127.03950 803.98818 43.97255 110 0 - - 39.54618 128.51100 814.44278 44.54434 110 0 - - 40.89839 129.98250 824.89738 45.11614 110 0 - - 40.89839 129.98250 814.08791 45.11614 110 0 - - 42.23513 131.45400 824.40552 45.68793 110 0 - - 43.56112 132.92550 834.72313 46.25972 110 0 - - 44.87969 134.39700 845.04073 46.83152 110 0 - - 46.19416 135.86850 855.35834 47.40331 110 0 - - 47.50787 137.34000 865.67594 47.97510 110 0 - + 19.95915 110.85300 756.98209 37.68281 110 0 - + 21.91316 112.32450 768.46843 38.25461 110 0 - + 23.80913 113.79600 779.95478 38.82640 110 0 - + 25.64067 115.26750 791.44112 39.39820 110 0 - + 25.64067 115.26750 738.87493 39.39820 110 0 - + 27.40445 116.73900 749.59837 39.96999 110 0 - + 29.10382 118.21050 760.32181 40.54178 110 0 - + 30.74241 119.68200 771.04525 41.11358 110 0 - + 32.32388 121.15350 781.76869 41.68537 110 0 - + 33.85187 122.62500 792.49213 42.25717 110 0 - + 33.85187 122.62500 772.62437 42.25717 110 0 - + 35.33154 124.09650 783.07897 42.82896 110 0 - + 36.76987 125.56800 793.53357 43.40075 110 0 - + 38.17323 127.03950 803.98818 43.97255 110 0 - + 39.54799 128.51100 814.44278 44.54434 110 0 - + 40.90053 129.98250 824.89738 45.11614 110 0 - + 40.90053 129.98250 814.08791 45.11614 110 0 - + 42.23758 131.45400 824.40552 45.68793 110 0 - + 43.56388 132.92550 834.72313 46.25972 110 0 - + 44.88275 134.39700 845.04073 46.83152 110 0 - + 46.19752 135.86850 855.35834 47.40331 110 0 - + 47.51152 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9278,9 +9368,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 21.001 'Clay' - -4.00 40.354 'Peat' - -6.00 233.170 'Clay' + 0.00 21.417 'Clay' + -4.00 40.391 'Peat' + -6.00 233.144 'Clay' -13.00 99.644 'Sand' [END OF DATA] [END OF TABLE] @@ -9358,26 +9448,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 62.84700 0.00000 12.71803 0.00000 - -3.40000 62.86100 0.00000 49.82607 0.00000 - -4.00000 62.96500 0.00000 97.72394 0.00000 - -4.66667 62.25400 0.00000 121.96325 0.00000 - -5.33333 61.68900 0.00000 147.38471 0.00000 - -6.00000 61.22700 0.00000 174.01379 0.00000 - -6.50000 61.75400 0.00000 222.69748 0.00000 - -7.00000 62.12300 0.00000 275.90757 0.00000 - -7.75000 62.52000 0.00000 364.24778 0.00000 - -8.50000 62.80800 0.00000 462.83865 0.00000 - -9.25000 63.03300 0.00000 571.68935 0.00000 - -10.00000 63.21400 0.00000 690.80325 0.00000 - -10.75000 63.36600 0.00000 820.18139 0.00000 - -11.50000 63.49500 0.00000 959.82388 0.00000 - -12.25000 63.60700 0.00000 1109.73038 0.00000 - -13.00000 63.70600 0.00000 1269.90038 0.00000 - -13.75000 67.31700 0.00000 1645.63390 0.00000 - -14.50000 68.75300 33.35500 2034.73617 5.90482 - -15.25000 69.61600 33.08900 2453.28354 17.82374 - -16.00000 70.20300 32.85200 2905.24722 30.87200 + -2.80000 62.44000 0.00000 34.67704 0.00000 + -3.40000 62.62900 0.00000 75.97227 0.00000 + -4.00000 62.79500 0.00000 123.87621 0.00000 + -4.66667 62.24800 0.00000 148.10002 0.00000 + -5.33333 61.78700 0.00000 173.53003 0.00000 + -6.00000 61.39400 0.00000 200.18091 0.00000 + -6.50000 61.81600 0.00000 248.84128 0.00000 + -7.00000 62.13400 0.00000 302.04465 0.00000 + -7.75000 62.49500 0.00000 390.38747 0.00000 + -8.50000 62.77000 0.00000 488.98710 0.00000 + -9.25000 62.98900 0.00000 597.84879 0.00000 + -10.00000 63.16900 0.00000 716.97434 0.00000 + -10.75000 63.32200 0.00000 846.36414 0.00000 + -11.50000 63.45300 0.00000 986.01798 0.00000 + -12.25000 63.56700 0.00000 1135.93537 0.00000 + -13.00000 63.66800 0.00000 1296.11576 0.00000 + -13.75000 67.25000 0.00000 1672.74136 0.00000 + -14.50000 68.68800 0.00000 2062.50982 0.00000 + -15.25000 69.55600 32.99300 2481.55792 10.49418 + -16.00000 70.14900 32.76900 2933.90990 23.54923 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9394,26 +9484,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 21.19672 0.00000 0.64302 0.00000 11.41450 - -3.10000 5.57100 61.84674 0.00000 0.64302 0.00000 11.10155 - -3.70000 9.28500 79.82978 0.00000 0.64302 0.00000 8.59771 - -4.33333 11.53867 36.35896 0.00000 0.58588 0.00000 3.15105 - -5.00000 12.33200 38.13220 0.00000 0.58588 0.00000 3.09213 - -5.66667 13.12533 39.94361 0.00000 0.58588 0.00000 3.04325 - -6.25000 15.06950 97.36739 0.00000 0.64302 0.00000 6.46122 - -6.75000 18.16450 106.42016 0.00000 0.64302 0.00000 5.85869 - -7.37500 22.03325 117.78695 0.00000 0.64302 0.00000 5.34587 - -8.12500 26.67575 131.45449 0.00000 0.64302 0.00000 4.92786 - -8.87500 31.31825 145.13427 0.00000 0.64302 0.00000 4.63418 - -9.62500 35.96075 158.81852 0.00000 0.64302 0.00000 4.41644 - -10.37500 40.60325 172.50419 0.00000 0.64302 0.00000 4.24853 - -11.12500 45.24575 186.18998 0.00000 0.64302 0.00000 4.11508 - -11.87500 49.88825 199.87533 0.00000 0.64302 0.00000 4.00646 - -12.62500 54.53075 213.56001 0.00000 0.64302 0.00000 3.91632 - -13.37500 60.29825 500.97803 0.00000 0.41479 0.00000 8.30833 - -14.12500 67.19075 518.80302 7.87309 0.41479 0.11718 7.72135 - -14.87500 74.08325 558.06317 15.89189 0.41479 0.21451 7.53292 - -15.62500 80.97575 602.61823 17.39768 0.41479 0.21485 7.44196 + -2.50000 1.85700 57.79507 0.00000 0.64302 0.00000 31.12282 + -3.10000 5.57100 68.82539 0.00000 0.64302 0.00000 12.35423 + -3.70000 9.28500 79.83989 0.00000 0.64302 0.00000 8.59880 + -4.33333 11.53867 36.33573 0.00000 0.58588 0.00000 3.14904 + -5.00000 12.33200 38.14501 0.00000 0.58588 0.00000 3.09317 + -5.66667 13.12533 39.97632 0.00000 0.58588 0.00000 3.04574 + -6.25000 15.06950 97.32074 0.00000 0.64302 0.00000 6.45813 + -6.75000 18.16450 106.40674 0.00000 0.64302 0.00000 5.85795 + -7.37500 22.03325 117.79043 0.00000 0.64302 0.00000 5.34603 + -8.12500 26.67575 131.46617 0.00000 0.64302 0.00000 4.92830 + -8.87500 31.31825 145.14892 0.00000 0.64302 0.00000 4.63464 + -9.62500 35.96075 158.83407 0.00000 0.64302 0.00000 4.41687 + -10.37500 40.60325 172.51974 0.00000 0.64302 0.00000 4.24891 + -11.12500 45.24575 186.20511 0.00000 0.64302 0.00000 4.11542 + -11.87500 49.88825 199.88985 0.00000 0.64302 0.00000 4.00675 + -12.62500 54.53075 213.57385 0.00000 0.64302 0.00000 3.91658 + -13.37500 60.29825 502.16747 0.00000 0.41479 0.00000 8.32806 + -14.12500 67.19075 519.69128 0.00000 0.41479 0.00000 7.73457 + -14.87500 74.08325 558.73080 13.99224 0.41479 0.18887 7.54193 + -15.62500 80.97575 603.13597 17.40674 0.41479 0.21496 7.44835 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9454,126 +9544,126 @@ Status character 0.00000 1.17720 0.00000 0.00000 -1 0 - 0.00000 1.56960 0.00000 0.00000 -1 0 - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 8.47869 3.13920 8.47869 0.47763 202 100 P - 14.56742 4.31640 16.95738 0.95527 110 86 - - 15.03708 5.49360 25.43606 1.43290 110 59 - - 15.50805 6.67080 33.91475 1.91053 110 46 - - 15.98052 7.84800 42.39344 2.38817 110 38 - - 15.98052 7.84800 41.23116 2.38817 110 39 - - 16.45462 9.02520 49.47739 2.86580 110 33 - - 16.93025 10.20240 57.72362 3.34343 110 29 - - 17.40721 11.37960 65.96985 3.82106 110 26 - - 17.88531 12.55680 74.21609 4.29870 110 24 - - 18.36437 13.73400 82.46232 4.77633 110 22 - - 18.36437 13.73400 63.86382 4.77633 110 29 - - 18.84412 14.91120 70.25021 5.25396 110 27 - - 19.32405 16.08840 76.63659 5.73160 110 25 - - 19.80357 17.26560 83.02297 6.20923 110 24 - - 20.28210 18.44280 89.40935 6.68686 110 23 - - 20.75905 19.62000 95.79574 7.16450 110 22 - - 11.96572 19.62000 35.10904 6.52790 110 34 - - 12.05727 20.92800 35.60901 6.62086 110 34 - - 12.14726 22.23600 36.10898 6.71382 110 34 - - 12.23538 23.54400 36.60895 6.80678 110 33 - - 12.32135 24.85200 37.10891 6.89974 110 33 - - 12.40485 26.16000 37.60888 6.99270 110 33 - - 12.40485 26.16000 36.90565 6.99270 110 34 - - 12.48562 27.46800 37.39627 7.08566 110 33 - - 12.56357 28.77600 37.88689 7.17862 110 33 - - 12.63866 30.08400 38.37751 7.27158 110 33 - - 12.71083 31.39200 38.86813 7.36454 110 33 - - 12.78003 32.70000 39.35874 7.45750 110 32 - - 12.78003 32.70000 38.73646 7.45750 110 33 - - 12.84626 34.00800 39.21932 7.55046 110 33 - - 12.90968 35.31600 39.70218 7.64342 110 33 - - 12.97051 36.62400 40.18504 7.73638 110 32 - - 13.02895 37.93200 40.66791 7.82934 110 32 - - 13.08522 39.24000 41.15077 7.92230 110 32 - - 21.60219 39.24000 87.36865 8.69488 110 25 - - 21.92830 40.22100 91.36815 9.09290 110 24 - - 22.25216 41.20200 95.36764 9.49093 110 23 - - 22.57406 42.18300 99.36714 9.88896 110 23 - - 22.89429 43.16400 103.36664 10.28699 110 22 - - 23.21313 44.14500 107.36613 10.68501 110 22 - - 23.21313 44.14500 97.35384 10.68501 110 24 - - 23.53086 45.12600 100.98037 11.08304 110 23 - - 23.84765 46.10700 104.60690 11.48107 110 23 - - 24.16366 47.08800 108.23343 11.87910 110 22 - - 24.47903 48.06900 111.85996 12.27712 110 22 - - 24.79393 49.05000 115.48648 12.67515 110 21 - - 24.79393 49.05000 105.37785 12.67515 110 24 - - 25.26571 50.52150 110.34149 13.27219 110 23 - - 25.73695 51.99300 115.30513 13.86923 110 22 - - 26.20772 53.46450 120.26878 14.46628 110 22 - - 26.67808 54.93600 125.23242 15.06332 110 21 - - 27.14812 56.40750 130.19606 15.66036 110 21 - - 27.14812 56.40750 120.01569 15.66036 110 23 - - 27.61781 57.87900 124.59121 16.25740 110 22 - - 28.08686 59.35050 129.16673 16.85444 110 22 - - 28.55496 60.82200 133.74225 17.45148 110 21 - - 29.02179 62.29350 138.31778 18.04852 110 21 - - 29.48702 63.76500 142.89330 18.64557 110 21 - - 29.48702 63.76500 134.37719 18.64557 110 22 - - 29.95027 65.23650 138.68002 19.24261 110 22 - - 30.41101 66.70800 142.98285 19.83965 110 21 - - 30.86871 68.17950 147.28569 20.43669 110 21 - - 31.32281 69.65100 151.58852 21.03373 110 21 - - 31.77280 71.12250 155.89135 21.63077 110 20 - - 31.77280 71.12250 148.56686 21.63077 110 21 - - 32.21809 72.59400 152.66753 22.22781 110 21 - - 32.65810 74.06550 156.76819 22.82485 110 21 - - 33.09226 75.53700 160.86886 23.42190 110 21 - - 33.52000 77.00850 164.96952 24.01894 110 20 - - 33.94078 78.48000 169.07019 24.61598 110 20 - - 33.94078 78.48000 162.64229 24.61598 110 21 - - 34.35402 79.95150 166.58705 25.21302 110 21 - - 34.75929 81.42300 170.53181 25.81006 110 20 - - 35.15621 82.89450 174.47657 26.40710 110 20 - - 35.54444 84.36600 178.42134 27.00414 110 20 - - 35.92360 85.83750 182.36610 27.60119 110 20 - - 35.92360 85.83750 176.63785 27.60119 110 20 - - 36.29337 87.30900 180.45870 28.19823 110 20 - - 36.65372 88.78050 184.27955 28.79527 110 20 - - 37.00476 90.25200 188.10041 29.39231 110 20 - - 37.34661 91.72350 191.92126 29.98935 110 19 - - 37.67937 93.19500 195.74212 30.58639 110 19 - - 37.67937 93.19500 190.57533 30.58639 110 20 - - 38.00322 94.66650 194.29533 31.18343 110 20 - - 38.31889 96.13800 198.01533 31.78047 110 19 - - 38.62730 97.60950 201.73533 32.37752 110 19 - - 38.92935 99.08100 205.45533 32.97456 110 19 - - 39.22597 100.55250 209.17533 33.57160 110 19 - - 39.22597 100.55250 204.46924 33.57160 110 19 - - 39.51821 102.02400 208.10555 34.16864 110 19 - - 39.80789 103.49550 211.74185 34.76568 110 19 - - 40.09715 104.96700 215.37816 35.36272 110 19 - - 40.38808 106.43850 219.01447 35.95976 110 18 - - 40.68281 107.91000 222.65077 36.55681 110 18 - - 44.21189 107.91000 472.34543 23.58188 110 9 - - 43.30555 109.38150 483.79847 24.15368 110 9 - - 42.44440 110.85300 495.25151 24.72547 110 9 - - 41.63483 112.32450 506.70455 25.29727 110 8 - - 40.88322 113.79600 518.15759 25.86906 110 8 - - 40.19598 115.26750 529.61062 26.44085 110 8 - - 40.19598 115.26750 492.19333 26.44085 110 8 - - 39.57644 116.73900 502.83721 27.01265 110 8 - - 39.02125 118.21050 513.48109 27.58444 110 8 - - 38.52678 119.68200 524.12496 28.15623 110 7 - - 38.08939 121.15350 534.76884 28.72803 110 7 - - 37.70543 122.62500 545.41271 29.29982 110 7 - - 37.70543 122.62500 532.10284 29.29982 110 7 - - 37.36977 124.09650 542.48697 29.87162 110 7 - - 37.07541 125.56800 552.87110 30.44341 110 7 - - 36.81599 127.03950 563.25523 31.01520 110 7 - - 36.58516 128.51100 573.63936 31.58700 110 6 - - 36.37653 129.98250 584.02349 32.15879 110 6 - - 36.37653 129.98250 576.97138 32.15879 110 6 - - 36.18338 131.45400 587.23012 32.73059 110 6 - - 36.00098 132.92550 597.48886 33.30238 110 6 - - 35.82600 134.39700 607.74760 33.87417 110 6 - - 35.65512 135.86850 618.00634 34.44597 110 6 - - 35.48500 137.34000 628.26508 35.01776 110 6 - + 0.00003 1.96200 0.00003 0.00000 202 100 P + 13.91288 3.13920 23.11803 0.47763 110 60 - + 14.38913 4.31640 46.23605 0.95527 110 31 - + 14.86650 5.49360 69.35408 1.43290 110 21 - + 15.34517 6.67080 92.47211 1.91053 110 17 - + 15.82529 7.84800 115.59014 2.38817 110 14 - + 15.82529 7.84800 45.88359 2.38817 110 34 - + 16.30699 9.02520 55.06031 2.86580 110 30 - + 16.79010 10.20240 64.23703 3.34343 110 26 - + 17.27442 11.37960 73.41375 3.82106 110 24 - + 17.75974 12.55680 82.59047 4.29870 110 22 - + 18.24586 13.73400 91.76719 4.77633 110 20 - + 18.24586 13.73400 63.87191 4.77633 110 29 - + 18.73249 14.91120 70.25910 5.25396 110 27 - + 19.21910 16.08840 76.64629 5.73160 110 25 - + 19.70512 17.26560 83.03348 6.20923 110 24 - + 20.18994 18.44280 89.42067 6.68686 110 23 - + 20.67297 19.62000 95.80786 7.16450 110 22 - + 11.93129 19.62000 35.08661 6.52790 110 34 - + 12.02544 20.92800 35.58626 6.62086 110 34 - + 12.11792 22.23600 36.08590 6.71382 110 34 - + 12.20843 23.54400 36.58555 6.80678 110 33 - + 12.29668 24.85200 37.08520 6.89974 110 33 - + 12.38235 26.16000 37.58485 6.99270 110 33 - + 12.38235 26.16000 36.91805 6.99270 110 34 - + 12.46519 27.46800 37.40884 7.08566 110 33 - + 12.54511 28.77600 37.89962 7.17862 110 33 - + 12.62205 30.08400 38.39040 7.27158 110 33 - + 12.69598 31.39200 38.88119 7.36454 110 33 - + 12.76684 32.70000 39.37197 7.45750 110 32 - + 12.76684 32.70000 38.76817 7.45750 110 33 - + 12.83463 34.00800 39.25143 7.55046 110 33 - + 12.89951 35.31600 39.73469 7.64342 110 32 - + 12.96171 36.62400 40.21794 7.73638 110 32 - + 13.02143 37.93200 40.70120 7.82934 110 32 - + 13.07889 39.24000 41.18446 7.92230 110 32 - + 21.58634 39.24000 87.32679 8.69488 110 25 - + 21.91454 40.22100 91.32437 9.09290 110 24 - + 22.24036 41.20200 95.32195 9.49093 110 23 - + 22.56411 42.18300 99.31953 9.88896 110 23 - + 22.88608 43.16400 103.31711 10.28699 110 22 - + 23.20655 44.14500 107.31469 10.68501 110 22 - + 23.20655 44.14500 97.34156 10.68501 110 24 - + 23.52580 45.12600 100.96763 11.08304 110 23 - + 23.84401 46.10700 104.59370 11.48107 110 23 - + 24.16134 47.08800 108.21977 11.87910 110 22 - + 24.47793 48.06900 111.84584 12.27712 110 22 - + 24.79397 49.05000 115.47191 12.67515 110 21 - + 24.79397 49.05000 105.38096 12.67515 110 24 - + 25.26729 50.52150 110.34475 13.27219 110 23 - + 25.73987 51.99300 115.30854 13.86923 110 22 - + 26.21181 53.46450 120.27233 14.46628 110 22 - + 26.68318 54.93600 125.23612 15.06332 110 21 - + 27.15408 56.40750 130.19991 15.66036 110 21 - + 27.15408 56.40750 120.02635 15.66036 110 23 - + 27.62449 57.87900 124.60227 16.25740 110 22 - + 28.09413 59.35050 129.17820 16.85444 110 22 - + 28.56270 60.82200 133.75413 17.45148 110 21 - + 29.02989 62.29350 138.33006 18.04852 110 21 - + 29.49539 63.76500 142.90599 18.64557 110 21 - + 29.49539 63.76500 134.39075 18.64557 110 22 - + 29.95881 65.23650 138.69402 19.24261 110 22 - + 30.41965 66.70800 142.99728 19.83965 110 21 - + 30.87737 68.17950 147.30055 20.43669 110 21 - + 31.33143 69.65100 151.60382 21.03373 110 21 - + 31.78132 71.12250 155.90708 21.63077 110 20 - + 31.78132 71.12250 148.58141 21.63077 110 21 - + 32.22647 72.59400 152.68247 22.22781 110 21 - + 32.66628 74.06550 156.78354 22.82485 110 21 - + 33.10022 75.53700 160.88461 23.42190 110 21 - + 33.52771 77.00850 164.98567 24.01894 110 20 - + 33.94820 78.48000 169.08674 24.61598 110 20 - + 33.94820 78.48000 162.65695 24.61598 110 21 - + 34.36114 79.95150 166.60206 25.21302 110 21 - + 34.76608 81.42300 170.54718 25.81006 110 20 - + 35.16268 82.89450 174.49230 26.40710 110 20 - + 35.55056 84.36600 178.43742 27.00414 110 20 - + 35.92938 85.83750 182.38253 27.60119 110 20 - + 35.92938 85.83750 176.65220 27.60119 110 20 - + 36.29880 87.30900 180.47336 28.19823 110 20 - + 36.65880 88.78050 184.29453 28.79527 110 20 - + 37.00950 90.25200 188.11569 29.39231 110 20 - + 37.35100 91.72350 191.93686 29.98935 110 19 - + 37.68343 93.19500 195.75802 30.58639 110 19 - + 37.68343 93.19500 190.58918 30.58639 110 20 - + 38.00696 94.66650 194.30945 31.18343 110 20 - + 38.32231 96.13800 198.02972 31.78047 110 19 - + 38.63041 97.60950 201.74999 32.37752 110 19 - + 38.93217 99.08100 205.47026 32.97456 110 19 - + 39.22851 100.55250 209.19053 33.57160 110 19 - + 39.22851 100.55250 204.48250 33.57160 110 19 - + 39.52047 102.02400 208.11904 34.16864 110 19 - + 39.80991 103.49550 211.75558 34.76568 110 19 - + 40.09892 104.96700 215.39212 35.36272 110 19 - + 40.38962 106.43850 219.02867 35.95976 110 18 - + 40.68414 107.91000 222.66521 36.55681 110 18 - + 44.21853 107.91000 473.46689 23.58188 110 9 - + 43.31120 109.38150 484.94712 24.15368 110 9 - + 42.44913 110.85300 496.42735 24.72547 110 9 - + 41.63871 112.32450 507.90758 25.29727 110 8 - + 40.88633 113.79600 519.38782 25.86906 110 8 - + 40.19838 115.26750 530.86805 26.44085 110 8 - + 40.19838 115.26750 493.03603 26.44085 110 8 - + 39.57819 116.73900 503.69813 27.01265 110 8 - + 39.02241 118.21050 514.36023 27.58444 110 8 - + 38.52740 119.68200 525.02233 28.15623 110 7 - + 38.08952 121.15350 535.68443 28.72803 110 7 - + 37.70512 122.62500 546.34653 29.29982 110 7 - + 37.70512 122.62500 532.73942 29.29982 110 7 - + 37.36903 124.09650 543.13598 29.87162 110 7 - + 37.07429 125.56800 553.53253 30.44341 110 7 - + 36.81452 127.03950 563.92908 31.01520 110 7 - + 36.58335 128.51100 574.32563 31.58700 110 6 - + 36.37440 129.98250 584.72219 32.15879 110 6 - + 36.37440 129.98250 577.46709 32.15879 110 6 - + 36.18093 131.45400 587.73464 32.73059 110 6 - + 35.99822 132.92550 598.00220 33.30238 110 6 - + 35.82294 134.39700 608.26975 33.87417 110 6 - + 35.65176 135.86850 618.53730 34.44597 110 6 - + 35.48135 137.34000 628.80486 35.01776 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9586,10 +9676,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 29.430 'Clay' - -4.00 25.150 'Peat' - -6.00 224.198 'Clay' - -13.00 115.368 'Sand' + 0.00 29.868 'Clay' + -4.00 25.113 'Peat' + -6.00 224.224 'Clay' + -13.00 115.369 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9777,21 +9867,21 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.88 : Percentage mobilized resistance left + 12.76 : Percentage mobilized resistance left 9.50 : Percentage mobilized resistance right 267.34 : Effective left 323.34 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2075.06 : Max effective resistance left + 2095.11 : Max effective resistance left 3402.22 : Max effective resistance right --22107.90 : Max moment left +-22149.29 : Max moment left -32715.56 : Max moment right -2467.64 : Max mobilized moment left -2485.26 : Max mobilized moment right 76.73 : Vertical force left 84.85 : Vertical force right - 11.2 : Max mobilized moment percentage left + 11.1 : Max mobilized moment percentage left 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support @@ -10342,26 +10432,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 62.84700 0.00000 14.92602 0.00000 - -3.35000 62.87500 0.00000 57.35045 0.00000 - -4.00000 62.99400 0.00000 110.72992 0.00000 - -4.66667 62.32100 0.00000 136.50009 0.00000 - -5.33333 61.77800 0.00000 163.45078 0.00000 - -6.00000 61.33000 0.00000 191.60665 0.00000 - -6.50000 61.81300 0.00000 241.66068 0.00000 - -7.00000 62.16100 0.00000 296.24474 0.00000 - -7.75000 62.54200 0.00000 386.64724 0.00000 - -8.50000 62.82300 0.00000 487.29991 0.00000 - -9.25000 63.04300 0.00000 598.21140 0.00000 - -10.00000 63.22200 0.00000 719.38503 0.00000 - -10.75000 63.37200 0.00000 850.82198 0.00000 - -11.50000 63.50000 0.00000 992.52245 0.00000 - -12.25000 63.61100 0.00000 1144.48623 0.00000 - -13.00000 63.70900 0.00000 1306.71292 0.00000 - -13.75000 67.29800 0.00000 1688.40876 0.00000 - -14.50000 68.73100 33.38900 2083.09739 8.09702 - -15.25000 69.59400 33.12300 2507.07004 20.16261 - -16.00000 70.18100 32.88600 2964.36770 33.35786 + -2.70000 62.45700 0.00000 37.86568 0.00000 + -3.35000 62.65800 0.00000 83.49755 0.00000 + -4.00000 62.83400 0.00000 136.88390 0.00000 + -4.66667 62.30300 0.00000 162.63712 0.00000 + -5.33333 61.85300 0.00000 189.59360 0.00000 + -6.00000 61.46700 0.00000 217.76824 0.00000 + -6.50000 61.86300 0.00000 267.80287 0.00000 + -7.00000 62.16700 0.00000 322.38162 0.00000 + -7.75000 62.51700 0.00000 412.78740 0.00000 + -8.50000 62.78500 0.00000 513.44898 0.00000 + -9.25000 63.00000 0.00000 624.37146 0.00000 + -10.00000 63.17800 0.00000 745.55672 0.00000 + -10.75000 63.32900 0.00000 877.00529 0.00000 + -11.50000 63.45900 0.00000 1018.71707 0.00000 + -12.25000 63.57200 0.00000 1170.69171 0.00000 + -13.00000 63.67200 0.00000 1332.92875 0.00000 + -13.75000 67.23300 0.00000 1715.50908 0.00000 + -14.50000 68.66700 33.27900 2110.85977 0.75837 + -15.25000 69.53600 33.02800 2535.33101 12.83201 + -16.00000 70.12900 32.80300 2993.01596 26.03412 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -10378,26 +10468,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 22.96311 0.00000 0.64302 0.00000 11.41450 - -3.02500 6.03525 65.26835 0.00000 0.64302 0.00000 10.81452 - -3.67500 10.05875 82.12227 0.00000 0.64302 0.00000 8.16426 - -4.33333 12.46717 38.65526 0.00000 0.58588 0.00000 3.10056 - -5.00000 13.26050 40.42603 0.00000 0.58588 0.00000 3.04861 - -5.66667 14.05383 42.23381 0.00000 0.58588 0.00000 3.00515 - -6.25000 15.99800 100.10805 0.00000 0.64302 0.00000 6.25754 - -6.75000 19.09300 109.16812 0.00000 0.64302 0.00000 5.71770 - -7.37500 22.96175 120.53667 0.00000 0.64302 0.00000 5.24945 - -8.12500 27.60425 134.20357 0.00000 0.64302 0.00000 4.86170 - -8.87500 32.24675 147.88198 0.00000 0.64302 0.00000 4.58595 - -9.62500 36.88925 161.56484 0.00000 0.64302 0.00000 4.37973 - -10.37500 41.53175 175.24926 0.00000 0.64302 0.00000 4.21965 - -11.12500 46.17425 188.93396 0.00000 0.64302 0.00000 4.09176 - -11.87500 50.81675 202.61837 0.00000 0.64302 0.00000 3.98724 - -12.62500 55.45925 216.30225 0.00000 0.64302 0.00000 3.90020 - -13.37500 61.22675 508.92778 0.00000 0.41479 0.00000 8.31218 - -14.12500 68.11925 526.25151 10.79603 0.41479 0.15849 7.72544 - -14.87500 75.01175 565.29687 16.08746 0.41479 0.21447 7.53611 - -15.62500 81.90425 609.73021 17.59366 0.41479 0.21481 7.44443 + -2.37500 2.01175 58.25489 0.00000 0.64302 0.00000 28.95732 + -3.02500 6.03525 70.20287 0.00000 0.64302 0.00000 11.63214 + -3.67500 10.05875 82.13284 0.00000 0.64302 0.00000 8.16531 + -4.33333 12.46717 38.62984 0.00000 0.58588 0.00000 3.09853 + -5.00000 13.26050 40.43472 0.00000 0.58588 0.00000 3.04926 + -5.66667 14.05383 42.26197 0.00000 0.58588 0.00000 3.00715 + -6.25000 15.99800 100.06925 0.00000 0.64302 0.00000 6.25511 + -6.75000 19.09300 109.15750 0.00000 0.64302 0.00000 5.71715 + -7.37500 22.96175 120.54104 0.00000 0.64302 0.00000 5.24965 + -8.12500 27.60425 134.21544 0.00000 0.64302 0.00000 4.86213 + -8.87500 32.24675 147.89664 0.00000 0.64302 0.00000 4.58640 + -9.62500 36.88925 161.58035 0.00000 0.64302 0.00000 4.38015 + -10.37500 41.53175 175.26476 0.00000 0.64302 0.00000 4.22002 + -11.12500 46.17425 188.94904 0.00000 0.64302 0.00000 4.09209 + -11.87500 50.81675 202.63285 0.00000 0.64302 0.00000 3.98752 + -12.62500 55.45925 216.31606 0.00000 0.64302 0.00000 3.90045 + -13.37500 61.22675 510.10710 0.00000 0.41479 0.00000 8.33144 + -14.12500 68.11925 527.13426 1.01116 0.41479 0.01484 7.73840 + -14.87500 75.01175 565.96164 16.09819 0.41479 0.21461 7.54497 + -15.62500 81.90425 610.24661 17.60281 0.41479 0.21492 7.45073 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10438,126 +10528,126 @@ Status character 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.39240 0.00000 0.00000 -1 0 - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 9.18524 0.51744 1 0 A - 0.00000 3.04110 18.37049 1.03487 1 0 A - 0.77263 4.31640 27.55573 1.55231 110 0 - - 2.06016 5.59170 36.74098 2.06974 110 0 - - 3.33643 6.86700 45.92622 2.58718 110 7 - - 3.33643 6.86700 43.51223 2.58718 110 8 - - 4.59853 8.14230 52.21468 3.10461 110 9 - - 5.84446 9.41760 60.91712 3.62205 110 10 - - 7.07238 10.69290 69.61957 4.13949 110 10 - - 8.28043 11.96820 78.32201 4.65692 110 11 - - 9.46675 13.24350 87.02446 5.17436 110 11 - - 9.46675 13.24350 65.69782 5.17436 110 14 - - 10.62972 14.51880 72.26760 5.69179 110 15 - - 11.76825 15.79410 78.83738 6.20923 110 15 - - 12.88135 17.06940 85.40716 6.72667 110 15 - - 13.96799 18.34470 91.97694 7.24410 110 15 - - 15.02717 19.62000 98.54673 7.76154 110 15 - - 9.97815 19.62000 37.42537 7.07189 110 27 - - 10.28154 20.92800 37.91732 7.16485 110 27 - - 10.57276 22.23600 38.40928 7.25781 110 28 - - 10.85167 23.54400 38.90123 7.35077 110 28 - - 11.11813 24.85200 39.39319 7.44373 110 28 - - 11.37201 26.16000 39.88515 7.53669 110 29 - - 11.37201 26.16000 39.21675 7.53669 110 29 - - 11.61324 27.46800 39.70046 7.62965 110 29 - - 11.84198 28.77600 40.18417 7.72261 110 29 - - 12.05843 30.08400 40.66788 7.81557 110 30 - - 12.26282 31.39200 41.15160 7.90853 110 30 - - 12.45534 32.70000 41.63531 8.00149 110 30 - - 12.45534 32.70000 41.04177 8.00149 110 30 - - 12.63627 34.00800 41.51858 8.09445 110 30 - - 12.80606 35.31600 41.99540 8.18741 110 30 - - 12.96524 36.62400 42.47222 8.28037 110 31 - - 13.11430 37.93200 42.94903 8.37333 110 31 - - 13.25377 39.24000 43.42585 8.46629 110 31 - - 21.26062 39.24000 90.42452 9.29192 110 24 - - 21.73099 40.22100 94.29793 9.68995 110 23 - - 22.18943 41.20200 98.17135 10.08797 110 23 - - 22.63656 42.18300 102.04476 10.48600 110 22 - - 23.07301 43.16400 105.91817 10.88403 110 22 - - 23.49940 44.14500 109.79159 11.28206 110 21 - - 23.49940 44.14500 100.31997 11.28206 110 23 - - 23.91635 45.12600 103.85923 11.68008 110 23 - - 24.32435 46.10700 107.39849 12.07811 110 23 - - 24.72392 47.08800 110.93775 12.47614 110 22 - - 25.11555 48.06900 114.47701 12.87417 110 22 - - 25.49972 49.05000 118.01627 13.27219 110 22 - - 25.49972 49.05000 108.35137 13.27219 110 24 - - 26.06307 50.52150 113.22549 13.86923 110 23 - - 26.61202 51.99300 118.09961 14.46628 110 23 - - 27.14768 53.46450 122.97373 15.06332 110 22 - - 27.67117 54.93600 127.84784 15.66036 110 22 - - 28.18359 56.40750 132.72196 16.25740 110 21 - - 28.18359 56.40750 122.91835 16.25740 110 23 - - 28.68595 57.87900 127.43243 16.85444 110 23 - - 29.17884 59.35050 131.94652 17.45148 110 22 - - 29.66279 60.82200 136.46061 18.04852 110 22 - - 30.13831 62.29350 140.97470 18.64557 110 21 - - 30.60594 63.76500 145.48879 19.24261 110 21 - - 30.60594 63.76500 137.23684 19.24261 110 22 - - 31.06609 65.23650 141.49490 19.83965 110 22 - - 31.51889 66.70800 145.75295 20.43669 110 22 - - 31.96443 68.17950 150.01101 21.03373 110 21 - - 32.40280 69.65100 154.26906 21.63077 110 21 - - 32.83408 71.12250 158.52712 22.22781 110 21 - - 32.83408 71.12250 151.39840 22.22781 110 22 - - 33.25827 72.59400 155.46498 22.82485 110 21 - - 33.67525 74.06550 159.53156 23.42190 110 21 - - 34.08486 75.53700 163.59813 24.01894 110 21 - - 34.48696 77.00850 167.66471 24.61598 110 21 - - 34.88140 78.48000 171.73129 25.21302 110 20 - - 34.88140 78.48000 165.45441 25.21302 110 21 - - 35.26799 79.95150 169.37235 25.81006 110 21 - - 35.64658 81.42300 173.29029 26.40710 110 21 - - 36.01703 82.89450 177.20823 27.00414 110 20 - - 36.37922 84.36600 181.12617 27.60119 110 20 - - 36.73304 85.83750 185.04412 28.19823 110 20 - - 36.73304 85.83750 179.43596 28.19823 110 20 - - 37.07836 87.30900 183.23516 28.79527 110 20 - - 37.41529 88.78050 187.03436 29.39231 110 20 - - 37.74404 90.25200 190.83356 29.98935 110 20 - - 38.06481 91.72350 194.63276 30.58639 110 20 - - 38.37783 93.19500 198.43196 31.18343 110 19 - - 38.37783 93.19500 193.36300 31.18343 110 20 - - 38.68336 94.66650 197.06515 31.78047 110 20 - - 38.98213 96.13800 200.76730 32.37752 110 19 - - 39.27504 97.60950 204.46945 32.97456 110 19 - - 39.56300 99.08100 208.17160 33.57160 110 19 - - 39.84693 100.55250 211.87375 34.16864 110 19 - - 39.84693 100.55250 207.24891 34.16864 110 19 - - 40.12785 102.02400 210.87024 34.76568 110 19 - - 40.40751 103.49550 214.49158 35.36272 110 19 - - 40.68794 104.96700 218.11292 35.95976 110 19 - - 40.97115 106.43850 221.73426 36.55681 110 18 - - 41.25916 107.91000 225.35559 37.15385 110 18 - - 44.49359 107.91000 480.28193 23.96702 110 9 - - 43.55809 109.38150 491.74027 24.53881 110 9 - - 42.67163 110.85300 503.19861 25.11061 110 8 - - 41.84026 112.32450 514.65695 25.68240 110 8 - - 41.07000 113.79600 526.11529 26.25420 110 8 - - 40.36690 115.26750 537.57363 26.82599 110 8 - - 40.36690 115.26750 499.62769 26.82599 110 8 - - 39.73400 116.73900 510.27722 27.39778 110 8 - - 39.16768 118.21050 520.92674 27.96958 110 8 - - 38.66404 119.68200 531.57627 28.54137 110 7 - - 38.21917 121.15350 542.22580 29.11317 110 7 - - 37.82917 122.62500 552.87532 29.68496 110 7 - - 37.82917 122.62500 539.32555 29.68496 110 7 - - 37.48863 124.09650 549.71408 30.25675 110 7 - - 37.19036 125.56800 560.10261 30.82855 110 7 - - 36.92783 127.03950 570.49113 31.40034 110 6 - - 36.69450 128.51100 580.87966 31.97213 110 6 - - 36.48381 129.98250 591.26819 32.54393 110 6 - - 36.48381 129.98250 584.07485 32.54393 110 6 - - 36.28888 131.45400 594.33700 33.11572 110 6 - - 36.10489 132.92550 604.59914 33.68752 110 6 - - 35.92846 134.39700 614.86128 34.25931 110 6 - - 35.75620 135.86850 625.12342 34.83110 110 6 - - 35.58472 137.34000 635.38557 35.40290 110 6 - + 0.00000 0.49050 0.00003 0.00000 1 0 A + 0.00000 1.76580 23.30196 0.51744 1 0 A + 0.00000 3.04110 46.60391 1.03487 1 0 A + 0.77263 4.31640 69.90587 1.55231 110 0 - + 2.06016 5.59170 93.20783 2.06974 110 0 - + 3.33643 6.86700 116.50978 2.58718 110 3 - + 3.33643 6.86700 46.80192 2.58718 110 7 - + 4.59853 8.14230 56.16230 3.10461 110 8 - + 5.84446 9.41760 65.52268 3.62205 110 9 - + 7.07238 10.69290 74.88307 4.13949 110 9 - + 8.28043 11.96820 84.24345 4.65692 110 10 - + 9.46675 13.24350 93.60383 5.17436 110 10 - + 9.46675 13.24350 65.70628 5.17436 110 14 - + 10.62972 14.51880 72.27690 5.69179 110 15 - + 11.76825 15.79410 78.84753 6.20923 110 15 - + 12.88135 17.06940 85.41816 6.72667 110 15 - + 13.96799 18.34470 91.98879 7.24410 110 15 - + 15.02717 19.62000 98.55941 7.76154 110 15 - + 9.97815 19.62000 37.40076 7.07189 110 27 - + 10.28154 20.92800 37.89239 7.16485 110 27 - + 10.57276 22.23600 38.38402 7.25781 110 28 - + 10.85167 23.54400 38.87565 7.35077 110 28 - + 11.11813 24.85200 39.36729 7.44373 110 28 - + 11.37201 26.16000 39.85892 7.53669 110 29 - + 11.37201 26.16000 39.22518 7.53669 110 29 - + 11.61324 27.46800 39.70899 7.62965 110 29 - + 11.84198 28.77600 40.19281 7.72261 110 29 - + 12.05843 30.08400 40.67663 7.81557 110 30 - + 12.26282 31.39200 41.16044 7.90853 110 30 - + 12.45534 32.70000 41.64426 8.00149 110 30 - + 12.45534 32.70000 41.06913 8.00149 110 30 - + 12.63627 34.00800 41.54626 8.09445 110 30 - + 12.80606 35.31600 42.02340 8.18741 110 30 - + 12.96524 36.62400 42.50053 8.28037 110 31 - + 13.11430 37.93200 42.97767 8.37333 110 31 - + 13.25377 39.24000 43.45480 8.46629 110 31 - + 21.26062 39.24000 90.38947 9.29192 110 24 - + 21.73099 40.22100 94.26138 9.68995 110 23 - + 22.18943 41.20200 98.13330 10.08797 110 23 - + 22.63656 42.18300 102.00521 10.48600 110 22 - + 23.07301 43.16400 105.87712 10.88403 110 22 - + 23.49940 44.14500 109.74903 11.28206 110 21 - + 23.49940 44.14500 100.31021 11.28206 110 23 - + 23.91635 45.12600 103.84912 11.68008 110 23 - + 24.32435 46.10700 107.38804 12.07811 110 23 - + 24.72392 47.08800 110.92695 12.47614 110 22 - + 25.11555 48.06900 114.46587 12.87417 110 22 - + 25.49972 49.05000 118.00478 13.27219 110 22 - + 25.49972 49.05000 108.35530 13.27219 110 24 - + 26.06307 50.52150 113.22959 13.86923 110 23 - + 26.61202 51.99300 118.10389 14.46628 110 23 - + 27.14768 53.46450 122.97819 15.06332 110 22 - + 27.67117 54.93600 127.85248 15.66036 110 22 - + 28.18359 56.40750 132.72678 16.25740 110 21 - + 28.18359 56.40750 122.92922 16.25740 110 23 - + 28.68595 57.87900 127.44371 16.85444 110 23 - + 29.17884 59.35050 131.95820 17.45148 110 22 - + 29.66279 60.82200 136.47269 18.04852 110 22 - + 30.13831 62.29350 140.98717 18.64557 110 21 - + 30.60594 63.76500 145.50166 19.24261 110 21 - + 30.60594 63.76500 137.25045 19.24261 110 22 - + 31.06609 65.23650 141.50892 19.83965 110 22 - + 31.51889 66.70800 145.76740 20.43669 110 22 - + 31.96443 68.17950 150.02588 21.03373 110 21 - + 32.40280 69.65100 154.28435 21.63077 110 21 - + 32.83408 71.12250 158.54283 22.22781 110 21 - + 32.83408 71.12250 151.41293 22.22781 110 22 - + 33.25827 72.59400 155.47990 22.82485 110 21 - + 33.67525 74.06550 159.54687 23.42190 110 21 - + 34.08486 75.53700 163.61384 24.01894 110 21 - + 34.48696 77.00850 167.68080 24.61598 110 21 - + 34.88140 78.48000 171.74777 25.21302 110 20 - + 34.88140 78.48000 165.46904 25.21302 110 21 - + 35.26799 79.95150 169.38733 25.81006 110 21 - + 35.64658 81.42300 173.30561 26.40710 110 21 - + 36.01703 82.89450 177.22390 27.00414 110 20 - + 36.37922 84.36600 181.14219 27.60119 110 20 - + 36.73304 85.83750 185.06047 28.19823 110 20 - + 36.73304 85.83750 179.45028 28.19823 110 20 - + 37.07836 87.30900 183.24979 28.79527 110 20 - + 37.41529 88.78050 187.04929 29.39231 110 20 - + 37.74404 90.25200 190.84879 29.98935 110 20 - + 38.06481 91.72350 194.64830 30.58639 110 20 - + 38.37783 93.19500 198.44780 31.18343 110 19 - + 38.37783 93.19500 193.37682 31.18343 110 20 - + 38.68336 94.66650 197.07923 31.78047 110 20 - + 38.98213 96.13800 200.78165 32.37752 110 19 - + 39.27504 97.60950 204.48406 32.97456 110 19 - + 39.56300 99.08100 208.18647 33.57160 110 19 - + 39.84693 100.55250 211.88889 34.16864 110 19 - + 39.84693 100.55250 207.26214 34.16864 110 19 - + 40.12785 102.02400 210.88370 34.76568 110 19 - + 40.40751 103.49550 214.50527 35.36272 110 19 - + 40.68794 104.96700 218.12684 35.95976 110 19 - + 40.97115 106.43850 221.74841 36.55681 110 18 - + 41.25916 107.91000 225.36998 37.15385 110 18 - + 44.49359 107.91000 481.39487 23.96702 110 9 - + 43.55809 109.38150 492.87977 24.53881 110 9 - + 42.67163 110.85300 504.36466 25.11061 110 8 - + 41.84026 112.32450 515.84955 25.68240 110 8 - + 41.07000 113.79600 527.33444 26.25420 110 8 - + 40.36690 115.26750 538.81934 26.82599 110 7 - + 40.36690 115.26750 500.46578 26.82599 110 8 - + 39.73400 116.73900 511.13317 27.39778 110 8 - + 39.16768 118.21050 521.80056 27.96958 110 8 - + 38.66404 119.68200 532.46795 28.54137 110 7 - + 38.21917 121.15350 543.13534 29.11317 110 7 - + 37.82917 122.62500 553.80273 29.68496 110 7 - + 37.82917 122.62500 539.95978 29.68496 110 7 - + 37.48863 124.09650 550.36052 30.25675 110 7 - + 37.19036 125.56800 560.76127 30.82855 110 7 - + 36.92783 127.03950 571.16202 31.40034 110 6 - + 36.69450 128.51100 581.56276 31.97213 110 6 - + 36.48381 129.98250 591.96351 32.54393 110 6 - + 36.48381 129.98250 584.56952 32.54393 110 6 - + 36.28888 131.45400 594.84036 33.11572 110 6 - + 36.10489 132.92550 605.11119 33.68752 110 6 - + 35.92846 134.39700 615.38202 34.25931 110 6 - + 35.75620 135.86850 625.65286 34.83110 110 6 - + 35.58472 137.34000 635.92369 35.40290 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10730,7 +10820,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -10745,7 +10835,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 161.86324 210000000.000 1 2 0 'Anchor' + -1.50000 155.07134 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10772,22 +10862,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 47.29 : Percentage mobilized resistance left - 7.97 : Percentage mobilized resistance right - 540.05 : Effective left - 306.97 : Effective right + 46.55 : Percentage mobilized resistance left + 7.82 : Percentage mobilized resistance right + 540.98 : Effective left + 301.12 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3850.19 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -35710.14 : Max moment right --5610.18 : Max mobilized moment left --2233.63 : Max mobilized moment right - 173.07 : Vertical force left - 81.13 : Vertical force right - 41.4 : Max mobilized moment percentage left - 6.3 : Max mobilized moment percentage right +-5546.18 : Max mobilized moment left +-2168.15 : Max mobilized moment right + 171.92 : Vertical force left + 78.79 : Vertical force right + 40.5 : Max mobilized moment percentage left + 6.1 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -10802,144 +10892,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01710 0.09392 45.73554 - 0.07591 1.67242 40.58186 - 0.64648 6.48812 35.42830 - 2.17095 14.27594 30.27341 - 4.98122 23.10281 25.11572 - 9.07515 31.39681 19.95374 - 9.09127 31.48378 19.95374 - 14.30123 37.85048 14.78492 - 20.40686 43.42607 9.60377 - 27.28939 48.20833 4.40441 - 34.83144 52.23217 -0.81906 - 42.92465 55.56822 -6.07250 - 42.92719 -106.30945 -6.07250 - 32.35566 -105.17863 -9.59364 - 21.87991 -104.39430 -13.12720 - 11.46515 -103.95960 -16.66917 - 1.07782 -103.83002 -20.21555 - -9.30518 -103.83002 -23.76234 - -9.31196 -103.87872 -23.76234 - -23.15974 -103.81768 -28.48512 - -36.99125 -103.63456 -33.19210 - -50.79020 -103.32936 -37.87387 - -64.54032 -102.90208 -42.52102 - -78.22532 -102.35272 -47.12415 - -78.22474 -102.35111 -47.12415 - -91.77274 -100.84509 -51.67380 - -105.11042 -99.19634 -56.16084 - -118.21877 -97.40526 -60.57633 - -131.07884 -95.47216 -64.91133 - -143.67172 -93.39739 -69.15691 - -143.67169 -93.39938 -69.15691 - -155.95951 -90.89344 -73.30423 - -167.90341 -88.24047 -77.34515 - -179.48378 -85.44078 -81.27176 - -190.68110 -82.49467 -85.07619 - -201.47587 -79.40242 -88.75054 - -201.47594 -79.40411 -88.75054 - -211.77585 -75.07214 -92.28704 - -221.48921 -70.60603 -95.67904 - -230.59818 -66.00619 -98.92035 - -239.08494 -61.27301 -102.00475 - -246.93174 -56.40683 -104.92604 - -246.93174 -56.40786 -104.92604 - -254.12219 -51.42681 -107.67834 - -260.63967 -46.31348 -110.25725 - -266.46658 -41.06817 -112.65882 - -271.58533 -35.69114 -114.87906 - -275.97838 -30.18265 -116.91403 - -275.97838 -30.18360 -116.91403 - -279.62952 -24.56165 -118.76011 - -282.52234 -18.80877 -120.41541 - -284.63939 -12.92519 -121.87848 - -285.96325 -6.91110 -123.14790 - -286.47656 -0.76670 -124.22221 - -286.47657 -0.76747 -124.22221 - -286.35931 3.12634 -124.89937 - -285.84860 7.10133 -125.46664 - -284.93634 11.15746 -125.92438 - -283.61440 15.29470 -126.27294 - -281.87469 19.51300 -126.51266 - -281.87470 19.51242 -126.51266 - -279.70772 23.84074 -126.64403 - -277.10384 28.25036 -126.66806 - -274.05494 32.74125 -126.58594 - -270.55288 37.31337 -126.39882 - -266.58956 41.96670 -126.10788 - -266.58956 41.96628 -126.10788 - -262.15664 46.69434 -125.71443 - -257.25027 51.43515 -125.22038 - -251.86918 56.18868 -124.62779 - -246.01211 60.95491 -123.93874 - -239.67778 65.73381 -123.15527 - -239.67773 65.73312 -123.15527 - -228.78449 72.70983 -121.73867 - -216.88837 78.49710 -120.10530 - -204.17628 83.09483 -118.26712 - -190.83516 86.50296 -116.23607 - -177.05195 88.72140 -114.02409 - -177.05197 88.72057 -114.02409 - -162.94225 90.68604 -111.64393 - -148.60457 91.62190 -109.10946 - -134.20073 91.52808 -106.43422 - -119.89254 90.40452 -103.63177 - -105.84182 88.25116 -100.71567 - -105.84182 88.25044 -100.71567 - -91.97500 88.11231 -97.69945 - -78.18839 87.22951 -94.59615 - -64.59902 85.60201 -91.41858 - -51.32391 83.22976 -88.17955 - -38.48011 80.11272 -84.89188 - -38.48010 80.11192 -84.89188 - -26.02183 78.34574 -81.56817 - -13.88924 75.96698 -78.21988 - -2.17859 72.97562 -74.85805 - 9.01386 69.37162 -71.49373 - 19.59183 65.15496 -68.13794 - 19.59261 65.15101 -68.13794 - 29.58029 61.87504 -64.80140 - 39.01082 58.06014 -61.49297 - 47.79953 53.70629 -58.22093 - 55.86171 48.81348 -54.99357 - 63.14396 43.97884 -51.81916 - 63.13648 43.87443 -51.81916 - 69.69790 39.74297 -48.70526 - 75.66081 36.25460 -45.65740 - 81.12510 33.39420 -42.68081 - 86.18818 31.14553 -39.78072 - 90.94482 29.49115 -36.96235 - 90.94469 29.49888 -36.96235 - 95.49186 28.46861 -34.23042 - 99.92114 27.99516 -31.58893 - 104.31844 28.05816 -29.04209 - 108.76640 28.63632 -26.59413 - 113.34425 29.70742 -24.24924 - 113.34498 29.71328 -24.24924 - 116.45900 12.17805 -22.11215 - 117.10709 -3.18322 -20.07564 - 115.60748 -16.47554 -18.13857 - 112.26269 -27.80273 -16.29980 - 107.35979 -37.26738 -14.55818 - 107.35897 -37.23059 -14.55818 - 101.15964 -45.14209 -12.91070 - 93.89955 -51.38939 -11.35052 - 85.82163 -56.06055 -9.87079 - 77.15615 -59.23644 -8.46465 - 68.12178 -60.99071 -7.12524 - 68.12392 -60.96795 -7.12524 - 58.88328 -62.02102 -5.84490 - 49.58212 -61.78397 -4.61531 - 40.41014 -60.30599 -3.42866 - 31.55032 -57.62805 -2.27711 - 23.20137 -53.35715 -1.15285 - 23.18264 -53.48331 -1.15285 - 15.61353 -47.05207 -0.04762 - 9.18216 -38.31798 1.04436 - 4.23210 -27.30453 2.12719 - 1.08548 -14.39748 3.20500 - -0.01954 -0.13839 4.28190 + -0.01553 0.08551 41.49925 + 0.07623 1.66401 36.82609 + 0.64554 6.47971 32.15305 + 2.15407 13.97409 27.47869 + 4.87757 22.26452 22.80158 + 8.81183 30.12303 18.12028 + 8.82638 30.20156 18.12028 + 13.81766 36.23372 13.43234 + 19.66199 41.57581 8.73249 + 26.25579 46.22571 4.01508 + 33.49685 50.21849 -0.72552 + 41.29202 53.62501 -5.49496 + 41.29249 -101.44644 -5.49496 + 31.21206 -100.21212 -8.69270 + 21.24003 -99.27899 -11.90243 + 11.34612 -98.65015 -15.12033 + 1.49977 -98.32810 -18.34260 + -8.32744 -98.24406 -21.56544 + -8.33142 -98.29956 -21.56544 + -21.43532 -98.23852 -25.85690 + -34.52294 -98.05540 -30.13373 + -47.57800 -97.75020 -34.38704 + -60.58423 -97.32292 -38.60793 + -73.52536 -96.77356 -42.78749 + -73.52477 -96.77196 -42.78749 + -86.32888 -95.26594 -46.91678 + -98.92267 -93.61719 -50.98716 + -111.28714 -91.82610 -54.99022 + -123.40332 -89.89301 -58.91752 + -135.25231 -87.81823 -62.76063 + -135.25229 -87.82023 -62.76063 + -146.79622 -85.31429 -66.51123 + -157.99623 -82.66132 -70.16168 + -168.83272 -79.86162 -73.70458 + -179.28615 -76.91552 -77.13256 + -189.33703 -73.82327 -80.43823 + -189.33710 -73.82495 -80.43823 + -198.89312 -69.49298 -83.61433 + -207.86260 -65.02688 -86.65472 + -216.22768 -60.42704 -89.55371 + -223.97055 -55.69386 -92.30560 + -231.07347 -50.82767 -94.90469 + -231.07347 -50.82871 -94.90469 + -237.52003 -45.84766 -97.34560 + -243.29363 -40.73433 -99.62445 + -248.37665 -35.48902 -101.73779 + -252.75151 -30.11199 -103.68214 + -256.40067 -24.60350 -105.45406 + -256.40068 -24.60445 -105.45406 + -259.30793 -18.98250 -107.05045 + -261.45686 -13.22962 -108.46992 + -262.83002 -7.34604 -109.71154 + -263.41000 -1.33195 -110.77437 + -263.17942 4.81245 -111.65748 + -263.17943 4.81169 -111.65748 + -262.50425 8.70549 -112.20164 + -261.43563 12.68048 -112.64507 + -259.96545 16.73661 -112.98833 + -258.08561 20.87385 -113.23198 + -255.78798 25.09215 -113.37660 + -255.78799 25.09157 -113.37660 + -253.06309 29.41989 -113.42288 + -249.90130 33.82951 -113.37204 + -246.29448 38.32040 -113.22548 + -242.23451 42.89252 -112.98458 + -237.71327 47.54585 -112.65072 + -237.71327 47.54543 -112.65072 + -232.72243 52.27349 -112.22543 + -227.25815 57.01430 -111.71084 + -221.31915 61.76784 -111.10921 + -214.90416 66.53407 -110.42284 + -208.01191 71.31297 -109.65400 + -208.01186 71.31227 -109.65400 + -196.27848 77.59059 -108.28530 + -183.76172 81.28267 -106.73076 + -170.86797 82.38844 -105.00238 + -158.00368 80.90781 -103.11215 + -145.57529 76.84071 -101.07205 + -145.57530 76.83988 -101.07205 + -133.34199 78.68142 -98.89398 + -120.90196 79.47081 -96.58962 + -108.42057 79.20799 -94.17073 + -96.06314 77.89289 -91.64903 + -83.99506 75.52546 -89.03626 + -83.99506 75.52474 -89.03626 + -72.12808 75.38554 -86.34409 + -60.34148 74.50158 -83.58364 + -48.75231 72.87280 -80.76583 + -37.47761 70.49918 -77.90157 + -26.63444 67.38066 -75.00178 + -26.63444 67.37987 -75.00178 + -16.17702 65.61244 -72.07719 + -6.04548 63.23235 -69.13735 + 3.66391 60.23957 -66.19139 + 12.85486 56.63408 -63.24847 + 21.43110 52.41584 -60.31774 + 21.44073 52.36591 -60.31774 + 29.41921 49.08860 -57.40797 + 36.84034 45.27229 -54.52615 + 43.62515 41.02656 -51.67868 + 49.74127 36.91204 -48.87198 + 55.25631 33.37460 -46.11246 + 55.24638 33.32911 -46.11246 + 60.24698 30.40832 -43.40585 + 64.83233 28.04200 -40.75632 + 69.08854 26.21714 -38.16793 + 73.09963 24.91984 -35.64478 + 76.94735 24.13527 -33.19095 + 76.94724 24.14180 -33.19095 + 80.71575 23.90262 -30.81012 + 84.48469 24.14455 -28.50573 + 88.32833 24.85037 -26.28146 + 92.31816 26.00204 -24.14100 + 96.52277 27.58072 -22.08802 + 96.52381 27.58271 -22.08802 + 99.48152 12.17838 -20.21452 + 100.27257 -1.32106 -18.42693 + 99.17596 -13.00541 -16.72446 + 96.45726 -22.96358 -15.10627 + 92.36879 -31.28367 -13.57157 + 92.36789 -31.25244 -13.57157 + 87.13790 -38.22974 -12.11789 + 80.97232 -43.73997 -10.73941 + 74.08546 -47.85903 -9.43028 + 66.68069 -50.65667 -8.18468 + 58.95135 -52.19651 -6.99675 + 58.95322 -52.17660 -6.99675 + 51.03764 -53.17011 -5.85995 + 43.05933 -53.02067 -4.76713 + 35.18646 -51.77094 -3.71160 + 27.58129 -49.45654 -2.68663 + 20.40860 -45.95993 -1.68551 + 20.39832 -46.10011 -1.68551 + 13.84645 -40.91441 -0.70117 + 8.22653 -33.67813 0.27142 + 3.84449 -24.41215 1.23588 + 1.00371 -13.12970 2.19585 + -0.00961 -0.15099 3.15496 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11096,20 +11186,20 @@ Status character 0.00001 0.00000 0.00001 0.00000 202 100 P 30.06668 0.00000 30.06668 5.51986 202 100 P 61.66087 0.00000 61.66087 11.32016 202 100 P - 86.67872 0.00000 95.60503 17.55188 110 91 - - 81.45203 0.00000 131.85112 24.20620 110 62 - - 76.52900 0.00000 169.79789 31.17275 110 45 - - 64.40486 0.00000 131.34426 19.04861 110 49 - - 56.86552 0.00000 161.43441 23.41253 110 35 - - 49.33629 0.00000 191.76434 27.81123 110 26 - - 41.75433 0.00000 221.98186 32.19362 110 19 - - 34.89021 0.00000 251.87056 36.52832 110 0 - - 28.65373 0.00000 281.31596 40.79873 110 0 - - 18.61724 0.00000 189.80201 30.76224 110 0 - - 13.69189 0.00000 202.86341 32.87917 110 0 - - 8.71751 0.00000 215.77548 34.97190 110 0 - - 3.70239 0.00000 228.54007 37.04073 110 0 - - 0.00000 0.00000 241.16152 39.08635 1 0 A + 81.08927 0.00000 95.60503 17.55188 110 85 - + 76.82376 0.00000 131.85112 24.20620 110 58 - + 72.86209 0.00000 169.79789 31.17275 110 43 - + 60.73796 0.00000 131.34426 19.04861 110 46 - + 54.16037 0.00000 161.43441 23.41253 110 34 - + 47.59373 0.00000 191.76434 27.81123 110 25 - + 40.97568 0.00000 221.98186 32.19362 110 18 - + 35.07728 0.00000 251.87056 36.52832 110 0 - + 29.80882 0.00000 281.31596 40.79873 110 0 - + 19.77233 0.00000 189.80201 30.76224 110 0 - + 15.49377 0.00000 202.86341 32.87917 110 0 - + 11.16705 0.00000 215.77548 34.97190 110 0 - + 6.80007 0.00000 228.54007 37.04073 110 0 - + 2.40116 0.00000 241.16152 39.08635 110 0 - 0.00000 0.00000 253.64568 41.10973 1 0 A 0.00000 0.00000 219.69278 35.53878 1 0 A 0.00000 1.30800 226.90657 36.70572 1 0 A @@ -11224,13 +11314,13 @@ Status character 26.36041 125.56800 910.49130 45.33105 1 0 A 26.66942 127.03950 921.16458 45.86245 1 0 A 26.97848 128.51100 931.83960 46.39393 1 0 A - 35.39702 129.98250 942.51642 46.92550 110 0 - - 35.39470 129.98250 932.15163 46.92318 110 0 - - 46.97865 131.45400 942.71290 47.45481 110 0 - - 58.43014 132.92550 953.27610 47.98655 110 6 - - 69.79032 134.39700 963.84128 48.51839 110 7 - - 81.10034 135.86850 974.40849 49.05032 110 8 - - 92.40134 137.34000 984.97779 49.58237 110 9 - + 30.07037 129.98250 942.51642 46.92550 110 0 - + 30.06805 129.98250 932.15163 46.92318 110 0 - + 40.44312 131.45400 942.71290 47.45481 110 0 - + 50.70074 132.92550 953.27610 47.98655 110 5 - + 60.87722 134.39700 963.84128 48.51839 110 6 - + 71.00886 135.86850 974.40849 49.05032 110 7 - + 81.13198 137.34000 984.97779 49.58237 110 8 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11243,10 +11333,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 98.014 'Clay' + 0.00 96.294 'Clay' -4.00 53.482 'Peat' -6.00 172.044 'Clay' - -13.00 114.993 'Sand' + -13.00 108.358 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11323,17 +11413,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -11350,17 +11440,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -11449,72 +11539,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 11.10304 6.44657 11.10304 0.62547 202 100 P - 22.20609 7.98814 22.20609 1.25094 202 100 P - 33.30913 9.52971 33.30913 1.87642 202 100 P - 44.41217 11.07129 44.41217 2.50189 202 100 P - 55.51522 12.61286 55.51522 3.12736 202 100 P - 48.26946 12.61286 48.26946 3.12736 202 100 P - 57.92335 14.15443 57.92335 3.75283 202 100 P - 67.57724 15.69600 67.57724 4.37830 202 100 P - 77.23113 17.23757 77.23113 5.00377 202 100 P - 86.88502 18.77914 86.88502 5.62925 202 100 P - 96.53892 20.32071 96.53892 6.25472 202 100 P - 70.67406 20.32071 70.67406 6.25472 202 100 P - 77.74147 21.86229 77.74147 6.88019 202 100 P - 84.80887 23.40386 84.80887 7.50566 202 100 P - 91.87628 24.94543 91.87628 8.13113 202 100 P - 98.94369 26.48700 98.94369 8.75661 202 100 P - 106.01109 28.02857 106.01109 9.38208 202 100 P - 88.06042 28.02857 88.06042 9.38208 202 100 P - 93.93112 29.57014 93.93112 10.00755 202 100 P - 99.80181 31.11171 99.80181 10.63302 202 100 P - 105.67251 32.65329 105.67251 11.25849 202 100 P - 111.54320 34.19486 111.54320 11.88397 202 100 P - 117.41390 35.73643 117.41390 12.50944 202 100 P - 104.10611 35.73643 104.10611 12.50944 202 100 P - 109.31142 37.27800 109.31142 13.13491 202 100 P - 114.51672 38.81957 114.51672 13.76038 202 100 P - 119.72203 40.36114 119.72203 14.38585 202 100 P - 124.92734 41.90271 124.92734 15.01132 202 100 P - 119.27512 43.44429 130.13264 15.63680 110 92 - - 119.27512 43.44429 119.53821 15.63680 110 99 - - 113.67279 44.98586 124.31974 16.26227 110 91 - - 108.20255 46.52743 129.10127 16.88774 110 84 - - 102.87483 48.06900 133.88279 17.51321 110 77 - - 97.70012 49.61057 138.66432 18.13868 110 70 - - 92.68886 51.15214 143.44585 18.76416 110 65 - - 92.68886 51.15214 134.63740 18.76416 110 69 - - 87.85046 52.69371 139.12532 19.38963 110 63 - - 83.19295 54.23529 143.61323 20.01510 110 58 - - 78.72475 55.77686 148.10114 20.64057 110 53 - - 74.45429 57.31843 152.58906 21.26604 110 49 - - 70.38999 58.86000 157.07697 21.89152 110 45 - - 256.61407 58.86000 279.16236 14.12167 110 92 - - 235.81495 60.33150 290.46579 14.69346 110 81 - - 216.02166 61.80300 301.76922 15.26526 110 72 - - 197.22275 63.27450 313.07265 15.83705 110 63 - - 179.40682 64.74600 324.37608 16.40885 110 55 - - 162.56245 66.21750 335.67951 16.98064 110 48 - - 162.56245 66.21750 311.64171 16.98064 110 52 - - 146.65942 67.68900 322.13571 17.55243 110 46 - - 131.62944 69.16050 332.62971 18.12423 110 40 - - 117.40392 70.63200 343.12371 18.69602 110 34 - - 103.91430 72.10350 353.61771 19.26782 110 29 - - 91.09201 73.57500 364.11171 19.83961 110 25 - - 91.09201 73.57500 356.39681 19.83961 110 26 - - 78.86038 75.04650 366.66846 20.41140 110 22 - - 67.13632 76.51800 376.94011 20.98320 110 18 - - 55.84157 77.98950 387.21176 21.55499 110 14 - - 44.89790 79.46100 397.48341 22.12679 110 11 - - 34.22705 80.93250 407.75506 22.69858 110 8 - - 34.22705 80.93250 403.90034 22.69858 110 8 - - 23.74653 82.40400 414.07488 23.27037 110 6 - - 13.39857 83.87550 424.24943 23.84217 110 0 - - 3.14203 85.34700 434.42398 24.41396 110 0 - - 0.00000 86.81850 444.59852 24.98575 1 0 A - 0.00000 88.29000 454.77307 25.55755 1 0 A + 0.00002 4.90500 0.00002 0.00000 202 100 P + 23.80111 6.44657 23.80111 0.62547 202 100 P + 47.60221 7.98814 47.60221 1.25094 202 100 P + 71.40332 9.52971 71.40332 1.87642 202 100 P + 95.20443 11.07129 95.20443 2.50189 202 100 P + 119.00554 12.61286 119.00554 3.12736 202 100 P + 49.29372 12.61286 49.29372 3.12736 202 100 P + 59.15246 14.15443 59.15246 3.75283 202 100 P + 69.01120 15.69600 69.01120 4.37830 202 100 P + 78.86995 17.23757 78.86995 5.00377 202 100 P + 88.72869 18.77914 88.72869 5.62925 202 100 P + 98.58743 20.32071 98.58743 6.25472 202 100 P + 70.68330 20.32071 70.68330 6.25472 202 100 P + 77.75163 21.86229 77.75163 6.88019 202 100 P + 84.81996 23.40386 84.81996 7.50566 202 100 P + 91.88829 24.94543 91.88829 8.13113 202 100 P + 98.95662 26.48700 98.95662 8.75661 202 100 P + 106.02494 28.02857 106.02494 9.38208 202 100 P + 88.07144 28.02857 88.07144 9.38208 202 100 P + 93.94287 29.57014 93.94287 10.00755 202 100 P + 99.81430 31.11171 99.81430 10.63302 202 100 P + 105.68573 32.65329 105.68573 11.25849 202 100 P + 111.55716 34.19486 111.55716 11.88397 202 100 P + 117.42859 35.73643 117.42859 12.50944 202 100 P + 104.11800 35.73643 104.11800 12.50944 202 100 P + 109.32390 37.27800 109.32390 13.13491 202 100 P + 114.52980 38.81957 114.52980 13.76038 202 100 P + 117.74321 40.36114 119.73570 14.38585 110 98 - + 112.75528 41.90271 124.94160 15.01132 110 90 - + 107.86172 43.44429 130.14750 15.63680 110 83 - + 107.86172 43.44429 119.55043 15.63680 110 90 - + 103.07397 44.98586 124.33244 16.26227 110 83 - + 98.40037 46.52743 129.11446 16.88774 110 76 - + 93.84908 48.06900 133.89648 17.51321 110 70 - + 89.42825 49.61057 138.67850 18.13868 110 64 - + 85.14605 51.15214 143.46051 18.76416 110 59 - + 85.14605 51.15214 134.64963 18.76416 110 63 - + 81.00986 52.69371 139.13795 19.38963 110 58 - + 77.02656 54.23529 143.62627 20.01510 110 54 - + 73.20350 55.77686 148.11459 20.64057 110 49 - + 69.54804 57.31843 152.60291 21.26604 110 46 - + 66.06756 58.86000 157.09123 21.89152 110 42 - + 235.00189 58.86000 280.51782 14.12167 110 84 - + 216.83864 60.33150 291.87613 14.69346 110 74 - + 199.53459 61.80300 303.23445 15.26526 110 66 - + 183.08160 63.27450 314.59276 15.83705 110 58 - + 167.47156 64.74600 325.95107 16.40885 110 51 - + 152.69634 66.21750 337.30939 16.98064 110 45 - + 152.69634 66.21750 312.61080 16.98064 110 49 - + 138.73130 67.68900 323.13743 17.55243 110 43 - + 125.51829 69.16050 333.66406 18.12423 110 38 - + 112.99887 70.63200 344.19069 18.69602 110 33 - + 101.11463 72.10350 354.71732 19.26782 110 29 - + 89.80712 73.57500 365.24396 19.83961 110 25 - + 89.80712 73.57500 357.09310 19.83961 110 25 - + 79.01086 75.04650 367.38481 20.41140 110 22 - + 68.65453 76.51800 377.67653 20.98320 110 18 - + 58.67099 77.98950 387.96825 21.55499 110 15 - + 48.99310 79.46100 398.25997 22.12679 110 12 - + 39.55371 80.93250 408.55168 22.69858 110 10 - + 39.55371 80.93250 404.41665 22.69858 110 10 - + 30.28207 82.40400 414.60420 23.27037 110 7 - + 21.12797 83.87550 424.79176 23.84217 110 0 - + 12.05513 85.34700 434.97931 24.41396 110 0 - + 3.02722 86.81850 445.16686 24.98575 110 0 - + 0.00000 88.29000 455.35442 25.55755 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11529,8 +11619,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 466.804 'Clay' - -13.00 304.693 'Sand' + -6.00 477.829 'Clay' + -13.00 295.000 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11702,7 +11792,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 142.71829 210000000.000 1 2 0 'Anchor' + -1.50000 142.72839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11712,22 +11802,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 49.47 : Percentage mobilized resistance left - 9.21 : Percentage mobilized resistance right - 564.94 : Effective left - 313.33 : Effective right + 49.04 : Percentage mobilized resistance left + 9.36 : Percentage mobilized resistance right + 570.00 : Effective left + 318.40 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3402.22 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -32715.62 : Max moment right --6127.15 : Max mobilized moment left --2737.99 : Max mobilized moment right - 191.86 : Vertical force left - 90.65 : Vertical force right - 45.2 : Max mobilized moment percentage left - 8.4 : Max mobilized moment percentage right +-6157.33 : Max mobilized moment left +-2768.05 : Max mobilized moment right + 193.11 : Vertical force left + 91.70 : Vertical force right + 44.9 : Max mobilized moment percentage left + 8.5 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -11742,144 +11832,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01270 0.05819 51.04715 - 0.04006 0.93879 43.84178 - 0.35580 3.55650 36.63650 - 1.19551 7.94407 29.43046 - 2.80244 13.60003 22.22284 - 5.25510 18.84769 15.01279 - 5.28412 19.03500 15.01279 - 8.43751 22.75564 7.79866 - 12.03440 24.94808 0.57720 - 15.85755 25.85297 -6.65482 - 19.76500 26.25195 -13.90062 - 23.73488 26.68574 -21.16345 - 23.72015 -116.26916 -21.16345 - 12.10855 -115.96010 -26.01553 - 0.52867 -115.63474 -30.87225 - -11.01785 -115.29279 -35.72918 - -22.52933 -114.93406 -40.58190 - -34.00410 -114.55847 -45.42598 - -34.00536 -114.54805 -45.42598 - -49.24091 -113.95995 -51.86363 - -64.38793 -113.21996 -58.26768 - -79.42617 -112.32853 -64.62788 - -94.33550 -111.28635 -70.93399 - -109.09587 -110.09432 -77.17574 - -109.09530 -110.09221 -77.17574 - -123.68579 -108.74076 -83.34294 - -138.08636 -107.24344 -89.42575 - -152.27758 -105.60083 -95.41451 - -166.24016 -103.81373 -101.29954 - -179.95487 -101.88321 -107.07116 - -179.95486 -101.88437 -107.07116 - -193.38136 -99.48846 -112.71980 - -206.47856 -96.94520 -118.23650 - -219.22693 -94.25623 -123.61258 - -231.60716 -91.42332 -128.83935 - -243.60017 -88.44835 -133.90813 - -243.60022 -88.44935 -133.90813 - -255.14379 -84.68272 -138.81036 - -266.17655 -80.78735 -143.53853 - -276.68140 -76.76411 -148.08547 - -286.64134 -72.61386 -152.44401 - -296.03949 -68.33748 -156.60702 - -296.03949 -68.33812 -156.60702 - -304.84935 -63.78892 -160.56759 - -313.04431 -59.11472 -164.32018 - -320.60776 -54.31640 -167.85964 - -327.52321 -49.39477 -171.18082 - -333.77426 -44.35064 -174.27856 - -333.77426 -44.35126 -174.27856 - -339.33621 -39.05777 -177.14804 - -344.18427 -33.64281 -179.78601 - -348.30226 -28.10704 -182.18967 - -351.67413 -22.45107 -184.35621 - -354.28389 -16.67542 -186.28284 - -354.28390 -16.67598 -186.28284 - -355.74713 -12.57717 -187.56897 - -356.79705 -8.40975 -188.71859 - -357.42681 -4.17408 -189.73146 - -357.62960 0.12958 -190.60734 - -357.39863 4.50101 -191.34599 - -357.39864 4.50049 -191.34599 - -356.72343 9.01494 -191.94730 - -355.59337 13.59776 -192.41173 - -354.00160 18.24895 -192.73988 - -351.94130 22.96860 -192.93237 - -349.40560 27.75686 -192.98981 - -349.40559 27.75633 -192.98981 - -346.38568 32.64205 -192.91297 - -342.87715 37.52891 -192.70320 - -338.87985 42.41734 -192.36205 - -334.39361 47.30780 -191.89105 - -329.41820 52.20083 -191.29173 - -329.41836 52.20412 -191.29173 - -320.62295 59.60581 -190.09467 - -310.73819 65.99415 -188.59383 - -299.94658 71.14826 -186.79933 - -288.44171 75.07285 -184.72130 - -276.41642 77.77251 -182.36984 - -276.41642 77.77012 -182.36984 - -263.93328 81.00548 -179.75583 - -250.98913 83.63810 -176.89176 - -237.67840 85.67170 -173.79020 - -224.09494 87.10968 -170.46369 - -210.33211 87.95511 -166.92480 - -210.33214 87.95330 -166.92480 - -196.35277 89.88749 -163.18634 - -182.10640 91.35183 -159.26187 - -167.66669 92.34852 -155.16501 - -153.10697 92.87953 -150.90941 - -138.50028 92.94656 -146.50870 - -138.50030 92.94520 -146.50870 - -123.82675 93.74220 -141.97668 - -109.05943 94.13891 -137.32737 - -94.26115 94.13639 -132.57473 - -79.49458 93.73555 -127.73278 - -64.82224 92.93710 -122.81548 - -64.82225 92.93602 -122.81548 - -50.23456 92.66552 -117.83685 - -35.71762 92.03576 -112.81067 - -21.32784 91.04707 -107.75052 - -7.12162 89.69966 -102.67002 - 6.84470 87.99367 -97.58276 - 6.84468 87.99289 -97.58276 - 20.57327 86.67908 -92.50226 - 34.06921 85.03192 -87.44130 - 47.28012 83.05134 -82.41236 - 60.15360 80.73727 -77.42793 - 72.63722 78.08961 -72.50050 - 72.63718 78.08938 -72.50050 - 84.71526 75.57872 -67.64237 - 96.37388 72.75084 -62.86457 - 107.56319 69.60566 -58.17765 - 118.23332 66.14319 -53.59221 - 128.33443 62.36347 -49.11881 - 128.33720 62.34395 -49.11881 - 136.67147 48.64288 -44.96356 - 142.88908 34.12208 -40.92650 - 146.86716 18.78261 -37.01100 - 148.48299 2.62572 -33.22045 - 147.61408 -14.34718 -29.55820 - 147.67458 -14.79000 -29.55820 - 144.23509 -31.19770 -26.02591 - 138.27917 -48.32750 -22.61824 - 129.80538 -64.08643 -19.32804 - 119.22132 -76.48377 -16.14820 - 107.02276 -85.63094 -13.07157 - 107.01859 -85.81722 -13.07157 - 93.61558 -92.37477 -10.08860 - 79.45850 -95.88566 -7.18630 - 64.99833 -96.42762 -4.35243 - 50.68535 -93.86669 -1.57472 - 37.06366 -86.79904 1.15906 - 36.98504 -86.70087 1.15906 - 24.80523 -75.16367 3.86225 - 14.58680 -60.60926 6.54434 - 6.76388 -43.22615 9.21189 - 1.75981 -23.02610 11.87143 - -0.00334 -0.01405 14.52950 + -0.01266 0.05757 50.86404 + 0.03914 0.92085 43.67677 + 0.34968 3.50580 36.48958 + 1.17957 7.86442 29.30165 + 2.77262 13.49523 22.11214 + 5.20791 18.72155 14.92023 + 5.23693 18.90884 14.92023 + 8.37003 22.61196 7.72428 + 11.94429 24.79069 0.52106 + 15.74305 25.68571 -6.69263 + 19.62490 26.07869 -13.92002 + 23.56859 26.51035 -21.16431 + 23.55386 -116.45465 -21.16431 + 11.92373 -116.14485 -26.00395 + 0.32549 -115.81699 -30.84816 + -11.23905 -115.47078 -35.69251 + -22.76805 -115.10604 -40.53256 + -34.25964 -114.72264 -45.36387 + -34.26090 -114.71223 -45.36387 + -49.51750 -114.11094 -51.78435 + -64.68359 -113.35453 -58.17104 + -79.73850 -112.44342 -64.51368 + -94.66166 -111.37826 -70.80201 + -109.43256 -110.15992 -77.02578 + -109.43199 -110.15783 -77.02578 + -124.02929 -108.77669 -83.17475 + -138.43247 -107.24624 -89.23910 + -152.62168 -105.56704 -95.20916 + -166.57711 -103.73985 -101.07526 + -180.27910 -101.76567 -106.82773 + -180.27909 -101.76685 -106.82773 + -193.68681 -99.32369 -112.45698 + -206.75869 -96.72954 -117.95409 + -219.47471 -93.98601 -123.31039 + -231.81507 -91.09483 -128.51722 + -243.76019 -88.05786 -133.56591 + -243.76023 -88.05886 -133.56591 + -255.25000 -84.26592 -138.44795 + -266.22536 -80.34274 -143.15584 + -276.66898 -76.29017 -147.68248 + -286.56369 -72.10907 -152.02073 + -295.89239 -67.80033 -156.16350 + -295.89239 -67.80096 -156.16350 + -304.62840 -63.21789 -160.10393 + -312.74488 -58.50833 -163.83653 + -320.22503 -53.67316 -167.35620 + -327.05217 -48.71321 -170.65786 + -333.20971 -43.62931 -173.73640 + -333.20972 -43.62992 -173.73640 + -338.67276 -38.29525 -176.58706 + -343.41632 -32.83772 -179.20666 + -347.42406 -27.25803 -181.59248 + -350.67973 -21.55682 -183.74179 + -353.16717 -15.73468 -185.65186 + -353.16718 -15.73521 -185.65186 + -354.53189 -11.54723 -186.92606 + -355.47428 -7.28900 -188.06422 + -355.98736 -2.96095 -189.06614 + -356.06416 1.43658 -189.93162 + -355.69774 5.90330 -190.66048 + -355.69774 5.90281 -190.66048 + -354.87749 10.51388 -191.25264 + -353.59264 15.19455 -191.70863 + -351.83626 19.94471 -192.02911 + -349.60139 24.76434 -192.21477 + -346.88107 29.65348 -192.26628 + -346.88107 29.65301 -192.26628 + -343.66642 34.64037 -192.18446 + -339.95294 39.62950 -191.97076 + -335.74045 44.62066 -191.62681 + -331.02873 49.61417 -191.15421 + -325.81753 54.61038 -190.55459 + -325.81773 54.61410 -190.55459 + -316.66323 61.56011 -189.36001 + -306.57572 66.49302 -187.86545 + -295.84256 69.95327 -186.08096 + -284.63982 72.47007 -184.01661 + -273.11552 74.04639 -181.68246 + -273.11550 74.04455 -181.68246 + -261.19428 77.57784 -179.08901 + -248.76597 80.49877 -176.24809 + -235.92660 82.81002 -173.17181 + -222.77177 84.51415 -169.87229 + -209.39669 85.61359 -166.36164 + -209.39670 85.61195 -166.36164 + -195.76612 87.78754 -162.65226 + -181.83162 89.48035 -158.75742 + -167.66891 90.69242 -154.69048 + -153.35337 91.42563 -150.46483 + -138.96013 91.68173 -146.09384 + -138.96014 91.68030 -146.09384 + -124.47136 92.65341 -141.59107 + -109.86213 93.21349 -136.97038 + -95.19725 93.36191 -132.24564 + -80.54131 93.09992 -127.43071 + -65.95871 92.42866 -122.53944 + -65.95872 92.42739 -122.53944 + -51.44171 92.27285 -117.58575 + -36.97806 91.74835 -112.58335 + -22.62585 90.85471 -107.54581 + -8.44302 89.59267 -102.48669 + 5.51258 87.96292 -97.41957 + 5.51256 87.96191 -97.41957 + 19.24171 86.71575 -92.35793 + 32.74820 85.12822 -87.31456 + 45.97844 83.19981 -82.30198 + 58.87888 80.93098 -77.33268 + 71.39608 78.32217 -72.41917 + 71.39604 78.32172 -72.41917 + 83.51329 75.84405 -67.57377 + 95.21584 73.04380 -62.80756 + 106.45304 69.92140 -58.13115 + 117.17429 66.47731 -53.55516 + 127.32908 62.71203 -49.09021 + 127.33189 62.69207 -49.09021 + 135.72250 49.04353 -44.94213 + 142.00325 34.56105 -40.91142 + 146.04926 19.24737 -37.00152 + 147.73604 3.10525 -33.21585 + 146.93955 -13.86245 -29.55785 + 147.00004 -14.30579 -29.55785 + 143.63305 -30.71659 -26.02922 + 137.74860 -47.85664 -22.62468 + 129.34429 -63.63192 -19.33717 + 118.82685 -76.05083 -16.15961 + 106.69133 -85.22400 -13.08492 + 106.68715 -85.41054 -13.08492 + 93.34296 -91.99787 -10.10361 + 79.23997 -95.54177 -7.20273 + 64.82874 -96.11952 -4.37009 + 50.55913 -93.59682 -1.59346 + 36.97492 -86.56955 1.13935 + 36.89629 -86.47145 1.13935 + 24.74774 -74.97660 3.84163 + 14.55408 -60.46637 6.52288 + 6.74917 -43.12919 9.18961 + 1.75609 -22.97678 11.84835 + -0.00334 -0.01404 14.50562 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12034,143 +12124,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 16.77343 0.00000 27.59211 1.44679 110 61 - - 33.08763 0.00000 55.18421 2.89358 110 60 - - 50.48522 0.00000 82.77632 4.34037 110 61 - - 57.24723 0.00000 110.36843 5.78715 110 52 - - 42.70829 0.00000 137.96054 7.23394 110 31 - - 42.70829 0.00000 68.20749 7.23394 110 63 - - 28.16120 0.00000 81.84899 8.68073 110 34 - - 13.59944 0.00000 95.49049 10.12752 110 14 - - 3.63658 0.00000 109.13199 11.57431 110 0 - - 3.96308 0.00000 122.77349 13.02110 110 0 - - 4.29961 0.00000 136.41499 14.46788 110 0 - - 4.29961 0.00000 111.45332 14.46788 110 0 - - 4.53043 0.00000 118.88354 15.43241 110 0 - - 4.76573 0.00000 126.31376 16.39693 110 0 - - 5.00430 0.00000 133.74398 17.36146 110 0 - - 5.24495 0.00000 141.17421 18.32599 110 0 - - 5.48646 0.00000 148.60443 19.29051 110 0 - - 5.48646 0.00000 137.71826 19.29051 110 0 - - 5.80761 1.30800 141.50704 19.82121 110 0 - - 6.12523 2.61600 145.29582 20.35192 110 0 - - 6.43680 3.92400 149.08461 20.88262 110 0 - - 6.73979 5.23200 152.87339 21.41333 110 0 - - 7.03166 6.54000 156.66217 21.94403 110 0 - - 7.15705 6.54000 150.27634 21.94403 110 0 - - 7.41450 7.84800 153.91069 22.47473 110 0 - - 7.66697 9.15600 157.54503 23.00544 110 0 - - 7.91193 10.46400 161.17938 23.53614 110 0 - - 8.14691 11.77200 164.81372 24.06684 110 0 - - 8.36954 13.08000 168.44806 24.59755 110 0 - - 11.79685 13.08000 162.75727 24.59755 110 0 - - 12.07609 14.38800 166.26883 25.12825 110 0 - - 12.33837 15.69600 169.78039 25.65895 110 0 - - 12.58237 17.00400 173.29196 26.18966 110 0 - - 12.80683 18.31200 176.80352 26.72036 110 0 - - 13.01051 19.62000 180.31508 27.25106 110 0 - - 20.04486 19.62000 112.91072 24.82969 110 0 - - 20.12070 20.92800 113.33345 24.92265 110 0 - - 20.18740 22.23600 113.75618 25.01561 110 0 - - 20.24487 23.54400 114.17890 25.10857 110 0 - - 20.29300 24.85200 114.60163 25.20153 110 0 - - 20.33171 26.16000 115.02436 25.29449 110 0 - - 21.90951 26.16000 114.42115 25.29449 110 0 - - 21.94539 27.46800 114.84166 25.38745 110 0 - - 21.97189 28.77600 115.26217 25.48041 110 0 - - 21.98935 30.08400 115.68268 25.57337 110 0 - - 21.99810 31.39200 116.10319 25.66633 110 0 - - 21.99845 32.70000 116.52370 25.75929 110 0 - - 23.36330 32.70000 116.01583 25.75929 110 0 - - 23.36055 34.00800 116.43451 25.85225 110 0 - - 23.35031 35.31600 116.85318 25.94521 110 0 - - 23.33329 36.62400 117.27186 26.03817 110 0 - - 23.31018 37.93200 117.69054 26.13113 110 0 - - 23.28167 39.24000 118.10921 26.22409 110 0 - - 18.82316 39.24000 183.43874 28.78144 110 0 - - 18.82487 40.22100 185.97557 29.17947 110 0 - - 18.82119 41.20200 188.51241 29.57750 110 0 - - 18.81308 42.18300 191.04924 29.97553 110 0 - - 18.80151 43.16400 193.58607 30.37355 110 0 - - 18.78747 44.14500 196.12290 30.77158 110 0 - - 19.85888 44.14500 192.60019 30.77158 110 0 - - 19.85467 45.12600 195.09146 31.16961 110 0 - - 19.85003 46.10700 197.58272 31.56764 110 0 - - 19.84607 47.08800 200.07399 31.96566 110 0 - - 19.84392 48.06900 202.56525 32.36369 110 0 - - 19.84470 49.05000 205.05652 32.76172 110 0 - - 20.73899 49.05000 201.76542 32.76172 110 0 - - 20.75281 50.03100 204.21670 33.15975 110 0 - - 20.77195 51.01200 206.66798 33.55777 110 0 - - 20.79736 51.99300 209.11926 33.95580 110 0 - - 20.83001 52.97400 211.57054 34.35383 110 0 - - 20.87086 53.95500 214.02182 34.75186 110 0 - - 21.82955 53.95500 210.11289 34.75186 110 0 - - 21.92606 55.49657 213.89455 35.37733 110 0 - - 22.04486 57.03814 217.67621 36.00280 110 0 - - 22.18552 58.57971 221.45787 36.62827 110 0 - - 22.34763 60.12129 225.23953 37.25374 110 0 - - 22.53075 61.66286 229.02119 37.87922 110 0 - - 23.50783 61.66286 224.58067 37.87922 110 0 - - 23.72397 63.20443 228.28901 38.50469 110 0 - - 23.95799 64.74600 231.99734 39.13016 110 0 - - 24.20840 66.28757 235.70568 39.75563 110 0 - - 24.47374 67.82914 239.41402 40.38110 110 0 - - 24.75251 69.37071 243.12235 41.00658 110 0 - - 25.53017 69.37071 239.03373 41.00658 110 0 - - 25.83070 70.91229 242.67970 41.63205 110 0 - - 26.14200 72.45386 246.32568 42.25752 110 0 - - 26.46292 73.99543 249.97165 42.88299 110 0 - - 26.79232 75.53700 253.61762 43.50846 110 0 - - 27.12902 77.07857 257.26360 44.13393 110 0 - - 27.74589 77.07857 253.47345 44.13393 110 0 - - 28.09606 78.62014 257.06570 44.75941 110 0 - - 28.45159 80.16171 260.65796 45.38488 110 0 - - 28.81168 81.70329 264.25022 46.01035 110 0 - - 29.17553 83.24486 267.84248 46.63582 110 0 - - 29.54236 84.78643 271.43474 47.26129 110 0 - - 30.02942 84.78643 267.90138 47.26129 110 0 - - 30.40386 86.32800 271.44688 47.88677 110 0 - - 30.78002 87.86957 274.99238 48.51224 110 0 - - 31.15747 89.41114 278.53787 49.13771 110 0 - - 31.53575 90.95271 282.08337 49.76318 110 0 - - 31.91443 92.49429 285.62887 50.38865 110 0 - - 32.26583 92.49429 282.31903 50.38865 110 0 - - 32.64817 94.03586 285.82344 51.01412 110 0 - - 33.03035 95.57743 289.32786 51.63960 110 0 - - 33.41225 97.11900 292.83227 52.26507 110 0 - - 33.79376 98.66057 296.33668 52.89054 110 0 - - 34.17479 100.20214 299.84109 53.51601 110 0 - - 32.98489 100.20214 296.72773 53.51601 110 0 - - 33.35358 101.74371 300.19575 54.14148 110 0 - - 33.72190 103.28529 303.66378 54.76696 110 0 - - 34.09007 104.82686 307.13180 55.39243 110 0 - - 34.45833 106.36843 310.59983 56.01790 110 0 - - 34.82689 107.91000 314.06785 56.64337 110 0 - - 29.55525 107.91000 734.00940 36.53923 110 0 - - 29.77121 109.38150 745.49575 37.11102 110 0 - - 29.99183 110.85300 756.98209 37.68281 110 0 - - 30.21794 112.32450 768.46843 38.25461 110 0 - - 30.45039 113.79600 779.95478 38.82640 110 0 - - 30.69001 115.26750 791.44112 39.39820 110 0 - - 28.44518 115.26750 738.87493 39.39820 110 0 - - 28.66382 116.73900 749.59837 39.96999 110 0 - - 28.88988 118.21050 760.32181 40.54178 110 0 - - 29.12312 119.68200 771.04525 41.11358 110 0 - - 29.36327 121.15350 781.76869 41.68537 110 0 - - 29.61009 122.62500 792.49213 42.25717 110 0 - - 24.34430 122.62500 772.62437 42.25717 110 0 - - 24.50271 124.09650 783.07897 42.82896 110 0 - - 24.66678 125.56800 793.53357 43.40075 110 0 - - 24.83567 127.03950 803.98818 43.97255 110 0 - - 28.79713 128.51100 814.44278 44.54434 110 0 - - 56.70677 129.98250 824.89738 45.11614 110 7 - - 56.70677 129.98250 814.08791 45.11614 110 7 - - 84.31040 131.45400 824.40552 45.68793 110 10 - - 111.70316 132.92550 834.72313 46.25972 110 13 - - 138.95043 134.39700 845.04073 46.83152 110 16 - - 166.11761 135.86850 855.35834 47.40331 110 19 - - 193.27011 137.34000 865.67594 47.97510 110 22 - + 16.44341 0.00000 27.59211 1.44679 110 60 - + 32.79379 0.00000 55.18421 2.89358 110 59 - + 50.22759 0.00000 82.77632 4.34037 110 61 - + 57.02583 0.00000 110.36843 5.78715 110 52 - + 42.52318 0.00000 137.96054 7.23394 110 31 - + 42.52318 0.00000 68.20749 7.23394 110 62 - + 28.01245 0.00000 81.84899 8.68073 110 34 - + 13.48717 0.00000 95.49049 10.12752 110 14 - + 3.56095 0.00000 109.13199 11.57431 110 0 - + 3.92429 0.00000 122.77349 13.02110 110 0 - + 4.29789 0.00000 136.41499 14.46788 110 0 - + 4.29789 0.00000 111.45332 14.46788 110 0 - + 4.55358 0.00000 118.88354 15.43241 110 0 - + 4.81390 0.00000 126.31376 16.39693 110 0 - + 5.07765 0.00000 133.74398 17.36146 110 0 - + 5.34364 0.00000 141.17421 18.32599 110 0 - + 5.61068 0.00000 148.60443 19.29051 110 0 - + 5.61068 0.00000 137.71826 19.29051 110 0 - + 5.96617 1.30800 141.50704 19.82121 110 0 - + 6.31851 2.61600 145.29582 20.35192 110 0 - + 6.66520 3.92400 149.08461 20.88262 110 0 - + 7.00373 5.23200 152.87339 21.41333 110 0 - + 7.33159 6.54000 156.66217 21.94403 110 0 - + 7.45699 6.54000 150.27634 21.94403 110 0 - + 7.75089 7.84800 153.91069 22.47473 110 0 - + 8.04029 9.15600 157.54503 23.00544 110 0 - + 8.32263 10.46400 161.17938 23.53614 110 0 - + 8.59546 11.77200 164.81372 24.06684 110 0 - + 8.85641 13.08000 168.44806 24.59755 110 0 - + 12.28372 13.08000 162.75727 24.59755 110 0 - + 12.60172 14.38800 166.26883 25.12825 110 0 - + 12.90319 15.69600 169.78039 25.65895 110 0 - + 13.18675 17.00400 173.29196 26.18966 110 0 - + 13.45110 18.31200 176.80352 26.72036 110 0 - + 13.69494 19.62000 180.31508 27.25106 110 0 - + 20.31863 19.62000 112.91072 24.82969 110 0 - + 20.41063 20.92800 113.33345 24.92265 110 0 - + 20.49355 22.23600 113.75618 25.01561 110 0 - + 20.56726 23.54400 114.17890 25.10857 110 0 - + 20.63162 24.85200 114.60163 25.20153 110 0 - + 20.68652 26.16000 115.02436 25.29449 110 0 - + 22.26432 26.16000 114.42115 25.29449 110 0 - + 22.31632 27.46800 114.84166 25.38745 110 0 - + 22.35882 28.77600 115.26217 25.48041 110 0 - + 22.39211 30.08400 115.68268 25.57337 110 0 - + 22.41646 31.39200 116.10319 25.66633 110 0 - + 22.43218 32.70000 116.52370 25.75929 110 0 - + 23.79703 32.70000 116.01583 25.75929 110 0 - + 23.80933 34.00800 116.43451 25.85225 110 0 - + 23.81379 35.31600 116.85318 25.94521 110 0 - + 23.81104 36.62400 117.27186 26.03817 110 0 - + 23.80171 37.93200 117.69054 26.13113 110 0 - + 23.78645 39.24000 118.10921 26.22409 110 0 - + 20.08512 39.24000 183.43874 28.78144 110 0 - + 20.11069 40.22100 185.97557 29.17947 110 0 - + 20.12993 41.20200 188.51241 29.57750 110 0 - + 20.14372 42.18300 191.04924 29.97553 110 0 - + 20.15295 43.16400 193.58607 30.37355 110 0 - + 20.15849 44.14500 196.12290 30.77158 110 0 - + 21.22991 44.14500 192.60019 30.77158 110 0 - + 21.24399 45.12600 195.09146 31.16961 110 0 - + 21.25622 46.10700 197.58272 31.56764 110 0 - + 21.26761 47.08800 200.07399 31.96566 110 0 - + 21.27912 48.06900 202.56525 32.36369 110 0 - + 21.29177 49.05000 205.05652 32.76172 110 0 - + 22.18606 49.05000 201.76542 32.76172 110 0 - + 22.20983 50.03100 204.21670 33.15975 110 0 - + 22.23682 51.01200 206.66798 33.55777 110 0 - + 22.26785 51.99300 209.11926 33.95580 110 0 - + 22.30369 52.97400 211.57054 34.35383 110 0 - + 22.34515 53.95500 214.02182 34.75186 110 0 - + 23.30383 53.95500 210.11289 34.75186 110 0 - + 23.39537 55.49657 213.89455 35.37733 110 0 - + 23.50162 57.03814 217.67621 36.00280 110 0 - + 23.62228 58.57971 221.45787 36.62827 110 0 - + 23.75701 60.12129 225.23953 37.25374 110 0 - + 23.90551 61.66286 229.02119 37.87922 110 0 - + 24.88259 61.66286 224.58067 37.87922 110 0 - + 25.05762 63.20443 228.28901 38.50469 110 0 - + 25.24534 64.74600 231.99734 39.13016 110 0 - + 25.44518 66.28757 235.70568 39.75563 110 0 - + 25.65653 67.82914 239.41402 40.38110 110 0 - + 25.87883 69.37071 243.12235 41.00658 110 0 - + 26.65648 69.37071 239.03373 41.00658 110 0 - + 26.89886 70.91229 242.67970 41.63205 110 0 - + 27.15089 72.45386 246.32568 42.25752 110 0 - + 27.41197 73.99543 249.97165 42.88299 110 0 - + 27.68146 75.53700 253.61762 43.50846 110 0 - + 27.95875 77.07857 257.26360 44.13393 110 0 - + 28.57561 77.07857 253.47345 44.13393 110 0 - + 28.86729 78.62014 257.06570 44.75941 110 0 - + 29.16556 80.16171 260.65796 45.38488 110 0 - + 29.46987 81.70329 264.25022 46.01035 110 0 - + 29.77967 83.24486 267.84248 46.63582 110 0 - + 30.09444 84.78643 271.43474 47.26129 110 0 - + 30.58149 84.78643 267.90138 47.26129 110 0 - + 30.90607 86.32800 271.44688 47.88677 110 0 - + 31.23466 87.86957 274.99238 48.51224 110 0 - + 31.56690 89.41114 278.53787 49.13771 110 0 - + 31.90240 90.95271 282.08337 49.76318 110 0 - + 32.24081 92.49429 285.62887 50.38865 110 0 - + 32.59221 92.49429 282.31903 50.38865 110 0 - + 32.93684 94.03586 285.82344 51.01412 110 0 - + 33.28381 95.57743 289.32786 51.63960 110 0 - + 33.63301 97.11900 292.83227 52.26507 110 0 - + 33.98427 98.66057 296.33668 52.89054 110 0 - + 34.33746 100.20214 299.84109 53.51601 110 0 - + 33.14756 100.20214 296.72773 53.51601 110 0 - + 33.49078 101.74371 300.19575 54.14148 110 0 - + 33.83591 103.28529 303.66378 54.76696 110 0 - + 34.18308 104.82686 307.13180 55.39243 110 0 - + 34.53242 106.36843 310.59983 56.01790 110 0 - + 34.88409 107.91000 314.06785 56.64337 110 0 - + 29.84124 107.91000 734.00940 36.53923 110 0 - + 29.98548 109.38150 745.49575 37.11102 110 0 - + 30.14257 110.85300 756.98209 37.68281 110 0 - + 30.31276 112.32450 768.46843 38.25461 110 0 - + 30.49633 113.79600 779.95478 38.82640 110 0 - + 30.69352 115.26750 791.44112 39.39820 110 0 - + 28.44869 115.26750 738.87493 39.39820 110 0 - + 28.63073 116.73900 749.59837 39.96999 110 0 - + 28.82539 118.21050 760.32181 40.54178 110 0 - + 29.03182 119.68200 771.04525 41.11358 110 0 - + 29.24916 121.15350 781.76869 41.68537 110 0 - + 29.47658 122.62500 792.49213 42.25717 110 0 - + 24.21079 122.62500 772.62437 42.25717 110 0 - + 24.35263 124.09650 783.07897 42.82896 110 0 - + 24.50246 125.56800 793.53357 43.40075 110 0 - + 24.65905 127.03950 803.98818 43.97255 110 0 - + 28.60971 128.51100 814.44278 44.54434 110 0 - + 56.50964 129.98250 824.89738 45.11614 110 7 - + 56.50964 129.98250 814.08791 45.11614 110 7 - + 84.10426 131.45400 824.40552 45.68793 110 10 - + 111.48850 132.92550 834.72313 46.25972 110 13 - + 138.72759 134.39700 845.04073 46.83152 110 16 - + 165.88677 135.86850 855.35834 47.40331 110 19 - + 193.03129 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12183,10 +12273,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 57.880 'Clay' - -4.00 43.676 'Peat' - -6.00 186.304 'Clay' - -13.00 159.753 'Sand' + 0.00 58.453 'Clay' + -4.00 44.462 'Peat' + -6.00 192.443 'Clay' + -13.00 159.505 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12263,17 +12353,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -12290,17 +12380,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -12389,72 +12479,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00001 0.00000 1 0 A - 7.27942 6.44657 11.10304 0.62547 110 66 - - 18.63994 7.98814 22.20609 1.25094 110 84 - - 29.97926 9.52971 33.30913 1.87642 110 90 - - 41.29776 11.07129 44.41217 2.50189 110 93 - - 52.59583 12.61286 55.51522 3.12736 110 95 - - 40.39697 12.61286 48.26946 3.12736 110 84 - - 46.11018 14.15443 57.92335 3.75283 110 80 - - 51.80599 15.69600 67.57724 4.37830 110 77 - - 57.48585 17.23757 77.23113 5.00377 110 74 - - 63.15121 18.77914 86.88502 5.62925 110 73 - - 68.80353 20.32071 96.53892 6.25472 110 71 - - 54.85557 20.32071 70.67406 6.25472 110 78 - - 59.43812 21.86229 77.74147 6.88019 110 76 - - 64.01022 23.40386 84.80887 7.50566 110 75 - - 68.57299 24.94543 91.87628 8.13113 110 75 - - 73.12756 26.48700 98.94369 8.75661 110 74 - - 77.67508 28.02857 106.01109 9.38208 110 73 - - 67.72829 28.02857 88.06042 9.38208 110 77 - - 71.72274 29.57014 93.93112 10.00755 110 76 - - 75.71203 31.11171 99.80181 10.63302 110 76 - - 79.69696 32.65329 105.67251 11.25849 110 75 - - 83.67829 34.19486 111.54320 11.88397 110 75 - - 87.65680 35.73643 117.41390 12.50944 110 75 - - 79.90478 35.73643 104.10611 12.50944 110 77 - - 83.54680 37.27800 109.31142 13.13491 110 76 - - 87.18722 38.81957 114.51672 13.76038 110 76 - - 90.82647 40.36114 119.72203 14.38585 110 76 - - 94.46498 41.90271 124.92734 15.01132 110 76 - - 98.10319 43.44429 130.13264 15.63680 110 75 - - 91.74440 43.44429 119.53821 15.63680 110 77 - - 95.15706 44.98586 124.31974 16.26227 110 77 - - 98.56994 46.52743 129.10127 16.88774 110 76 - - 101.98316 48.06900 133.88279 17.51321 110 76 - - 105.39680 49.61057 138.66432 18.13868 110 76 - - 108.81098 51.15214 143.44585 18.76416 110 76 - - 103.41729 51.15214 134.63740 18.76416 110 77 - - 106.66949 52.69371 139.12532 19.38963 110 77 - - 109.92209 54.23529 143.61323 20.01510 110 77 - - 113.17485 55.77686 148.10114 20.64057 110 76 - - 116.42754 57.31843 152.58906 21.26604 110 76 - - 119.67992 58.86000 157.07697 21.89152 110 76 - - 205.18580 58.86000 279.16236 14.12167 110 74 - - 213.21341 60.33150 290.46579 14.69346 110 73 - - 221.23635 61.80300 301.76922 15.26526 110 73 - - 229.25379 63.27450 313.07265 15.83705 110 73 - - 237.26489 64.74600 324.37608 16.40885 110 73 - - 245.26881 66.21750 335.67951 16.98064 110 73 - - 230.10750 66.21750 311.64171 16.98064 110 74 - - 237.62909 67.68900 322.13571 17.55243 110 74 - - 244.30658 69.16050 332.62971 18.12423 110 73 - - 211.97643 70.63200 343.12371 18.69602 110 62 - - 180.74977 72.10350 353.61771 19.26782 110 51 - - 150.55531 73.57500 364.11171 19.83961 110 41 - - 150.55531 73.57500 356.39681 19.83961 110 42 - - 121.29739 75.04650 366.66846 20.41140 110 33 - - 92.84620 76.51800 376.94011 20.98320 110 25 - - 65.07924 77.98950 387.21176 21.55499 110 17 - - 37.87399 79.46100 397.48341 22.12679 110 10 - - 11.10795 80.93250 407.75506 22.69858 110 0 - - 11.10795 80.93250 403.90034 22.69858 110 0 - - 8.25305 82.40400 414.07488 23.27037 110 0 - - 8.63361 83.87550 424.24943 23.84217 110 0 - - 9.01311 85.34700 434.42398 24.41396 110 0 - - 9.39205 86.81850 444.59852 24.98575 110 0 - - 9.77088 88.29000 454.77307 25.55755 110 0 - + 0.00000 4.90500 0.00002 0.00000 1 0 A + 18.50817 6.44657 23.80111 0.62547 110 78 - + 36.79946 7.98814 47.60221 1.25094 110 77 - + 45.51080 9.52971 71.40332 1.87642 110 64 - + 54.20867 11.07129 95.20443 2.50189 110 57 - + 62.89337 12.61286 119.00554 3.12736 110 53 - + 39.02220 12.61286 49.29372 3.12736 110 79 - + 44.77653 14.15443 59.15246 3.75283 110 76 - + 50.51863 15.69600 69.01120 4.37830 110 73 - + 56.24908 17.23757 78.86995 5.00377 110 71 - + 61.96842 18.77914 88.72869 5.62925 110 70 - + 67.67721 20.32071 98.58743 6.25472 110 69 - + 53.72926 20.32071 70.68330 6.25472 110 76 - + 58.36996 21.86229 77.75163 6.88019 110 75 - + 63.00132 23.40386 84.81996 7.50566 110 74 - + 67.62394 24.94543 91.88829 8.13113 110 74 - + 72.23842 26.48700 98.95662 8.75661 110 73 - + 76.84536 28.02857 106.02494 9.38208 110 72 - + 66.89856 28.02857 88.07144 9.38208 110 76 - + 70.95150 29.57014 93.94287 10.00755 110 76 - + 74.99806 31.11171 99.81430 10.63302 110 75 - + 79.03877 32.65329 105.68573 11.25849 110 75 - + 83.07415 34.19486 111.55716 11.88397 110 74 - + 87.10473 35.73643 117.42859 12.50944 110 74 - + 79.35270 35.73643 104.11800 12.50944 110 76 - + 83.04459 37.27800 109.32390 13.13491 110 76 - + 86.73258 38.81957 114.52980 13.76038 110 76 - + 90.41704 40.36114 119.73570 14.38585 110 76 - + 94.09833 41.90271 124.94160 15.01132 110 75 - + 97.77681 43.44429 130.14750 15.63680 110 75 - + 91.41802 43.44429 119.55043 15.63680 110 76 - + 94.86840 44.98586 124.33244 16.26227 110 76 - + 98.31648 46.52743 129.11446 16.88774 110 76 - + 101.76240 48.06900 133.89648 17.51321 110 76 - + 105.20630 49.61057 138.67850 18.13868 110 76 - + 108.64831 51.15214 143.46051 18.76416 110 76 - + 103.25462 51.15214 134.64963 18.76416 110 77 - + 106.53229 52.69371 139.13795 19.38963 110 77 - + 109.80808 54.23529 143.62627 20.01510 110 76 - + 113.08184 55.77686 148.11459 20.64057 110 76 - + 116.35344 57.31843 152.60291 21.26604 110 76 - + 119.62272 58.86000 157.09123 21.89152 110 76 - + 204.89981 58.86000 280.51782 14.12167 110 73 - + 212.99914 60.33150 291.87613 14.69346 110 73 - + 221.08561 61.80300 303.23445 15.26526 110 73 - + 229.15897 63.27450 314.59276 15.83705 110 73 - + 237.21896 64.74600 325.95107 16.40885 110 73 - + 245.26530 66.21750 337.30939 16.98064 110 73 - + 230.10399 66.21750 312.61080 16.98064 110 74 - + 237.66218 67.68900 323.13743 17.55243 110 74 - + 244.37108 69.16050 333.66406 18.12423 110 73 - + 212.06773 70.63200 344.19069 18.69602 110 62 - + 180.86388 72.10350 354.71732 19.26782 110 51 - + 150.68882 73.57500 365.24396 19.83961 110 41 - + 150.68882 73.57500 357.09310 19.83961 110 42 - + 121.44747 75.04650 367.38481 20.41140 110 33 - + 93.01052 76.51800 377.67653 20.98320 110 25 - + 65.25586 77.98950 387.96825 21.55499 110 17 - + 38.06141 79.46100 398.25997 22.12679 110 10 - + 11.30508 80.93250 408.55168 22.69858 110 0 - + 11.30508 80.93250 404.41665 22.69858 110 0 - + 8.45919 82.40400 414.60420 23.27037 110 0 - + 8.84826 83.87550 424.79176 23.84217 110 0 - + 9.23595 85.34700 434.97931 24.41396 110 0 - + 9.62289 86.81850 445.16686 24.98575 110 0 - + 10.00969 88.29000 455.35442 25.55755 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12469,8 +12559,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 411.828 'Clay' - -13.00 395.227 'Sand' + -6.00 418.814 'Clay' + -13.00 395.475 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12495,17 +12585,17 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 7.90682 11.47132 -7.08806 0.00000 19.42013 1 3 0 1.000 0 0 - 8.16960 11.90118 -7.83591 0.00000 19.74572 1 10 12 1.000 0 0 - 7.54962 11.01915 -6.91935 0.00000 13.56667 1 11 13 1.000 0 0 + 7.29688 10.61966 -6.39599 0.00000 13.31787 1 10 12 1.000 0 0 + 7.55686 11.01942 -6.75572 0.00000 13.44873 1 11 13 1.000 0 0 -24.64877 -33.28626 7.11387 16.24927 18.61625 2 3 0 1.000 0 0 - -24.85057 -33.36786 7.14681 16.32244 18.83921 2 10 12 1.000 0 0 - -23.04409 -32.60699 7.04179 11.16180 12.88365 2 11 13 1.000 0 0 + -22.84294 -32.52947 6.99532 11.11396 12.71953 2 10 12 1.000 0 0 + -23.04409 -32.60699 7.04179 11.14095 12.76033 2 11 13 1.000 0 0 -357.36675 -130.29407 -186.90167 57.83928 63.86128 3 3 0 1.000 0 0 - -466.96793 -150.45558 -290.47348 67.13909 71.84045 3 10 12 1.000 0 0 - -286.47657 -106.30945 -126.66806 41.39030 47.29322 3 11 13 1.000 0 0 + -218.22491 -91.84827 -87.98517 36.87428 43.00808 3 10 12 1.000 0 0 + -263.41000 -101.44644 -113.42288 40.48254 46.54521 3 11 13 1.000 0 0 -348.18884 -116.94920 -183.16395 56.76415 62.32165 4 3 0 1.000 0 0 - -352.61491 -115.53101 -187.19922 58.17216 63.64420 4 10 12 1.000 0 0 - -357.62960 -116.26916 -192.98981 45.20436 49.47297 4 11 13 1.000 0 0 + -351.98851 -116.84236 -190.57173 42.34261 46.09012 4 10 12 1.000 0 0 + -356.06416 -116.45465 -192.26628 44.94341 49.04222 4 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -12530,11 +12620,11 @@ AnchorName 2 10 7 12 1.000 56.00000 0 1 0 0 'Anchor' 2 11 7 13 1.000 56.00000 0 1 0 0 'Anchor' 3 3 7 0 1.000 168.00000 0 0 0 0 'Anchor' - 3 10 7 12 1.000 168.00000 0 0 0 0 'Anchor' - 3 11 7 13 1.000 161.86324 0 1 0 0 'Anchor' + 3 10 7 12 1.000 141.67839 0 1 0 0 'Anchor' + 3 11 7 13 1.000 155.07134 0 1 0 0 'Anchor' 4 3 7 0 1.000 144.19843 0 1 0 0 'Anchor' - 4 10 7 12 1.000 143.74462 0 1 0 0 'Anchor' - 4 11 7 13 1.000 142.71829 0 1 0 0 'Anchor' + 4 10 7 12 1.000 142.65945 0 1 0 0 'Anchor' + 4 11 7 13 1.000 142.72839 0 1 0 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -12550,15 +12640,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'Anchor' 142.65945 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-466.96793 -MaximumShearForce=-150.45558 +MaximumMoment=-357.36675 +MaximumShearForce=-130.29407 MaximumDisplacement=-186.90167 -MaximumPercentageMobilisedMoment=67.13909 -MaximumPercentageMobilisedResistance=71.84045 +MaximumPercentageMobilisedMoment=57.83928 +MaximumPercentageMobilisedResistance=63.86128 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-351.98851 +MaximumShearForce=-116.84236 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=42.34261 +MaximumPercentageMobilisedResistance=46.09012 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shi index cf771fb8..20e90448 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:39 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.391 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.166 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -795,9 +866,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.018 +ResistanceFactor=2.038 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shd index 7ed38b34..a03f849c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:45 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.394 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.172 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -796,9 +867,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.018 +ResistanceFactor=2.038 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -911,7 +1042,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -942,7 +1073,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=8 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.394 1.000 0.000 0.000 1.000 1.000 1.000 - -1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.018 1.300 0.000 0.000 1.100 1.000 1.000 + 1 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 2 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 2 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 3 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 3 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 + 4 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 4 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.038 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4780,7 +4918,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4804,28 +4942,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.04000 - -2.08000 - -2.12000 - -2.16000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4943,20 +5075,20 @@ PartialFactorSet=12 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.75 : Percentage mobilized resistance left - 11.73 : Percentage mobilized resistance right - 311.63 : Effective left - 311.65 : Effective right + 13.32 : Percentage mobilized resistance left + 8.26 : Percentage mobilized resistance right + 280.87 : Effective left + 280.88 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1578.21 : Max effective resistance left - 2657.66 : Max effective resistance right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 73.14 : Vertical force left - 68.78 : Vertical force right + 79.58 : Vertical force left + 74.94 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4966,157 +5098,151 @@ PartialFactorSet=12 [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.83591 - 0.00000 0.00000 -7.82398 - 0.00000 0.00000 -7.81204 - 0.00000 0.00000 -7.80010 - 0.00000 0.00000 -7.78816 - 0.00000 0.00000 -7.77622 - 0.00000 -0.00001 -7.77622 - 0.00000 -0.00001 -7.76429 - 0.00000 -0.00001 -7.75235 - 0.00000 -0.00001 -7.74041 - 0.00000 -0.00001 -7.72847 - 0.00128 0.02564 -7.71653 - 0.00125 0.02523 -7.71653 - 0.00674 0.09714 -7.70857 - 0.02319 0.24446 -7.70061 - 0.05815 0.46720 -7.69266 - 0.11915 0.76535 -7.68475 - 0.21373 1.13891 -7.67688 - 0.21373 1.13891 -7.67688 - 0.26261 1.30595 -7.67375 - 0.31828 1.47807 -7.67063 - 0.38093 1.65528 -7.66754 - 0.45077 1.83756 -7.66447 - 0.52800 2.02492 -7.66143 - 0.52801 2.02483 -7.66143 - 0.79602 2.36559 -7.65253 - 1.07744 2.24845 -7.64409 - 1.31923 1.72092 -7.63621 - 1.48325 1.01317 -7.62904 - 1.56248 0.30769 -7.62268 - 1.56246 0.30769 -7.62268 - 1.55716 -0.39581 -7.61723 - 1.46754 -1.09761 -7.61265 - 1.29379 -1.79801 -7.60883 - 1.03606 -2.49724 -7.60569 - 0.69449 -3.19551 -7.60312 - 0.69449 -3.19547 -7.60312 - 0.26918 -3.89295 -7.60100 - -0.23979 -4.58974 -7.59903 - -0.83233 -5.28584 -7.59688 - -1.50836 -5.98114 -7.59423 - -2.26776 -6.67540 -7.59075 - -2.26776 -6.67552 -7.59075 - -3.10549 -5.89030 -7.58539 - -3.83846 -5.10412 -7.57790 - -4.46653 -4.31664 -7.56785 - -4.98949 -3.52742 -7.55483 - -5.40708 -2.73601 -7.53839 - -5.40707 -2.73624 -7.53839 - -5.71900 -1.94209 -7.51818 - -5.92482 -1.14463 -7.49406 - -6.02406 -0.34328 -7.46597 - -6.01616 0.46257 -7.43383 - -5.90048 1.27353 -7.39759 - -5.90048 1.27329 -7.39759 - -5.67633 2.08997 -7.35723 - -5.34287 2.91296 -7.31298 - -4.89923 3.74283 -7.26517 - -4.34446 4.58009 -7.21408 - -3.67753 5.42519 -7.16002 - -3.67753 5.42503 -7.16002 - -3.15771 4.97348 -7.11778 - -2.68244 4.53393 -7.07432 - -2.25051 4.10669 -7.02983 - -1.86068 3.69203 -6.98445 - -1.51168 3.29018 -6.93836 - -1.51168 3.29011 -6.93836 - -1.20222 2.90124 -6.89172 - -0.93099 2.52550 -6.84461 - -0.69668 2.16300 -6.79713 - -0.49795 1.81383 -6.74937 - -0.33347 1.47806 -6.70142 - -0.33347 1.47804 -6.70142 - -0.14802 0.99960 -6.62932 - -0.03207 0.55146 -6.55710 - 0.01893 0.13368 -6.48480 - 0.00955 -0.25373 -6.41246 - -0.05567 -0.61077 -6.34015 - -0.05566 -0.61079 -6.34015 - -0.17216 -0.93745 -6.26783 - -0.33538 -1.23371 -6.19537 - -0.54075 -1.49947 -6.12259 - -0.78369 -1.73456 -6.04931 - -1.05957 -1.93872 -5.97536 - -1.05956 -1.93889 -5.97536 - -1.36376 -2.11181 -5.90053 - -1.69152 -2.25306 -5.82451 - -2.03806 -2.36207 -5.74703 - -2.39850 -2.43816 -5.66777 - -2.76782 -2.48053 -5.58644 - -2.76781 -2.48095 -5.58644 - -3.14097 -2.48867 -5.50273 - -3.51262 -2.46065 -5.41630 - -3.87732 -2.39570 -5.32685 - -4.22942 -2.29248 -5.23406 - -4.56308 -2.14952 -5.13762 - -4.56306 -2.15020 -5.13762 - -4.87230 -1.96590 -5.03721 - -5.15068 -1.73855 -4.93260 - -5.39162 -1.46633 -4.82356 - -5.58824 -1.14734 -4.70991 - -5.73339 -0.77961 -4.59143 - -5.73338 -0.78046 -4.59143 - -5.81971 -0.36191 -4.46793 - -5.83931 0.10956 -4.33941 - -5.78409 0.63606 -4.20590 - -5.64564 1.21966 -4.06747 - -5.41523 1.86244 -3.92415 - -5.41524 1.86164 -3.92415 - -5.08398 2.56561 -3.77606 - -4.64240 3.33271 -3.62356 - -4.08092 4.16467 -3.46715 - -3.38968 5.06305 -3.30732 - -2.55862 6.02917 -3.14456 - -2.55865 6.02882 -3.14456 - -1.57757 7.06380 -2.97942 - -0.43603 8.16842 -2.81291 - 0.87645 9.34304 -2.64616 - 2.37037 10.58749 -2.48030 - 4.05616 11.90118 -2.31649 - 4.05891 11.88172 -2.31649 - 5.62970 9.08482 -2.15627 - 6.79193 6.43934 -2.00093 - 7.57354 4.03463 -1.85117 - 8.01771 1.93785 -1.70766 - 8.16960 0.13513 -1.57112 - 8.16829 0.13504 -1.57112 - 8.07088 -1.38863 -1.44190 - 7.76490 -2.64827 -1.31965 - 7.28888 -3.65809 -1.20398 - 6.67929 -4.43148 -1.09448 - 5.97063 -4.98101 -0.99078 - 5.97077 -4.97658 -0.99078 - 5.19640 -5.31382 -0.89230 - 4.38672 -5.44896 -0.79830 - 3.57138 -5.39068 -0.70809 - 2.77883 -5.14621 -0.62098 - 2.03654 -4.72132 -0.53627 - 2.03667 -4.71968 -0.53627 - 1.37161 -4.11867 -0.45324 - 0.80972 -3.34452 -0.37137 - 0.37681 -2.39930 -0.29031 - 0.09842 -1.28431 -0.20970 - -0.00002 -0.00012 -0.12916 + 0.00000 0.00000 -6.03943 + 0.00000 0.00000 -6.04955 + 0.00000 0.00000 -6.05967 + 0.00000 0.00000 -6.06980 + 0.00000 0.00000 -6.07992 + 0.00000 0.00000 -6.09004 + -0.00002 0.00008 -6.09004 + -0.00001 0.00008 -6.10016 + 0.00001 0.00008 -6.11028 + 0.00002 0.00008 -6.12040 + 0.00202 0.03998 -6.13052 + 0.01775 0.19468 -6.14065 + 0.01779 0.19496 -6.14065 + 0.04605 0.38130 -6.14740 + 0.09627 0.63422 -6.15416 + 0.17511 0.95371 -6.16098 + 0.28923 1.33975 -6.16787 + 0.44528 1.79233 -6.17487 + 0.44526 1.79267 -6.17487 + 0.70177 1.86235 -6.18450 + 0.91611 1.35203 -6.19462 + 1.06214 0.83782 -6.20533 + 1.13934 0.31948 -6.21671 + 1.14714 -0.20325 -6.22888 + 1.14714 -0.20313 -6.22888 + 1.08495 -0.73056 -6.24189 + 0.95211 -1.26298 -6.25564 + 0.74792 -1.80065 -6.26999 + 0.47169 -2.34377 -6.28482 + 0.12267 -2.89248 -6.29996 + 0.12268 -2.89248 -6.29996 + -0.29988 -3.44687 -6.31526 + -0.79674 -4.00694 -6.33035 + -1.36864 -4.57253 -6.34485 + -2.01631 -5.14335 -6.35838 + -2.74042 -5.71896 -6.37053 + -2.74042 -5.71913 -6.37053 + -3.45706 -5.03076 -6.38080 + -4.08201 -4.34375 -6.38871 + -4.61543 -3.65771 -6.39390 + -5.05743 -2.97222 -6.39599 + -5.40803 -2.28678 -6.39463 + -5.40803 -2.28701 -6.39463 + -5.66724 -1.60109 -6.38950 + -5.83494 -0.91411 -6.38050 + -5.91093 -0.22550 -6.36758 + -5.89497 0.46534 -6.35068 + -5.78671 1.15901 -6.32976 + -5.78672 1.15877 -6.32976 + -5.58578 1.85586 -6.30481 + -5.29164 2.55696 -6.27605 + -4.90372 3.26262 -6.24373 + -4.42138 3.97335 -6.20813 + -3.84392 4.68962 -6.16951 + -3.84392 4.68945 -6.16951 + -3.39369 4.31663 -6.13878 + -2.98030 3.95259 -6.10674 + -2.60287 3.59769 -6.07355 + -2.26045 3.25222 -6.03935 + -1.95210 2.91644 -6.00429 + -1.95210 2.91635 -6.00429 + -1.67684 2.59050 -5.96849 + -1.43367 2.27476 -5.93204 + -1.22155 1.96931 -5.89504 + -1.03946 1.67428 -5.85756 + -0.88634 1.38980 -5.81968 + -0.88634 1.38973 -5.81968 + -0.70868 0.98302 -5.76228 + -0.59022 0.60055 -5.70427 + -0.52729 0.24256 -5.64570 + -0.51622 -0.09073 -5.58664 + -0.55327 -0.39912 -5.52714 + -0.55327 -0.39922 -5.52714 + -0.63471 -0.68253 -5.46721 + -0.75676 -0.94055 -5.40674 + -0.91560 -1.17304 -5.34558 + -1.10738 -1.37966 -5.28360 + -1.32819 -1.56005 -5.22067 + -1.32818 -1.56026 -5.22067 + -1.57408 -1.71399 -5.15663 + -1.84102 -1.84053 -5.09122 + -2.12485 -1.93927 -5.02421 + -2.42137 -2.00948 -4.95536 + -2.72623 -2.05032 -4.88441 + -2.72622 -2.05074 -4.88441 + -3.03500 -2.06129 -4.81112 + -3.34304 -2.04052 -4.73521 + -3.64554 -1.98726 -4.65641 + -3.93753 -1.90024 -4.57448 + -4.21385 -1.77810 -4.48915 + -4.21384 -1.77873 -4.48915 + -4.46921 -1.61998 -4.40015 + -4.69793 -1.42304 -4.30729 + -4.89413 -1.18625 -4.21041 + -5.05172 -0.90789 -4.10933 + -5.16433 -0.58616 -4.00388 + -5.16433 -0.58693 -4.00388 + -5.22542 -0.21997 -3.89393 + -5.22796 0.19413 -3.77945 + -5.16473 0.65724 -3.66052 + -5.02824 1.17123 -3.53718 + -4.81073 1.73793 -3.40950 + -4.81074 1.73723 -3.40950 + -4.50426 2.35845 -3.27756 + -4.10039 3.03590 -3.14173 + -3.59060 3.77112 -3.00245 + -2.96610 4.56548 -2.86015 + -2.21794 5.42014 -2.71529 + -2.21797 5.41984 -2.71529 + -1.33707 6.33577 -2.56837 + -0.31414 7.31366 -2.42028 + 0.86014 8.35377 -2.27205 + 2.19510 9.45597 -2.12468 + 3.70000 10.61966 -1.97919 + 3.70244 10.60243 -1.97919 + 5.09664 8.00689 -1.83700 + 6.11435 5.60821 -1.69921 + 6.79292 3.48588 -1.56644 + 7.17376 1.63647 -1.43929 + 7.29688 0.04753 -1.31837 + 7.29572 0.04749 -1.31837 + 7.19920 -1.29439 -1.20399 + 6.91908 -2.40260 -1.09583 + 6.48947 -3.28982 -0.99352 + 5.94259 -3.96798 -0.89672 + 5.30897 -4.44827 -0.80507 + 5.30908 -4.44433 -0.80507 + 4.61820 -4.73704 -0.71808 + 3.89690 -4.85122 -0.63505 + 3.17137 -4.79459 -0.55540 + 2.46674 -4.57357 -0.47849 + 1.80726 -4.19329 -0.40372 + 1.80738 -4.19184 -0.40372 + 1.21686 -3.65611 -0.33044 + 0.71818 -2.96757 -0.25819 + 0.33413 -2.12806 -0.18666 + 0.08726 -1.13874 -0.11552 + -0.00002 -0.00010 -0.04445 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5152,10 +5278,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5182,7 +5308,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -5192,36 +5318,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.20000 60.51500 0.00000 162.67095 0.00000 - -2.80000 60.70000 0.00000 230.46293 0.00000 - -3.40000 60.83300 0.00000 303.46162 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -5232,36 +5357,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.10000 30.61900 107.20332 0.00000 0.70763 0.00000 3.50120 - -2.50000 33.09500 112.98663 0.00000 0.70763 0.00000 3.41401 - -3.10000 36.80900 121.66449 0.00000 0.70763 0.00000 3.30529 - -3.70000 40.52300 130.34316 0.00000 0.70763 0.00000 3.21652 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5273,149 +5397,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00001 0.00000 1 0 A - 0.00000 0.00000 19.44961 1.59216 1 0 A - 0.00000 0.00000 38.89922 3.18433 1 0 A - 0.00000 0.00000 58.34883 4.77649 1 0 A - 0.00000 0.00000 77.79845 6.36865 1 0 A - 0.00000 0.00000 97.24806 7.96082 1 0 A - 0.00000 0.00000 50.01834 7.96082 1 0 A - 0.00000 0.00000 60.02201 9.55298 1 0 A - 0.00000 0.00000 70.02568 11.14515 1 0 A - 0.00000 0.00000 80.02935 12.73731 1 0 A - 0.00000 0.00000 90.03302 14.32947 1 0 A - 0.48857 0.00000 100.03668 15.92164 110 0 - - 0.48857 0.00000 83.12851 15.92164 110 0 - - 1.56594 0.00000 88.67041 16.98308 110 0 - - 2.64330 0.00000 94.21231 18.04452 110 0 - - 3.72064 0.00000 99.75421 19.10596 110 0 - - 4.79791 0.00000 105.29611 20.16741 110 0 - - 5.87509 0.00000 110.83802 21.22885 110 0 - - 5.87509 0.00000 105.03607 21.22885 110 0 - - 6.05656 0.39240 105.90297 21.40406 110 0 - - 6.23800 0.78480 106.76987 21.57927 110 0 - - 6.41939 1.17720 107.63677 21.75448 110 0 - - 6.60074 1.56960 108.50366 21.92968 110 0 - - 6.78204 1.96200 109.37056 22.10489 110 0 - - 6.78204 1.96200 106.64682 22.10489 110 0 - - 7.32546 3.13920 109.18274 22.63052 110 0 - - 7.86797 4.31640 111.71867 23.15615 110 0 - - 8.40934 5.49360 114.25460 23.68177 110 0 - - 8.94933 6.67080 116.79052 24.20740 110 0 - - 9.48767 7.84800 119.32645 24.73302 110 0 - - 9.48767 7.84800 115.52656 24.73302 110 0 - - 10.02419 9.02520 117.98173 25.25865 110 0 - - 10.55898 10.20240 120.43690 25.78428 110 0 - - 11.09224 11.37960 122.89207 26.30990 110 0 - - 11.62415 12.55680 125.34725 26.83553 110 0 - - 12.15491 13.73400 127.80242 27.36116 110 0 - - 12.15491 13.73400 124.37008 27.36116 110 0 - - 12.68479 14.91120 126.75931 27.88678 110 0 - - 13.21436 16.08840 129.14854 28.41241 110 0 - - 13.74428 17.26560 131.53778 28.93803 110 0 - - 14.27520 18.44280 133.92701 29.46366 110 0 - - 14.80778 19.62000 136.31624 29.98929 110 0 - - 21.81258 19.62000 93.61408 27.88519 110 0 - - 21.92128 20.92800 93.96456 27.98959 110 0 - - 22.03167 22.23600 94.31504 28.09399 110 0 - - 22.14410 23.54400 94.66552 28.19838 110 0 - - 22.25892 24.85200 95.01601 28.30278 110 0 - - 22.37647 26.16000 95.36649 28.40718 110 0 - - 22.37647 26.16000 94.99596 28.40718 110 0 - - 22.49704 27.46800 95.34508 28.51158 110 0 - - 22.62073 28.77600 95.69420 28.61598 110 0 - - 22.74761 30.08400 96.04332 28.72038 110 0 - - 22.87771 31.39200 96.39244 28.82478 110 0 - - 23.01111 32.70000 96.74156 28.92918 110 0 - - 23.01111 32.70000 96.43144 28.92918 110 0 - - 23.14780 34.00800 96.77944 29.03358 110 0 - - 23.28759 35.31600 97.12744 29.13798 110 0 - - 23.43025 36.62400 97.47544 29.24238 110 0 - - 23.57552 37.93200 97.82344 29.34678 110 0 - - 23.72316 39.24000 98.17145 29.45118 110 0 - - 17.35340 39.24000 139.39178 31.67344 110 0 - - 17.87591 40.22100 141.31947 32.11146 110 0 - - 18.40084 41.20200 143.24716 32.54949 110 0 - - 18.92785 42.18300 145.17485 32.98751 110 0 - - 19.45663 43.16400 147.10255 33.42553 110 0 - - 19.98682 44.14500 149.03024 33.86355 110 0 - - 19.98682 44.14500 146.65286 33.86355 110 0 - - 20.51814 45.12600 148.54980 34.30157 110 0 - - 21.05038 46.10700 150.44674 34.73960 110 0 - - 21.58336 47.08800 152.34368 35.17762 110 0 - - 22.11690 48.06900 154.24062 35.61564 110 0 - - 22.65082 49.05000 156.13756 36.05366 110 0 - - 22.65082 49.05000 153.40009 36.05366 110 0 - - 23.45205 50.52150 156.19561 36.71069 110 0 - - 24.25353 51.99300 158.99114 37.36773 110 0 - - 25.05516 53.46450 161.78666 38.02476 110 0 - - 25.85686 54.93600 164.58219 38.68179 110 0 - - 26.65854 56.40750 167.37771 39.33883 110 0 - - 26.65854 56.40750 164.33167 39.33883 110 0 - - 27.46019 57.87900 167.07632 39.99586 110 0 - - 28.26214 59.35050 169.82097 40.65289 110 0 - - 29.06474 60.82200 172.56562 41.30992 110 0 - - 29.86833 62.29350 175.31027 41.96696 110 0 - - 30.67326 63.76500 178.05492 42.62399 110 0 - - 30.67326 63.76500 175.25279 42.62399 110 0 - - 31.47997 65.23650 177.95425 43.28102 110 0 - - 32.28903 66.70800 180.65570 43.93806 110 0 - - 33.10103 68.17950 183.35716 44.59509 110 0 - - 33.91658 69.65100 186.05862 45.25212 110 0 - - 34.73627 71.12250 188.76007 45.90915 110 0 - - 34.73627 71.12250 186.16443 45.90915 110 0 - - 35.56073 72.59400 188.82874 46.56619 110 0 - - 36.39061 74.06550 191.49305 47.22322 110 0 - - 37.22655 75.53700 194.15736 47.88025 110 0 - - 38.06916 77.00850 196.82167 48.53729 110 0 - - 38.91908 78.48000 199.48598 49.19432 110 0 - - 38.91908 78.48000 197.06773 49.19432 110 0 - - 39.77692 79.95150 199.69974 49.85135 110 0 - - 40.64319 81.42300 202.33175 50.50838 110 0 - - 41.51829 82.89450 204.96376 51.16542 110 0 - - 42.40264 84.36600 207.59577 51.82245 110 0 - - 43.29663 85.83750 210.22778 52.47948 110 0 - - 43.29663 85.83750 207.96375 52.47948 110 0 - - 44.20065 87.30900 210.56741 53.13652 110 0 - - 45.11473 88.78050 213.17108 53.79355 110 0 - - 46.03878 90.25200 215.77474 54.45058 110 0 - - 46.97268 91.72350 218.37841 55.10761 110 0 - - 47.91634 93.19500 220.98207 55.76465 110 0 - - 47.91634 93.19500 218.85344 55.76465 110 0 - - 48.86957 94.66650 221.43202 56.42168 110 0 - - 49.83160 96.13800 224.01061 57.07871 110 0 - - 50.80145 97.60950 226.58920 57.73575 110 0 - - 51.77814 99.08100 229.16778 58.39278 110 0 - - 52.76070 100.55250 231.74637 59.04981 110 0 - - 52.76070 100.55250 229.73763 59.04981 110 0 - - 53.74800 102.02400 232.29387 59.70685 110 0 - - 54.73806 103.49550 234.85010 60.36388 110 0 - - 55.72860 104.96700 237.40634 61.02091 110 0 - - 56.71734 106.43850 239.96257 61.67794 110 0 - - 57.70200 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.41416 110.85300 609.04150 45.42350 110 0 - - 27.60110 112.32450 618.28301 46.11275 110 0 - - 29.72539 113.79600 627.52452 46.80200 110 0 - - 31.78006 115.26750 636.76604 47.49125 110 0 - - 31.78006 115.26750 585.69985 47.49125 110 0 - - 33.76147 116.73900 594.20023 48.18050 110 0 - - 35.67322 118.21050 602.70061 48.86975 110 0 - - 37.51923 119.68200 611.20099 49.55900 110 0 - - 39.30342 121.15350 619.70137 50.24825 110 0 - - 41.02973 122.62500 628.20175 50.93750 110 0 - - 41.02973 122.62500 610.51735 50.93750 110 0 - - 42.70373 124.09650 618.77844 51.62675 110 0 - - 44.33296 125.56800 627.03952 52.31600 110 0 - - 45.92433 127.03950 635.30061 53.00525 110 0 - - 47.48473 128.51100 643.56170 53.69450 110 0 - - 49.02106 129.98250 651.82278 54.38375 110 0 - - 49.02106 129.98250 642.44252 54.38375 110 0 - - 50.54062 131.45400 650.58472 55.07300 110 0 - - 52.04852 132.92550 658.72693 55.76225 110 0 - - 53.54837 134.39700 666.86913 56.45150 110 0 - - 55.04378 135.86850 675.01133 57.14075 110 0 - - 56.53837 137.34000 683.15353 57.83000 110 0 - + 0.00000 0.00000 27.59211 1.44679 1 0 A + 0.00000 0.00000 55.18421 2.89358 1 0 A + 0.00000 0.00000 82.77632 4.34037 1 0 A + 0.00000 0.00000 110.36843 5.78715 1 0 A + 0.00000 0.00000 137.96054 7.23394 1 0 A + 0.00000 0.00000 68.20749 7.23394 1 0 A + 0.00000 0.00000 81.84899 8.68073 1 0 A + 0.00000 0.00000 95.49049 10.12752 1 0 A + 0.00000 0.00000 109.13199 11.57431 1 0 A + 0.76005 0.00000 122.77349 13.02110 110 0 - + 2.18659 0.00000 136.41499 14.46788 110 0 - + 2.18659 0.00000 111.45332 14.46788 110 0 - + 3.13761 0.00000 118.88354 15.43241 110 0 - + 4.08861 0.00000 126.31376 16.39693 110 0 - + 5.03951 0.00000 133.74398 17.36146 110 0 - + 5.99025 0.00000 141.17421 18.32599 110 0 - + 6.94077 0.00000 148.60443 19.29051 110 0 - + 6.94077 0.00000 137.71826 19.29051 110 0 - + 7.45220 1.30800 141.50704 19.82121 110 0 - + 7.96267 2.61600 145.29582 20.35192 110 0 - + 8.47197 3.92400 149.08461 20.88262 110 0 - + 8.97990 5.23200 152.87339 21.41333 110 0 - + 9.48627 6.54000 156.66217 21.94403 110 0 - + 9.48627 6.54000 150.27634 21.94403 110 0 - + 9.99096 7.84800 153.91069 22.47473 110 0 - + 10.49416 9.15600 157.54503 23.00544 110 0 - + 10.99615 10.46400 161.17938 23.53614 110 0 - + 11.49721 11.77200 164.81372 24.06684 110 0 - + 11.99762 13.08000 168.44806 24.59755 110 0 - + 11.99762 13.08000 162.75727 24.59755 110 0 - + 12.49774 14.38800 166.26883 25.12825 110 0 - + 12.99825 15.69600 169.78039 25.65895 110 0 - + 13.49995 17.00400 173.29196 26.18966 110 0 - + 14.00361 18.31200 176.80352 26.72036 110 0 - + 14.51001 19.62000 180.31508 27.25106 110 0 - + 19.73327 19.62000 112.91072 24.82969 110 0 - + 19.81801 20.92800 113.33345 24.92265 110 0 - + 19.90464 22.23600 113.75618 25.01561 110 0 - + 19.99345 23.54400 114.17890 25.10857 110 0 - + 20.08474 24.85200 114.60163 25.20153 110 0 - + 20.17879 26.16000 115.02436 25.29449 110 0 - + 20.17879 26.16000 114.42115 25.29449 110 0 - + 20.27585 27.46800 114.84166 25.38745 110 0 - + 20.37601 28.77600 115.26217 25.48041 110 0 - + 20.47931 30.08400 115.68268 25.57337 110 0 - + 20.58578 31.39200 116.10319 25.66633 110 0 - + 20.69548 32.70000 116.52370 25.75929 110 0 - + 20.69548 32.70000 116.01583 25.75929 110 0 - + 20.80840 34.00800 116.43451 25.85225 110 0 - + 20.92437 35.31600 116.85318 25.94521 110 0 - + 21.04318 36.62400 117.27186 26.03817 110 0 - + 21.16463 37.93200 117.69054 26.13113 110 0 - + 21.28848 39.24000 118.10921 26.22409 110 0 - + 16.44243 39.24000 183.43874 28.78144 110 0 - + 16.90192 40.22100 185.97557 29.17947 110 0 - + 17.36401 41.20200 188.51241 29.57750 110 0 - + 17.82842 42.18300 191.04924 29.97553 110 0 - + 18.29485 43.16400 193.58607 30.37355 110 0 - + 18.76301 44.14500 196.12290 30.77158 110 0 - + 18.76301 44.14500 192.60019 30.77158 110 0 - + 19.23264 45.12600 195.09146 31.16961 110 0 - + 19.70355 46.10700 197.58272 31.56764 110 0 - + 20.17558 47.08800 200.07399 31.96566 110 0 - + 20.64857 48.06900 202.56525 32.36369 110 0 - + 21.12236 49.05000 205.05652 32.76172 110 0 - + 21.12236 49.05000 201.00495 32.76172 110 0 - + 21.83421 50.52150 204.66801 33.35876 110 0 - + 22.54727 51.99300 208.33107 33.95580 110 0 - + 23.26144 53.46450 211.99414 34.55284 110 0 - + 23.97660 54.93600 215.65720 35.14988 110 0 - + 24.69264 56.40750 219.32027 35.74693 110 0 - + 24.69264 56.40750 214.81611 35.74693 110 0 - + 25.40954 57.87900 218.40395 36.34397 110 0 - + 26.12754 59.35050 221.99178 36.94101 110 0 - + 26.84689 60.82200 225.57962 37.53805 110 0 - + 27.56789 62.29350 229.16745 38.13509 110 0 - + 28.29078 63.76500 232.75529 38.73213 110 0 - + 28.29078 63.76500 228.61475 38.73213 110 0 - + 29.01592 65.23650 232.13876 39.32917 110 0 - + 29.74378 66.70800 235.66278 39.92621 110 0 - + 30.47484 68.17950 239.18679 40.52326 110 0 - + 31.20959 69.65100 242.71080 41.12030 110 0 - + 31.94851 71.12250 246.23481 41.71734 110 0 - + 31.94851 71.12250 242.40131 41.71734 110 0 - + 32.69214 72.59400 245.87046 42.31438 110 0 - + 33.44101 74.06550 249.33961 42.91142 110 0 - + 34.19564 75.53700 252.80875 43.50846 110 0 - + 34.95655 77.00850 256.27790 44.10550 110 0 - + 35.72426 78.48000 259.74705 44.70255 110 0 - + 35.72426 78.48000 256.17685 44.70255 110 0 - + 36.49928 79.95150 259.59831 45.29959 110 0 - + 37.28204 81.42300 263.01977 45.89663 110 0 - + 38.07285 82.89450 266.44124 46.49367 110 0 - + 38.87206 84.36600 269.86270 47.09071 110 0 - + 39.67998 85.83750 273.28417 47.68775 110 0 - + 39.67998 85.83750 269.94257 47.68775 110 0 - + 40.49694 87.30900 273.32219 48.28479 110 0 - + 41.32293 88.78050 276.70182 48.88183 110 0 - + 42.15785 90.25200 280.08145 49.47888 110 0 - + 43.00156 91.72350 283.46108 50.07592 110 0 - + 43.85397 93.19500 286.84071 50.67296 110 0 - + 43.85397 93.19500 283.69963 50.67296 110 0 - + 44.71487 94.66650 287.04225 51.27000 110 0 - + 45.58357 96.13800 290.38487 51.86704 110 0 - + 46.45918 97.60950 293.72749 52.46408 110 0 - + 47.34082 99.08100 297.07011 53.06112 110 0 - + 48.22758 100.55250 300.41273 53.65817 110 0 - + 48.22758 100.55250 297.44910 53.65817 110 0 - + 49.11846 102.02400 300.75875 54.25521 110 0 - + 50.01168 103.49550 304.06839 54.85225 110 0 - + 50.90520 104.96700 307.37804 55.44929 110 0 - + 51.79698 106.43850 310.68768 56.04633 110 0 - + 52.68498 107.91000 313.99732 56.64337 110 0 - + 18.59731 107.91000 734.00940 36.53923 1 0 A + 18.88833 109.38150 745.49575 37.11102 1 0 A + 20.69072 110.85300 756.98209 37.68281 110 0 - + 22.59023 112.32450 768.46843 38.25461 110 0 - + 24.43351 113.79600 779.95478 38.82640 110 0 - + 26.21450 115.26750 791.44112 39.39820 110 0 - + 26.21450 115.26750 738.87493 39.39820 110 0 - + 27.93007 116.73900 749.59837 39.96999 110 0 - + 29.58350 118.21050 760.32181 40.54178 110 0 - + 31.17833 119.68200 771.04525 41.11358 110 0 - + 32.71813 121.15350 781.76869 41.68537 110 0 - + 34.20642 122.62500 792.49213 42.25717 110 0 - + 34.20642 122.62500 772.62437 42.25717 110 0 - + 35.64820 124.09650 783.07897 42.82896 110 0 - + 37.05021 125.56800 793.53357 43.40075 110 0 - + 38.41858 127.03950 803.98818 43.97255 110 0 - + 39.75944 128.51100 814.44278 44.54434 110 0 - + 41.07892 129.98250 824.89738 45.11614 110 0 - + 41.07892 129.98250 814.08791 45.11614 110 0 - + 42.38354 131.45400 824.40552 45.68793 110 0 - + 43.67781 132.92550 834.72313 46.25972 110 0 - + 44.96494 134.39700 845.04073 46.83152 110 0 - + 46.24813 135.86850 855.35834 47.40331 110 0 - + 47.53059 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5428,10 +5546,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 22.358 'Clay' - -4.00 45.426 'Peat' - -6.00 256.291 'Clay' - -13.00 121.135 'Sand' + 0.00 24.034 'Clay' + -4.00 40.912 'Peat' + -6.00 235.708 'Clay' + -13.00 100.609 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5446,7 +5564,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.20 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -5468,10 +5586,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5507,27 +5625,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 59.75500 0.00000 8.99123 0.00000 - -3.40000 59.77200 0.00000 35.25668 0.00000 - -4.00000 59.89800 0.00000 69.58790 0.00000 - -4.66667 59.20900 0.00000 89.31503 0.00000 - -5.33333 58.67600 0.00000 110.07099 0.00000 - -6.00000 58.25100 0.00000 131.87061 0.00000 - -6.50000 58.76300 0.00000 167.37780 0.00000 - -7.00000 59.13400 0.00000 206.48598 0.00000 - -7.75000 59.54300 0.00000 271.91621 0.00000 - -8.50000 59.84800 0.00000 345.47614 0.00000 - -9.25000 60.08900 0.00000 427.16878 0.00000 - -10.00000 60.28800 0.00000 516.99470 0.00000 - -10.75000 60.45500 0.00000 614.95354 0.00000 - -11.50000 60.59900 36.27400 721.04464 3.71405 - -12.25000 60.72500 36.50100 835.26727 11.91689 - -13.00000 60.83700 36.71200 957.62069 21.79553 - -13.75000 65.59200 36.44300 1259.58412 34.35345 - -14.50000 67.30200 36.20200 1567.65056 48.36323 - -15.25000 68.31000 35.98600 1898.11566 63.82466 - -16.00000 68.98700 35.79600 2254.58535 80.73725 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5544,32 +5662,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 14.98539 0.00000 0.70763 0.00000 8.06968 - -3.10000 5.57100 43.77575 0.00000 0.70763 0.00000 7.85779 - -3.70000 9.28500 57.21870 0.00000 0.70763 0.00000 6.16249 - -4.33333 11.53867 29.59068 0.00000 0.65798 0.00000 2.56448 - -5.00000 12.33200 31.13394 0.00000 0.65798 0.00000 2.52465 - -5.66667 13.12533 32.69943 0.00000 0.65798 0.00000 2.49132 - -6.25000 15.06950 71.01438 0.00000 0.70763 0.00000 4.71246 - -6.75000 18.16450 78.21636 0.00000 0.70763 0.00000 4.30600 - -7.37500 22.03325 87.24031 0.00000 0.70763 0.00000 3.95948 - -8.12500 26.67575 98.07990 0.00000 0.70763 0.00000 3.67674 - -8.87500 31.31825 108.92353 0.00000 0.70763 0.00000 3.47796 - -9.62500 35.96075 119.76789 0.00000 0.70763 0.00000 3.33052 - -10.37500 40.60325 130.61179 0.00000 0.70763 0.00000 3.21678 - -11.12500 45.24575 141.45480 4.95207 0.70763 0.10945 3.12637 - -11.87500 49.88825 152.29683 10.93712 0.70763 0.21923 3.05276 - -12.62500 54.53075 163.13790 13.17152 0.70763 0.24154 2.99167 - -13.37500 60.29825 402.61790 16.74389 0.50000 0.27768 6.67711 - -14.12500 67.19075 410.75525 18.67970 0.50000 0.27801 6.11327 - -14.87500 74.08325 440.62014 20.61524 0.50000 0.27827 5.94764 - -15.62500 80.97575 475.29291 22.55013 0.50000 0.27848 5.86957 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5598,132 +5716,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.78480 0.00000 0.00000 -1 0 - - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.56960 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 5.99416 3.13920 5.99416 0.52563 202 100 P - 11.98831 4.31640 11.98831 1.05125 202 100 P - 16.84931 5.49360 17.98247 1.57688 110 94 - - 17.36058 6.67080 23.97662 2.10251 110 72 - - 17.87348 7.84800 29.97078 2.62813 110 60 - - 17.87348 7.84800 29.18383 2.62813 110 61 - - 18.38822 9.02520 35.02060 3.15376 110 53 - - 18.90468 10.20240 40.85737 3.67938 110 46 - - 19.42267 11.37960 46.69414 4.20501 110 42 - - 19.94201 12.55680 52.53090 4.73064 110 38 - - 20.46251 13.73400 58.36767 5.25626 110 35 - - 20.46251 13.73400 45.77496 5.25626 110 45 - - 20.98389 14.91120 50.35245 5.78189 110 42 - - 21.50557 16.08840 54.92995 6.30752 110 39 - - 22.02690 17.26560 59.50745 6.83314 110 37 - - 22.54723 18.44280 64.08494 7.35877 110 35 - - 23.06590 19.62000 68.66244 7.88439 110 34 - - 13.40381 19.62000 28.57344 7.33121 110 47 - - 13.50392 20.92800 28.98034 7.43561 110 47 - - 13.60233 22.23600 29.38724 7.54001 110 46 - - 13.69869 23.54400 29.79413 7.64441 110 46 - - 13.79267 24.85200 30.20103 7.74881 110 46 - - 13.88392 26.16000 30.60793 7.85321 110 45 - - 13.88392 26.16000 30.13250 7.85321 110 46 - - 13.97215 27.46800 30.53308 7.95761 110 46 - - 14.05726 28.77600 30.93365 8.06201 110 45 - - 14.13918 30.08400 31.33423 8.16641 110 45 - - 14.21787 31.39200 31.73481 8.27081 110 45 - - 14.29328 32.70000 32.13539 8.37521 110 44 - - 14.29328 32.70000 31.71121 8.37521 110 45 - - 14.36539 34.00800 32.10650 8.47961 110 45 - - 14.43439 35.31600 32.50178 8.58401 110 44 - - 14.50054 36.62400 32.89707 8.68840 110 44 - - 14.56407 37.93200 33.29236 8.79280 110 44 - - 14.62522 39.24000 33.68765 8.89720 110 43 - - 23.88859 39.24000 63.72185 9.56855 110 37 - - 24.24213 40.22100 66.63886 10.00657 110 36 - - 24.59324 41.20200 69.55587 10.44459 110 35 - - 24.94227 42.18300 72.47288 10.88262 110 34 - - 25.28954 43.16400 75.38990 11.32064 110 34 - - 25.63539 44.14500 78.30691 11.75866 110 33 - - 25.63539 44.14500 71.55282 11.75866 110 36 - - 25.98011 45.12600 74.21824 12.19668 110 35 - - 26.32392 46.10700 76.88365 12.63470 110 34 - - 26.66698 47.08800 79.54907 13.07273 110 34 - - 27.00948 48.06900 82.21448 13.51075 110 33 - - 27.35161 49.05000 84.87990 13.94877 110 32 - - 27.35161 49.05000 78.04936 13.94877 110 35 - - 27.86445 50.52150 81.72574 14.60580 110 34 - - 28.37703 51.99300 85.40212 15.26283 110 33 - - 28.88946 53.46450 89.07850 15.91987 110 32 - - 29.40183 54.93600 92.75488 16.57690 110 32 - - 29.91422 56.40750 96.43126 17.23393 110 31 - - 29.91422 56.40750 89.54526 17.23393 110 33 - - 30.42663 57.87900 92.95912 17.89097 110 33 - - 30.93875 59.35050 96.37297 18.54800 110 32 - - 31.45022 60.82200 99.78683 19.20503 110 32 - - 31.96069 62.29350 103.20069 19.86206 110 31 - - 32.46982 63.76500 106.61454 20.51910 110 30 - - 32.46982 63.76500 100.85032 20.51910 110 32 - - 32.97719 65.23650 104.07961 21.17613 110 32 - - 33.48219 66.70800 107.30889 21.83316 110 31 - - 33.98425 68.17950 110.53817 22.49020 110 31 - - 34.48277 69.65100 113.76746 23.14723 110 30 - - 34.97715 71.12250 116.99674 23.80426 110 30 - - 34.97715 71.12250 112.03693 23.80426 110 31 - - 35.46676 72.59400 115.12931 24.46129 110 31 - - 35.95094 74.06550 118.22170 25.11833 110 30 - - 36.42907 75.53700 121.31408 25.77536 110 30 - - 36.90052 77.00850 124.40647 26.43239 110 30 - - 37.36467 78.48000 127.49885 27.08943 110 29 - - 37.36467 78.48000 123.14483 27.08943 110 30 - - 37.82089 79.95150 126.13161 27.74646 110 30 - - 38.26869 81.42300 129.11840 28.40349 110 30 - - 38.70765 82.89450 132.10518 29.06053 110 29 - - 39.13737 84.36600 135.09196 29.71756 110 29 - - 39.55745 85.83750 138.07874 30.37459 110 29 - - 39.55745 85.83750 134.19773 30.37459 110 29 - - 39.96749 87.30900 137.10056 31.03162 110 29 - - 40.36747 88.78050 140.00339 31.68866 110 29 - - 40.75749 90.25200 142.90622 32.34569 110 29 - - 41.13765 91.72350 145.80905 33.00272 110 28 - - 41.50806 93.19500 148.71188 33.65976 110 28 - - 41.50806 93.19500 145.21062 33.65976 110 29 - - 41.86890 94.66650 148.04510 34.31679 110 28 - - 42.22094 96.13800 150.87959 34.97382 110 28 - - 42.56515 97.60950 153.71408 35.63085 110 28 - - 42.90252 99.08100 156.54857 36.28789 110 27 - - 43.23403 100.55250 159.38305 36.94492 110 27 - - 43.23403 100.55250 156.19349 36.94492 110 28 - - 43.56079 102.02400 158.97125 37.60195 110 27 - - 43.88480 103.49550 161.74901 38.25899 110 27 - - 44.20833 104.96700 164.52678 38.91602 110 27 - - 44.53366 106.43850 167.30454 39.57305 110 27 - - 44.86306 107.91000 170.08231 40.23008 110 26 - - 51.59086 107.91000 379.60692 28.42600 110 14 - - 50.67798 109.38150 388.81131 29.11525 110 13 - - 49.81384 110.85300 398.01570 29.80450 110 13 - - 49.00540 112.32450 407.22009 30.49375 110 12 - - 48.25961 113.79600 416.42449 31.18300 110 12 - - 47.58344 115.26750 425.62888 31.87225 110 11 - - 47.58344 115.26750 389.68739 31.87225 110 12 - - 46.98053 116.73900 398.11454 32.56150 110 12 - - 46.44728 118.21050 406.54168 33.25075 110 11 - - 45.97977 119.68200 414.96883 33.94000 110 11 - - 45.57408 121.15350 423.39597 34.62925 110 11 - - 45.22627 122.62500 431.82311 35.31850 110 10 - - 45.22627 122.62500 420.12310 35.31850 110 11 - - 44.93077 124.09650 428.32192 36.00775 110 10 - - 44.68004 125.56800 436.52073 36.69700 110 10 - - 44.46717 127.03950 444.71955 37.38625 110 10 - - 44.28527 128.51100 452.91836 38.07550 110 10 - - 44.12744 129.98250 461.11718 38.76475 110 10 - - 44.12744 129.98250 455.06490 38.76475 110 10 - - 43.98638 131.45400 463.15611 39.45400 110 9 - - 43.85698 132.92550 471.24731 40.14325 110 9 - - 43.73563 134.39700 479.33852 40.83250 110 9 - - 43.61872 135.86850 487.42972 41.52175 110 9 - - 43.50263 137.34000 495.52092 42.21100 110 9 - + 0.00003 0.00000 0.00003 0.00000 202 100 P + 12.89971 1.30800 23.36326 0.53070 110 55 - + 13.45066 2.61600 46.72653 1.06141 110 29 - + 14.00277 3.92400 70.08979 1.59211 110 20 - + 14.55624 5.23200 93.45305 2.12281 110 16 - + 15.11128 6.54000 116.81631 2.65352 110 13 - + 15.11128 6.54000 47.10799 2.65352 110 32 - + 15.66799 7.84800 56.52959 3.18422 110 28 - + 16.22620 9.15600 65.95118 3.71492 110 25 - + 16.78562 10.46400 75.37278 4.24563 110 22 - + 17.34596 11.77200 84.79438 4.77633 110 20 - + 17.90696 13.08000 94.21598 5.30703 110 19 - + 17.90696 13.08000 66.31764 5.30703 110 27 - + 18.46825 14.38800 72.94940 5.83774 110 25 - + 19.02914 15.69600 79.58117 6.36844 110 24 - + 19.58885 17.00400 86.21293 6.89914 110 23 - + 20.14660 18.31200 92.84470 7.42985 110 22 - + 20.70160 19.62000 99.47646 7.96055 110 21 - + 12.34964 19.62000 38.17169 7.25322 110 32 - + 12.45082 20.92800 38.66091 7.34618 110 32 - + 12.55011 22.23600 39.15013 7.43914 110 32 - + 12.64722 23.54400 39.63936 7.53210 110 32 - + 12.74185 24.85200 40.12858 7.62506 110 32 - + 12.83373 26.16000 40.61780 7.71802 110 32 - + 12.83373 26.16000 39.99387 7.71802 110 32 - + 12.92258 27.46800 40.47558 7.81098 110 32 - + 13.00834 28.77600 40.95728 7.90394 110 32 - + 13.09097 30.08400 41.43899 7.99690 110 32 - + 13.17041 31.39200 41.92070 8.08986 110 31 - + 13.24663 32.70000 42.40241 8.18282 110 31 - + 13.24663 32.70000 41.83585 8.18282 110 32 - + 13.31963 34.00800 42.31112 8.27578 110 31 - + 13.38958 35.31600 42.78639 8.36874 110 31 - + 13.45669 36.62400 43.26166 8.46170 110 31 - + 13.52117 37.93200 43.73693 8.55466 110 31 - + 13.58323 39.24000 44.21220 8.64762 110 31 - + 21.82995 39.24000 91.40237 9.49093 110 24 - + 22.16651 40.22100 95.23558 9.88896 110 23 - + 22.50047 41.20200 99.06878 10.28699 110 23 - + 22.83212 42.18300 102.90198 10.68501 110 22 - + 23.16175 43.16400 106.73518 11.08304 110 22 - + 23.48964 44.14500 110.56839 11.48107 110 21 - + 23.48964 44.14500 101.29500 11.48107 110 23 - + 23.81607 45.12600 104.80671 11.87910 110 23 - + 24.14121 46.10700 108.31842 12.27712 110 22 - + 24.46523 47.08800 111.83013 12.67515 110 22 - + 24.78830 48.06900 115.34184 13.07318 110 21 - + 25.11056 49.05000 118.85355 13.47121 110 21 - + 25.11056 49.05000 109.34264 13.47121 110 23 - + 25.59280 50.52150 114.18869 14.06825 110 22 - + 26.07382 51.99300 119.03473 14.66529 110 22 - + 26.55374 53.46450 123.88078 15.26233 110 21 - + 27.03266 54.93600 128.72682 15.85937 110 21 - + 27.51070 56.40750 133.57287 16.45641 110 21 - + 27.51070 56.40750 123.89446 16.45641 110 22 - + 27.98788 57.87900 128.38937 17.05346 110 22 - + 28.46397 59.35050 132.88428 17.65050 110 21 - + 28.93869 60.82200 137.37919 18.24754 110 21 - + 29.41178 62.29350 141.87411 18.84458 110 21 - + 29.88297 63.76500 146.36902 19.44162 110 20 - + 29.88297 63.76500 138.20216 19.44162 110 22 - + 30.35191 65.23650 142.44627 20.03866 110 21 - + 30.81814 66.70800 146.69039 20.63570 110 21 - + 31.28116 68.17950 150.93450 21.23274 110 21 - + 31.74050 69.65100 155.17861 21.82979 110 20 - + 32.19565 71.12250 159.42272 22.42683 110 20 - + 32.19565 71.12250 152.35575 22.42683 110 21 - + 32.64611 72.59400 156.41173 23.02387 110 21 - + 33.09132 74.06550 160.46771 23.62091 110 21 - + 33.53078 75.53700 164.52368 24.21795 110 20 - + 33.96395 77.00850 168.57966 24.81499 110 20 - + 34.39032 78.48000 172.63564 25.41203 110 20 - + 34.39032 78.48000 166.40568 25.41203 110 21 - + 34.80938 79.95150 170.31528 26.00908 110 20 - + 35.22071 81.42300 174.22489 26.60612 110 20 - + 35.62398 82.89450 178.13450 27.20316 110 20 - + 36.01885 84.36600 182.04410 27.80020 110 20 - + 36.40501 85.83750 185.95371 28.39724 110 20 - + 36.40501 85.83750 180.38244 28.39724 110 20 - + 36.78214 87.30900 184.17492 28.99428 110 20 - + 37.15023 88.78050 187.96739 29.59132 110 20 - + 37.50939 90.25200 191.75986 30.18836 110 20 - + 37.85976 91.72350 195.55234 30.78541 110 19 - + 38.20144 93.19500 199.34481 31.38245 110 19 - + 38.20144 93.19500 194.30563 31.38245 110 20 - + 38.53462 94.66650 198.00223 31.97949 110 19 - + 38.86000 96.13800 201.69884 32.57653 110 19 - + 39.17847 97.60950 205.39544 33.17357 110 19 - + 39.49092 99.08100 209.09205 33.77061 110 19 - + 39.79824 100.55250 212.78865 34.36765 110 19 - + 39.79824 100.55250 208.18836 34.36765 110 19 - + 40.10144 102.02400 211.80505 34.96469 110 19 - + 40.40231 103.49550 215.42174 35.56174 110 19 - + 40.70287 104.96700 219.03843 36.15878 110 19 - + 41.00517 106.43850 222.65511 36.75582 110 18 - + 41.31125 107.91000 226.27180 37.35286 110 18 - + 43.88734 107.91000 484.03714 24.09540 110 9 - + 43.03716 109.38150 495.52355 24.66719 110 9 - + 42.23108 110.85300 507.00995 25.23899 110 8 - + 41.47516 112.32450 518.49635 25.81078 110 8 - + 40.77547 113.79600 529.98276 26.38257 110 8 - + 40.13807 115.26750 541.46916 26.95437 110 7 - + 40.13807 115.26750 502.94282 26.95437 110 8 - + 39.56609 116.73900 513.61195 27.52616 110 8 - + 39.05624 118.21050 524.28108 28.09796 110 7 - + 38.60499 119.68200 534.95021 28.66975 110 7 - + 38.20879 121.15350 545.61934 29.24154 110 7 - + 37.86409 122.62500 556.28847 29.81334 110 7 - + 37.86409 122.62500 542.36706 29.81334 110 7 - + 37.56589 124.09650 552.76919 30.38513 110 7 - + 37.30747 125.56800 563.17132 30.95693 110 7 - + 37.08269 127.03950 573.57345 31.52872 110 6 - + 36.88542 128.51100 583.97558 32.10051 110 6 - + 36.70952 129.98250 594.37771 32.67231 110 6 - + 36.70952 129.98250 586.93748 32.67231 110 6 - + 36.54849 131.45400 597.20940 33.24410 110 6 - + 36.39781 132.92550 607.48132 33.81589 110 6 - + 36.25427 134.39700 617.75323 34.38769 110 6 - + 36.11466 135.86850 628.02515 34.95948 110 6 - + 35.97579 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5736,10 +5848,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 31.894 'Clay' - -4.00 28.139 'Peat' - -6.00 247.034 'Clay' - -13.00 138.118 'Sand' + 0.00 32.205 'Clay' + -4.00 26.042 'Peat' + -6.00 227.232 'Clay' + -13.00 115.763 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5747,7 +5859,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5771,28 +5883,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.18000 - -2.31000 - -2.44000 - -2.57000 - -2.70000 - -2.70000 - -2.83000 - -2.96000 - -3.09000 - -3.22000 - -3.35000 - -3.35000 - -3.48000 - -3.61000 - -3.74000 - -3.87000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 + -2.80000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5927,22 +6033,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.84 : Percentage mobilized resistance left - 13.52 : Percentage mobilized resistance right - 303.42 : Effective left - 359.42 : Effective right + 12.72 : Percentage mobilized resistance left + 9.53 : Percentage mobilized resistance right + 268.25 : Effective left + 324.25 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1610.58 : Max effective resistance left - 2657.66 : Max effective resistance right --17279.80 : Max moment left --25718.23 : Max moment right --2820.49 : Max mobilized moment left --2837.06 : Max mobilized moment right - 71.78 : Vertical force left - 77.82 : Vertical force right - 16.3 : Max mobilized moment percentage left - 11.0 : Max mobilized moment percentage right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right +-22259.41 : Max moment left +-32715.60 : Max moment right +-2473.90 : Max mobilized moment left +-2491.58 : Max mobilized moment right + 76.92 : Vertical force left + 85.09 : Vertical force right + 11.1 : Max mobilized moment percentage left + 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -5950,157 +6056,151 @@ Name [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00153 0.01088 7.14681 - 0.05116 1.03199 6.73506 - 0.37587 3.40912 6.32330 - 1.08855 6.07952 5.91093 - 2.19555 8.66650 5.49731 - 3.68432 11.16974 5.08181 - 3.68492 11.17318 5.08181 - 5.54337 13.59219 4.66353 - 7.75832 15.92617 4.24048 - 10.31691 18.17389 3.81047 - 13.20852 20.38228 3.37128 - 16.43362 22.63113 2.92071 - 16.43372 -33.36786 2.92071 - 13.17363 -31.82883 2.61315 - 10.06899 -30.25890 2.30054 - 7.12286 -28.65872 1.98401 - 4.33824 -27.02874 1.66470 - 1.71809 -25.36928 1.34372 - 1.71810 -25.36921 1.34372 - 1.46524 -25.20187 1.31157 - 1.21406 -25.03467 1.27942 - 0.96455 -24.86762 1.24726 - 0.71671 -24.70071 1.21510 - 0.47053 -24.53394 1.18294 - 0.46955 -24.52761 1.18294 - -2.57870 -22.37267 0.76511 - -5.34839 -20.24181 0.34896 - -7.84622 -18.21811 -0.06388 - -10.09244 -16.36384 -0.47179 - -12.10720 -14.65686 -0.87313 - -12.10617 -14.65195 -0.87313 - -13.90782 -13.08960 -1.26645 - -15.51560 -11.66878 -1.65074 - -16.94769 -10.38602 -2.02508 - -18.22178 -9.23754 -2.38852 - -19.35509 -8.21920 -2.74014 - -19.35506 -8.22109 -2.74014 - -20.36444 -7.32843 -3.07910 - -21.26570 -6.55676 -3.40486 - -22.07423 -5.90116 -3.71688 - -22.80481 -5.35654 -4.01464 - -23.47151 -4.91761 -4.29760 - -23.47157 -4.91922 -4.29760 - -24.04707 -3.72013 -4.57190 - -24.46537 -2.56077 -4.82979 - -24.73160 -1.43869 -5.07109 - -24.85057 -0.35139 -5.29562 - -24.82674 0.70366 -5.50318 - -24.82674 0.70261 -5.50318 - -24.66439 1.72793 -5.69369 - -24.36717 2.72605 -5.86737 - -23.93854 3.69948 -6.02451 - -23.38163 4.65065 -6.16540 - -22.69925 5.58197 -6.29033 - -22.69926 5.58102 -6.29033 - -21.89402 6.49485 -6.39968 - -20.96797 7.39346 -6.49408 - -19.92300 8.27904 -6.57426 - -18.76071 9.15366 -6.64092 - -17.48243 10.01928 -6.69478 - -17.48245 10.01851 -6.69478 - -16.49941 9.64077 -6.72727 - -15.55456 9.25483 -6.75343 - -14.64866 8.86239 -6.77361 - -13.78225 8.46510 -6.78815 - -12.95575 8.06447 -6.79741 - -12.95575 8.06388 -6.79741 - -12.16948 7.66136 -6.80171 - -11.42350 7.25828 -6.80135 - -10.71780 6.85592 -6.79659 - -10.05225 6.45547 -6.78771 - -9.42661 6.05804 -6.77496 - -9.42655 6.05719 -6.77496 - -8.56221 5.46914 -6.74920 - -7.78519 4.89346 -6.71605 - -7.09341 4.33313 -6.67612 - -6.48435 3.79087 -6.62999 - -5.95512 3.26916 -6.57828 - -5.95514 3.26824 -6.57828 - -5.50262 2.76932 -6.52150 - -5.12310 2.29523 -6.45998 - -4.81271 1.84793 -6.39398 - -4.56729 1.42922 -6.32377 - -4.38243 1.04084 -6.24963 - -4.38243 1.04016 -6.24963 - -4.25355 0.68369 -6.17176 - -4.17565 0.36070 -6.09022 - -4.14359 0.07272 -6.00505 - -4.15201 -0.17873 -5.91626 - -4.19531 -0.39214 -5.82389 - -4.19531 -0.39278 -5.82389 - -4.26777 -0.56664 -5.72793 - -4.36324 -0.69942 -5.62829 - -4.47546 -0.78956 -5.52487 - -4.59790 -0.83544 -5.41757 - -4.72380 -0.83543 -5.30631 - -4.72379 -0.83615 -5.30631 - -4.84625 -0.78855 -5.19097 - -4.95789 -0.69163 -5.07143 - -5.05118 -0.54361 -4.94764 - -5.11833 -0.34268 -4.81950 - -5.15125 -0.08701 -4.68695 - -5.15125 -0.08778 -4.68695 - -5.14171 0.22451 -4.54990 - -5.08097 0.59529 -4.40840 - -4.96011 1.02642 -4.26257 - -4.76994 1.51967 -4.11251 - -4.50101 2.07682 -3.95833 - -4.50103 2.07617 -3.95833 - -4.14372 2.69891 -3.80016 - -3.68799 3.38883 -3.63841 - -3.12365 4.14734 -3.47357 - -2.44030 4.97564 -3.30611 - -1.62742 5.87470 -3.13655 - -1.62745 5.87449 -3.13655 - -0.67438 6.84510 -2.96543 - 0.42968 7.88771 -2.79371 - 1.69553 9.00233 -2.62250 - 3.13396 10.18852 -2.45288 - 4.75562 11.44539 -2.28596 - 4.75840 11.42588 -2.28596 - 6.25963 8.61360 -2.12325 - 7.35108 5.97344 -1.96595 - 8.06475 3.59499 -1.81471 - 8.44511 1.52712 -1.67017 - 8.53767 -0.24491 -1.53295 - 8.53635 -0.24479 -1.53295 - 8.38434 -1.73668 -1.40337 - 8.02857 -2.96406 -1.28103 - 7.50761 -3.94167 -1.16550 - 6.85787 -4.68335 -1.05634 - 6.11376 -5.20203 -0.95312 - 6.11389 -5.19749 -0.95312 - 5.30864 -5.50503 -0.85525 - 4.47242 -5.61185 -0.76196 - 3.63467 -5.52680 -0.67252 - 2.82361 -5.25726 -0.58625 - 2.06643 -4.80911 -0.50242 - 2.06655 -4.80745 -0.50242 - 1.38996 -4.18503 -0.42028 - 0.81961 -3.39138 -0.33933 - 0.38101 -2.42858 -0.25920 - 0.09942 -1.29798 -0.17951 - -0.00002 -0.00012 -0.09991 + -0.00076 0.01214 6.99532 + 0.07077 1.40628 6.62579 + 0.48896 4.15714 6.25622 + 1.31416 6.83311 5.88592 + 2.53513 9.43394 5.51417 + 4.14057 11.95927 5.14026 + 4.14060 11.96008 5.14026 + 6.11926 14.40935 4.76318 + 8.45956 16.78166 4.38083 + 11.14984 19.07566 3.99091 + 14.17825 21.28954 3.59109 + 17.53501 23.46954 3.17906 + 17.53511 -32.52947 3.17906 + 14.35552 -31.05766 2.89667 + 11.32450 -29.55825 2.60878 + 8.44477 -28.03193 2.31649 + 5.71899 -26.47926 2.02090 + 3.14978 -24.90060 1.72313 + 3.14879 -24.89423 1.72313 + -0.02952 -22.78457 1.32454 + -2.92820 -20.69977 0.92599 + -5.55167 -18.66457 0.52927 + -7.91034 -16.73991 0.13616 + -10.02212 -14.96100 -0.25153 + -10.02108 -14.95603 -0.25153 + -11.90460 -13.32054 -0.63219 + -13.57947 -11.82565 -1.00472 + -15.06421 -10.46814 -1.36811 + -16.37692 -9.24439 -1.72134 + -17.53515 -8.15042 -2.06338 + -17.53513 -8.15225 -2.06338 + -18.55616 -7.18373 -2.39334 + -19.45616 -6.33602 -2.71064 + -20.25092 -5.60431 -3.01473 + -20.95557 -4.98355 -3.30507 + -21.58456 -4.46852 -3.58110 + -21.58463 -4.47009 -3.58110 + -22.10780 -3.38390 -3.84231 + -22.48869 -2.33559 -4.08844 + -22.73220 -1.32290 -4.31931 + -22.84294 -0.34353 -4.53476 + -22.82519 0.60482 -4.73462 + -22.82519 0.60386 -4.73462 + -22.68306 1.52355 -4.91881 + -22.42008 2.41688 -5.08751 + -22.03963 3.28615 -5.24100 + -21.54474 4.13362 -5.37952 + -20.93820 4.96151 -5.50335 + -20.93820 4.96063 -5.50335 + -20.22257 5.77109 -5.61279 + -19.39993 6.56624 -5.70844 + -18.47217 7.34809 -5.79092 + -17.44094 8.11857 -5.86086 + -16.30764 8.87948 -5.91890 + -16.30766 8.87876 -5.91890 + -15.43530 8.56674 -5.95506 + -14.59462 8.24543 -5.98530 + -13.78647 7.91643 -6.00993 + -13.01154 7.58128 -6.02926 + -12.27037 7.24142 -6.04360 + -12.27037 7.24086 -6.04360 + -11.56343 6.89764 -6.05324 + -10.89092 6.55234 -6.05845 + -10.25299 6.20617 -6.05947 + -9.64967 5.86026 -6.05654 + -9.08089 5.51569 -6.04991 + -9.08084 5.51487 -6.04991 + -8.29209 5.00285 -6.03355 + -7.57956 4.49919 -6.01004 + -6.94177 4.00680 -5.97993 + -6.37683 3.52833 -5.94376 + -5.88246 3.06620 -5.90210 + -5.88247 3.06530 -5.90210 + -5.45619 2.62172 -5.85543 + -5.09493 2.19873 -5.80405 + -4.79545 1.79825 -5.74823 + -4.55423 1.42210 -5.68822 + -4.36751 1.07198 -5.62429 + -4.36752 1.07131 -5.62429 + -4.23137 0.74882 -5.55663 + -4.14142 0.45551 -5.48533 + -4.09318 0.19291 -5.41042 + -4.08193 -0.03748 -5.33194 + -4.10274 -0.23418 -5.24995 + -4.10274 -0.23480 -5.24995 + -4.15052 -0.39632 -5.16444 + -4.21980 -0.52117 -5.07535 + -4.30496 -0.60784 -4.98260 + -4.40016 -0.65477 -4.88613 + -4.49933 -0.66038 -4.78586 + -4.49932 -0.66106 -4.78586 + -4.59623 -0.62374 -4.68170 + -4.68422 -0.54185 -4.57358 + -4.75647 -0.41369 -4.46142 + -4.80593 -0.23757 -4.34517 + -4.82526 -0.01176 -4.22478 + -4.82526 -0.01248 -4.22478 + -4.80699 0.26479 -4.10018 + -4.74316 0.59526 -3.97142 + -4.62567 0.98065 -3.83861 + -4.44614 1.42266 -3.70185 + -4.19596 1.92291 -3.56126 + -4.19597 1.92230 -3.56126 + -3.86637 2.48238 -3.41696 + -3.44819 3.10377 -3.26930 + -2.93211 3.78778 -3.11875 + -2.30867 4.53553 -2.96576 + -1.56822 5.34797 -2.81076 + -1.56825 5.34776 -2.81076 + -0.70107 6.22561 -2.65428 + 0.30273 7.16931 -2.49717 + 1.45302 8.17891 -2.34045 + 2.75968 9.25405 -2.18510 + 4.23247 10.39394 -2.03212 + 4.23512 10.37530 -2.03212 + 5.60620 7.92604 -1.88290 + 6.61890 5.59611 -1.73852 + 7.29342 3.43405 -1.59960 + 7.66156 1.52100 -1.46673 + 7.76332 -0.12000 -1.34051 + 7.76207 -0.12015 -1.34051 + 7.63717 -1.50338 -1.22124 + 7.32323 -2.64306 -1.10856 + 6.85576 -3.55262 -1.00208 + 6.26832 -4.24469 -0.90142 + 5.59264 -4.73109 -0.80620 + 5.59276 -4.72694 -0.80620 + 4.85948 -5.01850 -0.71587 + 4.09647 -5.12477 -0.62972 + 3.33091 -5.05384 -0.54712 + 2.58884 -4.81248 -0.46740 + 1.89542 -4.40607 -0.38993 + 1.89554 -4.40455 -0.38993 + 1.27542 -3.83708 -0.31401 + 0.75233 -3.11133 -0.23918 + 0.34984 -2.22922 -0.16510 + 0.09132 -1.19198 -0.09143 + -0.00002 -0.00011 -0.01784 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6136,10 +6236,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6166,7 +6266,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -6176,36 +6276,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.05000 60.45400 0.00000 146.53626 0.00000 - -2.70000 60.67300 0.00000 218.80272 0.00000 - -3.35000 60.82300 0.00000 297.17951 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -6216,36 +6315,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.02500 30.15475 106.11937 0.00000 0.70763 0.00000 3.51916 - -2.37500 32.32125 111.17918 0.00000 0.70763 0.00000 3.43982 - -3.02500 36.34475 120.57968 0.00000 0.70763 0.00000 3.31766 - -3.67500 40.36825 129.98155 0.00000 0.70763 0.00000 3.21990 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6257,149 +6355,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.44961 0.00000 19.44961 1.59216 202 100 P - 25.82900 0.00000 38.89922 3.18433 110 66 - - 25.03580 0.00000 58.34883 4.77649 110 43 - - 24.24011 0.00000 77.79845 6.36865 110 31 - - 23.44067 0.00000 97.24806 7.96082 110 24 - - 23.44067 0.00000 50.01834 7.96082 110 47 - - 22.63566 0.00000 60.02201 9.55298 110 38 - - 21.82111 0.00000 70.02568 11.14515 110 31 - - 20.99263 0.00000 80.02935 12.73731 110 26 - - 21.07203 0.00000 90.03302 14.32947 110 23 - - 21.76306 0.00000 100.03668 15.92164 110 22 - - 21.76306 0.00000 83.12851 15.92164 110 26 - - 22.20938 0.00000 88.67041 16.98308 110 25 - - 22.64560 0.00000 94.21231 18.04452 110 24 - - 23.07399 0.00000 99.75421 19.10596 110 23 - - 23.49680 0.00000 105.29611 20.16741 110 22 - - 23.91628 0.00000 110.83802 21.22885 110 22 - - 23.91628 0.00000 105.57478 21.22885 110 23 - - 23.89579 0.09810 105.79261 21.27265 110 23 - - 23.87529 0.19620 106.01045 21.31645 110 23 - - 23.85478 0.29430 106.22828 21.36026 110 22 - - 23.83426 0.39240 106.44612 21.40406 110 22 - - 23.81374 0.49050 106.66396 21.44786 110 22 - - 23.81374 0.49050 104.25913 21.44786 110 23 - - 23.54750 1.76580 107.02715 22.01729 110 22 - - 23.28463 3.04110 109.79517 22.58672 110 21 - - 23.02838 4.31640 112.56319 23.15615 110 0 - - 22.78200 5.59170 115.33121 23.72557 110 0 - - 22.54874 6.86700 118.09923 24.29500 110 0 - - 22.54874 6.86700 113.90536 24.29500 110 0 - - 22.33153 8.14230 116.57509 24.86443 110 0 - - 22.13237 9.41760 119.24481 25.43386 110 0 - - 21.95313 10.69290 121.91454 26.00329 110 0 - - 21.79567 11.96820 124.58426 26.57272 110 0 - - 21.66187 13.24350 127.25399 27.14214 110 0 - - 21.66187 13.24350 123.50392 27.14214 110 0 - - 21.55337 14.51880 126.09497 27.71157 110 0 - - 21.47128 15.79410 128.68602 28.28100 110 0 - - 21.41667 17.06940 131.27707 28.85043 110 0 - - 21.39059 18.34470 133.86812 29.41986 110 0 - - 21.39410 19.62000 136.45917 29.98929 110 0 - - 24.44711 19.62000 93.61408 27.88519 110 0 - - 24.33207 20.92800 93.96456 27.98959 110 0 - - 24.23015 22.23600 94.31504 28.09399 110 0 - - 24.14151 23.54400 94.66552 28.19838 110 0 - - 24.06629 24.85200 95.01601 28.30278 110 0 - - 24.00464 26.16000 95.36649 28.40718 110 0 - - 24.00464 26.16000 94.99596 28.40718 110 0 - - 23.95663 27.46800 95.34508 28.51158 110 0 - - 23.92209 28.77600 95.69420 28.61598 110 0 - - 23.90078 30.08400 96.04332 28.72038 110 0 - - 23.89246 31.39200 96.39244 28.82478 110 0 - - 23.89692 32.70000 96.74156 28.92918 110 0 - - 23.89692 32.70000 96.43144 28.92918 110 0 - - 23.91384 34.00800 96.77944 29.03358 110 0 - - 23.94271 35.31600 97.12744 29.13798 110 0 - - 23.98297 36.62400 97.47544 29.24238 110 0 - - 24.03404 37.93200 97.82344 29.34678 110 0 - - 24.09535 39.24000 98.17145 29.45118 110 0 - - 18.28388 39.24000 139.39178 31.67344 110 0 - - 18.65693 40.22100 141.31947 32.11146 110 0 - - 19.04263 41.20200 143.24716 32.54949 110 0 - - 19.44029 42.18300 145.17485 32.98751 110 0 - - 19.84923 43.16400 147.10255 33.42553 110 0 - - 20.26874 44.14500 149.03024 33.86355 110 0 - - 20.26874 44.14500 146.65286 33.86355 110 0 - - 20.69815 45.12600 148.54980 34.30157 110 0 - - 21.13689 46.10700 150.44674 34.73960 110 0 - - 21.58444 47.08800 152.34368 35.17762 110 0 - - 22.04023 48.06900 154.24062 35.61564 110 0 - - 22.50374 49.05000 156.13756 36.05366 110 0 - - 22.50374 49.05000 153.40009 36.05366 110 0 - - 23.21229 50.52150 156.19561 36.71069 110 0 - - 23.93562 51.99300 158.99114 37.36773 110 0 - - 24.67253 53.46450 161.78666 38.02476 110 0 - - 25.42181 54.93600 164.58219 38.68179 110 0 - - 26.18227 56.40750 167.37771 39.33883 110 0 - - 26.18227 56.40750 164.33167 39.33883 110 0 - - 26.95286 57.87900 167.07632 39.99586 110 0 - - 27.73294 59.35050 169.82097 40.65289 110 0 - - 28.52197 60.82200 172.56562 41.30992 110 0 - - 29.31941 62.29350 175.31027 41.96696 110 0 - - 30.12473 63.76500 178.05492 42.62399 110 0 - - 30.12473 63.76500 175.25279 42.62399 110 0 - - 30.93750 65.23650 177.95425 43.28102 110 0 - - 31.75761 66.70800 180.65570 43.93806 110 0 - - 32.58500 68.17950 183.35716 44.59509 110 0 - - 33.41960 69.65100 186.05862 45.25212 110 0 - - 34.26137 71.12250 188.76007 45.90915 110 0 - - 34.26137 71.12250 186.16443 45.90915 110 0 - - 35.11032 72.59400 188.82874 46.56619 110 0 - - 35.96664 74.06550 191.49305 47.22322 110 0 - - 36.83052 75.53700 194.15736 47.88025 110 0 - - 37.70214 77.00850 196.82167 48.53729 110 0 - - 38.58170 78.48000 199.48598 49.19432 110 0 - - 38.58170 78.48000 197.06773 49.19432 110 0 - - 39.46942 79.95150 199.69974 49.85135 110 0 - - 40.36552 81.42300 202.33175 50.50838 110 0 - - 41.27014 82.89450 204.96376 51.16542 110 0 - - 42.18345 84.36600 207.59577 51.82245 110 0 - - 43.10559 85.83750 210.22778 52.47948 110 0 - - 43.10559 85.83750 207.96375 52.47948 110 0 - - 44.03672 87.30900 210.56741 53.13652 110 0 - - 44.97675 88.78050 213.17108 53.79355 110 0 - - 45.92544 90.25200 215.77474 54.45058 110 0 - - 46.88260 91.72350 218.37841 55.10761 110 0 - - 47.84799 93.19500 220.98207 55.76465 110 0 - - 47.84799 93.19500 218.85344 55.76465 110 0 - - 48.82135 94.66650 221.43202 56.42168 110 0 - - 49.80189 96.13800 224.01061 57.07871 110 0 - - 50.78862 97.60950 226.58920 57.73575 110 0 - - 51.78055 99.08100 229.16778 58.39278 110 0 - - 52.77671 100.55250 231.74637 59.04981 110 0 - - 52.77671 100.55250 229.73763 59.04981 110 0 - - 53.77598 102.02400 232.29387 59.70685 110 0 - - 54.77645 103.49550 234.85010 60.36388 110 0 - - 55.77592 104.96700 237.40634 61.02091 110 0 - - 56.77219 106.43850 239.96257 61.67794 110 0 - - 57.76306 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.76397 110.85300 609.04150 45.42350 110 0 - - 27.96562 112.32450 618.28301 46.11275 110 0 - - 30.10034 113.79600 627.52452 46.80200 110 0 - - 32.16175 115.26750 636.76604 47.49125 110 0 - - 32.16175 115.26750 585.69985 47.49125 110 0 - - 34.14677 116.73900 594.20023 48.18050 110 0 - - 36.05942 118.21050 602.70061 48.86975 110 0 - - 37.90401 119.68200 611.20099 49.55900 110 0 - - 39.68487 121.15350 619.70137 50.24825 110 0 - - 41.40631 122.62500 628.20175 50.93750 110 0 - - 41.40631 122.62500 610.51735 50.93750 110 0 - - 43.07424 124.09650 618.77844 51.62675 110 0 - - 44.69644 125.56800 627.03952 52.31600 110 0 - - 46.28001 127.03950 635.30061 53.00525 110 0 - - 47.83203 128.51100 643.56170 53.69450 110 0 - - 49.35960 129.98250 651.82278 54.38375 110 0 - - 49.35960 129.98250 642.44252 54.38375 110 0 - - 50.87017 131.45400 650.58472 55.07300 110 0 - - 52.36893 132.92550 658.72693 55.76225 110 0 - - 53.85953 134.39700 666.86913 56.45150 110 0 - - 55.34564 135.86850 675.01133 57.14075 110 0 - - 56.83092 137.34000 683.15353 57.83000 110 0 - + 26.55500 0.00000 27.59211 1.44679 110 96 - + 25.84241 0.00000 55.18421 2.89358 110 47 - + 25.12835 0.00000 82.77632 4.34037 110 30 - + 24.41139 0.00000 110.36843 5.78715 110 22 - + 23.69012 0.00000 137.96054 7.23394 110 17 - + 23.69012 0.00000 68.20749 7.23394 110 35 - + 22.96249 0.00000 81.84899 8.68073 110 28 - + 22.22434 0.00000 95.49049 10.12752 110 23 - + 21.47104 0.00000 109.13199 11.57431 110 20 - + 20.69795 0.00000 122.77349 13.02110 110 17 - + 20.82601 0.00000 136.41499 14.46788 110 15 - + 20.82601 0.00000 111.45332 14.46788 110 19 - + 21.22576 0.00000 118.88354 15.43241 110 18 - + 21.61450 0.00000 126.31376 16.39693 110 17 - + 21.99444 0.00000 133.74398 17.36146 110 16 - + 22.36779 0.00000 141.17421 18.32599 110 16 - + 22.73676 0.00000 148.60443 19.29051 110 15 - + 22.73676 0.00000 137.71826 19.29051 110 17 - + 22.47030 1.30800 141.50704 19.82121 110 16 - + 22.20390 2.61600 145.29582 20.35192 110 15 - + 21.94115 3.92400 149.08461 20.88262 110 15 - + 21.68565 5.23200 152.87339 21.41333 110 14 - + 21.44097 6.54000 156.66217 21.94403 110 0 - + 21.44097 6.54000 150.27634 21.94403 110 0 - + 21.21035 7.84800 153.91069 22.47473 110 0 - + 20.99599 9.15600 157.54503 23.00544 110 0 - + 20.79991 10.46400 161.17938 23.53614 110 0 - + 20.62417 11.77200 164.81372 24.06684 110 0 - + 20.47079 13.08000 168.44806 24.59755 110 0 - + 20.47079 13.08000 162.75727 24.59755 110 0 - + 20.34158 14.38800 166.26883 25.12825 110 0 - + 20.23768 15.69600 169.78039 25.65895 110 0 - + 20.16020 17.00400 173.29196 26.18966 110 0 - + 20.11023 18.31200 176.80352 26.72036 110 0 - + 20.08886 19.62000 180.31508 27.25106 110 0 - + 21.96481 19.62000 112.91072 24.82969 110 0 - + 21.84880 20.92800 113.33345 24.92265 110 0 - + 21.74486 22.23600 113.75618 25.01561 110 0 - + 21.65312 23.54400 114.17890 25.10857 110 0 - + 21.57372 24.85200 114.60163 25.20153 110 0 - + 21.50679 26.16000 115.02436 25.29449 110 0 - + 21.50679 26.16000 114.42115 25.29449 110 0 - + 21.45240 27.46800 114.84166 25.38745 110 0 - + 21.41040 28.77600 115.26217 25.48041 110 0 - + 21.38057 30.08400 115.68268 25.57337 110 0 - + 21.36271 31.39200 116.10319 25.66633 110 0 - + 21.35661 32.70000 116.52370 25.75929 110 0 - + 21.35661 32.70000 116.01583 25.75929 110 0 - + 21.36202 34.00800 116.43451 25.85225 110 0 - + 21.37846 35.31600 116.85318 25.94521 110 0 - + 21.40544 36.62400 117.27186 26.03817 110 0 - + 21.44244 37.93200 117.69054 26.13113 110 0 - + 21.48897 39.24000 118.10921 26.22409 110 0 - + 16.94364 39.24000 183.43874 28.78144 110 0 - + 17.26934 40.22100 185.97557 29.17947 110 0 - + 17.60689 41.20200 188.51241 29.57750 110 0 - + 17.95566 42.18300 191.04924 29.97553 110 0 - + 18.31503 43.16400 193.58607 30.37355 110 0 - + 18.68439 44.14500 196.12290 30.77158 110 0 - + 18.68439 44.14500 192.60019 30.77158 110 0 - + 19.06312 45.12600 195.09146 31.16961 110 0 - + 19.45073 46.10700 197.58272 31.56764 110 0 - + 19.84672 47.08800 200.07399 31.96566 110 0 - + 20.25061 48.06900 202.56525 32.36369 110 0 - + 20.66189 49.05000 205.05652 32.76172 110 0 - + 20.66189 49.05000 201.00495 32.76172 110 0 - + 21.29165 50.52150 204.66801 33.35876 110 0 - + 21.93572 51.99300 208.33107 33.95580 110 0 - + 22.59298 53.46450 211.99414 34.55284 110 0 - + 23.26235 54.93600 215.65720 35.14988 110 0 - + 23.94272 56.40750 219.32027 35.74693 110 0 - + 23.94272 56.40750 214.81611 35.74693 110 0 - + 24.63310 57.87900 218.40395 36.34397 110 0 - + 25.33290 59.35050 221.99178 36.94101 110 0 - + 26.04159 60.82200 225.57962 37.53805 110 0 - + 26.75865 62.29350 229.16745 38.13509 110 0 - + 27.48356 63.76500 232.75529 38.73213 110 0 - + 27.48356 63.76500 228.61475 38.73213 110 0 - + 28.21591 65.23650 232.13876 39.32917 110 0 - + 28.95556 66.70800 235.66278 39.92621 110 0 - + 29.70242 68.17950 239.18679 40.52326 110 0 - + 30.45641 69.65100 242.71080 41.12030 110 0 - + 31.21745 71.12250 246.23481 41.71734 110 0 - + 31.21745 71.12250 242.40131 41.71734 110 0 - + 31.98550 72.59400 245.87046 42.31438 110 0 - + 32.76073 74.06550 249.33961 42.91142 110 0 - + 33.54326 75.53700 252.80875 43.50846 110 0 - + 34.33325 77.00850 256.27790 44.10550 110 0 - + 35.13083 78.48000 259.74705 44.70255 110 0 - + 35.13083 78.48000 256.17685 44.70255 110 0 - + 35.93618 79.95150 259.59831 45.29959 110 0 - + 36.74948 81.42300 263.01977 45.89663 110 0 - + 37.57083 82.89450 266.44124 46.49367 110 0 - + 38.40037 84.36600 269.86270 47.09071 110 0 - + 39.23820 85.83750 273.28417 47.68775 110 0 - + 39.23820 85.83750 269.94257 47.68775 110 0 - + 40.08444 87.30900 273.32219 48.28479 110 0 - + 40.93900 88.78050 276.70182 48.88183 110 0 - + 41.80166 90.25200 280.08145 49.47888 110 0 - + 42.67221 91.72350 283.46108 50.07592 110 0 - + 43.55044 93.19500 286.84071 50.67296 110 0 - + 43.55044 93.19500 283.69963 50.67296 110 0 - + 44.43609 94.66650 287.04225 51.27000 110 0 - + 45.32843 96.13800 290.38487 51.86704 110 0 - + 46.22657 97.60950 293.72749 52.46408 110 0 - + 47.12961 99.08100 297.07011 53.06112 110 0 - + 48.03664 100.55250 300.41273 53.65817 110 0 - + 48.03664 100.55250 297.44910 53.65817 110 0 - + 48.94665 102.02400 300.75875 54.25521 110 0 - + 49.85790 103.49550 304.06839 54.85225 110 0 - + 50.76840 104.96700 307.37804 55.44929 110 0 - + 51.67614 106.43850 310.68768 56.04633 110 0 - + 52.57913 107.91000 313.99732 56.64337 110 0 - + 20.50984 107.91000 734.00940 36.53923 110 0 - + 20.75046 109.38150 745.49575 37.11102 110 0 - + 20.99022 110.85300 756.98209 37.68281 110 0 - + 22.25859 112.32450 768.46843 38.25461 110 0 - + 24.15909 113.79600 779.95478 38.82640 110 0 - + 25.99310 115.26750 791.44112 39.39820 110 0 - + 25.99310 115.26750 738.87493 39.39820 110 0 - + 27.75762 116.73900 749.59837 39.96999 110 0 - + 29.45623 118.21050 760.32181 40.54178 110 0 - + 31.09279 119.68200 771.04525 41.11358 110 0 - + 32.67116 121.15350 781.76869 41.68537 110 0 - + 34.19521 122.62500 792.49213 42.25717 110 0 - + 34.19521 122.62500 772.62437 42.25717 110 0 - + 35.67030 124.09650 783.07897 42.82896 110 0 - + 37.10354 125.56800 793.53357 43.40075 110 0 - + 38.50140 127.03950 803.98818 43.97255 110 0 - + 39.87035 128.51100 814.44278 44.54434 110 0 - + 41.21687 129.98250 824.89738 45.11614 110 0 - + 41.21687 129.98250 814.08791 45.11614 110 0 - + 42.54781 131.45400 824.40552 45.68793 110 0 - + 43.86790 132.92550 834.72313 46.25972 110 0 - + 45.18052 134.39700 845.04073 46.83152 110 0 - + 46.48900 135.86850 855.35834 47.40331 110 0 - + 47.79672 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6412,10 +6504,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 88.285 'Clay' - -4.00 48.065 'Peat' - -6.00 254.985 'Clay' - -13.00 122.120 'Sand' + 0.00 86.555 'Clay' + -4.00 43.014 'Peat' + -6.00 232.556 'Clay' + -13.00 101.089 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6430,7 +6522,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.05 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -6452,10 +6544,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6491,27 +6583,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 59.75500 0.00000 10.55221 0.00000 - -3.35000 59.78900 0.00000 40.61526 0.00000 - -4.00000 59.93300 0.00000 78.98783 0.00000 - -4.66667 59.27900 0.00000 99.99586 0.00000 - -5.33333 58.76500 0.00000 122.03151 0.00000 - -6.00000 58.35000 0.00000 145.10928 0.00000 - -6.50000 58.82300 0.00000 181.70389 0.00000 - -7.00000 59.17400 0.00000 221.90084 0.00000 - -7.75000 59.56800 0.00000 288.96438 0.00000 - -8.50000 59.86600 0.00000 364.15694 0.00000 - -9.25000 60.10300 0.00000 447.48137 0.00000 - -10.00000 60.29800 0.00000 538.93827 0.00000 - -10.75000 60.46400 0.00000 638.52740 0.00000 - -11.50000 60.60700 36.30900 746.24820 5.95961 - -12.25000 60.73200 36.53400 862.10000 14.49704 - -13.00000 60.84200 36.74200 986.08217 24.71056 - -13.75000 65.56900 36.47300 1292.86714 37.45998 - -14.50000 67.27700 36.23100 1605.37759 51.66150 - -15.25000 68.28400 36.01600 1940.14003 67.31490 - -16.00000 68.96200 35.82400 2300.82648 84.41969 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -6528,32 +6620,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 16.23417 0.00000 0.70763 0.00000 8.06968 - -3.02500 6.03525 46.25085 0.00000 0.70763 0.00000 7.66345 - -3.67500 10.05875 59.03472 0.00000 0.70763 0.00000 5.86899 - -4.33333 12.46717 31.51203 0.00000 0.65798 0.00000 2.52760 - -5.00000 13.26050 33.05349 0.00000 0.65798 0.00000 2.49263 - -5.66667 14.05383 34.61665 0.00000 0.65798 0.00000 2.46315 - -6.25000 15.99800 73.18922 0.00000 0.70763 0.00000 4.57490 - -6.75000 19.09300 80.39390 0.00000 0.70763 0.00000 4.21065 - -7.37500 22.96175 89.41805 0.00000 0.70763 0.00000 3.89422 - -8.12500 27.60425 100.25674 0.00000 0.70763 0.00000 3.63193 - -8.87500 32.24675 111.09924 0.00000 0.70763 0.00000 3.44528 - -9.62500 36.88925 121.94254 0.00000 0.70763 0.00000 3.30564 - -10.37500 41.53175 132.78551 0.00000 0.70763 0.00000 3.19720 - -11.12500 46.17425 143.62773 7.94615 0.70763 0.17209 3.11056 - -11.87500 50.81675 154.46907 11.38323 0.70763 0.22401 3.03973 - -12.62500 55.45925 165.30955 13.61803 0.70763 0.24555 2.98074 - -13.37500 61.22675 409.04663 16.99923 0.50000 0.27764 6.68085 - -14.12500 68.11925 416.68061 18.93536 0.50000 0.27797 6.11693 - -14.87500 75.01175 446.34992 20.87121 0.50000 0.27824 5.95040 - -15.62500 81.90425 480.91526 22.80638 0.50000 0.27845 5.87168 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6582,132 +6674,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.09810 0.00000 0.00000 -1 0 - - 0.00000 0.19620 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 6.49367 0.56943 1 0 A - 0.00000 3.04110 12.98734 1.13886 1 0 A - 1.83605 4.31640 19.48100 1.70829 110 9 - - 3.22129 5.59170 25.97467 2.27771 110 12 - - 4.59340 6.86700 32.46834 2.84714 110 14 - - 4.59340 6.86700 30.83390 2.84714 110 15 - - 5.94947 8.14230 37.00068 3.41657 110 16 - - 7.28749 9.41760 43.16746 3.98600 110 17 - - 8.60559 10.69290 49.33424 4.55543 110 17 - - 9.90191 11.96820 55.50102 5.12486 110 18 - - 11.17456 13.24350 61.66780 5.69428 110 18 - - 11.17456 13.24350 47.22778 5.69428 110 24 - - 12.42192 14.51880 51.95055 6.26371 110 24 - - 13.64286 15.79410 56.67333 6.83314 110 24 - - 14.83633 17.06940 61.39611 7.40257 110 24 - - 16.00127 18.34470 66.11889 7.97200 110 24 - - 17.13662 19.62000 70.84166 8.54143 110 24 - - 11.38022 19.62000 30.50942 7.94215 110 37 - - 11.70406 20.92800 30.91047 8.04655 110 38 - - 12.01478 22.23600 31.31151 8.15094 110 38 - - 12.31222 23.54400 31.71256 8.25534 110 39 - - 12.59624 24.85200 32.11360 8.35974 110 39 - - 12.86669 26.16000 32.51465 8.46414 110 40 - - 12.86669 26.16000 32.06475 8.46414 110 40 - - 13.12349 27.46800 32.46024 8.56854 110 40 - - 13.36683 28.77600 32.85574 8.67294 110 41 - - 13.59695 30.08400 33.25124 8.77734 110 41 - - 13.81406 31.39200 33.64673 8.88174 110 41 - - 14.01841 32.70000 34.04223 8.98614 110 41 - - 14.01841 32.70000 33.63961 8.98614 110 42 - - 14.21028 34.00800 34.03043 9.09054 110 42 - - 14.39021 35.31600 34.42124 9.19494 110 42 - - 14.55875 36.62400 34.81206 9.29934 110 42 - - 14.71648 37.93200 35.20288 9.40374 110 42 - - 14.86396 39.24000 35.59370 9.50814 110 42 - - 23.61514 39.24000 66.10956 10.22558 110 36 - - 24.11814 40.22100 68.94142 10.66360 110 35 - - 24.60848 41.20200 71.77328 11.10163 110 34 - - 25.08686 42.18300 74.60515 11.53965 110 34 - - 25.55397 43.16400 77.43701 11.97767 110 33 - - 26.01051 44.14500 80.26887 12.41569 110 32 - - 26.01051 44.14500 73.87792 12.41569 110 35 - - 26.45714 45.12600 76.48431 12.85371 110 35 - - 26.89444 46.10700 79.09071 13.29174 110 34 - - 27.32294 47.08800 81.69710 13.72976 110 33 - - 27.74319 48.06900 84.30349 14.16778 110 33 - - 28.15573 49.05000 86.90988 14.60580 110 32 - - 28.15573 49.05000 80.37860 14.60580 110 35 - - 28.76124 50.52150 83.99438 15.26283 110 34 - - 29.35197 51.99300 87.61016 15.91987 110 34 - - 29.92914 53.46450 91.22594 16.57690 110 33 - - 30.49392 54.93600 94.84172 17.23393 110 32 - - 31.04752 56.40750 98.45750 17.89097 110 32 - - 31.04752 56.40750 91.82612 17.89097 110 34 - - 31.59100 57.87900 95.19837 18.54800 110 33 - - 32.12499 59.35050 98.57062 19.20503 110 33 - - 32.65002 60.82200 101.94287 19.86206 110 32 - - 33.16664 62.29350 105.31512 20.51910 110 31 - - 33.67539 63.76500 108.68736 21.17613 110 31 - - 33.67539 63.76500 103.10187 21.17613 110 33 - - 34.17669 65.23650 106.30082 21.83316 110 32 - - 34.67065 66.70800 109.49977 22.49020 110 32 - - 35.15732 68.17950 112.69871 23.14723 110 31 - - 35.63678 69.65100 115.89766 23.80426 110 31 - - 36.10908 71.12250 119.09661 24.46129 110 30 - - 36.10908 71.12250 114.26933 24.46129 110 32 - - 36.57420 72.59400 117.33861 25.11833 110 31 - - 37.03194 74.06550 120.40790 25.77536 110 31 - - 37.48213 75.53700 123.47718 26.43239 110 30 - - 37.92457 77.00850 126.54647 27.08943 110 30 - - 38.35908 78.48000 129.61575 27.74646 110 30 - - 38.35908 78.48000 125.36400 27.74646 110 31 - - 38.78543 79.95150 128.33260 28.40349 110 30 - - 39.20339 81.42300 131.30121 29.06053 110 30 - - 39.61283 82.89450 134.26981 29.71756 110 30 - - 40.01359 84.36600 137.23841 30.37459 110 29 - - 40.40552 85.83750 140.20702 31.03162 110 29 - - 40.40552 85.83750 136.40734 31.03162 110 30 - - 40.78845 87.30900 139.29550 31.68866 110 29 - - 41.16249 88.78050 142.18365 32.34569 110 29 - - 41.52786 90.25200 145.07180 33.00272 110 29 - - 41.88477 91.72350 147.95996 33.65976 110 28 - - 42.23344 93.19500 150.84811 34.31679 110 28 - - 42.23344 93.19500 147.41311 34.31679 110 29 - - 42.57415 94.66650 150.23549 34.97382 110 28 - - 42.90768 96.13800 153.05788 35.63085 110 28 - - 43.23502 97.60950 155.88027 36.28789 110 28 - - 43.55715 99.08100 158.70265 36.94492 110 27 - - 43.87505 100.55250 161.52504 37.60195 110 27 - - 43.87505 100.55250 158.39051 37.60195 110 28 - - 44.18985 102.02400 161.15813 38.25899 110 27 - - 44.50344 103.49550 163.92574 38.91602 110 27 - - 44.81804 104.96700 166.69336 39.57305 110 27 - - 45.13584 106.43850 169.46097 40.23008 110 27 - - 45.45903 107.91000 172.22859 40.88712 110 26 - - 51.74982 107.91000 386.02275 28.89025 110 13 - - 50.81196 109.38150 395.23230 29.57950 110 13 - - 49.92828 110.85300 404.44185 30.26875 110 12 - - 49.10513 112.32450 413.65140 30.95800 110 12 - - 48.34891 113.79600 422.86095 31.64725 110 11 - - 47.66600 115.26750 432.07050 32.33650 110 11 - - 47.66600 115.26750 395.60014 32.33650 110 12 - - 47.05948 116.73900 404.03233 33.02575 110 12 - - 46.52533 118.21050 412.46451 33.71500 110 11 - - 46.05924 119.68200 420.89670 34.40425 110 11 - - 45.65688 121.15350 429.32889 35.09350 110 11 - - 45.31394 122.62500 437.76107 35.78275 110 10 - - 45.31394 122.62500 425.84335 35.78275 110 11 - - 45.02451 124.09650 434.04598 36.47200 110 10 - - 44.78081 125.56800 442.24860 37.16125 110 10 - - 44.57574 127.03950 450.45123 37.85050 110 10 - - 44.40222 128.51100 458.65386 38.53975 110 10 - - 44.25315 129.98250 466.85648 39.22900 110 9 - - 44.25315 129.98250 460.68000 39.22900 110 10 - - 44.12108 131.45400 468.77411 39.91825 110 9 - - 44.00082 132.92550 476.86821 40.60750 110 9 - - 43.88872 134.39700 484.96232 41.29675 110 9 - - 43.78111 135.86850 493.05642 41.98600 110 9 - - 43.67433 137.34000 501.15053 42.67525 110 9 - + 0.00000 0.00000 0.00003 0.00000 1 0 A + 0.00000 1.30800 23.36326 0.53070 1 0 A + 0.00000 2.61600 46.72653 1.06141 1 0 A + 0.53358 3.92400 70.08979 1.59211 110 0 - + 1.85049 5.23200 93.45305 2.12281 110 0 - + 3.15657 6.54000 116.81631 2.65352 110 3 - + 3.15657 6.54000 47.10799 2.65352 110 7 - + 4.44860 7.84800 56.52959 3.18422 110 8 - + 5.72437 9.15600 65.95118 3.71492 110 9 - + 6.98186 10.46400 75.37278 4.24563 110 9 - + 8.21901 11.77200 84.79438 4.77633 110 10 - + 9.43379 13.08000 94.21598 5.30703 110 10 - + 9.43379 13.08000 66.31764 5.30703 110 14 - + 10.62441 14.38800 72.94940 5.83774 110 15 - + 11.78971 15.69600 79.58117 6.36844 110 15 - + 12.92860 17.00400 86.21293 6.89914 110 15 - + 14.03998 18.31200 92.84470 7.42985 110 15 - + 15.12275 19.62000 99.47646 7.96055 110 15 - + 10.11810 19.62000 38.17169 7.25322 110 27 - + 10.42003 20.92800 38.66091 7.34618 110 27 - + 10.70989 22.23600 39.15013 7.43914 110 27 - + 10.98755 23.54400 39.63936 7.53210 110 28 - + 11.25287 24.85200 40.12858 7.62506 110 28 - + 11.50572 26.16000 40.61780 7.71802 110 28 - + 11.50572 26.16000 39.99387 7.71802 110 29 - + 11.74603 27.46800 40.47558 7.81098 110 29 - + 11.97395 28.77600 40.95728 7.90394 110 29 - + 12.18970 30.08400 41.43899 7.99690 110 29 - + 12.39348 31.39200 41.92070 8.08986 110 30 - + 12.58550 32.70000 42.40241 8.18282 110 30 - + 12.58550 32.70000 41.83585 8.18282 110 30 - + 12.76601 34.00800 42.31112 8.27578 110 30 - + 12.93549 35.31600 42.78639 8.36874 110 30 - + 13.09444 36.62400 43.26166 8.46170 110 30 - + 13.24335 37.93200 43.73693 8.55466 110 30 - + 13.38274 39.24000 44.21220 8.64762 110 30 - + 21.32873 39.24000 91.40237 9.49093 110 23 - + 21.79909 40.22100 95.23558 9.88896 110 23 - + 22.25759 41.20200 99.06878 10.28699 110 22 - + 22.70488 42.18300 102.90198 10.68501 110 22 - + 23.14156 43.16400 106.73518 11.08304 110 22 - + 23.56826 44.14500 110.56839 11.48107 110 21 - + 23.56826 44.14500 101.29500 11.48107 110 23 - + 23.98558 45.12600 104.80671 11.87910 110 23 - + 24.39403 46.10700 108.31842 12.27712 110 23 - + 24.79409 47.08800 111.83013 12.67515 110 22 - + 25.18626 48.06900 115.34184 13.07318 110 22 - + 25.57103 49.05000 118.85355 13.47121 110 22 - + 25.57103 49.05000 109.34264 13.47121 110 23 - + 26.13536 50.52150 114.18869 14.06825 110 23 - + 26.68538 51.99300 119.03473 14.66529 110 22 - + 27.22219 53.46450 123.88078 15.26233 110 22 - + 27.74690 54.93600 128.72682 15.85937 110 22 - + 28.26062 56.40750 133.57287 16.45641 110 21 - + 28.26062 56.40750 123.89446 16.45641 110 23 - + 28.76432 57.87900 128.38937 17.05346 110 22 - + 29.25861 59.35050 132.88428 17.65050 110 22 - + 29.74400 60.82200 137.37919 18.24754 110 22 - + 30.22102 62.29350 141.87411 18.84458 110 21 - + 30.69019 63.76500 146.36902 19.44162 110 21 - + 30.69019 63.76500 138.20216 19.44162 110 22 - + 31.15193 65.23650 142.44627 20.03866 110 22 - + 31.60636 66.70800 146.69039 20.63570 110 22 - + 32.05358 68.17950 150.93450 21.23274 110 21 - + 32.49367 69.65100 155.17861 21.82979 110 21 - + 32.92672 71.12250 159.42272 22.42683 110 21 - + 32.92672 71.12250 152.35575 22.42683 110 22 - + 33.35275 72.59400 156.41173 23.02387 110 21 - + 33.77160 74.06550 160.46771 23.62091 110 21 - + 34.18315 75.53700 164.52368 24.21795 110 21 - + 34.58725 77.00850 168.57966 24.81499 110 21 - + 34.98375 78.48000 172.63564 25.41203 110 20 - + 34.98375 78.48000 166.40568 25.41203 110 21 - + 35.37248 79.95150 170.31528 26.00908 110 21 - + 35.75327 81.42300 174.22489 26.60612 110 21 - + 36.12599 82.89450 178.13450 27.20316 110 20 - + 36.49054 84.36600 182.04410 27.80020 110 20 - + 36.84679 85.83750 185.95371 28.39724 110 20 - + 36.84679 85.83750 180.38244 28.39724 110 20 - + 37.19463 87.30900 184.17492 28.99428 110 20 - + 37.53416 88.78050 187.96739 29.59132 110 20 - + 37.86558 90.25200 191.75986 30.18836 110 20 - + 38.18911 91.72350 195.55234 30.78541 110 20 - + 38.50496 93.19500 199.34481 31.38245 110 19 - + 38.50496 93.19500 194.30563 31.38245 110 20 - + 38.81340 94.66650 198.00223 31.97949 110 20 - + 39.11514 96.13800 201.69884 32.57653 110 19 - + 39.41108 97.60950 205.39544 33.17357 110 19 - + 39.70213 99.08100 209.09205 33.77061 110 19 - + 39.98918 100.55250 212.78865 34.36765 110 19 - + 39.98918 100.55250 208.18836 34.36765 110 19 - + 40.27325 102.02400 211.80505 34.96469 110 19 - + 40.55608 103.49550 215.42174 35.56174 110 19 - + 40.83967 104.96700 219.03843 36.15878 110 19 - + 41.12601 106.43850 222.65511 36.75582 110 18 - + 41.41710 107.91000 226.27180 37.35286 110 18 - + 44.41662 107.91000 484.03714 24.09540 110 9 - + 43.49614 109.38150 495.52355 24.66719 110 9 - + 42.62421 110.85300 507.00995 25.23899 110 8 - + 41.80680 112.32450 518.49635 25.81078 110 8 - + 41.04989 113.79600 529.98276 26.38257 110 8 - + 40.35947 115.26750 541.46916 26.95437 110 7 - + 40.35947 115.26750 502.94282 26.95437 110 8 - + 39.73853 116.73900 513.61195 27.52616 110 8 - + 39.18351 118.21050 524.28108 28.09796 110 7 - + 38.69054 119.68200 534.95021 28.66975 110 7 - + 38.25576 121.15350 545.61934 29.24154 110 7 - + 37.87529 122.62500 556.28847 29.81334 110 7 - + 37.87529 122.62500 542.36706 29.81334 110 7 - + 37.54379 124.09650 552.76919 30.38513 110 7 - + 37.25414 125.56800 563.17132 30.95693 110 7 - + 36.99987 127.03950 573.57345 31.52872 110 6 - + 36.77451 128.51100 583.97558 32.10051 110 6 - + 36.57157 129.98250 594.37771 32.67231 110 6 - + 36.57157 129.98250 586.93748 32.67231 110 6 - + 36.38422 131.45400 597.20940 33.24410 110 6 - + 36.20771 132.92550 607.48132 33.81589 110 6 - + 36.03869 134.39700 617.75323 34.38769 110 6 - + 35.87379 135.86850 628.02515 34.95948 110 6 - + 35.70966 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6720,10 +6806,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 15.345 'Clay' - -4.00 26.722 'Peat' - -6.00 252.938 'Clay' - -13.00 138.452 'Sand' + 0.00 12.972 'Clay' + -4.00 23.941 'Peat' + -6.00 230.384 'Clay' + -13.00 115.919 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6803,52 +6889,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -6895,7 +6981,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 168.00000 210000000.000 0 2 0 'Anchor' + -1.50000 141.67839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6922,22 +7008,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 71.84 : Percentage mobilized resistance left - 13.56 : Percentage mobilized resistance right - 634.47 : Effective left - 409.48 : Effective right + 43.01 : Percentage mobilized resistance left + 7.59 : Percentage mobilized resistance right + 545.44 : Effective left + 292.37 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 3019.75 : Max effective resistance right --10540.07 : Max moment left --28008.30 : Max moment right --7076.51 : Max mobilized moment left --3699.87 : Max mobilized moment right - 183.84 : Vertical force left - 97.32 : Vertical force right - 67.1 : Max mobilized moment percentage left - 13.2 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3850.19 : Max effective resistance right +-14781.58 : Max moment left +-35709.89 : Max moment right +-5450.60 : Max mobilized moment left +-2071.19 : Max mobilized moment right + 170.74 : Vertical force left + 75.29 : Vertical force right + 36.9 : Max mobilized moment percentage left + 5.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -6952,144 +7038,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.03242 0.17559 42.23997 - 0.04515 1.20023 32.41834 - 0.43272 4.32621 22.59678 - 1.42861 9.16407 12.77437 - 3.17592 13.88157 2.95018 - 5.51835 17.10448 -6.87670 - 5.56987 16.95231 -6.87670 - 8.17275 17.55270 -16.70802 - 10.80566 17.55270 -26.54639 - 13.43856 17.55270 -36.39409 - 16.07147 17.55270 -46.25340 - 18.70437 17.55270 -56.12658 - 18.70224 -150.45558 -56.12658 - 3.66392 -150.30922 -62.71645 - -11.35928 -150.15318 -69.30773 - -26.36640 -149.98757 -75.89465 - -41.35648 -149.81249 -82.47146 - -56.32858 -149.62806 -89.03241 - -56.32983 -149.61771 -89.03241 - -76.18272 -148.14774 -97.74561 - -95.82847 -146.51076 -106.40684 - -115.24488 -144.70790 -115.00284 - -134.40992 -142.74020 -123.52039 - -153.30165 -140.60861 -131.94625 - -153.30106 -140.60700 -131.94625 - -171.89673 -138.30085 -140.26729 - -190.17407 -135.83219 -148.47106 - -208.11146 -133.20176 -156.54532 - -225.68738 -130.41022 -164.47785 - -242.88038 -127.45820 -172.25642 - -242.88036 -127.46019 -172.25642 - -259.66857 -124.33630 -179.86898 - -276.02961 -121.05276 -187.30438 - -291.94223 -117.61007 -194.55179 - -307.38524 -114.00869 -201.60035 - -322.33751 -110.24901 -208.43922 - -322.33758 -110.25070 -208.43922 - -336.71484 -105.38530 -215.05774 - -350.43425 -100.38313 -221.44653 - -363.47762 -95.24468 -227.59672 - -375.82679 -89.97042 -233.49941 - -387.46371 -84.56077 -239.14572 - -387.46371 -84.56181 -239.14572 - -398.37201 -79.04019 -244.52711 - -408.53512 -73.38408 -249.63672 - -417.93513 -67.59381 -254.46815 - -426.55419 -61.66973 -259.01498 - -434.37446 -55.61215 -263.27083 - -434.37447 -55.61310 -263.27083 - -441.37923 -49.43618 -267.22968 - -447.55154 -43.12639 -270.88742 - -452.87371 -36.68397 -274.24042 - -457.32805 -30.10919 -277.28504 - -460.89695 -23.40228 -280.01768 - -460.89697 -23.40304 -280.01768 - -463.01784 -18.99995 -281.86058 - -464.69406 -14.50993 -283.52580 - -465.91693 -9.93307 -285.01290 - -466.67778 -5.26940 -286.32139 - -466.96792 -0.51900 -287.45081 - -466.96793 -0.51958 -287.45081 - -466.77791 4.33452 -288.40083 - -466.09813 9.27544 -289.17174 - -464.91992 14.30314 -289.76399 - -463.23461 19.41755 -290.17803 - -461.03353 24.61865 -290.41432 - -461.03353 24.61823 -290.41432 - -458.30846 29.88623 -290.47348 - -455.05568 35.17230 -290.35677 - -451.27340 40.47640 -290.06565 - -446.95980 45.79850 -289.60157 - -442.11310 51.13855 -288.96599 - -442.11305 51.13785 -288.96599 - -433.43588 59.16236 -287.62443 - -423.56206 66.36796 -285.87217 - -412.62028 72.75452 -283.71951 - -400.73926 78.32195 -281.17675 - -388.04772 83.07012 -278.25417 - -388.04774 83.06929 -278.25417 - -374.62641 87.62903 -274.96305 - -360.54443 91.47775 -271.31698 - -345.91351 94.61537 -267.32977 - -330.84542 97.04180 -263.01521 - -315.45192 98.75697 -258.38711 - -315.45192 98.75624 -258.38711 - -299.68559 101.81975 -253.45965 - -283.47857 104.36497 -248.24826 - -266.91232 106.39183 -242.76858 - -250.06830 107.90027 -237.03626 - -233.02797 108.89025 -231.06696 - -233.02796 108.88945 -231.06696 - -215.76270 110.77876 -224.87659 - -198.23425 112.23906 -218.48180 - -180.51004 113.27034 -211.89935 - -162.65748 113.87253 -205.14599 - -144.74400 114.04562 -198.23849 - -144.74400 114.04475 -198.23849 - -126.75524 114.83997 -191.19375 - -108.67130 115.25598 -184.02893 - -90.55179 115.29275 -176.76118 - -72.45630 114.95027 -169.40761 - -54.44443 114.22850 -161.98538 - -54.44445 114.22773 -161.98538 - -36.51069 113.96223 -154.51165 - -18.64594 113.34932 -147.00335 - -0.90482 112.38897 -139.47727 - 16.65810 111.08117 -131.95019 - 33.98821 109.42593 -124.43889 - 33.98817 109.42566 -124.43889 - 51.07262 107.95828 -116.96008 - 67.90079 106.16402 -109.52969 - 84.42133 104.04287 -102.16337 - 100.58286 101.59482 -94.87673 - 116.33401 98.81988 -87.68540 - 116.33675 98.80059 -87.68540 - 130.03544 83.69838 -80.92511 - 141.40121 67.69507 -74.27730 - 150.29890 50.79065 -67.74959 - 156.59335 32.98514 -61.34960 - 160.14939 14.27854 -55.08492 - 160.15453 14.25191 -55.08492 - 160.99663 -3.16114 -48.96142 - 159.16501 -21.39775 -42.97714 - 154.53613 -40.45793 -37.12804 - 146.98646 -60.34165 -31.41006 - 136.40740 -80.75006 -25.81914 - 136.41044 -82.59707 -25.81914 - 122.57979 -100.87689 -20.34814 - 106.42758 -113.55249 -14.98277 - 88.79170 -120.67509 -9.70822 - 70.49832 -122.33229 -4.50969 - 52.43857 -117.05838 0.62763 - 52.32679 -117.06695 0.62763 - 35.62875 -104.57621 5.72105 - 21.23711 -86.42187 10.78422 - 9.96878 -62.93568 15.82647 - 2.62214 -34.13471 20.85713 - -0.00626 -0.02621 25.88552 + -0.01244 0.06903 33.20519 + 0.07684 1.64753 29.47363 + 0.64368 6.46323 25.74217 + 2.12103 13.38334 22.00944 + 4.67472 20.62411 18.27407 + 8.29656 27.63074 14.53470 + 8.30802 27.69274 14.53470 + 12.87145 33.07087 10.78905 + 18.20468 37.95690 7.03232 + 24.23382 42.34892 3.25933 + 30.88643 46.28234 -0.53509 + 38.09916 49.82844 -4.35610 + 38.09931 -91.84827 -4.35610 + 28.98815 -90.41016 -6.92015 + 20.01020 -89.18446 -9.49532 + 11.14408 -88.17416 -12.07821 + 2.36810 -87.38177 -14.66541 + -6.33961 -86.80923 -17.25351 + -6.33577 -86.89029 -17.25351 + -17.91415 -86.78110 -20.69990 + -29.47411 -86.59798 -24.13407 + -41.00152 -86.29278 -27.54815 + -52.48009 -85.86550 -30.93430 + -63.89356 -85.31614 -34.28465 + -63.89354 -85.31717 -34.28465 + -75.17035 -83.81115 -37.59130 + -86.23683 -82.16240 -40.84666 + -97.07399 -80.37131 -44.04334 + -107.66287 -78.43822 -47.17396 + -117.98456 -76.36344 -50.23113 + -117.98453 -76.36544 -50.23113 + -128.00116 -73.85950 -53.20756 + -137.67386 -71.20653 -56.09666 + -146.98305 -68.40683 -58.89208 + -155.90918 -65.46073 -61.58747 + -164.43275 -62.36848 -64.17651 + -164.43282 -62.37016 -64.17651 + -172.46154 -58.03819 -66.65296 + -179.90371 -53.57209 -69.01174 + -186.74148 -48.97225 -71.24819 + -192.95705 -44.23907 -73.35764 + -198.53266 -39.37288 -75.33545 + -198.53266 -39.37392 -75.33545 + -203.45191 -34.39287 -77.17727 + -207.69821 -29.27954 -78.88028 + -211.25392 -24.03423 -80.44205 + -214.10148 -18.65720 -81.86016 + -216.22333 -13.14871 -83.13220 + -216.22334 -13.14966 -83.13220 + -217.60329 -7.52771 -84.25612 + -218.22491 -1.77483 -85.23156 + -218.07077 4.10875 -86.05863 + -217.12344 10.12284 -86.73745 + -215.36555 16.26724 -87.26813 + -215.36557 16.26648 -87.26813 + -213.54491 20.16028 -87.56931 + -211.33081 24.13527 -87.78854 + -208.71515 28.19140 -87.92682 + -205.68983 32.32864 -87.98517 + -202.24672 36.54694 -87.96459 + -202.24673 36.54636 -87.96459 + -198.37635 40.87468 -87.86620 + -194.06908 45.28430 -87.69168 + -189.31678 49.77519 -87.44286 + -184.11134 54.34731 -87.12156 + -178.44461 59.00064 -86.72961 + -178.44456 58.99980 -86.72961 + -169.12409 64.86376 -86.01374 + -159.10826 68.27121 -85.15198 + -148.76555 69.22204 -84.15306 + -138.46448 67.71617 -83.02574 + -128.57354 63.75351 -81.77876 + -128.57356 63.75260 -81.77876 + -118.87158 65.44186 -80.42074 + -108.99062 66.13889 -78.96016 + -99.07952 65.84362 -77.40548 + -89.28715 64.55598 -75.76520 + -79.76235 62.27590 -74.04780 + -79.76236 62.27523 -74.04780 + -70.42300 62.13302 -72.26169 + -61.15740 61.29192 -70.41483 + -52.07037 59.75188 -68.51502 + -43.26678 57.51286 -66.57005 + -34.85147 54.57480 -64.58771 + -34.85147 54.57416 -64.58771 + -26.78098 52.93681 -62.57564 + -18.99907 50.72662 -60.54050 + -11.59164 47.94355 -58.48866 + -4.64465 44.58756 -56.42645 + 1.75598 40.65863 -54.36024 + 1.76226 40.62442 -54.36024 + 7.63574 37.60482 -52.29606 + 13.01858 34.08264 -50.23853 + 17.85276 30.40508 -48.19180 + 22.15476 27.02055 -46.16007 + 25.97854 24.02823 -44.14751 + 25.97213 23.99596 -44.14751 + 29.37495 21.43933 -42.15781 + 32.42309 19.26588 -40.19348 + 35.17360 17.47004 -38.25690 + 37.68267 16.04570 -36.35049 + 40.00555 14.98627 -34.47665 + 40.00550 14.98895 -34.47665 + 42.20023 14.33323 -32.63749 + 44.32301 14.02832 -30.83474 + 46.42588 14.06637 -29.07025 + 48.55966 14.43915 -27.34585 + 50.77393 15.13804 -25.66339 + 50.77386 15.14178 -25.66339 + 53.12071 16.20169 -24.02462 + 55.64978 17.56972 -22.43168 + 58.40654 19.23599 -20.88697 + 61.43497 21.19012 -19.39289 + 64.77742 23.42122 -17.95184 + 64.77899 23.41555 -17.95184 + 67.41440 11.96271 -16.56730 + 68.43810 1.91588 -15.24098 + 68.05642 -6.78595 -13.97266 + 66.46653 -14.20354 -12.76211 + 63.85654 -20.39745 -11.60910 + 63.85550 -20.37680 -11.60910 + 60.39192 -25.61560 -10.51216 + 56.22605 -29.74980 -9.46735 + 51.51958 -32.83202 -8.47066 + 46.42662 -34.91072 -7.51813 + 41.09433 -36.03014 -6.60575 + 41.09489 -36.01247 -6.60575 + 35.61779 -36.86677 -5.72904 + 30.07870 -36.84424 -4.88301 + 24.60687 -35.97465 -4.06303 + 19.32741 -34.28289 -3.26442 + 14.36211 -31.78895 -2.48253 + 14.36980 -31.89862 -2.48253 + 9.82323 -28.52678 -1.71247 + 5.88099 -23.77044 -0.95074 + 2.77157 -17.42473 -0.19479 + 0.73257 -9.49906 0.55797 + 0.00064 0.00252 1.31008 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7125,10 +7211,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7165,29 +7251,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 53.13200 0.00000 38.13147 0.00000 - -1.50000 53.43500 0.00000 153.26606 0.00000 - -2.00000 56.65900 45.89800 239.51060 1.18304 - -2.66667 58.46300 44.06500 361.48824 11.88154 - -3.33333 59.36100 42.95400 489.12749 24.13096 - -4.00000 59.90600 42.22100 622.89025 37.82198 - -4.66667 70.57400 41.59300 719.91616 59.26559 - -5.33333 69.67000 41.00400 789.46016 81.00492 - -6.00000 68.84900 40.37000 858.77104 103.04236 - -6.50000 68.24100 40.07300 932.16140 114.88806 - -7.00000 67.81200 39.82900 1010.43175 127.50144 - -7.50000 67.42500 39.71000 1092.01804 140.86292 - -8.28571 66.80100 39.65700 1227.02750 163.36071 - -9.07143 66.12200 39.62500 1374.00539 187.70700 - -9.85714 65.85500 39.60600 1529.91503 213.90131 - -10.64286 65.97500 39.59900 1693.80903 241.94340 - -11.42857 65.65400 39.60000 1863.22277 271.83319 - -12.21429 65.37100 39.30700 2041.28525 303.54588 - -13.00000 65.12200 37.56800 2228.03902 335.90755 - -13.75000 67.03300 36.02700 2686.49316 363.21037 - -14.50000 68.38400 34.59200 3206.69893 390.57567 - -15.25000 69.17300 33.25400 3747.39457 414.73221 - -16.00000 69.70300 32.00500 4313.14360 439.37742 + -0.75000 53.13200 0.00000 58.74308 0.00000 + -1.50000 59.48000 0.00000 213.92070 0.00000 + -2.00000 61.25600 0.00000 325.00869 0.00000 + -2.66667 62.34900 0.00000 483.26370 0.00000 + -3.33333 62.92000 39.81500 649.08942 6.25380 + -4.00000 63.27500 39.16500 822.80070 15.35186 + -4.66667 71.14200 38.61900 910.56207 32.94817 + -5.33333 70.32400 38.13900 990.49637 50.79495 + -6.00000 69.57600 37.55400 1070.09728 68.84072 + -6.50000 69.04000 37.27700 1163.71315 76.96688 + -7.00000 68.70400 37.05100 1265.18769 85.74594 + -7.75000 68.26900 36.90700 1425.43283 100.13097 + -8.50000 67.37800 36.88700 1599.72367 115.95228 + -9.25000 67.23300 36.88000 1787.54639 133.20250 + -10.00000 67.11000 36.88300 1985.58688 151.88154 + -10.75000 67.38200 36.89300 2187.63614 171.98942 + -11.50000 67.16300 36.90900 2397.80662 193.52625 + -12.25000 66.97100 36.92900 2618.02203 216.49217 + -13.00000 66.80300 36.95200 2848.31744 240.88737 + -13.75000 68.45900 36.02700 3433.01501 264.12135 + -14.50000 69.62200 34.59200 4093.16237 287.35594 + -15.25000 70.31500 33.25400 4780.03317 307.24212 + -16.00000 70.78600 32.00500 5498.95199 327.51200 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -7204,29 +7290,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.91707 50.84197 0.00000 2.49156 0.00000 8.59243 - -1.12500 20.20692 153.51278 0.00000 1.53894 0.00000 7.59704 - -1.75000 32.16051 172.48908 2.36608 1.17241 0.07357 5.36338 - -2.33333 39.67219 182.96645 16.04774 1.02016 0.40451 4.61196 - -3.00000 45.10271 191.45888 18.37413 0.92129 0.40738 4.24495 - -3.66667 50.08346 200.64414 20.53653 0.85201 0.41005 4.00620 - -4.33333 53.09954 145.53887 32.16541 0.76517 0.60576 2.74087 - -5.00000 54.24199 104.31599 32.60900 0.73120 0.60118 1.92316 - -5.66667 55.23467 103.96632 33.05617 0.70356 0.59847 1.88227 - -6.25000 57.26078 146.78073 23.69140 0.72322 0.41375 2.56337 - -6.75000 60.37230 156.54070 25.22674 0.70911 0.41785 2.59292 - -7.25000 63.44388 163.17258 26.72296 0.69802 0.42121 2.57192 - -7.89286 67.34610 171.83022 28.63356 0.68723 0.42517 2.55145 - -8.67857 72.06047 187.06277 30.98619 0.67804 0.43000 2.59591 - -9.46429 76.73092 198.43045 33.33821 0.67207 0.43448 2.58606 - -10.25000 81.37112 208.59236 35.68994 0.66839 0.43861 2.56347 - -11.03571 85.99146 215.61748 38.04155 0.66635 0.44239 2.50743 - -11.82143 90.59987 226.62497 40.36160 0.66548 0.44549 2.50138 - -12.60714 95.20234 237.68662 41.18759 0.66542 0.43263 2.49665 - -13.37500 100.82375 611.27218 36.40376 0.47789 0.36106 6.06278 - -14.12500 107.46720 693.60770 36.48706 0.47790 0.33952 6.45413 - -14.87500 114.11437 720.92752 32.20872 0.47821 0.28225 6.31759 - -15.62500 120.76679 754.33203 32.86028 0.47872 0.27210 6.24619 + -0.37500 5.91707 78.32410 0.00000 2.43014 0.00000 13.23698 + -1.12500 20.20692 206.90350 0.00000 1.48498 0.00000 10.23924 + -1.75000 32.16051 222.17598 0.00000 1.11967 0.00000 6.90835 + -2.33333 39.67219 237.38251 0.00000 0.96794 0.00000 5.98360 + -3.00000 45.10271 248.73857 9.38070 0.86945 0.20799 5.51494 + -3.66667 50.08346 260.56693 13.64709 0.80000 0.27249 5.20265 + -4.33333 53.09954 131.64206 26.39447 0.70709 0.49708 2.47916 + -5.00000 54.24199 119.90145 26.77017 0.67329 0.49353 2.21049 + -5.66667 55.23467 119.40135 27.06865 0.64566 0.49007 2.16171 + -6.25000 57.26078 187.23175 16.25232 0.67097 0.28383 3.26981 + -6.75000 60.37230 202.94909 17.55810 0.65624 0.29083 3.36163 + -7.37500 64.20643 213.66018 19.18004 0.64204 0.29872 3.32771 + -8.12500 68.74452 232.38779 21.09509 0.62968 0.30686 3.38046 + -8.87500 73.23160 250.43030 23.00030 0.62110 0.31408 3.41970 + -9.62500 77.68213 264.05399 24.90538 0.61526 0.32061 3.39916 + -10.37500 82.10727 269.39901 26.81051 0.61144 0.32653 3.28106 + -11.12500 86.51562 280.22731 28.71577 0.60908 0.33191 3.23904 + -11.87500 90.91381 293.62054 30.62124 0.60779 0.33682 3.22966 + -12.62500 95.30691 307.06055 32.52693 0.60729 0.34129 3.22181 + -13.37500 100.82375 779.59676 30.97864 0.40053 0.30726 7.73227 + -14.12500 107.46720 880.19648 30.97945 0.39986 0.28827 8.19037 + -14.87500 114.11437 915.82773 26.51491 0.39957 0.23235 8.02552 + -15.62500 120.76679 958.55844 27.02650 0.39955 0.22379 7.93727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7244,143 +7330,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.51697 0.00000 19.51697 5.65938 202 100 P - 40.02548 0.00000 40.02548 11.60628 202 100 P - 52.12426 0.00000 62.05941 17.99550 110 84 - - 37.73278 0.00000 85.58758 24.81802 110 44 - - 23.65602 0.00000 110.21970 31.96064 110 0 - - 11.43613 0.00000 97.45134 19.74075 110 0 - - 0.00000 0.00000 119.77683 24.26324 1 0 A - 0.00000 0.00000 142.28023 28.82176 1 0 A - 0.00000 0.00000 164.70023 33.36339 1 0 A - 0.00000 0.00000 186.87625 37.85560 1 0 A - 0.00000 0.00000 208.72337 42.28118 1 0 A - 2.02132 0.00000 147.35515 32.21115 1 0 A - 2.16041 0.00000 157.49553 34.42779 1 0 A - 2.29792 0.00000 167.51997 36.61908 1 0 A - 2.43386 0.00000 177.42992 38.78535 1 0 A - 2.56827 0.00000 187.22874 40.92733 1 0 A - 2.70122 0.00000 196.92097 43.04601 1 0 A - 14.85186 0.00000 169.33180 37.45605 1 0 A - 15.33954 1.30800 174.89194 38.68595 1 0 A - 15.81461 2.61600 180.30847 39.88408 1 0 A - 16.27809 3.92400 185.59276 41.05296 1 0 A - 16.73093 5.23200 190.75574 42.19501 1 0 A - 17.17402 6.54000 195.80767 43.31249 1 0 A - 17.29612 6.54000 180.22598 39.11476 1 0 A - 17.73340 7.84800 184.78240 40.10364 1 0 A - 18.16246 9.15600 189.25326 41.07396 1 0 A - 18.58401 10.46400 193.64576 42.02728 1 0 A - 18.99865 11.77200 197.96640 42.96499 1 0 A - 19.40697 13.08000 202.22101 43.88838 1 0 A - 19.53377 13.08000 190.84708 40.58787 1 0 A - 19.93888 14.38800 194.80505 41.42962 1 0 A - 20.33858 15.69600 198.71015 42.26013 1 0 A - 20.73328 17.00400 202.56638 43.08024 1 0 A - 21.12334 18.31200 206.37738 43.89074 1 0 A - 21.50912 19.62000 210.14642 44.69231 1 0 A - 31.77520 19.62000 143.77324 40.13708 1 0 A - 31.93536 20.92800 144.49792 40.33939 1 0 A - 32.09002 22.23600 145.19775 40.53476 1 0 A - 32.23957 23.54400 145.87439 40.72365 1 0 A - 32.38432 24.85200 146.52937 40.90650 1 0 A - 32.52460 26.16000 147.16407 41.08369 1 0 A - 32.27865 26.16000 103.25921 39.25994 1 0 A - 32.41369 27.46800 103.69121 39.42420 1 0 A - 32.54482 28.77600 104.11070 39.58369 1 0 A - 32.67228 30.08400 104.51842 39.73871 1 0 A - 32.79627 31.39200 104.91508 39.88952 1 0 A - 32.91701 32.70000 105.30131 40.03637 1 0 A - 32.76870 32.70000 103.06220 38.52321 1 0 A - 32.88583 34.00800 103.43059 38.66091 1 0 A - 33.00007 35.31600 103.78991 38.79521 1 0 A - 33.11159 36.62400 104.14065 38.92632 1 0 A - 33.22054 37.93200 104.48330 39.05439 1 0 A - 33.32705 39.24000 104.81828 39.17961 1 0 A - 23.04038 39.24000 142.74730 40.27400 1 0 A - 23.30143 40.22100 144.36464 40.73031 1 0 A - 23.56162 41.20200 145.97665 41.18512 1 0 A - 23.82098 42.18300 147.58355 41.63848 1 0 A - 24.07956 43.16400 149.18555 42.09046 1 0 A - 24.33737 44.14500 150.78284 42.54111 1 0 A - 24.57897 44.14500 152.52104 41.71129 1 0 A - 24.83861 45.12600 154.13217 42.15190 1 0 A - 25.09754 46.10700 155.73892 42.59132 1 0 A - 25.35579 47.08800 157.34146 43.02958 1 0 A - 25.61339 48.06900 158.93995 43.46673 1 0 A - 25.87036 49.05000 160.53455 43.90282 1 0 A - 26.07797 49.05000 159.23421 43.21613 1 0 A - 26.33640 50.03100 160.81220 43.64440 1 0 A - 26.59425 51.01200 162.38664 44.07170 1 0 A - 26.85154 51.99300 163.95768 44.49808 1 0 A - 27.10829 52.97400 165.52544 44.92357 1 0 A - 27.36453 53.95500 167.09007 45.34821 1 0 A - 27.62206 53.95500 165.76021 44.64705 1 0 A - 28.02751 55.49657 168.19334 45.30241 1 0 A - 28.43181 57.03814 170.61956 45.95591 1 0 A - 28.83504 58.57971 173.03931 46.60766 1 0 A - 29.23725 60.12129 175.45300 47.25778 1 0 A - 29.63852 61.66286 177.86102 47.90637 1 0 A - 29.97539 61.66286 180.96059 47.26616 1 0 A - 30.38032 63.20443 183.40519 47.90468 1 0 A - 30.78443 64.74600 185.84476 48.54188 1 0 A - 31.18776 66.28757 188.27965 49.17787 1 0 A - 31.59036 67.82914 190.71017 49.81271 1 0 A - 31.99230 69.37071 193.13664 50.44649 1 0 A - 32.32557 69.37071 192.40318 50.00211 1 0 A - 32.73106 70.91229 194.81667 50.62933 1 0 A - 33.13597 72.45386 197.22668 51.25565 1 0 A - 33.54033 73.99543 199.63345 51.88112 1 0 A - 33.94419 75.53700 202.03724 52.50583 1 0 A - 34.34759 77.07857 204.43828 53.12981 1 0 A - 34.67367 77.07857 202.65273 52.83903 1 0 A - 35.08047 78.62014 205.03029 53.45895 1 0 A - 35.48687 80.16171 207.40554 54.07826 1 0 A - 35.89292 81.70329 209.77869 54.69703 1 0 A - 36.29863 83.24486 212.14991 55.31530 1 0 A - 36.70404 84.78643 214.51938 55.93310 1 0 A - 37.02041 84.78643 209.82974 55.76242 1 0 A - 37.42905 86.32800 212.14586 56.37793 1 0 A - 37.83744 87.86957 214.46059 56.99307 1 0 A - 38.24561 89.41114 216.77407 57.60788 1 0 A - 38.65358 90.95271 219.08643 58.22239 1 0 A - 39.06138 92.49429 221.39781 58.83664 1 0 A - 39.33557 92.49429 220.86397 58.75943 1 0 A - 39.74608 94.03586 223.16891 59.37264 1 0 A - 40.15646 95.57743 225.47312 59.98566 1 0 A - 40.56672 97.11900 227.77668 60.59851 1 0 A - 40.97689 98.66057 230.07972 61.21122 1 0 A - 41.38697 100.20214 232.38232 61.82381 1 0 A - 40.19219 100.20214 231.94234 61.81893 1 0 A - 40.59038 101.74371 234.24023 62.43138 1 0 A - 40.98853 103.28529 236.53787 63.04376 1 0 A - 41.38665 104.82686 238.83533 63.65610 1 0 A - 41.78474 106.36843 241.13270 64.26841 1 0 A - 42.18284 107.91000 243.43003 64.88071 1 0 A - 35.20468 107.91000 591.13792 46.59562 1 0 A - 35.68430 109.38150 599.19144 47.23043 1 0 A - 36.16393 110.85300 607.24519 47.86526 1 0 A - 36.64359 112.32450 615.29928 48.50011 1 0 A - 37.12327 113.79600 623.35383 49.13500 1 0 A - 37.60299 115.26750 631.40896 49.76993 1 0 A - 35.35915 115.26750 672.16658 49.77093 1 0 A - 35.81028 116.73900 680.74239 50.40593 1 0 A - 36.26145 118.21050 689.31904 51.04099 1 0 A - 36.71267 119.68200 697.89660 51.67612 1 0 A - 37.16395 121.15350 706.47519 52.31133 1 0 A - 37.61528 122.62500 715.05488 52.94662 1 0 A - 31.27048 122.62500 699.92686 52.98106 1 0 A - 31.64574 124.09650 708.32619 53.61685 1 0 A - 32.02105 125.56800 716.72676 54.25273 1 0 A - 32.39642 127.03950 725.12862 54.88872 1 0 A - 32.77185 128.51100 733.53186 55.52480 1 0 A - 62.43728 129.98250 741.93651 56.16099 110 8 - - 62.49733 129.98250 733.55135 56.22103 110 9 - - 114.06847 131.45400 741.86248 56.85802 110 15 - - 165.33730 132.92550 750.17513 57.49512 110 22 - - 216.39706 134.39700 758.48933 58.13234 110 29 - - 267.34100 135.86850 766.80514 58.76968 110 35 - - 318.26237 137.34000 775.12259 59.40715 110 41 - + 30.06668 0.00000 30.06668 5.51986 202 100 P + 61.66087 0.00000 61.66087 11.32016 202 100 P + 70.15077 0.00000 95.60503 17.55188 110 73 - + 67.76874 0.00000 131.85112 24.20620 110 51 - + 65.69092 0.00000 169.79789 31.17275 110 39 - + 53.56679 0.00000 131.34426 19.04861 110 41 - + 48.87379 0.00000 161.43441 23.41253 110 30 - + 44.19339 0.00000 191.76434 27.81123 110 23 - + 39.46417 0.00000 221.98186 32.19362 110 18 - + 35.45814 0.00000 251.87056 36.52832 110 0 - + 32.08653 0.00000 281.31596 40.79873 110 0 - + 22.05004 0.00000 189.80201 30.76224 110 0 - + 19.03887 0.00000 202.86341 32.87917 110 0 - + 15.98125 0.00000 215.77548 34.97190 110 0 - + 12.88430 0.00000 228.54007 37.04073 110 0 - + 9.75553 0.00000 241.16152 39.08635 110 0 - + 6.60271 0.00000 253.64568 41.10973 110 0 - + 1.03176 0.00000 219.69278 35.53878 110 0 - + 0.00000 1.30800 226.90657 36.70572 1 0 A + 0.00000 2.61600 233.93403 37.84253 1 0 A + 0.00000 3.92400 240.78991 38.95157 1 0 A + 0.00000 5.23200 247.48841 40.03516 1 0 A + 0.00000 6.54000 254.04284 41.09544 1 0 A + 8.83034 6.54000 234.14507 36.91366 1 0 A + 9.05358 7.84800 240.06465 37.84690 1 0 A + 9.27263 9.15600 245.87308 38.76262 1 0 A + 9.48785 10.46400 251.57971 39.66229 1 0 A + 9.69954 11.77200 257.19297 40.54723 1 0 A + 9.90800 13.08000 262.72046 41.41866 1 0 A + 12.98073 13.08000 247.84396 38.11016 1 0 A + 13.24994 14.38800 252.98399 38.90052 1 0 A + 13.51555 15.69600 258.05535 39.68033 1 0 A + 13.77784 17.00400 263.06326 40.45038 1 0 A + 14.03705 18.31200 268.01242 41.21139 1 0 A + 14.29340 19.62000 272.90708 41.96403 1 0 A + 26.07426 19.62000 130.04502 37.09040 1 0 A + 26.20568 20.92800 130.70050 37.27735 1 0 A + 26.33260 22.23600 131.33351 37.45789 1 0 A + 26.45531 23.54400 131.94554 37.63245 1 0 A + 26.57410 24.85200 132.53798 37.80142 1 0 A + 26.68921 26.16000 133.11207 37.96516 1 0 A + 26.49897 26.16000 118.68678 36.15047 1 0 A + 26.60984 27.46800 119.18333 36.30172 1 0 A + 26.71749 28.77600 119.66549 36.44858 1 0 A + 26.82212 30.08400 120.13413 36.59132 1 0 A + 26.92391 31.39200 120.59005 36.73019 1 0 A + 27.02303 32.70000 121.03398 36.86540 1 0 A + 26.83326 32.70000 118.36300 35.35253 1 0 A + 26.92917 34.00800 118.78609 35.47890 1 0 A + 27.02272 35.31600 119.19875 35.60215 1 0 A + 27.11404 36.62400 119.60157 35.72247 1 0 A + 27.20325 37.93200 119.99508 35.84000 1 0 A + 27.29047 39.24000 120.37980 35.95491 1 0 A + 15.80572 39.24000 182.08676 37.36424 1 0 A + 15.98480 40.22100 184.14981 37.78758 1 0 A + 16.16329 41.20200 186.20607 38.20952 1 0 A + 16.34121 42.18300 188.25582 38.63013 1 0 A + 16.51860 43.16400 190.29931 39.04945 1 0 A + 16.69546 44.14500 192.33680 39.46755 1 0 A + 17.10724 44.14500 197.73775 38.60130 1 0 A + 17.28795 45.12600 199.82652 39.00906 1 0 A + 17.46817 46.10700 201.90961 39.41571 1 0 A + 17.64792 47.08800 203.98724 39.82129 1 0 A + 17.82721 48.06900 206.05962 40.22585 1 0 A + 18.00607 49.05000 208.12697 40.62943 1 0 A + 18.49481 49.05000 206.02693 39.75007 1 0 A + 18.76958 50.52150 209.08775 40.34061 1 0 A + 19.04344 51.99300 212.13844 40.92920 1 0 A + 19.31644 53.46450 215.17961 41.51595 1 0 A + 19.58864 54.93600 218.21182 42.10097 1 0 A + 19.86008 56.40750 221.23562 42.68438 1 0 A + 20.40109 56.40750 224.74252 41.86288 1 0 A + 20.67919 57.87900 227.80622 42.43356 1 0 A + 20.95662 59.35050 230.86239 43.00283 1 0 A + 21.23340 60.82200 233.91148 43.57079 1 0 A + 21.50958 62.29350 236.95393 44.13751 1 0 A + 21.78520 63.76500 239.99018 44.70307 1 0 A + 22.29735 63.76500 242.77646 44.09377 1 0 A + 22.57890 65.23650 245.84208 44.65056 1 0 A + 22.85995 66.70800 248.90219 45.20634 1 0 A + 23.14053 68.17950 251.95717 45.76120 1 0 A + 23.42067 69.65100 255.00735 46.31518 1 0 A + 23.70040 71.12250 258.05306 46.86835 1 0 A + 24.19317 71.12250 256.50288 46.42816 1 0 A + 24.47832 72.59400 259.52617 46.97538 1 0 A + 24.76311 74.06550 262.54561 47.52192 1 0 A + 25.04757 75.53700 265.56150 48.06781 1 0 A + 25.33171 77.00850 268.57409 48.61310 1 0 A + 25.61557 78.48000 271.58364 49.15784 1 0 A + 26.08888 78.48000 262.14792 48.85224 1 0 A + 26.37771 79.95150 265.05020 49.39309 1 0 A + 26.66630 81.42300 267.94999 49.93348 1 0 A + 26.95466 82.89450 270.84749 50.47344 1 0 A + 27.24281 84.36600 273.74292 51.01301 1 0 A + 27.53077 85.83750 276.63644 51.55223 1 0 A + 27.98472 85.83750 273.09323 51.35352 1 0 A + 28.27725 87.30900 275.94799 51.89034 1 0 A + 28.56963 88.78050 278.80122 52.42687 1 0 A + 28.86187 90.25200 281.65307 52.96315 1 0 A + 29.15399 91.72350 284.50370 53.49919 1 0 A + 29.44599 93.19500 287.35324 54.03503 1 0 A + 29.88085 93.19500 286.52119 53.92091 1 0 A + 30.17707 94.66650 289.36153 54.45544 1 0 A + 30.47320 96.13800 292.20105 54.98982 1 0 A + 30.76925 97.60950 295.03987 55.52406 1 0 A + 31.06525 99.08100 297.87809 56.05819 1 0 A + 31.36119 100.55250 300.71584 56.59223 1 0 A + 31.77741 100.55250 299.98489 56.54478 1 0 A + 32.07724 102.02400 302.81536 57.07830 1 0 A + 32.37704 103.49550 305.64554 57.61177 1 0 A + 32.67682 104.96700 308.47553 58.14520 1 0 A + 32.97659 106.43850 311.30540 58.67861 1 0 A + 33.27636 107.91000 314.13525 59.21202 1 0 A + 29.95826 107.91000 753.91816 39.05311 1 0 A + 30.36640 109.38150 764.18937 39.58516 1 0 A + 30.77456 110.85300 774.46086 40.11722 1 0 A + 31.18273 112.32450 784.73278 40.64931 1 0 A + 31.59093 113.79600 795.00530 41.18143 1 0 A + 31.99915 115.26750 805.27855 41.71359 1 0 A + 30.02180 115.26750 852.98745 41.64349 1 0 A + 30.40483 116.73900 863.87026 42.17480 1 0 A + 30.78790 118.21050 874.75412 42.70615 1 0 A + 31.17101 119.68200 885.63916 43.23757 1 0 A + 31.55416 121.15350 896.52549 43.76905 1 0 A + 31.93737 122.62500 907.41321 44.30060 1 0 A + 25.74253 122.62500 889.14960 44.26850 1 0 A + 26.05145 124.09650 899.81967 44.79974 1 0 A + 26.36041 125.56800 910.49130 45.33105 1 0 A + 26.66942 127.03950 921.16458 45.86245 1 0 A + 26.97848 128.51100 931.83960 46.39393 1 0 A + 27.28760 129.98250 942.51642 46.92550 1 0 A + 26.28197 129.98250 932.15163 46.92318 1 0 A + 30.33011 131.45400 942.71290 47.45481 110 0 - + 38.47912 132.92550 953.27610 47.98655 110 0 - + 46.57053 134.39700 963.84128 48.51839 110 0 - + 54.62998 135.86850 974.40849 49.05032 110 6 - + 62.68313 137.34000 984.97779 49.58237 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7393,10 +7479,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 62.846 'Clay' - -4.00 65.212 'Peat' - -6.00 232.861 'Clay' - -13.00 224.050 'Sand' + 0.00 93.610 'Clay' + -4.00 53.482 'Peat' + -6.00 172.044 'Clay' + -13.00 98.529 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7411,7 +7497,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -7433,10 +7519,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7463,7 +7549,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -7472,24 +7558,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -7500,17 +7587,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7593,78 +7681,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 117.94548 58.86000 117.94548 24.09121 202 100 P - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 262.91521 69.16050 262.91521 21.84725 202 100 P - 271.20981 70.63200 271.20981 22.53650 202 100 P - 279.50442 72.10350 279.50442 23.22575 202 100 P - 282.10636 73.57500 287.79902 23.91500 110 98 - - 281.11759 73.57500 281.11759 23.91500 202 100 P - 228.08563 75.04650 289.21963 24.60425 110 79 - - 175.12117 76.51800 297.32167 25.29350 110 59 - - 123.06494 77.98950 305.42371 25.98275 110 40 - - 71.76888 79.46100 313.52575 26.67200 110 23 - - 21.08496 80.93250 321.62779 27.36125 110 0 - - 21.08496 80.93250 318.36273 27.36125 110 0 - - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00003 0.00000 0.00003 0.00000 202 100 P + 23.66976 1.47150 23.66976 0.59704 202 100 P + 47.33953 2.94300 47.33953 1.19408 202 100 P + 71.00929 4.41450 71.00929 1.79112 202 100 P + 94.67906 5.88600 94.67906 2.38817 202 100 P + 118.34882 7.35750 118.34882 2.98521 202 100 P + 48.63809 7.35750 48.63809 2.98521 202 100 P + 58.36571 8.82900 58.36571 3.58225 202 100 P + 68.09332 10.30050 68.09332 4.17929 202 100 P + 77.82094 11.77200 77.82094 4.77633 202 100 P + 87.54856 13.24350 87.54856 5.37337 202 100 P + 97.27618 14.71500 97.27618 5.97041 202 100 P + 69.37382 14.71500 69.37382 5.97041 202 100 P + 76.31120 16.18650 76.31120 6.56745 202 100 P + 83.24858 17.65800 83.24858 7.16450 202 100 P + 90.18597 19.12950 90.18597 7.76154 202 100 P + 97.12335 20.60100 97.12335 8.35858 202 100 P + 104.06073 22.07250 104.06073 8.95562 202 100 P + 86.10925 22.07250 86.10925 8.95562 202 100 P + 91.84986 23.54400 91.84986 9.55266 202 100 P + 97.59048 25.01550 97.59048 10.14970 202 100 P + 103.33110 26.48700 103.33110 10.74674 202 100 P + 109.07171 27.95850 109.07171 11.34379 202 100 P + 114.81233 29.43000 114.81233 11.94083 202 100 P + 101.50379 29.43000 101.50379 11.94083 202 100 P + 106.57898 30.90150 106.57898 12.53787 202 100 P + 111.65417 32.37300 111.65417 13.13491 202 100 P + 110.11555 33.84450 116.72936 13.73195 110 94 - + 106.64913 35.31600 121.80455 14.32899 110 88 - + 103.22106 36.78750 126.87974 14.92603 110 81 - + 103.22106 36.78750 116.28466 14.92603 110 89 - + 99.83870 38.25900 120.93605 15.52307 110 83 - + 96.50707 39.73050 125.58743 16.12012 110 77 - + 93.23096 41.20200 130.23882 16.71716 110 72 - + 90.01518 42.67350 134.89020 17.31420 110 67 - + 86.86454 44.14500 139.54159 17.91124 110 62 - + 86.86454 44.14500 130.73258 17.91124 110 66 - + 83.78326 45.61650 135.09033 18.50828 110 62 - + 80.77480 47.08800 139.44808 19.10532 110 58 - + 77.84285 48.55950 143.80584 19.70236 110 54 - + 74.99110 50.03100 148.16359 20.29941 110 51 - + 72.22322 51.50250 152.52134 20.89645 110 47 - + 72.22322 51.50250 144.97918 20.89645 110 50 - + 69.54273 52.97400 149.12144 21.49349 110 47 - + 66.95389 54.44550 153.26370 22.09053 110 44 - + 64.46151 55.91700 157.40596 22.68757 110 41 - + 62.07039 57.38850 161.54823 23.28461 110 38 - + 59.78533 58.86000 165.69049 23.88165 110 36 - + 194.92385 58.86000 306.18963 15.40546 110 64 - + 181.65023 60.33150 317.55426 15.97725 110 57 - + 168.95887 61.80300 328.91889 16.54905 110 51 - + 156.84749 63.27450 340.28352 17.12084 110 46 - + 145.31377 64.74600 351.64815 17.69263 110 41 - + 134.35543 66.21750 363.01278 18.26443 110 37 - + 134.35543 66.21750 336.73401 18.26443 110 40 - + 123.95787 67.68900 347.27595 18.83622 110 36 - + 114.08150 69.16050 357.81789 19.40802 110 32 - + 104.68645 70.63200 368.35983 19.97981 110 28 - + 95.73289 72.10350 378.90176 20.55160 110 25 - + 87.18094 73.57500 389.44370 21.12340 110 22 - + 87.18094 73.57500 380.66080 21.12340 110 23 - + 78.98554 75.04650 390.96499 21.69519 110 20 - + 71.09713 76.51800 401.26918 22.26699 110 18 - + 63.46909 77.98950 411.57337 22.83878 110 15 - + 56.05482 79.46100 421.87756 23.41057 110 13 - + 48.80770 80.93250 432.18175 23.98237 110 11 - + 48.80770 80.93250 427.69172 23.98237 110 11 - + 41.67886 82.40400 437.88886 24.55416 110 10 - + 34.63338 83.87550 448.08600 25.12596 110 8 - + 27.64561 85.34700 458.28314 25.69775 110 6 - + 20.68989 86.81850 468.48028 26.26954 110 0 - + 13.74058 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7679,8 +7767,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.694 'Clay' - -13.00 509.692 'Sand' + -6.00 500.177 'Clay' + -13.00 279.024 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7760,52 +7848,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -7837,7 +7925,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=5 +IterationCount=2 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -7852,7 +7940,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 143.74462 210000000.000 1 2 0 'Anchor' + -1.50000 142.65945 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7862,22 +7950,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 63.64 : Percentage mobilized resistance left - 11.76 : Percentage mobilized resistance right - 562.08 : Effective left - 312.61 : Effective right + 46.09 : Percentage mobilized resistance left + 9.78 : Percentage mobilized resistance right + 584.53 : Effective left + 332.86 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 2657.66 : Max effective resistance right --10540.07 : Max moment left --25718.27 : Max moment right --6131.39 : Max mobilized moment left --2757.57 : Max mobilized moment right - 157.52 : Vertical force left - 74.19 : Vertical force right - 58.2 : Max mobilized moment percentage left - 10.7 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3402.22 : Max effective resistance right +-14781.58 : Max moment left +-32715.60 : Max moment right +-6258.91 : Max mobilized moment left +-2869.26 : Max mobilized moment right + 196.81 : Vertical force left + 95.18 : Vertical force right + 42.3 : Max mobilized moment percentage left + 8.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -7892,144 +7980,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01249 0.05939 51.34205 - 0.04456 1.02219 44.28473 - 0.38505 3.80269 37.22750 - 1.27370 8.34988 30.16947 - 2.95558 14.20850 23.10976 - 5.51922 19.72662 16.04749 - 5.54729 19.90780 16.04749 - 8.85478 23.94519 8.98095 - 12.65675 26.50058 1.90672 - 16.73257 27.60821 -5.17864 - 20.90428 28.01723 -12.27856 - 25.13853 28.44217 -19.39648 - 25.12430 -115.53101 -19.39648 - 13.58577 -115.23842 -24.15259 - 2.07688 -114.93802 -28.91392 - -9.40157 -114.62957 -33.67605 - -20.84876 -114.31293 -38.43458 - -32.26388 -113.98804 -43.18512 - -32.26514 -113.97760 -43.18512 - -47.42987 -113.47057 -49.49910 - -62.51790 -112.82708 -55.78072 - -77.51105 -112.04764 -62.01976 - -92.39126 -111.13296 -68.20599 - -107.14054 -110.08398 -74.32921 - -107.13997 -110.08187 -74.32921 - -121.72565 -108.68072 -80.37920 - -136.11548 -107.14422 -86.34615 - -150.29145 -105.47291 -92.22038 - -164.23563 -103.66755 -97.99225 - -177.93021 -101.72909 -103.65208 - -177.93019 -101.73031 -103.65208 - -191.33619 -99.33670 -109.19030 - -204.41388 -96.80585 -114.59798 - -217.14505 -94.13926 -119.86645 - -229.51172 -91.33853 -124.98702 - -241.49611 -88.40536 -129.95103 - -241.49615 -88.40641 -129.95103 - -253.02315 -84.47778 -134.74993 - -264.01804 -80.42500 -139.37620 - -274.46433 -76.24886 -143.82273 - -284.34562 -71.95011 -148.08240 - -293.64561 -67.52951 -152.14808 - -293.64561 -67.53019 -152.14808 - -302.33837 -62.84095 -156.01295 - -310.39783 -58.03078 -159.67156 - -317.80790 -53.10042 -163.11884 - -324.55263 -48.05057 -166.34977 - -330.61611 -42.88193 -169.35928 - -330.61611 -42.88260 -169.35928 - -335.97414 -37.46818 -172.14267 - -340.60238 -31.93574 -174.69685 - -344.48512 -26.28584 -177.01917 - -347.60674 -20.51897 -179.10698 - -349.95167 -14.63554 -180.95766 - -349.95168 -14.63614 -180.95766 - -351.21912 -10.70185 -182.18875 - -352.08985 -6.70178 -183.28506 - -352.55730 -2.63617 -184.24643 - -352.61491 1.49479 -185.07268 - -352.25616 5.69102 -185.76362 - -352.25616 5.69045 -185.76362 - -351.47083 10.02729 -186.31919 - -350.24850 14.43018 -186.73990 - -348.58258 18.89922 -187.02638 - -346.46645 23.43462 -187.17928 - -343.89344 28.03665 -187.19922 - -343.89344 28.03607 -187.19922 - -340.85494 32.73367 -187.08700 - -337.34672 37.43066 -186.84399 - -333.36881 42.12757 -186.47170 - -328.92119 46.82501 -185.97167 - -324.00377 51.52368 -185.34543 - -324.00364 51.52221 -185.34543 - -315.34118 58.58476 -184.11023 - -305.63602 64.79339 -182.57624 - -295.02211 70.15124 -180.75344 - -283.63288 74.66148 -178.65181 - -271.60130 78.32732 -176.28134 - -271.60132 78.32526 -176.28134 - -259.00643 81.85168 -173.65284 - -245.91469 84.64928 -170.77896 - -232.44040 86.72091 -167.67239 - -218.69743 88.06927 -164.34585 - -204.79924 88.69691 -160.81203 - -204.79925 88.69522 -160.81203 - -190.69600 90.71342 -157.08390 - -176.31668 92.20929 -153.17510 - -161.74319 93.18498 -149.09940 - -147.05711 93.64254 -144.87057 - -132.33971 93.58390 -140.50237 - -132.33972 93.58237 -140.50237 - -117.55946 94.45937 -136.00869 - -102.67463 94.91367 -131.40364 - -87.75151 94.94694 -126.70134 - -72.85613 94.56077 -121.91589 - -58.05430 93.75669 -117.06138 - -58.05430 93.75522 -117.06138 - -43.32837 93.60482 -112.15194 - -28.65476 93.08953 -107.20149 - -14.09070 92.21071 -102.22378 - 0.30678 90.96966 -97.23259 - 14.48086 89.36767 -92.24167 - 14.48084 89.36640 -92.24167 - 28.44061 88.24880 -87.26473 - 42.19907 86.80466 -82.31477 - 55.70503 85.03516 -77.40456 - 68.90743 82.94143 -72.54688 - 81.75541 80.52458 -67.75449 - 81.76284 80.49125 -67.75449 - 94.24231 78.28823 -63.03999 - 106.35198 75.78479 -58.41483 - 118.04471 72.98195 -53.89006 - 129.27353 69.88068 -49.47675 - 140.00165 66.67343 -45.18593 - 139.99060 66.51898 -45.18593 - 148.76097 50.26731 -41.21545 - 155.02522 33.10412 -37.37364 - 158.64663 15.02940 -33.66354 - 159.48847 -3.95683 -30.08822 - 157.41400 -23.85459 -26.65074 - 157.41262 -24.91657 -26.65074 - 152.30762 -43.28855 -23.35177 - 144.48747 -60.43213 -20.18430 - 134.34099 -74.31557 -17.13980 - 122.35289 -84.99728 -14.20974 - 108.99754 -92.56428 -11.38562 - 109.01256 -92.64169 -11.38562 - 94.71064 -97.57842 -8.65664 - 79.87855 -99.72487 -6.00928 - 64.92874 -99.16006 -3.43086 - 50.30183 -95.16921 -0.90869 - 36.61253 -86.48735 1.56988 - 36.56714 -86.80147 1.56988 - 24.42986 -74.59521 4.01836 - 14.31818 -59.79700 6.44605 - 6.61943 -42.42528 8.85942 - 1.71869 -22.49168 11.26492 - -0.00023 -0.00110 13.66899 + -0.01256 0.05602 50.37504 + 0.03687 0.87660 43.23304 + 0.33461 3.38091 36.09113 + 1.14031 7.66845 28.94850 + 2.69903 13.23378 21.80434 + 5.09050 18.40023 14.65784 + 5.11950 18.58747 14.65784 + 8.20051 22.24027 7.50739 + 11.71584 24.37824 0.34982 + 15.45048 25.24615 -6.81803 + 19.26527 25.62572 -13.99931 + 23.14061 26.05372 -21.19719 + 23.12588 -116.84236 -21.19719 + 11.45710 -116.52955 -26.00568 + -0.17928 -116.19430 -30.81857 + -11.78100 -115.83629 -35.63141 + -23.34578 -115.45531 -40.43974 + -34.87129 -115.05120 -45.23910 + -34.87255 -115.04081 -45.23910 + -50.17075 -114.40492 -51.61662 + -65.37328 -113.60585 -57.95990 + -80.45841 -112.64394 -64.25867 + -95.40445 -111.51976 -70.50264 + -110.18983 -110.23408 -76.68154 + -110.18926 -110.23203 -76.68154 + -124.79150 -108.77517 -82.78511 + -139.18896 -107.16053 -88.80355 + -153.36064 -105.38856 -94.72719 + -167.28562 -103.45997 -100.54637 + -180.94305 -101.37566 -106.25144 + -180.94303 -101.37687 -106.25144 + -194.29093 -98.81479 -111.83282 + -207.28654 -96.09286 -117.28165 + -219.90866 -93.21262 -122.58932 + -232.13628 -90.17577 -127.74724 + -243.94865 -86.98414 -132.74680 + -243.94869 -86.98514 -132.74680 + -255.29098 -83.12674 -137.57956 + -266.10987 -79.13449 -142.23815 + -276.38760 -75.00926 -146.71556 + -286.10647 -70.75193 -151.00480 + -295.24895 -66.36341 -155.09886 + -295.24895 -66.36402 -155.09886 + -303.78784 -61.69767 -158.99101 + -311.69588 -56.90136 -162.67590 + -318.95580 -51.97603 -166.14859 + -325.55046 -46.92259 -169.40414 + -331.46284 -41.74195 -172.43759 + -331.46285 -41.74252 -172.43759 + -336.66761 -36.30794 -175.24434 + -341.13937 -30.74745 -177.82141 + -344.86137 -25.06186 -180.16625 + -347.81701 -19.25196 -182.27634 + -349.98974 -13.31848 -184.14914 + -349.98975 -13.31894 -184.14914 + -351.10221 -8.91807 -185.39679 + -351.77091 -4.44366 -186.50971 + -351.98851 0.10368 -187.48782 + -351.74776 4.72337 -188.33104 + -351.04145 9.41489 -189.03929 + -351.04145 9.41452 -189.03929 + -349.85868 14.25278 -189.61262 + -348.18850 19.16274 -190.05169 + -346.02376 24.14402 -190.35735 + -343.35733 29.19627 -190.53042 + -340.18215 34.31919 -190.57173 + -340.18242 34.32361 -190.57173 + -334.46238 41.82773 -190.38881 + -327.69488 48.11626 -189.91718 + -320.11435 52.66801 -189.16326 + -311.98134 55.48246 -188.13347 + -303.55648 56.55947 -186.83421 + -303.55643 56.55860 -186.83421 + -294.69548 61.46339 -185.27226 + -285.15462 65.62416 -183.45590 + -275.04540 69.04166 -181.39381 + -264.47924 71.71682 -179.09465 + -253.56741 73.65079 -176.56710 + -253.56740 73.64958 -176.56710 + -242.26050 77.01922 -173.82018 + -230.48858 79.84996 -170.86413 + -218.33238 82.14334 -167.70939 + -205.87237 83.90092 -164.36641 + -193.18881 85.12433 -160.84566 + -193.18881 85.12302 -160.84566 + -180.25846 87.20737 -157.15785 + -167.04884 88.84691 -153.31443 + -153.62654 90.04331 -149.32696 + -140.05792 90.79824 -145.20699 + -126.40906 91.11331 -140.96608 + -126.40906 91.11196 -140.96608 + -112.66941 92.01850 -136.61593 + -98.82295 92.53631 -132.16854 + -84.92788 92.66690 -127.63586 + -71.04217 92.41171 -123.02986 + -57.22359 91.77209 -118.36252 + -57.22359 91.77080 -118.36252 + -43.46906 91.56427 -113.64583 + -29.77187 91.00652 -108.89165 + -16.18461 90.09874 -104.11167 + -2.75970 88.84206 -99.31760 + 10.45062 87.23757 -94.52114 + 10.45060 87.23650 -94.52114 + 23.44398 85.95440 -89.73393 + 36.22069 84.34768 -84.96699 + 48.73210 82.41728 -80.23111 + 60.92974 80.16415 -75.53706 + 72.76525 77.58917 -70.89561 + 72.76522 77.58858 -70.89561 + 84.22117 75.10639 -66.31738 + 95.28184 72.31825 -61.81191 + 105.90140 69.22510 -57.38835 + 116.03417 65.82792 -53.05582 + 125.63462 62.12772 -48.82349 + 125.63749 62.10697 -48.82349 + 133.96540 48.78448 -44.70108 + 140.22879 34.58103 -40.69452 + 144.29596 19.50254 -36.80727 + 146.03610 3.55493 -33.04276 + 145.31928 -13.25587 -29.40445 + 145.37971 -13.70005 -29.40445 + 142.11316 -29.98853 -25.89408 + 136.34557 -47.02849 -22.50650 + 128.07180 -62.72463 -19.23474 + 117.69454 -75.09376 -16.07184 + 105.70460 -84.24437 -13.01084 + 105.70040 -84.43147 -13.01084 + 92.50316 -91.02157 -10.04235 + 78.54491 -94.59196 -7.15358 + 64.27276 -95.21854 -4.33244 + 50.13335 -92.76512 -1.56683 + 36.66742 -85.82789 1.15534 + 36.58884 -85.73011 1.15534 + 24.54343 -74.34578 3.84722 + 14.43493 -59.96494 6.51825 + 6.69435 -42.77613 9.17487 + 1.74191 -22.79088 11.82357 + -0.00334 -0.01401 14.47082 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8065,10 +8153,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8105,29 +8193,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.66667 60.66400 0.00000 214.94813 0.00000 - -3.33333 60.82000 0.00000 295.09351 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.50000 60.14900 36.46100 800.53878 50.39193 - -8.28571 60.36800 36.71200 932.41935 61.47235 - -9.07143 60.54900 36.93700 1073.19877 74.39543 - -9.85714 60.70100 37.14100 1222.88248 89.16209 - -10.64286 60.83300 37.32700 1381.47404 105.77317 - -11.42857 60.94700 37.49700 1548.97583 124.22935 - -12.21429 61.04800 37.65300 1725.38951 144.53126 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8144,29 +8232,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.33333 32.06333 110.57676 0.00000 0.70763 0.00000 3.44870 - -3.00000 36.19000 120.21807 0.00000 0.70763 0.00000 3.32186 - -3.66667 40.31667 129.86101 0.00000 0.70763 0.00000 3.22103 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.25000 52.49750 158.58900 12.18453 0.70763 0.23210 3.02089 - -7.89286 56.47679 167.84799 14.10235 0.70763 0.24970 2.97198 - -8.67857 61.34036 179.17380 16.44755 0.70763 0.26814 2.92098 - -9.46429 66.20393 190.50654 18.79394 0.70763 0.28388 2.87757 - -10.25000 71.06750 201.84380 21.14137 0.70763 0.29748 2.84017 - -11.03571 75.93107 213.18410 23.48969 0.70763 0.30936 2.80760 - -11.82143 80.79464 224.52650 25.83879 0.70763 0.31981 2.77898 - -12.60714 85.65821 235.87039 28.18858 0.70763 0.32908 2.75362 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8183,144 +8271,144 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00001 0.00000 0.00001 0.00000 202 100 P - 18.33896 0.00000 19.44961 1.59216 110 94 - - 34.62293 0.00000 38.89922 3.18433 110 89 - - 51.99021 0.00000 58.34883 4.77649 110 89 - - 59.60258 0.00000 77.79845 6.36865 110 77 - - 45.50458 0.00000 97.24806 7.96082 110 47 - - 45.50458 0.00000 50.01834 7.96082 110 91 - - 31.39804 0.00000 60.02201 9.55298 110 52 - - 17.27611 0.00000 70.02568 11.14515 110 25 - - 3.82169 0.00000 80.02935 12.73731 110 0 - - 3.96903 0.00000 90.03302 14.32947 110 0 - - 4.12506 0.00000 100.03668 15.92164 110 0 - - 4.12506 0.00000 83.12851 15.92164 110 0 - - 4.23473 0.00000 88.67041 16.98308 110 0 - - 4.34826 0.00000 94.21231 18.04452 110 0 - - 4.46450 0.00000 99.75421 19.10596 110 0 - - 4.58229 0.00000 105.29611 20.16741 110 0 - - 4.70047 0.00000 110.83802 21.22885 110 0 - - 4.70047 0.00000 103.46095 21.22885 110 0 - - 4.85652 1.30800 106.30727 21.81288 110 0 - - 5.00843 2.61600 109.15360 22.39691 110 0 - - 5.15385 3.92400 111.99992 22.98094 110 0 - - 5.29043 5.23200 114.84625 23.56497 110 0 - - 5.41582 6.54000 117.69258 24.14899 110 0 - - 7.74618 6.54000 113.36397 24.14899 110 0 - - 7.89060 7.84800 116.10561 24.73302 110 0 - - 8.03041 9.15600 118.84725 25.31705 110 0 - - 8.16329 10.46400 121.58890 25.90108 110 0 - - 8.28700 11.77200 124.33054 26.48511 110 0 - - 8.39937 13.08000 127.07218 27.06914 110 0 - - 11.82668 13.08000 123.21496 27.06914 110 0 - - 11.99689 14.38800 125.87338 27.65317 110 0 - - 12.15158 15.69600 128.53180 28.23720 110 0 - - 12.28963 17.00400 131.19022 28.82123 110 0 - - 12.41000 18.31200 133.84864 29.40526 110 0 - - 12.51166 19.62000 136.50706 29.98929 110 0 - - 21.80553 19.62000 93.61408 27.88519 110 0 - - 21.83159 20.92800 93.96456 27.98959 110 0 - - 21.84953 22.23600 94.31504 28.09399 110 0 - - 21.85929 23.54400 94.66552 28.19838 110 0 - - 21.86086 24.85200 95.01601 28.30278 110 0 - - 21.85419 26.16000 95.36649 28.40718 110 0 - - 23.43199 26.16000 94.99596 28.40718 110 0 - - 23.42373 27.46800 95.34508 28.51158 110 0 - - 23.40738 28.77600 95.69420 28.61598 110 0 - - 23.38325 30.08400 96.04332 28.72038 110 0 - - 23.35168 31.39200 96.39244 28.82478 110 0 - - 23.31303 32.70000 96.74156 28.92918 110 0 - - 24.67788 32.70000 96.43144 28.92918 110 0 - - 24.63741 34.00800 96.77944 29.03358 110 0 - - 24.59074 35.31600 97.12744 29.13798 110 0 - - 24.53852 36.62400 97.47544 29.24238 110 0 - - 24.48141 37.93200 97.82344 29.34678 110 0 - - 24.42007 39.24000 98.17145 29.45118 110 0 - - 16.49345 39.24000 139.39178 31.67344 110 0 - - 16.45401 40.22100 141.31947 32.11146 110 0 - - 16.41069 41.20200 143.24716 32.54949 110 0 - - 16.36444 42.18300 145.17485 32.98751 110 0 - - 16.31621 43.16400 147.10255 33.42553 110 0 - - 16.26694 44.14500 149.03024 33.86355 110 0 - - 17.33836 44.14500 146.65286 33.86355 110 0 - - 17.30036 45.12600 148.54980 34.30157 110 0 - - 17.26339 46.10700 150.44674 34.73960 110 0 - - 17.22863 47.08800 152.34368 35.17762 110 0 - - 17.19721 48.06900 154.24062 35.61564 110 0 - - 17.17031 49.05000 156.13756 36.05366 110 0 - - 18.06460 49.05000 153.91418 36.05366 110 0 - - 18.05240 50.03100 155.78411 36.49168 110 0 - - 18.04726 51.01200 157.65404 36.92971 110 0 - - 18.05026 51.99300 159.52396 37.36773 110 0 - - 18.06247 52.97400 161.39389 37.80575 110 0 - - 18.08497 53.95500 163.26382 38.24377 110 0 - - 19.04366 53.95500 160.62077 38.24377 110 0 - - 19.11593 55.49657 163.51166 38.93209 110 0 - - 19.21670 57.03814 166.40255 39.62041 110 0 - - 19.34619 58.57971 169.29344 40.30873 110 0 - - 19.50465 60.12129 172.18433 40.99705 110 0 - - 19.69231 61.66286 175.07522 41.68537 110 0 - - 20.66939 61.66286 172.07061 41.68537 110 0 - - 20.89872 63.20443 174.91189 42.37369 110 0 - - 21.15468 64.74600 177.75316 43.06201 110 0 - - 21.43590 66.28757 180.59444 43.75033 110 0 - - 21.74098 67.82914 183.43572 44.43865 110 0 - - 22.06854 69.37071 186.27699 45.12697 110 0 - - 22.84620 69.37071 183.50891 45.12697 110 0 - - 23.20470 70.91229 186.30796 45.81529 110 0 - - 23.58327 72.45386 189.10702 46.50361 110 0 - - 23.98092 73.99543 191.90607 47.19193 110 0 - - 24.39663 75.53700 194.70513 47.88025 110 0 - - 24.82939 77.07857 197.50418 48.56857 110 0 - - 25.44626 77.07857 194.93712 48.56857 110 0 - - 25.90239 78.62014 197.69979 49.25689 110 0 - - 26.37397 80.16171 200.46246 49.94521 110 0 - - 26.86035 81.70329 203.22514 50.63353 110 0 - - 27.36090 83.24486 205.98781 51.32185 110 0 - - 27.87497 84.78643 208.75049 52.01017 110 0 - - 28.36203 84.78643 206.35662 52.01017 110 0 - - 28.89442 86.32800 209.08761 52.69849 110 0 - - 29.43936 87.86957 211.81860 53.38681 110 0 - - 29.99645 89.41114 214.54960 54.07513 110 0 - - 30.56531 90.95271 217.28059 54.76345 110 0 - - 31.14554 92.49429 220.01158 55.45178 110 0 - - 31.49694 92.49429 217.76862 55.45178 110 0 - - 32.09188 94.03586 220.47178 56.14010 110 0 - - 32.69757 95.57743 223.17493 56.82842 110 0 - - 33.31375 97.11900 225.87808 57.51674 110 0 - - 33.94012 98.66057 228.58123 58.20506 110 0 - - 34.57641 100.20214 231.28438 58.89338 110 0 - - 33.38651 100.20214 229.17417 58.89338 110 0 - - 34.02067 101.74371 231.85266 59.58170 110 0 - - 34.66418 103.28529 234.53115 60.27002 110 0 - - 35.31668 104.82686 237.20964 60.95834 110 0 - - 35.97784 106.36843 239.88813 61.64666 110 0 - - 36.64730 107.91000 242.56661 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.06785 110.85300 609.04150 45.42350 1 0 A - 25.44822 112.32450 618.28301 46.11275 1 0 A - 25.82860 113.79600 627.52452 46.80200 1 0 A - 26.20898 115.26750 636.76604 47.49125 1 0 A - 26.26150 115.26750 585.69985 47.49125 1 0 A - 26.64264 116.73900 594.20023 48.18050 1 0 A - 27.02378 118.21050 602.70061 48.86975 1 0 A - 28.05442 119.68200 611.20099 49.55900 110 0 - - 29.64201 121.15350 619.70137 50.24825 110 0 - - 31.21902 122.62500 628.20175 50.93750 110 0 - - 28.21355 122.62500 610.51735 50.93750 1 0 A - 28.59532 124.09650 618.77844 51.62675 1 0 A - 28.97708 125.56800 627.03952 52.31600 1 0 A - 29.35885 127.03950 635.30061 53.00525 1 0 A - 44.60756 128.51100 643.56170 53.69450 110 0 - - 70.08260 129.98250 651.82278 54.38375 110 11 - - 70.08260 129.98250 642.44252 54.38375 110 11 - - 95.25656 131.45400 650.58472 55.07300 110 15 - - 120.22276 132.92550 658.72693 55.76225 110 18 - - 145.04570 134.39700 666.86913 56.45150 110 22 - - 169.78991 135.86850 675.01133 57.14075 110 25 - - 194.51991 137.34000 683.15353 57.83000 110 28 - + 0.00000 0.00000 0.00001 0.00000 1 0 A + 15.62994 0.00000 27.59211 1.44679 110 57 - + 32.07129 0.00000 55.18421 2.89358 110 58 - + 49.59610 0.00000 82.77632 4.34037 110 60 - + 56.41024 0.00000 110.36843 5.78715 110 51 - + 41.99841 0.00000 137.96054 7.23394 110 30 - + 41.99841 0.00000 68.20749 7.23394 110 62 - + 27.57867 0.00000 81.84899 8.68073 110 34 - + 13.14469 0.00000 95.49049 10.12752 110 14 - + 3.38695 0.00000 109.13199 11.57431 110 0 - + 3.84286 0.00000 122.77349 13.02110 110 0 - + 4.30962 0.00000 136.41499 14.46788 110 0 - + 4.30962 0.00000 111.45332 14.46788 110 0 - + 4.62779 0.00000 118.88354 15.43241 110 0 - + 4.95092 0.00000 126.31376 16.39693 110 0 - + 5.27785 0.00000 133.74398 17.36146 110 0 - + 5.60740 0.00000 141.17421 18.32599 110 0 - + 5.93841 0.00000 148.60443 19.29051 110 0 - + 5.93841 0.00000 137.71826 19.29051 110 0 - + 6.37987 1.30800 141.50704 19.82121 110 0 - + 6.81901 2.61600 145.29582 20.35192 110 0 - + 7.25334 3.92400 149.08461 20.88262 110 0 - + 7.68040 5.23200 152.87339 21.41333 110 0 - + 8.09769 6.54000 156.66217 21.94403 110 0 - + 8.22308 6.54000 150.27634 21.94403 110 0 - + 8.60736 7.84800 153.91069 22.47473 110 0 - + 8.98805 9.15600 157.54503 23.00544 110 0 - + 9.36258 10.46400 161.17938 23.53614 110 0 - + 9.72845 11.77200 164.81372 24.06684 110 0 - + 10.08326 13.08000 168.44806 24.59755 110 0 - + 13.51056 13.08000 162.75727 24.59755 110 0 - + 13.92321 14.38800 166.26883 25.12825 110 0 - + 14.31997 15.69600 169.78039 25.65895 110 0 - + 14.69936 17.00400 173.29196 26.18966 110 0 - + 15.05993 18.31200 176.80352 26.72036 110 0 - + 15.40024 19.62000 180.31508 27.25106 110 0 - + 21.00075 19.62000 112.91072 24.82969 110 0 - + 21.13137 20.92800 113.33345 24.92265 110 0 - + 21.25285 22.23600 113.75618 25.01561 110 0 - + 21.36496 23.54400 114.17890 25.10857 110 0 - + 21.46749 24.85200 114.60163 25.20153 110 0 - + 21.56020 26.16000 115.02436 25.29449 110 0 - + 23.13800 26.16000 114.42115 25.29449 110 0 - + 23.22737 27.46800 114.84166 25.38745 110 0 - + 23.30669 28.77600 115.26217 25.48041 110 0 - + 23.37611 30.08400 115.68268 25.57337 110 0 - + 23.43580 31.39200 116.10319 25.66633 110 0 - + 23.48591 32.70000 116.52370 25.75929 110 0 - + 24.85077 32.70000 116.01583 25.75929 110 0 - + 24.89641 34.00800 116.43451 25.85225 110 0 - + 24.93299 35.31600 116.85318 25.94521 110 0 - + 24.96101 36.62400 117.27186 26.03817 110 0 - + 24.98091 37.93200 117.69054 26.13113 110 0 - + 24.99319 39.24000 118.10921 26.22409 110 0 - + 23.10196 39.24000 183.43874 28.78144 110 0 - + 23.17615 40.22100 185.97557 29.17947 110 0 - + 23.24119 41.20200 188.51241 29.57750 110 0 - + 23.29774 42.18300 191.04924 29.97553 110 0 - + 23.34644 43.16400 193.58607 30.37355 110 0 - + 23.38794 44.14500 196.12290 30.77158 110 0 - + 24.45936 44.14500 192.60019 30.77158 110 0 - + 24.50565 45.12600 195.09146 31.16961 110 0 - + 24.54603 46.10700 197.58272 31.56764 110 0 - + 24.58119 47.08800 200.07399 31.96566 110 0 - + 24.61180 48.06900 202.56525 32.36369 110 0 - + 24.63852 49.05000 205.05652 32.76172 110 0 - + 25.72647 49.05000 201.00495 32.76172 110 0 - + 25.77707 50.52150 204.66801 33.35876 110 0 - + 25.82271 51.99300 208.33107 33.95580 110 0 - + 25.86527 53.46450 211.99414 34.55284 110 0 - + 25.90662 54.93600 215.65720 35.14988 110 0 - + 25.94862 56.40750 219.32027 35.74693 110 0 - + 27.02615 56.40750 214.81611 35.74693 110 0 - + 27.08517 57.87900 218.40395 36.34397 110 0 - + 27.14754 59.35050 221.99178 36.94101 110 0 - + 27.21418 60.82200 225.57962 37.53805 110 0 - + 27.28603 62.29350 229.16745 38.13509 110 0 - + 27.36403 63.76500 232.75529 38.73213 110 0 - + 28.24034 63.76500 228.61475 38.73213 110 0 - + 28.33634 65.23650 232.13876 39.32917 110 0 - + 28.43960 66.70800 235.66278 39.92621 110 0 - + 28.55038 68.17950 239.18679 40.52326 110 0 - + 28.66898 69.65100 242.71080 41.12030 110 0 - + 28.79568 71.12250 246.23481 41.71734 110 0 - + 29.49993 71.12250 242.40131 41.71734 110 0 - + 29.64320 72.59400 245.87046 42.31438 110 0 - + 29.79463 74.06550 249.33961 42.91142 110 0 - + 29.95411 75.53700 252.80875 43.50846 110 0 - + 30.12152 77.00850 256.27790 44.10550 110 0 - + 30.29675 78.48000 259.74705 44.70255 110 0 - + 30.86086 78.48000 256.17685 44.70255 110 0 - + 31.04997 79.95150 259.59831 45.29959 110 0 - + 31.24642 81.42300 263.01977 45.89663 110 0 - + 31.44991 82.89450 266.44124 46.49367 110 0 - + 31.66017 84.36600 269.86270 47.09071 110 0 - + 31.87689 85.83750 273.28417 47.68775 110 0 - + 32.32673 85.83750 269.94257 47.68775 110 0 - + 32.55431 87.30900 273.32219 48.28479 110 0 - + 32.78773 88.78050 276.70182 48.88183 110 0 - + 33.02673 90.25200 280.08145 49.47888 110 0 - + 33.27102 91.72350 283.46108 50.07592 110 0 - + 33.52034 93.19500 286.84071 50.67296 110 0 - + 33.82431 93.19500 283.69963 50.67296 110 0 - + 34.08139 94.66650 287.04225 51.27000 110 0 - + 34.34307 96.13800 290.38487 51.86704 110 0 - + 34.60924 97.60950 293.72749 52.46408 110 0 - + 34.87981 99.08100 297.07011 53.06112 110 0 - + 35.15466 100.55250 300.41273 53.65817 110 0 - + 33.91693 100.55250 297.44910 53.65817 110 0 - + 34.18433 102.02400 300.75875 54.25521 110 0 - + 34.45607 103.49550 304.06839 54.85225 110 0 - + 34.73237 104.96700 307.37804 55.44929 110 0 - + 35.01342 106.43850 310.68768 56.04633 110 0 - + 35.29942 107.91000 313.99732 56.64337 110 0 - + 32.15155 107.91000 734.00940 36.53923 110 0 - + 32.06422 109.38150 745.49575 37.11102 110 0 - + 32.00503 110.85300 756.98209 37.68281 110 0 - + 31.97402 112.32450 768.46843 38.25461 110 0 - + 31.97124 113.79600 779.95478 38.82640 110 0 - + 31.99674 115.26750 791.44112 39.39820 110 0 - + 29.75191 115.26750 738.87493 39.39820 110 0 - + 29.77635 116.73900 749.59837 39.96999 110 0 - + 29.82632 118.21050 760.32181 40.54178 110 0 - + 29.89984 119.68200 771.04525 41.11358 110 0 - + 29.99490 121.15350 781.76869 41.68537 110 0 - + 30.10952 122.62500 792.49213 42.25717 110 0 - + 24.84373 122.62500 772.62437 42.25717 110 0 - + 24.88099 124.09650 783.07897 42.82896 110 0 - + 24.93319 125.56800 793.53357 43.40075 110 0 - + 24.99794 127.03950 803.98818 43.97255 110 0 - + 28.87604 128.51100 814.44278 44.54434 110 0 - + 56.66951 129.98250 824.89738 45.11614 110 7 - + 56.66951 129.98250 814.08791 45.11614 110 7 - + 84.16016 131.45400 824.40552 45.68793 110 10 - + 111.44217 132.92550 834.72313 46.25972 110 13 - + 138.58023 134.39700 845.04073 46.83152 110 16 - + 165.63905 135.86850 855.35834 47.40331 110 19 - + 192.68331 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8333,10 +8421,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 59.403 'Clay' - -4.00 46.529 'Peat' - -6.00 174.194 'Clay' - -13.00 166.454 'Sand' + 0.00 59.891 'Clay' + -4.00 46.380 'Peat' + -6.00 207.480 'Clay' + -13.00 161.769 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8351,7 +8439,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -8373,10 +8461,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8403,7 +8491,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -8412,24 +8500,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -8440,17 +8529,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8533,78 +8623,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 114.46307 58.86000 117.94548 24.09121 110 97 - - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 223.69025 69.16050 262.91521 21.84725 110 85 - - 193.93446 70.63200 271.20981 22.53650 110 72 - - 165.32317 72.10350 279.50442 23.22575 110 59 - - 137.77116 73.57500 287.79902 23.91500 110 48 - - 137.77116 73.57500 281.11759 23.91500 110 49 - - 111.17070 75.04650 289.21963 24.60425 110 38 - - 85.38634 76.51800 297.32167 25.29350 110 29 - - 60.29134 77.98950 305.42371 25.98275 110 20 - - 35.75894 79.46100 313.52575 26.67200 110 11 - - 11.66240 80.93250 321.62779 27.36125 110 0 - - 15.27710 80.93250 318.36273 27.36125 1 0 A - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00000 0.00000 0.00003 0.00000 1 0 A + 6.66779 1.47150 23.66976 0.59704 110 28 - + 23.25063 2.94300 47.33953 1.19408 110 49 - + 39.83734 4.41450 71.00929 1.79112 110 56 - + 56.42600 5.88600 94.67906 2.38817 110 60 - + 73.01470 7.35750 118.34882 2.98521 110 62 - + 25.81940 7.35750 48.63809 2.98521 110 53 - + 32.96736 8.82900 58.36571 3.58225 110 56 - + 40.11254 10.30050 68.09332 4.17929 110 59 - + 47.25399 11.77200 77.82094 4.77633 110 61 - + 54.39073 13.24350 87.54856 5.37337 110 62 - + 61.52180 14.71500 97.27618 5.97041 110 63 - + 42.62896 14.71500 69.37382 5.97041 110 61 - + 47.86426 16.18650 76.31120 6.56745 110 63 - + 53.09269 17.65800 83.24858 7.16450 110 64 - + 58.31396 19.12950 90.18597 7.76154 110 65 - + 63.52775 20.60100 97.12335 8.35858 110 65 - + 68.73378 22.07250 104.06073 8.95562 110 66 - + 56.57681 22.07250 86.10925 8.95562 110 66 - + 60.96440 23.54400 91.84986 9.55266 110 66 - + 65.34409 25.01550 97.59048 10.14970 110 67 - + 69.71597 26.48700 103.33110 10.74674 110 67 - + 74.08015 27.95850 109.07171 11.34379 110 68 - + 78.43673 29.43000 114.81233 11.94083 110 68 - + 69.42255 29.43000 101.50379 11.94083 110 68 - + 73.32098 30.90150 106.57898 12.53787 110 69 - + 77.21224 32.37300 111.65417 13.13491 110 69 - + 81.09662 33.84450 116.72936 13.73195 110 69 - + 84.97438 35.31600 121.80455 14.32899 110 70 - + 88.84580 36.78750 126.87974 14.92603 110 70 - + 81.66837 36.78750 116.28466 14.92603 110 70 - + 85.24666 38.25900 120.93605 15.52307 110 70 - + 88.81921 39.73050 125.58743 16.12012 110 71 - + 92.38629 41.20200 130.23882 16.71716 110 71 - + 95.94815 42.67350 134.89020 17.31420 110 71 - + 99.50507 44.14500 139.54159 17.91124 110 71 - + 93.53668 44.14500 130.73258 17.91124 110 72 - + 96.88996 45.61650 135.09033 18.50828 110 72 - + 100.23870 47.08800 139.44808 19.10532 110 72 - + 103.58300 48.55950 143.80584 19.70236 110 72 - + 106.92294 50.03100 148.16359 20.29941 110 72 - + 110.25863 51.50250 152.52134 20.89645 110 72 - + 105.14786 51.50250 144.97918 20.89645 110 73 - + 108.33334 52.97400 149.12144 21.49349 110 73 - + 111.51448 54.44550 153.26370 22.09053 110 73 - + 114.69108 55.91700 157.40596 22.68757 110 73 - + 117.86294 57.38850 161.54823 23.28461 110 73 - + 121.02985 58.86000 165.69049 23.88165 110 73 - + 203.87329 58.86000 306.18963 15.40546 110 67 - + 212.20418 60.33150 317.55426 15.97725 110 67 - + 220.50694 61.80300 328.91889 16.54905 110 67 - + 228.78150 63.27450 340.28352 17.12084 110 67 - + 237.02783 64.74600 351.64815 17.69263 110 67 - + 245.24587 66.21750 363.01278 18.26443 110 68 - + 230.08456 66.21750 336.73401 18.26443 110 68 - + 237.80035 67.68900 347.27595 18.83622 110 68 - + 244.47305 69.16050 357.81789 19.40802 110 68 - + 212.32723 70.63200 368.35983 19.97981 110 58 - + 181.27001 72.10350 378.90176 20.55160 110 48 - + 151.23178 73.57500 389.44370 21.12340 110 39 - + 151.23178 73.57500 380.66080 21.12340 110 40 - + 122.11873 75.04650 390.96499 21.69519 110 31 - + 93.80283 76.51800 401.26918 22.26699 110 23 - + 66.16318 77.98950 411.57337 22.83878 110 16 - + 39.07887 79.46100 421.87756 23.41057 110 9 - + 12.42900 80.93250 432.18175 23.98237 110 0 - + 12.42900 80.93250 427.69172 23.98237 110 0 - + 9.65636 82.40400 437.88886 24.55416 110 0 - + 10.12515 83.87550 448.08600 25.12596 110 0 - + 10.59142 85.34700 458.28314 25.69775 110 0 - + 11.05632 86.81850 468.48028 26.26954 110 0 - + 11.52098 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8619,8 +8709,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.420 'Clay' - -13.00 406.557 'Sand' + -6.00 438.139 'Clay' + -13.00 396.901 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8793,20 +8883,20 @@ PartialFactorSet=13 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 8.11 : Percentage mobilized resistance right - 275.90 : Effective left - 275.92 : Effective right + 13.45 : Percentage mobilized resistance left + 8.12 : Percentage mobilized resistance right + 276.20 : Effective left + 276.22 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2033.67 : Max effective resistance left + 2053.74 : Max effective resistance left 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 78.48 : Vertical force left - 73.70 : Vertical force right + 78.56 : Vertical force left + 73.77 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -8823,150 +8913,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -6.91935 - 0.00000 0.00000 -6.91223 - 0.00000 0.00000 -6.90511 - 0.00000 0.00000 -6.89799 - 0.00000 0.00000 -6.89087 - 0.00000 0.00000 -6.88375 - 0.00000 -0.00001 -6.88375 - 0.00000 -0.00001 -6.87663 - 0.00000 -0.00001 -6.86951 - 0.00000 -0.00001 -6.86239 - 0.00000 -0.00001 -6.85528 - 0.00202 0.04050 -6.84816 - 0.00201 0.04026 -6.84816 - 0.00987 0.12836 -6.84340 - 0.02995 0.28464 -6.83866 - 0.06907 0.50911 -6.83393 - 0.13404 0.80175 -6.82923 - 0.23169 1.16256 -6.82459 - 0.23169 1.16256 -6.82459 - 0.28138 1.32279 -6.82275 - 0.33758 1.48759 -6.82093 - 0.40045 1.65695 -6.81913 - 0.47019 1.83087 -6.81736 - 0.54698 2.00934 -6.81561 - 0.54699 2.00926 -6.81561 - 0.80721 2.21589 -6.81062 - 1.05597 1.85160 -6.80608 - 1.24221 1.25270 -6.80209 - 1.35666 0.65503 -6.79876 - 1.39946 0.05835 -6.79618 - 1.39945 0.05842 -6.79618 - 1.37070 -0.53752 -6.79441 - 1.27047 -1.13301 -6.79341 - 1.09879 -1.72826 -6.79307 - 0.85568 -2.32351 -6.79331 - 0.54114 -2.91890 -6.79402 - 0.54115 -2.91887 -6.79402 - 0.15514 -3.51457 -6.79508 - -0.30236 -4.11064 -6.79623 - -0.83142 -4.70705 -6.79717 - -1.43207 -5.30371 -6.79762 - -2.10431 -5.90038 -6.79728 - -2.10431 -5.90049 -6.79728 - -2.84483 -5.20725 -6.79551 - -3.49289 -4.51360 -6.79179 - -4.04842 -3.81923 -6.78576 - -4.51130 -3.12375 -6.77701 - -4.88135 -2.42673 -6.76519 - -4.88135 -2.42693 -6.76519 - -5.15836 -1.72789 -6.74995 - -5.34201 -1.02632 -6.73119 - -5.43191 -0.32167 -6.70885 - -5.42763 0.38658 -6.68286 - -5.32864 1.09899 -6.65316 - -5.32864 1.09877 -6.65316 - -5.13439 1.81589 -6.61975 - -4.84417 2.53827 -6.58282 - -4.45726 3.26640 -6.54266 - -3.97285 4.00075 -6.49951 - -3.39010 4.74175 -6.45365 - -3.39010 4.74160 -6.45365 - -2.93582 4.34567 -6.41770 - -2.52063 3.95997 -6.38061 - -2.14348 3.58478 -6.34255 - -1.80331 3.22037 -6.30365 - -1.49904 2.86695 -6.26406 - -1.49904 2.86688 -6.26406 - -1.22956 2.52463 -6.22391 - -0.99374 2.19368 -6.18329 - -0.79044 1.87416 -6.14228 - -0.61852 1.56617 -6.10095 - -0.47682 1.26978 -6.05939 - -0.47682 1.26974 -6.05939 - -0.31839 0.84704 -5.99676 - -0.22139 0.45070 -5.93386 - -0.18186 0.08083 -5.87072 - -0.19581 -0.26249 -5.80738 - -0.25927 -0.57916 -5.74388 - -0.25927 -0.57921 -5.74388 - -0.36823 -0.86918 -5.68020 - -0.51868 -1.13234 -5.61621 - -0.70658 -1.36852 -5.55174 - -0.92788 -1.57748 -5.48663 - -1.17845 -1.75894 -5.42073 - -1.17844 -1.75913 -5.42073 - -1.45418 -1.91269 -5.35383 - -1.75083 -2.03790 -5.28568 - -2.06410 -2.13417 -5.21601 - -2.38960 -2.20079 -5.14454 - -2.72282 -2.23697 -5.07101 - -2.72281 -2.23738 -5.07101 - -3.05917 -2.24219 -4.99514 - -3.39384 -2.21457 -4.91662 - -3.72186 -2.15336 -4.83518 - -4.03811 -2.05727 -4.75053 - -4.33723 -1.92489 -4.66240 - -4.33722 -1.92554 -4.66240 - -4.61377 -1.75536 -4.57050 - -4.86186 -1.54575 -4.47461 - -5.07544 -1.29498 -4.37455 - -5.24820 -1.00128 -4.27015 - -5.37358 -0.66277 -4.16121 - -5.37358 -0.66357 -4.16121 - -5.44482 -0.27833 -4.04757 - -5.45464 0.15564 -3.92922 - -5.39559 0.64028 -3.80623 - -5.25992 1.17755 -3.67863 - -5.03960 1.76937 -3.54649 - -5.03961 1.76863 -3.54649 - -4.72641 2.41688 -3.40989 - -4.31163 3.12336 -3.26921 - -3.78641 3.88969 -3.12489 - -3.14166 4.71729 -2.97740 - -2.36810 5.60742 -2.82719 - -2.36813 5.60710 -2.82719 - -1.45634 6.56077 -2.67478 - -0.39669 7.57873 -2.52111 - 0.82051 8.66127 -2.36721 - 2.20492 9.80827 -2.21416 - 3.76618 11.01915 -2.06300 - 3.76871 11.00121 -2.06300 - 5.22032 8.37454 -1.91519 - 6.28930 5.91241 -1.77189 - 7.00638 3.69700 -1.63376 - 7.41260 1.76559 -1.50142 - 7.54962 0.10534 -1.37551 - 7.54841 0.10527 -1.37551 - 7.45585 -1.29770 -1.25638 - 7.17127 -2.45724 -1.14368 - 6.73019 -3.38649 -1.03705 - 6.16622 -4.09782 -0.93614 - 5.51116 -4.60283 -0.84056 - 5.51128 -4.59875 -0.84056 - 4.79588 -4.90812 -0.74981 - 4.04816 -5.03127 -0.66320 - 3.29542 -4.97619 -0.58008 - 2.56388 -4.74956 -0.49982 - 1.87886 -4.35670 -0.42177 - 1.87898 -4.35519 -0.42177 - 1.26532 -3.80008 -0.34528 - 0.74693 -3.08545 -0.26986 - 0.34757 -2.21323 -0.19518 - 0.09078 -1.18461 -0.12092 - -0.00002 -0.00011 -0.04672 + 0.00000 0.00000 -6.75383 + 0.00000 0.00000 -6.75139 + 0.00000 0.00000 -6.74895 + 0.00000 0.00000 -6.74650 + 0.00000 0.00000 -6.74406 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.73918 + 0.00000 0.00000 -6.73674 + 0.00000 0.00000 -6.73430 + 0.00000 0.00000 -6.73186 + 0.00265 0.05297 -6.72942 + 0.00264 0.05289 -6.72942 + 0.01259 0.15740 -6.72778 + 0.03638 0.32965 -6.72615 + 0.08078 0.56964 -6.72455 + 0.15257 0.87738 -6.72298 + 0.25851 1.25284 -6.72147 + 0.25851 1.25284 -6.72147 + 0.31193 1.41882 -6.72089 + 0.37208 1.58929 -6.72033 + 0.43913 1.76424 -6.71979 + 0.51328 1.94369 -6.71928 + 0.59469 2.12761 -6.71880 + 0.59469 2.12762 -6.71880 + 0.86094 2.12195 -6.71763 + 1.08139 1.55221 -6.71693 + 1.23348 0.98262 -6.71680 + 1.31722 0.41296 -6.71732 + 1.33258 -0.15700 -6.71856 + 1.33258 -0.15691 -6.71856 + 1.27953 -0.72741 -6.72059 + 1.15797 -1.29872 -6.72333 + 0.96779 -1.87105 -6.72668 + 0.70887 -2.44459 -6.73052 + 0.38104 -3.01949 -6.73476 + 0.38104 -3.01947 -6.73476 + -0.01586 -3.59583 -6.73926 + -0.48202 -4.17371 -6.74375 + -1.01761 -4.75304 -6.74794 + -1.62280 -5.33368 -6.75154 + -2.29773 -5.91538 -6.75424 + -2.29773 -5.91550 -6.75424 + -3.03983 -5.21608 -6.75572 + -3.68869 -4.51672 -6.75512 + -4.24428 -3.81709 -6.75207 + -4.70655 -3.11679 -6.74617 + -5.07537 -2.41537 -6.73707 + -5.07537 -2.41558 -6.73707 + -5.35060 -1.71254 -6.72442 + -5.53195 -1.00733 -6.70811 + -5.61910 -0.29942 -6.68809 + -5.61165 0.41177 -6.66430 + -5.50913 1.12680 -6.63667 + -5.50913 1.12657 -6.63667 + -5.31101 1.84601 -6.60521 + -5.01664 2.57042 -6.57011 + -4.62532 3.30032 -6.53166 + -4.13629 4.03620 -6.49011 + -3.54871 4.77849 -6.44573 + -3.54872 4.77833 -6.44573 + -3.09066 4.38448 -6.41082 + -2.67149 4.00056 -6.37472 + -2.29021 3.62690 -6.33758 + -1.94576 3.26376 -6.29955 + -1.63710 2.91138 -6.26077 + -1.63710 2.91130 -6.26077 + -1.36313 2.56986 -6.22138 + -1.12276 2.23952 -6.18147 + -0.91485 1.92042 -6.14112 + -0.73829 1.61266 -6.10040 + -0.59194 1.31635 -6.05941 + -0.59194 1.31630 -6.05941 + -0.42653 0.89343 -5.99755 + -0.32261 0.49662 -5.93532 + -0.27624 0.12601 -5.87277 + -0.28349 -0.21827 -5.80993 + -0.34040 -0.53610 -5.74686 + -0.34039 -0.53617 -5.74686 + -0.44300 -0.82746 -5.68354 + -0.58730 -1.09209 -5.61984 + -0.76928 -1.32984 -5.55561 + -0.98489 -1.54047 -5.49068 + -1.23005 -1.72366 -5.42491 + -1.23004 -1.72385 -5.42491 + -1.50062 -1.87919 -5.35810 + -1.79238 -2.00621 -5.29000 + -2.10103 -2.10429 -5.22034 + -2.42219 -2.17273 -5.14885 + -2.75133 -2.21071 -5.07528 + -2.75132 -2.21112 -5.07528 + -3.08388 -2.21770 -4.99933 + -3.41500 -2.19182 -4.92071 + -3.73974 -2.13230 -4.83916 + -4.05295 -2.03786 -4.75439 + -4.34928 -1.90707 -4.66611 + -4.34927 -1.90772 -4.66611 + -4.62326 -1.73907 -4.57406 + -4.86902 -1.53092 -4.47801 + -5.08048 -1.28155 -4.37779 + -5.25133 -0.98917 -4.27321 + -5.37498 -0.65191 -4.16410 + -5.37498 -0.65271 -4.16410 + -5.44468 -0.26864 -4.05029 + -5.45313 0.16422 -3.93177 + -5.39288 0.64783 -3.80859 + -5.25615 1.18414 -3.68083 + -5.03490 1.77507 -3.54852 + -5.03491 1.77433 -3.54852 + -4.72092 2.42177 -3.41176 + -4.30547 3.12749 -3.27092 + -3.77968 3.89313 -3.12645 + -3.13446 4.72012 -2.97881 + -2.36052 5.60968 -2.82846 + -2.36055 5.60936 -2.82846 + -1.44846 6.56253 -2.67592 + -0.38857 7.58004 -2.52211 + 0.82879 8.66218 -2.36810 + 2.21331 9.80884 -2.21493 + 3.77463 11.01942 -2.06367 + 3.77717 11.00147 -2.06367 + 5.22877 8.37415 -1.91575 + 6.29763 5.91123 -1.77237 + 7.01447 3.69491 -1.63414 + 7.42032 1.76277 -1.50173 + 7.55686 0.10194 -1.37575 + 7.55565 0.10187 -1.37575 + 7.46255 -1.30153 -1.25655 + 7.17737 -2.46138 -1.14380 + 6.73565 -3.39082 -1.03712 + 6.17102 -4.10223 -0.93615 + 5.51531 -4.60722 -0.84053 + 5.51543 -4.60313 -0.84053 + 4.79938 -4.91239 -0.74974 + 4.05103 -5.03534 -0.66309 + 3.29769 -4.97999 -0.57993 + 2.56561 -4.75302 -0.49963 + 1.88010 -4.35975 -0.42156 + 1.88022 -4.35824 -0.42156 + 1.26614 -3.80264 -0.34503 + 0.74740 -3.08747 -0.26958 + 0.34778 -2.21464 -0.19488 + 0.09084 -1.18534 -0.12058 + -0.00002 -0.00011 -0.04636 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9133,139 +9223,139 @@ Status character 0.00000 0.00000 95.49049 10.12752 1 0 A 0.00000 0.00000 109.13199 11.57431 1 0 A 0.00000 0.00000 122.77349 13.02110 1 0 A - 0.77157 0.00000 136.41499 14.46788 110 0 - - 0.77157 0.00000 111.45332 14.46788 110 0 - - 1.74560 0.00000 118.88354 15.43241 110 0 - - 2.71962 0.00000 126.31376 16.39693 110 0 - - 3.69361 0.00000 133.74398 17.36146 110 0 - - 4.66752 0.00000 141.17421 18.32599 110 0 - - 5.64134 0.00000 148.60443 19.29051 110 0 - - 5.64134 0.00000 140.04174 19.29051 110 0 - - 5.80422 0.39240 141.19755 19.44972 110 0 - - 5.96707 0.78480 142.35336 19.60893 110 0 - - 6.12988 1.17720 143.50917 19.76814 110 0 - - 6.29264 1.56960 144.66498 19.92736 110 0 - - 6.45534 1.96200 145.82080 20.08657 110 0 - - 6.45534 1.96200 141.80292 20.08657 110 0 - - 6.94296 3.13920 145.17481 20.56420 110 0 - - 7.42968 4.31640 148.54670 21.04183 110 0 - - 7.91528 5.49360 151.91860 21.51947 110 0 - - 8.39958 6.67080 155.29049 21.99710 110 0 - - 8.88238 7.84800 158.66238 22.47473 110 0 - - 8.88238 7.84800 153.05638 22.47473 110 0 - - 9.36354 9.02520 156.30914 22.95236 110 0 - - 9.84318 10.20240 159.56189 23.43000 110 0 - - 10.32148 11.37960 162.81464 23.90763 110 0 - - 10.79865 12.55680 166.06740 24.38526 110 0 - - 11.27486 13.73400 169.32015 24.86290 110 0 - - 11.27486 13.73400 164.25619 24.86290 110 0 - - 11.75038 14.91120 167.41166 25.34053 110 0 - - 12.22571 16.08840 170.56714 25.81816 110 0 - - 12.70146 17.26560 173.72261 26.29580 110 0 - - 13.17819 18.44280 176.87808 26.77343 110 0 - - 13.65650 19.62000 180.03355 27.25106 110 0 - - 19.39187 19.62000 112.91072 24.82969 110 0 - - 19.48624 20.92800 113.33345 24.92265 110 0 - - 19.58217 22.23600 113.75618 25.01561 110 0 - - 19.67997 23.54400 114.17890 25.10857 110 0 - - 19.77992 24.85200 114.60163 25.20153 110 0 - - 19.88234 26.16000 115.02436 25.29449 110 0 - - 19.88234 26.16000 114.42115 25.29449 110 0 - - 19.98749 27.46800 114.84166 25.38745 110 0 - - 20.09546 28.77600 115.26217 25.48041 110 0 - - 20.20629 30.08400 115.68268 25.57337 110 0 - - 20.32004 31.39200 116.10319 25.66633 110 0 - - 20.43676 32.70000 116.52370 25.75929 110 0 - - 20.43676 32.70000 116.01583 25.75929 110 0 - - 20.55645 34.00800 116.43451 25.85225 110 0 - - 20.67895 35.31600 116.85318 25.94521 110 0 - - 20.80404 36.62400 117.27186 26.03817 110 0 - - 20.93152 37.93200 117.69054 26.13113 110 0 - - 21.06117 39.24000 118.10921 26.22409 110 0 - - 15.87413 39.24000 183.43874 28.78144 110 0 - - 16.34408 40.22100 185.97557 29.17947 110 0 - - 16.81627 41.20200 188.51241 29.57750 110 0 - - 17.29043 42.18300 191.04924 29.97553 110 0 - - 17.76625 43.16400 193.58607 30.37355 110 0 - - 18.24346 44.14500 196.12290 30.77158 110 0 - - 18.24346 44.14500 192.60019 30.77158 110 0 - - 18.72179 45.12600 195.09146 31.16961 110 0 - - 19.20105 46.10700 197.58272 31.56764 110 0 - - 19.68111 47.08800 200.07399 31.96566 110 0 - - 20.16179 48.06900 202.56525 32.36369 110 0 - - 20.64294 49.05000 205.05652 32.76172 110 0 - - 20.64294 49.05000 201.00495 32.76172 110 0 - - 21.36524 50.52150 204.66801 33.35876 110 0 - - 22.08809 51.99300 208.33107 33.95580 110 0 - - 22.81140 53.46450 211.99414 34.55284 110 0 - - 23.53512 54.93600 215.65720 35.14988 110 0 - - 24.25917 56.40750 219.32027 35.74693 110 0 - - 24.25917 56.40750 214.81611 35.74693 110 0 - - 24.98356 57.87900 218.40395 36.34397 110 0 - - 25.70859 59.35050 221.99178 36.94101 110 0 - - 26.43457 60.82200 225.57962 37.53805 110 0 - - 27.16183 62.29350 229.16745 38.13509 110 0 - - 27.89068 63.76500 232.75529 38.73213 110 0 - - 27.89068 63.76500 228.61475 38.73213 110 0 - - 28.62151 65.23650 232.13876 39.32917 110 0 - - 29.35485 66.70800 235.66278 39.92621 110 0 - - 30.09124 68.17950 239.18679 40.52326 110 0 - - 30.83121 69.65100 242.71080 41.12030 110 0 - - 31.57531 71.12250 246.23481 41.71734 110 0 - - 31.57531 71.12250 242.40131 41.71734 110 0 - - 32.32410 72.59400 245.87046 42.31438 110 0 - - 33.07818 74.06550 249.33961 42.91142 110 0 - - 33.83810 75.53700 252.80875 43.50846 110 0 - - 34.60444 77.00850 256.27790 44.10550 110 0 - - 35.37774 78.48000 259.74705 44.70255 110 0 - - 35.37774 78.48000 256.17685 44.70255 110 0 - - 36.15858 79.95150 259.59831 45.29959 110 0 - - 36.94740 81.42300 263.01977 45.89663 110 0 - - 37.74456 82.89450 266.44124 46.49367 110 0 - - 38.55042 84.36600 269.86270 47.09071 110 0 - - 39.36534 85.83750 273.28417 47.68775 110 0 - - 39.36534 85.83750 269.94257 47.68775 110 0 - - 40.18965 87.30900 273.32219 48.28479 110 0 - - 41.02339 88.78050 276.70182 48.88183 110 0 - - 41.86643 90.25200 280.08145 49.47888 110 0 - - 42.71866 91.72350 283.46108 50.07592 110 0 - - 43.57998 93.19500 286.84071 50.67296 110 0 - - 43.57998 93.19500 283.69963 50.67296 110 0 - - 44.45021 94.66650 287.04225 51.27000 110 0 - - 45.32862 96.13800 290.38487 51.86704 110 0 - - 46.21430 97.60950 293.72749 52.46408 110 0 - - 47.10633 99.08100 297.07011 53.06112 110 0 - - 48.00379 100.55250 300.41273 53.65817 110 0 - - 48.00379 100.55250 297.44910 53.65817 110 0 - - 48.90564 102.02400 300.75875 54.25521 110 0 - - 49.81003 103.49550 304.06839 54.85225 110 0 - - 50.71486 104.96700 307.37804 55.44929 110 0 - - 51.61801 106.43850 310.68768 56.04633 110 0 - - 52.51737 107.91000 313.99732 56.64337 110 0 - + 1.00905 0.00000 136.41499 14.46788 110 0 - + 1.00905 0.00000 111.45332 14.46788 110 0 - + 1.97684 0.00000 118.88354 15.43241 110 0 - + 2.94462 0.00000 126.31376 16.39693 110 0 - + 3.91236 0.00000 133.74398 17.36146 110 0 - + 4.88002 0.00000 141.17421 18.32599 110 0 - + 5.84757 0.00000 148.60443 19.29051 110 0 - + 5.84757 0.00000 140.04174 19.29051 110 0 - + 6.00794 0.39240 141.19755 19.44972 110 0 - + 6.16827 0.78480 142.35336 19.60893 110 0 - + 6.32856 1.17720 143.50917 19.76814 110 0 - + 6.48879 1.56960 144.66498 19.92736 110 0 - + 6.64896 1.96200 145.82080 20.08657 110 0 - + 6.64896 1.96200 141.80292 20.08657 110 0 - + 7.12895 3.13920 145.17481 20.56420 110 0 - + 7.60797 4.31640 148.54670 21.04183 110 0 - + 8.08586 5.49360 151.91860 21.51947 110 0 - + 8.56247 6.67080 155.29049 21.99710 110 0 - + 9.03760 7.84800 158.66238 22.47473 110 0 - + 9.03760 7.84800 153.05638 22.47473 110 0 - + 9.51118 9.02520 156.30914 22.95236 110 0 - + 9.98333 10.20240 159.56189 23.43000 110 0 - + 10.45427 11.37960 162.81464 23.90763 110 0 - + 10.92422 12.55680 166.06740 24.38526 110 0 - + 11.39337 13.73400 169.32015 24.86290 110 0 - + 11.39337 13.73400 164.25619 24.86290 110 0 - + 11.86201 14.91120 167.41166 25.34053 110 0 - + 12.33066 16.08840 170.56714 25.81816 110 0 - + 12.79991 17.26560 173.72261 26.29580 110 0 - + 13.27035 18.44280 176.87808 26.77343 110 0 - + 13.74259 19.62000 180.03355 27.25106 110 0 - + 19.42630 19.62000 112.91072 24.82969 110 0 - + 19.51807 20.92800 113.33345 24.92265 110 0 - + 19.61151 22.23600 113.75618 25.01561 110 0 - + 19.70692 23.54400 114.17890 25.10857 110 0 - + 19.80459 24.85200 114.60163 25.20153 110 0 - + 19.90484 26.16000 115.02436 25.29449 110 0 - + 19.90484 26.16000 114.42115 25.29449 110 0 - + 20.00792 27.46800 114.84166 25.38745 110 0 - + 20.11392 28.77600 115.26217 25.48041 110 0 - + 20.22290 30.08400 115.68268 25.57337 110 0 - + 20.33489 31.39200 116.10319 25.66633 110 0 - + 20.44995 32.70000 116.52370 25.75929 110 0 - + 20.44995 32.70000 116.01583 25.75929 110 0 - + 20.56808 34.00800 116.43451 25.85225 110 0 - + 20.68912 35.31600 116.85318 25.94521 110 0 - + 20.81284 36.62400 117.27186 26.03817 110 0 - + 20.93904 37.93200 117.69054 26.13113 110 0 - + 21.06750 39.24000 118.10921 26.22409 110 0 - + 15.88998 39.24000 183.43874 28.78144 110 0 - + 16.35784 40.22100 185.97557 29.17947 110 0 - + 16.82807 41.20200 188.51241 29.57750 110 0 - + 17.30037 42.18300 191.04924 29.97553 110 0 - + 17.77446 43.16400 193.58607 30.37355 110 0 - + 18.25004 44.14500 196.12290 30.77158 110 0 - + 18.25004 44.14500 192.60019 30.77158 110 0 - + 18.72685 45.12600 195.09146 31.16961 110 0 - + 19.20469 46.10700 197.58272 31.56764 110 0 - + 19.68343 47.08800 200.07399 31.96566 110 0 - + 20.16288 48.06900 202.56525 32.36369 110 0 - + 20.64290 49.05000 205.05652 32.76172 110 0 - + 20.64290 49.05000 201.00495 32.76172 110 0 - + 21.36367 50.52150 204.66801 33.35876 110 0 - + 22.08517 51.99300 208.33107 33.95580 110 0 - + 22.80731 53.46450 211.99414 34.55284 110 0 - + 23.53002 54.93600 215.65720 35.14988 110 0 - + 24.25321 56.40750 219.32027 35.74693 110 0 - + 24.25321 56.40750 214.81611 35.74693 110 0 - + 24.97688 57.87900 218.40395 36.34397 110 0 - + 25.70132 59.35050 221.99178 36.94101 110 0 - + 26.42683 60.82200 225.57962 37.53805 110 0 - + 27.15372 62.29350 229.16745 38.13509 110 0 - + 27.88231 63.76500 232.75529 38.73213 110 0 - + 27.88231 63.76500 228.61475 38.73213 110 0 - + 28.61296 65.23650 232.13876 39.32917 110 0 - + 29.34621 66.70800 235.66278 39.92621 110 0 - + 30.08258 68.17950 239.18679 40.52326 110 0 - + 30.82260 69.65100 242.71080 41.12030 110 0 - + 31.56679 71.12250 246.23481 41.71734 110 0 - + 31.56679 71.12250 242.40131 41.71734 110 0 - + 32.31573 72.59400 245.87046 42.31438 110 0 - + 33.06999 74.06550 249.33961 42.91142 110 0 - + 33.83014 75.53700 252.80875 43.50846 110 0 - + 34.59673 77.00850 256.27790 44.10550 110 0 - + 35.37032 78.48000 259.74705 44.70255 110 0 - + 35.37032 78.48000 256.17685 44.70255 110 0 - + 36.15147 79.95150 259.59831 45.29959 110 0 - + 36.94060 81.42300 263.01977 45.89663 110 0 - + 37.73809 82.89450 266.44124 46.49367 110 0 - + 38.54429 84.36600 269.86270 47.09071 110 0 - + 39.35956 85.83750 273.28417 47.68775 110 0 - + 39.35956 85.83750 269.94257 47.68775 110 0 - + 40.18422 87.30900 273.32219 48.28479 110 0 - + 41.01830 88.78050 276.70182 48.88183 110 0 - + 41.86169 90.25200 280.08145 49.47888 110 0 - + 42.71426 91.72350 283.46108 50.07592 110 0 - + 43.57592 93.19500 286.84071 50.67296 110 0 - + 43.57592 93.19500 283.69963 50.67296 110 0 - + 44.44648 94.66650 287.04225 51.27000 110 0 - + 45.32520 96.13800 290.38487 51.86704 110 0 - + 46.21119 97.60950 293.72749 52.46408 110 0 - + 47.10351 99.08100 297.07011 53.06112 110 0 - + 48.00125 100.55250 300.41273 53.65817 110 0 - + 48.00125 100.55250 297.44910 53.65817 110 0 - + 48.90337 102.02400 300.75875 54.25521 110 0 - + 49.80802 103.49550 304.06839 54.85225 110 0 - + 50.71309 104.96700 307.37804 55.44929 110 0 - + 51.61647 106.43850 310.68768 56.04633 110 0 - + 52.51604 107.91000 313.99732 56.64337 110 0 - 18.59731 107.91000 734.00940 36.53923 1 0 A 18.88833 109.38150 745.49575 37.11102 1 0 A - 19.96389 110.85300 756.98209 37.68281 110 0 - - 21.91705 112.32450 768.46843 38.25461 110 0 - - 23.81224 113.79600 779.95478 38.82640 110 0 - - 25.64307 115.26750 791.44112 39.39820 110 0 - - 25.64307 115.26750 738.87493 39.39820 110 0 - - 27.40620 116.73900 749.59837 39.96999 110 0 - - 29.10497 118.21050 760.32181 40.54178 110 0 - - 30.74303 119.68200 771.04525 41.11358 110 0 - - 32.32401 121.15350 781.76869 41.68537 110 0 - - 33.85155 122.62500 792.49213 42.25717 110 0 - - 33.85155 122.62500 772.62437 42.25717 110 0 - - 35.33081 124.09650 783.07897 42.82896 110 0 - - 36.76876 125.56800 793.53357 43.40075 110 0 - - 38.17176 127.03950 803.98818 43.97255 110 0 - - 39.54618 128.51100 814.44278 44.54434 110 0 - - 40.89839 129.98250 824.89738 45.11614 110 0 - - 40.89839 129.98250 814.08791 45.11614 110 0 - - 42.23513 131.45400 824.40552 45.68793 110 0 - - 43.56112 132.92550 834.72313 46.25972 110 0 - - 44.87969 134.39700 845.04073 46.83152 110 0 - - 46.19416 135.86850 855.35834 47.40331 110 0 - - 47.50787 137.34000 865.67594 47.97510 110 0 - + 19.95915 110.85300 756.98209 37.68281 110 0 - + 21.91316 112.32450 768.46843 38.25461 110 0 - + 23.80913 113.79600 779.95478 38.82640 110 0 - + 25.64067 115.26750 791.44112 39.39820 110 0 - + 25.64067 115.26750 738.87493 39.39820 110 0 - + 27.40445 116.73900 749.59837 39.96999 110 0 - + 29.10382 118.21050 760.32181 40.54178 110 0 - + 30.74241 119.68200 771.04525 41.11358 110 0 - + 32.32388 121.15350 781.76869 41.68537 110 0 - + 33.85187 122.62500 792.49213 42.25717 110 0 - + 33.85187 122.62500 772.62437 42.25717 110 0 - + 35.33154 124.09650 783.07897 42.82896 110 0 - + 36.76987 125.56800 793.53357 43.40075 110 0 - + 38.17323 127.03950 803.98818 43.97255 110 0 - + 39.54799 128.51100 814.44278 44.54434 110 0 - + 40.90053 129.98250 824.89738 45.11614 110 0 - + 40.90053 129.98250 814.08791 45.11614 110 0 - + 42.23758 131.45400 824.40552 45.68793 110 0 - + 43.56388 132.92550 834.72313 46.25972 110 0 - + 44.88275 134.39700 845.04073 46.83152 110 0 - + 46.19752 135.86850 855.35834 47.40331 110 0 - + 47.51152 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9278,9 +9368,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 21.001 'Clay' - -4.00 40.354 'Peat' - -6.00 233.170 'Clay' + 0.00 21.417 'Clay' + -4.00 40.391 'Peat' + -6.00 233.144 'Clay' -13.00 99.644 'Sand' [END OF DATA] [END OF TABLE] @@ -9358,26 +9448,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 62.84700 0.00000 12.71803 0.00000 - -3.40000 62.86100 0.00000 49.82607 0.00000 - -4.00000 62.96500 0.00000 97.72394 0.00000 - -4.66667 62.25400 0.00000 121.96325 0.00000 - -5.33333 61.68900 0.00000 147.38471 0.00000 - -6.00000 61.22700 0.00000 174.01379 0.00000 - -6.50000 61.75400 0.00000 222.69748 0.00000 - -7.00000 62.12300 0.00000 275.90757 0.00000 - -7.75000 62.52000 0.00000 364.24778 0.00000 - -8.50000 62.80800 0.00000 462.83865 0.00000 - -9.25000 63.03300 0.00000 571.68935 0.00000 - -10.00000 63.21400 0.00000 690.80325 0.00000 - -10.75000 63.36600 0.00000 820.18139 0.00000 - -11.50000 63.49500 0.00000 959.82388 0.00000 - -12.25000 63.60700 0.00000 1109.73038 0.00000 - -13.00000 63.70600 0.00000 1269.90038 0.00000 - -13.75000 67.31700 0.00000 1645.63390 0.00000 - -14.50000 68.75300 33.35500 2034.73617 5.90482 - -15.25000 69.61600 33.08900 2453.28354 17.82374 - -16.00000 70.20300 32.85200 2905.24722 30.87200 + -2.80000 62.44000 0.00000 34.67704 0.00000 + -3.40000 62.62900 0.00000 75.97227 0.00000 + -4.00000 62.79500 0.00000 123.87621 0.00000 + -4.66667 62.24800 0.00000 148.10002 0.00000 + -5.33333 61.78700 0.00000 173.53003 0.00000 + -6.00000 61.39400 0.00000 200.18091 0.00000 + -6.50000 61.81600 0.00000 248.84128 0.00000 + -7.00000 62.13400 0.00000 302.04465 0.00000 + -7.75000 62.49500 0.00000 390.38747 0.00000 + -8.50000 62.77000 0.00000 488.98710 0.00000 + -9.25000 62.98900 0.00000 597.84879 0.00000 + -10.00000 63.16900 0.00000 716.97434 0.00000 + -10.75000 63.32200 0.00000 846.36414 0.00000 + -11.50000 63.45300 0.00000 986.01798 0.00000 + -12.25000 63.56700 0.00000 1135.93537 0.00000 + -13.00000 63.66800 0.00000 1296.11576 0.00000 + -13.75000 67.25000 0.00000 1672.74136 0.00000 + -14.50000 68.68800 0.00000 2062.50982 0.00000 + -15.25000 69.55600 32.99300 2481.55792 10.49418 + -16.00000 70.14900 32.76900 2933.90990 23.54923 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9394,26 +9484,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 21.19672 0.00000 0.64302 0.00000 11.41450 - -3.10000 5.57100 61.84674 0.00000 0.64302 0.00000 11.10155 - -3.70000 9.28500 79.82978 0.00000 0.64302 0.00000 8.59771 - -4.33333 11.53867 36.35896 0.00000 0.58588 0.00000 3.15105 - -5.00000 12.33200 38.13220 0.00000 0.58588 0.00000 3.09213 - -5.66667 13.12533 39.94361 0.00000 0.58588 0.00000 3.04325 - -6.25000 15.06950 97.36739 0.00000 0.64302 0.00000 6.46122 - -6.75000 18.16450 106.42016 0.00000 0.64302 0.00000 5.85869 - -7.37500 22.03325 117.78695 0.00000 0.64302 0.00000 5.34587 - -8.12500 26.67575 131.45449 0.00000 0.64302 0.00000 4.92786 - -8.87500 31.31825 145.13427 0.00000 0.64302 0.00000 4.63418 - -9.62500 35.96075 158.81852 0.00000 0.64302 0.00000 4.41644 - -10.37500 40.60325 172.50419 0.00000 0.64302 0.00000 4.24853 - -11.12500 45.24575 186.18998 0.00000 0.64302 0.00000 4.11508 - -11.87500 49.88825 199.87533 0.00000 0.64302 0.00000 4.00646 - -12.62500 54.53075 213.56001 0.00000 0.64302 0.00000 3.91632 - -13.37500 60.29825 500.97803 0.00000 0.41479 0.00000 8.30833 - -14.12500 67.19075 518.80302 7.87309 0.41479 0.11718 7.72135 - -14.87500 74.08325 558.06317 15.89189 0.41479 0.21451 7.53292 - -15.62500 80.97575 602.61823 17.39768 0.41479 0.21485 7.44196 + -2.50000 1.85700 57.79507 0.00000 0.64302 0.00000 31.12282 + -3.10000 5.57100 68.82539 0.00000 0.64302 0.00000 12.35423 + -3.70000 9.28500 79.83989 0.00000 0.64302 0.00000 8.59880 + -4.33333 11.53867 36.33573 0.00000 0.58588 0.00000 3.14904 + -5.00000 12.33200 38.14501 0.00000 0.58588 0.00000 3.09317 + -5.66667 13.12533 39.97632 0.00000 0.58588 0.00000 3.04574 + -6.25000 15.06950 97.32074 0.00000 0.64302 0.00000 6.45813 + -6.75000 18.16450 106.40674 0.00000 0.64302 0.00000 5.85795 + -7.37500 22.03325 117.79043 0.00000 0.64302 0.00000 5.34603 + -8.12500 26.67575 131.46617 0.00000 0.64302 0.00000 4.92830 + -8.87500 31.31825 145.14892 0.00000 0.64302 0.00000 4.63464 + -9.62500 35.96075 158.83407 0.00000 0.64302 0.00000 4.41687 + -10.37500 40.60325 172.51974 0.00000 0.64302 0.00000 4.24891 + -11.12500 45.24575 186.20511 0.00000 0.64302 0.00000 4.11542 + -11.87500 49.88825 199.88985 0.00000 0.64302 0.00000 4.00675 + -12.62500 54.53075 213.57385 0.00000 0.64302 0.00000 3.91658 + -13.37500 60.29825 502.16747 0.00000 0.41479 0.00000 8.32806 + -14.12500 67.19075 519.69128 0.00000 0.41479 0.00000 7.73457 + -14.87500 74.08325 558.73080 13.99224 0.41479 0.18887 7.54193 + -15.62500 80.97575 603.13597 17.40674 0.41479 0.21496 7.44835 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9454,126 +9544,126 @@ Status character 0.00000 1.17720 0.00000 0.00000 -1 0 - 0.00000 1.56960 0.00000 0.00000 -1 0 - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 8.47869 3.13920 8.47869 0.47763 202 100 P - 14.56742 4.31640 16.95738 0.95527 110 86 - - 15.03708 5.49360 25.43606 1.43290 110 59 - - 15.50805 6.67080 33.91475 1.91053 110 46 - - 15.98052 7.84800 42.39344 2.38817 110 38 - - 15.98052 7.84800 41.23116 2.38817 110 39 - - 16.45462 9.02520 49.47739 2.86580 110 33 - - 16.93025 10.20240 57.72362 3.34343 110 29 - - 17.40721 11.37960 65.96985 3.82106 110 26 - - 17.88531 12.55680 74.21609 4.29870 110 24 - - 18.36437 13.73400 82.46232 4.77633 110 22 - - 18.36437 13.73400 63.86382 4.77633 110 29 - - 18.84412 14.91120 70.25021 5.25396 110 27 - - 19.32405 16.08840 76.63659 5.73160 110 25 - - 19.80357 17.26560 83.02297 6.20923 110 24 - - 20.28210 18.44280 89.40935 6.68686 110 23 - - 20.75905 19.62000 95.79574 7.16450 110 22 - - 11.96572 19.62000 35.10904 6.52790 110 34 - - 12.05727 20.92800 35.60901 6.62086 110 34 - - 12.14726 22.23600 36.10898 6.71382 110 34 - - 12.23538 23.54400 36.60895 6.80678 110 33 - - 12.32135 24.85200 37.10891 6.89974 110 33 - - 12.40485 26.16000 37.60888 6.99270 110 33 - - 12.40485 26.16000 36.90565 6.99270 110 34 - - 12.48562 27.46800 37.39627 7.08566 110 33 - - 12.56357 28.77600 37.88689 7.17862 110 33 - - 12.63866 30.08400 38.37751 7.27158 110 33 - - 12.71083 31.39200 38.86813 7.36454 110 33 - - 12.78003 32.70000 39.35874 7.45750 110 32 - - 12.78003 32.70000 38.73646 7.45750 110 33 - - 12.84626 34.00800 39.21932 7.55046 110 33 - - 12.90968 35.31600 39.70218 7.64342 110 33 - - 12.97051 36.62400 40.18504 7.73638 110 32 - - 13.02895 37.93200 40.66791 7.82934 110 32 - - 13.08522 39.24000 41.15077 7.92230 110 32 - - 21.60219 39.24000 87.36865 8.69488 110 25 - - 21.92830 40.22100 91.36815 9.09290 110 24 - - 22.25216 41.20200 95.36764 9.49093 110 23 - - 22.57406 42.18300 99.36714 9.88896 110 23 - - 22.89429 43.16400 103.36664 10.28699 110 22 - - 23.21313 44.14500 107.36613 10.68501 110 22 - - 23.21313 44.14500 97.35384 10.68501 110 24 - - 23.53086 45.12600 100.98037 11.08304 110 23 - - 23.84765 46.10700 104.60690 11.48107 110 23 - - 24.16366 47.08800 108.23343 11.87910 110 22 - - 24.47903 48.06900 111.85996 12.27712 110 22 - - 24.79393 49.05000 115.48648 12.67515 110 21 - - 24.79393 49.05000 105.37785 12.67515 110 24 - - 25.26571 50.52150 110.34149 13.27219 110 23 - - 25.73695 51.99300 115.30513 13.86923 110 22 - - 26.20772 53.46450 120.26878 14.46628 110 22 - - 26.67808 54.93600 125.23242 15.06332 110 21 - - 27.14812 56.40750 130.19606 15.66036 110 21 - - 27.14812 56.40750 120.01569 15.66036 110 23 - - 27.61781 57.87900 124.59121 16.25740 110 22 - - 28.08686 59.35050 129.16673 16.85444 110 22 - - 28.55496 60.82200 133.74225 17.45148 110 21 - - 29.02179 62.29350 138.31778 18.04852 110 21 - - 29.48702 63.76500 142.89330 18.64557 110 21 - - 29.48702 63.76500 134.37719 18.64557 110 22 - - 29.95027 65.23650 138.68002 19.24261 110 22 - - 30.41101 66.70800 142.98285 19.83965 110 21 - - 30.86871 68.17950 147.28569 20.43669 110 21 - - 31.32281 69.65100 151.58852 21.03373 110 21 - - 31.77280 71.12250 155.89135 21.63077 110 20 - - 31.77280 71.12250 148.56686 21.63077 110 21 - - 32.21809 72.59400 152.66753 22.22781 110 21 - - 32.65810 74.06550 156.76819 22.82485 110 21 - - 33.09226 75.53700 160.86886 23.42190 110 21 - - 33.52000 77.00850 164.96952 24.01894 110 20 - - 33.94078 78.48000 169.07019 24.61598 110 20 - - 33.94078 78.48000 162.64229 24.61598 110 21 - - 34.35402 79.95150 166.58705 25.21302 110 21 - - 34.75929 81.42300 170.53181 25.81006 110 20 - - 35.15621 82.89450 174.47657 26.40710 110 20 - - 35.54444 84.36600 178.42134 27.00414 110 20 - - 35.92360 85.83750 182.36610 27.60119 110 20 - - 35.92360 85.83750 176.63785 27.60119 110 20 - - 36.29337 87.30900 180.45870 28.19823 110 20 - - 36.65372 88.78050 184.27955 28.79527 110 20 - - 37.00476 90.25200 188.10041 29.39231 110 20 - - 37.34661 91.72350 191.92126 29.98935 110 19 - - 37.67937 93.19500 195.74212 30.58639 110 19 - - 37.67937 93.19500 190.57533 30.58639 110 20 - - 38.00322 94.66650 194.29533 31.18343 110 20 - - 38.31889 96.13800 198.01533 31.78047 110 19 - - 38.62730 97.60950 201.73533 32.37752 110 19 - - 38.92935 99.08100 205.45533 32.97456 110 19 - - 39.22597 100.55250 209.17533 33.57160 110 19 - - 39.22597 100.55250 204.46924 33.57160 110 19 - - 39.51821 102.02400 208.10555 34.16864 110 19 - - 39.80789 103.49550 211.74185 34.76568 110 19 - - 40.09715 104.96700 215.37816 35.36272 110 19 - - 40.38808 106.43850 219.01447 35.95976 110 18 - - 40.68281 107.91000 222.65077 36.55681 110 18 - - 44.21189 107.91000 472.34543 23.58188 110 9 - - 43.30555 109.38150 483.79847 24.15368 110 9 - - 42.44440 110.85300 495.25151 24.72547 110 9 - - 41.63483 112.32450 506.70455 25.29727 110 8 - - 40.88322 113.79600 518.15759 25.86906 110 8 - - 40.19598 115.26750 529.61062 26.44085 110 8 - - 40.19598 115.26750 492.19333 26.44085 110 8 - - 39.57644 116.73900 502.83721 27.01265 110 8 - - 39.02125 118.21050 513.48109 27.58444 110 8 - - 38.52678 119.68200 524.12496 28.15623 110 7 - - 38.08939 121.15350 534.76884 28.72803 110 7 - - 37.70543 122.62500 545.41271 29.29982 110 7 - - 37.70543 122.62500 532.10284 29.29982 110 7 - - 37.36977 124.09650 542.48697 29.87162 110 7 - - 37.07541 125.56800 552.87110 30.44341 110 7 - - 36.81599 127.03950 563.25523 31.01520 110 7 - - 36.58516 128.51100 573.63936 31.58700 110 6 - - 36.37653 129.98250 584.02349 32.15879 110 6 - - 36.37653 129.98250 576.97138 32.15879 110 6 - - 36.18338 131.45400 587.23012 32.73059 110 6 - - 36.00098 132.92550 597.48886 33.30238 110 6 - - 35.82600 134.39700 607.74760 33.87417 110 6 - - 35.65512 135.86850 618.00634 34.44597 110 6 - - 35.48500 137.34000 628.26508 35.01776 110 6 - + 0.00003 1.96200 0.00003 0.00000 202 100 P + 13.91288 3.13920 23.11803 0.47763 110 60 - + 14.38913 4.31640 46.23605 0.95527 110 31 - + 14.86650 5.49360 69.35408 1.43290 110 21 - + 15.34517 6.67080 92.47211 1.91053 110 17 - + 15.82529 7.84800 115.59014 2.38817 110 14 - + 15.82529 7.84800 45.88359 2.38817 110 34 - + 16.30699 9.02520 55.06031 2.86580 110 30 - + 16.79010 10.20240 64.23703 3.34343 110 26 - + 17.27442 11.37960 73.41375 3.82106 110 24 - + 17.75974 12.55680 82.59047 4.29870 110 22 - + 18.24586 13.73400 91.76719 4.77633 110 20 - + 18.24586 13.73400 63.87191 4.77633 110 29 - + 18.73249 14.91120 70.25910 5.25396 110 27 - + 19.21910 16.08840 76.64629 5.73160 110 25 - + 19.70512 17.26560 83.03348 6.20923 110 24 - + 20.18994 18.44280 89.42067 6.68686 110 23 - + 20.67297 19.62000 95.80786 7.16450 110 22 - + 11.93129 19.62000 35.08661 6.52790 110 34 - + 12.02544 20.92800 35.58626 6.62086 110 34 - + 12.11792 22.23600 36.08590 6.71382 110 34 - + 12.20843 23.54400 36.58555 6.80678 110 33 - + 12.29668 24.85200 37.08520 6.89974 110 33 - + 12.38235 26.16000 37.58485 6.99270 110 33 - + 12.38235 26.16000 36.91805 6.99270 110 34 - + 12.46519 27.46800 37.40884 7.08566 110 33 - + 12.54511 28.77600 37.89962 7.17862 110 33 - + 12.62205 30.08400 38.39040 7.27158 110 33 - + 12.69598 31.39200 38.88119 7.36454 110 33 - + 12.76684 32.70000 39.37197 7.45750 110 32 - + 12.76684 32.70000 38.76817 7.45750 110 33 - + 12.83463 34.00800 39.25143 7.55046 110 33 - + 12.89951 35.31600 39.73469 7.64342 110 32 - + 12.96171 36.62400 40.21794 7.73638 110 32 - + 13.02143 37.93200 40.70120 7.82934 110 32 - + 13.07889 39.24000 41.18446 7.92230 110 32 - + 21.58634 39.24000 87.32679 8.69488 110 25 - + 21.91454 40.22100 91.32437 9.09290 110 24 - + 22.24036 41.20200 95.32195 9.49093 110 23 - + 22.56411 42.18300 99.31953 9.88896 110 23 - + 22.88608 43.16400 103.31711 10.28699 110 22 - + 23.20655 44.14500 107.31469 10.68501 110 22 - + 23.20655 44.14500 97.34156 10.68501 110 24 - + 23.52580 45.12600 100.96763 11.08304 110 23 - + 23.84401 46.10700 104.59370 11.48107 110 23 - + 24.16134 47.08800 108.21977 11.87910 110 22 - + 24.47793 48.06900 111.84584 12.27712 110 22 - + 24.79397 49.05000 115.47191 12.67515 110 21 - + 24.79397 49.05000 105.38096 12.67515 110 24 - + 25.26729 50.52150 110.34475 13.27219 110 23 - + 25.73987 51.99300 115.30854 13.86923 110 22 - + 26.21181 53.46450 120.27233 14.46628 110 22 - + 26.68318 54.93600 125.23612 15.06332 110 21 - + 27.15408 56.40750 130.19991 15.66036 110 21 - + 27.15408 56.40750 120.02635 15.66036 110 23 - + 27.62449 57.87900 124.60227 16.25740 110 22 - + 28.09413 59.35050 129.17820 16.85444 110 22 - + 28.56270 60.82200 133.75413 17.45148 110 21 - + 29.02989 62.29350 138.33006 18.04852 110 21 - + 29.49539 63.76500 142.90599 18.64557 110 21 - + 29.49539 63.76500 134.39075 18.64557 110 22 - + 29.95881 65.23650 138.69402 19.24261 110 22 - + 30.41965 66.70800 142.99728 19.83965 110 21 - + 30.87737 68.17950 147.30055 20.43669 110 21 - + 31.33143 69.65100 151.60382 21.03373 110 21 - + 31.78132 71.12250 155.90708 21.63077 110 20 - + 31.78132 71.12250 148.58141 21.63077 110 21 - + 32.22647 72.59400 152.68247 22.22781 110 21 - + 32.66628 74.06550 156.78354 22.82485 110 21 - + 33.10022 75.53700 160.88461 23.42190 110 21 - + 33.52771 77.00850 164.98567 24.01894 110 20 - + 33.94820 78.48000 169.08674 24.61598 110 20 - + 33.94820 78.48000 162.65695 24.61598 110 21 - + 34.36114 79.95150 166.60206 25.21302 110 21 - + 34.76608 81.42300 170.54718 25.81006 110 20 - + 35.16268 82.89450 174.49230 26.40710 110 20 - + 35.55056 84.36600 178.43742 27.00414 110 20 - + 35.92938 85.83750 182.38253 27.60119 110 20 - + 35.92938 85.83750 176.65220 27.60119 110 20 - + 36.29880 87.30900 180.47336 28.19823 110 20 - + 36.65880 88.78050 184.29453 28.79527 110 20 - + 37.00950 90.25200 188.11569 29.39231 110 20 - + 37.35100 91.72350 191.93686 29.98935 110 19 - + 37.68343 93.19500 195.75802 30.58639 110 19 - + 37.68343 93.19500 190.58918 30.58639 110 20 - + 38.00696 94.66650 194.30945 31.18343 110 20 - + 38.32231 96.13800 198.02972 31.78047 110 19 - + 38.63041 97.60950 201.74999 32.37752 110 19 - + 38.93217 99.08100 205.47026 32.97456 110 19 - + 39.22851 100.55250 209.19053 33.57160 110 19 - + 39.22851 100.55250 204.48250 33.57160 110 19 - + 39.52047 102.02400 208.11904 34.16864 110 19 - + 39.80991 103.49550 211.75558 34.76568 110 19 - + 40.09892 104.96700 215.39212 35.36272 110 19 - + 40.38962 106.43850 219.02867 35.95976 110 18 - + 40.68414 107.91000 222.66521 36.55681 110 18 - + 44.21853 107.91000 473.46689 23.58188 110 9 - + 43.31120 109.38150 484.94712 24.15368 110 9 - + 42.44913 110.85300 496.42735 24.72547 110 9 - + 41.63871 112.32450 507.90758 25.29727 110 8 - + 40.88633 113.79600 519.38782 25.86906 110 8 - + 40.19838 115.26750 530.86805 26.44085 110 8 - + 40.19838 115.26750 493.03603 26.44085 110 8 - + 39.57819 116.73900 503.69813 27.01265 110 8 - + 39.02241 118.21050 514.36023 27.58444 110 8 - + 38.52740 119.68200 525.02233 28.15623 110 7 - + 38.08952 121.15350 535.68443 28.72803 110 7 - + 37.70512 122.62500 546.34653 29.29982 110 7 - + 37.70512 122.62500 532.73942 29.29982 110 7 - + 37.36903 124.09650 543.13598 29.87162 110 7 - + 37.07429 125.56800 553.53253 30.44341 110 7 - + 36.81452 127.03950 563.92908 31.01520 110 7 - + 36.58335 128.51100 574.32563 31.58700 110 6 - + 36.37440 129.98250 584.72219 32.15879 110 6 - + 36.37440 129.98250 577.46709 32.15879 110 6 - + 36.18093 131.45400 587.73464 32.73059 110 6 - + 35.99822 132.92550 598.00220 33.30238 110 6 - + 35.82294 134.39700 608.26975 33.87417 110 6 - + 35.65176 135.86850 618.53730 34.44597 110 6 - + 35.48135 137.34000 628.80486 35.01776 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9586,10 +9676,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 29.430 'Clay' - -4.00 25.150 'Peat' - -6.00 224.198 'Clay' - -13.00 115.368 'Sand' + 0.00 29.868 'Clay' + -4.00 25.113 'Peat' + -6.00 224.224 'Clay' + -13.00 115.369 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9777,21 +9867,21 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.88 : Percentage mobilized resistance left + 12.76 : Percentage mobilized resistance left 9.50 : Percentage mobilized resistance right 267.34 : Effective left 323.34 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2075.06 : Max effective resistance left + 2095.11 : Max effective resistance left 3402.22 : Max effective resistance right --22107.90 : Max moment left +-22149.29 : Max moment left -32715.56 : Max moment right -2467.64 : Max mobilized moment left -2485.26 : Max mobilized moment right 76.73 : Vertical force left 84.85 : Vertical force right - 11.2 : Max mobilized moment percentage left + 11.1 : Max mobilized moment percentage left 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support @@ -10342,26 +10432,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 62.84700 0.00000 14.92602 0.00000 - -3.35000 62.87500 0.00000 57.35045 0.00000 - -4.00000 62.99400 0.00000 110.72992 0.00000 - -4.66667 62.32100 0.00000 136.50009 0.00000 - -5.33333 61.77800 0.00000 163.45078 0.00000 - -6.00000 61.33000 0.00000 191.60665 0.00000 - -6.50000 61.81300 0.00000 241.66068 0.00000 - -7.00000 62.16100 0.00000 296.24474 0.00000 - -7.75000 62.54200 0.00000 386.64724 0.00000 - -8.50000 62.82300 0.00000 487.29991 0.00000 - -9.25000 63.04300 0.00000 598.21140 0.00000 - -10.00000 63.22200 0.00000 719.38503 0.00000 - -10.75000 63.37200 0.00000 850.82198 0.00000 - -11.50000 63.50000 0.00000 992.52245 0.00000 - -12.25000 63.61100 0.00000 1144.48623 0.00000 - -13.00000 63.70900 0.00000 1306.71292 0.00000 - -13.75000 67.29800 0.00000 1688.40876 0.00000 - -14.50000 68.73100 33.38900 2083.09739 8.09702 - -15.25000 69.59400 33.12300 2507.07004 20.16261 - -16.00000 70.18100 32.88600 2964.36770 33.35786 + -2.70000 62.45700 0.00000 37.86568 0.00000 + -3.35000 62.65800 0.00000 83.49755 0.00000 + -4.00000 62.83400 0.00000 136.88390 0.00000 + -4.66667 62.30300 0.00000 162.63712 0.00000 + -5.33333 61.85300 0.00000 189.59360 0.00000 + -6.00000 61.46700 0.00000 217.76824 0.00000 + -6.50000 61.86300 0.00000 267.80287 0.00000 + -7.00000 62.16700 0.00000 322.38162 0.00000 + -7.75000 62.51700 0.00000 412.78740 0.00000 + -8.50000 62.78500 0.00000 513.44898 0.00000 + -9.25000 63.00000 0.00000 624.37146 0.00000 + -10.00000 63.17800 0.00000 745.55672 0.00000 + -10.75000 63.32900 0.00000 877.00529 0.00000 + -11.50000 63.45900 0.00000 1018.71707 0.00000 + -12.25000 63.57200 0.00000 1170.69171 0.00000 + -13.00000 63.67200 0.00000 1332.92875 0.00000 + -13.75000 67.23300 0.00000 1715.50908 0.00000 + -14.50000 68.66700 33.27900 2110.85977 0.75837 + -15.25000 69.53600 33.02800 2535.33101 12.83201 + -16.00000 70.12900 32.80300 2993.01596 26.03412 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -10378,26 +10468,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 22.96311 0.00000 0.64302 0.00000 11.41450 - -3.02500 6.03525 65.26835 0.00000 0.64302 0.00000 10.81452 - -3.67500 10.05875 82.12227 0.00000 0.64302 0.00000 8.16426 - -4.33333 12.46717 38.65526 0.00000 0.58588 0.00000 3.10056 - -5.00000 13.26050 40.42603 0.00000 0.58588 0.00000 3.04861 - -5.66667 14.05383 42.23381 0.00000 0.58588 0.00000 3.00515 - -6.25000 15.99800 100.10805 0.00000 0.64302 0.00000 6.25754 - -6.75000 19.09300 109.16812 0.00000 0.64302 0.00000 5.71770 - -7.37500 22.96175 120.53667 0.00000 0.64302 0.00000 5.24945 - -8.12500 27.60425 134.20357 0.00000 0.64302 0.00000 4.86170 - -8.87500 32.24675 147.88198 0.00000 0.64302 0.00000 4.58595 - -9.62500 36.88925 161.56484 0.00000 0.64302 0.00000 4.37973 - -10.37500 41.53175 175.24926 0.00000 0.64302 0.00000 4.21965 - -11.12500 46.17425 188.93396 0.00000 0.64302 0.00000 4.09176 - -11.87500 50.81675 202.61837 0.00000 0.64302 0.00000 3.98724 - -12.62500 55.45925 216.30225 0.00000 0.64302 0.00000 3.90020 - -13.37500 61.22675 508.92778 0.00000 0.41479 0.00000 8.31218 - -14.12500 68.11925 526.25151 10.79603 0.41479 0.15849 7.72544 - -14.87500 75.01175 565.29687 16.08746 0.41479 0.21447 7.53611 - -15.62500 81.90425 609.73021 17.59366 0.41479 0.21481 7.44443 + -2.37500 2.01175 58.25489 0.00000 0.64302 0.00000 28.95732 + -3.02500 6.03525 70.20287 0.00000 0.64302 0.00000 11.63214 + -3.67500 10.05875 82.13284 0.00000 0.64302 0.00000 8.16531 + -4.33333 12.46717 38.62984 0.00000 0.58588 0.00000 3.09853 + -5.00000 13.26050 40.43472 0.00000 0.58588 0.00000 3.04926 + -5.66667 14.05383 42.26197 0.00000 0.58588 0.00000 3.00715 + -6.25000 15.99800 100.06925 0.00000 0.64302 0.00000 6.25511 + -6.75000 19.09300 109.15750 0.00000 0.64302 0.00000 5.71715 + -7.37500 22.96175 120.54104 0.00000 0.64302 0.00000 5.24965 + -8.12500 27.60425 134.21544 0.00000 0.64302 0.00000 4.86213 + -8.87500 32.24675 147.89664 0.00000 0.64302 0.00000 4.58640 + -9.62500 36.88925 161.58035 0.00000 0.64302 0.00000 4.38015 + -10.37500 41.53175 175.26476 0.00000 0.64302 0.00000 4.22002 + -11.12500 46.17425 188.94904 0.00000 0.64302 0.00000 4.09209 + -11.87500 50.81675 202.63285 0.00000 0.64302 0.00000 3.98752 + -12.62500 55.45925 216.31606 0.00000 0.64302 0.00000 3.90045 + -13.37500 61.22675 510.10710 0.00000 0.41479 0.00000 8.33144 + -14.12500 68.11925 527.13426 1.01116 0.41479 0.01484 7.73840 + -14.87500 75.01175 565.96164 16.09819 0.41479 0.21461 7.54497 + -15.62500 81.90425 610.24661 17.60281 0.41479 0.21492 7.45073 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10438,126 +10528,126 @@ Status character 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.39240 0.00000 0.00000 -1 0 - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 9.18524 0.51744 1 0 A - 0.00000 3.04110 18.37049 1.03487 1 0 A - 0.77263 4.31640 27.55573 1.55231 110 0 - - 2.06016 5.59170 36.74098 2.06974 110 0 - - 3.33643 6.86700 45.92622 2.58718 110 7 - - 3.33643 6.86700 43.51223 2.58718 110 8 - - 4.59853 8.14230 52.21468 3.10461 110 9 - - 5.84446 9.41760 60.91712 3.62205 110 10 - - 7.07238 10.69290 69.61957 4.13949 110 10 - - 8.28043 11.96820 78.32201 4.65692 110 11 - - 9.46675 13.24350 87.02446 5.17436 110 11 - - 9.46675 13.24350 65.69782 5.17436 110 14 - - 10.62972 14.51880 72.26760 5.69179 110 15 - - 11.76825 15.79410 78.83738 6.20923 110 15 - - 12.88135 17.06940 85.40716 6.72667 110 15 - - 13.96799 18.34470 91.97694 7.24410 110 15 - - 15.02717 19.62000 98.54673 7.76154 110 15 - - 9.97815 19.62000 37.42537 7.07189 110 27 - - 10.28154 20.92800 37.91732 7.16485 110 27 - - 10.57276 22.23600 38.40928 7.25781 110 28 - - 10.85167 23.54400 38.90123 7.35077 110 28 - - 11.11813 24.85200 39.39319 7.44373 110 28 - - 11.37201 26.16000 39.88515 7.53669 110 29 - - 11.37201 26.16000 39.21675 7.53669 110 29 - - 11.61324 27.46800 39.70046 7.62965 110 29 - - 11.84198 28.77600 40.18417 7.72261 110 29 - - 12.05843 30.08400 40.66788 7.81557 110 30 - - 12.26282 31.39200 41.15160 7.90853 110 30 - - 12.45534 32.70000 41.63531 8.00149 110 30 - - 12.45534 32.70000 41.04177 8.00149 110 30 - - 12.63627 34.00800 41.51858 8.09445 110 30 - - 12.80606 35.31600 41.99540 8.18741 110 30 - - 12.96524 36.62400 42.47222 8.28037 110 31 - - 13.11430 37.93200 42.94903 8.37333 110 31 - - 13.25377 39.24000 43.42585 8.46629 110 31 - - 21.26062 39.24000 90.42452 9.29192 110 24 - - 21.73099 40.22100 94.29793 9.68995 110 23 - - 22.18943 41.20200 98.17135 10.08797 110 23 - - 22.63656 42.18300 102.04476 10.48600 110 22 - - 23.07301 43.16400 105.91817 10.88403 110 22 - - 23.49940 44.14500 109.79159 11.28206 110 21 - - 23.49940 44.14500 100.31997 11.28206 110 23 - - 23.91635 45.12600 103.85923 11.68008 110 23 - - 24.32435 46.10700 107.39849 12.07811 110 23 - - 24.72392 47.08800 110.93775 12.47614 110 22 - - 25.11555 48.06900 114.47701 12.87417 110 22 - - 25.49972 49.05000 118.01627 13.27219 110 22 - - 25.49972 49.05000 108.35137 13.27219 110 24 - - 26.06307 50.52150 113.22549 13.86923 110 23 - - 26.61202 51.99300 118.09961 14.46628 110 23 - - 27.14768 53.46450 122.97373 15.06332 110 22 - - 27.67117 54.93600 127.84784 15.66036 110 22 - - 28.18359 56.40750 132.72196 16.25740 110 21 - - 28.18359 56.40750 122.91835 16.25740 110 23 - - 28.68595 57.87900 127.43243 16.85444 110 23 - - 29.17884 59.35050 131.94652 17.45148 110 22 - - 29.66279 60.82200 136.46061 18.04852 110 22 - - 30.13831 62.29350 140.97470 18.64557 110 21 - - 30.60594 63.76500 145.48879 19.24261 110 21 - - 30.60594 63.76500 137.23684 19.24261 110 22 - - 31.06609 65.23650 141.49490 19.83965 110 22 - - 31.51889 66.70800 145.75295 20.43669 110 22 - - 31.96443 68.17950 150.01101 21.03373 110 21 - - 32.40280 69.65100 154.26906 21.63077 110 21 - - 32.83408 71.12250 158.52712 22.22781 110 21 - - 32.83408 71.12250 151.39840 22.22781 110 22 - - 33.25827 72.59400 155.46498 22.82485 110 21 - - 33.67525 74.06550 159.53156 23.42190 110 21 - - 34.08486 75.53700 163.59813 24.01894 110 21 - - 34.48696 77.00850 167.66471 24.61598 110 21 - - 34.88140 78.48000 171.73129 25.21302 110 20 - - 34.88140 78.48000 165.45441 25.21302 110 21 - - 35.26799 79.95150 169.37235 25.81006 110 21 - - 35.64658 81.42300 173.29029 26.40710 110 21 - - 36.01703 82.89450 177.20823 27.00414 110 20 - - 36.37922 84.36600 181.12617 27.60119 110 20 - - 36.73304 85.83750 185.04412 28.19823 110 20 - - 36.73304 85.83750 179.43596 28.19823 110 20 - - 37.07836 87.30900 183.23516 28.79527 110 20 - - 37.41529 88.78050 187.03436 29.39231 110 20 - - 37.74404 90.25200 190.83356 29.98935 110 20 - - 38.06481 91.72350 194.63276 30.58639 110 20 - - 38.37783 93.19500 198.43196 31.18343 110 19 - - 38.37783 93.19500 193.36300 31.18343 110 20 - - 38.68336 94.66650 197.06515 31.78047 110 20 - - 38.98213 96.13800 200.76730 32.37752 110 19 - - 39.27504 97.60950 204.46945 32.97456 110 19 - - 39.56300 99.08100 208.17160 33.57160 110 19 - - 39.84693 100.55250 211.87375 34.16864 110 19 - - 39.84693 100.55250 207.24891 34.16864 110 19 - - 40.12785 102.02400 210.87024 34.76568 110 19 - - 40.40751 103.49550 214.49158 35.36272 110 19 - - 40.68794 104.96700 218.11292 35.95976 110 19 - - 40.97115 106.43850 221.73426 36.55681 110 18 - - 41.25916 107.91000 225.35559 37.15385 110 18 - - 44.49359 107.91000 480.28193 23.96702 110 9 - - 43.55809 109.38150 491.74027 24.53881 110 9 - - 42.67163 110.85300 503.19861 25.11061 110 8 - - 41.84026 112.32450 514.65695 25.68240 110 8 - - 41.07000 113.79600 526.11529 26.25420 110 8 - - 40.36690 115.26750 537.57363 26.82599 110 8 - - 40.36690 115.26750 499.62769 26.82599 110 8 - - 39.73400 116.73900 510.27722 27.39778 110 8 - - 39.16768 118.21050 520.92674 27.96958 110 8 - - 38.66404 119.68200 531.57627 28.54137 110 7 - - 38.21917 121.15350 542.22580 29.11317 110 7 - - 37.82917 122.62500 552.87532 29.68496 110 7 - - 37.82917 122.62500 539.32555 29.68496 110 7 - - 37.48863 124.09650 549.71408 30.25675 110 7 - - 37.19036 125.56800 560.10261 30.82855 110 7 - - 36.92783 127.03950 570.49113 31.40034 110 6 - - 36.69450 128.51100 580.87966 31.97213 110 6 - - 36.48381 129.98250 591.26819 32.54393 110 6 - - 36.48381 129.98250 584.07485 32.54393 110 6 - - 36.28888 131.45400 594.33700 33.11572 110 6 - - 36.10489 132.92550 604.59914 33.68752 110 6 - - 35.92846 134.39700 614.86128 34.25931 110 6 - - 35.75620 135.86850 625.12342 34.83110 110 6 - - 35.58472 137.34000 635.38557 35.40290 110 6 - + 0.00000 0.49050 0.00003 0.00000 1 0 A + 0.00000 1.76580 23.30196 0.51744 1 0 A + 0.00000 3.04110 46.60391 1.03487 1 0 A + 0.77263 4.31640 69.90587 1.55231 110 0 - + 2.06016 5.59170 93.20783 2.06974 110 0 - + 3.33643 6.86700 116.50978 2.58718 110 3 - + 3.33643 6.86700 46.80192 2.58718 110 7 - + 4.59853 8.14230 56.16230 3.10461 110 8 - + 5.84446 9.41760 65.52268 3.62205 110 9 - + 7.07238 10.69290 74.88307 4.13949 110 9 - + 8.28043 11.96820 84.24345 4.65692 110 10 - + 9.46675 13.24350 93.60383 5.17436 110 10 - + 9.46675 13.24350 65.70628 5.17436 110 14 - + 10.62972 14.51880 72.27690 5.69179 110 15 - + 11.76825 15.79410 78.84753 6.20923 110 15 - + 12.88135 17.06940 85.41816 6.72667 110 15 - + 13.96799 18.34470 91.98879 7.24410 110 15 - + 15.02717 19.62000 98.55941 7.76154 110 15 - + 9.97815 19.62000 37.40076 7.07189 110 27 - + 10.28154 20.92800 37.89239 7.16485 110 27 - + 10.57276 22.23600 38.38402 7.25781 110 28 - + 10.85167 23.54400 38.87565 7.35077 110 28 - + 11.11813 24.85200 39.36729 7.44373 110 28 - + 11.37201 26.16000 39.85892 7.53669 110 29 - + 11.37201 26.16000 39.22518 7.53669 110 29 - + 11.61324 27.46800 39.70899 7.62965 110 29 - + 11.84198 28.77600 40.19281 7.72261 110 29 - + 12.05843 30.08400 40.67663 7.81557 110 30 - + 12.26282 31.39200 41.16044 7.90853 110 30 - + 12.45534 32.70000 41.64426 8.00149 110 30 - + 12.45534 32.70000 41.06913 8.00149 110 30 - + 12.63627 34.00800 41.54626 8.09445 110 30 - + 12.80606 35.31600 42.02340 8.18741 110 30 - + 12.96524 36.62400 42.50053 8.28037 110 31 - + 13.11430 37.93200 42.97767 8.37333 110 31 - + 13.25377 39.24000 43.45480 8.46629 110 31 - + 21.26062 39.24000 90.38947 9.29192 110 24 - + 21.73099 40.22100 94.26138 9.68995 110 23 - + 22.18943 41.20200 98.13330 10.08797 110 23 - + 22.63656 42.18300 102.00521 10.48600 110 22 - + 23.07301 43.16400 105.87712 10.88403 110 22 - + 23.49940 44.14500 109.74903 11.28206 110 21 - + 23.49940 44.14500 100.31021 11.28206 110 23 - + 23.91635 45.12600 103.84912 11.68008 110 23 - + 24.32435 46.10700 107.38804 12.07811 110 23 - + 24.72392 47.08800 110.92695 12.47614 110 22 - + 25.11555 48.06900 114.46587 12.87417 110 22 - + 25.49972 49.05000 118.00478 13.27219 110 22 - + 25.49972 49.05000 108.35530 13.27219 110 24 - + 26.06307 50.52150 113.22959 13.86923 110 23 - + 26.61202 51.99300 118.10389 14.46628 110 23 - + 27.14768 53.46450 122.97819 15.06332 110 22 - + 27.67117 54.93600 127.85248 15.66036 110 22 - + 28.18359 56.40750 132.72678 16.25740 110 21 - + 28.18359 56.40750 122.92922 16.25740 110 23 - + 28.68595 57.87900 127.44371 16.85444 110 23 - + 29.17884 59.35050 131.95820 17.45148 110 22 - + 29.66279 60.82200 136.47269 18.04852 110 22 - + 30.13831 62.29350 140.98717 18.64557 110 21 - + 30.60594 63.76500 145.50166 19.24261 110 21 - + 30.60594 63.76500 137.25045 19.24261 110 22 - + 31.06609 65.23650 141.50892 19.83965 110 22 - + 31.51889 66.70800 145.76740 20.43669 110 22 - + 31.96443 68.17950 150.02588 21.03373 110 21 - + 32.40280 69.65100 154.28435 21.63077 110 21 - + 32.83408 71.12250 158.54283 22.22781 110 21 - + 32.83408 71.12250 151.41293 22.22781 110 22 - + 33.25827 72.59400 155.47990 22.82485 110 21 - + 33.67525 74.06550 159.54687 23.42190 110 21 - + 34.08486 75.53700 163.61384 24.01894 110 21 - + 34.48696 77.00850 167.68080 24.61598 110 21 - + 34.88140 78.48000 171.74777 25.21302 110 20 - + 34.88140 78.48000 165.46904 25.21302 110 21 - + 35.26799 79.95150 169.38733 25.81006 110 21 - + 35.64658 81.42300 173.30561 26.40710 110 21 - + 36.01703 82.89450 177.22390 27.00414 110 20 - + 36.37922 84.36600 181.14219 27.60119 110 20 - + 36.73304 85.83750 185.06047 28.19823 110 20 - + 36.73304 85.83750 179.45028 28.19823 110 20 - + 37.07836 87.30900 183.24979 28.79527 110 20 - + 37.41529 88.78050 187.04929 29.39231 110 20 - + 37.74404 90.25200 190.84879 29.98935 110 20 - + 38.06481 91.72350 194.64830 30.58639 110 20 - + 38.37783 93.19500 198.44780 31.18343 110 19 - + 38.37783 93.19500 193.37682 31.18343 110 20 - + 38.68336 94.66650 197.07923 31.78047 110 20 - + 38.98213 96.13800 200.78165 32.37752 110 19 - + 39.27504 97.60950 204.48406 32.97456 110 19 - + 39.56300 99.08100 208.18647 33.57160 110 19 - + 39.84693 100.55250 211.88889 34.16864 110 19 - + 39.84693 100.55250 207.26214 34.16864 110 19 - + 40.12785 102.02400 210.88370 34.76568 110 19 - + 40.40751 103.49550 214.50527 35.36272 110 19 - + 40.68794 104.96700 218.12684 35.95976 110 19 - + 40.97115 106.43850 221.74841 36.55681 110 18 - + 41.25916 107.91000 225.36998 37.15385 110 18 - + 44.49359 107.91000 481.39487 23.96702 110 9 - + 43.55809 109.38150 492.87977 24.53881 110 9 - + 42.67163 110.85300 504.36466 25.11061 110 8 - + 41.84026 112.32450 515.84955 25.68240 110 8 - + 41.07000 113.79600 527.33444 26.25420 110 8 - + 40.36690 115.26750 538.81934 26.82599 110 7 - + 40.36690 115.26750 500.46578 26.82599 110 8 - + 39.73400 116.73900 511.13317 27.39778 110 8 - + 39.16768 118.21050 521.80056 27.96958 110 8 - + 38.66404 119.68200 532.46795 28.54137 110 7 - + 38.21917 121.15350 543.13534 29.11317 110 7 - + 37.82917 122.62500 553.80273 29.68496 110 7 - + 37.82917 122.62500 539.95978 29.68496 110 7 - + 37.48863 124.09650 550.36052 30.25675 110 7 - + 37.19036 125.56800 560.76127 30.82855 110 7 - + 36.92783 127.03950 571.16202 31.40034 110 6 - + 36.69450 128.51100 581.56276 31.97213 110 6 - + 36.48381 129.98250 591.96351 32.54393 110 6 - + 36.48381 129.98250 584.56952 32.54393 110 6 - + 36.28888 131.45400 594.84036 33.11572 110 6 - + 36.10489 132.92550 605.11119 33.68752 110 6 - + 35.92846 134.39700 615.38202 34.25931 110 6 - + 35.75620 135.86850 625.65286 34.83110 110 6 - + 35.58472 137.34000 635.92369 35.40290 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10730,7 +10820,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -10745,7 +10835,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 161.86324 210000000.000 1 2 0 'Anchor' + -1.50000 155.07134 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10772,22 +10862,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 47.29 : Percentage mobilized resistance left - 7.97 : Percentage mobilized resistance right - 540.05 : Effective left - 306.97 : Effective right + 46.55 : Percentage mobilized resistance left + 7.82 : Percentage mobilized resistance right + 540.98 : Effective left + 301.12 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3850.19 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -35710.14 : Max moment right --5610.18 : Max mobilized moment left --2233.63 : Max mobilized moment right - 173.07 : Vertical force left - 81.13 : Vertical force right - 41.4 : Max mobilized moment percentage left - 6.3 : Max mobilized moment percentage right +-5546.18 : Max mobilized moment left +-2168.15 : Max mobilized moment right + 171.92 : Vertical force left + 78.79 : Vertical force right + 40.5 : Max mobilized moment percentage left + 6.1 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -10802,144 +10892,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01710 0.09392 45.73554 - 0.07591 1.67242 40.58186 - 0.64648 6.48812 35.42830 - 2.17095 14.27594 30.27341 - 4.98122 23.10281 25.11572 - 9.07515 31.39681 19.95374 - 9.09127 31.48378 19.95374 - 14.30123 37.85048 14.78492 - 20.40686 43.42607 9.60377 - 27.28939 48.20833 4.40441 - 34.83144 52.23217 -0.81906 - 42.92465 55.56822 -6.07250 - 42.92719 -106.30945 -6.07250 - 32.35566 -105.17863 -9.59364 - 21.87991 -104.39430 -13.12720 - 11.46515 -103.95960 -16.66917 - 1.07782 -103.83002 -20.21555 - -9.30518 -103.83002 -23.76234 - -9.31196 -103.87872 -23.76234 - -23.15974 -103.81768 -28.48512 - -36.99125 -103.63456 -33.19210 - -50.79020 -103.32936 -37.87387 - -64.54032 -102.90208 -42.52102 - -78.22532 -102.35272 -47.12415 - -78.22474 -102.35111 -47.12415 - -91.77274 -100.84509 -51.67380 - -105.11042 -99.19634 -56.16084 - -118.21877 -97.40526 -60.57633 - -131.07884 -95.47216 -64.91133 - -143.67172 -93.39739 -69.15691 - -143.67169 -93.39938 -69.15691 - -155.95951 -90.89344 -73.30423 - -167.90341 -88.24047 -77.34515 - -179.48378 -85.44078 -81.27176 - -190.68110 -82.49467 -85.07619 - -201.47587 -79.40242 -88.75054 - -201.47594 -79.40411 -88.75054 - -211.77585 -75.07214 -92.28704 - -221.48921 -70.60603 -95.67904 - -230.59818 -66.00619 -98.92035 - -239.08494 -61.27301 -102.00475 - -246.93174 -56.40683 -104.92604 - -246.93174 -56.40786 -104.92604 - -254.12219 -51.42681 -107.67834 - -260.63967 -46.31348 -110.25725 - -266.46658 -41.06817 -112.65882 - -271.58533 -35.69114 -114.87906 - -275.97838 -30.18265 -116.91403 - -275.97838 -30.18360 -116.91403 - -279.62952 -24.56165 -118.76011 - -282.52234 -18.80877 -120.41541 - -284.63939 -12.92519 -121.87848 - -285.96325 -6.91110 -123.14790 - -286.47656 -0.76670 -124.22221 - -286.47657 -0.76747 -124.22221 - -286.35931 3.12634 -124.89937 - -285.84860 7.10133 -125.46664 - -284.93634 11.15746 -125.92438 - -283.61440 15.29470 -126.27294 - -281.87469 19.51300 -126.51266 - -281.87470 19.51242 -126.51266 - -279.70772 23.84074 -126.64403 - -277.10384 28.25036 -126.66806 - -274.05494 32.74125 -126.58594 - -270.55288 37.31337 -126.39882 - -266.58956 41.96670 -126.10788 - -266.58956 41.96628 -126.10788 - -262.15664 46.69434 -125.71443 - -257.25027 51.43515 -125.22038 - -251.86918 56.18868 -124.62779 - -246.01211 60.95491 -123.93874 - -239.67778 65.73381 -123.15527 - -239.67773 65.73312 -123.15527 - -228.78449 72.70983 -121.73867 - -216.88837 78.49710 -120.10530 - -204.17628 83.09483 -118.26712 - -190.83516 86.50296 -116.23607 - -177.05195 88.72140 -114.02409 - -177.05197 88.72057 -114.02409 - -162.94225 90.68604 -111.64393 - -148.60457 91.62190 -109.10946 - -134.20073 91.52808 -106.43422 - -119.89254 90.40452 -103.63177 - -105.84182 88.25116 -100.71567 - -105.84182 88.25044 -100.71567 - -91.97500 88.11231 -97.69945 - -78.18839 87.22951 -94.59615 - -64.59902 85.60201 -91.41858 - -51.32391 83.22976 -88.17955 - -38.48011 80.11272 -84.89188 - -38.48010 80.11192 -84.89188 - -26.02183 78.34574 -81.56817 - -13.88924 75.96698 -78.21988 - -2.17859 72.97562 -74.85805 - 9.01386 69.37162 -71.49373 - 19.59183 65.15496 -68.13794 - 19.59261 65.15101 -68.13794 - 29.58029 61.87504 -64.80140 - 39.01082 58.06014 -61.49297 - 47.79953 53.70629 -58.22093 - 55.86171 48.81348 -54.99357 - 63.14396 43.97884 -51.81916 - 63.13648 43.87443 -51.81916 - 69.69790 39.74297 -48.70526 - 75.66081 36.25460 -45.65740 - 81.12510 33.39420 -42.68081 - 86.18818 31.14553 -39.78072 - 90.94482 29.49115 -36.96235 - 90.94469 29.49888 -36.96235 - 95.49186 28.46861 -34.23042 - 99.92114 27.99516 -31.58893 - 104.31844 28.05816 -29.04209 - 108.76640 28.63632 -26.59413 - 113.34425 29.70742 -24.24924 - 113.34498 29.71328 -24.24924 - 116.45900 12.17805 -22.11215 - 117.10709 -3.18322 -20.07564 - 115.60748 -16.47554 -18.13857 - 112.26269 -27.80273 -16.29980 - 107.35979 -37.26738 -14.55818 - 107.35897 -37.23059 -14.55818 - 101.15964 -45.14209 -12.91070 - 93.89955 -51.38939 -11.35052 - 85.82163 -56.06055 -9.87079 - 77.15615 -59.23644 -8.46465 - 68.12178 -60.99071 -7.12524 - 68.12392 -60.96795 -7.12524 - 58.88328 -62.02102 -5.84490 - 49.58212 -61.78397 -4.61531 - 40.41014 -60.30599 -3.42866 - 31.55032 -57.62805 -2.27711 - 23.20137 -53.35715 -1.15285 - 23.18264 -53.48331 -1.15285 - 15.61353 -47.05207 -0.04762 - 9.18216 -38.31798 1.04436 - 4.23210 -27.30453 2.12719 - 1.08548 -14.39748 3.20500 - -0.01954 -0.13839 4.28190 + -0.01553 0.08551 41.49925 + 0.07623 1.66401 36.82609 + 0.64554 6.47971 32.15305 + 2.15407 13.97409 27.47869 + 4.87757 22.26452 22.80158 + 8.81183 30.12303 18.12028 + 8.82638 30.20156 18.12028 + 13.81766 36.23372 13.43234 + 19.66199 41.57581 8.73249 + 26.25579 46.22571 4.01508 + 33.49685 50.21849 -0.72552 + 41.29202 53.62501 -5.49496 + 41.29249 -101.44644 -5.49496 + 31.21206 -100.21212 -8.69270 + 21.24003 -99.27899 -11.90243 + 11.34612 -98.65015 -15.12033 + 1.49977 -98.32810 -18.34260 + -8.32744 -98.24406 -21.56544 + -8.33142 -98.29956 -21.56544 + -21.43532 -98.23852 -25.85690 + -34.52294 -98.05540 -30.13373 + -47.57800 -97.75020 -34.38704 + -60.58423 -97.32292 -38.60793 + -73.52536 -96.77356 -42.78749 + -73.52477 -96.77196 -42.78749 + -86.32888 -95.26594 -46.91678 + -98.92267 -93.61719 -50.98716 + -111.28714 -91.82610 -54.99022 + -123.40332 -89.89301 -58.91752 + -135.25231 -87.81823 -62.76063 + -135.25229 -87.82023 -62.76063 + -146.79622 -85.31429 -66.51123 + -157.99623 -82.66132 -70.16168 + -168.83272 -79.86162 -73.70458 + -179.28615 -76.91552 -77.13256 + -189.33703 -73.82327 -80.43823 + -189.33710 -73.82495 -80.43823 + -198.89312 -69.49298 -83.61433 + -207.86260 -65.02688 -86.65472 + -216.22768 -60.42704 -89.55371 + -223.97055 -55.69386 -92.30560 + -231.07347 -50.82767 -94.90469 + -231.07347 -50.82871 -94.90469 + -237.52003 -45.84766 -97.34560 + -243.29363 -40.73433 -99.62445 + -248.37665 -35.48902 -101.73779 + -252.75151 -30.11199 -103.68214 + -256.40067 -24.60350 -105.45406 + -256.40068 -24.60445 -105.45406 + -259.30793 -18.98250 -107.05045 + -261.45686 -13.22962 -108.46992 + -262.83002 -7.34604 -109.71154 + -263.41000 -1.33195 -110.77437 + -263.17942 4.81245 -111.65748 + -263.17943 4.81169 -111.65748 + -262.50425 8.70549 -112.20164 + -261.43563 12.68048 -112.64507 + -259.96545 16.73661 -112.98833 + -258.08561 20.87385 -113.23198 + -255.78798 25.09215 -113.37660 + -255.78799 25.09157 -113.37660 + -253.06309 29.41989 -113.42288 + -249.90130 33.82951 -113.37204 + -246.29448 38.32040 -113.22548 + -242.23451 42.89252 -112.98458 + -237.71327 47.54585 -112.65072 + -237.71327 47.54543 -112.65072 + -232.72243 52.27349 -112.22543 + -227.25815 57.01430 -111.71084 + -221.31915 61.76784 -111.10921 + -214.90416 66.53407 -110.42284 + -208.01191 71.31297 -109.65400 + -208.01186 71.31227 -109.65400 + -196.27848 77.59059 -108.28530 + -183.76172 81.28267 -106.73076 + -170.86797 82.38844 -105.00238 + -158.00368 80.90781 -103.11215 + -145.57529 76.84071 -101.07205 + -145.57530 76.83988 -101.07205 + -133.34199 78.68142 -98.89398 + -120.90196 79.47081 -96.58962 + -108.42057 79.20799 -94.17073 + -96.06314 77.89289 -91.64903 + -83.99506 75.52546 -89.03626 + -83.99506 75.52474 -89.03626 + -72.12808 75.38554 -86.34409 + -60.34148 74.50158 -83.58364 + -48.75231 72.87280 -80.76583 + -37.47761 70.49918 -77.90157 + -26.63444 67.38066 -75.00178 + -26.63444 67.37987 -75.00178 + -16.17702 65.61244 -72.07719 + -6.04548 63.23235 -69.13735 + 3.66391 60.23957 -66.19139 + 12.85486 56.63408 -63.24847 + 21.43110 52.41584 -60.31774 + 21.44073 52.36591 -60.31774 + 29.41921 49.08860 -57.40797 + 36.84034 45.27229 -54.52615 + 43.62515 41.02656 -51.67868 + 49.74127 36.91204 -48.87198 + 55.25631 33.37460 -46.11246 + 55.24638 33.32911 -46.11246 + 60.24698 30.40832 -43.40585 + 64.83233 28.04200 -40.75632 + 69.08854 26.21714 -38.16793 + 73.09963 24.91984 -35.64478 + 76.94735 24.13527 -33.19095 + 76.94724 24.14180 -33.19095 + 80.71575 23.90262 -30.81012 + 84.48469 24.14455 -28.50573 + 88.32833 24.85037 -26.28146 + 92.31816 26.00204 -24.14100 + 96.52277 27.58072 -22.08802 + 96.52381 27.58271 -22.08802 + 99.48152 12.17838 -20.21452 + 100.27257 -1.32106 -18.42693 + 99.17596 -13.00541 -16.72446 + 96.45726 -22.96358 -15.10627 + 92.36879 -31.28367 -13.57157 + 92.36789 -31.25244 -13.57157 + 87.13790 -38.22974 -12.11789 + 80.97232 -43.73997 -10.73941 + 74.08546 -47.85903 -9.43028 + 66.68069 -50.65667 -8.18468 + 58.95135 -52.19651 -6.99675 + 58.95322 -52.17660 -6.99675 + 51.03764 -53.17011 -5.85995 + 43.05933 -53.02067 -4.76713 + 35.18646 -51.77094 -3.71160 + 27.58129 -49.45654 -2.68663 + 20.40860 -45.95993 -1.68551 + 20.39832 -46.10011 -1.68551 + 13.84645 -40.91441 -0.70117 + 8.22653 -33.67813 0.27142 + 3.84449 -24.41215 1.23588 + 1.00371 -13.12970 2.19585 + -0.00961 -0.15099 3.15496 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11096,20 +11186,20 @@ Status character 0.00001 0.00000 0.00001 0.00000 202 100 P 30.06668 0.00000 30.06668 5.51986 202 100 P 61.66087 0.00000 61.66087 11.32016 202 100 P - 86.67872 0.00000 95.60503 17.55188 110 91 - - 81.45203 0.00000 131.85112 24.20620 110 62 - - 76.52900 0.00000 169.79789 31.17275 110 45 - - 64.40486 0.00000 131.34426 19.04861 110 49 - - 56.86552 0.00000 161.43441 23.41253 110 35 - - 49.33629 0.00000 191.76434 27.81123 110 26 - - 41.75433 0.00000 221.98186 32.19362 110 19 - - 34.89021 0.00000 251.87056 36.52832 110 0 - - 28.65373 0.00000 281.31596 40.79873 110 0 - - 18.61724 0.00000 189.80201 30.76224 110 0 - - 13.69189 0.00000 202.86341 32.87917 110 0 - - 8.71751 0.00000 215.77548 34.97190 110 0 - - 3.70239 0.00000 228.54007 37.04073 110 0 - - 0.00000 0.00000 241.16152 39.08635 1 0 A + 81.08927 0.00000 95.60503 17.55188 110 85 - + 76.82376 0.00000 131.85112 24.20620 110 58 - + 72.86209 0.00000 169.79789 31.17275 110 43 - + 60.73796 0.00000 131.34426 19.04861 110 46 - + 54.16037 0.00000 161.43441 23.41253 110 34 - + 47.59373 0.00000 191.76434 27.81123 110 25 - + 40.97568 0.00000 221.98186 32.19362 110 18 - + 35.07728 0.00000 251.87056 36.52832 110 0 - + 29.80882 0.00000 281.31596 40.79873 110 0 - + 19.77233 0.00000 189.80201 30.76224 110 0 - + 15.49377 0.00000 202.86341 32.87917 110 0 - + 11.16705 0.00000 215.77548 34.97190 110 0 - + 6.80007 0.00000 228.54007 37.04073 110 0 - + 2.40116 0.00000 241.16152 39.08635 110 0 - 0.00000 0.00000 253.64568 41.10973 1 0 A 0.00000 0.00000 219.69278 35.53878 1 0 A 0.00000 1.30800 226.90657 36.70572 1 0 A @@ -11224,13 +11314,13 @@ Status character 26.36041 125.56800 910.49130 45.33105 1 0 A 26.66942 127.03950 921.16458 45.86245 1 0 A 26.97848 128.51100 931.83960 46.39393 1 0 A - 35.39702 129.98250 942.51642 46.92550 110 0 - - 35.39470 129.98250 932.15163 46.92318 110 0 - - 46.97865 131.45400 942.71290 47.45481 110 0 - - 58.43014 132.92550 953.27610 47.98655 110 6 - - 69.79032 134.39700 963.84128 48.51839 110 7 - - 81.10034 135.86850 974.40849 49.05032 110 8 - - 92.40134 137.34000 984.97779 49.58237 110 9 - + 30.07037 129.98250 942.51642 46.92550 110 0 - + 30.06805 129.98250 932.15163 46.92318 110 0 - + 40.44312 131.45400 942.71290 47.45481 110 0 - + 50.70074 132.92550 953.27610 47.98655 110 5 - + 60.87722 134.39700 963.84128 48.51839 110 6 - + 71.00886 135.86850 974.40849 49.05032 110 7 - + 81.13198 137.34000 984.97779 49.58237 110 8 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11243,10 +11333,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 98.014 'Clay' + 0.00 96.294 'Clay' -4.00 53.482 'Peat' -6.00 172.044 'Clay' - -13.00 114.993 'Sand' + -13.00 108.358 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11323,17 +11413,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -11350,17 +11440,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -11449,72 +11539,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 11.10304 6.44657 11.10304 0.62547 202 100 P - 22.20609 7.98814 22.20609 1.25094 202 100 P - 33.30913 9.52971 33.30913 1.87642 202 100 P - 44.41217 11.07129 44.41217 2.50189 202 100 P - 55.51522 12.61286 55.51522 3.12736 202 100 P - 48.26946 12.61286 48.26946 3.12736 202 100 P - 57.92335 14.15443 57.92335 3.75283 202 100 P - 67.57724 15.69600 67.57724 4.37830 202 100 P - 77.23113 17.23757 77.23113 5.00377 202 100 P - 86.88502 18.77914 86.88502 5.62925 202 100 P - 96.53892 20.32071 96.53892 6.25472 202 100 P - 70.67406 20.32071 70.67406 6.25472 202 100 P - 77.74147 21.86229 77.74147 6.88019 202 100 P - 84.80887 23.40386 84.80887 7.50566 202 100 P - 91.87628 24.94543 91.87628 8.13113 202 100 P - 98.94369 26.48700 98.94369 8.75661 202 100 P - 106.01109 28.02857 106.01109 9.38208 202 100 P - 88.06042 28.02857 88.06042 9.38208 202 100 P - 93.93112 29.57014 93.93112 10.00755 202 100 P - 99.80181 31.11171 99.80181 10.63302 202 100 P - 105.67251 32.65329 105.67251 11.25849 202 100 P - 111.54320 34.19486 111.54320 11.88397 202 100 P - 117.41390 35.73643 117.41390 12.50944 202 100 P - 104.10611 35.73643 104.10611 12.50944 202 100 P - 109.31142 37.27800 109.31142 13.13491 202 100 P - 114.51672 38.81957 114.51672 13.76038 202 100 P - 119.72203 40.36114 119.72203 14.38585 202 100 P - 124.92734 41.90271 124.92734 15.01132 202 100 P - 119.27512 43.44429 130.13264 15.63680 110 92 - - 119.27512 43.44429 119.53821 15.63680 110 99 - - 113.67279 44.98586 124.31974 16.26227 110 91 - - 108.20255 46.52743 129.10127 16.88774 110 84 - - 102.87483 48.06900 133.88279 17.51321 110 77 - - 97.70012 49.61057 138.66432 18.13868 110 70 - - 92.68886 51.15214 143.44585 18.76416 110 65 - - 92.68886 51.15214 134.63740 18.76416 110 69 - - 87.85046 52.69371 139.12532 19.38963 110 63 - - 83.19295 54.23529 143.61323 20.01510 110 58 - - 78.72475 55.77686 148.10114 20.64057 110 53 - - 74.45429 57.31843 152.58906 21.26604 110 49 - - 70.38999 58.86000 157.07697 21.89152 110 45 - - 256.61407 58.86000 279.16236 14.12167 110 92 - - 235.81495 60.33150 290.46579 14.69346 110 81 - - 216.02166 61.80300 301.76922 15.26526 110 72 - - 197.22275 63.27450 313.07265 15.83705 110 63 - - 179.40682 64.74600 324.37608 16.40885 110 55 - - 162.56245 66.21750 335.67951 16.98064 110 48 - - 162.56245 66.21750 311.64171 16.98064 110 52 - - 146.65942 67.68900 322.13571 17.55243 110 46 - - 131.62944 69.16050 332.62971 18.12423 110 40 - - 117.40392 70.63200 343.12371 18.69602 110 34 - - 103.91430 72.10350 353.61771 19.26782 110 29 - - 91.09201 73.57500 364.11171 19.83961 110 25 - - 91.09201 73.57500 356.39681 19.83961 110 26 - - 78.86038 75.04650 366.66846 20.41140 110 22 - - 67.13632 76.51800 376.94011 20.98320 110 18 - - 55.84157 77.98950 387.21176 21.55499 110 14 - - 44.89790 79.46100 397.48341 22.12679 110 11 - - 34.22705 80.93250 407.75506 22.69858 110 8 - - 34.22705 80.93250 403.90034 22.69858 110 8 - - 23.74653 82.40400 414.07488 23.27037 110 6 - - 13.39857 83.87550 424.24943 23.84217 110 0 - - 3.14203 85.34700 434.42398 24.41396 110 0 - - 0.00000 86.81850 444.59852 24.98575 1 0 A - 0.00000 88.29000 454.77307 25.55755 1 0 A + 0.00002 4.90500 0.00002 0.00000 202 100 P + 23.80111 6.44657 23.80111 0.62547 202 100 P + 47.60221 7.98814 47.60221 1.25094 202 100 P + 71.40332 9.52971 71.40332 1.87642 202 100 P + 95.20443 11.07129 95.20443 2.50189 202 100 P + 119.00554 12.61286 119.00554 3.12736 202 100 P + 49.29372 12.61286 49.29372 3.12736 202 100 P + 59.15246 14.15443 59.15246 3.75283 202 100 P + 69.01120 15.69600 69.01120 4.37830 202 100 P + 78.86995 17.23757 78.86995 5.00377 202 100 P + 88.72869 18.77914 88.72869 5.62925 202 100 P + 98.58743 20.32071 98.58743 6.25472 202 100 P + 70.68330 20.32071 70.68330 6.25472 202 100 P + 77.75163 21.86229 77.75163 6.88019 202 100 P + 84.81996 23.40386 84.81996 7.50566 202 100 P + 91.88829 24.94543 91.88829 8.13113 202 100 P + 98.95662 26.48700 98.95662 8.75661 202 100 P + 106.02494 28.02857 106.02494 9.38208 202 100 P + 88.07144 28.02857 88.07144 9.38208 202 100 P + 93.94287 29.57014 93.94287 10.00755 202 100 P + 99.81430 31.11171 99.81430 10.63302 202 100 P + 105.68573 32.65329 105.68573 11.25849 202 100 P + 111.55716 34.19486 111.55716 11.88397 202 100 P + 117.42859 35.73643 117.42859 12.50944 202 100 P + 104.11800 35.73643 104.11800 12.50944 202 100 P + 109.32390 37.27800 109.32390 13.13491 202 100 P + 114.52980 38.81957 114.52980 13.76038 202 100 P + 117.74321 40.36114 119.73570 14.38585 110 98 - + 112.75528 41.90271 124.94160 15.01132 110 90 - + 107.86172 43.44429 130.14750 15.63680 110 83 - + 107.86172 43.44429 119.55043 15.63680 110 90 - + 103.07397 44.98586 124.33244 16.26227 110 83 - + 98.40037 46.52743 129.11446 16.88774 110 76 - + 93.84908 48.06900 133.89648 17.51321 110 70 - + 89.42825 49.61057 138.67850 18.13868 110 64 - + 85.14605 51.15214 143.46051 18.76416 110 59 - + 85.14605 51.15214 134.64963 18.76416 110 63 - + 81.00986 52.69371 139.13795 19.38963 110 58 - + 77.02656 54.23529 143.62627 20.01510 110 54 - + 73.20350 55.77686 148.11459 20.64057 110 49 - + 69.54804 57.31843 152.60291 21.26604 110 46 - + 66.06756 58.86000 157.09123 21.89152 110 42 - + 235.00189 58.86000 280.51782 14.12167 110 84 - + 216.83864 60.33150 291.87613 14.69346 110 74 - + 199.53459 61.80300 303.23445 15.26526 110 66 - + 183.08160 63.27450 314.59276 15.83705 110 58 - + 167.47156 64.74600 325.95107 16.40885 110 51 - + 152.69634 66.21750 337.30939 16.98064 110 45 - + 152.69634 66.21750 312.61080 16.98064 110 49 - + 138.73130 67.68900 323.13743 17.55243 110 43 - + 125.51829 69.16050 333.66406 18.12423 110 38 - + 112.99887 70.63200 344.19069 18.69602 110 33 - + 101.11463 72.10350 354.71732 19.26782 110 29 - + 89.80712 73.57500 365.24396 19.83961 110 25 - + 89.80712 73.57500 357.09310 19.83961 110 25 - + 79.01086 75.04650 367.38481 20.41140 110 22 - + 68.65453 76.51800 377.67653 20.98320 110 18 - + 58.67099 77.98950 387.96825 21.55499 110 15 - + 48.99310 79.46100 398.25997 22.12679 110 12 - + 39.55371 80.93250 408.55168 22.69858 110 10 - + 39.55371 80.93250 404.41665 22.69858 110 10 - + 30.28207 82.40400 414.60420 23.27037 110 7 - + 21.12797 83.87550 424.79176 23.84217 110 0 - + 12.05513 85.34700 434.97931 24.41396 110 0 - + 3.02722 86.81850 445.16686 24.98575 110 0 - + 0.00000 88.29000 455.35442 25.55755 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11529,8 +11619,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 466.804 'Clay' - -13.00 304.693 'Sand' + -6.00 477.829 'Clay' + -13.00 295.000 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11702,7 +11792,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 142.71829 210000000.000 1 2 0 'Anchor' + -1.50000 142.72839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11712,22 +11802,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 49.47 : Percentage mobilized resistance left - 9.21 : Percentage mobilized resistance right - 564.94 : Effective left - 313.33 : Effective right + 49.04 : Percentage mobilized resistance left + 9.36 : Percentage mobilized resistance right + 570.00 : Effective left + 318.40 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3402.22 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -32715.62 : Max moment right --6127.15 : Max mobilized moment left --2737.99 : Max mobilized moment right - 191.86 : Vertical force left - 90.65 : Vertical force right - 45.2 : Max mobilized moment percentage left - 8.4 : Max mobilized moment percentage right +-6157.33 : Max mobilized moment left +-2768.05 : Max mobilized moment right + 193.11 : Vertical force left + 91.70 : Vertical force right + 44.9 : Max mobilized moment percentage left + 8.5 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -11742,144 +11832,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01270 0.05819 51.04715 - 0.04006 0.93879 43.84178 - 0.35580 3.55650 36.63650 - 1.19551 7.94407 29.43046 - 2.80244 13.60003 22.22284 - 5.25510 18.84769 15.01279 - 5.28412 19.03500 15.01279 - 8.43751 22.75564 7.79866 - 12.03440 24.94808 0.57720 - 15.85755 25.85297 -6.65482 - 19.76500 26.25195 -13.90062 - 23.73488 26.68574 -21.16345 - 23.72015 -116.26916 -21.16345 - 12.10855 -115.96010 -26.01553 - 0.52867 -115.63474 -30.87225 - -11.01785 -115.29279 -35.72918 - -22.52933 -114.93406 -40.58190 - -34.00410 -114.55847 -45.42598 - -34.00536 -114.54805 -45.42598 - -49.24091 -113.95995 -51.86363 - -64.38793 -113.21996 -58.26768 - -79.42617 -112.32853 -64.62788 - -94.33550 -111.28635 -70.93399 - -109.09587 -110.09432 -77.17574 - -109.09530 -110.09221 -77.17574 - -123.68579 -108.74076 -83.34294 - -138.08636 -107.24344 -89.42575 - -152.27758 -105.60083 -95.41451 - -166.24016 -103.81373 -101.29954 - -179.95487 -101.88321 -107.07116 - -179.95486 -101.88437 -107.07116 - -193.38136 -99.48846 -112.71980 - -206.47856 -96.94520 -118.23650 - -219.22693 -94.25623 -123.61258 - -231.60716 -91.42332 -128.83935 - -243.60017 -88.44835 -133.90813 - -243.60022 -88.44935 -133.90813 - -255.14379 -84.68272 -138.81036 - -266.17655 -80.78735 -143.53853 - -276.68140 -76.76411 -148.08547 - -286.64134 -72.61386 -152.44401 - -296.03949 -68.33748 -156.60702 - -296.03949 -68.33812 -156.60702 - -304.84935 -63.78892 -160.56759 - -313.04431 -59.11472 -164.32018 - -320.60776 -54.31640 -167.85964 - -327.52321 -49.39477 -171.18082 - -333.77426 -44.35064 -174.27856 - -333.77426 -44.35126 -174.27856 - -339.33621 -39.05777 -177.14804 - -344.18427 -33.64281 -179.78601 - -348.30226 -28.10704 -182.18967 - -351.67413 -22.45107 -184.35621 - -354.28389 -16.67542 -186.28284 - -354.28390 -16.67598 -186.28284 - -355.74713 -12.57717 -187.56897 - -356.79705 -8.40975 -188.71859 - -357.42681 -4.17408 -189.73146 - -357.62960 0.12958 -190.60734 - -357.39863 4.50101 -191.34599 - -357.39864 4.50049 -191.34599 - -356.72343 9.01494 -191.94730 - -355.59337 13.59776 -192.41173 - -354.00160 18.24895 -192.73988 - -351.94130 22.96860 -192.93237 - -349.40560 27.75686 -192.98981 - -349.40559 27.75633 -192.98981 - -346.38568 32.64205 -192.91297 - -342.87715 37.52891 -192.70320 - -338.87985 42.41734 -192.36205 - -334.39361 47.30780 -191.89105 - -329.41820 52.20083 -191.29173 - -329.41836 52.20412 -191.29173 - -320.62295 59.60581 -190.09467 - -310.73819 65.99415 -188.59383 - -299.94658 71.14826 -186.79933 - -288.44171 75.07285 -184.72130 - -276.41642 77.77251 -182.36984 - -276.41642 77.77012 -182.36984 - -263.93328 81.00548 -179.75583 - -250.98913 83.63810 -176.89176 - -237.67840 85.67170 -173.79020 - -224.09494 87.10968 -170.46369 - -210.33211 87.95511 -166.92480 - -210.33214 87.95330 -166.92480 - -196.35277 89.88749 -163.18634 - -182.10640 91.35183 -159.26187 - -167.66669 92.34852 -155.16501 - -153.10697 92.87953 -150.90941 - -138.50028 92.94656 -146.50870 - -138.50030 92.94520 -146.50870 - -123.82675 93.74220 -141.97668 - -109.05943 94.13891 -137.32737 - -94.26115 94.13639 -132.57473 - -79.49458 93.73555 -127.73278 - -64.82224 92.93710 -122.81548 - -64.82225 92.93602 -122.81548 - -50.23456 92.66552 -117.83685 - -35.71762 92.03576 -112.81067 - -21.32784 91.04707 -107.75052 - -7.12162 89.69966 -102.67002 - 6.84470 87.99367 -97.58276 - 6.84468 87.99289 -97.58276 - 20.57327 86.67908 -92.50226 - 34.06921 85.03192 -87.44130 - 47.28012 83.05134 -82.41236 - 60.15360 80.73727 -77.42793 - 72.63722 78.08961 -72.50050 - 72.63718 78.08938 -72.50050 - 84.71526 75.57872 -67.64237 - 96.37388 72.75084 -62.86457 - 107.56319 69.60566 -58.17765 - 118.23332 66.14319 -53.59221 - 128.33443 62.36347 -49.11881 - 128.33720 62.34395 -49.11881 - 136.67147 48.64288 -44.96356 - 142.88908 34.12208 -40.92650 - 146.86716 18.78261 -37.01100 - 148.48299 2.62572 -33.22045 - 147.61408 -14.34718 -29.55820 - 147.67458 -14.79000 -29.55820 - 144.23509 -31.19770 -26.02591 - 138.27917 -48.32750 -22.61824 - 129.80538 -64.08643 -19.32804 - 119.22132 -76.48377 -16.14820 - 107.02276 -85.63094 -13.07157 - 107.01859 -85.81722 -13.07157 - 93.61558 -92.37477 -10.08860 - 79.45850 -95.88566 -7.18630 - 64.99833 -96.42762 -4.35243 - 50.68535 -93.86669 -1.57472 - 37.06366 -86.79904 1.15906 - 36.98504 -86.70087 1.15906 - 24.80523 -75.16367 3.86225 - 14.58680 -60.60926 6.54434 - 6.76388 -43.22615 9.21189 - 1.75981 -23.02610 11.87143 - -0.00334 -0.01405 14.52950 + -0.01266 0.05757 50.86404 + 0.03914 0.92085 43.67677 + 0.34968 3.50580 36.48958 + 1.17957 7.86442 29.30165 + 2.77262 13.49523 22.11214 + 5.20791 18.72155 14.92023 + 5.23693 18.90884 14.92023 + 8.37003 22.61196 7.72428 + 11.94429 24.79069 0.52106 + 15.74305 25.68571 -6.69263 + 19.62490 26.07869 -13.92002 + 23.56859 26.51035 -21.16431 + 23.55386 -116.45465 -21.16431 + 11.92373 -116.14485 -26.00395 + 0.32549 -115.81699 -30.84816 + -11.23905 -115.47078 -35.69251 + -22.76805 -115.10604 -40.53256 + -34.25964 -114.72264 -45.36387 + -34.26090 -114.71223 -45.36387 + -49.51750 -114.11094 -51.78435 + -64.68359 -113.35453 -58.17104 + -79.73850 -112.44342 -64.51368 + -94.66166 -111.37826 -70.80201 + -109.43256 -110.15992 -77.02578 + -109.43199 -110.15783 -77.02578 + -124.02929 -108.77669 -83.17475 + -138.43247 -107.24624 -89.23910 + -152.62168 -105.56704 -95.20916 + -166.57711 -103.73985 -101.07526 + -180.27910 -101.76567 -106.82773 + -180.27909 -101.76685 -106.82773 + -193.68681 -99.32369 -112.45698 + -206.75869 -96.72954 -117.95409 + -219.47471 -93.98601 -123.31039 + -231.81507 -91.09483 -128.51722 + -243.76019 -88.05786 -133.56591 + -243.76023 -88.05886 -133.56591 + -255.25000 -84.26592 -138.44795 + -266.22536 -80.34274 -143.15584 + -276.66898 -76.29017 -147.68248 + -286.56369 -72.10907 -152.02073 + -295.89239 -67.80033 -156.16350 + -295.89239 -67.80096 -156.16350 + -304.62840 -63.21789 -160.10393 + -312.74488 -58.50833 -163.83653 + -320.22503 -53.67316 -167.35620 + -327.05217 -48.71321 -170.65786 + -333.20971 -43.62931 -173.73640 + -333.20972 -43.62992 -173.73640 + -338.67276 -38.29525 -176.58706 + -343.41632 -32.83772 -179.20666 + -347.42406 -27.25803 -181.59248 + -350.67973 -21.55682 -183.74179 + -353.16717 -15.73468 -185.65186 + -353.16718 -15.73521 -185.65186 + -354.53189 -11.54723 -186.92606 + -355.47428 -7.28900 -188.06422 + -355.98736 -2.96095 -189.06614 + -356.06416 1.43658 -189.93162 + -355.69774 5.90330 -190.66048 + -355.69774 5.90281 -190.66048 + -354.87749 10.51388 -191.25264 + -353.59264 15.19455 -191.70863 + -351.83626 19.94471 -192.02911 + -349.60139 24.76434 -192.21477 + -346.88107 29.65348 -192.26628 + -346.88107 29.65301 -192.26628 + -343.66642 34.64037 -192.18446 + -339.95294 39.62950 -191.97076 + -335.74045 44.62066 -191.62681 + -331.02873 49.61417 -191.15421 + -325.81753 54.61038 -190.55459 + -325.81773 54.61410 -190.55459 + -316.66323 61.56011 -189.36001 + -306.57572 66.49302 -187.86545 + -295.84256 69.95327 -186.08096 + -284.63982 72.47007 -184.01661 + -273.11552 74.04639 -181.68246 + -273.11550 74.04455 -181.68246 + -261.19428 77.57784 -179.08901 + -248.76597 80.49877 -176.24809 + -235.92660 82.81002 -173.17181 + -222.77177 84.51415 -169.87229 + -209.39669 85.61359 -166.36164 + -209.39670 85.61195 -166.36164 + -195.76612 87.78754 -162.65226 + -181.83162 89.48035 -158.75742 + -167.66891 90.69242 -154.69048 + -153.35337 91.42563 -150.46483 + -138.96013 91.68173 -146.09384 + -138.96014 91.68030 -146.09384 + -124.47136 92.65341 -141.59107 + -109.86213 93.21349 -136.97038 + -95.19725 93.36191 -132.24564 + -80.54131 93.09992 -127.43071 + -65.95871 92.42866 -122.53944 + -65.95872 92.42739 -122.53944 + -51.44171 92.27285 -117.58575 + -36.97806 91.74835 -112.58335 + -22.62585 90.85471 -107.54581 + -8.44302 89.59267 -102.48669 + 5.51258 87.96292 -97.41957 + 5.51256 87.96191 -97.41957 + 19.24171 86.71575 -92.35793 + 32.74820 85.12822 -87.31456 + 45.97844 83.19981 -82.30198 + 58.87888 80.93098 -77.33268 + 71.39608 78.32217 -72.41917 + 71.39604 78.32172 -72.41917 + 83.51329 75.84405 -67.57377 + 95.21584 73.04380 -62.80756 + 106.45304 69.92140 -58.13115 + 117.17429 66.47731 -53.55516 + 127.32908 62.71203 -49.09021 + 127.33189 62.69207 -49.09021 + 135.72250 49.04353 -44.94213 + 142.00325 34.56105 -40.91142 + 146.04926 19.24737 -37.00152 + 147.73604 3.10525 -33.21585 + 146.93955 -13.86245 -29.55785 + 147.00004 -14.30579 -29.55785 + 143.63305 -30.71659 -26.02922 + 137.74860 -47.85664 -22.62468 + 129.34429 -63.63192 -19.33717 + 118.82685 -76.05083 -16.15961 + 106.69133 -85.22400 -13.08492 + 106.68715 -85.41054 -13.08492 + 93.34296 -91.99787 -10.10361 + 79.23997 -95.54177 -7.20273 + 64.82874 -96.11952 -4.37009 + 50.55913 -93.59682 -1.59346 + 36.97492 -86.56955 1.13935 + 36.89629 -86.47145 1.13935 + 24.74774 -74.97660 3.84163 + 14.55408 -60.46637 6.52288 + 6.74917 -43.12919 9.18961 + 1.75609 -22.97678 11.84835 + -0.00334 -0.01404 14.50562 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12034,143 +12124,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 16.77343 0.00000 27.59211 1.44679 110 61 - - 33.08763 0.00000 55.18421 2.89358 110 60 - - 50.48522 0.00000 82.77632 4.34037 110 61 - - 57.24723 0.00000 110.36843 5.78715 110 52 - - 42.70829 0.00000 137.96054 7.23394 110 31 - - 42.70829 0.00000 68.20749 7.23394 110 63 - - 28.16120 0.00000 81.84899 8.68073 110 34 - - 13.59944 0.00000 95.49049 10.12752 110 14 - - 3.63658 0.00000 109.13199 11.57431 110 0 - - 3.96308 0.00000 122.77349 13.02110 110 0 - - 4.29961 0.00000 136.41499 14.46788 110 0 - - 4.29961 0.00000 111.45332 14.46788 110 0 - - 4.53043 0.00000 118.88354 15.43241 110 0 - - 4.76573 0.00000 126.31376 16.39693 110 0 - - 5.00430 0.00000 133.74398 17.36146 110 0 - - 5.24495 0.00000 141.17421 18.32599 110 0 - - 5.48646 0.00000 148.60443 19.29051 110 0 - - 5.48646 0.00000 137.71826 19.29051 110 0 - - 5.80761 1.30800 141.50704 19.82121 110 0 - - 6.12523 2.61600 145.29582 20.35192 110 0 - - 6.43680 3.92400 149.08461 20.88262 110 0 - - 6.73979 5.23200 152.87339 21.41333 110 0 - - 7.03166 6.54000 156.66217 21.94403 110 0 - - 7.15705 6.54000 150.27634 21.94403 110 0 - - 7.41450 7.84800 153.91069 22.47473 110 0 - - 7.66697 9.15600 157.54503 23.00544 110 0 - - 7.91193 10.46400 161.17938 23.53614 110 0 - - 8.14691 11.77200 164.81372 24.06684 110 0 - - 8.36954 13.08000 168.44806 24.59755 110 0 - - 11.79685 13.08000 162.75727 24.59755 110 0 - - 12.07609 14.38800 166.26883 25.12825 110 0 - - 12.33837 15.69600 169.78039 25.65895 110 0 - - 12.58237 17.00400 173.29196 26.18966 110 0 - - 12.80683 18.31200 176.80352 26.72036 110 0 - - 13.01051 19.62000 180.31508 27.25106 110 0 - - 20.04486 19.62000 112.91072 24.82969 110 0 - - 20.12070 20.92800 113.33345 24.92265 110 0 - - 20.18740 22.23600 113.75618 25.01561 110 0 - - 20.24487 23.54400 114.17890 25.10857 110 0 - - 20.29300 24.85200 114.60163 25.20153 110 0 - - 20.33171 26.16000 115.02436 25.29449 110 0 - - 21.90951 26.16000 114.42115 25.29449 110 0 - - 21.94539 27.46800 114.84166 25.38745 110 0 - - 21.97189 28.77600 115.26217 25.48041 110 0 - - 21.98935 30.08400 115.68268 25.57337 110 0 - - 21.99810 31.39200 116.10319 25.66633 110 0 - - 21.99845 32.70000 116.52370 25.75929 110 0 - - 23.36330 32.70000 116.01583 25.75929 110 0 - - 23.36055 34.00800 116.43451 25.85225 110 0 - - 23.35031 35.31600 116.85318 25.94521 110 0 - - 23.33329 36.62400 117.27186 26.03817 110 0 - - 23.31018 37.93200 117.69054 26.13113 110 0 - - 23.28167 39.24000 118.10921 26.22409 110 0 - - 18.82316 39.24000 183.43874 28.78144 110 0 - - 18.82487 40.22100 185.97557 29.17947 110 0 - - 18.82119 41.20200 188.51241 29.57750 110 0 - - 18.81308 42.18300 191.04924 29.97553 110 0 - - 18.80151 43.16400 193.58607 30.37355 110 0 - - 18.78747 44.14500 196.12290 30.77158 110 0 - - 19.85888 44.14500 192.60019 30.77158 110 0 - - 19.85467 45.12600 195.09146 31.16961 110 0 - - 19.85003 46.10700 197.58272 31.56764 110 0 - - 19.84607 47.08800 200.07399 31.96566 110 0 - - 19.84392 48.06900 202.56525 32.36369 110 0 - - 19.84470 49.05000 205.05652 32.76172 110 0 - - 20.73899 49.05000 201.76542 32.76172 110 0 - - 20.75281 50.03100 204.21670 33.15975 110 0 - - 20.77195 51.01200 206.66798 33.55777 110 0 - - 20.79736 51.99300 209.11926 33.95580 110 0 - - 20.83001 52.97400 211.57054 34.35383 110 0 - - 20.87086 53.95500 214.02182 34.75186 110 0 - - 21.82955 53.95500 210.11289 34.75186 110 0 - - 21.92606 55.49657 213.89455 35.37733 110 0 - - 22.04486 57.03814 217.67621 36.00280 110 0 - - 22.18552 58.57971 221.45787 36.62827 110 0 - - 22.34763 60.12129 225.23953 37.25374 110 0 - - 22.53075 61.66286 229.02119 37.87922 110 0 - - 23.50783 61.66286 224.58067 37.87922 110 0 - - 23.72397 63.20443 228.28901 38.50469 110 0 - - 23.95799 64.74600 231.99734 39.13016 110 0 - - 24.20840 66.28757 235.70568 39.75563 110 0 - - 24.47374 67.82914 239.41402 40.38110 110 0 - - 24.75251 69.37071 243.12235 41.00658 110 0 - - 25.53017 69.37071 239.03373 41.00658 110 0 - - 25.83070 70.91229 242.67970 41.63205 110 0 - - 26.14200 72.45386 246.32568 42.25752 110 0 - - 26.46292 73.99543 249.97165 42.88299 110 0 - - 26.79232 75.53700 253.61762 43.50846 110 0 - - 27.12902 77.07857 257.26360 44.13393 110 0 - - 27.74589 77.07857 253.47345 44.13393 110 0 - - 28.09606 78.62014 257.06570 44.75941 110 0 - - 28.45159 80.16171 260.65796 45.38488 110 0 - - 28.81168 81.70329 264.25022 46.01035 110 0 - - 29.17553 83.24486 267.84248 46.63582 110 0 - - 29.54236 84.78643 271.43474 47.26129 110 0 - - 30.02942 84.78643 267.90138 47.26129 110 0 - - 30.40386 86.32800 271.44688 47.88677 110 0 - - 30.78002 87.86957 274.99238 48.51224 110 0 - - 31.15747 89.41114 278.53787 49.13771 110 0 - - 31.53575 90.95271 282.08337 49.76318 110 0 - - 31.91443 92.49429 285.62887 50.38865 110 0 - - 32.26583 92.49429 282.31903 50.38865 110 0 - - 32.64817 94.03586 285.82344 51.01412 110 0 - - 33.03035 95.57743 289.32786 51.63960 110 0 - - 33.41225 97.11900 292.83227 52.26507 110 0 - - 33.79376 98.66057 296.33668 52.89054 110 0 - - 34.17479 100.20214 299.84109 53.51601 110 0 - - 32.98489 100.20214 296.72773 53.51601 110 0 - - 33.35358 101.74371 300.19575 54.14148 110 0 - - 33.72190 103.28529 303.66378 54.76696 110 0 - - 34.09007 104.82686 307.13180 55.39243 110 0 - - 34.45833 106.36843 310.59983 56.01790 110 0 - - 34.82689 107.91000 314.06785 56.64337 110 0 - - 29.55525 107.91000 734.00940 36.53923 110 0 - - 29.77121 109.38150 745.49575 37.11102 110 0 - - 29.99183 110.85300 756.98209 37.68281 110 0 - - 30.21794 112.32450 768.46843 38.25461 110 0 - - 30.45039 113.79600 779.95478 38.82640 110 0 - - 30.69001 115.26750 791.44112 39.39820 110 0 - - 28.44518 115.26750 738.87493 39.39820 110 0 - - 28.66382 116.73900 749.59837 39.96999 110 0 - - 28.88988 118.21050 760.32181 40.54178 110 0 - - 29.12312 119.68200 771.04525 41.11358 110 0 - - 29.36327 121.15350 781.76869 41.68537 110 0 - - 29.61009 122.62500 792.49213 42.25717 110 0 - - 24.34430 122.62500 772.62437 42.25717 110 0 - - 24.50271 124.09650 783.07897 42.82896 110 0 - - 24.66678 125.56800 793.53357 43.40075 110 0 - - 24.83567 127.03950 803.98818 43.97255 110 0 - - 28.79713 128.51100 814.44278 44.54434 110 0 - - 56.70677 129.98250 824.89738 45.11614 110 7 - - 56.70677 129.98250 814.08791 45.11614 110 7 - - 84.31040 131.45400 824.40552 45.68793 110 10 - - 111.70316 132.92550 834.72313 46.25972 110 13 - - 138.95043 134.39700 845.04073 46.83152 110 16 - - 166.11761 135.86850 855.35834 47.40331 110 19 - - 193.27011 137.34000 865.67594 47.97510 110 22 - + 16.44341 0.00000 27.59211 1.44679 110 60 - + 32.79379 0.00000 55.18421 2.89358 110 59 - + 50.22759 0.00000 82.77632 4.34037 110 61 - + 57.02583 0.00000 110.36843 5.78715 110 52 - + 42.52318 0.00000 137.96054 7.23394 110 31 - + 42.52318 0.00000 68.20749 7.23394 110 62 - + 28.01245 0.00000 81.84899 8.68073 110 34 - + 13.48717 0.00000 95.49049 10.12752 110 14 - + 3.56095 0.00000 109.13199 11.57431 110 0 - + 3.92429 0.00000 122.77349 13.02110 110 0 - + 4.29789 0.00000 136.41499 14.46788 110 0 - + 4.29789 0.00000 111.45332 14.46788 110 0 - + 4.55358 0.00000 118.88354 15.43241 110 0 - + 4.81390 0.00000 126.31376 16.39693 110 0 - + 5.07765 0.00000 133.74398 17.36146 110 0 - + 5.34364 0.00000 141.17421 18.32599 110 0 - + 5.61068 0.00000 148.60443 19.29051 110 0 - + 5.61068 0.00000 137.71826 19.29051 110 0 - + 5.96617 1.30800 141.50704 19.82121 110 0 - + 6.31851 2.61600 145.29582 20.35192 110 0 - + 6.66520 3.92400 149.08461 20.88262 110 0 - + 7.00373 5.23200 152.87339 21.41333 110 0 - + 7.33159 6.54000 156.66217 21.94403 110 0 - + 7.45699 6.54000 150.27634 21.94403 110 0 - + 7.75089 7.84800 153.91069 22.47473 110 0 - + 8.04029 9.15600 157.54503 23.00544 110 0 - + 8.32263 10.46400 161.17938 23.53614 110 0 - + 8.59546 11.77200 164.81372 24.06684 110 0 - + 8.85641 13.08000 168.44806 24.59755 110 0 - + 12.28372 13.08000 162.75727 24.59755 110 0 - + 12.60172 14.38800 166.26883 25.12825 110 0 - + 12.90319 15.69600 169.78039 25.65895 110 0 - + 13.18675 17.00400 173.29196 26.18966 110 0 - + 13.45110 18.31200 176.80352 26.72036 110 0 - + 13.69494 19.62000 180.31508 27.25106 110 0 - + 20.31863 19.62000 112.91072 24.82969 110 0 - + 20.41063 20.92800 113.33345 24.92265 110 0 - + 20.49355 22.23600 113.75618 25.01561 110 0 - + 20.56726 23.54400 114.17890 25.10857 110 0 - + 20.63162 24.85200 114.60163 25.20153 110 0 - + 20.68652 26.16000 115.02436 25.29449 110 0 - + 22.26432 26.16000 114.42115 25.29449 110 0 - + 22.31632 27.46800 114.84166 25.38745 110 0 - + 22.35882 28.77600 115.26217 25.48041 110 0 - + 22.39211 30.08400 115.68268 25.57337 110 0 - + 22.41646 31.39200 116.10319 25.66633 110 0 - + 22.43218 32.70000 116.52370 25.75929 110 0 - + 23.79703 32.70000 116.01583 25.75929 110 0 - + 23.80933 34.00800 116.43451 25.85225 110 0 - + 23.81379 35.31600 116.85318 25.94521 110 0 - + 23.81104 36.62400 117.27186 26.03817 110 0 - + 23.80171 37.93200 117.69054 26.13113 110 0 - + 23.78645 39.24000 118.10921 26.22409 110 0 - + 20.08512 39.24000 183.43874 28.78144 110 0 - + 20.11069 40.22100 185.97557 29.17947 110 0 - + 20.12993 41.20200 188.51241 29.57750 110 0 - + 20.14372 42.18300 191.04924 29.97553 110 0 - + 20.15295 43.16400 193.58607 30.37355 110 0 - + 20.15849 44.14500 196.12290 30.77158 110 0 - + 21.22991 44.14500 192.60019 30.77158 110 0 - + 21.24399 45.12600 195.09146 31.16961 110 0 - + 21.25622 46.10700 197.58272 31.56764 110 0 - + 21.26761 47.08800 200.07399 31.96566 110 0 - + 21.27912 48.06900 202.56525 32.36369 110 0 - + 21.29177 49.05000 205.05652 32.76172 110 0 - + 22.18606 49.05000 201.76542 32.76172 110 0 - + 22.20983 50.03100 204.21670 33.15975 110 0 - + 22.23682 51.01200 206.66798 33.55777 110 0 - + 22.26785 51.99300 209.11926 33.95580 110 0 - + 22.30369 52.97400 211.57054 34.35383 110 0 - + 22.34515 53.95500 214.02182 34.75186 110 0 - + 23.30383 53.95500 210.11289 34.75186 110 0 - + 23.39537 55.49657 213.89455 35.37733 110 0 - + 23.50162 57.03814 217.67621 36.00280 110 0 - + 23.62228 58.57971 221.45787 36.62827 110 0 - + 23.75701 60.12129 225.23953 37.25374 110 0 - + 23.90551 61.66286 229.02119 37.87922 110 0 - + 24.88259 61.66286 224.58067 37.87922 110 0 - + 25.05762 63.20443 228.28901 38.50469 110 0 - + 25.24534 64.74600 231.99734 39.13016 110 0 - + 25.44518 66.28757 235.70568 39.75563 110 0 - + 25.65653 67.82914 239.41402 40.38110 110 0 - + 25.87883 69.37071 243.12235 41.00658 110 0 - + 26.65648 69.37071 239.03373 41.00658 110 0 - + 26.89886 70.91229 242.67970 41.63205 110 0 - + 27.15089 72.45386 246.32568 42.25752 110 0 - + 27.41197 73.99543 249.97165 42.88299 110 0 - + 27.68146 75.53700 253.61762 43.50846 110 0 - + 27.95875 77.07857 257.26360 44.13393 110 0 - + 28.57561 77.07857 253.47345 44.13393 110 0 - + 28.86729 78.62014 257.06570 44.75941 110 0 - + 29.16556 80.16171 260.65796 45.38488 110 0 - + 29.46987 81.70329 264.25022 46.01035 110 0 - + 29.77967 83.24486 267.84248 46.63582 110 0 - + 30.09444 84.78643 271.43474 47.26129 110 0 - + 30.58149 84.78643 267.90138 47.26129 110 0 - + 30.90607 86.32800 271.44688 47.88677 110 0 - + 31.23466 87.86957 274.99238 48.51224 110 0 - + 31.56690 89.41114 278.53787 49.13771 110 0 - + 31.90240 90.95271 282.08337 49.76318 110 0 - + 32.24081 92.49429 285.62887 50.38865 110 0 - + 32.59221 92.49429 282.31903 50.38865 110 0 - + 32.93684 94.03586 285.82344 51.01412 110 0 - + 33.28381 95.57743 289.32786 51.63960 110 0 - + 33.63301 97.11900 292.83227 52.26507 110 0 - + 33.98427 98.66057 296.33668 52.89054 110 0 - + 34.33746 100.20214 299.84109 53.51601 110 0 - + 33.14756 100.20214 296.72773 53.51601 110 0 - + 33.49078 101.74371 300.19575 54.14148 110 0 - + 33.83591 103.28529 303.66378 54.76696 110 0 - + 34.18308 104.82686 307.13180 55.39243 110 0 - + 34.53242 106.36843 310.59983 56.01790 110 0 - + 34.88409 107.91000 314.06785 56.64337 110 0 - + 29.84124 107.91000 734.00940 36.53923 110 0 - + 29.98548 109.38150 745.49575 37.11102 110 0 - + 30.14257 110.85300 756.98209 37.68281 110 0 - + 30.31276 112.32450 768.46843 38.25461 110 0 - + 30.49633 113.79600 779.95478 38.82640 110 0 - + 30.69352 115.26750 791.44112 39.39820 110 0 - + 28.44869 115.26750 738.87493 39.39820 110 0 - + 28.63073 116.73900 749.59837 39.96999 110 0 - + 28.82539 118.21050 760.32181 40.54178 110 0 - + 29.03182 119.68200 771.04525 41.11358 110 0 - + 29.24916 121.15350 781.76869 41.68537 110 0 - + 29.47658 122.62500 792.49213 42.25717 110 0 - + 24.21079 122.62500 772.62437 42.25717 110 0 - + 24.35263 124.09650 783.07897 42.82896 110 0 - + 24.50246 125.56800 793.53357 43.40075 110 0 - + 24.65905 127.03950 803.98818 43.97255 110 0 - + 28.60971 128.51100 814.44278 44.54434 110 0 - + 56.50964 129.98250 824.89738 45.11614 110 7 - + 56.50964 129.98250 814.08791 45.11614 110 7 - + 84.10426 131.45400 824.40552 45.68793 110 10 - + 111.48850 132.92550 834.72313 46.25972 110 13 - + 138.72759 134.39700 845.04073 46.83152 110 16 - + 165.88677 135.86850 855.35834 47.40331 110 19 - + 193.03129 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12183,10 +12273,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 57.880 'Clay' - -4.00 43.676 'Peat' - -6.00 186.304 'Clay' - -13.00 159.753 'Sand' + 0.00 58.453 'Clay' + -4.00 44.462 'Peat' + -6.00 192.443 'Clay' + -13.00 159.505 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12263,17 +12353,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -12290,17 +12380,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -12389,72 +12479,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00001 0.00000 1 0 A - 7.27942 6.44657 11.10304 0.62547 110 66 - - 18.63994 7.98814 22.20609 1.25094 110 84 - - 29.97926 9.52971 33.30913 1.87642 110 90 - - 41.29776 11.07129 44.41217 2.50189 110 93 - - 52.59583 12.61286 55.51522 3.12736 110 95 - - 40.39697 12.61286 48.26946 3.12736 110 84 - - 46.11018 14.15443 57.92335 3.75283 110 80 - - 51.80599 15.69600 67.57724 4.37830 110 77 - - 57.48585 17.23757 77.23113 5.00377 110 74 - - 63.15121 18.77914 86.88502 5.62925 110 73 - - 68.80353 20.32071 96.53892 6.25472 110 71 - - 54.85557 20.32071 70.67406 6.25472 110 78 - - 59.43812 21.86229 77.74147 6.88019 110 76 - - 64.01022 23.40386 84.80887 7.50566 110 75 - - 68.57299 24.94543 91.87628 8.13113 110 75 - - 73.12756 26.48700 98.94369 8.75661 110 74 - - 77.67508 28.02857 106.01109 9.38208 110 73 - - 67.72829 28.02857 88.06042 9.38208 110 77 - - 71.72274 29.57014 93.93112 10.00755 110 76 - - 75.71203 31.11171 99.80181 10.63302 110 76 - - 79.69696 32.65329 105.67251 11.25849 110 75 - - 83.67829 34.19486 111.54320 11.88397 110 75 - - 87.65680 35.73643 117.41390 12.50944 110 75 - - 79.90478 35.73643 104.10611 12.50944 110 77 - - 83.54680 37.27800 109.31142 13.13491 110 76 - - 87.18722 38.81957 114.51672 13.76038 110 76 - - 90.82647 40.36114 119.72203 14.38585 110 76 - - 94.46498 41.90271 124.92734 15.01132 110 76 - - 98.10319 43.44429 130.13264 15.63680 110 75 - - 91.74440 43.44429 119.53821 15.63680 110 77 - - 95.15706 44.98586 124.31974 16.26227 110 77 - - 98.56994 46.52743 129.10127 16.88774 110 76 - - 101.98316 48.06900 133.88279 17.51321 110 76 - - 105.39680 49.61057 138.66432 18.13868 110 76 - - 108.81098 51.15214 143.44585 18.76416 110 76 - - 103.41729 51.15214 134.63740 18.76416 110 77 - - 106.66949 52.69371 139.12532 19.38963 110 77 - - 109.92209 54.23529 143.61323 20.01510 110 77 - - 113.17485 55.77686 148.10114 20.64057 110 76 - - 116.42754 57.31843 152.58906 21.26604 110 76 - - 119.67992 58.86000 157.07697 21.89152 110 76 - - 205.18580 58.86000 279.16236 14.12167 110 74 - - 213.21341 60.33150 290.46579 14.69346 110 73 - - 221.23635 61.80300 301.76922 15.26526 110 73 - - 229.25379 63.27450 313.07265 15.83705 110 73 - - 237.26489 64.74600 324.37608 16.40885 110 73 - - 245.26881 66.21750 335.67951 16.98064 110 73 - - 230.10750 66.21750 311.64171 16.98064 110 74 - - 237.62909 67.68900 322.13571 17.55243 110 74 - - 244.30658 69.16050 332.62971 18.12423 110 73 - - 211.97643 70.63200 343.12371 18.69602 110 62 - - 180.74977 72.10350 353.61771 19.26782 110 51 - - 150.55531 73.57500 364.11171 19.83961 110 41 - - 150.55531 73.57500 356.39681 19.83961 110 42 - - 121.29739 75.04650 366.66846 20.41140 110 33 - - 92.84620 76.51800 376.94011 20.98320 110 25 - - 65.07924 77.98950 387.21176 21.55499 110 17 - - 37.87399 79.46100 397.48341 22.12679 110 10 - - 11.10795 80.93250 407.75506 22.69858 110 0 - - 11.10795 80.93250 403.90034 22.69858 110 0 - - 8.25305 82.40400 414.07488 23.27037 110 0 - - 8.63361 83.87550 424.24943 23.84217 110 0 - - 9.01311 85.34700 434.42398 24.41396 110 0 - - 9.39205 86.81850 444.59852 24.98575 110 0 - - 9.77088 88.29000 454.77307 25.55755 110 0 - + 0.00000 4.90500 0.00002 0.00000 1 0 A + 18.50817 6.44657 23.80111 0.62547 110 78 - + 36.79946 7.98814 47.60221 1.25094 110 77 - + 45.51080 9.52971 71.40332 1.87642 110 64 - + 54.20867 11.07129 95.20443 2.50189 110 57 - + 62.89337 12.61286 119.00554 3.12736 110 53 - + 39.02220 12.61286 49.29372 3.12736 110 79 - + 44.77653 14.15443 59.15246 3.75283 110 76 - + 50.51863 15.69600 69.01120 4.37830 110 73 - + 56.24908 17.23757 78.86995 5.00377 110 71 - + 61.96842 18.77914 88.72869 5.62925 110 70 - + 67.67721 20.32071 98.58743 6.25472 110 69 - + 53.72926 20.32071 70.68330 6.25472 110 76 - + 58.36996 21.86229 77.75163 6.88019 110 75 - + 63.00132 23.40386 84.81996 7.50566 110 74 - + 67.62394 24.94543 91.88829 8.13113 110 74 - + 72.23842 26.48700 98.95662 8.75661 110 73 - + 76.84536 28.02857 106.02494 9.38208 110 72 - + 66.89856 28.02857 88.07144 9.38208 110 76 - + 70.95150 29.57014 93.94287 10.00755 110 76 - + 74.99806 31.11171 99.81430 10.63302 110 75 - + 79.03877 32.65329 105.68573 11.25849 110 75 - + 83.07415 34.19486 111.55716 11.88397 110 74 - + 87.10473 35.73643 117.42859 12.50944 110 74 - + 79.35270 35.73643 104.11800 12.50944 110 76 - + 83.04459 37.27800 109.32390 13.13491 110 76 - + 86.73258 38.81957 114.52980 13.76038 110 76 - + 90.41704 40.36114 119.73570 14.38585 110 76 - + 94.09833 41.90271 124.94160 15.01132 110 75 - + 97.77681 43.44429 130.14750 15.63680 110 75 - + 91.41802 43.44429 119.55043 15.63680 110 76 - + 94.86840 44.98586 124.33244 16.26227 110 76 - + 98.31648 46.52743 129.11446 16.88774 110 76 - + 101.76240 48.06900 133.89648 17.51321 110 76 - + 105.20630 49.61057 138.67850 18.13868 110 76 - + 108.64831 51.15214 143.46051 18.76416 110 76 - + 103.25462 51.15214 134.64963 18.76416 110 77 - + 106.53229 52.69371 139.13795 19.38963 110 77 - + 109.80808 54.23529 143.62627 20.01510 110 76 - + 113.08184 55.77686 148.11459 20.64057 110 76 - + 116.35344 57.31843 152.60291 21.26604 110 76 - + 119.62272 58.86000 157.09123 21.89152 110 76 - + 204.89981 58.86000 280.51782 14.12167 110 73 - + 212.99914 60.33150 291.87613 14.69346 110 73 - + 221.08561 61.80300 303.23445 15.26526 110 73 - + 229.15897 63.27450 314.59276 15.83705 110 73 - + 237.21896 64.74600 325.95107 16.40885 110 73 - + 245.26530 66.21750 337.30939 16.98064 110 73 - + 230.10399 66.21750 312.61080 16.98064 110 74 - + 237.66218 67.68900 323.13743 17.55243 110 74 - + 244.37108 69.16050 333.66406 18.12423 110 73 - + 212.06773 70.63200 344.19069 18.69602 110 62 - + 180.86388 72.10350 354.71732 19.26782 110 51 - + 150.68882 73.57500 365.24396 19.83961 110 41 - + 150.68882 73.57500 357.09310 19.83961 110 42 - + 121.44747 75.04650 367.38481 20.41140 110 33 - + 93.01052 76.51800 377.67653 20.98320 110 25 - + 65.25586 77.98950 387.96825 21.55499 110 17 - + 38.06141 79.46100 398.25997 22.12679 110 10 - + 11.30508 80.93250 408.55168 22.69858 110 0 - + 11.30508 80.93250 404.41665 22.69858 110 0 - + 8.45919 82.40400 414.60420 23.27037 110 0 - + 8.84826 83.87550 424.79176 23.84217 110 0 - + 9.23595 85.34700 434.97931 24.41396 110 0 - + 9.62289 86.81850 445.16686 24.98575 110 0 - + 10.00969 88.29000 455.35442 25.55755 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12469,8 +12559,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 411.828 'Clay' - -13.00 395.227 'Sand' + -6.00 418.814 'Clay' + -13.00 395.475 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12495,17 +12585,17 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 7.90682 11.47132 -7.08806 0.00000 19.42013 1 3 0 1.000 0 0 - 8.16960 11.90118 -7.83591 0.00000 19.74572 1 10 12 1.000 0 0 - 7.54962 11.01915 -6.91935 0.00000 13.56667 1 11 13 1.000 0 0 + 7.29688 10.61966 -6.39599 0.00000 13.31787 1 10 12 1.000 0 0 + 7.55686 11.01942 -6.75572 0.00000 13.44873 1 11 13 1.000 0 0 -24.64877 -33.28626 7.11387 16.24927 18.61625 2 3 0 1.000 0 0 - -24.85057 -33.36786 7.14681 16.32244 18.83921 2 10 12 1.000 0 0 - -23.04409 -32.60699 7.04179 11.16180 12.88365 2 11 13 1.000 0 0 + -22.84294 -32.52947 6.99532 11.11396 12.71953 2 10 12 1.000 0 0 + -23.04409 -32.60699 7.04179 11.14095 12.76033 2 11 13 1.000 0 0 -357.36675 -130.29407 -186.90167 57.83928 63.86128 3 3 0 1.000 0 0 - -466.96793 -150.45558 -290.47348 67.13909 71.84045 3 10 12 1.000 0 0 - -286.47657 -106.30945 -126.66806 41.39030 47.29322 3 11 13 1.000 0 0 + -218.22491 -91.84827 -87.98517 36.87428 43.00808 3 10 12 1.000 0 0 + -263.41000 -101.44644 -113.42288 40.48254 46.54521 3 11 13 1.000 0 0 -348.18884 -116.94920 -183.16395 56.76415 62.32165 4 3 0 1.000 0 0 - -352.61491 -115.53101 -187.19922 58.17216 63.64420 4 10 12 1.000 0 0 - -357.62960 -116.26916 -192.98981 45.20436 49.47297 4 11 13 1.000 0 0 + -351.98851 -116.84236 -190.57173 42.34261 46.09012 4 10 12 1.000 0 0 + -356.06416 -116.45465 -192.26628 44.94341 49.04222 4 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -12530,11 +12620,11 @@ AnchorName 2 10 7 12 1.000 56.00000 0 1 0 0 'Anchor' 2 11 7 13 1.000 56.00000 0 1 0 0 'Anchor' 3 3 7 0 1.000 168.00000 0 0 0 0 'Anchor' - 3 10 7 12 1.000 168.00000 0 0 0 0 'Anchor' - 3 11 7 13 1.000 161.86324 0 1 0 0 'Anchor' + 3 10 7 12 1.000 141.67839 0 1 0 0 'Anchor' + 3 11 7 13 1.000 155.07134 0 1 0 0 'Anchor' 4 3 7 0 1.000 144.19843 0 1 0 0 'Anchor' - 4 10 7 12 1.000 143.74462 0 1 0 0 'Anchor' - 4 11 7 13 1.000 142.71829 0 1 0 0 'Anchor' + 4 10 7 12 1.000 142.65945 0 1 0 0 'Anchor' + 4 11 7 13 1.000 142.72839 0 1 0 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -12550,15 +12640,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'Anchor' 142.65945 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-466.96793 -MaximumShearForce=-150.45558 +MaximumMoment=-357.36675 +MaximumShearForce=-130.29407 MaximumDisplacement=-186.90167 -MaximumPercentageMobilisedMoment=67.13909 -MaximumPercentageMobilisedResistance=71.84045 +MaximumPercentageMobilisedMoment=57.83928 +MaximumPercentageMobilisedResistance=63.86128 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-351.98851 +MaximumShearForce=-116.84236 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=42.34261 +MaximumPercentageMobilisedResistance=46.09012 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shi index 4587af15..fe372af6 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:41 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.394 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.172 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -795,9 +866,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.018 +ResistanceFactor=2.038 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shd index f180b64b..6a056132 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:48 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.391 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.166 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -796,9 +867,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.025 +ResistanceFactor=2.043 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -911,7 +1042,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -942,7 +1073,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=8 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.391 1.000 0.000 0.000 1.000 1.000 1.000 - -1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.025 1.300 0.000 0.000 1.100 1.000 1.000 + 1 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 2 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 2 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 3 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 3 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 4 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.166 1.000 0.000 0.000 1.000 1.000 1.000 + 4 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4780,7 +4918,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4804,28 +4942,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.04000 - -2.08000 - -2.12000 - -2.16000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4943,20 +5075,20 @@ PartialFactorSet=12 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.75 : Percentage mobilized resistance left - 11.73 : Percentage mobilized resistance right - 311.63 : Effective left - 311.65 : Effective right + 13.32 : Percentage mobilized resistance left + 8.26 : Percentage mobilized resistance right + 280.87 : Effective left + 280.88 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1578.21 : Max effective resistance left - 2657.66 : Max effective resistance right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 73.14 : Vertical force left - 68.78 : Vertical force right + 79.58 : Vertical force left + 74.94 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4966,157 +5098,151 @@ PartialFactorSet=12 [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.83591 - 0.00000 0.00000 -7.82398 - 0.00000 0.00000 -7.81204 - 0.00000 0.00000 -7.80010 - 0.00000 0.00000 -7.78816 - 0.00000 0.00000 -7.77622 - 0.00000 -0.00001 -7.77622 - 0.00000 -0.00001 -7.76429 - 0.00000 -0.00001 -7.75235 - 0.00000 -0.00001 -7.74041 - 0.00000 -0.00001 -7.72847 - 0.00128 0.02564 -7.71653 - 0.00125 0.02523 -7.71653 - 0.00674 0.09714 -7.70857 - 0.02319 0.24446 -7.70061 - 0.05815 0.46720 -7.69266 - 0.11915 0.76535 -7.68475 - 0.21373 1.13891 -7.67688 - 0.21373 1.13891 -7.67688 - 0.26261 1.30595 -7.67375 - 0.31828 1.47807 -7.67063 - 0.38093 1.65528 -7.66754 - 0.45077 1.83756 -7.66447 - 0.52800 2.02492 -7.66143 - 0.52801 2.02483 -7.66143 - 0.79602 2.36559 -7.65253 - 1.07744 2.24845 -7.64409 - 1.31923 1.72092 -7.63621 - 1.48325 1.01317 -7.62904 - 1.56248 0.30769 -7.62268 - 1.56246 0.30769 -7.62268 - 1.55716 -0.39581 -7.61723 - 1.46754 -1.09761 -7.61265 - 1.29379 -1.79801 -7.60883 - 1.03606 -2.49724 -7.60569 - 0.69449 -3.19551 -7.60312 - 0.69449 -3.19547 -7.60312 - 0.26918 -3.89295 -7.60100 - -0.23979 -4.58974 -7.59903 - -0.83233 -5.28584 -7.59688 - -1.50836 -5.98114 -7.59423 - -2.26776 -6.67540 -7.59075 - -2.26776 -6.67552 -7.59075 - -3.10549 -5.89030 -7.58539 - -3.83846 -5.10412 -7.57790 - -4.46653 -4.31664 -7.56785 - -4.98949 -3.52742 -7.55483 - -5.40708 -2.73601 -7.53839 - -5.40707 -2.73624 -7.53839 - -5.71900 -1.94209 -7.51818 - -5.92482 -1.14463 -7.49406 - -6.02406 -0.34328 -7.46597 - -6.01616 0.46257 -7.43383 - -5.90048 1.27353 -7.39759 - -5.90048 1.27329 -7.39759 - -5.67633 2.08997 -7.35723 - -5.34287 2.91296 -7.31298 - -4.89923 3.74283 -7.26517 - -4.34446 4.58009 -7.21408 - -3.67753 5.42519 -7.16002 - -3.67753 5.42503 -7.16002 - -3.15771 4.97348 -7.11778 - -2.68244 4.53393 -7.07432 - -2.25051 4.10669 -7.02983 - -1.86068 3.69203 -6.98445 - -1.51168 3.29018 -6.93836 - -1.51168 3.29011 -6.93836 - -1.20222 2.90124 -6.89172 - -0.93099 2.52550 -6.84461 - -0.69668 2.16300 -6.79713 - -0.49795 1.81383 -6.74937 - -0.33347 1.47806 -6.70142 - -0.33347 1.47804 -6.70142 - -0.14802 0.99960 -6.62932 - -0.03207 0.55146 -6.55710 - 0.01893 0.13368 -6.48480 - 0.00955 -0.25373 -6.41246 - -0.05567 -0.61077 -6.34015 - -0.05566 -0.61079 -6.34015 - -0.17216 -0.93745 -6.26783 - -0.33538 -1.23371 -6.19537 - -0.54075 -1.49947 -6.12259 - -0.78369 -1.73456 -6.04931 - -1.05957 -1.93872 -5.97536 - -1.05956 -1.93889 -5.97536 - -1.36376 -2.11181 -5.90053 - -1.69152 -2.25306 -5.82451 - -2.03806 -2.36207 -5.74703 - -2.39850 -2.43816 -5.66777 - -2.76782 -2.48053 -5.58644 - -2.76781 -2.48095 -5.58644 - -3.14097 -2.48867 -5.50273 - -3.51262 -2.46065 -5.41630 - -3.87732 -2.39570 -5.32685 - -4.22942 -2.29248 -5.23406 - -4.56308 -2.14952 -5.13762 - -4.56306 -2.15020 -5.13762 - -4.87230 -1.96590 -5.03721 - -5.15068 -1.73855 -4.93260 - -5.39162 -1.46633 -4.82356 - -5.58824 -1.14734 -4.70991 - -5.73339 -0.77961 -4.59143 - -5.73338 -0.78046 -4.59143 - -5.81971 -0.36191 -4.46793 - -5.83931 0.10956 -4.33941 - -5.78409 0.63606 -4.20590 - -5.64564 1.21966 -4.06747 - -5.41523 1.86244 -3.92415 - -5.41524 1.86164 -3.92415 - -5.08398 2.56561 -3.77606 - -4.64240 3.33271 -3.62356 - -4.08092 4.16467 -3.46715 - -3.38968 5.06305 -3.30732 - -2.55862 6.02917 -3.14456 - -2.55865 6.02882 -3.14456 - -1.57757 7.06380 -2.97942 - -0.43603 8.16842 -2.81291 - 0.87645 9.34304 -2.64616 - 2.37037 10.58749 -2.48030 - 4.05616 11.90118 -2.31649 - 4.05891 11.88172 -2.31649 - 5.62970 9.08482 -2.15627 - 6.79193 6.43934 -2.00093 - 7.57354 4.03463 -1.85117 - 8.01771 1.93785 -1.70766 - 8.16960 0.13513 -1.57112 - 8.16829 0.13504 -1.57112 - 8.07088 -1.38863 -1.44190 - 7.76490 -2.64827 -1.31965 - 7.28888 -3.65809 -1.20398 - 6.67929 -4.43148 -1.09448 - 5.97063 -4.98101 -0.99078 - 5.97077 -4.97658 -0.99078 - 5.19640 -5.31382 -0.89230 - 4.38672 -5.44896 -0.79830 - 3.57138 -5.39068 -0.70809 - 2.77883 -5.14621 -0.62098 - 2.03654 -4.72132 -0.53627 - 2.03667 -4.71968 -0.53627 - 1.37161 -4.11867 -0.45324 - 0.80972 -3.34452 -0.37137 - 0.37681 -2.39930 -0.29031 - 0.09842 -1.28431 -0.20970 - -0.00002 -0.00012 -0.12916 + 0.00000 0.00000 -6.03943 + 0.00000 0.00000 -6.04955 + 0.00000 0.00000 -6.05967 + 0.00000 0.00000 -6.06980 + 0.00000 0.00000 -6.07992 + 0.00000 0.00000 -6.09004 + -0.00002 0.00008 -6.09004 + -0.00001 0.00008 -6.10016 + 0.00001 0.00008 -6.11028 + 0.00002 0.00008 -6.12040 + 0.00202 0.03998 -6.13052 + 0.01775 0.19468 -6.14065 + 0.01779 0.19496 -6.14065 + 0.04605 0.38130 -6.14740 + 0.09627 0.63422 -6.15416 + 0.17511 0.95371 -6.16098 + 0.28923 1.33975 -6.16787 + 0.44528 1.79233 -6.17487 + 0.44526 1.79267 -6.17487 + 0.70177 1.86235 -6.18450 + 0.91611 1.35203 -6.19462 + 1.06214 0.83782 -6.20533 + 1.13934 0.31948 -6.21671 + 1.14714 -0.20325 -6.22888 + 1.14714 -0.20313 -6.22888 + 1.08495 -0.73056 -6.24189 + 0.95211 -1.26298 -6.25564 + 0.74792 -1.80065 -6.26999 + 0.47169 -2.34377 -6.28482 + 0.12267 -2.89248 -6.29996 + 0.12268 -2.89248 -6.29996 + -0.29988 -3.44687 -6.31526 + -0.79674 -4.00694 -6.33035 + -1.36864 -4.57253 -6.34485 + -2.01631 -5.14335 -6.35838 + -2.74042 -5.71896 -6.37053 + -2.74042 -5.71913 -6.37053 + -3.45706 -5.03076 -6.38080 + -4.08201 -4.34375 -6.38871 + -4.61543 -3.65771 -6.39390 + -5.05743 -2.97222 -6.39599 + -5.40803 -2.28678 -6.39463 + -5.40803 -2.28701 -6.39463 + -5.66724 -1.60109 -6.38950 + -5.83494 -0.91411 -6.38050 + -5.91093 -0.22550 -6.36758 + -5.89497 0.46534 -6.35068 + -5.78671 1.15901 -6.32976 + -5.78672 1.15877 -6.32976 + -5.58578 1.85586 -6.30481 + -5.29164 2.55696 -6.27605 + -4.90372 3.26262 -6.24373 + -4.42138 3.97335 -6.20813 + -3.84392 4.68962 -6.16951 + -3.84392 4.68945 -6.16951 + -3.39369 4.31663 -6.13878 + -2.98030 3.95259 -6.10674 + -2.60287 3.59769 -6.07355 + -2.26045 3.25222 -6.03935 + -1.95210 2.91644 -6.00429 + -1.95210 2.91635 -6.00429 + -1.67684 2.59050 -5.96849 + -1.43367 2.27476 -5.93204 + -1.22155 1.96931 -5.89504 + -1.03946 1.67428 -5.85756 + -0.88634 1.38980 -5.81968 + -0.88634 1.38973 -5.81968 + -0.70868 0.98302 -5.76228 + -0.59022 0.60055 -5.70427 + -0.52729 0.24256 -5.64570 + -0.51622 -0.09073 -5.58664 + -0.55327 -0.39912 -5.52714 + -0.55327 -0.39922 -5.52714 + -0.63471 -0.68253 -5.46721 + -0.75676 -0.94055 -5.40674 + -0.91560 -1.17304 -5.34558 + -1.10738 -1.37966 -5.28360 + -1.32819 -1.56005 -5.22067 + -1.32818 -1.56026 -5.22067 + -1.57408 -1.71399 -5.15663 + -1.84102 -1.84053 -5.09122 + -2.12485 -1.93927 -5.02421 + -2.42137 -2.00948 -4.95536 + -2.72623 -2.05032 -4.88441 + -2.72622 -2.05074 -4.88441 + -3.03500 -2.06129 -4.81112 + -3.34304 -2.04052 -4.73521 + -3.64554 -1.98726 -4.65641 + -3.93753 -1.90024 -4.57448 + -4.21385 -1.77810 -4.48915 + -4.21384 -1.77873 -4.48915 + -4.46921 -1.61998 -4.40015 + -4.69793 -1.42304 -4.30729 + -4.89413 -1.18625 -4.21041 + -5.05172 -0.90789 -4.10933 + -5.16433 -0.58616 -4.00388 + -5.16433 -0.58693 -4.00388 + -5.22542 -0.21997 -3.89393 + -5.22796 0.19413 -3.77945 + -5.16473 0.65724 -3.66052 + -5.02824 1.17123 -3.53718 + -4.81073 1.73793 -3.40950 + -4.81074 1.73723 -3.40950 + -4.50426 2.35845 -3.27756 + -4.10039 3.03590 -3.14173 + -3.59060 3.77112 -3.00245 + -2.96610 4.56548 -2.86015 + -2.21794 5.42014 -2.71529 + -2.21797 5.41984 -2.71529 + -1.33707 6.33577 -2.56837 + -0.31414 7.31366 -2.42028 + 0.86014 8.35377 -2.27205 + 2.19510 9.45597 -2.12468 + 3.70000 10.61966 -1.97919 + 3.70244 10.60243 -1.97919 + 5.09664 8.00689 -1.83700 + 6.11435 5.60821 -1.69921 + 6.79292 3.48588 -1.56644 + 7.17376 1.63647 -1.43929 + 7.29688 0.04753 -1.31837 + 7.29572 0.04749 -1.31837 + 7.19920 -1.29439 -1.20399 + 6.91908 -2.40260 -1.09583 + 6.48947 -3.28982 -0.99352 + 5.94259 -3.96798 -0.89672 + 5.30897 -4.44827 -0.80507 + 5.30908 -4.44433 -0.80507 + 4.61820 -4.73704 -0.71808 + 3.89690 -4.85122 -0.63505 + 3.17137 -4.79459 -0.55540 + 2.46674 -4.57357 -0.47849 + 1.80726 -4.19329 -0.40372 + 1.80738 -4.19184 -0.40372 + 1.21686 -3.65611 -0.33044 + 0.71818 -2.96757 -0.25819 + 0.33413 -2.12806 -0.18666 + 0.08726 -1.13874 -0.11552 + -0.00002 -0.00010 -0.04445 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5152,10 +5278,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5182,7 +5308,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -5192,36 +5318,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.20000 60.51500 0.00000 162.67095 0.00000 - -2.80000 60.70000 0.00000 230.46293 0.00000 - -3.40000 60.83300 0.00000 303.46162 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -5232,36 +5357,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.10000 30.61900 107.20332 0.00000 0.70763 0.00000 3.50120 - -2.50000 33.09500 112.98663 0.00000 0.70763 0.00000 3.41401 - -3.10000 36.80900 121.66449 0.00000 0.70763 0.00000 3.30529 - -3.70000 40.52300 130.34316 0.00000 0.70763 0.00000 3.21652 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5273,149 +5397,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00001 0.00000 1 0 A - 0.00000 0.00000 19.44961 1.59216 1 0 A - 0.00000 0.00000 38.89922 3.18433 1 0 A - 0.00000 0.00000 58.34883 4.77649 1 0 A - 0.00000 0.00000 77.79845 6.36865 1 0 A - 0.00000 0.00000 97.24806 7.96082 1 0 A - 0.00000 0.00000 50.01834 7.96082 1 0 A - 0.00000 0.00000 60.02201 9.55298 1 0 A - 0.00000 0.00000 70.02568 11.14515 1 0 A - 0.00000 0.00000 80.02935 12.73731 1 0 A - 0.00000 0.00000 90.03302 14.32947 1 0 A - 0.48857 0.00000 100.03668 15.92164 110 0 - - 0.48857 0.00000 83.12851 15.92164 110 0 - - 1.56594 0.00000 88.67041 16.98308 110 0 - - 2.64330 0.00000 94.21231 18.04452 110 0 - - 3.72064 0.00000 99.75421 19.10596 110 0 - - 4.79791 0.00000 105.29611 20.16741 110 0 - - 5.87509 0.00000 110.83802 21.22885 110 0 - - 5.87509 0.00000 105.03607 21.22885 110 0 - - 6.05656 0.39240 105.90297 21.40406 110 0 - - 6.23800 0.78480 106.76987 21.57927 110 0 - - 6.41939 1.17720 107.63677 21.75448 110 0 - - 6.60074 1.56960 108.50366 21.92968 110 0 - - 6.78204 1.96200 109.37056 22.10489 110 0 - - 6.78204 1.96200 106.64682 22.10489 110 0 - - 7.32546 3.13920 109.18274 22.63052 110 0 - - 7.86797 4.31640 111.71867 23.15615 110 0 - - 8.40934 5.49360 114.25460 23.68177 110 0 - - 8.94933 6.67080 116.79052 24.20740 110 0 - - 9.48767 7.84800 119.32645 24.73302 110 0 - - 9.48767 7.84800 115.52656 24.73302 110 0 - - 10.02419 9.02520 117.98173 25.25865 110 0 - - 10.55898 10.20240 120.43690 25.78428 110 0 - - 11.09224 11.37960 122.89207 26.30990 110 0 - - 11.62415 12.55680 125.34725 26.83553 110 0 - - 12.15491 13.73400 127.80242 27.36116 110 0 - - 12.15491 13.73400 124.37008 27.36116 110 0 - - 12.68479 14.91120 126.75931 27.88678 110 0 - - 13.21436 16.08840 129.14854 28.41241 110 0 - - 13.74428 17.26560 131.53778 28.93803 110 0 - - 14.27520 18.44280 133.92701 29.46366 110 0 - - 14.80778 19.62000 136.31624 29.98929 110 0 - - 21.81258 19.62000 93.61408 27.88519 110 0 - - 21.92128 20.92800 93.96456 27.98959 110 0 - - 22.03167 22.23600 94.31504 28.09399 110 0 - - 22.14410 23.54400 94.66552 28.19838 110 0 - - 22.25892 24.85200 95.01601 28.30278 110 0 - - 22.37647 26.16000 95.36649 28.40718 110 0 - - 22.37647 26.16000 94.99596 28.40718 110 0 - - 22.49704 27.46800 95.34508 28.51158 110 0 - - 22.62073 28.77600 95.69420 28.61598 110 0 - - 22.74761 30.08400 96.04332 28.72038 110 0 - - 22.87771 31.39200 96.39244 28.82478 110 0 - - 23.01111 32.70000 96.74156 28.92918 110 0 - - 23.01111 32.70000 96.43144 28.92918 110 0 - - 23.14780 34.00800 96.77944 29.03358 110 0 - - 23.28759 35.31600 97.12744 29.13798 110 0 - - 23.43025 36.62400 97.47544 29.24238 110 0 - - 23.57552 37.93200 97.82344 29.34678 110 0 - - 23.72316 39.24000 98.17145 29.45118 110 0 - - 17.35340 39.24000 139.39178 31.67344 110 0 - - 17.87591 40.22100 141.31947 32.11146 110 0 - - 18.40084 41.20200 143.24716 32.54949 110 0 - - 18.92785 42.18300 145.17485 32.98751 110 0 - - 19.45663 43.16400 147.10255 33.42553 110 0 - - 19.98682 44.14500 149.03024 33.86355 110 0 - - 19.98682 44.14500 146.65286 33.86355 110 0 - - 20.51814 45.12600 148.54980 34.30157 110 0 - - 21.05038 46.10700 150.44674 34.73960 110 0 - - 21.58336 47.08800 152.34368 35.17762 110 0 - - 22.11690 48.06900 154.24062 35.61564 110 0 - - 22.65082 49.05000 156.13756 36.05366 110 0 - - 22.65082 49.05000 153.40009 36.05366 110 0 - - 23.45205 50.52150 156.19561 36.71069 110 0 - - 24.25353 51.99300 158.99114 37.36773 110 0 - - 25.05516 53.46450 161.78666 38.02476 110 0 - - 25.85686 54.93600 164.58219 38.68179 110 0 - - 26.65854 56.40750 167.37771 39.33883 110 0 - - 26.65854 56.40750 164.33167 39.33883 110 0 - - 27.46019 57.87900 167.07632 39.99586 110 0 - - 28.26214 59.35050 169.82097 40.65289 110 0 - - 29.06474 60.82200 172.56562 41.30992 110 0 - - 29.86833 62.29350 175.31027 41.96696 110 0 - - 30.67326 63.76500 178.05492 42.62399 110 0 - - 30.67326 63.76500 175.25279 42.62399 110 0 - - 31.47997 65.23650 177.95425 43.28102 110 0 - - 32.28903 66.70800 180.65570 43.93806 110 0 - - 33.10103 68.17950 183.35716 44.59509 110 0 - - 33.91658 69.65100 186.05862 45.25212 110 0 - - 34.73627 71.12250 188.76007 45.90915 110 0 - - 34.73627 71.12250 186.16443 45.90915 110 0 - - 35.56073 72.59400 188.82874 46.56619 110 0 - - 36.39061 74.06550 191.49305 47.22322 110 0 - - 37.22655 75.53700 194.15736 47.88025 110 0 - - 38.06916 77.00850 196.82167 48.53729 110 0 - - 38.91908 78.48000 199.48598 49.19432 110 0 - - 38.91908 78.48000 197.06773 49.19432 110 0 - - 39.77692 79.95150 199.69974 49.85135 110 0 - - 40.64319 81.42300 202.33175 50.50838 110 0 - - 41.51829 82.89450 204.96376 51.16542 110 0 - - 42.40264 84.36600 207.59577 51.82245 110 0 - - 43.29663 85.83750 210.22778 52.47948 110 0 - - 43.29663 85.83750 207.96375 52.47948 110 0 - - 44.20065 87.30900 210.56741 53.13652 110 0 - - 45.11473 88.78050 213.17108 53.79355 110 0 - - 46.03878 90.25200 215.77474 54.45058 110 0 - - 46.97268 91.72350 218.37841 55.10761 110 0 - - 47.91634 93.19500 220.98207 55.76465 110 0 - - 47.91634 93.19500 218.85344 55.76465 110 0 - - 48.86957 94.66650 221.43202 56.42168 110 0 - - 49.83160 96.13800 224.01061 57.07871 110 0 - - 50.80145 97.60950 226.58920 57.73575 110 0 - - 51.77814 99.08100 229.16778 58.39278 110 0 - - 52.76070 100.55250 231.74637 59.04981 110 0 - - 52.76070 100.55250 229.73763 59.04981 110 0 - - 53.74800 102.02400 232.29387 59.70685 110 0 - - 54.73806 103.49550 234.85010 60.36388 110 0 - - 55.72860 104.96700 237.40634 61.02091 110 0 - - 56.71734 106.43850 239.96257 61.67794 110 0 - - 57.70200 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.41416 110.85300 609.04150 45.42350 110 0 - - 27.60110 112.32450 618.28301 46.11275 110 0 - - 29.72539 113.79600 627.52452 46.80200 110 0 - - 31.78006 115.26750 636.76604 47.49125 110 0 - - 31.78006 115.26750 585.69985 47.49125 110 0 - - 33.76147 116.73900 594.20023 48.18050 110 0 - - 35.67322 118.21050 602.70061 48.86975 110 0 - - 37.51923 119.68200 611.20099 49.55900 110 0 - - 39.30342 121.15350 619.70137 50.24825 110 0 - - 41.02973 122.62500 628.20175 50.93750 110 0 - - 41.02973 122.62500 610.51735 50.93750 110 0 - - 42.70373 124.09650 618.77844 51.62675 110 0 - - 44.33296 125.56800 627.03952 52.31600 110 0 - - 45.92433 127.03950 635.30061 53.00525 110 0 - - 47.48473 128.51100 643.56170 53.69450 110 0 - - 49.02106 129.98250 651.82278 54.38375 110 0 - - 49.02106 129.98250 642.44252 54.38375 110 0 - - 50.54062 131.45400 650.58472 55.07300 110 0 - - 52.04852 132.92550 658.72693 55.76225 110 0 - - 53.54837 134.39700 666.86913 56.45150 110 0 - - 55.04378 135.86850 675.01133 57.14075 110 0 - - 56.53837 137.34000 683.15353 57.83000 110 0 - + 0.00000 0.00000 27.59211 1.44679 1 0 A + 0.00000 0.00000 55.18421 2.89358 1 0 A + 0.00000 0.00000 82.77632 4.34037 1 0 A + 0.00000 0.00000 110.36843 5.78715 1 0 A + 0.00000 0.00000 137.96054 7.23394 1 0 A + 0.00000 0.00000 68.20749 7.23394 1 0 A + 0.00000 0.00000 81.84899 8.68073 1 0 A + 0.00000 0.00000 95.49049 10.12752 1 0 A + 0.00000 0.00000 109.13199 11.57431 1 0 A + 0.76005 0.00000 122.77349 13.02110 110 0 - + 2.18659 0.00000 136.41499 14.46788 110 0 - + 2.18659 0.00000 111.45332 14.46788 110 0 - + 3.13761 0.00000 118.88354 15.43241 110 0 - + 4.08861 0.00000 126.31376 16.39693 110 0 - + 5.03951 0.00000 133.74398 17.36146 110 0 - + 5.99025 0.00000 141.17421 18.32599 110 0 - + 6.94077 0.00000 148.60443 19.29051 110 0 - + 6.94077 0.00000 137.71826 19.29051 110 0 - + 7.45220 1.30800 141.50704 19.82121 110 0 - + 7.96267 2.61600 145.29582 20.35192 110 0 - + 8.47197 3.92400 149.08461 20.88262 110 0 - + 8.97990 5.23200 152.87339 21.41333 110 0 - + 9.48627 6.54000 156.66217 21.94403 110 0 - + 9.48627 6.54000 150.27634 21.94403 110 0 - + 9.99096 7.84800 153.91069 22.47473 110 0 - + 10.49416 9.15600 157.54503 23.00544 110 0 - + 10.99615 10.46400 161.17938 23.53614 110 0 - + 11.49721 11.77200 164.81372 24.06684 110 0 - + 11.99762 13.08000 168.44806 24.59755 110 0 - + 11.99762 13.08000 162.75727 24.59755 110 0 - + 12.49774 14.38800 166.26883 25.12825 110 0 - + 12.99825 15.69600 169.78039 25.65895 110 0 - + 13.49995 17.00400 173.29196 26.18966 110 0 - + 14.00361 18.31200 176.80352 26.72036 110 0 - + 14.51001 19.62000 180.31508 27.25106 110 0 - + 19.73327 19.62000 112.91072 24.82969 110 0 - + 19.81801 20.92800 113.33345 24.92265 110 0 - + 19.90464 22.23600 113.75618 25.01561 110 0 - + 19.99345 23.54400 114.17890 25.10857 110 0 - + 20.08474 24.85200 114.60163 25.20153 110 0 - + 20.17879 26.16000 115.02436 25.29449 110 0 - + 20.17879 26.16000 114.42115 25.29449 110 0 - + 20.27585 27.46800 114.84166 25.38745 110 0 - + 20.37601 28.77600 115.26217 25.48041 110 0 - + 20.47931 30.08400 115.68268 25.57337 110 0 - + 20.58578 31.39200 116.10319 25.66633 110 0 - + 20.69548 32.70000 116.52370 25.75929 110 0 - + 20.69548 32.70000 116.01583 25.75929 110 0 - + 20.80840 34.00800 116.43451 25.85225 110 0 - + 20.92437 35.31600 116.85318 25.94521 110 0 - + 21.04318 36.62400 117.27186 26.03817 110 0 - + 21.16463 37.93200 117.69054 26.13113 110 0 - + 21.28848 39.24000 118.10921 26.22409 110 0 - + 16.44243 39.24000 183.43874 28.78144 110 0 - + 16.90192 40.22100 185.97557 29.17947 110 0 - + 17.36401 41.20200 188.51241 29.57750 110 0 - + 17.82842 42.18300 191.04924 29.97553 110 0 - + 18.29485 43.16400 193.58607 30.37355 110 0 - + 18.76301 44.14500 196.12290 30.77158 110 0 - + 18.76301 44.14500 192.60019 30.77158 110 0 - + 19.23264 45.12600 195.09146 31.16961 110 0 - + 19.70355 46.10700 197.58272 31.56764 110 0 - + 20.17558 47.08800 200.07399 31.96566 110 0 - + 20.64857 48.06900 202.56525 32.36369 110 0 - + 21.12236 49.05000 205.05652 32.76172 110 0 - + 21.12236 49.05000 201.00495 32.76172 110 0 - + 21.83421 50.52150 204.66801 33.35876 110 0 - + 22.54727 51.99300 208.33107 33.95580 110 0 - + 23.26144 53.46450 211.99414 34.55284 110 0 - + 23.97660 54.93600 215.65720 35.14988 110 0 - + 24.69264 56.40750 219.32027 35.74693 110 0 - + 24.69264 56.40750 214.81611 35.74693 110 0 - + 25.40954 57.87900 218.40395 36.34397 110 0 - + 26.12754 59.35050 221.99178 36.94101 110 0 - + 26.84689 60.82200 225.57962 37.53805 110 0 - + 27.56789 62.29350 229.16745 38.13509 110 0 - + 28.29078 63.76500 232.75529 38.73213 110 0 - + 28.29078 63.76500 228.61475 38.73213 110 0 - + 29.01592 65.23650 232.13876 39.32917 110 0 - + 29.74378 66.70800 235.66278 39.92621 110 0 - + 30.47484 68.17950 239.18679 40.52326 110 0 - + 31.20959 69.65100 242.71080 41.12030 110 0 - + 31.94851 71.12250 246.23481 41.71734 110 0 - + 31.94851 71.12250 242.40131 41.71734 110 0 - + 32.69214 72.59400 245.87046 42.31438 110 0 - + 33.44101 74.06550 249.33961 42.91142 110 0 - + 34.19564 75.53700 252.80875 43.50846 110 0 - + 34.95655 77.00850 256.27790 44.10550 110 0 - + 35.72426 78.48000 259.74705 44.70255 110 0 - + 35.72426 78.48000 256.17685 44.70255 110 0 - + 36.49928 79.95150 259.59831 45.29959 110 0 - + 37.28204 81.42300 263.01977 45.89663 110 0 - + 38.07285 82.89450 266.44124 46.49367 110 0 - + 38.87206 84.36600 269.86270 47.09071 110 0 - + 39.67998 85.83750 273.28417 47.68775 110 0 - + 39.67998 85.83750 269.94257 47.68775 110 0 - + 40.49694 87.30900 273.32219 48.28479 110 0 - + 41.32293 88.78050 276.70182 48.88183 110 0 - + 42.15785 90.25200 280.08145 49.47888 110 0 - + 43.00156 91.72350 283.46108 50.07592 110 0 - + 43.85397 93.19500 286.84071 50.67296 110 0 - + 43.85397 93.19500 283.69963 50.67296 110 0 - + 44.71487 94.66650 287.04225 51.27000 110 0 - + 45.58357 96.13800 290.38487 51.86704 110 0 - + 46.45918 97.60950 293.72749 52.46408 110 0 - + 47.34082 99.08100 297.07011 53.06112 110 0 - + 48.22758 100.55250 300.41273 53.65817 110 0 - + 48.22758 100.55250 297.44910 53.65817 110 0 - + 49.11846 102.02400 300.75875 54.25521 110 0 - + 50.01168 103.49550 304.06839 54.85225 110 0 - + 50.90520 104.96700 307.37804 55.44929 110 0 - + 51.79698 106.43850 310.68768 56.04633 110 0 - + 52.68498 107.91000 313.99732 56.64337 110 0 - + 18.59731 107.91000 734.00940 36.53923 1 0 A + 18.88833 109.38150 745.49575 37.11102 1 0 A + 20.69072 110.85300 756.98209 37.68281 110 0 - + 22.59023 112.32450 768.46843 38.25461 110 0 - + 24.43351 113.79600 779.95478 38.82640 110 0 - + 26.21450 115.26750 791.44112 39.39820 110 0 - + 26.21450 115.26750 738.87493 39.39820 110 0 - + 27.93007 116.73900 749.59837 39.96999 110 0 - + 29.58350 118.21050 760.32181 40.54178 110 0 - + 31.17833 119.68200 771.04525 41.11358 110 0 - + 32.71813 121.15350 781.76869 41.68537 110 0 - + 34.20642 122.62500 792.49213 42.25717 110 0 - + 34.20642 122.62500 772.62437 42.25717 110 0 - + 35.64820 124.09650 783.07897 42.82896 110 0 - + 37.05021 125.56800 793.53357 43.40075 110 0 - + 38.41858 127.03950 803.98818 43.97255 110 0 - + 39.75944 128.51100 814.44278 44.54434 110 0 - + 41.07892 129.98250 824.89738 45.11614 110 0 - + 41.07892 129.98250 814.08791 45.11614 110 0 - + 42.38354 131.45400 824.40552 45.68793 110 0 - + 43.67781 132.92550 834.72313 46.25972 110 0 - + 44.96494 134.39700 845.04073 46.83152 110 0 - + 46.24813 135.86850 855.35834 47.40331 110 0 - + 47.53059 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5428,10 +5546,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 22.358 'Clay' - -4.00 45.426 'Peat' - -6.00 256.291 'Clay' - -13.00 121.135 'Sand' + 0.00 24.034 'Clay' + -4.00 40.912 'Peat' + -6.00 235.708 'Clay' + -13.00 100.609 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5446,7 +5564,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.20 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -5468,10 +5586,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5507,27 +5625,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 59.75500 0.00000 8.99123 0.00000 - -3.40000 59.77200 0.00000 35.25668 0.00000 - -4.00000 59.89800 0.00000 69.58790 0.00000 - -4.66667 59.20900 0.00000 89.31503 0.00000 - -5.33333 58.67600 0.00000 110.07099 0.00000 - -6.00000 58.25100 0.00000 131.87061 0.00000 - -6.50000 58.76300 0.00000 167.37780 0.00000 - -7.00000 59.13400 0.00000 206.48598 0.00000 - -7.75000 59.54300 0.00000 271.91621 0.00000 - -8.50000 59.84800 0.00000 345.47614 0.00000 - -9.25000 60.08900 0.00000 427.16878 0.00000 - -10.00000 60.28800 0.00000 516.99470 0.00000 - -10.75000 60.45500 0.00000 614.95354 0.00000 - -11.50000 60.59900 36.27400 721.04464 3.71405 - -12.25000 60.72500 36.50100 835.26727 11.91689 - -13.00000 60.83700 36.71200 957.62069 21.79553 - -13.75000 65.59200 36.44300 1259.58412 34.35345 - -14.50000 67.30200 36.20200 1567.65056 48.36323 - -15.25000 68.31000 35.98600 1898.11566 63.82466 - -16.00000 68.98700 35.79600 2254.58535 80.73725 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5544,32 +5662,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 14.98539 0.00000 0.70763 0.00000 8.06968 - -3.10000 5.57100 43.77575 0.00000 0.70763 0.00000 7.85779 - -3.70000 9.28500 57.21870 0.00000 0.70763 0.00000 6.16249 - -4.33333 11.53867 29.59068 0.00000 0.65798 0.00000 2.56448 - -5.00000 12.33200 31.13394 0.00000 0.65798 0.00000 2.52465 - -5.66667 13.12533 32.69943 0.00000 0.65798 0.00000 2.49132 - -6.25000 15.06950 71.01438 0.00000 0.70763 0.00000 4.71246 - -6.75000 18.16450 78.21636 0.00000 0.70763 0.00000 4.30600 - -7.37500 22.03325 87.24031 0.00000 0.70763 0.00000 3.95948 - -8.12500 26.67575 98.07990 0.00000 0.70763 0.00000 3.67674 - -8.87500 31.31825 108.92353 0.00000 0.70763 0.00000 3.47796 - -9.62500 35.96075 119.76789 0.00000 0.70763 0.00000 3.33052 - -10.37500 40.60325 130.61179 0.00000 0.70763 0.00000 3.21678 - -11.12500 45.24575 141.45480 4.95207 0.70763 0.10945 3.12637 - -11.87500 49.88825 152.29683 10.93712 0.70763 0.21923 3.05276 - -12.62500 54.53075 163.13790 13.17152 0.70763 0.24154 2.99167 - -13.37500 60.29825 402.61790 16.74389 0.50000 0.27768 6.67711 - -14.12500 67.19075 410.75525 18.67970 0.50000 0.27801 6.11327 - -14.87500 74.08325 440.62014 20.61524 0.50000 0.27827 5.94764 - -15.62500 80.97575 475.29291 22.55013 0.50000 0.27848 5.86957 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5598,132 +5716,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.78480 0.00000 0.00000 -1 0 - - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.56960 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 5.99416 3.13920 5.99416 0.52563 202 100 P - 11.98831 4.31640 11.98831 1.05125 202 100 P - 16.84931 5.49360 17.98247 1.57688 110 94 - - 17.36058 6.67080 23.97662 2.10251 110 72 - - 17.87348 7.84800 29.97078 2.62813 110 60 - - 17.87348 7.84800 29.18383 2.62813 110 61 - - 18.38822 9.02520 35.02060 3.15376 110 53 - - 18.90468 10.20240 40.85737 3.67938 110 46 - - 19.42267 11.37960 46.69414 4.20501 110 42 - - 19.94201 12.55680 52.53090 4.73064 110 38 - - 20.46251 13.73400 58.36767 5.25626 110 35 - - 20.46251 13.73400 45.77496 5.25626 110 45 - - 20.98389 14.91120 50.35245 5.78189 110 42 - - 21.50557 16.08840 54.92995 6.30752 110 39 - - 22.02690 17.26560 59.50745 6.83314 110 37 - - 22.54723 18.44280 64.08494 7.35877 110 35 - - 23.06590 19.62000 68.66244 7.88439 110 34 - - 13.40381 19.62000 28.57344 7.33121 110 47 - - 13.50392 20.92800 28.98034 7.43561 110 47 - - 13.60233 22.23600 29.38724 7.54001 110 46 - - 13.69869 23.54400 29.79413 7.64441 110 46 - - 13.79267 24.85200 30.20103 7.74881 110 46 - - 13.88392 26.16000 30.60793 7.85321 110 45 - - 13.88392 26.16000 30.13250 7.85321 110 46 - - 13.97215 27.46800 30.53308 7.95761 110 46 - - 14.05726 28.77600 30.93365 8.06201 110 45 - - 14.13918 30.08400 31.33423 8.16641 110 45 - - 14.21787 31.39200 31.73481 8.27081 110 45 - - 14.29328 32.70000 32.13539 8.37521 110 44 - - 14.29328 32.70000 31.71121 8.37521 110 45 - - 14.36539 34.00800 32.10650 8.47961 110 45 - - 14.43439 35.31600 32.50178 8.58401 110 44 - - 14.50054 36.62400 32.89707 8.68840 110 44 - - 14.56407 37.93200 33.29236 8.79280 110 44 - - 14.62522 39.24000 33.68765 8.89720 110 43 - - 23.88859 39.24000 63.72185 9.56855 110 37 - - 24.24213 40.22100 66.63886 10.00657 110 36 - - 24.59324 41.20200 69.55587 10.44459 110 35 - - 24.94227 42.18300 72.47288 10.88262 110 34 - - 25.28954 43.16400 75.38990 11.32064 110 34 - - 25.63539 44.14500 78.30691 11.75866 110 33 - - 25.63539 44.14500 71.55282 11.75866 110 36 - - 25.98011 45.12600 74.21824 12.19668 110 35 - - 26.32392 46.10700 76.88365 12.63470 110 34 - - 26.66698 47.08800 79.54907 13.07273 110 34 - - 27.00948 48.06900 82.21448 13.51075 110 33 - - 27.35161 49.05000 84.87990 13.94877 110 32 - - 27.35161 49.05000 78.04936 13.94877 110 35 - - 27.86445 50.52150 81.72574 14.60580 110 34 - - 28.37703 51.99300 85.40212 15.26283 110 33 - - 28.88946 53.46450 89.07850 15.91987 110 32 - - 29.40183 54.93600 92.75488 16.57690 110 32 - - 29.91422 56.40750 96.43126 17.23393 110 31 - - 29.91422 56.40750 89.54526 17.23393 110 33 - - 30.42663 57.87900 92.95912 17.89097 110 33 - - 30.93875 59.35050 96.37297 18.54800 110 32 - - 31.45022 60.82200 99.78683 19.20503 110 32 - - 31.96069 62.29350 103.20069 19.86206 110 31 - - 32.46982 63.76500 106.61454 20.51910 110 30 - - 32.46982 63.76500 100.85032 20.51910 110 32 - - 32.97719 65.23650 104.07961 21.17613 110 32 - - 33.48219 66.70800 107.30889 21.83316 110 31 - - 33.98425 68.17950 110.53817 22.49020 110 31 - - 34.48277 69.65100 113.76746 23.14723 110 30 - - 34.97715 71.12250 116.99674 23.80426 110 30 - - 34.97715 71.12250 112.03693 23.80426 110 31 - - 35.46676 72.59400 115.12931 24.46129 110 31 - - 35.95094 74.06550 118.22170 25.11833 110 30 - - 36.42907 75.53700 121.31408 25.77536 110 30 - - 36.90052 77.00850 124.40647 26.43239 110 30 - - 37.36467 78.48000 127.49885 27.08943 110 29 - - 37.36467 78.48000 123.14483 27.08943 110 30 - - 37.82089 79.95150 126.13161 27.74646 110 30 - - 38.26869 81.42300 129.11840 28.40349 110 30 - - 38.70765 82.89450 132.10518 29.06053 110 29 - - 39.13737 84.36600 135.09196 29.71756 110 29 - - 39.55745 85.83750 138.07874 30.37459 110 29 - - 39.55745 85.83750 134.19773 30.37459 110 29 - - 39.96749 87.30900 137.10056 31.03162 110 29 - - 40.36747 88.78050 140.00339 31.68866 110 29 - - 40.75749 90.25200 142.90622 32.34569 110 29 - - 41.13765 91.72350 145.80905 33.00272 110 28 - - 41.50806 93.19500 148.71188 33.65976 110 28 - - 41.50806 93.19500 145.21062 33.65976 110 29 - - 41.86890 94.66650 148.04510 34.31679 110 28 - - 42.22094 96.13800 150.87959 34.97382 110 28 - - 42.56515 97.60950 153.71408 35.63085 110 28 - - 42.90252 99.08100 156.54857 36.28789 110 27 - - 43.23403 100.55250 159.38305 36.94492 110 27 - - 43.23403 100.55250 156.19349 36.94492 110 28 - - 43.56079 102.02400 158.97125 37.60195 110 27 - - 43.88480 103.49550 161.74901 38.25899 110 27 - - 44.20833 104.96700 164.52678 38.91602 110 27 - - 44.53366 106.43850 167.30454 39.57305 110 27 - - 44.86306 107.91000 170.08231 40.23008 110 26 - - 51.59086 107.91000 379.60692 28.42600 110 14 - - 50.67798 109.38150 388.81131 29.11525 110 13 - - 49.81384 110.85300 398.01570 29.80450 110 13 - - 49.00540 112.32450 407.22009 30.49375 110 12 - - 48.25961 113.79600 416.42449 31.18300 110 12 - - 47.58344 115.26750 425.62888 31.87225 110 11 - - 47.58344 115.26750 389.68739 31.87225 110 12 - - 46.98053 116.73900 398.11454 32.56150 110 12 - - 46.44728 118.21050 406.54168 33.25075 110 11 - - 45.97977 119.68200 414.96883 33.94000 110 11 - - 45.57408 121.15350 423.39597 34.62925 110 11 - - 45.22627 122.62500 431.82311 35.31850 110 10 - - 45.22627 122.62500 420.12310 35.31850 110 11 - - 44.93077 124.09650 428.32192 36.00775 110 10 - - 44.68004 125.56800 436.52073 36.69700 110 10 - - 44.46717 127.03950 444.71955 37.38625 110 10 - - 44.28527 128.51100 452.91836 38.07550 110 10 - - 44.12744 129.98250 461.11718 38.76475 110 10 - - 44.12744 129.98250 455.06490 38.76475 110 10 - - 43.98638 131.45400 463.15611 39.45400 110 9 - - 43.85698 132.92550 471.24731 40.14325 110 9 - - 43.73563 134.39700 479.33852 40.83250 110 9 - - 43.61872 135.86850 487.42972 41.52175 110 9 - - 43.50263 137.34000 495.52092 42.21100 110 9 - + 0.00003 0.00000 0.00003 0.00000 202 100 P + 12.89971 1.30800 23.36326 0.53070 110 55 - + 13.45066 2.61600 46.72653 1.06141 110 29 - + 14.00277 3.92400 70.08979 1.59211 110 20 - + 14.55624 5.23200 93.45305 2.12281 110 16 - + 15.11128 6.54000 116.81631 2.65352 110 13 - + 15.11128 6.54000 47.10799 2.65352 110 32 - + 15.66799 7.84800 56.52959 3.18422 110 28 - + 16.22620 9.15600 65.95118 3.71492 110 25 - + 16.78562 10.46400 75.37278 4.24563 110 22 - + 17.34596 11.77200 84.79438 4.77633 110 20 - + 17.90696 13.08000 94.21598 5.30703 110 19 - + 17.90696 13.08000 66.31764 5.30703 110 27 - + 18.46825 14.38800 72.94940 5.83774 110 25 - + 19.02914 15.69600 79.58117 6.36844 110 24 - + 19.58885 17.00400 86.21293 6.89914 110 23 - + 20.14660 18.31200 92.84470 7.42985 110 22 - + 20.70160 19.62000 99.47646 7.96055 110 21 - + 12.34964 19.62000 38.17169 7.25322 110 32 - + 12.45082 20.92800 38.66091 7.34618 110 32 - + 12.55011 22.23600 39.15013 7.43914 110 32 - + 12.64722 23.54400 39.63936 7.53210 110 32 - + 12.74185 24.85200 40.12858 7.62506 110 32 - + 12.83373 26.16000 40.61780 7.71802 110 32 - + 12.83373 26.16000 39.99387 7.71802 110 32 - + 12.92258 27.46800 40.47558 7.81098 110 32 - + 13.00834 28.77600 40.95728 7.90394 110 32 - + 13.09097 30.08400 41.43899 7.99690 110 32 - + 13.17041 31.39200 41.92070 8.08986 110 31 - + 13.24663 32.70000 42.40241 8.18282 110 31 - + 13.24663 32.70000 41.83585 8.18282 110 32 - + 13.31963 34.00800 42.31112 8.27578 110 31 - + 13.38958 35.31600 42.78639 8.36874 110 31 - + 13.45669 36.62400 43.26166 8.46170 110 31 - + 13.52117 37.93200 43.73693 8.55466 110 31 - + 13.58323 39.24000 44.21220 8.64762 110 31 - + 21.82995 39.24000 91.40237 9.49093 110 24 - + 22.16651 40.22100 95.23558 9.88896 110 23 - + 22.50047 41.20200 99.06878 10.28699 110 23 - + 22.83212 42.18300 102.90198 10.68501 110 22 - + 23.16175 43.16400 106.73518 11.08304 110 22 - + 23.48964 44.14500 110.56839 11.48107 110 21 - + 23.48964 44.14500 101.29500 11.48107 110 23 - + 23.81607 45.12600 104.80671 11.87910 110 23 - + 24.14121 46.10700 108.31842 12.27712 110 22 - + 24.46523 47.08800 111.83013 12.67515 110 22 - + 24.78830 48.06900 115.34184 13.07318 110 21 - + 25.11056 49.05000 118.85355 13.47121 110 21 - + 25.11056 49.05000 109.34264 13.47121 110 23 - + 25.59280 50.52150 114.18869 14.06825 110 22 - + 26.07382 51.99300 119.03473 14.66529 110 22 - + 26.55374 53.46450 123.88078 15.26233 110 21 - + 27.03266 54.93600 128.72682 15.85937 110 21 - + 27.51070 56.40750 133.57287 16.45641 110 21 - + 27.51070 56.40750 123.89446 16.45641 110 22 - + 27.98788 57.87900 128.38937 17.05346 110 22 - + 28.46397 59.35050 132.88428 17.65050 110 21 - + 28.93869 60.82200 137.37919 18.24754 110 21 - + 29.41178 62.29350 141.87411 18.84458 110 21 - + 29.88297 63.76500 146.36902 19.44162 110 20 - + 29.88297 63.76500 138.20216 19.44162 110 22 - + 30.35191 65.23650 142.44627 20.03866 110 21 - + 30.81814 66.70800 146.69039 20.63570 110 21 - + 31.28116 68.17950 150.93450 21.23274 110 21 - + 31.74050 69.65100 155.17861 21.82979 110 20 - + 32.19565 71.12250 159.42272 22.42683 110 20 - + 32.19565 71.12250 152.35575 22.42683 110 21 - + 32.64611 72.59400 156.41173 23.02387 110 21 - + 33.09132 74.06550 160.46771 23.62091 110 21 - + 33.53078 75.53700 164.52368 24.21795 110 20 - + 33.96395 77.00850 168.57966 24.81499 110 20 - + 34.39032 78.48000 172.63564 25.41203 110 20 - + 34.39032 78.48000 166.40568 25.41203 110 21 - + 34.80938 79.95150 170.31528 26.00908 110 20 - + 35.22071 81.42300 174.22489 26.60612 110 20 - + 35.62398 82.89450 178.13450 27.20316 110 20 - + 36.01885 84.36600 182.04410 27.80020 110 20 - + 36.40501 85.83750 185.95371 28.39724 110 20 - + 36.40501 85.83750 180.38244 28.39724 110 20 - + 36.78214 87.30900 184.17492 28.99428 110 20 - + 37.15023 88.78050 187.96739 29.59132 110 20 - + 37.50939 90.25200 191.75986 30.18836 110 20 - + 37.85976 91.72350 195.55234 30.78541 110 19 - + 38.20144 93.19500 199.34481 31.38245 110 19 - + 38.20144 93.19500 194.30563 31.38245 110 20 - + 38.53462 94.66650 198.00223 31.97949 110 19 - + 38.86000 96.13800 201.69884 32.57653 110 19 - + 39.17847 97.60950 205.39544 33.17357 110 19 - + 39.49092 99.08100 209.09205 33.77061 110 19 - + 39.79824 100.55250 212.78865 34.36765 110 19 - + 39.79824 100.55250 208.18836 34.36765 110 19 - + 40.10144 102.02400 211.80505 34.96469 110 19 - + 40.40231 103.49550 215.42174 35.56174 110 19 - + 40.70287 104.96700 219.03843 36.15878 110 19 - + 41.00517 106.43850 222.65511 36.75582 110 18 - + 41.31125 107.91000 226.27180 37.35286 110 18 - + 43.88734 107.91000 484.03714 24.09540 110 9 - + 43.03716 109.38150 495.52355 24.66719 110 9 - + 42.23108 110.85300 507.00995 25.23899 110 8 - + 41.47516 112.32450 518.49635 25.81078 110 8 - + 40.77547 113.79600 529.98276 26.38257 110 8 - + 40.13807 115.26750 541.46916 26.95437 110 7 - + 40.13807 115.26750 502.94282 26.95437 110 8 - + 39.56609 116.73900 513.61195 27.52616 110 8 - + 39.05624 118.21050 524.28108 28.09796 110 7 - + 38.60499 119.68200 534.95021 28.66975 110 7 - + 38.20879 121.15350 545.61934 29.24154 110 7 - + 37.86409 122.62500 556.28847 29.81334 110 7 - + 37.86409 122.62500 542.36706 29.81334 110 7 - + 37.56589 124.09650 552.76919 30.38513 110 7 - + 37.30747 125.56800 563.17132 30.95693 110 7 - + 37.08269 127.03950 573.57345 31.52872 110 6 - + 36.88542 128.51100 583.97558 32.10051 110 6 - + 36.70952 129.98250 594.37771 32.67231 110 6 - + 36.70952 129.98250 586.93748 32.67231 110 6 - + 36.54849 131.45400 597.20940 33.24410 110 6 - + 36.39781 132.92550 607.48132 33.81589 110 6 - + 36.25427 134.39700 617.75323 34.38769 110 6 - + 36.11466 135.86850 628.02515 34.95948 110 6 - + 35.97579 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5736,10 +5848,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 31.894 'Clay' - -4.00 28.139 'Peat' - -6.00 247.034 'Clay' - -13.00 138.118 'Sand' + 0.00 32.205 'Clay' + -4.00 26.042 'Peat' + -6.00 227.232 'Clay' + -13.00 115.763 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5747,7 +5859,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5771,28 +5883,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.18000 - -2.31000 - -2.44000 - -2.57000 - -2.70000 - -2.70000 - -2.83000 - -2.96000 - -3.09000 - -3.22000 - -3.35000 - -3.35000 - -3.48000 - -3.61000 - -3.74000 - -3.87000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 + -2.80000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5927,22 +6033,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.84 : Percentage mobilized resistance left - 13.52 : Percentage mobilized resistance right - 303.42 : Effective left - 359.42 : Effective right + 12.72 : Percentage mobilized resistance left + 9.53 : Percentage mobilized resistance right + 268.25 : Effective left + 324.25 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1610.58 : Max effective resistance left - 2657.66 : Max effective resistance right --17279.80 : Max moment left --25718.23 : Max moment right --2820.49 : Max mobilized moment left --2837.06 : Max mobilized moment right - 71.78 : Vertical force left - 77.82 : Vertical force right - 16.3 : Max mobilized moment percentage left - 11.0 : Max mobilized moment percentage right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right +-22259.41 : Max moment left +-32715.60 : Max moment right +-2473.90 : Max mobilized moment left +-2491.58 : Max mobilized moment right + 76.92 : Vertical force left + 85.09 : Vertical force right + 11.1 : Max mobilized moment percentage left + 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -5950,157 +6056,151 @@ Name [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00153 0.01088 7.14681 - 0.05116 1.03199 6.73506 - 0.37587 3.40912 6.32330 - 1.08855 6.07952 5.91093 - 2.19555 8.66650 5.49731 - 3.68432 11.16974 5.08181 - 3.68492 11.17318 5.08181 - 5.54337 13.59219 4.66353 - 7.75832 15.92617 4.24048 - 10.31691 18.17389 3.81047 - 13.20852 20.38228 3.37128 - 16.43362 22.63113 2.92071 - 16.43372 -33.36786 2.92071 - 13.17363 -31.82883 2.61315 - 10.06899 -30.25890 2.30054 - 7.12286 -28.65872 1.98401 - 4.33824 -27.02874 1.66470 - 1.71809 -25.36928 1.34372 - 1.71810 -25.36921 1.34372 - 1.46524 -25.20187 1.31157 - 1.21406 -25.03467 1.27942 - 0.96455 -24.86762 1.24726 - 0.71671 -24.70071 1.21510 - 0.47053 -24.53394 1.18294 - 0.46955 -24.52761 1.18294 - -2.57870 -22.37267 0.76511 - -5.34839 -20.24181 0.34896 - -7.84622 -18.21811 -0.06388 - -10.09244 -16.36384 -0.47179 - -12.10720 -14.65686 -0.87313 - -12.10617 -14.65195 -0.87313 - -13.90782 -13.08960 -1.26645 - -15.51560 -11.66878 -1.65074 - -16.94769 -10.38602 -2.02508 - -18.22178 -9.23754 -2.38852 - -19.35509 -8.21920 -2.74014 - -19.35506 -8.22109 -2.74014 - -20.36444 -7.32843 -3.07910 - -21.26570 -6.55676 -3.40486 - -22.07423 -5.90116 -3.71688 - -22.80481 -5.35654 -4.01464 - -23.47151 -4.91761 -4.29760 - -23.47157 -4.91922 -4.29760 - -24.04707 -3.72013 -4.57190 - -24.46537 -2.56077 -4.82979 - -24.73160 -1.43869 -5.07109 - -24.85057 -0.35139 -5.29562 - -24.82674 0.70366 -5.50318 - -24.82674 0.70261 -5.50318 - -24.66439 1.72793 -5.69369 - -24.36717 2.72605 -5.86737 - -23.93854 3.69948 -6.02451 - -23.38163 4.65065 -6.16540 - -22.69925 5.58197 -6.29033 - -22.69926 5.58102 -6.29033 - -21.89402 6.49485 -6.39968 - -20.96797 7.39346 -6.49408 - -19.92300 8.27904 -6.57426 - -18.76071 9.15366 -6.64092 - -17.48243 10.01928 -6.69478 - -17.48245 10.01851 -6.69478 - -16.49941 9.64077 -6.72727 - -15.55456 9.25483 -6.75343 - -14.64866 8.86239 -6.77361 - -13.78225 8.46510 -6.78815 - -12.95575 8.06447 -6.79741 - -12.95575 8.06388 -6.79741 - -12.16948 7.66136 -6.80171 - -11.42350 7.25828 -6.80135 - -10.71780 6.85592 -6.79659 - -10.05225 6.45547 -6.78771 - -9.42661 6.05804 -6.77496 - -9.42655 6.05719 -6.77496 - -8.56221 5.46914 -6.74920 - -7.78519 4.89346 -6.71605 - -7.09341 4.33313 -6.67612 - -6.48435 3.79087 -6.62999 - -5.95512 3.26916 -6.57828 - -5.95514 3.26824 -6.57828 - -5.50262 2.76932 -6.52150 - -5.12310 2.29523 -6.45998 - -4.81271 1.84793 -6.39398 - -4.56729 1.42922 -6.32377 - -4.38243 1.04084 -6.24963 - -4.38243 1.04016 -6.24963 - -4.25355 0.68369 -6.17176 - -4.17565 0.36070 -6.09022 - -4.14359 0.07272 -6.00505 - -4.15201 -0.17873 -5.91626 - -4.19531 -0.39214 -5.82389 - -4.19531 -0.39278 -5.82389 - -4.26777 -0.56664 -5.72793 - -4.36324 -0.69942 -5.62829 - -4.47546 -0.78956 -5.52487 - -4.59790 -0.83544 -5.41757 - -4.72380 -0.83543 -5.30631 - -4.72379 -0.83615 -5.30631 - -4.84625 -0.78855 -5.19097 - -4.95789 -0.69163 -5.07143 - -5.05118 -0.54361 -4.94764 - -5.11833 -0.34268 -4.81950 - -5.15125 -0.08701 -4.68695 - -5.15125 -0.08778 -4.68695 - -5.14171 0.22451 -4.54990 - -5.08097 0.59529 -4.40840 - -4.96011 1.02642 -4.26257 - -4.76994 1.51967 -4.11251 - -4.50101 2.07682 -3.95833 - -4.50103 2.07617 -3.95833 - -4.14372 2.69891 -3.80016 - -3.68799 3.38883 -3.63841 - -3.12365 4.14734 -3.47357 - -2.44030 4.97564 -3.30611 - -1.62742 5.87470 -3.13655 - -1.62745 5.87449 -3.13655 - -0.67438 6.84510 -2.96543 - 0.42968 7.88771 -2.79371 - 1.69553 9.00233 -2.62250 - 3.13396 10.18852 -2.45288 - 4.75562 11.44539 -2.28596 - 4.75840 11.42588 -2.28596 - 6.25963 8.61360 -2.12325 - 7.35108 5.97344 -1.96595 - 8.06475 3.59499 -1.81471 - 8.44511 1.52712 -1.67017 - 8.53767 -0.24491 -1.53295 - 8.53635 -0.24479 -1.53295 - 8.38434 -1.73668 -1.40337 - 8.02857 -2.96406 -1.28103 - 7.50761 -3.94167 -1.16550 - 6.85787 -4.68335 -1.05634 - 6.11376 -5.20203 -0.95312 - 6.11389 -5.19749 -0.95312 - 5.30864 -5.50503 -0.85525 - 4.47242 -5.61185 -0.76196 - 3.63467 -5.52680 -0.67252 - 2.82361 -5.25726 -0.58625 - 2.06643 -4.80911 -0.50242 - 2.06655 -4.80745 -0.50242 - 1.38996 -4.18503 -0.42028 - 0.81961 -3.39138 -0.33933 - 0.38101 -2.42858 -0.25920 - 0.09942 -1.29798 -0.17951 - -0.00002 -0.00012 -0.09991 + -0.00076 0.01214 6.99532 + 0.07077 1.40628 6.62579 + 0.48896 4.15714 6.25622 + 1.31416 6.83311 5.88592 + 2.53513 9.43394 5.51417 + 4.14057 11.95927 5.14026 + 4.14060 11.96008 5.14026 + 6.11926 14.40935 4.76318 + 8.45956 16.78166 4.38083 + 11.14984 19.07566 3.99091 + 14.17825 21.28954 3.59109 + 17.53501 23.46954 3.17906 + 17.53511 -32.52947 3.17906 + 14.35552 -31.05766 2.89667 + 11.32450 -29.55825 2.60878 + 8.44477 -28.03193 2.31649 + 5.71899 -26.47926 2.02090 + 3.14978 -24.90060 1.72313 + 3.14879 -24.89423 1.72313 + -0.02952 -22.78457 1.32454 + -2.92820 -20.69977 0.92599 + -5.55167 -18.66457 0.52927 + -7.91034 -16.73991 0.13616 + -10.02212 -14.96100 -0.25153 + -10.02108 -14.95603 -0.25153 + -11.90460 -13.32054 -0.63219 + -13.57947 -11.82565 -1.00472 + -15.06421 -10.46814 -1.36811 + -16.37692 -9.24439 -1.72134 + -17.53515 -8.15042 -2.06338 + -17.53513 -8.15225 -2.06338 + -18.55616 -7.18373 -2.39334 + -19.45616 -6.33602 -2.71064 + -20.25092 -5.60431 -3.01473 + -20.95557 -4.98355 -3.30507 + -21.58456 -4.46852 -3.58110 + -21.58463 -4.47009 -3.58110 + -22.10780 -3.38390 -3.84231 + -22.48869 -2.33559 -4.08844 + -22.73220 -1.32290 -4.31931 + -22.84294 -0.34353 -4.53476 + -22.82519 0.60482 -4.73462 + -22.82519 0.60386 -4.73462 + -22.68306 1.52355 -4.91881 + -22.42008 2.41688 -5.08751 + -22.03963 3.28615 -5.24100 + -21.54474 4.13362 -5.37952 + -20.93820 4.96151 -5.50335 + -20.93820 4.96063 -5.50335 + -20.22257 5.77109 -5.61279 + -19.39993 6.56624 -5.70844 + -18.47217 7.34809 -5.79092 + -17.44094 8.11857 -5.86086 + -16.30764 8.87948 -5.91890 + -16.30766 8.87876 -5.91890 + -15.43530 8.56674 -5.95506 + -14.59462 8.24543 -5.98530 + -13.78647 7.91643 -6.00993 + -13.01154 7.58128 -6.02926 + -12.27037 7.24142 -6.04360 + -12.27037 7.24086 -6.04360 + -11.56343 6.89764 -6.05324 + -10.89092 6.55234 -6.05845 + -10.25299 6.20617 -6.05947 + -9.64967 5.86026 -6.05654 + -9.08089 5.51569 -6.04991 + -9.08084 5.51487 -6.04991 + -8.29209 5.00285 -6.03355 + -7.57956 4.49919 -6.01004 + -6.94177 4.00680 -5.97993 + -6.37683 3.52833 -5.94376 + -5.88246 3.06620 -5.90210 + -5.88247 3.06530 -5.90210 + -5.45619 2.62172 -5.85543 + -5.09493 2.19873 -5.80405 + -4.79545 1.79825 -5.74823 + -4.55423 1.42210 -5.68822 + -4.36751 1.07198 -5.62429 + -4.36752 1.07131 -5.62429 + -4.23137 0.74882 -5.55663 + -4.14142 0.45551 -5.48533 + -4.09318 0.19291 -5.41042 + -4.08193 -0.03748 -5.33194 + -4.10274 -0.23418 -5.24995 + -4.10274 -0.23480 -5.24995 + -4.15052 -0.39632 -5.16444 + -4.21980 -0.52117 -5.07535 + -4.30496 -0.60784 -4.98260 + -4.40016 -0.65477 -4.88613 + -4.49933 -0.66038 -4.78586 + -4.49932 -0.66106 -4.78586 + -4.59623 -0.62374 -4.68170 + -4.68422 -0.54185 -4.57358 + -4.75647 -0.41369 -4.46142 + -4.80593 -0.23757 -4.34517 + -4.82526 -0.01176 -4.22478 + -4.82526 -0.01248 -4.22478 + -4.80699 0.26479 -4.10018 + -4.74316 0.59526 -3.97142 + -4.62567 0.98065 -3.83861 + -4.44614 1.42266 -3.70185 + -4.19596 1.92291 -3.56126 + -4.19597 1.92230 -3.56126 + -3.86637 2.48238 -3.41696 + -3.44819 3.10377 -3.26930 + -2.93211 3.78778 -3.11875 + -2.30867 4.53553 -2.96576 + -1.56822 5.34797 -2.81076 + -1.56825 5.34776 -2.81076 + -0.70107 6.22561 -2.65428 + 0.30273 7.16931 -2.49717 + 1.45302 8.17891 -2.34045 + 2.75968 9.25405 -2.18510 + 4.23247 10.39394 -2.03212 + 4.23512 10.37530 -2.03212 + 5.60620 7.92604 -1.88290 + 6.61890 5.59611 -1.73852 + 7.29342 3.43405 -1.59960 + 7.66156 1.52100 -1.46673 + 7.76332 -0.12000 -1.34051 + 7.76207 -0.12015 -1.34051 + 7.63717 -1.50338 -1.22124 + 7.32323 -2.64306 -1.10856 + 6.85576 -3.55262 -1.00208 + 6.26832 -4.24469 -0.90142 + 5.59264 -4.73109 -0.80620 + 5.59276 -4.72694 -0.80620 + 4.85948 -5.01850 -0.71587 + 4.09647 -5.12477 -0.62972 + 3.33091 -5.05384 -0.54712 + 2.58884 -4.81248 -0.46740 + 1.89542 -4.40607 -0.38993 + 1.89554 -4.40455 -0.38993 + 1.27542 -3.83708 -0.31401 + 0.75233 -3.11133 -0.23918 + 0.34984 -2.22922 -0.16510 + 0.09132 -1.19198 -0.09143 + -0.00002 -0.00011 -0.01784 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6136,10 +6236,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6166,7 +6266,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -6176,36 +6276,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.05000 60.45400 0.00000 146.53626 0.00000 - -2.70000 60.67300 0.00000 218.80272 0.00000 - -3.35000 60.82300 0.00000 297.17951 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -6216,36 +6315,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.02500 30.15475 106.11937 0.00000 0.70763 0.00000 3.51916 - -2.37500 32.32125 111.17918 0.00000 0.70763 0.00000 3.43982 - -3.02500 36.34475 120.57968 0.00000 0.70763 0.00000 3.31766 - -3.67500 40.36825 129.98155 0.00000 0.70763 0.00000 3.21990 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6257,149 +6355,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.44961 0.00000 19.44961 1.59216 202 100 P - 25.82900 0.00000 38.89922 3.18433 110 66 - - 25.03580 0.00000 58.34883 4.77649 110 43 - - 24.24011 0.00000 77.79845 6.36865 110 31 - - 23.44067 0.00000 97.24806 7.96082 110 24 - - 23.44067 0.00000 50.01834 7.96082 110 47 - - 22.63566 0.00000 60.02201 9.55298 110 38 - - 21.82111 0.00000 70.02568 11.14515 110 31 - - 20.99263 0.00000 80.02935 12.73731 110 26 - - 21.07203 0.00000 90.03302 14.32947 110 23 - - 21.76306 0.00000 100.03668 15.92164 110 22 - - 21.76306 0.00000 83.12851 15.92164 110 26 - - 22.20938 0.00000 88.67041 16.98308 110 25 - - 22.64560 0.00000 94.21231 18.04452 110 24 - - 23.07399 0.00000 99.75421 19.10596 110 23 - - 23.49680 0.00000 105.29611 20.16741 110 22 - - 23.91628 0.00000 110.83802 21.22885 110 22 - - 23.91628 0.00000 105.57478 21.22885 110 23 - - 23.89579 0.09810 105.79261 21.27265 110 23 - - 23.87529 0.19620 106.01045 21.31645 110 23 - - 23.85478 0.29430 106.22828 21.36026 110 22 - - 23.83426 0.39240 106.44612 21.40406 110 22 - - 23.81374 0.49050 106.66396 21.44786 110 22 - - 23.81374 0.49050 104.25913 21.44786 110 23 - - 23.54750 1.76580 107.02715 22.01729 110 22 - - 23.28463 3.04110 109.79517 22.58672 110 21 - - 23.02838 4.31640 112.56319 23.15615 110 0 - - 22.78200 5.59170 115.33121 23.72557 110 0 - - 22.54874 6.86700 118.09923 24.29500 110 0 - - 22.54874 6.86700 113.90536 24.29500 110 0 - - 22.33153 8.14230 116.57509 24.86443 110 0 - - 22.13237 9.41760 119.24481 25.43386 110 0 - - 21.95313 10.69290 121.91454 26.00329 110 0 - - 21.79567 11.96820 124.58426 26.57272 110 0 - - 21.66187 13.24350 127.25399 27.14214 110 0 - - 21.66187 13.24350 123.50392 27.14214 110 0 - - 21.55337 14.51880 126.09497 27.71157 110 0 - - 21.47128 15.79410 128.68602 28.28100 110 0 - - 21.41667 17.06940 131.27707 28.85043 110 0 - - 21.39059 18.34470 133.86812 29.41986 110 0 - - 21.39410 19.62000 136.45917 29.98929 110 0 - - 24.44711 19.62000 93.61408 27.88519 110 0 - - 24.33207 20.92800 93.96456 27.98959 110 0 - - 24.23015 22.23600 94.31504 28.09399 110 0 - - 24.14151 23.54400 94.66552 28.19838 110 0 - - 24.06629 24.85200 95.01601 28.30278 110 0 - - 24.00464 26.16000 95.36649 28.40718 110 0 - - 24.00464 26.16000 94.99596 28.40718 110 0 - - 23.95663 27.46800 95.34508 28.51158 110 0 - - 23.92209 28.77600 95.69420 28.61598 110 0 - - 23.90078 30.08400 96.04332 28.72038 110 0 - - 23.89246 31.39200 96.39244 28.82478 110 0 - - 23.89692 32.70000 96.74156 28.92918 110 0 - - 23.89692 32.70000 96.43144 28.92918 110 0 - - 23.91384 34.00800 96.77944 29.03358 110 0 - - 23.94271 35.31600 97.12744 29.13798 110 0 - - 23.98297 36.62400 97.47544 29.24238 110 0 - - 24.03404 37.93200 97.82344 29.34678 110 0 - - 24.09535 39.24000 98.17145 29.45118 110 0 - - 18.28388 39.24000 139.39178 31.67344 110 0 - - 18.65693 40.22100 141.31947 32.11146 110 0 - - 19.04263 41.20200 143.24716 32.54949 110 0 - - 19.44029 42.18300 145.17485 32.98751 110 0 - - 19.84923 43.16400 147.10255 33.42553 110 0 - - 20.26874 44.14500 149.03024 33.86355 110 0 - - 20.26874 44.14500 146.65286 33.86355 110 0 - - 20.69815 45.12600 148.54980 34.30157 110 0 - - 21.13689 46.10700 150.44674 34.73960 110 0 - - 21.58444 47.08800 152.34368 35.17762 110 0 - - 22.04023 48.06900 154.24062 35.61564 110 0 - - 22.50374 49.05000 156.13756 36.05366 110 0 - - 22.50374 49.05000 153.40009 36.05366 110 0 - - 23.21229 50.52150 156.19561 36.71069 110 0 - - 23.93562 51.99300 158.99114 37.36773 110 0 - - 24.67253 53.46450 161.78666 38.02476 110 0 - - 25.42181 54.93600 164.58219 38.68179 110 0 - - 26.18227 56.40750 167.37771 39.33883 110 0 - - 26.18227 56.40750 164.33167 39.33883 110 0 - - 26.95286 57.87900 167.07632 39.99586 110 0 - - 27.73294 59.35050 169.82097 40.65289 110 0 - - 28.52197 60.82200 172.56562 41.30992 110 0 - - 29.31941 62.29350 175.31027 41.96696 110 0 - - 30.12473 63.76500 178.05492 42.62399 110 0 - - 30.12473 63.76500 175.25279 42.62399 110 0 - - 30.93750 65.23650 177.95425 43.28102 110 0 - - 31.75761 66.70800 180.65570 43.93806 110 0 - - 32.58500 68.17950 183.35716 44.59509 110 0 - - 33.41960 69.65100 186.05862 45.25212 110 0 - - 34.26137 71.12250 188.76007 45.90915 110 0 - - 34.26137 71.12250 186.16443 45.90915 110 0 - - 35.11032 72.59400 188.82874 46.56619 110 0 - - 35.96664 74.06550 191.49305 47.22322 110 0 - - 36.83052 75.53700 194.15736 47.88025 110 0 - - 37.70214 77.00850 196.82167 48.53729 110 0 - - 38.58170 78.48000 199.48598 49.19432 110 0 - - 38.58170 78.48000 197.06773 49.19432 110 0 - - 39.46942 79.95150 199.69974 49.85135 110 0 - - 40.36552 81.42300 202.33175 50.50838 110 0 - - 41.27014 82.89450 204.96376 51.16542 110 0 - - 42.18345 84.36600 207.59577 51.82245 110 0 - - 43.10559 85.83750 210.22778 52.47948 110 0 - - 43.10559 85.83750 207.96375 52.47948 110 0 - - 44.03672 87.30900 210.56741 53.13652 110 0 - - 44.97675 88.78050 213.17108 53.79355 110 0 - - 45.92544 90.25200 215.77474 54.45058 110 0 - - 46.88260 91.72350 218.37841 55.10761 110 0 - - 47.84799 93.19500 220.98207 55.76465 110 0 - - 47.84799 93.19500 218.85344 55.76465 110 0 - - 48.82135 94.66650 221.43202 56.42168 110 0 - - 49.80189 96.13800 224.01061 57.07871 110 0 - - 50.78862 97.60950 226.58920 57.73575 110 0 - - 51.78055 99.08100 229.16778 58.39278 110 0 - - 52.77671 100.55250 231.74637 59.04981 110 0 - - 52.77671 100.55250 229.73763 59.04981 110 0 - - 53.77598 102.02400 232.29387 59.70685 110 0 - - 54.77645 103.49550 234.85010 60.36388 110 0 - - 55.77592 104.96700 237.40634 61.02091 110 0 - - 56.77219 106.43850 239.96257 61.67794 110 0 - - 57.76306 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.76397 110.85300 609.04150 45.42350 110 0 - - 27.96562 112.32450 618.28301 46.11275 110 0 - - 30.10034 113.79600 627.52452 46.80200 110 0 - - 32.16175 115.26750 636.76604 47.49125 110 0 - - 32.16175 115.26750 585.69985 47.49125 110 0 - - 34.14677 116.73900 594.20023 48.18050 110 0 - - 36.05942 118.21050 602.70061 48.86975 110 0 - - 37.90401 119.68200 611.20099 49.55900 110 0 - - 39.68487 121.15350 619.70137 50.24825 110 0 - - 41.40631 122.62500 628.20175 50.93750 110 0 - - 41.40631 122.62500 610.51735 50.93750 110 0 - - 43.07424 124.09650 618.77844 51.62675 110 0 - - 44.69644 125.56800 627.03952 52.31600 110 0 - - 46.28001 127.03950 635.30061 53.00525 110 0 - - 47.83203 128.51100 643.56170 53.69450 110 0 - - 49.35960 129.98250 651.82278 54.38375 110 0 - - 49.35960 129.98250 642.44252 54.38375 110 0 - - 50.87017 131.45400 650.58472 55.07300 110 0 - - 52.36893 132.92550 658.72693 55.76225 110 0 - - 53.85953 134.39700 666.86913 56.45150 110 0 - - 55.34564 135.86850 675.01133 57.14075 110 0 - - 56.83092 137.34000 683.15353 57.83000 110 0 - + 26.55500 0.00000 27.59211 1.44679 110 96 - + 25.84241 0.00000 55.18421 2.89358 110 47 - + 25.12835 0.00000 82.77632 4.34037 110 30 - + 24.41139 0.00000 110.36843 5.78715 110 22 - + 23.69012 0.00000 137.96054 7.23394 110 17 - + 23.69012 0.00000 68.20749 7.23394 110 35 - + 22.96249 0.00000 81.84899 8.68073 110 28 - + 22.22434 0.00000 95.49049 10.12752 110 23 - + 21.47104 0.00000 109.13199 11.57431 110 20 - + 20.69795 0.00000 122.77349 13.02110 110 17 - + 20.82601 0.00000 136.41499 14.46788 110 15 - + 20.82601 0.00000 111.45332 14.46788 110 19 - + 21.22576 0.00000 118.88354 15.43241 110 18 - + 21.61450 0.00000 126.31376 16.39693 110 17 - + 21.99444 0.00000 133.74398 17.36146 110 16 - + 22.36779 0.00000 141.17421 18.32599 110 16 - + 22.73676 0.00000 148.60443 19.29051 110 15 - + 22.73676 0.00000 137.71826 19.29051 110 17 - + 22.47030 1.30800 141.50704 19.82121 110 16 - + 22.20390 2.61600 145.29582 20.35192 110 15 - + 21.94115 3.92400 149.08461 20.88262 110 15 - + 21.68565 5.23200 152.87339 21.41333 110 14 - + 21.44097 6.54000 156.66217 21.94403 110 0 - + 21.44097 6.54000 150.27634 21.94403 110 0 - + 21.21035 7.84800 153.91069 22.47473 110 0 - + 20.99599 9.15600 157.54503 23.00544 110 0 - + 20.79991 10.46400 161.17938 23.53614 110 0 - + 20.62417 11.77200 164.81372 24.06684 110 0 - + 20.47079 13.08000 168.44806 24.59755 110 0 - + 20.47079 13.08000 162.75727 24.59755 110 0 - + 20.34158 14.38800 166.26883 25.12825 110 0 - + 20.23768 15.69600 169.78039 25.65895 110 0 - + 20.16020 17.00400 173.29196 26.18966 110 0 - + 20.11023 18.31200 176.80352 26.72036 110 0 - + 20.08886 19.62000 180.31508 27.25106 110 0 - + 21.96481 19.62000 112.91072 24.82969 110 0 - + 21.84880 20.92800 113.33345 24.92265 110 0 - + 21.74486 22.23600 113.75618 25.01561 110 0 - + 21.65312 23.54400 114.17890 25.10857 110 0 - + 21.57372 24.85200 114.60163 25.20153 110 0 - + 21.50679 26.16000 115.02436 25.29449 110 0 - + 21.50679 26.16000 114.42115 25.29449 110 0 - + 21.45240 27.46800 114.84166 25.38745 110 0 - + 21.41040 28.77600 115.26217 25.48041 110 0 - + 21.38057 30.08400 115.68268 25.57337 110 0 - + 21.36271 31.39200 116.10319 25.66633 110 0 - + 21.35661 32.70000 116.52370 25.75929 110 0 - + 21.35661 32.70000 116.01583 25.75929 110 0 - + 21.36202 34.00800 116.43451 25.85225 110 0 - + 21.37846 35.31600 116.85318 25.94521 110 0 - + 21.40544 36.62400 117.27186 26.03817 110 0 - + 21.44244 37.93200 117.69054 26.13113 110 0 - + 21.48897 39.24000 118.10921 26.22409 110 0 - + 16.94364 39.24000 183.43874 28.78144 110 0 - + 17.26934 40.22100 185.97557 29.17947 110 0 - + 17.60689 41.20200 188.51241 29.57750 110 0 - + 17.95566 42.18300 191.04924 29.97553 110 0 - + 18.31503 43.16400 193.58607 30.37355 110 0 - + 18.68439 44.14500 196.12290 30.77158 110 0 - + 18.68439 44.14500 192.60019 30.77158 110 0 - + 19.06312 45.12600 195.09146 31.16961 110 0 - + 19.45073 46.10700 197.58272 31.56764 110 0 - + 19.84672 47.08800 200.07399 31.96566 110 0 - + 20.25061 48.06900 202.56525 32.36369 110 0 - + 20.66189 49.05000 205.05652 32.76172 110 0 - + 20.66189 49.05000 201.00495 32.76172 110 0 - + 21.29165 50.52150 204.66801 33.35876 110 0 - + 21.93572 51.99300 208.33107 33.95580 110 0 - + 22.59298 53.46450 211.99414 34.55284 110 0 - + 23.26235 54.93600 215.65720 35.14988 110 0 - + 23.94272 56.40750 219.32027 35.74693 110 0 - + 23.94272 56.40750 214.81611 35.74693 110 0 - + 24.63310 57.87900 218.40395 36.34397 110 0 - + 25.33290 59.35050 221.99178 36.94101 110 0 - + 26.04159 60.82200 225.57962 37.53805 110 0 - + 26.75865 62.29350 229.16745 38.13509 110 0 - + 27.48356 63.76500 232.75529 38.73213 110 0 - + 27.48356 63.76500 228.61475 38.73213 110 0 - + 28.21591 65.23650 232.13876 39.32917 110 0 - + 28.95556 66.70800 235.66278 39.92621 110 0 - + 29.70242 68.17950 239.18679 40.52326 110 0 - + 30.45641 69.65100 242.71080 41.12030 110 0 - + 31.21745 71.12250 246.23481 41.71734 110 0 - + 31.21745 71.12250 242.40131 41.71734 110 0 - + 31.98550 72.59400 245.87046 42.31438 110 0 - + 32.76073 74.06550 249.33961 42.91142 110 0 - + 33.54326 75.53700 252.80875 43.50846 110 0 - + 34.33325 77.00850 256.27790 44.10550 110 0 - + 35.13083 78.48000 259.74705 44.70255 110 0 - + 35.13083 78.48000 256.17685 44.70255 110 0 - + 35.93618 79.95150 259.59831 45.29959 110 0 - + 36.74948 81.42300 263.01977 45.89663 110 0 - + 37.57083 82.89450 266.44124 46.49367 110 0 - + 38.40037 84.36600 269.86270 47.09071 110 0 - + 39.23820 85.83750 273.28417 47.68775 110 0 - + 39.23820 85.83750 269.94257 47.68775 110 0 - + 40.08444 87.30900 273.32219 48.28479 110 0 - + 40.93900 88.78050 276.70182 48.88183 110 0 - + 41.80166 90.25200 280.08145 49.47888 110 0 - + 42.67221 91.72350 283.46108 50.07592 110 0 - + 43.55044 93.19500 286.84071 50.67296 110 0 - + 43.55044 93.19500 283.69963 50.67296 110 0 - + 44.43609 94.66650 287.04225 51.27000 110 0 - + 45.32843 96.13800 290.38487 51.86704 110 0 - + 46.22657 97.60950 293.72749 52.46408 110 0 - + 47.12961 99.08100 297.07011 53.06112 110 0 - + 48.03664 100.55250 300.41273 53.65817 110 0 - + 48.03664 100.55250 297.44910 53.65817 110 0 - + 48.94665 102.02400 300.75875 54.25521 110 0 - + 49.85790 103.49550 304.06839 54.85225 110 0 - + 50.76840 104.96700 307.37804 55.44929 110 0 - + 51.67614 106.43850 310.68768 56.04633 110 0 - + 52.57913 107.91000 313.99732 56.64337 110 0 - + 20.50984 107.91000 734.00940 36.53923 110 0 - + 20.75046 109.38150 745.49575 37.11102 110 0 - + 20.99022 110.85300 756.98209 37.68281 110 0 - + 22.25859 112.32450 768.46843 38.25461 110 0 - + 24.15909 113.79600 779.95478 38.82640 110 0 - + 25.99310 115.26750 791.44112 39.39820 110 0 - + 25.99310 115.26750 738.87493 39.39820 110 0 - + 27.75762 116.73900 749.59837 39.96999 110 0 - + 29.45623 118.21050 760.32181 40.54178 110 0 - + 31.09279 119.68200 771.04525 41.11358 110 0 - + 32.67116 121.15350 781.76869 41.68537 110 0 - + 34.19521 122.62500 792.49213 42.25717 110 0 - + 34.19521 122.62500 772.62437 42.25717 110 0 - + 35.67030 124.09650 783.07897 42.82896 110 0 - + 37.10354 125.56800 793.53357 43.40075 110 0 - + 38.50140 127.03950 803.98818 43.97255 110 0 - + 39.87035 128.51100 814.44278 44.54434 110 0 - + 41.21687 129.98250 824.89738 45.11614 110 0 - + 41.21687 129.98250 814.08791 45.11614 110 0 - + 42.54781 131.45400 824.40552 45.68793 110 0 - + 43.86790 132.92550 834.72313 46.25972 110 0 - + 45.18052 134.39700 845.04073 46.83152 110 0 - + 46.48900 135.86850 855.35834 47.40331 110 0 - + 47.79672 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6412,10 +6504,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 88.285 'Clay' - -4.00 48.065 'Peat' - -6.00 254.985 'Clay' - -13.00 122.120 'Sand' + 0.00 86.555 'Clay' + -4.00 43.014 'Peat' + -6.00 232.556 'Clay' + -13.00 101.089 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6430,7 +6522,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.05 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -6452,10 +6544,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6491,27 +6583,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 59.75500 0.00000 10.55221 0.00000 - -3.35000 59.78900 0.00000 40.61526 0.00000 - -4.00000 59.93300 0.00000 78.98783 0.00000 - -4.66667 59.27900 0.00000 99.99586 0.00000 - -5.33333 58.76500 0.00000 122.03151 0.00000 - -6.00000 58.35000 0.00000 145.10928 0.00000 - -6.50000 58.82300 0.00000 181.70389 0.00000 - -7.00000 59.17400 0.00000 221.90084 0.00000 - -7.75000 59.56800 0.00000 288.96438 0.00000 - -8.50000 59.86600 0.00000 364.15694 0.00000 - -9.25000 60.10300 0.00000 447.48137 0.00000 - -10.00000 60.29800 0.00000 538.93827 0.00000 - -10.75000 60.46400 0.00000 638.52740 0.00000 - -11.50000 60.60700 36.30900 746.24820 5.95961 - -12.25000 60.73200 36.53400 862.10000 14.49704 - -13.00000 60.84200 36.74200 986.08217 24.71056 - -13.75000 65.56900 36.47300 1292.86714 37.45998 - -14.50000 67.27700 36.23100 1605.37759 51.66150 - -15.25000 68.28400 36.01600 1940.14003 67.31490 - -16.00000 68.96200 35.82400 2300.82648 84.41969 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -6528,32 +6620,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 16.23417 0.00000 0.70763 0.00000 8.06968 - -3.02500 6.03525 46.25085 0.00000 0.70763 0.00000 7.66345 - -3.67500 10.05875 59.03472 0.00000 0.70763 0.00000 5.86899 - -4.33333 12.46717 31.51203 0.00000 0.65798 0.00000 2.52760 - -5.00000 13.26050 33.05349 0.00000 0.65798 0.00000 2.49263 - -5.66667 14.05383 34.61665 0.00000 0.65798 0.00000 2.46315 - -6.25000 15.99800 73.18922 0.00000 0.70763 0.00000 4.57490 - -6.75000 19.09300 80.39390 0.00000 0.70763 0.00000 4.21065 - -7.37500 22.96175 89.41805 0.00000 0.70763 0.00000 3.89422 - -8.12500 27.60425 100.25674 0.00000 0.70763 0.00000 3.63193 - -8.87500 32.24675 111.09924 0.00000 0.70763 0.00000 3.44528 - -9.62500 36.88925 121.94254 0.00000 0.70763 0.00000 3.30564 - -10.37500 41.53175 132.78551 0.00000 0.70763 0.00000 3.19720 - -11.12500 46.17425 143.62773 7.94615 0.70763 0.17209 3.11056 - -11.87500 50.81675 154.46907 11.38323 0.70763 0.22401 3.03973 - -12.62500 55.45925 165.30955 13.61803 0.70763 0.24555 2.98074 - -13.37500 61.22675 409.04663 16.99923 0.50000 0.27764 6.68085 - -14.12500 68.11925 416.68061 18.93536 0.50000 0.27797 6.11693 - -14.87500 75.01175 446.34992 20.87121 0.50000 0.27824 5.95040 - -15.62500 81.90425 480.91526 22.80638 0.50000 0.27845 5.87168 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6582,132 +6674,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.09810 0.00000 0.00000 -1 0 - - 0.00000 0.19620 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 6.49367 0.56943 1 0 A - 0.00000 3.04110 12.98734 1.13886 1 0 A - 1.83605 4.31640 19.48100 1.70829 110 9 - - 3.22129 5.59170 25.97467 2.27771 110 12 - - 4.59340 6.86700 32.46834 2.84714 110 14 - - 4.59340 6.86700 30.83390 2.84714 110 15 - - 5.94947 8.14230 37.00068 3.41657 110 16 - - 7.28749 9.41760 43.16746 3.98600 110 17 - - 8.60559 10.69290 49.33424 4.55543 110 17 - - 9.90191 11.96820 55.50102 5.12486 110 18 - - 11.17456 13.24350 61.66780 5.69428 110 18 - - 11.17456 13.24350 47.22778 5.69428 110 24 - - 12.42192 14.51880 51.95055 6.26371 110 24 - - 13.64286 15.79410 56.67333 6.83314 110 24 - - 14.83633 17.06940 61.39611 7.40257 110 24 - - 16.00127 18.34470 66.11889 7.97200 110 24 - - 17.13662 19.62000 70.84166 8.54143 110 24 - - 11.38022 19.62000 30.50942 7.94215 110 37 - - 11.70406 20.92800 30.91047 8.04655 110 38 - - 12.01478 22.23600 31.31151 8.15094 110 38 - - 12.31222 23.54400 31.71256 8.25534 110 39 - - 12.59624 24.85200 32.11360 8.35974 110 39 - - 12.86669 26.16000 32.51465 8.46414 110 40 - - 12.86669 26.16000 32.06475 8.46414 110 40 - - 13.12349 27.46800 32.46024 8.56854 110 40 - - 13.36683 28.77600 32.85574 8.67294 110 41 - - 13.59695 30.08400 33.25124 8.77734 110 41 - - 13.81406 31.39200 33.64673 8.88174 110 41 - - 14.01841 32.70000 34.04223 8.98614 110 41 - - 14.01841 32.70000 33.63961 8.98614 110 42 - - 14.21028 34.00800 34.03043 9.09054 110 42 - - 14.39021 35.31600 34.42124 9.19494 110 42 - - 14.55875 36.62400 34.81206 9.29934 110 42 - - 14.71648 37.93200 35.20288 9.40374 110 42 - - 14.86396 39.24000 35.59370 9.50814 110 42 - - 23.61514 39.24000 66.10956 10.22558 110 36 - - 24.11814 40.22100 68.94142 10.66360 110 35 - - 24.60848 41.20200 71.77328 11.10163 110 34 - - 25.08686 42.18300 74.60515 11.53965 110 34 - - 25.55397 43.16400 77.43701 11.97767 110 33 - - 26.01051 44.14500 80.26887 12.41569 110 32 - - 26.01051 44.14500 73.87792 12.41569 110 35 - - 26.45714 45.12600 76.48431 12.85371 110 35 - - 26.89444 46.10700 79.09071 13.29174 110 34 - - 27.32294 47.08800 81.69710 13.72976 110 33 - - 27.74319 48.06900 84.30349 14.16778 110 33 - - 28.15573 49.05000 86.90988 14.60580 110 32 - - 28.15573 49.05000 80.37860 14.60580 110 35 - - 28.76124 50.52150 83.99438 15.26283 110 34 - - 29.35197 51.99300 87.61016 15.91987 110 34 - - 29.92914 53.46450 91.22594 16.57690 110 33 - - 30.49392 54.93600 94.84172 17.23393 110 32 - - 31.04752 56.40750 98.45750 17.89097 110 32 - - 31.04752 56.40750 91.82612 17.89097 110 34 - - 31.59100 57.87900 95.19837 18.54800 110 33 - - 32.12499 59.35050 98.57062 19.20503 110 33 - - 32.65002 60.82200 101.94287 19.86206 110 32 - - 33.16664 62.29350 105.31512 20.51910 110 31 - - 33.67539 63.76500 108.68736 21.17613 110 31 - - 33.67539 63.76500 103.10187 21.17613 110 33 - - 34.17669 65.23650 106.30082 21.83316 110 32 - - 34.67065 66.70800 109.49977 22.49020 110 32 - - 35.15732 68.17950 112.69871 23.14723 110 31 - - 35.63678 69.65100 115.89766 23.80426 110 31 - - 36.10908 71.12250 119.09661 24.46129 110 30 - - 36.10908 71.12250 114.26933 24.46129 110 32 - - 36.57420 72.59400 117.33861 25.11833 110 31 - - 37.03194 74.06550 120.40790 25.77536 110 31 - - 37.48213 75.53700 123.47718 26.43239 110 30 - - 37.92457 77.00850 126.54647 27.08943 110 30 - - 38.35908 78.48000 129.61575 27.74646 110 30 - - 38.35908 78.48000 125.36400 27.74646 110 31 - - 38.78543 79.95150 128.33260 28.40349 110 30 - - 39.20339 81.42300 131.30121 29.06053 110 30 - - 39.61283 82.89450 134.26981 29.71756 110 30 - - 40.01359 84.36600 137.23841 30.37459 110 29 - - 40.40552 85.83750 140.20702 31.03162 110 29 - - 40.40552 85.83750 136.40734 31.03162 110 30 - - 40.78845 87.30900 139.29550 31.68866 110 29 - - 41.16249 88.78050 142.18365 32.34569 110 29 - - 41.52786 90.25200 145.07180 33.00272 110 29 - - 41.88477 91.72350 147.95996 33.65976 110 28 - - 42.23344 93.19500 150.84811 34.31679 110 28 - - 42.23344 93.19500 147.41311 34.31679 110 29 - - 42.57415 94.66650 150.23549 34.97382 110 28 - - 42.90768 96.13800 153.05788 35.63085 110 28 - - 43.23502 97.60950 155.88027 36.28789 110 28 - - 43.55715 99.08100 158.70265 36.94492 110 27 - - 43.87505 100.55250 161.52504 37.60195 110 27 - - 43.87505 100.55250 158.39051 37.60195 110 28 - - 44.18985 102.02400 161.15813 38.25899 110 27 - - 44.50344 103.49550 163.92574 38.91602 110 27 - - 44.81804 104.96700 166.69336 39.57305 110 27 - - 45.13584 106.43850 169.46097 40.23008 110 27 - - 45.45903 107.91000 172.22859 40.88712 110 26 - - 51.74982 107.91000 386.02275 28.89025 110 13 - - 50.81196 109.38150 395.23230 29.57950 110 13 - - 49.92828 110.85300 404.44185 30.26875 110 12 - - 49.10513 112.32450 413.65140 30.95800 110 12 - - 48.34891 113.79600 422.86095 31.64725 110 11 - - 47.66600 115.26750 432.07050 32.33650 110 11 - - 47.66600 115.26750 395.60014 32.33650 110 12 - - 47.05948 116.73900 404.03233 33.02575 110 12 - - 46.52533 118.21050 412.46451 33.71500 110 11 - - 46.05924 119.68200 420.89670 34.40425 110 11 - - 45.65688 121.15350 429.32889 35.09350 110 11 - - 45.31394 122.62500 437.76107 35.78275 110 10 - - 45.31394 122.62500 425.84335 35.78275 110 11 - - 45.02451 124.09650 434.04598 36.47200 110 10 - - 44.78081 125.56800 442.24860 37.16125 110 10 - - 44.57574 127.03950 450.45123 37.85050 110 10 - - 44.40222 128.51100 458.65386 38.53975 110 10 - - 44.25315 129.98250 466.85648 39.22900 110 9 - - 44.25315 129.98250 460.68000 39.22900 110 10 - - 44.12108 131.45400 468.77411 39.91825 110 9 - - 44.00082 132.92550 476.86821 40.60750 110 9 - - 43.88872 134.39700 484.96232 41.29675 110 9 - - 43.78111 135.86850 493.05642 41.98600 110 9 - - 43.67433 137.34000 501.15053 42.67525 110 9 - + 0.00000 0.00000 0.00003 0.00000 1 0 A + 0.00000 1.30800 23.36326 0.53070 1 0 A + 0.00000 2.61600 46.72653 1.06141 1 0 A + 0.53358 3.92400 70.08979 1.59211 110 0 - + 1.85049 5.23200 93.45305 2.12281 110 0 - + 3.15657 6.54000 116.81631 2.65352 110 3 - + 3.15657 6.54000 47.10799 2.65352 110 7 - + 4.44860 7.84800 56.52959 3.18422 110 8 - + 5.72437 9.15600 65.95118 3.71492 110 9 - + 6.98186 10.46400 75.37278 4.24563 110 9 - + 8.21901 11.77200 84.79438 4.77633 110 10 - + 9.43379 13.08000 94.21598 5.30703 110 10 - + 9.43379 13.08000 66.31764 5.30703 110 14 - + 10.62441 14.38800 72.94940 5.83774 110 15 - + 11.78971 15.69600 79.58117 6.36844 110 15 - + 12.92860 17.00400 86.21293 6.89914 110 15 - + 14.03998 18.31200 92.84470 7.42985 110 15 - + 15.12275 19.62000 99.47646 7.96055 110 15 - + 10.11810 19.62000 38.17169 7.25322 110 27 - + 10.42003 20.92800 38.66091 7.34618 110 27 - + 10.70989 22.23600 39.15013 7.43914 110 27 - + 10.98755 23.54400 39.63936 7.53210 110 28 - + 11.25287 24.85200 40.12858 7.62506 110 28 - + 11.50572 26.16000 40.61780 7.71802 110 28 - + 11.50572 26.16000 39.99387 7.71802 110 29 - + 11.74603 27.46800 40.47558 7.81098 110 29 - + 11.97395 28.77600 40.95728 7.90394 110 29 - + 12.18970 30.08400 41.43899 7.99690 110 29 - + 12.39348 31.39200 41.92070 8.08986 110 30 - + 12.58550 32.70000 42.40241 8.18282 110 30 - + 12.58550 32.70000 41.83585 8.18282 110 30 - + 12.76601 34.00800 42.31112 8.27578 110 30 - + 12.93549 35.31600 42.78639 8.36874 110 30 - + 13.09444 36.62400 43.26166 8.46170 110 30 - + 13.24335 37.93200 43.73693 8.55466 110 30 - + 13.38274 39.24000 44.21220 8.64762 110 30 - + 21.32873 39.24000 91.40237 9.49093 110 23 - + 21.79909 40.22100 95.23558 9.88896 110 23 - + 22.25759 41.20200 99.06878 10.28699 110 22 - + 22.70488 42.18300 102.90198 10.68501 110 22 - + 23.14156 43.16400 106.73518 11.08304 110 22 - + 23.56826 44.14500 110.56839 11.48107 110 21 - + 23.56826 44.14500 101.29500 11.48107 110 23 - + 23.98558 45.12600 104.80671 11.87910 110 23 - + 24.39403 46.10700 108.31842 12.27712 110 23 - + 24.79409 47.08800 111.83013 12.67515 110 22 - + 25.18626 48.06900 115.34184 13.07318 110 22 - + 25.57103 49.05000 118.85355 13.47121 110 22 - + 25.57103 49.05000 109.34264 13.47121 110 23 - + 26.13536 50.52150 114.18869 14.06825 110 23 - + 26.68538 51.99300 119.03473 14.66529 110 22 - + 27.22219 53.46450 123.88078 15.26233 110 22 - + 27.74690 54.93600 128.72682 15.85937 110 22 - + 28.26062 56.40750 133.57287 16.45641 110 21 - + 28.26062 56.40750 123.89446 16.45641 110 23 - + 28.76432 57.87900 128.38937 17.05346 110 22 - + 29.25861 59.35050 132.88428 17.65050 110 22 - + 29.74400 60.82200 137.37919 18.24754 110 22 - + 30.22102 62.29350 141.87411 18.84458 110 21 - + 30.69019 63.76500 146.36902 19.44162 110 21 - + 30.69019 63.76500 138.20216 19.44162 110 22 - + 31.15193 65.23650 142.44627 20.03866 110 22 - + 31.60636 66.70800 146.69039 20.63570 110 22 - + 32.05358 68.17950 150.93450 21.23274 110 21 - + 32.49367 69.65100 155.17861 21.82979 110 21 - + 32.92672 71.12250 159.42272 22.42683 110 21 - + 32.92672 71.12250 152.35575 22.42683 110 22 - + 33.35275 72.59400 156.41173 23.02387 110 21 - + 33.77160 74.06550 160.46771 23.62091 110 21 - + 34.18315 75.53700 164.52368 24.21795 110 21 - + 34.58725 77.00850 168.57966 24.81499 110 21 - + 34.98375 78.48000 172.63564 25.41203 110 20 - + 34.98375 78.48000 166.40568 25.41203 110 21 - + 35.37248 79.95150 170.31528 26.00908 110 21 - + 35.75327 81.42300 174.22489 26.60612 110 21 - + 36.12599 82.89450 178.13450 27.20316 110 20 - + 36.49054 84.36600 182.04410 27.80020 110 20 - + 36.84679 85.83750 185.95371 28.39724 110 20 - + 36.84679 85.83750 180.38244 28.39724 110 20 - + 37.19463 87.30900 184.17492 28.99428 110 20 - + 37.53416 88.78050 187.96739 29.59132 110 20 - + 37.86558 90.25200 191.75986 30.18836 110 20 - + 38.18911 91.72350 195.55234 30.78541 110 20 - + 38.50496 93.19500 199.34481 31.38245 110 19 - + 38.50496 93.19500 194.30563 31.38245 110 20 - + 38.81340 94.66650 198.00223 31.97949 110 20 - + 39.11514 96.13800 201.69884 32.57653 110 19 - + 39.41108 97.60950 205.39544 33.17357 110 19 - + 39.70213 99.08100 209.09205 33.77061 110 19 - + 39.98918 100.55250 212.78865 34.36765 110 19 - + 39.98918 100.55250 208.18836 34.36765 110 19 - + 40.27325 102.02400 211.80505 34.96469 110 19 - + 40.55608 103.49550 215.42174 35.56174 110 19 - + 40.83967 104.96700 219.03843 36.15878 110 19 - + 41.12601 106.43850 222.65511 36.75582 110 18 - + 41.41710 107.91000 226.27180 37.35286 110 18 - + 44.41662 107.91000 484.03714 24.09540 110 9 - + 43.49614 109.38150 495.52355 24.66719 110 9 - + 42.62421 110.85300 507.00995 25.23899 110 8 - + 41.80680 112.32450 518.49635 25.81078 110 8 - + 41.04989 113.79600 529.98276 26.38257 110 8 - + 40.35947 115.26750 541.46916 26.95437 110 7 - + 40.35947 115.26750 502.94282 26.95437 110 8 - + 39.73853 116.73900 513.61195 27.52616 110 8 - + 39.18351 118.21050 524.28108 28.09796 110 7 - + 38.69054 119.68200 534.95021 28.66975 110 7 - + 38.25576 121.15350 545.61934 29.24154 110 7 - + 37.87529 122.62500 556.28847 29.81334 110 7 - + 37.87529 122.62500 542.36706 29.81334 110 7 - + 37.54379 124.09650 552.76919 30.38513 110 7 - + 37.25414 125.56800 563.17132 30.95693 110 7 - + 36.99987 127.03950 573.57345 31.52872 110 6 - + 36.77451 128.51100 583.97558 32.10051 110 6 - + 36.57157 129.98250 594.37771 32.67231 110 6 - + 36.57157 129.98250 586.93748 32.67231 110 6 - + 36.38422 131.45400 597.20940 33.24410 110 6 - + 36.20771 132.92550 607.48132 33.81589 110 6 - + 36.03869 134.39700 617.75323 34.38769 110 6 - + 35.87379 135.86850 628.02515 34.95948 110 6 - + 35.70966 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6720,10 +6806,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 15.345 'Clay' - -4.00 26.722 'Peat' - -6.00 252.938 'Clay' - -13.00 138.452 'Sand' + 0.00 12.972 'Clay' + -4.00 23.941 'Peat' + -6.00 230.384 'Clay' + -13.00 115.919 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6803,52 +6889,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -6895,7 +6981,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 168.00000 210000000.000 0 2 0 'Anchor' + -1.50000 141.67839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6922,22 +7008,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 71.84 : Percentage mobilized resistance left - 13.56 : Percentage mobilized resistance right - 634.47 : Effective left - 409.48 : Effective right + 43.01 : Percentage mobilized resistance left + 7.59 : Percentage mobilized resistance right + 545.44 : Effective left + 292.37 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 3019.75 : Max effective resistance right --10540.07 : Max moment left --28008.30 : Max moment right --7076.51 : Max mobilized moment left --3699.87 : Max mobilized moment right - 183.84 : Vertical force left - 97.32 : Vertical force right - 67.1 : Max mobilized moment percentage left - 13.2 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3850.19 : Max effective resistance right +-14781.58 : Max moment left +-35709.89 : Max moment right +-5450.60 : Max mobilized moment left +-2071.19 : Max mobilized moment right + 170.74 : Vertical force left + 75.29 : Vertical force right + 36.9 : Max mobilized moment percentage left + 5.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -6952,144 +7038,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.03242 0.17559 42.23997 - 0.04515 1.20023 32.41834 - 0.43272 4.32621 22.59678 - 1.42861 9.16407 12.77437 - 3.17592 13.88157 2.95018 - 5.51835 17.10448 -6.87670 - 5.56987 16.95231 -6.87670 - 8.17275 17.55270 -16.70802 - 10.80566 17.55270 -26.54639 - 13.43856 17.55270 -36.39409 - 16.07147 17.55270 -46.25340 - 18.70437 17.55270 -56.12658 - 18.70224 -150.45558 -56.12658 - 3.66392 -150.30922 -62.71645 - -11.35928 -150.15318 -69.30773 - -26.36640 -149.98757 -75.89465 - -41.35648 -149.81249 -82.47146 - -56.32858 -149.62806 -89.03241 - -56.32983 -149.61771 -89.03241 - -76.18272 -148.14774 -97.74561 - -95.82847 -146.51076 -106.40684 - -115.24488 -144.70790 -115.00284 - -134.40992 -142.74020 -123.52039 - -153.30165 -140.60861 -131.94625 - -153.30106 -140.60700 -131.94625 - -171.89673 -138.30085 -140.26729 - -190.17407 -135.83219 -148.47106 - -208.11146 -133.20176 -156.54532 - -225.68738 -130.41022 -164.47785 - -242.88038 -127.45820 -172.25642 - -242.88036 -127.46019 -172.25642 - -259.66857 -124.33630 -179.86898 - -276.02961 -121.05276 -187.30438 - -291.94223 -117.61007 -194.55179 - -307.38524 -114.00869 -201.60035 - -322.33751 -110.24901 -208.43922 - -322.33758 -110.25070 -208.43922 - -336.71484 -105.38530 -215.05774 - -350.43425 -100.38313 -221.44653 - -363.47762 -95.24468 -227.59672 - -375.82679 -89.97042 -233.49941 - -387.46371 -84.56077 -239.14572 - -387.46371 -84.56181 -239.14572 - -398.37201 -79.04019 -244.52711 - -408.53512 -73.38408 -249.63672 - -417.93513 -67.59381 -254.46815 - -426.55419 -61.66973 -259.01498 - -434.37446 -55.61215 -263.27083 - -434.37447 -55.61310 -263.27083 - -441.37923 -49.43618 -267.22968 - -447.55154 -43.12639 -270.88742 - -452.87371 -36.68397 -274.24042 - -457.32805 -30.10919 -277.28504 - -460.89695 -23.40228 -280.01768 - -460.89697 -23.40304 -280.01768 - -463.01784 -18.99995 -281.86058 - -464.69406 -14.50993 -283.52580 - -465.91693 -9.93307 -285.01290 - -466.67778 -5.26940 -286.32139 - -466.96792 -0.51900 -287.45081 - -466.96793 -0.51958 -287.45081 - -466.77791 4.33452 -288.40083 - -466.09813 9.27544 -289.17174 - -464.91992 14.30314 -289.76399 - -463.23461 19.41755 -290.17803 - -461.03353 24.61865 -290.41432 - -461.03353 24.61823 -290.41432 - -458.30846 29.88623 -290.47348 - -455.05568 35.17230 -290.35677 - -451.27340 40.47640 -290.06565 - -446.95980 45.79850 -289.60157 - -442.11310 51.13855 -288.96599 - -442.11305 51.13785 -288.96599 - -433.43588 59.16236 -287.62443 - -423.56206 66.36796 -285.87217 - -412.62028 72.75452 -283.71951 - -400.73926 78.32195 -281.17675 - -388.04772 83.07012 -278.25417 - -388.04774 83.06929 -278.25417 - -374.62641 87.62903 -274.96305 - -360.54443 91.47775 -271.31698 - -345.91351 94.61537 -267.32977 - -330.84542 97.04180 -263.01521 - -315.45192 98.75697 -258.38711 - -315.45192 98.75624 -258.38711 - -299.68559 101.81975 -253.45965 - -283.47857 104.36497 -248.24826 - -266.91232 106.39183 -242.76858 - -250.06830 107.90027 -237.03626 - -233.02797 108.89025 -231.06696 - -233.02796 108.88945 -231.06696 - -215.76270 110.77876 -224.87659 - -198.23425 112.23906 -218.48180 - -180.51004 113.27034 -211.89935 - -162.65748 113.87253 -205.14599 - -144.74400 114.04562 -198.23849 - -144.74400 114.04475 -198.23849 - -126.75524 114.83997 -191.19375 - -108.67130 115.25598 -184.02893 - -90.55179 115.29275 -176.76118 - -72.45630 114.95027 -169.40761 - -54.44443 114.22850 -161.98538 - -54.44445 114.22773 -161.98538 - -36.51069 113.96223 -154.51165 - -18.64594 113.34932 -147.00335 - -0.90482 112.38897 -139.47727 - 16.65810 111.08117 -131.95019 - 33.98821 109.42593 -124.43889 - 33.98817 109.42566 -124.43889 - 51.07262 107.95828 -116.96008 - 67.90079 106.16402 -109.52969 - 84.42133 104.04287 -102.16337 - 100.58286 101.59482 -94.87673 - 116.33401 98.81988 -87.68540 - 116.33675 98.80059 -87.68540 - 130.03544 83.69838 -80.92511 - 141.40121 67.69507 -74.27730 - 150.29890 50.79065 -67.74959 - 156.59335 32.98514 -61.34960 - 160.14939 14.27854 -55.08492 - 160.15453 14.25191 -55.08492 - 160.99663 -3.16114 -48.96142 - 159.16501 -21.39775 -42.97714 - 154.53613 -40.45793 -37.12804 - 146.98646 -60.34165 -31.41006 - 136.40740 -80.75006 -25.81914 - 136.41044 -82.59707 -25.81914 - 122.57979 -100.87689 -20.34814 - 106.42758 -113.55249 -14.98277 - 88.79170 -120.67509 -9.70822 - 70.49832 -122.33229 -4.50969 - 52.43857 -117.05838 0.62763 - 52.32679 -117.06695 0.62763 - 35.62875 -104.57621 5.72105 - 21.23711 -86.42187 10.78422 - 9.96878 -62.93568 15.82647 - 2.62214 -34.13471 20.85713 - -0.00626 -0.02621 25.88552 + -0.01244 0.06903 33.20519 + 0.07684 1.64753 29.47363 + 0.64368 6.46323 25.74217 + 2.12103 13.38334 22.00944 + 4.67472 20.62411 18.27407 + 8.29656 27.63074 14.53470 + 8.30802 27.69274 14.53470 + 12.87145 33.07087 10.78905 + 18.20468 37.95690 7.03232 + 24.23382 42.34892 3.25933 + 30.88643 46.28234 -0.53509 + 38.09916 49.82844 -4.35610 + 38.09931 -91.84827 -4.35610 + 28.98815 -90.41016 -6.92015 + 20.01020 -89.18446 -9.49532 + 11.14408 -88.17416 -12.07821 + 2.36810 -87.38177 -14.66541 + -6.33961 -86.80923 -17.25351 + -6.33577 -86.89029 -17.25351 + -17.91415 -86.78110 -20.69990 + -29.47411 -86.59798 -24.13407 + -41.00152 -86.29278 -27.54815 + -52.48009 -85.86550 -30.93430 + -63.89356 -85.31614 -34.28465 + -63.89354 -85.31717 -34.28465 + -75.17035 -83.81115 -37.59130 + -86.23683 -82.16240 -40.84666 + -97.07399 -80.37131 -44.04334 + -107.66287 -78.43822 -47.17396 + -117.98456 -76.36344 -50.23113 + -117.98453 -76.36544 -50.23113 + -128.00116 -73.85950 -53.20756 + -137.67386 -71.20653 -56.09666 + -146.98305 -68.40683 -58.89208 + -155.90918 -65.46073 -61.58747 + -164.43275 -62.36848 -64.17651 + -164.43282 -62.37016 -64.17651 + -172.46154 -58.03819 -66.65296 + -179.90371 -53.57209 -69.01174 + -186.74148 -48.97225 -71.24819 + -192.95705 -44.23907 -73.35764 + -198.53266 -39.37288 -75.33545 + -198.53266 -39.37392 -75.33545 + -203.45191 -34.39287 -77.17727 + -207.69821 -29.27954 -78.88028 + -211.25392 -24.03423 -80.44205 + -214.10148 -18.65720 -81.86016 + -216.22333 -13.14871 -83.13220 + -216.22334 -13.14966 -83.13220 + -217.60329 -7.52771 -84.25612 + -218.22491 -1.77483 -85.23156 + -218.07077 4.10875 -86.05863 + -217.12344 10.12284 -86.73745 + -215.36555 16.26724 -87.26813 + -215.36557 16.26648 -87.26813 + -213.54491 20.16028 -87.56931 + -211.33081 24.13527 -87.78854 + -208.71515 28.19140 -87.92682 + -205.68983 32.32864 -87.98517 + -202.24672 36.54694 -87.96459 + -202.24673 36.54636 -87.96459 + -198.37635 40.87468 -87.86620 + -194.06908 45.28430 -87.69168 + -189.31678 49.77519 -87.44286 + -184.11134 54.34731 -87.12156 + -178.44461 59.00064 -86.72961 + -178.44456 58.99980 -86.72961 + -169.12409 64.86376 -86.01374 + -159.10826 68.27121 -85.15198 + -148.76555 69.22204 -84.15306 + -138.46448 67.71617 -83.02574 + -128.57354 63.75351 -81.77876 + -128.57356 63.75260 -81.77876 + -118.87158 65.44186 -80.42074 + -108.99062 66.13889 -78.96016 + -99.07952 65.84362 -77.40548 + -89.28715 64.55598 -75.76520 + -79.76235 62.27590 -74.04780 + -79.76236 62.27523 -74.04780 + -70.42300 62.13302 -72.26169 + -61.15740 61.29192 -70.41483 + -52.07037 59.75188 -68.51502 + -43.26678 57.51286 -66.57005 + -34.85147 54.57480 -64.58771 + -34.85147 54.57416 -64.58771 + -26.78098 52.93681 -62.57564 + -18.99907 50.72662 -60.54050 + -11.59164 47.94355 -58.48866 + -4.64465 44.58756 -56.42645 + 1.75598 40.65863 -54.36024 + 1.76226 40.62442 -54.36024 + 7.63574 37.60482 -52.29606 + 13.01858 34.08264 -50.23853 + 17.85276 30.40508 -48.19180 + 22.15476 27.02055 -46.16007 + 25.97854 24.02823 -44.14751 + 25.97213 23.99596 -44.14751 + 29.37495 21.43933 -42.15781 + 32.42309 19.26588 -40.19348 + 35.17360 17.47004 -38.25690 + 37.68267 16.04570 -36.35049 + 40.00555 14.98627 -34.47665 + 40.00550 14.98895 -34.47665 + 42.20023 14.33323 -32.63749 + 44.32301 14.02832 -30.83474 + 46.42588 14.06637 -29.07025 + 48.55966 14.43915 -27.34585 + 50.77393 15.13804 -25.66339 + 50.77386 15.14178 -25.66339 + 53.12071 16.20169 -24.02462 + 55.64978 17.56972 -22.43168 + 58.40654 19.23599 -20.88697 + 61.43497 21.19012 -19.39289 + 64.77742 23.42122 -17.95184 + 64.77899 23.41555 -17.95184 + 67.41440 11.96271 -16.56730 + 68.43810 1.91588 -15.24098 + 68.05642 -6.78595 -13.97266 + 66.46653 -14.20354 -12.76211 + 63.85654 -20.39745 -11.60910 + 63.85550 -20.37680 -11.60910 + 60.39192 -25.61560 -10.51216 + 56.22605 -29.74980 -9.46735 + 51.51958 -32.83202 -8.47066 + 46.42662 -34.91072 -7.51813 + 41.09433 -36.03014 -6.60575 + 41.09489 -36.01247 -6.60575 + 35.61779 -36.86677 -5.72904 + 30.07870 -36.84424 -4.88301 + 24.60687 -35.97465 -4.06303 + 19.32741 -34.28289 -3.26442 + 14.36211 -31.78895 -2.48253 + 14.36980 -31.89862 -2.48253 + 9.82323 -28.52678 -1.71247 + 5.88099 -23.77044 -0.95074 + 2.77157 -17.42473 -0.19479 + 0.73257 -9.49906 0.55797 + 0.00064 0.00252 1.31008 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7125,10 +7211,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7165,29 +7251,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 53.13200 0.00000 38.13147 0.00000 - -1.50000 53.43500 0.00000 153.26606 0.00000 - -2.00000 56.65900 45.89800 239.51060 1.18304 - -2.66667 58.46300 44.06500 361.48824 11.88154 - -3.33333 59.36100 42.95400 489.12749 24.13096 - -4.00000 59.90600 42.22100 622.89025 37.82198 - -4.66667 70.57400 41.59300 719.91616 59.26559 - -5.33333 69.67000 41.00400 789.46016 81.00492 - -6.00000 68.84900 40.37000 858.77104 103.04236 - -6.50000 68.24100 40.07300 932.16140 114.88806 - -7.00000 67.81200 39.82900 1010.43175 127.50144 - -7.50000 67.42500 39.71000 1092.01804 140.86292 - -8.28571 66.80100 39.65700 1227.02750 163.36071 - -9.07143 66.12200 39.62500 1374.00539 187.70700 - -9.85714 65.85500 39.60600 1529.91503 213.90131 - -10.64286 65.97500 39.59900 1693.80903 241.94340 - -11.42857 65.65400 39.60000 1863.22277 271.83319 - -12.21429 65.37100 39.30700 2041.28525 303.54588 - -13.00000 65.12200 37.56800 2228.03902 335.90755 - -13.75000 67.03300 36.02700 2686.49316 363.21037 - -14.50000 68.38400 34.59200 3206.69893 390.57567 - -15.25000 69.17300 33.25400 3747.39457 414.73221 - -16.00000 69.70300 32.00500 4313.14360 439.37742 + -0.75000 53.13200 0.00000 58.74308 0.00000 + -1.50000 59.48000 0.00000 213.92070 0.00000 + -2.00000 61.25600 0.00000 325.00869 0.00000 + -2.66667 62.34900 0.00000 483.26370 0.00000 + -3.33333 62.92000 39.81500 649.08942 6.25380 + -4.00000 63.27500 39.16500 822.80070 15.35186 + -4.66667 71.14200 38.61900 910.56207 32.94817 + -5.33333 70.32400 38.13900 990.49637 50.79495 + -6.00000 69.57600 37.55400 1070.09728 68.84072 + -6.50000 69.04000 37.27700 1163.71315 76.96688 + -7.00000 68.70400 37.05100 1265.18769 85.74594 + -7.75000 68.26900 36.90700 1425.43283 100.13097 + -8.50000 67.37800 36.88700 1599.72367 115.95228 + -9.25000 67.23300 36.88000 1787.54639 133.20250 + -10.00000 67.11000 36.88300 1985.58688 151.88154 + -10.75000 67.38200 36.89300 2187.63614 171.98942 + -11.50000 67.16300 36.90900 2397.80662 193.52625 + -12.25000 66.97100 36.92900 2618.02203 216.49217 + -13.00000 66.80300 36.95200 2848.31744 240.88737 + -13.75000 68.45900 36.02700 3433.01501 264.12135 + -14.50000 69.62200 34.59200 4093.16237 287.35594 + -15.25000 70.31500 33.25400 4780.03317 307.24212 + -16.00000 70.78600 32.00500 5498.95199 327.51200 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -7204,29 +7290,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.91707 50.84197 0.00000 2.49156 0.00000 8.59243 - -1.12500 20.20692 153.51278 0.00000 1.53894 0.00000 7.59704 - -1.75000 32.16051 172.48908 2.36608 1.17241 0.07357 5.36338 - -2.33333 39.67219 182.96645 16.04774 1.02016 0.40451 4.61196 - -3.00000 45.10271 191.45888 18.37413 0.92129 0.40738 4.24495 - -3.66667 50.08346 200.64414 20.53653 0.85201 0.41005 4.00620 - -4.33333 53.09954 145.53887 32.16541 0.76517 0.60576 2.74087 - -5.00000 54.24199 104.31599 32.60900 0.73120 0.60118 1.92316 - -5.66667 55.23467 103.96632 33.05617 0.70356 0.59847 1.88227 - -6.25000 57.26078 146.78073 23.69140 0.72322 0.41375 2.56337 - -6.75000 60.37230 156.54070 25.22674 0.70911 0.41785 2.59292 - -7.25000 63.44388 163.17258 26.72296 0.69802 0.42121 2.57192 - -7.89286 67.34610 171.83022 28.63356 0.68723 0.42517 2.55145 - -8.67857 72.06047 187.06277 30.98619 0.67804 0.43000 2.59591 - -9.46429 76.73092 198.43045 33.33821 0.67207 0.43448 2.58606 - -10.25000 81.37112 208.59236 35.68994 0.66839 0.43861 2.56347 - -11.03571 85.99146 215.61748 38.04155 0.66635 0.44239 2.50743 - -11.82143 90.59987 226.62497 40.36160 0.66548 0.44549 2.50138 - -12.60714 95.20234 237.68662 41.18759 0.66542 0.43263 2.49665 - -13.37500 100.82375 611.27218 36.40376 0.47789 0.36106 6.06278 - -14.12500 107.46720 693.60770 36.48706 0.47790 0.33952 6.45413 - -14.87500 114.11437 720.92752 32.20872 0.47821 0.28225 6.31759 - -15.62500 120.76679 754.33203 32.86028 0.47872 0.27210 6.24619 + -0.37500 5.91707 78.32410 0.00000 2.43014 0.00000 13.23698 + -1.12500 20.20692 206.90350 0.00000 1.48498 0.00000 10.23924 + -1.75000 32.16051 222.17598 0.00000 1.11967 0.00000 6.90835 + -2.33333 39.67219 237.38251 0.00000 0.96794 0.00000 5.98360 + -3.00000 45.10271 248.73857 9.38070 0.86945 0.20799 5.51494 + -3.66667 50.08346 260.56693 13.64709 0.80000 0.27249 5.20265 + -4.33333 53.09954 131.64206 26.39447 0.70709 0.49708 2.47916 + -5.00000 54.24199 119.90145 26.77017 0.67329 0.49353 2.21049 + -5.66667 55.23467 119.40135 27.06865 0.64566 0.49007 2.16171 + -6.25000 57.26078 187.23175 16.25232 0.67097 0.28383 3.26981 + -6.75000 60.37230 202.94909 17.55810 0.65624 0.29083 3.36163 + -7.37500 64.20643 213.66018 19.18004 0.64204 0.29872 3.32771 + -8.12500 68.74452 232.38779 21.09509 0.62968 0.30686 3.38046 + -8.87500 73.23160 250.43030 23.00030 0.62110 0.31408 3.41970 + -9.62500 77.68213 264.05399 24.90538 0.61526 0.32061 3.39916 + -10.37500 82.10727 269.39901 26.81051 0.61144 0.32653 3.28106 + -11.12500 86.51562 280.22731 28.71577 0.60908 0.33191 3.23904 + -11.87500 90.91381 293.62054 30.62124 0.60779 0.33682 3.22966 + -12.62500 95.30691 307.06055 32.52693 0.60729 0.34129 3.22181 + -13.37500 100.82375 779.59676 30.97864 0.40053 0.30726 7.73227 + -14.12500 107.46720 880.19648 30.97945 0.39986 0.28827 8.19037 + -14.87500 114.11437 915.82773 26.51491 0.39957 0.23235 8.02552 + -15.62500 120.76679 958.55844 27.02650 0.39955 0.22379 7.93727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7244,143 +7330,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.51697 0.00000 19.51697 5.65938 202 100 P - 40.02548 0.00000 40.02548 11.60628 202 100 P - 52.12426 0.00000 62.05941 17.99550 110 84 - - 37.73278 0.00000 85.58758 24.81802 110 44 - - 23.65602 0.00000 110.21970 31.96064 110 0 - - 11.43613 0.00000 97.45134 19.74075 110 0 - - 0.00000 0.00000 119.77683 24.26324 1 0 A - 0.00000 0.00000 142.28023 28.82176 1 0 A - 0.00000 0.00000 164.70023 33.36339 1 0 A - 0.00000 0.00000 186.87625 37.85560 1 0 A - 0.00000 0.00000 208.72337 42.28118 1 0 A - 2.02132 0.00000 147.35515 32.21115 1 0 A - 2.16041 0.00000 157.49553 34.42779 1 0 A - 2.29792 0.00000 167.51997 36.61908 1 0 A - 2.43386 0.00000 177.42992 38.78535 1 0 A - 2.56827 0.00000 187.22874 40.92733 1 0 A - 2.70122 0.00000 196.92097 43.04601 1 0 A - 14.85186 0.00000 169.33180 37.45605 1 0 A - 15.33954 1.30800 174.89194 38.68595 1 0 A - 15.81461 2.61600 180.30847 39.88408 1 0 A - 16.27809 3.92400 185.59276 41.05296 1 0 A - 16.73093 5.23200 190.75574 42.19501 1 0 A - 17.17402 6.54000 195.80767 43.31249 1 0 A - 17.29612 6.54000 180.22598 39.11476 1 0 A - 17.73340 7.84800 184.78240 40.10364 1 0 A - 18.16246 9.15600 189.25326 41.07396 1 0 A - 18.58401 10.46400 193.64576 42.02728 1 0 A - 18.99865 11.77200 197.96640 42.96499 1 0 A - 19.40697 13.08000 202.22101 43.88838 1 0 A - 19.53377 13.08000 190.84708 40.58787 1 0 A - 19.93888 14.38800 194.80505 41.42962 1 0 A - 20.33858 15.69600 198.71015 42.26013 1 0 A - 20.73328 17.00400 202.56638 43.08024 1 0 A - 21.12334 18.31200 206.37738 43.89074 1 0 A - 21.50912 19.62000 210.14642 44.69231 1 0 A - 31.77520 19.62000 143.77324 40.13708 1 0 A - 31.93536 20.92800 144.49792 40.33939 1 0 A - 32.09002 22.23600 145.19775 40.53476 1 0 A - 32.23957 23.54400 145.87439 40.72365 1 0 A - 32.38432 24.85200 146.52937 40.90650 1 0 A - 32.52460 26.16000 147.16407 41.08369 1 0 A - 32.27865 26.16000 103.25921 39.25994 1 0 A - 32.41369 27.46800 103.69121 39.42420 1 0 A - 32.54482 28.77600 104.11070 39.58369 1 0 A - 32.67228 30.08400 104.51842 39.73871 1 0 A - 32.79627 31.39200 104.91508 39.88952 1 0 A - 32.91701 32.70000 105.30131 40.03637 1 0 A - 32.76870 32.70000 103.06220 38.52321 1 0 A - 32.88583 34.00800 103.43059 38.66091 1 0 A - 33.00007 35.31600 103.78991 38.79521 1 0 A - 33.11159 36.62400 104.14065 38.92632 1 0 A - 33.22054 37.93200 104.48330 39.05439 1 0 A - 33.32705 39.24000 104.81828 39.17961 1 0 A - 23.04038 39.24000 142.74730 40.27400 1 0 A - 23.30143 40.22100 144.36464 40.73031 1 0 A - 23.56162 41.20200 145.97665 41.18512 1 0 A - 23.82098 42.18300 147.58355 41.63848 1 0 A - 24.07956 43.16400 149.18555 42.09046 1 0 A - 24.33737 44.14500 150.78284 42.54111 1 0 A - 24.57897 44.14500 152.52104 41.71129 1 0 A - 24.83861 45.12600 154.13217 42.15190 1 0 A - 25.09754 46.10700 155.73892 42.59132 1 0 A - 25.35579 47.08800 157.34146 43.02958 1 0 A - 25.61339 48.06900 158.93995 43.46673 1 0 A - 25.87036 49.05000 160.53455 43.90282 1 0 A - 26.07797 49.05000 159.23421 43.21613 1 0 A - 26.33640 50.03100 160.81220 43.64440 1 0 A - 26.59425 51.01200 162.38664 44.07170 1 0 A - 26.85154 51.99300 163.95768 44.49808 1 0 A - 27.10829 52.97400 165.52544 44.92357 1 0 A - 27.36453 53.95500 167.09007 45.34821 1 0 A - 27.62206 53.95500 165.76021 44.64705 1 0 A - 28.02751 55.49657 168.19334 45.30241 1 0 A - 28.43181 57.03814 170.61956 45.95591 1 0 A - 28.83504 58.57971 173.03931 46.60766 1 0 A - 29.23725 60.12129 175.45300 47.25778 1 0 A - 29.63852 61.66286 177.86102 47.90637 1 0 A - 29.97539 61.66286 180.96059 47.26616 1 0 A - 30.38032 63.20443 183.40519 47.90468 1 0 A - 30.78443 64.74600 185.84476 48.54188 1 0 A - 31.18776 66.28757 188.27965 49.17787 1 0 A - 31.59036 67.82914 190.71017 49.81271 1 0 A - 31.99230 69.37071 193.13664 50.44649 1 0 A - 32.32557 69.37071 192.40318 50.00211 1 0 A - 32.73106 70.91229 194.81667 50.62933 1 0 A - 33.13597 72.45386 197.22668 51.25565 1 0 A - 33.54033 73.99543 199.63345 51.88112 1 0 A - 33.94419 75.53700 202.03724 52.50583 1 0 A - 34.34759 77.07857 204.43828 53.12981 1 0 A - 34.67367 77.07857 202.65273 52.83903 1 0 A - 35.08047 78.62014 205.03029 53.45895 1 0 A - 35.48687 80.16171 207.40554 54.07826 1 0 A - 35.89292 81.70329 209.77869 54.69703 1 0 A - 36.29863 83.24486 212.14991 55.31530 1 0 A - 36.70404 84.78643 214.51938 55.93310 1 0 A - 37.02041 84.78643 209.82974 55.76242 1 0 A - 37.42905 86.32800 212.14586 56.37793 1 0 A - 37.83744 87.86957 214.46059 56.99307 1 0 A - 38.24561 89.41114 216.77407 57.60788 1 0 A - 38.65358 90.95271 219.08643 58.22239 1 0 A - 39.06138 92.49429 221.39781 58.83664 1 0 A - 39.33557 92.49429 220.86397 58.75943 1 0 A - 39.74608 94.03586 223.16891 59.37264 1 0 A - 40.15646 95.57743 225.47312 59.98566 1 0 A - 40.56672 97.11900 227.77668 60.59851 1 0 A - 40.97689 98.66057 230.07972 61.21122 1 0 A - 41.38697 100.20214 232.38232 61.82381 1 0 A - 40.19219 100.20214 231.94234 61.81893 1 0 A - 40.59038 101.74371 234.24023 62.43138 1 0 A - 40.98853 103.28529 236.53787 63.04376 1 0 A - 41.38665 104.82686 238.83533 63.65610 1 0 A - 41.78474 106.36843 241.13270 64.26841 1 0 A - 42.18284 107.91000 243.43003 64.88071 1 0 A - 35.20468 107.91000 591.13792 46.59562 1 0 A - 35.68430 109.38150 599.19144 47.23043 1 0 A - 36.16393 110.85300 607.24519 47.86526 1 0 A - 36.64359 112.32450 615.29928 48.50011 1 0 A - 37.12327 113.79600 623.35383 49.13500 1 0 A - 37.60299 115.26750 631.40896 49.76993 1 0 A - 35.35915 115.26750 672.16658 49.77093 1 0 A - 35.81028 116.73900 680.74239 50.40593 1 0 A - 36.26145 118.21050 689.31904 51.04099 1 0 A - 36.71267 119.68200 697.89660 51.67612 1 0 A - 37.16395 121.15350 706.47519 52.31133 1 0 A - 37.61528 122.62500 715.05488 52.94662 1 0 A - 31.27048 122.62500 699.92686 52.98106 1 0 A - 31.64574 124.09650 708.32619 53.61685 1 0 A - 32.02105 125.56800 716.72676 54.25273 1 0 A - 32.39642 127.03950 725.12862 54.88872 1 0 A - 32.77185 128.51100 733.53186 55.52480 1 0 A - 62.43728 129.98250 741.93651 56.16099 110 8 - - 62.49733 129.98250 733.55135 56.22103 110 9 - - 114.06847 131.45400 741.86248 56.85802 110 15 - - 165.33730 132.92550 750.17513 57.49512 110 22 - - 216.39706 134.39700 758.48933 58.13234 110 29 - - 267.34100 135.86850 766.80514 58.76968 110 35 - - 318.26237 137.34000 775.12259 59.40715 110 41 - + 30.06668 0.00000 30.06668 5.51986 202 100 P + 61.66087 0.00000 61.66087 11.32016 202 100 P + 70.15077 0.00000 95.60503 17.55188 110 73 - + 67.76874 0.00000 131.85112 24.20620 110 51 - + 65.69092 0.00000 169.79789 31.17275 110 39 - + 53.56679 0.00000 131.34426 19.04861 110 41 - + 48.87379 0.00000 161.43441 23.41253 110 30 - + 44.19339 0.00000 191.76434 27.81123 110 23 - + 39.46417 0.00000 221.98186 32.19362 110 18 - + 35.45814 0.00000 251.87056 36.52832 110 0 - + 32.08653 0.00000 281.31596 40.79873 110 0 - + 22.05004 0.00000 189.80201 30.76224 110 0 - + 19.03887 0.00000 202.86341 32.87917 110 0 - + 15.98125 0.00000 215.77548 34.97190 110 0 - + 12.88430 0.00000 228.54007 37.04073 110 0 - + 9.75553 0.00000 241.16152 39.08635 110 0 - + 6.60271 0.00000 253.64568 41.10973 110 0 - + 1.03176 0.00000 219.69278 35.53878 110 0 - + 0.00000 1.30800 226.90657 36.70572 1 0 A + 0.00000 2.61600 233.93403 37.84253 1 0 A + 0.00000 3.92400 240.78991 38.95157 1 0 A + 0.00000 5.23200 247.48841 40.03516 1 0 A + 0.00000 6.54000 254.04284 41.09544 1 0 A + 8.83034 6.54000 234.14507 36.91366 1 0 A + 9.05358 7.84800 240.06465 37.84690 1 0 A + 9.27263 9.15600 245.87308 38.76262 1 0 A + 9.48785 10.46400 251.57971 39.66229 1 0 A + 9.69954 11.77200 257.19297 40.54723 1 0 A + 9.90800 13.08000 262.72046 41.41866 1 0 A + 12.98073 13.08000 247.84396 38.11016 1 0 A + 13.24994 14.38800 252.98399 38.90052 1 0 A + 13.51555 15.69600 258.05535 39.68033 1 0 A + 13.77784 17.00400 263.06326 40.45038 1 0 A + 14.03705 18.31200 268.01242 41.21139 1 0 A + 14.29340 19.62000 272.90708 41.96403 1 0 A + 26.07426 19.62000 130.04502 37.09040 1 0 A + 26.20568 20.92800 130.70050 37.27735 1 0 A + 26.33260 22.23600 131.33351 37.45789 1 0 A + 26.45531 23.54400 131.94554 37.63245 1 0 A + 26.57410 24.85200 132.53798 37.80142 1 0 A + 26.68921 26.16000 133.11207 37.96516 1 0 A + 26.49897 26.16000 118.68678 36.15047 1 0 A + 26.60984 27.46800 119.18333 36.30172 1 0 A + 26.71749 28.77600 119.66549 36.44858 1 0 A + 26.82212 30.08400 120.13413 36.59132 1 0 A + 26.92391 31.39200 120.59005 36.73019 1 0 A + 27.02303 32.70000 121.03398 36.86540 1 0 A + 26.83326 32.70000 118.36300 35.35253 1 0 A + 26.92917 34.00800 118.78609 35.47890 1 0 A + 27.02272 35.31600 119.19875 35.60215 1 0 A + 27.11404 36.62400 119.60157 35.72247 1 0 A + 27.20325 37.93200 119.99508 35.84000 1 0 A + 27.29047 39.24000 120.37980 35.95491 1 0 A + 15.80572 39.24000 182.08676 37.36424 1 0 A + 15.98480 40.22100 184.14981 37.78758 1 0 A + 16.16329 41.20200 186.20607 38.20952 1 0 A + 16.34121 42.18300 188.25582 38.63013 1 0 A + 16.51860 43.16400 190.29931 39.04945 1 0 A + 16.69546 44.14500 192.33680 39.46755 1 0 A + 17.10724 44.14500 197.73775 38.60130 1 0 A + 17.28795 45.12600 199.82652 39.00906 1 0 A + 17.46817 46.10700 201.90961 39.41571 1 0 A + 17.64792 47.08800 203.98724 39.82129 1 0 A + 17.82721 48.06900 206.05962 40.22585 1 0 A + 18.00607 49.05000 208.12697 40.62943 1 0 A + 18.49481 49.05000 206.02693 39.75007 1 0 A + 18.76958 50.52150 209.08775 40.34061 1 0 A + 19.04344 51.99300 212.13844 40.92920 1 0 A + 19.31644 53.46450 215.17961 41.51595 1 0 A + 19.58864 54.93600 218.21182 42.10097 1 0 A + 19.86008 56.40750 221.23562 42.68438 1 0 A + 20.40109 56.40750 224.74252 41.86288 1 0 A + 20.67919 57.87900 227.80622 42.43356 1 0 A + 20.95662 59.35050 230.86239 43.00283 1 0 A + 21.23340 60.82200 233.91148 43.57079 1 0 A + 21.50958 62.29350 236.95393 44.13751 1 0 A + 21.78520 63.76500 239.99018 44.70307 1 0 A + 22.29735 63.76500 242.77646 44.09377 1 0 A + 22.57890 65.23650 245.84208 44.65056 1 0 A + 22.85995 66.70800 248.90219 45.20634 1 0 A + 23.14053 68.17950 251.95717 45.76120 1 0 A + 23.42067 69.65100 255.00735 46.31518 1 0 A + 23.70040 71.12250 258.05306 46.86835 1 0 A + 24.19317 71.12250 256.50288 46.42816 1 0 A + 24.47832 72.59400 259.52617 46.97538 1 0 A + 24.76311 74.06550 262.54561 47.52192 1 0 A + 25.04757 75.53700 265.56150 48.06781 1 0 A + 25.33171 77.00850 268.57409 48.61310 1 0 A + 25.61557 78.48000 271.58364 49.15784 1 0 A + 26.08888 78.48000 262.14792 48.85224 1 0 A + 26.37771 79.95150 265.05020 49.39309 1 0 A + 26.66630 81.42300 267.94999 49.93348 1 0 A + 26.95466 82.89450 270.84749 50.47344 1 0 A + 27.24281 84.36600 273.74292 51.01301 1 0 A + 27.53077 85.83750 276.63644 51.55223 1 0 A + 27.98472 85.83750 273.09323 51.35352 1 0 A + 28.27725 87.30900 275.94799 51.89034 1 0 A + 28.56963 88.78050 278.80122 52.42687 1 0 A + 28.86187 90.25200 281.65307 52.96315 1 0 A + 29.15399 91.72350 284.50370 53.49919 1 0 A + 29.44599 93.19500 287.35324 54.03503 1 0 A + 29.88085 93.19500 286.52119 53.92091 1 0 A + 30.17707 94.66650 289.36153 54.45544 1 0 A + 30.47320 96.13800 292.20105 54.98982 1 0 A + 30.76925 97.60950 295.03987 55.52406 1 0 A + 31.06525 99.08100 297.87809 56.05819 1 0 A + 31.36119 100.55250 300.71584 56.59223 1 0 A + 31.77741 100.55250 299.98489 56.54478 1 0 A + 32.07724 102.02400 302.81536 57.07830 1 0 A + 32.37704 103.49550 305.64554 57.61177 1 0 A + 32.67682 104.96700 308.47553 58.14520 1 0 A + 32.97659 106.43850 311.30540 58.67861 1 0 A + 33.27636 107.91000 314.13525 59.21202 1 0 A + 29.95826 107.91000 753.91816 39.05311 1 0 A + 30.36640 109.38150 764.18937 39.58516 1 0 A + 30.77456 110.85300 774.46086 40.11722 1 0 A + 31.18273 112.32450 784.73278 40.64931 1 0 A + 31.59093 113.79600 795.00530 41.18143 1 0 A + 31.99915 115.26750 805.27855 41.71359 1 0 A + 30.02180 115.26750 852.98745 41.64349 1 0 A + 30.40483 116.73900 863.87026 42.17480 1 0 A + 30.78790 118.21050 874.75412 42.70615 1 0 A + 31.17101 119.68200 885.63916 43.23757 1 0 A + 31.55416 121.15350 896.52549 43.76905 1 0 A + 31.93737 122.62500 907.41321 44.30060 1 0 A + 25.74253 122.62500 889.14960 44.26850 1 0 A + 26.05145 124.09650 899.81967 44.79974 1 0 A + 26.36041 125.56800 910.49130 45.33105 1 0 A + 26.66942 127.03950 921.16458 45.86245 1 0 A + 26.97848 128.51100 931.83960 46.39393 1 0 A + 27.28760 129.98250 942.51642 46.92550 1 0 A + 26.28197 129.98250 932.15163 46.92318 1 0 A + 30.33011 131.45400 942.71290 47.45481 110 0 - + 38.47912 132.92550 953.27610 47.98655 110 0 - + 46.57053 134.39700 963.84128 48.51839 110 0 - + 54.62998 135.86850 974.40849 49.05032 110 6 - + 62.68313 137.34000 984.97779 49.58237 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7393,10 +7479,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 62.846 'Clay' - -4.00 65.212 'Peat' - -6.00 232.861 'Clay' - -13.00 224.050 'Sand' + 0.00 93.610 'Clay' + -4.00 53.482 'Peat' + -6.00 172.044 'Clay' + -13.00 98.529 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7411,7 +7497,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -7433,10 +7519,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7463,7 +7549,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -7472,24 +7558,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -7500,17 +7587,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7593,78 +7681,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 117.94548 58.86000 117.94548 24.09121 202 100 P - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 262.91521 69.16050 262.91521 21.84725 202 100 P - 271.20981 70.63200 271.20981 22.53650 202 100 P - 279.50442 72.10350 279.50442 23.22575 202 100 P - 282.10636 73.57500 287.79902 23.91500 110 98 - - 281.11759 73.57500 281.11759 23.91500 202 100 P - 228.08563 75.04650 289.21963 24.60425 110 79 - - 175.12117 76.51800 297.32167 25.29350 110 59 - - 123.06494 77.98950 305.42371 25.98275 110 40 - - 71.76888 79.46100 313.52575 26.67200 110 23 - - 21.08496 80.93250 321.62779 27.36125 110 0 - - 21.08496 80.93250 318.36273 27.36125 110 0 - - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00003 0.00000 0.00003 0.00000 202 100 P + 23.66976 1.47150 23.66976 0.59704 202 100 P + 47.33953 2.94300 47.33953 1.19408 202 100 P + 71.00929 4.41450 71.00929 1.79112 202 100 P + 94.67906 5.88600 94.67906 2.38817 202 100 P + 118.34882 7.35750 118.34882 2.98521 202 100 P + 48.63809 7.35750 48.63809 2.98521 202 100 P + 58.36571 8.82900 58.36571 3.58225 202 100 P + 68.09332 10.30050 68.09332 4.17929 202 100 P + 77.82094 11.77200 77.82094 4.77633 202 100 P + 87.54856 13.24350 87.54856 5.37337 202 100 P + 97.27618 14.71500 97.27618 5.97041 202 100 P + 69.37382 14.71500 69.37382 5.97041 202 100 P + 76.31120 16.18650 76.31120 6.56745 202 100 P + 83.24858 17.65800 83.24858 7.16450 202 100 P + 90.18597 19.12950 90.18597 7.76154 202 100 P + 97.12335 20.60100 97.12335 8.35858 202 100 P + 104.06073 22.07250 104.06073 8.95562 202 100 P + 86.10925 22.07250 86.10925 8.95562 202 100 P + 91.84986 23.54400 91.84986 9.55266 202 100 P + 97.59048 25.01550 97.59048 10.14970 202 100 P + 103.33110 26.48700 103.33110 10.74674 202 100 P + 109.07171 27.95850 109.07171 11.34379 202 100 P + 114.81233 29.43000 114.81233 11.94083 202 100 P + 101.50379 29.43000 101.50379 11.94083 202 100 P + 106.57898 30.90150 106.57898 12.53787 202 100 P + 111.65417 32.37300 111.65417 13.13491 202 100 P + 110.11555 33.84450 116.72936 13.73195 110 94 - + 106.64913 35.31600 121.80455 14.32899 110 88 - + 103.22106 36.78750 126.87974 14.92603 110 81 - + 103.22106 36.78750 116.28466 14.92603 110 89 - + 99.83870 38.25900 120.93605 15.52307 110 83 - + 96.50707 39.73050 125.58743 16.12012 110 77 - + 93.23096 41.20200 130.23882 16.71716 110 72 - + 90.01518 42.67350 134.89020 17.31420 110 67 - + 86.86454 44.14500 139.54159 17.91124 110 62 - + 86.86454 44.14500 130.73258 17.91124 110 66 - + 83.78326 45.61650 135.09033 18.50828 110 62 - + 80.77480 47.08800 139.44808 19.10532 110 58 - + 77.84285 48.55950 143.80584 19.70236 110 54 - + 74.99110 50.03100 148.16359 20.29941 110 51 - + 72.22322 51.50250 152.52134 20.89645 110 47 - + 72.22322 51.50250 144.97918 20.89645 110 50 - + 69.54273 52.97400 149.12144 21.49349 110 47 - + 66.95389 54.44550 153.26370 22.09053 110 44 - + 64.46151 55.91700 157.40596 22.68757 110 41 - + 62.07039 57.38850 161.54823 23.28461 110 38 - + 59.78533 58.86000 165.69049 23.88165 110 36 - + 194.92385 58.86000 306.18963 15.40546 110 64 - + 181.65023 60.33150 317.55426 15.97725 110 57 - + 168.95887 61.80300 328.91889 16.54905 110 51 - + 156.84749 63.27450 340.28352 17.12084 110 46 - + 145.31377 64.74600 351.64815 17.69263 110 41 - + 134.35543 66.21750 363.01278 18.26443 110 37 - + 134.35543 66.21750 336.73401 18.26443 110 40 - + 123.95787 67.68900 347.27595 18.83622 110 36 - + 114.08150 69.16050 357.81789 19.40802 110 32 - + 104.68645 70.63200 368.35983 19.97981 110 28 - + 95.73289 72.10350 378.90176 20.55160 110 25 - + 87.18094 73.57500 389.44370 21.12340 110 22 - + 87.18094 73.57500 380.66080 21.12340 110 23 - + 78.98554 75.04650 390.96499 21.69519 110 20 - + 71.09713 76.51800 401.26918 22.26699 110 18 - + 63.46909 77.98950 411.57337 22.83878 110 15 - + 56.05482 79.46100 421.87756 23.41057 110 13 - + 48.80770 80.93250 432.18175 23.98237 110 11 - + 48.80770 80.93250 427.69172 23.98237 110 11 - + 41.67886 82.40400 437.88886 24.55416 110 10 - + 34.63338 83.87550 448.08600 25.12596 110 8 - + 27.64561 85.34700 458.28314 25.69775 110 6 - + 20.68989 86.81850 468.48028 26.26954 110 0 - + 13.74058 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7679,8 +7767,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.694 'Clay' - -13.00 509.692 'Sand' + -6.00 500.177 'Clay' + -13.00 279.024 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7760,52 +7848,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -7837,7 +7925,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=5 +IterationCount=2 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -7852,7 +7940,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 143.74462 210000000.000 1 2 0 'Anchor' + -1.50000 142.65945 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7862,22 +7950,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 63.64 : Percentage mobilized resistance left - 11.76 : Percentage mobilized resistance right - 562.08 : Effective left - 312.61 : Effective right + 46.09 : Percentage mobilized resistance left + 9.78 : Percentage mobilized resistance right + 584.53 : Effective left + 332.86 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 2657.66 : Max effective resistance right --10540.07 : Max moment left --25718.27 : Max moment right --6131.39 : Max mobilized moment left --2757.57 : Max mobilized moment right - 157.52 : Vertical force left - 74.19 : Vertical force right - 58.2 : Max mobilized moment percentage left - 10.7 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3402.22 : Max effective resistance right +-14781.58 : Max moment left +-32715.60 : Max moment right +-6258.91 : Max mobilized moment left +-2869.26 : Max mobilized moment right + 196.81 : Vertical force left + 95.18 : Vertical force right + 42.3 : Max mobilized moment percentage left + 8.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -7892,144 +7980,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01249 0.05939 51.34205 - 0.04456 1.02219 44.28473 - 0.38505 3.80269 37.22750 - 1.27370 8.34988 30.16947 - 2.95558 14.20850 23.10976 - 5.51922 19.72662 16.04749 - 5.54729 19.90780 16.04749 - 8.85478 23.94519 8.98095 - 12.65675 26.50058 1.90672 - 16.73257 27.60821 -5.17864 - 20.90428 28.01723 -12.27856 - 25.13853 28.44217 -19.39648 - 25.12430 -115.53101 -19.39648 - 13.58577 -115.23842 -24.15259 - 2.07688 -114.93802 -28.91392 - -9.40157 -114.62957 -33.67605 - -20.84876 -114.31293 -38.43458 - -32.26388 -113.98804 -43.18512 - -32.26514 -113.97760 -43.18512 - -47.42987 -113.47057 -49.49910 - -62.51790 -112.82708 -55.78072 - -77.51105 -112.04764 -62.01976 - -92.39126 -111.13296 -68.20599 - -107.14054 -110.08398 -74.32921 - -107.13997 -110.08187 -74.32921 - -121.72565 -108.68072 -80.37920 - -136.11548 -107.14422 -86.34615 - -150.29145 -105.47291 -92.22038 - -164.23563 -103.66755 -97.99225 - -177.93021 -101.72909 -103.65208 - -177.93019 -101.73031 -103.65208 - -191.33619 -99.33670 -109.19030 - -204.41388 -96.80585 -114.59798 - -217.14505 -94.13926 -119.86645 - -229.51172 -91.33853 -124.98702 - -241.49611 -88.40536 -129.95103 - -241.49615 -88.40641 -129.95103 - -253.02315 -84.47778 -134.74993 - -264.01804 -80.42500 -139.37620 - -274.46433 -76.24886 -143.82273 - -284.34562 -71.95011 -148.08240 - -293.64561 -67.52951 -152.14808 - -293.64561 -67.53019 -152.14808 - -302.33837 -62.84095 -156.01295 - -310.39783 -58.03078 -159.67156 - -317.80790 -53.10042 -163.11884 - -324.55263 -48.05057 -166.34977 - -330.61611 -42.88193 -169.35928 - -330.61611 -42.88260 -169.35928 - -335.97414 -37.46818 -172.14267 - -340.60238 -31.93574 -174.69685 - -344.48512 -26.28584 -177.01917 - -347.60674 -20.51897 -179.10698 - -349.95167 -14.63554 -180.95766 - -349.95168 -14.63614 -180.95766 - -351.21912 -10.70185 -182.18875 - -352.08985 -6.70178 -183.28506 - -352.55730 -2.63617 -184.24643 - -352.61491 1.49479 -185.07268 - -352.25616 5.69102 -185.76362 - -352.25616 5.69045 -185.76362 - -351.47083 10.02729 -186.31919 - -350.24850 14.43018 -186.73990 - -348.58258 18.89922 -187.02638 - -346.46645 23.43462 -187.17928 - -343.89344 28.03665 -187.19922 - -343.89344 28.03607 -187.19922 - -340.85494 32.73367 -187.08700 - -337.34672 37.43066 -186.84399 - -333.36881 42.12757 -186.47170 - -328.92119 46.82501 -185.97167 - -324.00377 51.52368 -185.34543 - -324.00364 51.52221 -185.34543 - -315.34118 58.58476 -184.11023 - -305.63602 64.79339 -182.57624 - -295.02211 70.15124 -180.75344 - -283.63288 74.66148 -178.65181 - -271.60130 78.32732 -176.28134 - -271.60132 78.32526 -176.28134 - -259.00643 81.85168 -173.65284 - -245.91469 84.64928 -170.77896 - -232.44040 86.72091 -167.67239 - -218.69743 88.06927 -164.34585 - -204.79924 88.69691 -160.81203 - -204.79925 88.69522 -160.81203 - -190.69600 90.71342 -157.08390 - -176.31668 92.20929 -153.17510 - -161.74319 93.18498 -149.09940 - -147.05711 93.64254 -144.87057 - -132.33971 93.58390 -140.50237 - -132.33972 93.58237 -140.50237 - -117.55946 94.45937 -136.00869 - -102.67463 94.91367 -131.40364 - -87.75151 94.94694 -126.70134 - -72.85613 94.56077 -121.91589 - -58.05430 93.75669 -117.06138 - -58.05430 93.75522 -117.06138 - -43.32837 93.60482 -112.15194 - -28.65476 93.08953 -107.20149 - -14.09070 92.21071 -102.22378 - 0.30678 90.96966 -97.23259 - 14.48086 89.36767 -92.24167 - 14.48084 89.36640 -92.24167 - 28.44061 88.24880 -87.26473 - 42.19907 86.80466 -82.31477 - 55.70503 85.03516 -77.40456 - 68.90743 82.94143 -72.54688 - 81.75541 80.52458 -67.75449 - 81.76284 80.49125 -67.75449 - 94.24231 78.28823 -63.03999 - 106.35198 75.78479 -58.41483 - 118.04471 72.98195 -53.89006 - 129.27353 69.88068 -49.47675 - 140.00165 66.67343 -45.18593 - 139.99060 66.51898 -45.18593 - 148.76097 50.26731 -41.21545 - 155.02522 33.10412 -37.37364 - 158.64663 15.02940 -33.66354 - 159.48847 -3.95683 -30.08822 - 157.41400 -23.85459 -26.65074 - 157.41262 -24.91657 -26.65074 - 152.30762 -43.28855 -23.35177 - 144.48747 -60.43213 -20.18430 - 134.34099 -74.31557 -17.13980 - 122.35289 -84.99728 -14.20974 - 108.99754 -92.56428 -11.38562 - 109.01256 -92.64169 -11.38562 - 94.71064 -97.57842 -8.65664 - 79.87855 -99.72487 -6.00928 - 64.92874 -99.16006 -3.43086 - 50.30183 -95.16921 -0.90869 - 36.61253 -86.48735 1.56988 - 36.56714 -86.80147 1.56988 - 24.42986 -74.59521 4.01836 - 14.31818 -59.79700 6.44605 - 6.61943 -42.42528 8.85942 - 1.71869 -22.49168 11.26492 - -0.00023 -0.00110 13.66899 + -0.01256 0.05602 50.37504 + 0.03687 0.87660 43.23304 + 0.33461 3.38091 36.09113 + 1.14031 7.66845 28.94850 + 2.69903 13.23378 21.80434 + 5.09050 18.40023 14.65784 + 5.11950 18.58747 14.65784 + 8.20051 22.24027 7.50739 + 11.71584 24.37824 0.34982 + 15.45048 25.24615 -6.81803 + 19.26527 25.62572 -13.99931 + 23.14061 26.05372 -21.19719 + 23.12588 -116.84236 -21.19719 + 11.45710 -116.52955 -26.00568 + -0.17928 -116.19430 -30.81857 + -11.78100 -115.83629 -35.63141 + -23.34578 -115.45531 -40.43974 + -34.87129 -115.05120 -45.23910 + -34.87255 -115.04081 -45.23910 + -50.17075 -114.40492 -51.61662 + -65.37328 -113.60585 -57.95990 + -80.45841 -112.64394 -64.25867 + -95.40445 -111.51976 -70.50264 + -110.18983 -110.23408 -76.68154 + -110.18926 -110.23203 -76.68154 + -124.79150 -108.77517 -82.78511 + -139.18896 -107.16053 -88.80355 + -153.36064 -105.38856 -94.72719 + -167.28562 -103.45997 -100.54637 + -180.94305 -101.37566 -106.25144 + -180.94303 -101.37687 -106.25144 + -194.29093 -98.81479 -111.83282 + -207.28654 -96.09286 -117.28165 + -219.90866 -93.21262 -122.58932 + -232.13628 -90.17577 -127.74724 + -243.94865 -86.98414 -132.74680 + -243.94869 -86.98514 -132.74680 + -255.29098 -83.12674 -137.57956 + -266.10987 -79.13449 -142.23815 + -276.38760 -75.00926 -146.71556 + -286.10647 -70.75193 -151.00480 + -295.24895 -66.36341 -155.09886 + -295.24895 -66.36402 -155.09886 + -303.78784 -61.69767 -158.99101 + -311.69588 -56.90136 -162.67590 + -318.95580 -51.97603 -166.14859 + -325.55046 -46.92259 -169.40414 + -331.46284 -41.74195 -172.43759 + -331.46285 -41.74252 -172.43759 + -336.66761 -36.30794 -175.24434 + -341.13937 -30.74745 -177.82141 + -344.86137 -25.06186 -180.16625 + -347.81701 -19.25196 -182.27634 + -349.98974 -13.31848 -184.14914 + -349.98975 -13.31894 -184.14914 + -351.10221 -8.91807 -185.39679 + -351.77091 -4.44366 -186.50971 + -351.98851 0.10368 -187.48782 + -351.74776 4.72337 -188.33104 + -351.04145 9.41489 -189.03929 + -351.04145 9.41452 -189.03929 + -349.85868 14.25278 -189.61262 + -348.18850 19.16274 -190.05169 + -346.02376 24.14402 -190.35735 + -343.35733 29.19627 -190.53042 + -340.18215 34.31919 -190.57173 + -340.18242 34.32361 -190.57173 + -334.46238 41.82773 -190.38881 + -327.69488 48.11626 -189.91718 + -320.11435 52.66801 -189.16326 + -311.98134 55.48246 -188.13347 + -303.55648 56.55947 -186.83421 + -303.55643 56.55860 -186.83421 + -294.69548 61.46339 -185.27226 + -285.15462 65.62416 -183.45590 + -275.04540 69.04166 -181.39381 + -264.47924 71.71682 -179.09465 + -253.56741 73.65079 -176.56710 + -253.56740 73.64958 -176.56710 + -242.26050 77.01922 -173.82018 + -230.48858 79.84996 -170.86413 + -218.33238 82.14334 -167.70939 + -205.87237 83.90092 -164.36641 + -193.18881 85.12433 -160.84566 + -193.18881 85.12302 -160.84566 + -180.25846 87.20737 -157.15785 + -167.04884 88.84691 -153.31443 + -153.62654 90.04331 -149.32696 + -140.05792 90.79824 -145.20699 + -126.40906 91.11331 -140.96608 + -126.40906 91.11196 -140.96608 + -112.66941 92.01850 -136.61593 + -98.82295 92.53631 -132.16854 + -84.92788 92.66690 -127.63586 + -71.04217 92.41171 -123.02986 + -57.22359 91.77209 -118.36252 + -57.22359 91.77080 -118.36252 + -43.46906 91.56427 -113.64583 + -29.77187 91.00652 -108.89165 + -16.18461 90.09874 -104.11167 + -2.75970 88.84206 -99.31760 + 10.45062 87.23757 -94.52114 + 10.45060 87.23650 -94.52114 + 23.44398 85.95440 -89.73393 + 36.22069 84.34768 -84.96699 + 48.73210 82.41728 -80.23111 + 60.92974 80.16415 -75.53706 + 72.76525 77.58917 -70.89561 + 72.76522 77.58858 -70.89561 + 84.22117 75.10639 -66.31738 + 95.28184 72.31825 -61.81191 + 105.90140 69.22510 -57.38835 + 116.03417 65.82792 -53.05582 + 125.63462 62.12772 -48.82349 + 125.63749 62.10697 -48.82349 + 133.96540 48.78448 -44.70108 + 140.22879 34.58103 -40.69452 + 144.29596 19.50254 -36.80727 + 146.03610 3.55493 -33.04276 + 145.31928 -13.25587 -29.40445 + 145.37971 -13.70005 -29.40445 + 142.11316 -29.98853 -25.89408 + 136.34557 -47.02849 -22.50650 + 128.07180 -62.72463 -19.23474 + 117.69454 -75.09376 -16.07184 + 105.70460 -84.24437 -13.01084 + 105.70040 -84.43147 -13.01084 + 92.50316 -91.02157 -10.04235 + 78.54491 -94.59196 -7.15358 + 64.27276 -95.21854 -4.33244 + 50.13335 -92.76512 -1.56683 + 36.66742 -85.82789 1.15534 + 36.58884 -85.73011 1.15534 + 24.54343 -74.34578 3.84722 + 14.43493 -59.96494 6.51825 + 6.69435 -42.77613 9.17487 + 1.74191 -22.79088 11.82357 + -0.00334 -0.01401 14.47082 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8065,10 +8153,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8105,29 +8193,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.66667 60.66400 0.00000 214.94813 0.00000 - -3.33333 60.82000 0.00000 295.09351 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.50000 60.14900 36.46100 800.53878 50.39193 - -8.28571 60.36800 36.71200 932.41935 61.47235 - -9.07143 60.54900 36.93700 1073.19877 74.39543 - -9.85714 60.70100 37.14100 1222.88248 89.16209 - -10.64286 60.83300 37.32700 1381.47404 105.77317 - -11.42857 60.94700 37.49700 1548.97583 124.22935 - -12.21429 61.04800 37.65300 1725.38951 144.53126 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8144,29 +8232,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.33333 32.06333 110.57676 0.00000 0.70763 0.00000 3.44870 - -3.00000 36.19000 120.21807 0.00000 0.70763 0.00000 3.32186 - -3.66667 40.31667 129.86101 0.00000 0.70763 0.00000 3.22103 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.25000 52.49750 158.58900 12.18453 0.70763 0.23210 3.02089 - -7.89286 56.47679 167.84799 14.10235 0.70763 0.24970 2.97198 - -8.67857 61.34036 179.17380 16.44755 0.70763 0.26814 2.92098 - -9.46429 66.20393 190.50654 18.79394 0.70763 0.28388 2.87757 - -10.25000 71.06750 201.84380 21.14137 0.70763 0.29748 2.84017 - -11.03571 75.93107 213.18410 23.48969 0.70763 0.30936 2.80760 - -11.82143 80.79464 224.52650 25.83879 0.70763 0.31981 2.77898 - -12.60714 85.65821 235.87039 28.18858 0.70763 0.32908 2.75362 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8183,144 +8271,144 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00001 0.00000 0.00001 0.00000 202 100 P - 18.33896 0.00000 19.44961 1.59216 110 94 - - 34.62293 0.00000 38.89922 3.18433 110 89 - - 51.99021 0.00000 58.34883 4.77649 110 89 - - 59.60258 0.00000 77.79845 6.36865 110 77 - - 45.50458 0.00000 97.24806 7.96082 110 47 - - 45.50458 0.00000 50.01834 7.96082 110 91 - - 31.39804 0.00000 60.02201 9.55298 110 52 - - 17.27611 0.00000 70.02568 11.14515 110 25 - - 3.82169 0.00000 80.02935 12.73731 110 0 - - 3.96903 0.00000 90.03302 14.32947 110 0 - - 4.12506 0.00000 100.03668 15.92164 110 0 - - 4.12506 0.00000 83.12851 15.92164 110 0 - - 4.23473 0.00000 88.67041 16.98308 110 0 - - 4.34826 0.00000 94.21231 18.04452 110 0 - - 4.46450 0.00000 99.75421 19.10596 110 0 - - 4.58229 0.00000 105.29611 20.16741 110 0 - - 4.70047 0.00000 110.83802 21.22885 110 0 - - 4.70047 0.00000 103.46095 21.22885 110 0 - - 4.85652 1.30800 106.30727 21.81288 110 0 - - 5.00843 2.61600 109.15360 22.39691 110 0 - - 5.15385 3.92400 111.99992 22.98094 110 0 - - 5.29043 5.23200 114.84625 23.56497 110 0 - - 5.41582 6.54000 117.69258 24.14899 110 0 - - 7.74618 6.54000 113.36397 24.14899 110 0 - - 7.89060 7.84800 116.10561 24.73302 110 0 - - 8.03041 9.15600 118.84725 25.31705 110 0 - - 8.16329 10.46400 121.58890 25.90108 110 0 - - 8.28700 11.77200 124.33054 26.48511 110 0 - - 8.39937 13.08000 127.07218 27.06914 110 0 - - 11.82668 13.08000 123.21496 27.06914 110 0 - - 11.99689 14.38800 125.87338 27.65317 110 0 - - 12.15158 15.69600 128.53180 28.23720 110 0 - - 12.28963 17.00400 131.19022 28.82123 110 0 - - 12.41000 18.31200 133.84864 29.40526 110 0 - - 12.51166 19.62000 136.50706 29.98929 110 0 - - 21.80553 19.62000 93.61408 27.88519 110 0 - - 21.83159 20.92800 93.96456 27.98959 110 0 - - 21.84953 22.23600 94.31504 28.09399 110 0 - - 21.85929 23.54400 94.66552 28.19838 110 0 - - 21.86086 24.85200 95.01601 28.30278 110 0 - - 21.85419 26.16000 95.36649 28.40718 110 0 - - 23.43199 26.16000 94.99596 28.40718 110 0 - - 23.42373 27.46800 95.34508 28.51158 110 0 - - 23.40738 28.77600 95.69420 28.61598 110 0 - - 23.38325 30.08400 96.04332 28.72038 110 0 - - 23.35168 31.39200 96.39244 28.82478 110 0 - - 23.31303 32.70000 96.74156 28.92918 110 0 - - 24.67788 32.70000 96.43144 28.92918 110 0 - - 24.63741 34.00800 96.77944 29.03358 110 0 - - 24.59074 35.31600 97.12744 29.13798 110 0 - - 24.53852 36.62400 97.47544 29.24238 110 0 - - 24.48141 37.93200 97.82344 29.34678 110 0 - - 24.42007 39.24000 98.17145 29.45118 110 0 - - 16.49345 39.24000 139.39178 31.67344 110 0 - - 16.45401 40.22100 141.31947 32.11146 110 0 - - 16.41069 41.20200 143.24716 32.54949 110 0 - - 16.36444 42.18300 145.17485 32.98751 110 0 - - 16.31621 43.16400 147.10255 33.42553 110 0 - - 16.26694 44.14500 149.03024 33.86355 110 0 - - 17.33836 44.14500 146.65286 33.86355 110 0 - - 17.30036 45.12600 148.54980 34.30157 110 0 - - 17.26339 46.10700 150.44674 34.73960 110 0 - - 17.22863 47.08800 152.34368 35.17762 110 0 - - 17.19721 48.06900 154.24062 35.61564 110 0 - - 17.17031 49.05000 156.13756 36.05366 110 0 - - 18.06460 49.05000 153.91418 36.05366 110 0 - - 18.05240 50.03100 155.78411 36.49168 110 0 - - 18.04726 51.01200 157.65404 36.92971 110 0 - - 18.05026 51.99300 159.52396 37.36773 110 0 - - 18.06247 52.97400 161.39389 37.80575 110 0 - - 18.08497 53.95500 163.26382 38.24377 110 0 - - 19.04366 53.95500 160.62077 38.24377 110 0 - - 19.11593 55.49657 163.51166 38.93209 110 0 - - 19.21670 57.03814 166.40255 39.62041 110 0 - - 19.34619 58.57971 169.29344 40.30873 110 0 - - 19.50465 60.12129 172.18433 40.99705 110 0 - - 19.69231 61.66286 175.07522 41.68537 110 0 - - 20.66939 61.66286 172.07061 41.68537 110 0 - - 20.89872 63.20443 174.91189 42.37369 110 0 - - 21.15468 64.74600 177.75316 43.06201 110 0 - - 21.43590 66.28757 180.59444 43.75033 110 0 - - 21.74098 67.82914 183.43572 44.43865 110 0 - - 22.06854 69.37071 186.27699 45.12697 110 0 - - 22.84620 69.37071 183.50891 45.12697 110 0 - - 23.20470 70.91229 186.30796 45.81529 110 0 - - 23.58327 72.45386 189.10702 46.50361 110 0 - - 23.98092 73.99543 191.90607 47.19193 110 0 - - 24.39663 75.53700 194.70513 47.88025 110 0 - - 24.82939 77.07857 197.50418 48.56857 110 0 - - 25.44626 77.07857 194.93712 48.56857 110 0 - - 25.90239 78.62014 197.69979 49.25689 110 0 - - 26.37397 80.16171 200.46246 49.94521 110 0 - - 26.86035 81.70329 203.22514 50.63353 110 0 - - 27.36090 83.24486 205.98781 51.32185 110 0 - - 27.87497 84.78643 208.75049 52.01017 110 0 - - 28.36203 84.78643 206.35662 52.01017 110 0 - - 28.89442 86.32800 209.08761 52.69849 110 0 - - 29.43936 87.86957 211.81860 53.38681 110 0 - - 29.99645 89.41114 214.54960 54.07513 110 0 - - 30.56531 90.95271 217.28059 54.76345 110 0 - - 31.14554 92.49429 220.01158 55.45178 110 0 - - 31.49694 92.49429 217.76862 55.45178 110 0 - - 32.09188 94.03586 220.47178 56.14010 110 0 - - 32.69757 95.57743 223.17493 56.82842 110 0 - - 33.31375 97.11900 225.87808 57.51674 110 0 - - 33.94012 98.66057 228.58123 58.20506 110 0 - - 34.57641 100.20214 231.28438 58.89338 110 0 - - 33.38651 100.20214 229.17417 58.89338 110 0 - - 34.02067 101.74371 231.85266 59.58170 110 0 - - 34.66418 103.28529 234.53115 60.27002 110 0 - - 35.31668 104.82686 237.20964 60.95834 110 0 - - 35.97784 106.36843 239.88813 61.64666 110 0 - - 36.64730 107.91000 242.56661 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.06785 110.85300 609.04150 45.42350 1 0 A - 25.44822 112.32450 618.28301 46.11275 1 0 A - 25.82860 113.79600 627.52452 46.80200 1 0 A - 26.20898 115.26750 636.76604 47.49125 1 0 A - 26.26150 115.26750 585.69985 47.49125 1 0 A - 26.64264 116.73900 594.20023 48.18050 1 0 A - 27.02378 118.21050 602.70061 48.86975 1 0 A - 28.05442 119.68200 611.20099 49.55900 110 0 - - 29.64201 121.15350 619.70137 50.24825 110 0 - - 31.21902 122.62500 628.20175 50.93750 110 0 - - 28.21355 122.62500 610.51735 50.93750 1 0 A - 28.59532 124.09650 618.77844 51.62675 1 0 A - 28.97708 125.56800 627.03952 52.31600 1 0 A - 29.35885 127.03950 635.30061 53.00525 1 0 A - 44.60756 128.51100 643.56170 53.69450 110 0 - - 70.08260 129.98250 651.82278 54.38375 110 11 - - 70.08260 129.98250 642.44252 54.38375 110 11 - - 95.25656 131.45400 650.58472 55.07300 110 15 - - 120.22276 132.92550 658.72693 55.76225 110 18 - - 145.04570 134.39700 666.86913 56.45150 110 22 - - 169.78991 135.86850 675.01133 57.14075 110 25 - - 194.51991 137.34000 683.15353 57.83000 110 28 - + 0.00000 0.00000 0.00001 0.00000 1 0 A + 15.62994 0.00000 27.59211 1.44679 110 57 - + 32.07129 0.00000 55.18421 2.89358 110 58 - + 49.59610 0.00000 82.77632 4.34037 110 60 - + 56.41024 0.00000 110.36843 5.78715 110 51 - + 41.99841 0.00000 137.96054 7.23394 110 30 - + 41.99841 0.00000 68.20749 7.23394 110 62 - + 27.57867 0.00000 81.84899 8.68073 110 34 - + 13.14469 0.00000 95.49049 10.12752 110 14 - + 3.38695 0.00000 109.13199 11.57431 110 0 - + 3.84286 0.00000 122.77349 13.02110 110 0 - + 4.30962 0.00000 136.41499 14.46788 110 0 - + 4.30962 0.00000 111.45332 14.46788 110 0 - + 4.62779 0.00000 118.88354 15.43241 110 0 - + 4.95092 0.00000 126.31376 16.39693 110 0 - + 5.27785 0.00000 133.74398 17.36146 110 0 - + 5.60740 0.00000 141.17421 18.32599 110 0 - + 5.93841 0.00000 148.60443 19.29051 110 0 - + 5.93841 0.00000 137.71826 19.29051 110 0 - + 6.37987 1.30800 141.50704 19.82121 110 0 - + 6.81901 2.61600 145.29582 20.35192 110 0 - + 7.25334 3.92400 149.08461 20.88262 110 0 - + 7.68040 5.23200 152.87339 21.41333 110 0 - + 8.09769 6.54000 156.66217 21.94403 110 0 - + 8.22308 6.54000 150.27634 21.94403 110 0 - + 8.60736 7.84800 153.91069 22.47473 110 0 - + 8.98805 9.15600 157.54503 23.00544 110 0 - + 9.36258 10.46400 161.17938 23.53614 110 0 - + 9.72845 11.77200 164.81372 24.06684 110 0 - + 10.08326 13.08000 168.44806 24.59755 110 0 - + 13.51056 13.08000 162.75727 24.59755 110 0 - + 13.92321 14.38800 166.26883 25.12825 110 0 - + 14.31997 15.69600 169.78039 25.65895 110 0 - + 14.69936 17.00400 173.29196 26.18966 110 0 - + 15.05993 18.31200 176.80352 26.72036 110 0 - + 15.40024 19.62000 180.31508 27.25106 110 0 - + 21.00075 19.62000 112.91072 24.82969 110 0 - + 21.13137 20.92800 113.33345 24.92265 110 0 - + 21.25285 22.23600 113.75618 25.01561 110 0 - + 21.36496 23.54400 114.17890 25.10857 110 0 - + 21.46749 24.85200 114.60163 25.20153 110 0 - + 21.56020 26.16000 115.02436 25.29449 110 0 - + 23.13800 26.16000 114.42115 25.29449 110 0 - + 23.22737 27.46800 114.84166 25.38745 110 0 - + 23.30669 28.77600 115.26217 25.48041 110 0 - + 23.37611 30.08400 115.68268 25.57337 110 0 - + 23.43580 31.39200 116.10319 25.66633 110 0 - + 23.48591 32.70000 116.52370 25.75929 110 0 - + 24.85077 32.70000 116.01583 25.75929 110 0 - + 24.89641 34.00800 116.43451 25.85225 110 0 - + 24.93299 35.31600 116.85318 25.94521 110 0 - + 24.96101 36.62400 117.27186 26.03817 110 0 - + 24.98091 37.93200 117.69054 26.13113 110 0 - + 24.99319 39.24000 118.10921 26.22409 110 0 - + 23.10196 39.24000 183.43874 28.78144 110 0 - + 23.17615 40.22100 185.97557 29.17947 110 0 - + 23.24119 41.20200 188.51241 29.57750 110 0 - + 23.29774 42.18300 191.04924 29.97553 110 0 - + 23.34644 43.16400 193.58607 30.37355 110 0 - + 23.38794 44.14500 196.12290 30.77158 110 0 - + 24.45936 44.14500 192.60019 30.77158 110 0 - + 24.50565 45.12600 195.09146 31.16961 110 0 - + 24.54603 46.10700 197.58272 31.56764 110 0 - + 24.58119 47.08800 200.07399 31.96566 110 0 - + 24.61180 48.06900 202.56525 32.36369 110 0 - + 24.63852 49.05000 205.05652 32.76172 110 0 - + 25.72647 49.05000 201.00495 32.76172 110 0 - + 25.77707 50.52150 204.66801 33.35876 110 0 - + 25.82271 51.99300 208.33107 33.95580 110 0 - + 25.86527 53.46450 211.99414 34.55284 110 0 - + 25.90662 54.93600 215.65720 35.14988 110 0 - + 25.94862 56.40750 219.32027 35.74693 110 0 - + 27.02615 56.40750 214.81611 35.74693 110 0 - + 27.08517 57.87900 218.40395 36.34397 110 0 - + 27.14754 59.35050 221.99178 36.94101 110 0 - + 27.21418 60.82200 225.57962 37.53805 110 0 - + 27.28603 62.29350 229.16745 38.13509 110 0 - + 27.36403 63.76500 232.75529 38.73213 110 0 - + 28.24034 63.76500 228.61475 38.73213 110 0 - + 28.33634 65.23650 232.13876 39.32917 110 0 - + 28.43960 66.70800 235.66278 39.92621 110 0 - + 28.55038 68.17950 239.18679 40.52326 110 0 - + 28.66898 69.65100 242.71080 41.12030 110 0 - + 28.79568 71.12250 246.23481 41.71734 110 0 - + 29.49993 71.12250 242.40131 41.71734 110 0 - + 29.64320 72.59400 245.87046 42.31438 110 0 - + 29.79463 74.06550 249.33961 42.91142 110 0 - + 29.95411 75.53700 252.80875 43.50846 110 0 - + 30.12152 77.00850 256.27790 44.10550 110 0 - + 30.29675 78.48000 259.74705 44.70255 110 0 - + 30.86086 78.48000 256.17685 44.70255 110 0 - + 31.04997 79.95150 259.59831 45.29959 110 0 - + 31.24642 81.42300 263.01977 45.89663 110 0 - + 31.44991 82.89450 266.44124 46.49367 110 0 - + 31.66017 84.36600 269.86270 47.09071 110 0 - + 31.87689 85.83750 273.28417 47.68775 110 0 - + 32.32673 85.83750 269.94257 47.68775 110 0 - + 32.55431 87.30900 273.32219 48.28479 110 0 - + 32.78773 88.78050 276.70182 48.88183 110 0 - + 33.02673 90.25200 280.08145 49.47888 110 0 - + 33.27102 91.72350 283.46108 50.07592 110 0 - + 33.52034 93.19500 286.84071 50.67296 110 0 - + 33.82431 93.19500 283.69963 50.67296 110 0 - + 34.08139 94.66650 287.04225 51.27000 110 0 - + 34.34307 96.13800 290.38487 51.86704 110 0 - + 34.60924 97.60950 293.72749 52.46408 110 0 - + 34.87981 99.08100 297.07011 53.06112 110 0 - + 35.15466 100.55250 300.41273 53.65817 110 0 - + 33.91693 100.55250 297.44910 53.65817 110 0 - + 34.18433 102.02400 300.75875 54.25521 110 0 - + 34.45607 103.49550 304.06839 54.85225 110 0 - + 34.73237 104.96700 307.37804 55.44929 110 0 - + 35.01342 106.43850 310.68768 56.04633 110 0 - + 35.29942 107.91000 313.99732 56.64337 110 0 - + 32.15155 107.91000 734.00940 36.53923 110 0 - + 32.06422 109.38150 745.49575 37.11102 110 0 - + 32.00503 110.85300 756.98209 37.68281 110 0 - + 31.97402 112.32450 768.46843 38.25461 110 0 - + 31.97124 113.79600 779.95478 38.82640 110 0 - + 31.99674 115.26750 791.44112 39.39820 110 0 - + 29.75191 115.26750 738.87493 39.39820 110 0 - + 29.77635 116.73900 749.59837 39.96999 110 0 - + 29.82632 118.21050 760.32181 40.54178 110 0 - + 29.89984 119.68200 771.04525 41.11358 110 0 - + 29.99490 121.15350 781.76869 41.68537 110 0 - + 30.10952 122.62500 792.49213 42.25717 110 0 - + 24.84373 122.62500 772.62437 42.25717 110 0 - + 24.88099 124.09650 783.07897 42.82896 110 0 - + 24.93319 125.56800 793.53357 43.40075 110 0 - + 24.99794 127.03950 803.98818 43.97255 110 0 - + 28.87604 128.51100 814.44278 44.54434 110 0 - + 56.66951 129.98250 824.89738 45.11614 110 7 - + 56.66951 129.98250 814.08791 45.11614 110 7 - + 84.16016 131.45400 824.40552 45.68793 110 10 - + 111.44217 132.92550 834.72313 46.25972 110 13 - + 138.58023 134.39700 845.04073 46.83152 110 16 - + 165.63905 135.86850 855.35834 47.40331 110 19 - + 192.68331 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8333,10 +8421,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 59.403 'Clay' - -4.00 46.529 'Peat' - -6.00 174.194 'Clay' - -13.00 166.454 'Sand' + 0.00 59.891 'Clay' + -4.00 46.380 'Peat' + -6.00 207.480 'Clay' + -13.00 161.769 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8351,7 +8439,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -8373,10 +8461,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8403,7 +8491,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -8412,24 +8500,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -8440,17 +8529,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8533,78 +8623,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 114.46307 58.86000 117.94548 24.09121 110 97 - - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 223.69025 69.16050 262.91521 21.84725 110 85 - - 193.93446 70.63200 271.20981 22.53650 110 72 - - 165.32317 72.10350 279.50442 23.22575 110 59 - - 137.77116 73.57500 287.79902 23.91500 110 48 - - 137.77116 73.57500 281.11759 23.91500 110 49 - - 111.17070 75.04650 289.21963 24.60425 110 38 - - 85.38634 76.51800 297.32167 25.29350 110 29 - - 60.29134 77.98950 305.42371 25.98275 110 20 - - 35.75894 79.46100 313.52575 26.67200 110 11 - - 11.66240 80.93250 321.62779 27.36125 110 0 - - 15.27710 80.93250 318.36273 27.36125 1 0 A - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00000 0.00000 0.00003 0.00000 1 0 A + 6.66779 1.47150 23.66976 0.59704 110 28 - + 23.25063 2.94300 47.33953 1.19408 110 49 - + 39.83734 4.41450 71.00929 1.79112 110 56 - + 56.42600 5.88600 94.67906 2.38817 110 60 - + 73.01470 7.35750 118.34882 2.98521 110 62 - + 25.81940 7.35750 48.63809 2.98521 110 53 - + 32.96736 8.82900 58.36571 3.58225 110 56 - + 40.11254 10.30050 68.09332 4.17929 110 59 - + 47.25399 11.77200 77.82094 4.77633 110 61 - + 54.39073 13.24350 87.54856 5.37337 110 62 - + 61.52180 14.71500 97.27618 5.97041 110 63 - + 42.62896 14.71500 69.37382 5.97041 110 61 - + 47.86426 16.18650 76.31120 6.56745 110 63 - + 53.09269 17.65800 83.24858 7.16450 110 64 - + 58.31396 19.12950 90.18597 7.76154 110 65 - + 63.52775 20.60100 97.12335 8.35858 110 65 - + 68.73378 22.07250 104.06073 8.95562 110 66 - + 56.57681 22.07250 86.10925 8.95562 110 66 - + 60.96440 23.54400 91.84986 9.55266 110 66 - + 65.34409 25.01550 97.59048 10.14970 110 67 - + 69.71597 26.48700 103.33110 10.74674 110 67 - + 74.08015 27.95850 109.07171 11.34379 110 68 - + 78.43673 29.43000 114.81233 11.94083 110 68 - + 69.42255 29.43000 101.50379 11.94083 110 68 - + 73.32098 30.90150 106.57898 12.53787 110 69 - + 77.21224 32.37300 111.65417 13.13491 110 69 - + 81.09662 33.84450 116.72936 13.73195 110 69 - + 84.97438 35.31600 121.80455 14.32899 110 70 - + 88.84580 36.78750 126.87974 14.92603 110 70 - + 81.66837 36.78750 116.28466 14.92603 110 70 - + 85.24666 38.25900 120.93605 15.52307 110 70 - + 88.81921 39.73050 125.58743 16.12012 110 71 - + 92.38629 41.20200 130.23882 16.71716 110 71 - + 95.94815 42.67350 134.89020 17.31420 110 71 - + 99.50507 44.14500 139.54159 17.91124 110 71 - + 93.53668 44.14500 130.73258 17.91124 110 72 - + 96.88996 45.61650 135.09033 18.50828 110 72 - + 100.23870 47.08800 139.44808 19.10532 110 72 - + 103.58300 48.55950 143.80584 19.70236 110 72 - + 106.92294 50.03100 148.16359 20.29941 110 72 - + 110.25863 51.50250 152.52134 20.89645 110 72 - + 105.14786 51.50250 144.97918 20.89645 110 73 - + 108.33334 52.97400 149.12144 21.49349 110 73 - + 111.51448 54.44550 153.26370 22.09053 110 73 - + 114.69108 55.91700 157.40596 22.68757 110 73 - + 117.86294 57.38850 161.54823 23.28461 110 73 - + 121.02985 58.86000 165.69049 23.88165 110 73 - + 203.87329 58.86000 306.18963 15.40546 110 67 - + 212.20418 60.33150 317.55426 15.97725 110 67 - + 220.50694 61.80300 328.91889 16.54905 110 67 - + 228.78150 63.27450 340.28352 17.12084 110 67 - + 237.02783 64.74600 351.64815 17.69263 110 67 - + 245.24587 66.21750 363.01278 18.26443 110 68 - + 230.08456 66.21750 336.73401 18.26443 110 68 - + 237.80035 67.68900 347.27595 18.83622 110 68 - + 244.47305 69.16050 357.81789 19.40802 110 68 - + 212.32723 70.63200 368.35983 19.97981 110 58 - + 181.27001 72.10350 378.90176 20.55160 110 48 - + 151.23178 73.57500 389.44370 21.12340 110 39 - + 151.23178 73.57500 380.66080 21.12340 110 40 - + 122.11873 75.04650 390.96499 21.69519 110 31 - + 93.80283 76.51800 401.26918 22.26699 110 23 - + 66.16318 77.98950 411.57337 22.83878 110 16 - + 39.07887 79.46100 421.87756 23.41057 110 9 - + 12.42900 80.93250 432.18175 23.98237 110 0 - + 12.42900 80.93250 427.69172 23.98237 110 0 - + 9.65636 82.40400 437.88886 24.55416 110 0 - + 10.12515 83.87550 448.08600 25.12596 110 0 - + 10.59142 85.34700 458.28314 25.69775 110 0 - + 11.05632 86.81850 468.48028 26.26954 110 0 - + 11.52098 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8619,8 +8709,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.420 'Clay' - -13.00 406.557 'Sand' + -6.00 438.139 'Clay' + -13.00 396.901 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8793,20 +8883,20 @@ PartialFactorSet=13 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 8.11 : Percentage mobilized resistance right - 275.90 : Effective left - 275.92 : Effective right + 13.45 : Percentage mobilized resistance left + 8.12 : Percentage mobilized resistance right + 276.20 : Effective left + 276.22 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2033.67 : Max effective resistance left + 2053.74 : Max effective resistance left 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 78.48 : Vertical force left - 73.70 : Vertical force right + 78.56 : Vertical force left + 73.77 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -8823,150 +8913,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -6.91935 - 0.00000 0.00000 -6.91223 - 0.00000 0.00000 -6.90511 - 0.00000 0.00000 -6.89799 - 0.00000 0.00000 -6.89087 - 0.00000 0.00000 -6.88375 - 0.00000 -0.00001 -6.88375 - 0.00000 -0.00001 -6.87663 - 0.00000 -0.00001 -6.86951 - 0.00000 -0.00001 -6.86239 - 0.00000 -0.00001 -6.85528 - 0.00202 0.04050 -6.84816 - 0.00201 0.04026 -6.84816 - 0.00987 0.12836 -6.84340 - 0.02995 0.28464 -6.83866 - 0.06907 0.50911 -6.83393 - 0.13404 0.80175 -6.82923 - 0.23169 1.16256 -6.82459 - 0.23169 1.16256 -6.82459 - 0.28138 1.32279 -6.82275 - 0.33758 1.48759 -6.82093 - 0.40045 1.65695 -6.81913 - 0.47019 1.83087 -6.81736 - 0.54698 2.00934 -6.81561 - 0.54699 2.00926 -6.81561 - 0.80721 2.21589 -6.81062 - 1.05597 1.85160 -6.80608 - 1.24221 1.25270 -6.80209 - 1.35666 0.65503 -6.79876 - 1.39946 0.05835 -6.79618 - 1.39945 0.05842 -6.79618 - 1.37070 -0.53752 -6.79441 - 1.27047 -1.13301 -6.79341 - 1.09879 -1.72826 -6.79307 - 0.85568 -2.32351 -6.79331 - 0.54114 -2.91890 -6.79402 - 0.54115 -2.91887 -6.79402 - 0.15514 -3.51457 -6.79508 - -0.30236 -4.11064 -6.79623 - -0.83142 -4.70705 -6.79717 - -1.43207 -5.30371 -6.79762 - -2.10431 -5.90038 -6.79728 - -2.10431 -5.90049 -6.79728 - -2.84483 -5.20725 -6.79551 - -3.49289 -4.51360 -6.79179 - -4.04842 -3.81923 -6.78576 - -4.51130 -3.12375 -6.77701 - -4.88135 -2.42673 -6.76519 - -4.88135 -2.42693 -6.76519 - -5.15836 -1.72789 -6.74995 - -5.34201 -1.02632 -6.73119 - -5.43191 -0.32167 -6.70885 - -5.42763 0.38658 -6.68286 - -5.32864 1.09899 -6.65316 - -5.32864 1.09877 -6.65316 - -5.13439 1.81589 -6.61975 - -4.84417 2.53827 -6.58282 - -4.45726 3.26640 -6.54266 - -3.97285 4.00075 -6.49951 - -3.39010 4.74175 -6.45365 - -3.39010 4.74160 -6.45365 - -2.93582 4.34567 -6.41770 - -2.52063 3.95997 -6.38061 - -2.14348 3.58478 -6.34255 - -1.80331 3.22037 -6.30365 - -1.49904 2.86695 -6.26406 - -1.49904 2.86688 -6.26406 - -1.22956 2.52463 -6.22391 - -0.99374 2.19368 -6.18329 - -0.79044 1.87416 -6.14228 - -0.61852 1.56617 -6.10095 - -0.47682 1.26978 -6.05939 - -0.47682 1.26974 -6.05939 - -0.31839 0.84704 -5.99676 - -0.22139 0.45070 -5.93386 - -0.18186 0.08083 -5.87072 - -0.19581 -0.26249 -5.80738 - -0.25927 -0.57916 -5.74388 - -0.25927 -0.57921 -5.74388 - -0.36823 -0.86918 -5.68020 - -0.51868 -1.13234 -5.61621 - -0.70658 -1.36852 -5.55174 - -0.92788 -1.57748 -5.48663 - -1.17845 -1.75894 -5.42073 - -1.17844 -1.75913 -5.42073 - -1.45418 -1.91269 -5.35383 - -1.75083 -2.03790 -5.28568 - -2.06410 -2.13417 -5.21601 - -2.38960 -2.20079 -5.14454 - -2.72282 -2.23697 -5.07101 - -2.72281 -2.23738 -5.07101 - -3.05917 -2.24219 -4.99514 - -3.39384 -2.21457 -4.91662 - -3.72186 -2.15336 -4.83518 - -4.03811 -2.05727 -4.75053 - -4.33723 -1.92489 -4.66240 - -4.33722 -1.92554 -4.66240 - -4.61377 -1.75536 -4.57050 - -4.86186 -1.54575 -4.47461 - -5.07544 -1.29498 -4.37455 - -5.24820 -1.00128 -4.27015 - -5.37358 -0.66277 -4.16121 - -5.37358 -0.66357 -4.16121 - -5.44482 -0.27833 -4.04757 - -5.45464 0.15564 -3.92922 - -5.39559 0.64028 -3.80623 - -5.25992 1.17755 -3.67863 - -5.03960 1.76937 -3.54649 - -5.03961 1.76863 -3.54649 - -4.72641 2.41688 -3.40989 - -4.31163 3.12336 -3.26921 - -3.78641 3.88969 -3.12489 - -3.14166 4.71729 -2.97740 - -2.36810 5.60742 -2.82719 - -2.36813 5.60710 -2.82719 - -1.45634 6.56077 -2.67478 - -0.39669 7.57873 -2.52111 - 0.82051 8.66127 -2.36721 - 2.20492 9.80827 -2.21416 - 3.76618 11.01915 -2.06300 - 3.76871 11.00121 -2.06300 - 5.22032 8.37454 -1.91519 - 6.28930 5.91241 -1.77189 - 7.00638 3.69700 -1.63376 - 7.41260 1.76559 -1.50142 - 7.54962 0.10534 -1.37551 - 7.54841 0.10527 -1.37551 - 7.45585 -1.29770 -1.25638 - 7.17127 -2.45724 -1.14368 - 6.73019 -3.38649 -1.03705 - 6.16622 -4.09782 -0.93614 - 5.51116 -4.60283 -0.84056 - 5.51128 -4.59875 -0.84056 - 4.79588 -4.90812 -0.74981 - 4.04816 -5.03127 -0.66320 - 3.29542 -4.97619 -0.58008 - 2.56388 -4.74956 -0.49982 - 1.87886 -4.35670 -0.42177 - 1.87898 -4.35519 -0.42177 - 1.26532 -3.80008 -0.34528 - 0.74693 -3.08545 -0.26986 - 0.34757 -2.21323 -0.19518 - 0.09078 -1.18461 -0.12092 - -0.00002 -0.00011 -0.04672 + 0.00000 0.00000 -6.75383 + 0.00000 0.00000 -6.75139 + 0.00000 0.00000 -6.74895 + 0.00000 0.00000 -6.74650 + 0.00000 0.00000 -6.74406 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.73918 + 0.00000 0.00000 -6.73674 + 0.00000 0.00000 -6.73430 + 0.00000 0.00000 -6.73186 + 0.00265 0.05297 -6.72942 + 0.00264 0.05289 -6.72942 + 0.01259 0.15740 -6.72778 + 0.03638 0.32965 -6.72615 + 0.08078 0.56964 -6.72455 + 0.15257 0.87738 -6.72298 + 0.25851 1.25284 -6.72147 + 0.25851 1.25284 -6.72147 + 0.31193 1.41882 -6.72089 + 0.37208 1.58929 -6.72033 + 0.43913 1.76424 -6.71979 + 0.51328 1.94369 -6.71928 + 0.59469 2.12761 -6.71880 + 0.59469 2.12762 -6.71880 + 0.86094 2.12195 -6.71763 + 1.08139 1.55221 -6.71693 + 1.23348 0.98262 -6.71680 + 1.31722 0.41296 -6.71732 + 1.33258 -0.15700 -6.71856 + 1.33258 -0.15691 -6.71856 + 1.27953 -0.72741 -6.72059 + 1.15797 -1.29872 -6.72333 + 0.96779 -1.87105 -6.72668 + 0.70887 -2.44459 -6.73052 + 0.38104 -3.01949 -6.73476 + 0.38104 -3.01947 -6.73476 + -0.01586 -3.59583 -6.73926 + -0.48202 -4.17371 -6.74375 + -1.01761 -4.75304 -6.74794 + -1.62280 -5.33368 -6.75154 + -2.29773 -5.91538 -6.75424 + -2.29773 -5.91550 -6.75424 + -3.03983 -5.21608 -6.75572 + -3.68869 -4.51672 -6.75512 + -4.24428 -3.81709 -6.75207 + -4.70655 -3.11679 -6.74617 + -5.07537 -2.41537 -6.73707 + -5.07537 -2.41558 -6.73707 + -5.35060 -1.71254 -6.72442 + -5.53195 -1.00733 -6.70811 + -5.61910 -0.29942 -6.68809 + -5.61165 0.41177 -6.66430 + -5.50913 1.12680 -6.63667 + -5.50913 1.12657 -6.63667 + -5.31101 1.84601 -6.60521 + -5.01664 2.57042 -6.57011 + -4.62532 3.30032 -6.53166 + -4.13629 4.03620 -6.49011 + -3.54871 4.77849 -6.44573 + -3.54872 4.77833 -6.44573 + -3.09066 4.38448 -6.41082 + -2.67149 4.00056 -6.37472 + -2.29021 3.62690 -6.33758 + -1.94576 3.26376 -6.29955 + -1.63710 2.91138 -6.26077 + -1.63710 2.91130 -6.26077 + -1.36313 2.56986 -6.22138 + -1.12276 2.23952 -6.18147 + -0.91485 1.92042 -6.14112 + -0.73829 1.61266 -6.10040 + -0.59194 1.31635 -6.05941 + -0.59194 1.31630 -6.05941 + -0.42653 0.89343 -5.99755 + -0.32261 0.49662 -5.93532 + -0.27624 0.12601 -5.87277 + -0.28349 -0.21827 -5.80993 + -0.34040 -0.53610 -5.74686 + -0.34039 -0.53617 -5.74686 + -0.44300 -0.82746 -5.68354 + -0.58730 -1.09209 -5.61984 + -0.76928 -1.32984 -5.55561 + -0.98489 -1.54047 -5.49068 + -1.23005 -1.72366 -5.42491 + -1.23004 -1.72385 -5.42491 + -1.50062 -1.87919 -5.35810 + -1.79238 -2.00621 -5.29000 + -2.10103 -2.10429 -5.22034 + -2.42219 -2.17273 -5.14885 + -2.75133 -2.21071 -5.07528 + -2.75132 -2.21112 -5.07528 + -3.08388 -2.21770 -4.99933 + -3.41500 -2.19182 -4.92071 + -3.73974 -2.13230 -4.83916 + -4.05295 -2.03786 -4.75439 + -4.34928 -1.90707 -4.66611 + -4.34927 -1.90772 -4.66611 + -4.62326 -1.73907 -4.57406 + -4.86902 -1.53092 -4.47801 + -5.08048 -1.28155 -4.37779 + -5.25133 -0.98917 -4.27321 + -5.37498 -0.65191 -4.16410 + -5.37498 -0.65271 -4.16410 + -5.44468 -0.26864 -4.05029 + -5.45313 0.16422 -3.93177 + -5.39288 0.64783 -3.80859 + -5.25615 1.18414 -3.68083 + -5.03490 1.77507 -3.54852 + -5.03491 1.77433 -3.54852 + -4.72092 2.42177 -3.41176 + -4.30547 3.12749 -3.27092 + -3.77968 3.89313 -3.12645 + -3.13446 4.72012 -2.97881 + -2.36052 5.60968 -2.82846 + -2.36055 5.60936 -2.82846 + -1.44846 6.56253 -2.67592 + -0.38857 7.58004 -2.52211 + 0.82879 8.66218 -2.36810 + 2.21331 9.80884 -2.21493 + 3.77463 11.01942 -2.06367 + 3.77717 11.00147 -2.06367 + 5.22877 8.37415 -1.91575 + 6.29763 5.91123 -1.77237 + 7.01447 3.69491 -1.63414 + 7.42032 1.76277 -1.50173 + 7.55686 0.10194 -1.37575 + 7.55565 0.10187 -1.37575 + 7.46255 -1.30153 -1.25655 + 7.17737 -2.46138 -1.14380 + 6.73565 -3.39082 -1.03712 + 6.17102 -4.10223 -0.93615 + 5.51531 -4.60722 -0.84053 + 5.51543 -4.60313 -0.84053 + 4.79938 -4.91239 -0.74974 + 4.05103 -5.03534 -0.66309 + 3.29769 -4.97999 -0.57993 + 2.56561 -4.75302 -0.49963 + 1.88010 -4.35975 -0.42156 + 1.88022 -4.35824 -0.42156 + 1.26614 -3.80264 -0.34503 + 0.74740 -3.08747 -0.26958 + 0.34778 -2.21464 -0.19488 + 0.09084 -1.18534 -0.12058 + -0.00002 -0.00011 -0.04636 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9133,139 +9223,139 @@ Status character 0.00000 0.00000 95.49049 10.12752 1 0 A 0.00000 0.00000 109.13199 11.57431 1 0 A 0.00000 0.00000 122.77349 13.02110 1 0 A - 0.77157 0.00000 136.41499 14.46788 110 0 - - 0.77157 0.00000 111.45332 14.46788 110 0 - - 1.74560 0.00000 118.88354 15.43241 110 0 - - 2.71962 0.00000 126.31376 16.39693 110 0 - - 3.69361 0.00000 133.74398 17.36146 110 0 - - 4.66752 0.00000 141.17421 18.32599 110 0 - - 5.64134 0.00000 148.60443 19.29051 110 0 - - 5.64134 0.00000 140.04174 19.29051 110 0 - - 5.80422 0.39240 141.19755 19.44972 110 0 - - 5.96707 0.78480 142.35336 19.60893 110 0 - - 6.12988 1.17720 143.50917 19.76814 110 0 - - 6.29264 1.56960 144.66498 19.92736 110 0 - - 6.45534 1.96200 145.82080 20.08657 110 0 - - 6.45534 1.96200 141.80292 20.08657 110 0 - - 6.94296 3.13920 145.17481 20.56420 110 0 - - 7.42968 4.31640 148.54670 21.04183 110 0 - - 7.91528 5.49360 151.91860 21.51947 110 0 - - 8.39958 6.67080 155.29049 21.99710 110 0 - - 8.88238 7.84800 158.66238 22.47473 110 0 - - 8.88238 7.84800 153.05638 22.47473 110 0 - - 9.36354 9.02520 156.30914 22.95236 110 0 - - 9.84318 10.20240 159.56189 23.43000 110 0 - - 10.32148 11.37960 162.81464 23.90763 110 0 - - 10.79865 12.55680 166.06740 24.38526 110 0 - - 11.27486 13.73400 169.32015 24.86290 110 0 - - 11.27486 13.73400 164.25619 24.86290 110 0 - - 11.75038 14.91120 167.41166 25.34053 110 0 - - 12.22571 16.08840 170.56714 25.81816 110 0 - - 12.70146 17.26560 173.72261 26.29580 110 0 - - 13.17819 18.44280 176.87808 26.77343 110 0 - - 13.65650 19.62000 180.03355 27.25106 110 0 - - 19.39187 19.62000 112.91072 24.82969 110 0 - - 19.48624 20.92800 113.33345 24.92265 110 0 - - 19.58217 22.23600 113.75618 25.01561 110 0 - - 19.67997 23.54400 114.17890 25.10857 110 0 - - 19.77992 24.85200 114.60163 25.20153 110 0 - - 19.88234 26.16000 115.02436 25.29449 110 0 - - 19.88234 26.16000 114.42115 25.29449 110 0 - - 19.98749 27.46800 114.84166 25.38745 110 0 - - 20.09546 28.77600 115.26217 25.48041 110 0 - - 20.20629 30.08400 115.68268 25.57337 110 0 - - 20.32004 31.39200 116.10319 25.66633 110 0 - - 20.43676 32.70000 116.52370 25.75929 110 0 - - 20.43676 32.70000 116.01583 25.75929 110 0 - - 20.55645 34.00800 116.43451 25.85225 110 0 - - 20.67895 35.31600 116.85318 25.94521 110 0 - - 20.80404 36.62400 117.27186 26.03817 110 0 - - 20.93152 37.93200 117.69054 26.13113 110 0 - - 21.06117 39.24000 118.10921 26.22409 110 0 - - 15.87413 39.24000 183.43874 28.78144 110 0 - - 16.34408 40.22100 185.97557 29.17947 110 0 - - 16.81627 41.20200 188.51241 29.57750 110 0 - - 17.29043 42.18300 191.04924 29.97553 110 0 - - 17.76625 43.16400 193.58607 30.37355 110 0 - - 18.24346 44.14500 196.12290 30.77158 110 0 - - 18.24346 44.14500 192.60019 30.77158 110 0 - - 18.72179 45.12600 195.09146 31.16961 110 0 - - 19.20105 46.10700 197.58272 31.56764 110 0 - - 19.68111 47.08800 200.07399 31.96566 110 0 - - 20.16179 48.06900 202.56525 32.36369 110 0 - - 20.64294 49.05000 205.05652 32.76172 110 0 - - 20.64294 49.05000 201.00495 32.76172 110 0 - - 21.36524 50.52150 204.66801 33.35876 110 0 - - 22.08809 51.99300 208.33107 33.95580 110 0 - - 22.81140 53.46450 211.99414 34.55284 110 0 - - 23.53512 54.93600 215.65720 35.14988 110 0 - - 24.25917 56.40750 219.32027 35.74693 110 0 - - 24.25917 56.40750 214.81611 35.74693 110 0 - - 24.98356 57.87900 218.40395 36.34397 110 0 - - 25.70859 59.35050 221.99178 36.94101 110 0 - - 26.43457 60.82200 225.57962 37.53805 110 0 - - 27.16183 62.29350 229.16745 38.13509 110 0 - - 27.89068 63.76500 232.75529 38.73213 110 0 - - 27.89068 63.76500 228.61475 38.73213 110 0 - - 28.62151 65.23650 232.13876 39.32917 110 0 - - 29.35485 66.70800 235.66278 39.92621 110 0 - - 30.09124 68.17950 239.18679 40.52326 110 0 - - 30.83121 69.65100 242.71080 41.12030 110 0 - - 31.57531 71.12250 246.23481 41.71734 110 0 - - 31.57531 71.12250 242.40131 41.71734 110 0 - - 32.32410 72.59400 245.87046 42.31438 110 0 - - 33.07818 74.06550 249.33961 42.91142 110 0 - - 33.83810 75.53700 252.80875 43.50846 110 0 - - 34.60444 77.00850 256.27790 44.10550 110 0 - - 35.37774 78.48000 259.74705 44.70255 110 0 - - 35.37774 78.48000 256.17685 44.70255 110 0 - - 36.15858 79.95150 259.59831 45.29959 110 0 - - 36.94740 81.42300 263.01977 45.89663 110 0 - - 37.74456 82.89450 266.44124 46.49367 110 0 - - 38.55042 84.36600 269.86270 47.09071 110 0 - - 39.36534 85.83750 273.28417 47.68775 110 0 - - 39.36534 85.83750 269.94257 47.68775 110 0 - - 40.18965 87.30900 273.32219 48.28479 110 0 - - 41.02339 88.78050 276.70182 48.88183 110 0 - - 41.86643 90.25200 280.08145 49.47888 110 0 - - 42.71866 91.72350 283.46108 50.07592 110 0 - - 43.57998 93.19500 286.84071 50.67296 110 0 - - 43.57998 93.19500 283.69963 50.67296 110 0 - - 44.45021 94.66650 287.04225 51.27000 110 0 - - 45.32862 96.13800 290.38487 51.86704 110 0 - - 46.21430 97.60950 293.72749 52.46408 110 0 - - 47.10633 99.08100 297.07011 53.06112 110 0 - - 48.00379 100.55250 300.41273 53.65817 110 0 - - 48.00379 100.55250 297.44910 53.65817 110 0 - - 48.90564 102.02400 300.75875 54.25521 110 0 - - 49.81003 103.49550 304.06839 54.85225 110 0 - - 50.71486 104.96700 307.37804 55.44929 110 0 - - 51.61801 106.43850 310.68768 56.04633 110 0 - - 52.51737 107.91000 313.99732 56.64337 110 0 - + 1.00905 0.00000 136.41499 14.46788 110 0 - + 1.00905 0.00000 111.45332 14.46788 110 0 - + 1.97684 0.00000 118.88354 15.43241 110 0 - + 2.94462 0.00000 126.31376 16.39693 110 0 - + 3.91236 0.00000 133.74398 17.36146 110 0 - + 4.88002 0.00000 141.17421 18.32599 110 0 - + 5.84757 0.00000 148.60443 19.29051 110 0 - + 5.84757 0.00000 140.04174 19.29051 110 0 - + 6.00794 0.39240 141.19755 19.44972 110 0 - + 6.16827 0.78480 142.35336 19.60893 110 0 - + 6.32856 1.17720 143.50917 19.76814 110 0 - + 6.48879 1.56960 144.66498 19.92736 110 0 - + 6.64896 1.96200 145.82080 20.08657 110 0 - + 6.64896 1.96200 141.80292 20.08657 110 0 - + 7.12895 3.13920 145.17481 20.56420 110 0 - + 7.60797 4.31640 148.54670 21.04183 110 0 - + 8.08586 5.49360 151.91860 21.51947 110 0 - + 8.56247 6.67080 155.29049 21.99710 110 0 - + 9.03760 7.84800 158.66238 22.47473 110 0 - + 9.03760 7.84800 153.05638 22.47473 110 0 - + 9.51118 9.02520 156.30914 22.95236 110 0 - + 9.98333 10.20240 159.56189 23.43000 110 0 - + 10.45427 11.37960 162.81464 23.90763 110 0 - + 10.92422 12.55680 166.06740 24.38526 110 0 - + 11.39337 13.73400 169.32015 24.86290 110 0 - + 11.39337 13.73400 164.25619 24.86290 110 0 - + 11.86201 14.91120 167.41166 25.34053 110 0 - + 12.33066 16.08840 170.56714 25.81816 110 0 - + 12.79991 17.26560 173.72261 26.29580 110 0 - + 13.27035 18.44280 176.87808 26.77343 110 0 - + 13.74259 19.62000 180.03355 27.25106 110 0 - + 19.42630 19.62000 112.91072 24.82969 110 0 - + 19.51807 20.92800 113.33345 24.92265 110 0 - + 19.61151 22.23600 113.75618 25.01561 110 0 - + 19.70692 23.54400 114.17890 25.10857 110 0 - + 19.80459 24.85200 114.60163 25.20153 110 0 - + 19.90484 26.16000 115.02436 25.29449 110 0 - + 19.90484 26.16000 114.42115 25.29449 110 0 - + 20.00792 27.46800 114.84166 25.38745 110 0 - + 20.11392 28.77600 115.26217 25.48041 110 0 - + 20.22290 30.08400 115.68268 25.57337 110 0 - + 20.33489 31.39200 116.10319 25.66633 110 0 - + 20.44995 32.70000 116.52370 25.75929 110 0 - + 20.44995 32.70000 116.01583 25.75929 110 0 - + 20.56808 34.00800 116.43451 25.85225 110 0 - + 20.68912 35.31600 116.85318 25.94521 110 0 - + 20.81284 36.62400 117.27186 26.03817 110 0 - + 20.93904 37.93200 117.69054 26.13113 110 0 - + 21.06750 39.24000 118.10921 26.22409 110 0 - + 15.88998 39.24000 183.43874 28.78144 110 0 - + 16.35784 40.22100 185.97557 29.17947 110 0 - + 16.82807 41.20200 188.51241 29.57750 110 0 - + 17.30037 42.18300 191.04924 29.97553 110 0 - + 17.77446 43.16400 193.58607 30.37355 110 0 - + 18.25004 44.14500 196.12290 30.77158 110 0 - + 18.25004 44.14500 192.60019 30.77158 110 0 - + 18.72685 45.12600 195.09146 31.16961 110 0 - + 19.20469 46.10700 197.58272 31.56764 110 0 - + 19.68343 47.08800 200.07399 31.96566 110 0 - + 20.16288 48.06900 202.56525 32.36369 110 0 - + 20.64290 49.05000 205.05652 32.76172 110 0 - + 20.64290 49.05000 201.00495 32.76172 110 0 - + 21.36367 50.52150 204.66801 33.35876 110 0 - + 22.08517 51.99300 208.33107 33.95580 110 0 - + 22.80731 53.46450 211.99414 34.55284 110 0 - + 23.53002 54.93600 215.65720 35.14988 110 0 - + 24.25321 56.40750 219.32027 35.74693 110 0 - + 24.25321 56.40750 214.81611 35.74693 110 0 - + 24.97688 57.87900 218.40395 36.34397 110 0 - + 25.70132 59.35050 221.99178 36.94101 110 0 - + 26.42683 60.82200 225.57962 37.53805 110 0 - + 27.15372 62.29350 229.16745 38.13509 110 0 - + 27.88231 63.76500 232.75529 38.73213 110 0 - + 27.88231 63.76500 228.61475 38.73213 110 0 - + 28.61296 65.23650 232.13876 39.32917 110 0 - + 29.34621 66.70800 235.66278 39.92621 110 0 - + 30.08258 68.17950 239.18679 40.52326 110 0 - + 30.82260 69.65100 242.71080 41.12030 110 0 - + 31.56679 71.12250 246.23481 41.71734 110 0 - + 31.56679 71.12250 242.40131 41.71734 110 0 - + 32.31573 72.59400 245.87046 42.31438 110 0 - + 33.06999 74.06550 249.33961 42.91142 110 0 - + 33.83014 75.53700 252.80875 43.50846 110 0 - + 34.59673 77.00850 256.27790 44.10550 110 0 - + 35.37032 78.48000 259.74705 44.70255 110 0 - + 35.37032 78.48000 256.17685 44.70255 110 0 - + 36.15147 79.95150 259.59831 45.29959 110 0 - + 36.94060 81.42300 263.01977 45.89663 110 0 - + 37.73809 82.89450 266.44124 46.49367 110 0 - + 38.54429 84.36600 269.86270 47.09071 110 0 - + 39.35956 85.83750 273.28417 47.68775 110 0 - + 39.35956 85.83750 269.94257 47.68775 110 0 - + 40.18422 87.30900 273.32219 48.28479 110 0 - + 41.01830 88.78050 276.70182 48.88183 110 0 - + 41.86169 90.25200 280.08145 49.47888 110 0 - + 42.71426 91.72350 283.46108 50.07592 110 0 - + 43.57592 93.19500 286.84071 50.67296 110 0 - + 43.57592 93.19500 283.69963 50.67296 110 0 - + 44.44648 94.66650 287.04225 51.27000 110 0 - + 45.32520 96.13800 290.38487 51.86704 110 0 - + 46.21119 97.60950 293.72749 52.46408 110 0 - + 47.10351 99.08100 297.07011 53.06112 110 0 - + 48.00125 100.55250 300.41273 53.65817 110 0 - + 48.00125 100.55250 297.44910 53.65817 110 0 - + 48.90337 102.02400 300.75875 54.25521 110 0 - + 49.80802 103.49550 304.06839 54.85225 110 0 - + 50.71309 104.96700 307.37804 55.44929 110 0 - + 51.61647 106.43850 310.68768 56.04633 110 0 - + 52.51604 107.91000 313.99732 56.64337 110 0 - 18.59731 107.91000 734.00940 36.53923 1 0 A 18.88833 109.38150 745.49575 37.11102 1 0 A - 19.96389 110.85300 756.98209 37.68281 110 0 - - 21.91705 112.32450 768.46843 38.25461 110 0 - - 23.81224 113.79600 779.95478 38.82640 110 0 - - 25.64307 115.26750 791.44112 39.39820 110 0 - - 25.64307 115.26750 738.87493 39.39820 110 0 - - 27.40620 116.73900 749.59837 39.96999 110 0 - - 29.10497 118.21050 760.32181 40.54178 110 0 - - 30.74303 119.68200 771.04525 41.11358 110 0 - - 32.32401 121.15350 781.76869 41.68537 110 0 - - 33.85155 122.62500 792.49213 42.25717 110 0 - - 33.85155 122.62500 772.62437 42.25717 110 0 - - 35.33081 124.09650 783.07897 42.82896 110 0 - - 36.76876 125.56800 793.53357 43.40075 110 0 - - 38.17176 127.03950 803.98818 43.97255 110 0 - - 39.54618 128.51100 814.44278 44.54434 110 0 - - 40.89839 129.98250 824.89738 45.11614 110 0 - - 40.89839 129.98250 814.08791 45.11614 110 0 - - 42.23513 131.45400 824.40552 45.68793 110 0 - - 43.56112 132.92550 834.72313 46.25972 110 0 - - 44.87969 134.39700 845.04073 46.83152 110 0 - - 46.19416 135.86850 855.35834 47.40331 110 0 - - 47.50787 137.34000 865.67594 47.97510 110 0 - + 19.95915 110.85300 756.98209 37.68281 110 0 - + 21.91316 112.32450 768.46843 38.25461 110 0 - + 23.80913 113.79600 779.95478 38.82640 110 0 - + 25.64067 115.26750 791.44112 39.39820 110 0 - + 25.64067 115.26750 738.87493 39.39820 110 0 - + 27.40445 116.73900 749.59837 39.96999 110 0 - + 29.10382 118.21050 760.32181 40.54178 110 0 - + 30.74241 119.68200 771.04525 41.11358 110 0 - + 32.32388 121.15350 781.76869 41.68537 110 0 - + 33.85187 122.62500 792.49213 42.25717 110 0 - + 33.85187 122.62500 772.62437 42.25717 110 0 - + 35.33154 124.09650 783.07897 42.82896 110 0 - + 36.76987 125.56800 793.53357 43.40075 110 0 - + 38.17323 127.03950 803.98818 43.97255 110 0 - + 39.54799 128.51100 814.44278 44.54434 110 0 - + 40.90053 129.98250 824.89738 45.11614 110 0 - + 40.90053 129.98250 814.08791 45.11614 110 0 - + 42.23758 131.45400 824.40552 45.68793 110 0 - + 43.56388 132.92550 834.72313 46.25972 110 0 - + 44.88275 134.39700 845.04073 46.83152 110 0 - + 46.19752 135.86850 855.35834 47.40331 110 0 - + 47.51152 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9278,9 +9368,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 21.001 'Clay' - -4.00 40.354 'Peat' - -6.00 233.170 'Clay' + 0.00 21.417 'Clay' + -4.00 40.391 'Peat' + -6.00 233.144 'Clay' -13.00 99.644 'Sand' [END OF DATA] [END OF TABLE] @@ -9358,26 +9448,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 62.84700 0.00000 12.71803 0.00000 - -3.40000 62.86100 0.00000 49.82607 0.00000 - -4.00000 62.96500 0.00000 97.72394 0.00000 - -4.66667 62.25400 0.00000 121.96325 0.00000 - -5.33333 61.68900 0.00000 147.38471 0.00000 - -6.00000 61.22700 0.00000 174.01379 0.00000 - -6.50000 61.75400 0.00000 222.69748 0.00000 - -7.00000 62.12300 0.00000 275.90757 0.00000 - -7.75000 62.52000 0.00000 364.24778 0.00000 - -8.50000 62.80800 0.00000 462.83865 0.00000 - -9.25000 63.03300 0.00000 571.68935 0.00000 - -10.00000 63.21400 0.00000 690.80325 0.00000 - -10.75000 63.36600 0.00000 820.18139 0.00000 - -11.50000 63.49500 0.00000 959.82388 0.00000 - -12.25000 63.60700 0.00000 1109.73038 0.00000 - -13.00000 63.70600 0.00000 1269.90038 0.00000 - -13.75000 67.31700 0.00000 1645.63390 0.00000 - -14.50000 68.75300 33.35500 2034.73617 5.90482 - -15.25000 69.61600 33.08900 2453.28354 17.82374 - -16.00000 70.20300 32.85200 2905.24722 30.87200 + -2.80000 62.44000 0.00000 34.67704 0.00000 + -3.40000 62.62900 0.00000 75.97227 0.00000 + -4.00000 62.79500 0.00000 123.87621 0.00000 + -4.66667 62.24800 0.00000 148.10002 0.00000 + -5.33333 61.78700 0.00000 173.53003 0.00000 + -6.00000 61.39400 0.00000 200.18091 0.00000 + -6.50000 61.81600 0.00000 248.84128 0.00000 + -7.00000 62.13400 0.00000 302.04465 0.00000 + -7.75000 62.49500 0.00000 390.38747 0.00000 + -8.50000 62.77000 0.00000 488.98710 0.00000 + -9.25000 62.98900 0.00000 597.84879 0.00000 + -10.00000 63.16900 0.00000 716.97434 0.00000 + -10.75000 63.32200 0.00000 846.36414 0.00000 + -11.50000 63.45300 0.00000 986.01798 0.00000 + -12.25000 63.56700 0.00000 1135.93537 0.00000 + -13.00000 63.66800 0.00000 1296.11576 0.00000 + -13.75000 67.25000 0.00000 1672.74136 0.00000 + -14.50000 68.68800 0.00000 2062.50982 0.00000 + -15.25000 69.55600 32.99300 2481.55792 10.49418 + -16.00000 70.14900 32.76900 2933.90990 23.54923 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9394,26 +9484,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 21.19672 0.00000 0.64302 0.00000 11.41450 - -3.10000 5.57100 61.84674 0.00000 0.64302 0.00000 11.10155 - -3.70000 9.28500 79.82978 0.00000 0.64302 0.00000 8.59771 - -4.33333 11.53867 36.35896 0.00000 0.58588 0.00000 3.15105 - -5.00000 12.33200 38.13220 0.00000 0.58588 0.00000 3.09213 - -5.66667 13.12533 39.94361 0.00000 0.58588 0.00000 3.04325 - -6.25000 15.06950 97.36739 0.00000 0.64302 0.00000 6.46122 - -6.75000 18.16450 106.42016 0.00000 0.64302 0.00000 5.85869 - -7.37500 22.03325 117.78695 0.00000 0.64302 0.00000 5.34587 - -8.12500 26.67575 131.45449 0.00000 0.64302 0.00000 4.92786 - -8.87500 31.31825 145.13427 0.00000 0.64302 0.00000 4.63418 - -9.62500 35.96075 158.81852 0.00000 0.64302 0.00000 4.41644 - -10.37500 40.60325 172.50419 0.00000 0.64302 0.00000 4.24853 - -11.12500 45.24575 186.18998 0.00000 0.64302 0.00000 4.11508 - -11.87500 49.88825 199.87533 0.00000 0.64302 0.00000 4.00646 - -12.62500 54.53075 213.56001 0.00000 0.64302 0.00000 3.91632 - -13.37500 60.29825 500.97803 0.00000 0.41479 0.00000 8.30833 - -14.12500 67.19075 518.80302 7.87309 0.41479 0.11718 7.72135 - -14.87500 74.08325 558.06317 15.89189 0.41479 0.21451 7.53292 - -15.62500 80.97575 602.61823 17.39768 0.41479 0.21485 7.44196 + -2.50000 1.85700 57.79507 0.00000 0.64302 0.00000 31.12282 + -3.10000 5.57100 68.82539 0.00000 0.64302 0.00000 12.35423 + -3.70000 9.28500 79.83989 0.00000 0.64302 0.00000 8.59880 + -4.33333 11.53867 36.33573 0.00000 0.58588 0.00000 3.14904 + -5.00000 12.33200 38.14501 0.00000 0.58588 0.00000 3.09317 + -5.66667 13.12533 39.97632 0.00000 0.58588 0.00000 3.04574 + -6.25000 15.06950 97.32074 0.00000 0.64302 0.00000 6.45813 + -6.75000 18.16450 106.40674 0.00000 0.64302 0.00000 5.85795 + -7.37500 22.03325 117.79043 0.00000 0.64302 0.00000 5.34603 + -8.12500 26.67575 131.46617 0.00000 0.64302 0.00000 4.92830 + -8.87500 31.31825 145.14892 0.00000 0.64302 0.00000 4.63464 + -9.62500 35.96075 158.83407 0.00000 0.64302 0.00000 4.41687 + -10.37500 40.60325 172.51974 0.00000 0.64302 0.00000 4.24891 + -11.12500 45.24575 186.20511 0.00000 0.64302 0.00000 4.11542 + -11.87500 49.88825 199.88985 0.00000 0.64302 0.00000 4.00675 + -12.62500 54.53075 213.57385 0.00000 0.64302 0.00000 3.91658 + -13.37500 60.29825 502.16747 0.00000 0.41479 0.00000 8.32806 + -14.12500 67.19075 519.69128 0.00000 0.41479 0.00000 7.73457 + -14.87500 74.08325 558.73080 13.99224 0.41479 0.18887 7.54193 + -15.62500 80.97575 603.13597 17.40674 0.41479 0.21496 7.44835 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9454,126 +9544,126 @@ Status character 0.00000 1.17720 0.00000 0.00000 -1 0 - 0.00000 1.56960 0.00000 0.00000 -1 0 - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 8.47869 3.13920 8.47869 0.47763 202 100 P - 14.56742 4.31640 16.95738 0.95527 110 86 - - 15.03708 5.49360 25.43606 1.43290 110 59 - - 15.50805 6.67080 33.91475 1.91053 110 46 - - 15.98052 7.84800 42.39344 2.38817 110 38 - - 15.98052 7.84800 41.23116 2.38817 110 39 - - 16.45462 9.02520 49.47739 2.86580 110 33 - - 16.93025 10.20240 57.72362 3.34343 110 29 - - 17.40721 11.37960 65.96985 3.82106 110 26 - - 17.88531 12.55680 74.21609 4.29870 110 24 - - 18.36437 13.73400 82.46232 4.77633 110 22 - - 18.36437 13.73400 63.86382 4.77633 110 29 - - 18.84412 14.91120 70.25021 5.25396 110 27 - - 19.32405 16.08840 76.63659 5.73160 110 25 - - 19.80357 17.26560 83.02297 6.20923 110 24 - - 20.28210 18.44280 89.40935 6.68686 110 23 - - 20.75905 19.62000 95.79574 7.16450 110 22 - - 11.96572 19.62000 35.10904 6.52790 110 34 - - 12.05727 20.92800 35.60901 6.62086 110 34 - - 12.14726 22.23600 36.10898 6.71382 110 34 - - 12.23538 23.54400 36.60895 6.80678 110 33 - - 12.32135 24.85200 37.10891 6.89974 110 33 - - 12.40485 26.16000 37.60888 6.99270 110 33 - - 12.40485 26.16000 36.90565 6.99270 110 34 - - 12.48562 27.46800 37.39627 7.08566 110 33 - - 12.56357 28.77600 37.88689 7.17862 110 33 - - 12.63866 30.08400 38.37751 7.27158 110 33 - - 12.71083 31.39200 38.86813 7.36454 110 33 - - 12.78003 32.70000 39.35874 7.45750 110 32 - - 12.78003 32.70000 38.73646 7.45750 110 33 - - 12.84626 34.00800 39.21932 7.55046 110 33 - - 12.90968 35.31600 39.70218 7.64342 110 33 - - 12.97051 36.62400 40.18504 7.73638 110 32 - - 13.02895 37.93200 40.66791 7.82934 110 32 - - 13.08522 39.24000 41.15077 7.92230 110 32 - - 21.60219 39.24000 87.36865 8.69488 110 25 - - 21.92830 40.22100 91.36815 9.09290 110 24 - - 22.25216 41.20200 95.36764 9.49093 110 23 - - 22.57406 42.18300 99.36714 9.88896 110 23 - - 22.89429 43.16400 103.36664 10.28699 110 22 - - 23.21313 44.14500 107.36613 10.68501 110 22 - - 23.21313 44.14500 97.35384 10.68501 110 24 - - 23.53086 45.12600 100.98037 11.08304 110 23 - - 23.84765 46.10700 104.60690 11.48107 110 23 - - 24.16366 47.08800 108.23343 11.87910 110 22 - - 24.47903 48.06900 111.85996 12.27712 110 22 - - 24.79393 49.05000 115.48648 12.67515 110 21 - - 24.79393 49.05000 105.37785 12.67515 110 24 - - 25.26571 50.52150 110.34149 13.27219 110 23 - - 25.73695 51.99300 115.30513 13.86923 110 22 - - 26.20772 53.46450 120.26878 14.46628 110 22 - - 26.67808 54.93600 125.23242 15.06332 110 21 - - 27.14812 56.40750 130.19606 15.66036 110 21 - - 27.14812 56.40750 120.01569 15.66036 110 23 - - 27.61781 57.87900 124.59121 16.25740 110 22 - - 28.08686 59.35050 129.16673 16.85444 110 22 - - 28.55496 60.82200 133.74225 17.45148 110 21 - - 29.02179 62.29350 138.31778 18.04852 110 21 - - 29.48702 63.76500 142.89330 18.64557 110 21 - - 29.48702 63.76500 134.37719 18.64557 110 22 - - 29.95027 65.23650 138.68002 19.24261 110 22 - - 30.41101 66.70800 142.98285 19.83965 110 21 - - 30.86871 68.17950 147.28569 20.43669 110 21 - - 31.32281 69.65100 151.58852 21.03373 110 21 - - 31.77280 71.12250 155.89135 21.63077 110 20 - - 31.77280 71.12250 148.56686 21.63077 110 21 - - 32.21809 72.59400 152.66753 22.22781 110 21 - - 32.65810 74.06550 156.76819 22.82485 110 21 - - 33.09226 75.53700 160.86886 23.42190 110 21 - - 33.52000 77.00850 164.96952 24.01894 110 20 - - 33.94078 78.48000 169.07019 24.61598 110 20 - - 33.94078 78.48000 162.64229 24.61598 110 21 - - 34.35402 79.95150 166.58705 25.21302 110 21 - - 34.75929 81.42300 170.53181 25.81006 110 20 - - 35.15621 82.89450 174.47657 26.40710 110 20 - - 35.54444 84.36600 178.42134 27.00414 110 20 - - 35.92360 85.83750 182.36610 27.60119 110 20 - - 35.92360 85.83750 176.63785 27.60119 110 20 - - 36.29337 87.30900 180.45870 28.19823 110 20 - - 36.65372 88.78050 184.27955 28.79527 110 20 - - 37.00476 90.25200 188.10041 29.39231 110 20 - - 37.34661 91.72350 191.92126 29.98935 110 19 - - 37.67937 93.19500 195.74212 30.58639 110 19 - - 37.67937 93.19500 190.57533 30.58639 110 20 - - 38.00322 94.66650 194.29533 31.18343 110 20 - - 38.31889 96.13800 198.01533 31.78047 110 19 - - 38.62730 97.60950 201.73533 32.37752 110 19 - - 38.92935 99.08100 205.45533 32.97456 110 19 - - 39.22597 100.55250 209.17533 33.57160 110 19 - - 39.22597 100.55250 204.46924 33.57160 110 19 - - 39.51821 102.02400 208.10555 34.16864 110 19 - - 39.80789 103.49550 211.74185 34.76568 110 19 - - 40.09715 104.96700 215.37816 35.36272 110 19 - - 40.38808 106.43850 219.01447 35.95976 110 18 - - 40.68281 107.91000 222.65077 36.55681 110 18 - - 44.21189 107.91000 472.34543 23.58188 110 9 - - 43.30555 109.38150 483.79847 24.15368 110 9 - - 42.44440 110.85300 495.25151 24.72547 110 9 - - 41.63483 112.32450 506.70455 25.29727 110 8 - - 40.88322 113.79600 518.15759 25.86906 110 8 - - 40.19598 115.26750 529.61062 26.44085 110 8 - - 40.19598 115.26750 492.19333 26.44085 110 8 - - 39.57644 116.73900 502.83721 27.01265 110 8 - - 39.02125 118.21050 513.48109 27.58444 110 8 - - 38.52678 119.68200 524.12496 28.15623 110 7 - - 38.08939 121.15350 534.76884 28.72803 110 7 - - 37.70543 122.62500 545.41271 29.29982 110 7 - - 37.70543 122.62500 532.10284 29.29982 110 7 - - 37.36977 124.09650 542.48697 29.87162 110 7 - - 37.07541 125.56800 552.87110 30.44341 110 7 - - 36.81599 127.03950 563.25523 31.01520 110 7 - - 36.58516 128.51100 573.63936 31.58700 110 6 - - 36.37653 129.98250 584.02349 32.15879 110 6 - - 36.37653 129.98250 576.97138 32.15879 110 6 - - 36.18338 131.45400 587.23012 32.73059 110 6 - - 36.00098 132.92550 597.48886 33.30238 110 6 - - 35.82600 134.39700 607.74760 33.87417 110 6 - - 35.65512 135.86850 618.00634 34.44597 110 6 - - 35.48500 137.34000 628.26508 35.01776 110 6 - + 0.00003 1.96200 0.00003 0.00000 202 100 P + 13.91288 3.13920 23.11803 0.47763 110 60 - + 14.38913 4.31640 46.23605 0.95527 110 31 - + 14.86650 5.49360 69.35408 1.43290 110 21 - + 15.34517 6.67080 92.47211 1.91053 110 17 - + 15.82529 7.84800 115.59014 2.38817 110 14 - + 15.82529 7.84800 45.88359 2.38817 110 34 - + 16.30699 9.02520 55.06031 2.86580 110 30 - + 16.79010 10.20240 64.23703 3.34343 110 26 - + 17.27442 11.37960 73.41375 3.82106 110 24 - + 17.75974 12.55680 82.59047 4.29870 110 22 - + 18.24586 13.73400 91.76719 4.77633 110 20 - + 18.24586 13.73400 63.87191 4.77633 110 29 - + 18.73249 14.91120 70.25910 5.25396 110 27 - + 19.21910 16.08840 76.64629 5.73160 110 25 - + 19.70512 17.26560 83.03348 6.20923 110 24 - + 20.18994 18.44280 89.42067 6.68686 110 23 - + 20.67297 19.62000 95.80786 7.16450 110 22 - + 11.93129 19.62000 35.08661 6.52790 110 34 - + 12.02544 20.92800 35.58626 6.62086 110 34 - + 12.11792 22.23600 36.08590 6.71382 110 34 - + 12.20843 23.54400 36.58555 6.80678 110 33 - + 12.29668 24.85200 37.08520 6.89974 110 33 - + 12.38235 26.16000 37.58485 6.99270 110 33 - + 12.38235 26.16000 36.91805 6.99270 110 34 - + 12.46519 27.46800 37.40884 7.08566 110 33 - + 12.54511 28.77600 37.89962 7.17862 110 33 - + 12.62205 30.08400 38.39040 7.27158 110 33 - + 12.69598 31.39200 38.88119 7.36454 110 33 - + 12.76684 32.70000 39.37197 7.45750 110 32 - + 12.76684 32.70000 38.76817 7.45750 110 33 - + 12.83463 34.00800 39.25143 7.55046 110 33 - + 12.89951 35.31600 39.73469 7.64342 110 32 - + 12.96171 36.62400 40.21794 7.73638 110 32 - + 13.02143 37.93200 40.70120 7.82934 110 32 - + 13.07889 39.24000 41.18446 7.92230 110 32 - + 21.58634 39.24000 87.32679 8.69488 110 25 - + 21.91454 40.22100 91.32437 9.09290 110 24 - + 22.24036 41.20200 95.32195 9.49093 110 23 - + 22.56411 42.18300 99.31953 9.88896 110 23 - + 22.88608 43.16400 103.31711 10.28699 110 22 - + 23.20655 44.14500 107.31469 10.68501 110 22 - + 23.20655 44.14500 97.34156 10.68501 110 24 - + 23.52580 45.12600 100.96763 11.08304 110 23 - + 23.84401 46.10700 104.59370 11.48107 110 23 - + 24.16134 47.08800 108.21977 11.87910 110 22 - + 24.47793 48.06900 111.84584 12.27712 110 22 - + 24.79397 49.05000 115.47191 12.67515 110 21 - + 24.79397 49.05000 105.38096 12.67515 110 24 - + 25.26729 50.52150 110.34475 13.27219 110 23 - + 25.73987 51.99300 115.30854 13.86923 110 22 - + 26.21181 53.46450 120.27233 14.46628 110 22 - + 26.68318 54.93600 125.23612 15.06332 110 21 - + 27.15408 56.40750 130.19991 15.66036 110 21 - + 27.15408 56.40750 120.02635 15.66036 110 23 - + 27.62449 57.87900 124.60227 16.25740 110 22 - + 28.09413 59.35050 129.17820 16.85444 110 22 - + 28.56270 60.82200 133.75413 17.45148 110 21 - + 29.02989 62.29350 138.33006 18.04852 110 21 - + 29.49539 63.76500 142.90599 18.64557 110 21 - + 29.49539 63.76500 134.39075 18.64557 110 22 - + 29.95881 65.23650 138.69402 19.24261 110 22 - + 30.41965 66.70800 142.99728 19.83965 110 21 - + 30.87737 68.17950 147.30055 20.43669 110 21 - + 31.33143 69.65100 151.60382 21.03373 110 21 - + 31.78132 71.12250 155.90708 21.63077 110 20 - + 31.78132 71.12250 148.58141 21.63077 110 21 - + 32.22647 72.59400 152.68247 22.22781 110 21 - + 32.66628 74.06550 156.78354 22.82485 110 21 - + 33.10022 75.53700 160.88461 23.42190 110 21 - + 33.52771 77.00850 164.98567 24.01894 110 20 - + 33.94820 78.48000 169.08674 24.61598 110 20 - + 33.94820 78.48000 162.65695 24.61598 110 21 - + 34.36114 79.95150 166.60206 25.21302 110 21 - + 34.76608 81.42300 170.54718 25.81006 110 20 - + 35.16268 82.89450 174.49230 26.40710 110 20 - + 35.55056 84.36600 178.43742 27.00414 110 20 - + 35.92938 85.83750 182.38253 27.60119 110 20 - + 35.92938 85.83750 176.65220 27.60119 110 20 - + 36.29880 87.30900 180.47336 28.19823 110 20 - + 36.65880 88.78050 184.29453 28.79527 110 20 - + 37.00950 90.25200 188.11569 29.39231 110 20 - + 37.35100 91.72350 191.93686 29.98935 110 19 - + 37.68343 93.19500 195.75802 30.58639 110 19 - + 37.68343 93.19500 190.58918 30.58639 110 20 - + 38.00696 94.66650 194.30945 31.18343 110 20 - + 38.32231 96.13800 198.02972 31.78047 110 19 - + 38.63041 97.60950 201.74999 32.37752 110 19 - + 38.93217 99.08100 205.47026 32.97456 110 19 - + 39.22851 100.55250 209.19053 33.57160 110 19 - + 39.22851 100.55250 204.48250 33.57160 110 19 - + 39.52047 102.02400 208.11904 34.16864 110 19 - + 39.80991 103.49550 211.75558 34.76568 110 19 - + 40.09892 104.96700 215.39212 35.36272 110 19 - + 40.38962 106.43850 219.02867 35.95976 110 18 - + 40.68414 107.91000 222.66521 36.55681 110 18 - + 44.21853 107.91000 473.46689 23.58188 110 9 - + 43.31120 109.38150 484.94712 24.15368 110 9 - + 42.44913 110.85300 496.42735 24.72547 110 9 - + 41.63871 112.32450 507.90758 25.29727 110 8 - + 40.88633 113.79600 519.38782 25.86906 110 8 - + 40.19838 115.26750 530.86805 26.44085 110 8 - + 40.19838 115.26750 493.03603 26.44085 110 8 - + 39.57819 116.73900 503.69813 27.01265 110 8 - + 39.02241 118.21050 514.36023 27.58444 110 8 - + 38.52740 119.68200 525.02233 28.15623 110 7 - + 38.08952 121.15350 535.68443 28.72803 110 7 - + 37.70512 122.62500 546.34653 29.29982 110 7 - + 37.70512 122.62500 532.73942 29.29982 110 7 - + 37.36903 124.09650 543.13598 29.87162 110 7 - + 37.07429 125.56800 553.53253 30.44341 110 7 - + 36.81452 127.03950 563.92908 31.01520 110 7 - + 36.58335 128.51100 574.32563 31.58700 110 6 - + 36.37440 129.98250 584.72219 32.15879 110 6 - + 36.37440 129.98250 577.46709 32.15879 110 6 - + 36.18093 131.45400 587.73464 32.73059 110 6 - + 35.99822 132.92550 598.00220 33.30238 110 6 - + 35.82294 134.39700 608.26975 33.87417 110 6 - + 35.65176 135.86850 618.53730 34.44597 110 6 - + 35.48135 137.34000 628.80486 35.01776 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9586,10 +9676,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 29.430 'Clay' - -4.00 25.150 'Peat' - -6.00 224.198 'Clay' - -13.00 115.368 'Sand' + 0.00 29.868 'Clay' + -4.00 25.113 'Peat' + -6.00 224.224 'Clay' + -13.00 115.369 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9777,21 +9867,21 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.88 : Percentage mobilized resistance left + 12.76 : Percentage mobilized resistance left 9.50 : Percentage mobilized resistance right 267.34 : Effective left 323.34 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2075.06 : Max effective resistance left + 2095.11 : Max effective resistance left 3402.22 : Max effective resistance right --22107.90 : Max moment left +-22149.29 : Max moment left -32715.56 : Max moment right -2467.64 : Max mobilized moment left -2485.26 : Max mobilized moment right 76.73 : Vertical force left 84.85 : Vertical force right - 11.2 : Max mobilized moment percentage left + 11.1 : Max mobilized moment percentage left 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support @@ -10342,26 +10432,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 62.84700 0.00000 14.92602 0.00000 - -3.35000 62.87500 0.00000 57.35045 0.00000 - -4.00000 62.99400 0.00000 110.72992 0.00000 - -4.66667 62.32100 0.00000 136.50009 0.00000 - -5.33333 61.77800 0.00000 163.45078 0.00000 - -6.00000 61.33000 0.00000 191.60665 0.00000 - -6.50000 61.81300 0.00000 241.66068 0.00000 - -7.00000 62.16100 0.00000 296.24474 0.00000 - -7.75000 62.54200 0.00000 386.64724 0.00000 - -8.50000 62.82300 0.00000 487.29991 0.00000 - -9.25000 63.04300 0.00000 598.21140 0.00000 - -10.00000 63.22200 0.00000 719.38503 0.00000 - -10.75000 63.37200 0.00000 850.82198 0.00000 - -11.50000 63.50000 0.00000 992.52245 0.00000 - -12.25000 63.61100 0.00000 1144.48623 0.00000 - -13.00000 63.70900 0.00000 1306.71292 0.00000 - -13.75000 67.29800 0.00000 1688.40876 0.00000 - -14.50000 68.73100 33.38900 2083.09739 8.09702 - -15.25000 69.59400 33.12300 2507.07004 20.16261 - -16.00000 70.18100 32.88600 2964.36770 33.35786 + -2.70000 62.45700 0.00000 37.86568 0.00000 + -3.35000 62.65800 0.00000 83.49755 0.00000 + -4.00000 62.83400 0.00000 136.88390 0.00000 + -4.66667 62.30300 0.00000 162.63712 0.00000 + -5.33333 61.85300 0.00000 189.59360 0.00000 + -6.00000 61.46700 0.00000 217.76824 0.00000 + -6.50000 61.86300 0.00000 267.80287 0.00000 + -7.00000 62.16700 0.00000 322.38162 0.00000 + -7.75000 62.51700 0.00000 412.78740 0.00000 + -8.50000 62.78500 0.00000 513.44898 0.00000 + -9.25000 63.00000 0.00000 624.37146 0.00000 + -10.00000 63.17800 0.00000 745.55672 0.00000 + -10.75000 63.32900 0.00000 877.00529 0.00000 + -11.50000 63.45900 0.00000 1018.71707 0.00000 + -12.25000 63.57200 0.00000 1170.69171 0.00000 + -13.00000 63.67200 0.00000 1332.92875 0.00000 + -13.75000 67.23300 0.00000 1715.50908 0.00000 + -14.50000 68.66700 33.27900 2110.85977 0.75837 + -15.25000 69.53600 33.02800 2535.33101 12.83201 + -16.00000 70.12900 32.80300 2993.01596 26.03412 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -10378,26 +10468,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 22.96311 0.00000 0.64302 0.00000 11.41450 - -3.02500 6.03525 65.26835 0.00000 0.64302 0.00000 10.81452 - -3.67500 10.05875 82.12227 0.00000 0.64302 0.00000 8.16426 - -4.33333 12.46717 38.65526 0.00000 0.58588 0.00000 3.10056 - -5.00000 13.26050 40.42603 0.00000 0.58588 0.00000 3.04861 - -5.66667 14.05383 42.23381 0.00000 0.58588 0.00000 3.00515 - -6.25000 15.99800 100.10805 0.00000 0.64302 0.00000 6.25754 - -6.75000 19.09300 109.16812 0.00000 0.64302 0.00000 5.71770 - -7.37500 22.96175 120.53667 0.00000 0.64302 0.00000 5.24945 - -8.12500 27.60425 134.20357 0.00000 0.64302 0.00000 4.86170 - -8.87500 32.24675 147.88198 0.00000 0.64302 0.00000 4.58595 - -9.62500 36.88925 161.56484 0.00000 0.64302 0.00000 4.37973 - -10.37500 41.53175 175.24926 0.00000 0.64302 0.00000 4.21965 - -11.12500 46.17425 188.93396 0.00000 0.64302 0.00000 4.09176 - -11.87500 50.81675 202.61837 0.00000 0.64302 0.00000 3.98724 - -12.62500 55.45925 216.30225 0.00000 0.64302 0.00000 3.90020 - -13.37500 61.22675 508.92778 0.00000 0.41479 0.00000 8.31218 - -14.12500 68.11925 526.25151 10.79603 0.41479 0.15849 7.72544 - -14.87500 75.01175 565.29687 16.08746 0.41479 0.21447 7.53611 - -15.62500 81.90425 609.73021 17.59366 0.41479 0.21481 7.44443 + -2.37500 2.01175 58.25489 0.00000 0.64302 0.00000 28.95732 + -3.02500 6.03525 70.20287 0.00000 0.64302 0.00000 11.63214 + -3.67500 10.05875 82.13284 0.00000 0.64302 0.00000 8.16531 + -4.33333 12.46717 38.62984 0.00000 0.58588 0.00000 3.09853 + -5.00000 13.26050 40.43472 0.00000 0.58588 0.00000 3.04926 + -5.66667 14.05383 42.26197 0.00000 0.58588 0.00000 3.00715 + -6.25000 15.99800 100.06925 0.00000 0.64302 0.00000 6.25511 + -6.75000 19.09300 109.15750 0.00000 0.64302 0.00000 5.71715 + -7.37500 22.96175 120.54104 0.00000 0.64302 0.00000 5.24965 + -8.12500 27.60425 134.21544 0.00000 0.64302 0.00000 4.86213 + -8.87500 32.24675 147.89664 0.00000 0.64302 0.00000 4.58640 + -9.62500 36.88925 161.58035 0.00000 0.64302 0.00000 4.38015 + -10.37500 41.53175 175.26476 0.00000 0.64302 0.00000 4.22002 + -11.12500 46.17425 188.94904 0.00000 0.64302 0.00000 4.09209 + -11.87500 50.81675 202.63285 0.00000 0.64302 0.00000 3.98752 + -12.62500 55.45925 216.31606 0.00000 0.64302 0.00000 3.90045 + -13.37500 61.22675 510.10710 0.00000 0.41479 0.00000 8.33144 + -14.12500 68.11925 527.13426 1.01116 0.41479 0.01484 7.73840 + -14.87500 75.01175 565.96164 16.09819 0.41479 0.21461 7.54497 + -15.62500 81.90425 610.24661 17.60281 0.41479 0.21492 7.45073 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10438,126 +10528,126 @@ Status character 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.39240 0.00000 0.00000 -1 0 - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 9.18524 0.51744 1 0 A - 0.00000 3.04110 18.37049 1.03487 1 0 A - 0.77263 4.31640 27.55573 1.55231 110 0 - - 2.06016 5.59170 36.74098 2.06974 110 0 - - 3.33643 6.86700 45.92622 2.58718 110 7 - - 3.33643 6.86700 43.51223 2.58718 110 8 - - 4.59853 8.14230 52.21468 3.10461 110 9 - - 5.84446 9.41760 60.91712 3.62205 110 10 - - 7.07238 10.69290 69.61957 4.13949 110 10 - - 8.28043 11.96820 78.32201 4.65692 110 11 - - 9.46675 13.24350 87.02446 5.17436 110 11 - - 9.46675 13.24350 65.69782 5.17436 110 14 - - 10.62972 14.51880 72.26760 5.69179 110 15 - - 11.76825 15.79410 78.83738 6.20923 110 15 - - 12.88135 17.06940 85.40716 6.72667 110 15 - - 13.96799 18.34470 91.97694 7.24410 110 15 - - 15.02717 19.62000 98.54673 7.76154 110 15 - - 9.97815 19.62000 37.42537 7.07189 110 27 - - 10.28154 20.92800 37.91732 7.16485 110 27 - - 10.57276 22.23600 38.40928 7.25781 110 28 - - 10.85167 23.54400 38.90123 7.35077 110 28 - - 11.11813 24.85200 39.39319 7.44373 110 28 - - 11.37201 26.16000 39.88515 7.53669 110 29 - - 11.37201 26.16000 39.21675 7.53669 110 29 - - 11.61324 27.46800 39.70046 7.62965 110 29 - - 11.84198 28.77600 40.18417 7.72261 110 29 - - 12.05843 30.08400 40.66788 7.81557 110 30 - - 12.26282 31.39200 41.15160 7.90853 110 30 - - 12.45534 32.70000 41.63531 8.00149 110 30 - - 12.45534 32.70000 41.04177 8.00149 110 30 - - 12.63627 34.00800 41.51858 8.09445 110 30 - - 12.80606 35.31600 41.99540 8.18741 110 30 - - 12.96524 36.62400 42.47222 8.28037 110 31 - - 13.11430 37.93200 42.94903 8.37333 110 31 - - 13.25377 39.24000 43.42585 8.46629 110 31 - - 21.26062 39.24000 90.42452 9.29192 110 24 - - 21.73099 40.22100 94.29793 9.68995 110 23 - - 22.18943 41.20200 98.17135 10.08797 110 23 - - 22.63656 42.18300 102.04476 10.48600 110 22 - - 23.07301 43.16400 105.91817 10.88403 110 22 - - 23.49940 44.14500 109.79159 11.28206 110 21 - - 23.49940 44.14500 100.31997 11.28206 110 23 - - 23.91635 45.12600 103.85923 11.68008 110 23 - - 24.32435 46.10700 107.39849 12.07811 110 23 - - 24.72392 47.08800 110.93775 12.47614 110 22 - - 25.11555 48.06900 114.47701 12.87417 110 22 - - 25.49972 49.05000 118.01627 13.27219 110 22 - - 25.49972 49.05000 108.35137 13.27219 110 24 - - 26.06307 50.52150 113.22549 13.86923 110 23 - - 26.61202 51.99300 118.09961 14.46628 110 23 - - 27.14768 53.46450 122.97373 15.06332 110 22 - - 27.67117 54.93600 127.84784 15.66036 110 22 - - 28.18359 56.40750 132.72196 16.25740 110 21 - - 28.18359 56.40750 122.91835 16.25740 110 23 - - 28.68595 57.87900 127.43243 16.85444 110 23 - - 29.17884 59.35050 131.94652 17.45148 110 22 - - 29.66279 60.82200 136.46061 18.04852 110 22 - - 30.13831 62.29350 140.97470 18.64557 110 21 - - 30.60594 63.76500 145.48879 19.24261 110 21 - - 30.60594 63.76500 137.23684 19.24261 110 22 - - 31.06609 65.23650 141.49490 19.83965 110 22 - - 31.51889 66.70800 145.75295 20.43669 110 22 - - 31.96443 68.17950 150.01101 21.03373 110 21 - - 32.40280 69.65100 154.26906 21.63077 110 21 - - 32.83408 71.12250 158.52712 22.22781 110 21 - - 32.83408 71.12250 151.39840 22.22781 110 22 - - 33.25827 72.59400 155.46498 22.82485 110 21 - - 33.67525 74.06550 159.53156 23.42190 110 21 - - 34.08486 75.53700 163.59813 24.01894 110 21 - - 34.48696 77.00850 167.66471 24.61598 110 21 - - 34.88140 78.48000 171.73129 25.21302 110 20 - - 34.88140 78.48000 165.45441 25.21302 110 21 - - 35.26799 79.95150 169.37235 25.81006 110 21 - - 35.64658 81.42300 173.29029 26.40710 110 21 - - 36.01703 82.89450 177.20823 27.00414 110 20 - - 36.37922 84.36600 181.12617 27.60119 110 20 - - 36.73304 85.83750 185.04412 28.19823 110 20 - - 36.73304 85.83750 179.43596 28.19823 110 20 - - 37.07836 87.30900 183.23516 28.79527 110 20 - - 37.41529 88.78050 187.03436 29.39231 110 20 - - 37.74404 90.25200 190.83356 29.98935 110 20 - - 38.06481 91.72350 194.63276 30.58639 110 20 - - 38.37783 93.19500 198.43196 31.18343 110 19 - - 38.37783 93.19500 193.36300 31.18343 110 20 - - 38.68336 94.66650 197.06515 31.78047 110 20 - - 38.98213 96.13800 200.76730 32.37752 110 19 - - 39.27504 97.60950 204.46945 32.97456 110 19 - - 39.56300 99.08100 208.17160 33.57160 110 19 - - 39.84693 100.55250 211.87375 34.16864 110 19 - - 39.84693 100.55250 207.24891 34.16864 110 19 - - 40.12785 102.02400 210.87024 34.76568 110 19 - - 40.40751 103.49550 214.49158 35.36272 110 19 - - 40.68794 104.96700 218.11292 35.95976 110 19 - - 40.97115 106.43850 221.73426 36.55681 110 18 - - 41.25916 107.91000 225.35559 37.15385 110 18 - - 44.49359 107.91000 480.28193 23.96702 110 9 - - 43.55809 109.38150 491.74027 24.53881 110 9 - - 42.67163 110.85300 503.19861 25.11061 110 8 - - 41.84026 112.32450 514.65695 25.68240 110 8 - - 41.07000 113.79600 526.11529 26.25420 110 8 - - 40.36690 115.26750 537.57363 26.82599 110 8 - - 40.36690 115.26750 499.62769 26.82599 110 8 - - 39.73400 116.73900 510.27722 27.39778 110 8 - - 39.16768 118.21050 520.92674 27.96958 110 8 - - 38.66404 119.68200 531.57627 28.54137 110 7 - - 38.21917 121.15350 542.22580 29.11317 110 7 - - 37.82917 122.62500 552.87532 29.68496 110 7 - - 37.82917 122.62500 539.32555 29.68496 110 7 - - 37.48863 124.09650 549.71408 30.25675 110 7 - - 37.19036 125.56800 560.10261 30.82855 110 7 - - 36.92783 127.03950 570.49113 31.40034 110 6 - - 36.69450 128.51100 580.87966 31.97213 110 6 - - 36.48381 129.98250 591.26819 32.54393 110 6 - - 36.48381 129.98250 584.07485 32.54393 110 6 - - 36.28888 131.45400 594.33700 33.11572 110 6 - - 36.10489 132.92550 604.59914 33.68752 110 6 - - 35.92846 134.39700 614.86128 34.25931 110 6 - - 35.75620 135.86850 625.12342 34.83110 110 6 - - 35.58472 137.34000 635.38557 35.40290 110 6 - + 0.00000 0.49050 0.00003 0.00000 1 0 A + 0.00000 1.76580 23.30196 0.51744 1 0 A + 0.00000 3.04110 46.60391 1.03487 1 0 A + 0.77263 4.31640 69.90587 1.55231 110 0 - + 2.06016 5.59170 93.20783 2.06974 110 0 - + 3.33643 6.86700 116.50978 2.58718 110 3 - + 3.33643 6.86700 46.80192 2.58718 110 7 - + 4.59853 8.14230 56.16230 3.10461 110 8 - + 5.84446 9.41760 65.52268 3.62205 110 9 - + 7.07238 10.69290 74.88307 4.13949 110 9 - + 8.28043 11.96820 84.24345 4.65692 110 10 - + 9.46675 13.24350 93.60383 5.17436 110 10 - + 9.46675 13.24350 65.70628 5.17436 110 14 - + 10.62972 14.51880 72.27690 5.69179 110 15 - + 11.76825 15.79410 78.84753 6.20923 110 15 - + 12.88135 17.06940 85.41816 6.72667 110 15 - + 13.96799 18.34470 91.98879 7.24410 110 15 - + 15.02717 19.62000 98.55941 7.76154 110 15 - + 9.97815 19.62000 37.40076 7.07189 110 27 - + 10.28154 20.92800 37.89239 7.16485 110 27 - + 10.57276 22.23600 38.38402 7.25781 110 28 - + 10.85167 23.54400 38.87565 7.35077 110 28 - + 11.11813 24.85200 39.36729 7.44373 110 28 - + 11.37201 26.16000 39.85892 7.53669 110 29 - + 11.37201 26.16000 39.22518 7.53669 110 29 - + 11.61324 27.46800 39.70899 7.62965 110 29 - + 11.84198 28.77600 40.19281 7.72261 110 29 - + 12.05843 30.08400 40.67663 7.81557 110 30 - + 12.26282 31.39200 41.16044 7.90853 110 30 - + 12.45534 32.70000 41.64426 8.00149 110 30 - + 12.45534 32.70000 41.06913 8.00149 110 30 - + 12.63627 34.00800 41.54626 8.09445 110 30 - + 12.80606 35.31600 42.02340 8.18741 110 30 - + 12.96524 36.62400 42.50053 8.28037 110 31 - + 13.11430 37.93200 42.97767 8.37333 110 31 - + 13.25377 39.24000 43.45480 8.46629 110 31 - + 21.26062 39.24000 90.38947 9.29192 110 24 - + 21.73099 40.22100 94.26138 9.68995 110 23 - + 22.18943 41.20200 98.13330 10.08797 110 23 - + 22.63656 42.18300 102.00521 10.48600 110 22 - + 23.07301 43.16400 105.87712 10.88403 110 22 - + 23.49940 44.14500 109.74903 11.28206 110 21 - + 23.49940 44.14500 100.31021 11.28206 110 23 - + 23.91635 45.12600 103.84912 11.68008 110 23 - + 24.32435 46.10700 107.38804 12.07811 110 23 - + 24.72392 47.08800 110.92695 12.47614 110 22 - + 25.11555 48.06900 114.46587 12.87417 110 22 - + 25.49972 49.05000 118.00478 13.27219 110 22 - + 25.49972 49.05000 108.35530 13.27219 110 24 - + 26.06307 50.52150 113.22959 13.86923 110 23 - + 26.61202 51.99300 118.10389 14.46628 110 23 - + 27.14768 53.46450 122.97819 15.06332 110 22 - + 27.67117 54.93600 127.85248 15.66036 110 22 - + 28.18359 56.40750 132.72678 16.25740 110 21 - + 28.18359 56.40750 122.92922 16.25740 110 23 - + 28.68595 57.87900 127.44371 16.85444 110 23 - + 29.17884 59.35050 131.95820 17.45148 110 22 - + 29.66279 60.82200 136.47269 18.04852 110 22 - + 30.13831 62.29350 140.98717 18.64557 110 21 - + 30.60594 63.76500 145.50166 19.24261 110 21 - + 30.60594 63.76500 137.25045 19.24261 110 22 - + 31.06609 65.23650 141.50892 19.83965 110 22 - + 31.51889 66.70800 145.76740 20.43669 110 22 - + 31.96443 68.17950 150.02588 21.03373 110 21 - + 32.40280 69.65100 154.28435 21.63077 110 21 - + 32.83408 71.12250 158.54283 22.22781 110 21 - + 32.83408 71.12250 151.41293 22.22781 110 22 - + 33.25827 72.59400 155.47990 22.82485 110 21 - + 33.67525 74.06550 159.54687 23.42190 110 21 - + 34.08486 75.53700 163.61384 24.01894 110 21 - + 34.48696 77.00850 167.68080 24.61598 110 21 - + 34.88140 78.48000 171.74777 25.21302 110 20 - + 34.88140 78.48000 165.46904 25.21302 110 21 - + 35.26799 79.95150 169.38733 25.81006 110 21 - + 35.64658 81.42300 173.30561 26.40710 110 21 - + 36.01703 82.89450 177.22390 27.00414 110 20 - + 36.37922 84.36600 181.14219 27.60119 110 20 - + 36.73304 85.83750 185.06047 28.19823 110 20 - + 36.73304 85.83750 179.45028 28.19823 110 20 - + 37.07836 87.30900 183.24979 28.79527 110 20 - + 37.41529 88.78050 187.04929 29.39231 110 20 - + 37.74404 90.25200 190.84879 29.98935 110 20 - + 38.06481 91.72350 194.64830 30.58639 110 20 - + 38.37783 93.19500 198.44780 31.18343 110 19 - + 38.37783 93.19500 193.37682 31.18343 110 20 - + 38.68336 94.66650 197.07923 31.78047 110 20 - + 38.98213 96.13800 200.78165 32.37752 110 19 - + 39.27504 97.60950 204.48406 32.97456 110 19 - + 39.56300 99.08100 208.18647 33.57160 110 19 - + 39.84693 100.55250 211.88889 34.16864 110 19 - + 39.84693 100.55250 207.26214 34.16864 110 19 - + 40.12785 102.02400 210.88370 34.76568 110 19 - + 40.40751 103.49550 214.50527 35.36272 110 19 - + 40.68794 104.96700 218.12684 35.95976 110 19 - + 40.97115 106.43850 221.74841 36.55681 110 18 - + 41.25916 107.91000 225.36998 37.15385 110 18 - + 44.49359 107.91000 481.39487 23.96702 110 9 - + 43.55809 109.38150 492.87977 24.53881 110 9 - + 42.67163 110.85300 504.36466 25.11061 110 8 - + 41.84026 112.32450 515.84955 25.68240 110 8 - + 41.07000 113.79600 527.33444 26.25420 110 8 - + 40.36690 115.26750 538.81934 26.82599 110 7 - + 40.36690 115.26750 500.46578 26.82599 110 8 - + 39.73400 116.73900 511.13317 27.39778 110 8 - + 39.16768 118.21050 521.80056 27.96958 110 8 - + 38.66404 119.68200 532.46795 28.54137 110 7 - + 38.21917 121.15350 543.13534 29.11317 110 7 - + 37.82917 122.62500 553.80273 29.68496 110 7 - + 37.82917 122.62500 539.95978 29.68496 110 7 - + 37.48863 124.09650 550.36052 30.25675 110 7 - + 37.19036 125.56800 560.76127 30.82855 110 7 - + 36.92783 127.03950 571.16202 31.40034 110 6 - + 36.69450 128.51100 581.56276 31.97213 110 6 - + 36.48381 129.98250 591.96351 32.54393 110 6 - + 36.48381 129.98250 584.56952 32.54393 110 6 - + 36.28888 131.45400 594.84036 33.11572 110 6 - + 36.10489 132.92550 605.11119 33.68752 110 6 - + 35.92846 134.39700 615.38202 34.25931 110 6 - + 35.75620 135.86850 625.65286 34.83110 110 6 - + 35.58472 137.34000 635.92369 35.40290 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10730,7 +10820,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -10745,7 +10835,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 161.86324 210000000.000 1 2 0 'Anchor' + -1.50000 155.07134 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10772,22 +10862,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 47.29 : Percentage mobilized resistance left - 7.97 : Percentage mobilized resistance right - 540.05 : Effective left - 306.97 : Effective right + 46.55 : Percentage mobilized resistance left + 7.82 : Percentage mobilized resistance right + 540.98 : Effective left + 301.12 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3850.19 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -35710.14 : Max moment right --5610.18 : Max mobilized moment left --2233.63 : Max mobilized moment right - 173.07 : Vertical force left - 81.13 : Vertical force right - 41.4 : Max mobilized moment percentage left - 6.3 : Max mobilized moment percentage right +-5546.18 : Max mobilized moment left +-2168.15 : Max mobilized moment right + 171.92 : Vertical force left + 78.79 : Vertical force right + 40.5 : Max mobilized moment percentage left + 6.1 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -10802,144 +10892,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01710 0.09392 45.73554 - 0.07591 1.67242 40.58186 - 0.64648 6.48812 35.42830 - 2.17095 14.27594 30.27341 - 4.98122 23.10281 25.11572 - 9.07515 31.39681 19.95374 - 9.09127 31.48378 19.95374 - 14.30123 37.85048 14.78492 - 20.40686 43.42607 9.60377 - 27.28939 48.20833 4.40441 - 34.83144 52.23217 -0.81906 - 42.92465 55.56822 -6.07250 - 42.92719 -106.30945 -6.07250 - 32.35566 -105.17863 -9.59364 - 21.87991 -104.39430 -13.12720 - 11.46515 -103.95960 -16.66917 - 1.07782 -103.83002 -20.21555 - -9.30518 -103.83002 -23.76234 - -9.31196 -103.87872 -23.76234 - -23.15974 -103.81768 -28.48512 - -36.99125 -103.63456 -33.19210 - -50.79020 -103.32936 -37.87387 - -64.54032 -102.90208 -42.52102 - -78.22532 -102.35272 -47.12415 - -78.22474 -102.35111 -47.12415 - -91.77274 -100.84509 -51.67380 - -105.11042 -99.19634 -56.16084 - -118.21877 -97.40526 -60.57633 - -131.07884 -95.47216 -64.91133 - -143.67172 -93.39739 -69.15691 - -143.67169 -93.39938 -69.15691 - -155.95951 -90.89344 -73.30423 - -167.90341 -88.24047 -77.34515 - -179.48378 -85.44078 -81.27176 - -190.68110 -82.49467 -85.07619 - -201.47587 -79.40242 -88.75054 - -201.47594 -79.40411 -88.75054 - -211.77585 -75.07214 -92.28704 - -221.48921 -70.60603 -95.67904 - -230.59818 -66.00619 -98.92035 - -239.08494 -61.27301 -102.00475 - -246.93174 -56.40683 -104.92604 - -246.93174 -56.40786 -104.92604 - -254.12219 -51.42681 -107.67834 - -260.63967 -46.31348 -110.25725 - -266.46658 -41.06817 -112.65882 - -271.58533 -35.69114 -114.87906 - -275.97838 -30.18265 -116.91403 - -275.97838 -30.18360 -116.91403 - -279.62952 -24.56165 -118.76011 - -282.52234 -18.80877 -120.41541 - -284.63939 -12.92519 -121.87848 - -285.96325 -6.91110 -123.14790 - -286.47656 -0.76670 -124.22221 - -286.47657 -0.76747 -124.22221 - -286.35931 3.12634 -124.89937 - -285.84860 7.10133 -125.46664 - -284.93634 11.15746 -125.92438 - -283.61440 15.29470 -126.27294 - -281.87469 19.51300 -126.51266 - -281.87470 19.51242 -126.51266 - -279.70772 23.84074 -126.64403 - -277.10384 28.25036 -126.66806 - -274.05494 32.74125 -126.58594 - -270.55288 37.31337 -126.39882 - -266.58956 41.96670 -126.10788 - -266.58956 41.96628 -126.10788 - -262.15664 46.69434 -125.71443 - -257.25027 51.43515 -125.22038 - -251.86918 56.18868 -124.62779 - -246.01211 60.95491 -123.93874 - -239.67778 65.73381 -123.15527 - -239.67773 65.73312 -123.15527 - -228.78449 72.70983 -121.73867 - -216.88837 78.49710 -120.10530 - -204.17628 83.09483 -118.26712 - -190.83516 86.50296 -116.23607 - -177.05195 88.72140 -114.02409 - -177.05197 88.72057 -114.02409 - -162.94225 90.68604 -111.64393 - -148.60457 91.62190 -109.10946 - -134.20073 91.52808 -106.43422 - -119.89254 90.40452 -103.63177 - -105.84182 88.25116 -100.71567 - -105.84182 88.25044 -100.71567 - -91.97500 88.11231 -97.69945 - -78.18839 87.22951 -94.59615 - -64.59902 85.60201 -91.41858 - -51.32391 83.22976 -88.17955 - -38.48011 80.11272 -84.89188 - -38.48010 80.11192 -84.89188 - -26.02183 78.34574 -81.56817 - -13.88924 75.96698 -78.21988 - -2.17859 72.97562 -74.85805 - 9.01386 69.37162 -71.49373 - 19.59183 65.15496 -68.13794 - 19.59261 65.15101 -68.13794 - 29.58029 61.87504 -64.80140 - 39.01082 58.06014 -61.49297 - 47.79953 53.70629 -58.22093 - 55.86171 48.81348 -54.99357 - 63.14396 43.97884 -51.81916 - 63.13648 43.87443 -51.81916 - 69.69790 39.74297 -48.70526 - 75.66081 36.25460 -45.65740 - 81.12510 33.39420 -42.68081 - 86.18818 31.14553 -39.78072 - 90.94482 29.49115 -36.96235 - 90.94469 29.49888 -36.96235 - 95.49186 28.46861 -34.23042 - 99.92114 27.99516 -31.58893 - 104.31844 28.05816 -29.04209 - 108.76640 28.63632 -26.59413 - 113.34425 29.70742 -24.24924 - 113.34498 29.71328 -24.24924 - 116.45900 12.17805 -22.11215 - 117.10709 -3.18322 -20.07564 - 115.60748 -16.47554 -18.13857 - 112.26269 -27.80273 -16.29980 - 107.35979 -37.26738 -14.55818 - 107.35897 -37.23059 -14.55818 - 101.15964 -45.14209 -12.91070 - 93.89955 -51.38939 -11.35052 - 85.82163 -56.06055 -9.87079 - 77.15615 -59.23644 -8.46465 - 68.12178 -60.99071 -7.12524 - 68.12392 -60.96795 -7.12524 - 58.88328 -62.02102 -5.84490 - 49.58212 -61.78397 -4.61531 - 40.41014 -60.30599 -3.42866 - 31.55032 -57.62805 -2.27711 - 23.20137 -53.35715 -1.15285 - 23.18264 -53.48331 -1.15285 - 15.61353 -47.05207 -0.04762 - 9.18216 -38.31798 1.04436 - 4.23210 -27.30453 2.12719 - 1.08548 -14.39748 3.20500 - -0.01954 -0.13839 4.28190 + -0.01553 0.08551 41.49925 + 0.07623 1.66401 36.82609 + 0.64554 6.47971 32.15305 + 2.15407 13.97409 27.47869 + 4.87757 22.26452 22.80158 + 8.81183 30.12303 18.12028 + 8.82638 30.20156 18.12028 + 13.81766 36.23372 13.43234 + 19.66199 41.57581 8.73249 + 26.25579 46.22571 4.01508 + 33.49685 50.21849 -0.72552 + 41.29202 53.62501 -5.49496 + 41.29249 -101.44644 -5.49496 + 31.21206 -100.21212 -8.69270 + 21.24003 -99.27899 -11.90243 + 11.34612 -98.65015 -15.12033 + 1.49977 -98.32810 -18.34260 + -8.32744 -98.24406 -21.56544 + -8.33142 -98.29956 -21.56544 + -21.43532 -98.23852 -25.85690 + -34.52294 -98.05540 -30.13373 + -47.57800 -97.75020 -34.38704 + -60.58423 -97.32292 -38.60793 + -73.52536 -96.77356 -42.78749 + -73.52477 -96.77196 -42.78749 + -86.32888 -95.26594 -46.91678 + -98.92267 -93.61719 -50.98716 + -111.28714 -91.82610 -54.99022 + -123.40332 -89.89301 -58.91752 + -135.25231 -87.81823 -62.76063 + -135.25229 -87.82023 -62.76063 + -146.79622 -85.31429 -66.51123 + -157.99623 -82.66132 -70.16168 + -168.83272 -79.86162 -73.70458 + -179.28615 -76.91552 -77.13256 + -189.33703 -73.82327 -80.43823 + -189.33710 -73.82495 -80.43823 + -198.89312 -69.49298 -83.61433 + -207.86260 -65.02688 -86.65472 + -216.22768 -60.42704 -89.55371 + -223.97055 -55.69386 -92.30560 + -231.07347 -50.82767 -94.90469 + -231.07347 -50.82871 -94.90469 + -237.52003 -45.84766 -97.34560 + -243.29363 -40.73433 -99.62445 + -248.37665 -35.48902 -101.73779 + -252.75151 -30.11199 -103.68214 + -256.40067 -24.60350 -105.45406 + -256.40068 -24.60445 -105.45406 + -259.30793 -18.98250 -107.05045 + -261.45686 -13.22962 -108.46992 + -262.83002 -7.34604 -109.71154 + -263.41000 -1.33195 -110.77437 + -263.17942 4.81245 -111.65748 + -263.17943 4.81169 -111.65748 + -262.50425 8.70549 -112.20164 + -261.43563 12.68048 -112.64507 + -259.96545 16.73661 -112.98833 + -258.08561 20.87385 -113.23198 + -255.78798 25.09215 -113.37660 + -255.78799 25.09157 -113.37660 + -253.06309 29.41989 -113.42288 + -249.90130 33.82951 -113.37204 + -246.29448 38.32040 -113.22548 + -242.23451 42.89252 -112.98458 + -237.71327 47.54585 -112.65072 + -237.71327 47.54543 -112.65072 + -232.72243 52.27349 -112.22543 + -227.25815 57.01430 -111.71084 + -221.31915 61.76784 -111.10921 + -214.90416 66.53407 -110.42284 + -208.01191 71.31297 -109.65400 + -208.01186 71.31227 -109.65400 + -196.27848 77.59059 -108.28530 + -183.76172 81.28267 -106.73076 + -170.86797 82.38844 -105.00238 + -158.00368 80.90781 -103.11215 + -145.57529 76.84071 -101.07205 + -145.57530 76.83988 -101.07205 + -133.34199 78.68142 -98.89398 + -120.90196 79.47081 -96.58962 + -108.42057 79.20799 -94.17073 + -96.06314 77.89289 -91.64903 + -83.99506 75.52546 -89.03626 + -83.99506 75.52474 -89.03626 + -72.12808 75.38554 -86.34409 + -60.34148 74.50158 -83.58364 + -48.75231 72.87280 -80.76583 + -37.47761 70.49918 -77.90157 + -26.63444 67.38066 -75.00178 + -26.63444 67.37987 -75.00178 + -16.17702 65.61244 -72.07719 + -6.04548 63.23235 -69.13735 + 3.66391 60.23957 -66.19139 + 12.85486 56.63408 -63.24847 + 21.43110 52.41584 -60.31774 + 21.44073 52.36591 -60.31774 + 29.41921 49.08860 -57.40797 + 36.84034 45.27229 -54.52615 + 43.62515 41.02656 -51.67868 + 49.74127 36.91204 -48.87198 + 55.25631 33.37460 -46.11246 + 55.24638 33.32911 -46.11246 + 60.24698 30.40832 -43.40585 + 64.83233 28.04200 -40.75632 + 69.08854 26.21714 -38.16793 + 73.09963 24.91984 -35.64478 + 76.94735 24.13527 -33.19095 + 76.94724 24.14180 -33.19095 + 80.71575 23.90262 -30.81012 + 84.48469 24.14455 -28.50573 + 88.32833 24.85037 -26.28146 + 92.31816 26.00204 -24.14100 + 96.52277 27.58072 -22.08802 + 96.52381 27.58271 -22.08802 + 99.48152 12.17838 -20.21452 + 100.27257 -1.32106 -18.42693 + 99.17596 -13.00541 -16.72446 + 96.45726 -22.96358 -15.10627 + 92.36879 -31.28367 -13.57157 + 92.36789 -31.25244 -13.57157 + 87.13790 -38.22974 -12.11789 + 80.97232 -43.73997 -10.73941 + 74.08546 -47.85903 -9.43028 + 66.68069 -50.65667 -8.18468 + 58.95135 -52.19651 -6.99675 + 58.95322 -52.17660 -6.99675 + 51.03764 -53.17011 -5.85995 + 43.05933 -53.02067 -4.76713 + 35.18646 -51.77094 -3.71160 + 27.58129 -49.45654 -2.68663 + 20.40860 -45.95993 -1.68551 + 20.39832 -46.10011 -1.68551 + 13.84645 -40.91441 -0.70117 + 8.22653 -33.67813 0.27142 + 3.84449 -24.41215 1.23588 + 1.00371 -13.12970 2.19585 + -0.00961 -0.15099 3.15496 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11096,20 +11186,20 @@ Status character 0.00001 0.00000 0.00001 0.00000 202 100 P 30.06668 0.00000 30.06668 5.51986 202 100 P 61.66087 0.00000 61.66087 11.32016 202 100 P - 86.67872 0.00000 95.60503 17.55188 110 91 - - 81.45203 0.00000 131.85112 24.20620 110 62 - - 76.52900 0.00000 169.79789 31.17275 110 45 - - 64.40486 0.00000 131.34426 19.04861 110 49 - - 56.86552 0.00000 161.43441 23.41253 110 35 - - 49.33629 0.00000 191.76434 27.81123 110 26 - - 41.75433 0.00000 221.98186 32.19362 110 19 - - 34.89021 0.00000 251.87056 36.52832 110 0 - - 28.65373 0.00000 281.31596 40.79873 110 0 - - 18.61724 0.00000 189.80201 30.76224 110 0 - - 13.69189 0.00000 202.86341 32.87917 110 0 - - 8.71751 0.00000 215.77548 34.97190 110 0 - - 3.70239 0.00000 228.54007 37.04073 110 0 - - 0.00000 0.00000 241.16152 39.08635 1 0 A + 81.08927 0.00000 95.60503 17.55188 110 85 - + 76.82376 0.00000 131.85112 24.20620 110 58 - + 72.86209 0.00000 169.79789 31.17275 110 43 - + 60.73796 0.00000 131.34426 19.04861 110 46 - + 54.16037 0.00000 161.43441 23.41253 110 34 - + 47.59373 0.00000 191.76434 27.81123 110 25 - + 40.97568 0.00000 221.98186 32.19362 110 18 - + 35.07728 0.00000 251.87056 36.52832 110 0 - + 29.80882 0.00000 281.31596 40.79873 110 0 - + 19.77233 0.00000 189.80201 30.76224 110 0 - + 15.49377 0.00000 202.86341 32.87917 110 0 - + 11.16705 0.00000 215.77548 34.97190 110 0 - + 6.80007 0.00000 228.54007 37.04073 110 0 - + 2.40116 0.00000 241.16152 39.08635 110 0 - 0.00000 0.00000 253.64568 41.10973 1 0 A 0.00000 0.00000 219.69278 35.53878 1 0 A 0.00000 1.30800 226.90657 36.70572 1 0 A @@ -11224,13 +11314,13 @@ Status character 26.36041 125.56800 910.49130 45.33105 1 0 A 26.66942 127.03950 921.16458 45.86245 1 0 A 26.97848 128.51100 931.83960 46.39393 1 0 A - 35.39702 129.98250 942.51642 46.92550 110 0 - - 35.39470 129.98250 932.15163 46.92318 110 0 - - 46.97865 131.45400 942.71290 47.45481 110 0 - - 58.43014 132.92550 953.27610 47.98655 110 6 - - 69.79032 134.39700 963.84128 48.51839 110 7 - - 81.10034 135.86850 974.40849 49.05032 110 8 - - 92.40134 137.34000 984.97779 49.58237 110 9 - + 30.07037 129.98250 942.51642 46.92550 110 0 - + 30.06805 129.98250 932.15163 46.92318 110 0 - + 40.44312 131.45400 942.71290 47.45481 110 0 - + 50.70074 132.92550 953.27610 47.98655 110 5 - + 60.87722 134.39700 963.84128 48.51839 110 6 - + 71.00886 135.86850 974.40849 49.05032 110 7 - + 81.13198 137.34000 984.97779 49.58237 110 8 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11243,10 +11333,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 98.014 'Clay' + 0.00 96.294 'Clay' -4.00 53.482 'Peat' -6.00 172.044 'Clay' - -13.00 114.993 'Sand' + -13.00 108.358 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11323,17 +11413,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -11350,17 +11440,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -11449,72 +11539,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 11.10304 6.44657 11.10304 0.62547 202 100 P - 22.20609 7.98814 22.20609 1.25094 202 100 P - 33.30913 9.52971 33.30913 1.87642 202 100 P - 44.41217 11.07129 44.41217 2.50189 202 100 P - 55.51522 12.61286 55.51522 3.12736 202 100 P - 48.26946 12.61286 48.26946 3.12736 202 100 P - 57.92335 14.15443 57.92335 3.75283 202 100 P - 67.57724 15.69600 67.57724 4.37830 202 100 P - 77.23113 17.23757 77.23113 5.00377 202 100 P - 86.88502 18.77914 86.88502 5.62925 202 100 P - 96.53892 20.32071 96.53892 6.25472 202 100 P - 70.67406 20.32071 70.67406 6.25472 202 100 P - 77.74147 21.86229 77.74147 6.88019 202 100 P - 84.80887 23.40386 84.80887 7.50566 202 100 P - 91.87628 24.94543 91.87628 8.13113 202 100 P - 98.94369 26.48700 98.94369 8.75661 202 100 P - 106.01109 28.02857 106.01109 9.38208 202 100 P - 88.06042 28.02857 88.06042 9.38208 202 100 P - 93.93112 29.57014 93.93112 10.00755 202 100 P - 99.80181 31.11171 99.80181 10.63302 202 100 P - 105.67251 32.65329 105.67251 11.25849 202 100 P - 111.54320 34.19486 111.54320 11.88397 202 100 P - 117.41390 35.73643 117.41390 12.50944 202 100 P - 104.10611 35.73643 104.10611 12.50944 202 100 P - 109.31142 37.27800 109.31142 13.13491 202 100 P - 114.51672 38.81957 114.51672 13.76038 202 100 P - 119.72203 40.36114 119.72203 14.38585 202 100 P - 124.92734 41.90271 124.92734 15.01132 202 100 P - 119.27512 43.44429 130.13264 15.63680 110 92 - - 119.27512 43.44429 119.53821 15.63680 110 99 - - 113.67279 44.98586 124.31974 16.26227 110 91 - - 108.20255 46.52743 129.10127 16.88774 110 84 - - 102.87483 48.06900 133.88279 17.51321 110 77 - - 97.70012 49.61057 138.66432 18.13868 110 70 - - 92.68886 51.15214 143.44585 18.76416 110 65 - - 92.68886 51.15214 134.63740 18.76416 110 69 - - 87.85046 52.69371 139.12532 19.38963 110 63 - - 83.19295 54.23529 143.61323 20.01510 110 58 - - 78.72475 55.77686 148.10114 20.64057 110 53 - - 74.45429 57.31843 152.58906 21.26604 110 49 - - 70.38999 58.86000 157.07697 21.89152 110 45 - - 256.61407 58.86000 279.16236 14.12167 110 92 - - 235.81495 60.33150 290.46579 14.69346 110 81 - - 216.02166 61.80300 301.76922 15.26526 110 72 - - 197.22275 63.27450 313.07265 15.83705 110 63 - - 179.40682 64.74600 324.37608 16.40885 110 55 - - 162.56245 66.21750 335.67951 16.98064 110 48 - - 162.56245 66.21750 311.64171 16.98064 110 52 - - 146.65942 67.68900 322.13571 17.55243 110 46 - - 131.62944 69.16050 332.62971 18.12423 110 40 - - 117.40392 70.63200 343.12371 18.69602 110 34 - - 103.91430 72.10350 353.61771 19.26782 110 29 - - 91.09201 73.57500 364.11171 19.83961 110 25 - - 91.09201 73.57500 356.39681 19.83961 110 26 - - 78.86038 75.04650 366.66846 20.41140 110 22 - - 67.13632 76.51800 376.94011 20.98320 110 18 - - 55.84157 77.98950 387.21176 21.55499 110 14 - - 44.89790 79.46100 397.48341 22.12679 110 11 - - 34.22705 80.93250 407.75506 22.69858 110 8 - - 34.22705 80.93250 403.90034 22.69858 110 8 - - 23.74653 82.40400 414.07488 23.27037 110 6 - - 13.39857 83.87550 424.24943 23.84217 110 0 - - 3.14203 85.34700 434.42398 24.41396 110 0 - - 0.00000 86.81850 444.59852 24.98575 1 0 A - 0.00000 88.29000 454.77307 25.55755 1 0 A + 0.00002 4.90500 0.00002 0.00000 202 100 P + 23.80111 6.44657 23.80111 0.62547 202 100 P + 47.60221 7.98814 47.60221 1.25094 202 100 P + 71.40332 9.52971 71.40332 1.87642 202 100 P + 95.20443 11.07129 95.20443 2.50189 202 100 P + 119.00554 12.61286 119.00554 3.12736 202 100 P + 49.29372 12.61286 49.29372 3.12736 202 100 P + 59.15246 14.15443 59.15246 3.75283 202 100 P + 69.01120 15.69600 69.01120 4.37830 202 100 P + 78.86995 17.23757 78.86995 5.00377 202 100 P + 88.72869 18.77914 88.72869 5.62925 202 100 P + 98.58743 20.32071 98.58743 6.25472 202 100 P + 70.68330 20.32071 70.68330 6.25472 202 100 P + 77.75163 21.86229 77.75163 6.88019 202 100 P + 84.81996 23.40386 84.81996 7.50566 202 100 P + 91.88829 24.94543 91.88829 8.13113 202 100 P + 98.95662 26.48700 98.95662 8.75661 202 100 P + 106.02494 28.02857 106.02494 9.38208 202 100 P + 88.07144 28.02857 88.07144 9.38208 202 100 P + 93.94287 29.57014 93.94287 10.00755 202 100 P + 99.81430 31.11171 99.81430 10.63302 202 100 P + 105.68573 32.65329 105.68573 11.25849 202 100 P + 111.55716 34.19486 111.55716 11.88397 202 100 P + 117.42859 35.73643 117.42859 12.50944 202 100 P + 104.11800 35.73643 104.11800 12.50944 202 100 P + 109.32390 37.27800 109.32390 13.13491 202 100 P + 114.52980 38.81957 114.52980 13.76038 202 100 P + 117.74321 40.36114 119.73570 14.38585 110 98 - + 112.75528 41.90271 124.94160 15.01132 110 90 - + 107.86172 43.44429 130.14750 15.63680 110 83 - + 107.86172 43.44429 119.55043 15.63680 110 90 - + 103.07397 44.98586 124.33244 16.26227 110 83 - + 98.40037 46.52743 129.11446 16.88774 110 76 - + 93.84908 48.06900 133.89648 17.51321 110 70 - + 89.42825 49.61057 138.67850 18.13868 110 64 - + 85.14605 51.15214 143.46051 18.76416 110 59 - + 85.14605 51.15214 134.64963 18.76416 110 63 - + 81.00986 52.69371 139.13795 19.38963 110 58 - + 77.02656 54.23529 143.62627 20.01510 110 54 - + 73.20350 55.77686 148.11459 20.64057 110 49 - + 69.54804 57.31843 152.60291 21.26604 110 46 - + 66.06756 58.86000 157.09123 21.89152 110 42 - + 235.00189 58.86000 280.51782 14.12167 110 84 - + 216.83864 60.33150 291.87613 14.69346 110 74 - + 199.53459 61.80300 303.23445 15.26526 110 66 - + 183.08160 63.27450 314.59276 15.83705 110 58 - + 167.47156 64.74600 325.95107 16.40885 110 51 - + 152.69634 66.21750 337.30939 16.98064 110 45 - + 152.69634 66.21750 312.61080 16.98064 110 49 - + 138.73130 67.68900 323.13743 17.55243 110 43 - + 125.51829 69.16050 333.66406 18.12423 110 38 - + 112.99887 70.63200 344.19069 18.69602 110 33 - + 101.11463 72.10350 354.71732 19.26782 110 29 - + 89.80712 73.57500 365.24396 19.83961 110 25 - + 89.80712 73.57500 357.09310 19.83961 110 25 - + 79.01086 75.04650 367.38481 20.41140 110 22 - + 68.65453 76.51800 377.67653 20.98320 110 18 - + 58.67099 77.98950 387.96825 21.55499 110 15 - + 48.99310 79.46100 398.25997 22.12679 110 12 - + 39.55371 80.93250 408.55168 22.69858 110 10 - + 39.55371 80.93250 404.41665 22.69858 110 10 - + 30.28207 82.40400 414.60420 23.27037 110 7 - + 21.12797 83.87550 424.79176 23.84217 110 0 - + 12.05513 85.34700 434.97931 24.41396 110 0 - + 3.02722 86.81850 445.16686 24.98575 110 0 - + 0.00000 88.29000 455.35442 25.55755 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11529,8 +11619,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 466.804 'Clay' - -13.00 304.693 'Sand' + -6.00 477.829 'Clay' + -13.00 295.000 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11702,7 +11792,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 142.71829 210000000.000 1 2 0 'Anchor' + -1.50000 142.72839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11712,22 +11802,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 49.47 : Percentage mobilized resistance left - 9.21 : Percentage mobilized resistance right - 564.94 : Effective left - 313.33 : Effective right + 49.04 : Percentage mobilized resistance left + 9.36 : Percentage mobilized resistance right + 570.00 : Effective left + 318.40 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3402.22 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -32715.62 : Max moment right --6127.15 : Max mobilized moment left --2737.99 : Max mobilized moment right - 191.86 : Vertical force left - 90.65 : Vertical force right - 45.2 : Max mobilized moment percentage left - 8.4 : Max mobilized moment percentage right +-6157.33 : Max mobilized moment left +-2768.05 : Max mobilized moment right + 193.11 : Vertical force left + 91.70 : Vertical force right + 44.9 : Max mobilized moment percentage left + 8.5 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -11742,144 +11832,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01270 0.05819 51.04715 - 0.04006 0.93879 43.84178 - 0.35580 3.55650 36.63650 - 1.19551 7.94407 29.43046 - 2.80244 13.60003 22.22284 - 5.25510 18.84769 15.01279 - 5.28412 19.03500 15.01279 - 8.43751 22.75564 7.79866 - 12.03440 24.94808 0.57720 - 15.85755 25.85297 -6.65482 - 19.76500 26.25195 -13.90062 - 23.73488 26.68574 -21.16345 - 23.72015 -116.26916 -21.16345 - 12.10855 -115.96010 -26.01553 - 0.52867 -115.63474 -30.87225 - -11.01785 -115.29279 -35.72918 - -22.52933 -114.93406 -40.58190 - -34.00410 -114.55847 -45.42598 - -34.00536 -114.54805 -45.42598 - -49.24091 -113.95995 -51.86363 - -64.38793 -113.21996 -58.26768 - -79.42617 -112.32853 -64.62788 - -94.33550 -111.28635 -70.93399 - -109.09587 -110.09432 -77.17574 - -109.09530 -110.09221 -77.17574 - -123.68579 -108.74076 -83.34294 - -138.08636 -107.24344 -89.42575 - -152.27758 -105.60083 -95.41451 - -166.24016 -103.81373 -101.29954 - -179.95487 -101.88321 -107.07116 - -179.95486 -101.88437 -107.07116 - -193.38136 -99.48846 -112.71980 - -206.47856 -96.94520 -118.23650 - -219.22693 -94.25623 -123.61258 - -231.60716 -91.42332 -128.83935 - -243.60017 -88.44835 -133.90813 - -243.60022 -88.44935 -133.90813 - -255.14379 -84.68272 -138.81036 - -266.17655 -80.78735 -143.53853 - -276.68140 -76.76411 -148.08547 - -286.64134 -72.61386 -152.44401 - -296.03949 -68.33748 -156.60702 - -296.03949 -68.33812 -156.60702 - -304.84935 -63.78892 -160.56759 - -313.04431 -59.11472 -164.32018 - -320.60776 -54.31640 -167.85964 - -327.52321 -49.39477 -171.18082 - -333.77426 -44.35064 -174.27856 - -333.77426 -44.35126 -174.27856 - -339.33621 -39.05777 -177.14804 - -344.18427 -33.64281 -179.78601 - -348.30226 -28.10704 -182.18967 - -351.67413 -22.45107 -184.35621 - -354.28389 -16.67542 -186.28284 - -354.28390 -16.67598 -186.28284 - -355.74713 -12.57717 -187.56897 - -356.79705 -8.40975 -188.71859 - -357.42681 -4.17408 -189.73146 - -357.62960 0.12958 -190.60734 - -357.39863 4.50101 -191.34599 - -357.39864 4.50049 -191.34599 - -356.72343 9.01494 -191.94730 - -355.59337 13.59776 -192.41173 - -354.00160 18.24895 -192.73988 - -351.94130 22.96860 -192.93237 - -349.40560 27.75686 -192.98981 - -349.40559 27.75633 -192.98981 - -346.38568 32.64205 -192.91297 - -342.87715 37.52891 -192.70320 - -338.87985 42.41734 -192.36205 - -334.39361 47.30780 -191.89105 - -329.41820 52.20083 -191.29173 - -329.41836 52.20412 -191.29173 - -320.62295 59.60581 -190.09467 - -310.73819 65.99415 -188.59383 - -299.94658 71.14826 -186.79933 - -288.44171 75.07285 -184.72130 - -276.41642 77.77251 -182.36984 - -276.41642 77.77012 -182.36984 - -263.93328 81.00548 -179.75583 - -250.98913 83.63810 -176.89176 - -237.67840 85.67170 -173.79020 - -224.09494 87.10968 -170.46369 - -210.33211 87.95511 -166.92480 - -210.33214 87.95330 -166.92480 - -196.35277 89.88749 -163.18634 - -182.10640 91.35183 -159.26187 - -167.66669 92.34852 -155.16501 - -153.10697 92.87953 -150.90941 - -138.50028 92.94656 -146.50870 - -138.50030 92.94520 -146.50870 - -123.82675 93.74220 -141.97668 - -109.05943 94.13891 -137.32737 - -94.26115 94.13639 -132.57473 - -79.49458 93.73555 -127.73278 - -64.82224 92.93710 -122.81548 - -64.82225 92.93602 -122.81548 - -50.23456 92.66552 -117.83685 - -35.71762 92.03576 -112.81067 - -21.32784 91.04707 -107.75052 - -7.12162 89.69966 -102.67002 - 6.84470 87.99367 -97.58276 - 6.84468 87.99289 -97.58276 - 20.57327 86.67908 -92.50226 - 34.06921 85.03192 -87.44130 - 47.28012 83.05134 -82.41236 - 60.15360 80.73727 -77.42793 - 72.63722 78.08961 -72.50050 - 72.63718 78.08938 -72.50050 - 84.71526 75.57872 -67.64237 - 96.37388 72.75084 -62.86457 - 107.56319 69.60566 -58.17765 - 118.23332 66.14319 -53.59221 - 128.33443 62.36347 -49.11881 - 128.33720 62.34395 -49.11881 - 136.67147 48.64288 -44.96356 - 142.88908 34.12208 -40.92650 - 146.86716 18.78261 -37.01100 - 148.48299 2.62572 -33.22045 - 147.61408 -14.34718 -29.55820 - 147.67458 -14.79000 -29.55820 - 144.23509 -31.19770 -26.02591 - 138.27917 -48.32750 -22.61824 - 129.80538 -64.08643 -19.32804 - 119.22132 -76.48377 -16.14820 - 107.02276 -85.63094 -13.07157 - 107.01859 -85.81722 -13.07157 - 93.61558 -92.37477 -10.08860 - 79.45850 -95.88566 -7.18630 - 64.99833 -96.42762 -4.35243 - 50.68535 -93.86669 -1.57472 - 37.06366 -86.79904 1.15906 - 36.98504 -86.70087 1.15906 - 24.80523 -75.16367 3.86225 - 14.58680 -60.60926 6.54434 - 6.76388 -43.22615 9.21189 - 1.75981 -23.02610 11.87143 - -0.00334 -0.01405 14.52950 + -0.01266 0.05757 50.86404 + 0.03914 0.92085 43.67677 + 0.34968 3.50580 36.48958 + 1.17957 7.86442 29.30165 + 2.77262 13.49523 22.11214 + 5.20791 18.72155 14.92023 + 5.23693 18.90884 14.92023 + 8.37003 22.61196 7.72428 + 11.94429 24.79069 0.52106 + 15.74305 25.68571 -6.69263 + 19.62490 26.07869 -13.92002 + 23.56859 26.51035 -21.16431 + 23.55386 -116.45465 -21.16431 + 11.92373 -116.14485 -26.00395 + 0.32549 -115.81699 -30.84816 + -11.23905 -115.47078 -35.69251 + -22.76805 -115.10604 -40.53256 + -34.25964 -114.72264 -45.36387 + -34.26090 -114.71223 -45.36387 + -49.51750 -114.11094 -51.78435 + -64.68359 -113.35453 -58.17104 + -79.73850 -112.44342 -64.51368 + -94.66166 -111.37826 -70.80201 + -109.43256 -110.15992 -77.02578 + -109.43199 -110.15783 -77.02578 + -124.02929 -108.77669 -83.17475 + -138.43247 -107.24624 -89.23910 + -152.62168 -105.56704 -95.20916 + -166.57711 -103.73985 -101.07526 + -180.27910 -101.76567 -106.82773 + -180.27909 -101.76685 -106.82773 + -193.68681 -99.32369 -112.45698 + -206.75869 -96.72954 -117.95409 + -219.47471 -93.98601 -123.31039 + -231.81507 -91.09483 -128.51722 + -243.76019 -88.05786 -133.56591 + -243.76023 -88.05886 -133.56591 + -255.25000 -84.26592 -138.44795 + -266.22536 -80.34274 -143.15584 + -276.66898 -76.29017 -147.68248 + -286.56369 -72.10907 -152.02073 + -295.89239 -67.80033 -156.16350 + -295.89239 -67.80096 -156.16350 + -304.62840 -63.21789 -160.10393 + -312.74488 -58.50833 -163.83653 + -320.22503 -53.67316 -167.35620 + -327.05217 -48.71321 -170.65786 + -333.20971 -43.62931 -173.73640 + -333.20972 -43.62992 -173.73640 + -338.67276 -38.29525 -176.58706 + -343.41632 -32.83772 -179.20666 + -347.42406 -27.25803 -181.59248 + -350.67973 -21.55682 -183.74179 + -353.16717 -15.73468 -185.65186 + -353.16718 -15.73521 -185.65186 + -354.53189 -11.54723 -186.92606 + -355.47428 -7.28900 -188.06422 + -355.98736 -2.96095 -189.06614 + -356.06416 1.43658 -189.93162 + -355.69774 5.90330 -190.66048 + -355.69774 5.90281 -190.66048 + -354.87749 10.51388 -191.25264 + -353.59264 15.19455 -191.70863 + -351.83626 19.94471 -192.02911 + -349.60139 24.76434 -192.21477 + -346.88107 29.65348 -192.26628 + -346.88107 29.65301 -192.26628 + -343.66642 34.64037 -192.18446 + -339.95294 39.62950 -191.97076 + -335.74045 44.62066 -191.62681 + -331.02873 49.61417 -191.15421 + -325.81753 54.61038 -190.55459 + -325.81773 54.61410 -190.55459 + -316.66323 61.56011 -189.36001 + -306.57572 66.49302 -187.86545 + -295.84256 69.95327 -186.08096 + -284.63982 72.47007 -184.01661 + -273.11552 74.04639 -181.68246 + -273.11550 74.04455 -181.68246 + -261.19428 77.57784 -179.08901 + -248.76597 80.49877 -176.24809 + -235.92660 82.81002 -173.17181 + -222.77177 84.51415 -169.87229 + -209.39669 85.61359 -166.36164 + -209.39670 85.61195 -166.36164 + -195.76612 87.78754 -162.65226 + -181.83162 89.48035 -158.75742 + -167.66891 90.69242 -154.69048 + -153.35337 91.42563 -150.46483 + -138.96013 91.68173 -146.09384 + -138.96014 91.68030 -146.09384 + -124.47136 92.65341 -141.59107 + -109.86213 93.21349 -136.97038 + -95.19725 93.36191 -132.24564 + -80.54131 93.09992 -127.43071 + -65.95871 92.42866 -122.53944 + -65.95872 92.42739 -122.53944 + -51.44171 92.27285 -117.58575 + -36.97806 91.74835 -112.58335 + -22.62585 90.85471 -107.54581 + -8.44302 89.59267 -102.48669 + 5.51258 87.96292 -97.41957 + 5.51256 87.96191 -97.41957 + 19.24171 86.71575 -92.35793 + 32.74820 85.12822 -87.31456 + 45.97844 83.19981 -82.30198 + 58.87888 80.93098 -77.33268 + 71.39608 78.32217 -72.41917 + 71.39604 78.32172 -72.41917 + 83.51329 75.84405 -67.57377 + 95.21584 73.04380 -62.80756 + 106.45304 69.92140 -58.13115 + 117.17429 66.47731 -53.55516 + 127.32908 62.71203 -49.09021 + 127.33189 62.69207 -49.09021 + 135.72250 49.04353 -44.94213 + 142.00325 34.56105 -40.91142 + 146.04926 19.24737 -37.00152 + 147.73604 3.10525 -33.21585 + 146.93955 -13.86245 -29.55785 + 147.00004 -14.30579 -29.55785 + 143.63305 -30.71659 -26.02922 + 137.74860 -47.85664 -22.62468 + 129.34429 -63.63192 -19.33717 + 118.82685 -76.05083 -16.15961 + 106.69133 -85.22400 -13.08492 + 106.68715 -85.41054 -13.08492 + 93.34296 -91.99787 -10.10361 + 79.23997 -95.54177 -7.20273 + 64.82874 -96.11952 -4.37009 + 50.55913 -93.59682 -1.59346 + 36.97492 -86.56955 1.13935 + 36.89629 -86.47145 1.13935 + 24.74774 -74.97660 3.84163 + 14.55408 -60.46637 6.52288 + 6.74917 -43.12919 9.18961 + 1.75609 -22.97678 11.84835 + -0.00334 -0.01404 14.50562 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12034,143 +12124,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 16.77343 0.00000 27.59211 1.44679 110 61 - - 33.08763 0.00000 55.18421 2.89358 110 60 - - 50.48522 0.00000 82.77632 4.34037 110 61 - - 57.24723 0.00000 110.36843 5.78715 110 52 - - 42.70829 0.00000 137.96054 7.23394 110 31 - - 42.70829 0.00000 68.20749 7.23394 110 63 - - 28.16120 0.00000 81.84899 8.68073 110 34 - - 13.59944 0.00000 95.49049 10.12752 110 14 - - 3.63658 0.00000 109.13199 11.57431 110 0 - - 3.96308 0.00000 122.77349 13.02110 110 0 - - 4.29961 0.00000 136.41499 14.46788 110 0 - - 4.29961 0.00000 111.45332 14.46788 110 0 - - 4.53043 0.00000 118.88354 15.43241 110 0 - - 4.76573 0.00000 126.31376 16.39693 110 0 - - 5.00430 0.00000 133.74398 17.36146 110 0 - - 5.24495 0.00000 141.17421 18.32599 110 0 - - 5.48646 0.00000 148.60443 19.29051 110 0 - - 5.48646 0.00000 137.71826 19.29051 110 0 - - 5.80761 1.30800 141.50704 19.82121 110 0 - - 6.12523 2.61600 145.29582 20.35192 110 0 - - 6.43680 3.92400 149.08461 20.88262 110 0 - - 6.73979 5.23200 152.87339 21.41333 110 0 - - 7.03166 6.54000 156.66217 21.94403 110 0 - - 7.15705 6.54000 150.27634 21.94403 110 0 - - 7.41450 7.84800 153.91069 22.47473 110 0 - - 7.66697 9.15600 157.54503 23.00544 110 0 - - 7.91193 10.46400 161.17938 23.53614 110 0 - - 8.14691 11.77200 164.81372 24.06684 110 0 - - 8.36954 13.08000 168.44806 24.59755 110 0 - - 11.79685 13.08000 162.75727 24.59755 110 0 - - 12.07609 14.38800 166.26883 25.12825 110 0 - - 12.33837 15.69600 169.78039 25.65895 110 0 - - 12.58237 17.00400 173.29196 26.18966 110 0 - - 12.80683 18.31200 176.80352 26.72036 110 0 - - 13.01051 19.62000 180.31508 27.25106 110 0 - - 20.04486 19.62000 112.91072 24.82969 110 0 - - 20.12070 20.92800 113.33345 24.92265 110 0 - - 20.18740 22.23600 113.75618 25.01561 110 0 - - 20.24487 23.54400 114.17890 25.10857 110 0 - - 20.29300 24.85200 114.60163 25.20153 110 0 - - 20.33171 26.16000 115.02436 25.29449 110 0 - - 21.90951 26.16000 114.42115 25.29449 110 0 - - 21.94539 27.46800 114.84166 25.38745 110 0 - - 21.97189 28.77600 115.26217 25.48041 110 0 - - 21.98935 30.08400 115.68268 25.57337 110 0 - - 21.99810 31.39200 116.10319 25.66633 110 0 - - 21.99845 32.70000 116.52370 25.75929 110 0 - - 23.36330 32.70000 116.01583 25.75929 110 0 - - 23.36055 34.00800 116.43451 25.85225 110 0 - - 23.35031 35.31600 116.85318 25.94521 110 0 - - 23.33329 36.62400 117.27186 26.03817 110 0 - - 23.31018 37.93200 117.69054 26.13113 110 0 - - 23.28167 39.24000 118.10921 26.22409 110 0 - - 18.82316 39.24000 183.43874 28.78144 110 0 - - 18.82487 40.22100 185.97557 29.17947 110 0 - - 18.82119 41.20200 188.51241 29.57750 110 0 - - 18.81308 42.18300 191.04924 29.97553 110 0 - - 18.80151 43.16400 193.58607 30.37355 110 0 - - 18.78747 44.14500 196.12290 30.77158 110 0 - - 19.85888 44.14500 192.60019 30.77158 110 0 - - 19.85467 45.12600 195.09146 31.16961 110 0 - - 19.85003 46.10700 197.58272 31.56764 110 0 - - 19.84607 47.08800 200.07399 31.96566 110 0 - - 19.84392 48.06900 202.56525 32.36369 110 0 - - 19.84470 49.05000 205.05652 32.76172 110 0 - - 20.73899 49.05000 201.76542 32.76172 110 0 - - 20.75281 50.03100 204.21670 33.15975 110 0 - - 20.77195 51.01200 206.66798 33.55777 110 0 - - 20.79736 51.99300 209.11926 33.95580 110 0 - - 20.83001 52.97400 211.57054 34.35383 110 0 - - 20.87086 53.95500 214.02182 34.75186 110 0 - - 21.82955 53.95500 210.11289 34.75186 110 0 - - 21.92606 55.49657 213.89455 35.37733 110 0 - - 22.04486 57.03814 217.67621 36.00280 110 0 - - 22.18552 58.57971 221.45787 36.62827 110 0 - - 22.34763 60.12129 225.23953 37.25374 110 0 - - 22.53075 61.66286 229.02119 37.87922 110 0 - - 23.50783 61.66286 224.58067 37.87922 110 0 - - 23.72397 63.20443 228.28901 38.50469 110 0 - - 23.95799 64.74600 231.99734 39.13016 110 0 - - 24.20840 66.28757 235.70568 39.75563 110 0 - - 24.47374 67.82914 239.41402 40.38110 110 0 - - 24.75251 69.37071 243.12235 41.00658 110 0 - - 25.53017 69.37071 239.03373 41.00658 110 0 - - 25.83070 70.91229 242.67970 41.63205 110 0 - - 26.14200 72.45386 246.32568 42.25752 110 0 - - 26.46292 73.99543 249.97165 42.88299 110 0 - - 26.79232 75.53700 253.61762 43.50846 110 0 - - 27.12902 77.07857 257.26360 44.13393 110 0 - - 27.74589 77.07857 253.47345 44.13393 110 0 - - 28.09606 78.62014 257.06570 44.75941 110 0 - - 28.45159 80.16171 260.65796 45.38488 110 0 - - 28.81168 81.70329 264.25022 46.01035 110 0 - - 29.17553 83.24486 267.84248 46.63582 110 0 - - 29.54236 84.78643 271.43474 47.26129 110 0 - - 30.02942 84.78643 267.90138 47.26129 110 0 - - 30.40386 86.32800 271.44688 47.88677 110 0 - - 30.78002 87.86957 274.99238 48.51224 110 0 - - 31.15747 89.41114 278.53787 49.13771 110 0 - - 31.53575 90.95271 282.08337 49.76318 110 0 - - 31.91443 92.49429 285.62887 50.38865 110 0 - - 32.26583 92.49429 282.31903 50.38865 110 0 - - 32.64817 94.03586 285.82344 51.01412 110 0 - - 33.03035 95.57743 289.32786 51.63960 110 0 - - 33.41225 97.11900 292.83227 52.26507 110 0 - - 33.79376 98.66057 296.33668 52.89054 110 0 - - 34.17479 100.20214 299.84109 53.51601 110 0 - - 32.98489 100.20214 296.72773 53.51601 110 0 - - 33.35358 101.74371 300.19575 54.14148 110 0 - - 33.72190 103.28529 303.66378 54.76696 110 0 - - 34.09007 104.82686 307.13180 55.39243 110 0 - - 34.45833 106.36843 310.59983 56.01790 110 0 - - 34.82689 107.91000 314.06785 56.64337 110 0 - - 29.55525 107.91000 734.00940 36.53923 110 0 - - 29.77121 109.38150 745.49575 37.11102 110 0 - - 29.99183 110.85300 756.98209 37.68281 110 0 - - 30.21794 112.32450 768.46843 38.25461 110 0 - - 30.45039 113.79600 779.95478 38.82640 110 0 - - 30.69001 115.26750 791.44112 39.39820 110 0 - - 28.44518 115.26750 738.87493 39.39820 110 0 - - 28.66382 116.73900 749.59837 39.96999 110 0 - - 28.88988 118.21050 760.32181 40.54178 110 0 - - 29.12312 119.68200 771.04525 41.11358 110 0 - - 29.36327 121.15350 781.76869 41.68537 110 0 - - 29.61009 122.62500 792.49213 42.25717 110 0 - - 24.34430 122.62500 772.62437 42.25717 110 0 - - 24.50271 124.09650 783.07897 42.82896 110 0 - - 24.66678 125.56800 793.53357 43.40075 110 0 - - 24.83567 127.03950 803.98818 43.97255 110 0 - - 28.79713 128.51100 814.44278 44.54434 110 0 - - 56.70677 129.98250 824.89738 45.11614 110 7 - - 56.70677 129.98250 814.08791 45.11614 110 7 - - 84.31040 131.45400 824.40552 45.68793 110 10 - - 111.70316 132.92550 834.72313 46.25972 110 13 - - 138.95043 134.39700 845.04073 46.83152 110 16 - - 166.11761 135.86850 855.35834 47.40331 110 19 - - 193.27011 137.34000 865.67594 47.97510 110 22 - + 16.44341 0.00000 27.59211 1.44679 110 60 - + 32.79379 0.00000 55.18421 2.89358 110 59 - + 50.22759 0.00000 82.77632 4.34037 110 61 - + 57.02583 0.00000 110.36843 5.78715 110 52 - + 42.52318 0.00000 137.96054 7.23394 110 31 - + 42.52318 0.00000 68.20749 7.23394 110 62 - + 28.01245 0.00000 81.84899 8.68073 110 34 - + 13.48717 0.00000 95.49049 10.12752 110 14 - + 3.56095 0.00000 109.13199 11.57431 110 0 - + 3.92429 0.00000 122.77349 13.02110 110 0 - + 4.29789 0.00000 136.41499 14.46788 110 0 - + 4.29789 0.00000 111.45332 14.46788 110 0 - + 4.55358 0.00000 118.88354 15.43241 110 0 - + 4.81390 0.00000 126.31376 16.39693 110 0 - + 5.07765 0.00000 133.74398 17.36146 110 0 - + 5.34364 0.00000 141.17421 18.32599 110 0 - + 5.61068 0.00000 148.60443 19.29051 110 0 - + 5.61068 0.00000 137.71826 19.29051 110 0 - + 5.96617 1.30800 141.50704 19.82121 110 0 - + 6.31851 2.61600 145.29582 20.35192 110 0 - + 6.66520 3.92400 149.08461 20.88262 110 0 - + 7.00373 5.23200 152.87339 21.41333 110 0 - + 7.33159 6.54000 156.66217 21.94403 110 0 - + 7.45699 6.54000 150.27634 21.94403 110 0 - + 7.75089 7.84800 153.91069 22.47473 110 0 - + 8.04029 9.15600 157.54503 23.00544 110 0 - + 8.32263 10.46400 161.17938 23.53614 110 0 - + 8.59546 11.77200 164.81372 24.06684 110 0 - + 8.85641 13.08000 168.44806 24.59755 110 0 - + 12.28372 13.08000 162.75727 24.59755 110 0 - + 12.60172 14.38800 166.26883 25.12825 110 0 - + 12.90319 15.69600 169.78039 25.65895 110 0 - + 13.18675 17.00400 173.29196 26.18966 110 0 - + 13.45110 18.31200 176.80352 26.72036 110 0 - + 13.69494 19.62000 180.31508 27.25106 110 0 - + 20.31863 19.62000 112.91072 24.82969 110 0 - + 20.41063 20.92800 113.33345 24.92265 110 0 - + 20.49355 22.23600 113.75618 25.01561 110 0 - + 20.56726 23.54400 114.17890 25.10857 110 0 - + 20.63162 24.85200 114.60163 25.20153 110 0 - + 20.68652 26.16000 115.02436 25.29449 110 0 - + 22.26432 26.16000 114.42115 25.29449 110 0 - + 22.31632 27.46800 114.84166 25.38745 110 0 - + 22.35882 28.77600 115.26217 25.48041 110 0 - + 22.39211 30.08400 115.68268 25.57337 110 0 - + 22.41646 31.39200 116.10319 25.66633 110 0 - + 22.43218 32.70000 116.52370 25.75929 110 0 - + 23.79703 32.70000 116.01583 25.75929 110 0 - + 23.80933 34.00800 116.43451 25.85225 110 0 - + 23.81379 35.31600 116.85318 25.94521 110 0 - + 23.81104 36.62400 117.27186 26.03817 110 0 - + 23.80171 37.93200 117.69054 26.13113 110 0 - + 23.78645 39.24000 118.10921 26.22409 110 0 - + 20.08512 39.24000 183.43874 28.78144 110 0 - + 20.11069 40.22100 185.97557 29.17947 110 0 - + 20.12993 41.20200 188.51241 29.57750 110 0 - + 20.14372 42.18300 191.04924 29.97553 110 0 - + 20.15295 43.16400 193.58607 30.37355 110 0 - + 20.15849 44.14500 196.12290 30.77158 110 0 - + 21.22991 44.14500 192.60019 30.77158 110 0 - + 21.24399 45.12600 195.09146 31.16961 110 0 - + 21.25622 46.10700 197.58272 31.56764 110 0 - + 21.26761 47.08800 200.07399 31.96566 110 0 - + 21.27912 48.06900 202.56525 32.36369 110 0 - + 21.29177 49.05000 205.05652 32.76172 110 0 - + 22.18606 49.05000 201.76542 32.76172 110 0 - + 22.20983 50.03100 204.21670 33.15975 110 0 - + 22.23682 51.01200 206.66798 33.55777 110 0 - + 22.26785 51.99300 209.11926 33.95580 110 0 - + 22.30369 52.97400 211.57054 34.35383 110 0 - + 22.34515 53.95500 214.02182 34.75186 110 0 - + 23.30383 53.95500 210.11289 34.75186 110 0 - + 23.39537 55.49657 213.89455 35.37733 110 0 - + 23.50162 57.03814 217.67621 36.00280 110 0 - + 23.62228 58.57971 221.45787 36.62827 110 0 - + 23.75701 60.12129 225.23953 37.25374 110 0 - + 23.90551 61.66286 229.02119 37.87922 110 0 - + 24.88259 61.66286 224.58067 37.87922 110 0 - + 25.05762 63.20443 228.28901 38.50469 110 0 - + 25.24534 64.74600 231.99734 39.13016 110 0 - + 25.44518 66.28757 235.70568 39.75563 110 0 - + 25.65653 67.82914 239.41402 40.38110 110 0 - + 25.87883 69.37071 243.12235 41.00658 110 0 - + 26.65648 69.37071 239.03373 41.00658 110 0 - + 26.89886 70.91229 242.67970 41.63205 110 0 - + 27.15089 72.45386 246.32568 42.25752 110 0 - + 27.41197 73.99543 249.97165 42.88299 110 0 - + 27.68146 75.53700 253.61762 43.50846 110 0 - + 27.95875 77.07857 257.26360 44.13393 110 0 - + 28.57561 77.07857 253.47345 44.13393 110 0 - + 28.86729 78.62014 257.06570 44.75941 110 0 - + 29.16556 80.16171 260.65796 45.38488 110 0 - + 29.46987 81.70329 264.25022 46.01035 110 0 - + 29.77967 83.24486 267.84248 46.63582 110 0 - + 30.09444 84.78643 271.43474 47.26129 110 0 - + 30.58149 84.78643 267.90138 47.26129 110 0 - + 30.90607 86.32800 271.44688 47.88677 110 0 - + 31.23466 87.86957 274.99238 48.51224 110 0 - + 31.56690 89.41114 278.53787 49.13771 110 0 - + 31.90240 90.95271 282.08337 49.76318 110 0 - + 32.24081 92.49429 285.62887 50.38865 110 0 - + 32.59221 92.49429 282.31903 50.38865 110 0 - + 32.93684 94.03586 285.82344 51.01412 110 0 - + 33.28381 95.57743 289.32786 51.63960 110 0 - + 33.63301 97.11900 292.83227 52.26507 110 0 - + 33.98427 98.66057 296.33668 52.89054 110 0 - + 34.33746 100.20214 299.84109 53.51601 110 0 - + 33.14756 100.20214 296.72773 53.51601 110 0 - + 33.49078 101.74371 300.19575 54.14148 110 0 - + 33.83591 103.28529 303.66378 54.76696 110 0 - + 34.18308 104.82686 307.13180 55.39243 110 0 - + 34.53242 106.36843 310.59983 56.01790 110 0 - + 34.88409 107.91000 314.06785 56.64337 110 0 - + 29.84124 107.91000 734.00940 36.53923 110 0 - + 29.98548 109.38150 745.49575 37.11102 110 0 - + 30.14257 110.85300 756.98209 37.68281 110 0 - + 30.31276 112.32450 768.46843 38.25461 110 0 - + 30.49633 113.79600 779.95478 38.82640 110 0 - + 30.69352 115.26750 791.44112 39.39820 110 0 - + 28.44869 115.26750 738.87493 39.39820 110 0 - + 28.63073 116.73900 749.59837 39.96999 110 0 - + 28.82539 118.21050 760.32181 40.54178 110 0 - + 29.03182 119.68200 771.04525 41.11358 110 0 - + 29.24916 121.15350 781.76869 41.68537 110 0 - + 29.47658 122.62500 792.49213 42.25717 110 0 - + 24.21079 122.62500 772.62437 42.25717 110 0 - + 24.35263 124.09650 783.07897 42.82896 110 0 - + 24.50246 125.56800 793.53357 43.40075 110 0 - + 24.65905 127.03950 803.98818 43.97255 110 0 - + 28.60971 128.51100 814.44278 44.54434 110 0 - + 56.50964 129.98250 824.89738 45.11614 110 7 - + 56.50964 129.98250 814.08791 45.11614 110 7 - + 84.10426 131.45400 824.40552 45.68793 110 10 - + 111.48850 132.92550 834.72313 46.25972 110 13 - + 138.72759 134.39700 845.04073 46.83152 110 16 - + 165.88677 135.86850 855.35834 47.40331 110 19 - + 193.03129 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12183,10 +12273,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 57.880 'Clay' - -4.00 43.676 'Peat' - -6.00 186.304 'Clay' - -13.00 159.753 'Sand' + 0.00 58.453 'Clay' + -4.00 44.462 'Peat' + -6.00 192.443 'Clay' + -13.00 159.505 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12263,17 +12353,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -12290,17 +12380,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -12389,72 +12479,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00001 0.00000 1 0 A - 7.27942 6.44657 11.10304 0.62547 110 66 - - 18.63994 7.98814 22.20609 1.25094 110 84 - - 29.97926 9.52971 33.30913 1.87642 110 90 - - 41.29776 11.07129 44.41217 2.50189 110 93 - - 52.59583 12.61286 55.51522 3.12736 110 95 - - 40.39697 12.61286 48.26946 3.12736 110 84 - - 46.11018 14.15443 57.92335 3.75283 110 80 - - 51.80599 15.69600 67.57724 4.37830 110 77 - - 57.48585 17.23757 77.23113 5.00377 110 74 - - 63.15121 18.77914 86.88502 5.62925 110 73 - - 68.80353 20.32071 96.53892 6.25472 110 71 - - 54.85557 20.32071 70.67406 6.25472 110 78 - - 59.43812 21.86229 77.74147 6.88019 110 76 - - 64.01022 23.40386 84.80887 7.50566 110 75 - - 68.57299 24.94543 91.87628 8.13113 110 75 - - 73.12756 26.48700 98.94369 8.75661 110 74 - - 77.67508 28.02857 106.01109 9.38208 110 73 - - 67.72829 28.02857 88.06042 9.38208 110 77 - - 71.72274 29.57014 93.93112 10.00755 110 76 - - 75.71203 31.11171 99.80181 10.63302 110 76 - - 79.69696 32.65329 105.67251 11.25849 110 75 - - 83.67829 34.19486 111.54320 11.88397 110 75 - - 87.65680 35.73643 117.41390 12.50944 110 75 - - 79.90478 35.73643 104.10611 12.50944 110 77 - - 83.54680 37.27800 109.31142 13.13491 110 76 - - 87.18722 38.81957 114.51672 13.76038 110 76 - - 90.82647 40.36114 119.72203 14.38585 110 76 - - 94.46498 41.90271 124.92734 15.01132 110 76 - - 98.10319 43.44429 130.13264 15.63680 110 75 - - 91.74440 43.44429 119.53821 15.63680 110 77 - - 95.15706 44.98586 124.31974 16.26227 110 77 - - 98.56994 46.52743 129.10127 16.88774 110 76 - - 101.98316 48.06900 133.88279 17.51321 110 76 - - 105.39680 49.61057 138.66432 18.13868 110 76 - - 108.81098 51.15214 143.44585 18.76416 110 76 - - 103.41729 51.15214 134.63740 18.76416 110 77 - - 106.66949 52.69371 139.12532 19.38963 110 77 - - 109.92209 54.23529 143.61323 20.01510 110 77 - - 113.17485 55.77686 148.10114 20.64057 110 76 - - 116.42754 57.31843 152.58906 21.26604 110 76 - - 119.67992 58.86000 157.07697 21.89152 110 76 - - 205.18580 58.86000 279.16236 14.12167 110 74 - - 213.21341 60.33150 290.46579 14.69346 110 73 - - 221.23635 61.80300 301.76922 15.26526 110 73 - - 229.25379 63.27450 313.07265 15.83705 110 73 - - 237.26489 64.74600 324.37608 16.40885 110 73 - - 245.26881 66.21750 335.67951 16.98064 110 73 - - 230.10750 66.21750 311.64171 16.98064 110 74 - - 237.62909 67.68900 322.13571 17.55243 110 74 - - 244.30658 69.16050 332.62971 18.12423 110 73 - - 211.97643 70.63200 343.12371 18.69602 110 62 - - 180.74977 72.10350 353.61771 19.26782 110 51 - - 150.55531 73.57500 364.11171 19.83961 110 41 - - 150.55531 73.57500 356.39681 19.83961 110 42 - - 121.29739 75.04650 366.66846 20.41140 110 33 - - 92.84620 76.51800 376.94011 20.98320 110 25 - - 65.07924 77.98950 387.21176 21.55499 110 17 - - 37.87399 79.46100 397.48341 22.12679 110 10 - - 11.10795 80.93250 407.75506 22.69858 110 0 - - 11.10795 80.93250 403.90034 22.69858 110 0 - - 8.25305 82.40400 414.07488 23.27037 110 0 - - 8.63361 83.87550 424.24943 23.84217 110 0 - - 9.01311 85.34700 434.42398 24.41396 110 0 - - 9.39205 86.81850 444.59852 24.98575 110 0 - - 9.77088 88.29000 454.77307 25.55755 110 0 - + 0.00000 4.90500 0.00002 0.00000 1 0 A + 18.50817 6.44657 23.80111 0.62547 110 78 - + 36.79946 7.98814 47.60221 1.25094 110 77 - + 45.51080 9.52971 71.40332 1.87642 110 64 - + 54.20867 11.07129 95.20443 2.50189 110 57 - + 62.89337 12.61286 119.00554 3.12736 110 53 - + 39.02220 12.61286 49.29372 3.12736 110 79 - + 44.77653 14.15443 59.15246 3.75283 110 76 - + 50.51863 15.69600 69.01120 4.37830 110 73 - + 56.24908 17.23757 78.86995 5.00377 110 71 - + 61.96842 18.77914 88.72869 5.62925 110 70 - + 67.67721 20.32071 98.58743 6.25472 110 69 - + 53.72926 20.32071 70.68330 6.25472 110 76 - + 58.36996 21.86229 77.75163 6.88019 110 75 - + 63.00132 23.40386 84.81996 7.50566 110 74 - + 67.62394 24.94543 91.88829 8.13113 110 74 - + 72.23842 26.48700 98.95662 8.75661 110 73 - + 76.84536 28.02857 106.02494 9.38208 110 72 - + 66.89856 28.02857 88.07144 9.38208 110 76 - + 70.95150 29.57014 93.94287 10.00755 110 76 - + 74.99806 31.11171 99.81430 10.63302 110 75 - + 79.03877 32.65329 105.68573 11.25849 110 75 - + 83.07415 34.19486 111.55716 11.88397 110 74 - + 87.10473 35.73643 117.42859 12.50944 110 74 - + 79.35270 35.73643 104.11800 12.50944 110 76 - + 83.04459 37.27800 109.32390 13.13491 110 76 - + 86.73258 38.81957 114.52980 13.76038 110 76 - + 90.41704 40.36114 119.73570 14.38585 110 76 - + 94.09833 41.90271 124.94160 15.01132 110 75 - + 97.77681 43.44429 130.14750 15.63680 110 75 - + 91.41802 43.44429 119.55043 15.63680 110 76 - + 94.86840 44.98586 124.33244 16.26227 110 76 - + 98.31648 46.52743 129.11446 16.88774 110 76 - + 101.76240 48.06900 133.89648 17.51321 110 76 - + 105.20630 49.61057 138.67850 18.13868 110 76 - + 108.64831 51.15214 143.46051 18.76416 110 76 - + 103.25462 51.15214 134.64963 18.76416 110 77 - + 106.53229 52.69371 139.13795 19.38963 110 77 - + 109.80808 54.23529 143.62627 20.01510 110 76 - + 113.08184 55.77686 148.11459 20.64057 110 76 - + 116.35344 57.31843 152.60291 21.26604 110 76 - + 119.62272 58.86000 157.09123 21.89152 110 76 - + 204.89981 58.86000 280.51782 14.12167 110 73 - + 212.99914 60.33150 291.87613 14.69346 110 73 - + 221.08561 61.80300 303.23445 15.26526 110 73 - + 229.15897 63.27450 314.59276 15.83705 110 73 - + 237.21896 64.74600 325.95107 16.40885 110 73 - + 245.26530 66.21750 337.30939 16.98064 110 73 - + 230.10399 66.21750 312.61080 16.98064 110 74 - + 237.66218 67.68900 323.13743 17.55243 110 74 - + 244.37108 69.16050 333.66406 18.12423 110 73 - + 212.06773 70.63200 344.19069 18.69602 110 62 - + 180.86388 72.10350 354.71732 19.26782 110 51 - + 150.68882 73.57500 365.24396 19.83961 110 41 - + 150.68882 73.57500 357.09310 19.83961 110 42 - + 121.44747 75.04650 367.38481 20.41140 110 33 - + 93.01052 76.51800 377.67653 20.98320 110 25 - + 65.25586 77.98950 387.96825 21.55499 110 17 - + 38.06141 79.46100 398.25997 22.12679 110 10 - + 11.30508 80.93250 408.55168 22.69858 110 0 - + 11.30508 80.93250 404.41665 22.69858 110 0 - + 8.45919 82.40400 414.60420 23.27037 110 0 - + 8.84826 83.87550 424.79176 23.84217 110 0 - + 9.23595 85.34700 434.97931 24.41396 110 0 - + 9.62289 86.81850 445.16686 24.98575 110 0 - + 10.00969 88.29000 455.35442 25.55755 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12469,8 +12559,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 411.828 'Clay' - -13.00 395.227 'Sand' + -6.00 418.814 'Clay' + -13.00 395.475 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12495,17 +12585,17 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 7.90682 11.47132 -7.08806 0.00000 19.42013 1 3 0 1.000 0 0 - 8.16960 11.90118 -7.83591 0.00000 19.74572 1 10 12 1.000 0 0 - 7.54962 11.01915 -6.91935 0.00000 13.56667 1 11 13 1.000 0 0 + 7.29688 10.61966 -6.39599 0.00000 13.31787 1 10 12 1.000 0 0 + 7.55686 11.01942 -6.75572 0.00000 13.44873 1 11 13 1.000 0 0 -24.64877 -33.28626 7.11387 16.24927 18.61625 2 3 0 1.000 0 0 - -24.85057 -33.36786 7.14681 16.32244 18.83921 2 10 12 1.000 0 0 - -23.04409 -32.60699 7.04179 11.16180 12.88365 2 11 13 1.000 0 0 + -22.84294 -32.52947 6.99532 11.11396 12.71953 2 10 12 1.000 0 0 + -23.04409 -32.60699 7.04179 11.14095 12.76033 2 11 13 1.000 0 0 -357.36675 -130.29407 -186.90167 57.83928 63.86128 3 3 0 1.000 0 0 - -466.96793 -150.45558 -290.47348 67.13909 71.84045 3 10 12 1.000 0 0 - -286.47657 -106.30945 -126.66806 41.39030 47.29322 3 11 13 1.000 0 0 + -218.22491 -91.84827 -87.98517 36.87428 43.00808 3 10 12 1.000 0 0 + -263.41000 -101.44644 -113.42288 40.48254 46.54521 3 11 13 1.000 0 0 -348.18884 -116.94920 -183.16395 56.76415 62.32165 4 3 0 1.000 0 0 - -352.61491 -115.53101 -187.19922 58.17216 63.64420 4 10 12 1.000 0 0 - -357.62960 -116.26916 -192.98981 45.20436 49.47297 4 11 13 1.000 0 0 + -351.98851 -116.84236 -190.57173 42.34261 46.09012 4 10 12 1.000 0 0 + -356.06416 -116.45465 -192.26628 44.94341 49.04222 4 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -12530,11 +12620,11 @@ AnchorName 2 10 7 12 1.000 56.00000 0 1 0 0 'Anchor' 2 11 7 13 1.000 56.00000 0 1 0 0 'Anchor' 3 3 7 0 1.000 168.00000 0 0 0 0 'Anchor' - 3 10 7 12 1.000 168.00000 0 0 0 0 'Anchor' - 3 11 7 13 1.000 161.86324 0 1 0 0 'Anchor' + 3 10 7 12 1.000 141.67839 0 1 0 0 'Anchor' + 3 11 7 13 1.000 155.07134 0 1 0 0 'Anchor' 4 3 7 0 1.000 144.19843 0 1 0 0 'Anchor' - 4 10 7 12 1.000 143.74462 0 1 0 0 'Anchor' - 4 11 7 13 1.000 142.71829 0 1 0 0 'Anchor' + 4 10 7 12 1.000 142.65945 0 1 0 0 'Anchor' + 4 11 7 13 1.000 142.72839 0 1 0 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -12550,15 +12640,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'Anchor' 142.65945 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-466.96793 -MaximumShearForce=-150.45558 +MaximumMoment=-357.36675 +MaximumShearForce=-130.29407 MaximumDisplacement=-186.90167 -MaximumPercentageMobilisedMoment=67.13909 -MaximumPercentageMobilisedResistance=71.84045 +MaximumPercentageMobilisedMoment=57.83928 +MaximumPercentageMobilisedResistance=63.86128 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-351.98851 +MaximumShearForce=-116.84236 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=42.34261 +MaximumPercentageMobilisedResistance=46.09012 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shi index 0f2525a1..fe62652f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:46 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:44 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.391 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.166 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -795,9 +866,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.025 +ResistanceFactor=2.043 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shd index 6515cdfb..07a473d9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:49 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -464,6 +464,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -473,6 +474,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -482,6 +484,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -491,6 +494,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -514,7 +518,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -525,8 +529,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -537,7 +543,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -556,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +618,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -637,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -664,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -718,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -745,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,23 +769,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.394 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.172 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,8 +852,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -796,9 +867,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.025 +ResistanceFactor=2.043 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,7 +880,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -826,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -853,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -880,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -911,7 +1042,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -942,7 +1073,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=8 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -952,6 +1083,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -970,8 +1102,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 1.394 1.000 0.000 0.000 1.000 1.000 1.000 - -1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.025 1.300 0.000 0.000 1.100 1.000 1.000 + 1 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 1 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 2 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 2 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 3 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 3 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 + 4 12 0.800 0.800 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.000 1.000 1.000 1.000 1.000 2.172 1.000 0.000 0.000 1.000 1.000 1.000 + 4 13 0.800 0.800 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 2.043 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4780,7 +4918,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4804,28 +4942,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.04000 - -2.08000 - -2.12000 - -2.16000 - -2.20000 - -2.20000 - -2.32000 - -2.44000 - -2.56000 - -2.68000 - -2.80000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 -2.80000 - -2.92000 - -3.04000 - -3.16000 - -3.28000 - -3.40000 - -3.40000 - -3.52000 - -3.64000 - -3.76000 - -3.88000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -4943,20 +5075,20 @@ PartialFactorSet=12 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.75 : Percentage mobilized resistance left - 11.73 : Percentage mobilized resistance right - 311.63 : Effective left - 311.65 : Effective right + 13.32 : Percentage mobilized resistance left + 8.26 : Percentage mobilized resistance right + 280.87 : Effective left + 280.88 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1578.21 : Max effective resistance left - 2657.66 : Max effective resistance right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 73.14 : Vertical force left - 68.78 : Vertical force right + 79.58 : Vertical force left + 74.94 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -4966,157 +5098,151 @@ PartialFactorSet=12 [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.83591 - 0.00000 0.00000 -7.82398 - 0.00000 0.00000 -7.81204 - 0.00000 0.00000 -7.80010 - 0.00000 0.00000 -7.78816 - 0.00000 0.00000 -7.77622 - 0.00000 -0.00001 -7.77622 - 0.00000 -0.00001 -7.76429 - 0.00000 -0.00001 -7.75235 - 0.00000 -0.00001 -7.74041 - 0.00000 -0.00001 -7.72847 - 0.00128 0.02564 -7.71653 - 0.00125 0.02523 -7.71653 - 0.00674 0.09714 -7.70857 - 0.02319 0.24446 -7.70061 - 0.05815 0.46720 -7.69266 - 0.11915 0.76535 -7.68475 - 0.21373 1.13891 -7.67688 - 0.21373 1.13891 -7.67688 - 0.26261 1.30595 -7.67375 - 0.31828 1.47807 -7.67063 - 0.38093 1.65528 -7.66754 - 0.45077 1.83756 -7.66447 - 0.52800 2.02492 -7.66143 - 0.52801 2.02483 -7.66143 - 0.79602 2.36559 -7.65253 - 1.07744 2.24845 -7.64409 - 1.31923 1.72092 -7.63621 - 1.48325 1.01317 -7.62904 - 1.56248 0.30769 -7.62268 - 1.56246 0.30769 -7.62268 - 1.55716 -0.39581 -7.61723 - 1.46754 -1.09761 -7.61265 - 1.29379 -1.79801 -7.60883 - 1.03606 -2.49724 -7.60569 - 0.69449 -3.19551 -7.60312 - 0.69449 -3.19547 -7.60312 - 0.26918 -3.89295 -7.60100 - -0.23979 -4.58974 -7.59903 - -0.83233 -5.28584 -7.59688 - -1.50836 -5.98114 -7.59423 - -2.26776 -6.67540 -7.59075 - -2.26776 -6.67552 -7.59075 - -3.10549 -5.89030 -7.58539 - -3.83846 -5.10412 -7.57790 - -4.46653 -4.31664 -7.56785 - -4.98949 -3.52742 -7.55483 - -5.40708 -2.73601 -7.53839 - -5.40707 -2.73624 -7.53839 - -5.71900 -1.94209 -7.51818 - -5.92482 -1.14463 -7.49406 - -6.02406 -0.34328 -7.46597 - -6.01616 0.46257 -7.43383 - -5.90048 1.27353 -7.39759 - -5.90048 1.27329 -7.39759 - -5.67633 2.08997 -7.35723 - -5.34287 2.91296 -7.31298 - -4.89923 3.74283 -7.26517 - -4.34446 4.58009 -7.21408 - -3.67753 5.42519 -7.16002 - -3.67753 5.42503 -7.16002 - -3.15771 4.97348 -7.11778 - -2.68244 4.53393 -7.07432 - -2.25051 4.10669 -7.02983 - -1.86068 3.69203 -6.98445 - -1.51168 3.29018 -6.93836 - -1.51168 3.29011 -6.93836 - -1.20222 2.90124 -6.89172 - -0.93099 2.52550 -6.84461 - -0.69668 2.16300 -6.79713 - -0.49795 1.81383 -6.74937 - -0.33347 1.47806 -6.70142 - -0.33347 1.47804 -6.70142 - -0.14802 0.99960 -6.62932 - -0.03207 0.55146 -6.55710 - 0.01893 0.13368 -6.48480 - 0.00955 -0.25373 -6.41246 - -0.05567 -0.61077 -6.34015 - -0.05566 -0.61079 -6.34015 - -0.17216 -0.93745 -6.26783 - -0.33538 -1.23371 -6.19537 - -0.54075 -1.49947 -6.12259 - -0.78369 -1.73456 -6.04931 - -1.05957 -1.93872 -5.97536 - -1.05956 -1.93889 -5.97536 - -1.36376 -2.11181 -5.90053 - -1.69152 -2.25306 -5.82451 - -2.03806 -2.36207 -5.74703 - -2.39850 -2.43816 -5.66777 - -2.76782 -2.48053 -5.58644 - -2.76781 -2.48095 -5.58644 - -3.14097 -2.48867 -5.50273 - -3.51262 -2.46065 -5.41630 - -3.87732 -2.39570 -5.32685 - -4.22942 -2.29248 -5.23406 - -4.56308 -2.14952 -5.13762 - -4.56306 -2.15020 -5.13762 - -4.87230 -1.96590 -5.03721 - -5.15068 -1.73855 -4.93260 - -5.39162 -1.46633 -4.82356 - -5.58824 -1.14734 -4.70991 - -5.73339 -0.77961 -4.59143 - -5.73338 -0.78046 -4.59143 - -5.81971 -0.36191 -4.46793 - -5.83931 0.10956 -4.33941 - -5.78409 0.63606 -4.20590 - -5.64564 1.21966 -4.06747 - -5.41523 1.86244 -3.92415 - -5.41524 1.86164 -3.92415 - -5.08398 2.56561 -3.77606 - -4.64240 3.33271 -3.62356 - -4.08092 4.16467 -3.46715 - -3.38968 5.06305 -3.30732 - -2.55862 6.02917 -3.14456 - -2.55865 6.02882 -3.14456 - -1.57757 7.06380 -2.97942 - -0.43603 8.16842 -2.81291 - 0.87645 9.34304 -2.64616 - 2.37037 10.58749 -2.48030 - 4.05616 11.90118 -2.31649 - 4.05891 11.88172 -2.31649 - 5.62970 9.08482 -2.15627 - 6.79193 6.43934 -2.00093 - 7.57354 4.03463 -1.85117 - 8.01771 1.93785 -1.70766 - 8.16960 0.13513 -1.57112 - 8.16829 0.13504 -1.57112 - 8.07088 -1.38863 -1.44190 - 7.76490 -2.64827 -1.31965 - 7.28888 -3.65809 -1.20398 - 6.67929 -4.43148 -1.09448 - 5.97063 -4.98101 -0.99078 - 5.97077 -4.97658 -0.99078 - 5.19640 -5.31382 -0.89230 - 4.38672 -5.44896 -0.79830 - 3.57138 -5.39068 -0.70809 - 2.77883 -5.14621 -0.62098 - 2.03654 -4.72132 -0.53627 - 2.03667 -4.71968 -0.53627 - 1.37161 -4.11867 -0.45324 - 0.80972 -3.34452 -0.37137 - 0.37681 -2.39930 -0.29031 - 0.09842 -1.28431 -0.20970 - -0.00002 -0.00012 -0.12916 + 0.00000 0.00000 -6.03943 + 0.00000 0.00000 -6.04955 + 0.00000 0.00000 -6.05967 + 0.00000 0.00000 -6.06980 + 0.00000 0.00000 -6.07992 + 0.00000 0.00000 -6.09004 + -0.00002 0.00008 -6.09004 + -0.00001 0.00008 -6.10016 + 0.00001 0.00008 -6.11028 + 0.00002 0.00008 -6.12040 + 0.00202 0.03998 -6.13052 + 0.01775 0.19468 -6.14065 + 0.01779 0.19496 -6.14065 + 0.04605 0.38130 -6.14740 + 0.09627 0.63422 -6.15416 + 0.17511 0.95371 -6.16098 + 0.28923 1.33975 -6.16787 + 0.44528 1.79233 -6.17487 + 0.44526 1.79267 -6.17487 + 0.70177 1.86235 -6.18450 + 0.91611 1.35203 -6.19462 + 1.06214 0.83782 -6.20533 + 1.13934 0.31948 -6.21671 + 1.14714 -0.20325 -6.22888 + 1.14714 -0.20313 -6.22888 + 1.08495 -0.73056 -6.24189 + 0.95211 -1.26298 -6.25564 + 0.74792 -1.80065 -6.26999 + 0.47169 -2.34377 -6.28482 + 0.12267 -2.89248 -6.29996 + 0.12268 -2.89248 -6.29996 + -0.29988 -3.44687 -6.31526 + -0.79674 -4.00694 -6.33035 + -1.36864 -4.57253 -6.34485 + -2.01631 -5.14335 -6.35838 + -2.74042 -5.71896 -6.37053 + -2.74042 -5.71913 -6.37053 + -3.45706 -5.03076 -6.38080 + -4.08201 -4.34375 -6.38871 + -4.61543 -3.65771 -6.39390 + -5.05743 -2.97222 -6.39599 + -5.40803 -2.28678 -6.39463 + -5.40803 -2.28701 -6.39463 + -5.66724 -1.60109 -6.38950 + -5.83494 -0.91411 -6.38050 + -5.91093 -0.22550 -6.36758 + -5.89497 0.46534 -6.35068 + -5.78671 1.15901 -6.32976 + -5.78672 1.15877 -6.32976 + -5.58578 1.85586 -6.30481 + -5.29164 2.55696 -6.27605 + -4.90372 3.26262 -6.24373 + -4.42138 3.97335 -6.20813 + -3.84392 4.68962 -6.16951 + -3.84392 4.68945 -6.16951 + -3.39369 4.31663 -6.13878 + -2.98030 3.95259 -6.10674 + -2.60287 3.59769 -6.07355 + -2.26045 3.25222 -6.03935 + -1.95210 2.91644 -6.00429 + -1.95210 2.91635 -6.00429 + -1.67684 2.59050 -5.96849 + -1.43367 2.27476 -5.93204 + -1.22155 1.96931 -5.89504 + -1.03946 1.67428 -5.85756 + -0.88634 1.38980 -5.81968 + -0.88634 1.38973 -5.81968 + -0.70868 0.98302 -5.76228 + -0.59022 0.60055 -5.70427 + -0.52729 0.24256 -5.64570 + -0.51622 -0.09073 -5.58664 + -0.55327 -0.39912 -5.52714 + -0.55327 -0.39922 -5.52714 + -0.63471 -0.68253 -5.46721 + -0.75676 -0.94055 -5.40674 + -0.91560 -1.17304 -5.34558 + -1.10738 -1.37966 -5.28360 + -1.32819 -1.56005 -5.22067 + -1.32818 -1.56026 -5.22067 + -1.57408 -1.71399 -5.15663 + -1.84102 -1.84053 -5.09122 + -2.12485 -1.93927 -5.02421 + -2.42137 -2.00948 -4.95536 + -2.72623 -2.05032 -4.88441 + -2.72622 -2.05074 -4.88441 + -3.03500 -2.06129 -4.81112 + -3.34304 -2.04052 -4.73521 + -3.64554 -1.98726 -4.65641 + -3.93753 -1.90024 -4.57448 + -4.21385 -1.77810 -4.48915 + -4.21384 -1.77873 -4.48915 + -4.46921 -1.61998 -4.40015 + -4.69793 -1.42304 -4.30729 + -4.89413 -1.18625 -4.21041 + -5.05172 -0.90789 -4.10933 + -5.16433 -0.58616 -4.00388 + -5.16433 -0.58693 -4.00388 + -5.22542 -0.21997 -3.89393 + -5.22796 0.19413 -3.77945 + -5.16473 0.65724 -3.66052 + -5.02824 1.17123 -3.53718 + -4.81073 1.73793 -3.40950 + -4.81074 1.73723 -3.40950 + -4.50426 2.35845 -3.27756 + -4.10039 3.03590 -3.14173 + -3.59060 3.77112 -3.00245 + -2.96610 4.56548 -2.86015 + -2.21794 5.42014 -2.71529 + -2.21797 5.41984 -2.71529 + -1.33707 6.33577 -2.56837 + -0.31414 7.31366 -2.42028 + 0.86014 8.35377 -2.27205 + 2.19510 9.45597 -2.12468 + 3.70000 10.61966 -1.97919 + 3.70244 10.60243 -1.97919 + 5.09664 8.00689 -1.83700 + 6.11435 5.60821 -1.69921 + 6.79292 3.48588 -1.56644 + 7.17376 1.63647 -1.43929 + 7.29688 0.04753 -1.31837 + 7.29572 0.04749 -1.31837 + 7.19920 -1.29439 -1.20399 + 6.91908 -2.40260 -1.09583 + 6.48947 -3.28982 -0.99352 + 5.94259 -3.96798 -0.89672 + 5.30897 -4.44827 -0.80507 + 5.30908 -4.44433 -0.80507 + 4.61820 -4.73704 -0.71808 + 3.89690 -4.85122 -0.63505 + 3.17137 -4.79459 -0.55540 + 2.46674 -4.57357 -0.47849 + 1.80726 -4.19329 -0.40372 + 1.80738 -4.19184 -0.40372 + 1.21686 -3.65611 -0.33044 + 0.71818 -2.96757 -0.25819 + 0.33413 -2.12806 -0.18666 + 0.08726 -1.13874 -0.11552 + -0.00002 -0.00010 -0.04445 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5152,10 +5278,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5182,7 +5308,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -5192,36 +5318,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.20000 60.51500 0.00000 162.67095 0.00000 - -2.80000 60.70000 0.00000 230.46293 0.00000 - -3.40000 60.83300 0.00000 303.46162 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -5232,36 +5357,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.10000 30.61900 107.20332 0.00000 0.70763 0.00000 3.50120 - -2.50000 33.09500 112.98663 0.00000 0.70763 0.00000 3.41401 - -3.10000 36.80900 121.66449 0.00000 0.70763 0.00000 3.30529 - -3.70000 40.52300 130.34316 0.00000 0.70763 0.00000 3.21652 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5273,149 +5397,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00001 0.00000 1 0 A - 0.00000 0.00000 19.44961 1.59216 1 0 A - 0.00000 0.00000 38.89922 3.18433 1 0 A - 0.00000 0.00000 58.34883 4.77649 1 0 A - 0.00000 0.00000 77.79845 6.36865 1 0 A - 0.00000 0.00000 97.24806 7.96082 1 0 A - 0.00000 0.00000 50.01834 7.96082 1 0 A - 0.00000 0.00000 60.02201 9.55298 1 0 A - 0.00000 0.00000 70.02568 11.14515 1 0 A - 0.00000 0.00000 80.02935 12.73731 1 0 A - 0.00000 0.00000 90.03302 14.32947 1 0 A - 0.48857 0.00000 100.03668 15.92164 110 0 - - 0.48857 0.00000 83.12851 15.92164 110 0 - - 1.56594 0.00000 88.67041 16.98308 110 0 - - 2.64330 0.00000 94.21231 18.04452 110 0 - - 3.72064 0.00000 99.75421 19.10596 110 0 - - 4.79791 0.00000 105.29611 20.16741 110 0 - - 5.87509 0.00000 110.83802 21.22885 110 0 - - 5.87509 0.00000 105.03607 21.22885 110 0 - - 6.05656 0.39240 105.90297 21.40406 110 0 - - 6.23800 0.78480 106.76987 21.57927 110 0 - - 6.41939 1.17720 107.63677 21.75448 110 0 - - 6.60074 1.56960 108.50366 21.92968 110 0 - - 6.78204 1.96200 109.37056 22.10489 110 0 - - 6.78204 1.96200 106.64682 22.10489 110 0 - - 7.32546 3.13920 109.18274 22.63052 110 0 - - 7.86797 4.31640 111.71867 23.15615 110 0 - - 8.40934 5.49360 114.25460 23.68177 110 0 - - 8.94933 6.67080 116.79052 24.20740 110 0 - - 9.48767 7.84800 119.32645 24.73302 110 0 - - 9.48767 7.84800 115.52656 24.73302 110 0 - - 10.02419 9.02520 117.98173 25.25865 110 0 - - 10.55898 10.20240 120.43690 25.78428 110 0 - - 11.09224 11.37960 122.89207 26.30990 110 0 - - 11.62415 12.55680 125.34725 26.83553 110 0 - - 12.15491 13.73400 127.80242 27.36116 110 0 - - 12.15491 13.73400 124.37008 27.36116 110 0 - - 12.68479 14.91120 126.75931 27.88678 110 0 - - 13.21436 16.08840 129.14854 28.41241 110 0 - - 13.74428 17.26560 131.53778 28.93803 110 0 - - 14.27520 18.44280 133.92701 29.46366 110 0 - - 14.80778 19.62000 136.31624 29.98929 110 0 - - 21.81258 19.62000 93.61408 27.88519 110 0 - - 21.92128 20.92800 93.96456 27.98959 110 0 - - 22.03167 22.23600 94.31504 28.09399 110 0 - - 22.14410 23.54400 94.66552 28.19838 110 0 - - 22.25892 24.85200 95.01601 28.30278 110 0 - - 22.37647 26.16000 95.36649 28.40718 110 0 - - 22.37647 26.16000 94.99596 28.40718 110 0 - - 22.49704 27.46800 95.34508 28.51158 110 0 - - 22.62073 28.77600 95.69420 28.61598 110 0 - - 22.74761 30.08400 96.04332 28.72038 110 0 - - 22.87771 31.39200 96.39244 28.82478 110 0 - - 23.01111 32.70000 96.74156 28.92918 110 0 - - 23.01111 32.70000 96.43144 28.92918 110 0 - - 23.14780 34.00800 96.77944 29.03358 110 0 - - 23.28759 35.31600 97.12744 29.13798 110 0 - - 23.43025 36.62400 97.47544 29.24238 110 0 - - 23.57552 37.93200 97.82344 29.34678 110 0 - - 23.72316 39.24000 98.17145 29.45118 110 0 - - 17.35340 39.24000 139.39178 31.67344 110 0 - - 17.87591 40.22100 141.31947 32.11146 110 0 - - 18.40084 41.20200 143.24716 32.54949 110 0 - - 18.92785 42.18300 145.17485 32.98751 110 0 - - 19.45663 43.16400 147.10255 33.42553 110 0 - - 19.98682 44.14500 149.03024 33.86355 110 0 - - 19.98682 44.14500 146.65286 33.86355 110 0 - - 20.51814 45.12600 148.54980 34.30157 110 0 - - 21.05038 46.10700 150.44674 34.73960 110 0 - - 21.58336 47.08800 152.34368 35.17762 110 0 - - 22.11690 48.06900 154.24062 35.61564 110 0 - - 22.65082 49.05000 156.13756 36.05366 110 0 - - 22.65082 49.05000 153.40009 36.05366 110 0 - - 23.45205 50.52150 156.19561 36.71069 110 0 - - 24.25353 51.99300 158.99114 37.36773 110 0 - - 25.05516 53.46450 161.78666 38.02476 110 0 - - 25.85686 54.93600 164.58219 38.68179 110 0 - - 26.65854 56.40750 167.37771 39.33883 110 0 - - 26.65854 56.40750 164.33167 39.33883 110 0 - - 27.46019 57.87900 167.07632 39.99586 110 0 - - 28.26214 59.35050 169.82097 40.65289 110 0 - - 29.06474 60.82200 172.56562 41.30992 110 0 - - 29.86833 62.29350 175.31027 41.96696 110 0 - - 30.67326 63.76500 178.05492 42.62399 110 0 - - 30.67326 63.76500 175.25279 42.62399 110 0 - - 31.47997 65.23650 177.95425 43.28102 110 0 - - 32.28903 66.70800 180.65570 43.93806 110 0 - - 33.10103 68.17950 183.35716 44.59509 110 0 - - 33.91658 69.65100 186.05862 45.25212 110 0 - - 34.73627 71.12250 188.76007 45.90915 110 0 - - 34.73627 71.12250 186.16443 45.90915 110 0 - - 35.56073 72.59400 188.82874 46.56619 110 0 - - 36.39061 74.06550 191.49305 47.22322 110 0 - - 37.22655 75.53700 194.15736 47.88025 110 0 - - 38.06916 77.00850 196.82167 48.53729 110 0 - - 38.91908 78.48000 199.48598 49.19432 110 0 - - 38.91908 78.48000 197.06773 49.19432 110 0 - - 39.77692 79.95150 199.69974 49.85135 110 0 - - 40.64319 81.42300 202.33175 50.50838 110 0 - - 41.51829 82.89450 204.96376 51.16542 110 0 - - 42.40264 84.36600 207.59577 51.82245 110 0 - - 43.29663 85.83750 210.22778 52.47948 110 0 - - 43.29663 85.83750 207.96375 52.47948 110 0 - - 44.20065 87.30900 210.56741 53.13652 110 0 - - 45.11473 88.78050 213.17108 53.79355 110 0 - - 46.03878 90.25200 215.77474 54.45058 110 0 - - 46.97268 91.72350 218.37841 55.10761 110 0 - - 47.91634 93.19500 220.98207 55.76465 110 0 - - 47.91634 93.19500 218.85344 55.76465 110 0 - - 48.86957 94.66650 221.43202 56.42168 110 0 - - 49.83160 96.13800 224.01061 57.07871 110 0 - - 50.80145 97.60950 226.58920 57.73575 110 0 - - 51.77814 99.08100 229.16778 58.39278 110 0 - - 52.76070 100.55250 231.74637 59.04981 110 0 - - 52.76070 100.55250 229.73763 59.04981 110 0 - - 53.74800 102.02400 232.29387 59.70685 110 0 - - 54.73806 103.49550 234.85010 60.36388 110 0 - - 55.72860 104.96700 237.40634 61.02091 110 0 - - 56.71734 106.43850 239.96257 61.67794 110 0 - - 57.70200 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.41416 110.85300 609.04150 45.42350 110 0 - - 27.60110 112.32450 618.28301 46.11275 110 0 - - 29.72539 113.79600 627.52452 46.80200 110 0 - - 31.78006 115.26750 636.76604 47.49125 110 0 - - 31.78006 115.26750 585.69985 47.49125 110 0 - - 33.76147 116.73900 594.20023 48.18050 110 0 - - 35.67322 118.21050 602.70061 48.86975 110 0 - - 37.51923 119.68200 611.20099 49.55900 110 0 - - 39.30342 121.15350 619.70137 50.24825 110 0 - - 41.02973 122.62500 628.20175 50.93750 110 0 - - 41.02973 122.62500 610.51735 50.93750 110 0 - - 42.70373 124.09650 618.77844 51.62675 110 0 - - 44.33296 125.56800 627.03952 52.31600 110 0 - - 45.92433 127.03950 635.30061 53.00525 110 0 - - 47.48473 128.51100 643.56170 53.69450 110 0 - - 49.02106 129.98250 651.82278 54.38375 110 0 - - 49.02106 129.98250 642.44252 54.38375 110 0 - - 50.54062 131.45400 650.58472 55.07300 110 0 - - 52.04852 132.92550 658.72693 55.76225 110 0 - - 53.54837 134.39700 666.86913 56.45150 110 0 - - 55.04378 135.86850 675.01133 57.14075 110 0 - - 56.53837 137.34000 683.15353 57.83000 110 0 - + 0.00000 0.00000 27.59211 1.44679 1 0 A + 0.00000 0.00000 55.18421 2.89358 1 0 A + 0.00000 0.00000 82.77632 4.34037 1 0 A + 0.00000 0.00000 110.36843 5.78715 1 0 A + 0.00000 0.00000 137.96054 7.23394 1 0 A + 0.00000 0.00000 68.20749 7.23394 1 0 A + 0.00000 0.00000 81.84899 8.68073 1 0 A + 0.00000 0.00000 95.49049 10.12752 1 0 A + 0.00000 0.00000 109.13199 11.57431 1 0 A + 0.76005 0.00000 122.77349 13.02110 110 0 - + 2.18659 0.00000 136.41499 14.46788 110 0 - + 2.18659 0.00000 111.45332 14.46788 110 0 - + 3.13761 0.00000 118.88354 15.43241 110 0 - + 4.08861 0.00000 126.31376 16.39693 110 0 - + 5.03951 0.00000 133.74398 17.36146 110 0 - + 5.99025 0.00000 141.17421 18.32599 110 0 - + 6.94077 0.00000 148.60443 19.29051 110 0 - + 6.94077 0.00000 137.71826 19.29051 110 0 - + 7.45220 1.30800 141.50704 19.82121 110 0 - + 7.96267 2.61600 145.29582 20.35192 110 0 - + 8.47197 3.92400 149.08461 20.88262 110 0 - + 8.97990 5.23200 152.87339 21.41333 110 0 - + 9.48627 6.54000 156.66217 21.94403 110 0 - + 9.48627 6.54000 150.27634 21.94403 110 0 - + 9.99096 7.84800 153.91069 22.47473 110 0 - + 10.49416 9.15600 157.54503 23.00544 110 0 - + 10.99615 10.46400 161.17938 23.53614 110 0 - + 11.49721 11.77200 164.81372 24.06684 110 0 - + 11.99762 13.08000 168.44806 24.59755 110 0 - + 11.99762 13.08000 162.75727 24.59755 110 0 - + 12.49774 14.38800 166.26883 25.12825 110 0 - + 12.99825 15.69600 169.78039 25.65895 110 0 - + 13.49995 17.00400 173.29196 26.18966 110 0 - + 14.00361 18.31200 176.80352 26.72036 110 0 - + 14.51001 19.62000 180.31508 27.25106 110 0 - + 19.73327 19.62000 112.91072 24.82969 110 0 - + 19.81801 20.92800 113.33345 24.92265 110 0 - + 19.90464 22.23600 113.75618 25.01561 110 0 - + 19.99345 23.54400 114.17890 25.10857 110 0 - + 20.08474 24.85200 114.60163 25.20153 110 0 - + 20.17879 26.16000 115.02436 25.29449 110 0 - + 20.17879 26.16000 114.42115 25.29449 110 0 - + 20.27585 27.46800 114.84166 25.38745 110 0 - + 20.37601 28.77600 115.26217 25.48041 110 0 - + 20.47931 30.08400 115.68268 25.57337 110 0 - + 20.58578 31.39200 116.10319 25.66633 110 0 - + 20.69548 32.70000 116.52370 25.75929 110 0 - + 20.69548 32.70000 116.01583 25.75929 110 0 - + 20.80840 34.00800 116.43451 25.85225 110 0 - + 20.92437 35.31600 116.85318 25.94521 110 0 - + 21.04318 36.62400 117.27186 26.03817 110 0 - + 21.16463 37.93200 117.69054 26.13113 110 0 - + 21.28848 39.24000 118.10921 26.22409 110 0 - + 16.44243 39.24000 183.43874 28.78144 110 0 - + 16.90192 40.22100 185.97557 29.17947 110 0 - + 17.36401 41.20200 188.51241 29.57750 110 0 - + 17.82842 42.18300 191.04924 29.97553 110 0 - + 18.29485 43.16400 193.58607 30.37355 110 0 - + 18.76301 44.14500 196.12290 30.77158 110 0 - + 18.76301 44.14500 192.60019 30.77158 110 0 - + 19.23264 45.12600 195.09146 31.16961 110 0 - + 19.70355 46.10700 197.58272 31.56764 110 0 - + 20.17558 47.08800 200.07399 31.96566 110 0 - + 20.64857 48.06900 202.56525 32.36369 110 0 - + 21.12236 49.05000 205.05652 32.76172 110 0 - + 21.12236 49.05000 201.00495 32.76172 110 0 - + 21.83421 50.52150 204.66801 33.35876 110 0 - + 22.54727 51.99300 208.33107 33.95580 110 0 - + 23.26144 53.46450 211.99414 34.55284 110 0 - + 23.97660 54.93600 215.65720 35.14988 110 0 - + 24.69264 56.40750 219.32027 35.74693 110 0 - + 24.69264 56.40750 214.81611 35.74693 110 0 - + 25.40954 57.87900 218.40395 36.34397 110 0 - + 26.12754 59.35050 221.99178 36.94101 110 0 - + 26.84689 60.82200 225.57962 37.53805 110 0 - + 27.56789 62.29350 229.16745 38.13509 110 0 - + 28.29078 63.76500 232.75529 38.73213 110 0 - + 28.29078 63.76500 228.61475 38.73213 110 0 - + 29.01592 65.23650 232.13876 39.32917 110 0 - + 29.74378 66.70800 235.66278 39.92621 110 0 - + 30.47484 68.17950 239.18679 40.52326 110 0 - + 31.20959 69.65100 242.71080 41.12030 110 0 - + 31.94851 71.12250 246.23481 41.71734 110 0 - + 31.94851 71.12250 242.40131 41.71734 110 0 - + 32.69214 72.59400 245.87046 42.31438 110 0 - + 33.44101 74.06550 249.33961 42.91142 110 0 - + 34.19564 75.53700 252.80875 43.50846 110 0 - + 34.95655 77.00850 256.27790 44.10550 110 0 - + 35.72426 78.48000 259.74705 44.70255 110 0 - + 35.72426 78.48000 256.17685 44.70255 110 0 - + 36.49928 79.95150 259.59831 45.29959 110 0 - + 37.28204 81.42300 263.01977 45.89663 110 0 - + 38.07285 82.89450 266.44124 46.49367 110 0 - + 38.87206 84.36600 269.86270 47.09071 110 0 - + 39.67998 85.83750 273.28417 47.68775 110 0 - + 39.67998 85.83750 269.94257 47.68775 110 0 - + 40.49694 87.30900 273.32219 48.28479 110 0 - + 41.32293 88.78050 276.70182 48.88183 110 0 - + 42.15785 90.25200 280.08145 49.47888 110 0 - + 43.00156 91.72350 283.46108 50.07592 110 0 - + 43.85397 93.19500 286.84071 50.67296 110 0 - + 43.85397 93.19500 283.69963 50.67296 110 0 - + 44.71487 94.66650 287.04225 51.27000 110 0 - + 45.58357 96.13800 290.38487 51.86704 110 0 - + 46.45918 97.60950 293.72749 52.46408 110 0 - + 47.34082 99.08100 297.07011 53.06112 110 0 - + 48.22758 100.55250 300.41273 53.65817 110 0 - + 48.22758 100.55250 297.44910 53.65817 110 0 - + 49.11846 102.02400 300.75875 54.25521 110 0 - + 50.01168 103.49550 304.06839 54.85225 110 0 - + 50.90520 104.96700 307.37804 55.44929 110 0 - + 51.79698 106.43850 310.68768 56.04633 110 0 - + 52.68498 107.91000 313.99732 56.64337 110 0 - + 18.59731 107.91000 734.00940 36.53923 1 0 A + 18.88833 109.38150 745.49575 37.11102 1 0 A + 20.69072 110.85300 756.98209 37.68281 110 0 - + 22.59023 112.32450 768.46843 38.25461 110 0 - + 24.43351 113.79600 779.95478 38.82640 110 0 - + 26.21450 115.26750 791.44112 39.39820 110 0 - + 26.21450 115.26750 738.87493 39.39820 110 0 - + 27.93007 116.73900 749.59837 39.96999 110 0 - + 29.58350 118.21050 760.32181 40.54178 110 0 - + 31.17833 119.68200 771.04525 41.11358 110 0 - + 32.71813 121.15350 781.76869 41.68537 110 0 - + 34.20642 122.62500 792.49213 42.25717 110 0 - + 34.20642 122.62500 772.62437 42.25717 110 0 - + 35.64820 124.09650 783.07897 42.82896 110 0 - + 37.05021 125.56800 793.53357 43.40075 110 0 - + 38.41858 127.03950 803.98818 43.97255 110 0 - + 39.75944 128.51100 814.44278 44.54434 110 0 - + 41.07892 129.98250 824.89738 45.11614 110 0 - + 41.07892 129.98250 814.08791 45.11614 110 0 - + 42.38354 131.45400 824.40552 45.68793 110 0 - + 43.67781 132.92550 834.72313 46.25972 110 0 - + 44.96494 134.39700 845.04073 46.83152 110 0 - + 46.24813 135.86850 855.35834 47.40331 110 0 - + 47.53059 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5428,10 +5546,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 22.358 'Clay' - -4.00 45.426 'Peat' - -6.00 256.291 'Clay' - -13.00 121.135 'Sand' + 0.00 24.034 'Clay' + -4.00 40.912 'Peat' + -6.00 235.708 'Clay' + -13.00 100.609 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5446,7 +5564,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.20 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -5468,10 +5586,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -5507,27 +5625,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 59.75500 0.00000 8.99123 0.00000 - -3.40000 59.77200 0.00000 35.25668 0.00000 - -4.00000 59.89800 0.00000 69.58790 0.00000 - -4.66667 59.20900 0.00000 89.31503 0.00000 - -5.33333 58.67600 0.00000 110.07099 0.00000 - -6.00000 58.25100 0.00000 131.87061 0.00000 - -6.50000 58.76300 0.00000 167.37780 0.00000 - -7.00000 59.13400 0.00000 206.48598 0.00000 - -7.75000 59.54300 0.00000 271.91621 0.00000 - -8.50000 59.84800 0.00000 345.47614 0.00000 - -9.25000 60.08900 0.00000 427.16878 0.00000 - -10.00000 60.28800 0.00000 516.99470 0.00000 - -10.75000 60.45500 0.00000 614.95354 0.00000 - -11.50000 60.59900 36.27400 721.04464 3.71405 - -12.25000 60.72500 36.50100 835.26727 11.91689 - -13.00000 60.83700 36.71200 957.62069 21.79553 - -13.75000 65.59200 36.44300 1259.58412 34.35345 - -14.50000 67.30200 36.20200 1567.65056 48.36323 - -15.25000 68.31000 35.98600 1898.11566 63.82466 - -16.00000 68.98700 35.79600 2254.58535 80.73725 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5544,32 +5662,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 14.98539 0.00000 0.70763 0.00000 8.06968 - -3.10000 5.57100 43.77575 0.00000 0.70763 0.00000 7.85779 - -3.70000 9.28500 57.21870 0.00000 0.70763 0.00000 6.16249 - -4.33333 11.53867 29.59068 0.00000 0.65798 0.00000 2.56448 - -5.00000 12.33200 31.13394 0.00000 0.65798 0.00000 2.52465 - -5.66667 13.12533 32.69943 0.00000 0.65798 0.00000 2.49132 - -6.25000 15.06950 71.01438 0.00000 0.70763 0.00000 4.71246 - -6.75000 18.16450 78.21636 0.00000 0.70763 0.00000 4.30600 - -7.37500 22.03325 87.24031 0.00000 0.70763 0.00000 3.95948 - -8.12500 26.67575 98.07990 0.00000 0.70763 0.00000 3.67674 - -8.87500 31.31825 108.92353 0.00000 0.70763 0.00000 3.47796 - -9.62500 35.96075 119.76789 0.00000 0.70763 0.00000 3.33052 - -10.37500 40.60325 130.61179 0.00000 0.70763 0.00000 3.21678 - -11.12500 45.24575 141.45480 4.95207 0.70763 0.10945 3.12637 - -11.87500 49.88825 152.29683 10.93712 0.70763 0.21923 3.05276 - -12.62500 54.53075 163.13790 13.17152 0.70763 0.24154 2.99167 - -13.37500 60.29825 402.61790 16.74389 0.50000 0.27768 6.67711 - -14.12500 67.19075 410.75525 18.67970 0.50000 0.27801 6.11327 - -14.87500 74.08325 440.62014 20.61524 0.50000 0.27827 5.94764 - -15.62500 80.97575 475.29291 22.55013 0.50000 0.27848 5.86957 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5598,132 +5716,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.78480 0.00000 0.00000 -1 0 - - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.56960 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 5.99416 3.13920 5.99416 0.52563 202 100 P - 11.98831 4.31640 11.98831 1.05125 202 100 P - 16.84931 5.49360 17.98247 1.57688 110 94 - - 17.36058 6.67080 23.97662 2.10251 110 72 - - 17.87348 7.84800 29.97078 2.62813 110 60 - - 17.87348 7.84800 29.18383 2.62813 110 61 - - 18.38822 9.02520 35.02060 3.15376 110 53 - - 18.90468 10.20240 40.85737 3.67938 110 46 - - 19.42267 11.37960 46.69414 4.20501 110 42 - - 19.94201 12.55680 52.53090 4.73064 110 38 - - 20.46251 13.73400 58.36767 5.25626 110 35 - - 20.46251 13.73400 45.77496 5.25626 110 45 - - 20.98389 14.91120 50.35245 5.78189 110 42 - - 21.50557 16.08840 54.92995 6.30752 110 39 - - 22.02690 17.26560 59.50745 6.83314 110 37 - - 22.54723 18.44280 64.08494 7.35877 110 35 - - 23.06590 19.62000 68.66244 7.88439 110 34 - - 13.40381 19.62000 28.57344 7.33121 110 47 - - 13.50392 20.92800 28.98034 7.43561 110 47 - - 13.60233 22.23600 29.38724 7.54001 110 46 - - 13.69869 23.54400 29.79413 7.64441 110 46 - - 13.79267 24.85200 30.20103 7.74881 110 46 - - 13.88392 26.16000 30.60793 7.85321 110 45 - - 13.88392 26.16000 30.13250 7.85321 110 46 - - 13.97215 27.46800 30.53308 7.95761 110 46 - - 14.05726 28.77600 30.93365 8.06201 110 45 - - 14.13918 30.08400 31.33423 8.16641 110 45 - - 14.21787 31.39200 31.73481 8.27081 110 45 - - 14.29328 32.70000 32.13539 8.37521 110 44 - - 14.29328 32.70000 31.71121 8.37521 110 45 - - 14.36539 34.00800 32.10650 8.47961 110 45 - - 14.43439 35.31600 32.50178 8.58401 110 44 - - 14.50054 36.62400 32.89707 8.68840 110 44 - - 14.56407 37.93200 33.29236 8.79280 110 44 - - 14.62522 39.24000 33.68765 8.89720 110 43 - - 23.88859 39.24000 63.72185 9.56855 110 37 - - 24.24213 40.22100 66.63886 10.00657 110 36 - - 24.59324 41.20200 69.55587 10.44459 110 35 - - 24.94227 42.18300 72.47288 10.88262 110 34 - - 25.28954 43.16400 75.38990 11.32064 110 34 - - 25.63539 44.14500 78.30691 11.75866 110 33 - - 25.63539 44.14500 71.55282 11.75866 110 36 - - 25.98011 45.12600 74.21824 12.19668 110 35 - - 26.32392 46.10700 76.88365 12.63470 110 34 - - 26.66698 47.08800 79.54907 13.07273 110 34 - - 27.00948 48.06900 82.21448 13.51075 110 33 - - 27.35161 49.05000 84.87990 13.94877 110 32 - - 27.35161 49.05000 78.04936 13.94877 110 35 - - 27.86445 50.52150 81.72574 14.60580 110 34 - - 28.37703 51.99300 85.40212 15.26283 110 33 - - 28.88946 53.46450 89.07850 15.91987 110 32 - - 29.40183 54.93600 92.75488 16.57690 110 32 - - 29.91422 56.40750 96.43126 17.23393 110 31 - - 29.91422 56.40750 89.54526 17.23393 110 33 - - 30.42663 57.87900 92.95912 17.89097 110 33 - - 30.93875 59.35050 96.37297 18.54800 110 32 - - 31.45022 60.82200 99.78683 19.20503 110 32 - - 31.96069 62.29350 103.20069 19.86206 110 31 - - 32.46982 63.76500 106.61454 20.51910 110 30 - - 32.46982 63.76500 100.85032 20.51910 110 32 - - 32.97719 65.23650 104.07961 21.17613 110 32 - - 33.48219 66.70800 107.30889 21.83316 110 31 - - 33.98425 68.17950 110.53817 22.49020 110 31 - - 34.48277 69.65100 113.76746 23.14723 110 30 - - 34.97715 71.12250 116.99674 23.80426 110 30 - - 34.97715 71.12250 112.03693 23.80426 110 31 - - 35.46676 72.59400 115.12931 24.46129 110 31 - - 35.95094 74.06550 118.22170 25.11833 110 30 - - 36.42907 75.53700 121.31408 25.77536 110 30 - - 36.90052 77.00850 124.40647 26.43239 110 30 - - 37.36467 78.48000 127.49885 27.08943 110 29 - - 37.36467 78.48000 123.14483 27.08943 110 30 - - 37.82089 79.95150 126.13161 27.74646 110 30 - - 38.26869 81.42300 129.11840 28.40349 110 30 - - 38.70765 82.89450 132.10518 29.06053 110 29 - - 39.13737 84.36600 135.09196 29.71756 110 29 - - 39.55745 85.83750 138.07874 30.37459 110 29 - - 39.55745 85.83750 134.19773 30.37459 110 29 - - 39.96749 87.30900 137.10056 31.03162 110 29 - - 40.36747 88.78050 140.00339 31.68866 110 29 - - 40.75749 90.25200 142.90622 32.34569 110 29 - - 41.13765 91.72350 145.80905 33.00272 110 28 - - 41.50806 93.19500 148.71188 33.65976 110 28 - - 41.50806 93.19500 145.21062 33.65976 110 29 - - 41.86890 94.66650 148.04510 34.31679 110 28 - - 42.22094 96.13800 150.87959 34.97382 110 28 - - 42.56515 97.60950 153.71408 35.63085 110 28 - - 42.90252 99.08100 156.54857 36.28789 110 27 - - 43.23403 100.55250 159.38305 36.94492 110 27 - - 43.23403 100.55250 156.19349 36.94492 110 28 - - 43.56079 102.02400 158.97125 37.60195 110 27 - - 43.88480 103.49550 161.74901 38.25899 110 27 - - 44.20833 104.96700 164.52678 38.91602 110 27 - - 44.53366 106.43850 167.30454 39.57305 110 27 - - 44.86306 107.91000 170.08231 40.23008 110 26 - - 51.59086 107.91000 379.60692 28.42600 110 14 - - 50.67798 109.38150 388.81131 29.11525 110 13 - - 49.81384 110.85300 398.01570 29.80450 110 13 - - 49.00540 112.32450 407.22009 30.49375 110 12 - - 48.25961 113.79600 416.42449 31.18300 110 12 - - 47.58344 115.26750 425.62888 31.87225 110 11 - - 47.58344 115.26750 389.68739 31.87225 110 12 - - 46.98053 116.73900 398.11454 32.56150 110 12 - - 46.44728 118.21050 406.54168 33.25075 110 11 - - 45.97977 119.68200 414.96883 33.94000 110 11 - - 45.57408 121.15350 423.39597 34.62925 110 11 - - 45.22627 122.62500 431.82311 35.31850 110 10 - - 45.22627 122.62500 420.12310 35.31850 110 11 - - 44.93077 124.09650 428.32192 36.00775 110 10 - - 44.68004 125.56800 436.52073 36.69700 110 10 - - 44.46717 127.03950 444.71955 37.38625 110 10 - - 44.28527 128.51100 452.91836 38.07550 110 10 - - 44.12744 129.98250 461.11718 38.76475 110 10 - - 44.12744 129.98250 455.06490 38.76475 110 10 - - 43.98638 131.45400 463.15611 39.45400 110 9 - - 43.85698 132.92550 471.24731 40.14325 110 9 - - 43.73563 134.39700 479.33852 40.83250 110 9 - - 43.61872 135.86850 487.42972 41.52175 110 9 - - 43.50263 137.34000 495.52092 42.21100 110 9 - + 0.00003 0.00000 0.00003 0.00000 202 100 P + 12.89971 1.30800 23.36326 0.53070 110 55 - + 13.45066 2.61600 46.72653 1.06141 110 29 - + 14.00277 3.92400 70.08979 1.59211 110 20 - + 14.55624 5.23200 93.45305 2.12281 110 16 - + 15.11128 6.54000 116.81631 2.65352 110 13 - + 15.11128 6.54000 47.10799 2.65352 110 32 - + 15.66799 7.84800 56.52959 3.18422 110 28 - + 16.22620 9.15600 65.95118 3.71492 110 25 - + 16.78562 10.46400 75.37278 4.24563 110 22 - + 17.34596 11.77200 84.79438 4.77633 110 20 - + 17.90696 13.08000 94.21598 5.30703 110 19 - + 17.90696 13.08000 66.31764 5.30703 110 27 - + 18.46825 14.38800 72.94940 5.83774 110 25 - + 19.02914 15.69600 79.58117 6.36844 110 24 - + 19.58885 17.00400 86.21293 6.89914 110 23 - + 20.14660 18.31200 92.84470 7.42985 110 22 - + 20.70160 19.62000 99.47646 7.96055 110 21 - + 12.34964 19.62000 38.17169 7.25322 110 32 - + 12.45082 20.92800 38.66091 7.34618 110 32 - + 12.55011 22.23600 39.15013 7.43914 110 32 - + 12.64722 23.54400 39.63936 7.53210 110 32 - + 12.74185 24.85200 40.12858 7.62506 110 32 - + 12.83373 26.16000 40.61780 7.71802 110 32 - + 12.83373 26.16000 39.99387 7.71802 110 32 - + 12.92258 27.46800 40.47558 7.81098 110 32 - + 13.00834 28.77600 40.95728 7.90394 110 32 - + 13.09097 30.08400 41.43899 7.99690 110 32 - + 13.17041 31.39200 41.92070 8.08986 110 31 - + 13.24663 32.70000 42.40241 8.18282 110 31 - + 13.24663 32.70000 41.83585 8.18282 110 32 - + 13.31963 34.00800 42.31112 8.27578 110 31 - + 13.38958 35.31600 42.78639 8.36874 110 31 - + 13.45669 36.62400 43.26166 8.46170 110 31 - + 13.52117 37.93200 43.73693 8.55466 110 31 - + 13.58323 39.24000 44.21220 8.64762 110 31 - + 21.82995 39.24000 91.40237 9.49093 110 24 - + 22.16651 40.22100 95.23558 9.88896 110 23 - + 22.50047 41.20200 99.06878 10.28699 110 23 - + 22.83212 42.18300 102.90198 10.68501 110 22 - + 23.16175 43.16400 106.73518 11.08304 110 22 - + 23.48964 44.14500 110.56839 11.48107 110 21 - + 23.48964 44.14500 101.29500 11.48107 110 23 - + 23.81607 45.12600 104.80671 11.87910 110 23 - + 24.14121 46.10700 108.31842 12.27712 110 22 - + 24.46523 47.08800 111.83013 12.67515 110 22 - + 24.78830 48.06900 115.34184 13.07318 110 21 - + 25.11056 49.05000 118.85355 13.47121 110 21 - + 25.11056 49.05000 109.34264 13.47121 110 23 - + 25.59280 50.52150 114.18869 14.06825 110 22 - + 26.07382 51.99300 119.03473 14.66529 110 22 - + 26.55374 53.46450 123.88078 15.26233 110 21 - + 27.03266 54.93600 128.72682 15.85937 110 21 - + 27.51070 56.40750 133.57287 16.45641 110 21 - + 27.51070 56.40750 123.89446 16.45641 110 22 - + 27.98788 57.87900 128.38937 17.05346 110 22 - + 28.46397 59.35050 132.88428 17.65050 110 21 - + 28.93869 60.82200 137.37919 18.24754 110 21 - + 29.41178 62.29350 141.87411 18.84458 110 21 - + 29.88297 63.76500 146.36902 19.44162 110 20 - + 29.88297 63.76500 138.20216 19.44162 110 22 - + 30.35191 65.23650 142.44627 20.03866 110 21 - + 30.81814 66.70800 146.69039 20.63570 110 21 - + 31.28116 68.17950 150.93450 21.23274 110 21 - + 31.74050 69.65100 155.17861 21.82979 110 20 - + 32.19565 71.12250 159.42272 22.42683 110 20 - + 32.19565 71.12250 152.35575 22.42683 110 21 - + 32.64611 72.59400 156.41173 23.02387 110 21 - + 33.09132 74.06550 160.46771 23.62091 110 21 - + 33.53078 75.53700 164.52368 24.21795 110 20 - + 33.96395 77.00850 168.57966 24.81499 110 20 - + 34.39032 78.48000 172.63564 25.41203 110 20 - + 34.39032 78.48000 166.40568 25.41203 110 21 - + 34.80938 79.95150 170.31528 26.00908 110 20 - + 35.22071 81.42300 174.22489 26.60612 110 20 - + 35.62398 82.89450 178.13450 27.20316 110 20 - + 36.01885 84.36600 182.04410 27.80020 110 20 - + 36.40501 85.83750 185.95371 28.39724 110 20 - + 36.40501 85.83750 180.38244 28.39724 110 20 - + 36.78214 87.30900 184.17492 28.99428 110 20 - + 37.15023 88.78050 187.96739 29.59132 110 20 - + 37.50939 90.25200 191.75986 30.18836 110 20 - + 37.85976 91.72350 195.55234 30.78541 110 19 - + 38.20144 93.19500 199.34481 31.38245 110 19 - + 38.20144 93.19500 194.30563 31.38245 110 20 - + 38.53462 94.66650 198.00223 31.97949 110 19 - + 38.86000 96.13800 201.69884 32.57653 110 19 - + 39.17847 97.60950 205.39544 33.17357 110 19 - + 39.49092 99.08100 209.09205 33.77061 110 19 - + 39.79824 100.55250 212.78865 34.36765 110 19 - + 39.79824 100.55250 208.18836 34.36765 110 19 - + 40.10144 102.02400 211.80505 34.96469 110 19 - + 40.40231 103.49550 215.42174 35.56174 110 19 - + 40.70287 104.96700 219.03843 36.15878 110 19 - + 41.00517 106.43850 222.65511 36.75582 110 18 - + 41.31125 107.91000 226.27180 37.35286 110 18 - + 43.88734 107.91000 484.03714 24.09540 110 9 - + 43.03716 109.38150 495.52355 24.66719 110 9 - + 42.23108 110.85300 507.00995 25.23899 110 8 - + 41.47516 112.32450 518.49635 25.81078 110 8 - + 40.77547 113.79600 529.98276 26.38257 110 8 - + 40.13807 115.26750 541.46916 26.95437 110 7 - + 40.13807 115.26750 502.94282 26.95437 110 8 - + 39.56609 116.73900 513.61195 27.52616 110 8 - + 39.05624 118.21050 524.28108 28.09796 110 7 - + 38.60499 119.68200 534.95021 28.66975 110 7 - + 38.20879 121.15350 545.61934 29.24154 110 7 - + 37.86409 122.62500 556.28847 29.81334 110 7 - + 37.86409 122.62500 542.36706 29.81334 110 7 - + 37.56589 124.09650 552.76919 30.38513 110 7 - + 37.30747 125.56800 563.17132 30.95693 110 7 - + 37.08269 127.03950 573.57345 31.52872 110 6 - + 36.88542 128.51100 583.97558 32.10051 110 6 - + 36.70952 129.98250 594.37771 32.67231 110 6 - + 36.70952 129.98250 586.93748 32.67231 110 6 - + 36.54849 131.45400 597.20940 33.24410 110 6 - + 36.39781 132.92550 607.48132 33.81589 110 6 - + 36.25427 134.39700 617.75323 34.38769 110 6 - + 36.11466 135.86850 628.02515 34.95948 110 6 - + 35.97579 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5736,10 +5848,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 31.894 'Clay' - -4.00 28.139 'Peat' - -6.00 247.034 'Clay' - -13.00 138.118 'Sand' + 0.00 32.205 'Clay' + -4.00 26.042 'Peat' + -6.00 227.232 'Clay' + -13.00 115.763 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5747,7 +5859,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5771,28 +5883,22 @@ Depth -1.90000 -2.00000 -2.00000 - -2.01000 - -2.02000 - -2.03000 - -2.04000 - -2.05000 - -2.05000 - -2.18000 - -2.31000 - -2.44000 - -2.57000 - -2.70000 - -2.70000 - -2.83000 - -2.96000 - -3.09000 - -3.22000 - -3.35000 - -3.35000 - -3.48000 - -3.61000 - -3.74000 - -3.87000 + -2.13333 + -2.26667 + -2.40000 + -2.53333 + -2.66667 + -2.66667 + -2.80000 + -2.93333 + -3.06667 + -3.20000 + -3.33333 + -3.33333 + -3.46667 + -3.60000 + -3.73333 + -3.86667 -4.00000 -4.00000 -4.13333 @@ -5927,22 +6033,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.84 : Percentage mobilized resistance left - 13.52 : Percentage mobilized resistance right - 303.42 : Effective left - 359.42 : Effective right + 12.72 : Percentage mobilized resistance left + 9.53 : Percentage mobilized resistance right + 268.25 : Effective left + 324.25 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 1610.58 : Max effective resistance left - 2657.66 : Max effective resistance right --17279.80 : Max moment left --25718.23 : Max moment right --2820.49 : Max mobilized moment left --2837.06 : Max mobilized moment right - 71.78 : Vertical force left - 77.82 : Vertical force right - 16.3 : Max mobilized moment percentage left - 11.0 : Max mobilized moment percentage right + 2108.97 : Max effective resistance left + 3402.22 : Max effective resistance right +-22259.41 : Max moment left +-32715.60 : Max moment right +-2473.90 : Max mobilized moment left +-2491.58 : Max mobilized moment right + 76.92 : Vertical force left + 85.09 : Vertical force right + 11.1 : Max mobilized moment percentage left + 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -5950,157 +6056,151 @@ Name [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00153 0.01088 7.14681 - 0.05116 1.03199 6.73506 - 0.37587 3.40912 6.32330 - 1.08855 6.07952 5.91093 - 2.19555 8.66650 5.49731 - 3.68432 11.16974 5.08181 - 3.68492 11.17318 5.08181 - 5.54337 13.59219 4.66353 - 7.75832 15.92617 4.24048 - 10.31691 18.17389 3.81047 - 13.20852 20.38228 3.37128 - 16.43362 22.63113 2.92071 - 16.43372 -33.36786 2.92071 - 13.17363 -31.82883 2.61315 - 10.06899 -30.25890 2.30054 - 7.12286 -28.65872 1.98401 - 4.33824 -27.02874 1.66470 - 1.71809 -25.36928 1.34372 - 1.71810 -25.36921 1.34372 - 1.46524 -25.20187 1.31157 - 1.21406 -25.03467 1.27942 - 0.96455 -24.86762 1.24726 - 0.71671 -24.70071 1.21510 - 0.47053 -24.53394 1.18294 - 0.46955 -24.52761 1.18294 - -2.57870 -22.37267 0.76511 - -5.34839 -20.24181 0.34896 - -7.84622 -18.21811 -0.06388 - -10.09244 -16.36384 -0.47179 - -12.10720 -14.65686 -0.87313 - -12.10617 -14.65195 -0.87313 - -13.90782 -13.08960 -1.26645 - -15.51560 -11.66878 -1.65074 - -16.94769 -10.38602 -2.02508 - -18.22178 -9.23754 -2.38852 - -19.35509 -8.21920 -2.74014 - -19.35506 -8.22109 -2.74014 - -20.36444 -7.32843 -3.07910 - -21.26570 -6.55676 -3.40486 - -22.07423 -5.90116 -3.71688 - -22.80481 -5.35654 -4.01464 - -23.47151 -4.91761 -4.29760 - -23.47157 -4.91922 -4.29760 - -24.04707 -3.72013 -4.57190 - -24.46537 -2.56077 -4.82979 - -24.73160 -1.43869 -5.07109 - -24.85057 -0.35139 -5.29562 - -24.82674 0.70366 -5.50318 - -24.82674 0.70261 -5.50318 - -24.66439 1.72793 -5.69369 - -24.36717 2.72605 -5.86737 - -23.93854 3.69948 -6.02451 - -23.38163 4.65065 -6.16540 - -22.69925 5.58197 -6.29033 - -22.69926 5.58102 -6.29033 - -21.89402 6.49485 -6.39968 - -20.96797 7.39346 -6.49408 - -19.92300 8.27904 -6.57426 - -18.76071 9.15366 -6.64092 - -17.48243 10.01928 -6.69478 - -17.48245 10.01851 -6.69478 - -16.49941 9.64077 -6.72727 - -15.55456 9.25483 -6.75343 - -14.64866 8.86239 -6.77361 - -13.78225 8.46510 -6.78815 - -12.95575 8.06447 -6.79741 - -12.95575 8.06388 -6.79741 - -12.16948 7.66136 -6.80171 - -11.42350 7.25828 -6.80135 - -10.71780 6.85592 -6.79659 - -10.05225 6.45547 -6.78771 - -9.42661 6.05804 -6.77496 - -9.42655 6.05719 -6.77496 - -8.56221 5.46914 -6.74920 - -7.78519 4.89346 -6.71605 - -7.09341 4.33313 -6.67612 - -6.48435 3.79087 -6.62999 - -5.95512 3.26916 -6.57828 - -5.95514 3.26824 -6.57828 - -5.50262 2.76932 -6.52150 - -5.12310 2.29523 -6.45998 - -4.81271 1.84793 -6.39398 - -4.56729 1.42922 -6.32377 - -4.38243 1.04084 -6.24963 - -4.38243 1.04016 -6.24963 - -4.25355 0.68369 -6.17176 - -4.17565 0.36070 -6.09022 - -4.14359 0.07272 -6.00505 - -4.15201 -0.17873 -5.91626 - -4.19531 -0.39214 -5.82389 - -4.19531 -0.39278 -5.82389 - -4.26777 -0.56664 -5.72793 - -4.36324 -0.69942 -5.62829 - -4.47546 -0.78956 -5.52487 - -4.59790 -0.83544 -5.41757 - -4.72380 -0.83543 -5.30631 - -4.72379 -0.83615 -5.30631 - -4.84625 -0.78855 -5.19097 - -4.95789 -0.69163 -5.07143 - -5.05118 -0.54361 -4.94764 - -5.11833 -0.34268 -4.81950 - -5.15125 -0.08701 -4.68695 - -5.15125 -0.08778 -4.68695 - -5.14171 0.22451 -4.54990 - -5.08097 0.59529 -4.40840 - -4.96011 1.02642 -4.26257 - -4.76994 1.51967 -4.11251 - -4.50101 2.07682 -3.95833 - -4.50103 2.07617 -3.95833 - -4.14372 2.69891 -3.80016 - -3.68799 3.38883 -3.63841 - -3.12365 4.14734 -3.47357 - -2.44030 4.97564 -3.30611 - -1.62742 5.87470 -3.13655 - -1.62745 5.87449 -3.13655 - -0.67438 6.84510 -2.96543 - 0.42968 7.88771 -2.79371 - 1.69553 9.00233 -2.62250 - 3.13396 10.18852 -2.45288 - 4.75562 11.44539 -2.28596 - 4.75840 11.42588 -2.28596 - 6.25963 8.61360 -2.12325 - 7.35108 5.97344 -1.96595 - 8.06475 3.59499 -1.81471 - 8.44511 1.52712 -1.67017 - 8.53767 -0.24491 -1.53295 - 8.53635 -0.24479 -1.53295 - 8.38434 -1.73668 -1.40337 - 8.02857 -2.96406 -1.28103 - 7.50761 -3.94167 -1.16550 - 6.85787 -4.68335 -1.05634 - 6.11376 -5.20203 -0.95312 - 6.11389 -5.19749 -0.95312 - 5.30864 -5.50503 -0.85525 - 4.47242 -5.61185 -0.76196 - 3.63467 -5.52680 -0.67252 - 2.82361 -5.25726 -0.58625 - 2.06643 -4.80911 -0.50242 - 2.06655 -4.80745 -0.50242 - 1.38996 -4.18503 -0.42028 - 0.81961 -3.39138 -0.33933 - 0.38101 -2.42858 -0.25920 - 0.09942 -1.29798 -0.17951 - -0.00002 -0.00012 -0.09991 + -0.00076 0.01214 6.99532 + 0.07077 1.40628 6.62579 + 0.48896 4.15714 6.25622 + 1.31416 6.83311 5.88592 + 2.53513 9.43394 5.51417 + 4.14057 11.95927 5.14026 + 4.14060 11.96008 5.14026 + 6.11926 14.40935 4.76318 + 8.45956 16.78166 4.38083 + 11.14984 19.07566 3.99091 + 14.17825 21.28954 3.59109 + 17.53501 23.46954 3.17906 + 17.53511 -32.52947 3.17906 + 14.35552 -31.05766 2.89667 + 11.32450 -29.55825 2.60878 + 8.44477 -28.03193 2.31649 + 5.71899 -26.47926 2.02090 + 3.14978 -24.90060 1.72313 + 3.14879 -24.89423 1.72313 + -0.02952 -22.78457 1.32454 + -2.92820 -20.69977 0.92599 + -5.55167 -18.66457 0.52927 + -7.91034 -16.73991 0.13616 + -10.02212 -14.96100 -0.25153 + -10.02108 -14.95603 -0.25153 + -11.90460 -13.32054 -0.63219 + -13.57947 -11.82565 -1.00472 + -15.06421 -10.46814 -1.36811 + -16.37692 -9.24439 -1.72134 + -17.53515 -8.15042 -2.06338 + -17.53513 -8.15225 -2.06338 + -18.55616 -7.18373 -2.39334 + -19.45616 -6.33602 -2.71064 + -20.25092 -5.60431 -3.01473 + -20.95557 -4.98355 -3.30507 + -21.58456 -4.46852 -3.58110 + -21.58463 -4.47009 -3.58110 + -22.10780 -3.38390 -3.84231 + -22.48869 -2.33559 -4.08844 + -22.73220 -1.32290 -4.31931 + -22.84294 -0.34353 -4.53476 + -22.82519 0.60482 -4.73462 + -22.82519 0.60386 -4.73462 + -22.68306 1.52355 -4.91881 + -22.42008 2.41688 -5.08751 + -22.03963 3.28615 -5.24100 + -21.54474 4.13362 -5.37952 + -20.93820 4.96151 -5.50335 + -20.93820 4.96063 -5.50335 + -20.22257 5.77109 -5.61279 + -19.39993 6.56624 -5.70844 + -18.47217 7.34809 -5.79092 + -17.44094 8.11857 -5.86086 + -16.30764 8.87948 -5.91890 + -16.30766 8.87876 -5.91890 + -15.43530 8.56674 -5.95506 + -14.59462 8.24543 -5.98530 + -13.78647 7.91643 -6.00993 + -13.01154 7.58128 -6.02926 + -12.27037 7.24142 -6.04360 + -12.27037 7.24086 -6.04360 + -11.56343 6.89764 -6.05324 + -10.89092 6.55234 -6.05845 + -10.25299 6.20617 -6.05947 + -9.64967 5.86026 -6.05654 + -9.08089 5.51569 -6.04991 + -9.08084 5.51487 -6.04991 + -8.29209 5.00285 -6.03355 + -7.57956 4.49919 -6.01004 + -6.94177 4.00680 -5.97993 + -6.37683 3.52833 -5.94376 + -5.88246 3.06620 -5.90210 + -5.88247 3.06530 -5.90210 + -5.45619 2.62172 -5.85543 + -5.09493 2.19873 -5.80405 + -4.79545 1.79825 -5.74823 + -4.55423 1.42210 -5.68822 + -4.36751 1.07198 -5.62429 + -4.36752 1.07131 -5.62429 + -4.23137 0.74882 -5.55663 + -4.14142 0.45551 -5.48533 + -4.09318 0.19291 -5.41042 + -4.08193 -0.03748 -5.33194 + -4.10274 -0.23418 -5.24995 + -4.10274 -0.23480 -5.24995 + -4.15052 -0.39632 -5.16444 + -4.21980 -0.52117 -5.07535 + -4.30496 -0.60784 -4.98260 + -4.40016 -0.65477 -4.88613 + -4.49933 -0.66038 -4.78586 + -4.49932 -0.66106 -4.78586 + -4.59623 -0.62374 -4.68170 + -4.68422 -0.54185 -4.57358 + -4.75647 -0.41369 -4.46142 + -4.80593 -0.23757 -4.34517 + -4.82526 -0.01176 -4.22478 + -4.82526 -0.01248 -4.22478 + -4.80699 0.26479 -4.10018 + -4.74316 0.59526 -3.97142 + -4.62567 0.98065 -3.83861 + -4.44614 1.42266 -3.70185 + -4.19596 1.92291 -3.56126 + -4.19597 1.92230 -3.56126 + -3.86637 2.48238 -3.41696 + -3.44819 3.10377 -3.26930 + -2.93211 3.78778 -3.11875 + -2.30867 4.53553 -2.96576 + -1.56822 5.34797 -2.81076 + -1.56825 5.34776 -2.81076 + -0.70107 6.22561 -2.65428 + 0.30273 7.16931 -2.49717 + 1.45302 8.17891 -2.34045 + 2.75968 9.25405 -2.18510 + 4.23247 10.39394 -2.03212 + 4.23512 10.37530 -2.03212 + 5.60620 7.92604 -1.88290 + 6.61890 5.59611 -1.73852 + 7.29342 3.43405 -1.59960 + 7.66156 1.52100 -1.46673 + 7.76332 -0.12000 -1.34051 + 7.76207 -0.12015 -1.34051 + 7.63717 -1.50338 -1.22124 + 7.32323 -2.64306 -1.10856 + 6.85576 -3.55262 -1.00208 + 6.26832 -4.24469 -0.90142 + 5.59264 -4.73109 -0.80620 + 5.59276 -4.72694 -0.80620 + 4.85948 -5.01850 -0.71587 + 4.09647 -5.12477 -0.62972 + 3.33091 -5.05384 -0.54712 + 2.58884 -4.81248 -0.46740 + 1.89542 -4.40607 -0.38993 + 1.89554 -4.40455 -0.38993 + 1.27542 -3.83708 -0.31401 + 0.75233 -3.11133 -0.23918 + 0.34984 -2.22922 -0.16510 + 0.09132 -1.19198 -0.09143 + -0.00002 -0.00011 -0.01784 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6136,10 +6236,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6166,7 +6266,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=25 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -6176,36 +6276,35 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.05000 60.45400 0.00000 146.53626 0.00000 - -2.70000 60.67300 0.00000 218.80272 0.00000 - -3.35000 60.82300 0.00000 297.17951 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.75000 60.22400 36.54300 841.53596 53.71770 - -8.50000 60.42000 36.77500 969.93093 64.81404 - -9.25000 60.58500 36.98500 1106.43575 77.58957 - -10.00000 60.72700 37.17600 1251.05466 92.04508 - -10.75000 60.84900 37.35100 1403.79047 108.18126 - -11.50000 60.95700 37.51100 1564.64516 125.99870 - -12.25000 61.05200 37.66000 1733.62008 145.49794 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=24 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -6216,36 +6315,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.02500 30.15475 106.11937 0.00000 0.70763 0.00000 3.51916 - -2.37500 32.32125 111.17918 0.00000 0.70763 0.00000 3.43982 - -3.02500 36.34475 120.57968 0.00000 0.70763 0.00000 3.31766 - -3.67500 40.36825 129.98155 0.00000 0.70763 0.00000 3.21990 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.37500 53.27125 160.38890 12.55739 0.70763 0.23573 3.01080 - -8.12500 57.91375 171.19330 14.79511 0.70763 0.25547 2.95600 - -8.87500 62.55625 182.00643 17.03404 0.70763 0.27230 2.90948 - -9.62500 67.19875 192.82520 19.27402 0.70763 0.28682 2.86948 - -10.37500 71.84125 203.64775 21.51490 0.70763 0.29948 2.83469 - -11.12500 76.48375 214.47291 23.75659 0.70763 0.31061 2.80416 - -11.87500 81.12625 225.29990 25.99898 0.70763 0.32048 2.77715 - -12.62500 85.76875 236.12822 28.24199 0.70763 0.32928 2.75308 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6257,149 +6355,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.44961 0.00000 19.44961 1.59216 202 100 P - 25.82900 0.00000 38.89922 3.18433 110 66 - - 25.03580 0.00000 58.34883 4.77649 110 43 - - 24.24011 0.00000 77.79845 6.36865 110 31 - - 23.44067 0.00000 97.24806 7.96082 110 24 - - 23.44067 0.00000 50.01834 7.96082 110 47 - - 22.63566 0.00000 60.02201 9.55298 110 38 - - 21.82111 0.00000 70.02568 11.14515 110 31 - - 20.99263 0.00000 80.02935 12.73731 110 26 - - 21.07203 0.00000 90.03302 14.32947 110 23 - - 21.76306 0.00000 100.03668 15.92164 110 22 - - 21.76306 0.00000 83.12851 15.92164 110 26 - - 22.20938 0.00000 88.67041 16.98308 110 25 - - 22.64560 0.00000 94.21231 18.04452 110 24 - - 23.07399 0.00000 99.75421 19.10596 110 23 - - 23.49680 0.00000 105.29611 20.16741 110 22 - - 23.91628 0.00000 110.83802 21.22885 110 22 - - 23.91628 0.00000 105.57478 21.22885 110 23 - - 23.89579 0.09810 105.79261 21.27265 110 23 - - 23.87529 0.19620 106.01045 21.31645 110 23 - - 23.85478 0.29430 106.22828 21.36026 110 22 - - 23.83426 0.39240 106.44612 21.40406 110 22 - - 23.81374 0.49050 106.66396 21.44786 110 22 - - 23.81374 0.49050 104.25913 21.44786 110 23 - - 23.54750 1.76580 107.02715 22.01729 110 22 - - 23.28463 3.04110 109.79517 22.58672 110 21 - - 23.02838 4.31640 112.56319 23.15615 110 0 - - 22.78200 5.59170 115.33121 23.72557 110 0 - - 22.54874 6.86700 118.09923 24.29500 110 0 - - 22.54874 6.86700 113.90536 24.29500 110 0 - - 22.33153 8.14230 116.57509 24.86443 110 0 - - 22.13237 9.41760 119.24481 25.43386 110 0 - - 21.95313 10.69290 121.91454 26.00329 110 0 - - 21.79567 11.96820 124.58426 26.57272 110 0 - - 21.66187 13.24350 127.25399 27.14214 110 0 - - 21.66187 13.24350 123.50392 27.14214 110 0 - - 21.55337 14.51880 126.09497 27.71157 110 0 - - 21.47128 15.79410 128.68602 28.28100 110 0 - - 21.41667 17.06940 131.27707 28.85043 110 0 - - 21.39059 18.34470 133.86812 29.41986 110 0 - - 21.39410 19.62000 136.45917 29.98929 110 0 - - 24.44711 19.62000 93.61408 27.88519 110 0 - - 24.33207 20.92800 93.96456 27.98959 110 0 - - 24.23015 22.23600 94.31504 28.09399 110 0 - - 24.14151 23.54400 94.66552 28.19838 110 0 - - 24.06629 24.85200 95.01601 28.30278 110 0 - - 24.00464 26.16000 95.36649 28.40718 110 0 - - 24.00464 26.16000 94.99596 28.40718 110 0 - - 23.95663 27.46800 95.34508 28.51158 110 0 - - 23.92209 28.77600 95.69420 28.61598 110 0 - - 23.90078 30.08400 96.04332 28.72038 110 0 - - 23.89246 31.39200 96.39244 28.82478 110 0 - - 23.89692 32.70000 96.74156 28.92918 110 0 - - 23.89692 32.70000 96.43144 28.92918 110 0 - - 23.91384 34.00800 96.77944 29.03358 110 0 - - 23.94271 35.31600 97.12744 29.13798 110 0 - - 23.98297 36.62400 97.47544 29.24238 110 0 - - 24.03404 37.93200 97.82344 29.34678 110 0 - - 24.09535 39.24000 98.17145 29.45118 110 0 - - 18.28388 39.24000 139.39178 31.67344 110 0 - - 18.65693 40.22100 141.31947 32.11146 110 0 - - 19.04263 41.20200 143.24716 32.54949 110 0 - - 19.44029 42.18300 145.17485 32.98751 110 0 - - 19.84923 43.16400 147.10255 33.42553 110 0 - - 20.26874 44.14500 149.03024 33.86355 110 0 - - 20.26874 44.14500 146.65286 33.86355 110 0 - - 20.69815 45.12600 148.54980 34.30157 110 0 - - 21.13689 46.10700 150.44674 34.73960 110 0 - - 21.58444 47.08800 152.34368 35.17762 110 0 - - 22.04023 48.06900 154.24062 35.61564 110 0 - - 22.50374 49.05000 156.13756 36.05366 110 0 - - 22.50374 49.05000 153.40009 36.05366 110 0 - - 23.21229 50.52150 156.19561 36.71069 110 0 - - 23.93562 51.99300 158.99114 37.36773 110 0 - - 24.67253 53.46450 161.78666 38.02476 110 0 - - 25.42181 54.93600 164.58219 38.68179 110 0 - - 26.18227 56.40750 167.37771 39.33883 110 0 - - 26.18227 56.40750 164.33167 39.33883 110 0 - - 26.95286 57.87900 167.07632 39.99586 110 0 - - 27.73294 59.35050 169.82097 40.65289 110 0 - - 28.52197 60.82200 172.56562 41.30992 110 0 - - 29.31941 62.29350 175.31027 41.96696 110 0 - - 30.12473 63.76500 178.05492 42.62399 110 0 - - 30.12473 63.76500 175.25279 42.62399 110 0 - - 30.93750 65.23650 177.95425 43.28102 110 0 - - 31.75761 66.70800 180.65570 43.93806 110 0 - - 32.58500 68.17950 183.35716 44.59509 110 0 - - 33.41960 69.65100 186.05862 45.25212 110 0 - - 34.26137 71.12250 188.76007 45.90915 110 0 - - 34.26137 71.12250 186.16443 45.90915 110 0 - - 35.11032 72.59400 188.82874 46.56619 110 0 - - 35.96664 74.06550 191.49305 47.22322 110 0 - - 36.83052 75.53700 194.15736 47.88025 110 0 - - 37.70214 77.00850 196.82167 48.53729 110 0 - - 38.58170 78.48000 199.48598 49.19432 110 0 - - 38.58170 78.48000 197.06773 49.19432 110 0 - - 39.46942 79.95150 199.69974 49.85135 110 0 - - 40.36552 81.42300 202.33175 50.50838 110 0 - - 41.27014 82.89450 204.96376 51.16542 110 0 - - 42.18345 84.36600 207.59577 51.82245 110 0 - - 43.10559 85.83750 210.22778 52.47948 110 0 - - 43.10559 85.83750 207.96375 52.47948 110 0 - - 44.03672 87.30900 210.56741 53.13652 110 0 - - 44.97675 88.78050 213.17108 53.79355 110 0 - - 45.92544 90.25200 215.77474 54.45058 110 0 - - 46.88260 91.72350 218.37841 55.10761 110 0 - - 47.84799 93.19500 220.98207 55.76465 110 0 - - 47.84799 93.19500 218.85344 55.76465 110 0 - - 48.82135 94.66650 221.43202 56.42168 110 0 - - 49.80189 96.13800 224.01061 57.07871 110 0 - - 50.78862 97.60950 226.58920 57.73575 110 0 - - 51.78055 99.08100 229.16778 58.39278 110 0 - - 52.77671 100.55250 231.74637 59.04981 110 0 - - 52.77671 100.55250 229.73763 59.04981 110 0 - - 53.77598 102.02400 232.29387 59.70685 110 0 - - 54.77645 103.49550 234.85010 60.36388 110 0 - - 55.77592 104.96700 237.40634 61.02091 110 0 - - 56.77219 106.43850 239.96257 61.67794 110 0 - - 57.76306 107.91000 242.51881 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.76397 110.85300 609.04150 45.42350 110 0 - - 27.96562 112.32450 618.28301 46.11275 110 0 - - 30.10034 113.79600 627.52452 46.80200 110 0 - - 32.16175 115.26750 636.76604 47.49125 110 0 - - 32.16175 115.26750 585.69985 47.49125 110 0 - - 34.14677 116.73900 594.20023 48.18050 110 0 - - 36.05942 118.21050 602.70061 48.86975 110 0 - - 37.90401 119.68200 611.20099 49.55900 110 0 - - 39.68487 121.15350 619.70137 50.24825 110 0 - - 41.40631 122.62500 628.20175 50.93750 110 0 - - 41.40631 122.62500 610.51735 50.93750 110 0 - - 43.07424 124.09650 618.77844 51.62675 110 0 - - 44.69644 125.56800 627.03952 52.31600 110 0 - - 46.28001 127.03950 635.30061 53.00525 110 0 - - 47.83203 128.51100 643.56170 53.69450 110 0 - - 49.35960 129.98250 651.82278 54.38375 110 0 - - 49.35960 129.98250 642.44252 54.38375 110 0 - - 50.87017 131.45400 650.58472 55.07300 110 0 - - 52.36893 132.92550 658.72693 55.76225 110 0 - - 53.85953 134.39700 666.86913 56.45150 110 0 - - 55.34564 135.86850 675.01133 57.14075 110 0 - - 56.83092 137.34000 683.15353 57.83000 110 0 - + 26.55500 0.00000 27.59211 1.44679 110 96 - + 25.84241 0.00000 55.18421 2.89358 110 47 - + 25.12835 0.00000 82.77632 4.34037 110 30 - + 24.41139 0.00000 110.36843 5.78715 110 22 - + 23.69012 0.00000 137.96054 7.23394 110 17 - + 23.69012 0.00000 68.20749 7.23394 110 35 - + 22.96249 0.00000 81.84899 8.68073 110 28 - + 22.22434 0.00000 95.49049 10.12752 110 23 - + 21.47104 0.00000 109.13199 11.57431 110 20 - + 20.69795 0.00000 122.77349 13.02110 110 17 - + 20.82601 0.00000 136.41499 14.46788 110 15 - + 20.82601 0.00000 111.45332 14.46788 110 19 - + 21.22576 0.00000 118.88354 15.43241 110 18 - + 21.61450 0.00000 126.31376 16.39693 110 17 - + 21.99444 0.00000 133.74398 17.36146 110 16 - + 22.36779 0.00000 141.17421 18.32599 110 16 - + 22.73676 0.00000 148.60443 19.29051 110 15 - + 22.73676 0.00000 137.71826 19.29051 110 17 - + 22.47030 1.30800 141.50704 19.82121 110 16 - + 22.20390 2.61600 145.29582 20.35192 110 15 - + 21.94115 3.92400 149.08461 20.88262 110 15 - + 21.68565 5.23200 152.87339 21.41333 110 14 - + 21.44097 6.54000 156.66217 21.94403 110 0 - + 21.44097 6.54000 150.27634 21.94403 110 0 - + 21.21035 7.84800 153.91069 22.47473 110 0 - + 20.99599 9.15600 157.54503 23.00544 110 0 - + 20.79991 10.46400 161.17938 23.53614 110 0 - + 20.62417 11.77200 164.81372 24.06684 110 0 - + 20.47079 13.08000 168.44806 24.59755 110 0 - + 20.47079 13.08000 162.75727 24.59755 110 0 - + 20.34158 14.38800 166.26883 25.12825 110 0 - + 20.23768 15.69600 169.78039 25.65895 110 0 - + 20.16020 17.00400 173.29196 26.18966 110 0 - + 20.11023 18.31200 176.80352 26.72036 110 0 - + 20.08886 19.62000 180.31508 27.25106 110 0 - + 21.96481 19.62000 112.91072 24.82969 110 0 - + 21.84880 20.92800 113.33345 24.92265 110 0 - + 21.74486 22.23600 113.75618 25.01561 110 0 - + 21.65312 23.54400 114.17890 25.10857 110 0 - + 21.57372 24.85200 114.60163 25.20153 110 0 - + 21.50679 26.16000 115.02436 25.29449 110 0 - + 21.50679 26.16000 114.42115 25.29449 110 0 - + 21.45240 27.46800 114.84166 25.38745 110 0 - + 21.41040 28.77600 115.26217 25.48041 110 0 - + 21.38057 30.08400 115.68268 25.57337 110 0 - + 21.36271 31.39200 116.10319 25.66633 110 0 - + 21.35661 32.70000 116.52370 25.75929 110 0 - + 21.35661 32.70000 116.01583 25.75929 110 0 - + 21.36202 34.00800 116.43451 25.85225 110 0 - + 21.37846 35.31600 116.85318 25.94521 110 0 - + 21.40544 36.62400 117.27186 26.03817 110 0 - + 21.44244 37.93200 117.69054 26.13113 110 0 - + 21.48897 39.24000 118.10921 26.22409 110 0 - + 16.94364 39.24000 183.43874 28.78144 110 0 - + 17.26934 40.22100 185.97557 29.17947 110 0 - + 17.60689 41.20200 188.51241 29.57750 110 0 - + 17.95566 42.18300 191.04924 29.97553 110 0 - + 18.31503 43.16400 193.58607 30.37355 110 0 - + 18.68439 44.14500 196.12290 30.77158 110 0 - + 18.68439 44.14500 192.60019 30.77158 110 0 - + 19.06312 45.12600 195.09146 31.16961 110 0 - + 19.45073 46.10700 197.58272 31.56764 110 0 - + 19.84672 47.08800 200.07399 31.96566 110 0 - + 20.25061 48.06900 202.56525 32.36369 110 0 - + 20.66189 49.05000 205.05652 32.76172 110 0 - + 20.66189 49.05000 201.00495 32.76172 110 0 - + 21.29165 50.52150 204.66801 33.35876 110 0 - + 21.93572 51.99300 208.33107 33.95580 110 0 - + 22.59298 53.46450 211.99414 34.55284 110 0 - + 23.26235 54.93600 215.65720 35.14988 110 0 - + 23.94272 56.40750 219.32027 35.74693 110 0 - + 23.94272 56.40750 214.81611 35.74693 110 0 - + 24.63310 57.87900 218.40395 36.34397 110 0 - + 25.33290 59.35050 221.99178 36.94101 110 0 - + 26.04159 60.82200 225.57962 37.53805 110 0 - + 26.75865 62.29350 229.16745 38.13509 110 0 - + 27.48356 63.76500 232.75529 38.73213 110 0 - + 27.48356 63.76500 228.61475 38.73213 110 0 - + 28.21591 65.23650 232.13876 39.32917 110 0 - + 28.95556 66.70800 235.66278 39.92621 110 0 - + 29.70242 68.17950 239.18679 40.52326 110 0 - + 30.45641 69.65100 242.71080 41.12030 110 0 - + 31.21745 71.12250 246.23481 41.71734 110 0 - + 31.21745 71.12250 242.40131 41.71734 110 0 - + 31.98550 72.59400 245.87046 42.31438 110 0 - + 32.76073 74.06550 249.33961 42.91142 110 0 - + 33.54326 75.53700 252.80875 43.50846 110 0 - + 34.33325 77.00850 256.27790 44.10550 110 0 - + 35.13083 78.48000 259.74705 44.70255 110 0 - + 35.13083 78.48000 256.17685 44.70255 110 0 - + 35.93618 79.95150 259.59831 45.29959 110 0 - + 36.74948 81.42300 263.01977 45.89663 110 0 - + 37.57083 82.89450 266.44124 46.49367 110 0 - + 38.40037 84.36600 269.86270 47.09071 110 0 - + 39.23820 85.83750 273.28417 47.68775 110 0 - + 39.23820 85.83750 269.94257 47.68775 110 0 - + 40.08444 87.30900 273.32219 48.28479 110 0 - + 40.93900 88.78050 276.70182 48.88183 110 0 - + 41.80166 90.25200 280.08145 49.47888 110 0 - + 42.67221 91.72350 283.46108 50.07592 110 0 - + 43.55044 93.19500 286.84071 50.67296 110 0 - + 43.55044 93.19500 283.69963 50.67296 110 0 - + 44.43609 94.66650 287.04225 51.27000 110 0 - + 45.32843 96.13800 290.38487 51.86704 110 0 - + 46.22657 97.60950 293.72749 52.46408 110 0 - + 47.12961 99.08100 297.07011 53.06112 110 0 - + 48.03664 100.55250 300.41273 53.65817 110 0 - + 48.03664 100.55250 297.44910 53.65817 110 0 - + 48.94665 102.02400 300.75875 54.25521 110 0 - + 49.85790 103.49550 304.06839 54.85225 110 0 - + 50.76840 104.96700 307.37804 55.44929 110 0 - + 51.67614 106.43850 310.68768 56.04633 110 0 - + 52.57913 107.91000 313.99732 56.64337 110 0 - + 20.50984 107.91000 734.00940 36.53923 110 0 - + 20.75046 109.38150 745.49575 37.11102 110 0 - + 20.99022 110.85300 756.98209 37.68281 110 0 - + 22.25859 112.32450 768.46843 38.25461 110 0 - + 24.15909 113.79600 779.95478 38.82640 110 0 - + 25.99310 115.26750 791.44112 39.39820 110 0 - + 25.99310 115.26750 738.87493 39.39820 110 0 - + 27.75762 116.73900 749.59837 39.96999 110 0 - + 29.45623 118.21050 760.32181 40.54178 110 0 - + 31.09279 119.68200 771.04525 41.11358 110 0 - + 32.67116 121.15350 781.76869 41.68537 110 0 - + 34.19521 122.62500 792.49213 42.25717 110 0 - + 34.19521 122.62500 772.62437 42.25717 110 0 - + 35.67030 124.09650 783.07897 42.82896 110 0 - + 37.10354 125.56800 793.53357 43.40075 110 0 - + 38.50140 127.03950 803.98818 43.97255 110 0 - + 39.87035 128.51100 814.44278 44.54434 110 0 - + 41.21687 129.98250 824.89738 45.11614 110 0 - + 41.21687 129.98250 814.08791 45.11614 110 0 - + 42.54781 131.45400 824.40552 45.68793 110 0 - + 43.86790 132.92550 834.72313 46.25972 110 0 - + 45.18052 134.39700 845.04073 46.83152 110 0 - + 46.48900 135.86850 855.35834 47.40331 110 0 - + 47.79672 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6412,10 +6504,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 88.285 'Clay' - -4.00 48.065 'Peat' - -6.00 254.985 'Clay' - -13.00 122.120 'Sand' + 0.00 86.555 'Clay' + -4.00 43.014 'Peat' + -6.00 232.556 'Clay' + -13.00 101.089 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6430,7 +6522,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.05 + 0.00 -2.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -6452,10 +6544,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -6491,27 +6583,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 59.75500 0.00000 10.55221 0.00000 - -3.35000 59.78900 0.00000 40.61526 0.00000 - -4.00000 59.93300 0.00000 78.98783 0.00000 - -4.66667 59.27900 0.00000 99.99586 0.00000 - -5.33333 58.76500 0.00000 122.03151 0.00000 - -6.00000 58.35000 0.00000 145.10928 0.00000 - -6.50000 58.82300 0.00000 181.70389 0.00000 - -7.00000 59.17400 0.00000 221.90084 0.00000 - -7.75000 59.56800 0.00000 288.96438 0.00000 - -8.50000 59.86600 0.00000 364.15694 0.00000 - -9.25000 60.10300 0.00000 447.48137 0.00000 - -10.00000 60.29800 0.00000 538.93827 0.00000 - -10.75000 60.46400 0.00000 638.52740 0.00000 - -11.50000 60.60700 36.30900 746.24820 5.95961 - -12.25000 60.73200 36.53400 862.10000 14.49704 - -13.00000 60.84200 36.74200 986.08217 24.71056 - -13.75000 65.56900 36.47300 1292.86714 37.45998 - -14.50000 67.27700 36.23100 1605.37759 51.66150 - -15.25000 68.28400 36.01600 1940.14003 67.31490 - -16.00000 68.96200 35.82400 2300.82648 84.41969 + -2.00000 0.00000 0.00000 0.00000 0.00000 + -2.66667 62.46200 0.00000 38.93877 0.00000 + -3.33333 62.66800 0.00000 86.04676 0.00000 + -4.00000 62.84700 0.00000 141.31146 0.00000 + -4.66667 62.32000 0.00000 167.57462 0.00000 + -5.33333 61.87400 0.00000 195.04005 0.00000 + -6.00000 61.49100 0.00000 223.72273 0.00000 + -6.50000 61.87900 0.00000 274.21542 0.00000 + -7.00000 62.17800 0.00000 329.25256 0.00000 + -7.75000 62.52400 0.00000 420.34587 0.00000 + -8.50000 62.79000 0.00000 521.69468 0.00000 + -9.25000 63.00400 0.00000 633.30401 0.00000 + -10.00000 63.18100 0.00000 755.17578 0.00000 + -10.75000 63.33100 0.00000 887.31055 0.00000 + -11.50000 63.46100 0.00000 1029.70827 0.00000 + -12.25000 63.57400 0.00000 1182.36862 0.00000 + -13.00000 63.67400 0.00000 1345.29119 0.00000 + -13.75000 67.22700 0.00000 1729.85605 0.00000 + -14.50000 68.66100 33.29100 2127.06778 1.50130 + -15.25000 69.52900 33.04000 2553.34707 13.62384 + -16.00000 70.12200 32.81500 3012.81003 26.87495 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -6528,32 +6620,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 16.23417 0.00000 0.70763 0.00000 8.06968 - -3.02500 6.03525 46.25085 0.00000 0.70763 0.00000 7.66345 - -3.67500 10.05875 59.03472 0.00000 0.70763 0.00000 5.86899 - -4.33333 12.46717 31.51203 0.00000 0.65798 0.00000 2.52760 - -5.00000 13.26050 33.05349 0.00000 0.65798 0.00000 2.49263 - -5.66667 14.05383 34.61665 0.00000 0.65798 0.00000 2.46315 - -6.25000 15.99800 73.18922 0.00000 0.70763 0.00000 4.57490 - -6.75000 19.09300 80.39390 0.00000 0.70763 0.00000 4.21065 - -7.37500 22.96175 89.41805 0.00000 0.70763 0.00000 3.89422 - -8.12500 27.60425 100.25674 0.00000 0.70763 0.00000 3.63193 - -8.87500 32.24675 111.09924 0.00000 0.70763 0.00000 3.44528 - -9.62500 36.88925 121.94254 0.00000 0.70763 0.00000 3.30564 - -10.37500 41.53175 132.78551 0.00000 0.70763 0.00000 3.19720 - -11.12500 46.17425 143.62773 7.94615 0.70763 0.17209 3.11056 - -11.87500 50.81675 154.46907 11.38323 0.70763 0.22401 3.03973 - -12.62500 55.45925 165.30955 13.61803 0.70763 0.24555 2.98074 - -13.37500 61.22675 409.04663 16.99923 0.50000 0.27764 6.68085 - -14.12500 68.11925 416.68061 18.93536 0.50000 0.27797 6.11693 - -14.87500 75.01175 446.34992 20.87121 0.50000 0.27824 5.95040 - -15.62500 81.90425 480.91526 22.80638 0.50000 0.27845 5.87168 + -2.33333 2.06333 58.40816 0.00000 0.64302 0.00000 28.30767 + -3.00000 6.19000 70.66198 0.00000 0.64302 0.00000 11.41551 + -3.66667 10.31667 82.89705 0.00000 0.64302 0.00000 8.03526 + -4.33333 12.77667 39.39475 0.00000 0.58588 0.00000 3.08334 + -5.00000 13.57000 41.19814 0.00000 0.58588 0.00000 3.03597 + -5.66667 14.36333 43.02402 0.00000 0.58588 0.00000 2.99541 + -6.25000 16.30750 100.98538 0.00000 0.64302 0.00000 6.19257 + -6.75000 19.40250 110.07427 0.00000 0.64302 0.00000 5.67320 + -7.37500 23.27125 121.45776 0.00000 0.64302 0.00000 5.21922 + -8.12500 27.91375 135.13174 0.00000 0.64302 0.00000 4.84105 + -8.87500 32.55625 148.81244 0.00000 0.64302 0.00000 4.57093 + -9.62500 37.19875 162.49569 0.00000 0.64302 0.00000 4.36831 + -10.37500 41.84125 176.17969 0.00000 0.64302 0.00000 4.21067 + -11.12500 46.48375 189.86363 0.00000 0.64302 0.00000 4.08452 + -11.87500 51.12625 203.54714 0.00000 0.64302 0.00000 3.98126 + -12.62500 55.76875 217.23008 0.00000 0.64302 0.00000 3.89519 + -13.37500 61.53625 512.75315 0.00000 0.41479 0.00000 8.33254 + -14.12500 68.42875 529.61564 2.00173 0.41479 0.02925 7.73967 + -14.87500 75.32125 568.37239 16.16339 0.41479 0.21459 7.54598 + -15.62500 82.21375 612.61728 17.66815 0.41479 0.21491 7.45152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6582,132 +6674,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.09810 0.00000 0.00000 -1 0 - - 0.00000 0.19620 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - - 0.00000 0.39240 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 6.49367 0.56943 1 0 A - 0.00000 3.04110 12.98734 1.13886 1 0 A - 1.83605 4.31640 19.48100 1.70829 110 9 - - 3.22129 5.59170 25.97467 2.27771 110 12 - - 4.59340 6.86700 32.46834 2.84714 110 14 - - 4.59340 6.86700 30.83390 2.84714 110 15 - - 5.94947 8.14230 37.00068 3.41657 110 16 - - 7.28749 9.41760 43.16746 3.98600 110 17 - - 8.60559 10.69290 49.33424 4.55543 110 17 - - 9.90191 11.96820 55.50102 5.12486 110 18 - - 11.17456 13.24350 61.66780 5.69428 110 18 - - 11.17456 13.24350 47.22778 5.69428 110 24 - - 12.42192 14.51880 51.95055 6.26371 110 24 - - 13.64286 15.79410 56.67333 6.83314 110 24 - - 14.83633 17.06940 61.39611 7.40257 110 24 - - 16.00127 18.34470 66.11889 7.97200 110 24 - - 17.13662 19.62000 70.84166 8.54143 110 24 - - 11.38022 19.62000 30.50942 7.94215 110 37 - - 11.70406 20.92800 30.91047 8.04655 110 38 - - 12.01478 22.23600 31.31151 8.15094 110 38 - - 12.31222 23.54400 31.71256 8.25534 110 39 - - 12.59624 24.85200 32.11360 8.35974 110 39 - - 12.86669 26.16000 32.51465 8.46414 110 40 - - 12.86669 26.16000 32.06475 8.46414 110 40 - - 13.12349 27.46800 32.46024 8.56854 110 40 - - 13.36683 28.77600 32.85574 8.67294 110 41 - - 13.59695 30.08400 33.25124 8.77734 110 41 - - 13.81406 31.39200 33.64673 8.88174 110 41 - - 14.01841 32.70000 34.04223 8.98614 110 41 - - 14.01841 32.70000 33.63961 8.98614 110 42 - - 14.21028 34.00800 34.03043 9.09054 110 42 - - 14.39021 35.31600 34.42124 9.19494 110 42 - - 14.55875 36.62400 34.81206 9.29934 110 42 - - 14.71648 37.93200 35.20288 9.40374 110 42 - - 14.86396 39.24000 35.59370 9.50814 110 42 - - 23.61514 39.24000 66.10956 10.22558 110 36 - - 24.11814 40.22100 68.94142 10.66360 110 35 - - 24.60848 41.20200 71.77328 11.10163 110 34 - - 25.08686 42.18300 74.60515 11.53965 110 34 - - 25.55397 43.16400 77.43701 11.97767 110 33 - - 26.01051 44.14500 80.26887 12.41569 110 32 - - 26.01051 44.14500 73.87792 12.41569 110 35 - - 26.45714 45.12600 76.48431 12.85371 110 35 - - 26.89444 46.10700 79.09071 13.29174 110 34 - - 27.32294 47.08800 81.69710 13.72976 110 33 - - 27.74319 48.06900 84.30349 14.16778 110 33 - - 28.15573 49.05000 86.90988 14.60580 110 32 - - 28.15573 49.05000 80.37860 14.60580 110 35 - - 28.76124 50.52150 83.99438 15.26283 110 34 - - 29.35197 51.99300 87.61016 15.91987 110 34 - - 29.92914 53.46450 91.22594 16.57690 110 33 - - 30.49392 54.93600 94.84172 17.23393 110 32 - - 31.04752 56.40750 98.45750 17.89097 110 32 - - 31.04752 56.40750 91.82612 17.89097 110 34 - - 31.59100 57.87900 95.19837 18.54800 110 33 - - 32.12499 59.35050 98.57062 19.20503 110 33 - - 32.65002 60.82200 101.94287 19.86206 110 32 - - 33.16664 62.29350 105.31512 20.51910 110 31 - - 33.67539 63.76500 108.68736 21.17613 110 31 - - 33.67539 63.76500 103.10187 21.17613 110 33 - - 34.17669 65.23650 106.30082 21.83316 110 32 - - 34.67065 66.70800 109.49977 22.49020 110 32 - - 35.15732 68.17950 112.69871 23.14723 110 31 - - 35.63678 69.65100 115.89766 23.80426 110 31 - - 36.10908 71.12250 119.09661 24.46129 110 30 - - 36.10908 71.12250 114.26933 24.46129 110 32 - - 36.57420 72.59400 117.33861 25.11833 110 31 - - 37.03194 74.06550 120.40790 25.77536 110 31 - - 37.48213 75.53700 123.47718 26.43239 110 30 - - 37.92457 77.00850 126.54647 27.08943 110 30 - - 38.35908 78.48000 129.61575 27.74646 110 30 - - 38.35908 78.48000 125.36400 27.74646 110 31 - - 38.78543 79.95150 128.33260 28.40349 110 30 - - 39.20339 81.42300 131.30121 29.06053 110 30 - - 39.61283 82.89450 134.26981 29.71756 110 30 - - 40.01359 84.36600 137.23841 30.37459 110 29 - - 40.40552 85.83750 140.20702 31.03162 110 29 - - 40.40552 85.83750 136.40734 31.03162 110 30 - - 40.78845 87.30900 139.29550 31.68866 110 29 - - 41.16249 88.78050 142.18365 32.34569 110 29 - - 41.52786 90.25200 145.07180 33.00272 110 29 - - 41.88477 91.72350 147.95996 33.65976 110 28 - - 42.23344 93.19500 150.84811 34.31679 110 28 - - 42.23344 93.19500 147.41311 34.31679 110 29 - - 42.57415 94.66650 150.23549 34.97382 110 28 - - 42.90768 96.13800 153.05788 35.63085 110 28 - - 43.23502 97.60950 155.88027 36.28789 110 28 - - 43.55715 99.08100 158.70265 36.94492 110 27 - - 43.87505 100.55250 161.52504 37.60195 110 27 - - 43.87505 100.55250 158.39051 37.60195 110 28 - - 44.18985 102.02400 161.15813 38.25899 110 27 - - 44.50344 103.49550 163.92574 38.91602 110 27 - - 44.81804 104.96700 166.69336 39.57305 110 27 - - 45.13584 106.43850 169.46097 40.23008 110 27 - - 45.45903 107.91000 172.22859 40.88712 110 26 - - 51.74982 107.91000 386.02275 28.89025 110 13 - - 50.81196 109.38150 395.23230 29.57950 110 13 - - 49.92828 110.85300 404.44185 30.26875 110 12 - - 49.10513 112.32450 413.65140 30.95800 110 12 - - 48.34891 113.79600 422.86095 31.64725 110 11 - - 47.66600 115.26750 432.07050 32.33650 110 11 - - 47.66600 115.26750 395.60014 32.33650 110 12 - - 47.05948 116.73900 404.03233 33.02575 110 12 - - 46.52533 118.21050 412.46451 33.71500 110 11 - - 46.05924 119.68200 420.89670 34.40425 110 11 - - 45.65688 121.15350 429.32889 35.09350 110 11 - - 45.31394 122.62500 437.76107 35.78275 110 10 - - 45.31394 122.62500 425.84335 35.78275 110 11 - - 45.02451 124.09650 434.04598 36.47200 110 10 - - 44.78081 125.56800 442.24860 37.16125 110 10 - - 44.57574 127.03950 450.45123 37.85050 110 10 - - 44.40222 128.51100 458.65386 38.53975 110 10 - - 44.25315 129.98250 466.85648 39.22900 110 9 - - 44.25315 129.98250 460.68000 39.22900 110 10 - - 44.12108 131.45400 468.77411 39.91825 110 9 - - 44.00082 132.92550 476.86821 40.60750 110 9 - - 43.88872 134.39700 484.96232 41.29675 110 9 - - 43.78111 135.86850 493.05642 41.98600 110 9 - - 43.67433 137.34000 501.15053 42.67525 110 9 - + 0.00000 0.00000 0.00003 0.00000 1 0 A + 0.00000 1.30800 23.36326 0.53070 1 0 A + 0.00000 2.61600 46.72653 1.06141 1 0 A + 0.53358 3.92400 70.08979 1.59211 110 0 - + 1.85049 5.23200 93.45305 2.12281 110 0 - + 3.15657 6.54000 116.81631 2.65352 110 3 - + 3.15657 6.54000 47.10799 2.65352 110 7 - + 4.44860 7.84800 56.52959 3.18422 110 8 - + 5.72437 9.15600 65.95118 3.71492 110 9 - + 6.98186 10.46400 75.37278 4.24563 110 9 - + 8.21901 11.77200 84.79438 4.77633 110 10 - + 9.43379 13.08000 94.21598 5.30703 110 10 - + 9.43379 13.08000 66.31764 5.30703 110 14 - + 10.62441 14.38800 72.94940 5.83774 110 15 - + 11.78971 15.69600 79.58117 6.36844 110 15 - + 12.92860 17.00400 86.21293 6.89914 110 15 - + 14.03998 18.31200 92.84470 7.42985 110 15 - + 15.12275 19.62000 99.47646 7.96055 110 15 - + 10.11810 19.62000 38.17169 7.25322 110 27 - + 10.42003 20.92800 38.66091 7.34618 110 27 - + 10.70989 22.23600 39.15013 7.43914 110 27 - + 10.98755 23.54400 39.63936 7.53210 110 28 - + 11.25287 24.85200 40.12858 7.62506 110 28 - + 11.50572 26.16000 40.61780 7.71802 110 28 - + 11.50572 26.16000 39.99387 7.71802 110 29 - + 11.74603 27.46800 40.47558 7.81098 110 29 - + 11.97395 28.77600 40.95728 7.90394 110 29 - + 12.18970 30.08400 41.43899 7.99690 110 29 - + 12.39348 31.39200 41.92070 8.08986 110 30 - + 12.58550 32.70000 42.40241 8.18282 110 30 - + 12.58550 32.70000 41.83585 8.18282 110 30 - + 12.76601 34.00800 42.31112 8.27578 110 30 - + 12.93549 35.31600 42.78639 8.36874 110 30 - + 13.09444 36.62400 43.26166 8.46170 110 30 - + 13.24335 37.93200 43.73693 8.55466 110 30 - + 13.38274 39.24000 44.21220 8.64762 110 30 - + 21.32873 39.24000 91.40237 9.49093 110 23 - + 21.79909 40.22100 95.23558 9.88896 110 23 - + 22.25759 41.20200 99.06878 10.28699 110 22 - + 22.70488 42.18300 102.90198 10.68501 110 22 - + 23.14156 43.16400 106.73518 11.08304 110 22 - + 23.56826 44.14500 110.56839 11.48107 110 21 - + 23.56826 44.14500 101.29500 11.48107 110 23 - + 23.98558 45.12600 104.80671 11.87910 110 23 - + 24.39403 46.10700 108.31842 12.27712 110 23 - + 24.79409 47.08800 111.83013 12.67515 110 22 - + 25.18626 48.06900 115.34184 13.07318 110 22 - + 25.57103 49.05000 118.85355 13.47121 110 22 - + 25.57103 49.05000 109.34264 13.47121 110 23 - + 26.13536 50.52150 114.18869 14.06825 110 23 - + 26.68538 51.99300 119.03473 14.66529 110 22 - + 27.22219 53.46450 123.88078 15.26233 110 22 - + 27.74690 54.93600 128.72682 15.85937 110 22 - + 28.26062 56.40750 133.57287 16.45641 110 21 - + 28.26062 56.40750 123.89446 16.45641 110 23 - + 28.76432 57.87900 128.38937 17.05346 110 22 - + 29.25861 59.35050 132.88428 17.65050 110 22 - + 29.74400 60.82200 137.37919 18.24754 110 22 - + 30.22102 62.29350 141.87411 18.84458 110 21 - + 30.69019 63.76500 146.36902 19.44162 110 21 - + 30.69019 63.76500 138.20216 19.44162 110 22 - + 31.15193 65.23650 142.44627 20.03866 110 22 - + 31.60636 66.70800 146.69039 20.63570 110 22 - + 32.05358 68.17950 150.93450 21.23274 110 21 - + 32.49367 69.65100 155.17861 21.82979 110 21 - + 32.92672 71.12250 159.42272 22.42683 110 21 - + 32.92672 71.12250 152.35575 22.42683 110 22 - + 33.35275 72.59400 156.41173 23.02387 110 21 - + 33.77160 74.06550 160.46771 23.62091 110 21 - + 34.18315 75.53700 164.52368 24.21795 110 21 - + 34.58725 77.00850 168.57966 24.81499 110 21 - + 34.98375 78.48000 172.63564 25.41203 110 20 - + 34.98375 78.48000 166.40568 25.41203 110 21 - + 35.37248 79.95150 170.31528 26.00908 110 21 - + 35.75327 81.42300 174.22489 26.60612 110 21 - + 36.12599 82.89450 178.13450 27.20316 110 20 - + 36.49054 84.36600 182.04410 27.80020 110 20 - + 36.84679 85.83750 185.95371 28.39724 110 20 - + 36.84679 85.83750 180.38244 28.39724 110 20 - + 37.19463 87.30900 184.17492 28.99428 110 20 - + 37.53416 88.78050 187.96739 29.59132 110 20 - + 37.86558 90.25200 191.75986 30.18836 110 20 - + 38.18911 91.72350 195.55234 30.78541 110 20 - + 38.50496 93.19500 199.34481 31.38245 110 19 - + 38.50496 93.19500 194.30563 31.38245 110 20 - + 38.81340 94.66650 198.00223 31.97949 110 20 - + 39.11514 96.13800 201.69884 32.57653 110 19 - + 39.41108 97.60950 205.39544 33.17357 110 19 - + 39.70213 99.08100 209.09205 33.77061 110 19 - + 39.98918 100.55250 212.78865 34.36765 110 19 - + 39.98918 100.55250 208.18836 34.36765 110 19 - + 40.27325 102.02400 211.80505 34.96469 110 19 - + 40.55608 103.49550 215.42174 35.56174 110 19 - + 40.83967 104.96700 219.03843 36.15878 110 19 - + 41.12601 106.43850 222.65511 36.75582 110 18 - + 41.41710 107.91000 226.27180 37.35286 110 18 - + 44.41662 107.91000 484.03714 24.09540 110 9 - + 43.49614 109.38150 495.52355 24.66719 110 9 - + 42.62421 110.85300 507.00995 25.23899 110 8 - + 41.80680 112.32450 518.49635 25.81078 110 8 - + 41.04989 113.79600 529.98276 26.38257 110 8 - + 40.35947 115.26750 541.46916 26.95437 110 7 - + 40.35947 115.26750 502.94282 26.95437 110 8 - + 39.73853 116.73900 513.61195 27.52616 110 8 - + 39.18351 118.21050 524.28108 28.09796 110 7 - + 38.69054 119.68200 534.95021 28.66975 110 7 - + 38.25576 121.15350 545.61934 29.24154 110 7 - + 37.87529 122.62500 556.28847 29.81334 110 7 - + 37.87529 122.62500 542.36706 29.81334 110 7 - + 37.54379 124.09650 552.76919 30.38513 110 7 - + 37.25414 125.56800 563.17132 30.95693 110 7 - + 36.99987 127.03950 573.57345 31.52872 110 6 - + 36.77451 128.51100 583.97558 32.10051 110 6 - + 36.57157 129.98250 594.37771 32.67231 110 6 - + 36.57157 129.98250 586.93748 32.67231 110 6 - + 36.38422 131.45400 597.20940 33.24410 110 6 - + 36.20771 132.92550 607.48132 33.81589 110 6 - + 36.03869 134.39700 617.75323 34.38769 110 6 - + 35.87379 135.86850 628.02515 34.95948 110 6 - + 35.70966 137.34000 638.29707 35.53128 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6720,10 +6806,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 15.345 'Clay' - -4.00 26.722 'Peat' - -6.00 252.938 'Clay' - -13.00 138.452 'Sand' + 0.00 12.972 'Clay' + -4.00 23.941 'Peat' + -6.00 230.384 'Clay' + -13.00 115.919 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6803,52 +6889,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -6895,7 +6981,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 168.00000 210000000.000 0 2 0 'Anchor' + -1.50000 141.67839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6922,22 +7008,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 71.84 : Percentage mobilized resistance left - 13.56 : Percentage mobilized resistance right - 634.47 : Effective left - 409.48 : Effective right + 43.01 : Percentage mobilized resistance left + 7.59 : Percentage mobilized resistance right + 545.44 : Effective left + 292.37 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 3019.75 : Max effective resistance right --10540.07 : Max moment left --28008.30 : Max moment right --7076.51 : Max mobilized moment left --3699.87 : Max mobilized moment right - 183.84 : Vertical force left - 97.32 : Vertical force right - 67.1 : Max mobilized moment percentage left - 13.2 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3850.19 : Max effective resistance right +-14781.58 : Max moment left +-35709.89 : Max moment right +-5450.60 : Max mobilized moment left +-2071.19 : Max mobilized moment right + 170.74 : Vertical force left + 75.29 : Vertical force right + 36.9 : Max mobilized moment percentage left + 5.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -6952,144 +7038,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.03242 0.17559 42.23997 - 0.04515 1.20023 32.41834 - 0.43272 4.32621 22.59678 - 1.42861 9.16407 12.77437 - 3.17592 13.88157 2.95018 - 5.51835 17.10448 -6.87670 - 5.56987 16.95231 -6.87670 - 8.17275 17.55270 -16.70802 - 10.80566 17.55270 -26.54639 - 13.43856 17.55270 -36.39409 - 16.07147 17.55270 -46.25340 - 18.70437 17.55270 -56.12658 - 18.70224 -150.45558 -56.12658 - 3.66392 -150.30922 -62.71645 - -11.35928 -150.15318 -69.30773 - -26.36640 -149.98757 -75.89465 - -41.35648 -149.81249 -82.47146 - -56.32858 -149.62806 -89.03241 - -56.32983 -149.61771 -89.03241 - -76.18272 -148.14774 -97.74561 - -95.82847 -146.51076 -106.40684 - -115.24488 -144.70790 -115.00284 - -134.40992 -142.74020 -123.52039 - -153.30165 -140.60861 -131.94625 - -153.30106 -140.60700 -131.94625 - -171.89673 -138.30085 -140.26729 - -190.17407 -135.83219 -148.47106 - -208.11146 -133.20176 -156.54532 - -225.68738 -130.41022 -164.47785 - -242.88038 -127.45820 -172.25642 - -242.88036 -127.46019 -172.25642 - -259.66857 -124.33630 -179.86898 - -276.02961 -121.05276 -187.30438 - -291.94223 -117.61007 -194.55179 - -307.38524 -114.00869 -201.60035 - -322.33751 -110.24901 -208.43922 - -322.33758 -110.25070 -208.43922 - -336.71484 -105.38530 -215.05774 - -350.43425 -100.38313 -221.44653 - -363.47762 -95.24468 -227.59672 - -375.82679 -89.97042 -233.49941 - -387.46371 -84.56077 -239.14572 - -387.46371 -84.56181 -239.14572 - -398.37201 -79.04019 -244.52711 - -408.53512 -73.38408 -249.63672 - -417.93513 -67.59381 -254.46815 - -426.55419 -61.66973 -259.01498 - -434.37446 -55.61215 -263.27083 - -434.37447 -55.61310 -263.27083 - -441.37923 -49.43618 -267.22968 - -447.55154 -43.12639 -270.88742 - -452.87371 -36.68397 -274.24042 - -457.32805 -30.10919 -277.28504 - -460.89695 -23.40228 -280.01768 - -460.89697 -23.40304 -280.01768 - -463.01784 -18.99995 -281.86058 - -464.69406 -14.50993 -283.52580 - -465.91693 -9.93307 -285.01290 - -466.67778 -5.26940 -286.32139 - -466.96792 -0.51900 -287.45081 - -466.96793 -0.51958 -287.45081 - -466.77791 4.33452 -288.40083 - -466.09813 9.27544 -289.17174 - -464.91992 14.30314 -289.76399 - -463.23461 19.41755 -290.17803 - -461.03353 24.61865 -290.41432 - -461.03353 24.61823 -290.41432 - -458.30846 29.88623 -290.47348 - -455.05568 35.17230 -290.35677 - -451.27340 40.47640 -290.06565 - -446.95980 45.79850 -289.60157 - -442.11310 51.13855 -288.96599 - -442.11305 51.13785 -288.96599 - -433.43588 59.16236 -287.62443 - -423.56206 66.36796 -285.87217 - -412.62028 72.75452 -283.71951 - -400.73926 78.32195 -281.17675 - -388.04772 83.07012 -278.25417 - -388.04774 83.06929 -278.25417 - -374.62641 87.62903 -274.96305 - -360.54443 91.47775 -271.31698 - -345.91351 94.61537 -267.32977 - -330.84542 97.04180 -263.01521 - -315.45192 98.75697 -258.38711 - -315.45192 98.75624 -258.38711 - -299.68559 101.81975 -253.45965 - -283.47857 104.36497 -248.24826 - -266.91232 106.39183 -242.76858 - -250.06830 107.90027 -237.03626 - -233.02797 108.89025 -231.06696 - -233.02796 108.88945 -231.06696 - -215.76270 110.77876 -224.87659 - -198.23425 112.23906 -218.48180 - -180.51004 113.27034 -211.89935 - -162.65748 113.87253 -205.14599 - -144.74400 114.04562 -198.23849 - -144.74400 114.04475 -198.23849 - -126.75524 114.83997 -191.19375 - -108.67130 115.25598 -184.02893 - -90.55179 115.29275 -176.76118 - -72.45630 114.95027 -169.40761 - -54.44443 114.22850 -161.98538 - -54.44445 114.22773 -161.98538 - -36.51069 113.96223 -154.51165 - -18.64594 113.34932 -147.00335 - -0.90482 112.38897 -139.47727 - 16.65810 111.08117 -131.95019 - 33.98821 109.42593 -124.43889 - 33.98817 109.42566 -124.43889 - 51.07262 107.95828 -116.96008 - 67.90079 106.16402 -109.52969 - 84.42133 104.04287 -102.16337 - 100.58286 101.59482 -94.87673 - 116.33401 98.81988 -87.68540 - 116.33675 98.80059 -87.68540 - 130.03544 83.69838 -80.92511 - 141.40121 67.69507 -74.27730 - 150.29890 50.79065 -67.74959 - 156.59335 32.98514 -61.34960 - 160.14939 14.27854 -55.08492 - 160.15453 14.25191 -55.08492 - 160.99663 -3.16114 -48.96142 - 159.16501 -21.39775 -42.97714 - 154.53613 -40.45793 -37.12804 - 146.98646 -60.34165 -31.41006 - 136.40740 -80.75006 -25.81914 - 136.41044 -82.59707 -25.81914 - 122.57979 -100.87689 -20.34814 - 106.42758 -113.55249 -14.98277 - 88.79170 -120.67509 -9.70822 - 70.49832 -122.33229 -4.50969 - 52.43857 -117.05838 0.62763 - 52.32679 -117.06695 0.62763 - 35.62875 -104.57621 5.72105 - 21.23711 -86.42187 10.78422 - 9.96878 -62.93568 15.82647 - 2.62214 -34.13471 20.85713 - -0.00626 -0.02621 25.88552 + -0.01244 0.06903 33.20519 + 0.07684 1.64753 29.47363 + 0.64368 6.46323 25.74217 + 2.12103 13.38334 22.00944 + 4.67472 20.62411 18.27407 + 8.29656 27.63074 14.53470 + 8.30802 27.69274 14.53470 + 12.87145 33.07087 10.78905 + 18.20468 37.95690 7.03232 + 24.23382 42.34892 3.25933 + 30.88643 46.28234 -0.53509 + 38.09916 49.82844 -4.35610 + 38.09931 -91.84827 -4.35610 + 28.98815 -90.41016 -6.92015 + 20.01020 -89.18446 -9.49532 + 11.14408 -88.17416 -12.07821 + 2.36810 -87.38177 -14.66541 + -6.33961 -86.80923 -17.25351 + -6.33577 -86.89029 -17.25351 + -17.91415 -86.78110 -20.69990 + -29.47411 -86.59798 -24.13407 + -41.00152 -86.29278 -27.54815 + -52.48009 -85.86550 -30.93430 + -63.89356 -85.31614 -34.28465 + -63.89354 -85.31717 -34.28465 + -75.17035 -83.81115 -37.59130 + -86.23683 -82.16240 -40.84666 + -97.07399 -80.37131 -44.04334 + -107.66287 -78.43822 -47.17396 + -117.98456 -76.36344 -50.23113 + -117.98453 -76.36544 -50.23113 + -128.00116 -73.85950 -53.20756 + -137.67386 -71.20653 -56.09666 + -146.98305 -68.40683 -58.89208 + -155.90918 -65.46073 -61.58747 + -164.43275 -62.36848 -64.17651 + -164.43282 -62.37016 -64.17651 + -172.46154 -58.03819 -66.65296 + -179.90371 -53.57209 -69.01174 + -186.74148 -48.97225 -71.24819 + -192.95705 -44.23907 -73.35764 + -198.53266 -39.37288 -75.33545 + -198.53266 -39.37392 -75.33545 + -203.45191 -34.39287 -77.17727 + -207.69821 -29.27954 -78.88028 + -211.25392 -24.03423 -80.44205 + -214.10148 -18.65720 -81.86016 + -216.22333 -13.14871 -83.13220 + -216.22334 -13.14966 -83.13220 + -217.60329 -7.52771 -84.25612 + -218.22491 -1.77483 -85.23156 + -218.07077 4.10875 -86.05863 + -217.12344 10.12284 -86.73745 + -215.36555 16.26724 -87.26813 + -215.36557 16.26648 -87.26813 + -213.54491 20.16028 -87.56931 + -211.33081 24.13527 -87.78854 + -208.71515 28.19140 -87.92682 + -205.68983 32.32864 -87.98517 + -202.24672 36.54694 -87.96459 + -202.24673 36.54636 -87.96459 + -198.37635 40.87468 -87.86620 + -194.06908 45.28430 -87.69168 + -189.31678 49.77519 -87.44286 + -184.11134 54.34731 -87.12156 + -178.44461 59.00064 -86.72961 + -178.44456 58.99980 -86.72961 + -169.12409 64.86376 -86.01374 + -159.10826 68.27121 -85.15198 + -148.76555 69.22204 -84.15306 + -138.46448 67.71617 -83.02574 + -128.57354 63.75351 -81.77876 + -128.57356 63.75260 -81.77876 + -118.87158 65.44186 -80.42074 + -108.99062 66.13889 -78.96016 + -99.07952 65.84362 -77.40548 + -89.28715 64.55598 -75.76520 + -79.76235 62.27590 -74.04780 + -79.76236 62.27523 -74.04780 + -70.42300 62.13302 -72.26169 + -61.15740 61.29192 -70.41483 + -52.07037 59.75188 -68.51502 + -43.26678 57.51286 -66.57005 + -34.85147 54.57480 -64.58771 + -34.85147 54.57416 -64.58771 + -26.78098 52.93681 -62.57564 + -18.99907 50.72662 -60.54050 + -11.59164 47.94355 -58.48866 + -4.64465 44.58756 -56.42645 + 1.75598 40.65863 -54.36024 + 1.76226 40.62442 -54.36024 + 7.63574 37.60482 -52.29606 + 13.01858 34.08264 -50.23853 + 17.85276 30.40508 -48.19180 + 22.15476 27.02055 -46.16007 + 25.97854 24.02823 -44.14751 + 25.97213 23.99596 -44.14751 + 29.37495 21.43933 -42.15781 + 32.42309 19.26588 -40.19348 + 35.17360 17.47004 -38.25690 + 37.68267 16.04570 -36.35049 + 40.00555 14.98627 -34.47665 + 40.00550 14.98895 -34.47665 + 42.20023 14.33323 -32.63749 + 44.32301 14.02832 -30.83474 + 46.42588 14.06637 -29.07025 + 48.55966 14.43915 -27.34585 + 50.77393 15.13804 -25.66339 + 50.77386 15.14178 -25.66339 + 53.12071 16.20169 -24.02462 + 55.64978 17.56972 -22.43168 + 58.40654 19.23599 -20.88697 + 61.43497 21.19012 -19.39289 + 64.77742 23.42122 -17.95184 + 64.77899 23.41555 -17.95184 + 67.41440 11.96271 -16.56730 + 68.43810 1.91588 -15.24098 + 68.05642 -6.78595 -13.97266 + 66.46653 -14.20354 -12.76211 + 63.85654 -20.39745 -11.60910 + 63.85550 -20.37680 -11.60910 + 60.39192 -25.61560 -10.51216 + 56.22605 -29.74980 -9.46735 + 51.51958 -32.83202 -8.47066 + 46.42662 -34.91072 -7.51813 + 41.09433 -36.03014 -6.60575 + 41.09489 -36.01247 -6.60575 + 35.61779 -36.86677 -5.72904 + 30.07870 -36.84424 -4.88301 + 24.60687 -35.97465 -4.06303 + 19.32741 -34.28289 -3.26442 + 14.36211 -31.78895 -2.48253 + 14.36980 -31.89862 -2.48253 + 9.82323 -28.52678 -1.71247 + 5.88099 -23.77044 -0.95074 + 2.77157 -17.42473 -0.19479 + 0.73257 -9.49906 0.55797 + 0.00064 0.00252 1.31008 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7125,10 +7211,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7165,29 +7251,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 53.13200 0.00000 38.13147 0.00000 - -1.50000 53.43500 0.00000 153.26606 0.00000 - -2.00000 56.65900 45.89800 239.51060 1.18304 - -2.66667 58.46300 44.06500 361.48824 11.88154 - -3.33333 59.36100 42.95400 489.12749 24.13096 - -4.00000 59.90600 42.22100 622.89025 37.82198 - -4.66667 70.57400 41.59300 719.91616 59.26559 - -5.33333 69.67000 41.00400 789.46016 81.00492 - -6.00000 68.84900 40.37000 858.77104 103.04236 - -6.50000 68.24100 40.07300 932.16140 114.88806 - -7.00000 67.81200 39.82900 1010.43175 127.50144 - -7.50000 67.42500 39.71000 1092.01804 140.86292 - -8.28571 66.80100 39.65700 1227.02750 163.36071 - -9.07143 66.12200 39.62500 1374.00539 187.70700 - -9.85714 65.85500 39.60600 1529.91503 213.90131 - -10.64286 65.97500 39.59900 1693.80903 241.94340 - -11.42857 65.65400 39.60000 1863.22277 271.83319 - -12.21429 65.37100 39.30700 2041.28525 303.54588 - -13.00000 65.12200 37.56800 2228.03902 335.90755 - -13.75000 67.03300 36.02700 2686.49316 363.21037 - -14.50000 68.38400 34.59200 3206.69893 390.57567 - -15.25000 69.17300 33.25400 3747.39457 414.73221 - -16.00000 69.70300 32.00500 4313.14360 439.37742 + -0.75000 53.13200 0.00000 58.74308 0.00000 + -1.50000 59.48000 0.00000 213.92070 0.00000 + -2.00000 61.25600 0.00000 325.00869 0.00000 + -2.66667 62.34900 0.00000 483.26370 0.00000 + -3.33333 62.92000 39.81500 649.08942 6.25380 + -4.00000 63.27500 39.16500 822.80070 15.35186 + -4.66667 71.14200 38.61900 910.56207 32.94817 + -5.33333 70.32400 38.13900 990.49637 50.79495 + -6.00000 69.57600 37.55400 1070.09728 68.84072 + -6.50000 69.04000 37.27700 1163.71315 76.96688 + -7.00000 68.70400 37.05100 1265.18769 85.74594 + -7.75000 68.26900 36.90700 1425.43283 100.13097 + -8.50000 67.37800 36.88700 1599.72367 115.95228 + -9.25000 67.23300 36.88000 1787.54639 133.20250 + -10.00000 67.11000 36.88300 1985.58688 151.88154 + -10.75000 67.38200 36.89300 2187.63614 171.98942 + -11.50000 67.16300 36.90900 2397.80662 193.52625 + -12.25000 66.97100 36.92900 2618.02203 216.49217 + -13.00000 66.80300 36.95200 2848.31744 240.88737 + -13.75000 68.45900 36.02700 3433.01501 264.12135 + -14.50000 69.62200 34.59200 4093.16237 287.35594 + -15.25000 70.31500 33.25400 4780.03317 307.24212 + -16.00000 70.78600 32.00500 5498.95199 327.51200 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -7204,29 +7290,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.91707 50.84197 0.00000 2.49156 0.00000 8.59243 - -1.12500 20.20692 153.51278 0.00000 1.53894 0.00000 7.59704 - -1.75000 32.16051 172.48908 2.36608 1.17241 0.07357 5.36338 - -2.33333 39.67219 182.96645 16.04774 1.02016 0.40451 4.61196 - -3.00000 45.10271 191.45888 18.37413 0.92129 0.40738 4.24495 - -3.66667 50.08346 200.64414 20.53653 0.85201 0.41005 4.00620 - -4.33333 53.09954 145.53887 32.16541 0.76517 0.60576 2.74087 - -5.00000 54.24199 104.31599 32.60900 0.73120 0.60118 1.92316 - -5.66667 55.23467 103.96632 33.05617 0.70356 0.59847 1.88227 - -6.25000 57.26078 146.78073 23.69140 0.72322 0.41375 2.56337 - -6.75000 60.37230 156.54070 25.22674 0.70911 0.41785 2.59292 - -7.25000 63.44388 163.17258 26.72296 0.69802 0.42121 2.57192 - -7.89286 67.34610 171.83022 28.63356 0.68723 0.42517 2.55145 - -8.67857 72.06047 187.06277 30.98619 0.67804 0.43000 2.59591 - -9.46429 76.73092 198.43045 33.33821 0.67207 0.43448 2.58606 - -10.25000 81.37112 208.59236 35.68994 0.66839 0.43861 2.56347 - -11.03571 85.99146 215.61748 38.04155 0.66635 0.44239 2.50743 - -11.82143 90.59987 226.62497 40.36160 0.66548 0.44549 2.50138 - -12.60714 95.20234 237.68662 41.18759 0.66542 0.43263 2.49665 - -13.37500 100.82375 611.27218 36.40376 0.47789 0.36106 6.06278 - -14.12500 107.46720 693.60770 36.48706 0.47790 0.33952 6.45413 - -14.87500 114.11437 720.92752 32.20872 0.47821 0.28225 6.31759 - -15.62500 120.76679 754.33203 32.86028 0.47872 0.27210 6.24619 + -0.37500 5.91707 78.32410 0.00000 2.43014 0.00000 13.23698 + -1.12500 20.20692 206.90350 0.00000 1.48498 0.00000 10.23924 + -1.75000 32.16051 222.17598 0.00000 1.11967 0.00000 6.90835 + -2.33333 39.67219 237.38251 0.00000 0.96794 0.00000 5.98360 + -3.00000 45.10271 248.73857 9.38070 0.86945 0.20799 5.51494 + -3.66667 50.08346 260.56693 13.64709 0.80000 0.27249 5.20265 + -4.33333 53.09954 131.64206 26.39447 0.70709 0.49708 2.47916 + -5.00000 54.24199 119.90145 26.77017 0.67329 0.49353 2.21049 + -5.66667 55.23467 119.40135 27.06865 0.64566 0.49007 2.16171 + -6.25000 57.26078 187.23175 16.25232 0.67097 0.28383 3.26981 + -6.75000 60.37230 202.94909 17.55810 0.65624 0.29083 3.36163 + -7.37500 64.20643 213.66018 19.18004 0.64204 0.29872 3.32771 + -8.12500 68.74452 232.38779 21.09509 0.62968 0.30686 3.38046 + -8.87500 73.23160 250.43030 23.00030 0.62110 0.31408 3.41970 + -9.62500 77.68213 264.05399 24.90538 0.61526 0.32061 3.39916 + -10.37500 82.10727 269.39901 26.81051 0.61144 0.32653 3.28106 + -11.12500 86.51562 280.22731 28.71577 0.60908 0.33191 3.23904 + -11.87500 90.91381 293.62054 30.62124 0.60779 0.33682 3.22966 + -12.62500 95.30691 307.06055 32.52693 0.60729 0.34129 3.22181 + -13.37500 100.82375 779.59676 30.97864 0.40053 0.30726 7.73227 + -14.12500 107.46720 880.19648 30.97945 0.39986 0.28827 8.19037 + -14.87500 114.11437 915.82773 26.51491 0.39957 0.23235 8.02552 + -15.62500 120.76679 958.55844 27.02650 0.39955 0.22379 7.93727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7244,143 +7330,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 19.51697 0.00000 19.51697 5.65938 202 100 P - 40.02548 0.00000 40.02548 11.60628 202 100 P - 52.12426 0.00000 62.05941 17.99550 110 84 - - 37.73278 0.00000 85.58758 24.81802 110 44 - - 23.65602 0.00000 110.21970 31.96064 110 0 - - 11.43613 0.00000 97.45134 19.74075 110 0 - - 0.00000 0.00000 119.77683 24.26324 1 0 A - 0.00000 0.00000 142.28023 28.82176 1 0 A - 0.00000 0.00000 164.70023 33.36339 1 0 A - 0.00000 0.00000 186.87625 37.85560 1 0 A - 0.00000 0.00000 208.72337 42.28118 1 0 A - 2.02132 0.00000 147.35515 32.21115 1 0 A - 2.16041 0.00000 157.49553 34.42779 1 0 A - 2.29792 0.00000 167.51997 36.61908 1 0 A - 2.43386 0.00000 177.42992 38.78535 1 0 A - 2.56827 0.00000 187.22874 40.92733 1 0 A - 2.70122 0.00000 196.92097 43.04601 1 0 A - 14.85186 0.00000 169.33180 37.45605 1 0 A - 15.33954 1.30800 174.89194 38.68595 1 0 A - 15.81461 2.61600 180.30847 39.88408 1 0 A - 16.27809 3.92400 185.59276 41.05296 1 0 A - 16.73093 5.23200 190.75574 42.19501 1 0 A - 17.17402 6.54000 195.80767 43.31249 1 0 A - 17.29612 6.54000 180.22598 39.11476 1 0 A - 17.73340 7.84800 184.78240 40.10364 1 0 A - 18.16246 9.15600 189.25326 41.07396 1 0 A - 18.58401 10.46400 193.64576 42.02728 1 0 A - 18.99865 11.77200 197.96640 42.96499 1 0 A - 19.40697 13.08000 202.22101 43.88838 1 0 A - 19.53377 13.08000 190.84708 40.58787 1 0 A - 19.93888 14.38800 194.80505 41.42962 1 0 A - 20.33858 15.69600 198.71015 42.26013 1 0 A - 20.73328 17.00400 202.56638 43.08024 1 0 A - 21.12334 18.31200 206.37738 43.89074 1 0 A - 21.50912 19.62000 210.14642 44.69231 1 0 A - 31.77520 19.62000 143.77324 40.13708 1 0 A - 31.93536 20.92800 144.49792 40.33939 1 0 A - 32.09002 22.23600 145.19775 40.53476 1 0 A - 32.23957 23.54400 145.87439 40.72365 1 0 A - 32.38432 24.85200 146.52937 40.90650 1 0 A - 32.52460 26.16000 147.16407 41.08369 1 0 A - 32.27865 26.16000 103.25921 39.25994 1 0 A - 32.41369 27.46800 103.69121 39.42420 1 0 A - 32.54482 28.77600 104.11070 39.58369 1 0 A - 32.67228 30.08400 104.51842 39.73871 1 0 A - 32.79627 31.39200 104.91508 39.88952 1 0 A - 32.91701 32.70000 105.30131 40.03637 1 0 A - 32.76870 32.70000 103.06220 38.52321 1 0 A - 32.88583 34.00800 103.43059 38.66091 1 0 A - 33.00007 35.31600 103.78991 38.79521 1 0 A - 33.11159 36.62400 104.14065 38.92632 1 0 A - 33.22054 37.93200 104.48330 39.05439 1 0 A - 33.32705 39.24000 104.81828 39.17961 1 0 A - 23.04038 39.24000 142.74730 40.27400 1 0 A - 23.30143 40.22100 144.36464 40.73031 1 0 A - 23.56162 41.20200 145.97665 41.18512 1 0 A - 23.82098 42.18300 147.58355 41.63848 1 0 A - 24.07956 43.16400 149.18555 42.09046 1 0 A - 24.33737 44.14500 150.78284 42.54111 1 0 A - 24.57897 44.14500 152.52104 41.71129 1 0 A - 24.83861 45.12600 154.13217 42.15190 1 0 A - 25.09754 46.10700 155.73892 42.59132 1 0 A - 25.35579 47.08800 157.34146 43.02958 1 0 A - 25.61339 48.06900 158.93995 43.46673 1 0 A - 25.87036 49.05000 160.53455 43.90282 1 0 A - 26.07797 49.05000 159.23421 43.21613 1 0 A - 26.33640 50.03100 160.81220 43.64440 1 0 A - 26.59425 51.01200 162.38664 44.07170 1 0 A - 26.85154 51.99300 163.95768 44.49808 1 0 A - 27.10829 52.97400 165.52544 44.92357 1 0 A - 27.36453 53.95500 167.09007 45.34821 1 0 A - 27.62206 53.95500 165.76021 44.64705 1 0 A - 28.02751 55.49657 168.19334 45.30241 1 0 A - 28.43181 57.03814 170.61956 45.95591 1 0 A - 28.83504 58.57971 173.03931 46.60766 1 0 A - 29.23725 60.12129 175.45300 47.25778 1 0 A - 29.63852 61.66286 177.86102 47.90637 1 0 A - 29.97539 61.66286 180.96059 47.26616 1 0 A - 30.38032 63.20443 183.40519 47.90468 1 0 A - 30.78443 64.74600 185.84476 48.54188 1 0 A - 31.18776 66.28757 188.27965 49.17787 1 0 A - 31.59036 67.82914 190.71017 49.81271 1 0 A - 31.99230 69.37071 193.13664 50.44649 1 0 A - 32.32557 69.37071 192.40318 50.00211 1 0 A - 32.73106 70.91229 194.81667 50.62933 1 0 A - 33.13597 72.45386 197.22668 51.25565 1 0 A - 33.54033 73.99543 199.63345 51.88112 1 0 A - 33.94419 75.53700 202.03724 52.50583 1 0 A - 34.34759 77.07857 204.43828 53.12981 1 0 A - 34.67367 77.07857 202.65273 52.83903 1 0 A - 35.08047 78.62014 205.03029 53.45895 1 0 A - 35.48687 80.16171 207.40554 54.07826 1 0 A - 35.89292 81.70329 209.77869 54.69703 1 0 A - 36.29863 83.24486 212.14991 55.31530 1 0 A - 36.70404 84.78643 214.51938 55.93310 1 0 A - 37.02041 84.78643 209.82974 55.76242 1 0 A - 37.42905 86.32800 212.14586 56.37793 1 0 A - 37.83744 87.86957 214.46059 56.99307 1 0 A - 38.24561 89.41114 216.77407 57.60788 1 0 A - 38.65358 90.95271 219.08643 58.22239 1 0 A - 39.06138 92.49429 221.39781 58.83664 1 0 A - 39.33557 92.49429 220.86397 58.75943 1 0 A - 39.74608 94.03586 223.16891 59.37264 1 0 A - 40.15646 95.57743 225.47312 59.98566 1 0 A - 40.56672 97.11900 227.77668 60.59851 1 0 A - 40.97689 98.66057 230.07972 61.21122 1 0 A - 41.38697 100.20214 232.38232 61.82381 1 0 A - 40.19219 100.20214 231.94234 61.81893 1 0 A - 40.59038 101.74371 234.24023 62.43138 1 0 A - 40.98853 103.28529 236.53787 63.04376 1 0 A - 41.38665 104.82686 238.83533 63.65610 1 0 A - 41.78474 106.36843 241.13270 64.26841 1 0 A - 42.18284 107.91000 243.43003 64.88071 1 0 A - 35.20468 107.91000 591.13792 46.59562 1 0 A - 35.68430 109.38150 599.19144 47.23043 1 0 A - 36.16393 110.85300 607.24519 47.86526 1 0 A - 36.64359 112.32450 615.29928 48.50011 1 0 A - 37.12327 113.79600 623.35383 49.13500 1 0 A - 37.60299 115.26750 631.40896 49.76993 1 0 A - 35.35915 115.26750 672.16658 49.77093 1 0 A - 35.81028 116.73900 680.74239 50.40593 1 0 A - 36.26145 118.21050 689.31904 51.04099 1 0 A - 36.71267 119.68200 697.89660 51.67612 1 0 A - 37.16395 121.15350 706.47519 52.31133 1 0 A - 37.61528 122.62500 715.05488 52.94662 1 0 A - 31.27048 122.62500 699.92686 52.98106 1 0 A - 31.64574 124.09650 708.32619 53.61685 1 0 A - 32.02105 125.56800 716.72676 54.25273 1 0 A - 32.39642 127.03950 725.12862 54.88872 1 0 A - 32.77185 128.51100 733.53186 55.52480 1 0 A - 62.43728 129.98250 741.93651 56.16099 110 8 - - 62.49733 129.98250 733.55135 56.22103 110 9 - - 114.06847 131.45400 741.86248 56.85802 110 15 - - 165.33730 132.92550 750.17513 57.49512 110 22 - - 216.39706 134.39700 758.48933 58.13234 110 29 - - 267.34100 135.86850 766.80514 58.76968 110 35 - - 318.26237 137.34000 775.12259 59.40715 110 41 - + 30.06668 0.00000 30.06668 5.51986 202 100 P + 61.66087 0.00000 61.66087 11.32016 202 100 P + 70.15077 0.00000 95.60503 17.55188 110 73 - + 67.76874 0.00000 131.85112 24.20620 110 51 - + 65.69092 0.00000 169.79789 31.17275 110 39 - + 53.56679 0.00000 131.34426 19.04861 110 41 - + 48.87379 0.00000 161.43441 23.41253 110 30 - + 44.19339 0.00000 191.76434 27.81123 110 23 - + 39.46417 0.00000 221.98186 32.19362 110 18 - + 35.45814 0.00000 251.87056 36.52832 110 0 - + 32.08653 0.00000 281.31596 40.79873 110 0 - + 22.05004 0.00000 189.80201 30.76224 110 0 - + 19.03887 0.00000 202.86341 32.87917 110 0 - + 15.98125 0.00000 215.77548 34.97190 110 0 - + 12.88430 0.00000 228.54007 37.04073 110 0 - + 9.75553 0.00000 241.16152 39.08635 110 0 - + 6.60271 0.00000 253.64568 41.10973 110 0 - + 1.03176 0.00000 219.69278 35.53878 110 0 - + 0.00000 1.30800 226.90657 36.70572 1 0 A + 0.00000 2.61600 233.93403 37.84253 1 0 A + 0.00000 3.92400 240.78991 38.95157 1 0 A + 0.00000 5.23200 247.48841 40.03516 1 0 A + 0.00000 6.54000 254.04284 41.09544 1 0 A + 8.83034 6.54000 234.14507 36.91366 1 0 A + 9.05358 7.84800 240.06465 37.84690 1 0 A + 9.27263 9.15600 245.87308 38.76262 1 0 A + 9.48785 10.46400 251.57971 39.66229 1 0 A + 9.69954 11.77200 257.19297 40.54723 1 0 A + 9.90800 13.08000 262.72046 41.41866 1 0 A + 12.98073 13.08000 247.84396 38.11016 1 0 A + 13.24994 14.38800 252.98399 38.90052 1 0 A + 13.51555 15.69600 258.05535 39.68033 1 0 A + 13.77784 17.00400 263.06326 40.45038 1 0 A + 14.03705 18.31200 268.01242 41.21139 1 0 A + 14.29340 19.62000 272.90708 41.96403 1 0 A + 26.07426 19.62000 130.04502 37.09040 1 0 A + 26.20568 20.92800 130.70050 37.27735 1 0 A + 26.33260 22.23600 131.33351 37.45789 1 0 A + 26.45531 23.54400 131.94554 37.63245 1 0 A + 26.57410 24.85200 132.53798 37.80142 1 0 A + 26.68921 26.16000 133.11207 37.96516 1 0 A + 26.49897 26.16000 118.68678 36.15047 1 0 A + 26.60984 27.46800 119.18333 36.30172 1 0 A + 26.71749 28.77600 119.66549 36.44858 1 0 A + 26.82212 30.08400 120.13413 36.59132 1 0 A + 26.92391 31.39200 120.59005 36.73019 1 0 A + 27.02303 32.70000 121.03398 36.86540 1 0 A + 26.83326 32.70000 118.36300 35.35253 1 0 A + 26.92917 34.00800 118.78609 35.47890 1 0 A + 27.02272 35.31600 119.19875 35.60215 1 0 A + 27.11404 36.62400 119.60157 35.72247 1 0 A + 27.20325 37.93200 119.99508 35.84000 1 0 A + 27.29047 39.24000 120.37980 35.95491 1 0 A + 15.80572 39.24000 182.08676 37.36424 1 0 A + 15.98480 40.22100 184.14981 37.78758 1 0 A + 16.16329 41.20200 186.20607 38.20952 1 0 A + 16.34121 42.18300 188.25582 38.63013 1 0 A + 16.51860 43.16400 190.29931 39.04945 1 0 A + 16.69546 44.14500 192.33680 39.46755 1 0 A + 17.10724 44.14500 197.73775 38.60130 1 0 A + 17.28795 45.12600 199.82652 39.00906 1 0 A + 17.46817 46.10700 201.90961 39.41571 1 0 A + 17.64792 47.08800 203.98724 39.82129 1 0 A + 17.82721 48.06900 206.05962 40.22585 1 0 A + 18.00607 49.05000 208.12697 40.62943 1 0 A + 18.49481 49.05000 206.02693 39.75007 1 0 A + 18.76958 50.52150 209.08775 40.34061 1 0 A + 19.04344 51.99300 212.13844 40.92920 1 0 A + 19.31644 53.46450 215.17961 41.51595 1 0 A + 19.58864 54.93600 218.21182 42.10097 1 0 A + 19.86008 56.40750 221.23562 42.68438 1 0 A + 20.40109 56.40750 224.74252 41.86288 1 0 A + 20.67919 57.87900 227.80622 42.43356 1 0 A + 20.95662 59.35050 230.86239 43.00283 1 0 A + 21.23340 60.82200 233.91148 43.57079 1 0 A + 21.50958 62.29350 236.95393 44.13751 1 0 A + 21.78520 63.76500 239.99018 44.70307 1 0 A + 22.29735 63.76500 242.77646 44.09377 1 0 A + 22.57890 65.23650 245.84208 44.65056 1 0 A + 22.85995 66.70800 248.90219 45.20634 1 0 A + 23.14053 68.17950 251.95717 45.76120 1 0 A + 23.42067 69.65100 255.00735 46.31518 1 0 A + 23.70040 71.12250 258.05306 46.86835 1 0 A + 24.19317 71.12250 256.50288 46.42816 1 0 A + 24.47832 72.59400 259.52617 46.97538 1 0 A + 24.76311 74.06550 262.54561 47.52192 1 0 A + 25.04757 75.53700 265.56150 48.06781 1 0 A + 25.33171 77.00850 268.57409 48.61310 1 0 A + 25.61557 78.48000 271.58364 49.15784 1 0 A + 26.08888 78.48000 262.14792 48.85224 1 0 A + 26.37771 79.95150 265.05020 49.39309 1 0 A + 26.66630 81.42300 267.94999 49.93348 1 0 A + 26.95466 82.89450 270.84749 50.47344 1 0 A + 27.24281 84.36600 273.74292 51.01301 1 0 A + 27.53077 85.83750 276.63644 51.55223 1 0 A + 27.98472 85.83750 273.09323 51.35352 1 0 A + 28.27725 87.30900 275.94799 51.89034 1 0 A + 28.56963 88.78050 278.80122 52.42687 1 0 A + 28.86187 90.25200 281.65307 52.96315 1 0 A + 29.15399 91.72350 284.50370 53.49919 1 0 A + 29.44599 93.19500 287.35324 54.03503 1 0 A + 29.88085 93.19500 286.52119 53.92091 1 0 A + 30.17707 94.66650 289.36153 54.45544 1 0 A + 30.47320 96.13800 292.20105 54.98982 1 0 A + 30.76925 97.60950 295.03987 55.52406 1 0 A + 31.06525 99.08100 297.87809 56.05819 1 0 A + 31.36119 100.55250 300.71584 56.59223 1 0 A + 31.77741 100.55250 299.98489 56.54478 1 0 A + 32.07724 102.02400 302.81536 57.07830 1 0 A + 32.37704 103.49550 305.64554 57.61177 1 0 A + 32.67682 104.96700 308.47553 58.14520 1 0 A + 32.97659 106.43850 311.30540 58.67861 1 0 A + 33.27636 107.91000 314.13525 59.21202 1 0 A + 29.95826 107.91000 753.91816 39.05311 1 0 A + 30.36640 109.38150 764.18937 39.58516 1 0 A + 30.77456 110.85300 774.46086 40.11722 1 0 A + 31.18273 112.32450 784.73278 40.64931 1 0 A + 31.59093 113.79600 795.00530 41.18143 1 0 A + 31.99915 115.26750 805.27855 41.71359 1 0 A + 30.02180 115.26750 852.98745 41.64349 1 0 A + 30.40483 116.73900 863.87026 42.17480 1 0 A + 30.78790 118.21050 874.75412 42.70615 1 0 A + 31.17101 119.68200 885.63916 43.23757 1 0 A + 31.55416 121.15350 896.52549 43.76905 1 0 A + 31.93737 122.62500 907.41321 44.30060 1 0 A + 25.74253 122.62500 889.14960 44.26850 1 0 A + 26.05145 124.09650 899.81967 44.79974 1 0 A + 26.36041 125.56800 910.49130 45.33105 1 0 A + 26.66942 127.03950 921.16458 45.86245 1 0 A + 26.97848 128.51100 931.83960 46.39393 1 0 A + 27.28760 129.98250 942.51642 46.92550 1 0 A + 26.28197 129.98250 932.15163 46.92318 1 0 A + 30.33011 131.45400 942.71290 47.45481 110 0 - + 38.47912 132.92550 953.27610 47.98655 110 0 - + 46.57053 134.39700 963.84128 48.51839 110 0 - + 54.62998 135.86850 974.40849 49.05032 110 6 - + 62.68313 137.34000 984.97779 49.58237 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7393,10 +7479,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 62.846 'Clay' - -4.00 65.212 'Peat' - -6.00 232.861 'Clay' - -13.00 224.050 'Sand' + 0.00 93.610 'Clay' + -4.00 53.482 'Peat' + -6.00 172.044 'Clay' + -13.00 98.529 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7411,7 +7497,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -7433,10 +7519,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -7463,7 +7549,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -7472,24 +7558,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -7500,17 +7587,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -7593,78 +7681,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 117.94548 58.86000 117.94548 24.09121 202 100 P - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 262.91521 69.16050 262.91521 21.84725 202 100 P - 271.20981 70.63200 271.20981 22.53650 202 100 P - 279.50442 72.10350 279.50442 23.22575 202 100 P - 282.10636 73.57500 287.79902 23.91500 110 98 - - 281.11759 73.57500 281.11759 23.91500 202 100 P - 228.08563 75.04650 289.21963 24.60425 110 79 - - 175.12117 76.51800 297.32167 25.29350 110 59 - - 123.06494 77.98950 305.42371 25.98275 110 40 - - 71.76888 79.46100 313.52575 26.67200 110 23 - - 21.08496 80.93250 321.62779 27.36125 110 0 - - 21.08496 80.93250 318.36273 27.36125 110 0 - - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00003 0.00000 0.00003 0.00000 202 100 P + 23.66976 1.47150 23.66976 0.59704 202 100 P + 47.33953 2.94300 47.33953 1.19408 202 100 P + 71.00929 4.41450 71.00929 1.79112 202 100 P + 94.67906 5.88600 94.67906 2.38817 202 100 P + 118.34882 7.35750 118.34882 2.98521 202 100 P + 48.63809 7.35750 48.63809 2.98521 202 100 P + 58.36571 8.82900 58.36571 3.58225 202 100 P + 68.09332 10.30050 68.09332 4.17929 202 100 P + 77.82094 11.77200 77.82094 4.77633 202 100 P + 87.54856 13.24350 87.54856 5.37337 202 100 P + 97.27618 14.71500 97.27618 5.97041 202 100 P + 69.37382 14.71500 69.37382 5.97041 202 100 P + 76.31120 16.18650 76.31120 6.56745 202 100 P + 83.24858 17.65800 83.24858 7.16450 202 100 P + 90.18597 19.12950 90.18597 7.76154 202 100 P + 97.12335 20.60100 97.12335 8.35858 202 100 P + 104.06073 22.07250 104.06073 8.95562 202 100 P + 86.10925 22.07250 86.10925 8.95562 202 100 P + 91.84986 23.54400 91.84986 9.55266 202 100 P + 97.59048 25.01550 97.59048 10.14970 202 100 P + 103.33110 26.48700 103.33110 10.74674 202 100 P + 109.07171 27.95850 109.07171 11.34379 202 100 P + 114.81233 29.43000 114.81233 11.94083 202 100 P + 101.50379 29.43000 101.50379 11.94083 202 100 P + 106.57898 30.90150 106.57898 12.53787 202 100 P + 111.65417 32.37300 111.65417 13.13491 202 100 P + 110.11555 33.84450 116.72936 13.73195 110 94 - + 106.64913 35.31600 121.80455 14.32899 110 88 - + 103.22106 36.78750 126.87974 14.92603 110 81 - + 103.22106 36.78750 116.28466 14.92603 110 89 - + 99.83870 38.25900 120.93605 15.52307 110 83 - + 96.50707 39.73050 125.58743 16.12012 110 77 - + 93.23096 41.20200 130.23882 16.71716 110 72 - + 90.01518 42.67350 134.89020 17.31420 110 67 - + 86.86454 44.14500 139.54159 17.91124 110 62 - + 86.86454 44.14500 130.73258 17.91124 110 66 - + 83.78326 45.61650 135.09033 18.50828 110 62 - + 80.77480 47.08800 139.44808 19.10532 110 58 - + 77.84285 48.55950 143.80584 19.70236 110 54 - + 74.99110 50.03100 148.16359 20.29941 110 51 - + 72.22322 51.50250 152.52134 20.89645 110 47 - + 72.22322 51.50250 144.97918 20.89645 110 50 - + 69.54273 52.97400 149.12144 21.49349 110 47 - + 66.95389 54.44550 153.26370 22.09053 110 44 - + 64.46151 55.91700 157.40596 22.68757 110 41 - + 62.07039 57.38850 161.54823 23.28461 110 38 - + 59.78533 58.86000 165.69049 23.88165 110 36 - + 194.92385 58.86000 306.18963 15.40546 110 64 - + 181.65023 60.33150 317.55426 15.97725 110 57 - + 168.95887 61.80300 328.91889 16.54905 110 51 - + 156.84749 63.27450 340.28352 17.12084 110 46 - + 145.31377 64.74600 351.64815 17.69263 110 41 - + 134.35543 66.21750 363.01278 18.26443 110 37 - + 134.35543 66.21750 336.73401 18.26443 110 40 - + 123.95787 67.68900 347.27595 18.83622 110 36 - + 114.08150 69.16050 357.81789 19.40802 110 32 - + 104.68645 70.63200 368.35983 19.97981 110 28 - + 95.73289 72.10350 378.90176 20.55160 110 25 - + 87.18094 73.57500 389.44370 21.12340 110 22 - + 87.18094 73.57500 380.66080 21.12340 110 23 - + 78.98554 75.04650 390.96499 21.69519 110 20 - + 71.09713 76.51800 401.26918 22.26699 110 18 - + 63.46909 77.98950 411.57337 22.83878 110 15 - + 56.05482 79.46100 421.87756 23.41057 110 13 - + 48.80770 80.93250 432.18175 23.98237 110 11 - + 48.80770 80.93250 427.69172 23.98237 110 11 - + 41.67886 82.40400 437.88886 24.55416 110 10 - + 34.63338 83.87550 448.08600 25.12596 110 8 - + 27.64561 85.34700 458.28314 25.69775 110 6 - + 20.68989 86.81850 468.48028 26.26954 110 0 - + 13.74058 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7679,8 +7767,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.694 'Clay' - -13.00 509.692 'Sand' + -6.00 500.177 'Clay' + -13.00 279.024 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7760,52 +7848,52 @@ Depth -6.90000 -7.00000 -7.00000 - -7.10000 - -7.20000 + -7.15000 -7.30000 - -7.40000 - -7.50000 - -7.50000 - -7.65714 - -7.81429 - -7.97143 - -8.12857 - -8.28571 - -8.28571 - -8.44286 - -8.60000 - -8.75714 - -8.91429 - -9.07143 - -9.07143 - -9.22857 - -9.38571 - -9.54286 + -7.45000 + -7.60000 + -7.75000 + -7.75000 + -7.90000 + -8.05000 + -8.20000 + -8.35000 + -8.50000 + -8.50000 + -8.65000 + -8.80000 + -8.95000 + -9.10000 + -9.25000 + -9.25000 + -9.40000 + -9.55000 -9.70000 - -9.85714 - -9.85714 - -10.01429 - -10.17143 - -10.32857 - -10.48571 - -10.64286 - -10.64286 - -10.80000 - -10.95714 - -11.11429 - -11.27143 - -11.42857 - -11.42857 - -11.58571 - -11.74286 - -11.90000 - -12.05714 - -12.21429 - -12.21429 - -12.37143 - -12.52857 - -12.68571 - -12.84286 + -9.85000 + -10.00000 + -10.00000 + -10.15000 + -10.30000 + -10.45000 + -10.60000 + -10.75000 + -10.75000 + -10.90000 + -11.05000 + -11.20000 + -11.35000 + -11.50000 + -11.50000 + -11.65000 + -11.80000 + -11.95000 + -12.10000 + -12.25000 + -12.25000 + -12.40000 + -12.55000 + -12.70000 + -12.85000 -13.00000 -13.00000 -13.15000 @@ -7837,7 +7925,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=5 +IterationCount=2 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -7852,7 +7940,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 143.74462 210000000.000 1 2 0 'Anchor' + -1.50000 142.65945 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7862,22 +7950,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 63.64 : Percentage mobilized resistance left - 11.76 : Percentage mobilized resistance right - 562.08 : Effective left - 312.61 : Effective right + 46.09 : Percentage mobilized resistance left + 9.78 : Percentage mobilized resistance right + 584.53 : Effective left + 332.86 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 883.17 : Max effective resistance left - 2657.66 : Max effective resistance right --10540.07 : Max moment left --25718.27 : Max moment right --6131.39 : Max mobilized moment left --2757.57 : Max mobilized moment right - 157.52 : Vertical force left - 74.19 : Vertical force right - 58.2 : Max mobilized moment percentage left - 10.7 : Max mobilized moment percentage right + 1268.23 : Max effective resistance left + 3402.22 : Max effective resistance right +-14781.58 : Max moment left +-32715.60 : Max moment right +-6258.91 : Max mobilized moment left +-2869.26 : Max mobilized moment right + 196.81 : Vertical force left + 95.18 : Vertical force right + 42.3 : Max mobilized moment percentage left + 8.8 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -7892,144 +7980,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01249 0.05939 51.34205 - 0.04456 1.02219 44.28473 - 0.38505 3.80269 37.22750 - 1.27370 8.34988 30.16947 - 2.95558 14.20850 23.10976 - 5.51922 19.72662 16.04749 - 5.54729 19.90780 16.04749 - 8.85478 23.94519 8.98095 - 12.65675 26.50058 1.90672 - 16.73257 27.60821 -5.17864 - 20.90428 28.01723 -12.27856 - 25.13853 28.44217 -19.39648 - 25.12430 -115.53101 -19.39648 - 13.58577 -115.23842 -24.15259 - 2.07688 -114.93802 -28.91392 - -9.40157 -114.62957 -33.67605 - -20.84876 -114.31293 -38.43458 - -32.26388 -113.98804 -43.18512 - -32.26514 -113.97760 -43.18512 - -47.42987 -113.47057 -49.49910 - -62.51790 -112.82708 -55.78072 - -77.51105 -112.04764 -62.01976 - -92.39126 -111.13296 -68.20599 - -107.14054 -110.08398 -74.32921 - -107.13997 -110.08187 -74.32921 - -121.72565 -108.68072 -80.37920 - -136.11548 -107.14422 -86.34615 - -150.29145 -105.47291 -92.22038 - -164.23563 -103.66755 -97.99225 - -177.93021 -101.72909 -103.65208 - -177.93019 -101.73031 -103.65208 - -191.33619 -99.33670 -109.19030 - -204.41388 -96.80585 -114.59798 - -217.14505 -94.13926 -119.86645 - -229.51172 -91.33853 -124.98702 - -241.49611 -88.40536 -129.95103 - -241.49615 -88.40641 -129.95103 - -253.02315 -84.47778 -134.74993 - -264.01804 -80.42500 -139.37620 - -274.46433 -76.24886 -143.82273 - -284.34562 -71.95011 -148.08240 - -293.64561 -67.52951 -152.14808 - -293.64561 -67.53019 -152.14808 - -302.33837 -62.84095 -156.01295 - -310.39783 -58.03078 -159.67156 - -317.80790 -53.10042 -163.11884 - -324.55263 -48.05057 -166.34977 - -330.61611 -42.88193 -169.35928 - -330.61611 -42.88260 -169.35928 - -335.97414 -37.46818 -172.14267 - -340.60238 -31.93574 -174.69685 - -344.48512 -26.28584 -177.01917 - -347.60674 -20.51897 -179.10698 - -349.95167 -14.63554 -180.95766 - -349.95168 -14.63614 -180.95766 - -351.21912 -10.70185 -182.18875 - -352.08985 -6.70178 -183.28506 - -352.55730 -2.63617 -184.24643 - -352.61491 1.49479 -185.07268 - -352.25616 5.69102 -185.76362 - -352.25616 5.69045 -185.76362 - -351.47083 10.02729 -186.31919 - -350.24850 14.43018 -186.73990 - -348.58258 18.89922 -187.02638 - -346.46645 23.43462 -187.17928 - -343.89344 28.03665 -187.19922 - -343.89344 28.03607 -187.19922 - -340.85494 32.73367 -187.08700 - -337.34672 37.43066 -186.84399 - -333.36881 42.12757 -186.47170 - -328.92119 46.82501 -185.97167 - -324.00377 51.52368 -185.34543 - -324.00364 51.52221 -185.34543 - -315.34118 58.58476 -184.11023 - -305.63602 64.79339 -182.57624 - -295.02211 70.15124 -180.75344 - -283.63288 74.66148 -178.65181 - -271.60130 78.32732 -176.28134 - -271.60132 78.32526 -176.28134 - -259.00643 81.85168 -173.65284 - -245.91469 84.64928 -170.77896 - -232.44040 86.72091 -167.67239 - -218.69743 88.06927 -164.34585 - -204.79924 88.69691 -160.81203 - -204.79925 88.69522 -160.81203 - -190.69600 90.71342 -157.08390 - -176.31668 92.20929 -153.17510 - -161.74319 93.18498 -149.09940 - -147.05711 93.64254 -144.87057 - -132.33971 93.58390 -140.50237 - -132.33972 93.58237 -140.50237 - -117.55946 94.45937 -136.00869 - -102.67463 94.91367 -131.40364 - -87.75151 94.94694 -126.70134 - -72.85613 94.56077 -121.91589 - -58.05430 93.75669 -117.06138 - -58.05430 93.75522 -117.06138 - -43.32837 93.60482 -112.15194 - -28.65476 93.08953 -107.20149 - -14.09070 92.21071 -102.22378 - 0.30678 90.96966 -97.23259 - 14.48086 89.36767 -92.24167 - 14.48084 89.36640 -92.24167 - 28.44061 88.24880 -87.26473 - 42.19907 86.80466 -82.31477 - 55.70503 85.03516 -77.40456 - 68.90743 82.94143 -72.54688 - 81.75541 80.52458 -67.75449 - 81.76284 80.49125 -67.75449 - 94.24231 78.28823 -63.03999 - 106.35198 75.78479 -58.41483 - 118.04471 72.98195 -53.89006 - 129.27353 69.88068 -49.47675 - 140.00165 66.67343 -45.18593 - 139.99060 66.51898 -45.18593 - 148.76097 50.26731 -41.21545 - 155.02522 33.10412 -37.37364 - 158.64663 15.02940 -33.66354 - 159.48847 -3.95683 -30.08822 - 157.41400 -23.85459 -26.65074 - 157.41262 -24.91657 -26.65074 - 152.30762 -43.28855 -23.35177 - 144.48747 -60.43213 -20.18430 - 134.34099 -74.31557 -17.13980 - 122.35289 -84.99728 -14.20974 - 108.99754 -92.56428 -11.38562 - 109.01256 -92.64169 -11.38562 - 94.71064 -97.57842 -8.65664 - 79.87855 -99.72487 -6.00928 - 64.92874 -99.16006 -3.43086 - 50.30183 -95.16921 -0.90869 - 36.61253 -86.48735 1.56988 - 36.56714 -86.80147 1.56988 - 24.42986 -74.59521 4.01836 - 14.31818 -59.79700 6.44605 - 6.61943 -42.42528 8.85942 - 1.71869 -22.49168 11.26492 - -0.00023 -0.00110 13.66899 + -0.01256 0.05602 50.37504 + 0.03687 0.87660 43.23304 + 0.33461 3.38091 36.09113 + 1.14031 7.66845 28.94850 + 2.69903 13.23378 21.80434 + 5.09050 18.40023 14.65784 + 5.11950 18.58747 14.65784 + 8.20051 22.24027 7.50739 + 11.71584 24.37824 0.34982 + 15.45048 25.24615 -6.81803 + 19.26527 25.62572 -13.99931 + 23.14061 26.05372 -21.19719 + 23.12588 -116.84236 -21.19719 + 11.45710 -116.52955 -26.00568 + -0.17928 -116.19430 -30.81857 + -11.78100 -115.83629 -35.63141 + -23.34578 -115.45531 -40.43974 + -34.87129 -115.05120 -45.23910 + -34.87255 -115.04081 -45.23910 + -50.17075 -114.40492 -51.61662 + -65.37328 -113.60585 -57.95990 + -80.45841 -112.64394 -64.25867 + -95.40445 -111.51976 -70.50264 + -110.18983 -110.23408 -76.68154 + -110.18926 -110.23203 -76.68154 + -124.79150 -108.77517 -82.78511 + -139.18896 -107.16053 -88.80355 + -153.36064 -105.38856 -94.72719 + -167.28562 -103.45997 -100.54637 + -180.94305 -101.37566 -106.25144 + -180.94303 -101.37687 -106.25144 + -194.29093 -98.81479 -111.83282 + -207.28654 -96.09286 -117.28165 + -219.90866 -93.21262 -122.58932 + -232.13628 -90.17577 -127.74724 + -243.94865 -86.98414 -132.74680 + -243.94869 -86.98514 -132.74680 + -255.29098 -83.12674 -137.57956 + -266.10987 -79.13449 -142.23815 + -276.38760 -75.00926 -146.71556 + -286.10647 -70.75193 -151.00480 + -295.24895 -66.36341 -155.09886 + -295.24895 -66.36402 -155.09886 + -303.78784 -61.69767 -158.99101 + -311.69588 -56.90136 -162.67590 + -318.95580 -51.97603 -166.14859 + -325.55046 -46.92259 -169.40414 + -331.46284 -41.74195 -172.43759 + -331.46285 -41.74252 -172.43759 + -336.66761 -36.30794 -175.24434 + -341.13937 -30.74745 -177.82141 + -344.86137 -25.06186 -180.16625 + -347.81701 -19.25196 -182.27634 + -349.98974 -13.31848 -184.14914 + -349.98975 -13.31894 -184.14914 + -351.10221 -8.91807 -185.39679 + -351.77091 -4.44366 -186.50971 + -351.98851 0.10368 -187.48782 + -351.74776 4.72337 -188.33104 + -351.04145 9.41489 -189.03929 + -351.04145 9.41452 -189.03929 + -349.85868 14.25278 -189.61262 + -348.18850 19.16274 -190.05169 + -346.02376 24.14402 -190.35735 + -343.35733 29.19627 -190.53042 + -340.18215 34.31919 -190.57173 + -340.18242 34.32361 -190.57173 + -334.46238 41.82773 -190.38881 + -327.69488 48.11626 -189.91718 + -320.11435 52.66801 -189.16326 + -311.98134 55.48246 -188.13347 + -303.55648 56.55947 -186.83421 + -303.55643 56.55860 -186.83421 + -294.69548 61.46339 -185.27226 + -285.15462 65.62416 -183.45590 + -275.04540 69.04166 -181.39381 + -264.47924 71.71682 -179.09465 + -253.56741 73.65079 -176.56710 + -253.56740 73.64958 -176.56710 + -242.26050 77.01922 -173.82018 + -230.48858 79.84996 -170.86413 + -218.33238 82.14334 -167.70939 + -205.87237 83.90092 -164.36641 + -193.18881 85.12433 -160.84566 + -193.18881 85.12302 -160.84566 + -180.25846 87.20737 -157.15785 + -167.04884 88.84691 -153.31443 + -153.62654 90.04331 -149.32696 + -140.05792 90.79824 -145.20699 + -126.40906 91.11331 -140.96608 + -126.40906 91.11196 -140.96608 + -112.66941 92.01850 -136.61593 + -98.82295 92.53631 -132.16854 + -84.92788 92.66690 -127.63586 + -71.04217 92.41171 -123.02986 + -57.22359 91.77209 -118.36252 + -57.22359 91.77080 -118.36252 + -43.46906 91.56427 -113.64583 + -29.77187 91.00652 -108.89165 + -16.18461 90.09874 -104.11167 + -2.75970 88.84206 -99.31760 + 10.45062 87.23757 -94.52114 + 10.45060 87.23650 -94.52114 + 23.44398 85.95440 -89.73393 + 36.22069 84.34768 -84.96699 + 48.73210 82.41728 -80.23111 + 60.92974 80.16415 -75.53706 + 72.76525 77.58917 -70.89561 + 72.76522 77.58858 -70.89561 + 84.22117 75.10639 -66.31738 + 95.28184 72.31825 -61.81191 + 105.90140 69.22510 -57.38835 + 116.03417 65.82792 -53.05582 + 125.63462 62.12772 -48.82349 + 125.63749 62.10697 -48.82349 + 133.96540 48.78448 -44.70108 + 140.22879 34.58103 -40.69452 + 144.29596 19.50254 -36.80727 + 146.03610 3.55493 -33.04276 + 145.31928 -13.25587 -29.40445 + 145.37971 -13.70005 -29.40445 + 142.11316 -29.98853 -25.89408 + 136.34557 -47.02849 -22.50650 + 128.07180 -62.72463 -19.23474 + 117.69454 -75.09376 -16.07184 + 105.70460 -84.24437 -13.01084 + 105.70040 -84.43147 -13.01084 + 92.50316 -91.02157 -10.04235 + 78.54491 -94.59196 -7.15358 + 64.27276 -95.21854 -4.33244 + 50.13335 -92.76512 -1.56683 + 36.66742 -85.82789 1.15534 + 36.58884 -85.73011 1.15534 + 24.54343 -74.34578 3.84722 + 14.43493 -59.96494 6.51825 + 6.69435 -42.77613 9.17487 + 1.74191 -22.79088 11.82357 + -0.00334 -0.01401 14.47082 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8065,10 +8153,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8105,29 +8193,29 @@ Q max [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 - -0.75000 59.69800 0.00000 36.46802 0.00000 - -1.50000 60.18300 0.00000 92.73866 0.00000 - -2.00000 60.43200 0.00000 141.23029 0.00000 - -2.66667 60.66400 0.00000 214.94813 0.00000 - -3.33333 60.82000 0.00000 295.09351 0.00000 - -4.00000 60.93800 0.00000 381.66752 0.00000 - -4.66667 60.40000 36.15500 444.66104 9.35932 - -5.33333 59.94900 36.00500 508.57355 21.72461 - -6.00000 59.56600 35.88800 573.44117 34.35114 - -6.50000 59.79300 36.09500 645.54668 38.95285 - -7.00000 59.98400 36.28500 721.24428 44.29966 - -7.50000 60.14900 36.46100 800.53878 50.39193 - -8.28571 60.36800 36.71200 932.41935 61.47235 - -9.07143 60.54900 36.93700 1073.19877 74.39543 - -9.85714 60.70100 37.14100 1222.88248 89.16209 - -10.64286 60.83300 37.32700 1381.47404 105.77317 - -11.42857 60.94700 37.49700 1548.97583 124.22935 - -12.21429 61.04800 37.65300 1725.38951 144.53126 - -13.00000 61.13700 37.79800 1910.71625 166.67943 - -13.75000 65.30100 37.48500 2370.96294 185.62296 - -14.50000 66.91700 37.20300 2826.17604 206.03372 - -15.25000 67.89600 36.94900 3299.55359 227.90969 - -16.00000 68.57000 36.72000 3796.65211 251.24887 + -0.75000 62.80000 0.00000 51.73520 0.00000 + -1.50000 63.20100 0.00000 128.46863 0.00000 + -2.00000 63.40800 0.00000 193.48307 0.00000 + -2.66667 63.60100 0.00000 291.60988 0.00000 + -3.33333 63.73000 0.00000 397.85135 0.00000 + -4.00000 63.82900 0.00000 512.20880 0.00000 + -4.66667 63.30100 0.00000 588.18716 0.00000 + -5.33333 62.85300 33.33800 665.16877 2.16234 + -6.00000 62.46500 33.27000 743.21046 12.26780 + -6.50000 62.68400 33.46900 838.10087 14.27468 + -7.00000 62.86800 33.65300 937.51504 16.91237 + -7.75000 63.09500 33.90700 1095.13700 22.05281 + -8.50000 63.28000 34.13700 1262.97627 28.61523 + -9.25000 63.43400 34.34700 1441.04486 36.60093 + -10.00000 63.56400 34.54000 1629.35049 46.01101 + -10.75000 63.67700 34.71700 1827.89837 56.84642 + -11.50000 63.77600 34.88200 2036.69210 69.10799 + -12.25000 63.86200 35.03500 2255.73424 82.79643 + -13.00000 63.94000 35.17700 2485.02665 97.91239 + -13.75000 67.08800 34.80800 3057.07059 112.40605 + -14.50000 68.43300 34.47400 3631.33324 128.05152 + -15.25000 69.26500 34.17200 4230.40390 144.84609 + -16.00000 69.84500 33.90000 4860.31535 162.78699 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -8144,29 +8232,29 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 5.62500 48.62403 0.00000 0.70763 0.00000 8.64427 - -1.12500 16.87500 75.02751 0.00000 0.70763 0.00000 4.44607 - -1.75000 26.25000 96.98326 0.00000 0.70763 0.00000 3.69460 - -2.33333 32.06333 110.57676 0.00000 0.70763 0.00000 3.44870 - -3.00000 36.19000 120.21807 0.00000 0.70763 0.00000 3.32186 - -3.66667 40.31667 129.86101 0.00000 0.70763 0.00000 3.22103 - -4.33333 42.77667 94.49028 14.03898 0.65798 0.32819 2.20892 - -5.00000 43.57000 95.86876 18.54794 0.65798 0.42570 2.20034 - -5.66667 44.36333 97.30144 18.93980 0.65798 0.42692 2.19329 - -6.25000 46.30750 144.21101 9.20341 0.70763 0.19875 3.11420 - -6.75000 49.40250 151.39521 10.69363 0.70763 0.21646 3.06453 - -7.25000 52.49750 158.58900 12.18453 0.70763 0.23210 3.02089 - -7.89286 56.47679 167.84799 14.10235 0.70763 0.24970 2.97198 - -8.67857 61.34036 179.17380 16.44755 0.70763 0.26814 2.92098 - -9.46429 66.20393 190.50654 18.79394 0.70763 0.28388 2.87757 - -10.25000 71.06750 201.84380 21.14137 0.70763 0.29748 2.84017 - -11.03571 75.93107 213.18410 23.48969 0.70763 0.30936 2.80760 - -11.82143 80.79464 224.52650 25.83879 0.70763 0.31981 2.77898 - -12.60714 85.65821 235.87039 28.18858 0.70763 0.32908 2.75362 - -13.37500 91.53625 613.66225 25.25804 0.50000 0.27593 6.70404 - -14.12500 98.42875 606.95080 27.21435 0.50000 0.27649 6.16640 - -14.87500 105.32125 631.17007 29.16797 0.50000 0.27694 5.99281 - -15.62500 112.21375 662.79803 31.11891 0.50000 0.27732 5.90657 + -0.37500 5.62500 68.98027 0.00000 0.64302 0.00000 12.26316 + -1.12500 16.87500 102.31124 0.00000 0.64302 0.00000 6.06289 + -1.75000 26.25000 130.02887 0.00000 0.64302 0.00000 4.95348 + -2.33333 32.06333 147.19022 0.00000 0.64302 0.00000 4.59061 + -3.00000 36.19000 159.36220 0.00000 0.64302 0.00000 4.40349 + -3.66667 40.31667 171.53617 0.00000 0.64302 0.00000 4.25472 + -4.33333 42.77667 113.96754 0.00000 0.58588 0.00000 2.66425 + -5.00000 43.57000 115.47243 3.24351 0.58588 0.07444 2.65027 + -5.66667 44.36333 117.06252 15.15820 0.58588 0.34168 2.63872 + -6.25000 46.30750 189.78082 4.01374 0.64302 0.08668 4.09827 + -6.75000 49.40250 198.82835 5.27539 0.64302 0.10678 4.02466 + -7.37500 53.27125 210.16261 6.85392 0.64302 0.12866 3.94514 + -8.12500 57.91375 223.78570 8.74990 0.64302 0.15109 3.86412 + -8.87500 62.55625 237.42478 10.64760 0.64302 0.17021 3.79538 + -9.62500 67.19875 251.07418 12.54677 0.64302 0.18671 3.73629 + -10.37500 71.84125 264.73051 14.44721 0.64302 0.20110 3.68494 + -11.12500 76.48375 278.39164 16.34876 0.64302 0.21375 3.63988 + -11.87500 81.12625 292.05618 18.25126 0.64302 0.22497 3.60002 + -12.62500 85.76875 305.72321 20.15461 0.64302 0.23499 3.56451 + -13.37500 91.53625 762.72526 19.32487 0.41479 0.21112 8.33249 + -14.12500 98.42875 765.68353 20.86064 0.41479 0.21194 7.77906 + -14.87500 105.32125 798.76088 22.39276 0.41479 0.21261 7.58404 + -15.62500 112.21375 839.88193 23.92120 0.41479 0.21318 7.48466 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8183,144 +8271,144 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00001 0.00000 0.00001 0.00000 202 100 P - 18.33896 0.00000 19.44961 1.59216 110 94 - - 34.62293 0.00000 38.89922 3.18433 110 89 - - 51.99021 0.00000 58.34883 4.77649 110 89 - - 59.60258 0.00000 77.79845 6.36865 110 77 - - 45.50458 0.00000 97.24806 7.96082 110 47 - - 45.50458 0.00000 50.01834 7.96082 110 91 - - 31.39804 0.00000 60.02201 9.55298 110 52 - - 17.27611 0.00000 70.02568 11.14515 110 25 - - 3.82169 0.00000 80.02935 12.73731 110 0 - - 3.96903 0.00000 90.03302 14.32947 110 0 - - 4.12506 0.00000 100.03668 15.92164 110 0 - - 4.12506 0.00000 83.12851 15.92164 110 0 - - 4.23473 0.00000 88.67041 16.98308 110 0 - - 4.34826 0.00000 94.21231 18.04452 110 0 - - 4.46450 0.00000 99.75421 19.10596 110 0 - - 4.58229 0.00000 105.29611 20.16741 110 0 - - 4.70047 0.00000 110.83802 21.22885 110 0 - - 4.70047 0.00000 103.46095 21.22885 110 0 - - 4.85652 1.30800 106.30727 21.81288 110 0 - - 5.00843 2.61600 109.15360 22.39691 110 0 - - 5.15385 3.92400 111.99992 22.98094 110 0 - - 5.29043 5.23200 114.84625 23.56497 110 0 - - 5.41582 6.54000 117.69258 24.14899 110 0 - - 7.74618 6.54000 113.36397 24.14899 110 0 - - 7.89060 7.84800 116.10561 24.73302 110 0 - - 8.03041 9.15600 118.84725 25.31705 110 0 - - 8.16329 10.46400 121.58890 25.90108 110 0 - - 8.28700 11.77200 124.33054 26.48511 110 0 - - 8.39937 13.08000 127.07218 27.06914 110 0 - - 11.82668 13.08000 123.21496 27.06914 110 0 - - 11.99689 14.38800 125.87338 27.65317 110 0 - - 12.15158 15.69600 128.53180 28.23720 110 0 - - 12.28963 17.00400 131.19022 28.82123 110 0 - - 12.41000 18.31200 133.84864 29.40526 110 0 - - 12.51166 19.62000 136.50706 29.98929 110 0 - - 21.80553 19.62000 93.61408 27.88519 110 0 - - 21.83159 20.92800 93.96456 27.98959 110 0 - - 21.84953 22.23600 94.31504 28.09399 110 0 - - 21.85929 23.54400 94.66552 28.19838 110 0 - - 21.86086 24.85200 95.01601 28.30278 110 0 - - 21.85419 26.16000 95.36649 28.40718 110 0 - - 23.43199 26.16000 94.99596 28.40718 110 0 - - 23.42373 27.46800 95.34508 28.51158 110 0 - - 23.40738 28.77600 95.69420 28.61598 110 0 - - 23.38325 30.08400 96.04332 28.72038 110 0 - - 23.35168 31.39200 96.39244 28.82478 110 0 - - 23.31303 32.70000 96.74156 28.92918 110 0 - - 24.67788 32.70000 96.43144 28.92918 110 0 - - 24.63741 34.00800 96.77944 29.03358 110 0 - - 24.59074 35.31600 97.12744 29.13798 110 0 - - 24.53852 36.62400 97.47544 29.24238 110 0 - - 24.48141 37.93200 97.82344 29.34678 110 0 - - 24.42007 39.24000 98.17145 29.45118 110 0 - - 16.49345 39.24000 139.39178 31.67344 110 0 - - 16.45401 40.22100 141.31947 32.11146 110 0 - - 16.41069 41.20200 143.24716 32.54949 110 0 - - 16.36444 42.18300 145.17485 32.98751 110 0 - - 16.31621 43.16400 147.10255 33.42553 110 0 - - 16.26694 44.14500 149.03024 33.86355 110 0 - - 17.33836 44.14500 146.65286 33.86355 110 0 - - 17.30036 45.12600 148.54980 34.30157 110 0 - - 17.26339 46.10700 150.44674 34.73960 110 0 - - 17.22863 47.08800 152.34368 35.17762 110 0 - - 17.19721 48.06900 154.24062 35.61564 110 0 - - 17.17031 49.05000 156.13756 36.05366 110 0 - - 18.06460 49.05000 153.91418 36.05366 110 0 - - 18.05240 50.03100 155.78411 36.49168 110 0 - - 18.04726 51.01200 157.65404 36.92971 110 0 - - 18.05026 51.99300 159.52396 37.36773 110 0 - - 18.06247 52.97400 161.39389 37.80575 110 0 - - 18.08497 53.95500 163.26382 38.24377 110 0 - - 19.04366 53.95500 160.62077 38.24377 110 0 - - 19.11593 55.49657 163.51166 38.93209 110 0 - - 19.21670 57.03814 166.40255 39.62041 110 0 - - 19.34619 58.57971 169.29344 40.30873 110 0 - - 19.50465 60.12129 172.18433 40.99705 110 0 - - 19.69231 61.66286 175.07522 41.68537 110 0 - - 20.66939 61.66286 172.07061 41.68537 110 0 - - 20.89872 63.20443 174.91189 42.37369 110 0 - - 21.15468 64.74600 177.75316 43.06201 110 0 - - 21.43590 66.28757 180.59444 43.75033 110 0 - - 21.74098 67.82914 183.43572 44.43865 110 0 - - 22.06854 69.37071 186.27699 45.12697 110 0 - - 22.84620 69.37071 183.50891 45.12697 110 0 - - 23.20470 70.91229 186.30796 45.81529 110 0 - - 23.58327 72.45386 189.10702 46.50361 110 0 - - 23.98092 73.99543 191.90607 47.19193 110 0 - - 24.39663 75.53700 194.70513 47.88025 110 0 - - 24.82939 77.07857 197.50418 48.56857 110 0 - - 25.44626 77.07857 194.93712 48.56857 110 0 - - 25.90239 78.62014 197.69979 49.25689 110 0 - - 26.37397 80.16171 200.46246 49.94521 110 0 - - 26.86035 81.70329 203.22514 50.63353 110 0 - - 27.36090 83.24486 205.98781 51.32185 110 0 - - 27.87497 84.78643 208.75049 52.01017 110 0 - - 28.36203 84.78643 206.35662 52.01017 110 0 - - 28.89442 86.32800 209.08761 52.69849 110 0 - - 29.43936 87.86957 211.81860 53.38681 110 0 - - 29.99645 89.41114 214.54960 54.07513 110 0 - - 30.56531 90.95271 217.28059 54.76345 110 0 - - 31.14554 92.49429 220.01158 55.45178 110 0 - - 31.49694 92.49429 217.76862 55.45178 110 0 - - 32.09188 94.03586 220.47178 56.14010 110 0 - - 32.69757 95.57743 223.17493 56.82842 110 0 - - 33.31375 97.11900 225.87808 57.51674 110 0 - - 33.94012 98.66057 228.58123 58.20506 110 0 - - 34.57641 100.20214 231.28438 58.89338 110 0 - - 33.38651 100.20214 229.17417 58.89338 110 0 - - 34.02067 101.74371 231.85266 59.58170 110 0 - - 34.66418 103.28529 234.53115 60.27002 110 0 - - 35.31668 104.82686 237.20964 60.95834 110 0 - - 35.97784 106.36843 239.88813 61.64666 110 0 - - 36.64730 107.91000 242.56661 62.33498 110 0 - - 24.30710 107.91000 590.55847 44.04500 1 0 A - 24.68747 109.38150 599.79998 44.73425 1 0 A - 25.06785 110.85300 609.04150 45.42350 1 0 A - 25.44822 112.32450 618.28301 46.11275 1 0 A - 25.82860 113.79600 627.52452 46.80200 1 0 A - 26.20898 115.26750 636.76604 47.49125 1 0 A - 26.26150 115.26750 585.69985 47.49125 1 0 A - 26.64264 116.73900 594.20023 48.18050 1 0 A - 27.02378 118.21050 602.70061 48.86975 1 0 A - 28.05442 119.68200 611.20099 49.55900 110 0 - - 29.64201 121.15350 619.70137 50.24825 110 0 - - 31.21902 122.62500 628.20175 50.93750 110 0 - - 28.21355 122.62500 610.51735 50.93750 1 0 A - 28.59532 124.09650 618.77844 51.62675 1 0 A - 28.97708 125.56800 627.03952 52.31600 1 0 A - 29.35885 127.03950 635.30061 53.00525 1 0 A - 44.60756 128.51100 643.56170 53.69450 110 0 - - 70.08260 129.98250 651.82278 54.38375 110 11 - - 70.08260 129.98250 642.44252 54.38375 110 11 - - 95.25656 131.45400 650.58472 55.07300 110 15 - - 120.22276 132.92550 658.72693 55.76225 110 18 - - 145.04570 134.39700 666.86913 56.45150 110 22 - - 169.78991 135.86850 675.01133 57.14075 110 25 - - 194.51991 137.34000 683.15353 57.83000 110 28 - + 0.00000 0.00000 0.00001 0.00000 1 0 A + 15.62994 0.00000 27.59211 1.44679 110 57 - + 32.07129 0.00000 55.18421 2.89358 110 58 - + 49.59610 0.00000 82.77632 4.34037 110 60 - + 56.41024 0.00000 110.36843 5.78715 110 51 - + 41.99841 0.00000 137.96054 7.23394 110 30 - + 41.99841 0.00000 68.20749 7.23394 110 62 - + 27.57867 0.00000 81.84899 8.68073 110 34 - + 13.14469 0.00000 95.49049 10.12752 110 14 - + 3.38695 0.00000 109.13199 11.57431 110 0 - + 3.84286 0.00000 122.77349 13.02110 110 0 - + 4.30962 0.00000 136.41499 14.46788 110 0 - + 4.30962 0.00000 111.45332 14.46788 110 0 - + 4.62779 0.00000 118.88354 15.43241 110 0 - + 4.95092 0.00000 126.31376 16.39693 110 0 - + 5.27785 0.00000 133.74398 17.36146 110 0 - + 5.60740 0.00000 141.17421 18.32599 110 0 - + 5.93841 0.00000 148.60443 19.29051 110 0 - + 5.93841 0.00000 137.71826 19.29051 110 0 - + 6.37987 1.30800 141.50704 19.82121 110 0 - + 6.81901 2.61600 145.29582 20.35192 110 0 - + 7.25334 3.92400 149.08461 20.88262 110 0 - + 7.68040 5.23200 152.87339 21.41333 110 0 - + 8.09769 6.54000 156.66217 21.94403 110 0 - + 8.22308 6.54000 150.27634 21.94403 110 0 - + 8.60736 7.84800 153.91069 22.47473 110 0 - + 8.98805 9.15600 157.54503 23.00544 110 0 - + 9.36258 10.46400 161.17938 23.53614 110 0 - + 9.72845 11.77200 164.81372 24.06684 110 0 - + 10.08326 13.08000 168.44806 24.59755 110 0 - + 13.51056 13.08000 162.75727 24.59755 110 0 - + 13.92321 14.38800 166.26883 25.12825 110 0 - + 14.31997 15.69600 169.78039 25.65895 110 0 - + 14.69936 17.00400 173.29196 26.18966 110 0 - + 15.05993 18.31200 176.80352 26.72036 110 0 - + 15.40024 19.62000 180.31508 27.25106 110 0 - + 21.00075 19.62000 112.91072 24.82969 110 0 - + 21.13137 20.92800 113.33345 24.92265 110 0 - + 21.25285 22.23600 113.75618 25.01561 110 0 - + 21.36496 23.54400 114.17890 25.10857 110 0 - + 21.46749 24.85200 114.60163 25.20153 110 0 - + 21.56020 26.16000 115.02436 25.29449 110 0 - + 23.13800 26.16000 114.42115 25.29449 110 0 - + 23.22737 27.46800 114.84166 25.38745 110 0 - + 23.30669 28.77600 115.26217 25.48041 110 0 - + 23.37611 30.08400 115.68268 25.57337 110 0 - + 23.43580 31.39200 116.10319 25.66633 110 0 - + 23.48591 32.70000 116.52370 25.75929 110 0 - + 24.85077 32.70000 116.01583 25.75929 110 0 - + 24.89641 34.00800 116.43451 25.85225 110 0 - + 24.93299 35.31600 116.85318 25.94521 110 0 - + 24.96101 36.62400 117.27186 26.03817 110 0 - + 24.98091 37.93200 117.69054 26.13113 110 0 - + 24.99319 39.24000 118.10921 26.22409 110 0 - + 23.10196 39.24000 183.43874 28.78144 110 0 - + 23.17615 40.22100 185.97557 29.17947 110 0 - + 23.24119 41.20200 188.51241 29.57750 110 0 - + 23.29774 42.18300 191.04924 29.97553 110 0 - + 23.34644 43.16400 193.58607 30.37355 110 0 - + 23.38794 44.14500 196.12290 30.77158 110 0 - + 24.45936 44.14500 192.60019 30.77158 110 0 - + 24.50565 45.12600 195.09146 31.16961 110 0 - + 24.54603 46.10700 197.58272 31.56764 110 0 - + 24.58119 47.08800 200.07399 31.96566 110 0 - + 24.61180 48.06900 202.56525 32.36369 110 0 - + 24.63852 49.05000 205.05652 32.76172 110 0 - + 25.72647 49.05000 201.00495 32.76172 110 0 - + 25.77707 50.52150 204.66801 33.35876 110 0 - + 25.82271 51.99300 208.33107 33.95580 110 0 - + 25.86527 53.46450 211.99414 34.55284 110 0 - + 25.90662 54.93600 215.65720 35.14988 110 0 - + 25.94862 56.40750 219.32027 35.74693 110 0 - + 27.02615 56.40750 214.81611 35.74693 110 0 - + 27.08517 57.87900 218.40395 36.34397 110 0 - + 27.14754 59.35050 221.99178 36.94101 110 0 - + 27.21418 60.82200 225.57962 37.53805 110 0 - + 27.28603 62.29350 229.16745 38.13509 110 0 - + 27.36403 63.76500 232.75529 38.73213 110 0 - + 28.24034 63.76500 228.61475 38.73213 110 0 - + 28.33634 65.23650 232.13876 39.32917 110 0 - + 28.43960 66.70800 235.66278 39.92621 110 0 - + 28.55038 68.17950 239.18679 40.52326 110 0 - + 28.66898 69.65100 242.71080 41.12030 110 0 - + 28.79568 71.12250 246.23481 41.71734 110 0 - + 29.49993 71.12250 242.40131 41.71734 110 0 - + 29.64320 72.59400 245.87046 42.31438 110 0 - + 29.79463 74.06550 249.33961 42.91142 110 0 - + 29.95411 75.53700 252.80875 43.50846 110 0 - + 30.12152 77.00850 256.27790 44.10550 110 0 - + 30.29675 78.48000 259.74705 44.70255 110 0 - + 30.86086 78.48000 256.17685 44.70255 110 0 - + 31.04997 79.95150 259.59831 45.29959 110 0 - + 31.24642 81.42300 263.01977 45.89663 110 0 - + 31.44991 82.89450 266.44124 46.49367 110 0 - + 31.66017 84.36600 269.86270 47.09071 110 0 - + 31.87689 85.83750 273.28417 47.68775 110 0 - + 32.32673 85.83750 269.94257 47.68775 110 0 - + 32.55431 87.30900 273.32219 48.28479 110 0 - + 32.78773 88.78050 276.70182 48.88183 110 0 - + 33.02673 90.25200 280.08145 49.47888 110 0 - + 33.27102 91.72350 283.46108 50.07592 110 0 - + 33.52034 93.19500 286.84071 50.67296 110 0 - + 33.82431 93.19500 283.69963 50.67296 110 0 - + 34.08139 94.66650 287.04225 51.27000 110 0 - + 34.34307 96.13800 290.38487 51.86704 110 0 - + 34.60924 97.60950 293.72749 52.46408 110 0 - + 34.87981 99.08100 297.07011 53.06112 110 0 - + 35.15466 100.55250 300.41273 53.65817 110 0 - + 33.91693 100.55250 297.44910 53.65817 110 0 - + 34.18433 102.02400 300.75875 54.25521 110 0 - + 34.45607 103.49550 304.06839 54.85225 110 0 - + 34.73237 104.96700 307.37804 55.44929 110 0 - + 35.01342 106.43850 310.68768 56.04633 110 0 - + 35.29942 107.91000 313.99732 56.64337 110 0 - + 32.15155 107.91000 734.00940 36.53923 110 0 - + 32.06422 109.38150 745.49575 37.11102 110 0 - + 32.00503 110.85300 756.98209 37.68281 110 0 - + 31.97402 112.32450 768.46843 38.25461 110 0 - + 31.97124 113.79600 779.95478 38.82640 110 0 - + 31.99674 115.26750 791.44112 39.39820 110 0 - + 29.75191 115.26750 738.87493 39.39820 110 0 - + 29.77635 116.73900 749.59837 39.96999 110 0 - + 29.82632 118.21050 760.32181 40.54178 110 0 - + 29.89984 119.68200 771.04525 41.11358 110 0 - + 29.99490 121.15350 781.76869 41.68537 110 0 - + 30.10952 122.62500 792.49213 42.25717 110 0 - + 24.84373 122.62500 772.62437 42.25717 110 0 - + 24.88099 124.09650 783.07897 42.82896 110 0 - + 24.93319 125.56800 793.53357 43.40075 110 0 - + 24.99794 127.03950 803.98818 43.97255 110 0 - + 28.87604 128.51100 814.44278 44.54434 110 0 - + 56.66951 129.98250 824.89738 45.11614 110 7 - + 56.66951 129.98250 814.08791 45.11614 110 7 - + 84.16016 131.45400 824.40552 45.68793 110 10 - + 111.44217 132.92550 834.72313 46.25972 110 13 - + 138.58023 134.39700 845.04073 46.83152 110 16 - + 165.63905 135.86850 855.35834 47.40331 110 19 - + 192.68331 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8333,10 +8421,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 59.403 'Clay' - -4.00 46.529 'Peat' - -6.00 174.194 'Clay' - -13.00 166.454 'Sand' + 0.00 59.891 'Clay' + -4.00 46.380 'Peat' + -6.00 207.480 'Clay' + -13.00 161.769 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8351,7 +8439,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -7.50 + 0.00 -7.00 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] New Profile @@ -8373,10 +8461,10 @@ Coeff. of passive earth pressure Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -4.00 0.00 0.00 10.00 11.00 2.00 0.00 0.00 20.00 0.49 0.66 2.04 'Peat' - -6.00 0.00 0.00 15.00 16.00 10.00 11.00 11.00 17.00 0.48 0.71 2.33 'Clay' - -13.00 0.00 0.00 17.00 19.00 0.00 20.00 20.00 30.00 0.29 0.50 4.63 'Sand' + 0.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -4.00 0.00 0.00 10.00 11.00 2.50 0.00 0.00 24.46 0.41 0.59 2.41 'Peat' + -6.00 0.00 0.00 15.00 16.00 12.50 13.53 13.53 20.92 0.41 0.64 2.95 'Clay' + -13.00 0.00 0.00 17.00 19.00 0.00 17.20 23.88 35.82 0.22 0.41 6.91 'Sand' [END OF DATA] [END OF TABLE] [MULTILINEAR BRANCHES] @@ -8403,7 +8491,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Slide plane position Theta min @@ -8412,24 +8500,25 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 59.75500 0.00000 15.41864 0.00000 - -9.07143 59.84500 0.00000 55.89258 0.00000 - -9.85714 60.03000 0.00000 106.14856 0.00000 - -10.64286 60.20600 0.00000 165.36368 0.00000 - -11.42857 60.36600 0.00000 233.53007 0.00000 - -12.21429 60.50900 0.00000 310.64167 0.00000 - -13.00000 60.63700 0.00000 396.69373 0.00000 - -13.75000 66.24700 0.00000 581.52986 0.00000 - -14.50000 68.03700 0.00000 781.82674 0.00000 - -15.25000 69.03200 34.99000 1007.85626 8.03239 - -16.00000 69.67000 34.86000 1261.66542 20.21180 + -7.00000 0.00000 0.00000 0.00000 0.00000 + -7.75000 62.49000 0.00000 44.38081 0.00000 + -8.50000 62.71500 0.00000 99.09866 0.00000 + -9.25000 62.90800 0.00000 164.13661 0.00000 + -10.00000 63.07600 0.00000 239.48220 0.00000 + -10.75000 63.22300 0.00000 325.12603 0.00000 + -11.50000 63.35300 0.00000 421.06087 0.00000 + -12.25000 63.46800 0.00000 527.28109 0.00000 + -13.00000 63.57200 0.00000 643.78222 0.00000 + -13.75000 67.66700 0.00000 894.73312 0.00000 + -14.50000 69.17700 0.00000 1167.04977 0.00000 + -15.25000 70.05200 0.00000 1471.86572 0.00000 + -16.00000 70.62700 0.00000 1811.75415 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=11 +DataCount=12 [COLUMN INDICATION] Position Vertical stress @@ -8440,17 +8529,18 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 19.62372 0.00000 0.70763 0.00000 8.06968 - -8.67857 7.29536 51.51229 0.00000 0.70763 0.00000 7.06097 - -9.46429 12.15893 63.96216 0.00000 0.70763 0.00000 5.26051 - -10.25000 17.02250 75.36470 0.00000 0.70763 0.00000 4.42736 - -11.03571 21.88607 86.75723 0.00000 0.70763 0.00000 3.96404 - -11.82143 26.74964 98.14203 0.00000 0.70763 0.00000 3.66891 - -12.60714 31.61321 109.52080 0.00000 0.70763 0.00000 3.46440 - -13.37500 37.49125 246.44817 0.00000 0.50000 0.00000 6.57349 - -14.12500 44.38375 267.06251 0.00000 0.50000 0.00000 6.01712 - -14.87500 51.27625 301.37269 10.70986 0.50000 0.20887 5.87743 - -15.62500 58.16875 338.41221 16.23921 0.50000 0.27917 5.81777 + -7.37500 2.32125 59.17441 0.00000 0.64302 0.00000 25.49248 + -8.12500 6.96375 72.95713 0.00000 0.64302 0.00000 10.47670 + -8.87500 11.60625 86.71727 0.00000 0.64302 0.00000 7.47160 + -9.62500 16.24875 100.46079 0.00000 0.64302 0.00000 6.18268 + -10.37500 20.89125 114.19177 0.00000 0.64302 0.00000 5.46601 + -11.12500 25.53375 127.91312 0.00000 0.64302 0.00000 5.00957 + -11.87500 30.17625 141.62696 0.00000 0.64302 0.00000 4.69333 + -12.62500 34.81875 155.33483 0.00000 0.64302 0.00000 4.46124 + -13.37500 40.58625 334.60121 0.00000 0.41479 0.00000 8.24420 + -14.12500 47.47875 363.08886 0.00000 0.41479 0.00000 7.64740 + -14.87500 54.37125 406.42128 0.00000 0.41479 0.00000 7.47493 + -15.62500 61.26375 453.18457 0.00000 0.41479 0.00000 7.39727 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -8533,78 +8623,78 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.98100 0.00000 0.00000 -1 0 - - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.92400 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 7.84949 6.44657 7.84949 0.68832 202 100 P - 15.69898 7.98814 15.69898 1.37664 202 100 P - 23.54847 9.52971 23.54847 2.06496 202 100 P - 31.39796 11.07129 31.39796 2.75328 202 100 P - 39.24744 12.61286 39.24744 3.44160 202 100 P - 34.34153 12.61286 34.34153 3.44160 202 100 P - 41.20983 14.15443 41.20983 4.12992 202 100 P - 48.07814 15.69600 48.07814 4.81824 202 100 P - 54.94644 17.23757 54.94644 5.50656 202 100 P - 61.81475 18.77914 61.81475 6.19488 202 100 P - 68.68305 20.32071 68.68305 6.88320 202 100 P - 51.16973 20.32071 51.16973 6.88320 202 100 P - 56.28670 21.86229 56.28670 7.57152 202 100 P - 61.40367 23.40386 61.40367 8.25984 202 100 P - 66.52065 24.94543 66.52065 8.94816 202 100 P - 71.63762 26.48700 71.63762 9.63648 202 100 P - 76.75459 28.02857 76.75459 10.32480 202 100 P - 64.59831 28.02857 64.59831 10.32480 202 100 P - 68.90486 29.57014 68.90486 11.01312 202 100 P - 73.21142 31.11171 73.21142 11.70144 202 100 P - 77.51797 32.65329 77.51797 12.38976 202 100 P - 81.82453 34.19486 81.82453 13.07808 202 100 P - 86.13108 35.73643 86.13108 13.76640 202 100 P - 77.11753 35.73643 77.11753 13.76640 202 100 P - 80.97341 37.27800 80.97341 14.45472 202 100 P - 84.82929 38.81957 84.82929 15.14304 202 100 P - 88.68516 40.36114 88.68516 15.83136 202 100 P - 92.54104 41.90271 92.54104 16.51968 202 100 P - 96.39692 43.44429 96.39692 17.20800 202 100 P - 89.22003 43.44429 89.22003 17.20800 202 100 P - 92.78883 44.98586 92.78883 17.89632 202 100 P - 96.35763 46.52743 96.35763 18.58464 202 100 P - 99.92643 48.06900 99.92643 19.27296 202 100 P - 103.49524 49.61057 103.49524 19.96128 202 100 P - 107.06404 51.15214 107.06404 20.64960 202 100 P - 101.09613 51.15214 101.09613 20.64960 202 100 P - 104.46600 52.69371 104.46600 21.33792 202 100 P - 107.83587 54.23529 107.83587 22.02624 202 100 P - 111.20574 55.77686 111.20574 22.71457 202 100 P - 114.57561 57.31843 114.57561 23.40289 202 100 P - 114.46307 58.86000 117.94548 24.09121 110 97 - - 223.79430 58.86000 223.79430 17.02250 202 100 P - 232.85585 60.33150 232.85585 17.71175 202 100 P - 241.91740 61.80300 241.91740 18.40100 202 100 P - 250.97895 63.27450 250.97895 19.09025 202 100 P - 260.04050 64.74600 260.04050 19.77950 202 100 P - 269.10205 66.21750 269.10205 20.46875 202 100 P - 246.32600 66.21750 246.32600 20.46875 202 100 P - 254.62060 67.68900 254.62060 21.15800 202 100 P - 223.69025 69.16050 262.91521 21.84725 110 85 - - 193.93446 70.63200 271.20981 22.53650 110 72 - - 165.32317 72.10350 279.50442 23.22575 110 59 - - 137.77116 73.57500 287.79902 23.91500 110 48 - - 137.77116 73.57500 281.11759 23.91500 110 49 - - 111.17070 75.04650 289.21963 24.60425 110 38 - - 85.38634 76.51800 297.32167 25.29350 110 29 - - 60.29134 77.98950 305.42371 25.98275 110 20 - - 35.75894 79.46100 313.52575 26.67200 110 11 - - 11.66240 80.93250 321.62779 27.36125 110 0 - - 15.27710 80.93250 318.36273 27.36125 1 0 A - 15.66194 82.40400 326.38252 28.05050 1 0 A - 16.04679 83.87550 334.40231 28.73975 1 0 A - 16.43163 85.34700 342.42211 29.42900 1 0 A - 16.81647 86.81850 350.44190 30.11825 1 0 A - 17.20131 88.29000 358.46169 30.80750 1 0 A + 0.00000 0.00000 0.00003 0.00000 1 0 A + 6.66779 1.47150 23.66976 0.59704 110 28 - + 23.25063 2.94300 47.33953 1.19408 110 49 - + 39.83734 4.41450 71.00929 1.79112 110 56 - + 56.42600 5.88600 94.67906 2.38817 110 60 - + 73.01470 7.35750 118.34882 2.98521 110 62 - + 25.81940 7.35750 48.63809 2.98521 110 53 - + 32.96736 8.82900 58.36571 3.58225 110 56 - + 40.11254 10.30050 68.09332 4.17929 110 59 - + 47.25399 11.77200 77.82094 4.77633 110 61 - + 54.39073 13.24350 87.54856 5.37337 110 62 - + 61.52180 14.71500 97.27618 5.97041 110 63 - + 42.62896 14.71500 69.37382 5.97041 110 61 - + 47.86426 16.18650 76.31120 6.56745 110 63 - + 53.09269 17.65800 83.24858 7.16450 110 64 - + 58.31396 19.12950 90.18597 7.76154 110 65 - + 63.52775 20.60100 97.12335 8.35858 110 65 - + 68.73378 22.07250 104.06073 8.95562 110 66 - + 56.57681 22.07250 86.10925 8.95562 110 66 - + 60.96440 23.54400 91.84986 9.55266 110 66 - + 65.34409 25.01550 97.59048 10.14970 110 67 - + 69.71597 26.48700 103.33110 10.74674 110 67 - + 74.08015 27.95850 109.07171 11.34379 110 68 - + 78.43673 29.43000 114.81233 11.94083 110 68 - + 69.42255 29.43000 101.50379 11.94083 110 68 - + 73.32098 30.90150 106.57898 12.53787 110 69 - + 77.21224 32.37300 111.65417 13.13491 110 69 - + 81.09662 33.84450 116.72936 13.73195 110 69 - + 84.97438 35.31600 121.80455 14.32899 110 70 - + 88.84580 36.78750 126.87974 14.92603 110 70 - + 81.66837 36.78750 116.28466 14.92603 110 70 - + 85.24666 38.25900 120.93605 15.52307 110 70 - + 88.81921 39.73050 125.58743 16.12012 110 71 - + 92.38629 41.20200 130.23882 16.71716 110 71 - + 95.94815 42.67350 134.89020 17.31420 110 71 - + 99.50507 44.14500 139.54159 17.91124 110 71 - + 93.53668 44.14500 130.73258 17.91124 110 72 - + 96.88996 45.61650 135.09033 18.50828 110 72 - + 100.23870 47.08800 139.44808 19.10532 110 72 - + 103.58300 48.55950 143.80584 19.70236 110 72 - + 106.92294 50.03100 148.16359 20.29941 110 72 - + 110.25863 51.50250 152.52134 20.89645 110 72 - + 105.14786 51.50250 144.97918 20.89645 110 73 - + 108.33334 52.97400 149.12144 21.49349 110 73 - + 111.51448 54.44550 153.26370 22.09053 110 73 - + 114.69108 55.91700 157.40596 22.68757 110 73 - + 117.86294 57.38850 161.54823 23.28461 110 73 - + 121.02985 58.86000 165.69049 23.88165 110 73 - + 203.87329 58.86000 306.18963 15.40546 110 67 - + 212.20418 60.33150 317.55426 15.97725 110 67 - + 220.50694 61.80300 328.91889 16.54905 110 67 - + 228.78150 63.27450 340.28352 17.12084 110 67 - + 237.02783 64.74600 351.64815 17.69263 110 67 - + 245.24587 66.21750 363.01278 18.26443 110 68 - + 230.08456 66.21750 336.73401 18.26443 110 68 - + 237.80035 67.68900 347.27595 18.83622 110 68 - + 244.47305 69.16050 357.81789 19.40802 110 68 - + 212.32723 70.63200 368.35983 19.97981 110 58 - + 181.27001 72.10350 378.90176 20.55160 110 48 - + 151.23178 73.57500 389.44370 21.12340 110 39 - + 151.23178 73.57500 380.66080 21.12340 110 40 - + 122.11873 75.04650 390.96499 21.69519 110 31 - + 93.80283 76.51800 401.26918 22.26699 110 23 - + 66.16318 77.98950 411.57337 22.83878 110 16 - + 39.07887 79.46100 421.87756 23.41057 110 9 - + 12.42900 80.93250 432.18175 23.98237 110 0 - + 12.42900 80.93250 427.69172 23.98237 110 0 - + 9.65636 82.40400 437.88886 24.55416 110 0 - + 10.12515 83.87550 448.08600 25.12596 110 0 - + 10.59142 85.34700 458.28314 25.69775 110 0 - + 11.05632 86.81850 468.48028 26.26954 110 0 - + 11.52098 88.29000 478.67742 26.84134 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8619,8 +8709,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 396.420 'Clay' - -13.00 406.557 'Sand' + -6.00 438.139 'Clay' + -13.00 396.901 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8793,20 +8883,20 @@ PartialFactorSet=13 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 8.11 : Percentage mobilized resistance right - 275.90 : Effective left - 275.92 : Effective right + 13.45 : Percentage mobilized resistance left + 8.12 : Percentage mobilized resistance right + 276.20 : Effective left + 276.22 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2033.67 : Max effective resistance left + 2053.74 : Max effective resistance left 3402.22 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 78.48 : Vertical force left - 73.70 : Vertical force right + 78.56 : Vertical force left + 73.77 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.00 : Level of single support @@ -8823,150 +8913,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -6.91935 - 0.00000 0.00000 -6.91223 - 0.00000 0.00000 -6.90511 - 0.00000 0.00000 -6.89799 - 0.00000 0.00000 -6.89087 - 0.00000 0.00000 -6.88375 - 0.00000 -0.00001 -6.88375 - 0.00000 -0.00001 -6.87663 - 0.00000 -0.00001 -6.86951 - 0.00000 -0.00001 -6.86239 - 0.00000 -0.00001 -6.85528 - 0.00202 0.04050 -6.84816 - 0.00201 0.04026 -6.84816 - 0.00987 0.12836 -6.84340 - 0.02995 0.28464 -6.83866 - 0.06907 0.50911 -6.83393 - 0.13404 0.80175 -6.82923 - 0.23169 1.16256 -6.82459 - 0.23169 1.16256 -6.82459 - 0.28138 1.32279 -6.82275 - 0.33758 1.48759 -6.82093 - 0.40045 1.65695 -6.81913 - 0.47019 1.83087 -6.81736 - 0.54698 2.00934 -6.81561 - 0.54699 2.00926 -6.81561 - 0.80721 2.21589 -6.81062 - 1.05597 1.85160 -6.80608 - 1.24221 1.25270 -6.80209 - 1.35666 0.65503 -6.79876 - 1.39946 0.05835 -6.79618 - 1.39945 0.05842 -6.79618 - 1.37070 -0.53752 -6.79441 - 1.27047 -1.13301 -6.79341 - 1.09879 -1.72826 -6.79307 - 0.85568 -2.32351 -6.79331 - 0.54114 -2.91890 -6.79402 - 0.54115 -2.91887 -6.79402 - 0.15514 -3.51457 -6.79508 - -0.30236 -4.11064 -6.79623 - -0.83142 -4.70705 -6.79717 - -1.43207 -5.30371 -6.79762 - -2.10431 -5.90038 -6.79728 - -2.10431 -5.90049 -6.79728 - -2.84483 -5.20725 -6.79551 - -3.49289 -4.51360 -6.79179 - -4.04842 -3.81923 -6.78576 - -4.51130 -3.12375 -6.77701 - -4.88135 -2.42673 -6.76519 - -4.88135 -2.42693 -6.76519 - -5.15836 -1.72789 -6.74995 - -5.34201 -1.02632 -6.73119 - -5.43191 -0.32167 -6.70885 - -5.42763 0.38658 -6.68286 - -5.32864 1.09899 -6.65316 - -5.32864 1.09877 -6.65316 - -5.13439 1.81589 -6.61975 - -4.84417 2.53827 -6.58282 - -4.45726 3.26640 -6.54266 - -3.97285 4.00075 -6.49951 - -3.39010 4.74175 -6.45365 - -3.39010 4.74160 -6.45365 - -2.93582 4.34567 -6.41770 - -2.52063 3.95997 -6.38061 - -2.14348 3.58478 -6.34255 - -1.80331 3.22037 -6.30365 - -1.49904 2.86695 -6.26406 - -1.49904 2.86688 -6.26406 - -1.22956 2.52463 -6.22391 - -0.99374 2.19368 -6.18329 - -0.79044 1.87416 -6.14228 - -0.61852 1.56617 -6.10095 - -0.47682 1.26978 -6.05939 - -0.47682 1.26974 -6.05939 - -0.31839 0.84704 -5.99676 - -0.22139 0.45070 -5.93386 - -0.18186 0.08083 -5.87072 - -0.19581 -0.26249 -5.80738 - -0.25927 -0.57916 -5.74388 - -0.25927 -0.57921 -5.74388 - -0.36823 -0.86918 -5.68020 - -0.51868 -1.13234 -5.61621 - -0.70658 -1.36852 -5.55174 - -0.92788 -1.57748 -5.48663 - -1.17845 -1.75894 -5.42073 - -1.17844 -1.75913 -5.42073 - -1.45418 -1.91269 -5.35383 - -1.75083 -2.03790 -5.28568 - -2.06410 -2.13417 -5.21601 - -2.38960 -2.20079 -5.14454 - -2.72282 -2.23697 -5.07101 - -2.72281 -2.23738 -5.07101 - -3.05917 -2.24219 -4.99514 - -3.39384 -2.21457 -4.91662 - -3.72186 -2.15336 -4.83518 - -4.03811 -2.05727 -4.75053 - -4.33723 -1.92489 -4.66240 - -4.33722 -1.92554 -4.66240 - -4.61377 -1.75536 -4.57050 - -4.86186 -1.54575 -4.47461 - -5.07544 -1.29498 -4.37455 - -5.24820 -1.00128 -4.27015 - -5.37358 -0.66277 -4.16121 - -5.37358 -0.66357 -4.16121 - -5.44482 -0.27833 -4.04757 - -5.45464 0.15564 -3.92922 - -5.39559 0.64028 -3.80623 - -5.25992 1.17755 -3.67863 - -5.03960 1.76937 -3.54649 - -5.03961 1.76863 -3.54649 - -4.72641 2.41688 -3.40989 - -4.31163 3.12336 -3.26921 - -3.78641 3.88969 -3.12489 - -3.14166 4.71729 -2.97740 - -2.36810 5.60742 -2.82719 - -2.36813 5.60710 -2.82719 - -1.45634 6.56077 -2.67478 - -0.39669 7.57873 -2.52111 - 0.82051 8.66127 -2.36721 - 2.20492 9.80827 -2.21416 - 3.76618 11.01915 -2.06300 - 3.76871 11.00121 -2.06300 - 5.22032 8.37454 -1.91519 - 6.28930 5.91241 -1.77189 - 7.00638 3.69700 -1.63376 - 7.41260 1.76559 -1.50142 - 7.54962 0.10534 -1.37551 - 7.54841 0.10527 -1.37551 - 7.45585 -1.29770 -1.25638 - 7.17127 -2.45724 -1.14368 - 6.73019 -3.38649 -1.03705 - 6.16622 -4.09782 -0.93614 - 5.51116 -4.60283 -0.84056 - 5.51128 -4.59875 -0.84056 - 4.79588 -4.90812 -0.74981 - 4.04816 -5.03127 -0.66320 - 3.29542 -4.97619 -0.58008 - 2.56388 -4.74956 -0.49982 - 1.87886 -4.35670 -0.42177 - 1.87898 -4.35519 -0.42177 - 1.26532 -3.80008 -0.34528 - 0.74693 -3.08545 -0.26986 - 0.34757 -2.21323 -0.19518 - 0.09078 -1.18461 -0.12092 - -0.00002 -0.00011 -0.04672 + 0.00000 0.00000 -6.75383 + 0.00000 0.00000 -6.75139 + 0.00000 0.00000 -6.74895 + 0.00000 0.00000 -6.74650 + 0.00000 0.00000 -6.74406 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.74162 + 0.00000 0.00000 -6.73918 + 0.00000 0.00000 -6.73674 + 0.00000 0.00000 -6.73430 + 0.00000 0.00000 -6.73186 + 0.00265 0.05297 -6.72942 + 0.00264 0.05289 -6.72942 + 0.01259 0.15740 -6.72778 + 0.03638 0.32965 -6.72615 + 0.08078 0.56964 -6.72455 + 0.15257 0.87738 -6.72298 + 0.25851 1.25284 -6.72147 + 0.25851 1.25284 -6.72147 + 0.31193 1.41882 -6.72089 + 0.37208 1.58929 -6.72033 + 0.43913 1.76424 -6.71979 + 0.51328 1.94369 -6.71928 + 0.59469 2.12761 -6.71880 + 0.59469 2.12762 -6.71880 + 0.86094 2.12195 -6.71763 + 1.08139 1.55221 -6.71693 + 1.23348 0.98262 -6.71680 + 1.31722 0.41296 -6.71732 + 1.33258 -0.15700 -6.71856 + 1.33258 -0.15691 -6.71856 + 1.27953 -0.72741 -6.72059 + 1.15797 -1.29872 -6.72333 + 0.96779 -1.87105 -6.72668 + 0.70887 -2.44459 -6.73052 + 0.38104 -3.01949 -6.73476 + 0.38104 -3.01947 -6.73476 + -0.01586 -3.59583 -6.73926 + -0.48202 -4.17371 -6.74375 + -1.01761 -4.75304 -6.74794 + -1.62280 -5.33368 -6.75154 + -2.29773 -5.91538 -6.75424 + -2.29773 -5.91550 -6.75424 + -3.03983 -5.21608 -6.75572 + -3.68869 -4.51672 -6.75512 + -4.24428 -3.81709 -6.75207 + -4.70655 -3.11679 -6.74617 + -5.07537 -2.41537 -6.73707 + -5.07537 -2.41558 -6.73707 + -5.35060 -1.71254 -6.72442 + -5.53195 -1.00733 -6.70811 + -5.61910 -0.29942 -6.68809 + -5.61165 0.41177 -6.66430 + -5.50913 1.12680 -6.63667 + -5.50913 1.12657 -6.63667 + -5.31101 1.84601 -6.60521 + -5.01664 2.57042 -6.57011 + -4.62532 3.30032 -6.53166 + -4.13629 4.03620 -6.49011 + -3.54871 4.77849 -6.44573 + -3.54872 4.77833 -6.44573 + -3.09066 4.38448 -6.41082 + -2.67149 4.00056 -6.37472 + -2.29021 3.62690 -6.33758 + -1.94576 3.26376 -6.29955 + -1.63710 2.91138 -6.26077 + -1.63710 2.91130 -6.26077 + -1.36313 2.56986 -6.22138 + -1.12276 2.23952 -6.18147 + -0.91485 1.92042 -6.14112 + -0.73829 1.61266 -6.10040 + -0.59194 1.31635 -6.05941 + -0.59194 1.31630 -6.05941 + -0.42653 0.89343 -5.99755 + -0.32261 0.49662 -5.93532 + -0.27624 0.12601 -5.87277 + -0.28349 -0.21827 -5.80993 + -0.34040 -0.53610 -5.74686 + -0.34039 -0.53617 -5.74686 + -0.44300 -0.82746 -5.68354 + -0.58730 -1.09209 -5.61984 + -0.76928 -1.32984 -5.55561 + -0.98489 -1.54047 -5.49068 + -1.23005 -1.72366 -5.42491 + -1.23004 -1.72385 -5.42491 + -1.50062 -1.87919 -5.35810 + -1.79238 -2.00621 -5.29000 + -2.10103 -2.10429 -5.22034 + -2.42219 -2.17273 -5.14885 + -2.75133 -2.21071 -5.07528 + -2.75132 -2.21112 -5.07528 + -3.08388 -2.21770 -4.99933 + -3.41500 -2.19182 -4.92071 + -3.73974 -2.13230 -4.83916 + -4.05295 -2.03786 -4.75439 + -4.34928 -1.90707 -4.66611 + -4.34927 -1.90772 -4.66611 + -4.62326 -1.73907 -4.57406 + -4.86902 -1.53092 -4.47801 + -5.08048 -1.28155 -4.37779 + -5.25133 -0.98917 -4.27321 + -5.37498 -0.65191 -4.16410 + -5.37498 -0.65271 -4.16410 + -5.44468 -0.26864 -4.05029 + -5.45313 0.16422 -3.93177 + -5.39288 0.64783 -3.80859 + -5.25615 1.18414 -3.68083 + -5.03490 1.77507 -3.54852 + -5.03491 1.77433 -3.54852 + -4.72092 2.42177 -3.41176 + -4.30547 3.12749 -3.27092 + -3.77968 3.89313 -3.12645 + -3.13446 4.72012 -2.97881 + -2.36052 5.60968 -2.82846 + -2.36055 5.60936 -2.82846 + -1.44846 6.56253 -2.67592 + -0.38857 7.58004 -2.52211 + 0.82879 8.66218 -2.36810 + 2.21331 9.80884 -2.21493 + 3.77463 11.01942 -2.06367 + 3.77717 11.00147 -2.06367 + 5.22877 8.37415 -1.91575 + 6.29763 5.91123 -1.77237 + 7.01447 3.69491 -1.63414 + 7.42032 1.76277 -1.50173 + 7.55686 0.10194 -1.37575 + 7.55565 0.10187 -1.37575 + 7.46255 -1.30153 -1.25655 + 7.17737 -2.46138 -1.14380 + 6.73565 -3.39082 -1.03712 + 6.17102 -4.10223 -0.93615 + 5.51531 -4.60722 -0.84053 + 5.51543 -4.60313 -0.84053 + 4.79938 -4.91239 -0.74974 + 4.05103 -5.03534 -0.66309 + 3.29769 -4.97999 -0.57993 + 2.56561 -4.75302 -0.49963 + 1.88010 -4.35975 -0.42156 + 1.88022 -4.35824 -0.42156 + 1.26614 -3.80264 -0.34503 + 0.74740 -3.08747 -0.26958 + 0.34778 -2.21464 -0.19488 + 0.09084 -1.18534 -0.12058 + -0.00002 -0.00011 -0.04636 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9133,139 +9223,139 @@ Status character 0.00000 0.00000 95.49049 10.12752 1 0 A 0.00000 0.00000 109.13199 11.57431 1 0 A 0.00000 0.00000 122.77349 13.02110 1 0 A - 0.77157 0.00000 136.41499 14.46788 110 0 - - 0.77157 0.00000 111.45332 14.46788 110 0 - - 1.74560 0.00000 118.88354 15.43241 110 0 - - 2.71962 0.00000 126.31376 16.39693 110 0 - - 3.69361 0.00000 133.74398 17.36146 110 0 - - 4.66752 0.00000 141.17421 18.32599 110 0 - - 5.64134 0.00000 148.60443 19.29051 110 0 - - 5.64134 0.00000 140.04174 19.29051 110 0 - - 5.80422 0.39240 141.19755 19.44972 110 0 - - 5.96707 0.78480 142.35336 19.60893 110 0 - - 6.12988 1.17720 143.50917 19.76814 110 0 - - 6.29264 1.56960 144.66498 19.92736 110 0 - - 6.45534 1.96200 145.82080 20.08657 110 0 - - 6.45534 1.96200 141.80292 20.08657 110 0 - - 6.94296 3.13920 145.17481 20.56420 110 0 - - 7.42968 4.31640 148.54670 21.04183 110 0 - - 7.91528 5.49360 151.91860 21.51947 110 0 - - 8.39958 6.67080 155.29049 21.99710 110 0 - - 8.88238 7.84800 158.66238 22.47473 110 0 - - 8.88238 7.84800 153.05638 22.47473 110 0 - - 9.36354 9.02520 156.30914 22.95236 110 0 - - 9.84318 10.20240 159.56189 23.43000 110 0 - - 10.32148 11.37960 162.81464 23.90763 110 0 - - 10.79865 12.55680 166.06740 24.38526 110 0 - - 11.27486 13.73400 169.32015 24.86290 110 0 - - 11.27486 13.73400 164.25619 24.86290 110 0 - - 11.75038 14.91120 167.41166 25.34053 110 0 - - 12.22571 16.08840 170.56714 25.81816 110 0 - - 12.70146 17.26560 173.72261 26.29580 110 0 - - 13.17819 18.44280 176.87808 26.77343 110 0 - - 13.65650 19.62000 180.03355 27.25106 110 0 - - 19.39187 19.62000 112.91072 24.82969 110 0 - - 19.48624 20.92800 113.33345 24.92265 110 0 - - 19.58217 22.23600 113.75618 25.01561 110 0 - - 19.67997 23.54400 114.17890 25.10857 110 0 - - 19.77992 24.85200 114.60163 25.20153 110 0 - - 19.88234 26.16000 115.02436 25.29449 110 0 - - 19.88234 26.16000 114.42115 25.29449 110 0 - - 19.98749 27.46800 114.84166 25.38745 110 0 - - 20.09546 28.77600 115.26217 25.48041 110 0 - - 20.20629 30.08400 115.68268 25.57337 110 0 - - 20.32004 31.39200 116.10319 25.66633 110 0 - - 20.43676 32.70000 116.52370 25.75929 110 0 - - 20.43676 32.70000 116.01583 25.75929 110 0 - - 20.55645 34.00800 116.43451 25.85225 110 0 - - 20.67895 35.31600 116.85318 25.94521 110 0 - - 20.80404 36.62400 117.27186 26.03817 110 0 - - 20.93152 37.93200 117.69054 26.13113 110 0 - - 21.06117 39.24000 118.10921 26.22409 110 0 - - 15.87413 39.24000 183.43874 28.78144 110 0 - - 16.34408 40.22100 185.97557 29.17947 110 0 - - 16.81627 41.20200 188.51241 29.57750 110 0 - - 17.29043 42.18300 191.04924 29.97553 110 0 - - 17.76625 43.16400 193.58607 30.37355 110 0 - - 18.24346 44.14500 196.12290 30.77158 110 0 - - 18.24346 44.14500 192.60019 30.77158 110 0 - - 18.72179 45.12600 195.09146 31.16961 110 0 - - 19.20105 46.10700 197.58272 31.56764 110 0 - - 19.68111 47.08800 200.07399 31.96566 110 0 - - 20.16179 48.06900 202.56525 32.36369 110 0 - - 20.64294 49.05000 205.05652 32.76172 110 0 - - 20.64294 49.05000 201.00495 32.76172 110 0 - - 21.36524 50.52150 204.66801 33.35876 110 0 - - 22.08809 51.99300 208.33107 33.95580 110 0 - - 22.81140 53.46450 211.99414 34.55284 110 0 - - 23.53512 54.93600 215.65720 35.14988 110 0 - - 24.25917 56.40750 219.32027 35.74693 110 0 - - 24.25917 56.40750 214.81611 35.74693 110 0 - - 24.98356 57.87900 218.40395 36.34397 110 0 - - 25.70859 59.35050 221.99178 36.94101 110 0 - - 26.43457 60.82200 225.57962 37.53805 110 0 - - 27.16183 62.29350 229.16745 38.13509 110 0 - - 27.89068 63.76500 232.75529 38.73213 110 0 - - 27.89068 63.76500 228.61475 38.73213 110 0 - - 28.62151 65.23650 232.13876 39.32917 110 0 - - 29.35485 66.70800 235.66278 39.92621 110 0 - - 30.09124 68.17950 239.18679 40.52326 110 0 - - 30.83121 69.65100 242.71080 41.12030 110 0 - - 31.57531 71.12250 246.23481 41.71734 110 0 - - 31.57531 71.12250 242.40131 41.71734 110 0 - - 32.32410 72.59400 245.87046 42.31438 110 0 - - 33.07818 74.06550 249.33961 42.91142 110 0 - - 33.83810 75.53700 252.80875 43.50846 110 0 - - 34.60444 77.00850 256.27790 44.10550 110 0 - - 35.37774 78.48000 259.74705 44.70255 110 0 - - 35.37774 78.48000 256.17685 44.70255 110 0 - - 36.15858 79.95150 259.59831 45.29959 110 0 - - 36.94740 81.42300 263.01977 45.89663 110 0 - - 37.74456 82.89450 266.44124 46.49367 110 0 - - 38.55042 84.36600 269.86270 47.09071 110 0 - - 39.36534 85.83750 273.28417 47.68775 110 0 - - 39.36534 85.83750 269.94257 47.68775 110 0 - - 40.18965 87.30900 273.32219 48.28479 110 0 - - 41.02339 88.78050 276.70182 48.88183 110 0 - - 41.86643 90.25200 280.08145 49.47888 110 0 - - 42.71866 91.72350 283.46108 50.07592 110 0 - - 43.57998 93.19500 286.84071 50.67296 110 0 - - 43.57998 93.19500 283.69963 50.67296 110 0 - - 44.45021 94.66650 287.04225 51.27000 110 0 - - 45.32862 96.13800 290.38487 51.86704 110 0 - - 46.21430 97.60950 293.72749 52.46408 110 0 - - 47.10633 99.08100 297.07011 53.06112 110 0 - - 48.00379 100.55250 300.41273 53.65817 110 0 - - 48.00379 100.55250 297.44910 53.65817 110 0 - - 48.90564 102.02400 300.75875 54.25521 110 0 - - 49.81003 103.49550 304.06839 54.85225 110 0 - - 50.71486 104.96700 307.37804 55.44929 110 0 - - 51.61801 106.43850 310.68768 56.04633 110 0 - - 52.51737 107.91000 313.99732 56.64337 110 0 - + 1.00905 0.00000 136.41499 14.46788 110 0 - + 1.00905 0.00000 111.45332 14.46788 110 0 - + 1.97684 0.00000 118.88354 15.43241 110 0 - + 2.94462 0.00000 126.31376 16.39693 110 0 - + 3.91236 0.00000 133.74398 17.36146 110 0 - + 4.88002 0.00000 141.17421 18.32599 110 0 - + 5.84757 0.00000 148.60443 19.29051 110 0 - + 5.84757 0.00000 140.04174 19.29051 110 0 - + 6.00794 0.39240 141.19755 19.44972 110 0 - + 6.16827 0.78480 142.35336 19.60893 110 0 - + 6.32856 1.17720 143.50917 19.76814 110 0 - + 6.48879 1.56960 144.66498 19.92736 110 0 - + 6.64896 1.96200 145.82080 20.08657 110 0 - + 6.64896 1.96200 141.80292 20.08657 110 0 - + 7.12895 3.13920 145.17481 20.56420 110 0 - + 7.60797 4.31640 148.54670 21.04183 110 0 - + 8.08586 5.49360 151.91860 21.51947 110 0 - + 8.56247 6.67080 155.29049 21.99710 110 0 - + 9.03760 7.84800 158.66238 22.47473 110 0 - + 9.03760 7.84800 153.05638 22.47473 110 0 - + 9.51118 9.02520 156.30914 22.95236 110 0 - + 9.98333 10.20240 159.56189 23.43000 110 0 - + 10.45427 11.37960 162.81464 23.90763 110 0 - + 10.92422 12.55680 166.06740 24.38526 110 0 - + 11.39337 13.73400 169.32015 24.86290 110 0 - + 11.39337 13.73400 164.25619 24.86290 110 0 - + 11.86201 14.91120 167.41166 25.34053 110 0 - + 12.33066 16.08840 170.56714 25.81816 110 0 - + 12.79991 17.26560 173.72261 26.29580 110 0 - + 13.27035 18.44280 176.87808 26.77343 110 0 - + 13.74259 19.62000 180.03355 27.25106 110 0 - + 19.42630 19.62000 112.91072 24.82969 110 0 - + 19.51807 20.92800 113.33345 24.92265 110 0 - + 19.61151 22.23600 113.75618 25.01561 110 0 - + 19.70692 23.54400 114.17890 25.10857 110 0 - + 19.80459 24.85200 114.60163 25.20153 110 0 - + 19.90484 26.16000 115.02436 25.29449 110 0 - + 19.90484 26.16000 114.42115 25.29449 110 0 - + 20.00792 27.46800 114.84166 25.38745 110 0 - + 20.11392 28.77600 115.26217 25.48041 110 0 - + 20.22290 30.08400 115.68268 25.57337 110 0 - + 20.33489 31.39200 116.10319 25.66633 110 0 - + 20.44995 32.70000 116.52370 25.75929 110 0 - + 20.44995 32.70000 116.01583 25.75929 110 0 - + 20.56808 34.00800 116.43451 25.85225 110 0 - + 20.68912 35.31600 116.85318 25.94521 110 0 - + 20.81284 36.62400 117.27186 26.03817 110 0 - + 20.93904 37.93200 117.69054 26.13113 110 0 - + 21.06750 39.24000 118.10921 26.22409 110 0 - + 15.88998 39.24000 183.43874 28.78144 110 0 - + 16.35784 40.22100 185.97557 29.17947 110 0 - + 16.82807 41.20200 188.51241 29.57750 110 0 - + 17.30037 42.18300 191.04924 29.97553 110 0 - + 17.77446 43.16400 193.58607 30.37355 110 0 - + 18.25004 44.14500 196.12290 30.77158 110 0 - + 18.25004 44.14500 192.60019 30.77158 110 0 - + 18.72685 45.12600 195.09146 31.16961 110 0 - + 19.20469 46.10700 197.58272 31.56764 110 0 - + 19.68343 47.08800 200.07399 31.96566 110 0 - + 20.16288 48.06900 202.56525 32.36369 110 0 - + 20.64290 49.05000 205.05652 32.76172 110 0 - + 20.64290 49.05000 201.00495 32.76172 110 0 - + 21.36367 50.52150 204.66801 33.35876 110 0 - + 22.08517 51.99300 208.33107 33.95580 110 0 - + 22.80731 53.46450 211.99414 34.55284 110 0 - + 23.53002 54.93600 215.65720 35.14988 110 0 - + 24.25321 56.40750 219.32027 35.74693 110 0 - + 24.25321 56.40750 214.81611 35.74693 110 0 - + 24.97688 57.87900 218.40395 36.34397 110 0 - + 25.70132 59.35050 221.99178 36.94101 110 0 - + 26.42683 60.82200 225.57962 37.53805 110 0 - + 27.15372 62.29350 229.16745 38.13509 110 0 - + 27.88231 63.76500 232.75529 38.73213 110 0 - + 27.88231 63.76500 228.61475 38.73213 110 0 - + 28.61296 65.23650 232.13876 39.32917 110 0 - + 29.34621 66.70800 235.66278 39.92621 110 0 - + 30.08258 68.17950 239.18679 40.52326 110 0 - + 30.82260 69.65100 242.71080 41.12030 110 0 - + 31.56679 71.12250 246.23481 41.71734 110 0 - + 31.56679 71.12250 242.40131 41.71734 110 0 - + 32.31573 72.59400 245.87046 42.31438 110 0 - + 33.06999 74.06550 249.33961 42.91142 110 0 - + 33.83014 75.53700 252.80875 43.50846 110 0 - + 34.59673 77.00850 256.27790 44.10550 110 0 - + 35.37032 78.48000 259.74705 44.70255 110 0 - + 35.37032 78.48000 256.17685 44.70255 110 0 - + 36.15147 79.95150 259.59831 45.29959 110 0 - + 36.94060 81.42300 263.01977 45.89663 110 0 - + 37.73809 82.89450 266.44124 46.49367 110 0 - + 38.54429 84.36600 269.86270 47.09071 110 0 - + 39.35956 85.83750 273.28417 47.68775 110 0 - + 39.35956 85.83750 269.94257 47.68775 110 0 - + 40.18422 87.30900 273.32219 48.28479 110 0 - + 41.01830 88.78050 276.70182 48.88183 110 0 - + 41.86169 90.25200 280.08145 49.47888 110 0 - + 42.71426 91.72350 283.46108 50.07592 110 0 - + 43.57592 93.19500 286.84071 50.67296 110 0 - + 43.57592 93.19500 283.69963 50.67296 110 0 - + 44.44648 94.66650 287.04225 51.27000 110 0 - + 45.32520 96.13800 290.38487 51.86704 110 0 - + 46.21119 97.60950 293.72749 52.46408 110 0 - + 47.10351 99.08100 297.07011 53.06112 110 0 - + 48.00125 100.55250 300.41273 53.65817 110 0 - + 48.00125 100.55250 297.44910 53.65817 110 0 - + 48.90337 102.02400 300.75875 54.25521 110 0 - + 49.80802 103.49550 304.06839 54.85225 110 0 - + 50.71309 104.96700 307.37804 55.44929 110 0 - + 51.61647 106.43850 310.68768 56.04633 110 0 - + 52.51604 107.91000 313.99732 56.64337 110 0 - 18.59731 107.91000 734.00940 36.53923 1 0 A 18.88833 109.38150 745.49575 37.11102 1 0 A - 19.96389 110.85300 756.98209 37.68281 110 0 - - 21.91705 112.32450 768.46843 38.25461 110 0 - - 23.81224 113.79600 779.95478 38.82640 110 0 - - 25.64307 115.26750 791.44112 39.39820 110 0 - - 25.64307 115.26750 738.87493 39.39820 110 0 - - 27.40620 116.73900 749.59837 39.96999 110 0 - - 29.10497 118.21050 760.32181 40.54178 110 0 - - 30.74303 119.68200 771.04525 41.11358 110 0 - - 32.32401 121.15350 781.76869 41.68537 110 0 - - 33.85155 122.62500 792.49213 42.25717 110 0 - - 33.85155 122.62500 772.62437 42.25717 110 0 - - 35.33081 124.09650 783.07897 42.82896 110 0 - - 36.76876 125.56800 793.53357 43.40075 110 0 - - 38.17176 127.03950 803.98818 43.97255 110 0 - - 39.54618 128.51100 814.44278 44.54434 110 0 - - 40.89839 129.98250 824.89738 45.11614 110 0 - - 40.89839 129.98250 814.08791 45.11614 110 0 - - 42.23513 131.45400 824.40552 45.68793 110 0 - - 43.56112 132.92550 834.72313 46.25972 110 0 - - 44.87969 134.39700 845.04073 46.83152 110 0 - - 46.19416 135.86850 855.35834 47.40331 110 0 - - 47.50787 137.34000 865.67594 47.97510 110 0 - + 19.95915 110.85300 756.98209 37.68281 110 0 - + 21.91316 112.32450 768.46843 38.25461 110 0 - + 23.80913 113.79600 779.95478 38.82640 110 0 - + 25.64067 115.26750 791.44112 39.39820 110 0 - + 25.64067 115.26750 738.87493 39.39820 110 0 - + 27.40445 116.73900 749.59837 39.96999 110 0 - + 29.10382 118.21050 760.32181 40.54178 110 0 - + 30.74241 119.68200 771.04525 41.11358 110 0 - + 32.32388 121.15350 781.76869 41.68537 110 0 - + 33.85187 122.62500 792.49213 42.25717 110 0 - + 33.85187 122.62500 772.62437 42.25717 110 0 - + 35.33154 124.09650 783.07897 42.82896 110 0 - + 36.76987 125.56800 793.53357 43.40075 110 0 - + 38.17323 127.03950 803.98818 43.97255 110 0 - + 39.54799 128.51100 814.44278 44.54434 110 0 - + 40.90053 129.98250 824.89738 45.11614 110 0 - + 40.90053 129.98250 814.08791 45.11614 110 0 - + 42.23758 131.45400 824.40552 45.68793 110 0 - + 43.56388 132.92550 834.72313 46.25972 110 0 - + 44.88275 134.39700 845.04073 46.83152 110 0 - + 46.19752 135.86850 855.35834 47.40331 110 0 - + 47.51152 137.34000 865.67594 47.97510 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9278,9 +9368,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 21.001 'Clay' - -4.00 40.354 'Peat' - -6.00 233.170 'Clay' + 0.00 21.417 'Clay' + -4.00 40.391 'Peat' + -6.00 233.144 'Clay' -13.00 99.644 'Sand' [END OF DATA] [END OF TABLE] @@ -9358,26 +9448,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.20000 0.00000 0.00000 0.00000 0.00000 - -2.80000 62.84700 0.00000 12.71803 0.00000 - -3.40000 62.86100 0.00000 49.82607 0.00000 - -4.00000 62.96500 0.00000 97.72394 0.00000 - -4.66667 62.25400 0.00000 121.96325 0.00000 - -5.33333 61.68900 0.00000 147.38471 0.00000 - -6.00000 61.22700 0.00000 174.01379 0.00000 - -6.50000 61.75400 0.00000 222.69748 0.00000 - -7.00000 62.12300 0.00000 275.90757 0.00000 - -7.75000 62.52000 0.00000 364.24778 0.00000 - -8.50000 62.80800 0.00000 462.83865 0.00000 - -9.25000 63.03300 0.00000 571.68935 0.00000 - -10.00000 63.21400 0.00000 690.80325 0.00000 - -10.75000 63.36600 0.00000 820.18139 0.00000 - -11.50000 63.49500 0.00000 959.82388 0.00000 - -12.25000 63.60700 0.00000 1109.73038 0.00000 - -13.00000 63.70600 0.00000 1269.90038 0.00000 - -13.75000 67.31700 0.00000 1645.63390 0.00000 - -14.50000 68.75300 33.35500 2034.73617 5.90482 - -15.25000 69.61600 33.08900 2453.28354 17.82374 - -16.00000 70.20300 32.85200 2905.24722 30.87200 + -2.80000 62.44000 0.00000 34.67704 0.00000 + -3.40000 62.62900 0.00000 75.97227 0.00000 + -4.00000 62.79500 0.00000 123.87621 0.00000 + -4.66667 62.24800 0.00000 148.10002 0.00000 + -5.33333 61.78700 0.00000 173.53003 0.00000 + -6.00000 61.39400 0.00000 200.18091 0.00000 + -6.50000 61.81600 0.00000 248.84128 0.00000 + -7.00000 62.13400 0.00000 302.04465 0.00000 + -7.75000 62.49500 0.00000 390.38747 0.00000 + -8.50000 62.77000 0.00000 488.98710 0.00000 + -9.25000 62.98900 0.00000 597.84879 0.00000 + -10.00000 63.16900 0.00000 716.97434 0.00000 + -10.75000 63.32200 0.00000 846.36414 0.00000 + -11.50000 63.45300 0.00000 986.01798 0.00000 + -12.25000 63.56700 0.00000 1135.93537 0.00000 + -13.00000 63.66800 0.00000 1296.11576 0.00000 + -13.75000 67.25000 0.00000 1672.74136 0.00000 + -14.50000 68.68800 0.00000 2062.50982 0.00000 + -15.25000 69.55600 32.99300 2481.55792 10.49418 + -16.00000 70.14900 32.76900 2933.90990 23.54923 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9394,26 +9484,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.50000 1.85700 21.19672 0.00000 0.64302 0.00000 11.41450 - -3.10000 5.57100 61.84674 0.00000 0.64302 0.00000 11.10155 - -3.70000 9.28500 79.82978 0.00000 0.64302 0.00000 8.59771 - -4.33333 11.53867 36.35896 0.00000 0.58588 0.00000 3.15105 - -5.00000 12.33200 38.13220 0.00000 0.58588 0.00000 3.09213 - -5.66667 13.12533 39.94361 0.00000 0.58588 0.00000 3.04325 - -6.25000 15.06950 97.36739 0.00000 0.64302 0.00000 6.46122 - -6.75000 18.16450 106.42016 0.00000 0.64302 0.00000 5.85869 - -7.37500 22.03325 117.78695 0.00000 0.64302 0.00000 5.34587 - -8.12500 26.67575 131.45449 0.00000 0.64302 0.00000 4.92786 - -8.87500 31.31825 145.13427 0.00000 0.64302 0.00000 4.63418 - -9.62500 35.96075 158.81852 0.00000 0.64302 0.00000 4.41644 - -10.37500 40.60325 172.50419 0.00000 0.64302 0.00000 4.24853 - -11.12500 45.24575 186.18998 0.00000 0.64302 0.00000 4.11508 - -11.87500 49.88825 199.87533 0.00000 0.64302 0.00000 4.00646 - -12.62500 54.53075 213.56001 0.00000 0.64302 0.00000 3.91632 - -13.37500 60.29825 500.97803 0.00000 0.41479 0.00000 8.30833 - -14.12500 67.19075 518.80302 7.87309 0.41479 0.11718 7.72135 - -14.87500 74.08325 558.06317 15.89189 0.41479 0.21451 7.53292 - -15.62500 80.97575 602.61823 17.39768 0.41479 0.21485 7.44196 + -2.50000 1.85700 57.79507 0.00000 0.64302 0.00000 31.12282 + -3.10000 5.57100 68.82539 0.00000 0.64302 0.00000 12.35423 + -3.70000 9.28500 79.83989 0.00000 0.64302 0.00000 8.59880 + -4.33333 11.53867 36.33573 0.00000 0.58588 0.00000 3.14904 + -5.00000 12.33200 38.14501 0.00000 0.58588 0.00000 3.09317 + -5.66667 13.12533 39.97632 0.00000 0.58588 0.00000 3.04574 + -6.25000 15.06950 97.32074 0.00000 0.64302 0.00000 6.45813 + -6.75000 18.16450 106.40674 0.00000 0.64302 0.00000 5.85795 + -7.37500 22.03325 117.79043 0.00000 0.64302 0.00000 5.34603 + -8.12500 26.67575 131.46617 0.00000 0.64302 0.00000 4.92830 + -8.87500 31.31825 145.14892 0.00000 0.64302 0.00000 4.63464 + -9.62500 35.96075 158.83407 0.00000 0.64302 0.00000 4.41687 + -10.37500 40.60325 172.51974 0.00000 0.64302 0.00000 4.24891 + -11.12500 45.24575 186.20511 0.00000 0.64302 0.00000 4.11542 + -11.87500 49.88825 199.88985 0.00000 0.64302 0.00000 4.00675 + -12.62500 54.53075 213.57385 0.00000 0.64302 0.00000 3.91658 + -13.37500 60.29825 502.16747 0.00000 0.41479 0.00000 8.32806 + -14.12500 67.19075 519.69128 0.00000 0.41479 0.00000 7.73457 + -14.87500 74.08325 558.73080 13.99224 0.41479 0.18887 7.54193 + -15.62500 80.97575 603.13597 17.40674 0.41479 0.21496 7.44835 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -9454,126 +9544,126 @@ Status character 0.00000 1.17720 0.00000 0.00000 -1 0 - 0.00000 1.56960 0.00000 0.00000 -1 0 - 0.00000 1.96200 0.00000 0.00000 -1 0 - - 0.00001 1.96200 0.00001 0.00000 202 100 P - 8.47869 3.13920 8.47869 0.47763 202 100 P - 14.56742 4.31640 16.95738 0.95527 110 86 - - 15.03708 5.49360 25.43606 1.43290 110 59 - - 15.50805 6.67080 33.91475 1.91053 110 46 - - 15.98052 7.84800 42.39344 2.38817 110 38 - - 15.98052 7.84800 41.23116 2.38817 110 39 - - 16.45462 9.02520 49.47739 2.86580 110 33 - - 16.93025 10.20240 57.72362 3.34343 110 29 - - 17.40721 11.37960 65.96985 3.82106 110 26 - - 17.88531 12.55680 74.21609 4.29870 110 24 - - 18.36437 13.73400 82.46232 4.77633 110 22 - - 18.36437 13.73400 63.86382 4.77633 110 29 - - 18.84412 14.91120 70.25021 5.25396 110 27 - - 19.32405 16.08840 76.63659 5.73160 110 25 - - 19.80357 17.26560 83.02297 6.20923 110 24 - - 20.28210 18.44280 89.40935 6.68686 110 23 - - 20.75905 19.62000 95.79574 7.16450 110 22 - - 11.96572 19.62000 35.10904 6.52790 110 34 - - 12.05727 20.92800 35.60901 6.62086 110 34 - - 12.14726 22.23600 36.10898 6.71382 110 34 - - 12.23538 23.54400 36.60895 6.80678 110 33 - - 12.32135 24.85200 37.10891 6.89974 110 33 - - 12.40485 26.16000 37.60888 6.99270 110 33 - - 12.40485 26.16000 36.90565 6.99270 110 34 - - 12.48562 27.46800 37.39627 7.08566 110 33 - - 12.56357 28.77600 37.88689 7.17862 110 33 - - 12.63866 30.08400 38.37751 7.27158 110 33 - - 12.71083 31.39200 38.86813 7.36454 110 33 - - 12.78003 32.70000 39.35874 7.45750 110 32 - - 12.78003 32.70000 38.73646 7.45750 110 33 - - 12.84626 34.00800 39.21932 7.55046 110 33 - - 12.90968 35.31600 39.70218 7.64342 110 33 - - 12.97051 36.62400 40.18504 7.73638 110 32 - - 13.02895 37.93200 40.66791 7.82934 110 32 - - 13.08522 39.24000 41.15077 7.92230 110 32 - - 21.60219 39.24000 87.36865 8.69488 110 25 - - 21.92830 40.22100 91.36815 9.09290 110 24 - - 22.25216 41.20200 95.36764 9.49093 110 23 - - 22.57406 42.18300 99.36714 9.88896 110 23 - - 22.89429 43.16400 103.36664 10.28699 110 22 - - 23.21313 44.14500 107.36613 10.68501 110 22 - - 23.21313 44.14500 97.35384 10.68501 110 24 - - 23.53086 45.12600 100.98037 11.08304 110 23 - - 23.84765 46.10700 104.60690 11.48107 110 23 - - 24.16366 47.08800 108.23343 11.87910 110 22 - - 24.47903 48.06900 111.85996 12.27712 110 22 - - 24.79393 49.05000 115.48648 12.67515 110 21 - - 24.79393 49.05000 105.37785 12.67515 110 24 - - 25.26571 50.52150 110.34149 13.27219 110 23 - - 25.73695 51.99300 115.30513 13.86923 110 22 - - 26.20772 53.46450 120.26878 14.46628 110 22 - - 26.67808 54.93600 125.23242 15.06332 110 21 - - 27.14812 56.40750 130.19606 15.66036 110 21 - - 27.14812 56.40750 120.01569 15.66036 110 23 - - 27.61781 57.87900 124.59121 16.25740 110 22 - - 28.08686 59.35050 129.16673 16.85444 110 22 - - 28.55496 60.82200 133.74225 17.45148 110 21 - - 29.02179 62.29350 138.31778 18.04852 110 21 - - 29.48702 63.76500 142.89330 18.64557 110 21 - - 29.48702 63.76500 134.37719 18.64557 110 22 - - 29.95027 65.23650 138.68002 19.24261 110 22 - - 30.41101 66.70800 142.98285 19.83965 110 21 - - 30.86871 68.17950 147.28569 20.43669 110 21 - - 31.32281 69.65100 151.58852 21.03373 110 21 - - 31.77280 71.12250 155.89135 21.63077 110 20 - - 31.77280 71.12250 148.56686 21.63077 110 21 - - 32.21809 72.59400 152.66753 22.22781 110 21 - - 32.65810 74.06550 156.76819 22.82485 110 21 - - 33.09226 75.53700 160.86886 23.42190 110 21 - - 33.52000 77.00850 164.96952 24.01894 110 20 - - 33.94078 78.48000 169.07019 24.61598 110 20 - - 33.94078 78.48000 162.64229 24.61598 110 21 - - 34.35402 79.95150 166.58705 25.21302 110 21 - - 34.75929 81.42300 170.53181 25.81006 110 20 - - 35.15621 82.89450 174.47657 26.40710 110 20 - - 35.54444 84.36600 178.42134 27.00414 110 20 - - 35.92360 85.83750 182.36610 27.60119 110 20 - - 35.92360 85.83750 176.63785 27.60119 110 20 - - 36.29337 87.30900 180.45870 28.19823 110 20 - - 36.65372 88.78050 184.27955 28.79527 110 20 - - 37.00476 90.25200 188.10041 29.39231 110 20 - - 37.34661 91.72350 191.92126 29.98935 110 19 - - 37.67937 93.19500 195.74212 30.58639 110 19 - - 37.67937 93.19500 190.57533 30.58639 110 20 - - 38.00322 94.66650 194.29533 31.18343 110 20 - - 38.31889 96.13800 198.01533 31.78047 110 19 - - 38.62730 97.60950 201.73533 32.37752 110 19 - - 38.92935 99.08100 205.45533 32.97456 110 19 - - 39.22597 100.55250 209.17533 33.57160 110 19 - - 39.22597 100.55250 204.46924 33.57160 110 19 - - 39.51821 102.02400 208.10555 34.16864 110 19 - - 39.80789 103.49550 211.74185 34.76568 110 19 - - 40.09715 104.96700 215.37816 35.36272 110 19 - - 40.38808 106.43850 219.01447 35.95976 110 18 - - 40.68281 107.91000 222.65077 36.55681 110 18 - - 44.21189 107.91000 472.34543 23.58188 110 9 - - 43.30555 109.38150 483.79847 24.15368 110 9 - - 42.44440 110.85300 495.25151 24.72547 110 9 - - 41.63483 112.32450 506.70455 25.29727 110 8 - - 40.88322 113.79600 518.15759 25.86906 110 8 - - 40.19598 115.26750 529.61062 26.44085 110 8 - - 40.19598 115.26750 492.19333 26.44085 110 8 - - 39.57644 116.73900 502.83721 27.01265 110 8 - - 39.02125 118.21050 513.48109 27.58444 110 8 - - 38.52678 119.68200 524.12496 28.15623 110 7 - - 38.08939 121.15350 534.76884 28.72803 110 7 - - 37.70543 122.62500 545.41271 29.29982 110 7 - - 37.70543 122.62500 532.10284 29.29982 110 7 - - 37.36977 124.09650 542.48697 29.87162 110 7 - - 37.07541 125.56800 552.87110 30.44341 110 7 - - 36.81599 127.03950 563.25523 31.01520 110 7 - - 36.58516 128.51100 573.63936 31.58700 110 6 - - 36.37653 129.98250 584.02349 32.15879 110 6 - - 36.37653 129.98250 576.97138 32.15879 110 6 - - 36.18338 131.45400 587.23012 32.73059 110 6 - - 36.00098 132.92550 597.48886 33.30238 110 6 - - 35.82600 134.39700 607.74760 33.87417 110 6 - - 35.65512 135.86850 618.00634 34.44597 110 6 - - 35.48500 137.34000 628.26508 35.01776 110 6 - + 0.00003 1.96200 0.00003 0.00000 202 100 P + 13.91288 3.13920 23.11803 0.47763 110 60 - + 14.38913 4.31640 46.23605 0.95527 110 31 - + 14.86650 5.49360 69.35408 1.43290 110 21 - + 15.34517 6.67080 92.47211 1.91053 110 17 - + 15.82529 7.84800 115.59014 2.38817 110 14 - + 15.82529 7.84800 45.88359 2.38817 110 34 - + 16.30699 9.02520 55.06031 2.86580 110 30 - + 16.79010 10.20240 64.23703 3.34343 110 26 - + 17.27442 11.37960 73.41375 3.82106 110 24 - + 17.75974 12.55680 82.59047 4.29870 110 22 - + 18.24586 13.73400 91.76719 4.77633 110 20 - + 18.24586 13.73400 63.87191 4.77633 110 29 - + 18.73249 14.91120 70.25910 5.25396 110 27 - + 19.21910 16.08840 76.64629 5.73160 110 25 - + 19.70512 17.26560 83.03348 6.20923 110 24 - + 20.18994 18.44280 89.42067 6.68686 110 23 - + 20.67297 19.62000 95.80786 7.16450 110 22 - + 11.93129 19.62000 35.08661 6.52790 110 34 - + 12.02544 20.92800 35.58626 6.62086 110 34 - + 12.11792 22.23600 36.08590 6.71382 110 34 - + 12.20843 23.54400 36.58555 6.80678 110 33 - + 12.29668 24.85200 37.08520 6.89974 110 33 - + 12.38235 26.16000 37.58485 6.99270 110 33 - + 12.38235 26.16000 36.91805 6.99270 110 34 - + 12.46519 27.46800 37.40884 7.08566 110 33 - + 12.54511 28.77600 37.89962 7.17862 110 33 - + 12.62205 30.08400 38.39040 7.27158 110 33 - + 12.69598 31.39200 38.88119 7.36454 110 33 - + 12.76684 32.70000 39.37197 7.45750 110 32 - + 12.76684 32.70000 38.76817 7.45750 110 33 - + 12.83463 34.00800 39.25143 7.55046 110 33 - + 12.89951 35.31600 39.73469 7.64342 110 32 - + 12.96171 36.62400 40.21794 7.73638 110 32 - + 13.02143 37.93200 40.70120 7.82934 110 32 - + 13.07889 39.24000 41.18446 7.92230 110 32 - + 21.58634 39.24000 87.32679 8.69488 110 25 - + 21.91454 40.22100 91.32437 9.09290 110 24 - + 22.24036 41.20200 95.32195 9.49093 110 23 - + 22.56411 42.18300 99.31953 9.88896 110 23 - + 22.88608 43.16400 103.31711 10.28699 110 22 - + 23.20655 44.14500 107.31469 10.68501 110 22 - + 23.20655 44.14500 97.34156 10.68501 110 24 - + 23.52580 45.12600 100.96763 11.08304 110 23 - + 23.84401 46.10700 104.59370 11.48107 110 23 - + 24.16134 47.08800 108.21977 11.87910 110 22 - + 24.47793 48.06900 111.84584 12.27712 110 22 - + 24.79397 49.05000 115.47191 12.67515 110 21 - + 24.79397 49.05000 105.38096 12.67515 110 24 - + 25.26729 50.52150 110.34475 13.27219 110 23 - + 25.73987 51.99300 115.30854 13.86923 110 22 - + 26.21181 53.46450 120.27233 14.46628 110 22 - + 26.68318 54.93600 125.23612 15.06332 110 21 - + 27.15408 56.40750 130.19991 15.66036 110 21 - + 27.15408 56.40750 120.02635 15.66036 110 23 - + 27.62449 57.87900 124.60227 16.25740 110 22 - + 28.09413 59.35050 129.17820 16.85444 110 22 - + 28.56270 60.82200 133.75413 17.45148 110 21 - + 29.02989 62.29350 138.33006 18.04852 110 21 - + 29.49539 63.76500 142.90599 18.64557 110 21 - + 29.49539 63.76500 134.39075 18.64557 110 22 - + 29.95881 65.23650 138.69402 19.24261 110 22 - + 30.41965 66.70800 142.99728 19.83965 110 21 - + 30.87737 68.17950 147.30055 20.43669 110 21 - + 31.33143 69.65100 151.60382 21.03373 110 21 - + 31.78132 71.12250 155.90708 21.63077 110 20 - + 31.78132 71.12250 148.58141 21.63077 110 21 - + 32.22647 72.59400 152.68247 22.22781 110 21 - + 32.66628 74.06550 156.78354 22.82485 110 21 - + 33.10022 75.53700 160.88461 23.42190 110 21 - + 33.52771 77.00850 164.98567 24.01894 110 20 - + 33.94820 78.48000 169.08674 24.61598 110 20 - + 33.94820 78.48000 162.65695 24.61598 110 21 - + 34.36114 79.95150 166.60206 25.21302 110 21 - + 34.76608 81.42300 170.54718 25.81006 110 20 - + 35.16268 82.89450 174.49230 26.40710 110 20 - + 35.55056 84.36600 178.43742 27.00414 110 20 - + 35.92938 85.83750 182.38253 27.60119 110 20 - + 35.92938 85.83750 176.65220 27.60119 110 20 - + 36.29880 87.30900 180.47336 28.19823 110 20 - + 36.65880 88.78050 184.29453 28.79527 110 20 - + 37.00950 90.25200 188.11569 29.39231 110 20 - + 37.35100 91.72350 191.93686 29.98935 110 19 - + 37.68343 93.19500 195.75802 30.58639 110 19 - + 37.68343 93.19500 190.58918 30.58639 110 20 - + 38.00696 94.66650 194.30945 31.18343 110 20 - + 38.32231 96.13800 198.02972 31.78047 110 19 - + 38.63041 97.60950 201.74999 32.37752 110 19 - + 38.93217 99.08100 205.47026 32.97456 110 19 - + 39.22851 100.55250 209.19053 33.57160 110 19 - + 39.22851 100.55250 204.48250 33.57160 110 19 - + 39.52047 102.02400 208.11904 34.16864 110 19 - + 39.80991 103.49550 211.75558 34.76568 110 19 - + 40.09892 104.96700 215.39212 35.36272 110 19 - + 40.38962 106.43850 219.02867 35.95976 110 18 - + 40.68414 107.91000 222.66521 36.55681 110 18 - + 44.21853 107.91000 473.46689 23.58188 110 9 - + 43.31120 109.38150 484.94712 24.15368 110 9 - + 42.44913 110.85300 496.42735 24.72547 110 9 - + 41.63871 112.32450 507.90758 25.29727 110 8 - + 40.88633 113.79600 519.38782 25.86906 110 8 - + 40.19838 115.26750 530.86805 26.44085 110 8 - + 40.19838 115.26750 493.03603 26.44085 110 8 - + 39.57819 116.73900 503.69813 27.01265 110 8 - + 39.02241 118.21050 514.36023 27.58444 110 8 - + 38.52740 119.68200 525.02233 28.15623 110 7 - + 38.08952 121.15350 535.68443 28.72803 110 7 - + 37.70512 122.62500 546.34653 29.29982 110 7 - + 37.70512 122.62500 532.73942 29.29982 110 7 - + 37.36903 124.09650 543.13598 29.87162 110 7 - + 37.07429 125.56800 553.53253 30.44341 110 7 - + 36.81452 127.03950 563.92908 31.01520 110 7 - + 36.58335 128.51100 574.32563 31.58700 110 6 - + 36.37440 129.98250 584.72219 32.15879 110 6 - + 36.37440 129.98250 577.46709 32.15879 110 6 - + 36.18093 131.45400 587.73464 32.73059 110 6 - + 35.99822 132.92550 598.00220 33.30238 110 6 - + 35.82294 134.39700 608.26975 33.87417 110 6 - + 35.65176 135.86850 618.53730 34.44597 110 6 - + 35.48135 137.34000 628.80486 35.01776 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9586,10 +9676,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 29.430 'Clay' - -4.00 25.150 'Peat' - -6.00 224.198 'Clay' - -13.00 115.368 'Sand' + 0.00 29.868 'Clay' + -4.00 25.113 'Peat' + -6.00 224.224 'Clay' + -13.00 115.369 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9777,21 +9867,21 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.88 : Percentage mobilized resistance left + 12.76 : Percentage mobilized resistance left 9.50 : Percentage mobilized resistance right 267.34 : Effective left 323.34 : Effective right 672.97 : Water pressure left 672.97 : Water pressure right - 2075.06 : Max effective resistance left + 2095.11 : Max effective resistance left 3402.22 : Max effective resistance right --22107.90 : Max moment left +-22149.29 : Max moment left -32715.56 : Max moment right -2467.64 : Max mobilized moment left -2485.26 : Max mobilized moment right 76.73 : Vertical force left 84.85 : Vertical force right - 11.2 : Max mobilized moment percentage left + 11.1 : Max mobilized moment percentage left 7.6 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support @@ -10342,26 +10432,26 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.05000 0.00000 0.00000 0.00000 0.00000 - -2.70000 62.84700 0.00000 14.92602 0.00000 - -3.35000 62.87500 0.00000 57.35045 0.00000 - -4.00000 62.99400 0.00000 110.72992 0.00000 - -4.66667 62.32100 0.00000 136.50009 0.00000 - -5.33333 61.77800 0.00000 163.45078 0.00000 - -6.00000 61.33000 0.00000 191.60665 0.00000 - -6.50000 61.81300 0.00000 241.66068 0.00000 - -7.00000 62.16100 0.00000 296.24474 0.00000 - -7.75000 62.54200 0.00000 386.64724 0.00000 - -8.50000 62.82300 0.00000 487.29991 0.00000 - -9.25000 63.04300 0.00000 598.21140 0.00000 - -10.00000 63.22200 0.00000 719.38503 0.00000 - -10.75000 63.37200 0.00000 850.82198 0.00000 - -11.50000 63.50000 0.00000 992.52245 0.00000 - -12.25000 63.61100 0.00000 1144.48623 0.00000 - -13.00000 63.70900 0.00000 1306.71292 0.00000 - -13.75000 67.29800 0.00000 1688.40876 0.00000 - -14.50000 68.73100 33.38900 2083.09739 8.09702 - -15.25000 69.59400 33.12300 2507.07004 20.16261 - -16.00000 70.18100 32.88600 2964.36770 33.35786 + -2.70000 62.45700 0.00000 37.86568 0.00000 + -3.35000 62.65800 0.00000 83.49755 0.00000 + -4.00000 62.83400 0.00000 136.88390 0.00000 + -4.66667 62.30300 0.00000 162.63712 0.00000 + -5.33333 61.85300 0.00000 189.59360 0.00000 + -6.00000 61.46700 0.00000 217.76824 0.00000 + -6.50000 61.86300 0.00000 267.80287 0.00000 + -7.00000 62.16700 0.00000 322.38162 0.00000 + -7.75000 62.51700 0.00000 412.78740 0.00000 + -8.50000 62.78500 0.00000 513.44898 0.00000 + -9.25000 63.00000 0.00000 624.37146 0.00000 + -10.00000 63.17800 0.00000 745.55672 0.00000 + -10.75000 63.32900 0.00000 877.00529 0.00000 + -11.50000 63.45900 0.00000 1018.71707 0.00000 + -12.25000 63.57200 0.00000 1170.69171 0.00000 + -13.00000 63.67200 0.00000 1332.92875 0.00000 + -13.75000 67.23300 0.00000 1715.50908 0.00000 + -14.50000 68.66700 33.27900 2110.85977 0.75837 + -15.25000 69.53600 33.02800 2535.33101 12.83201 + -16.00000 70.12900 32.80300 2993.01596 26.03412 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -10378,26 +10468,26 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.37500 2.01175 22.96311 0.00000 0.64302 0.00000 11.41450 - -3.02500 6.03525 65.26835 0.00000 0.64302 0.00000 10.81452 - -3.67500 10.05875 82.12227 0.00000 0.64302 0.00000 8.16426 - -4.33333 12.46717 38.65526 0.00000 0.58588 0.00000 3.10056 - -5.00000 13.26050 40.42603 0.00000 0.58588 0.00000 3.04861 - -5.66667 14.05383 42.23381 0.00000 0.58588 0.00000 3.00515 - -6.25000 15.99800 100.10805 0.00000 0.64302 0.00000 6.25754 - -6.75000 19.09300 109.16812 0.00000 0.64302 0.00000 5.71770 - -7.37500 22.96175 120.53667 0.00000 0.64302 0.00000 5.24945 - -8.12500 27.60425 134.20357 0.00000 0.64302 0.00000 4.86170 - -8.87500 32.24675 147.88198 0.00000 0.64302 0.00000 4.58595 - -9.62500 36.88925 161.56484 0.00000 0.64302 0.00000 4.37973 - -10.37500 41.53175 175.24926 0.00000 0.64302 0.00000 4.21965 - -11.12500 46.17425 188.93396 0.00000 0.64302 0.00000 4.09176 - -11.87500 50.81675 202.61837 0.00000 0.64302 0.00000 3.98724 - -12.62500 55.45925 216.30225 0.00000 0.64302 0.00000 3.90020 - -13.37500 61.22675 508.92778 0.00000 0.41479 0.00000 8.31218 - -14.12500 68.11925 526.25151 10.79603 0.41479 0.15849 7.72544 - -14.87500 75.01175 565.29687 16.08746 0.41479 0.21447 7.53611 - -15.62500 81.90425 609.73021 17.59366 0.41479 0.21481 7.44443 + -2.37500 2.01175 58.25489 0.00000 0.64302 0.00000 28.95732 + -3.02500 6.03525 70.20287 0.00000 0.64302 0.00000 11.63214 + -3.67500 10.05875 82.13284 0.00000 0.64302 0.00000 8.16531 + -4.33333 12.46717 38.62984 0.00000 0.58588 0.00000 3.09853 + -5.00000 13.26050 40.43472 0.00000 0.58588 0.00000 3.04926 + -5.66667 14.05383 42.26197 0.00000 0.58588 0.00000 3.00715 + -6.25000 15.99800 100.06925 0.00000 0.64302 0.00000 6.25511 + -6.75000 19.09300 109.15750 0.00000 0.64302 0.00000 5.71715 + -7.37500 22.96175 120.54104 0.00000 0.64302 0.00000 5.24965 + -8.12500 27.60425 134.21544 0.00000 0.64302 0.00000 4.86213 + -8.87500 32.24675 147.89664 0.00000 0.64302 0.00000 4.58640 + -9.62500 36.88925 161.58035 0.00000 0.64302 0.00000 4.38015 + -10.37500 41.53175 175.26476 0.00000 0.64302 0.00000 4.22002 + -11.12500 46.17425 188.94904 0.00000 0.64302 0.00000 4.09209 + -11.87500 50.81675 202.63285 0.00000 0.64302 0.00000 3.98752 + -12.62500 55.45925 216.31606 0.00000 0.64302 0.00000 3.90045 + -13.37500 61.22675 510.10710 0.00000 0.41479 0.00000 8.33144 + -14.12500 68.11925 527.13426 1.01116 0.41479 0.01484 7.73840 + -14.87500 75.01175 565.96164 16.09819 0.41479 0.21461 7.54497 + -15.62500 81.90425 610.24661 17.60281 0.41479 0.21492 7.45073 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -10438,126 +10528,126 @@ Status character 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.39240 0.00000 0.00000 -1 0 - 0.00000 0.49050 0.00000 0.00000 -1 0 - - 0.00000 0.49050 0.00001 0.00000 1 0 A - 0.00000 1.76580 9.18524 0.51744 1 0 A - 0.00000 3.04110 18.37049 1.03487 1 0 A - 0.77263 4.31640 27.55573 1.55231 110 0 - - 2.06016 5.59170 36.74098 2.06974 110 0 - - 3.33643 6.86700 45.92622 2.58718 110 7 - - 3.33643 6.86700 43.51223 2.58718 110 8 - - 4.59853 8.14230 52.21468 3.10461 110 9 - - 5.84446 9.41760 60.91712 3.62205 110 10 - - 7.07238 10.69290 69.61957 4.13949 110 10 - - 8.28043 11.96820 78.32201 4.65692 110 11 - - 9.46675 13.24350 87.02446 5.17436 110 11 - - 9.46675 13.24350 65.69782 5.17436 110 14 - - 10.62972 14.51880 72.26760 5.69179 110 15 - - 11.76825 15.79410 78.83738 6.20923 110 15 - - 12.88135 17.06940 85.40716 6.72667 110 15 - - 13.96799 18.34470 91.97694 7.24410 110 15 - - 15.02717 19.62000 98.54673 7.76154 110 15 - - 9.97815 19.62000 37.42537 7.07189 110 27 - - 10.28154 20.92800 37.91732 7.16485 110 27 - - 10.57276 22.23600 38.40928 7.25781 110 28 - - 10.85167 23.54400 38.90123 7.35077 110 28 - - 11.11813 24.85200 39.39319 7.44373 110 28 - - 11.37201 26.16000 39.88515 7.53669 110 29 - - 11.37201 26.16000 39.21675 7.53669 110 29 - - 11.61324 27.46800 39.70046 7.62965 110 29 - - 11.84198 28.77600 40.18417 7.72261 110 29 - - 12.05843 30.08400 40.66788 7.81557 110 30 - - 12.26282 31.39200 41.15160 7.90853 110 30 - - 12.45534 32.70000 41.63531 8.00149 110 30 - - 12.45534 32.70000 41.04177 8.00149 110 30 - - 12.63627 34.00800 41.51858 8.09445 110 30 - - 12.80606 35.31600 41.99540 8.18741 110 30 - - 12.96524 36.62400 42.47222 8.28037 110 31 - - 13.11430 37.93200 42.94903 8.37333 110 31 - - 13.25377 39.24000 43.42585 8.46629 110 31 - - 21.26062 39.24000 90.42452 9.29192 110 24 - - 21.73099 40.22100 94.29793 9.68995 110 23 - - 22.18943 41.20200 98.17135 10.08797 110 23 - - 22.63656 42.18300 102.04476 10.48600 110 22 - - 23.07301 43.16400 105.91817 10.88403 110 22 - - 23.49940 44.14500 109.79159 11.28206 110 21 - - 23.49940 44.14500 100.31997 11.28206 110 23 - - 23.91635 45.12600 103.85923 11.68008 110 23 - - 24.32435 46.10700 107.39849 12.07811 110 23 - - 24.72392 47.08800 110.93775 12.47614 110 22 - - 25.11555 48.06900 114.47701 12.87417 110 22 - - 25.49972 49.05000 118.01627 13.27219 110 22 - - 25.49972 49.05000 108.35137 13.27219 110 24 - - 26.06307 50.52150 113.22549 13.86923 110 23 - - 26.61202 51.99300 118.09961 14.46628 110 23 - - 27.14768 53.46450 122.97373 15.06332 110 22 - - 27.67117 54.93600 127.84784 15.66036 110 22 - - 28.18359 56.40750 132.72196 16.25740 110 21 - - 28.18359 56.40750 122.91835 16.25740 110 23 - - 28.68595 57.87900 127.43243 16.85444 110 23 - - 29.17884 59.35050 131.94652 17.45148 110 22 - - 29.66279 60.82200 136.46061 18.04852 110 22 - - 30.13831 62.29350 140.97470 18.64557 110 21 - - 30.60594 63.76500 145.48879 19.24261 110 21 - - 30.60594 63.76500 137.23684 19.24261 110 22 - - 31.06609 65.23650 141.49490 19.83965 110 22 - - 31.51889 66.70800 145.75295 20.43669 110 22 - - 31.96443 68.17950 150.01101 21.03373 110 21 - - 32.40280 69.65100 154.26906 21.63077 110 21 - - 32.83408 71.12250 158.52712 22.22781 110 21 - - 32.83408 71.12250 151.39840 22.22781 110 22 - - 33.25827 72.59400 155.46498 22.82485 110 21 - - 33.67525 74.06550 159.53156 23.42190 110 21 - - 34.08486 75.53700 163.59813 24.01894 110 21 - - 34.48696 77.00850 167.66471 24.61598 110 21 - - 34.88140 78.48000 171.73129 25.21302 110 20 - - 34.88140 78.48000 165.45441 25.21302 110 21 - - 35.26799 79.95150 169.37235 25.81006 110 21 - - 35.64658 81.42300 173.29029 26.40710 110 21 - - 36.01703 82.89450 177.20823 27.00414 110 20 - - 36.37922 84.36600 181.12617 27.60119 110 20 - - 36.73304 85.83750 185.04412 28.19823 110 20 - - 36.73304 85.83750 179.43596 28.19823 110 20 - - 37.07836 87.30900 183.23516 28.79527 110 20 - - 37.41529 88.78050 187.03436 29.39231 110 20 - - 37.74404 90.25200 190.83356 29.98935 110 20 - - 38.06481 91.72350 194.63276 30.58639 110 20 - - 38.37783 93.19500 198.43196 31.18343 110 19 - - 38.37783 93.19500 193.36300 31.18343 110 20 - - 38.68336 94.66650 197.06515 31.78047 110 20 - - 38.98213 96.13800 200.76730 32.37752 110 19 - - 39.27504 97.60950 204.46945 32.97456 110 19 - - 39.56300 99.08100 208.17160 33.57160 110 19 - - 39.84693 100.55250 211.87375 34.16864 110 19 - - 39.84693 100.55250 207.24891 34.16864 110 19 - - 40.12785 102.02400 210.87024 34.76568 110 19 - - 40.40751 103.49550 214.49158 35.36272 110 19 - - 40.68794 104.96700 218.11292 35.95976 110 19 - - 40.97115 106.43850 221.73426 36.55681 110 18 - - 41.25916 107.91000 225.35559 37.15385 110 18 - - 44.49359 107.91000 480.28193 23.96702 110 9 - - 43.55809 109.38150 491.74027 24.53881 110 9 - - 42.67163 110.85300 503.19861 25.11061 110 8 - - 41.84026 112.32450 514.65695 25.68240 110 8 - - 41.07000 113.79600 526.11529 26.25420 110 8 - - 40.36690 115.26750 537.57363 26.82599 110 8 - - 40.36690 115.26750 499.62769 26.82599 110 8 - - 39.73400 116.73900 510.27722 27.39778 110 8 - - 39.16768 118.21050 520.92674 27.96958 110 8 - - 38.66404 119.68200 531.57627 28.54137 110 7 - - 38.21917 121.15350 542.22580 29.11317 110 7 - - 37.82917 122.62500 552.87532 29.68496 110 7 - - 37.82917 122.62500 539.32555 29.68496 110 7 - - 37.48863 124.09650 549.71408 30.25675 110 7 - - 37.19036 125.56800 560.10261 30.82855 110 7 - - 36.92783 127.03950 570.49113 31.40034 110 6 - - 36.69450 128.51100 580.87966 31.97213 110 6 - - 36.48381 129.98250 591.26819 32.54393 110 6 - - 36.48381 129.98250 584.07485 32.54393 110 6 - - 36.28888 131.45400 594.33700 33.11572 110 6 - - 36.10489 132.92550 604.59914 33.68752 110 6 - - 35.92846 134.39700 614.86128 34.25931 110 6 - - 35.75620 135.86850 625.12342 34.83110 110 6 - - 35.58472 137.34000 635.38557 35.40290 110 6 - + 0.00000 0.49050 0.00003 0.00000 1 0 A + 0.00000 1.76580 23.30196 0.51744 1 0 A + 0.00000 3.04110 46.60391 1.03487 1 0 A + 0.77263 4.31640 69.90587 1.55231 110 0 - + 2.06016 5.59170 93.20783 2.06974 110 0 - + 3.33643 6.86700 116.50978 2.58718 110 3 - + 3.33643 6.86700 46.80192 2.58718 110 7 - + 4.59853 8.14230 56.16230 3.10461 110 8 - + 5.84446 9.41760 65.52268 3.62205 110 9 - + 7.07238 10.69290 74.88307 4.13949 110 9 - + 8.28043 11.96820 84.24345 4.65692 110 10 - + 9.46675 13.24350 93.60383 5.17436 110 10 - + 9.46675 13.24350 65.70628 5.17436 110 14 - + 10.62972 14.51880 72.27690 5.69179 110 15 - + 11.76825 15.79410 78.84753 6.20923 110 15 - + 12.88135 17.06940 85.41816 6.72667 110 15 - + 13.96799 18.34470 91.98879 7.24410 110 15 - + 15.02717 19.62000 98.55941 7.76154 110 15 - + 9.97815 19.62000 37.40076 7.07189 110 27 - + 10.28154 20.92800 37.89239 7.16485 110 27 - + 10.57276 22.23600 38.38402 7.25781 110 28 - + 10.85167 23.54400 38.87565 7.35077 110 28 - + 11.11813 24.85200 39.36729 7.44373 110 28 - + 11.37201 26.16000 39.85892 7.53669 110 29 - + 11.37201 26.16000 39.22518 7.53669 110 29 - + 11.61324 27.46800 39.70899 7.62965 110 29 - + 11.84198 28.77600 40.19281 7.72261 110 29 - + 12.05843 30.08400 40.67663 7.81557 110 30 - + 12.26282 31.39200 41.16044 7.90853 110 30 - + 12.45534 32.70000 41.64426 8.00149 110 30 - + 12.45534 32.70000 41.06913 8.00149 110 30 - + 12.63627 34.00800 41.54626 8.09445 110 30 - + 12.80606 35.31600 42.02340 8.18741 110 30 - + 12.96524 36.62400 42.50053 8.28037 110 31 - + 13.11430 37.93200 42.97767 8.37333 110 31 - + 13.25377 39.24000 43.45480 8.46629 110 31 - + 21.26062 39.24000 90.38947 9.29192 110 24 - + 21.73099 40.22100 94.26138 9.68995 110 23 - + 22.18943 41.20200 98.13330 10.08797 110 23 - + 22.63656 42.18300 102.00521 10.48600 110 22 - + 23.07301 43.16400 105.87712 10.88403 110 22 - + 23.49940 44.14500 109.74903 11.28206 110 21 - + 23.49940 44.14500 100.31021 11.28206 110 23 - + 23.91635 45.12600 103.84912 11.68008 110 23 - + 24.32435 46.10700 107.38804 12.07811 110 23 - + 24.72392 47.08800 110.92695 12.47614 110 22 - + 25.11555 48.06900 114.46587 12.87417 110 22 - + 25.49972 49.05000 118.00478 13.27219 110 22 - + 25.49972 49.05000 108.35530 13.27219 110 24 - + 26.06307 50.52150 113.22959 13.86923 110 23 - + 26.61202 51.99300 118.10389 14.46628 110 23 - + 27.14768 53.46450 122.97819 15.06332 110 22 - + 27.67117 54.93600 127.85248 15.66036 110 22 - + 28.18359 56.40750 132.72678 16.25740 110 21 - + 28.18359 56.40750 122.92922 16.25740 110 23 - + 28.68595 57.87900 127.44371 16.85444 110 23 - + 29.17884 59.35050 131.95820 17.45148 110 22 - + 29.66279 60.82200 136.47269 18.04852 110 22 - + 30.13831 62.29350 140.98717 18.64557 110 21 - + 30.60594 63.76500 145.50166 19.24261 110 21 - + 30.60594 63.76500 137.25045 19.24261 110 22 - + 31.06609 65.23650 141.50892 19.83965 110 22 - + 31.51889 66.70800 145.76740 20.43669 110 22 - + 31.96443 68.17950 150.02588 21.03373 110 21 - + 32.40280 69.65100 154.28435 21.63077 110 21 - + 32.83408 71.12250 158.54283 22.22781 110 21 - + 32.83408 71.12250 151.41293 22.22781 110 22 - + 33.25827 72.59400 155.47990 22.82485 110 21 - + 33.67525 74.06550 159.54687 23.42190 110 21 - + 34.08486 75.53700 163.61384 24.01894 110 21 - + 34.48696 77.00850 167.68080 24.61598 110 21 - + 34.88140 78.48000 171.74777 25.21302 110 20 - + 34.88140 78.48000 165.46904 25.21302 110 21 - + 35.26799 79.95150 169.38733 25.81006 110 21 - + 35.64658 81.42300 173.30561 26.40710 110 21 - + 36.01703 82.89450 177.22390 27.00414 110 20 - + 36.37922 84.36600 181.14219 27.60119 110 20 - + 36.73304 85.83750 185.06047 28.19823 110 20 - + 36.73304 85.83750 179.45028 28.19823 110 20 - + 37.07836 87.30900 183.24979 28.79527 110 20 - + 37.41529 88.78050 187.04929 29.39231 110 20 - + 37.74404 90.25200 190.84879 29.98935 110 20 - + 38.06481 91.72350 194.64830 30.58639 110 20 - + 38.37783 93.19500 198.44780 31.18343 110 19 - + 38.37783 93.19500 193.37682 31.18343 110 20 - + 38.68336 94.66650 197.07923 31.78047 110 20 - + 38.98213 96.13800 200.78165 32.37752 110 19 - + 39.27504 97.60950 204.48406 32.97456 110 19 - + 39.56300 99.08100 208.18647 33.57160 110 19 - + 39.84693 100.55250 211.88889 34.16864 110 19 - + 39.84693 100.55250 207.26214 34.16864 110 19 - + 40.12785 102.02400 210.88370 34.76568 110 19 - + 40.40751 103.49550 214.50527 35.36272 110 19 - + 40.68794 104.96700 218.12684 35.95976 110 19 - + 40.97115 106.43850 221.74841 36.55681 110 18 - + 41.25916 107.91000 225.36998 37.15385 110 18 - + 44.49359 107.91000 481.39487 23.96702 110 9 - + 43.55809 109.38150 492.87977 24.53881 110 9 - + 42.67163 110.85300 504.36466 25.11061 110 8 - + 41.84026 112.32450 515.84955 25.68240 110 8 - + 41.07000 113.79600 527.33444 26.25420 110 8 - + 40.36690 115.26750 538.81934 26.82599 110 7 - + 40.36690 115.26750 500.46578 26.82599 110 8 - + 39.73400 116.73900 511.13317 27.39778 110 8 - + 39.16768 118.21050 521.80056 27.96958 110 8 - + 38.66404 119.68200 532.46795 28.54137 110 7 - + 38.21917 121.15350 543.13534 29.11317 110 7 - + 37.82917 122.62500 553.80273 29.68496 110 7 - + 37.82917 122.62500 539.95978 29.68496 110 7 - + 37.48863 124.09650 550.36052 30.25675 110 7 - + 37.19036 125.56800 560.76127 30.82855 110 7 - + 36.92783 127.03950 571.16202 31.40034 110 6 - + 36.69450 128.51100 581.56276 31.97213 110 6 - + 36.48381 129.98250 591.96351 32.54393 110 6 - + 36.48381 129.98250 584.56952 32.54393 110 6 - + 36.28888 131.45400 594.84036 33.11572 110 6 - + 36.10489 132.92550 605.11119 33.68752 110 6 - + 35.92846 134.39700 615.38202 34.25931 110 6 - + 35.75620 135.86850 625.65286 34.83110 110 6 - + 35.58472 137.34000 635.92369 35.40290 110 6 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10730,7 +10820,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [ANCHOR DATA] [TABLE] @@ -10745,7 +10835,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 161.86324 210000000.000 1 2 0 'Anchor' + -1.50000 155.07134 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10772,22 +10862,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 47.29 : Percentage mobilized resistance left - 7.97 : Percentage mobilized resistance right - 540.05 : Effective left - 306.97 : Effective right + 46.55 : Percentage mobilized resistance left + 7.82 : Percentage mobilized resistance right + 540.98 : Effective left + 301.12 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3850.19 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -35710.14 : Max moment right --5610.18 : Max mobilized moment left --2233.63 : Max mobilized moment right - 173.07 : Vertical force left - 81.13 : Vertical force right - 41.4 : Max mobilized moment percentage left - 6.3 : Max mobilized moment percentage right +-5546.18 : Max mobilized moment left +-2168.15 : Max mobilized moment right + 171.92 : Vertical force left + 78.79 : Vertical force right + 40.5 : Max mobilized moment percentage left + 6.1 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -10802,144 +10892,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01710 0.09392 45.73554 - 0.07591 1.67242 40.58186 - 0.64648 6.48812 35.42830 - 2.17095 14.27594 30.27341 - 4.98122 23.10281 25.11572 - 9.07515 31.39681 19.95374 - 9.09127 31.48378 19.95374 - 14.30123 37.85048 14.78492 - 20.40686 43.42607 9.60377 - 27.28939 48.20833 4.40441 - 34.83144 52.23217 -0.81906 - 42.92465 55.56822 -6.07250 - 42.92719 -106.30945 -6.07250 - 32.35566 -105.17863 -9.59364 - 21.87991 -104.39430 -13.12720 - 11.46515 -103.95960 -16.66917 - 1.07782 -103.83002 -20.21555 - -9.30518 -103.83002 -23.76234 - -9.31196 -103.87872 -23.76234 - -23.15974 -103.81768 -28.48512 - -36.99125 -103.63456 -33.19210 - -50.79020 -103.32936 -37.87387 - -64.54032 -102.90208 -42.52102 - -78.22532 -102.35272 -47.12415 - -78.22474 -102.35111 -47.12415 - -91.77274 -100.84509 -51.67380 - -105.11042 -99.19634 -56.16084 - -118.21877 -97.40526 -60.57633 - -131.07884 -95.47216 -64.91133 - -143.67172 -93.39739 -69.15691 - -143.67169 -93.39938 -69.15691 - -155.95951 -90.89344 -73.30423 - -167.90341 -88.24047 -77.34515 - -179.48378 -85.44078 -81.27176 - -190.68110 -82.49467 -85.07619 - -201.47587 -79.40242 -88.75054 - -201.47594 -79.40411 -88.75054 - -211.77585 -75.07214 -92.28704 - -221.48921 -70.60603 -95.67904 - -230.59818 -66.00619 -98.92035 - -239.08494 -61.27301 -102.00475 - -246.93174 -56.40683 -104.92604 - -246.93174 -56.40786 -104.92604 - -254.12219 -51.42681 -107.67834 - -260.63967 -46.31348 -110.25725 - -266.46658 -41.06817 -112.65882 - -271.58533 -35.69114 -114.87906 - -275.97838 -30.18265 -116.91403 - -275.97838 -30.18360 -116.91403 - -279.62952 -24.56165 -118.76011 - -282.52234 -18.80877 -120.41541 - -284.63939 -12.92519 -121.87848 - -285.96325 -6.91110 -123.14790 - -286.47656 -0.76670 -124.22221 - -286.47657 -0.76747 -124.22221 - -286.35931 3.12634 -124.89937 - -285.84860 7.10133 -125.46664 - -284.93634 11.15746 -125.92438 - -283.61440 15.29470 -126.27294 - -281.87469 19.51300 -126.51266 - -281.87470 19.51242 -126.51266 - -279.70772 23.84074 -126.64403 - -277.10384 28.25036 -126.66806 - -274.05494 32.74125 -126.58594 - -270.55288 37.31337 -126.39882 - -266.58956 41.96670 -126.10788 - -266.58956 41.96628 -126.10788 - -262.15664 46.69434 -125.71443 - -257.25027 51.43515 -125.22038 - -251.86918 56.18868 -124.62779 - -246.01211 60.95491 -123.93874 - -239.67778 65.73381 -123.15527 - -239.67773 65.73312 -123.15527 - -228.78449 72.70983 -121.73867 - -216.88837 78.49710 -120.10530 - -204.17628 83.09483 -118.26712 - -190.83516 86.50296 -116.23607 - -177.05195 88.72140 -114.02409 - -177.05197 88.72057 -114.02409 - -162.94225 90.68604 -111.64393 - -148.60457 91.62190 -109.10946 - -134.20073 91.52808 -106.43422 - -119.89254 90.40452 -103.63177 - -105.84182 88.25116 -100.71567 - -105.84182 88.25044 -100.71567 - -91.97500 88.11231 -97.69945 - -78.18839 87.22951 -94.59615 - -64.59902 85.60201 -91.41858 - -51.32391 83.22976 -88.17955 - -38.48011 80.11272 -84.89188 - -38.48010 80.11192 -84.89188 - -26.02183 78.34574 -81.56817 - -13.88924 75.96698 -78.21988 - -2.17859 72.97562 -74.85805 - 9.01386 69.37162 -71.49373 - 19.59183 65.15496 -68.13794 - 19.59261 65.15101 -68.13794 - 29.58029 61.87504 -64.80140 - 39.01082 58.06014 -61.49297 - 47.79953 53.70629 -58.22093 - 55.86171 48.81348 -54.99357 - 63.14396 43.97884 -51.81916 - 63.13648 43.87443 -51.81916 - 69.69790 39.74297 -48.70526 - 75.66081 36.25460 -45.65740 - 81.12510 33.39420 -42.68081 - 86.18818 31.14553 -39.78072 - 90.94482 29.49115 -36.96235 - 90.94469 29.49888 -36.96235 - 95.49186 28.46861 -34.23042 - 99.92114 27.99516 -31.58893 - 104.31844 28.05816 -29.04209 - 108.76640 28.63632 -26.59413 - 113.34425 29.70742 -24.24924 - 113.34498 29.71328 -24.24924 - 116.45900 12.17805 -22.11215 - 117.10709 -3.18322 -20.07564 - 115.60748 -16.47554 -18.13857 - 112.26269 -27.80273 -16.29980 - 107.35979 -37.26738 -14.55818 - 107.35897 -37.23059 -14.55818 - 101.15964 -45.14209 -12.91070 - 93.89955 -51.38939 -11.35052 - 85.82163 -56.06055 -9.87079 - 77.15615 -59.23644 -8.46465 - 68.12178 -60.99071 -7.12524 - 68.12392 -60.96795 -7.12524 - 58.88328 -62.02102 -5.84490 - 49.58212 -61.78397 -4.61531 - 40.41014 -60.30599 -3.42866 - 31.55032 -57.62805 -2.27711 - 23.20137 -53.35715 -1.15285 - 23.18264 -53.48331 -1.15285 - 15.61353 -47.05207 -0.04762 - 9.18216 -38.31798 1.04436 - 4.23210 -27.30453 2.12719 - 1.08548 -14.39748 3.20500 - -0.01954 -0.13839 4.28190 + -0.01553 0.08551 41.49925 + 0.07623 1.66401 36.82609 + 0.64554 6.47971 32.15305 + 2.15407 13.97409 27.47869 + 4.87757 22.26452 22.80158 + 8.81183 30.12303 18.12028 + 8.82638 30.20156 18.12028 + 13.81766 36.23372 13.43234 + 19.66199 41.57581 8.73249 + 26.25579 46.22571 4.01508 + 33.49685 50.21849 -0.72552 + 41.29202 53.62501 -5.49496 + 41.29249 -101.44644 -5.49496 + 31.21206 -100.21212 -8.69270 + 21.24003 -99.27899 -11.90243 + 11.34612 -98.65015 -15.12033 + 1.49977 -98.32810 -18.34260 + -8.32744 -98.24406 -21.56544 + -8.33142 -98.29956 -21.56544 + -21.43532 -98.23852 -25.85690 + -34.52294 -98.05540 -30.13373 + -47.57800 -97.75020 -34.38704 + -60.58423 -97.32292 -38.60793 + -73.52536 -96.77356 -42.78749 + -73.52477 -96.77196 -42.78749 + -86.32888 -95.26594 -46.91678 + -98.92267 -93.61719 -50.98716 + -111.28714 -91.82610 -54.99022 + -123.40332 -89.89301 -58.91752 + -135.25231 -87.81823 -62.76063 + -135.25229 -87.82023 -62.76063 + -146.79622 -85.31429 -66.51123 + -157.99623 -82.66132 -70.16168 + -168.83272 -79.86162 -73.70458 + -179.28615 -76.91552 -77.13256 + -189.33703 -73.82327 -80.43823 + -189.33710 -73.82495 -80.43823 + -198.89312 -69.49298 -83.61433 + -207.86260 -65.02688 -86.65472 + -216.22768 -60.42704 -89.55371 + -223.97055 -55.69386 -92.30560 + -231.07347 -50.82767 -94.90469 + -231.07347 -50.82871 -94.90469 + -237.52003 -45.84766 -97.34560 + -243.29363 -40.73433 -99.62445 + -248.37665 -35.48902 -101.73779 + -252.75151 -30.11199 -103.68214 + -256.40067 -24.60350 -105.45406 + -256.40068 -24.60445 -105.45406 + -259.30793 -18.98250 -107.05045 + -261.45686 -13.22962 -108.46992 + -262.83002 -7.34604 -109.71154 + -263.41000 -1.33195 -110.77437 + -263.17942 4.81245 -111.65748 + -263.17943 4.81169 -111.65748 + -262.50425 8.70549 -112.20164 + -261.43563 12.68048 -112.64507 + -259.96545 16.73661 -112.98833 + -258.08561 20.87385 -113.23198 + -255.78798 25.09215 -113.37660 + -255.78799 25.09157 -113.37660 + -253.06309 29.41989 -113.42288 + -249.90130 33.82951 -113.37204 + -246.29448 38.32040 -113.22548 + -242.23451 42.89252 -112.98458 + -237.71327 47.54585 -112.65072 + -237.71327 47.54543 -112.65072 + -232.72243 52.27349 -112.22543 + -227.25815 57.01430 -111.71084 + -221.31915 61.76784 -111.10921 + -214.90416 66.53407 -110.42284 + -208.01191 71.31297 -109.65400 + -208.01186 71.31227 -109.65400 + -196.27848 77.59059 -108.28530 + -183.76172 81.28267 -106.73076 + -170.86797 82.38844 -105.00238 + -158.00368 80.90781 -103.11215 + -145.57529 76.84071 -101.07205 + -145.57530 76.83988 -101.07205 + -133.34199 78.68142 -98.89398 + -120.90196 79.47081 -96.58962 + -108.42057 79.20799 -94.17073 + -96.06314 77.89289 -91.64903 + -83.99506 75.52546 -89.03626 + -83.99506 75.52474 -89.03626 + -72.12808 75.38554 -86.34409 + -60.34148 74.50158 -83.58364 + -48.75231 72.87280 -80.76583 + -37.47761 70.49918 -77.90157 + -26.63444 67.38066 -75.00178 + -26.63444 67.37987 -75.00178 + -16.17702 65.61244 -72.07719 + -6.04548 63.23235 -69.13735 + 3.66391 60.23957 -66.19139 + 12.85486 56.63408 -63.24847 + 21.43110 52.41584 -60.31774 + 21.44073 52.36591 -60.31774 + 29.41921 49.08860 -57.40797 + 36.84034 45.27229 -54.52615 + 43.62515 41.02656 -51.67868 + 49.74127 36.91204 -48.87198 + 55.25631 33.37460 -46.11246 + 55.24638 33.32911 -46.11246 + 60.24698 30.40832 -43.40585 + 64.83233 28.04200 -40.75632 + 69.08854 26.21714 -38.16793 + 73.09963 24.91984 -35.64478 + 76.94735 24.13527 -33.19095 + 76.94724 24.14180 -33.19095 + 80.71575 23.90262 -30.81012 + 84.48469 24.14455 -28.50573 + 88.32833 24.85037 -26.28146 + 92.31816 26.00204 -24.14100 + 96.52277 27.58072 -22.08802 + 96.52381 27.58271 -22.08802 + 99.48152 12.17838 -20.21452 + 100.27257 -1.32106 -18.42693 + 99.17596 -13.00541 -16.72446 + 96.45726 -22.96358 -15.10627 + 92.36879 -31.28367 -13.57157 + 92.36789 -31.25244 -13.57157 + 87.13790 -38.22974 -12.11789 + 80.97232 -43.73997 -10.73941 + 74.08546 -47.85903 -9.43028 + 66.68069 -50.65667 -8.18468 + 58.95135 -52.19651 -6.99675 + 58.95322 -52.17660 -6.99675 + 51.03764 -53.17011 -5.85995 + 43.05933 -53.02067 -4.76713 + 35.18646 -51.77094 -3.71160 + 27.58129 -49.45654 -2.68663 + 20.40860 -45.95993 -1.68551 + 20.39832 -46.10011 -1.68551 + 13.84645 -40.91441 -0.70117 + 8.22653 -33.67813 0.27142 + 3.84449 -24.41215 1.23588 + 1.00371 -13.12970 2.19585 + -0.00961 -0.15099 3.15496 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11096,20 +11186,20 @@ Status character 0.00001 0.00000 0.00001 0.00000 202 100 P 30.06668 0.00000 30.06668 5.51986 202 100 P 61.66087 0.00000 61.66087 11.32016 202 100 P - 86.67872 0.00000 95.60503 17.55188 110 91 - - 81.45203 0.00000 131.85112 24.20620 110 62 - - 76.52900 0.00000 169.79789 31.17275 110 45 - - 64.40486 0.00000 131.34426 19.04861 110 49 - - 56.86552 0.00000 161.43441 23.41253 110 35 - - 49.33629 0.00000 191.76434 27.81123 110 26 - - 41.75433 0.00000 221.98186 32.19362 110 19 - - 34.89021 0.00000 251.87056 36.52832 110 0 - - 28.65373 0.00000 281.31596 40.79873 110 0 - - 18.61724 0.00000 189.80201 30.76224 110 0 - - 13.69189 0.00000 202.86341 32.87917 110 0 - - 8.71751 0.00000 215.77548 34.97190 110 0 - - 3.70239 0.00000 228.54007 37.04073 110 0 - - 0.00000 0.00000 241.16152 39.08635 1 0 A + 81.08927 0.00000 95.60503 17.55188 110 85 - + 76.82376 0.00000 131.85112 24.20620 110 58 - + 72.86209 0.00000 169.79789 31.17275 110 43 - + 60.73796 0.00000 131.34426 19.04861 110 46 - + 54.16037 0.00000 161.43441 23.41253 110 34 - + 47.59373 0.00000 191.76434 27.81123 110 25 - + 40.97568 0.00000 221.98186 32.19362 110 18 - + 35.07728 0.00000 251.87056 36.52832 110 0 - + 29.80882 0.00000 281.31596 40.79873 110 0 - + 19.77233 0.00000 189.80201 30.76224 110 0 - + 15.49377 0.00000 202.86341 32.87917 110 0 - + 11.16705 0.00000 215.77548 34.97190 110 0 - + 6.80007 0.00000 228.54007 37.04073 110 0 - + 2.40116 0.00000 241.16152 39.08635 110 0 - 0.00000 0.00000 253.64568 41.10973 1 0 A 0.00000 0.00000 219.69278 35.53878 1 0 A 0.00000 1.30800 226.90657 36.70572 1 0 A @@ -11224,13 +11314,13 @@ Status character 26.36041 125.56800 910.49130 45.33105 1 0 A 26.66942 127.03950 921.16458 45.86245 1 0 A 26.97848 128.51100 931.83960 46.39393 1 0 A - 35.39702 129.98250 942.51642 46.92550 110 0 - - 35.39470 129.98250 932.15163 46.92318 110 0 - - 46.97865 131.45400 942.71290 47.45481 110 0 - - 58.43014 132.92550 953.27610 47.98655 110 6 - - 69.79032 134.39700 963.84128 48.51839 110 7 - - 81.10034 135.86850 974.40849 49.05032 110 8 - - 92.40134 137.34000 984.97779 49.58237 110 9 - + 30.07037 129.98250 942.51642 46.92550 110 0 - + 30.06805 129.98250 932.15163 46.92318 110 0 - + 40.44312 131.45400 942.71290 47.45481 110 0 - + 50.70074 132.92550 953.27610 47.98655 110 5 - + 60.87722 134.39700 963.84128 48.51839 110 6 - + 71.00886 135.86850 974.40849 49.05032 110 7 - + 81.13198 137.34000 984.97779 49.58237 110 8 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11243,10 +11333,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 98.014 'Clay' + 0.00 96.294 'Clay' -4.00 53.482 'Peat' -6.00 172.044 'Clay' - -13.00 114.993 'Sand' + -13.00 108.358 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11323,17 +11413,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -11350,17 +11440,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -11449,72 +11539,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00001 4.90500 0.00001 0.00000 202 100 P - 11.10304 6.44657 11.10304 0.62547 202 100 P - 22.20609 7.98814 22.20609 1.25094 202 100 P - 33.30913 9.52971 33.30913 1.87642 202 100 P - 44.41217 11.07129 44.41217 2.50189 202 100 P - 55.51522 12.61286 55.51522 3.12736 202 100 P - 48.26946 12.61286 48.26946 3.12736 202 100 P - 57.92335 14.15443 57.92335 3.75283 202 100 P - 67.57724 15.69600 67.57724 4.37830 202 100 P - 77.23113 17.23757 77.23113 5.00377 202 100 P - 86.88502 18.77914 86.88502 5.62925 202 100 P - 96.53892 20.32071 96.53892 6.25472 202 100 P - 70.67406 20.32071 70.67406 6.25472 202 100 P - 77.74147 21.86229 77.74147 6.88019 202 100 P - 84.80887 23.40386 84.80887 7.50566 202 100 P - 91.87628 24.94543 91.87628 8.13113 202 100 P - 98.94369 26.48700 98.94369 8.75661 202 100 P - 106.01109 28.02857 106.01109 9.38208 202 100 P - 88.06042 28.02857 88.06042 9.38208 202 100 P - 93.93112 29.57014 93.93112 10.00755 202 100 P - 99.80181 31.11171 99.80181 10.63302 202 100 P - 105.67251 32.65329 105.67251 11.25849 202 100 P - 111.54320 34.19486 111.54320 11.88397 202 100 P - 117.41390 35.73643 117.41390 12.50944 202 100 P - 104.10611 35.73643 104.10611 12.50944 202 100 P - 109.31142 37.27800 109.31142 13.13491 202 100 P - 114.51672 38.81957 114.51672 13.76038 202 100 P - 119.72203 40.36114 119.72203 14.38585 202 100 P - 124.92734 41.90271 124.92734 15.01132 202 100 P - 119.27512 43.44429 130.13264 15.63680 110 92 - - 119.27512 43.44429 119.53821 15.63680 110 99 - - 113.67279 44.98586 124.31974 16.26227 110 91 - - 108.20255 46.52743 129.10127 16.88774 110 84 - - 102.87483 48.06900 133.88279 17.51321 110 77 - - 97.70012 49.61057 138.66432 18.13868 110 70 - - 92.68886 51.15214 143.44585 18.76416 110 65 - - 92.68886 51.15214 134.63740 18.76416 110 69 - - 87.85046 52.69371 139.12532 19.38963 110 63 - - 83.19295 54.23529 143.61323 20.01510 110 58 - - 78.72475 55.77686 148.10114 20.64057 110 53 - - 74.45429 57.31843 152.58906 21.26604 110 49 - - 70.38999 58.86000 157.07697 21.89152 110 45 - - 256.61407 58.86000 279.16236 14.12167 110 92 - - 235.81495 60.33150 290.46579 14.69346 110 81 - - 216.02166 61.80300 301.76922 15.26526 110 72 - - 197.22275 63.27450 313.07265 15.83705 110 63 - - 179.40682 64.74600 324.37608 16.40885 110 55 - - 162.56245 66.21750 335.67951 16.98064 110 48 - - 162.56245 66.21750 311.64171 16.98064 110 52 - - 146.65942 67.68900 322.13571 17.55243 110 46 - - 131.62944 69.16050 332.62971 18.12423 110 40 - - 117.40392 70.63200 343.12371 18.69602 110 34 - - 103.91430 72.10350 353.61771 19.26782 110 29 - - 91.09201 73.57500 364.11171 19.83961 110 25 - - 91.09201 73.57500 356.39681 19.83961 110 26 - - 78.86038 75.04650 366.66846 20.41140 110 22 - - 67.13632 76.51800 376.94011 20.98320 110 18 - - 55.84157 77.98950 387.21176 21.55499 110 14 - - 44.89790 79.46100 397.48341 22.12679 110 11 - - 34.22705 80.93250 407.75506 22.69858 110 8 - - 34.22705 80.93250 403.90034 22.69858 110 8 - - 23.74653 82.40400 414.07488 23.27037 110 6 - - 13.39857 83.87550 424.24943 23.84217 110 0 - - 3.14203 85.34700 434.42398 24.41396 110 0 - - 0.00000 86.81850 444.59852 24.98575 1 0 A - 0.00000 88.29000 454.77307 25.55755 1 0 A + 0.00002 4.90500 0.00002 0.00000 202 100 P + 23.80111 6.44657 23.80111 0.62547 202 100 P + 47.60221 7.98814 47.60221 1.25094 202 100 P + 71.40332 9.52971 71.40332 1.87642 202 100 P + 95.20443 11.07129 95.20443 2.50189 202 100 P + 119.00554 12.61286 119.00554 3.12736 202 100 P + 49.29372 12.61286 49.29372 3.12736 202 100 P + 59.15246 14.15443 59.15246 3.75283 202 100 P + 69.01120 15.69600 69.01120 4.37830 202 100 P + 78.86995 17.23757 78.86995 5.00377 202 100 P + 88.72869 18.77914 88.72869 5.62925 202 100 P + 98.58743 20.32071 98.58743 6.25472 202 100 P + 70.68330 20.32071 70.68330 6.25472 202 100 P + 77.75163 21.86229 77.75163 6.88019 202 100 P + 84.81996 23.40386 84.81996 7.50566 202 100 P + 91.88829 24.94543 91.88829 8.13113 202 100 P + 98.95662 26.48700 98.95662 8.75661 202 100 P + 106.02494 28.02857 106.02494 9.38208 202 100 P + 88.07144 28.02857 88.07144 9.38208 202 100 P + 93.94287 29.57014 93.94287 10.00755 202 100 P + 99.81430 31.11171 99.81430 10.63302 202 100 P + 105.68573 32.65329 105.68573 11.25849 202 100 P + 111.55716 34.19486 111.55716 11.88397 202 100 P + 117.42859 35.73643 117.42859 12.50944 202 100 P + 104.11800 35.73643 104.11800 12.50944 202 100 P + 109.32390 37.27800 109.32390 13.13491 202 100 P + 114.52980 38.81957 114.52980 13.76038 202 100 P + 117.74321 40.36114 119.73570 14.38585 110 98 - + 112.75528 41.90271 124.94160 15.01132 110 90 - + 107.86172 43.44429 130.14750 15.63680 110 83 - + 107.86172 43.44429 119.55043 15.63680 110 90 - + 103.07397 44.98586 124.33244 16.26227 110 83 - + 98.40037 46.52743 129.11446 16.88774 110 76 - + 93.84908 48.06900 133.89648 17.51321 110 70 - + 89.42825 49.61057 138.67850 18.13868 110 64 - + 85.14605 51.15214 143.46051 18.76416 110 59 - + 85.14605 51.15214 134.64963 18.76416 110 63 - + 81.00986 52.69371 139.13795 19.38963 110 58 - + 77.02656 54.23529 143.62627 20.01510 110 54 - + 73.20350 55.77686 148.11459 20.64057 110 49 - + 69.54804 57.31843 152.60291 21.26604 110 46 - + 66.06756 58.86000 157.09123 21.89152 110 42 - + 235.00189 58.86000 280.51782 14.12167 110 84 - + 216.83864 60.33150 291.87613 14.69346 110 74 - + 199.53459 61.80300 303.23445 15.26526 110 66 - + 183.08160 63.27450 314.59276 15.83705 110 58 - + 167.47156 64.74600 325.95107 16.40885 110 51 - + 152.69634 66.21750 337.30939 16.98064 110 45 - + 152.69634 66.21750 312.61080 16.98064 110 49 - + 138.73130 67.68900 323.13743 17.55243 110 43 - + 125.51829 69.16050 333.66406 18.12423 110 38 - + 112.99887 70.63200 344.19069 18.69602 110 33 - + 101.11463 72.10350 354.71732 19.26782 110 29 - + 89.80712 73.57500 365.24396 19.83961 110 25 - + 89.80712 73.57500 357.09310 19.83961 110 25 - + 79.01086 75.04650 367.38481 20.41140 110 22 - + 68.65453 76.51800 377.67653 20.98320 110 18 - + 58.67099 77.98950 387.96825 21.55499 110 15 - + 48.99310 79.46100 398.25997 22.12679 110 12 - + 39.55371 80.93250 408.55168 22.69858 110 10 - + 39.55371 80.93250 404.41665 22.69858 110 10 - + 30.28207 82.40400 414.60420 23.27037 110 7 - + 21.12797 83.87550 424.79176 23.84217 110 0 - + 12.05513 85.34700 434.97931 24.41396 110 0 - + 3.02722 86.81850 445.16686 24.98575 110 0 - + 0.00000 88.29000 455.35442 25.55755 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11529,8 +11619,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 466.804 'Clay' - -13.00 304.693 'Sand' + -6.00 477.829 'Clay' + -13.00 295.000 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -11702,7 +11792,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.50000 142.71829 210000000.000 1 2 0 'Anchor' + -1.50000 142.72839 210000000.000 1 2 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11712,22 +11802,22 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 49.47 : Percentage mobilized resistance left - 9.21 : Percentage mobilized resistance right - 564.94 : Effective left - 313.33 : Effective right + 49.04 : Percentage mobilized resistance left + 9.36 : Percentage mobilized resistance right + 570.00 : Effective left + 318.40 : Effective right 278.11 : Water pressure left 672.97 : Water pressure right - 1141.91 : Max effective resistance left + 1162.27 : Max effective resistance left 3402.22 : Max effective resistance right --13554.33 : Max moment left +-13700.18 : Max moment left -32715.62 : Max moment right --6127.15 : Max mobilized moment left --2737.99 : Max mobilized moment right - 191.86 : Vertical force left - 90.65 : Vertical force right - 45.2 : Max mobilized moment percentage left - 8.4 : Max mobilized moment percentage right +-6157.33 : Max mobilized moment left +-2768.05 : Max mobilized moment right + 193.11 : Vertical force left + 91.70 : Vertical force right + 44.9 : Max mobilized moment percentage left + 8.5 : Max mobilized moment percentage right -1.50 : Level of single support 3 : Node of single support 1 : Moment present @@ -11742,144 +11832,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.01270 0.05819 51.04715 - 0.04006 0.93879 43.84178 - 0.35580 3.55650 36.63650 - 1.19551 7.94407 29.43046 - 2.80244 13.60003 22.22284 - 5.25510 18.84769 15.01279 - 5.28412 19.03500 15.01279 - 8.43751 22.75564 7.79866 - 12.03440 24.94808 0.57720 - 15.85755 25.85297 -6.65482 - 19.76500 26.25195 -13.90062 - 23.73488 26.68574 -21.16345 - 23.72015 -116.26916 -21.16345 - 12.10855 -115.96010 -26.01553 - 0.52867 -115.63474 -30.87225 - -11.01785 -115.29279 -35.72918 - -22.52933 -114.93406 -40.58190 - -34.00410 -114.55847 -45.42598 - -34.00536 -114.54805 -45.42598 - -49.24091 -113.95995 -51.86363 - -64.38793 -113.21996 -58.26768 - -79.42617 -112.32853 -64.62788 - -94.33550 -111.28635 -70.93399 - -109.09587 -110.09432 -77.17574 - -109.09530 -110.09221 -77.17574 - -123.68579 -108.74076 -83.34294 - -138.08636 -107.24344 -89.42575 - -152.27758 -105.60083 -95.41451 - -166.24016 -103.81373 -101.29954 - -179.95487 -101.88321 -107.07116 - -179.95486 -101.88437 -107.07116 - -193.38136 -99.48846 -112.71980 - -206.47856 -96.94520 -118.23650 - -219.22693 -94.25623 -123.61258 - -231.60716 -91.42332 -128.83935 - -243.60017 -88.44835 -133.90813 - -243.60022 -88.44935 -133.90813 - -255.14379 -84.68272 -138.81036 - -266.17655 -80.78735 -143.53853 - -276.68140 -76.76411 -148.08547 - -286.64134 -72.61386 -152.44401 - -296.03949 -68.33748 -156.60702 - -296.03949 -68.33812 -156.60702 - -304.84935 -63.78892 -160.56759 - -313.04431 -59.11472 -164.32018 - -320.60776 -54.31640 -167.85964 - -327.52321 -49.39477 -171.18082 - -333.77426 -44.35064 -174.27856 - -333.77426 -44.35126 -174.27856 - -339.33621 -39.05777 -177.14804 - -344.18427 -33.64281 -179.78601 - -348.30226 -28.10704 -182.18967 - -351.67413 -22.45107 -184.35621 - -354.28389 -16.67542 -186.28284 - -354.28390 -16.67598 -186.28284 - -355.74713 -12.57717 -187.56897 - -356.79705 -8.40975 -188.71859 - -357.42681 -4.17408 -189.73146 - -357.62960 0.12958 -190.60734 - -357.39863 4.50101 -191.34599 - -357.39864 4.50049 -191.34599 - -356.72343 9.01494 -191.94730 - -355.59337 13.59776 -192.41173 - -354.00160 18.24895 -192.73988 - -351.94130 22.96860 -192.93237 - -349.40560 27.75686 -192.98981 - -349.40559 27.75633 -192.98981 - -346.38568 32.64205 -192.91297 - -342.87715 37.52891 -192.70320 - -338.87985 42.41734 -192.36205 - -334.39361 47.30780 -191.89105 - -329.41820 52.20083 -191.29173 - -329.41836 52.20412 -191.29173 - -320.62295 59.60581 -190.09467 - -310.73819 65.99415 -188.59383 - -299.94658 71.14826 -186.79933 - -288.44171 75.07285 -184.72130 - -276.41642 77.77251 -182.36984 - -276.41642 77.77012 -182.36984 - -263.93328 81.00548 -179.75583 - -250.98913 83.63810 -176.89176 - -237.67840 85.67170 -173.79020 - -224.09494 87.10968 -170.46369 - -210.33211 87.95511 -166.92480 - -210.33214 87.95330 -166.92480 - -196.35277 89.88749 -163.18634 - -182.10640 91.35183 -159.26187 - -167.66669 92.34852 -155.16501 - -153.10697 92.87953 -150.90941 - -138.50028 92.94656 -146.50870 - -138.50030 92.94520 -146.50870 - -123.82675 93.74220 -141.97668 - -109.05943 94.13891 -137.32737 - -94.26115 94.13639 -132.57473 - -79.49458 93.73555 -127.73278 - -64.82224 92.93710 -122.81548 - -64.82225 92.93602 -122.81548 - -50.23456 92.66552 -117.83685 - -35.71762 92.03576 -112.81067 - -21.32784 91.04707 -107.75052 - -7.12162 89.69966 -102.67002 - 6.84470 87.99367 -97.58276 - 6.84468 87.99289 -97.58276 - 20.57327 86.67908 -92.50226 - 34.06921 85.03192 -87.44130 - 47.28012 83.05134 -82.41236 - 60.15360 80.73727 -77.42793 - 72.63722 78.08961 -72.50050 - 72.63718 78.08938 -72.50050 - 84.71526 75.57872 -67.64237 - 96.37388 72.75084 -62.86457 - 107.56319 69.60566 -58.17765 - 118.23332 66.14319 -53.59221 - 128.33443 62.36347 -49.11881 - 128.33720 62.34395 -49.11881 - 136.67147 48.64288 -44.96356 - 142.88908 34.12208 -40.92650 - 146.86716 18.78261 -37.01100 - 148.48299 2.62572 -33.22045 - 147.61408 -14.34718 -29.55820 - 147.67458 -14.79000 -29.55820 - 144.23509 -31.19770 -26.02591 - 138.27917 -48.32750 -22.61824 - 129.80538 -64.08643 -19.32804 - 119.22132 -76.48377 -16.14820 - 107.02276 -85.63094 -13.07157 - 107.01859 -85.81722 -13.07157 - 93.61558 -92.37477 -10.08860 - 79.45850 -95.88566 -7.18630 - 64.99833 -96.42762 -4.35243 - 50.68535 -93.86669 -1.57472 - 37.06366 -86.79904 1.15906 - 36.98504 -86.70087 1.15906 - 24.80523 -75.16367 3.86225 - 14.58680 -60.60926 6.54434 - 6.76388 -43.22615 9.21189 - 1.75981 -23.02610 11.87143 - -0.00334 -0.01405 14.52950 + -0.01266 0.05757 50.86404 + 0.03914 0.92085 43.67677 + 0.34968 3.50580 36.48958 + 1.17957 7.86442 29.30165 + 2.77262 13.49523 22.11214 + 5.20791 18.72155 14.92023 + 5.23693 18.90884 14.92023 + 8.37003 22.61196 7.72428 + 11.94429 24.79069 0.52106 + 15.74305 25.68571 -6.69263 + 19.62490 26.07869 -13.92002 + 23.56859 26.51035 -21.16431 + 23.55386 -116.45465 -21.16431 + 11.92373 -116.14485 -26.00395 + 0.32549 -115.81699 -30.84816 + -11.23905 -115.47078 -35.69251 + -22.76805 -115.10604 -40.53256 + -34.25964 -114.72264 -45.36387 + -34.26090 -114.71223 -45.36387 + -49.51750 -114.11094 -51.78435 + -64.68359 -113.35453 -58.17104 + -79.73850 -112.44342 -64.51368 + -94.66166 -111.37826 -70.80201 + -109.43256 -110.15992 -77.02578 + -109.43199 -110.15783 -77.02578 + -124.02929 -108.77669 -83.17475 + -138.43247 -107.24624 -89.23910 + -152.62168 -105.56704 -95.20916 + -166.57711 -103.73985 -101.07526 + -180.27910 -101.76567 -106.82773 + -180.27909 -101.76685 -106.82773 + -193.68681 -99.32369 -112.45698 + -206.75869 -96.72954 -117.95409 + -219.47471 -93.98601 -123.31039 + -231.81507 -91.09483 -128.51722 + -243.76019 -88.05786 -133.56591 + -243.76023 -88.05886 -133.56591 + -255.25000 -84.26592 -138.44795 + -266.22536 -80.34274 -143.15584 + -276.66898 -76.29017 -147.68248 + -286.56369 -72.10907 -152.02073 + -295.89239 -67.80033 -156.16350 + -295.89239 -67.80096 -156.16350 + -304.62840 -63.21789 -160.10393 + -312.74488 -58.50833 -163.83653 + -320.22503 -53.67316 -167.35620 + -327.05217 -48.71321 -170.65786 + -333.20971 -43.62931 -173.73640 + -333.20972 -43.62992 -173.73640 + -338.67276 -38.29525 -176.58706 + -343.41632 -32.83772 -179.20666 + -347.42406 -27.25803 -181.59248 + -350.67973 -21.55682 -183.74179 + -353.16717 -15.73468 -185.65186 + -353.16718 -15.73521 -185.65186 + -354.53189 -11.54723 -186.92606 + -355.47428 -7.28900 -188.06422 + -355.98736 -2.96095 -189.06614 + -356.06416 1.43658 -189.93162 + -355.69774 5.90330 -190.66048 + -355.69774 5.90281 -190.66048 + -354.87749 10.51388 -191.25264 + -353.59264 15.19455 -191.70863 + -351.83626 19.94471 -192.02911 + -349.60139 24.76434 -192.21477 + -346.88107 29.65348 -192.26628 + -346.88107 29.65301 -192.26628 + -343.66642 34.64037 -192.18446 + -339.95294 39.62950 -191.97076 + -335.74045 44.62066 -191.62681 + -331.02873 49.61417 -191.15421 + -325.81753 54.61038 -190.55459 + -325.81773 54.61410 -190.55459 + -316.66323 61.56011 -189.36001 + -306.57572 66.49302 -187.86545 + -295.84256 69.95327 -186.08096 + -284.63982 72.47007 -184.01661 + -273.11552 74.04639 -181.68246 + -273.11550 74.04455 -181.68246 + -261.19428 77.57784 -179.08901 + -248.76597 80.49877 -176.24809 + -235.92660 82.81002 -173.17181 + -222.77177 84.51415 -169.87229 + -209.39669 85.61359 -166.36164 + -209.39670 85.61195 -166.36164 + -195.76612 87.78754 -162.65226 + -181.83162 89.48035 -158.75742 + -167.66891 90.69242 -154.69048 + -153.35337 91.42563 -150.46483 + -138.96013 91.68173 -146.09384 + -138.96014 91.68030 -146.09384 + -124.47136 92.65341 -141.59107 + -109.86213 93.21349 -136.97038 + -95.19725 93.36191 -132.24564 + -80.54131 93.09992 -127.43071 + -65.95871 92.42866 -122.53944 + -65.95872 92.42739 -122.53944 + -51.44171 92.27285 -117.58575 + -36.97806 91.74835 -112.58335 + -22.62585 90.85471 -107.54581 + -8.44302 89.59267 -102.48669 + 5.51258 87.96292 -97.41957 + 5.51256 87.96191 -97.41957 + 19.24171 86.71575 -92.35793 + 32.74820 85.12822 -87.31456 + 45.97844 83.19981 -82.30198 + 58.87888 80.93098 -77.33268 + 71.39608 78.32217 -72.41917 + 71.39604 78.32172 -72.41917 + 83.51329 75.84405 -67.57377 + 95.21584 73.04380 -62.80756 + 106.45304 69.92140 -58.13115 + 117.17429 66.47731 -53.55516 + 127.32908 62.71203 -49.09021 + 127.33189 62.69207 -49.09021 + 135.72250 49.04353 -44.94213 + 142.00325 34.56105 -40.91142 + 146.04926 19.24737 -37.00152 + 147.73604 3.10525 -33.21585 + 146.93955 -13.86245 -29.55785 + 147.00004 -14.30579 -29.55785 + 143.63305 -30.71659 -26.02922 + 137.74860 -47.85664 -22.62468 + 129.34429 -63.63192 -19.33717 + 118.82685 -76.05083 -16.15961 + 106.69133 -85.22400 -13.08492 + 106.68715 -85.41054 -13.08492 + 93.34296 -91.99787 -10.10361 + 79.23997 -95.54177 -7.20273 + 64.82874 -96.11952 -4.37009 + 50.55913 -93.59682 -1.59346 + 36.97492 -86.56955 1.13935 + 36.89629 -86.47145 1.13935 + 24.74774 -74.97660 3.84163 + 14.55408 -60.46637 6.52288 + 6.74917 -43.12919 9.18961 + 1.75609 -22.97678 11.84835 + -0.00334 -0.01404 14.50562 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12034,143 +12124,143 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P - 16.77343 0.00000 27.59211 1.44679 110 61 - - 33.08763 0.00000 55.18421 2.89358 110 60 - - 50.48522 0.00000 82.77632 4.34037 110 61 - - 57.24723 0.00000 110.36843 5.78715 110 52 - - 42.70829 0.00000 137.96054 7.23394 110 31 - - 42.70829 0.00000 68.20749 7.23394 110 63 - - 28.16120 0.00000 81.84899 8.68073 110 34 - - 13.59944 0.00000 95.49049 10.12752 110 14 - - 3.63658 0.00000 109.13199 11.57431 110 0 - - 3.96308 0.00000 122.77349 13.02110 110 0 - - 4.29961 0.00000 136.41499 14.46788 110 0 - - 4.29961 0.00000 111.45332 14.46788 110 0 - - 4.53043 0.00000 118.88354 15.43241 110 0 - - 4.76573 0.00000 126.31376 16.39693 110 0 - - 5.00430 0.00000 133.74398 17.36146 110 0 - - 5.24495 0.00000 141.17421 18.32599 110 0 - - 5.48646 0.00000 148.60443 19.29051 110 0 - - 5.48646 0.00000 137.71826 19.29051 110 0 - - 5.80761 1.30800 141.50704 19.82121 110 0 - - 6.12523 2.61600 145.29582 20.35192 110 0 - - 6.43680 3.92400 149.08461 20.88262 110 0 - - 6.73979 5.23200 152.87339 21.41333 110 0 - - 7.03166 6.54000 156.66217 21.94403 110 0 - - 7.15705 6.54000 150.27634 21.94403 110 0 - - 7.41450 7.84800 153.91069 22.47473 110 0 - - 7.66697 9.15600 157.54503 23.00544 110 0 - - 7.91193 10.46400 161.17938 23.53614 110 0 - - 8.14691 11.77200 164.81372 24.06684 110 0 - - 8.36954 13.08000 168.44806 24.59755 110 0 - - 11.79685 13.08000 162.75727 24.59755 110 0 - - 12.07609 14.38800 166.26883 25.12825 110 0 - - 12.33837 15.69600 169.78039 25.65895 110 0 - - 12.58237 17.00400 173.29196 26.18966 110 0 - - 12.80683 18.31200 176.80352 26.72036 110 0 - - 13.01051 19.62000 180.31508 27.25106 110 0 - - 20.04486 19.62000 112.91072 24.82969 110 0 - - 20.12070 20.92800 113.33345 24.92265 110 0 - - 20.18740 22.23600 113.75618 25.01561 110 0 - - 20.24487 23.54400 114.17890 25.10857 110 0 - - 20.29300 24.85200 114.60163 25.20153 110 0 - - 20.33171 26.16000 115.02436 25.29449 110 0 - - 21.90951 26.16000 114.42115 25.29449 110 0 - - 21.94539 27.46800 114.84166 25.38745 110 0 - - 21.97189 28.77600 115.26217 25.48041 110 0 - - 21.98935 30.08400 115.68268 25.57337 110 0 - - 21.99810 31.39200 116.10319 25.66633 110 0 - - 21.99845 32.70000 116.52370 25.75929 110 0 - - 23.36330 32.70000 116.01583 25.75929 110 0 - - 23.36055 34.00800 116.43451 25.85225 110 0 - - 23.35031 35.31600 116.85318 25.94521 110 0 - - 23.33329 36.62400 117.27186 26.03817 110 0 - - 23.31018 37.93200 117.69054 26.13113 110 0 - - 23.28167 39.24000 118.10921 26.22409 110 0 - - 18.82316 39.24000 183.43874 28.78144 110 0 - - 18.82487 40.22100 185.97557 29.17947 110 0 - - 18.82119 41.20200 188.51241 29.57750 110 0 - - 18.81308 42.18300 191.04924 29.97553 110 0 - - 18.80151 43.16400 193.58607 30.37355 110 0 - - 18.78747 44.14500 196.12290 30.77158 110 0 - - 19.85888 44.14500 192.60019 30.77158 110 0 - - 19.85467 45.12600 195.09146 31.16961 110 0 - - 19.85003 46.10700 197.58272 31.56764 110 0 - - 19.84607 47.08800 200.07399 31.96566 110 0 - - 19.84392 48.06900 202.56525 32.36369 110 0 - - 19.84470 49.05000 205.05652 32.76172 110 0 - - 20.73899 49.05000 201.76542 32.76172 110 0 - - 20.75281 50.03100 204.21670 33.15975 110 0 - - 20.77195 51.01200 206.66798 33.55777 110 0 - - 20.79736 51.99300 209.11926 33.95580 110 0 - - 20.83001 52.97400 211.57054 34.35383 110 0 - - 20.87086 53.95500 214.02182 34.75186 110 0 - - 21.82955 53.95500 210.11289 34.75186 110 0 - - 21.92606 55.49657 213.89455 35.37733 110 0 - - 22.04486 57.03814 217.67621 36.00280 110 0 - - 22.18552 58.57971 221.45787 36.62827 110 0 - - 22.34763 60.12129 225.23953 37.25374 110 0 - - 22.53075 61.66286 229.02119 37.87922 110 0 - - 23.50783 61.66286 224.58067 37.87922 110 0 - - 23.72397 63.20443 228.28901 38.50469 110 0 - - 23.95799 64.74600 231.99734 39.13016 110 0 - - 24.20840 66.28757 235.70568 39.75563 110 0 - - 24.47374 67.82914 239.41402 40.38110 110 0 - - 24.75251 69.37071 243.12235 41.00658 110 0 - - 25.53017 69.37071 239.03373 41.00658 110 0 - - 25.83070 70.91229 242.67970 41.63205 110 0 - - 26.14200 72.45386 246.32568 42.25752 110 0 - - 26.46292 73.99543 249.97165 42.88299 110 0 - - 26.79232 75.53700 253.61762 43.50846 110 0 - - 27.12902 77.07857 257.26360 44.13393 110 0 - - 27.74589 77.07857 253.47345 44.13393 110 0 - - 28.09606 78.62014 257.06570 44.75941 110 0 - - 28.45159 80.16171 260.65796 45.38488 110 0 - - 28.81168 81.70329 264.25022 46.01035 110 0 - - 29.17553 83.24486 267.84248 46.63582 110 0 - - 29.54236 84.78643 271.43474 47.26129 110 0 - - 30.02942 84.78643 267.90138 47.26129 110 0 - - 30.40386 86.32800 271.44688 47.88677 110 0 - - 30.78002 87.86957 274.99238 48.51224 110 0 - - 31.15747 89.41114 278.53787 49.13771 110 0 - - 31.53575 90.95271 282.08337 49.76318 110 0 - - 31.91443 92.49429 285.62887 50.38865 110 0 - - 32.26583 92.49429 282.31903 50.38865 110 0 - - 32.64817 94.03586 285.82344 51.01412 110 0 - - 33.03035 95.57743 289.32786 51.63960 110 0 - - 33.41225 97.11900 292.83227 52.26507 110 0 - - 33.79376 98.66057 296.33668 52.89054 110 0 - - 34.17479 100.20214 299.84109 53.51601 110 0 - - 32.98489 100.20214 296.72773 53.51601 110 0 - - 33.35358 101.74371 300.19575 54.14148 110 0 - - 33.72190 103.28529 303.66378 54.76696 110 0 - - 34.09007 104.82686 307.13180 55.39243 110 0 - - 34.45833 106.36843 310.59983 56.01790 110 0 - - 34.82689 107.91000 314.06785 56.64337 110 0 - - 29.55525 107.91000 734.00940 36.53923 110 0 - - 29.77121 109.38150 745.49575 37.11102 110 0 - - 29.99183 110.85300 756.98209 37.68281 110 0 - - 30.21794 112.32450 768.46843 38.25461 110 0 - - 30.45039 113.79600 779.95478 38.82640 110 0 - - 30.69001 115.26750 791.44112 39.39820 110 0 - - 28.44518 115.26750 738.87493 39.39820 110 0 - - 28.66382 116.73900 749.59837 39.96999 110 0 - - 28.88988 118.21050 760.32181 40.54178 110 0 - - 29.12312 119.68200 771.04525 41.11358 110 0 - - 29.36327 121.15350 781.76869 41.68537 110 0 - - 29.61009 122.62500 792.49213 42.25717 110 0 - - 24.34430 122.62500 772.62437 42.25717 110 0 - - 24.50271 124.09650 783.07897 42.82896 110 0 - - 24.66678 125.56800 793.53357 43.40075 110 0 - - 24.83567 127.03950 803.98818 43.97255 110 0 - - 28.79713 128.51100 814.44278 44.54434 110 0 - - 56.70677 129.98250 824.89738 45.11614 110 7 - - 56.70677 129.98250 814.08791 45.11614 110 7 - - 84.31040 131.45400 824.40552 45.68793 110 10 - - 111.70316 132.92550 834.72313 46.25972 110 13 - - 138.95043 134.39700 845.04073 46.83152 110 16 - - 166.11761 135.86850 855.35834 47.40331 110 19 - - 193.27011 137.34000 865.67594 47.97510 110 22 - + 16.44341 0.00000 27.59211 1.44679 110 60 - + 32.79379 0.00000 55.18421 2.89358 110 59 - + 50.22759 0.00000 82.77632 4.34037 110 61 - + 57.02583 0.00000 110.36843 5.78715 110 52 - + 42.52318 0.00000 137.96054 7.23394 110 31 - + 42.52318 0.00000 68.20749 7.23394 110 62 - + 28.01245 0.00000 81.84899 8.68073 110 34 - + 13.48717 0.00000 95.49049 10.12752 110 14 - + 3.56095 0.00000 109.13199 11.57431 110 0 - + 3.92429 0.00000 122.77349 13.02110 110 0 - + 4.29789 0.00000 136.41499 14.46788 110 0 - + 4.29789 0.00000 111.45332 14.46788 110 0 - + 4.55358 0.00000 118.88354 15.43241 110 0 - + 4.81390 0.00000 126.31376 16.39693 110 0 - + 5.07765 0.00000 133.74398 17.36146 110 0 - + 5.34364 0.00000 141.17421 18.32599 110 0 - + 5.61068 0.00000 148.60443 19.29051 110 0 - + 5.61068 0.00000 137.71826 19.29051 110 0 - + 5.96617 1.30800 141.50704 19.82121 110 0 - + 6.31851 2.61600 145.29582 20.35192 110 0 - + 6.66520 3.92400 149.08461 20.88262 110 0 - + 7.00373 5.23200 152.87339 21.41333 110 0 - + 7.33159 6.54000 156.66217 21.94403 110 0 - + 7.45699 6.54000 150.27634 21.94403 110 0 - + 7.75089 7.84800 153.91069 22.47473 110 0 - + 8.04029 9.15600 157.54503 23.00544 110 0 - + 8.32263 10.46400 161.17938 23.53614 110 0 - + 8.59546 11.77200 164.81372 24.06684 110 0 - + 8.85641 13.08000 168.44806 24.59755 110 0 - + 12.28372 13.08000 162.75727 24.59755 110 0 - + 12.60172 14.38800 166.26883 25.12825 110 0 - + 12.90319 15.69600 169.78039 25.65895 110 0 - + 13.18675 17.00400 173.29196 26.18966 110 0 - + 13.45110 18.31200 176.80352 26.72036 110 0 - + 13.69494 19.62000 180.31508 27.25106 110 0 - + 20.31863 19.62000 112.91072 24.82969 110 0 - + 20.41063 20.92800 113.33345 24.92265 110 0 - + 20.49355 22.23600 113.75618 25.01561 110 0 - + 20.56726 23.54400 114.17890 25.10857 110 0 - + 20.63162 24.85200 114.60163 25.20153 110 0 - + 20.68652 26.16000 115.02436 25.29449 110 0 - + 22.26432 26.16000 114.42115 25.29449 110 0 - + 22.31632 27.46800 114.84166 25.38745 110 0 - + 22.35882 28.77600 115.26217 25.48041 110 0 - + 22.39211 30.08400 115.68268 25.57337 110 0 - + 22.41646 31.39200 116.10319 25.66633 110 0 - + 22.43218 32.70000 116.52370 25.75929 110 0 - + 23.79703 32.70000 116.01583 25.75929 110 0 - + 23.80933 34.00800 116.43451 25.85225 110 0 - + 23.81379 35.31600 116.85318 25.94521 110 0 - + 23.81104 36.62400 117.27186 26.03817 110 0 - + 23.80171 37.93200 117.69054 26.13113 110 0 - + 23.78645 39.24000 118.10921 26.22409 110 0 - + 20.08512 39.24000 183.43874 28.78144 110 0 - + 20.11069 40.22100 185.97557 29.17947 110 0 - + 20.12993 41.20200 188.51241 29.57750 110 0 - + 20.14372 42.18300 191.04924 29.97553 110 0 - + 20.15295 43.16400 193.58607 30.37355 110 0 - + 20.15849 44.14500 196.12290 30.77158 110 0 - + 21.22991 44.14500 192.60019 30.77158 110 0 - + 21.24399 45.12600 195.09146 31.16961 110 0 - + 21.25622 46.10700 197.58272 31.56764 110 0 - + 21.26761 47.08800 200.07399 31.96566 110 0 - + 21.27912 48.06900 202.56525 32.36369 110 0 - + 21.29177 49.05000 205.05652 32.76172 110 0 - + 22.18606 49.05000 201.76542 32.76172 110 0 - + 22.20983 50.03100 204.21670 33.15975 110 0 - + 22.23682 51.01200 206.66798 33.55777 110 0 - + 22.26785 51.99300 209.11926 33.95580 110 0 - + 22.30369 52.97400 211.57054 34.35383 110 0 - + 22.34515 53.95500 214.02182 34.75186 110 0 - + 23.30383 53.95500 210.11289 34.75186 110 0 - + 23.39537 55.49657 213.89455 35.37733 110 0 - + 23.50162 57.03814 217.67621 36.00280 110 0 - + 23.62228 58.57971 221.45787 36.62827 110 0 - + 23.75701 60.12129 225.23953 37.25374 110 0 - + 23.90551 61.66286 229.02119 37.87922 110 0 - + 24.88259 61.66286 224.58067 37.87922 110 0 - + 25.05762 63.20443 228.28901 38.50469 110 0 - + 25.24534 64.74600 231.99734 39.13016 110 0 - + 25.44518 66.28757 235.70568 39.75563 110 0 - + 25.65653 67.82914 239.41402 40.38110 110 0 - + 25.87883 69.37071 243.12235 41.00658 110 0 - + 26.65648 69.37071 239.03373 41.00658 110 0 - + 26.89886 70.91229 242.67970 41.63205 110 0 - + 27.15089 72.45386 246.32568 42.25752 110 0 - + 27.41197 73.99543 249.97165 42.88299 110 0 - + 27.68146 75.53700 253.61762 43.50846 110 0 - + 27.95875 77.07857 257.26360 44.13393 110 0 - + 28.57561 77.07857 253.47345 44.13393 110 0 - + 28.86729 78.62014 257.06570 44.75941 110 0 - + 29.16556 80.16171 260.65796 45.38488 110 0 - + 29.46987 81.70329 264.25022 46.01035 110 0 - + 29.77967 83.24486 267.84248 46.63582 110 0 - + 30.09444 84.78643 271.43474 47.26129 110 0 - + 30.58149 84.78643 267.90138 47.26129 110 0 - + 30.90607 86.32800 271.44688 47.88677 110 0 - + 31.23466 87.86957 274.99238 48.51224 110 0 - + 31.56690 89.41114 278.53787 49.13771 110 0 - + 31.90240 90.95271 282.08337 49.76318 110 0 - + 32.24081 92.49429 285.62887 50.38865 110 0 - + 32.59221 92.49429 282.31903 50.38865 110 0 - + 32.93684 94.03586 285.82344 51.01412 110 0 - + 33.28381 95.57743 289.32786 51.63960 110 0 - + 33.63301 97.11900 292.83227 52.26507 110 0 - + 33.98427 98.66057 296.33668 52.89054 110 0 - + 34.33746 100.20214 299.84109 53.51601 110 0 - + 33.14756 100.20214 296.72773 53.51601 110 0 - + 33.49078 101.74371 300.19575 54.14148 110 0 - + 33.83591 103.28529 303.66378 54.76696 110 0 - + 34.18308 104.82686 307.13180 55.39243 110 0 - + 34.53242 106.36843 310.59983 56.01790 110 0 - + 34.88409 107.91000 314.06785 56.64337 110 0 - + 29.84124 107.91000 734.00940 36.53923 110 0 - + 29.98548 109.38150 745.49575 37.11102 110 0 - + 30.14257 110.85300 756.98209 37.68281 110 0 - + 30.31276 112.32450 768.46843 38.25461 110 0 - + 30.49633 113.79600 779.95478 38.82640 110 0 - + 30.69352 115.26750 791.44112 39.39820 110 0 - + 28.44869 115.26750 738.87493 39.39820 110 0 - + 28.63073 116.73900 749.59837 39.96999 110 0 - + 28.82539 118.21050 760.32181 40.54178 110 0 - + 29.03182 119.68200 771.04525 41.11358 110 0 - + 29.24916 121.15350 781.76869 41.68537 110 0 - + 29.47658 122.62500 792.49213 42.25717 110 0 - + 24.21079 122.62500 772.62437 42.25717 110 0 - + 24.35263 124.09650 783.07897 42.82896 110 0 - + 24.50246 125.56800 793.53357 43.40075 110 0 - + 24.65905 127.03950 803.98818 43.97255 110 0 - + 28.60971 128.51100 814.44278 44.54434 110 0 - + 56.50964 129.98250 824.89738 45.11614 110 7 - + 56.50964 129.98250 814.08791 45.11614 110 7 - + 84.10426 131.45400 824.40552 45.68793 110 10 - + 111.48850 132.92550 834.72313 46.25972 110 13 - + 138.72759 134.39700 845.04073 46.83152 110 16 - + 165.88677 135.86850 855.35834 47.40331 110 19 - + 193.03129 137.34000 865.67594 47.97510 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12183,10 +12273,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.00 57.880 'Clay' - -4.00 43.676 'Peat' - -6.00 186.304 'Clay' - -13.00 159.753 'Sand' + 0.00 58.453 'Clay' + -4.00 44.462 'Peat' + -6.00 192.443 'Clay' + -13.00 159.505 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12263,17 +12353,17 @@ Q max [END OF COLUMN INDICATION] [DATA] -7.50000 0.00000 0.00000 0.00000 0.00000 - -8.28571 62.84700 0.00000 21.80955 0.00000 - -9.07143 62.92100 0.00000 78.69855 0.00000 - -9.85714 63.07400 0.00000 148.11058 0.00000 - -10.64286 63.22000 0.00000 228.83263 0.00000 - -11.42857 63.35300 0.00000 320.85500 0.00000 - -12.21429 63.47200 0.00000 424.17016 0.00000 - -13.00000 63.57800 0.00000 538.77224 0.00000 - -13.75000 67.86300 0.00000 769.33794 0.00000 - -14.50000 69.37900 0.00000 1022.74547 0.00000 - -15.25000 70.24100 0.00000 1309.30242 0.00000 - -16.00000 70.79800 0.00000 1631.30495 0.00000 + -8.28571 62.50100 0.00000 46.75217 0.00000 + -9.07143 62.73400 0.00000 104.84834 0.00000 + -9.85714 62.93300 0.00000 174.26944 0.00000 + -10.64286 63.10500 0.00000 255.00159 0.00000 + -11.42857 63.25500 0.00000 347.03447 0.00000 + -12.21429 63.38700 0.00000 450.36019 0.00000 + -13.00000 63.50400 0.00000 564.97267 0.00000 + -13.75000 67.71800 0.00000 796.65787 0.00000 + -14.50000 69.24700 0.00000 1050.85341 0.00000 + -15.25000 70.12700 0.00000 1337.97020 0.00000 + -16.00000 70.70100 0.00000 1660.38435 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -12290,17 +12380,17 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -7.89286 2.43179 27.75761 0.00000 0.64302 0.00000 11.41450 - -8.67857 7.29536 72.40419 0.00000 0.64302 0.00000 9.92469 - -9.46429 12.15893 88.34258 0.00000 0.64302 0.00000 7.26565 - -10.25000 17.02250 102.73716 0.00000 0.64302 0.00000 6.03537 - -11.03571 21.88607 117.11938 0.00000 0.64302 0.00000 5.35132 - -11.82143 26.74964 131.49203 0.00000 0.64302 0.00000 4.91566 - -12.60714 31.61321 145.85719 0.00000 0.64302 0.00000 4.61380 - -13.37500 37.49125 307.42093 0.00000 0.41479 0.00000 8.19980 - -14.12500 44.38375 337.87671 0.00000 0.41479 0.00000 7.61262 - -14.87500 51.27625 382.07594 0.00000 0.41479 0.00000 7.45132 - -15.62500 58.16875 429.33670 0.00000 0.41479 0.00000 7.38088 + -7.89286 2.43179 59.50277 0.00000 0.64302 0.00000 24.46875 + -8.67857 7.29536 73.94058 0.00000 0.64302 0.00000 10.13529 + -9.46429 12.15893 88.35412 0.00000 0.64302 0.00000 7.26660 + -10.25000 17.02250 102.75002 0.00000 0.64302 0.00000 6.03613 + -11.03571 21.88607 117.13275 0.00000 0.64302 0.00000 5.35193 + -11.82143 26.74964 131.50547 0.00000 0.64302 0.00000 4.91616 + -12.60714 31.61321 145.87043 0.00000 0.64302 0.00000 4.61422 + -13.37500 37.49125 308.91360 0.00000 0.41479 0.00000 8.23962 + -14.12500 44.38375 338.92738 0.00000 0.41479 0.00000 7.63629 + -14.87500 51.27625 382.82239 0.00000 0.41479 0.00000 7.46588 + -15.62500 58.16875 429.88553 0.00000 0.41479 0.00000 7.39032 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -12389,72 +12479,72 @@ Status character 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.92400 0.00000 0.00000 -1 0 - 0.00000 4.90500 0.00000 0.00000 -1 0 - - 0.00000 4.90500 0.00001 0.00000 1 0 A - 7.27942 6.44657 11.10304 0.62547 110 66 - - 18.63994 7.98814 22.20609 1.25094 110 84 - - 29.97926 9.52971 33.30913 1.87642 110 90 - - 41.29776 11.07129 44.41217 2.50189 110 93 - - 52.59583 12.61286 55.51522 3.12736 110 95 - - 40.39697 12.61286 48.26946 3.12736 110 84 - - 46.11018 14.15443 57.92335 3.75283 110 80 - - 51.80599 15.69600 67.57724 4.37830 110 77 - - 57.48585 17.23757 77.23113 5.00377 110 74 - - 63.15121 18.77914 86.88502 5.62925 110 73 - - 68.80353 20.32071 96.53892 6.25472 110 71 - - 54.85557 20.32071 70.67406 6.25472 110 78 - - 59.43812 21.86229 77.74147 6.88019 110 76 - - 64.01022 23.40386 84.80887 7.50566 110 75 - - 68.57299 24.94543 91.87628 8.13113 110 75 - - 73.12756 26.48700 98.94369 8.75661 110 74 - - 77.67508 28.02857 106.01109 9.38208 110 73 - - 67.72829 28.02857 88.06042 9.38208 110 77 - - 71.72274 29.57014 93.93112 10.00755 110 76 - - 75.71203 31.11171 99.80181 10.63302 110 76 - - 79.69696 32.65329 105.67251 11.25849 110 75 - - 83.67829 34.19486 111.54320 11.88397 110 75 - - 87.65680 35.73643 117.41390 12.50944 110 75 - - 79.90478 35.73643 104.10611 12.50944 110 77 - - 83.54680 37.27800 109.31142 13.13491 110 76 - - 87.18722 38.81957 114.51672 13.76038 110 76 - - 90.82647 40.36114 119.72203 14.38585 110 76 - - 94.46498 41.90271 124.92734 15.01132 110 76 - - 98.10319 43.44429 130.13264 15.63680 110 75 - - 91.74440 43.44429 119.53821 15.63680 110 77 - - 95.15706 44.98586 124.31974 16.26227 110 77 - - 98.56994 46.52743 129.10127 16.88774 110 76 - - 101.98316 48.06900 133.88279 17.51321 110 76 - - 105.39680 49.61057 138.66432 18.13868 110 76 - - 108.81098 51.15214 143.44585 18.76416 110 76 - - 103.41729 51.15214 134.63740 18.76416 110 77 - - 106.66949 52.69371 139.12532 19.38963 110 77 - - 109.92209 54.23529 143.61323 20.01510 110 77 - - 113.17485 55.77686 148.10114 20.64057 110 76 - - 116.42754 57.31843 152.58906 21.26604 110 76 - - 119.67992 58.86000 157.07697 21.89152 110 76 - - 205.18580 58.86000 279.16236 14.12167 110 74 - - 213.21341 60.33150 290.46579 14.69346 110 73 - - 221.23635 61.80300 301.76922 15.26526 110 73 - - 229.25379 63.27450 313.07265 15.83705 110 73 - - 237.26489 64.74600 324.37608 16.40885 110 73 - - 245.26881 66.21750 335.67951 16.98064 110 73 - - 230.10750 66.21750 311.64171 16.98064 110 74 - - 237.62909 67.68900 322.13571 17.55243 110 74 - - 244.30658 69.16050 332.62971 18.12423 110 73 - - 211.97643 70.63200 343.12371 18.69602 110 62 - - 180.74977 72.10350 353.61771 19.26782 110 51 - - 150.55531 73.57500 364.11171 19.83961 110 41 - - 150.55531 73.57500 356.39681 19.83961 110 42 - - 121.29739 75.04650 366.66846 20.41140 110 33 - - 92.84620 76.51800 376.94011 20.98320 110 25 - - 65.07924 77.98950 387.21176 21.55499 110 17 - - 37.87399 79.46100 397.48341 22.12679 110 10 - - 11.10795 80.93250 407.75506 22.69858 110 0 - - 11.10795 80.93250 403.90034 22.69858 110 0 - - 8.25305 82.40400 414.07488 23.27037 110 0 - - 8.63361 83.87550 424.24943 23.84217 110 0 - - 9.01311 85.34700 434.42398 24.41396 110 0 - - 9.39205 86.81850 444.59852 24.98575 110 0 - - 9.77088 88.29000 454.77307 25.55755 110 0 - + 0.00000 4.90500 0.00002 0.00000 1 0 A + 18.50817 6.44657 23.80111 0.62547 110 78 - + 36.79946 7.98814 47.60221 1.25094 110 77 - + 45.51080 9.52971 71.40332 1.87642 110 64 - + 54.20867 11.07129 95.20443 2.50189 110 57 - + 62.89337 12.61286 119.00554 3.12736 110 53 - + 39.02220 12.61286 49.29372 3.12736 110 79 - + 44.77653 14.15443 59.15246 3.75283 110 76 - + 50.51863 15.69600 69.01120 4.37830 110 73 - + 56.24908 17.23757 78.86995 5.00377 110 71 - + 61.96842 18.77914 88.72869 5.62925 110 70 - + 67.67721 20.32071 98.58743 6.25472 110 69 - + 53.72926 20.32071 70.68330 6.25472 110 76 - + 58.36996 21.86229 77.75163 6.88019 110 75 - + 63.00132 23.40386 84.81996 7.50566 110 74 - + 67.62394 24.94543 91.88829 8.13113 110 74 - + 72.23842 26.48700 98.95662 8.75661 110 73 - + 76.84536 28.02857 106.02494 9.38208 110 72 - + 66.89856 28.02857 88.07144 9.38208 110 76 - + 70.95150 29.57014 93.94287 10.00755 110 76 - + 74.99806 31.11171 99.81430 10.63302 110 75 - + 79.03877 32.65329 105.68573 11.25849 110 75 - + 83.07415 34.19486 111.55716 11.88397 110 74 - + 87.10473 35.73643 117.42859 12.50944 110 74 - + 79.35270 35.73643 104.11800 12.50944 110 76 - + 83.04459 37.27800 109.32390 13.13491 110 76 - + 86.73258 38.81957 114.52980 13.76038 110 76 - + 90.41704 40.36114 119.73570 14.38585 110 76 - + 94.09833 41.90271 124.94160 15.01132 110 75 - + 97.77681 43.44429 130.14750 15.63680 110 75 - + 91.41802 43.44429 119.55043 15.63680 110 76 - + 94.86840 44.98586 124.33244 16.26227 110 76 - + 98.31648 46.52743 129.11446 16.88774 110 76 - + 101.76240 48.06900 133.89648 17.51321 110 76 - + 105.20630 49.61057 138.67850 18.13868 110 76 - + 108.64831 51.15214 143.46051 18.76416 110 76 - + 103.25462 51.15214 134.64963 18.76416 110 77 - + 106.53229 52.69371 139.13795 19.38963 110 77 - + 109.80808 54.23529 143.62627 20.01510 110 76 - + 113.08184 55.77686 148.11459 20.64057 110 76 - + 116.35344 57.31843 152.60291 21.26604 110 76 - + 119.62272 58.86000 157.09123 21.89152 110 76 - + 204.89981 58.86000 280.51782 14.12167 110 73 - + 212.99914 60.33150 291.87613 14.69346 110 73 - + 221.08561 61.80300 303.23445 15.26526 110 73 - + 229.15897 63.27450 314.59276 15.83705 110 73 - + 237.21896 64.74600 325.95107 16.40885 110 73 - + 245.26530 66.21750 337.30939 16.98064 110 73 - + 230.10399 66.21750 312.61080 16.98064 110 74 - + 237.66218 67.68900 323.13743 17.55243 110 74 - + 244.37108 69.16050 333.66406 18.12423 110 73 - + 212.06773 70.63200 344.19069 18.69602 110 62 - + 180.86388 72.10350 354.71732 19.26782 110 51 - + 150.68882 73.57500 365.24396 19.83961 110 41 - + 150.68882 73.57500 357.09310 19.83961 110 42 - + 121.44747 75.04650 367.38481 20.41140 110 33 - + 93.01052 76.51800 377.67653 20.98320 110 25 - + 65.25586 77.98950 387.96825 21.55499 110 17 - + 38.06141 79.46100 398.25997 22.12679 110 10 - + 11.30508 80.93250 408.55168 22.69858 110 0 - + 11.30508 80.93250 404.41665 22.69858 110 0 - + 8.45919 82.40400 414.60420 23.27037 110 0 - + 8.84826 83.87550 424.79176 23.84217 110 0 - + 9.23595 85.34700 434.97931 24.41396 110 0 - + 9.62289 86.81850 445.16686 24.98575 110 0 - + 10.00969 88.29000 455.35442 25.55755 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12469,8 +12559,8 @@ Layer name [DATA] 0.00 0.000 'Clay' -4.00 0.000 'Peat' - -6.00 411.828 'Clay' - -13.00 395.227 'Sand' + -6.00 418.814 'Clay' + -13.00 395.475 'Sand' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12495,17 +12585,17 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 7.90682 11.47132 -7.08806 0.00000 19.42013 1 3 0 1.000 0 0 - 8.16960 11.90118 -7.83591 0.00000 19.74572 1 10 12 1.000 0 0 - 7.54962 11.01915 -6.91935 0.00000 13.56667 1 11 13 1.000 0 0 + 7.29688 10.61966 -6.39599 0.00000 13.31787 1 10 12 1.000 0 0 + 7.55686 11.01942 -6.75572 0.00000 13.44873 1 11 13 1.000 0 0 -24.64877 -33.28626 7.11387 16.24927 18.61625 2 3 0 1.000 0 0 - -24.85057 -33.36786 7.14681 16.32244 18.83921 2 10 12 1.000 0 0 - -23.04409 -32.60699 7.04179 11.16180 12.88365 2 11 13 1.000 0 0 + -22.84294 -32.52947 6.99532 11.11396 12.71953 2 10 12 1.000 0 0 + -23.04409 -32.60699 7.04179 11.14095 12.76033 2 11 13 1.000 0 0 -357.36675 -130.29407 -186.90167 57.83928 63.86128 3 3 0 1.000 0 0 - -466.96793 -150.45558 -290.47348 67.13909 71.84045 3 10 12 1.000 0 0 - -286.47657 -106.30945 -126.66806 41.39030 47.29322 3 11 13 1.000 0 0 + -218.22491 -91.84827 -87.98517 36.87428 43.00808 3 10 12 1.000 0 0 + -263.41000 -101.44644 -113.42288 40.48254 46.54521 3 11 13 1.000 0 0 -348.18884 -116.94920 -183.16395 56.76415 62.32165 4 3 0 1.000 0 0 - -352.61491 -115.53101 -187.19922 58.17216 63.64420 4 10 12 1.000 0 0 - -357.62960 -116.26916 -192.98981 45.20436 49.47297 4 11 13 1.000 0 0 + -351.98851 -116.84236 -190.57173 42.34261 46.09012 4 10 12 1.000 0 0 + -356.06416 -116.45465 -192.26628 44.94341 49.04222 4 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -12530,11 +12620,11 @@ AnchorName 2 10 7 12 1.000 56.00000 0 1 0 0 'Anchor' 2 11 7 13 1.000 56.00000 0 1 0 0 'Anchor' 3 3 7 0 1.000 168.00000 0 0 0 0 'Anchor' - 3 10 7 12 1.000 168.00000 0 0 0 0 'Anchor' - 3 11 7 13 1.000 161.86324 0 1 0 0 'Anchor' + 3 10 7 12 1.000 141.67839 0 1 0 0 'Anchor' + 3 11 7 13 1.000 155.07134 0 1 0 0 'Anchor' 4 3 7 0 1.000 144.19843 0 1 0 0 'Anchor' - 4 10 7 12 1.000 143.74462 0 1 0 0 'Anchor' - 4 11 7 13 1.000 142.71829 0 1 0 0 'Anchor' + 4 10 7 12 1.000 142.65945 0 1 0 0 'Anchor' + 4 11 7 13 1.000 142.72839 0 1 0 0 'Anchor' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -12550,15 +12640,36 @@ Force [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'Anchor' 142.65945 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-466.96793 -MaximumShearForce=-150.45558 +MaximumMoment=-357.36675 +MaximumShearForce=-130.29407 MaximumDisplacement=-186.90167 -MaximumPercentageMobilisedMoment=67.13909 -MaximumPercentageMobilisedResistance=71.84045 +MaximumPercentageMobilisedMoment=57.83928 +MaximumPercentageMobilisedResistance=63.86128 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-351.98851 +MaximumShearForce=-116.84236 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=42.34261 +MaximumPercentageMobilisedResistance=46.09012 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [WARNINGS] [TABLE] DataCount=0 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shi index e8bec9e5..164be112 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-45h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-45h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:47 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-45h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -463,6 +463,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -472,6 +473,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -481,6 +483,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -490,6 +493,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -513,7 +517,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -524,8 +528,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -536,7 +542,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -555,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -582,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -609,6 +617,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -636,6 +645,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -663,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -690,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -717,6 +729,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -744,6 +757,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -754,23 +768,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.000 -EffectFactorVarUnfav=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=1.394 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=0.800 +MaterialFactorTgPhi=0.800 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=2.172 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -780,8 +851,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -795,9 +866,10 @@ EffectFactorVarUnfav=1.000 MaterialFactorCohesion=0.800 MaterialFactorTgPhi=0.800 MaterialFactorSubgradeReaction=1.000 -ResistanceFactor=2.025 +ResistanceFactor=2.043 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -807,7 +879,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -825,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -852,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -879,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shd index b2a1f665..da03c073 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -255,6 +255,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -278,7 +279,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -289,8 +290,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -301,7 +304,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -309,17 +312,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -327,8 +331,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -336,7 +340,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -347,15 +351,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -363,17 +368,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,8 +387,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -401,15 +407,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -428,6 +435,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -455,6 +463,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -463,12 +472,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -482,6 +491,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -490,7 +500,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -509,6 +519,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -517,25 +528,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -543,16 +611,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -563,6 +631,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -570,16 +639,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -590,6 +715,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -597,8 +723,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -606,7 +732,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -617,6 +743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -624,8 +751,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -633,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -644,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -651,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shi index c1fde26d..88576d2b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -254,6 +254,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -277,7 +278,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -288,8 +289,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -300,7 +303,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -308,17 +311,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -326,8 +330,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -335,7 +339,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -346,15 +350,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -362,17 +367,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -380,8 +386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -400,15 +406,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -427,6 +434,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -454,6 +462,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -462,12 +471,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -481,6 +490,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -489,7 +499,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -508,6 +518,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -516,25 +527,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -542,16 +610,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -562,6 +630,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,16 +638,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -589,6 +714,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -596,8 +722,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -605,7 +731,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -616,6 +742,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -623,8 +750,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -632,7 +759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -643,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -650,8 +778,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shd index 38286b09..17800f83 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -258,6 +258,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -281,7 +282,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -292,8 +293,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -304,7 +307,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -312,17 +315,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -330,8 +334,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -339,7 +343,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -350,15 +354,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -366,17 +371,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -384,8 +390,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -404,15 +410,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -431,6 +438,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -458,6 +466,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -466,12 +475,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -485,6 +494,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -493,7 +503,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -512,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -520,25 +531,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -546,16 +614,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -566,6 +634,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -573,16 +642,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -593,6 +718,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -600,8 +726,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -609,7 +735,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -620,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -627,8 +754,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -636,7 +763,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -647,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -654,8 +782,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shi index 2ef0813a..0e71d37d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:50 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -257,6 +257,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -280,7 +281,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -291,8 +292,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -303,7 +306,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -311,17 +314,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -329,8 +333,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -338,7 +342,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -349,15 +353,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -365,17 +370,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -383,8 +389,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -403,15 +409,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -430,6 +437,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -457,6 +465,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -465,12 +474,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -484,6 +493,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -492,7 +502,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -511,6 +521,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -519,25 +530,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -545,16 +613,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -565,6 +633,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -572,16 +641,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -592,6 +717,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -599,8 +725,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -608,7 +734,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -619,6 +745,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -626,8 +753,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -635,7 +762,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -646,6 +773,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -653,8 +781,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shd index 78fd5fa1..4dd890c9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -280,6 +280,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -303,7 +304,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -314,8 +315,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -326,7 +329,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -334,17 +337,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -352,8 +356,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -361,7 +365,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -372,15 +376,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -388,17 +393,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -406,8 +412,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -426,15 +432,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -453,6 +460,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -480,6 +488,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -488,12 +497,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -507,6 +516,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -515,7 +525,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -534,6 +544,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -542,25 +553,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -568,16 +636,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -588,6 +656,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,16 +664,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -615,6 +740,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -622,8 +748,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -631,7 +757,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -642,6 +768,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -649,8 +776,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -658,7 +785,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -669,6 +796,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -676,8 +804,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shi index b67e92b4..d86f6464 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-4c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-4c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-4c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -279,6 +279,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -302,7 +303,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -313,8 +314,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -325,7 +328,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -333,17 +336,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -351,8 +355,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -360,7 +364,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -371,15 +375,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -387,17 +392,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -405,8 +411,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -425,15 +431,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -452,6 +459,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -479,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -487,12 +496,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -506,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -514,7 +524,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -533,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -541,25 +552,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -567,16 +635,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -587,6 +655,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,16 +663,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +739,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -621,8 +747,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -630,7 +756,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +775,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -657,7 +784,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -675,8 +803,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shd index 366e9a45..3ba2de4d 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-5a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-5a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -352,6 +352,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -361,6 +362,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -370,6 +372,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -393,7 +396,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -404,8 +407,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -416,7 +421,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -424,17 +429,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -442,8 +448,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -451,7 +457,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -462,15 +468,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -478,17 +485,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -496,8 +504,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -516,15 +524,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -543,6 +552,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -570,6 +580,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -578,12 +589,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -597,6 +608,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -605,7 +617,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -624,6 +636,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -632,25 +645,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -658,16 +728,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -678,6 +748,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -685,16 +756,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -705,6 +832,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -712,8 +840,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -721,7 +849,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -732,6 +860,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -739,8 +868,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -748,7 +877,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -759,6 +888,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,8 +896,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shi index 6fd02b65..cba255d2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-5a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:53 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-5a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:51 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-5a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -351,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -360,6 +361,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -369,6 +371,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -392,7 +395,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -403,8 +406,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -415,7 +420,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -423,17 +428,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -441,8 +447,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -450,7 +456,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -461,15 +467,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -477,17 +484,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -495,8 +503,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -515,15 +523,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -542,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -569,6 +579,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -577,12 +588,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -596,6 +607,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -604,7 +616,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -623,6 +635,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -631,25 +644,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -657,16 +727,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -677,6 +747,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -684,16 +755,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -704,6 +831,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -711,8 +839,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -720,7 +848,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -731,6 +859,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -738,8 +867,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -747,7 +876,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -758,6 +887,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -765,8 +895,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shd index 0831e7cc..a02ae17e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-5b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-5b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -352,6 +352,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -361,6 +362,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -370,6 +372,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -393,7 +396,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -404,8 +407,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -416,7 +421,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -424,17 +429,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -442,8 +448,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -451,7 +457,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -462,15 +468,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -478,17 +485,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -496,8 +504,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -516,15 +524,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -543,6 +552,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -570,6 +580,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -578,12 +589,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -597,6 +608,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -605,7 +617,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -624,6 +636,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -632,25 +645,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -658,16 +728,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -678,6 +748,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -685,16 +756,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -705,6 +832,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -712,8 +840,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -721,7 +849,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -732,6 +860,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -739,8 +868,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -748,7 +877,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -759,6 +888,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -766,8 +896,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -3601,10 +3731,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 17.37 : Percentage mobilized resistance left - 19.06 : Percentage mobilized resistance right - 1257.60 : Effective left - 1257.60 : Effective right + 17.42 : Percentage mobilized resistance left + 19.12 : Percentage mobilized resistance right + 1261.21 : Effective left + 1261.20 : Effective right 0.00 : Water pressure left 0.00 : Water pressure right 7241.85 : Max effective resistance left @@ -3631,132 +3761,132 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00017 0.00203 7.78733 - -0.05469 -0.82193 7.74736 - -0.39044 -2.56843 7.70740 - -1.09530 -4.51348 7.66744 - -2.20919 -6.65880 7.62748 - -3.76779 -8.93863 7.58752 - -3.76782 -8.93801 7.58752 - -5.72322 -10.16767 7.54756 - -7.74401 -10.03425 7.50760 - -9.73485 -9.86967 7.46764 - -11.69027 -9.68089 7.42768 - -13.60500 -9.45905 7.38773 - -13.60500 -9.45904 7.38773 - -15.47612 -9.24525 7.34777 - -17.30123 -9.00350 7.30782 - -19.07663 -8.74842 7.26787 - -20.79982 -8.48164 7.22791 - -22.46800 -8.19547 7.18797 - -22.46800 -8.19547 7.18797 - -24.07984 -7.91848 7.14802 - -25.63426 -7.62451 7.10808 - -27.12918 -7.32368 7.06813 - -28.56333 -7.01695 7.02820 - -29.93517 -6.69835 6.98826 - -29.93517 -6.69835 6.98826 - -31.24422 -6.38920 6.94833 - -32.49016 -6.06974 6.90840 - -33.67193 -5.74750 6.86847 - -34.78902 -5.42315 6.82854 - -35.84073 -5.09193 6.78862 - -35.84073 -5.09193 6.78862 - -36.82717 -4.77053 6.74871 - -37.74856 -4.44340 6.70879 - -38.60454 -4.11641 6.66888 - -39.39517 -3.79007 6.62898 - -40.12035 -3.46048 6.58908 - -40.12035 -3.46048 6.58908 - -40.78063 -3.14117 6.54918 - -41.37666 -2.81949 6.50928 - -41.90858 -2.50019 6.46939 - -42.37692 -2.18366 6.42951 - -42.78201 -1.86664 6.38962 - -42.78201 -1.86664 6.38962 - -43.12478 -1.56039 6.34975 - -43.40618 -1.25433 6.30987 - -43.62679 -0.95243 6.27000 - -43.78745 -0.65501 6.23014 - -43.88890 -0.35926 6.19027 - -43.88890 -0.35926 6.19027 - -43.93232 -0.07474 6.15042 - -43.91895 0.20754 6.11056 - -43.84967 0.48423 6.07072 - -43.72564 0.75506 6.03087 - -43.54788 1.02247 5.99103 - -43.54788 1.02247 5.99103 - -43.31779 1.27822 5.95120 - -43.03685 1.53008 5.91136 - -42.70621 1.77517 5.87154 - -42.32725 2.01326 5.83171 - -41.90123 2.24650 5.79189 - -41.90123 2.24650 5.79189 - -41.42976 2.46769 5.75208 - -40.91450 2.68364 5.71227 - -40.35682 2.89183 5.67246 - -39.75829 3.09209 5.63266 - -39.12039 3.28630 5.59286 - -39.12039 3.28630 5.59286 - -38.44488 3.46812 5.55306 - -37.73356 3.64357 5.51327 - -36.98802 3.81044 5.47348 - -36.20997 3.96858 5.43369 - -35.40106 4.11968 5.39391 - -35.40106 4.11968 5.39391 - -34.56319 4.25809 5.35414 - -33.69831 4.38919 5.31436 - -32.80813 4.51101 5.27459 - -31.89453 4.62343 5.23482 - -30.95928 4.72798 5.19506 - -30.95928 4.72798 5.19506 - -30.00442 4.81956 5.15529 - -29.03200 4.90305 5.11553 - -28.04386 4.97667 5.07578 - -27.04200 5.04031 5.03602 - -26.02831 5.09537 4.99627 - -26.02831 5.09537 4.99627 - -25.00493 5.13724 4.95653 - -23.97400 5.17034 4.91678 - -22.93749 5.19306 4.87704 - -21.89748 5.20532 4.83729 - -20.85597 5.20839 4.79755 - -20.85597 5.20839 4.79755 - -19.81519 5.19808 4.75782 - -18.77737 5.17842 4.71808 - -17.74455 5.14795 4.67835 - -16.71891 5.10659 4.63862 - -15.70256 5.05553 4.59888 - -15.70256 5.05553 4.59888 - -14.69777 4.99092 4.55916 - -13.70685 4.91646 4.51943 - -12.73193 4.83082 4.47970 - -11.77527 4.73394 4.43998 - -10.83903 4.62690 4.40025 - -10.83903 4.62690 4.40025 - -9.92557 4.50617 4.36053 - -9.03725 4.37516 4.32081 - -8.17628 4.23265 4.28109 - -7.34496 4.07858 4.24137 - -6.54555 3.91397 4.20165 - -6.54555 3.91396 4.20165 - -5.78044 3.73553 4.16193 - -5.05205 3.54645 4.12221 - -4.36264 3.34559 4.08249 - -3.71460 3.13290 4.04278 - -3.11021 2.90932 4.00306 - -3.11021 2.90932 4.00306 - -2.55193 2.67183 3.96334 - -2.04221 2.42335 3.92363 - -1.58339 2.16285 3.88391 - -1.17788 1.89029 3.84419 - -0.82802 1.60654 3.80448 - -0.82802 1.60654 3.80448 - -0.53632 1.30879 3.76476 - -0.30526 0.99976 3.72505 - -0.13723 0.67851 3.68533 - -0.03467 0.34497 3.64562 - 0.00000 0.00000 3.60590 + -0.00016 0.00186 7.34245 + -0.05765 -0.86607 7.30765 + -0.41098 -2.69999 7.27286 + -1.15081 -4.73144 7.23807 + -2.31684 -6.96211 7.20328 + -3.94455 -9.32626 7.16848 + -3.94457 -9.32582 7.16848 + -5.97674 -10.50164 7.13369 + -8.04643 -10.19550 7.09890 + -10.05496 -9.88963 7.06411 + -12.00216 -9.58201 7.02932 + -13.88702 -9.26331 6.99453 + -13.88702 -9.26330 6.99453 + -15.70959 -8.95907 6.95974 + -17.46990 -8.64359 6.92495 + -19.16686 -8.32566 6.89017 + -20.80001 -8.00554 6.85539 + -22.36847 -7.67635 6.82061 + -22.36847 -7.67635 6.82061 + -23.87238 -7.36010 6.78583 + -25.31195 -7.03549 6.75105 + -26.68652 -6.71011 6.71628 + -27.99597 -6.38434 6.68151 + -29.23987 -6.05274 6.64674 + -29.23987 -6.05275 6.64674 + -30.41863 -5.73304 6.61198 + -31.53275 -5.40822 6.57721 + -32.58199 -5.08440 6.54245 + -33.56660 -4.76193 6.50770 + -34.48655 -4.43639 6.47294 + -34.48655 -4.43639 6.47294 + -35.34254 -4.12225 6.43819 + -36.13529 -3.80565 6.40345 + -36.86497 -3.49161 6.36871 + -37.53212 -3.18040 6.33397 + -38.13708 -2.86838 6.29923 + -38.13708 -2.86838 6.29923 + -38.68074 -2.56755 6.26450 + -39.16408 -2.26642 6.22977 + -39.58757 -1.96915 6.19505 + -39.95201 -1.67597 6.16033 + -40.25803 -1.38379 6.12561 + -40.25803 -1.38379 6.12561 + -40.50672 -1.10280 6.09090 + -40.69924 -0.82324 6.05619 + -40.83634 -0.54863 6.02148 + -40.91904 -0.27918 5.98678 + -40.94818 -0.01220 5.95208 + -40.94818 -0.01221 5.95208 + -40.92505 0.24351 5.91739 + -40.85097 0.49637 5.88270 + -40.72689 0.74336 5.84802 + -40.55403 0.98429 5.81334 + -40.33342 1.22152 5.77866 + -40.33342 1.22152 5.77866 + -40.06651 1.44737 5.74398 + -39.75474 1.66921 5.70931 + -39.39927 1.88438 5.67465 + -39.00144 2.09275 5.63999 + -38.56249 2.29639 5.60533 + -38.56249 2.29639 5.60533 + -38.08395 2.48852 5.57067 + -37.56741 2.67567 5.53602 + -37.01417 2.85549 5.50138 + -36.42571 3.02786 5.46673 + -35.80340 3.19463 5.43209 + -35.80340 3.19463 5.43209 + -35.14890 3.34979 5.39746 + -34.46388 3.49913 5.36282 + -33.74977 3.64057 5.32819 + -33.00818 3.77403 5.29357 + -32.24058 3.90116 5.25894 + -32.24058 3.90116 5.25894 + -31.44874 4.01655 5.22432 + -30.63440 4.12543 5.18971 + -29.79912 4.22594 5.15509 + -28.94459 4.31798 5.12048 + -28.07239 4.40308 5.08587 + -28.07239 4.40308 5.08587 + -27.18436 4.47634 5.05127 + -26.28233 4.54249 5.01666 + -25.36795 4.59985 4.98206 + -24.44298 4.64835 4.94746 + -23.50911 4.68938 4.91287 + -23.50911 4.68938 4.91287 + -22.56822 4.71846 4.87828 + -21.62223 4.73994 4.84368 + -20.67286 4.75226 4.80909 + -19.72194 4.75538 4.77451 + -18.77124 4.75057 4.73992 + -18.77124 4.75057 4.73992 + -17.82269 4.73373 4.70534 + -16.87828 4.70885 4.67076 + -15.93979 4.67451 4.63618 + -15.00911 4.63066 4.60160 + -14.08808 4.57848 4.56702 + -14.08808 4.57848 4.56702 + -13.17869 4.51421 4.53244 + -12.28296 4.44150 4.49787 + -11.40274 4.35908 4.46330 + -10.53998 4.26688 4.42872 + -9.69656 4.16602 4.39415 + -9.69656 4.16602 4.39415 + -8.87453 4.05299 4.35958 + -8.07595 3.93121 4.32501 + -7.30271 3.79947 4.29044 + -6.55683 3.65773 4.25588 + -5.84022 3.50701 4.22131 + -5.84022 3.50701 4.22131 + -5.15498 3.34409 4.18674 + -4.50319 3.17212 4.15218 + -3.88681 2.98998 4.11761 + -3.30788 2.79765 4.08304 + -2.76837 2.59608 4.04848 + -2.76837 2.59608 4.04848 + -2.27039 2.38225 4.01391 + -1.81609 2.15911 3.97935 + -1.40744 1.92564 3.94479 + -1.04652 1.68179 3.91022 + -0.73535 1.42846 3.87566 + -0.73535 1.42846 3.87566 + -0.47608 1.16285 3.84109 + -0.27085 0.88770 3.80653 + -0.12170 0.60204 3.77196 + -0.03073 0.30587 3.73740 + 0.00000 0.00000 3.70284 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3961,125 +4091,125 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -1.20000 7.00000 36.00000 4.00000 0.89492 0.57143 5.14286 - -1.40000 9.00000 42.00000 4.66667 0.83188 0.51852 4.66667 - -1.60000 11.00000 48.00000 5.33333 0.78755 0.48485 4.36364 - -1.80000 13.00000 54.00000 6.00000 0.75508 0.46154 4.15385 - -2.00000 15.00000 58.50000 6.50000 0.73020 0.44828 4.03448 - -2.00000 15.00000 61.50000 6.83333 0.73020 0.44086 3.96774 - -2.20000 17.00000 66.00000 7.33333 0.71046 0.43137 3.88235 - -2.40000 18.99999 72.00000 8.00000 0.69433 0.42105 3.78947 - -2.60000 20.99999 78.00000 8.66667 0.68086 0.41270 3.71429 - -2.80000 22.99999 84.00000 9.33333 0.66941 0.40580 3.65218 - -3.00000 24.99999 88.50000 9.83333 0.65952 0.40136 3.61225 - -3.00000 24.99999 91.50000 10.16667 0.65952 0.39869 3.58824 - -3.20000 26.99998 96.00000 10.66667 0.65088 0.39506 3.55556 - -3.40000 28.99997 102.00000 11.33333 0.64325 0.39080 3.51724 - -3.60000 30.99997 108.00000 12.00000 0.63644 0.38710 3.48387 - -3.80000 32.99996 114.00000 12.66667 0.63031 0.38384 3.45455 - -4.00000 34.99995 118.50000 13.16667 0.62477 0.38164 3.43479 - -4.00000 34.99995 121.50000 13.50000 0.62477 0.38028 3.42254 - -4.20000 36.99994 126.00000 14.00000 0.61972 0.37838 3.40541 - -4.40000 38.99993 132.00000 14.66667 0.61510 0.37607 3.38462 - -4.60000 40.99991 138.00000 15.33333 0.61085 0.37398 3.36586 - -4.80000 42.99990 144.00000 16.00000 0.60692 0.37209 3.34885 - -5.00000 44.99988 148.50000 16.50000 0.60327 0.37079 3.33709 - -5.00000 44.99988 151.50000 16.83333 0.60327 0.36996 3.32968 - -5.20000 46.99986 156.00000 17.33333 0.59987 0.36880 3.31916 - -5.40000 48.99984 162.00000 18.00000 0.59669 0.36735 3.30613 - -5.60000 50.99982 168.00000 18.66667 0.59372 0.36601 3.29413 - -5.80000 52.99980 174.00000 19.33333 0.59092 0.36478 3.28303 - -6.00000 54.99977 178.50000 19.83333 0.58829 0.36392 3.27524 - -6.00000 54.99977 181.50000 20.16667 0.58829 0.36336 3.27028 - -6.20000 56.99974 186.00000 20.66667 0.58580 0.36257 3.26317 - -6.40000 58.99971 192.00000 21.33333 0.58345 0.36158 3.25425 - -6.60000 60.99968 198.00000 22.00000 0.58121 0.36066 3.24592 - -6.80000 62.99964 204.00000 22.66667 0.57910 0.35979 3.23811 - -7.00000 64.99961 208.50000 23.16667 0.57708 0.35918 3.23258 - -7.00000 64.99961 211.50000 23.50000 0.57708 0.35878 3.22903 - -7.20000 66.99956 216.00000 24.00000 0.57516 0.35821 3.22390 - -7.40000 68.99952 222.00000 24.66667 0.57332 0.35749 3.21741 - -7.60000 70.99948 228.00000 25.33333 0.57157 0.35681 3.21129 - -7.80000 72.99943 234.00000 26.00000 0.56989 0.35617 3.20550 - -8.00000 74.99937 238.50000 26.50000 0.56828 0.35571 3.20137 - -8.00000 74.99937 241.50000 26.83333 0.56828 0.35541 3.19870 - -8.20000 76.99932 246.00000 27.33333 0.56674 0.35498 3.19483 - -8.40000 78.99926 252.00000 28.00000 0.56526 0.35443 3.18990 - -8.60000 80.99920 258.00000 28.66667 0.56384 0.35391 3.18522 - -8.80000 82.99914 264.00000 29.33333 0.56247 0.35342 3.18076 - -9.00000 84.99907 268.50000 29.83333 0.56115 0.35306 3.17755 - -9.00000 84.99907 271.50000 30.16667 0.56115 0.35283 3.17547 - -9.20000 86.99900 276.00000 30.66667 0.55988 0.35249 3.17245 - -9.40000 88.99892 282.00000 31.33333 0.55865 0.35206 3.16858 - -9.60000 90.99884 288.00000 32.00000 0.55746 0.35165 3.16488 - -9.80000 92.99876 294.00000 32.66667 0.55632 0.35126 3.16133 - -10.00000 94.99868 298.50000 33.16667 0.55521 0.35097 3.15877 - -10.00000 94.99868 301.50000 33.50000 0.55521 0.35079 3.15711 - -10.20000 96.99859 306.00000 34.00000 0.55414 0.35052 3.15469 - -10.40000 98.99849 312.00000 34.66667 0.55311 0.35017 3.15156 - -10.60000 100.99839 318.00000 35.33333 0.55210 0.34984 3.14856 - -10.80000 102.99829 324.00000 36.00000 0.55113 0.34952 3.14568 - -11.00000 104.99819 328.50000 36.50000 0.55018 0.34929 3.14359 - -11.00000 104.99819 331.50000 36.83333 0.55018 0.34914 3.14223 - -11.20000 106.99808 336.00000 37.33333 0.54927 0.34892 3.14024 - -11.40000 108.99796 342.00000 38.00000 0.54838 0.34863 3.13767 - -11.60000 110.99784 348.00000 38.66667 0.54751 0.34836 3.13520 - -11.80000 112.99772 354.00000 39.33333 0.54667 0.34809 3.13281 - -12.00000 114.99759 358.50000 39.83333 0.54586 0.34790 3.13107 - -12.00000 114.99759 361.50000 40.16667 0.54586 0.34777 3.12994 - -12.20000 116.99746 366.00000 40.66667 0.54506 0.34759 3.12827 - -12.40000 118.99732 372.00000 41.33333 0.54429 0.34735 3.12612 - -12.60000 120.99718 378.00000 42.00000 0.54354 0.34712 3.12404 - -12.80000 122.99703 384.00000 42.66667 0.54280 0.34689 3.12203 - -13.00000 124.99688 388.50000 43.16667 0.54209 0.34673 3.12056 - -13.00000 124.99688 391.50000 43.50000 0.54209 0.34662 3.11960 - -13.20000 126.99672 396.00000 44.00000 0.54139 0.34647 3.11819 - -13.40000 128.99656 402.00000 44.66667 0.54072 0.34626 3.11636 - -13.60000 130.99640 408.00000 45.33333 0.54005 0.34607 3.11459 - -13.80000 132.99622 414.00000 46.00000 0.53941 0.34587 3.11287 - -14.00000 134.99605 418.50000 46.50000 0.53878 0.34573 3.11161 - -14.00000 134.99605 421.50000 46.83333 0.53878 0.34564 3.11079 - -14.20000 136.99586 426.00000 47.33333 0.53817 0.34551 3.10958 - -14.40000 138.99567 432.00000 48.00000 0.53756 0.34533 3.10801 - -14.60000 140.99548 438.00000 48.66667 0.53698 0.34516 3.10648 - -14.80000 142.99528 444.00000 49.33333 0.53641 0.34500 3.10500 - -15.00000 144.99508 448.50000 49.83333 0.53585 0.34488 3.10391 - -15.00000 144.99508 451.50000 50.16667 0.53585 0.34480 3.10320 - -15.20000 146.99486 456.00000 50.66667 0.53530 0.34468 3.10215 - -15.40000 148.99465 462.00000 51.33333 0.53476 0.34453 3.10078 - -15.60000 150.99442 468.00000 52.00000 0.53424 0.34438 3.09945 - -15.80000 152.99420 474.00000 52.66667 0.53373 0.34424 3.09816 - -16.00000 154.99396 478.50000 53.16667 0.53323 0.34413 3.09721 - -16.00000 154.99396 481.50000 53.50000 0.53323 0.34406 3.09658 - -16.20000 156.99372 486.00000 54.00000 0.53274 0.34396 3.09567 - -16.40000 158.99347 492.00000 54.66667 0.53226 0.34383 3.09447 - -16.60000 160.99322 498.00000 55.33333 0.53179 0.34370 3.09330 - -16.80000 162.99296 504.00000 56.00000 0.53133 0.34357 3.09216 - -17.00000 164.99270 508.50000 56.50000 0.53088 0.34348 3.09132 - -17.00000 164.99270 511.50000 56.83333 0.53088 0.34342 3.09077 - -17.20000 166.99242 516.00000 57.33333 0.53044 0.34333 3.08996 - -17.40000 168.99214 522.00000 58.00000 0.53000 0.34321 3.08890 - -17.60000 170.99186 528.00000 58.66667 0.52958 0.34310 3.08787 - -17.80000 172.99157 534.00000 59.33333 0.52916 0.34298 3.08686 - -18.00000 174.99127 538.50000 59.83333 0.52876 0.34290 3.08611 - -18.00000 174.99127 541.50000 60.16667 0.52876 0.34285 3.08562 - -18.20000 176.99096 546.00000 60.66667 0.52836 0.34277 3.08490 - -18.40000 178.99065 552.00000 61.33333 0.52796 0.34266 3.08396 - -18.60000 180.99033 558.00000 62.00000 0.52758 0.34256 3.08304 - -18.80000 182.99001 564.00000 62.66667 0.52720 0.34246 3.08214 - -19.00000 184.98967 568.50000 63.16667 0.52683 0.34239 3.08147 - -19.00000 184.98967 571.50000 63.50000 0.52683 0.34234 3.08104 - -19.20000 186.98933 576.00000 64.00000 0.52647 0.34227 3.08039 - -19.40000 188.98899 582.00000 64.66667 0.52611 0.34217 3.07954 - -19.60000 190.98863 588.00000 65.33333 0.52576 0.34208 3.07872 - -19.80000 192.98827 594.00000 66.00000 0.52542 0.34199 3.07791 - -20.00000 194.98790 598.50000 66.50000 0.52508 0.34192 3.07731 - -20.00000 194.98790 601.50000 66.83333 0.52508 0.34188 3.07692 - -20.20000 196.98753 606.00000 67.33333 0.52475 0.34182 3.07634 - -20.40000 198.98714 612.00000 68.00000 0.52443 0.34173 3.07558 - -20.60000 200.98675 618.00000 68.66667 0.52411 0.34165 3.07483 - -20.80000 202.98636 624.00000 69.33333 0.52379 0.34157 3.07410 - -21.00000 204.98595 628.50000 69.83333 0.52348 0.34151 3.07356 + -1.20000 7.00000 36.00000 4.00000 1.14995 0.57143 5.14286 + -1.40000 9.00000 42.00000 4.66667 1.00824 0.51852 4.66667 + -1.60000 11.00000 48.00000 5.33333 0.91939 0.48485 4.36364 + -1.80000 13.00000 54.00000 6.00000 0.85830 0.46154 4.15385 + -2.00000 15.00000 58.50000 6.50000 0.81364 0.44828 4.03448 + -2.00000 15.00000 61.50000 6.83333 0.81364 0.44086 3.96774 + -2.20000 17.00000 66.00000 7.33333 0.77950 0.43137 3.88235 + -2.40000 18.99999 72.00000 8.00000 0.75250 0.42105 3.78947 + -2.60000 20.99999 78.00000 8.66667 0.73059 0.41270 3.71429 + -2.80000 22.99999 84.00000 9.33333 0.71243 0.40580 3.65218 + -3.00000 24.99999 88.50000 9.83333 0.69710 0.40136 3.61225 + -3.00000 24.99999 91.50000 10.16667 0.69710 0.39869 3.58824 + -3.20000 26.99998 96.00000 10.66667 0.68398 0.39506 3.55556 + -3.40000 28.99997 102.00000 11.33333 0.67260 0.39080 3.51724 + -3.60000 30.99997 108.00000 12.00000 0.66263 0.38710 3.48387 + -3.80000 32.99996 114.00000 12.66667 0.65381 0.38384 3.45455 + -4.00000 34.99995 118.50000 13.16667 0.64595 0.38164 3.43479 + -4.00000 34.99995 121.50000 13.50000 0.64595 0.38028 3.42254 + -4.20000 36.99994 126.00000 14.00000 0.63890 0.37838 3.40541 + -4.40000 38.99993 132.00000 14.66667 0.63252 0.37607 3.38462 + -4.60000 40.99991 138.00000 15.33333 0.62672 0.37398 3.36586 + -4.80000 42.99990 144.00000 16.00000 0.62143 0.37209 3.34885 + -5.00000 44.99988 148.50000 16.50000 0.61657 0.37079 3.33709 + -5.00000 44.99988 151.50000 16.83333 0.61657 0.36996 3.32968 + -5.20000 46.99986 156.00000 17.33333 0.61209 0.36880 3.31916 + -5.40000 48.99984 162.00000 18.00000 0.60795 0.36735 3.30613 + -5.60000 50.99982 168.00000 18.66667 0.60411 0.36601 3.29413 + -5.80000 52.99980 174.00000 19.33333 0.60053 0.36478 3.28303 + -6.00000 54.99977 178.50000 19.83333 0.59718 0.36392 3.27524 + -6.00000 54.99977 181.50000 20.16667 0.59718 0.36336 3.27028 + -6.20000 56.99974 186.00000 20.66667 0.59405 0.36257 3.26317 + -6.40000 58.99971 192.00000 21.33333 0.59111 0.36158 3.25425 + -6.60000 60.99968 198.00000 22.00000 0.58835 0.36066 3.24592 + -6.80000 62.99964 204.00000 22.66667 0.58574 0.35979 3.23811 + -7.00000 64.99961 208.50000 23.16667 0.58327 0.35918 3.23258 + -7.00000 64.99961 211.50000 23.50000 0.58327 0.35878 3.22903 + -7.20000 66.99956 216.00000 24.00000 0.58094 0.35821 3.22390 + -7.40000 68.99952 222.00000 24.66667 0.57873 0.35749 3.21741 + -7.60000 70.99948 228.00000 25.33333 0.57662 0.35681 3.21129 + -7.80000 72.99943 234.00000 26.00000 0.57462 0.35617 3.20550 + -8.00000 74.99937 238.50000 26.50000 0.57271 0.35571 3.20137 + -8.00000 74.99937 241.50000 26.83333 0.57271 0.35541 3.19870 + -8.20000 76.99932 246.00000 27.33333 0.57090 0.35498 3.19483 + -8.40000 78.99926 252.00000 28.00000 0.56916 0.35443 3.18990 + -8.60000 80.99920 258.00000 28.66667 0.56750 0.35391 3.18522 + -8.80000 82.99914 264.00000 29.33333 0.56590 0.35342 3.18076 + -9.00000 84.99907 268.50000 29.83333 0.56438 0.35306 3.17755 + -9.00000 84.99907 271.50000 30.16667 0.56438 0.35283 3.17547 + -9.20000 86.99900 276.00000 30.66667 0.56291 0.35249 3.17245 + -9.40000 88.99892 282.00000 31.33333 0.56151 0.35206 3.16858 + -9.60000 90.99884 288.00000 32.00000 0.56015 0.35165 3.16488 + -9.80000 92.99876 294.00000 32.66667 0.55885 0.35126 3.16133 + -10.00000 94.99868 298.50000 33.16667 0.55760 0.35097 3.15877 + -10.00000 94.99868 301.50000 33.50000 0.55760 0.35079 3.15711 + -10.20000 96.99859 306.00000 34.00000 0.55639 0.35052 3.15469 + -10.40000 98.99849 312.00000 34.66667 0.55522 0.35017 3.15156 + -10.60000 100.99839 318.00000 35.33333 0.55410 0.34984 3.14856 + -10.80000 102.99829 324.00000 36.00000 0.55301 0.34952 3.14568 + -11.00000 104.99819 328.50000 36.50000 0.55196 0.34929 3.14359 + -11.00000 104.99819 331.50000 36.83333 0.55196 0.34914 3.14223 + -11.20000 106.99808 336.00000 37.33333 0.55094 0.34892 3.14024 + -11.40000 108.99796 342.00000 38.00000 0.54996 0.34863 3.13767 + -11.60000 110.99784 348.00000 38.66667 0.54900 0.34836 3.13520 + -11.80000 112.99772 354.00000 39.33333 0.54808 0.34809 3.13281 + -12.00000 114.99759 358.50000 39.83333 0.54718 0.34790 3.13107 + -12.00000 114.99759 361.50000 40.16667 0.54718 0.34777 3.12994 + -12.20000 116.99746 366.00000 40.66667 0.54631 0.34759 3.12827 + -12.40000 118.99732 372.00000 41.33333 0.54547 0.34735 3.12612 + -12.60000 120.99718 378.00000 42.00000 0.54465 0.34712 3.12404 + -12.80000 122.99703 384.00000 42.66667 0.54385 0.34689 3.12203 + -13.00000 124.99688 388.50000 43.16667 0.54308 0.34673 3.12056 + -13.00000 124.99688 391.50000 43.50000 0.54308 0.34662 3.11960 + -13.20000 126.99672 396.00000 44.00000 0.54233 0.34647 3.11819 + -13.40000 128.99656 402.00000 44.66667 0.54160 0.34626 3.11636 + -13.60000 130.99640 408.00000 45.33333 0.54089 0.34607 3.11459 + -13.80000 132.99622 414.00000 46.00000 0.54019 0.34587 3.11287 + -14.00000 134.99605 418.50000 46.50000 0.53952 0.34573 3.11161 + -14.00000 134.99605 421.50000 46.83333 0.53952 0.34564 3.11079 + -14.20000 136.99586 426.00000 47.33333 0.53886 0.34551 3.10958 + -14.40000 138.99567 432.00000 48.00000 0.53822 0.34533 3.10801 + -14.60000 140.99548 438.00000 48.66667 0.53760 0.34516 3.10648 + -14.80000 142.99528 444.00000 49.33333 0.53699 0.34500 3.10500 + -15.00000 144.99508 448.50000 49.83333 0.53639 0.34488 3.10391 + -15.00000 144.99508 451.50000 50.16667 0.53639 0.34480 3.10320 + -15.20000 146.99486 456.00000 50.66667 0.53581 0.34468 3.10215 + -15.40000 148.99465 462.00000 51.33333 0.53525 0.34453 3.10078 + -15.60000 150.99442 468.00000 52.00000 0.53469 0.34438 3.09945 + -15.80000 152.99420 474.00000 52.66667 0.53415 0.34424 3.09816 + -16.00000 154.99396 478.50000 53.16667 0.53363 0.34413 3.09721 + -16.00000 154.99396 481.50000 53.50000 0.53363 0.34406 3.09658 + -16.20000 156.99372 486.00000 54.00000 0.53311 0.34396 3.09567 + -16.40000 158.99347 492.00000 54.66667 0.53261 0.34383 3.09447 + -16.60000 160.99322 498.00000 55.33333 0.53211 0.34370 3.09330 + -16.80000 162.99296 504.00000 56.00000 0.53163 0.34357 3.09216 + -17.00000 164.99270 508.50000 56.50000 0.53116 0.34348 3.09132 + -17.00000 164.99270 511.50000 56.83333 0.53116 0.34342 3.09077 + -17.20000 166.99242 516.00000 57.33333 0.53070 0.34333 3.08996 + -17.40000 168.99214 522.00000 58.00000 0.53025 0.34321 3.08890 + -17.60000 170.99186 528.00000 58.66667 0.52981 0.34310 3.08787 + -17.80000 172.99157 534.00000 59.33333 0.52937 0.34298 3.08686 + -18.00000 174.99127 538.50000 59.83333 0.52895 0.34290 3.08611 + -18.00000 174.99127 541.50000 60.16667 0.52895 0.34285 3.08562 + -18.20000 176.99096 546.00000 60.66667 0.52854 0.34277 3.08490 + -18.40000 178.99065 552.00000 61.33333 0.52813 0.34266 3.08396 + -18.60000 180.99033 558.00000 62.00000 0.52773 0.34256 3.08304 + -18.80000 182.99001 564.00000 62.66667 0.52734 0.34246 3.08214 + -19.00000 184.98967 568.50000 63.16667 0.52696 0.34239 3.08147 + -19.00000 184.98967 571.50000 63.50000 0.52696 0.34234 3.08104 + -19.20000 186.98933 576.00000 64.00000 0.52658 0.34227 3.08039 + -19.40000 188.98899 582.00000 64.66667 0.52622 0.34217 3.07954 + -19.60000 190.98863 588.00000 65.33333 0.52586 0.34208 3.07872 + -19.80000 192.98827 594.00000 66.00000 0.52550 0.34199 3.07791 + -20.00000 194.98790 598.50000 66.50000 0.52515 0.34192 3.07731 + -20.00000 194.98790 601.50000 66.83333 0.52515 0.34188 3.07692 + -20.20000 196.98753 606.00000 67.33333 0.52481 0.34182 3.07634 + -20.40000 198.98714 612.00000 68.00000 0.52448 0.34173 3.07558 + -20.60000 200.98675 618.00000 68.66667 0.52415 0.34165 3.07483 + -20.80000 202.98636 624.00000 69.33333 0.52383 0.34157 3.07410 + -21.00000 204.98595 628.50000 69.83333 0.52351 0.34151 3.07356 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -4103,125 +4233,125 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.01750 0.00000 0.01750 0.01750 202 100 P - 13.81201 0.00000 36.00000 6.26445 110 38 - - 14.99455 0.00000 42.00000 7.48695 110 36 - - 16.13067 0.00000 48.00000 8.66303 110 34 - - 17.24369 0.00000 54.00000 9.81600 110 32 - - 17.97568 0.00000 58.50000 10.58796 110 31 - - 18.70589 0.00000 61.50000 11.31816 110 30 - - 19.42551 0.00000 66.00000 12.07774 110 29 - - 20.50007 0.00000 72.00000 13.19225 110 28 - - 21.56597 0.00000 78.00000 14.29811 110 28 - - 22.62435 0.00000 84.00000 15.39644 110 27 - - 23.34631 0.00000 88.50000 16.15834 110 26 - - 24.00583 0.00000 91.50000 16.81786 110 26 - - 24.72182 0.00000 96.00000 17.57380 110 26 - - 25.76217 0.00000 102.00000 18.65410 110 25 - - 26.79760 0.00000 108.00000 19.72947 110 25 - - 27.82850 0.00000 114.00000 20.80031 110 24 - - 28.54285 0.00000 118.50000 21.55459 110 24 - - 29.16761 0.00000 121.50000 22.17935 110 24 - - 29.87808 0.00000 126.00000 22.92975 110 24 - - 30.89731 0.00000 132.00000 23.98892 110 23 - - 31.91317 0.00000 138.00000 25.04470 110 23 - - 32.92585 0.00000 144.00000 26.09731 110 23 - - 33.63392 0.00000 148.50000 26.84530 110 23 - - 34.23718 0.00000 151.50000 27.44856 110 23 - - 34.94244 0.00000 156.00000 28.19373 110 22 - - 35.94666 0.00000 162.00000 29.23787 110 22 - - 36.94837 0.00000 168.00000 30.27949 110 22 - - 37.94769 0.00000 174.00000 31.31871 110 22 - - 38.65059 0.00000 178.50000 32.06152 110 22 - - 39.23887 0.00000 181.50000 32.64980 110 22 - - 39.93962 0.00000 186.00000 33.39044 110 21 - - 40.93245 0.00000 192.00000 34.42317 110 21 - - 41.92332 0.00000 198.00000 35.45393 110 21 - - 42.91231 0.00000 204.00000 36.48280 110 21 - - 43.61098 0.00000 208.50000 37.22135 110 21 - - 44.18805 0.00000 211.50000 37.79842 110 21 - - 44.88500 0.00000 216.00000 38.53525 110 21 - - 45.86885 0.00000 222.00000 39.55898 110 21 - - 46.85112 0.00000 228.00000 40.58112 110 21 - - 47.83189 0.00000 234.00000 41.60176 110 20 - - 48.52709 0.00000 238.50000 42.33681 110 20 - - 49.09535 0.00000 241.50000 42.90508 110 20 - - 49.78916 0.00000 246.00000 43.63874 110 20 - - 50.76576 0.00000 252.00000 44.65520 110 20 - - 51.74109 0.00000 258.00000 45.67037 110 20 - - 52.71519 0.00000 264.00000 46.68432 110 20 - - 53.40754 0.00000 268.50000 47.41650 110 20 - - 53.96866 0.00000 271.50000 47.97763 110 20 - - 54.65988 0.00000 276.00000 48.70868 110 20 - - 55.63056 0.00000 282.00000 49.71919 110 20 - - 56.60018 0.00000 288.00000 50.72865 110 20 - - 57.56879 0.00000 294.00000 51.73708 110 20 - - 58.25883 0.00000 298.50000 52.46694 110 20 - - 58.81402 0.00000 301.50000 53.02213 110 20 - - 59.50311 0.00000 306.00000 53.75104 110 19 - - 60.46890 0.00000 312.00000 54.75663 110 19 - - 61.43380 0.00000 318.00000 55.76134 110 19 - - 62.39787 0.00000 324.00000 56.76521 110 19 - - 63.08604 0.00000 328.50000 57.49318 110 19 - - 63.63619 0.00000 331.50000 58.04334 110 19 - - 64.32358 0.00000 336.00000 58.77052 110 19 - - 65.28529 0.00000 342.00000 59.77202 110 19 - - 66.24626 0.00000 348.00000 60.77278 110 19 - - 67.20654 0.00000 354.00000 61.77284 110 19 - - 67.89322 0.00000 358.50000 62.49930 110 19 - - 68.43904 0.00000 361.50000 63.04512 110 19 - - 69.12506 0.00000 366.00000 63.77093 110 19 - - 70.08336 0.00000 372.00000 64.76900 110 19 - - 71.04105 0.00000 378.00000 65.76646 110 19 - - 71.99815 0.00000 384.00000 66.76333 110 19 - - 72.68365 0.00000 388.50000 67.48859 110 19 - - 73.22570 0.00000 391.50000 68.03064 110 19 - - 73.91065 0.00000 396.00000 68.75536 110 19 - - 74.86610 0.00000 402.00000 69.75056 110 19 - - 75.82103 0.00000 408.00000 70.74525 110 19 - - 76.77546 0.00000 414.00000 71.73943 110 19 - - 77.46005 0.00000 418.50000 72.46377 110 19 - - 77.99878 0.00000 421.50000 73.00250 110 19 - - 78.68290 0.00000 426.00000 73.72638 110 18 - - 79.63595 0.00000 432.00000 74.71917 110 18 - - 80.58856 0.00000 438.00000 75.71152 110 18 - - 81.54075 0.00000 444.00000 76.70346 110 18 - - 82.22465 0.00000 448.50000 77.42709 110 18 - - 82.76044 0.00000 451.50000 77.96288 110 18 - - 83.44394 0.00000 456.00000 78.68613 110 18 - - 84.39497 0.00000 462.00000 79.67689 110 18 - - 85.34563 0.00000 468.00000 80.66728 110 18 - - 86.29593 0.00000 474.00000 81.65732 110 18 - - 86.97932 0.00000 478.50000 82.38044 110 18 - - 87.51248 0.00000 481.50000 82.91360 110 18 - - 88.19554 0.00000 486.00000 83.63639 110 18 - - 89.14487 0.00000 492.00000 84.62544 110 18 - - 90.09388 0.00000 498.00000 85.61418 110 18 - - 91.04261 0.00000 504.00000 86.60263 110 18 - - 91.72564 0.00000 508.50000 87.32539 110 18 - - 92.25644 0.00000 511.50000 87.85619 110 18 - - 92.93920 0.00000 516.00000 88.57867 110 18 - - 93.88709 0.00000 522.00000 89.56629 110 18 - - 94.83473 0.00000 528.00000 90.55364 110 18 - - 95.78212 0.00000 534.00000 91.54075 110 18 - - 96.46492 0.00000 538.50000 92.26328 110 18 - - 96.99360 0.00000 541.50000 92.79195 110 18 - - 97.67618 0.00000 546.00000 93.51425 110 18 - - 98.62287 0.00000 552.00000 94.50066 110 18 - - 99.56934 0.00000 558.00000 95.48685 110 18 - - 100.51561 0.00000 564.00000 96.47283 110 18 - - 101.19830 0.00000 568.50000 97.19524 110 18 - - 101.72504 0.00000 571.50000 97.72198 110 18 - - 102.40754 0.00000 576.00000 98.44420 110 18 - - 103.35322 0.00000 582.00000 99.42959 110 18 - - 104.29872 0.00000 588.00000 100.41481 110 18 - - 105.24405 0.00000 594.00000 101.39985 110 18 - - 105.92671 0.00000 598.50000 102.12223 110 18 - - 106.45169 0.00000 601.50000 102.64722 110 18 - - 107.13420 0.00000 606.00000 103.36943 110 18 - - 108.07903 0.00000 612.00000 104.35399 110 18 - - 109.02372 0.00000 618.00000 105.33839 110 18 - - 109.96826 0.00000 624.00000 106.32265 110 18 - - 110.65097 0.00000 628.50000 107.04507 110 18 - + 15.18334 0.00000 36.00000 8.04965 110 42 - + 16.17303 0.00000 42.00000 9.07413 110 39 - + 17.17737 0.00000 48.00000 10.11326 110 36 - + 18.18725 0.00000 54.00000 11.15793 110 34 - + 18.79228 0.00000 58.50000 11.79775 110 32 - + 19.60592 0.00000 61.50000 12.61139 110 32 - + 20.21117 0.00000 66.00000 13.25143 110 31 - + 21.22253 0.00000 72.00000 14.29758 110 29 - + 22.23265 0.00000 78.00000 15.34248 110 29 - + 23.24123 0.00000 84.00000 16.38584 110 28 - + 23.89954 0.00000 88.50000 17.07893 110 27 - + 24.59664 0.00000 91.50000 17.77603 110 27 - + 25.25315 0.00000 96.00000 18.46733 110 26 - + 26.25638 0.00000 102.00000 19.50533 110 26 - + 27.25777 0.00000 108.00000 20.54149 110 25 - + 28.25733 0.00000 114.00000 21.57582 110 25 - + 28.93212 0.00000 118.50000 22.28538 110 24 - + 29.57807 0.00000 121.50000 22.93133 110 24 - + 30.25111 0.00000 126.00000 23.63913 110 24 - + 31.24541 0.00000 132.00000 24.66820 110 24 - + 32.23805 0.00000 138.00000 25.69560 110 23 - + 33.22908 0.00000 144.00000 26.72139 110 23 - + 33.91027 0.00000 148.50000 27.43733 110 23 - + 34.52684 0.00000 151.50000 28.05389 110 23 - + 35.20651 0.00000 156.00000 28.76832 110 23 - + 36.19301 0.00000 162.00000 29.78956 110 22 - + 37.17810 0.00000 168.00000 30.80940 110 22 - + 38.16183 0.00000 174.00000 31.82786 110 22 - + 38.84565 0.00000 178.50000 32.54642 110 22 - + 39.44283 0.00000 181.50000 33.14360 110 22 - + 40.12538 0.00000 186.00000 33.86088 110 22 - + 41.10530 0.00000 192.00000 34.87553 110 21 - + 42.08403 0.00000 198.00000 35.88899 110 21 - + 43.06162 0.00000 204.00000 36.90130 110 21 - + 43.74648 0.00000 208.50000 37.62087 110 21 - + 44.32974 0.00000 211.50000 38.20414 110 21 - + 45.01354 0.00000 216.00000 38.92264 110 21 - + 45.98794 0.00000 222.00000 39.93175 110 21 - + 46.96134 0.00000 228.00000 40.93986 110 21 - + 47.93380 0.00000 234.00000 41.94701 110 20 - + 48.61897 0.00000 238.50000 42.66689 110 20 - + 49.19167 0.00000 241.50000 43.23959 110 20 - + 49.87596 0.00000 246.00000 43.95857 110 20 - + 50.84573 0.00000 252.00000 44.96303 110 20 - + 51.81467 0.00000 258.00000 45.96666 110 20 - + 52.78281 0.00000 264.00000 46.96948 110 20 - + 53.46800 0.00000 268.50000 47.68934 110 20 - + 54.03236 0.00000 271.50000 48.25370 110 20 - + 54.71679 0.00000 276.00000 48.97281 110 20 - + 55.68269 0.00000 282.00000 49.97337 110 20 - + 56.64788 0.00000 288.00000 50.97323 110 20 - + 57.61240 0.00000 294.00000 51.97241 110 20 - + 58.29748 0.00000 298.50000 52.69215 110 20 - + 58.85505 0.00000 301.50000 53.24972 110 20 - + 59.53950 0.00000 306.00000 53.96883 110 19 - + 60.50213 0.00000 312.00000 54.96611 110 19 - + 61.46417 0.00000 318.00000 55.96279 110 19 - + 62.42564 0.00000 324.00000 56.95891 110 19 - + 63.11060 0.00000 328.50000 57.67851 110 19 - + 63.66253 0.00000 331.50000 58.23043 110 19 - + 64.34696 0.00000 336.00000 58.94950 110 19 - + 65.30684 0.00000 342.00000 59.94401 110 19 - + 66.26622 0.00000 348.00000 60.93803 110 19 - + 67.22513 0.00000 354.00000 61.93156 110 19 - + 67.91000 0.00000 358.50000 62.65105 110 19 - + 68.45714 0.00000 361.50000 63.19820 110 19 - + 69.14157 0.00000 366.00000 63.91724 110 19 - + 70.09913 0.00000 372.00000 64.90942 110 19 - + 71.05628 0.00000 378.00000 65.90118 110 19 - + 72.01302 0.00000 384.00000 66.89254 110 19 - + 72.69785 0.00000 388.50000 67.61198 110 19 - + 73.24089 0.00000 391.50000 68.15502 110 19 - + 73.92535 0.00000 396.00000 68.87408 110 19 - + 74.88096 0.00000 402.00000 69.86430 110 19 - + 75.83622 0.00000 408.00000 70.85416 110 19 - + 76.79114 0.00000 414.00000 71.84367 110 19 - + 77.47599 0.00000 418.50000 72.56312 110 19 - + 78.01546 0.00000 421.50000 73.10259 110 19 - + 78.70000 0.00000 426.00000 73.82172 110 18 - + 79.65396 0.00000 432.00000 74.81028 110 18 - + 80.60763 0.00000 438.00000 75.79854 110 18 - + 81.56101 0.00000 444.00000 76.78650 110 18 - + 82.24595 0.00000 448.50000 77.50603 110 18 - + 82.78228 0.00000 451.50000 78.04236 110 18 - + 83.46695 0.00000 456.00000 78.76161 110 18 - + 84.41953 0.00000 462.00000 79.74877 110 18 - + 85.37186 0.00000 468.00000 80.73568 110 18 - + 86.32394 0.00000 474.00000 81.72234 110 18 - + 87.00901 0.00000 478.50000 82.44199 110 18 - + 87.54257 0.00000 481.50000 82.97555 110 18 - + 88.22742 0.00000 486.00000 83.69497 110 18 - + 89.17883 0.00000 492.00000 84.68096 110 18 - + 90.13003 0.00000 498.00000 85.66673 110 18 - + 91.08102 0.00000 504.00000 86.65230 110 18 - + 91.76628 0.00000 508.50000 87.37212 110 18 - + 92.29736 0.00000 511.50000 87.90321 110 18 - + 92.98243 0.00000 516.00000 88.62285 110 18 - + 93.93286 0.00000 522.00000 89.60784 110 18 - + 94.88311 0.00000 528.00000 90.59266 110 18 - + 95.83319 0.00000 534.00000 91.57731 110 18 - + 96.51867 0.00000 538.50000 92.29736 110 18 - + 97.04754 0.00000 541.50000 92.82623 110 18 - + 97.73286 0.00000 546.00000 93.54612 110 18 - + 98.68247 0.00000 552.00000 94.53029 110 18 - + 99.63192 0.00000 558.00000 95.51431 110 18 - + 100.58124 0.00000 564.00000 96.49820 110 18 - + 101.26698 0.00000 568.50000 97.21850 110 18 - + 101.79385 0.00000 571.50000 97.74537 110 18 - + 102.47946 0.00000 576.00000 98.46555 110 18 - + 103.42838 0.00000 582.00000 99.44903 110 18 - + 104.37718 0.00000 588.00000 100.43239 110 18 - + 105.32586 0.00000 594.00000 101.41563 110 18 - + 106.01189 0.00000 598.50000 102.13623 110 18 - + 106.53695 0.00000 601.50000 102.66129 110 18 - + 107.22287 0.00000 606.00000 103.38178 110 18 - + 108.17122 0.00000 612.00000 104.36470 110 18 - + 109.11947 0.00000 618.00000 105.34751 110 18 - + 110.06762 0.00000 624.00000 106.33022 110 18 - + 110.75398 0.00000 628.50000 107.05114 110 18 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4234,7 +4364,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 2.00 1257.598 'Soil' + 2.00 1261.204 'Soil' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4588,131 +4718,131 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.01750 0.01750 1 0 A - 8.23966 0.00000 36.00000 15.98703 110 0 - - 9.22526 0.00000 42.00000 16.93266 110 0 - - 10.22530 0.00000 48.00000 17.89274 110 0 - - 11.22785 0.00000 54.00000 18.85533 110 0 - - 11.57042 0.00000 58.50000 19.15794 110 0 - - 12.89166 0.00000 61.50000 20.47918 110 0 - - 13.23445 0.00000 66.00000 20.78201 110 0 - - 14.23795 0.00000 72.00000 21.74555 110 0 - - 15.24149 0.00000 78.00000 22.70913 110 0 - - 16.24505 0.00000 84.00000 23.67274 110 0 - - 16.75591 0.00000 88.50000 24.14364 110 0 - - 17.74136 0.00000 91.50000 25.12909 110 0 - - 18.25223 0.00000 96.00000 25.60000 110 0 - - 19.25583 0.00000 102.00000 26.56365 110 0 - - 20.25944 0.00000 108.00000 27.52730 110 0 - - 21.26305 0.00000 114.00000 28.49097 110 0 - - 21.84589 0.00000 118.50000 29.03386 110 0 - - 22.68745 0.00000 121.50000 29.87542 110 0 - - 23.27030 0.00000 126.00000 30.41832 110 0 - - 24.27394 0.00000 132.00000 31.38201 110 0 - - 25.27758 0.00000 138.00000 32.34571 110 0 - - 26.28123 0.00000 144.00000 33.30942 110 0 - - 26.90408 0.00000 148.50000 33.89233 110 0 - - 27.66570 0.00000 151.50000 34.65395 110 0 - - 28.28855 0.00000 156.00000 35.23688 110 0 - - 29.29222 0.00000 162.00000 36.20062 110 0 - - 30.29590 0.00000 168.00000 37.16437 110 0 - - 31.29960 0.00000 174.00000 38.12814 110 0 - - 31.94792 0.00000 178.50000 38.73654 110 0 - - 32.65867 0.00000 181.50000 39.44730 110 0 - - 33.30700 0.00000 186.00000 40.05571 110 0 - - 34.31072 0.00000 192.00000 41.01952 110 0 - - 35.31445 0.00000 198.00000 41.98334 110 0 - - 36.31819 0.00000 204.00000 42.94717 110 0 - - 36.98417 0.00000 208.50000 43.57325 110 0 - - 37.65972 0.00000 211.50000 44.24880 110 0 - - 38.32571 0.00000 216.00000 44.87489 110 0 - - 39.32949 0.00000 222.00000 45.83877 110 0 - - 40.33328 0.00000 228.00000 46.80267 110 0 - - 41.33708 0.00000 234.00000 47.76659 110 0 - - 42.01603 0.00000 238.50000 48.40565 110 0 - - 42.66576 0.00000 241.50000 49.05538 110 0 - - 43.34473 0.00000 246.00000 49.69447 110 0 - - 44.34857 0.00000 252.00000 50.65844 110 0 - - 45.35243 0.00000 258.00000 51.62243 110 0 - - 46.35631 0.00000 264.00000 52.58644 110 0 - - 47.04520 0.00000 268.50000 53.23548 110 0 - - 47.67519 0.00000 271.50000 53.86547 110 0 - - 48.36411 0.00000 276.00000 54.51452 110 0 - - 49.36803 0.00000 282.00000 55.47859 110 0 - - 50.37197 0.00000 288.00000 56.44269 110 0 - - 51.37593 0.00000 294.00000 57.40680 110 0 - - 52.07271 0.00000 298.50000 58.06374 110 0 - - 52.68712 0.00000 301.50000 58.67815 110 0 - - 53.38391 0.00000 306.00000 59.33511 110 0 - - 54.38793 0.00000 312.00000 60.29929 110 0 - - 55.39197 0.00000 318.00000 61.26350 110 0 - - 56.39602 0.00000 324.00000 62.22774 110 0 - - 57.09920 0.00000 328.50000 62.89109 110 0 - - 57.70101 0.00000 331.50000 63.49290 110 0 - - 58.40420 0.00000 336.00000 64.15628 110 0 - - 59.40833 0.00000 342.00000 65.12059 110 0 - - 60.41247 0.00000 348.00000 66.08493 110 0 - - 61.41664 0.00000 354.00000 67.04930 110 0 - - 62.12514 0.00000 358.50000 67.71799 110 0 - - 62.71653 0.00000 361.50000 68.30939 110 0 - - 63.42505 0.00000 366.00000 68.97811 110 0 - - 64.42929 0.00000 372.00000 69.94256 110 0 - - 65.43356 0.00000 378.00000 70.90704 110 0 - - 66.43786 0.00000 384.00000 71.87155 110 0 - - 67.15085 0.00000 388.50000 72.54476 110 0 - - 67.73350 0.00000 391.50000 73.12742 110 0 - - 68.44652 0.00000 396.00000 73.80066 110 0 - - 69.45090 0.00000 402.00000 74.76526 110 0 - - 70.45530 0.00000 408.00000 75.72989 110 0 - - 71.45973 0.00000 414.00000 76.69455 110 0 - - 72.17658 0.00000 418.50000 77.37164 110 0 - - 72.75180 0.00000 421.50000 77.94686 110 0 - - 73.46868 0.00000 426.00000 78.62398 110 0 - - 74.47320 0.00000 432.00000 79.58874 110 0 - - 75.47775 0.00000 438.00000 80.55353 110 0 - - 76.48234 0.00000 444.00000 81.51836 110 0 - - 77.20255 0.00000 448.50000 82.19882 110 0 - - 77.77136 0.00000 451.50000 82.76763 110 0 - - 78.49160 0.00000 456.00000 83.44813 110 0 - - 79.49628 0.00000 462.00000 84.41306 110 0 - - 80.50100 0.00000 468.00000 85.37803 110 0 - - 81.50574 0.00000 474.00000 86.34304 110 0 - - 82.22891 0.00000 478.50000 87.02646 110 0 - - 82.79214 0.00000 481.50000 87.58970 110 0 - - 83.51535 0.00000 486.00000 88.27316 110 0 - - 84.52020 0.00000 492.00000 89.23828 110 0 - - 85.52509 0.00000 498.00000 90.20344 110 0 - - 86.53002 0.00000 504.00000 91.16863 110 0 - - 87.25581 0.00000 508.50000 91.85470 110 0 - - 87.81415 0.00000 511.50000 92.41304 110 0 - - 88.53999 0.00000 516.00000 93.09914 110 0 - - 89.54503 0.00000 522.00000 94.06446 110 0 - - 90.55011 0.00000 528.00000 95.02981 110 0 - - 91.55523 0.00000 534.00000 95.99520 110 0 - - 92.28338 0.00000 538.50000 96.68364 110 0 - - 92.83739 0.00000 541.50000 97.23764 110 0 - - 93.56559 0.00000 546.00000 97.92612 110 0 - - 94.57083 0.00000 552.00000 98.89164 110 0 - - 95.57611 0.00000 558.00000 99.85720 110 0 - - 96.58143 0.00000 564.00000 100.82280 110 0 - - 97.31173 0.00000 568.50000 101.51338 110 0 - - 97.86187 0.00000 571.50000 102.06352 110 0 - - 98.59221 0.00000 576.00000 102.75414 110 0 - - 99.59766 0.00000 582.00000 103.71988 110 0 - - 100.60316 0.00000 588.00000 104.68566 110 0 - - 101.60870 0.00000 594.00000 105.65148 110 0 - - 102.34094 0.00000 598.50000 106.34400 110 0 - - 102.88763 0.00000 601.50000 106.89069 110 0 - - 103.61992 0.00000 606.00000 107.58326 110 0 - - 104.62560 0.00000 612.00000 108.54922 110 0 - - 105.63132 0.00000 618.00000 109.51523 110 0 - - 106.63709 0.00000 624.00000 110.48128 110 0 - - 107.37112 0.00000 628.50000 111.17560 110 0 - - 107.91469 0.00000 631.50000 111.71917 110 0 - - 108.64877 0.00000 636.00000 112.41353 110 0 - - 109.65468 0.00000 642.00000 113.37973 110 0 - - 110.66064 0.00000 648.00000 114.34597 110 0 - - 111.66665 0.00000 654.00000 115.31227 110 0 - - 112.40233 0.00000 658.50000 116.00823 110 0 - + 8.67937 0.00000 36.00000 15.98703 110 0 - + 9.65980 0.00000 42.00000 16.93266 110 0 - + 10.65467 0.00000 48.00000 17.89274 110 0 - + 11.65206 0.00000 54.00000 18.85533 110 0 - + 11.98946 0.00000 58.50000 19.15794 110 0 - + 13.31070 0.00000 61.50000 20.47918 110 0 - + 13.64832 0.00000 66.00000 20.78201 110 0 - + 14.64665 0.00000 72.00000 21.74555 110 0 - + 15.64502 0.00000 78.00000 22.70913 110 0 - + 16.64342 0.00000 84.00000 23.67274 110 0 - + 17.14911 0.00000 88.50000 24.14364 110 0 - + 18.13456 0.00000 91.50000 25.12909 110 0 - + 18.64026 0.00000 96.00000 25.60000 110 0 - + 19.63869 0.00000 102.00000 26.56365 110 0 - + 20.63713 0.00000 108.00000 27.52730 110 0 - + 21.63558 0.00000 114.00000 28.49097 110 0 - + 22.21325 0.00000 118.50000 29.03386 110 0 - + 23.05481 0.00000 121.50000 29.87542 110 0 - + 23.63249 0.00000 126.00000 30.41832 110 0 - + 24.63096 0.00000 132.00000 31.38201 110 0 - + 25.62943 0.00000 138.00000 32.34571 110 0 - + 26.62792 0.00000 144.00000 33.30942 110 0 - + 27.24559 0.00000 148.50000 33.89233 110 0 - + 28.00721 0.00000 151.50000 34.65395 110 0 - + 28.62490 0.00000 156.00000 35.23688 110 0 - + 29.62341 0.00000 162.00000 36.20062 110 0 - + 30.62192 0.00000 168.00000 37.16437 110 0 - + 31.62044 0.00000 174.00000 38.12814 110 0 - + 32.26360 0.00000 178.50000 38.73654 110 0 - + 32.97435 0.00000 181.50000 39.44730 110 0 - + 33.61752 0.00000 186.00000 40.05571 110 0 - + 34.61607 0.00000 192.00000 41.01952 110 0 - + 35.61463 0.00000 198.00000 41.98334 110 0 - + 36.61321 0.00000 204.00000 42.94717 110 0 - + 37.27402 0.00000 208.50000 43.57325 110 0 - + 37.94956 0.00000 211.50000 44.24880 110 0 - + 38.61039 0.00000 216.00000 44.87489 110 0 - + 39.60900 0.00000 222.00000 45.83877 110 0 - + 40.60762 0.00000 228.00000 46.80267 110 0 - + 41.60626 0.00000 234.00000 47.76659 110 0 - + 42.28005 0.00000 238.50000 48.40565 110 0 - + 42.92977 0.00000 241.50000 49.05538 110 0 - + 43.60358 0.00000 246.00000 49.69447 110 0 - + 44.60226 0.00000 252.00000 50.65844 110 0 - + 45.60095 0.00000 258.00000 51.62243 110 0 - + 46.59966 0.00000 264.00000 52.58644 110 0 - + 47.28339 0.00000 268.50000 53.23548 110 0 - + 47.91338 0.00000 271.50000 53.86547 110 0 - + 48.59713 0.00000 276.00000 54.51452 110 0 - + 49.59589 0.00000 282.00000 55.47859 110 0 - + 50.59467 0.00000 288.00000 56.44269 110 0 - + 51.59347 0.00000 294.00000 57.40680 110 0 - + 52.28508 0.00000 298.50000 58.06374 110 0 - + 52.89949 0.00000 301.50000 58.67815 110 0 - + 53.59112 0.00000 306.00000 59.33511 110 0 - + 54.58998 0.00000 312.00000 60.29929 110 0 - + 55.58885 0.00000 318.00000 61.26350 110 0 - + 56.58775 0.00000 324.00000 62.22774 110 0 - + 57.28576 0.00000 328.50000 62.89109 110 0 - + 57.88757 0.00000 331.50000 63.49290 110 0 - + 58.58561 0.00000 336.00000 64.15628 110 0 - + 59.58457 0.00000 342.00000 65.12059 110 0 - + 60.58356 0.00000 348.00000 66.08493 110 0 - + 61.58256 0.00000 354.00000 67.04930 110 0 - + 62.28590 0.00000 358.50000 67.71799 110 0 - + 62.87730 0.00000 361.50000 68.30939 110 0 - + 63.58066 0.00000 366.00000 68.97811 110 0 - + 64.57974 0.00000 372.00000 69.94256 110 0 - + 65.57885 0.00000 378.00000 70.90704 110 0 - + 66.57798 0.00000 384.00000 71.87155 110 0 - + 67.28582 0.00000 388.50000 72.54476 110 0 - + 67.86847 0.00000 391.50000 73.12742 110 0 - + 68.57633 0.00000 396.00000 73.80066 110 0 - + 69.57555 0.00000 402.00000 74.76526 110 0 - + 70.57480 0.00000 408.00000 75.72989 110 0 - + 71.57407 0.00000 414.00000 76.69455 110 0 - + 72.28577 0.00000 418.50000 77.37164 110 0 - + 72.86098 0.00000 421.50000 77.94686 110 0 - + 73.57271 0.00000 426.00000 78.62398 110 0 - + 74.57207 0.00000 432.00000 79.58874 110 0 - + 75.57147 0.00000 438.00000 80.55353 110 0 - + 76.57090 0.00000 444.00000 81.51836 110 0 - + 77.28595 0.00000 448.50000 82.19882 110 0 - + 77.85476 0.00000 451.50000 82.76763 110 0 - + 78.56985 0.00000 456.00000 83.44813 110 0 - + 79.56938 0.00000 462.00000 84.41306 110 0 - + 80.56894 0.00000 468.00000 85.37803 110 0 - + 81.56853 0.00000 474.00000 86.34304 110 0 - + 82.28654 0.00000 478.50000 87.02646 110 0 - + 82.84978 0.00000 481.50000 87.58970 110 0 - + 83.56782 0.00000 486.00000 88.27316 110 0 - + 84.56752 0.00000 492.00000 89.23828 110 0 - + 85.56726 0.00000 498.00000 90.20344 110 0 - + 86.56704 0.00000 504.00000 91.16863 110 0 - + 87.28768 0.00000 508.50000 91.85470 110 0 - + 87.84602 0.00000 511.50000 92.41304 110 0 - + 88.56670 0.00000 516.00000 93.09914 110 0 - + 89.56659 0.00000 522.00000 94.06446 110 0 - + 90.56651 0.00000 528.00000 95.02981 110 0 - + 91.56648 0.00000 534.00000 95.99520 110 0 - + 92.28948 0.00000 538.50000 96.68364 110 0 - + 92.84349 0.00000 541.50000 97.23764 110 0 - + 93.56653 0.00000 546.00000 97.92612 110 0 - + 94.56662 0.00000 552.00000 98.89164 110 0 - + 95.56675 0.00000 558.00000 99.85720 110 0 - + 96.56693 0.00000 564.00000 100.82280 110 0 - + 97.29207 0.00000 568.50000 101.51338 110 0 - + 97.84221 0.00000 571.50000 102.06352 110 0 - + 98.56740 0.00000 576.00000 102.75414 110 0 - + 99.56770 0.00000 582.00000 103.71988 110 0 - + 100.56805 0.00000 588.00000 104.68566 110 0 - + 101.56843 0.00000 594.00000 105.65148 110 0 - + 102.29552 0.00000 598.50000 106.34400 110 0 - + 102.84221 0.00000 601.50000 106.89069 110 0 - + 103.56935 0.00000 606.00000 107.58326 110 0 - + 104.56987 0.00000 612.00000 108.54922 110 0 - + 105.57045 0.00000 618.00000 109.51523 110 0 - + 106.57106 0.00000 624.00000 110.48128 110 0 - + 107.29994 0.00000 628.50000 111.17560 110 0 - + 107.84351 0.00000 631.50000 111.71917 110 0 - + 108.57244 0.00000 636.00000 112.41353 110 0 - + 109.57320 0.00000 642.00000 113.37973 110 0 - + 110.57401 0.00000 648.00000 114.34597 110 0 - + 111.57487 0.00000 654.00000 115.31227 110 0 - + 112.30540 0.00000 658.50000 116.00823 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4725,7 +4855,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 2.00 1257.601 'Soil' + 2.00 1261.206 'Soil' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4750,16 +4880,16 @@ CalculationStatus [DATA] 0.00867 0.01789 -0.00015 0.00000 19.00597 1 12 4 1.000 0 0 -12.91938 -2.14812 4.07297 0.00000 18.17653 2 12 4 1.000 0 0 - -43.93232 -10.16767 7.78733 0.00000 19.06361 3 12 4 1.000 0 0 + -40.94818 -10.50164 7.34245 0.00000 19.11827 3 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-43.93232 -MaximumShearForce=-10.16767 -MaximumDisplacement=7.78733 +MaximumMoment=-40.94818 +MaximumShearForce=-10.50164 +MaximumDisplacement=7.34245 MaximumPercentageMobilisedMoment=0.00000 -MaximumPercentageMobilisedResistance=19.06361 +MaximumPercentageMobilisedResistance=19.11827 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shi index 2e5e65dc..fd9a25b5 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-5b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:54 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-5b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:52 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-5b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -351,6 +351,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -360,6 +361,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -369,6 +371,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -392,7 +395,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -403,8 +406,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -415,7 +420,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -423,17 +428,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -441,8 +447,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -450,7 +456,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -461,15 +467,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -477,17 +484,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -495,8 +503,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -515,15 +523,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -542,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -569,6 +579,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -577,12 +588,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -596,6 +607,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -604,7 +616,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -623,6 +635,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -631,25 +644,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -657,16 +727,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -677,6 +747,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -684,16 +755,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -704,6 +831,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -711,8 +839,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -720,7 +848,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -731,6 +859,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -738,8 +867,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -747,7 +876,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -758,6 +887,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -765,8 +895,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shd index f361da61..6e256c96 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-6a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-6a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -263,6 +263,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -286,7 +287,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -297,8 +298,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -309,7 +312,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -317,17 +320,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -335,8 +339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -344,7 +348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -355,15 +359,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -371,17 +376,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,8 +395,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -409,15 +415,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -436,6 +443,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -471,12 +480,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -490,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -498,7 +508,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -517,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,25 +536,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -551,16 +619,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -571,6 +639,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +647,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +723,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -605,8 +731,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -614,7 +740,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +759,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -641,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shi index 4e41a310..0fdd52bc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-6a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-6a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-6a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -262,6 +262,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -285,7 +286,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -296,8 +297,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -308,7 +311,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -316,17 +319,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -334,8 +338,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -343,7 +347,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -354,15 +358,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -370,17 +375,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -388,8 +394,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -408,15 +414,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -435,6 +442,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -462,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -470,12 +479,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -489,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -497,7 +507,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -516,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -524,25 +535,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -550,16 +618,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -570,6 +638,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -577,16 +646,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -597,6 +722,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -604,8 +730,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -613,7 +739,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -624,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -631,8 +758,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -640,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -651,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -658,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shd index 77f66bd1..8ef37749 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-6b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-6b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -263,6 +263,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -286,7 +287,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -297,8 +298,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -309,7 +312,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -317,17 +320,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -335,8 +339,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -344,7 +348,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -355,15 +359,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -371,17 +376,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -389,8 +395,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -409,15 +415,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -436,6 +443,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -471,12 +480,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -490,6 +499,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -498,7 +508,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -517,6 +527,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -525,25 +536,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -551,16 +619,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -571,6 +639,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +647,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +723,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -605,8 +731,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -614,7 +740,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +759,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -641,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shi index 0ae3ce09..84109681 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-6b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-6b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-6b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -262,6 +262,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -285,7 +286,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -296,8 +297,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -308,7 +311,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -316,17 +319,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -334,8 +338,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -343,7 +347,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -354,15 +358,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -370,17 +375,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -388,8 +394,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -408,15 +414,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -435,6 +442,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -462,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -470,12 +479,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -489,6 +498,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -497,7 +507,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -516,6 +526,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -524,25 +535,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -550,16 +618,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -570,6 +638,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -577,16 +646,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -597,6 +722,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -604,8 +730,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -613,7 +739,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -624,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -631,8 +758,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -640,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -651,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -658,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shd index 5799f58c..9fec8814 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-7a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-7a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -284,6 +284,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -307,7 +308,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -318,8 +319,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -330,7 +333,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -338,17 +341,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -356,8 +360,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -365,7 +369,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -376,15 +380,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -392,17 +397,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -410,8 +416,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -430,15 +436,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -457,6 +464,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -484,6 +492,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -492,12 +501,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -511,6 +520,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -519,7 +529,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -538,6 +548,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -546,25 +557,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -572,16 +640,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -592,6 +660,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -599,16 +668,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -619,6 +744,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -626,8 +752,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -635,7 +761,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -646,6 +772,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -653,8 +780,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -662,7 +789,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -673,6 +800,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -680,8 +808,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1529,7 +1657,7 @@ Status character 20.39329 0.00000 293.42123 20.39329 110 0 - 20.40700 0.00000 293.59216 20.40700 110 0 - 20.42071 0.00000 293.76305 20.42071 110 0 - - 20.42952 0.00000 293.89152 20.42952 110 0 - + 20.42952 0.00000 293.89152 20.42952 110 7 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shi index b3862c9e..c39ce783 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-7a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:56 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-7a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:55 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-7a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -283,6 +283,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -306,7 +307,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -317,8 +318,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -329,7 +332,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -337,17 +340,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -355,8 +359,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -364,7 +368,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -375,15 +379,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -391,17 +396,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,8 +415,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -429,15 +435,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -456,6 +463,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -483,6 +491,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -491,12 +500,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -510,6 +519,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -518,7 +528,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -537,6 +547,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -545,25 +556,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -571,16 +639,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -591,6 +659,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -598,16 +667,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -618,6 +743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -625,8 +751,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -634,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -645,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -652,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -661,7 +788,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -672,6 +799,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -679,8 +807,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shd index fb245039..ca58818f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-7b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-7b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -288,6 +288,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -311,7 +312,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -322,8 +323,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -334,7 +337,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -342,17 +345,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -360,8 +364,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -369,7 +373,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -380,15 +384,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -396,17 +401,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -414,8 +420,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -434,15 +440,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -461,6 +468,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -488,6 +496,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -496,12 +505,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -515,6 +524,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -523,7 +533,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -542,6 +552,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -550,25 +561,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -576,16 +644,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -596,6 +664,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -603,16 +672,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -623,6 +748,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -630,8 +756,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -639,7 +765,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -650,6 +776,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -657,8 +784,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -666,7 +793,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -677,6 +804,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -684,8 +812,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shi index 32d0ae56..5924d050 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-7b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-7b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:56 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-7b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -287,6 +287,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -310,7 +311,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -321,8 +322,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -333,7 +336,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -341,17 +344,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -359,8 +363,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -368,7 +372,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -379,15 +383,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -395,17 +400,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +419,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -433,15 +439,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -460,6 +467,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -495,12 +504,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -522,7 +532,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,25 +560,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,16 +643,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -595,6 +663,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +747,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,8 +755,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -638,7 +764,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shd index 1cd73f9b..9daee690 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-8a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-8a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shi index 2fb5d911..daadb853 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-8a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:57 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-8a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-8a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shd index c80658bc..55dbd53e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-8b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-8b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -271,6 +271,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -294,7 +295,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -305,8 +306,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -317,7 +320,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -325,17 +328,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -343,8 +347,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -352,7 +356,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -363,15 +367,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -379,17 +384,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -397,8 +403,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -417,15 +423,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -444,6 +451,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -479,12 +488,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,6 +507,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -506,7 +516,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -533,25 +544,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,16 +627,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -579,6 +647,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,16 +655,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,6 +731,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -613,8 +739,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -622,7 +748,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -640,8 +767,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -649,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -660,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -667,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shi index 5545fa8a..122061a9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-8b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-8b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:57 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-8b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -270,6 +270,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -293,7 +294,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -304,8 +305,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -316,7 +319,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -324,17 +327,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -342,8 +346,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -351,7 +355,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -362,15 +366,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -378,17 +383,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -396,8 +402,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -416,15 +422,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -443,6 +450,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,6 +478,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -478,12 +487,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,6 +506,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -505,7 +515,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,6 +534,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -532,25 +543,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,16 +626,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +646,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,16 +654,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,6 +730,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -612,8 +738,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -621,7 +747,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -632,6 +758,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -639,8 +766,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -648,7 +775,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -659,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -666,8 +794,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shd index f3e0ebfc..bd0ecd6c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -287,6 +287,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -310,7 +311,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -321,8 +322,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -333,7 +336,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -341,17 +344,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -359,8 +363,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -368,7 +372,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -379,15 +383,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -395,17 +400,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +419,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -433,15 +439,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -460,6 +467,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -495,12 +504,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -522,7 +532,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,25 +560,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,16 +643,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -595,6 +663,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +747,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,8 +755,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -638,7 +764,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shi index ec2ace24..b17a6941 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -286,6 +286,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -309,7 +310,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -320,8 +321,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -332,7 +335,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -340,17 +343,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -358,8 +362,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -367,7 +371,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -378,15 +382,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -394,17 +399,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -412,8 +418,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -432,15 +438,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -459,6 +466,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -486,6 +494,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -494,12 +503,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -513,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -521,7 +531,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -548,25 +559,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -574,16 +642,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -594,6 +662,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -601,16 +670,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -621,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,8 +754,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -637,7 +763,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -648,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -655,8 +782,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -664,7 +791,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -682,8 +810,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shd index df0a2f39..67bb1168 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -287,6 +287,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -310,7 +311,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -321,8 +322,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -333,7 +336,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -341,17 +344,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -359,8 +363,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -368,7 +372,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -379,15 +383,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -395,17 +400,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +419,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -433,15 +439,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -460,6 +467,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -495,12 +504,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -522,7 +532,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,25 +560,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,16 +643,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -595,6 +663,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +747,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,8 +755,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -638,7 +764,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shi index c726c148..1d0cb255 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -286,6 +286,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -309,7 +310,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -320,8 +321,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -332,7 +335,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -340,17 +343,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -358,8 +362,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -367,7 +371,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -378,15 +382,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -394,17 +399,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -412,8 +418,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -432,15 +438,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -459,6 +466,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -486,6 +494,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -494,12 +503,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -513,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -521,7 +531,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -548,25 +559,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -574,16 +642,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -594,6 +662,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -601,16 +670,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -621,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,8 +754,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -637,7 +763,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -648,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -655,8 +782,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -664,7 +791,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -682,8 +810,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shd index 29a97040..b6f5230c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -287,6 +287,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -310,7 +311,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -321,8 +322,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -333,7 +336,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -341,17 +344,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -359,8 +363,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -368,7 +372,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -379,15 +383,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -395,17 +400,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +419,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -433,15 +439,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -460,6 +467,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -495,12 +504,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -522,7 +532,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,25 +560,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,16 +643,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -595,6 +663,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +747,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,8 +755,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -638,7 +764,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1783,7 +1911,7 @@ ActiveAngleWithoutLoad=37 ActiveAngleWithLoad=37 PassiveAngleWallWithoutLoad=57 PassiveAngleWallWithLoad=57 -ActiveAngleAnchorWall=33 +ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=2.000 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shi index faa4cc79..6d5f8202 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:58 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -286,6 +286,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -309,7 +310,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -320,8 +321,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -332,7 +335,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -340,17 +343,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -358,8 +362,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -367,7 +371,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -378,15 +382,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -394,17 +399,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -412,8 +418,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -432,15 +438,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -459,6 +466,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -486,6 +494,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -494,12 +503,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -513,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -521,7 +531,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -548,25 +559,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -574,16 +642,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -594,6 +662,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -601,16 +670,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -621,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,8 +754,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -637,7 +763,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -648,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -655,8 +782,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -664,7 +791,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -682,8 +810,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shd b/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shd index e1949717..791fafad 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -287,6 +287,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -310,7 +311,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -321,8 +322,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -333,7 +336,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -341,17 +344,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -359,8 +363,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -368,7 +372,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -379,15 +383,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -395,17 +400,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +419,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -433,15 +439,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -460,6 +467,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -487,6 +495,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -495,12 +504,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -514,6 +523,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -522,7 +532,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -541,6 +551,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -549,25 +560,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -575,16 +643,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -595,6 +663,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -602,16 +671,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -622,6 +747,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -629,8 +755,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -638,7 +764,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +775,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -656,8 +783,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -665,7 +792,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +803,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +811,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1783,7 +1911,7 @@ ActiveAngleWithoutLoad=37 ActiveAngleWithLoad=37 PassiveAngleWallWithoutLoad=57 PassiveAngleWallWithLoad=57 -ActiveAngleAnchorWall=33 +ActiveAngleAnchorWall=32 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=2.000 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shi b/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shi index 53eab4f3..f790c3f3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm4-9d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:46:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm4-9d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:31:59 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm4-9d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -286,6 +286,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -309,7 +310,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -320,8 +321,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -332,7 +335,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -340,17 +343,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -358,8 +362,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -367,7 +371,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -378,15 +382,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -394,17 +399,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -412,8 +418,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -432,15 +438,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -459,6 +466,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -486,6 +494,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -494,12 +503,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -513,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -521,7 +531,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -540,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -548,25 +559,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -574,16 +642,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -594,6 +662,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -601,16 +670,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -621,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -628,8 +754,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -637,7 +763,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -648,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -655,8 +782,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -664,7 +791,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -675,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -682,8 +810,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shd index 18375471..3f8b37d7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=0 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shi index 8590a19e..82000c98 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:00 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=0 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shd index 000caae8..c4d7b38f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shi index 9a145020..539a6be7 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shd index cf7daf0b..cf14ee5e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=1 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shi index 18150755..903e4cb3 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:01 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:00 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=1 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shd index e53aced1..5436a770 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shi index 078f4aa7..aefa02fc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=1 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shd index d76a7ef8..2b8b314c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shi index a3ad1328..aeed7479 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:02 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:01 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shd index 44fbfff8..0350afa0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=1 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shi index 0a7af642..162558ac 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1f.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=1 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shd index a39fecd0..62b5f728 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=2 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shi index c829c706..eb169ae8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1g.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:02 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=2 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shd index e8cef022..92eb42ca 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1h.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1h.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shi index b0104494..ca28f34e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1h.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1h.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1h.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=2 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shd index 04e5c411..cb171f0e 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1i.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1i.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shi index c0f39097..f3598afc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1i.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1i.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1i.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shd index 22f677fb..97652f62 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1j.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1j.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shi index 5ff6c941..5fdfdda9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1j.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1j.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1j.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shd index 018cab07..d1b86579 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1k.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1k.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=3 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shi index 69ae6929..c3f0bb44 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1k.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1k.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:04 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1k.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=3 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=3 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shd index 9c8a3ff9..48a2daed 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1l.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1l.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=4 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.500 OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1071,7 +1201,7 @@ Factor on driving moment Factor on unit weight stability [END OF COLUMN INDICATION] [DATA] - 3 12 'EC7-BE-Set1' 2.000 1.500 1.000 0.800 + 3 12 'EC7-BE-RC2-Set1' 2.000 1.500 1.000 0.800 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR OVERALL STABILITY] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shi index 6bd3e3a6..0ce65f6b 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1l.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1l.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1l.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=4 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.500 OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shd index 7cbf07d2..ea25d2fc 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1m.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1m.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -591,6 +591,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -600,6 +601,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -609,6 +611,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -632,7 +635,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -643,8 +646,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -655,7 +660,7 @@ OverallStabilityType=4 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -674,6 +679,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -701,6 +707,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,6 +735,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,6 +763,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,6 +791,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -809,6 +819,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -836,6 +847,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -863,6 +875,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -873,7 +886,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,8 +957,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -899,8 +969,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -917,6 +987,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -926,7 +997,63 @@ OverallStabilityFactorTgPhi=1.500 OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -944,6 +1071,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -971,6 +1099,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -998,6 +1127,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1071,7 +1201,7 @@ Factor on driving moment Factor on unit weight stability [END OF COLUMN INDICATION] [DATA] - 3 13 'EC7-BE-Set2' 2.000 1.500 1.000 0.800 + 3 13 'EC7-BE-RC2-Set2' 2.000 1.500 1.000 0.800 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR OVERALL STABILITY] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shi index cf912fc4..513907a9 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-1m.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-1m.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:05 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-1m.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -590,6 +590,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -599,6 +600,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -608,6 +610,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.200 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.200 StageVerifyEC7NADBE=0 @@ -631,7 +634,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -642,8 +645,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=2 CUROverallAnchorFactor=1.400 @@ -654,7 +659,7 @@ OverallStabilityType=4 StabilityExport=1 StabilityEuroCodePartialFactorSet=3 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=2 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.350 @@ -673,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -835,6 +846,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -862,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -872,7 +885,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,8 +956,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -898,8 +968,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -916,6 +986,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -925,7 +996,63 @@ OverallStabilityFactorTgPhi=1.500 OverallStabilityFactorUnitWeight=0.800 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -970,6 +1098,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -997,6 +1126,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-2.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-2.shd index 8f240b41..70674f55 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-2.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-2.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-2.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-2.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -277,6 +277,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,7 +301,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -311,8 +312,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -323,7 +326,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -331,17 +334,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -349,8 +353,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -358,7 +362,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -369,15 +373,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -385,17 +390,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -403,8 +409,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -423,15 +429,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -450,6 +457,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -471,26 +479,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -498,21 +507,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -525,39 +535,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +633,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +653,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -592,16 +661,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +745,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -628,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -655,7 +782,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -666,6 +793,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -673,8 +801,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-2.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-2.shi index a1d8286e..2dddefa8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-2.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-2.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-2.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-2.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -276,6 +276,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -299,7 +300,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -310,8 +311,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -322,7 +325,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -330,17 +333,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -348,8 +352,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -357,7 +361,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -368,15 +372,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -384,17 +389,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -402,8 +408,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -422,15 +428,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -449,6 +456,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -470,26 +478,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -497,21 +506,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -524,39 +534,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +632,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +652,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,16 +660,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +736,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +744,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -627,7 +753,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +764,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +772,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -654,7 +781,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -665,6 +792,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -672,8 +800,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shd index 8ea7746a..905c2421 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -592,6 +600,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -600,12 +609,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -619,6 +628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -627,7 +637,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -646,6 +656,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -654,25 +665,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shi index 909c2592..78123eb1 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -391,6 +391,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -414,7 +415,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -425,8 +426,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -437,7 +440,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -445,17 +448,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,8 +467,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -472,7 +476,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -483,15 +487,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -499,17 +504,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -517,8 +523,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -537,15 +543,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -564,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -591,6 +599,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -599,12 +608,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -618,6 +627,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -626,7 +636,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -645,6 +655,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -653,25 +664,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,16 +747,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,6 +767,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -706,16 +775,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -726,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -733,8 +859,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -742,7 +868,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -753,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -760,8 +887,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -769,7 +896,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -780,6 +907,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -787,8 +915,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shd index c5bf812e..19f01a38 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -342,6 +342,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -365,7 +366,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -376,8 +377,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -388,7 +391,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -396,17 +399,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -414,8 +418,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -423,7 +427,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -434,15 +438,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -450,17 +455,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -468,8 +474,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -488,15 +494,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -515,6 +522,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -542,6 +550,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -550,12 +559,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -569,6 +578,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -577,7 +587,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -596,6 +606,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -604,25 +615,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -630,16 +698,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -650,6 +718,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -657,16 +726,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -677,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -684,8 +810,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -693,7 +819,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -704,6 +830,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -711,8 +838,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -720,7 +847,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -731,6 +858,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -738,8 +866,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shi index 9f737775..2568f703 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:06 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -341,6 +341,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -364,7 +365,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -375,8 +376,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -387,7 +390,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -395,17 +398,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -413,8 +417,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -422,7 +426,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -433,15 +437,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -449,17 +454,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -467,8 +473,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -487,15 +493,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -514,6 +521,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -541,6 +549,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -549,12 +558,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -568,6 +577,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -576,7 +586,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -595,6 +605,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -603,25 +614,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -629,16 +697,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,6 +717,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -656,16 +725,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -676,6 +801,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -683,8 +809,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -692,7 +818,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -703,6 +829,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -710,8 +837,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -719,7 +846,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -730,6 +857,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -737,8 +865,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shd index ee49946d..0541ea04 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -592,6 +600,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -605,7 +614,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -619,6 +628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -646,6 +656,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -656,23 +667,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shi index 402b3213..a4559745 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-3c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-3c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-3c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -391,6 +391,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -414,7 +415,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -425,8 +426,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -437,7 +440,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -445,17 +448,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,8 +467,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -472,7 +476,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -483,15 +487,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -499,17 +504,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -517,8 +523,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -537,15 +543,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -564,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -591,6 +599,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -604,7 +613,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -618,6 +627,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -645,6 +655,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -655,23 +666,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,16 +747,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,6 +767,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -706,16 +775,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -726,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -733,8 +859,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -742,7 +868,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -753,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -760,8 +887,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -769,7 +896,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -780,6 +907,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -787,8 +915,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shd index a9075099..7fb40912 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-4a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-4a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -842,6 +842,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -865,7 +866,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -876,8 +877,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -888,7 +891,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -896,17 +899,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -914,8 +918,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -923,7 +927,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -934,15 +938,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -950,17 +955,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,8 +974,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -988,15 +994,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1015,6 +1022,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1042,6 +1050,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,7 +1064,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1069,6 +1078,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1096,6 +1106,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1106,23 +1117,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1130,16 +1198,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1150,6 +1218,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1157,16 +1254,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1177,6 +1302,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1184,8 +1310,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1193,7 +1319,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1204,6 +1330,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1211,8 +1338,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1220,7 +1347,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1231,6 +1358,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1238,8 +1366,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shi index 6f06f463..b9fd5727 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-4a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-4a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-4a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -841,6 +841,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -864,7 +865,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -875,8 +876,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -887,7 +890,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -895,17 +898,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -913,8 +917,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -922,7 +926,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -933,15 +937,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -949,17 +954,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,8 +973,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -987,15 +993,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -1014,6 +1021,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1041,6 +1049,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1054,7 +1063,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1068,6 +1077,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1095,6 +1105,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1105,23 +1116,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1129,16 +1197,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1149,6 +1217,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1156,16 +1253,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1176,6 +1301,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1183,8 +1309,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1192,7 +1318,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1203,6 +1329,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1210,8 +1337,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1219,7 +1346,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1230,6 +1357,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1237,8 +1365,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shd index 23a7b696..7e63403c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-4b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-4b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -792,6 +792,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -815,7 +816,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -826,8 +827,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -838,7 +841,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -846,17 +849,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,8 +868,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -873,7 +877,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -884,15 +888,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -900,17 +905,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -918,8 +924,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -938,15 +944,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -965,6 +972,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -992,6 +1000,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,7 +1014,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1019,6 +1028,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1046,6 +1056,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1056,23 +1067,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1080,16 +1148,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1100,6 +1168,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1107,16 +1204,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1127,6 +1252,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1134,8 +1260,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1143,7 +1269,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1154,6 +1280,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1161,8 +1288,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1170,7 +1297,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1181,6 +1308,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1188,8 +1316,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shi index 53d94e3e..60dd8411 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-4b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-4b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-4b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -791,6 +791,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -814,7 +815,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -825,8 +826,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -837,7 +840,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -845,17 +848,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -863,8 +867,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -872,7 +876,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -883,15 +887,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -899,17 +904,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -917,8 +923,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -937,15 +943,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -964,6 +971,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -991,6 +999,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,7 +1013,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -1018,6 +1027,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1045,6 +1055,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1055,23 +1066,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1079,16 +1147,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1099,6 +1167,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1106,16 +1203,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1126,6 +1251,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1133,8 +1259,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -1142,7 +1268,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1153,6 +1279,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1160,8 +1287,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -1169,7 +1296,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -1180,6 +1307,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1187,8 +1315,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-5.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-5.shd index 87f21b63..2f31c8ff 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-5.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-5.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-5.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-5.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -558,6 +558,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -581,7 +582,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -592,8 +593,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -604,7 +607,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -612,17 +615,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -630,8 +634,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -639,7 +643,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -650,15 +654,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -666,17 +671,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -684,8 +690,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -704,15 +710,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -731,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -752,26 +760,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -779,21 +788,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -806,39 +816,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -846,16 +914,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -866,6 +934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -873,16 +942,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -893,6 +1018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -900,8 +1026,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -909,7 +1035,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -920,6 +1046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -927,8 +1054,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -936,7 +1063,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -947,6 +1074,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -954,8 +1082,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-5.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-5.shi index 27772fcc..ff5742ee 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-5.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-5.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-5.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:07 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-5.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -557,6 +557,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -580,7 +581,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -591,8 +592,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -603,7 +606,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -611,17 +614,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -629,8 +633,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -638,7 +642,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,15 +653,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -665,17 +670,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -683,8 +689,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -703,15 +709,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -730,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -751,26 +759,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -778,21 +787,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -805,39 +815,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -845,16 +913,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -865,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -872,16 +941,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -892,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -899,8 +1025,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -908,7 +1034,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -919,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -926,8 +1053,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -935,7 +1062,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -946,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -953,8 +1081,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shd index 35b005ee..25e3bd7c 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -250,6 +250,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -273,7 +274,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -284,8 +285,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -296,7 +299,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -304,17 +307,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -322,8 +326,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -331,7 +335,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -342,15 +346,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -358,17 +363,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,8 +382,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -396,15 +402,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -423,6 +430,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -444,13 +452,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -458,12 +467,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -471,13 +480,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -485,7 +495,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -498,13 +508,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -512,25 +523,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -538,16 +606,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -558,6 +626,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +662,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +710,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -592,8 +718,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -601,7 +727,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +746,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -628,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1092,114 +1220,114 @@ Status character 0.62972 1.42857 22.43895 0.62972 110 3 1 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.77835 8.57143 134.63370 3.77835 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 - 5.66752 12.85714 201.95056 5.66752 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 - 7.55669 17.14286 269.26741 7.55669 110 0 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 + 5.66752 12.85714 201.95056 5.66752 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 + 7.55669 17.14286 269.26741 7.55669 110 3 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 13.22421 30.00000 471.21797 13.22421 110 0 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 13.22421 30.00000 471.21797 13.22421 110 3 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 - 18.26201 41.42857 650.72957 18.26201 110 0 1 + 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 20.78091 47.14286 740.48538 20.78091 110 3 1 - 21.41063 48.57143 762.92433 21.41063 110 0 1 + 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1209,11 +1337,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1318,114 +1446,114 @@ Status character 0.62972 1.42857 22.43895 0.62972 110 3 1 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.14862 7.14286 112.19475 3.14862 110 0 1 - 3.77835 8.57143 134.63370 3.77835 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.14862 7.14286 112.19475 3.14862 110 3 1 + 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 - 5.66752 12.85714 201.95056 5.66752 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.29724 14.28571 224.38951 6.29724 110 0 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 - 7.55669 17.14286 269.26741 7.55669 110 0 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 + 5.66752 12.85714 201.95056 5.66752 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.29724 14.28571 224.38951 6.29724 110 3 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 + 7.55669 17.14286 269.26741 7.55669 110 3 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 13.22421 30.00000 471.21797 13.22421 110 0 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 13.22421 30.00000 471.21797 13.22421 110 3 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 - 18.26201 41.42857 650.72957 18.26201 110 0 1 + 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 20.78091 47.14286 740.48538 20.78091 110 3 1 - 21.41063 48.57143 762.92433 21.41063 110 0 1 + 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1435,11 +1563,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shi index ef2b4118..b081a015 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6a.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:08 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -249,6 +249,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -272,7 +273,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -283,8 +284,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -295,7 +298,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -303,17 +306,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -321,8 +325,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -330,7 +334,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -341,15 +345,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -357,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -375,8 +381,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -395,15 +401,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -422,6 +429,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -443,13 +451,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -457,12 +466,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -470,13 +479,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -484,7 +494,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -497,13 +507,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -511,25 +522,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -537,16 +605,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -557,6 +625,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +661,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +709,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -591,8 +717,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -600,7 +726,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +745,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -627,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shd index 4c106575..32002be2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -255,6 +255,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -278,7 +279,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -289,8 +290,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -301,7 +304,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -309,17 +312,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -327,8 +331,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -336,7 +340,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -347,15 +351,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -363,17 +368,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,8 +387,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -401,15 +407,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -428,6 +435,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -449,13 +457,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -463,12 +472,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -476,13 +485,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -490,7 +500,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -503,13 +513,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -517,25 +528,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -543,16 +611,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -563,6 +631,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -570,16 +667,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -590,6 +715,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -597,8 +723,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -606,7 +732,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -617,6 +743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -624,8 +751,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -633,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -644,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -651,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shi index ce756194..d650a7aa 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6b.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:20 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -254,6 +254,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -277,7 +278,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -288,8 +289,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -300,7 +303,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -308,17 +311,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -326,8 +330,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -335,7 +339,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -346,15 +350,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -362,17 +367,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -380,8 +386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -400,15 +406,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -427,6 +434,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -448,13 +456,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -462,12 +471,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -475,13 +484,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -489,7 +499,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -502,13 +512,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -516,25 +527,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -542,16 +610,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -562,6 +630,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,16 +666,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -589,6 +714,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -596,8 +722,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -605,7 +731,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -616,6 +742,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -623,8 +750,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -632,7 +759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -643,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -650,8 +778,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shd index ae8b3eb5..181eaac8 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -255,6 +255,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -278,7 +279,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -289,8 +290,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -301,7 +304,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -309,17 +312,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -327,8 +331,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -336,7 +340,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -347,15 +351,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -363,17 +368,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,8 +387,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -401,15 +407,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -428,6 +435,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -449,13 +457,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -463,12 +472,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -476,13 +485,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -490,7 +500,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -503,13 +513,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -517,25 +528,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -543,16 +611,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -563,6 +631,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -570,16 +667,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -590,6 +715,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -597,8 +723,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -606,7 +732,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -617,6 +743,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -624,8 +751,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -633,7 +760,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -644,6 +771,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -651,8 +779,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shi index f8d6428d..a8bb59d2 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6c.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:32 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:34 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -254,6 +254,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -277,7 +278,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -288,8 +289,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -300,7 +303,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -308,17 +311,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -326,8 +330,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -335,7 +339,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -346,15 +350,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -362,17 +367,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -380,8 +386,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -400,15 +406,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -427,6 +434,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -448,13 +456,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -462,12 +471,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -475,13 +484,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -489,7 +499,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -502,13 +512,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -516,25 +527,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -542,16 +610,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -562,6 +630,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -569,16 +666,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -589,6 +714,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -596,8 +722,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -605,7 +731,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -616,6 +742,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -623,8 +750,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -632,7 +759,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -643,6 +770,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -650,8 +778,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shd index c03bfd70..66855532 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -252,6 +252,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -275,7 +276,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -286,8 +287,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -298,7 +301,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -306,17 +309,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -324,8 +328,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -333,7 +337,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -344,15 +348,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -360,17 +365,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -378,8 +384,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -398,15 +404,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -425,6 +432,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -446,13 +454,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -460,12 +469,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -473,13 +482,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -487,7 +497,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -500,13 +510,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -514,25 +525,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -540,16 +608,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -560,6 +628,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -567,16 +664,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -587,6 +712,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -594,8 +720,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -603,7 +729,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -614,6 +740,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -621,8 +748,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -630,7 +757,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -641,6 +768,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -648,8 +776,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1213,84 +1341,84 @@ Status character 7.13370 54.28571 381.83152 7.13370 1 2 A 7.34521 55.71429 393.15265 7.34521 1 2 A 7.55753 57.14286 404.51658 7.55753 1 2 A - 9.09883 57.14286 453.60953 9.09883 110 0 1 + 9.09883 57.14286 453.60953 9.09883 110 2 1 9.35535 58.57143 466.39778 9.35535 110 2 1 9.61272 60.00000 479.22856 9.61272 110 2 1 - 9.87089 61.42857 492.09943 9.87089 110 0 1 + 9.87089 61.42857 492.09943 9.87089 110 2 1 10.12982 62.85714 505.00812 10.12982 110 2 1 - 10.38947 64.28571 517.95251 10.38947 110 0 1 + 10.38947 64.28571 517.95251 10.38947 110 2 1 12.68599 64.28571 561.30714 12.68599 110 2 1 13.00386 65.71429 575.37159 13.00386 110 2 1 - 13.32251 67.14286 589.47060 13.32251 110 0 1 + 13.32251 67.14286 589.47060 13.32251 110 2 1 13.64189 68.57143 603.60234 13.64189 110 2 1 - 13.96198 70.00000 617.76508 13.96198 110 0 1 + 13.96198 70.00000 617.76508 13.96198 110 2 1 14.28274 71.42857 631.95721 14.28274 110 2 1 - 16.25677 71.42857 670.27034 16.25677 110 0 1 - 16.62257 72.85714 685.35245 16.62257 110 0 1 + 16.25677 71.42857 670.27034 16.25677 110 2 1 + 16.62257 72.85714 685.35245 16.62257 110 2 1 16.98905 74.28571 700.46265 16.98905 110 2 1 17.35618 75.71429 715.59953 17.35618 110 2 1 - 17.72393 77.14286 730.76179 17.72393 110 0 1 - 18.09226 78.57143 745.94820 18.09226 110 0 1 + 17.72393 77.14286 730.76179 17.72393 110 2 1 + 18.09226 78.57143 745.94820 18.09226 110 2 1 19.80649 78.57143 780.02074 19.80649 110 3 1 - 20.21033 80.00000 795.92487 20.21033 110 0 1 - 20.61476 81.42857 811.85192 20.61476 110 0 1 - 21.01974 82.85714 827.80084 21.01974 110 0 1 - 21.42524 84.28571 843.77062 21.42524 110 0 1 + 20.21033 80.00000 795.92487 20.21033 110 3 1 + 20.61476 81.42857 811.85192 20.61476 110 3 1 + 21.01974 82.85714 827.80084 21.01974 110 3 1 + 21.42524 84.28571 843.77062 21.42524 110 3 1 21.83126 85.71429 859.76032 21.83126 110 3 1 23.33383 85.71429 890.29794 23.33383 110 3 1 23.76830 87.14286 906.87530 23.76830 110 3 1 24.20327 88.57143 923.47151 24.20327 110 3 1 - 24.63872 90.00000 940.08577 24.63872 110 0 1 + 24.63872 90.00000 940.08577 24.63872 110 3 1 25.07461 91.42857 956.71730 25.07461 110 3 1 25.51094 92.85714 973.36538 25.51094 110 3 1 - 26.83919 92.85714 1000.94716 26.83919 110 0 1 + 26.83919 92.85714 1000.94716 26.83919 110 3 1 27.29867 94.28571 1018.08330 27.29867 110 3 1 27.75858 95.71429 1035.23509 27.75858 110 3 1 28.21888 97.14286 1052.40190 28.21888 110 3 1 - 28.67958 98.57143 1069.58313 28.67958 110 0 1 + 28.67958 98.57143 1069.58313 28.67958 110 3 1 29.14064 100.00000 1086.77821 29.14064 110 3 1 30.32384 100.00000 1111.86976 30.32384 110 3 1 30.80400 101.42857 1129.47547 30.80400 110 3 1 - 31.28451 102.85714 1147.09428 31.28451 110 0 1 + 31.28451 102.85714 1147.09428 31.28451 110 3 1 31.76537 104.28571 1164.72570 31.76537 110 3 1 32.24656 105.71429 1182.36926 32.24656 110 3 1 32.72807 107.14286 1200.02452 32.72807 110 3 1 - 33.78942 107.14286 1222.99958 33.78942 110 0 1 + 33.78942 107.14286 1222.99958 33.78942 110 3 1 34.28686 108.57143 1241.00434 34.28686 110 3 1 - 34.78461 110.00000 1259.02017 34.78461 110 0 1 - 35.28265 111.42857 1277.04669 35.28265 110 0 1 - 35.78098 112.85714 1295.08352 35.78098 110 0 1 + 34.78461 110.00000 1259.02017 34.78461 110 3 1 + 35.28265 111.42857 1277.04669 35.28265 110 3 1 + 35.78098 112.85714 1295.08352 35.78098 110 3 1 36.27958 114.28571 1313.13030 36.27958 110 3 1 37.23769 114.28571 1334.29031 37.23769 110 3 1 - 37.74973 115.71429 1352.63767 37.74973 110 0 1 + 37.74973 115.71429 1352.63767 37.74973 110 3 1 38.26204 117.14286 1370.99447 38.26204 110 3 1 - 38.77460 118.57143 1389.36040 38.77460 110 0 1 - 39.28741 120.00000 1407.73516 39.28741 110 0 1 + 38.77460 118.57143 1389.36040 38.77460 110 3 1 + 39.28741 120.00000 1407.73516 39.28741 110 3 1 39.80045 121.42857 1426.11846 39.80045 110 3 1 - 40.67036 121.42857 1445.70850 40.67036 110 0 1 + 40.67036 121.42857 1445.70850 40.67036 110 3 1 41.19486 122.85714 1464.35270 41.19486 110 3 1 41.71958 124.28571 1483.00503 41.71958 110 3 1 42.24453 125.71429 1501.66521 42.24453 110 3 1 42.76969 127.14286 1520.33302 42.76969 110 3 1 43.29505 128.57143 1539.00821 43.29505 110 3 1 - 44.08906 128.57143 1557.22934 44.08906 110 0 1 - 44.62427 130.00000 1576.13289 44.62427 110 0 1 + 44.08906 128.57143 1557.22934 44.08906 110 3 1 + 44.62427 130.00000 1576.13289 44.62427 110 3 1 45.15967 131.42857 1595.04347 45.15967 110 3 1 - 45.69527 132.85714 1613.96088 45.69527 110 0 1 - 46.23106 134.28571 1632.88492 46.23106 110 0 1 - 46.76703 135.71429 1651.81540 46.76703 110 0 1 - 47.49525 135.71429 1668.83404 47.49525 110 0 1 - 48.03974 137.14286 1687.96588 48.03974 110 0 1 + 45.69527 132.85714 1613.96088 45.69527 110 3 1 + 46.23106 134.28571 1632.88492 46.23106 110 3 1 + 46.76703 135.71429 1651.81540 46.76703 110 3 1 + 47.49525 135.71429 1668.83404 47.49525 110 3 1 + 48.03974 137.14286 1687.96588 48.03974 110 3 1 48.58441 138.57143 1707.10386 48.58441 110 3 1 - 49.12925 140.00000 1726.24782 49.12925 110 0 1 - 49.67425 141.42857 1745.39758 49.67425 110 0 1 - 50.21942 142.85714 1764.55299 50.21942 110 0 1 - 50.89025 142.85714 1780.50813 50.89025 110 0 1 + 49.12925 140.00000 1726.24782 49.12925 110 3 1 + 49.67425 141.42857 1745.39758 49.67425 110 3 1 + 50.21942 142.85714 1764.55299 50.21942 110 3 1 + 50.89025 142.85714 1780.50813 50.89025 110 3 1 51.44285 144.28571 1799.84229 51.44285 110 3 1 - 51.99561 145.71429 1819.18186 51.99561 110 0 1 + 51.99561 145.71429 1819.18186 51.99561 110 3 1 52.54852 147.14286 1838.52669 52.54852 110 3 1 53.10158 148.57143 1857.87664 53.10158 110 3 1 - 53.65478 150.00000 1877.23159 53.65478 110 0 1 + 53.65478 150.00000 1877.23159 53.65478 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1514,84 +1642,84 @@ Status character 7.13370 54.28571 381.83152 7.13370 1 2 A 7.34521 55.71429 393.15265 7.34521 1 2 A 7.55753 57.14286 404.51658 7.55753 1 2 A - 9.09883 57.14286 453.60953 9.09883 110 0 1 + 9.09883 57.14286 453.60953 9.09883 110 2 1 9.35535 58.57143 466.39778 9.35535 110 2 1 9.61272 60.00000 479.22856 9.61272 110 2 1 - 9.87089 61.42857 492.09943 9.87089 110 0 1 + 9.87089 61.42857 492.09943 9.87089 110 2 1 10.12982 62.85714 505.00812 10.12982 110 2 1 - 10.38947 64.28571 517.95251 10.38947 110 0 1 + 10.38947 64.28571 517.95251 10.38947 110 2 1 12.68599 64.28571 561.30714 12.68599 110 2 1 13.00386 65.71429 575.37159 13.00386 110 2 1 - 13.32251 67.14286 589.47060 13.32251 110 0 1 + 13.32251 67.14286 589.47060 13.32251 110 2 1 13.64189 68.57143 603.60234 13.64189 110 2 1 - 13.96198 70.00000 617.76508 13.96198 110 0 1 + 13.96198 70.00000 617.76508 13.96198 110 2 1 14.28274 71.42857 631.95721 14.28274 110 2 1 - 16.25677 71.42857 670.27034 16.25677 110 0 1 - 16.62257 72.85714 685.35245 16.62257 110 0 1 + 16.25677 71.42857 670.27034 16.25677 110 2 1 + 16.62257 72.85714 685.35245 16.62257 110 2 1 16.98905 74.28571 700.46265 16.98905 110 2 1 17.35618 75.71429 715.59953 17.35618 110 2 1 - 17.72393 77.14286 730.76179 17.72393 110 0 1 - 18.09226 78.57143 745.94820 18.09226 110 0 1 + 17.72393 77.14286 730.76179 17.72393 110 2 1 + 18.09226 78.57143 745.94820 18.09226 110 2 1 19.80649 78.57143 780.02074 19.80649 110 3 1 - 20.21033 80.00000 795.92487 20.21033 110 0 1 - 20.61476 81.42857 811.85192 20.61476 110 0 1 - 21.01974 82.85714 827.80084 21.01974 110 0 1 - 21.42524 84.28571 843.77062 21.42524 110 0 1 + 20.21033 80.00000 795.92487 20.21033 110 3 1 + 20.61476 81.42857 811.85192 20.61476 110 3 1 + 21.01974 82.85714 827.80084 21.01974 110 3 1 + 21.42524 84.28571 843.77062 21.42524 110 3 1 21.83126 85.71429 859.76032 21.83126 110 3 1 23.33383 85.71429 890.29794 23.33383 110 3 1 23.76830 87.14286 906.87530 23.76830 110 3 1 24.20327 88.57143 923.47151 24.20327 110 3 1 - 24.63872 90.00000 940.08577 24.63872 110 0 1 + 24.63872 90.00000 940.08577 24.63872 110 3 1 25.07461 91.42857 956.71730 25.07461 110 3 1 25.51094 92.85714 973.36538 25.51094 110 3 1 - 26.83919 92.85714 1000.94716 26.83919 110 0 1 + 26.83919 92.85714 1000.94716 26.83919 110 3 1 27.29867 94.28571 1018.08330 27.29867 110 3 1 27.75858 95.71429 1035.23509 27.75858 110 3 1 28.21888 97.14286 1052.40190 28.21888 110 3 1 - 28.67958 98.57143 1069.58313 28.67958 110 0 1 + 28.67958 98.57143 1069.58313 28.67958 110 3 1 29.14064 100.00000 1086.77821 29.14064 110 3 1 30.32384 100.00000 1111.86976 30.32384 110 3 1 30.80400 101.42857 1129.47547 30.80400 110 3 1 - 31.28451 102.85714 1147.09428 31.28451 110 0 1 + 31.28451 102.85714 1147.09428 31.28451 110 3 1 31.76537 104.28571 1164.72570 31.76537 110 3 1 32.24656 105.71429 1182.36926 32.24656 110 3 1 32.72807 107.14286 1200.02452 32.72807 110 3 1 - 33.78942 107.14286 1222.99958 33.78942 110 0 1 + 33.78942 107.14286 1222.99958 33.78942 110 3 1 34.28686 108.57143 1241.00434 34.28686 110 3 1 - 34.78461 110.00000 1259.02017 34.78461 110 0 1 - 35.28265 111.42857 1277.04669 35.28265 110 0 1 - 35.78098 112.85714 1295.08352 35.78098 110 0 1 + 34.78461 110.00000 1259.02017 34.78461 110 3 1 + 35.28265 111.42857 1277.04669 35.28265 110 3 1 + 35.78098 112.85714 1295.08352 35.78098 110 3 1 36.27958 114.28571 1313.13030 36.27958 110 3 1 37.23769 114.28571 1334.29031 37.23769 110 3 1 - 37.74973 115.71429 1352.63767 37.74973 110 0 1 + 37.74973 115.71429 1352.63767 37.74973 110 3 1 38.26204 117.14286 1370.99447 38.26204 110 3 1 - 38.77460 118.57143 1389.36040 38.77460 110 0 1 - 39.28741 120.00000 1407.73516 39.28741 110 0 1 + 38.77460 118.57143 1389.36040 38.77460 110 3 1 + 39.28741 120.00000 1407.73516 39.28741 110 3 1 39.80045 121.42857 1426.11846 39.80045 110 3 1 - 40.67036 121.42857 1445.70850 40.67036 110 0 1 + 40.67036 121.42857 1445.70850 40.67036 110 3 1 41.19486 122.85714 1464.35270 41.19486 110 3 1 41.71958 124.28571 1483.00503 41.71958 110 3 1 42.24453 125.71429 1501.66521 42.24453 110 3 1 42.76969 127.14286 1520.33302 42.76969 110 3 1 43.29505 128.57143 1539.00821 43.29505 110 3 1 - 44.08906 128.57143 1557.22934 44.08906 110 0 1 - 44.62427 130.00000 1576.13289 44.62427 110 0 1 + 44.08906 128.57143 1557.22934 44.08906 110 3 1 + 44.62427 130.00000 1576.13289 44.62427 110 3 1 45.15967 131.42857 1595.04347 45.15967 110 3 1 - 45.69527 132.85714 1613.96088 45.69527 110 0 1 - 46.23106 134.28571 1632.88492 46.23106 110 0 1 - 46.76703 135.71429 1651.81540 46.76703 110 0 1 - 47.49525 135.71429 1668.83404 47.49525 110 0 1 - 48.03974 137.14286 1687.96588 48.03974 110 0 1 + 45.69527 132.85714 1613.96088 45.69527 110 3 1 + 46.23106 134.28571 1632.88492 46.23106 110 3 1 + 46.76703 135.71429 1651.81540 46.76703 110 3 1 + 47.49525 135.71429 1668.83404 47.49525 110 3 1 + 48.03974 137.14286 1687.96588 48.03974 110 3 1 48.58441 138.57143 1707.10386 48.58441 110 3 1 - 49.12925 140.00000 1726.24782 49.12925 110 0 1 - 49.67425 141.42857 1745.39758 49.67425 110 0 1 - 50.21942 142.85714 1764.55299 50.21942 110 0 1 - 50.89025 142.85714 1780.50813 50.89025 110 0 1 + 49.12925 140.00000 1726.24782 49.12925 110 3 1 + 49.67425 141.42857 1745.39758 49.67425 110 3 1 + 50.21942 142.85714 1764.55299 50.21942 110 3 1 + 50.89025 142.85714 1780.50813 50.89025 110 3 1 51.44285 144.28571 1799.84229 51.44285 110 3 1 - 51.99561 145.71429 1819.18186 51.99561 110 0 1 + 51.99561 145.71429 1819.18186 51.99561 110 3 1 52.54852 147.14286 1838.52669 52.54852 110 3 1 53.10158 148.57143 1857.87664 53.10158 110 3 1 - 53.65478 150.00000 1877.23159 53.65478 110 0 1 + 53.65478 150.00000 1877.23159 53.65478 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shi index e22567d5..3d4c5f30 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6d.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:32:48 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -251,6 +251,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -274,7 +275,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -285,8 +286,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -297,7 +300,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -305,17 +308,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -323,8 +327,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -332,7 +336,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -343,15 +347,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -359,17 +364,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -377,8 +383,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -397,15 +403,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -424,6 +431,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -445,13 +453,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -459,12 +468,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -472,13 +481,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -486,7 +496,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -499,13 +509,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -513,25 +524,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -539,16 +607,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -559,6 +627,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -566,16 +663,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -586,6 +711,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -593,8 +719,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -602,7 +728,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -613,6 +739,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -620,8 +747,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -629,7 +756,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -640,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -647,8 +775,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shd index 64677be0..0cc9215a 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:48:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:17 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -281,6 +281,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -290,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -313,7 +315,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -324,8 +326,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -336,7 +340,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -344,17 +348,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -362,8 +367,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -371,7 +376,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -382,15 +387,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -398,17 +404,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -416,8 +423,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -436,15 +443,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -463,6 +471,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -484,13 +493,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -498,12 +508,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -511,13 +521,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -525,7 +536,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -538,13 +549,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -552,25 +564,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,16 +647,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -598,6 +667,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,16 +703,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -625,6 +751,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -632,8 +759,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -641,7 +768,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -652,6 +779,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -659,8 +787,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -668,7 +796,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -679,6 +807,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -686,8 +815,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shi index 9b09d7b4..8bd730a0 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-6e.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:47:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-6e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:03 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-6e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -280,6 +280,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -289,6 +290,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -312,7 +314,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -323,8 +325,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -335,7 +339,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -343,17 +347,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -361,8 +366,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -370,7 +375,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -381,15 +386,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -397,17 +403,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -415,8 +422,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -435,15 +442,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -462,6 +470,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -483,13 +492,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -497,12 +507,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -510,13 +520,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -524,7 +535,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -537,13 +548,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -551,25 +563,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -577,16 +646,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -597,6 +666,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -604,16 +702,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -624,6 +750,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -631,8 +758,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -640,7 +767,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -651,6 +778,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -658,8 +786,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -667,7 +795,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -678,6 +806,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -685,8 +814,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-7.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-7.shd index a7958c79..bd6314ac 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-7.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-7.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:48:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-7.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-7.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -250,6 +250,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -273,7 +274,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -284,8 +285,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -296,7 +299,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -304,17 +307,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -322,8 +326,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -331,7 +335,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -342,15 +346,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -358,17 +363,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -376,8 +382,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -396,15 +402,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -423,6 +430,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -444,13 +452,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -458,12 +467,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -471,13 +480,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -485,7 +495,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -498,13 +508,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -512,25 +523,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -538,16 +606,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -558,6 +626,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,16 +662,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,6 +710,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -592,8 +718,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -601,7 +727,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -612,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -619,8 +746,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -628,7 +755,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -639,6 +766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -646,8 +774,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1089,130 +1217,130 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00002 0.00000 110 3 1 - 1.00756 0.00000 35.90232 1.00756 110 0 1 - 2.01512 0.00000 71.80464 2.01512 110 0 1 + 1.00756 0.00000 35.90232 1.00756 110 3 1 + 2.01512 0.00000 71.80464 2.01512 110 3 1 3.02268 0.00000 107.70696 3.02268 110 3 1 - 4.03024 0.00000 143.60929 4.03024 110 0 1 + 4.03024 0.00000 143.60929 4.03024 110 3 1 5.03780 0.00000 179.51161 5.03780 110 3 1 5.03780 0.00000 179.51161 5.03780 110 3 1 - 6.04535 0.00000 215.41393 6.04535 110 0 1 - 7.05291 0.00000 251.31625 7.05291 110 0 1 + 6.04535 0.00000 215.41393 6.04535 110 3 1 + 7.05291 0.00000 251.31625 7.05291 110 3 1 8.06047 0.00000 287.21857 8.06047 110 3 1 - 9.06803 0.00000 323.12089 9.06803 110 0 1 + 9.06803 0.00000 323.12089 9.06803 110 3 1 10.07559 0.00000 359.02321 10.07559 110 3 1 10.07559 0.00000 359.02321 10.07559 110 3 1 11.08315 0.00000 394.92553 11.08315 110 3 1 - 12.09071 0.00000 430.82786 12.09071 110 0 1 - 13.09827 0.00000 466.73018 13.09827 110 0 1 + 12.09071 0.00000 430.82786 12.09071 110 3 1 + 13.09827 0.00000 466.73018 13.09827 110 3 1 14.10583 0.00000 502.63250 14.10583 110 3 1 - 15.11339 0.00000 538.53482 15.11339 110 0 1 - 15.11339 0.00000 538.53482 15.11339 110 0 1 + 15.11339 0.00000 538.53482 15.11339 110 3 1 + 15.11339 0.00000 538.53482 15.11339 110 3 1 16.12095 0.00000 574.43714 16.12095 110 3 1 17.12850 0.00000 610.33946 17.12850 110 3 1 - 18.13606 0.00000 646.24178 18.13606 110 0 1 - 19.14362 0.00000 682.14410 19.14362 110 0 1 + 18.13606 0.00000 646.24178 18.13606 110 3 1 + 19.14362 0.00000 682.14410 19.14362 110 3 1 20.15118 0.00000 718.04643 20.15118 110 3 1 20.15118 0.00000 718.04643 20.15118 110 3 1 21.15874 0.00000 753.94875 21.15874 110 3 1 22.16630 0.00000 789.85107 22.16630 110 3 1 - 23.17386 0.00000 825.75339 23.17386 110 0 1 - 24.18142 0.00000 861.65571 24.18142 110 0 1 - 25.18898 0.00000 897.55803 25.18898 110 0 1 - 25.18898 0.00000 897.55803 25.18898 110 0 1 - 26.19654 0.00000 933.46035 26.19654 110 0 1 + 23.17386 0.00000 825.75339 23.17386 110 3 1 + 24.18142 0.00000 861.65571 24.18142 110 3 1 + 25.18898 0.00000 897.55803 25.18898 110 3 1 + 25.18898 0.00000 897.55803 25.18898 110 3 1 + 26.19654 0.00000 933.46035 26.19654 110 3 1 27.20410 0.00000 969.36267 27.20410 110 3 1 28.21165 0.00000 1005.26500 28.21165 110 3 1 - 29.21921 0.00000 1041.16732 29.21921 110 0 1 - 30.22677 0.00000 1077.06964 30.22677 110 0 1 - 30.22677 0.00000 1077.06964 30.22677 110 0 1 + 29.21921 0.00000 1041.16732 29.21921 110 3 1 + 30.22677 0.00000 1077.06964 30.22677 110 3 1 + 30.22677 0.00000 1077.06964 30.22677 110 3 1 31.23433 0.00000 1112.97196 31.23433 110 3 1 - 32.24189 0.00000 1148.87428 32.24189 110 0 1 - 33.24945 0.00000 1184.77660 33.24945 110 0 1 + 32.24189 0.00000 1148.87428 32.24189 110 3 1 + 33.24945 0.00000 1184.77660 33.24945 110 3 1 34.25701 0.00000 1220.67892 34.25701 110 3 1 - 35.26457 0.00000 1256.58124 35.26457 110 0 1 - 35.26457 0.00000 1256.58124 35.26457 110 0 1 + 35.26457 0.00000 1256.58124 35.26457 110 3 1 + 35.26457 0.00000 1256.58124 35.26457 110 3 1 36.27213 0.00000 1292.48357 36.27213 110 3 1 37.27969 0.00000 1328.38589 37.27969 110 3 1 - 38.28724 0.00000 1364.28821 38.28724 110 0 1 + 38.28724 0.00000 1364.28821 38.28724 110 3 1 39.29480 0.00000 1400.19053 39.29480 110 3 1 40.30236 0.00000 1436.09285 40.30236 110 3 1 40.30236 0.00000 1436.09285 40.30236 110 3 1 - 41.30992 0.00000 1471.99517 41.30992 110 0 1 + 41.30992 0.00000 1471.99517 41.30992 110 3 1 42.31748 0.00000 1507.89749 42.31748 110 3 1 43.32504 0.00000 1543.79981 43.32504 110 3 1 - 44.33260 0.00000 1579.70214 44.33260 110 0 1 - 45.34016 0.00000 1615.60446 45.34016 110 0 1 - 45.34016 0.00000 1615.60446 45.34016 110 0 1 + 44.33260 0.00000 1579.70214 44.33260 110 3 1 + 45.34016 0.00000 1615.60446 45.34016 110 3 1 + 45.34016 0.00000 1615.60446 45.34016 110 3 1 46.34772 0.00000 1651.50678 46.34772 110 3 1 47.35528 0.00000 1687.40910 47.35528 110 3 1 - 48.36284 0.00000 1723.31142 48.36284 110 0 1 + 48.36284 0.00000 1723.31142 48.36284 110 3 1 49.37039 0.00000 1759.21374 49.37039 110 3 1 50.37795 0.00000 1795.11606 50.37795 110 3 1 50.37795 0.00000 1795.11606 50.37795 110 3 1 - 51.38551 0.00000 1831.01838 51.38551 110 0 1 + 51.38551 0.00000 1831.01838 51.38551 110 3 1 52.39307 0.00000 1866.92071 52.39307 110 3 1 53.40063 0.00000 1902.82303 53.40063 110 3 1 - 54.40819 0.00000 1938.72535 54.40819 110 0 1 - 55.41575 0.00000 1974.62767 55.41575 110 0 1 - 55.41575 0.00000 1974.62767 55.41575 110 0 1 + 54.40819 0.00000 1938.72535 54.40819 110 3 1 + 55.41575 0.00000 1974.62767 55.41575 110 3 1 + 55.41575 0.00000 1974.62767 55.41575 110 3 1 56.42331 0.00000 2010.52999 56.42331 110 3 1 - 57.43087 0.00000 2046.43231 57.43087 110 0 1 + 57.43087 0.00000 2046.43231 57.43087 110 3 1 58.43843 0.00000 2082.33463 58.43843 110 3 1 - 59.44599 0.00000 2118.23695 59.44599 110 0 1 + 59.44599 0.00000 2118.23695 59.44599 110 3 1 60.45354 0.00000 2154.13928 60.45354 110 3 1 60.45354 0.00000 2154.13928 60.45354 110 3 1 - 61.46110 0.00000 2190.04160 61.46110 110 0 1 + 61.46110 0.00000 2190.04160 61.46110 110 3 1 62.46866 0.00000 2225.94392 62.46866 110 3 1 - 63.47622 0.00000 2261.84624 63.47622 110 0 1 + 63.47622 0.00000 2261.84624 63.47622 110 3 1 64.48378 0.00000 2297.74856 64.48378 110 3 1 65.49134 0.00000 2333.65088 65.49134 110 3 1 65.49134 0.00000 2333.65088 65.49134 110 3 1 - 66.49890 0.00000 2369.55320 66.49890 110 0 1 + 66.49890 0.00000 2369.55320 66.49890 110 3 1 67.50646 0.00000 2405.45552 67.50646 110 3 1 - 68.51402 0.00000 2441.35785 68.51402 110 0 1 + 68.51402 0.00000 2441.35785 68.51402 110 3 1 69.52158 0.00000 2477.26017 69.52158 110 3 1 - 70.52914 0.00000 2513.16249 70.52914 110 0 1 - 70.52914 0.00000 2513.16249 70.52914 110 0 1 + 70.52914 0.00000 2513.16249 70.52914 110 3 1 + 70.52914 0.00000 2513.16249 70.52914 110 3 1 71.53669 0.00000 2549.06481 71.53669 110 3 1 - 72.54425 0.00000 2584.96713 72.54425 110 0 1 + 72.54425 0.00000 2584.96713 72.54425 110 3 1 73.55181 0.00000 2620.86945 73.55181 110 3 1 - 74.55937 0.00000 2656.77177 74.55937 110 0 1 + 74.55937 0.00000 2656.77177 74.55937 110 3 1 75.56693 0.00000 2692.67409 75.56693 110 3 1 75.56693 0.00000 2692.67409 75.56693 110 3 1 76.57449 0.00000 2728.57642 76.57449 110 3 1 - 77.58205 0.00000 2764.47874 77.58205 110 0 1 - 78.58961 0.00000 2800.38106 78.58961 110 0 1 + 77.58205 0.00000 2764.47874 77.58205 110 3 1 + 78.58961 0.00000 2800.38106 78.58961 110 3 1 79.59717 0.00000 2836.28338 79.59717 110 3 1 80.60473 0.00000 2872.18570 80.60473 110 3 1 80.60473 0.00000 2872.18570 80.60473 110 3 1 - 81.61229 0.00000 2908.08802 81.61229 110 0 1 - 82.61984 0.00000 2943.99034 82.61984 110 0 1 + 81.61229 0.00000 2908.08802 81.61229 110 3 1 + 82.61984 0.00000 2943.99034 82.61984 110 3 1 83.62740 0.00000 2979.89266 83.62740 110 3 1 84.63496 0.00000 3015.79499 84.63496 110 3 1 - 85.64252 0.00000 3051.69731 85.64252 110 0 1 - 85.64252 0.00000 3051.69731 85.64252 110 0 1 + 85.64252 0.00000 3051.69731 85.64252 110 3 1 + 85.64252 0.00000 3051.69731 85.64252 110 3 1 86.65008 0.00000 3087.59963 86.65008 110 3 1 87.65764 0.00000 3123.50195 87.65764 110 3 1 - 88.66520 0.00000 3159.40427 88.66520 110 0 1 - 89.67276 0.00000 3195.30659 89.67276 110 0 1 + 88.66520 0.00000 3159.40427 88.66520 110 3 1 + 89.67276 0.00000 3195.30659 89.67276 110 3 1 90.68032 0.00000 3231.20891 90.68032 110 3 1 90.68032 0.00000 3231.20891 90.68032 110 3 1 91.68788 0.00000 3267.11123 91.68788 110 3 1 - 92.69544 0.00000 3303.01356 92.69544 110 0 1 - 93.70299 0.00000 3338.91588 93.70299 110 0 1 + 92.69544 0.00000 3303.01356 92.69544 110 3 1 + 93.70299 0.00000 3338.91588 93.70299 110 3 1 94.71055 0.00000 3374.81820 94.71055 110 3 1 95.71811 0.00000 3410.72052 95.71811 110 3 1 95.71811 0.00000 3410.72052 95.71811 110 3 1 - 96.72567 0.00000 3446.62284 96.72567 110 0 1 + 96.72567 0.00000 3446.62284 96.72567 110 3 1 97.73323 0.00000 3482.52516 97.73323 110 3 1 98.74079 0.00000 3518.42748 98.74079 110 3 1 - 99.74835 0.00000 3554.32980 99.74835 110 0 1 - 100.75591 0.00000 3590.23213 100.75591 110 0 1 - 100.75591 0.00000 3590.23213 100.75591 110 0 1 + 99.74835 0.00000 3554.32980 99.74835 110 3 1 + 100.75591 0.00000 3590.23213 100.75591 110 3 1 + 100.75591 0.00000 3590.23213 100.75591 110 3 1 101.76347 0.00000 3626.13445 101.76347 110 3 1 102.77103 0.00000 3662.03677 102.77103 110 3 1 - 103.77859 0.00000 3697.93909 103.77859 110 0 1 - 104.78614 0.00000 3733.84141 104.78614 110 0 1 + 103.77859 0.00000 3697.93909 103.77859 110 3 1 + 104.78614 0.00000 3733.84141 104.78614 110 3 1 105.79370 0.00000 3769.74373 105.79370 110 3 1 [END OF DATA] [END OF TABLE] @@ -1315,130 +1443,130 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00002 0.00000 110 3 1 - 1.00756 0.00000 35.90232 1.00756 110 0 1 - 2.01512 0.00000 71.80464 2.01512 110 0 1 + 1.00756 0.00000 35.90232 1.00756 110 3 1 + 2.01512 0.00000 71.80464 2.01512 110 3 1 3.02268 0.00000 107.70696 3.02268 110 3 1 - 4.03024 0.00000 143.60929 4.03024 110 0 1 + 4.03024 0.00000 143.60929 4.03024 110 3 1 5.03780 0.00000 179.51161 5.03780 110 3 1 5.03780 0.00000 179.51161 5.03780 110 3 1 - 6.04535 0.00000 215.41393 6.04535 110 0 1 - 7.05291 0.00000 251.31625 7.05291 110 0 1 + 6.04535 0.00000 215.41393 6.04535 110 3 1 + 7.05291 0.00000 251.31625 7.05291 110 3 1 8.06047 0.00000 287.21857 8.06047 110 3 1 - 9.06803 0.00000 323.12089 9.06803 110 0 1 + 9.06803 0.00000 323.12089 9.06803 110 3 1 10.07559 0.00000 359.02321 10.07559 110 3 1 10.07559 0.00000 359.02321 10.07559 110 3 1 11.08315 0.00000 394.92553 11.08315 110 3 1 - 12.09071 0.00000 430.82786 12.09071 110 0 1 - 13.09827 0.00000 466.73018 13.09827 110 0 1 + 12.09071 0.00000 430.82786 12.09071 110 3 1 + 13.09827 0.00000 466.73018 13.09827 110 3 1 14.10583 0.00000 502.63250 14.10583 110 3 1 - 15.11339 0.00000 538.53482 15.11339 110 0 1 - 15.11339 0.00000 538.53482 15.11339 110 0 1 + 15.11339 0.00000 538.53482 15.11339 110 3 1 + 15.11339 0.00000 538.53482 15.11339 110 3 1 16.12095 0.00000 574.43714 16.12095 110 3 1 17.12850 0.00000 610.33946 17.12850 110 3 1 - 18.13606 0.00000 646.24178 18.13606 110 0 1 - 19.14362 0.00000 682.14410 19.14362 110 0 1 + 18.13606 0.00000 646.24178 18.13606 110 3 1 + 19.14362 0.00000 682.14410 19.14362 110 3 1 20.15118 0.00000 718.04643 20.15118 110 3 1 20.15118 0.00000 718.04643 20.15118 110 3 1 21.15874 0.00000 753.94875 21.15874 110 3 1 22.16630 0.00000 789.85107 22.16630 110 3 1 - 23.17386 0.00000 825.75339 23.17386 110 0 1 - 24.18142 0.00000 861.65571 24.18142 110 0 1 - 25.18898 0.00000 897.55803 25.18898 110 0 1 - 25.18898 0.00000 897.55803 25.18898 110 0 1 - 26.19654 0.00000 933.46035 26.19654 110 0 1 + 23.17386 0.00000 825.75339 23.17386 110 3 1 + 24.18142 0.00000 861.65571 24.18142 110 3 1 + 25.18898 0.00000 897.55803 25.18898 110 3 1 + 25.18898 0.00000 897.55803 25.18898 110 3 1 + 26.19654 0.00000 933.46035 26.19654 110 3 1 27.20410 0.00000 969.36267 27.20410 110 3 1 28.21165 0.00000 1005.26500 28.21165 110 3 1 - 29.21921 0.00000 1041.16732 29.21921 110 0 1 - 30.22677 0.00000 1077.06964 30.22677 110 0 1 - 30.22677 0.00000 1077.06964 30.22677 110 0 1 + 29.21921 0.00000 1041.16732 29.21921 110 3 1 + 30.22677 0.00000 1077.06964 30.22677 110 3 1 + 30.22677 0.00000 1077.06964 30.22677 110 3 1 31.23433 0.00000 1112.97196 31.23433 110 3 1 - 32.24189 0.00000 1148.87428 32.24189 110 0 1 - 33.24945 0.00000 1184.77660 33.24945 110 0 1 + 32.24189 0.00000 1148.87428 32.24189 110 3 1 + 33.24945 0.00000 1184.77660 33.24945 110 3 1 34.25701 0.00000 1220.67892 34.25701 110 3 1 - 35.26457 0.00000 1256.58124 35.26457 110 0 1 - 35.26457 0.00000 1256.58124 35.26457 110 0 1 + 35.26457 0.00000 1256.58124 35.26457 110 3 1 + 35.26457 0.00000 1256.58124 35.26457 110 3 1 36.27213 0.00000 1292.48357 36.27213 110 3 1 37.27969 0.00000 1328.38589 37.27969 110 3 1 - 38.28724 0.00000 1364.28821 38.28724 110 0 1 + 38.28724 0.00000 1364.28821 38.28724 110 3 1 39.29480 0.00000 1400.19053 39.29480 110 3 1 40.30236 0.00000 1436.09285 40.30236 110 3 1 40.30236 0.00000 1436.09285 40.30236 110 3 1 - 41.30992 0.00000 1471.99517 41.30992 110 0 1 + 41.30992 0.00000 1471.99517 41.30992 110 3 1 42.31748 0.00000 1507.89749 42.31748 110 3 1 43.32504 0.00000 1543.79981 43.32504 110 3 1 - 44.33260 0.00000 1579.70214 44.33260 110 0 1 - 45.34016 0.00000 1615.60446 45.34016 110 0 1 - 45.34016 0.00000 1615.60446 45.34016 110 0 1 + 44.33260 0.00000 1579.70214 44.33260 110 3 1 + 45.34016 0.00000 1615.60446 45.34016 110 3 1 + 45.34016 0.00000 1615.60446 45.34016 110 3 1 46.34772 0.00000 1651.50678 46.34772 110 3 1 47.35528 0.00000 1687.40910 47.35528 110 3 1 - 48.36284 0.00000 1723.31142 48.36284 110 0 1 + 48.36284 0.00000 1723.31142 48.36284 110 3 1 49.37039 0.00000 1759.21374 49.37039 110 3 1 50.37795 0.00000 1795.11606 50.37795 110 3 1 50.37795 0.00000 1795.11606 50.37795 110 3 1 - 51.38551 0.00000 1831.01838 51.38551 110 0 1 + 51.38551 0.00000 1831.01838 51.38551 110 3 1 52.39307 0.00000 1866.92071 52.39307 110 3 1 53.40063 0.00000 1902.82303 53.40063 110 3 1 - 54.40819 0.00000 1938.72535 54.40819 110 0 1 - 55.41575 0.00000 1974.62767 55.41575 110 0 1 - 55.41575 0.00000 1974.62767 55.41575 110 0 1 + 54.40819 0.00000 1938.72535 54.40819 110 3 1 + 55.41575 0.00000 1974.62767 55.41575 110 3 1 + 55.41575 0.00000 1974.62767 55.41575 110 3 1 56.42331 0.00000 2010.52999 56.42331 110 3 1 - 57.43087 0.00000 2046.43231 57.43087 110 0 1 + 57.43087 0.00000 2046.43231 57.43087 110 3 1 58.43843 0.00000 2082.33463 58.43843 110 3 1 - 59.44599 0.00000 2118.23695 59.44599 110 0 1 + 59.44599 0.00000 2118.23695 59.44599 110 3 1 60.45354 0.00000 2154.13928 60.45354 110 3 1 60.45354 0.00000 2154.13928 60.45354 110 3 1 - 61.46110 0.00000 2190.04160 61.46110 110 0 1 + 61.46110 0.00000 2190.04160 61.46110 110 3 1 62.46866 0.00000 2225.94392 62.46866 110 3 1 - 63.47622 0.00000 2261.84624 63.47622 110 0 1 + 63.47622 0.00000 2261.84624 63.47622 110 3 1 64.48378 0.00000 2297.74856 64.48378 110 3 1 65.49134 0.00000 2333.65088 65.49134 110 3 1 65.49134 0.00000 2333.65088 65.49134 110 3 1 - 66.49890 0.00000 2369.55320 66.49890 110 0 1 + 66.49890 0.00000 2369.55320 66.49890 110 3 1 67.50646 0.00000 2405.45552 67.50646 110 3 1 - 68.51402 0.00000 2441.35785 68.51402 110 0 1 + 68.51402 0.00000 2441.35785 68.51402 110 3 1 69.52158 0.00000 2477.26017 69.52158 110 3 1 - 70.52914 0.00000 2513.16249 70.52914 110 0 1 - 70.52914 0.00000 2513.16249 70.52914 110 0 1 + 70.52914 0.00000 2513.16249 70.52914 110 3 1 + 70.52914 0.00000 2513.16249 70.52914 110 3 1 71.53669 0.00000 2549.06481 71.53669 110 3 1 - 72.54425 0.00000 2584.96713 72.54425 110 0 1 + 72.54425 0.00000 2584.96713 72.54425 110 3 1 73.55181 0.00000 2620.86945 73.55181 110 3 1 - 74.55937 0.00000 2656.77177 74.55937 110 0 1 + 74.55937 0.00000 2656.77177 74.55937 110 3 1 75.56693 0.00000 2692.67409 75.56693 110 3 1 75.56693 0.00000 2692.67409 75.56693 110 3 1 76.57449 0.00000 2728.57642 76.57449 110 3 1 - 77.58205 0.00000 2764.47874 77.58205 110 0 1 - 78.58961 0.00000 2800.38106 78.58961 110 0 1 + 77.58205 0.00000 2764.47874 77.58205 110 3 1 + 78.58961 0.00000 2800.38106 78.58961 110 3 1 79.59717 0.00000 2836.28338 79.59717 110 3 1 80.60473 0.00000 2872.18570 80.60473 110 3 1 80.60473 0.00000 2872.18570 80.60473 110 3 1 - 81.61229 0.00000 2908.08802 81.61229 110 0 1 - 82.61984 0.00000 2943.99034 82.61984 110 0 1 + 81.61229 0.00000 2908.08802 81.61229 110 3 1 + 82.61984 0.00000 2943.99034 82.61984 110 3 1 83.62740 0.00000 2979.89266 83.62740 110 3 1 84.63496 0.00000 3015.79499 84.63496 110 3 1 - 85.64252 0.00000 3051.69731 85.64252 110 0 1 - 85.64252 0.00000 3051.69731 85.64252 110 0 1 + 85.64252 0.00000 3051.69731 85.64252 110 3 1 + 85.64252 0.00000 3051.69731 85.64252 110 3 1 86.65008 0.00000 3087.59963 86.65008 110 3 1 87.65764 0.00000 3123.50195 87.65764 110 3 1 - 88.66520 0.00000 3159.40427 88.66520 110 0 1 - 89.67276 0.00000 3195.30659 89.67276 110 0 1 + 88.66520 0.00000 3159.40427 88.66520 110 3 1 + 89.67276 0.00000 3195.30659 89.67276 110 3 1 90.68032 0.00000 3231.20891 90.68032 110 3 1 90.68032 0.00000 3231.20891 90.68032 110 3 1 91.68788 0.00000 3267.11123 91.68788 110 3 1 - 92.69544 0.00000 3303.01356 92.69544 110 0 1 - 93.70299 0.00000 3338.91588 93.70299 110 0 1 + 92.69544 0.00000 3303.01356 92.69544 110 3 1 + 93.70299 0.00000 3338.91588 93.70299 110 3 1 94.71055 0.00000 3374.81820 94.71055 110 3 1 95.71811 0.00000 3410.72052 95.71811 110 3 1 95.71811 0.00000 3410.72052 95.71811 110 3 1 - 96.72567 0.00000 3446.62284 96.72567 110 0 1 + 96.72567 0.00000 3446.62284 96.72567 110 3 1 97.73323 0.00000 3482.52516 97.73323 110 3 1 98.74079 0.00000 3518.42748 98.74079 110 3 1 - 99.74835 0.00000 3554.32980 99.74835 110 0 1 - 100.75591 0.00000 3590.23213 100.75591 110 0 1 - 100.75591 0.00000 3590.23213 100.75591 110 0 1 + 99.74835 0.00000 3554.32980 99.74835 110 3 1 + 100.75591 0.00000 3590.23213 100.75591 110 3 1 + 100.75591 0.00000 3590.23213 100.75591 110 3 1 101.76347 0.00000 3626.13445 101.76347 110 3 1 102.77103 0.00000 3662.03677 102.77103 110 3 1 - 103.77859 0.00000 3697.93909 103.77859 110 0 1 - 104.78614 0.00000 3733.84141 104.78614 110 0 1 + 103.77859 0.00000 3697.93909 103.77859 110 3 1 + 104.78614 0.00000 3733.84141 104.78614 110 3 1 105.79370 0.00000 3769.74373 105.79370 110 3 1 [END OF DATA] [END OF TABLE] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-7.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-7.shi index 27d7493d..6a9e5a90 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-7.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-7.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:48:06 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-7.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:18 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-7.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -249,6 +249,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -272,7 +273,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -283,8 +284,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -295,7 +298,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -303,17 +306,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -321,8 +325,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -330,7 +334,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -341,15 +345,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -357,17 +362,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -375,8 +381,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -395,15 +401,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -422,6 +429,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -443,13 +451,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -457,12 +466,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -470,13 +479,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -484,7 +494,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -497,13 +507,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -511,25 +522,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -537,16 +605,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -557,6 +625,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -564,16 +661,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -584,6 +709,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -591,8 +717,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -600,7 +726,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -611,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -618,8 +745,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -627,7 +754,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -638,6 +765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -645,8 +773,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-8.shd b/tests/test_data/dsheetpiling/benchmarks/bm5-8.shd index f26d00a0..dc4e0724 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-8.shd +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-8.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:48:21 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-8.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:37 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-8.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -300,6 +300,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +324,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +335,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +349,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +357,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -372,8 +376,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -381,7 +385,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,15 +396,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -408,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -446,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -473,6 +480,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -494,13 +502,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -508,12 +517,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -521,13 +530,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -535,7 +545,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -548,13 +558,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -562,25 +573,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -588,16 +656,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +676,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -615,16 +712,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +760,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -642,8 +768,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -651,7 +777,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +788,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -669,8 +796,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -678,7 +805,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,8 +824,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -1145,117 +1273,117 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00002 0.00000 110 3 1 - 0.62972 1.42857 22.43895 0.62972 110 0 1 - 1.25945 2.85714 44.87790 1.25945 110 0 1 + 0.62972 1.42857 22.43895 0.62972 110 3 1 + 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 3.14862 7.14286 112.19475 3.14862 110 3 1 3.14862 7.14286 112.19475 3.14862 110 3 1 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 5.66752 12.85714 201.95056 5.66752 110 3 1 6.29724 14.28571 224.38951 6.29724 110 3 1 6.29724 14.28571 224.38951 6.29724 110 3 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 7.55669 17.14286 269.26741 7.55669 110 3 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 - 10.70532 24.28571 381.46216 10.70532 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 + 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 13.22421 30.00000 471.21797 13.22421 110 3 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 - 14.48366 32.85714 516.09587 14.48366 110 0 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 + 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 - 17.00256 38.57143 605.85167 17.00256 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 + 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 - 20.78091 47.14286 740.48538 20.78091 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 + 20.78091 47.14286 740.48538 20.78091 110 3 1 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1265,11 +1393,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1378,117 +1506,117 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00002 0.00000 110 3 1 - 0.62972 1.42857 22.43895 0.62972 110 0 1 - 1.25945 2.85714 44.87790 1.25945 110 0 1 + 0.62972 1.42857 22.43895 0.62972 110 3 1 + 1.25945 2.85714 44.87790 1.25945 110 3 1 1.88917 4.28571 67.31685 1.88917 110 3 1 - 2.51890 5.71429 89.75580 2.51890 110 0 1 + 2.51890 5.71429 89.75580 2.51890 110 3 1 3.14862 7.14286 112.19475 3.14862 110 3 1 3.14862 7.14286 112.19475 3.14862 110 3 1 3.77835 8.57143 134.63370 3.77835 110 3 1 4.40807 10.00000 157.07266 4.40807 110 3 1 - 5.03780 11.42857 179.51161 5.03780 110 0 1 + 5.03780 11.42857 179.51161 5.03780 110 3 1 5.66752 12.85714 201.95056 5.66752 110 3 1 6.29724 14.28571 224.38951 6.29724 110 3 1 6.29724 14.28571 224.38951 6.29724 110 3 1 - 6.92697 15.71429 246.82846 6.92697 110 0 1 + 6.92697 15.71429 246.82846 6.92697 110 3 1 7.55669 17.14286 269.26741 7.55669 110 3 1 - 8.18642 18.57143 291.70636 8.18642 110 0 1 + 8.18642 18.57143 291.70636 8.18642 110 3 1 8.81614 20.00000 314.14531 8.81614 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 9.44587 21.42857 336.58426 9.44587 110 3 1 - 10.07559 22.85714 359.02321 10.07559 110 0 1 - 10.70532 24.28571 381.46216 10.70532 110 0 1 + 10.07559 22.85714 359.02321 10.07559 110 3 1 + 10.70532 24.28571 381.46216 10.70532 110 3 1 11.33504 25.71429 403.90111 11.33504 110 3 1 - 11.96476 27.14286 426.34006 11.96476 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 - 12.59449 28.57143 448.77902 12.59449 110 0 1 + 11.96476 27.14286 426.34006 11.96476 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 + 12.59449 28.57143 448.77902 12.59449 110 3 1 13.22421 30.00000 471.21797 13.22421 110 3 1 - 13.85394 31.42857 493.65692 13.85394 110 0 1 - 14.48366 32.85714 516.09587 14.48366 110 0 1 + 13.85394 31.42857 493.65692 13.85394 110 3 1 + 14.48366 32.85714 516.09587 14.48366 110 3 1 15.11339 34.28571 538.53482 15.11339 110 3 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 15.74311 35.71429 560.97377 15.74311 110 0 1 - 16.37284 37.14286 583.41272 16.37284 110 0 1 - 17.00256 38.57143 605.85167 17.00256 110 0 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 15.74311 35.71429 560.97377 15.74311 110 3 1 + 16.37284 37.14286 583.41272 16.37284 110 3 1 + 17.00256 38.57143 605.85167 17.00256 110 3 1 17.63228 40.00000 628.29062 17.63228 110 3 1 18.26201 41.42857 650.72957 18.26201 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 18.89173 42.85714 673.16852 18.89173 110 3 1 - 19.52146 44.28571 695.60747 19.52146 110 0 1 - 20.15118 45.71429 718.04643 20.15118 110 0 1 - 20.78091 47.14286 740.48538 20.78091 110 0 1 + 19.52146 44.28571 695.60747 19.52146 110 3 1 + 20.15118 45.71429 718.04643 20.15118 110 3 1 + 20.78091 47.14286 740.48538 20.78091 110 3 1 21.41063 48.57143 762.92433 21.41063 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 22.04035 50.00000 785.36328 22.04035 110 3 1 - 22.67008 51.42857 807.80223 22.67008 110 0 1 - 23.29980 52.85714 830.24118 23.29980 110 0 1 + 22.67008 51.42857 807.80223 22.67008 110 3 1 + 23.29980 52.85714 830.24118 23.29980 110 3 1 23.92953 54.28571 852.68013 23.92953 110 3 1 24.55925 55.71429 875.11908 24.55925 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.18898 57.14286 897.55803 25.18898 110 3 1 25.81870 58.57143 919.99698 25.81870 110 3 1 - 26.44843 60.00000 942.43593 26.44843 110 0 1 + 26.44843 60.00000 942.43593 26.44843 110 3 1 27.07815 61.42857 964.87488 27.07815 110 3 1 27.70787 62.85714 987.31383 27.70787 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 28.33760 64.28571 1009.75279 28.33760 110 3 1 - 28.96732 65.71429 1032.19174 28.96732 110 0 1 - 29.59705 67.14286 1054.63069 29.59705 110 0 1 - 30.22677 68.57143 1077.06964 30.22677 110 0 1 - 30.85650 70.00000 1099.50859 30.85650 110 0 1 + 28.96732 65.71429 1032.19174 28.96732 110 3 1 + 29.59705 67.14286 1054.63069 29.59705 110 3 1 + 30.22677 68.57143 1077.06964 30.22677 110 3 1 + 30.85650 70.00000 1099.50859 30.85650 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 31.48622 71.42857 1121.94754 31.48622 110 3 1 - 32.11595 72.85714 1144.38649 32.11595 110 0 1 + 32.11595 72.85714 1144.38649 32.11595 110 3 1 32.74567 74.28571 1166.82544 32.74567 110 3 1 - 33.37539 75.71429 1189.26439 33.37539 110 0 1 - 34.00512 77.14286 1211.70334 34.00512 110 0 1 + 33.37539 75.71429 1189.26439 33.37539 110 3 1 + 34.00512 77.14286 1211.70334 34.00512 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 34.63484 78.57143 1234.14229 34.63484 110 3 1 35.26457 80.00000 1256.58124 35.26457 110 3 1 35.89429 81.42857 1279.02019 35.89429 110 3 1 36.52402 82.85714 1301.45915 36.52402 110 3 1 - 37.15374 84.28571 1323.89810 37.15374 110 0 1 + 37.15374 84.28571 1323.89810 37.15374 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 37.78347 85.71429 1346.33705 37.78347 110 3 1 - 38.41319 87.14286 1368.77600 38.41319 110 0 1 + 38.41319 87.14286 1368.77600 38.41319 110 3 1 39.04291 88.57143 1391.21495 39.04291 110 3 1 39.67264 90.00000 1413.65390 39.67264 110 3 1 40.30236 91.42857 1436.09285 40.30236 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 40.93209 92.85714 1458.53180 40.93209 110 3 1 - 41.56181 94.28571 1480.97075 41.56181 110 0 1 - 42.19154 95.71429 1503.40970 42.19154 110 0 1 + 41.56181 94.28571 1480.97075 41.56181 110 3 1 + 42.19154 95.71429 1503.40970 42.19154 110 3 1 42.82126 97.14286 1525.84865 42.82126 110 3 1 43.45099 98.57143 1548.28760 43.45099 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.08071 100.00000 1570.72655 44.08071 110 3 1 44.71043 101.42857 1593.16551 44.71043 110 3 1 - 45.34016 102.85714 1615.60446 45.34016 110 0 1 - 45.96988 104.28571 1638.04341 45.96988 110 0 1 + 45.34016 102.85714 1615.60446 45.34016 110 3 1 + 45.96988 104.28571 1638.04341 45.96988 110 3 1 46.59961 105.71429 1660.48236 46.59961 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 47.22933 107.14286 1682.92131 47.22933 110 3 1 - 47.85906 108.57143 1705.36026 47.85906 110 0 1 - 48.48878 110.00000 1727.79921 48.48878 110 0 1 + 47.85906 108.57143 1705.36026 47.85906 110 3 1 + 48.48878 110.00000 1727.79921 48.48878 110 3 1 49.11851 111.42857 1750.23816 49.11851 110 3 1 49.74823 112.85714 1772.67711 49.74823 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 50.37795 114.28571 1795.11606 50.37795 110 3 1 51.00768 115.71429 1817.55501 51.00768 110 3 1 51.63740 117.14286 1839.99396 51.63740 110 3 1 - 52.26713 118.57143 1862.43291 52.26713 110 0 1 - 52.89685 120.00000 1884.87187 52.89685 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 - 53.52658 121.42857 1907.31082 53.52658 110 0 1 + 52.26713 118.57143 1862.43291 52.26713 110 3 1 + 52.89685 120.00000 1884.87187 52.89685 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 + 53.52658 121.42857 1907.31082 53.52658 110 3 1 54.15630 122.85714 1929.74977 54.15630 110 3 1 - 54.78602 124.28571 1952.18872 54.78602 110 0 1 - 55.41575 125.71429 1974.62767 55.41575 110 0 1 + 54.78602 124.28571 1952.18872 54.78602 110 3 1 + 55.41575 125.71429 1974.62767 55.41575 110 3 1 56.04547 127.14286 1997.06662 56.04547 110 3 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 - 56.67520 128.57143 2019.50557 56.67520 110 0 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 + 56.67520 128.57143 2019.50557 56.67520 110 3 1 57.30492 130.00000 2041.94452 57.30492 110 3 1 57.93465 131.42857 2064.38347 57.93465 110 3 1 - 58.56437 132.85714 2086.82242 58.56437 110 0 1 + 58.56437 132.85714 2086.82242 58.56437 110 3 1 59.19410 134.28571 2109.26137 59.19410 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 59.82382 135.71429 2131.70032 59.82382 110 3 1 @@ -1498,11 +1626,11 @@ Status character 62.34272 141.42857 2221.45613 62.34272 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 62.97244 142.85714 2243.89508 62.97244 110 3 1 - 63.60217 144.28571 2266.33403 63.60217 110 0 1 + 63.60217 144.28571 2266.33403 63.60217 110 3 1 64.23189 145.71429 2288.77298 64.23189 110 3 1 - 64.86162 147.14286 2311.21193 64.86162 110 0 1 + 64.86162 147.14286 2311.21193 64.86162 110 3 1 65.49134 148.57143 2333.65088 65.49134 110 3 1 - 66.12106 150.00000 2356.08983 66.12106 110 0 1 + 66.12106 150.00000 2356.08983 66.12106 110 3 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] diff --git a/tests/test_data/dsheetpiling/benchmarks/bm5-8.shi b/tests/test_data/dsheetpiling/benchmarks/bm5-8.shi index 2e4d527a..5df20b1f 100644 --- a/tests/test_data/dsheetpiling/benchmarks/bm5-8.shi +++ b/tests/test_data/dsheetpiling/benchmarks/bm5-8.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:48:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\Benchmarks\bm5-8.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:33:24 +FILENAME : C:\Deltares\D-Sheet Piling\Benchmarks\bm5-8.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -299,6 +299,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -322,7 +323,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -333,8 +334,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -345,7 +348,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -353,17 +356,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -371,8 +375,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -380,7 +384,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -391,15 +395,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -407,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -425,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -445,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -472,6 +479,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -493,13 +501,14 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -507,12 +516,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -520,13 +529,14 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -534,7 +544,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -547,13 +557,14 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 @@ -561,25 +572,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -587,16 +655,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -607,6 +675,35 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,16 +711,44 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,6 +759,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -641,8 +767,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -650,7 +776,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -661,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -668,8 +795,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -677,7 +804,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,8 +823,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shd index b7a0efbc..52a23d98 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:42 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects01.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:41:02 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects01.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1281,6 +1281,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1304,7 +1305,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1315,8 +1316,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1327,7 +1330,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1346,6 +1349,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1373,6 +1377,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1400,6 +1405,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1427,6 +1433,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1454,6 +1461,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1481,6 +1489,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1508,6 +1517,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1535,6 +1545,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1545,7 +1556,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1554,14 +1565,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1571,8 +1639,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1589,6 +1657,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1598,7 +1667,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1616,6 +1741,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1643,6 +1769,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1670,6 +1797,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1744,6 +1872,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1762,7 +1891,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -5239,12 +5368,12 @@ Displacements 488.14792 -587.20952 134.44034 477.84761 -587.20952 135.65686 467.54730 -587.20952 136.87337 - 467.54729 -587.21033 136.87337 - 463.25548 -587.21083 137.38025 - 458.96366 -587.21233 137.88714 - 454.67183 -587.21483 138.39402 - 450.37996 -587.21833 138.90090 - 446.08805 -587.22283 139.40778 + 467.54729 -587.21038 136.87337 + 463.25548 -587.21088 137.38025 + 458.96366 -587.21238 137.88714 + 454.67183 -587.21488 138.39402 + 450.37996 -587.21838 138.90090 + 446.08805 -587.22288 139.40778 446.08806 -587.22254 139.40778 331.01374 -587.71566 152.99210 215.71101 -588.92702 166.57634 @@ -5337,7 +5466,7 @@ Displacements -28269.92159 2225.56648 1863.25109 -28269.92159 2225.56648 1863.25109 -27573.15462 2192.65297 1902.05634 --26885.00574 2159.27346 1941.09270 +-26885.00574 2159.27345 1941.09270 -26205.59615 2125.42751 1980.35450 -25535.04719 2091.11475 2019.83602 -24873.48027 2056.33483 2059.53159 @@ -6809,18 +6938,18 @@ Displacements 638.38960 -475.42950 111.73184 578.71922 -475.42950 121.26135 519.04884 -475.42950 130.79079 - 519.04884 -587.20951 130.79079 - 508.74853 -587.20951 132.00731 - 498.44823 -587.20951 133.22383 - 488.14792 -587.20951 134.44034 - 477.84761 -587.20951 135.65686 - 467.54731 -587.20951 136.87337 - 467.54729 -587.21019 136.87337 - 463.25548 -587.21069 137.38025 - 458.96366 -587.21219 137.88714 - 454.67183 -587.21469 138.39402 - 450.37996 -587.21819 138.90090 - 446.08805 -587.22269 139.40778 + 519.04884 -587.20952 130.79079 + 508.74853 -587.20952 132.00731 + 498.44823 -587.20952 133.22383 + 488.14792 -587.20952 134.44034 + 477.84761 -587.20952 135.65686 + 467.54730 -587.20952 136.87337 + 467.54729 -587.21023 136.87337 + 463.25548 -587.21073 137.38025 + 458.96366 -587.21223 137.88714 + 454.67183 -587.21473 138.39402 + 450.37996 -587.21823 138.90090 + 446.08805 -587.22273 139.40778 446.08806 -587.22254 139.40778 331.01374 -587.71566 152.99210 215.71101 -588.92702 166.57634 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shi index 30931240..7918912f 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects01.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:41 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects01.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:41:01 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects01.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1280,6 +1280,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1303,7 +1304,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1314,8 +1315,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.200 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1326,7 +1329,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1345,6 +1348,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1372,6 +1376,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1399,6 +1404,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1426,6 +1432,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1453,6 +1460,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1480,6 +1488,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1507,6 +1516,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1534,6 +1544,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1544,7 +1555,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1553,14 +1564,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1570,8 +1638,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1588,6 +1656,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1597,7 +1666,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1615,6 +1740,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1642,6 +1768,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1669,6 +1796,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shd index d0136570..6046ed78 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects02.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:42:35 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects02.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1623,6 +1623,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1632,6 +1633,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1641,6 +1643,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1650,6 +1653,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1659,6 +1663,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1668,6 +1673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1677,6 +1683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1686,6 +1693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1695,6 +1703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1704,6 +1713,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1713,6 +1723,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1722,6 +1733,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1731,6 +1743,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1740,6 +1753,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1749,6 +1763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1758,6 +1773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1767,6 +1783,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1790,7 +1807,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1801,8 +1818,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1813,7 +1832,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1832,6 +1851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1859,6 +1879,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1886,6 +1907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1913,6 +1935,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1940,6 +1963,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1967,6 +1991,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1994,6 +2019,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2021,6 +2047,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2031,7 +2058,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2046,8 +2129,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2057,8 +2141,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2075,6 +2159,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2084,7 +2169,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2102,6 +2243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2129,6 +2271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2156,6 +2299,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2235,7 +2379,33 @@ Use method A [END OF DESIGN LENGTH INFO] [DESIGN LENGTH CALCULATION] [TABLE] -DataCount=0 +DataCount=16 +[COLUMN INDICATION] +Design length +Design displacement +Design max moment +Design min moment +Design anchor force +Design mobilisation percentage +[END OF COLUMN INDICATION] +[DATA] + 35.000 17.187 1002.916 -1077.300 -745.094 82.674 + 34.000 17.173 1008.569 -1076.095 -745.215 82.184 + 33.000 17.187 1016.813 -1076.246 -745.387 81.624 + 32.000 17.199 999.695 -1081.481 -744.899 81.826 + 31.000 17.186 1006.851 -1083.312 -744.966 81.096 + 30.000 17.202 1007.746 -1085.385 -744.938 80.360 + 29.000 17.527 793.862 -1047.586 -740.975 85.107 + 28.000 17.807 751.068 -1017.748 -740.255 84.729 + 27.000 17.654 758.842 -1049.594 -740.228 84.188 + 26.000 18.259 702.968 -1049.377 -739.593 85.250 + 25.000 18.593 631.669 -1052.268 -738.364 85.544 + 24.000 19.089 539.732 -1068.929 -737.749 86.622 + 23.000 19.804 454.689 -996.698 -736.941 88.495 + 22.000 20.624 419.747 -1013.297 -737.823 89.388 + 21.000 23.212 292.022 -1345.417 -742.801 91.542 + 20.000 26.028 75.169 -1691.878 -750.293 86.895 +[END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] [END OF DESIGN SHEETPILE LENGTH] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shi index 3eec2267..4ce670e5 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects02.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects02.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:41:03 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects02.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1622,6 +1622,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1631,6 +1632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1640,6 +1642,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1649,6 +1652,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1658,6 +1662,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1667,6 +1672,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1676,6 +1682,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1685,6 +1692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1694,6 +1702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1703,6 +1712,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1712,6 +1722,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1721,6 +1732,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1730,6 +1742,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1739,6 +1752,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1748,6 +1762,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1757,6 +1772,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1766,6 +1782,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1789,7 +1806,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1800,8 +1817,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1812,7 +1831,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1831,6 +1850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1858,6 +1878,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1885,6 +1906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1912,6 +1934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1939,6 +1962,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1966,6 +1990,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1993,6 +2018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2020,6 +2046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2030,7 +2057,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2045,8 +2128,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2056,8 +2140,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2074,6 +2158,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2083,7 +2168,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2101,6 +2242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2128,6 +2270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2155,6 +2298,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shd index e6ebe66b..2a0d452c 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:49 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects03.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:42:38 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects03.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -733,6 +733,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -742,6 +743,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -751,6 +753,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -760,6 +763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -769,6 +773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -778,6 +783,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -801,7 +807,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -812,8 +818,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -824,7 +832,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -843,6 +851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -870,6 +879,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -897,6 +907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -924,6 +935,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -951,6 +963,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -978,6 +991,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1005,6 +1019,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1032,6 +1047,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1042,7 +1058,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1051,14 +1067,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1068,8 +1141,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1086,6 +1159,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1095,7 +1169,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1113,6 +1243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1140,6 +1271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1167,6 +1299,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1239,6 +1372,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1257,7 +1391,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1801,35 +1935,35 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 + 0.00000 0.00000 0.00001 0.00000 110 9 1 0.19000 0.00000 2.18012 0.19000 110 9 1 0.38000 0.00000 4.36024 0.38000 110 9 1 - 0.57000 0.00000 6.54036 0.57000 110 0 1 + 0.57000 0.00000 6.54036 0.57000 110 9 1 0.76000 0.00000 8.72048 0.76000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 - 1.33000 0.00000 15.26084 1.33000 110 0 1 + 1.33000 0.00000 15.26084 1.33000 110 9 1 1.71000 0.00000 19.62109 1.71000 110 9 1 2.09000 0.00000 23.98133 2.09000 110 9 1 - 2.47000 0.00000 28.34157 2.47000 110 0 1 + 2.47000 0.00000 28.34157 2.47000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 3.23000 0.00000 37.06205 3.23000 110 9 1 - 3.61000 0.00000 41.42229 3.61000 110 0 1 + 3.61000 0.00000 41.42229 3.61000 110 9 1 3.99000 0.00000 45.78253 3.99000 110 9 1 4.37000 0.00000 50.14278 4.37000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.76900 0.00000 54.72103 4.76900 110 9 1 - 4.78800 0.00000 54.93904 4.78800 110 0 1 + 4.78800 0.00000 54.93904 4.78800 110 9 1 4.80700 0.00000 55.15705 4.80700 110 9 1 4.82600 0.00000 55.37506 4.82600 110 9 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 5.11450 0.49000 58.68541 5.11450 110 0 1 - 5.38400 0.98000 61.77774 5.38400 110 0 1 - 5.65350 1.47000 64.87006 5.65350 110 0 1 - 5.92300 1.96000 67.96239 5.92300 110 0 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 5.11450 0.49000 58.68541 5.11450 110 9 1 + 5.38400 0.98000 61.77774 5.38400 110 9 1 + 5.65350 1.47000 64.87006 5.65350 110 9 1 + 5.92300 1.96000 67.96239 5.92300 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.46200 2.94000 74.14705 6.46200 110 9 1 @@ -1840,7 +1974,7 @@ Status character 7.54000 4.90000 86.51637 7.54000 110 9 1 7.60600 5.02000 87.27367 7.60600 110 9 1 7.67200 5.14000 88.03098 7.67200 110 9 1 - 7.73800 5.26000 88.78828 7.73800 110 0 1 + 7.73800 5.26000 88.78828 7.73800 110 9 1 7.80400 5.38000 89.54559 7.80400 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 @@ -1848,10 +1982,10 @@ Status character 8.31000 6.30000 95.35159 8.31000 110 9 1 8.53000 6.70000 97.87594 8.53000 110 9 1 8.75000 7.10000 100.40029 8.75000 110 9 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 9.19000 7.90000 105.44899 9.19000 110 9 1 - 9.41000 8.30000 107.97334 9.41000 110 0 1 + 9.41000 8.30000 107.97334 9.41000 110 9 1 9.63000 8.70000 110.49769 9.63000 110 9 1 9.85000 9.10000 113.02205 9.85000 110 9 1 10.07000 9.50000 115.54640 10.07000 110 9 1 @@ -1885,17 +2019,17 @@ Status character 16.78923 22.06000 52.61449 16.78923 110 32 1 16.89596 22.78000 52.91673 16.89596 110 32 1 17.00269 23.50000 53.21897 17.00269 110 32 1 - 11.47000 23.50000 131.61044 11.47000 110 0 1 - 11.69000 23.90000 134.13479 11.69000 110 0 1 + 11.47000 23.50000 131.61044 11.47000 110 9 1 + 11.69000 23.90000 134.13479 11.69000 110 9 1 11.91000 24.30000 136.65914 11.91000 110 9 1 12.13000 24.70000 139.18349 12.13000 110 9 1 - 12.35000 25.10000 141.70784 12.35000 110 0 1 + 12.35000 25.10000 141.70784 12.35000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 - 12.79000 25.90000 146.75654 12.79000 110 0 1 + 12.79000 25.90000 146.75654 12.79000 110 9 1 13.01000 26.30000 149.28089 13.01000 110 9 1 - 13.23000 26.70000 151.80524 13.23000 110 0 1 - 13.45000 27.10000 154.32959 13.45000 110 0 1 + 13.23000 26.70000 151.80524 13.23000 110 9 1 + 13.45000 27.10000 154.32959 13.45000 110 9 1 13.67000 27.50000 156.85394 13.67000 110 9 1 20.26389 27.50000 62.45404 20.26389 110 32 1 20.36271 28.16667 62.73389 20.36271 110 32 1 @@ -1937,9 +2071,9 @@ Status character 19.72203 48.26000 123.45066 19.72203 110 16 1 20.09736 49.02000 125.45454 20.09736 110 16 1 20.47269 49.78000 127.45842 20.47269 110 16 1 - 20.84802 50.54000 129.46231 20.84802 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 + 20.84802 50.54000 129.46231 20.84802 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 21.59867 52.06000 133.47007 21.59867 110 16 1 21.97400 52.82000 135.47396 21.97400 110 16 1 22.34933 53.58000 137.47784 22.34933 110 16 1 @@ -1947,8 +2081,8 @@ Status character 23.09999 55.10000 141.48561 23.09999 110 16 1 23.09999 55.10000 141.48561 23.09999 110 16 1 23.47531 55.86000 143.48949 23.47531 110 16 1 - 23.85064 56.62000 145.49337 23.85064 110 0 1 - 24.22597 57.38000 147.49725 24.22597 110 0 1 + 23.85064 56.62000 145.49337 23.85064 110 16 1 + 24.22597 57.38000 147.49725 24.22597 110 16 1 24.60130 58.14000 149.50114 24.60130 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 @@ -1958,19 +2092,19 @@ Status character 26.47794 61.94000 159.52055 26.47794 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 - 27.22860 63.46000 163.52832 27.22860 110 0 1 + 27.22860 63.46000 163.52832 27.22860 110 17 1 27.60393 64.22000 165.53220 27.60393 110 17 1 27.97926 64.98000 167.53609 27.97926 110 17 1 28.35458 65.74000 169.53997 28.35458 110 17 1 28.72991 66.50000 171.54385 28.72991 110 17 1 23.27000 66.50000 267.00741 23.27000 110 9 1 23.56700 67.04000 270.41528 23.56700 110 9 1 - 23.86400 67.58000 273.82316 23.86400 110 0 1 - 24.16100 68.12000 277.23103 24.16100 110 0 1 - 24.45800 68.66000 280.63890 24.45800 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 25.05200 69.74000 287.45465 25.05200 110 0 1 + 23.86400 67.58000 273.82316 23.86400 110 9 1 + 24.16100 68.12000 277.23103 24.16100 110 9 1 + 24.45800 68.66000 280.63890 24.45800 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 25.05200 69.74000 287.45465 25.05200 110 9 1 25.34900 70.28000 290.86252 25.34900 110 9 1 25.64600 70.82000 294.27039 25.64600 110 9 1 25.94300 71.36000 297.67827 25.94300 110 9 1 @@ -2123,35 +2257,35 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 + 0.00000 0.00000 0.00001 0.00000 110 9 1 0.19000 0.00000 2.18012 0.19000 110 9 1 0.38000 0.00000 4.36024 0.38000 110 9 1 - 0.57000 0.00000 6.54036 0.57000 110 0 1 + 0.57000 0.00000 6.54036 0.57000 110 9 1 0.76000 0.00000 8.72048 0.76000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 - 1.33000 0.00000 15.26084 1.33000 110 0 1 + 1.33000 0.00000 15.26084 1.33000 110 9 1 1.71000 0.00000 19.62109 1.71000 110 9 1 2.09000 0.00000 23.98133 2.09000 110 9 1 - 2.47000 0.00000 28.34157 2.47000 110 0 1 + 2.47000 0.00000 28.34157 2.47000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 3.23000 0.00000 37.06205 3.23000 110 9 1 - 3.61000 0.00000 41.42229 3.61000 110 0 1 + 3.61000 0.00000 41.42229 3.61000 110 9 1 3.99000 0.00000 45.78253 3.99000 110 9 1 4.37000 0.00000 50.14278 4.37000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.76900 0.00000 54.72103 4.76900 110 9 1 - 4.78800 0.00000 54.93904 4.78800 110 0 1 + 4.78800 0.00000 54.93904 4.78800 110 9 1 4.80700 0.00000 55.15705 4.80700 110 9 1 4.82600 0.00000 55.37506 4.82600 110 9 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 5.11450 0.49000 58.68541 5.11450 110 0 1 - 5.38400 0.98000 61.77774 5.38400 110 0 1 - 5.65350 1.47000 64.87006 5.65350 110 0 1 - 5.92300 1.96000 67.96239 5.92300 110 0 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 5.11450 0.49000 58.68541 5.11450 110 9 1 + 5.38400 0.98000 61.77774 5.38400 110 9 1 + 5.65350 1.47000 64.87006 5.65350 110 9 1 + 5.92300 1.96000 67.96239 5.92300 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.46200 2.94000 74.14705 6.46200 110 9 1 @@ -2162,7 +2296,7 @@ Status character 7.54000 4.90000 86.51637 7.54000 110 9 1 7.60600 5.02000 87.27367 7.60600 110 9 1 7.67200 5.14000 88.03098 7.67200 110 9 1 - 7.73800 5.26000 88.78828 7.73800 110 0 1 + 7.73800 5.26000 88.78828 7.73800 110 9 1 7.80400 5.38000 89.54559 7.80400 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 @@ -2170,10 +2304,10 @@ Status character 8.31000 6.30000 95.35159 8.31000 110 9 1 8.53000 6.70000 97.87594 8.53000 110 9 1 8.75000 7.10000 100.40029 8.75000 110 9 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 9.19000 7.90000 105.44899 9.19000 110 9 1 - 9.41000 8.30000 107.97334 9.41000 110 0 1 + 9.41000 8.30000 107.97334 9.41000 110 9 1 9.63000 8.70000 110.49769 9.63000 110 9 1 9.85000 9.10000 113.02205 9.85000 110 9 1 10.07000 9.50000 115.54640 10.07000 110 9 1 @@ -2207,17 +2341,17 @@ Status character 16.78923 22.06000 52.61449 16.78923 110 32 1 16.89596 22.78000 52.91673 16.89596 110 32 1 17.00269 23.50000 53.21897 17.00269 110 32 1 - 11.47000 23.50000 131.61044 11.47000 110 0 1 - 11.69000 23.90000 134.13479 11.69000 110 0 1 + 11.47000 23.50000 131.61044 11.47000 110 9 1 + 11.69000 23.90000 134.13479 11.69000 110 9 1 11.91000 24.30000 136.65914 11.91000 110 9 1 12.13000 24.70000 139.18349 12.13000 110 9 1 - 12.35000 25.10000 141.70784 12.35000 110 0 1 + 12.35000 25.10000 141.70784 12.35000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 - 12.79000 25.90000 146.75654 12.79000 110 0 1 + 12.79000 25.90000 146.75654 12.79000 110 9 1 13.01000 26.30000 149.28089 13.01000 110 9 1 - 13.23000 26.70000 151.80524 13.23000 110 0 1 - 13.45000 27.10000 154.32959 13.45000 110 0 1 + 13.23000 26.70000 151.80524 13.23000 110 9 1 + 13.45000 27.10000 154.32959 13.45000 110 9 1 13.67000 27.50000 156.85394 13.67000 110 9 1 20.26389 27.50000 62.45404 20.26389 110 32 1 20.36271 28.16667 62.73389 20.36271 110 32 1 @@ -2259,9 +2393,9 @@ Status character 19.72203 48.26000 123.45066 19.72203 110 16 1 20.09736 49.02000 125.45454 20.09736 110 16 1 20.47269 49.78000 127.45842 20.47269 110 16 1 - 20.84802 50.54000 129.46231 20.84802 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 + 20.84802 50.54000 129.46231 20.84802 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 21.59867 52.06000 133.47007 21.59867 110 16 1 21.97400 52.82000 135.47396 21.97400 110 16 1 22.34933 53.58000 137.47784 22.34933 110 16 1 @@ -2269,8 +2403,8 @@ Status character 23.09999 55.10000 141.48561 23.09999 110 16 1 23.09999 55.10000 141.48561 23.09999 110 16 1 23.47531 55.86000 143.48949 23.47531 110 16 1 - 23.85064 56.62000 145.49337 23.85064 110 0 1 - 24.22597 57.38000 147.49725 24.22597 110 0 1 + 23.85064 56.62000 145.49337 23.85064 110 16 1 + 24.22597 57.38000 147.49725 24.22597 110 16 1 24.60130 58.14000 149.50114 24.60130 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 @@ -2280,19 +2414,19 @@ Status character 26.47794 61.94000 159.52055 26.47794 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 - 27.22860 63.46000 163.52832 27.22860 110 0 1 + 27.22860 63.46000 163.52832 27.22860 110 17 1 27.60393 64.22000 165.53220 27.60393 110 17 1 27.97926 64.98000 167.53609 27.97926 110 17 1 28.35458 65.74000 169.53997 28.35458 110 17 1 28.72991 66.50000 171.54385 28.72991 110 17 1 23.27000 66.50000 267.00741 23.27000 110 9 1 23.56700 67.04000 270.41528 23.56700 110 9 1 - 23.86400 67.58000 273.82316 23.86400 110 0 1 - 24.16100 68.12000 277.23103 24.16100 110 0 1 - 24.45800 68.66000 280.63890 24.45800 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 25.05200 69.74000 287.45465 25.05200 110 0 1 + 23.86400 67.58000 273.82316 23.86400 110 9 1 + 24.16100 68.12000 277.23103 24.16100 110 9 1 + 24.45800 68.66000 280.63890 24.45800 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 25.05200 69.74000 287.45465 25.05200 110 9 1 25.34900 70.28000 290.86252 25.34900 110 9 1 25.64600 70.82000 294.27039 25.64600 110 9 1 25.94300 71.36000 297.67827 25.94300 110 9 1 @@ -8237,35 +8371,35 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 + 0.00000 0.00000 0.00001 0.00000 110 9 1 0.19000 0.00000 2.18012 0.19000 110 9 1 0.38000 0.00000 4.36024 0.38000 110 9 1 - 0.57000 0.00000 6.54036 0.57000 110 0 1 + 0.57000 0.00000 6.54036 0.57000 110 9 1 0.76000 0.00000 8.72048 0.76000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 - 1.33000 0.00000 15.26084 1.33000 110 0 1 + 1.33000 0.00000 15.26084 1.33000 110 9 1 1.71000 0.00000 19.62109 1.71000 110 9 1 2.09000 0.00000 23.98133 2.09000 110 9 1 - 2.47000 0.00000 28.34157 2.47000 110 0 1 + 2.47000 0.00000 28.34157 2.47000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 3.23000 0.00000 37.06205 3.23000 110 9 1 - 3.61000 0.00000 41.42229 3.61000 110 0 1 + 3.61000 0.00000 41.42229 3.61000 110 9 1 3.99000 0.00000 45.78253 3.99000 110 9 1 4.37000 0.00000 50.14278 4.37000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.76900 0.00000 54.72103 4.76900 110 9 1 - 4.78800 0.00000 54.93904 4.78800 110 0 1 + 4.78800 0.00000 54.93904 4.78800 110 9 1 4.80700 0.00000 55.15705 4.80700 110 9 1 4.82600 0.00000 55.37506 4.82600 110 9 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 5.11450 0.49000 58.68541 5.11450 110 0 1 - 5.38400 0.98000 61.77774 5.38400 110 0 1 - 5.65350 1.47000 64.87006 5.65350 110 0 1 - 5.92300 1.96000 67.96239 5.92300 110 0 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 5.11450 0.49000 58.68541 5.11450 110 9 1 + 5.38400 0.98000 61.77774 5.38400 110 9 1 + 5.65350 1.47000 64.87006 5.65350 110 9 1 + 5.92300 1.96000 67.96239 5.92300 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.46200 2.94000 74.14705 6.46200 110 9 1 @@ -8276,7 +8410,7 @@ Status character 7.54000 4.90000 86.51637 7.54000 110 9 1 7.60600 5.02000 87.27367 7.60600 110 9 1 7.67200 5.14000 88.03098 7.67200 110 9 1 - 7.73800 5.26000 88.78828 7.73800 110 0 1 + 7.73800 5.26000 88.78828 7.73800 110 9 1 7.80400 5.38000 89.54559 7.80400 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 @@ -8284,10 +8418,10 @@ Status character 8.31000 6.30000 95.35159 8.31000 110 9 1 8.53000 6.70000 97.87594 8.53000 110 9 1 8.75000 7.10000 100.40029 8.75000 110 9 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 9.19000 7.90000 105.44899 9.19000 110 9 1 - 9.41000 8.30000 107.97334 9.41000 110 0 1 + 9.41000 8.30000 107.97334 9.41000 110 9 1 9.63000 8.70000 110.49769 9.63000 110 9 1 9.85000 9.10000 113.02205 9.85000 110 9 1 10.07000 9.50000 115.54640 10.07000 110 9 1 @@ -8321,17 +8455,17 @@ Status character 16.78923 22.06000 52.61449 16.78923 110 32 1 16.89596 22.78000 52.91673 16.89596 110 32 1 17.00269 23.50000 53.21897 17.00269 110 32 1 - 11.47000 23.50000 131.61044 11.47000 110 0 1 - 11.69000 23.90000 134.13479 11.69000 110 0 1 + 11.47000 23.50000 131.61044 11.47000 110 9 1 + 11.69000 23.90000 134.13479 11.69000 110 9 1 11.91000 24.30000 136.65914 11.91000 110 9 1 12.13000 24.70000 139.18349 12.13000 110 9 1 - 12.35000 25.10000 141.70784 12.35000 110 0 1 + 12.35000 25.10000 141.70784 12.35000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 - 12.79000 25.90000 146.75654 12.79000 110 0 1 + 12.79000 25.90000 146.75654 12.79000 110 9 1 13.01000 26.30000 149.28089 13.01000 110 9 1 - 13.23000 26.70000 151.80524 13.23000 110 0 1 - 13.45000 27.10000 154.32959 13.45000 110 0 1 + 13.23000 26.70000 151.80524 13.23000 110 9 1 + 13.45000 27.10000 154.32959 13.45000 110 9 1 13.67000 27.50000 156.85394 13.67000 110 9 1 20.26389 27.50000 62.45404 20.26389 110 32 1 20.36271 28.16667 62.73389 20.36271 110 32 1 @@ -8373,9 +8507,9 @@ Status character 19.72203 48.26000 123.45066 19.72203 110 16 1 20.09736 49.02000 125.45454 20.09736 110 16 1 20.47269 49.78000 127.45842 20.47269 110 16 1 - 20.84802 50.54000 129.46231 20.84802 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 + 20.84802 50.54000 129.46231 20.84802 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 21.59867 52.06000 133.47007 21.59867 110 16 1 21.97400 52.82000 135.47396 21.97400 110 16 1 22.34933 53.58000 137.47784 22.34933 110 16 1 @@ -8383,8 +8517,8 @@ Status character 23.09999 55.10000 141.48561 23.09999 110 16 1 23.09999 55.10000 141.48561 23.09999 110 16 1 23.47531 55.86000 143.48949 23.47531 110 16 1 - 23.85064 56.62000 145.49337 23.85064 110 0 1 - 24.22597 57.38000 147.49725 24.22597 110 0 1 + 23.85064 56.62000 145.49337 23.85064 110 16 1 + 24.22597 57.38000 147.49725 24.22597 110 16 1 24.60130 58.14000 149.50114 24.60130 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 @@ -8394,19 +8528,19 @@ Status character 26.47794 61.94000 159.52055 26.47794 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 - 27.22860 63.46000 163.52832 27.22860 110 0 1 + 27.22860 63.46000 163.52832 27.22860 110 17 1 27.60393 64.22000 165.53220 27.60393 110 17 1 27.97926 64.98000 167.53609 27.97926 110 17 1 28.35458 65.74000 169.53997 28.35458 110 17 1 28.72991 66.50000 171.54385 28.72991 110 17 1 23.27000 66.50000 267.00741 23.27000 110 9 1 23.56700 67.04000 270.41528 23.56700 110 9 1 - 23.86400 67.58000 273.82316 23.86400 110 0 1 - 24.16100 68.12000 277.23103 24.16100 110 0 1 - 24.45800 68.66000 280.63890 24.45800 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 25.05200 69.74000 287.45465 25.05200 110 0 1 + 23.86400 67.58000 273.82316 23.86400 110 9 1 + 24.16100 68.12000 277.23103 24.16100 110 9 1 + 24.45800 68.66000 280.63890 24.45800 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 25.05200 69.74000 287.45465 25.05200 110 9 1 25.34900 70.28000 290.86252 25.34900 110 9 1 25.64600 70.82000 294.27039 25.64600 110 9 1 25.94300 71.36000 297.67827 25.94300 110 9 1 @@ -8559,35 +8693,35 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 + 0.00000 0.00000 0.00001 0.00000 110 9 1 0.19000 0.00000 2.18012 0.19000 110 9 1 0.38000 0.00000 4.36024 0.38000 110 9 1 - 0.57000 0.00000 6.54036 0.57000 110 0 1 + 0.57000 0.00000 6.54036 0.57000 110 9 1 0.76000 0.00000 8.72048 0.76000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 0.95000 0.00000 10.90060 0.95000 110 9 1 - 1.33000 0.00000 15.26084 1.33000 110 0 1 + 1.33000 0.00000 15.26084 1.33000 110 9 1 1.71000 0.00000 19.62109 1.71000 110 9 1 2.09000 0.00000 23.98133 2.09000 110 9 1 - 2.47000 0.00000 28.34157 2.47000 110 0 1 + 2.47000 0.00000 28.34157 2.47000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 2.85000 0.00000 32.70181 2.85000 110 9 1 3.23000 0.00000 37.06205 3.23000 110 9 1 - 3.61000 0.00000 41.42229 3.61000 110 0 1 + 3.61000 0.00000 41.42229 3.61000 110 9 1 3.99000 0.00000 45.78253 3.99000 110 9 1 4.37000 0.00000 50.14278 4.37000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.75000 0.00000 54.50302 4.75000 110 9 1 4.76900 0.00000 54.72103 4.76900 110 9 1 - 4.78800 0.00000 54.93904 4.78800 110 0 1 + 4.78800 0.00000 54.93904 4.78800 110 9 1 4.80700 0.00000 55.15705 4.80700 110 9 1 4.82600 0.00000 55.37506 4.82600 110 9 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 4.84500 0.00000 55.59308 4.84500 110 0 1 - 5.11450 0.49000 58.68541 5.11450 110 0 1 - 5.38400 0.98000 61.77774 5.38400 110 0 1 - 5.65350 1.47000 64.87006 5.65350 110 0 1 - 5.92300 1.96000 67.96239 5.92300 110 0 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 4.84500 0.00000 55.59308 4.84500 110 9 1 + 5.11450 0.49000 58.68541 5.11450 110 9 1 + 5.38400 0.98000 61.77774 5.38400 110 9 1 + 5.65350 1.47000 64.87006 5.65350 110 9 1 + 5.92300 1.96000 67.96239 5.92300 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.19250 2.45000 71.05472 6.19250 110 9 1 6.46200 2.94000 74.14705 6.46200 110 9 1 @@ -8598,7 +8732,7 @@ Status character 7.54000 4.90000 86.51637 7.54000 110 9 1 7.60600 5.02000 87.27367 7.60600 110 9 1 7.67200 5.14000 88.03098 7.67200 110 9 1 - 7.73800 5.26000 88.78828 7.73800 110 0 1 + 7.73800 5.26000 88.78828 7.73800 110 9 1 7.80400 5.38000 89.54559 7.80400 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 7.87000 5.50000 90.30289 7.87000 110 9 1 @@ -8606,10 +8740,10 @@ Status character 8.31000 6.30000 95.35159 8.31000 110 9 1 8.53000 6.70000 97.87594 8.53000 110 9 1 8.75000 7.10000 100.40029 8.75000 110 9 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 - 8.97000 7.50000 102.92464 8.97000 110 0 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 + 8.97000 7.50000 102.92464 8.97000 110 9 1 9.19000 7.90000 105.44899 9.19000 110 9 1 - 9.41000 8.30000 107.97334 9.41000 110 0 1 + 9.41000 8.30000 107.97334 9.41000 110 9 1 9.63000 8.70000 110.49769 9.63000 110 9 1 9.85000 9.10000 113.02205 9.85000 110 9 1 10.07000 9.50000 115.54640 10.07000 110 9 1 @@ -8643,17 +8777,17 @@ Status character 16.78923 22.06000 52.61449 16.78923 110 32 1 16.89596 22.78000 52.91673 16.89596 110 32 1 17.00269 23.50000 53.21897 17.00269 110 32 1 - 11.47000 23.50000 131.61044 11.47000 110 0 1 - 11.69000 23.90000 134.13479 11.69000 110 0 1 + 11.47000 23.50000 131.61044 11.47000 110 9 1 + 11.69000 23.90000 134.13479 11.69000 110 9 1 11.91000 24.30000 136.65914 11.91000 110 9 1 12.13000 24.70000 139.18349 12.13000 110 9 1 - 12.35000 25.10000 141.70784 12.35000 110 0 1 + 12.35000 25.10000 141.70784 12.35000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 12.57000 25.50000 144.23219 12.57000 110 9 1 - 12.79000 25.90000 146.75654 12.79000 110 0 1 + 12.79000 25.90000 146.75654 12.79000 110 9 1 13.01000 26.30000 149.28089 13.01000 110 9 1 - 13.23000 26.70000 151.80524 13.23000 110 0 1 - 13.45000 27.10000 154.32959 13.45000 110 0 1 + 13.23000 26.70000 151.80524 13.23000 110 9 1 + 13.45000 27.10000 154.32959 13.45000 110 9 1 13.67000 27.50000 156.85394 13.67000 110 9 1 20.26389 27.50000 62.45404 20.26389 110 32 1 20.36271 28.16667 62.73389 20.36271 110 32 1 @@ -8695,9 +8829,9 @@ Status character 19.72203 48.26000 123.45066 19.72203 110 16 1 20.09736 49.02000 125.45454 20.09736 110 16 1 20.47269 49.78000 127.45842 20.47269 110 16 1 - 20.84802 50.54000 129.46231 20.84802 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 - 21.22334 51.30000 131.46619 21.22334 110 0 1 + 20.84802 50.54000 129.46231 20.84802 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 + 21.22334 51.30000 131.46619 21.22334 110 16 1 21.59867 52.06000 133.47007 21.59867 110 16 1 21.97400 52.82000 135.47396 21.97400 110 16 1 22.34933 53.58000 137.47784 22.34933 110 16 1 @@ -8705,8 +8839,8 @@ Status character 23.09999 55.10000 141.48561 23.09999 110 16 1 23.09999 55.10000 141.48561 23.09999 110 16 1 23.47531 55.86000 143.48949 23.47531 110 16 1 - 23.85064 56.62000 145.49337 23.85064 110 0 1 - 24.22597 57.38000 147.49725 24.22597 110 0 1 + 23.85064 56.62000 145.49337 23.85064 110 16 1 + 24.22597 57.38000 147.49725 24.22597 110 16 1 24.60130 58.14000 149.50114 24.60130 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 24.97663 58.90000 151.50502 24.97663 110 16 1 @@ -8716,19 +8850,19 @@ Status character 26.47794 61.94000 159.52055 26.47794 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 26.85327 62.70000 161.52444 26.85327 110 17 1 - 27.22860 63.46000 163.52832 27.22860 110 0 1 + 27.22860 63.46000 163.52832 27.22860 110 17 1 27.60393 64.22000 165.53220 27.60393 110 17 1 27.97926 64.98000 167.53609 27.97926 110 17 1 28.35458 65.74000 169.53997 28.35458 110 17 1 28.72991 66.50000 171.54385 28.72991 110 17 1 23.27000 66.50000 267.00741 23.27000 110 9 1 23.56700 67.04000 270.41528 23.56700 110 9 1 - 23.86400 67.58000 273.82316 23.86400 110 0 1 - 24.16100 68.12000 277.23103 24.16100 110 0 1 - 24.45800 68.66000 280.63890 24.45800 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 24.75500 69.20000 284.04677 24.75500 110 0 1 - 25.05200 69.74000 287.45465 25.05200 110 0 1 + 23.86400 67.58000 273.82316 23.86400 110 9 1 + 24.16100 68.12000 277.23103 24.16100 110 9 1 + 24.45800 68.66000 280.63890 24.45800 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 24.75500 69.20000 284.04677 24.75500 110 9 1 + 25.05200 69.74000 287.45465 25.05200 110 9 1 25.34900 70.28000 290.86252 25.34900 110 9 1 25.64600 70.82000 294.27039 25.64600 110 9 1 25.94300 71.36000 297.67827 25.94300 110 9 1 @@ -33282,8 +33416,8 @@ Displacements 80.78685 19.72201 12.11436 80.82624 19.66767 12.12251 80.86552 19.61329 12.13066 - 80.90469 19.55887 12.13880 - 80.94376 19.50440 12.14694 + 80.90469 19.55886 12.13880 + 80.94376 19.50439 12.14694 80.98271 19.44988 12.15507 80.98271 19.44988 12.15507 81.32897 19.02416 12.22808 @@ -41550,24 +41684,24 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59420.10257 - 0.00000 0.00000 -53478.05115 - 0.00000 0.00000 -47535.99973 - 0.00000 0.00000 -41593.94831 - 0.00000 0.00000 -35651.89689 - 0.00000 0.00000 -29709.84547 - -0.00010 0.00810 -29709.84547 - -0.00021 -0.12430 -29115.64033 - -0.00059 -0.25703 -28521.43519 - -0.00124 -0.39009 -27927.23004 - -0.00215 -0.52349 -27333.02490 - -0.00333 -0.65722 -26738.81976 + 0.00000 -0.00001 -59420.10257 + 0.00000 -0.00001 -53478.05115 + 0.00000 -0.00001 -47535.99973 + 0.00000 -0.00001 -41593.94831 + 0.00000 -0.00001 -35651.89689 + 0.00000 -0.00001 -29709.84547 + -0.00008 0.00485 -29709.84547 + -0.00020 -0.12755 -29115.64033 + -0.00059 -0.26027 -28521.43519 + -0.00124 -0.39334 -27927.23004 + -0.00216 -0.52674 -27333.02490 + -0.00335 -0.66047 -26738.81976 0.46460 -16.82987 -26738.81976 0.15073 -18.04855 -21390.97348 -0.18531 -19.29437 -16043.12721 -0.54403 -20.56732 -10695.28093 -0.92590 -21.86740 -5347.43465 - -1.32787 -22.60417 0.41163 + -1.32787 -22.60416 0.41163 -59.02626 -14.83207 0.41163 -59.65611 -15.13837 12478.72029 -60.29702 -15.38330 24957.03027 @@ -41576,62 +41710,62 @@ Displacements -62.28467 -16.18291 62391.96832 -56.34157 71.86308 62391.96832 -54.18873 71.65837 71305.05059 - -52.04212 71.44815 80218.13347 - -49.90190 71.23242 89131.21694 + -52.04212 71.44814 80218.13347 + -49.90190 71.23241 89131.21694 -47.76823 71.01117 98044.30098 -45.64129 70.78442 106957.38557 - -45.64129 70.78442 106957.38557 - -45.07526 70.72278 109334.20821 - -44.50973 70.66028 111711.03089 - -43.94470 70.59691 114087.85360 - -43.38018 70.53267 116464.67636 - -42.81618 70.46757 118841.49914 - -42.81645 70.47438 118841.49914 - -42.67552 70.45797 119435.70484 - -42.53462 70.44151 120029.91055 - -42.39375 70.42499 120624.11625 - -42.25292 70.40841 121218.32196 - -42.11212 70.39179 121812.52767 - -42.11224 70.39375 121812.52767 - -41.40872 70.30980 124783.55626 - -40.70605 70.22449 127754.58489 - -40.00424 70.13783 130725.61358 - -39.30330 70.04981 133696.64232 - -38.60325 69.96044 136667.67111 + -45.64129 70.78430 106957.38557 + -45.07526 70.72266 109334.20821 + -44.50973 70.66016 111711.03089 + -43.94470 70.59679 114087.85360 + -43.38018 70.53255 116464.67636 + -42.81618 70.46745 118841.49914 + -42.81644 70.47276 118841.49914 + -42.67551 70.45635 119435.70484 + -42.53462 70.43989 120029.91055 + -42.39375 70.42337 120624.11625 + -42.25292 70.40679 121218.32196 + -42.11213 70.39016 121812.52767 + -42.11224 70.39368 121812.52767 + -41.40872 70.30973 124783.55626 + -40.70605 70.22442 127754.58489 + -40.00424 70.13776 130725.61358 + -39.30330 70.04975 133696.64232 + -38.60325 69.96038 136667.67111 -38.60321 69.95997 136667.67111 -35.25575 69.51213 150928.60995 -31.93054 69.03309 165189.54981 -28.62907 68.52285 179450.49060 -25.35285 67.98139 193711.43223 -22.10336 67.40873 207972.37458 - -22.10339 67.40815 207972.37458 + -22.10339 67.40814 207972.37458 -19.41701 66.90709 219856.49371 -16.75111 66.38436 231740.61323 -14.10655 65.83996 243624.73308 -11.48420 65.27389 255508.85322 -8.88493 64.68615 267392.97359 - -8.88494 64.68613 267392.97359 - -8.10978 64.50558 270958.20974 - -7.33681 64.32308 274523.44591 - -6.56604 64.13863 278088.68208 - -5.79749 63.95223 281653.91827 - -5.03119 63.76388 285219.15447 + -8.88493 64.68608 267392.97359 + -8.10978 64.50553 270958.20974 + -7.33681 64.32303 274523.44591 + -6.56604 64.13858 278088.68208 + -5.79749 63.95218 281653.91827 + -5.03119 63.76383 285219.15447 -5.03118 63.76376 285219.15447 -2.49340 63.12184 297103.27519 - 0.01828 62.45824 308987.39596 + 0.01828 62.45825 308987.39596 2.50297 61.77298 320871.51673 4.95983 61.06604 332755.63746 - 7.38797 60.33743 344639.75808 - 7.38798 60.33720 344639.75808 - 9.78654 59.58692 356523.87855 - 12.15465 58.81497 368407.99883 + 7.38797 60.33744 344639.75808 + 7.38798 60.33719 344639.75808 + 9.78654 59.58691 356523.87855 + 12.15465 58.81496 368407.99883 14.49144 58.02134 380292.11886 - 16.79606 57.20605 392176.23859 + 16.79606 57.20604 392176.23859 19.06764 56.36908 404060.35799 19.06761 56.36831 404060.35799 22.07121 54.87059 420103.91856 24.99305 53.34040 436147.47832 - 27.83138 51.77774 452191.03717 + 27.83138 51.77773 452191.03717 30.58446 50.18260 468234.59499 33.25052 48.55499 484278.15169 33.25052 48.55500 484278.15169 @@ -41640,28 +41774,28 @@ Displacements 40.70909 43.47735 532408.81408 43.00956 41.71985 548452.36534 45.21425 39.92989 564495.91502 - 45.21425 39.92992 564495.91502 + 45.21425 39.92991 564495.91502 46.78457 38.58308 576380.02483 - 48.30066 37.21843 588264.13369 - 49.76180 35.83596 600148.24158 - 51.16729 34.43567 612032.34847 + 48.30066 37.21842 588264.13369 + 49.76180 35.83595 600148.24158 + 51.16729 34.43566 612032.34847 52.51642 33.01756 623916.45433 - 52.51636 32.95080 623916.45433 - 52.58219 32.87943 624510.65959 - 52.64788 32.80801 625104.86486 - 52.71342 32.73655 625699.07012 - 52.77882 32.66504 626293.27537 - 52.84408 32.59349 626887.48063 - 52.84570 32.45748 626887.48063 - 53.42482 31.89060 632235.32780 - 53.99378 31.32747 637583.17475 - 54.55264 30.76810 642931.02149 - 55.10146 30.21249 648278.86800 - 55.64031 29.66063 653626.71428 + 52.51637 32.94920 623916.45433 + 52.58219 32.87782 624510.65959 + 52.64788 32.80641 625104.86486 + 52.71342 32.73494 625699.07012 + 52.77882 32.66344 626293.27537 + 52.84407 32.59189 626887.48063 + 52.84570 32.45747 626887.48063 + 53.42483 31.89058 632235.32780 + 53.99378 31.32745 637583.17475 + 54.55264 30.76808 642931.02149 + 55.10146 30.21247 648278.86800 + 55.64031 29.66061 653626.71428 55.64030 29.66061 653626.71428 - 56.80231 28.44056 665510.81632 + 56.80231 28.44055 665510.81632 57.91560 27.22475 677394.91722 - 58.98035 26.01319 689279.01695 + 58.98035 26.01318 689279.01695 59.99672 24.80587 701163.11549 60.96488 23.60279 713047.21282 60.96487 23.60288 713047.21282 @@ -41670,18 +41804,18 @@ Displacements 65.36715 17.17962 777221.31671 66.52792 15.06604 798612.67627 67.53699 12.96621 820004.03148 - 67.53701 12.96603 820004.03148 + 67.53701 12.96602 820004.03148 68.03949 12.16995 831888.11580 68.51156 11.44577 843772.19875 - 68.95611 10.79350 855656.28032 + 68.95611 10.79349 855656.28032 69.37600 10.21312 867540.36051 69.77411 9.70465 879424.43929 69.77411 9.70465 879424.43929 70.15332 9.26808 891308.51667 70.51651 8.90341 903192.59263 - 70.86656 8.61065 915076.66717 + 70.86656 8.61064 915076.66717 71.20633 8.38978 926960.74028 - 71.53870 8.24082 938844.81196 + 71.53870 8.24081 938844.81196 71.53869 8.24090 938844.81196 72.03659 6.69794 958651.59488 72.43201 5.16677 978458.37377 @@ -41690,7 +41824,7 @@ Displacements 73.01132 0.64400 1037878.68605 73.01132 0.64412 1037878.68605 73.00473 -0.83989 1057685.44865 - 72.89960 -2.31211 1077492.20715 + 72.89960 -2.31212 1077492.20715 72.69671 -3.77255 1097298.96157 72.39685 -5.22119 1117105.71193 72.00082 -6.65804 1136912.45824 @@ -41733,7 +41867,7 @@ Displacements 23.40800 -24.12944 1758842.56968 21.60775 -23.24534 1781422.15436 19.87473 -22.36028 1804001.73747 - 18.20901 -21.47425 1826581.31912 + 18.20901 -21.47426 1826581.31912 16.61067 -20.58727 1849160.89945 15.07977 -19.69933 1871740.47856 15.07977 -19.69913 1871740.47856 @@ -41743,15 +41877,15 @@ Displacements 9.63218 -16.13776 1962058.78511 8.43963 -15.24501 1984638.35975 8.43963 -15.24489 1984638.35975 - 7.31497 -14.35119 2007217.93379 - 6.25828 -13.45652 2029797.50729 + 7.31497 -14.35118 2007217.93379 + 6.25827 -13.45652 2029797.50729 5.26961 -12.56090 2052377.08034 - 4.34904 -11.66432 2074956.65299 + 4.34904 -11.66431 2074956.65299 3.49666 -10.76677 2097536.22533 3.49665 -10.76665 2097536.22533 2.92780 -10.27981 2113579.60552 2.38879 -9.66194 2129622.98561 - 1.88667 -8.91302 2145666.36560 + 1.88667 -8.91303 2145666.36560 1.42854 -8.03307 2161709.74553 1.02146 -7.02207 2177753.12540 1.02149 -7.02060 2177753.12540 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shi index 13c347d7..bfcfb45e 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects03.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects03.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:42:35 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects03.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -732,6 +732,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -741,6 +742,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -750,6 +752,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -759,6 +762,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -768,6 +772,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -777,6 +782,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -800,7 +806,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -811,8 +817,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -823,7 +831,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -842,6 +850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -869,6 +878,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -896,6 +906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -923,6 +934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -950,6 +962,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -977,6 +990,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,6 +1018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1031,6 +1046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1041,7 +1057,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1050,14 +1066,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1067,8 +1140,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1085,6 +1158,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1094,7 +1168,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1112,6 +1242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1139,6 +1270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1166,6 +1298,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shd index a9b230a6..037734ac 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:56:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects04.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:46:36 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects04.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2654,6 +2654,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2663,6 +2664,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2672,6 +2674,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2681,6 +2684,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2690,6 +2694,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2713,7 +2718,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2724,8 +2729,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2736,7 +2743,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2755,6 +2762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2782,6 +2790,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2809,6 +2818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2836,6 +2846,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2863,6 +2874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2890,6 +2902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2917,6 +2930,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2944,6 +2958,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2954,7 +2969,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2963,14 +2978,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2980,8 +3052,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2998,6 +3070,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -3007,7 +3080,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -3025,6 +3154,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -3052,6 +3182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -3079,6 +3210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -3169,10 +3301,10 @@ Design anchor force Design mobilisation percentage [END OF COLUMN INDICATION] [DATA] - 9.500 -207.911 193.513 0.000 0.000 47.196 - 9.250 -223.760 193.006 0.000 0.000 52.208 - 9.000 -255.559 192.394 -0.010 0.000 58.341 - 8.750 -373.197 191.942 0.000 0.000 66.953 + 9.500 -210.073 193.545 0.000 0.000 46.914 + 9.250 -226.116 193.024 0.000 0.000 51.980 + 9.000 -258.251 192.382 -0.010 0.000 58.143 + 8.750 -376.689 191.931 0.000 0.000 66.842 [END OF DATA] [END OF TABLE] [END OF DESIGN LENGTH CALCULATION] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shi index b262778c..799fa676 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects04.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:49:51 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects04.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:42:39 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects04.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2653,6 +2653,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2662,6 +2663,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2671,6 +2673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2680,6 +2683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2689,6 +2693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2712,7 +2717,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2723,8 +2728,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2735,7 +2742,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2754,6 +2761,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2781,6 +2789,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2808,6 +2817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2835,6 +2845,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2862,6 +2873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2889,6 +2901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2916,6 +2929,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2943,6 +2957,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2953,7 +2968,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2962,14 +2977,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2979,8 +3051,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2997,6 +3069,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -3006,7 +3079,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -3024,6 +3153,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -3051,6 +3181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -3078,6 +3209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shd index 28020d0d..26b5c3f6 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects05.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:07 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects05.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1279,6 +1279,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1288,6 +1289,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1297,6 +1299,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1306,6 +1309,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1315,6 +1319,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1324,6 +1329,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1333,6 +1339,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1342,6 +1349,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1365,7 +1373,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1376,8 +1384,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1388,7 +1398,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1407,6 +1417,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1434,6 +1445,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1461,6 +1473,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1488,6 +1501,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1515,6 +1529,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1542,6 +1557,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1569,6 +1585,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1596,6 +1613,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1606,7 +1624,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1621,8 +1695,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1632,8 +1707,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1650,6 +1725,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1659,7 +1735,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1677,6 +1809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1704,6 +1837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1731,6 +1865,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1803,6 +1938,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1821,14 +1957,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 4 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 5 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 6 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 7 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 8 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 4 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 5 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 6 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 7 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 8 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2040,10 +2176,10 @@ PartialFactorSet=10 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.65 : Percentage mobilized resistance left - 11.65 : Percentage mobilized resistance right - 272.01 : Effective left - 272.01 : Effective right + 11.60 : Percentage mobilized resistance left + 11.60 : Percentage mobilized resistance right + 270.83 : Effective left + 270.83 : Effective right 1089.18 : Water pressure left 1089.18 : Water pressure right 2335.10 : Max effective resistance left @@ -2052,8 +2188,8 @@ PartialFactorSet=10 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 80.70 : Vertical force left - 80.70 : Vertical force right + 80.21 : Vertical force left + 80.21 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -2062,10 +2198,10 @@ PartialFactorSet=10 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --80.70 : Active force -80.70 : Passive force --80.70 : Plugged active force -80.70 : Plugged passive force +-80.21 : Active force +80.21 : Passive force +-80.21 : Plugged active force +80.21 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -2580,7 +2716,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -2592,7 +2728,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -2622,7 +2758,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -2652,13 +2788,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -2759,72 +2895,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 330 100 3 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -2832,15 +2968,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -2854,41 +2990,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -2905,11 +3041,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -2928,10 +3064,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 1.45 'Oude Zeeklei' - -7.00 13.63 'Wadzand' - -10.00 12.92 'Hydrobiaklei' + -7.00 13.59 'Wadzand' + -10.00 12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 52.70 'Eerste zandlaag' + -12.50 52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3244,7 +3380,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -3256,7 +3392,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -3286,7 +3422,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -3316,13 +3452,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -3423,72 +3559,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 330 100 3 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -3496,15 +3632,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -3518,41 +3654,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -3569,11 +3705,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -3592,10 +3728,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -1.45 'Oude Zeeklei' - -7.00 -13.63 'Wadzand' - -10.00 -12.92 'Hydrobiaklei' + -7.00 -13.59 'Wadzand' + -10.00 -12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -52.70 'Eerste zandlaag' + -12.50 -52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3802,7 +3938,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -3817,7 +3953,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 97.34801 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 97.32955 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3842,39 +3978,39 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 8.43 : Percentage mobilized resistance left - 17.26 : Percentage mobilized resistance right - 193.65 : Effective left - 264.19 : Effective right + 8.39 : Percentage mobilized resistance left + 17.21 : Percentage mobilized resistance right + 192.93 : Effective left + 263.45 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2298.14 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -24405.26 : Max moment left --16790.25 : Max moment right --2057.42 : Max mobilized moment left --2347.32 : Max mobilized moment right - 58.81 : Vertical force left - 72.51 : Vertical force right +-16790.18 : Max moment right +-2049.18 : Max mobilized moment left +-2339.16 : Max mobilized moment right + 58.54 : Vertical force left + 72.30 : Vertical force right 8.4 : Max mobilized moment percentage left - 14.0 : Max mobilized moment percentage right + 13.9 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --58.81 : Active force -72.51 : Passive force --58.81 : Plugged active force -72.51 : Plugged passive force +-58.54 : Active force +72.30 : Passive force +-58.54 : Plugged active force +72.30 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.70 : Resulting Vertical Force Unplugged -13.70 : Resulting Vertical Force Plugged +13.76 : Resulting Vertical Force Unplugged +13.76 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -3887,192 +4023,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -15.03321 - 0.00000 0.00000 -14.61262 - 0.00000 0.00000 -14.19203 - 0.00000 0.00000 -13.77144 - 0.00000 0.00000 -13.35086 - 0.00000 0.00000 -12.93027 - 0.00000 0.00000 -12.93027 - 0.00000 0.00000 -12.50968 - 0.00000 0.00000 -12.08910 - 0.00000 0.00000 -11.66851 - 0.00000 0.00000 -11.24792 - 0.00000 0.00000 -10.82733 - 0.00000 0.00000 -10.82733 - -0.00283 -0.07063 -10.26655 - -0.02260 -0.28253 -9.70578 - -0.07628 -0.63569 -9.14499 - -0.18082 -1.13011 -8.58418 - -0.35316 -1.76580 -8.02334 - -0.35316 -1.76580 -8.02334 - -0.56080 -2.40345 -7.55593 - -0.83712 -3.13920 -7.08846 - -1.19191 -3.97305 -6.62087 - -1.63500 -4.90500 -6.15312 - -2.17618 -5.93505 -5.68516 - -2.17618 -5.93505 -5.68516 - -2.82528 -7.06320 -5.21695 - -3.59209 -8.28945 -4.74838 - -4.48644 -9.61380 -4.27935 - -5.51812 -11.03625 -3.80973 - -6.69696 -12.55680 -3.33943 - -6.69696 148.14320 -3.33943 - 5.98427 146.75707 -2.93452 - 18.54318 145.29838 -2.53018 - 30.97351 143.76714 -2.12755 - 43.26904 142.16334 -1.72780 - 55.42353 140.48699 -1.33207 - 55.42353 43.13897 -1.33207 - 60.20954 40.80500 -0.81540 - 64.72222 38.34353 -0.30859 - 68.94702 35.75457 0.18767 - 72.86942 33.03812 0.67269 - 76.47487 30.19419 1.14578 - 76.47556 30.18262 1.14578 - 78.81490 28.38003 1.47030 - 81.02738 26.99047 1.78846 - 83.14153 25.90662 2.10010 - 85.17937 25.08253 2.40505 - 87.16080 24.48619 2.70312 - 87.16057 24.48435 2.70312 - 87.64924 24.38484 2.77655 - 88.13606 24.29942 2.84953 - 88.62132 24.22996 2.92207 - 89.10536 24.17642 2.99416 - 89.58847 24.13689 3.06581 - 89.58816 24.14028 3.06581 - 91.89762 22.05514 3.41719 - 94.00034 20.00451 3.75700 - 95.89911 17.97141 4.08499 - 97.59475 15.94229 4.40092 - 99.08774 13.91854 4.70455 - 99.08788 13.91958 4.70455 - 100.37885 11.90105 4.99567 - 101.46830 9.88906 5.27414 - 102.35688 7.88362 5.53985 - 103.04525 5.88487 5.79269 - 103.53408 3.89282 6.03255 - 103.53408 3.89297 6.03255 - 103.82409 1.90826 6.25933 - 103.91593 -0.07033 6.47304 - 103.81025 -2.04236 6.67367 - 103.50768 -4.00799 6.86125 - 103.00885 -5.96757 7.03579 - 103.00883 -5.96730 7.03579 - 101.98199 -8.70004 7.25827 - 100.57333 -11.42194 7.45557 - 98.78434 -14.13328 7.62812 - 96.61647 -16.83474 7.77637 - 94.07102 -19.52753 7.90075 - 94.07098 -19.52677 7.90075 - 91.49512 -20.07365 7.99538 - 88.85907 -20.45360 8.07053 - 86.18428 -20.66994 8.12677 - 83.49187 -20.72505 8.16466 - 80.80395 -20.59124 8.18478 - 80.80401 -20.59067 8.18478 - 78.06755 -21.67472 8.18767 - 75.15556 -23.05935 8.17394 - 72.08925 -24.04878 8.14424 - 68.92000 -24.64301 8.09921 - 65.69919 -24.84204 8.03951 - 65.69919 -24.84204 8.03951 - 61.98518 -24.84368 7.95357 - 58.27093 -24.84532 7.85019 - 54.55643 -24.84697 7.73040 - 50.84169 -24.84861 7.59525 - 47.12670 -24.85026 7.44579 - 47.12670 -24.85026 7.44579 - 43.40371 -25.00750 7.28302 - 39.62114 -25.73285 7.10803 - 35.68749 -26.90165 6.92192 - 31.57432 -28.13531 6.72581 - 27.27218 -29.42611 6.52081 - 27.27161 -29.42331 6.52081 - 22.76800 -30.83424 6.30808 - 18.04937 -32.30137 6.08896 - 13.16381 -32.68649 5.86479 - 8.36198 -31.34849 5.63689 - 3.82379 -29.34480 5.40663 - 3.82477 -29.33831 5.40663 - -0.40144 -27.16505 5.17535 - -4.28835 -24.80673 4.94420 - -7.81057 -22.28623 4.71416 - -10.94387 -19.60380 4.48622 - -13.66538 -16.78632 4.26136 - -13.66539 -16.78645 4.26136 - -13.69892 -16.74728 4.25838 - -13.73238 -16.70810 4.25540 - -13.76575 -16.66888 4.25242 - -13.79905 -16.62964 4.24944 - -13.83227 -16.59037 4.24646 - -13.83227 -16.59038 4.24646 - -14.45060 -15.95426 4.18997 - -15.04489 -15.32512 4.13375 - -15.61539 -14.70268 4.07781 - -16.16237 -14.08689 4.02214 - -16.68608 -13.47795 3.96677 - -16.68722 -13.46783 3.96677 - -18.18967 -11.58463 3.79398 - -19.47196 -9.81209 3.62449 - -20.55080 -8.19525 3.45850 - -21.44512 -6.73599 3.29621 - -22.17360 -5.43071 3.13781 - -22.17323 -5.42559 3.13781 - -22.47690 -4.73471 3.06013 - -22.74403 -4.17576 2.98346 - -22.97873 -3.65336 2.90782 - -23.18316 -3.16703 2.83322 - -23.35948 -2.71626 2.75968 - -23.35945 -2.71665 2.75968 - -23.58367 -2.19333 2.65017 - -23.75818 -1.65514 2.54311 - -23.88724 -1.19399 2.43853 - -23.97777 -0.80810 2.33644 - -24.03654 -0.49565 2.23685 - -24.03670 -0.49222 2.23685 - -24.03002 0.40769 2.13977 - -23.98461 0.57877 2.04520 - -23.92674 0.68189 1.95313 - -23.86251 0.71887 1.86355 - -23.79786 0.69149 1.77646 - -23.79785 0.69098 1.77646 - -23.77264 -0.19307 1.68362 - -23.83769 -1.11381 1.59377 - -23.99658 -2.06992 1.50693 - -24.25281 -3.06020 1.42313 - -24.60972 -4.08350 1.34239 - -24.61226 -4.06456 1.34239 - -24.98753 -1.32186 1.23460 - -24.99177 1.21952 1.13298 - -24.65940 3.47522 1.03747 - -24.03322 5.42001 0.94797 - -23.15537 7.07393 0.86442 - -23.15417 7.07232 0.86442 - -22.05073 8.59941 0.78665 - -20.76483 9.73007 0.71432 - -19.33726 10.62619 0.64710 - -17.79967 11.30432 0.58462 - -16.18150 11.77978 0.52654 - -16.18163 11.77418 0.52654 - -14.62642 10.82484 0.47247 - -13.10117 10.93619 0.42202 - -11.57195 10.88337 0.37480 - -10.06101 10.67662 0.33045 - -8.58926 10.32488 0.28857 - -8.58938 10.32187 0.28857 - -7.17698 9.83298 0.24881 - -5.84225 9.21331 0.21081 - -4.60310 8.46834 0.17427 - -3.47675 7.60247 0.13890 - -2.47989 6.61905 0.10438 - -2.47997 6.61811 0.10438 - -1.62899 5.51968 0.07044 - -0.93975 4.30772 0.03689 - -0.42807 2.98340 0.00361 - -0.10961 1.54743 -0.02952 - 0.00001 0.00006 -0.06263 + 0.00000 0.00000 -15.04770 + 0.00000 0.00000 -14.62666 + 0.00000 0.00000 -14.20562 + 0.00000 0.00000 -13.78458 + 0.00000 0.00000 -13.36354 + 0.00000 0.00000 -12.94250 + 0.00000 0.00000 -12.94250 + 0.00000 0.00000 -12.52146 + 0.00000 0.00000 -12.10042 + 0.00000 0.00000 -11.67938 + 0.00000 0.00000 -11.25834 + 0.00000 0.00000 -10.83730 + 0.00000 0.00000 -10.83730 + -0.00283 -0.07063 -10.27591 + -0.02260 -0.28253 -9.71453 + -0.07628 -0.63569 -9.15314 + -0.18082 -1.13011 -8.59173 + -0.35316 -1.76580 -8.03028 + -0.35316 -1.76580 -8.03028 + -0.56080 -2.40345 -7.56237 + -0.83712 -3.13920 -7.09439 + -1.19191 -3.97305 -6.62630 + -1.63500 -4.90500 -6.15805 + -2.17618 -5.93505 -5.68959 + -2.17618 -5.93505 -5.68959 + -2.82528 -7.06320 -5.22087 + -3.59209 -8.28945 -4.75180 + -4.48644 -9.61380 -4.28227 + -5.51812 -11.03625 -3.81215 + -6.69696 -12.55680 -3.34134 + -6.69696 148.14320 -3.34134 + 5.98427 146.75707 -2.93600 + 18.54318 145.29838 -2.53122 + 30.97351 143.76714 -2.12816 + 43.26904 142.16334 -1.72798 + 55.42353 140.48699 -1.33182 + 55.42353 43.15744 -1.33182 + 60.21165 40.82346 -0.81457 + 64.72643 38.36200 -0.30719 + 68.95334 35.77304 0.18965 + 72.87784 33.05659 0.67524 + 76.48540 30.21265 1.14889 + 76.48609 30.20107 1.14889 + 78.82691 28.39862 1.47381 + 81.04090 27.00971 1.79237 + 83.15662 25.92694 2.10441 + 85.19614 25.10403 2.40975 + 87.17934 24.50897 2.70822 + 87.17911 24.50713 2.70822 + 87.66824 24.40796 2.78174 + 88.15552 24.32289 2.85482 + 88.64126 24.25377 2.92746 + 89.12578 24.20059 2.99965 + 89.60938 24.16142 3.07140 + 89.60906 24.16482 3.07140 + 91.92101 22.08026 3.42327 + 94.02626 20.03003 3.76356 + 95.92759 17.99710 4.09203 + 97.62581 15.96819 4.40844 + 99.12141 13.94464 4.71255 + 99.12154 13.94569 4.71255 + 100.41513 11.92738 5.00414 + 101.50723 9.91563 5.28308 + 102.39848 7.91044 5.54925 + 103.08954 5.91195 5.80254 + 103.58109 3.92018 6.04285 + 103.58109 3.92033 6.04285 + 103.87383 1.93541 6.27008 + 103.96840 -0.04288 6.48422 + 103.86547 -2.01460 6.68528 + 103.56569 -3.97990 6.87329 + 103.06969 -5.93915 7.04824 + 103.06967 -5.93888 7.04824 + 102.04685 -8.67114 7.27130 + 100.64226 -11.39252 7.46915 + 98.85743 -14.10334 7.64224 + 96.69379 -16.80425 7.79101 + 94.15265 -19.49647 7.91589 + 94.15261 -19.49571 7.91589 + 91.57840 -20.06962 8.01097 + 88.94301 -20.44733 8.08655 + 86.26918 -20.66138 8.14320 + 83.57804 -20.71412 8.18148 + 80.89170 -20.57791 8.20197 + 80.89176 -20.57734 8.20197 + 78.15706 -21.66111 8.20522 + 75.24683 -23.04574 8.19183 + 72.18229 -24.03517 8.16245 + 69.01481 -24.62940 8.11772 + 65.79577 -24.82843 8.05829 + 65.79577 -24.82843 8.05829 + 62.08380 -24.83008 7.97265 + 58.37158 -24.83172 7.86953 + 54.65911 -24.83337 7.74998 + 50.94640 -24.83501 7.61504 + 47.23345 -24.83666 7.46575 + 47.23345 -24.83666 7.46575 + 43.51249 -24.99389 7.30314 + 39.73181 -25.72231 7.12827 + 35.79927 -26.89723 6.94225 + 31.68645 -28.13396 6.74619 + 27.38452 -29.42476 6.54121 + 27.38395 -29.42196 6.54121 + 22.88054 -30.83289 6.32848 + 18.16211 -32.30002 6.10932 + 13.27679 -32.68438 5.88508 + 8.47548 -31.34315 5.65708 + 3.93845 -29.33454 5.42668 + 3.93944 -29.32804 5.42668 + -0.27992 -27.10016 5.19523 + -4.15677 -24.73700 4.96388 + -7.66821 -22.21172 4.73360 + -10.79001 -19.52456 4.50539 + -13.49932 -16.70243 4.28021 + -13.49934 -16.70256 4.28021 + -13.53270 -16.66333 4.27722 + -13.56599 -16.62408 4.27424 + -13.59920 -16.58481 4.27125 + -13.63233 -16.54550 4.26827 + -13.66538 -16.50617 4.26528 + -13.66538 -16.50618 4.26528 + -14.28045 -15.86721 4.20871 + -14.87138 -15.23523 4.15240 + -15.43841 -14.60996 4.09635 + -15.98182 -13.99136 4.04059 + -16.50184 -13.37962 3.98512 + -16.50298 -13.36947 3.98512 + -17.99311 -11.47755 3.81198 + -19.26186 -9.69224 3.64211 + -20.32532 -8.05869 3.47570 + -21.20226 -6.58314 3.31295 + -21.91145 -5.26203 3.15404 + -21.91100 -5.25993 3.15404 + -22.20830 -4.65619 3.07608 + -22.47049 -4.08965 2.99913 + -22.69979 -3.55980 2.92320 + -22.89839 -3.06615 2.84830 + -23.06844 -2.60823 2.77443 + -23.06842 -2.60870 2.77443 + -23.27664 -1.98108 2.66441 + -23.43138 -1.43271 2.55681 + -23.53975 -0.96181 2.45165 + -23.60872 -0.56658 2.34895 + -23.64511 -0.24527 2.24871 + -23.64511 -0.24601 2.24871 + -23.65561 0.00326 2.15094 + -23.64665 0.18220 2.05563 + -23.62453 0.29263 1.96279 + -23.59541 0.33636 1.87242 + -23.56528 0.31514 1.78451 + -23.56529 0.31452 1.78451 + -23.57758 -0.56650 1.69073 + -23.67983 -1.48460 1.59992 + -23.87569 -2.43845 1.51210 + -24.16867 -3.42685 1.42730 + -24.56217 -4.44869 1.34555 + -24.56475 -4.42944 1.34555 + -24.99079 -1.68261 1.23635 + -25.04537 0.86079 1.13332 + -24.76325 3.11524 1.03639 + -24.18783 5.05411 0.94552 + -23.36188 6.69756 0.86063 + -23.36066 6.69596 0.86063 + -22.32436 8.06401 0.78157 + -21.11470 9.17555 0.70802 + -19.76633 10.04861 0.63966 + -18.31144 10.70004 0.57616 + -16.77993 11.14556 0.51717 + -16.78005 11.13979 0.51717 + -15.20053 11.39414 0.46235 + -13.59800 11.47047 0.41129 + -11.99654 11.38075 0.36358 + -10.41864 11.13563 0.31883 + -8.88539 10.74436 0.27666 + -8.88551 10.74125 0.27666 + -7.41721 10.21196 0.23667 + -6.03229 9.55121 0.19850 + -4.74874 8.76468 0.16184 + -3.58384 7.85692 0.12639 + -2.55430 6.83138 0.09182 + -2.55438 6.83040 0.09182 + -1.67664 5.68969 0.05783 + -0.96657 4.43533 0.02425 + -0.43999 3.06853 -0.00905 + -0.11259 1.59002 -0.04219 + 0.00001 0.00006 -0.07531 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4400,7 +4536,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -4412,7 +4548,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -4423,17 +4559,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -4442,7 +4578,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -4472,13 +4608,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -4579,48 +4715,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00340 0.00000 0.00340 0.00340 402 100 P - 6.72865 0.00000 7.80254 0.68000 330 86 3 - 11.89863 0.00000 15.60507 1.36000 220 76 2 - 15.94129 0.00000 23.40761 2.04000 220 68 2 - 19.96202 0.00000 31.21015 2.72000 220 64 2 - 23.20459 0.00000 37.06205 3.23000 220 63 2 - 24.14920 0.00000 39.50034 3.44250 220 61 2 - 24.95627 0.00000 40.96332 3.57000 220 61 2 - 25.95081 0.00000 42.91395 3.74000 220 60 2 - 26.94390 0.00000 44.86459 3.91000 220 60 2 - 27.93552 0.00000 46.81522 4.08000 220 60 2 - 28.73676 0.00000 48.27820 4.20750 220 60 2 - 9.37307 0.00000 20.56677 6.30726 110 46 1 - 9.74614 0.98100 20.32861 6.32894 110 48 1 - 10.06327 1.96200 20.08785 6.35785 220 50 2 - 10.09659 2.94300 19.91182 6.38676 220 51 2 - 10.14307 3.92400 19.78100 6.41566 220 51 2 - 10.20387 4.90500 19.70421 6.43734 220 52 2 - 10.19251 4.90500 19.66214 6.45179 220 52 2 - 10.25896 5.88600 19.61027 6.47347 220 52 2 - 10.32331 6.86700 19.55671 6.50238 220 53 2 - 10.38977 7.84800 19.51850 6.53129 220 53 2 - 10.45723 8.82900 19.49272 6.56019 220 54 2 - 10.52390 9.81000 19.47992 6.58187 220 54 2 - 10.53565 9.81000 19.47440 6.63230 220 54 2 - 10.59204 10.79100 19.47010 6.61800 220 54 2 - 10.65825 11.77200 19.47023 6.64691 220 55 2 - 10.72312 12.75300 19.47646 6.67582 220 55 2 - 10.78634 13.73400 19.48795 6.70472 220 55 2 - 10.84404 14.71500 19.49947 6.72640 220 56 2 - 10.85278 14.71500 19.51051 6.74375 220 56 2 - 10.92999 16.08840 19.53319 6.77410 220 56 2 - 11.00776 17.46180 19.56875 6.81457 220 56 2 - 11.08080 18.83520 19.60984 6.85503 220 57 2 - 11.14893 20.20860 19.65566 6.89550 220 57 2 - 11.20457 21.58200 19.69261 6.92585 220 57 2 - 25.55395 21.58200 40.65119 7.89320 220 63 2 - 23.81459 25.39730 37.49247 5.34869 220 64 2 - 22.04208 29.21260 33.28909 4.15339 220 66 2 - 20.25151 33.02790 29.09277 2.95808 220 70 2 - 18.44270 36.84320 24.90135 1.76278 220 74 2 - 17.07784 40.65850 21.76001 0.86630 220 78 2 - 10.70443 40.65850 12.41397 0.26865 330 86 3 + 6.73217 0.00000 7.80254 0.68000 330 86 3 + 11.91143 0.00000 15.60507 1.36000 220 76 2 + 15.95539 0.00000 23.40761 2.04000 220 68 2 + 19.97742 0.00000 31.21015 2.72000 220 64 2 + 23.22128 0.00000 37.06205 3.23000 220 63 2 + 24.16589 0.00000 39.50034 3.44250 220 61 2 + 24.97327 0.00000 40.96332 3.57000 220 61 2 + 25.96814 0.00000 42.91395 3.74000 220 61 2 + 26.96155 0.00000 44.86459 3.91000 220 60 2 + 27.95349 0.00000 46.81522 4.08000 220 60 2 + 28.75505 0.00000 48.27820 4.20750 220 60 2 + 9.37866 0.00000 20.56677 6.30726 110 46 1 + 9.75221 0.98100 20.32861 6.32894 110 48 1 + 10.06506 1.96200 20.08785 6.35785 220 50 2 + 10.09851 2.94300 19.91182 6.38676 220 51 2 + 10.14512 3.92400 19.78100 6.41566 220 51 2 + 10.20605 4.90500 19.70421 6.43734 220 52 2 + 10.19469 4.90500 19.66214 6.45179 220 52 2 + 10.26127 5.88600 19.61027 6.47347 220 52 2 + 10.32575 6.86700 19.55671 6.50238 220 53 2 + 10.39233 7.84800 19.51850 6.53129 220 53 2 + 10.45992 8.82900 19.49272 6.56019 220 54 2 + 10.52671 9.81000 19.47992 6.58187 220 54 2 + 10.52865 9.81000 19.47440 6.59633 220 54 2 + 10.59497 10.79100 19.47010 6.61800 220 54 2 + 10.66130 11.77200 19.47023 6.64691 220 55 2 + 10.72629 12.75300 19.47646 6.67582 220 55 2 + 10.78962 13.73400 19.48795 6.70472 220 55 2 + 10.84744 14.71500 19.49947 6.72640 220 56 2 + 10.85618 14.71500 19.51051 6.74375 220 56 2 + 10.93354 16.08840 19.53319 6.77410 220 56 2 + 11.01147 17.46180 19.56875 6.81457 220 56 2 + 11.08465 18.83520 19.60984 6.85503 220 57 2 + 11.15293 20.20860 19.65566 6.89550 220 57 2 + 11.20870 21.58200 19.69261 6.92585 220 57 2 + 25.12100 21.58200 40.65119 6.24517 220 62 2 + 23.83160 25.39730 37.49247 5.34869 220 64 2 + 22.05955 29.21260 33.28909 4.15339 220 66 2 + 20.26943 33.02790 29.09277 2.95808 220 70 2 + 18.46105 36.84320 24.90135 1.76278 220 74 2 + 17.09660 40.65850 21.76001 0.86630 220 79 2 + 10.70848 40.65850 12.41397 0.26865 330 86 3 0.00000 44.47380 0.00000 0.00000 402 0 P 0.00000 48.28910 0.00000 0.00000 402 0 P 0.00000 52.10440 0.00000 0.00000 402 0 P @@ -4634,94 +4770,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 68.53457 0.00000 0.00000 402 0 P - 0.04098 70.00117 0.04098 0.04098 402 100 P - 0.04098 71.46776 0.04098 0.04098 402 100 P + 0.00000 70.00117 0.00000 0.00000 402 0 P + 0.00000 71.46776 0.00000 0.00000 402 0 P 0.00000 72.93436 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P - 0.00000 75.86755 0.00000 0.00000 402 100 P - 0.00000 77.33414 0.00000 0.00000 402 100 P - 15.28679 78.80074 17.96911 4.49986 330 85 3 - 23.86345 80.26733 36.36631 5.18955 220 66 2 - 24.90251 81.73392 39.87198 5.70681 220 62 2 - 25.17770 81.73392 42.19987 3.61198 220 60 2 - 26.87142 83.20052 45.68064 6.56892 220 59 2 - 28.36374 84.66711 50.30746 7.25860 220 56 2 - 29.85361 86.13371 54.92251 7.94829 220 54 2 - 31.34443 87.60031 59.53073 8.63797 220 53 2 - 32.37357 89.06690 62.98476 9.15524 220 51 2 - 32.84542 89.06690 64.15130 9.32997 220 51 2 - 32.85924 89.08652 64.19752 9.33689 220 51 2 - 32.87927 89.10614 64.25913 9.34611 220 51 2 - 32.89931 89.12576 64.32073 9.35534 220 51 2 - 32.91934 89.14538 64.38231 9.36457 220 51 2 - 32.93316 89.16500 64.42851 9.37149 220 51 2 - 28.37468 89.16500 58.82727 11.38885 110 48 1 - 28.25616 89.53778 59.19268 11.49627 110 48 1 - 28.17451 89.91056 59.68017 11.63950 110 47 1 - 28.09395 90.28334 60.16799 11.78273 110 47 1 - 28.01453 90.65612 60.65612 11.92596 110 46 1 - 27.90047 91.02890 61.02242 12.03338 110 46 1 - 28.04936 91.02890 61.53041 12.18226 110 46 1 - 27.69742 92.20610 62.68904 12.52149 110 44 1 - 27.47177 93.38330 64.23606 12.97380 110 43 1 - 27.26011 94.56050 65.78549 13.42610 110 41 1 - 27.06324 95.73770 67.33709 13.87840 110 40 1 - 26.76888 96.91490 68.50203 14.21763 110 39 1 - 26.93849 96.91490 69.08491 14.38724 110 39 1 - 26.79736 97.50350 69.66807 14.55686 110 38 1 - 26.71684 98.09210 70.44596 14.78301 110 38 1 - 26.64044 98.68070 71.22427 15.00916 110 37 1 - 26.56821 99.26930 72.00296 15.23531 110 37 1 - 26.44365 99.85790 72.58721 15.40493 110 36 1 - 24.52568 99.85790 73.07750 13.48696 110 34 1 - 26.40512 100.75061 73.96428 15.80446 110 36 1 - 26.31990 101.64332 75.14728 16.14746 110 35 1 - 26.24458 102.53603 76.33100 16.49046 110 34 1 - 26.17921 103.42874 77.51539 16.83345 110 34 1 - 26.03810 104.32145 78.40407 17.09070 110 33 1 - 40.69361 104.32145 78.99672 34.93354 220 52 2 - 26.07853 105.21416 79.88599 17.51945 110 33 1 - 26.04324 106.10687 81.07214 17.86244 110 32 1 - 26.01795 106.99958 82.25880 18.20544 110 32 1 - 26.00264 107.89229 83.44594 18.54844 110 31 1 - 25.91154 108.78500 84.33659 18.80568 110 31 1 - 24.16684 108.78500 56.86688 20.61391 110 42 1 - 25.75387 106.76600 61.08371 22.38663 110 42 1 - 27.93780 104.74700 66.69564 24.75026 110 42 1 - 30.12775 102.72800 72.29483 27.11388 110 42 1 - 32.32377 100.70900 77.88124 29.47751 110 42 1 - 33.93500 98.69000 82.06310 31.25023 110 41 1 - 36.47095 98.69000 272.58042 20.36232 110 13 1 - 35.68047 100.06340 271.86044 20.86529 110 13 1 - 35.13171 101.43680 274.54312 21.53590 110 13 1 - 34.65611 102.81020 279.33150 22.20652 110 12 1 - 34.25276 104.18360 285.19980 22.87714 110 12 1 - 33.75309 105.55700 290.01763 23.38010 110 12 1 - 34.08840 105.55700 293.38484 23.71541 110 12 1 - 33.65814 106.93040 298.60646 24.21837 110 11 1 - 33.46087 108.30380 305.78478 24.88899 110 11 1 - 33.32475 109.67720 313.15603 25.55961 110 11 1 - 33.24561 111.05060 320.66827 26.23022 110 10 1 - 33.05162 112.42400 326.37074 26.73319 110 10 1 - 33.38693 112.42400 330.20204 27.06849 110 10 1 - 33.24112 113.79740 335.98580 27.57146 110 10 1 - 33.30630 115.17080 343.74884 28.24207 110 10 1 - 33.41031 116.54420 351.56245 28.91269 110 10 1 - 33.54865 117.91760 359.41683 29.58331 110 9 1 - 33.54916 119.29100 365.32890 30.08627 110 9 1 - 33.88447 119.29100 369.28008 30.42158 110 9 1 - 33.91022 120.66440 375.21958 30.92454 110 9 1 - 34.12484 122.03780 383.15752 31.59516 110 9 1 - 34.35705 123.41120 391.11465 32.26578 110 9 1 - 34.60318 124.78460 399.08801 32.93639 110 9 1 - 34.69196 126.15800 405.07683 33.43936 110 9 1 - 35.02727 126.15800 409.07356 33.77467 110 9 1 - 35.12286 127.53140 415.07425 34.27763 110 8 1 - 35.39087 128.90480 423.08354 34.94825 110 8 1 - 35.66215 130.27820 431.10170 35.61886 110 8 1 - 35.93522 131.65160 439.12760 36.28948 110 0 1 - 36.04093 133.02500 445.15132 36.79244 110 0 1 + 0.00000 75.86755 0.00000 0.00000 402 0 P + 0.00000 77.33414 0.00000 0.00000 402 0 P + 15.29694 78.80074 17.96911 4.49986 330 85 3 + 23.89649 80.26733 36.36631 5.18955 220 66 2 + 24.93532 81.73392 39.87198 5.70681 220 63 2 + 25.87588 81.73392 42.19987 6.05165 220 61 2 + 26.90396 83.20052 45.68064 6.56892 220 59 2 + 28.39596 84.66711 50.30746 7.25860 220 56 2 + 29.88543 86.13371 54.92251 7.94829 220 54 2 + 31.37580 87.60031 59.53073 8.63797 220 53 2 + 32.40441 89.06690 62.98476 9.15524 220 51 2 + 32.87626 89.06690 64.15130 9.32997 220 51 2 + 32.89007 89.08652 64.19752 9.33689 220 51 2 + 32.91010 89.10614 64.25913 9.34611 220 51 2 + 32.93013 89.12576 64.32073 9.35534 220 51 2 + 32.95016 89.14538 64.38231 9.36457 220 51 2 + 32.96396 89.16500 64.42851 9.37149 220 51 2 + 28.44997 89.16500 58.82727 11.38885 110 48 1 + 28.33110 89.53778 59.19268 11.49627 110 48 1 + 28.24908 89.91056 59.68017 11.63950 110 47 1 + 28.16814 90.28334 60.16799 11.78273 110 47 1 + 28.08832 90.65612 60.65612 11.92596 110 46 1 + 27.97385 91.02890 61.02242 12.03338 110 46 1 + 28.12273 91.02890 61.53041 12.18226 110 46 1 + 27.76942 92.20610 62.68904 12.52149 110 44 1 + 27.54224 93.38330 64.23606 12.97380 110 43 1 + 27.32890 94.56050 65.78549 13.42610 110 42 1 + 27.13018 95.73770 67.33709 13.87840 110 40 1 + 26.83380 96.91490 68.50203 14.21763 110 39 1 + 27.00341 96.91490 69.08491 14.38724 110 39 1 + 26.86120 97.50350 69.66807 14.55686 110 39 1 + 26.77955 98.09210 70.44596 14.78301 110 38 1 + 26.70197 98.68070 71.22427 15.00916 110 37 1 + 26.62851 99.26930 72.00296 15.23531 110 37 1 + 26.50266 99.85790 72.58721 15.40493 110 37 1 + 26.64495 99.85790 73.07750 15.54721 110 36 1 + 26.46210 100.75061 73.96428 15.80446 110 36 1 + 26.37471 101.64332 75.14728 16.14746 110 35 1 + 26.29707 102.53603 76.33100 16.49046 110 34 1 + 26.22925 103.42874 77.51539 16.83345 110 34 1 + 26.08553 104.32145 78.40407 17.09070 110 33 1 + 26.25703 104.32145 78.99672 17.26220 110 33 1 + 26.12319 105.21416 79.88599 17.51945 110 33 1 + 26.08497 106.10687 81.07214 17.86244 110 32 1 + 26.05662 106.99958 82.25880 18.20544 110 32 1 + 26.03811 107.89229 83.44594 18.54844 110 31 1 + 25.94371 108.78500 84.33659 18.80568 110 31 1 + 24.18292 108.78500 56.86688 20.61391 110 43 1 + 25.76809 106.76600 61.08371 22.38663 110 42 1 + 27.95009 104.74700 66.69564 24.75026 110 42 1 + 30.13808 102.72800 72.29483 27.11388 110 42 1 + 32.33212 100.70900 77.88124 29.47751 110 42 1 + 33.94133 98.69000 82.06310 31.25023 110 41 1 + 36.50893 98.69000 272.58042 20.36232 110 13 1 + 35.70144 100.06340 271.86044 20.86529 110 13 1 + 35.13568 101.43680 274.54312 21.53590 110 13 1 + 34.64325 102.81020 279.33150 22.20652 110 12 1 + 34.22336 104.18360 285.19980 22.87714 110 12 1 + 33.70762 105.55700 290.01763 23.38010 110 12 1 + 34.04292 105.55700 293.38484 23.71541 110 12 1 + 33.59720 106.93040 298.60646 24.21837 110 11 1 + 33.38528 108.30380 305.78478 24.88899 110 11 1 + 33.23555 109.67720 313.15603 25.55961 110 11 1 + 33.14408 111.05060 320.66827 26.23022 110 10 1 + 32.93929 112.42400 326.37074 26.73319 110 10 1 + 33.27459 112.42400 330.20204 27.06849 110 10 1 + 33.11972 113.79740 335.98580 27.57146 110 10 1 + 33.17750 115.17080 343.74884 28.24207 110 10 1 + 33.27559 116.54420 351.56245 28.91269 110 9 1 + 33.40928 117.91760 359.41683 29.58331 110 9 1 + 33.40621 119.29100 365.32890 30.08627 110 9 1 + 33.74152 119.29100 369.28008 30.42158 110 9 1 + 33.76454 120.66440 375.21958 30.92454 110 9 1 + 33.97715 122.03780 383.15752 31.59516 110 9 1 + 34.20792 123.41120 391.11465 32.26578 110 9 1 + 34.45307 124.78460 399.08801 32.93639 110 9 1 + 34.54117 126.15800 405.07683 33.43936 110 9 1 + 34.87648 126.15800 409.07356 33.77467 110 9 1 + 34.97160 127.53140 415.07425 34.27763 110 8 1 + 35.23927 128.90480 423.08354 34.94825 110 8 1 + 35.51032 130.27820 431.10170 35.61886 110 0 1 + 35.78320 131.65160 439.12760 36.28948 110 0 1 + 35.88873 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4736,13 +4872,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.935 'Ophooglaag zand' - -3.50 23.235 'Hollandveen' - -5.70 14.458 'Oude Zeeklei' - -7.00 29.764 'Wadzand' - -10.00 54.155 'Hydrobiaklei' - -12.00 14.519 'Basisveen' - -12.50 120.119 'Eerste zandlaag' + -3.00 7.941 'Ophooglaag zand' + -3.50 23.241 'Hollandveen' + -5.70 14.441 'Oude Zeeklei' + -7.00 29.835 'Wadzand' + -10.00 53.707 'Hydrobiaklei' + -12.00 14.525 'Basisveen' + -12.50 119.759 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -4762,10 +4898,10 @@ Layer name -3.00 2.89 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 3.07 'Oude Zeeklei' - -7.00 8.93 'Wadzand' - -10.00 11.51 'Hydrobiaklei' + -7.00 8.95 'Wadzand' + -10.00 11.42 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 46.11 'Eerste zandlaag' + -12.50 45.97 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5068,7 +5204,7 @@ Lambda passive -6.74000 11.10450 44.38498 0.00000 0.68728 0.00000 3.99703 -6.87000 12.43389 47.59701 0.00000 0.68823 0.00000 3.82801 -7.00000 13.76322 50.00567 0.00000 0.68902 0.00000 3.72318 - -7.00000 13.76322 56.56939 0.00000 0.56962 0.00000 4.02302 + -7.00000 13.76322 56.56939 0.00000 0.56701 0.00000 4.02302 -7.14950 14.95606 59.17756 0.00000 0.56756 0.00000 3.95676 -7.29900 16.14883 63.03696 0.00000 0.56807 0.00000 3.90350 -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 @@ -5080,7 +5216,7 @@ Lambda passive -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 -8.34550 24.49678 95.35621 8.46813 0.57065 0.34568 3.89260 -8.49500 25.68924 98.76054 8.77815 0.57093 0.34572 3.88957 - -8.49500 25.68924 101.03367 9.25368 0.63815 0.35608 3.88780 + -8.49500 25.68924 101.03367 9.25368 0.57093 0.35608 3.88780 -8.64450 26.88169 104.44831 9.59969 0.57119 0.35711 3.88548 -8.79400 28.07413 109.00806 10.00551 0.57144 0.35640 3.88286 -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 @@ -5110,7 +5246,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -5140,13 +5276,13 @@ Lambda passive -12.92000 68.66611 399.79848 17.40762 0.46790 0.25351 5.82236 -13.06000 70.09142 406.19871 17.79637 0.46796 0.25390 5.79527 -13.20000 71.51677 411.25599 18.08658 0.46802 0.25417 5.77928 - -13.20000 71.51677 414.73635 18.27940 0.43937 0.25433 5.77040 + -13.20000 71.51677 414.73635 18.27940 0.46802 0.25433 5.77040 -13.34000 72.94213 420.09417 18.56772 0.46808 0.25455 5.75928 -13.48000 74.36752 427.39798 18.94839 0.46813 0.25479 5.74711 -13.62000 75.79293 434.84979 19.24842 0.46818 0.25396 5.73734 -13.76000 77.21836 442.29337 19.51523 0.46823 0.25273 5.72783 -13.90000 78.64381 447.87370 19.78051 0.46828 0.25267 5.72089 - -13.90000 78.64381 451.61995 19.97027 0.69187 0.25279 5.71670 + -13.90000 78.64381 451.61995 19.97027 0.46828 0.25279 5.71670 -14.04000 80.06929 457.27233 20.25436 0.46833 0.25296 5.71096 -14.18000 81.49478 464.85577 20.63172 0.46837 0.25317 5.70412 -14.32000 82.92030 472.47626 21.00738 0.46842 0.25334 5.69796 @@ -5270,7 +5406,7 @@ Status character 0.00000 58.19540 44.38498 7.63186 1 0 A 0.00000 58.97070 47.59701 8.55736 1 0 A 0.00000 59.74600 50.00567 9.25421 1 0 A - 0.00000 59.74600 56.56939 8.00965 1 0 A + 0.00000 59.74600 56.56939 7.97293 1 0 A 0.00000 61.21260 59.17756 8.48851 1 0 A 0.00000 62.67919 63.03696 9.17359 1 0 A 0.00000 64.14579 67.15179 9.85907 1 0 A @@ -5282,7 +5418,7 @@ Status character 8.05472 71.47876 90.80343 13.29161 1 0 A 8.46813 72.94536 95.35621 13.97900 1 0 A 8.77815 74.41195 98.76054 14.49644 1 0 A - 9.25368 74.41195 101.03367 16.58377 1 0 A + 9.25368 74.41195 101.03367 14.83684 1 0 A 9.59969 75.87855 104.44831 15.35451 1 0 A 10.00551 77.34514 109.00806 16.04260 1 0 A 10.41135 78.81174 113.57458 16.73088 1 0 A @@ -5308,64 +5444,64 @@ Status character 11.95738 91.03990 113.85153 26.88125 1 0 A 12.05633 91.03990 114.33661 27.02892 1 0 A 12.28174 92.21710 115.44439 27.36892 1 0 A - 13.32317 93.39430 116.92621 27.82114 110 0 1 - 14.43940 94.57150 118.41340 28.27341 110 0 1 - 15.54088 95.74870 119.90552 28.72573 110 0 1 - 16.51460 96.92590 121.02749 29.06585 110 0 1 - 13.52077 96.92590 121.58944 24.57613 1 0 A - 17.16378 97.51450 122.15203 29.40428 110 0 1 - 17.69665 98.10310 122.90301 29.63048 110 0 1 - 18.22542 98.69170 123.65496 29.85670 110 0 1 - 18.75002 99.28030 124.40787 30.08292 110 0 1 - 19.21429 99.86890 124.97311 30.25301 110 0 1 - 19.35558 99.86890 125.44772 30.39430 110 0 1 - 20.05163 100.76161 126.30668 30.65229 110 0 1 - 20.82299 101.65432 127.45492 30.99544 110 0 1 - 21.58448 102.54703 128.63081 31.33861 110 0 1 - 22.33603 103.43974 129.81818 31.68179 110 0 1 - 22.99240 104.33245 130.70972 31.93980 110 0 1 - 23.16278 104.33245 131.30460 32.11018 110 0 1 - 23.80912 105.22516 132.19767 32.36821 110 0 1 - 24.53064 106.11787 133.38964 32.71144 110 0 1 - 25.24217 107.01058 134.58301 33.05468 110 0 1 - 25.94373 107.90329 135.77771 33.39793 110 0 1 - 26.55011 108.79600 136.67455 33.65597 110 0 1 - 32.80929 108.79600 96.36922 36.36222 110 0 1 - 34.77044 106.77700 100.67195 38.13768 110 0 1 - 37.31408 104.75800 106.39642 40.50163 110 0 1 - 39.85171 102.73900 112.10591 42.86558 110 0 1 - 42.38328 100.72000 117.80054 45.22955 110 0 1 - 44.31965 98.70100 122.06230 47.00442 110 0 1 + 13.25270 93.39430 116.92621 27.82114 110 0 1 + 14.37061 94.57150 118.41340 28.27341 110 0 1 + 15.47395 95.74870 119.90552 28.72573 110 0 1 + 16.44968 96.92590 121.02749 29.06585 110 0 1 + 16.61804 96.92590 121.58944 29.23421 110 0 1 + 17.09994 97.51450 122.15203 29.40428 110 0 1 + 17.63394 98.10310 122.90301 29.63048 110 0 1 + 18.16389 98.69170 123.65496 29.85670 110 0 1 + 18.68972 99.28030 124.40787 30.08292 110 0 1 + 19.15528 99.86890 124.97311 30.25301 110 0 1 + 19.29656 99.86890 125.44772 30.39430 110 0 1 + 19.99465 100.76161 126.30668 30.65229 110 0 1 + 20.76819 101.65432 127.45492 30.99544 110 0 1 + 21.53199 102.54703 128.63081 31.33861 110 0 1 + 22.28599 103.43974 129.81818 31.68179 110 0 1 + 22.94497 104.33245 130.70972 31.93980 110 0 1 + 23.11535 104.33245 131.30460 32.11018 110 0 1 + 23.76446 105.22516 132.19767 32.36821 110 0 1 + 24.48891 106.11787 133.38964 32.71144 110 0 1 + 25.20350 107.01058 134.58301 33.05468 110 0 1 + 25.90825 107.90329 135.77771 33.39793 110 0 1 + 26.51794 108.79600 136.67455 33.65597 110 0 1 + 32.79320 108.79600 96.36922 36.36222 110 0 1 + 34.75623 106.77700 100.67195 38.13768 110 0 1 + 37.30179 104.75800 106.39642 40.50163 110 0 1 + 39.84138 102.73900 112.10591 42.86558 110 0 1 + 42.37494 100.72000 117.80054 45.22955 110 0 1 + 44.31332 98.70100 122.06230 47.00442 110 0 1 16.32529 98.70100 386.35900 30.28234 1 0 A 16.62261 100.07440 389.12584 30.78681 1 0 A - 17.86214 101.44780 393.99108 31.45795 110 0 1 - 19.67951 102.82120 399.79848 32.12910 110 0 1 - 21.42464 104.19460 406.19871 32.80027 110 0 1 - 22.93168 105.56800 411.25599 33.30467 110 0 1 - 21.20613 105.56800 414.73635 31.57912 110 0 1 - 24.70286 106.94140 420.09417 34.14263 110 0 1 - 26.24194 108.31480 427.39798 34.81382 110 0 1 - 27.71988 109.68820 434.84979 35.48502 110 0 1 - 29.14085 111.06160 442.29337 36.15623 110 0 1 - 30.34213 112.43500 447.87370 36.66057 110 0 1 - 48.33913 112.43500 451.61995 54.65757 110 0 1 - 31.82900 113.80840 457.27233 37.49867 110 0 1 - 33.10567 115.18180 464.85577 38.16989 110 0 1 - 34.34350 116.55520 472.47626 38.84112 110 0 1 - 35.54701 117.92860 480.11294 39.51236 110 0 1 - 36.55373 119.30200 485.86065 40.01662 110 0 1 - 36.88767 119.30200 489.70215 40.35056 110 0 1 - 37.86915 120.67540 495.49874 40.85483 110 0 1 - 38.99638 122.04880 503.39465 41.52606 110 0 1 - 40.10604 123.42220 511.34019 42.19730 110 0 1 - 41.20176 124.79560 519.30166 42.86854 110 0 1 - 42.12014 126.16900 525.28152 43.37274 110 0 1 - 42.45422 126.16900 529.27230 43.70683 110 0 1 - 43.36579 127.54240 535.26413 44.21102 110 0 1 - 44.43964 128.91580 543.26180 44.88226 110 0 1 - 45.51022 130.28920 551.26866 45.55350 110 0 1 - 46.57900 131.66260 559.28359 46.22474 110 8 1 - 47.48039 133.03600 565.29934 46.72887 110 8 1 + 17.85817 101.44780 393.99108 31.45795 110 0 1 + 19.69238 102.82120 399.79848 32.12910 110 0 1 + 21.45404 104.19460 406.19871 32.80027 110 0 1 + 22.97715 105.56800 411.25599 33.30467 110 0 1 + 23.31070 105.56800 414.73635 33.63822 110 0 1 + 24.76379 106.94140 420.09417 34.14263 110 0 1 + 26.31753 108.31480 427.39798 34.81382 110 0 1 + 27.80908 109.68820 434.84979 35.48502 110 0 1 + 29.24237 111.06160 442.29337 36.15623 110 0 1 + 30.45447 112.43500 447.87370 36.66057 110 0 1 + 30.78823 112.43500 451.61995 36.99433 110 0 1 + 31.95041 113.80840 457.27233 37.49867 110 0 1 + 33.23447 115.18180 464.85577 38.16989 110 0 1 + 34.47822 116.55520 472.47626 38.84112 110 0 1 + 35.68638 117.92860 480.11294 39.51236 110 0 1 + 36.69669 119.30200 485.86065 40.01662 110 0 1 + 37.03062 119.30200 489.70215 40.35056 110 0 1 + 38.01483 120.67540 495.49874 40.85483 110 0 1 + 39.14407 122.04880 503.39465 41.52606 110 0 1 + 40.25516 123.42220 511.34019 42.19730 110 0 1 + 41.35187 124.79560 519.30166 42.86854 110 0 1 + 42.27092 126.16900 525.28152 43.37274 110 0 1 + 42.60501 126.16900 529.27230 43.70683 110 0 1 + 43.51705 127.54240 535.26413 44.21102 110 0 1 + 44.59123 128.91580 543.26180 44.88226 110 0 1 + 45.66205 130.28920 551.26866 45.55350 110 8 1 + 46.73102 131.66260 559.28359 46.22474 110 8 1 + 47.63258 133.03600 565.29934 46.72887 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5383,9 +5519,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 21.489 'Wadzand' - -10.00 36.870 'Hydrobiaklei' - -12.00 19.288 'Basisveen' - -12.50 116.005 'Eerste zandlaag' + -10.00 36.875 'Hydrobiaklei' + -12.00 19.283 'Basisveen' + -12.50 115.279 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -5407,7 +5543,7 @@ Layer name -7.00 -6.45 'Wadzand' -10.00 -7.84 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -44.53 'Eerste zandlaag' + -12.50 -44.25 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5629,7 +5765,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 96.29188 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 96.28305 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5654,20 +5790,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.84 : Percentage mobilized resistance left - 13.24 : Percentage mobilized resistance right - 109.48 : Effective left - 202.65 : Effective right + 11.80 : Percentage mobilized resistance left + 13.22 : Percentage mobilized resistance right + 109.18 : Effective left + 202.35 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 925.02 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -11008.78 : Max moment left --16790.25 : Max moment right --1277.95 : Max mobilized moment left --1716.48 : Max mobilized moment right - 38.42 : Vertical force left - 52.65 : Vertical force right +-16790.18 : Max moment right +-1274.78 : Max mobilized moment left +-1713.37 : Max mobilized moment right + 38.32 : Vertical force left + 52.61 : Vertical force right 11.6 : Max mobilized moment percentage left 10.2 : Max mobilized moment percentage right -2.43 : Level of single support @@ -5676,17 +5812,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.42 : Active force -52.65 : Passive force --38.42 : Plugged active force -52.65 : Plugged passive force +-38.32 : Active force +52.61 : Passive force +-38.32 : Plugged active force +52.61 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -14.23 : Resulting Vertical Force Unplugged -14.23 : Resulting Vertical Force Plugged +14.29 : Resulting Vertical Force Unplugged +14.29 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -5699,192 +5835,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -14.33849 - 0.00000 0.00000 -13.93880 - 0.00000 0.00000 -13.53911 - 0.00000 0.00000 -13.13941 - 0.00000 0.00000 -12.73972 - 0.00000 0.00000 -12.34003 - 0.00000 0.00000 -12.34003 - 0.00000 0.00000 -11.94034 - 0.00000 0.00000 -11.54065 - 0.00000 0.00000 -11.14095 - 0.00000 0.00000 -10.74126 - 0.00000 0.00000 -10.34157 - 0.00000 0.00000 -10.34157 - -0.00283 -0.07063 -9.80865 - -0.02260 -0.28253 -9.27574 - -0.07628 -0.63569 -8.74281 - -0.18082 -1.13011 -8.20986 - -0.35316 -1.76580 -7.67688 - -0.35316 -1.76580 -7.67688 - -0.56080 -2.40345 -7.23269 - -0.83712 -3.13920 -6.78843 - -1.19191 -3.97305 -6.34406 - -1.63500 -4.90500 -5.89953 - -2.17618 -5.93505 -5.45479 - -2.17618 -5.93505 -5.45479 - -2.82528 -7.06320 -5.00979 - -3.59209 -8.28945 -4.56445 - -4.48644 -9.61380 -4.11863 - -5.51812 -11.03625 -3.67223 - -6.69696 -12.55680 -3.22514 - -6.69696 148.14320 -3.22514 - 5.98427 146.75707 -2.84020 - 18.54318 145.29838 -2.45582 - 30.97351 143.76714 -2.07316 - 43.26904 142.16334 -1.69338 - 55.42353 140.48699 -1.31762 - 55.42353 44.19511 -1.31762 - 60.32994 41.86113 -0.82742 - 64.96302 39.39967 -0.34710 - 69.30822 36.81071 0.12263 - 73.35102 34.09426 0.58106 - 77.07687 31.25032 1.02748 - 77.07752 31.23945 1.02748 - 79.50125 29.43124 1.33323 - 81.79699 28.01579 1.63257 - 83.99146 26.88866 1.92532 - 86.10597 26.01632 2.21130 - 88.16002 25.36676 2.49034 - 88.15980 25.36505 2.49034 - 88.66594 25.25146 2.55900 - 89.16995 25.15165 2.62721 - 89.67211 25.06748 2.69497 - 90.17275 24.99892 2.76227 - 90.67216 24.94405 2.82913 - 90.67186 24.94730 2.82913 - 93.06080 22.83729 3.15647 - 95.24048 20.76196 3.47209 - 97.21407 18.71297 3.77573 - 98.98344 16.67508 4.06715 - 100.54924 14.64189 4.34610 - 100.54936 14.64278 4.34610 - 101.91215 12.61414 4.61235 - 103.07238 10.59136 4.86576 - 104.03062 8.57443 5.10621 - 104.78747 6.56351 5.33358 - 105.34352 4.55859 5.54774 - 105.34352 4.55874 5.54774 - 105.69944 2.56045 5.74860 - 105.85579 0.56758 5.93614 - 105.81315 -1.41945 6.11037 - 105.57209 -3.40081 6.27130 - 105.13317 -5.37684 6.41892 - 105.13315 -5.37657 6.41892 - 104.18733 -8.13359 6.60328 - 102.85618 -10.88124 6.76190 - 101.14101 -13.61981 6.89521 - 99.04302 -16.35002 7.00364 - 96.56333 -19.07309 7.08760 - 96.56329 -19.07231 7.08760 - 94.03749 -19.76970 7.14414 - 91.42735 -20.37061 7.18065 - 88.74517 -20.87844 7.19772 - 86.00289 -21.29561 7.19590 - 83.21343 -21.59455 7.17578 - 83.21350 -21.59417 7.17578 - 80.32272 -23.05114 7.13790 - 77.20503 -24.85827 7.08292 - 73.87388 -26.33520 7.01154 - 70.37219 -27.48193 6.92447 - 66.74289 -28.29846 6.82241 - 66.74289 -28.29847 6.82241 - 62.45627 -29.04761 6.68747 - 58.05765 -29.79675 6.53495 - 53.54704 -30.54590 6.36611 - 48.92443 -31.29504 6.18222 - 44.18982 -32.04419 5.98455 - 44.18982 -32.04419 5.98455 - 39.34322 -32.79333 5.77441 - 34.38461 -33.54248 5.55318 - 29.31401 -34.29162 5.32230 - 24.13142 -35.04077 5.08319 - 18.83683 -35.78991 4.83729 - 18.83618 -35.78673 4.83729 - 13.43007 -36.53587 4.58607 - 7.91196 -37.28502 4.33109 - 2.33546 -36.95841 4.07387 - -3.06082 -35.07074 3.81597 - -8.12281 -32.62337 3.55891 - -8.12182 -32.61550 3.55891 - -12.80009 -29.92886 3.30423 - -17.05894 -27.00935 3.05317 - -20.87224 -24.01663 2.80679 - -24.24451 -21.11617 2.56618 - -27.19208 -18.33825 2.33241 - -27.19200 -18.33809 2.33241 - -27.22864 -18.30148 2.32934 - -27.26521 -18.26488 2.32626 - -27.30170 -18.22831 2.32319 - -27.33812 -18.19175 2.32012 - -27.37447 -18.15521 2.31705 - -27.37446 -18.15523 2.31705 - -28.05310 -17.56305 2.25897 - -28.70931 -16.97490 2.20140 - -29.34323 -16.39002 2.14435 - -29.95499 -15.80833 2.08784 - -30.54471 -15.23042 2.03187 - -30.54582 -15.22056 2.03187 - -32.26299 -13.40588 1.85885 - -33.76460 -11.62536 1.69169 - -35.05405 -9.86933 1.53062 - -36.13410 -8.13482 1.37587 - -37.00742 -6.42552 1.22768 - -37.00707 -6.42071 1.22768 - -37.36667 -5.56699 1.15611 - -37.67521 -4.71837 1.08623 - -37.93293 -3.87275 1.01806 - -38.13999 -3.02972 0.95161 - -38.29658 -2.19055 0.88688 - -38.29650 -2.19205 0.88688 - -38.43321 -0.89524 0.79204 - -38.46688 0.15594 0.70121 - -38.40468 1.21219 0.61439 - -38.24605 2.27551 0.53156 - -37.99038 3.34399 0.45272 - -37.99054 3.34697 0.45272 - -37.58775 5.23836 0.37786 - -37.06127 6.33484 0.30692 - -36.43435 7.44625 0.23984 - -35.70554 8.57448 0.17655 - -34.87335 9.71746 0.11698 - -34.87335 9.71666 0.11698 - -33.83640 11.01827 0.05573 - -32.67048 12.29623 -0.00125 - -31.37788 13.55223 -0.05413 - -29.96072 14.78785 -0.10308 - -28.42094 16.00465 -0.14825 - -28.42349 16.02346 -0.14825 - -26.23844 15.19468 -0.20552 - -24.16756 14.39625 -0.25631 - -22.20533 13.64427 -0.30111 - -20.34456 12.94817 -0.34040 - -18.57711 12.31049 -0.37468 - -18.57597 12.31028 -0.37468 - -16.89226 11.75320 -0.40439 - -15.28180 11.26627 -0.42993 - -13.73461 10.84569 -0.45169 - -12.24517 10.42169 -0.47004 - -10.81917 9.94111 -0.48537 - -10.81929 9.93733 -0.48537 - -9.46450 9.40970 -0.49804 - -8.18637 8.84339 -0.50839 - -6.98981 8.24575 -0.51669 - -5.87873 7.62314 -0.52325 - -4.85624 6.98093 -0.52836 - -4.85632 6.97920 -0.52836 - -3.93647 6.20000 -0.53230 - -3.11518 5.53099 -0.53526 - -2.38819 4.85334 -0.53744 - -1.75654 4.16941 -0.53901 - -1.22097 3.48094 -0.54014 - -1.22101 3.48046 -0.54014 - -0.78214 2.78865 -0.54100 - -0.44031 2.09426 -0.54167 - -0.19584 1.39783 -0.54221 - -0.04899 0.69971 -0.54268 - 0.00001 0.00003 -0.54314 + 0.00000 0.00000 -14.35097 + 0.00000 0.00000 -13.95089 + 0.00000 0.00000 -13.55081 + 0.00000 0.00000 -13.15073 + 0.00000 0.00000 -12.75066 + 0.00000 0.00000 -12.35058 + 0.00000 0.00000 -12.35058 + 0.00000 0.00000 -11.95050 + 0.00000 0.00000 -11.55042 + 0.00000 0.00000 -11.15034 + 0.00000 0.00000 -10.75026 + 0.00000 0.00000 -10.35018 + 0.00000 0.00000 -10.35018 + -0.00283 -0.07063 -9.81675 + -0.02260 -0.28253 -9.28331 + -0.07628 -0.63569 -8.74987 + -0.18082 -1.13011 -8.21641 + -0.35316 -1.76580 -7.68291 + -0.35316 -1.76580 -7.68291 + -0.56080 -2.40345 -7.23829 + -0.83712 -3.13920 -6.79360 + -1.19191 -3.97305 -6.34880 + -1.63500 -4.90500 -5.90384 + -2.17618 -5.93505 -5.45867 + -2.17618 -5.93505 -5.45867 + -2.82528 -7.06320 -5.01324 + -3.59209 -8.28945 -4.56746 + -4.48644 -9.61380 -4.12122 + -5.51812 -11.03625 -3.67439 + -6.69696 -12.55680 -3.22687 + -6.69696 148.14320 -3.22687 + 5.98427 146.75707 -2.84156 + 18.54318 145.29838 -2.45681 + 30.97351 143.76714 -2.07378 + 43.26904 142.16334 -1.69363 + 55.42353 140.48699 -1.31750 + 55.42353 44.20393 -1.31750 + 60.33095 41.86996 -0.82681 + 64.96503 39.40849 -0.34599 + 69.31124 36.81953 0.12423 + 73.35504 34.10308 0.58314 + 77.08190 31.25915 1.03005 + 77.08255 31.24826 1.03005 + 79.50699 29.44017 1.33614 + 81.80346 28.02526 1.63582 + 83.99873 26.89902 1.92891 + 86.11410 26.02767 2.21524 + 88.16910 25.37918 2.49462 + 88.16888 25.37747 2.49462 + 88.67527 25.26417 2.56336 + 89.17953 25.16464 2.63165 + 89.68196 25.08077 2.69950 + 90.18287 25.01250 2.76689 + 90.68255 24.95794 2.83383 + 90.68226 24.96120 2.83383 + 93.07261 22.85168 3.16159 + 95.25375 20.77688 3.47763 + 97.22886 18.72825 3.78170 + 98.99976 16.69053 4.07353 + 100.56712 14.65752 4.35290 + 100.56723 14.65841 4.35290 + 101.93160 12.62996 4.61956 + 103.09342 10.60738 4.87338 + 104.05327 8.59067 5.11424 + 104.81175 6.57997 5.34201 + 105.36947 4.57529 5.55658 + 105.36947 4.57544 5.55658 + 105.72703 2.57690 5.75784 + 105.88504 0.58429 5.94578 + 105.84409 -1.40248 6.12040 + 105.60474 -3.38355 6.28171 + 105.16755 -5.35930 6.42972 + 105.16754 -5.35902 6.42972 + 104.22420 -8.11563 6.61461 + 102.89560 -10.86283 6.77375 + 101.18303 -13.60094 6.90757 + 99.08773 -16.33066 7.01650 + 96.61078 -19.05323 7.10095 + 96.61074 -19.05245 7.10095 + 94.08512 -19.77714 7.15793 + 91.47414 -20.37606 7.19489 + 88.79138 -20.88184 7.21238 + 86.04879 -21.29691 7.21098 + 83.25931 -21.59368 7.19125 + 83.25938 -21.59329 7.19125 + 80.36873 -23.05003 7.15377 + 77.25119 -24.85716 7.09917 + 73.92018 -26.33409 7.02817 + 70.41863 -27.48082 6.94147 + 66.78948 -28.29735 6.83976 + 66.78947 -28.29735 6.83976 + 62.50302 -29.04650 6.70522 + 58.10457 -29.79564 6.55309 + 53.59413 -30.54478 6.38462 + 48.97168 -31.29393 6.20108 + 44.23724 -32.04307 6.00376 + 44.23724 -32.04307 6.00376 + 39.39080 -32.79222 5.79394 + 34.43237 -33.54136 5.57303 + 29.36194 -34.29051 5.34246 + 24.17951 -35.03965 5.10364 + 18.88508 -35.78880 4.85802 + 18.88444 -35.78562 4.85802 + 13.47849 -36.53476 4.60706 + 7.96054 -37.28391 4.35233 + 2.38425 -36.95650 4.09535 + -3.01153 -35.06537 3.83767 + -8.07231 -32.61267 3.58081 + -8.07133 -32.60482 3.58081 + -12.74264 -29.86306 3.32633 + -16.99125 -26.93813 3.07545 + -20.79313 -23.93262 2.82923 + -24.15133 -21.01197 2.58876 + -27.08181 -18.21375 2.35510 + -27.08173 -18.21361 2.35510 + -27.11812 -18.17672 2.35202 + -27.15443 -18.13986 2.34895 + -27.19068 -18.10301 2.34588 + -27.22685 -18.06618 2.34281 + -27.26294 -18.02937 2.33974 + -27.26294 -18.02939 2.33974 + -27.93673 -17.43376 2.28168 + -28.58796 -16.84216 2.22413 + -29.21677 -16.25382 2.16711 + -29.82329 -15.66866 2.11061 + -30.40764 -15.08729 2.05465 + -30.40875 -15.07741 2.05465 + -32.10808 -13.25179 1.88166 + -33.59055 -11.46031 1.71450 + -34.85954 -9.69335 1.55339 + -35.91781 -7.94792 1.39858 + -36.76805 -6.22776 1.25028 + -36.76763 -6.22595 1.25028 + -37.11537 -5.36682 1.17863 + -37.41175 -4.51281 1.10867 + -37.65697 -3.66181 1.04041 + -37.85122 -2.81343 0.97385 + -37.99466 -1.96894 0.90901 + -37.99459 -1.97054 0.90901 + -38.10505 -0.57057 0.81396 + -38.10869 0.49140 0.72289 + -38.01546 1.55844 0.63579 + -37.82484 2.63256 0.55264 + -37.53618 3.71182 0.47344 + -37.53619 3.71062 0.47344 + -37.14859 4.80871 0.39817 + -36.66073 5.91587 0.32678 + -36.07145 7.03790 0.25919 + -35.37932 8.17665 0.19537 + -34.58286 9.33004 0.13523 + -34.58287 9.32913 0.13523 + -33.58431 10.63791 0.07332 + -32.45609 11.92277 0.01565 + -31.20050 13.18538 -0.03796 + -29.81970 14.42732 -0.08764 + -28.31567 15.65015 -0.13357 + -28.31826 15.66928 -0.13357 + -26.17975 14.88386 -0.19192 + -24.14943 14.12751 -0.24381 + -22.22194 13.41629 -0.28972 + -20.39032 12.75956 -0.33011 + -18.64661 12.15987 -0.36548 + -18.64545 12.15973 -0.36548 + -16.98023 11.63921 -0.39626 + -15.38326 11.18739 -0.42285 + -13.84503 10.79418 -0.44563 + -12.36146 10.38885 -0.46498 + -10.93895 9.92363 -0.48128 + -10.93906 9.91981 -0.48128 + -9.58583 9.40434 -0.49490 + -8.30779 8.84708 -0.50615 + -7.11025 8.25549 -0.51533 + -5.99756 7.63602 -0.52274 + -4.97321 6.99414 -0.52867 + -4.97329 6.99237 -0.52867 + -4.04036 6.33259 -0.53340 + -3.20083 5.65859 -0.53713 + -2.45648 4.97341 -0.54006 + -1.80868 4.27947 -0.54235 + -1.25855 3.57857 -0.54420 + -1.25859 3.57807 -0.54420 + -0.80706 2.87143 -0.54577 + -0.45482 2.15986 -0.54714 + -0.20251 1.44390 -0.54837 + -0.05072 0.72391 -0.54954 + 0.00001 0.00003 -0.55069 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6212,7 +6348,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -6224,7 +6360,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -6235,17 +6371,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -6254,7 +6390,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -6284,13 +6420,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -6391,48 +6527,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 6.59159 0.00000 7.80254 0.68000 330 84 3 - 11.38842 0.00000 15.60507 1.36000 220 73 2 - 15.36926 0.00000 23.40761 2.04000 220 66 2 - 19.32795 0.00000 31.21015 2.72000 220 62 2 - 22.50823 0.00000 37.06205 3.23000 220 61 2 - 23.45284 0.00000 39.50034 3.44250 220 59 2 - 24.24429 0.00000 40.96332 3.57000 220 59 2 - 25.22321 0.00000 42.91395 3.74000 220 59 2 - 26.20065 0.00000 44.86459 3.91000 220 58 2 - 27.17661 0.00000 46.81522 4.08000 220 58 2 - 27.96216 0.00000 48.27820 4.20750 220 58 2 - 9.13639 0.00000 20.56677 6.30726 110 44 1 - 9.48541 0.98100 20.32861 6.32894 110 47 1 - 9.82994 1.96200 20.08785 6.35785 110 49 1 - 10.01225 2.94300 19.91182 6.38676 220 50 2 - 10.05204 3.92400 19.78100 6.41566 220 51 2 - 10.10611 4.90500 19.70421 6.43734 220 51 2 - 10.09475 4.90500 19.66214 6.45179 220 51 2 - 10.15441 5.88600 19.61027 6.47347 220 52 2 - 10.21193 6.86700 19.55671 6.50238 220 52 2 - 10.27150 7.84800 19.51850 6.53129 220 53 2 - 10.33202 8.82900 19.49272 6.56019 220 53 2 - 10.39168 9.81000 19.47992 6.58187 220 53 2 - 10.40343 9.81000 19.47440 6.63230 220 53 2 - 10.45275 10.79100 19.47010 6.61800 220 54 2 - 10.51182 11.77200 19.47023 6.64691 220 54 2 - 10.56949 12.75300 19.47646 6.67582 220 54 2 - 10.62544 13.73400 19.48795 6.70472 220 55 2 - 10.67580 14.71500 19.49947 6.72640 220 55 2 - 10.68455 14.71500 19.51051 6.74375 220 55 2 - 10.75135 16.08840 19.53319 6.77410 220 55 2 - 10.81858 17.46180 19.56875 6.81457 220 55 2 - 10.88092 18.83520 19.60984 6.85503 220 55 2 - 10.93819 20.20860 19.65566 6.89550 220 56 2 - 10.98280 21.58200 19.69261 6.92585 220 56 2 - 24.66687 21.58200 40.65119 7.89320 220 61 2 - 22.88596 25.39730 37.49247 5.34869 220 61 2 - 21.07131 29.21260 33.28909 4.15339 220 63 2 - 19.23800 33.02790 29.09277 2.95808 220 66 2 - 17.38587 36.84320 24.90135 1.76278 220 70 2 - 15.97711 40.65850 21.76001 0.86630 220 73 2 - 10.46702 40.65850 12.41397 0.26865 330 84 3 + 6.59450 0.00000 7.80254 0.68000 330 85 3 + 11.39907 0.00000 15.60507 1.36000 220 73 2 + 15.38102 0.00000 23.40761 2.04000 220 66 2 + 19.34083 0.00000 31.21015 2.72000 220 62 2 + 22.52223 0.00000 37.06205 3.23000 220 61 2 + 23.46683 0.00000 39.50034 3.44250 220 59 2 + 24.25856 0.00000 40.96332 3.57000 220 59 2 + 25.23775 0.00000 42.91395 3.74000 220 59 2 + 26.21547 0.00000 44.86459 3.91000 220 58 2 + 27.19172 0.00000 46.81522 4.08000 220 58 2 + 27.97755 0.00000 48.27820 4.20750 220 58 2 + 9.14109 0.00000 20.56677 6.30726 110 44 1 + 9.49054 0.98100 20.32861 6.32894 110 47 1 + 9.83548 1.96200 20.08785 6.35785 110 49 1 + 10.01388 2.94300 19.91182 6.38676 220 50 2 + 10.05378 3.92400 19.78100 6.41566 220 51 2 + 10.10796 4.90500 19.70421 6.43734 220 51 2 + 10.09661 4.90500 19.66214 6.45179 220 51 2 + 10.15638 5.88600 19.61027 6.47347 220 52 2 + 10.21401 6.86700 19.55671 6.50238 220 52 2 + 10.27369 7.84800 19.51850 6.53129 220 53 2 + 10.33432 8.82900 19.49272 6.56019 220 53 2 + 10.39409 9.81000 19.47992 6.58187 220 53 2 + 10.39603 9.81000 19.47440 6.59633 220 53 2 + 10.45527 10.79100 19.47010 6.61800 220 54 2 + 10.51445 11.77200 19.47023 6.64691 220 54 2 + 10.57223 12.75300 19.47646 6.67582 220 54 2 + 10.62828 13.73400 19.48795 6.70472 220 55 2 + 10.67875 14.71500 19.49947 6.72640 220 55 2 + 10.68749 14.71500 19.51051 6.74375 220 55 2 + 10.75444 16.08840 19.53319 6.77410 220 55 2 + 10.82181 17.46180 19.56875 6.81457 220 55 2 + 10.88429 18.83520 19.60984 6.85503 220 56 2 + 10.94170 20.20860 19.65566 6.89550 220 56 2 + 10.98644 21.58200 19.69261 6.92585 220 56 2 + 24.23197 21.58200 40.65119 6.24517 220 60 2 + 22.90102 25.39730 37.49247 5.34869 220 61 2 + 21.08683 29.21260 33.28909 4.15339 220 63 2 + 19.25399 33.02790 29.09277 2.95808 220 66 2 + 17.40231 36.84320 24.90135 1.76278 220 70 2 + 15.99400 40.65850 21.76001 0.86630 220 74 2 + 10.47066 40.65850 12.41397 0.26865 330 84 3 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -6446,94 +6582,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 14.39133 78.80074 17.96911 4.49986 330 80 3 - 20.88375 80.26733 36.36631 5.18955 220 57 2 - 21.87897 81.73392 39.87198 5.70681 220 55 2 - 22.15416 81.73392 42.19987 3.61198 220 52 2 - 23.80958 83.20052 45.68064 6.56892 220 52 2 - 25.26933 84.66711 50.30746 7.25860 220 50 2 - 24.78905 86.13371 54.92251 7.94829 110 45 1 - 24.03508 87.60031 59.53073 8.63797 110 40 1 - 23.14971 89.06690 62.98476 9.15524 110 37 1 - 23.32444 89.06690 64.15130 9.32997 110 36 1 - 23.31291 89.08652 64.19752 9.33689 110 36 1 - 23.30368 89.10614 64.25913 9.34611 110 36 1 - 23.29447 89.12576 64.32073 9.35534 110 36 1 - 23.28526 89.14538 64.38231 9.36457 110 36 1 - 23.27376 89.16500 64.42851 9.37149 110 36 1 - 20.65703 89.16500 58.82727 11.38885 110 35 1 - 20.53214 89.53778 59.19268 11.49627 110 35 1 - 20.44510 89.91056 59.68017 11.63950 110 34 1 - 20.36014 90.28334 60.16799 11.78273 110 34 1 - 20.27732 90.65612 60.65612 11.92596 110 33 1 - 20.16087 91.02890 61.02242 12.03338 110 33 1 - 20.30976 91.02890 61.53041 12.18226 110 33 1 - 19.95691 92.20610 62.68904 12.52149 110 32 1 - 19.74057 93.38330 64.23606 12.97380 110 31 1 - 19.54858 94.56050 65.78549 13.42610 110 30 1 - 19.38189 95.73770 67.33709 13.87840 110 29 1 - 19.12836 96.91490 68.50203 14.21763 110 28 1 - 19.29797 96.91490 69.08491 14.38724 110 28 1 - 19.18129 97.50350 69.66807 14.55686 110 28 1 - 19.12793 98.09210 70.44596 14.78301 110 27 1 - 19.08140 98.68070 71.22427 15.00916 110 27 1 - 19.04174 99.26930 72.00296 15.23531 110 26 1 - 18.95246 99.85790 72.58721 15.40493 110 26 1 - 17.03449 99.85790 73.07750 13.48696 110 23 1 - 18.97264 100.75061 73.96428 15.80446 110 26 1 - 18.95232 101.64332 75.14728 16.14746 110 25 1 - 18.94801 102.53603 76.33100 16.49046 110 25 1 - 18.95970 103.42874 77.51539 16.83345 110 24 1 - 18.90160 104.32145 78.40407 17.09070 110 24 1 - 36.74444 104.32145 78.99672 34.93354 110 47 1 - 19.03090 105.21416 79.88599 17.51945 110 24 1 - 19.09014 106.10687 81.07214 17.86244 110 24 1 - 19.16480 106.99958 82.25880 18.20544 110 23 1 - 19.25463 107.89229 83.44594 18.54844 110 23 1 - 19.27361 108.78500 84.33659 18.80568 110 23 1 - 20.84787 108.78500 56.86688 20.61391 110 37 1 - 22.49810 106.76600 61.08371 22.38663 110 37 1 - 24.74776 104.74700 66.69564 24.75026 110 0 1 - 27.00562 102.72800 72.29483 27.11388 110 0 1 - 29.27135 100.70900 77.88124 29.47751 110 0 1 - 30.95373 98.69000 82.06310 31.25023 110 0 1 - 18.58336 98.69000 272.58042 20.36232 110 0 1 - 18.39909 100.06340 271.86044 20.86529 110 0 1 - 18.46020 101.43680 274.54312 21.53590 110 0 1 - 18.59322 102.81020 279.33150 22.20652 110 0 1 - 18.79230 104.18360 285.19980 22.87714 110 0 1 - 18.88397 105.55700 290.01763 23.38010 110 0 1 - 19.21928 105.55700 293.38484 23.71541 110 0 1 - 19.36569 106.93040 298.60646 24.21837 110 0 1 - 19.72980 108.30380 305.78478 24.88899 110 0 1 - 20.13935 109.67720 313.15603 25.55961 110 0 1 - 20.58977 111.05060 320.66827 26.23022 110 0 1 - 20.90880 112.42400 326.37074 26.73319 110 0 1 - 21.24411 112.42400 330.20204 27.06849 110 0 1 - 21.59492 113.79740 335.98580 27.57146 110 0 1 - 22.14141 115.17080 343.74884 28.24207 110 0 1 - 22.71238 116.54420 351.56245 28.91269 110 0 1 - 23.30429 117.91760 359.41683 29.58331 110 0 1 - 23.74595 119.29100 365.32890 30.08627 110 0 1 - 24.08126 119.29100 369.28008 30.42158 110 0 1 - 24.53697 120.66440 375.21958 30.92454 110 0 1 - 25.17199 122.03780 383.15752 31.59516 110 0 1 - 25.81649 123.41120 391.11465 32.26578 110 0 1 - 26.46832 124.78460 399.08801 32.93639 110 0 1 - 26.95769 126.15800 405.07683 33.43936 110 0 1 - 27.29299 126.15800 409.07356 33.77467 110 0 1 - 27.78562 127.53140 415.07425 34.27763 110 0 1 - 28.44819 128.90480 423.08354 34.94825 110 0 1 - 29.11233 130.27820 431.10170 35.61886 110 0 1 - 29.77731 131.65160 439.12760 36.28948 110 0 1 - 30.27477 133.02500 445.15132 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 14.40207 78.80074 17.96911 4.49986 330 80 3 + 20.91926 80.26733 36.36631 5.18955 220 58 2 + 21.91482 81.73392 39.87198 5.70681 220 55 2 + 22.85537 81.73392 42.19987 6.05165 220 54 2 + 23.84575 83.20052 45.68064 6.56892 220 52 2 + 25.30579 84.66711 50.30746 7.25860 220 50 2 + 24.92368 86.13371 54.92251 7.94829 110 45 1 + 24.17053 87.60031 59.53073 8.63797 110 41 1 + 23.28582 89.06690 62.98476 9.15524 110 37 1 + 23.46055 89.06690 64.15130 9.32997 110 37 1 + 23.44902 89.08652 64.19752 9.33689 110 37 1 + 23.43980 89.10614 64.25913 9.34611 110 36 1 + 23.43060 89.12576 64.32073 9.35534 110 36 1 + 23.42140 89.14538 64.38231 9.36457 110 36 1 + 23.40990 89.16500 64.42851 9.37149 110 36 1 + 20.74779 89.16500 58.82727 11.38885 110 35 1 + 20.62299 89.53778 59.19268 11.49627 110 35 1 + 20.53603 89.91056 59.68017 11.63950 110 34 1 + 20.45115 90.28334 60.16799 11.78273 110 34 1 + 20.36839 90.65612 60.65612 11.92596 110 34 1 + 20.25200 91.02890 61.02242 12.03338 110 33 1 + 20.40088 91.02890 61.53041 12.18226 110 33 1 + 20.04814 92.20610 62.68904 12.52149 110 32 1 + 19.83179 93.38330 64.23606 12.97380 110 31 1 + 19.63967 94.56050 65.78549 13.42610 110 30 1 + 19.47270 95.73770 67.33709 13.87840 110 29 1 + 19.21874 96.91490 68.50203 14.21763 110 28 1 + 19.38835 96.91490 69.08491 14.38724 110 28 1 + 19.27140 97.50350 69.66807 14.55686 110 28 1 + 19.21771 98.09210 70.44596 14.78301 110 27 1 + 19.17080 98.68070 71.22427 15.00916 110 27 1 + 19.13072 99.26930 72.00296 15.23531 110 27 1 + 19.04096 99.85790 72.58721 15.40493 110 26 1 + 19.18325 99.85790 73.07750 15.54721 110 26 1 + 19.06031 100.75061 73.96428 15.80446 110 26 1 + 19.03903 101.64332 75.14728 16.14746 110 25 1 + 19.03361 102.53603 76.33100 16.49046 110 25 1 + 19.04402 103.42874 77.51539 16.83345 110 25 1 + 18.98447 104.32145 78.40407 17.09070 110 24 1 + 19.15597 104.32145 78.99672 17.26220 110 24 1 + 19.11213 105.21416 79.88599 17.51945 110 24 1 + 19.16954 106.10687 81.07214 17.86244 110 24 1 + 19.24222 106.99958 82.25880 18.20544 110 23 1 + 19.32991 107.89229 83.44594 18.54844 110 23 1 + 19.34661 108.78500 84.33659 18.80568 110 23 1 + 20.88437 108.78500 56.86688 20.61391 110 37 1 + 22.53328 106.76600 61.08371 22.38663 110 37 1 + 24.78155 104.74700 66.69564 24.75026 110 37 1 + 27.03797 102.72800 72.29483 27.11388 110 0 1 + 29.30222 100.70900 77.88124 29.47751 110 0 1 + 30.98309 98.69000 82.06310 31.25023 110 0 1 + 18.75948 98.69000 272.58042 20.36232 110 0 1 + 18.56221 100.06340 271.86044 20.86529 110 0 1 + 18.61014 101.43680 274.54312 21.53590 110 0 1 + 18.72991 102.81020 279.33150 22.20652 110 0 1 + 18.91578 104.18360 285.19980 22.87714 110 0 1 + 18.99439 105.55700 290.01763 23.38010 110 0 1 + 19.32969 105.55700 293.38484 23.71541 110 0 1 + 19.46325 106.93040 298.60646 24.21837 110 0 1 + 19.81477 108.30380 305.78478 24.88899 110 0 1 + 20.21203 109.67720 313.15603 25.55961 110 0 1 + 20.65046 111.05060 320.66827 26.23022 110 0 1 + 20.95785 112.42400 326.37074 26.73319 110 0 1 + 21.29316 112.42400 330.20204 27.06849 110 0 1 + 21.63271 113.79740 335.98580 27.57146 110 0 1 + 22.16829 115.17080 343.74884 28.24207 110 0 1 + 22.72870 116.54420 351.56245 28.91269 110 0 1 + 23.31041 117.91760 359.41683 29.58331 110 0 1 + 23.74222 119.29100 365.32890 30.08627 110 0 1 + 24.07753 119.29100 369.28008 30.42158 110 0 1 + 24.52374 120.66440 375.21958 30.92454 110 0 1 + 25.14955 122.03780 383.15752 31.59516 110 0 1 + 25.78511 123.41120 391.11465 32.26578 110 0 1 + 26.42821 124.78460 399.08801 32.93639 110 0 1 + 26.90899 126.15800 405.07683 33.43936 110 0 1 + 27.24430 126.15800 409.07356 33.77467 110 0 1 + 27.72844 127.53140 415.07425 34.27763 110 0 1 + 28.38261 128.90480 423.08354 34.94825 110 0 1 + 29.03839 130.27820 431.10170 35.61886 110 0 1 + 29.69505 131.65160 439.12760 36.28948 110 0 1 + 30.18418 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6548,13 +6684,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.686 'Ophooglaag zand' - -3.50 22.882 'Hollandveen' - -5.70 13.798 'Oude Zeeklei' - -7.00 25.165 'Wadzand' - -10.00 39.462 'Hydrobiaklei' - -12.00 12.942 'Basisveen' - -12.50 80.715 'Eerste zandlaag' + -3.00 7.691 'Ophooglaag zand' + -3.50 22.888 'Hollandveen' + -5.70 13.779 'Oude Zeeklei' + -7.00 25.290 'Wadzand' + -10.00 38.925 'Hydrobiaklei' + -12.00 12.959 'Basisveen' + -12.50 80.819 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6574,10 +6710,10 @@ Layer name -3.00 2.80 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 2.93 'Oude Zeeklei' - -7.00 7.55 'Wadzand' - -10.00 8.39 'Hydrobiaklei' + -7.00 7.59 'Wadzand' + -10.00 8.27 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.98 'Eerste zandlaag' + -12.50 31.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6806,7 +6942,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -6818,7 +6954,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -6985,53 +7121,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.43249 100.76161 31.86408 3.83947 110 23 1 - 7.36759 101.65432 33.06586 4.18246 110 22 1 - 7.29657 102.54703 34.26739 4.52546 110 21 1 - 7.21951 103.43974 35.46867 4.86846 110 20 1 - 7.13650 104.33245 36.36949 5.12571 110 20 1 - 7.13650 104.33245 36.96996 5.29720 110 19 1 - 7.04763 105.22516 37.87056 5.55445 110 19 1 - 6.95310 106.11787 39.07118 5.89745 110 18 1 - 6.85315 107.01058 40.27161 6.24045 110 17 1 - 6.74801 107.90329 41.47185 6.58344 110 16 1 - 6.63793 108.79600 42.37192 6.84069 110 0 1 - 7.69826 108.79600 25.59840 7.93223 110 0 1 - 9.59348 106.77700 29.70475 9.70495 110 0 1 - 12.07108 104.75800 35.16081 12.06858 110 34 1 - 14.54047 102.73900 40.59674 14.43220 110 36 1 - 17.00198 100.72000 46.01595 16.79583 110 37 1 - 18.86504 98.70100 50.07174 18.56855 110 38 1 - 24.56129 98.70100 177.20934 12.31919 110 14 1 - 24.23886 100.07440 165.98087 12.82216 110 15 1 - 24.00462 101.44780 168.35015 13.49277 110 14 1 - 23.76932 102.82120 174.33058 14.16339 110 14 1 - 23.53861 104.19460 181.36358 14.83401 110 13 1 - 23.22532 105.56800 186.93725 15.33697 110 12 1 - 23.41038 105.56800 190.74477 15.70861 110 12 1 - 23.11093 106.94140 196.54307 16.17524 110 12 1 - 22.91868 108.31480 204.37210 16.84586 110 11 1 - 22.93673 109.68820 212.27871 17.51648 110 11 1 - 23.82755 111.06160 220.23553 18.18709 110 11 1 - 24.51445 112.43500 226.22528 18.69006 110 11 1 - 24.84976 112.43500 230.22741 19.02537 110 11 1 - 25.50486 113.80840 236.24102 19.52833 110 11 1 - 26.29961 115.18180 244.27295 20.19895 110 11 1 - 27.06987 116.55520 252.31767 20.86956 110 11 1 - 27.81920 117.92860 260.37206 21.54018 110 11 1 - 28.38347 119.30200 266.41766 22.04314 110 11 1 - 30.45870 119.30200 270.45017 24.11838 110 11 1 - 29.26898 120.67540 276.50161 22.88141 110 11 1 - 29.97521 122.04880 284.57394 23.55203 110 11 1 - 30.67194 123.42220 292.65001 24.22265 110 10 1 - 31.36134 124.79560 300.72910 24.89327 110 10 1 - 31.87790 126.16900 306.79002 25.39623 110 10 1 - 32.21321 126.16900 310.83135 25.73154 110 10 1 - 32.72651 127.54240 316.89433 26.23450 110 10 1 - 33.40518 128.91580 324.97970 26.90512 110 10 1 - 34.08227 130.28920 333.06652 27.57574 110 10 1 - 34.75852 131.66260 341.15457 28.24635 110 10 1 - 35.26699 133.03600 347.22126 28.74932 110 10 1 + 7.40179 100.76161 31.86408 3.83947 110 23 1 + 7.33568 101.65432 33.06586 4.18246 110 22 1 + 7.26346 102.54703 34.26739 4.52546 110 21 1 + 7.18523 103.43974 35.46867 4.86846 110 20 1 + 7.10106 104.33245 36.36949 5.12571 110 20 1 + 7.10106 104.33245 36.96996 5.29720 110 19 1 + 7.01106 105.22516 37.87056 5.55445 110 19 1 + 6.91543 106.11787 39.07118 5.89745 110 18 1 + 6.81440 107.01058 40.27161 6.24045 110 17 1 + 6.70821 107.90329 41.47185 6.58344 110 16 1 + 6.59710 108.79600 42.37192 6.84069 110 0 1 + 7.66177 108.79600 25.59840 7.93223 110 0 1 + 9.55830 106.77700 29.70475 9.70495 110 0 1 + 12.03728 104.75800 35.16081 12.06858 110 0 1 + 14.50811 102.73900 40.59674 14.43220 110 36 1 + 16.97111 100.72000 46.01595 16.79583 110 37 1 + 18.83569 98.70100 50.07174 18.56855 110 38 1 + 24.42315 98.70100 177.20934 12.31919 110 14 1 + 24.09672 100.07440 165.98087 12.82216 110 15 1 + 23.85866 101.44780 168.35015 13.49277 110 14 1 + 23.61976 102.82120 174.33058 14.16339 110 14 1 + 23.38573 104.19460 181.36358 14.83401 110 13 1 + 23.06943 105.56800 186.93725 15.33697 110 12 1 + 23.25449 105.56800 190.74477 15.67228 110 12 1 + 22.95243 106.94140 196.54307 16.17524 110 12 1 + 22.75811 108.31480 204.37210 16.84586 110 11 1 + 22.86406 109.68820 212.27871 17.51648 110 11 1 + 23.76686 111.06160 220.23553 18.18709 110 11 1 + 24.46539 112.43500 226.22528 18.69006 110 11 1 + 24.80070 112.43500 230.22741 19.02537 110 11 1 + 25.46708 113.80840 236.24102 19.52833 110 11 1 + 26.27274 115.18180 244.27295 20.19895 110 11 1 + 27.05356 116.55520 252.31767 20.86956 110 11 1 + 27.81308 117.92860 260.37206 21.54018 110 11 1 + 28.38720 119.30200 266.41766 22.04314 110 11 1 + 28.72251 119.30200 270.45017 22.37845 110 11 1 + 29.28222 120.67540 276.50161 22.88141 110 11 1 + 29.99764 122.04880 284.57394 23.55203 110 11 1 + 30.70332 123.42220 292.65001 24.22265 110 10 1 + 31.40145 124.79560 300.72910 24.89327 110 10 1 + 31.92660 126.16900 306.79002 25.39623 110 10 1 + 32.26191 126.16900 310.83135 25.73154 110 10 1 + 32.78369 127.54240 316.89433 26.23450 110 10 1 + 33.47076 128.91580 324.97970 26.90512 110 10 1 + 34.15621 130.28920 333.06652 27.57574 110 10 1 + 34.84078 131.66260 341.15457 28.24635 110 10 1 + 35.35758 133.03600 347.22126 28.74932 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7049,9 +7185,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.133 'Hydrobiaklei' - -12.00 6.649 'Basisveen' - -12.50 96.694 'Eerste zandlaag' + -10.00 6.103 'Hydrobiaklei' + -12.00 6.632 'Basisveen' + -12.50 96.443 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -7073,7 +7209,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.30 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -37.12 'Eerste zandlaag' + -12.50 -37.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -7295,7 +7431,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 240.67648 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 240.67366 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7320,20 +7456,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.50 : Percentage mobilized resistance left - 9.41 : Percentage mobilized resistance right - 87.88 : Effective left - 87.01 : Effective right + 9.49 : Percentage mobilized resistance left + 9.39 : Percentage mobilized resistance right + 87.76 : Effective left + 86.90 : Effective right 1112.88 : Water pressure left 1112.88 : Water pressure right 925.02 : Max effective resistance left 925.02 : Max effective resistance right -11008.78 : Max moment left -11008.78 : Max moment right --1017.70 : Max mobilized moment left --1017.24 : Max mobilized moment right - 29.98 : Vertical force left - 29.96 : Vertical force right +-1016.21 : Max mobilized moment left +-1015.81 : Max mobilized moment right + 29.93 : Vertical force left + 29.92 : Vertical force right 9.2 : Max mobilized moment percentage left 9.2 : Max mobilized moment percentage right -2.43 : Level of single support @@ -7342,17 +7478,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.96 : Active force -29.98 : Passive force --29.96 : Plugged active force -29.98 : Plugged passive force +-29.92 : Active force +29.93 : Passive force +-29.92 : Plugged active force +29.93 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -0.02 : Resulting Vertical Force Unplugged -0.02 : Resulting Vertical Force Plugged +0.01 : Resulting Vertical Force Unplugged +0.01 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -7365,192 +7501,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.80041 - 0.00000 0.00000 -4.75412 - 0.00000 0.00000 -4.70782 - 0.00000 0.00000 -4.66153 - 0.00000 0.00000 -4.61524 - 0.00000 0.00000 -4.56895 - 0.00000 0.00000 -4.56895 - 0.00000 0.00000 -4.52265 - 0.00000 0.00000 -4.47636 - 0.00000 0.00000 -4.43007 - 0.00000 0.00000 -4.38378 - 0.00000 0.00000 -4.33748 - 0.00000 0.00000 -4.33748 - 0.00000 0.00000 -4.27576 - 0.00000 0.00000 -4.21404 - 0.00000 0.00000 -4.15231 - 0.00000 0.00000 -4.09059 - 0.00000 0.00000 -4.02887 - 0.00000 0.00000 -4.02887 - 0.00000 0.00000 -3.97743 - 0.00000 0.00000 -3.92599 - 0.00000 0.00000 -3.87456 - 0.00000 0.00000 -3.82312 - 0.00000 0.00000 -3.77169 - 0.00000 0.00000 -3.77169 - 0.00000 0.00000 -3.72025 - 0.00000 0.00000 -3.66881 - 0.00000 0.00000 -3.61738 - 0.00000 0.00000 -3.56594 - 0.00000 0.00000 -3.51450 - 0.00000 0.00000 -3.51450 - 0.00000 0.00000 -3.47027 - 0.00000 0.00000 -3.42603 - 0.00000 0.00000 -3.38180 - 0.00000 0.00000 -3.33756 - 0.00000 0.00000 -3.29333 - 0.00000 0.82352 -3.29333 - 0.09388 0.82352 -3.23469 - 0.18776 0.82352 -3.17608 - 0.28164 0.82352 -3.11749 - 0.37553 0.82352 -3.05894 - 0.46941 0.82352 -3.00046 - 0.47005 0.81265 -3.00046 - 0.53507 0.81265 -2.95947 - 0.60008 0.81265 -2.91852 - 0.66509 0.81265 -2.87761 - 0.73010 0.81265 -2.83677 - 0.79511 0.81265 -2.79598 - 0.79489 0.81094 -2.79598 - 0.81111 0.81094 -2.78579 - 0.82733 0.81094 -2.77560 - 0.84355 0.81094 -2.76542 - 0.85977 0.81094 -2.75525 - 0.87599 0.81094 -2.74508 - 0.87569 0.81419 -2.74508 - 0.95711 0.81419 -2.69429 - 1.03853 0.81419 -2.64363 - 1.11995 0.81419 -2.59309 - 1.20137 0.81419 -2.54270 - 1.28279 0.81419 -2.49245 - 1.28290 0.81509 -2.49245 - 1.36441 0.81509 -2.44237 - 1.44592 0.81509 -2.39246 - 1.52743 0.81509 -2.34274 - 1.60894 0.81509 -2.29320 - 1.69045 0.81509 -2.24387 - 1.69045 0.81524 -2.24387 - 1.77197 0.81524 -2.19475 - 1.85350 0.81524 -2.14585 - 1.93502 0.81524 -2.09719 - 2.01654 0.81524 -2.04877 - 2.09807 0.81524 -2.00061 - 2.09805 0.81552 -2.00061 - 2.21222 0.81552 -1.93362 - 2.32640 0.81552 -1.86718 - 2.44057 0.81552 -1.80132 - 2.55474 0.81552 -1.73606 - 2.66891 0.81552 -1.67143 - 2.66887 0.81630 -1.67143 - 2.77499 0.81630 -1.61201 - 2.88111 0.81630 -1.55317 - 2.98723 0.81630 -1.49495 - 3.09335 0.81630 -1.43737 - 3.19947 0.81630 -1.38044 - 3.19954 0.81668 -1.38044 - 3.30571 0.81668 -1.32420 - 3.41187 0.81668 -1.26866 - 3.51804 0.81668 -1.21384 - 3.62421 0.81668 -1.15978 - 3.73038 0.81668 -1.10649 - 3.73038 0.81668 -1.10649 - 3.85247 0.81668 -1.04618 - 3.97457 0.81668 -0.98696 - 4.09666 0.81668 -0.92886 - 4.21875 0.81668 -0.87191 - 4.34085 0.81668 -0.81615 - 4.34085 0.81668 -0.81615 - 4.46294 0.81668 -0.76162 - 4.58503 0.81668 -0.70834 - 4.70712 0.81668 -0.65635 - 4.82922 0.81668 -0.60568 - 4.95131 0.81668 -0.55638 - 4.95067 0.81986 -0.55638 - 5.07324 0.81986 -0.50847 - 5.19581 0.81986 -0.46199 - 5.31837 0.81986 -0.41697 - 5.44094 0.81986 -0.37344 - 5.56351 0.81986 -0.33146 - 5.56450 0.82773 -0.33146 - 5.68824 0.82773 -0.29103 - 5.81199 0.82773 -0.25221 - 5.93573 0.82773 -0.21503 - 6.05948 0.82773 -0.17951 - 6.18322 0.82773 -0.14570 - 6.18331 0.82789 -0.14570 - 6.18496 0.82789 -0.14526 - 6.18662 0.82789 -0.14482 - 6.18828 0.82789 -0.14438 - 6.18993 0.82789 -0.14394 - 6.19159 0.82789 -0.14350 - 6.19159 0.82788 -0.14350 - 6.22305 0.82788 -0.13522 - 6.25451 0.82788 -0.12704 - 6.28597 0.82788 -0.11898 - 6.31743 0.82788 -0.11104 - 6.34888 0.82788 -0.10321 - 6.34777 0.83773 -0.10321 - 6.44830 0.83773 -0.07924 - 6.54883 0.83773 -0.05644 - 6.64936 0.83773 -0.03482 - 6.74988 0.83773 -0.01442 - 6.85041 0.83773 0.00476 - 6.85076 0.84255 0.00476 - 6.90131 0.84255 0.01389 - 6.95186 0.84255 0.02270 - 7.00241 0.84255 0.03120 - 7.05297 0.84255 0.03938 - 7.10352 0.84255 0.04724 - 7.10402 0.82911 0.04724 - 7.17065 0.54045 0.05854 - 7.19495 0.00673 0.06909 - 7.17421 -0.44985 0.07890 - 7.11538 -0.83073 0.08796 - 7.02515 -1.14127 0.09628 - 7.02494 -1.13725 0.09628 - 6.91050 -1.36719 0.10387 - 6.77815 -1.52968 0.11073 - 6.63422 -1.62225 0.11689 - 6.48498 -1.64631 0.12235 - 6.33650 -1.60718 0.12714 - 6.33653 -1.60690 0.12714 - 6.17841 -1.55514 0.13164 - 6.02555 -1.50174 0.13536 - 5.87811 -1.44700 0.13833 - 5.73619 -1.39123 0.14055 - 5.59988 -1.33471 0.14205 - 5.59677 -1.31027 0.14205 - 5.34921 -2.19043 0.14295 - 4.99337 -2.85786 0.14254 - 4.55851 -3.32168 0.14091 - 4.07216 -3.59569 0.13817 - 3.55971 -3.69857 0.13442 - 3.56102 -3.69108 0.13442 - 3.04778 -3.61742 0.12979 - 2.55485 -3.40014 0.12440 - 2.10165 -3.05622 0.11838 - 1.70111 -2.66947 0.11183 - 1.35314 -2.30544 0.10486 - 1.35316 -2.30494 0.10486 - 1.05456 -1.96488 0.09756 - 0.80183 -1.64976 0.09001 - 0.59143 -1.36037 0.08225 - 0.41970 -1.09731 0.07433 - 0.28293 -0.86103 0.06631 - 0.28294 -0.86091 0.06631 - 0.17738 -0.65166 0.05824 - 0.09920 -0.46964 0.05011 - 0.04460 -0.31495 0.04196 - 0.00974 -0.18767 0.03380 - -0.00923 -0.08784 0.02563 - -0.00923 -0.08784 0.02563 - -0.01614 -0.01545 0.01746 - -0.01483 0.02952 0.00930 - -0.00915 0.04708 0.00115 - -0.00293 0.03724 -0.00701 - 0.00000 0.00000 -0.01516 + 0.00000 0.00000 -4.80240 + 0.00000 0.00000 -4.75604 + 0.00000 0.00000 -4.70969 + 0.00000 0.00000 -4.66334 + 0.00000 0.00000 -4.61698 + 0.00000 0.00000 -4.57063 + 0.00000 0.00000 -4.57063 + 0.00000 0.00000 -4.52427 + 0.00000 0.00000 -4.47792 + 0.00000 0.00000 -4.43156 + 0.00000 0.00000 -4.38521 + 0.00000 0.00000 -4.33885 + 0.00000 0.00000 -4.33885 + 0.00000 0.00000 -4.27704 + 0.00000 0.00000 -4.21524 + 0.00000 0.00000 -4.15343 + 0.00000 0.00000 -4.09162 + 0.00000 0.00000 -4.02982 + 0.00000 0.00000 -4.02982 + 0.00000 0.00000 -3.97831 + 0.00000 0.00000 -3.92681 + 0.00000 0.00000 -3.87530 + 0.00000 0.00000 -3.82380 + 0.00000 0.00000 -3.77229 + 0.00000 0.00000 -3.77229 + 0.00000 0.00000 -3.72079 + 0.00000 0.00000 -3.66928 + 0.00000 0.00000 -3.61777 + 0.00000 0.00000 -3.56627 + 0.00000 0.00000 -3.51476 + 0.00000 0.00000 -3.51476 + 0.00000 0.00000 -3.47047 + 0.00000 0.00000 -3.42617 + 0.00000 0.00000 -3.38188 + 0.00000 0.00000 -3.33759 + 0.00000 0.00000 -3.29329 + 0.00000 0.82634 -3.29329 + 0.09420 0.82634 -3.23458 + 0.18840 0.82634 -3.17588 + 0.28261 0.82634 -3.11721 + 0.37681 0.82634 -3.05859 + 0.47101 0.82634 -3.00003 + 0.47166 0.81545 -3.00003 + 0.53690 0.81545 -2.95898 + 0.60213 0.81545 -2.91798 + 0.66737 0.81545 -2.87702 + 0.73260 0.81545 -2.83611 + 0.79784 0.81545 -2.79527 + 0.79762 0.81374 -2.79527 + 0.81389 0.81374 -2.78507 + 0.83017 0.81374 -2.77487 + 0.84644 0.81374 -2.76468 + 0.86272 0.81374 -2.75449 + 0.87899 0.81374 -2.74431 + 0.87870 0.81700 -2.74431 + 0.96040 0.81700 -2.69345 + 1.04210 0.81700 -2.64272 + 1.12380 0.81700 -2.59212 + 1.20550 0.81700 -2.54166 + 1.28720 0.81700 -2.49135 + 1.28731 0.81789 -2.49135 + 1.36910 0.81789 -2.44120 + 1.45089 0.81789 -2.39123 + 1.53268 0.81789 -2.34144 + 1.61447 0.81789 -2.29184 + 1.69626 0.81789 -2.24245 + 1.69626 0.81805 -2.24245 + 1.77806 0.81805 -2.19327 + 1.85987 0.81805 -2.14431 + 1.94167 0.81805 -2.09559 + 2.02348 0.81805 -2.04711 + 2.10528 0.81805 -1.99889 + 2.10526 0.81832 -1.99889 + 2.21983 0.81832 -1.93182 + 2.33439 0.81832 -1.86531 + 2.44896 0.81832 -1.79937 + 2.56352 0.81832 -1.73403 + 2.67809 0.81832 -1.66933 + 2.67805 0.81910 -1.66933 + 2.78453 0.81910 -1.60984 + 2.89102 0.81910 -1.55095 + 2.99750 0.81910 -1.49267 + 3.10398 0.81910 -1.43502 + 3.21047 0.81910 -1.37804 + 3.21054 0.81949 -1.37804 + 3.31707 0.81949 -1.32175 + 3.42360 0.81949 -1.26615 + 3.53014 0.81949 -1.21129 + 3.63667 0.81949 -1.15718 + 3.74320 0.81949 -1.10384 + 3.74320 0.81948 -1.10384 + 3.86572 0.81948 -1.04349 + 3.98823 0.81948 -0.98423 + 4.11074 0.81948 -0.92609 + 4.23325 0.81948 -0.86911 + 4.35577 0.81948 -0.81332 + 4.35577 0.81948 -0.81332 + 4.47828 0.81948 -0.75875 + 4.60079 0.81948 -0.70545 + 4.72331 0.81948 -0.65344 + 4.84582 0.81948 -0.60277 + 4.96833 0.81948 -0.55345 + 4.96769 0.82266 -0.55345 + 5.09068 0.82266 -0.50554 + 5.21367 0.82266 -0.45906 + 5.33665 0.82266 -0.41404 + 5.45964 0.82266 -0.37053 + 5.58263 0.82266 -0.32856 + 5.58362 0.83051 -0.32856 + 5.70778 0.83051 -0.28816 + 5.83194 0.83051 -0.24936 + 5.95610 0.83051 -0.21221 + 6.08026 0.83051 -0.17674 + 6.20442 0.83051 -0.14297 + 6.20450 0.83065 -0.14297 + 6.20616 0.83065 -0.14253 + 6.20783 0.83065 -0.14209 + 6.20949 0.83065 -0.14165 + 6.21115 0.83065 -0.14122 + 6.21281 0.83065 -0.14078 + 6.21281 0.83063 -0.14078 + 6.24437 0.83063 -0.13250 + 6.27594 0.83063 -0.12434 + 6.30750 0.83063 -0.11629 + 6.33907 0.83063 -0.10836 + 6.37063 0.83063 -0.10054 + 6.36952 0.84051 -0.10054 + 6.47038 0.84051 -0.07662 + 6.57124 0.84051 -0.05387 + 6.67210 0.84051 -0.03231 + 6.77296 0.84051 -0.01197 + 6.87382 0.84051 0.00715 + 6.87425 0.84232 0.00715 + 6.92479 0.84232 0.01624 + 6.97532 0.84232 0.02502 + 7.02586 0.84232 0.03348 + 7.07640 0.84232 0.04163 + 7.12694 0.84232 0.04945 + 7.12744 0.82876 0.04945 + 7.19397 0.53829 0.06069 + 7.21792 0.00103 0.07118 + 7.19651 -0.45893 0.08093 + 7.13670 -0.84302 0.08993 + 7.04522 -1.15659 0.09818 + 7.04516 -1.15676 0.09818 + 6.92881 -1.38954 0.10569 + 6.79432 -1.55466 0.11248 + 6.64799 -1.64963 0.11857 + 6.49617 -1.67588 0.12396 + 6.34491 -1.63869 0.12867 + 6.34491 -1.63852 0.12867 + 6.18366 -1.58617 0.13308 + 6.02773 -1.53220 0.13672 + 5.87726 -1.47694 0.13960 + 5.73238 -1.42067 0.14173 + 5.59315 -1.36370 0.14315 + 5.58999 -1.33895 0.14315 + 5.33836 -2.21973 0.14394 + 4.97849 -2.88580 0.14341 + 4.53993 -3.34626 0.14167 + 4.05048 -3.61495 0.13882 + 3.53582 -3.71058 0.13497 + 3.53715 -3.70301 0.13497 + 3.02262 -3.62276 0.13024 + 2.52969 -3.39455 0.12477 + 2.07784 -3.04425 0.11866 + 1.67904 -2.65668 0.11203 + 1.33290 -2.29209 0.10499 + 1.33293 -2.29160 0.10499 + 1.03622 -1.95121 0.09763 + 0.78541 -1.63598 0.09001 + 0.57693 -1.34667 0.08219 + 0.40711 -1.08390 0.07422 + 0.27219 -0.84807 0.06615 + 0.27220 -0.84796 0.06615 + 0.16840 -0.63934 0.05803 + 0.09190 -0.45810 0.04986 + 0.03885 -0.30435 0.04166 + 0.00540 -0.17817 0.03345 + -0.01232 -0.07957 0.02524 + -0.01232 -0.07957 0.02524 + -0.01817 -0.00856 0.01703 + -0.01600 0.03490 0.00883 + -0.00968 0.05080 0.00064 + -0.00306 0.03917 -0.00756 + 0.00000 0.00000 -0.01575 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7776,7 +7912,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -7788,7 +7924,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -7955,53 +8091,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.00000 99.86890 0.05123 0.05123 1 0 A - 4.07362 100.76161 31.86408 3.83947 110 13 1 - 4.45883 101.65432 33.06586 4.18246 110 13 1 - 4.84106 102.54703 34.26739 4.52546 110 14 1 - 5.22031 103.43974 35.46867 4.86846 110 15 1 - 5.51084 104.33245 36.36949 5.12571 110 15 1 - 5.68233 104.33245 36.96996 5.29720 110 15 1 - 5.96992 105.22516 37.87056 5.55445 110 16 1 - 6.34037 106.11787 39.07118 5.89745 110 16 1 - 6.70799 107.01058 40.27161 6.24045 110 17 1 - 7.07285 107.90329 41.47185 6.58344 110 17 1 - 7.34925 108.79600 42.37192 6.84069 110 17 1 - 8.18651 108.79600 25.59840 7.93223 110 32 1 - 9.96823 106.77700 29.70475 9.70495 110 34 1 - 12.33930 104.75800 35.16081 12.06858 110 35 1 - 14.70885 102.73900 40.59674 14.43220 110 36 1 - 17.07692 100.72000 46.01595 16.79583 110 37 1 - 18.85264 98.70100 50.07174 18.56855 110 38 1 - 14.02375 98.70100 177.20934 12.31919 110 8 1 - 14.53760 100.07440 165.98087 12.82216 110 9 1 - 15.20326 101.44780 168.35015 13.49277 110 9 1 - 15.85433 102.82120 174.33058 14.16339 110 9 1 - 16.49205 104.19460 181.36358 14.83401 110 9 1 - 16.95001 105.56800 186.93725 15.33697 110 9 1 - 17.32165 105.56800 190.74477 15.70861 110 9 1 - 17.73269 106.94140 196.54307 16.17524 110 9 1 - 18.33871 108.31480 204.37210 16.84586 110 9 1 - 18.93705 109.68820 212.27871 17.51648 110 9 1 - 19.52903 111.06160 220.23553 18.18709 110 9 1 - 19.94832 112.43500 226.22528 18.69006 110 9 1 - 20.28363 112.43500 230.22741 19.02537 110 9 1 - 20.69907 113.80840 236.24102 19.52833 110 9 1 - 21.27905 115.18180 244.27295 20.19895 110 9 1 - 21.85654 116.55520 252.31767 20.86956 110 9 1 - 22.43217 117.92860 260.37206 21.54018 110 9 1 - 22.83892 119.30200 266.41766 22.04314 110 9 1 - 24.91415 119.30200 270.45017 24.11838 110 9 1 - 23.58025 120.67540 276.50161 22.88141 110 9 1 - 24.15340 122.04880 284.57394 23.55203 110 8 1 - 24.72620 123.42220 292.65001 24.22265 110 8 1 - 25.29881 124.79560 300.72910 24.89327 110 8 1 - 25.70375 126.16900 306.79002 25.39623 110 8 1 - 26.03906 126.16900 310.83135 25.73154 110 8 1 - 26.44406 127.54240 316.89433 26.23450 110 8 1 - 27.01677 128.91580 324.97970 26.90512 110 8 1 - 27.58951 130.28920 333.06652 27.57574 110 8 1 - 28.16228 131.66260 341.15457 28.24635 110 0 1 - 28.56740 133.03600 347.22126 28.74932 110 0 1 + 4.08224 100.76161 31.86408 3.83947 110 13 1 + 4.46720 101.65432 33.06586 4.18246 110 14 1 + 4.84918 102.54703 34.26739 4.52546 110 14 1 + 5.22816 103.43974 35.46867 4.86846 110 15 1 + 5.51842 104.33245 36.36949 5.12571 110 15 1 + 5.68992 104.33245 36.96996 5.29720 110 15 1 + 5.97722 105.22516 37.87056 5.55445 110 16 1 + 6.34738 106.11787 39.07118 5.89745 110 16 1 + 6.71471 107.01058 40.27161 6.24045 110 17 1 + 7.07927 107.90329 41.47185 6.58344 110 17 1 + 7.35537 108.79600 42.37192 6.84069 110 17 1 + 8.18957 108.79600 25.59840 7.93223 110 32 1 + 9.97112 106.77700 29.70475 9.70495 110 34 1 + 12.34202 104.75800 35.16081 12.06858 110 35 1 + 14.71140 102.73900 40.59674 14.43220 110 36 1 + 17.07930 100.72000 46.01595 16.79583 110 37 1 + 18.85484 98.70100 50.07174 18.56855 110 38 1 + 14.03697 98.70100 177.20934 12.31919 110 8 1 + 14.54940 100.07440 165.98087 12.82216 110 9 1 + 15.21369 101.44780 168.35015 13.49277 110 9 1 + 15.86343 102.82120 174.33058 14.16339 110 9 1 + 16.49986 104.19460 181.36358 14.83401 110 9 1 + 16.95660 105.56800 186.93725 15.33697 110 9 1 + 17.29191 105.56800 190.74477 15.67228 110 9 1 + 17.73813 106.94140 196.54307 16.17524 110 9 1 + 18.34308 108.31480 204.37210 16.84586 110 9 1 + 18.94042 109.68820 212.27871 17.51648 110 9 1 + 19.53148 111.06160 220.23553 18.18709 110 9 1 + 19.94990 112.43500 226.22528 18.69006 110 9 1 + 20.28521 112.43500 230.22741 19.02537 110 9 1 + 20.69985 113.80840 236.24102 19.52833 110 9 1 + 21.27908 115.18180 244.27295 20.19895 110 9 1 + 21.85587 116.55520 252.31767 20.86956 110 9 1 + 22.43084 117.92860 260.37206 21.54018 110 9 1 + 22.83697 119.30200 266.41766 22.04314 110 9 1 + 23.17228 119.30200 270.45017 22.37845 110 9 1 + 23.57772 120.67540 276.50161 22.88141 110 9 1 + 24.15031 122.04880 284.57394 23.55203 110 8 1 + 24.72257 123.42220 292.65001 24.22265 110 8 1 + 25.29465 124.79560 300.72910 24.89327 110 8 1 + 25.69908 126.16900 306.79002 25.39623 110 8 1 + 26.03439 126.16900 310.83135 25.73154 110 8 1 + 26.43890 127.54240 316.89433 26.23450 110 8 1 + 27.01111 128.91580 324.97970 26.90512 110 8 1 + 27.58336 130.28920 333.06652 27.57574 110 8 1 + 28.15563 131.66260 341.15457 28.24635 110 0 1 + 28.56027 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8019,9 +8155,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.910 'Hydrobiaklei' - -12.00 6.761 'Basisveen' - -12.50 75.342 'Eerste zandlaag' + -10.00 4.916 'Hydrobiaklei' + -12.00 6.763 'Basisveen' + -12.50 75.221 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -8041,9 +8177,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.04 'Hydrobiaklei' + -10.00 -1.05 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.92 'Eerste zandlaag' + -12.50 -28.87 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8272,7 +8408,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -8284,7 +8420,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -8451,53 +8587,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 10.36651 100.76161 31.86408 3.83947 110 33 1 - 9.89608 101.65432 33.06586 4.18246 110 30 1 - 9.43853 102.54703 34.26739 4.52546 110 28 1 - 8.99391 103.43974 35.46867 4.86846 110 25 1 - 8.56227 104.33245 36.36949 5.12571 110 24 1 - 8.56227 104.33245 36.96996 5.29720 110 23 1 - 8.14362 105.22516 37.87056 5.55445 110 22 1 - 7.73788 106.11787 39.07118 5.89745 110 20 1 - 7.34496 107.01058 40.27161 6.24045 110 18 1 - 6.96480 107.90329 41.47185 6.58344 110 17 1 - 6.59729 108.79600 42.37192 6.84069 110 0 1 - 7.67795 108.79600 25.59840 7.93223 110 0 1 - 9.44167 106.77700 29.70475 9.70495 110 0 1 - 11.79785 104.75800 35.16081 12.06858 110 0 1 - 14.15555 102.73900 40.59674 14.43220 110 0 1 - 16.51473 100.72000 46.01595 16.79583 110 0 1 - 18.28445 98.70100 50.07174 18.56855 110 0 1 - 21.07777 98.70100 177.20934 12.31919 110 12 1 - 20.05723 100.07440 165.98087 12.82216 110 12 1 - 19.21844 101.44780 168.35015 13.49277 110 11 1 - 18.46508 102.82120 174.33058 14.16339 110 11 1 - 17.79573 104.19460 181.36358 14.83401 110 10 1 - 17.11615 105.56800 186.93725 15.33697 110 9 1 - 17.30121 105.56800 190.74477 15.70861 110 9 1 - 16.70081 106.94140 196.54307 16.17524 110 8 1 - 16.26664 108.31480 204.37210 16.84586 110 0 1 - 16.09590 109.68820 212.27871 17.51648 110 0 1 - 16.84516 111.06160 220.23553 18.18709 110 0 1 - 17.43179 112.43500 226.22528 18.69006 110 0 1 - 17.76710 112.43500 230.22741 19.02537 110 0 1 - 18.35758 113.80840 236.24102 19.52833 110 0 1 - 19.11884 115.18180 244.27295 20.19895 110 0 1 - 19.88258 116.55520 252.31767 20.86956 110 0 1 - 20.64819 117.92860 260.37206 21.54018 110 0 1 - 21.24737 119.30200 266.41766 22.04314 110 0 1 - 23.32260 119.30200 270.45017 24.11838 110 0 1 - 22.18258 120.67540 276.50161 22.88141 110 0 1 - 22.95066 122.04880 284.57394 23.55203 110 0 1 - 23.71910 123.42220 292.65001 24.22265 110 0 1 - 24.48772 124.79560 300.72910 24.89327 110 0 1 - 25.08871 126.16900 306.79002 25.39623 110 0 1 - 25.42402 126.16900 310.83135 25.73154 110 0 1 - 26.02494 127.54240 316.89433 26.23450 110 0 1 - 26.79347 128.91580 324.97970 26.90512 110 0 1 - 27.56196 130.28920 333.06652 27.57574 110 0 1 - 28.33043 131.66260 341.15457 28.24635 110 8 1 - 28.93123 133.03600 347.22126 28.74932 110 8 1 + 10.41487 100.76161 31.86408 3.83947 110 33 1 + 9.94251 101.65432 33.06586 4.18246 110 30 1 + 9.48290 102.54703 34.26739 4.52546 110 28 1 + 9.03609 103.43974 35.46867 4.86846 110 25 1 + 8.60212 104.33245 36.36949 5.12571 110 24 1 + 8.60212 104.33245 36.96996 5.29720 110 23 1 + 8.18098 105.22516 37.87056 5.55445 110 22 1 + 7.77260 106.11787 39.07118 5.89745 110 20 1 + 7.37691 107.01058 40.27161 6.24045 110 18 1 + 6.99385 107.90329 41.47185 6.58344 110 17 1 + 6.62335 108.79600 42.37192 6.84069 110 0 1 + 7.67489 108.79600 25.59840 7.93223 110 0 1 + 9.43878 106.77700 29.70475 9.70495 110 0 1 + 11.79513 104.75800 35.16081 12.06858 110 0 1 + 14.15300 102.73900 40.59674 14.43220 110 0 1 + 16.51236 100.72000 46.01595 16.79583 110 0 1 + 18.28225 98.70100 50.07174 18.56855 110 0 1 + 21.10253 98.70100 177.20934 12.31919 110 12 1 + 20.06640 100.07440 165.98087 12.82216 110 12 1 + 19.21198 101.44780 168.35015 13.49277 110 11 1 + 18.44312 102.82120 174.33058 14.16339 110 11 1 + 17.75852 104.19460 181.36358 14.83401 110 10 1 + 17.06409 105.56800 186.93725 15.33697 110 9 1 + 17.24915 105.56800 190.74477 15.67228 110 9 1 + 16.63443 106.94140 196.54307 16.17524 110 8 1 + 16.18667 108.31480 204.37210 16.84586 110 0 1 + 16.09253 109.68820 212.27871 17.51648 110 0 1 + 16.84271 111.06160 220.23553 18.18709 110 0 1 + 17.43021 112.43500 226.22528 18.69006 110 0 1 + 17.76552 112.43500 230.22741 19.02537 110 0 1 + 18.35681 113.80840 236.24102 19.52833 110 0 1 + 19.11881 115.18180 244.27295 20.19895 110 0 1 + 19.88326 116.55520 252.31767 20.86956 110 0 1 + 20.64952 117.92860 260.37206 21.54018 110 0 1 + 21.24932 119.30200 266.41766 22.04314 110 0 1 + 21.58462 119.30200 270.45017 22.37845 110 0 1 + 22.18511 120.67540 276.50161 22.88141 110 0 1 + 22.95376 122.04880 284.57394 23.55203 110 0 1 + 23.72273 123.42220 292.65001 24.22265 110 0 1 + 24.49188 124.79560 300.72910 24.89327 110 0 1 + 25.09338 126.16900 306.79002 25.39623 110 0 1 + 25.42869 126.16900 310.83135 25.73154 110 0 1 + 26.03011 127.54240 316.89433 26.23450 110 0 1 + 26.79913 128.91580 324.97970 26.90512 110 0 1 + 27.56811 130.28920 333.06652 27.57574 110 0 1 + 28.33707 131.66260 341.15457 28.24635 110 8 1 + 28.93836 133.03600 347.22126 28.74932 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8515,9 +8651,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 7.350 'Hydrobiaklei' - -12.00 6.489 'Basisveen' - -12.50 74.040 'Eerste zandlaag' + -10.00 7.384 'Hydrobiaklei' + -12.00 6.488 'Basisveen' + -12.50 73.890 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -8537,9 +8673,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 1.56 'Hydrobiaklei' + -10.00 1.57 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.42 'Eerste zandlaag' + -12.50 28.36 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8761,8 +8897,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 364.00087 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 259.43768 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 363.99768 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 259.50077 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -8803,10 +8939,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.09 : Percentage mobilized resistance left - 9.92 : Percentage mobilized resistance right - 48.10 : Effective left - 91.75 : Effective right + 11.10 : Percentage mobilized resistance left + 9.93 : Percentage mobilized resistance right + 48.18 : Effective left + 91.90 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 433.89 : Max effective resistance left @@ -8815,8 +8951,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.98 : Vertical force left - 30.79 : Vertical force right + 15.03 : Vertical force left + 30.84 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -8825,10 +8961,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.79 : Active force -14.98 : Passive force --30.79 : Plugged active force -14.98 : Plugged passive force +-30.84 : Active force +15.03 : Passive force +-30.84 : Plugged active force +15.03 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -8848,192 +8984,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.32601 - 0.00000 0.00000 6.94907 - 0.00000 0.00000 6.57214 - 0.00000 0.00000 6.19520 - 0.00000 0.00000 5.81827 - 0.00000 0.00000 5.44133 - 0.00000 0.00000 5.44133 - 0.00000 0.00000 5.06439 - 0.00000 0.00000 4.68746 - 0.00000 0.00000 4.31052 - 0.00000 0.00000 3.93359 - 0.00000 0.00000 3.55665 - 0.00000 0.00000 3.55665 - 0.00283 0.07063 3.05407 - 0.02260 0.28253 2.55150 - 0.07628 0.63569 2.04891 - 0.18082 1.13011 1.54630 - 0.35316 1.76580 1.04366 - 0.35316 1.76580 1.04366 - 0.56080 2.40345 0.62476 - 0.83712 3.13920 0.20579 - 1.19191 3.97305 -0.21330 - 1.63500 4.90500 -0.63255 - 2.17618 5.93505 -1.05200 - 2.17618 5.93505 -1.05200 - 2.82528 7.06320 -1.47172 - 3.59209 8.28945 -1.89178 - 4.48644 9.61380 -2.31231 - 5.51812 11.03625 -2.73343 - 6.69696 12.55680 -3.15523 - 6.69696 12.55680 -3.15523 - 7.83593 13.94293 -3.51864 - 9.09722 15.40162 -3.88278 - 10.48709 16.93286 -4.24777 - 12.01176 18.53666 -4.61375 - 13.67747 20.21301 -4.98085 - 13.67747 -102.28785 -4.98085 - 2.14848 -99.95388 -5.46905 - -9.10717 -97.49241 -5.95759 - -20.07494 -94.90345 -6.44468 - -30.74031 -92.18701 -6.92853 - -41.08873 -89.34307 -7.40734 - -41.08809 -89.35394 -7.40734 - -48.15395 -87.28207 -7.73941 - -55.05154 -85.14741 -8.06758 - -61.77586 -82.94997 -8.39134 - -68.32186 -80.68975 -8.71012 - -74.68454 -78.36674 -9.02340 - -74.68476 -78.36845 -9.02340 - -76.24623 -77.77789 -9.10079 - -77.79585 -77.18340 -9.17780 - -79.33354 -76.58499 -9.25442 - -80.85923 -75.98266 -9.33064 - -82.37282 -75.37640 -9.40646 - -82.37312 -75.37314 -9.40646 - -89.75674 -72.28299 -9.77911 - -96.82645 -69.09474 -10.14046 - -103.57242 -65.80839 -10.48964 - -109.98486 -62.42394 -10.82582 - -116.05394 -58.94139 -11.14814 - -116.05383 -58.94050 -11.14814 - -121.77130 -55.40890 -11.45578 - -127.13561 -51.87730 -11.74808 - -132.14676 -48.34570 -12.02441 - -136.80475 -44.81410 -12.28412 - -141.10958 -41.28250 -12.52660 - -141.10958 -41.28235 -12.52660 - -145.06123 -37.75075 -12.75125 - -148.65973 -34.21915 -12.95762 - -151.90506 -30.68755 -13.14531 - -154.79724 -27.15595 -13.31389 - -157.33625 -23.62435 -13.46298 - -157.33627 -23.62407 -13.46298 - -160.29754 -18.67983 -13.63818 - -162.56662 -13.73559 -13.77379 - -164.14351 -8.79135 -13.86942 - -165.02820 -3.84711 -13.92468 - -165.22070 1.09713 -13.93917 - -165.22074 1.09791 -13.93917 - -164.77959 5.68899 -13.91592 - -163.74160 10.28007 -13.85758 - -162.10677 14.87115 -13.76449 - -159.87510 19.46223 -13.63701 - -157.04659 24.05331 -13.47548 - -157.04652 24.05369 -13.47548 - -153.62112 28.64477 -13.28036 - -149.59888 33.23585 -13.05252 - -144.97980 37.82693 -12.79295 - -139.76388 42.41801 -12.50262 - -133.95112 47.00909 -12.18253 - -133.95112 47.00909 -12.18253 - -126.52860 52.28883 -11.77903 - -118.31676 57.56857 -11.33987 - -109.31560 62.84831 -10.86761 - -99.52511 68.12806 -10.36477 - -88.94531 73.40780 -9.83390 - -88.94531 73.40780 -9.83390 - -77.57618 78.68754 -9.27770 - -65.41773 83.96728 -8.69964 - -52.46996 89.24702 -8.10336 - -38.73287 94.52677 -7.49252 - -24.20646 99.80651 -6.87075 - -24.20711 99.80969 -6.87075 - -8.89090 105.08943 -6.24189 - 7.21463 110.36917 -5.61050 - 24.10949 115.64891 -4.98135 - 41.79366 120.92866 -4.35919 - 60.26715 126.20840 -3.74879 - 60.26814 126.21627 -3.74879 - 79.53213 131.49601 -3.15507 - 99.58545 136.77576 -2.58373 - 120.42808 142.05550 -2.04063 - 142.06004 147.33524 -1.53164 - 164.48132 152.61498 -1.06263 - 164.48140 152.61514 -1.06263 - 164.78670 152.67062 -1.05665 - 165.09208 152.71126 -1.05069 - 165.39754 152.75195 -1.04473 - 165.70309 152.79272 -1.03877 - 166.00871 152.83352 -1.03283 - 166.00871 152.83350 -1.03283 - 171.83128 153.61898 -0.92151 - 177.68390 154.41594 -0.81332 - 183.56707 155.22705 -0.70837 - 189.48133 156.05231 -0.60675 - 195.42719 156.88905 -0.50858 - 195.42608 -102.53878 -0.50858 - 183.28677 -99.76846 -0.22143 - 171.48623 -96.88366 0.03247 - 160.04034 -93.85774 0.25521 - 148.96602 -90.69070 0.44885 - 138.27915 -87.40918 0.61547 - 138.27949 -87.40436 0.61547 - 133.09006 -85.57806 0.68928 - 128.00995 -83.76041 0.75706 - 123.03861 -81.95264 0.81902 - 118.17544 -80.15474 0.87540 - 113.41987 -78.36548 0.92642 - 113.42039 -78.38089 0.92642 - 106.39384 -76.03360 0.99408 - 99.58514 -73.59181 1.05064 - 93.00296 -71.05658 1.09678 - 86.65543 -68.43615 1.13321 - 80.54970 -65.74614 1.16059 - 80.54949 -65.73988 1.16059 - 74.69309 -62.96389 1.17960 - 69.09175 -60.13237 1.19083 - 63.75073 -57.24381 1.19482 - 58.67493 -54.30419 1.19214 - 53.86850 -51.32694 1.18333 - 53.86860 -51.32562 1.18333 - 48.87436 -48.56416 1.16724 - 44.15328 -45.87734 1.14498 - 39.69488 -43.31081 1.11714 - 35.48606 -40.89587 1.08427 - 31.50841 -38.69993 1.04692 - 31.50513 -38.67585 1.04692 - 26.27995 -35.80411 0.98819 - 21.50159 -32.46929 0.92297 - 17.18522 -29.20581 0.85234 - 13.32025 -26.02191 0.77737 - 9.89482 -22.92936 0.69911 - 9.89624 -22.92069 0.69911 - 6.89966 -19.90568 0.61855 - 4.31789 -16.99270 0.53628 - 2.13720 -14.17629 0.45287 - 0.34395 -11.45797 0.36883 - -1.07588 -8.84365 0.28472 - -1.07700 -8.82291 0.28472 - -2.13790 -6.37820 0.20098 - -2.87578 -4.20948 0.11776 - -3.32955 -2.31926 0.03520 - -3.53806 -0.70518 -0.04660 - -3.53976 0.63554 -0.12752 - -3.53963 0.63502 -0.12752 - -3.36129 1.82720 -0.20751 - -3.04617 2.63021 -0.28668 - -2.63719 3.16846 -0.36511 - -2.17125 3.44425 -0.44290 - -1.68495 3.45956 -0.52015 - -1.68499 3.45897 -0.52015 - -1.18403 3.54476 -0.59700 - -0.71985 3.04348 -0.67355 - -0.34385 2.28530 -0.74991 - -0.09193 1.27075 -0.82616 - 0.00001 0.00005 -0.90238 + 0.00000 0.00000 7.32393 + 0.00000 0.00000 6.94705 + 0.00000 0.00000 6.57018 + 0.00000 0.00000 6.19331 + 0.00000 0.00000 5.81644 + 0.00000 0.00000 5.43957 + 0.00000 0.00000 5.43957 + 0.00000 0.00000 5.06270 + 0.00000 0.00000 4.68583 + 0.00000 0.00000 4.30896 + 0.00000 0.00000 3.93209 + 0.00000 0.00000 3.55522 + 0.00000 0.00000 3.55522 + 0.00283 0.07063 3.05273 + 0.02260 0.28253 2.55024 + 0.07628 0.63569 2.04774 + 0.18082 1.13011 1.54522 + 0.35316 1.76580 1.04267 + 0.35316 1.76580 1.04267 + 0.56080 2.40345 0.62384 + 0.83712 3.13920 0.20494 + 1.19191 3.97305 -0.21408 + 1.63500 4.90500 -0.63326 + 2.17618 5.93505 -1.05264 + 2.17618 5.93505 -1.05264 + 2.82528 7.06320 -1.47228 + 3.59209 8.28945 -1.89227 + 4.48644 9.61380 -2.31273 + 5.51812 11.03625 -2.73377 + 6.69696 12.55680 -3.15550 + 6.69696 12.55680 -3.15550 + 7.83593 13.94293 -3.51885 + 9.09722 15.40162 -3.88292 + 10.48709 16.93286 -4.24785 + 12.01176 18.53666 -4.61377 + 13.67747 20.21301 -4.98081 + 13.67747 -102.28467 -4.98081 + 2.14885 -99.95069 -5.46892 + -9.10644 -97.48922 -5.95738 + -20.07385 -94.90027 -6.44439 + -30.73886 -92.18382 -6.92815 + -41.08692 -89.33988 -7.40689 + -41.08627 -89.35076 -7.40689 + -48.15187 -87.27889 -7.73889 + -55.04922 -85.14424 -8.06701 + -61.77328 -82.94680 -8.39071 + -68.31903 -80.68657 -8.70944 + -74.68146 -78.36356 -9.02265 + -74.68168 -78.36527 -9.02265 + -76.24308 -77.77471 -9.10004 + -77.79264 -77.18023 -9.17703 + -79.33026 -76.58182 -9.25364 + -80.85588 -75.97948 -9.32984 + -82.36942 -75.37322 -9.40564 + -82.36971 -75.36997 -9.40564 + -89.75302 -72.27982 -9.77823 + -96.82241 -69.09157 -10.13951 + -103.56806 -65.80522 -10.48862 + -109.98018 -62.42077 -10.82473 + -116.04895 -58.93822 -11.14698 + -116.04884 -58.93732 -11.14698 + -121.76599 -55.40572 -11.45456 + -127.12998 -51.87412 -11.74679 + -132.14081 -48.34252 -12.02305 + -136.79848 -44.81092 -12.28270 + -141.10300 -41.27932 -12.52512 + -141.10300 -41.27917 -12.52512 + -145.05433 -37.74757 -12.74970 + -148.65251 -34.21597 -12.95601 + -151.89753 -30.68437 -13.14363 + -154.78938 -27.15277 -13.31216 + -157.32808 -23.62117 -13.46118 + -157.32810 -23.62089 -13.46118 + -160.28893 -18.67665 -13.63630 + -162.55756 -13.73241 -13.77183 + -164.13400 -8.78817 -13.86738 + -165.01825 -3.84393 -13.92256 + -165.21030 1.10031 -13.93699 + -165.21034 1.10109 -13.93699 + -164.76878 5.69217 -13.91367 + -163.73038 10.28325 -13.85527 + -162.09514 14.87433 -13.76212 + -159.86306 19.46541 -13.63458 + -157.03413 24.05649 -13.47299 + -157.03406 24.05687 -13.47299 + -153.60825 28.64795 -13.27782 + -149.58559 33.23903 -13.04993 + -144.96610 37.83011 -12.79031 + -139.74977 42.42119 -12.49994 + -133.93659 47.01227 -12.17981 + -133.93659 47.01227 -12.17981 + -126.51360 52.29201 -11.77625 + -118.30128 57.57175 -11.33706 + -109.29964 62.85149 -10.86476 + -99.50868 68.13124 -10.36190 + -88.92840 73.41098 -9.83099 + -88.92840 73.41098 -9.83099 + -77.55880 78.69072 -9.27477 + -65.39988 83.97046 -8.69670 + -52.45163 89.25020 -8.10041 + -38.71407 94.52995 -7.48956 + -24.18718 99.80969 -6.86779 + -24.18782 99.81287 -6.86779 + -8.87114 105.09261 -6.23893 + 7.23487 110.37235 -5.60755 + 24.13020 115.65209 -4.97842 + 41.81484 120.93183 -4.35628 + 60.28881 126.21158 -3.74590 + 60.28980 126.21942 -3.74590 + 79.55427 131.49916 -3.15222 + 99.60805 136.77891 -2.58092 + 120.45116 142.05865 -2.03786 + 142.08359 147.33839 -1.52893 + 164.50534 152.61813 -1.05998 + 164.50542 152.61827 -1.05998 + 164.81071 152.67375 -1.05400 + 165.11610 152.71439 -1.04803 + 165.42157 152.75508 -1.04207 + 165.72712 152.79585 -1.03612 + 166.03276 152.83665 -1.03018 + 166.03276 152.83663 -1.03018 + 171.85544 153.62211 -0.91888 + 177.70818 154.41907 -0.81071 + 183.59147 155.23018 -0.70577 + 189.50585 156.05544 -0.60417 + 195.45183 156.89218 -0.50601 + 195.45072 -102.59871 -0.50601 + 183.30421 -99.82839 -0.21893 + 171.49648 -96.94359 0.03491 + 160.04340 -93.91767 0.25759 + 148.96189 -90.75063 0.45116 + 138.26783 -87.46911 0.61772 + 138.26825 -87.46730 0.61772 + 133.07504 -85.64101 0.69150 + 127.99115 -83.82335 0.75924 + 123.01604 -82.01558 0.82118 + 118.14909 -80.21768 0.87753 + 113.38974 -78.42843 0.92852 + 113.39026 -78.44395 0.92852 + 106.35801 -76.09690 0.99614 + 99.54339 -73.65870 1.05266 + 92.95496 -71.12689 1.09878 + 86.60088 -68.50969 1.13517 + 80.48832 -65.82269 1.16254 + 80.48828 -65.82062 1.16254 + 74.62439 -63.04742 1.18154 + 69.01534 -60.21842 1.19275 + 63.66638 -57.33212 1.19674 + 58.58245 -54.39446 1.19407 + 53.76773 -51.41888 1.18529 + 53.76781 -51.41768 1.18529 + 48.76992 -48.57269 1.16922 + 44.04803 -45.88507 1.14702 + 39.58890 -43.31771 1.11923 + 35.37943 -40.90214 1.08643 + 31.40117 -38.70576 1.04918 + 31.39785 -38.68136 1.04918 + 26.17217 -35.80563 0.99058 + 21.39389 -32.46664 0.92554 + 17.07820 -29.19869 0.85511 + 13.21456 -26.00995 0.78036 + 9.79117 -22.91218 0.70235 + 9.79261 -22.90343 0.70235 + 6.79860 -19.88530 0.62206 + 4.22010 -16.96616 0.54010 + 2.04359 -14.14307 0.45700 + 0.25549 -11.41751 0.37332 + -1.15814 -8.79534 0.28957 + -1.15925 -8.77475 0.28957 + -2.21262 -6.31716 0.20622 + -2.94068 -4.13012 0.12342 + -3.38198 -2.22020 0.04127 + -3.57515 -0.58497 -0.04009 + -3.55846 0.77838 -0.12056 + -3.55833 0.77785 -0.12056 + -3.36970 1.87237 -0.20010 + -3.04647 2.70104 -0.27881 + -2.62569 3.26646 -0.35679 + -2.14404 3.57095 -0.43414 + -1.63791 3.61645 -0.51095 + -1.63795 3.61587 -0.51095 + -1.14356 3.40396 -0.58736 + -0.69680 2.93577 -0.66349 + -0.33347 2.21211 -0.73943 + -0.08931 1.23346 -0.81526 + 0.00001 0.00005 -0.89107 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9259,7 +9395,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -9271,7 +9407,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -9438,53 +9574,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.81578 100.76161 31.86408 3.83947 110 25 1 - 8.38501 101.65432 33.06586 4.18246 110 25 1 - 8.91260 102.54703 34.26739 4.52546 110 26 1 - 9.40128 103.43974 35.46867 4.86846 110 27 1 - 9.76807 104.33245 36.36949 5.12571 110 27 1 - 9.93957 104.33245 36.96996 5.29720 110 27 1 - 10.27287 105.22516 37.87056 5.55445 110 27 1 - 10.66076 106.11787 39.07118 5.89745 110 27 1 - 11.01973 107.01058 40.27161 6.24045 110 27 1 - 11.35199 107.90329 41.47185 6.58344 110 27 1 - 11.57402 108.79600 42.37192 6.84069 110 27 1 - 10.29889 108.79600 25.59840 7.93223 110 40 1 - 12.03942 106.77700 29.70475 9.70495 110 41 1 - 14.35854 104.75800 35.16081 12.06858 110 41 1 - 16.66648 102.73900 40.59674 14.43220 110 41 1 - 18.96436 100.72000 46.01595 16.79583 110 41 1 - 20.66240 98.70100 50.07174 18.56855 110 41 1 - 24.88229 98.70100 177.20934 12.31919 110 14 1 - 24.68041 100.07440 165.98087 12.82216 110 15 1 - 24.56842 101.44780 168.35015 13.49277 110 15 1 - 24.39149 102.82120 174.33058 14.16339 110 14 1 - 24.16241 104.19460 181.36358 14.83401 110 13 1 - 23.72633 105.56800 186.93725 15.33697 110 13 1 - 24.09796 105.56800 190.74477 15.70861 110 13 1 - 23.59781 106.94140 196.54307 16.17524 110 12 1 - 23.28127 108.31480 204.37210 16.84586 110 11 1 - 22.95086 109.68820 212.27871 17.51648 110 11 1 - 22.61305 111.06160 220.23553 18.18709 110 10 1 - 22.10669 112.43500 226.22528 18.69006 110 10 1 - 22.44200 112.43500 230.22741 19.02537 110 10 1 - 21.94005 113.80840 236.24102 19.52833 110 9 1 - 21.61211 115.18180 244.27295 20.19895 110 9 1 - 21.29194 116.55520 252.31767 20.86956 110 8 1 - 20.98096 117.92860 260.37206 21.54018 110 0 1 - 20.51290 119.30200 266.41766 22.04314 110 0 1 - 22.58814 119.30200 270.45017 24.11838 110 0 1 - 20.39128 120.67540 276.50161 22.88141 110 0 1 - 20.11193 122.04880 284.57394 23.55203 110 0 1 - 19.84137 123.42220 292.65001 24.22265 110 0 1 - 19.57845 124.79560 300.72910 24.89327 110 0 1 - 19.15437 126.16900 306.79002 25.39623 110 0 1 - 19.48968 126.16900 310.83135 25.73154 110 0 1 - 19.07053 127.54240 316.89433 26.23450 110 0 1 - 18.82248 128.91580 324.97970 26.90512 110 0 1 - 18.57680 130.28920 333.06652 27.57574 110 0 1 - 18.33247 131.66260 341.15457 28.24635 110 0 1 - 17.92077 133.03600 347.22126 28.74932 110 0 1 + 7.82402 100.76161 31.86408 3.83947 110 25 1 + 8.39310 101.65432 33.06586 4.18246 110 25 1 + 8.92056 102.54703 34.26739 4.52546 110 26 1 + 9.40915 103.43974 35.46867 4.86846 110 27 1 + 9.77585 104.33245 36.36949 5.12571 110 27 1 + 9.94735 104.33245 36.96996 5.29720 110 27 1 + 10.28059 105.22516 37.87056 5.55445 110 27 1 + 10.66846 106.11787 39.07118 5.89745 110 27 1 + 11.02743 107.01058 40.27161 6.24045 110 27 1 + 11.35972 107.90329 41.47185 6.58344 110 27 1 + 11.58184 108.79600 42.37192 6.84069 110 27 1 + 10.30280 108.79600 25.59840 7.93223 110 40 1 + 12.04339 106.77700 29.70475 9.70495 110 41 1 + 14.36261 104.75800 35.16081 12.06858 110 41 1 + 16.67067 102.73900 40.59674 14.43220 110 41 1 + 18.96869 100.72000 46.01595 16.79583 110 41 1 + 20.66690 98.70100 50.07174 18.56855 110 41 1 + 24.90933 98.70100 177.20934 12.31919 110 14 1 + 24.70918 100.07440 165.98087 12.82216 110 15 1 + 24.59924 101.44780 168.35015 13.49277 110 15 1 + 24.42467 102.82120 174.33058 14.16339 110 14 1 + 24.19827 104.19460 181.36358 14.83401 110 13 1 + 23.76518 105.56800 186.93725 15.33697 110 13 1 + 24.10049 105.56800 190.74477 15.67228 110 13 1 + 23.63997 106.94140 196.54307 16.17524 110 12 1 + 23.32704 108.31480 204.37210 16.84586 110 11 1 + 23.00051 109.68820 212.27871 17.51648 110 11 1 + 22.66688 111.06160 220.23553 18.18709 110 10 1 + 22.16494 112.43500 226.22528 18.69006 110 10 1 + 22.50025 112.43500 230.22741 19.02537 110 10 1 + 22.00298 113.80840 236.24102 19.52833 110 9 1 + 21.67994 115.18180 244.27295 20.19895 110 9 1 + 21.36486 116.55520 252.31767 20.86956 110 8 1 + 21.05911 117.92860 260.37206 21.54018 110 0 1 + 20.59640 119.30200 266.41766 22.04314 110 0 1 + 20.93171 119.30200 270.45017 22.37845 110 0 1 + 20.48019 120.67540 276.50161 22.88141 110 0 1 + 20.20628 122.04880 284.57394 23.55203 110 0 1 + 19.94115 123.42220 292.65001 24.22265 110 0 1 + 19.68362 124.79560 300.72910 24.89327 110 0 1 + 19.26485 126.16900 306.79002 25.39623 110 0 1 + 19.60016 126.16900 310.83135 25.73154 110 0 1 + 19.18620 127.54240 316.89433 26.23450 110 0 1 + 18.94322 128.91580 324.97970 26.90512 110 0 1 + 18.70255 130.28920 333.06652 27.57574 110 0 1 + 18.46317 131.66260 341.15457 28.24635 110 0 1 + 18.05642 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9502,9 +9638,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.507 'Hydrobiaklei' - -12.00 7.751 'Basisveen' - -12.50 75.496 'Eerste zandlaag' + -10.00 8.514 'Hydrobiaklei' + -12.00 7.753 'Basisveen' + -12.50 75.631 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9526,7 +9662,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.81 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.98 'Eerste zandlaag' + -12.50 -29.03 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -9650,24 +9786,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 71.33900 32.23900 7.86393 7.28848 -10.88000 71.33900 32.23900 9.24535 7.34485 -10.94000 71.33900 32.23900 10.86885 7.41109 @@ -9761,7 +9897,7 @@ Lambda passive -10.97000 5.17420 31.09283 1.26873 0.45536 0.24520 6.00921 -11.03000 5.84560 35.12741 1.43335 0.45536 0.24520 6.00921 -11.09000 6.51700 38.15335 1.55683 0.45536 0.24520 6.00921 - -11.09000 6.51700 38.09030 -3.30713 0.70481 0.00000 5.84689 + -11.09000 6.51700 38.09030 -3.30713 0.69929 0.00000 5.84689 -11.18100 6.50749 37.13796 -3.30434 0.69929 0.00000 5.70696 -11.27200 6.49798 36.38146 -3.30632 0.69929 0.00000 5.59889 -11.36300 6.48847 35.91666 -3.30987 0.69929 0.00000 5.53546 @@ -9773,7 +9909,7 @@ Lambda passive -11.81800 6.44092 34.91455 -3.33088 0.69929 0.00000 5.42074 -11.90900 6.43141 34.81167 -3.33521 0.69929 0.00000 5.41276 -12.00000 6.42190 34.74335 -3.33847 0.69929 0.00000 5.40813 - -12.00000 6.42190 18.56125 -0.24957 1.01009 0.00000 3.01605 + -12.00000 6.42190 18.56125 -0.24957 0.74118 0.00000 3.01605 -12.10000 5.35090 17.07239 -0.71711 0.74118 0.00000 3.19056 -12.20000 4.27990 15.10025 -1.34197 0.74118 0.00000 3.52818 -12.30000 3.20890 13.14123 -1.96811 0.74118 0.00000 4.09525 @@ -9803,7 +9939,7 @@ Lambda passive -15.02000 26.74570 152.13832 6.86581 0.47008 0.25671 5.68833 -15.16000 28.17230 160.19767 7.23257 0.47008 0.25673 5.68635 -15.30000 29.59890 166.24550 7.50762 0.47008 0.25674 5.68511 - -15.30000 29.59890 170.27895 7.69098 0.31301 0.25675 5.68439 + -15.30000 29.59890 170.27895 7.69098 0.47008 0.25675 5.68439 -15.44000 31.02550 176.33119 7.96601 0.47008 0.25676 5.68343 -15.58000 32.45210 184.40388 8.33270 0.47008 0.25677 5.68234 -15.72000 33.87870 192.47975 8.69937 0.47008 0.25678 5.68144 @@ -9956,32 +10092,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 19.99774 1.51537 1 0 A 0.93947 71.19850 23.02367 1.74467 1 0 A 1.10410 71.78710 27.05825 2.05040 1 0 A 1.26873 72.37570 31.09283 2.35613 1 0 A 1.43335 72.96430 35.12741 2.66186 1 0 A 1.55683 73.55290 38.15335 2.89116 1 0 A - 1.07481 73.55290 38.09030 4.59156 110 0 1 - 7.33553 74.94561 37.13796 4.55065 110 20 1 - 6.33143 76.33832 36.38146 4.54400 110 17 1 - 5.37888 77.73103 35.91666 4.53735 110 15 1 - 4.47517 79.12374 35.59797 4.53070 110 0 1 - 3.70504 80.51645 35.41437 4.52571 110 0 1 - 3.53022 80.51645 35.31241 4.52239 110 0 1 - 2.80361 81.90916 35.18176 4.51740 110 0 1 - 2.03078 83.30187 35.03566 4.51075 110 0 1 - 1.29688 84.69458 34.91455 4.50410 110 0 1 - 0.59967 86.08729 34.81167 4.49745 110 0 1 - 0.02430 87.48000 34.74335 4.49246 110 0 1 - 3.84956 87.48000 18.56125 6.21623 110 0 1 - 1.63151 89.72100 17.07239 3.96599 110 0 1 - 0.88221 91.96200 15.10025 3.17218 110 0 1 - 0.14410 94.20300 13.14123 2.37838 110 0 1 + 1.03934 73.55290 38.09030 4.55564 110 0 1 + 7.38427 74.94561 37.13796 4.55065 110 20 1 + 6.37814 76.33832 36.38146 4.54400 110 18 1 + 5.42341 77.73103 35.91666 4.53735 110 15 1 + 4.51735 79.12374 35.59797 4.53070 110 0 1 + 3.74469 80.51645 35.41437 4.52571 110 0 1 + 3.56987 80.51645 35.31241 4.52239 110 0 1 + 2.84055 81.90916 35.18176 4.51740 110 0 1 + 2.06482 83.30187 35.03566 4.51075 110 0 1 + 1.32785 84.69458 34.91455 4.50410 110 0 1 + 0.62740 86.08729 34.81167 4.49745 110 0 1 + 0.04865 87.48000 34.74335 4.49246 110 0 1 + 2.19077 87.48000 18.56125 4.56134 110 0 1 + 1.62754 89.72100 17.07239 3.96599 110 0 1 + 0.87815 91.96200 15.10025 3.17218 110 0 1 + 0.13991 94.20300 13.14123 2.37838 110 0 1 0.00000 96.44400 11.19306 1.58457 1 0 A 0.00000 98.68500 9.73768 0.98922 1 0 A - 7.93205 98.68500 8.83693 0.66918 330 90 3 + 7.93090 98.68500 8.83693 0.66918 330 90 3 0.63774 100.05840 15.37247 1.17215 1 0 A 1.00279 101.43180 23.89347 1.84276 1 0 A 1.36806 102.80520 32.18680 2.51338 1 0 A @@ -9994,23 +10130,23 @@ Status character 3.56466 111.04560 80.04950 6.53708 1 0 A 3.83967 112.41900 86.01153 7.04005 1 0 A 4.02303 112.41900 89.99195 7.37536 1 0 A - 5.46660 113.79240 95.97127 7.87832 110 0 1 - 7.13577 115.16580 103.95761 8.54894 110 0 1 - 8.79717 116.53920 111.95936 9.21955 110 0 1 - 10.44939 117.91260 119.97473 9.89017 110 9 1 - 11.92337 119.28600 125.99378 10.39313 110 9 1 - 12.25868 119.28600 130.01005 10.72844 110 9 1 - 13.72154 120.65940 136.03922 11.23140 110 10 1 - 15.34212 122.03280 144.08513 11.90202 110 11 1 - 16.95392 123.40620 152.13832 12.57264 110 11 1 - 18.55807 124.77960 160.19767 13.24326 110 12 1 - 19.98808 126.15300 166.24550 13.74622 110 12 1 - 15.61823 126.15300 170.27895 9.37638 110 9 1 - 21.74846 127.52640 176.33119 14.58449 110 12 1 - 23.33775 128.89980 184.40388 15.25511 110 13 1 - 24.92465 130.27320 192.47975 15.92572 110 13 1 - 26.51022 131.64660 200.55831 16.59634 110 13 1 - 27.92785 133.02000 206.61870 17.09930 110 14 1 + 5.40367 113.79240 95.97127 7.87832 110 0 1 + 7.06794 115.16580 103.95761 8.54894 110 0 1 + 8.72425 116.53920 111.95936 9.21955 110 0 1 + 10.37124 117.91260 119.97473 9.89017 110 9 1 + 11.83988 119.28600 125.99378 10.39313 110 9 1 + 12.17519 119.28600 130.01005 10.72844 110 9 1 + 13.63263 120.65940 136.03922 11.23140 110 10 1 + 15.24777 122.03280 144.08513 11.90202 110 11 1 + 16.85413 123.40620 152.13832 12.57264 110 11 1 + 18.45290 124.77960 160.19767 13.24326 110 12 1 + 19.87759 126.15300 166.24550 13.74622 110 12 1 + 20.21290 126.15300 170.27895 14.08153 110 12 1 + 21.63279 127.52640 176.33119 14.58449 110 12 1 + 23.21700 128.89980 184.40388 15.25511 110 13 1 + 24.79891 130.27320 192.47975 15.92572 110 13 1 + 26.37952 131.64660 200.55831 16.59634 110 13 1 + 27.79220 133.02000 206.61870 17.09930 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10025,9 +10161,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 3.132 'Hydrobiaklei' - -12.00 0.458 'Basisveen' - -12.50 36.904 'Eerste zandlaag' + -11.09 3.164 'Hydrobiaklei' + -12.00 0.374 'Basisveen' + -12.50 37.034 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -10046,7 +10182,7 @@ Layer name -10.79 0.14 'Grind' -11.09 0.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.17 'Eerste zandlaag' + -12.50 14.22 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10268,8 +10404,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 397.48623 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 442.02399 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 397.48362 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 442.08439 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10310,10 +10446,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 17.08 : Percentage mobilized resistance left - 13.94 : Percentage mobilized resistance right - 105.94 : Effective left - 128.92 : Effective right + 17.10 : Percentage mobilized resistance left + 13.96 : Percentage mobilized resistance right + 106.05 : Effective left + 129.09 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 620.14 : Max effective resistance left @@ -10322,8 +10458,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 15.09 : Vertical force left - 43.70 : Vertical force right + 15.16 : Vertical force left + 43.76 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -10332,10 +10468,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --43.70 : Active force -15.09 : Passive force --43.70 : Plugged active force -15.09 : Plugged passive force +-43.76 : Active force +15.16 : Passive force +-43.76 : Plugged active force +15.16 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -10355,192 +10491,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.67342 - 0.00000 0.00000 15.02600 - 0.00000 0.00000 14.37859 - 0.00000 0.00000 13.73117 - 0.00000 0.00000 13.08376 - 0.00000 0.00000 12.43634 - 0.00000 0.00000 12.43634 - 0.00000 0.00000 11.78893 - 0.00000 0.00000 11.14151 - 0.00000 0.00000 10.49409 - 0.00000 0.00000 9.84668 - 0.00000 0.00000 9.19926 - 0.00000 0.00000 9.19926 - 0.00283 0.07063 8.33605 - 0.02260 0.28253 7.47283 - 0.07628 0.63569 6.60961 - 0.18082 1.13011 5.74636 - 0.35316 1.76580 4.88308 - 0.35316 1.76580 4.88308 - 0.56080 2.40345 4.16364 - 0.83712 3.13920 3.44414 - 1.19191 3.97305 2.72452 - 1.63500 4.90500 2.00473 - 2.17618 5.93505 1.28475 - 2.17618 5.93505 1.28475 - 2.82528 7.06320 0.56450 - 3.59209 8.28945 -0.15609 - 4.48644 9.61380 -0.87716 - 5.51812 11.03625 -1.59880 - 6.69696 12.55680 -2.32115 - 6.69696 12.55680 -2.32115 - 7.83593 13.94293 -2.94301 - 9.09722 15.40162 -3.56560 - 10.48709 16.93286 -4.18906 - 12.01176 18.53666 -4.81350 - 13.67747 20.21301 -5.43906 - 13.67747 -135.77321 -5.43906 - -1.66885 -133.43924 -6.26975 - -16.74183 -130.97777 -7.10017 - -31.52693 -128.38881 -7.92789 - -46.00963 -125.67237 -8.75049 - -60.17539 -122.82843 -9.56556 - -60.17474 -122.83930 -9.56556 - -69.91943 -120.76743 -10.13176 - -79.49586 -118.63277 -10.69232 - -88.89900 -116.43533 -11.24649 - -98.12383 -114.17511 -11.79350 - -107.16534 -111.85210 -12.33260 - -107.16556 -111.85381 -12.33260 - -109.39674 -111.26324 -12.46605 - -111.61606 -110.66876 -12.59895 - -113.82346 -110.07035 -12.73129 - -116.01885 -109.46801 -12.86305 - -118.20216 -108.86176 -12.99423 - -118.20245 -108.85850 -12.99423 - -128.93461 -105.76835 -13.64094 - -139.35285 -102.58010 -14.27141 - -149.44736 -99.29375 -14.88436 - -159.20833 -95.90930 -15.47852 - -168.62595 -92.42675 -16.05263 - -168.62584 -92.42586 -16.05263 - -177.69021 -88.84521 -16.60543 - -186.39161 -85.16646 -17.13585 - -194.72023 -81.38961 -17.64282 - -202.66626 -77.51466 -18.12531 - -210.21990 -73.54161 -18.58227 - -210.21990 -73.54146 -18.58227 - -217.37130 -69.47031 -19.01268 - -224.11069 -65.30106 -19.41570 - -230.42824 -61.03371 -19.79054 - -236.31416 -56.66826 -20.13640 - -241.75862 -52.20471 -20.45248 - -241.75864 -52.20443 -20.45248 - -248.62054 -45.79065 -20.84350 - -254.57105 -39.18460 -21.17310 - -259.58326 -32.38627 -21.44006 - -263.63023 -25.39566 -21.64314 - -266.68507 -18.21278 -21.78111 - -266.68511 -18.21200 -21.78111 - -268.60974 -11.37002 -21.85002 - -269.63413 -4.36224 -21.86172 - -269.73673 2.81132 -21.81620 - -268.89600 10.15067 -21.71343 - -267.09038 17.65581 -21.55340 - -267.09030 17.65620 -21.55340 - -264.29818 25.32713 -21.33625 - -260.49807 33.16384 -21.06280 - -255.66840 41.16635 -20.73410 - -249.78763 49.33465 -20.35117 - -242.83421 57.66873 -19.91505 - -242.83421 57.66873 -19.91505 - -233.48373 67.45788 -19.34926 - -222.65338 77.46629 -18.71769 - -210.31038 87.69396 -18.02383 - -196.42196 98.14088 -17.27114 - -180.95533 108.80706 -16.46312 - -180.95533 108.80706 -16.46312 - -163.87772 119.69250 -15.60359 - -145.15634 130.79719 -14.69787 - -124.75843 142.12114 -13.75171 - -102.65120 153.66434 -12.77087 - -78.80187 165.42680 -11.76108 - -78.80251 165.42998 -11.76108 - -53.17783 177.41169 -10.72849 - -25.74549 189.61266 -9.68087 - 3.52728 202.03289 -8.62648 - 34.67327 214.67237 -7.57357 - 67.72525 227.53111 -6.53038 - 67.72623 227.53898 -6.53038 - 102.71816 240.61698 -5.50558 - 139.68164 253.91423 -4.50964 - 178.64944 267.43073 -3.55356 - 219.65435 281.16650 -2.64830 - 262.72915 295.12151 -1.80484 - 262.72923 295.12167 -1.80484 - 263.31961 295.23107 -1.79402 - 263.91011 295.26328 -1.78322 - 264.50066 295.29554 -1.77243 - 265.09129 295.32783 -1.76166 - 265.68198 295.36016 -1.75090 - 265.68198 295.36015 -1.75090 - 276.91743 295.98191 -1.54901 - 288.17678 296.61782 -1.35215 - 299.46056 297.26788 -1.16054 - 310.76932 297.93209 -0.97438 - 322.10358 298.61046 -0.79387 - 322.10247 -143.40368 -0.79387 - 305.02672 -141.16859 -0.26164 - 288.22765 -138.79236 0.21526 - 271.72220 -136.27502 0.63983 - 255.52730 -133.61655 1.01505 - 239.65987 -130.81694 1.34392 - 239.66022 -130.81212 1.34392 - 231.86949 -128.88016 1.49190 - 224.19443 -126.95685 1.62936 - 216.63447 -125.04341 1.75664 - 209.18902 -123.13985 1.87410 - 201.85751 -121.24494 1.98207 - 201.85812 -121.26381 1.98207 - 190.94571 -118.47680 2.12849 - 180.30621 -115.33135 2.25499 - 169.96011 -112.03092 2.36266 - 159.92085 -108.58976 2.45256 - 150.20052 -105.02521 2.52578 - 150.20031 -105.01687 2.52578 - 140.81077 -101.32989 2.58338 - 131.76127 -97.54412 2.62629 - 123.06051 -93.66696 2.65542 - 114.71633 -89.70899 2.67168 - 106.73551 -85.68408 2.67598 - 106.73564 -85.68150 2.67598 - 98.33004 -82.44386 2.66794 - 90.24307 -79.32019 2.64751 - 82.46073 -76.35471 2.61568 - 74.96548 -73.58855 2.57343 - 67.73352 -71.10728 2.52174 - 67.72999 -71.08020 2.52174 - 58.17959 -65.37285 2.43539 - 49.42001 -59.78495 2.33469 - 41.43343 -54.33363 2.22161 - 34.19932 -49.03815 2.09813 - 27.69448 -43.91974 1.96622 - 27.69602 -43.90790 1.96622 - 21.89762 -38.96074 1.82769 - 16.77756 -34.21610 1.68377 - 12.30765 -29.67429 1.53555 - 8.45900 -25.34164 1.38416 - 5.20177 -21.22791 1.23069 - 5.20059 -21.20545 1.23069 - 2.50805 -17.29744 1.07611 - 0.34690 -13.61251 0.92092 - -1.31365 -10.14607 0.76553 - -2.50419 -6.89810 0.61036 - -3.25609 -3.88538 0.45582 - -3.25476 -3.86577 0.45582 - -3.59458 -1.11545 0.30219 - -3.59679 0.99838 0.14945 - -3.33892 2.60039 -0.00246 - -2.89244 3.69330 -0.15359 - -2.32844 4.27962 -0.30399 - -2.32848 4.27886 -0.30399 - -1.68714 4.68968 -0.45381 - -1.05418 4.26894 -0.60322 - -0.51524 3.34666 -0.75234 - -0.14048 1.92359 -0.90131 - 0.00001 0.00007 -1.05023 + 0.00000 0.00000 15.67153 + 0.00000 0.00000 15.02418 + 0.00000 0.00000 14.37682 + 0.00000 0.00000 13.72946 + 0.00000 0.00000 13.08211 + 0.00000 0.00000 12.43475 + 0.00000 0.00000 12.43475 + 0.00000 0.00000 11.78740 + 0.00000 0.00000 11.14004 + 0.00000 0.00000 10.49268 + 0.00000 0.00000 9.84533 + 0.00000 0.00000 9.19797 + 0.00000 0.00000 9.19797 + 0.00283 0.07063 8.33483 + 0.02260 0.28253 7.47169 + 0.07628 0.63569 6.60855 + 0.18082 1.13011 5.74538 + 0.35316 1.76580 4.88218 + 0.35316 1.76580 4.88218 + 0.56080 2.40345 4.16281 + 0.83712 3.13920 3.44337 + 1.19191 3.97305 2.72381 + 1.63500 4.90500 2.00410 + 2.17618 5.93505 1.28417 + 2.17618 5.93505 1.28417 + 2.82528 7.06320 0.56400 + 3.59209 8.28945 -0.15654 + 4.48644 9.61380 -0.87754 + 5.51812 11.03625 -1.59912 + 6.69696 12.55680 -2.32139 + 6.69696 12.55680 -2.32139 + 7.83593 13.94293 -2.94320 + 9.09722 15.40162 -3.56574 + 10.48709 16.93286 -4.18913 + 12.01176 18.53666 -4.81352 + 13.67747 20.21301 -5.43902 + 13.67747 -135.77060 -5.43902 + -1.66855 -133.43663 -6.26964 + -16.74123 -130.97516 -7.09998 + -31.52604 -128.38620 -7.92763 + -46.00844 -125.66976 -8.75016 + -60.17390 -122.82582 -9.56515 + -60.17325 -122.83670 -9.56515 + -69.91773 -120.76483 -10.13130 + -79.49395 -118.63017 -10.69181 + -88.89689 -116.43273 -11.24593 + -98.12152 -114.17251 -11.79289 + -107.16281 -111.84950 -12.33193 + -107.16303 -111.85121 -12.33193 + -109.39416 -111.26065 -12.46537 + -111.61343 -110.66616 -12.59826 + -113.82078 -110.06775 -12.73058 + -116.01612 -109.46542 -12.86233 + -118.19937 -108.85916 -12.99350 + -118.19967 -108.85591 -12.99350 + -128.93157 -105.76576 -13.64015 + -139.34955 -102.57751 -14.27056 + -149.44380 -99.29116 -14.88344 + -159.20451 -95.90671 -15.47754 + -168.62187 -92.42416 -16.05158 + -168.62176 -92.42326 -16.05158 + -177.68587 -88.84261 -16.60433 + -186.38701 -85.16386 -17.13468 + -194.71537 -81.38701 -17.64160 + -202.66114 -77.51206 -18.12403 + -210.21451 -73.53901 -18.58093 + -210.21451 -73.53886 -18.58093 + -217.36566 -69.46771 -19.01128 + -224.10478 -65.29846 -19.41424 + -230.42208 -61.03111 -19.78902 + -236.30773 -56.66566 -20.13483 + -241.75194 -52.20211 -20.45086 + -241.75196 -52.20183 -20.45086 + -248.61349 -45.78805 -20.84179 + -254.56364 -39.18200 -21.17132 + -259.57548 -32.38367 -21.43821 + -263.62209 -25.39306 -21.64122 + -266.67656 -18.21018 -21.77912 + -266.67660 -18.20940 -21.77912 + -268.60089 -11.36742 -21.84797 + -269.62495 -4.35964 -21.85961 + -269.72722 2.81392 -21.81403 + -268.88614 10.15327 -21.71121 + -267.08018 17.65841 -21.55113 + -267.08011 17.65880 -21.55113 + -264.28765 25.32973 -21.33392 + -260.48720 33.16645 -21.06043 + -255.65719 41.16895 -20.73168 + -249.77609 49.33725 -20.34871 + -242.82232 57.67134 -19.91254 + -242.82232 57.67133 -19.91254 + -233.47145 67.46049 -19.34671 + -222.64071 77.46890 -18.71510 + -210.29733 87.69656 -18.02119 + -196.40851 98.14349 -17.26848 + -180.94150 108.80967 -16.46043 + -180.94150 108.80967 -16.46043 + -163.86350 119.69510 -15.60086 + -145.14174 130.79979 -14.69512 + -124.74343 142.12374 -13.74894 + -102.63581 153.66694 -12.76808 + -78.78609 165.42940 -11.75829 + -78.78674 165.43258 -11.75829 + -53.16166 177.41429 -10.72569 + -25.72894 189.61526 -9.67807 + 3.54423 202.03549 -8.62369 + 34.69060 214.67497 -7.57079 + 67.74297 227.53371 -6.52761 + 67.74396 227.54156 -6.52761 + 102.73627 240.61955 -5.50282 + 139.70013 253.91680 -4.50691 + 178.66832 267.43331 -3.55086 + 219.67361 281.16907 -2.64563 + 262.74879 295.12409 -1.80221 + 262.74887 295.12423 -1.80221 + 263.33926 295.23362 -1.79140 + 263.92976 295.26584 -1.78059 + 264.52032 295.29809 -1.76981 + 265.11095 295.33038 -1.75903 + 265.70164 295.36271 -1.74827 + 265.70164 295.36270 -1.74827 + 276.93719 295.98446 -1.54639 + 288.19664 296.62037 -1.34955 + 299.48052 297.27043 -1.15795 + 310.78937 297.93464 -0.97180 + 322.12373 298.61301 -0.79130 + 322.12262 -143.46150 -0.79130 + 305.03993 -141.22641 -0.25911 + 288.23393 -138.85018 0.21774 + 271.72153 -136.33283 0.64226 + 255.51969 -133.67436 1.01744 + 239.64533 -130.87476 1.34627 + 239.64576 -130.87295 1.34627 + 231.85137 -128.94100 1.49422 + 224.17266 -127.01768 1.63166 + 216.60905 -125.10424 1.75893 + 209.15996 -123.20068 1.87637 + 201.82480 -121.30577 1.98433 + 201.82540 -121.32477 1.98433 + 190.90749 -118.53788 2.13072 + 180.26228 -115.39589 2.25721 + 169.91015 -112.09874 2.36486 + 159.86458 -108.66065 2.45475 + 150.13766 -105.09893 2.52797 + 150.13761 -105.09479 2.52797 + 140.74086 -101.41040 2.58558 + 131.68393 -97.62696 2.62850 + 122.97554 -93.75184 2.65765 + 114.62355 -89.79562 2.67394 + 106.63477 -85.77214 2.67827 + 106.63489 -85.76968 2.67827 + 98.22604 -82.44827 2.67028 + 90.13867 -79.32383 2.64992 + 82.35601 -76.35738 2.61817 + 74.86055 -73.59041 2.57602 + 67.62843 -71.10853 2.52443 + 67.62485 -71.08114 2.52443 + 58.07465 -65.36913 2.43825 + 49.31594 -59.77625 2.33775 + 41.33094 -54.31960 2.22489 + 34.09919 -49.01839 2.10166 + 27.59755 -43.89382 1.97003 + 27.59910 -43.88192 1.97003 + 21.80456 -38.93066 1.83180 + 16.68921 -34.17886 1.68819 + 12.22504 -29.62934 1.54032 + 8.38326 -25.28839 1.38928 + 5.13410 -21.16573 1.23620 + 5.13293 -21.14341 1.23620 + 2.44974 -17.22581 1.08202 + 0.29933 -13.53063 0.92724 + -1.34900 -10.05322 0.77227 + -2.52574 -6.79357 0.61753 + -3.26185 -3.76205 0.46343 + -3.26052 -3.74245 0.46343 + -3.59262 -1.08763 0.31024 + -3.58900 1.05397 0.15794 + -3.32132 2.68523 0.00646 + -2.86083 3.80883 -0.14423 + -2.27842 4.42730 -0.29422 + -2.27846 4.42654 -0.29422 + -1.64480 4.54204 -0.44362 + -1.03009 4.15620 -0.59263 + -0.50441 3.27018 -0.74135 + -0.13774 1.88469 -0.88993 + 0.00001 0.00007 -1.03846 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -10766,7 +10902,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -10778,7 +10914,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -10945,53 +11081,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 12.35343 100.76161 31.86408 3.83947 110 39 1 - 13.20244 101.65432 33.06586 4.18246 110 40 1 - 13.97609 102.54703 34.26739 4.52546 110 41 1 - 14.67870 103.43974 35.46867 4.86846 110 41 1 - 15.22884 104.33245 36.36949 5.12571 110 42 1 - 15.40034 104.33245 36.96996 5.29720 110 42 1 - 15.88798 105.22516 37.87056 5.55445 110 42 1 - 16.40262 106.11787 39.07118 5.89745 110 42 1 - 16.86214 107.01058 40.27161 6.24045 110 42 1 - 17.27018 107.90329 41.47185 6.58344 110 42 1 - 17.54461 108.79600 42.37192 6.84069 110 41 1 - 12.89620 108.79600 25.59840 7.93223 220 50 2 - 14.89007 106.77700 29.70475 9.70495 220 50 2 - 17.36360 104.75800 35.16081 12.06858 110 49 1 - 19.66357 102.73900 40.59674 14.43220 110 48 1 - 21.94269 100.72000 46.01595 16.79583 110 48 1 - 23.61203 98.70100 50.07174 18.56855 110 47 1 - 42.58009 98.70100 177.20934 12.31919 110 24 1 - 42.04685 100.07440 165.98087 12.82216 110 25 1 - 41.50904 101.44780 168.35015 13.49277 110 25 1 - 40.82272 102.82120 174.33058 14.16339 110 23 1 - 40.01157 104.19460 181.36358 14.83401 110 22 1 - 38.93165 105.56800 186.93725 15.33697 110 21 1 - 39.30329 105.56800 190.74477 15.70861 110 21 1 - 38.10758 106.94140 196.54307 16.17524 110 19 1 - 37.05109 108.31480 204.37210 16.84586 110 18 1 - 35.94314 109.68820 212.27871 17.51648 110 17 1 - 34.79702 111.06160 220.23553 18.18709 110 16 1 - 33.45837 112.43500 226.22528 18.69006 110 15 1 - 33.79368 112.43500 230.22741 19.02537 110 15 1 - 32.44169 113.80840 236.24102 19.52833 110 14 1 - 31.25001 115.18180 244.27295 20.19895 110 13 1 - 30.05597 116.55520 252.31767 20.86956 110 12 1 - 28.86452 117.92860 260.37206 21.54018 110 11 1 - 27.51299 119.30200 266.41766 22.04314 110 10 1 - 29.58822 119.30200 270.45017 24.11838 110 11 1 - 26.50774 120.67540 276.50161 22.88141 110 10 1 - 25.34546 122.04880 284.57394 23.55203 110 9 1 - 24.19317 123.42220 292.65001 24.22265 110 0 1 - 23.05022 124.79560 300.72910 24.89327 110 0 1 - 21.74832 126.16900 306.79002 25.39623 110 0 1 - 22.08362 126.16900 310.83135 25.73154 110 0 1 - 20.78880 127.54240 316.89433 26.23450 110 0 1 - 19.66651 128.91580 324.97970 26.90512 110 0 1 - 18.54763 130.28920 333.06652 27.57574 110 0 1 - 17.43068 131.66260 341.15457 28.24635 110 0 1 - 16.14655 133.03600 347.22126 28.74932 110 0 1 + 12.36236 100.76161 31.86408 3.83947 110 39 1 + 13.21129 101.65432 33.06586 4.18246 110 40 1 + 13.98489 102.54703 34.26739 4.52546 110 41 1 + 14.68747 103.43974 35.46867 4.86846 110 41 1 + 15.23760 104.33245 36.36949 5.12571 110 42 1 + 15.40910 104.33245 36.96996 5.29720 110 42 1 + 15.89675 105.22516 37.87056 5.55445 110 42 1 + 16.41144 106.11787 39.07118 5.89745 110 42 1 + 16.87104 107.01058 40.27161 6.24045 110 42 1 + 17.27919 107.90329 41.47185 6.58344 110 42 1 + 17.55377 108.79600 42.37192 6.84069 110 41 1 + 12.89711 108.79600 25.59840 7.93223 220 50 2 + 14.89100 106.77700 29.70475 9.70495 220 50 2 + 17.36842 104.75800 35.16081 12.06858 110 49 1 + 19.66855 102.73900 40.59674 14.43220 110 48 1 + 21.94786 100.72000 46.01595 16.79583 110 48 1 + 23.61741 98.70100 50.07174 18.56855 110 47 1 + 42.61239 98.70100 177.20934 12.31919 110 24 1 + 42.08121 100.07440 165.98087 12.82216 110 25 1 + 41.54577 101.44780 168.35015 13.49277 110 25 1 + 40.86212 102.82120 174.33058 14.16339 110 23 1 + 40.05395 104.19460 181.36358 14.83401 110 22 1 + 38.97730 105.56800 186.93725 15.33697 110 21 1 + 39.31261 105.56800 190.74477 15.67228 110 21 1 + 38.15679 106.94140 196.54307 16.17524 110 19 1 + 37.10414 108.31480 204.37210 16.84586 110 18 1 + 36.00029 109.68820 212.27871 17.51648 110 17 1 + 34.85851 111.06160 220.23553 18.18709 110 16 1 + 33.52442 112.43500 226.22528 18.69006 110 15 1 + 33.85973 112.43500 230.22741 19.02537 110 15 1 + 32.51252 113.80840 236.24102 19.52833 110 14 1 + 31.32578 115.18180 244.27295 20.19895 110 13 1 + 30.13681 116.55520 252.31767 20.86956 110 12 1 + 28.95055 117.92860 260.37206 21.54018 110 11 1 + 27.60426 119.30200 266.41766 22.04314 110 10 1 + 27.93957 119.30200 270.45017 22.37845 110 10 1 + 26.60429 120.67540 276.50161 22.88141 110 10 1 + 25.44728 122.04880 284.57394 23.55203 110 9 1 + 24.30022 123.42220 292.65001 24.22265 110 8 1 + 23.16245 124.79560 300.72910 24.89327 110 0 1 + 21.86563 126.16900 306.79002 25.39623 110 0 1 + 22.20094 126.16900 310.83135 25.73154 110 0 1 + 20.91106 127.54240 316.89433 26.23450 110 0 1 + 19.79361 128.91580 324.97970 26.90512 110 0 1 + 18.67949 130.28920 333.06652 27.57574 110 0 1 + 17.56725 131.66260 341.15457 28.24635 110 0 1 + 16.28782 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11009,9 +11145,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 13.172 'Hydrobiaklei' - -12.00 9.211 'Basisveen' - -12.50 106.541 'Eerste zandlaag' + -10.00 13.180 'Hydrobiaklei' + -12.00 9.213 'Basisveen' + -12.50 106.700 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -11033,7 +11169,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.80 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -40.90 'Eerste zandlaag' + -12.50 -40.96 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11157,24 +11293,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -11249,8 +11385,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -11268,7 +11404,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -11280,7 +11416,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -11310,7 +11446,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -11451,13 +11587,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -11470,24 +11606,24 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 2.49794 69.84300 58.91108 10.23728 110 0 1 - 8.70552 70.73571 59.07501 10.45829 110 0 1 - 7.77129 71.62842 59.55950 10.80128 110 0 1 - 6.92232 72.52113 60.24321 11.14428 110 0 1 - 6.15434 73.41384 61.05177 11.48728 110 0 1 - 5.46308 74.30655 61.71273 11.74453 110 0 1 - 5.46308 74.30655 62.17548 11.91602 110 0 1 - 4.84438 75.19926 62.89559 12.17327 110 0 1 - 4.29445 76.09197 63.89046 12.51627 110 0 1 - 3.80964 76.98468 64.91817 12.85927 110 0 1 - 3.38629 77.87739 65.97136 13.20226 110 0 1 - 3.02076 78.77010 66.77420 13.45951 110 0 1 - 10.14802 78.77010 41.96461 15.49997 110 0 1 - 6.93727 82.75110 38.00268 12.27314 110 0 1 - 4.89466 86.73210 32.76169 10.18968 110 0 1 - 2.87486 90.71310 27.56116 8.10622 110 0 1 - 1.45986 94.69410 22.39249 6.02276 110 0 1 - 0.52132 98.67510 18.53208 4.46017 110 0 1 + 2.46152 69.84300 58.91108 10.20104 110 0 1 + 8.75356 70.73571 59.07501 10.45829 110 0 1 + 7.81724 71.62842 59.55950 10.80128 110 0 1 + 6.96601 72.52113 60.24321 11.14428 110 0 1 + 6.19560 73.41384 61.05177 11.48728 110 0 1 + 5.50175 74.30655 61.71273 11.74453 110 0 1 + 5.50175 74.30655 62.17548 11.91602 110 0 1 + 4.88026 75.19926 62.89559 12.17327 110 0 1 + 4.32736 76.09197 63.89046 12.51627 110 0 1 + 3.83940 76.98468 64.91817 12.85927 110 0 1 + 3.41275 77.87739 65.97136 13.20226 110 0 1 + 3.04377 78.77010 66.77420 13.45951 110 0 1 + 8.47920 78.77010 41.96461 13.83574 110 0 1 + 6.93258 82.75110 38.00268 12.27314 110 0 1 + 4.88983 86.73210 32.76169 10.18968 110 0 1 + 2.86987 90.71310 27.56116 8.10622 110 0 1 + 1.45902 94.69410 22.39249 6.02276 110 0 1 + 0.52044 98.67510 18.53208 4.46017 110 0 1 1.43664 98.67510 33.91813 2.66609 1 0 A 1.70862 100.04850 40.08908 3.16905 1 0 A 2.07185 101.42190 48.22870 3.83967 1 0 A @@ -11505,19 +11641,19 @@ Status character 5.73470 115.15590 128.12317 10.54584 1 0 A 6.10246 116.52930 136.13813 11.21646 1 0 A 6.47026 117.90270 144.16229 11.88707 1 0 A - 6.92019 119.27610 150.18570 12.39004 110 0 1 - 7.25550 119.27610 154.20390 12.72534 110 0 1 - 9.60198 120.64950 160.23477 13.22831 110 0 1 - 12.10550 122.02290 168.28135 13.89892 110 0 1 - 14.59903 123.39630 176.33377 14.56954 110 8 1 - 17.08321 124.76970 184.39132 15.24016 110 9 1 - 19.39103 126.14310 190.43734 15.74312 110 10 1 - 15.02822 126.14310 194.46939 11.38031 110 8 1 - 22.02710 127.51650 200.51935 16.58139 110 11 1 - 24.49062 128.88990 208.58880 17.25201 110 12 1 - 26.95073 130.26330 216.66126 17.92263 110 12 1 - 29.40891 131.63670 224.73639 18.59324 110 13 1 - 31.69897 133.01010 230.79421 19.09621 110 14 1 + 6.82892 119.27610 150.18570 12.39004 110 0 1 + 7.16422 119.27610 154.20390 12.72534 110 0 1 + 9.50543 120.64950 160.23477 13.22831 110 0 1 + 12.00368 122.02290 168.28135 13.89892 110 0 1 + 14.49197 123.39630 176.33377 14.56954 110 0 1 + 16.97098 124.76970 184.39132 15.24016 110 9 1 + 19.27372 126.14310 190.43734 15.74312 110 10 1 + 19.60903 126.14310 194.46939 16.07843 110 10 1 + 21.90483 127.51650 200.51935 16.58139 110 11 1 + 24.36352 128.88990 208.58880 17.25201 110 12 1 + 26.81888 130.26330 216.66126 17.92263 110 12 1 + 29.27234 131.63670 224.73639 18.59324 110 13 1 + 31.55770 133.01010 230.79421 19.09621 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11532,9 +11668,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 4.924 'Hydrobiaklei' - -12.00 2.150 'Basisveen' - -12.50 35.604 'Eerste zandlaag' + -11.09 4.955 'Hydrobiaklei' + -12.00 2.065 'Basisveen' + -12.50 35.763 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -11553,7 +11689,7 @@ Layer name -10.79 0.38 'Grind' -11.09 1.05 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.67 'Eerste zandlaag' + -12.50 13.73 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11760,7 +11896,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=7 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -11775,8 +11911,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 439.74122 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 517.37351 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 439.73942 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 517.38077 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11820,10 +11956,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 24.42 : Percentage mobilized resistance left - 21.81 : Percentage mobilized resistance right - 151.45 : Effective left - 135.24 : Effective right + 24.46 : Percentage mobilized resistance left + 21.85 : Percentage mobilized resistance right + 151.71 : Effective left + 135.52 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -11832,8 +11968,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 30.18 : Vertical force left - 24.50 : Vertical force right + 30.31 : Vertical force left + 24.64 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -11842,17 +11978,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.50 : Active force -30.18 : Passive force --24.50 : Plugged active force -30.18 : Plugged passive force +-24.64 : Active force +30.31 : Passive force +-24.64 : Plugged active force +30.31 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -5.67 : Resulting Vertical Force Unplugged -5.67 : Resulting Vertical Force Plugged +5.66 : Resulting Vertical Force Unplugged +5.66 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -11865,192 +12001,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.00135 - 0.00000 0.00000 -7.94040 - 0.00000 0.00000 -7.87946 - 0.00000 0.00000 -7.81851 - 0.00000 0.00000 -7.75757 - 0.00000 0.00000 -7.69662 - 0.00000 0.00000 -7.69662 - 0.00000 0.00000 -7.63568 - 0.00000 0.00000 -7.57473 - 0.00000 0.00000 -7.51379 - 0.00000 0.00000 -7.45284 - 0.00000 0.00000 -7.39190 - 0.00000 0.00000 -7.39190 - 0.00000 0.00000 -7.31064 - 0.00000 0.00000 -7.22938 - 0.00000 0.00000 -7.14812 - 0.00000 0.00000 -7.06686 - 0.00000 0.00000 -6.98560 - 0.00000 0.00000 -6.98560 - 0.00000 0.00000 -6.91789 - 0.00000 0.00000 -6.85017 - 0.00000 0.00000 -6.78245 - 0.00000 0.00000 -6.71474 - 0.00000 0.00000 -6.64702 - 0.00000 0.00000 -6.64702 - 0.00000 0.00000 -6.57930 - 0.00000 0.00000 -6.51159 - 0.00000 0.00000 -6.44387 - 0.00000 0.00000 -6.37615 - 0.00000 0.00000 -6.30844 - 0.00000 0.00000 -6.30844 - 0.00000 0.00000 -6.25020 - 0.00000 0.00000 -6.19197 - 0.00000 0.00000 -6.13373 - 0.00000 0.00000 -6.07549 - 0.00000 0.00000 -6.01726 - 0.00000 0.15878 -6.01726 - 0.01810 0.15878 -5.94006 - 0.03620 0.15878 -5.86287 - 0.05430 0.15878 -5.78568 - 0.07240 0.15878 -5.70850 - 0.09051 0.15878 -5.63134 - 0.09115 0.14791 -5.63134 - 0.10299 0.14791 -5.57719 - 0.11482 0.14791 -5.52306 - 0.12665 0.14791 -5.46893 - 0.13848 0.14791 -5.41482 - 0.15032 0.14791 -5.36071 - 0.15010 0.14620 -5.36071 - 0.15302 0.14620 -5.34719 - 0.15595 0.14620 -5.33367 - 0.15887 0.14620 -5.32014 - 0.16179 0.14620 -5.30662 - 0.16472 0.14620 -5.29310 - 0.16442 0.14946 -5.29310 - 0.17937 0.14946 -5.22551 - 0.19431 0.14946 -5.15794 - 0.20926 0.14946 -5.09039 - 0.22420 0.14946 -5.02287 - 0.23915 0.14946 -4.95538 - 0.23926 0.15035 -4.95538 - 0.25430 0.15035 -4.88792 - 0.26933 0.15035 -4.82049 - 0.28437 0.15035 -4.75310 - 0.29940 0.15035 -4.68574 - 0.31444 0.15035 -4.61842 - 0.31444 0.15050 -4.61842 - 0.32949 0.15050 -4.55114 - 0.34454 0.15050 -4.48390 - 0.35959 0.15050 -4.41670 - 0.37464 0.15050 -4.34955 - 0.38969 0.15050 -4.28244 - 0.38967 0.15078 -4.28244 - 0.41078 0.15078 -4.18858 - 0.43189 0.15078 -4.09482 - 0.45300 0.15078 -4.00116 - 0.47411 0.15078 -3.90762 - 0.49522 0.15078 -3.81420 - 0.49518 0.15156 -3.81420 - 0.51488 0.15156 -3.72755 - 0.53458 0.15156 -3.64102 - 0.55428 0.15156 -3.55460 - 0.57399 0.15156 -3.46830 - 0.59369 0.15156 -3.38212 - 0.59376 0.15194 -3.38212 - 0.61351 0.15194 -3.29606 - 0.63327 0.15194 -3.21014 - 0.65302 0.15194 -3.12435 - 0.67277 0.15194 -3.03870 - 0.69252 0.15194 -2.95320 - 0.69252 0.15194 -2.95320 - 0.71524 0.15194 -2.85505 - 0.73795 0.15194 -2.75710 - 0.76067 0.15194 -2.65936 - 0.78338 0.15194 -2.56184 - 0.80610 0.15194 -2.46453 - 0.80610 0.15194 -2.46453 - 0.82881 0.15194 -2.36745 - 0.85152 0.15194 -2.27061 - 0.87424 0.15194 -2.17401 - 0.89695 0.15194 -2.07765 - 0.91967 0.15194 -1.98154 - 0.91903 0.15512 -1.98154 - 0.94222 0.15512 -1.88569 - 0.96541 0.15512 -1.79011 - 0.98860 0.15512 -1.69480 - 1.01179 0.15512 -1.59977 - 1.03498 0.15512 -1.50502 - 1.03596 0.16299 -1.50502 - 1.06033 0.16299 -1.41057 - 1.08470 0.16299 -1.31641 - 1.10906 0.16299 -1.22256 - 1.13343 0.16299 -1.12902 - 1.15780 0.16299 -1.03580 - 1.15788 0.16315 -1.03580 - 1.15821 0.16315 -1.03455 - 1.15853 0.16315 -1.03331 - 1.15886 0.16315 -1.03206 - 1.15919 0.16315 -1.03082 - 1.15951 0.16315 -1.02958 - 1.15951 0.16314 -1.02958 - 1.16571 0.16314 -1.00594 - 1.17191 0.16314 -0.98232 - 1.17811 0.16314 -0.95873 - 1.18431 0.16314 -0.93515 - 1.19051 0.16314 -0.91160 - 1.18940 16.19948 -0.91160 - 3.13334 16.19948 -0.83743 - 5.07727 16.19948 -0.76382 - 7.02121 16.19948 -0.69114 - 8.96515 16.19948 -0.61973 - 10.90909 16.19948 -0.54994 - 10.90946 16.20363 -0.54994 - 11.82138 14.17715 -0.51577 - 12.60860 12.04433 -0.48214 - 13.26443 9.79825 -0.44908 - 13.78218 7.44200 -0.41661 - 14.15553 4.98865 -0.38476 - 14.15631 4.96645 -0.38476 - 14.56429 4.02651 -0.33771 - 14.89309 3.21705 -0.29217 - 15.15290 2.50992 -0.24818 - 15.35293 1.90306 -0.20576 - 15.50211 1.39051 -0.16495 - 15.50186 1.39457 -0.16495 - 15.60952 0.98595 -0.12576 - 15.68404 0.66747 -0.08820 - 15.73378 0.44091 -0.05227 - 15.76701 0.30419 -0.01798 - 15.79169 0.25130 0.01466 - 15.79176 0.25142 0.01466 - 15.81588 0.23714 0.04863 - 15.84027 0.25545 0.08061 - 15.86763 0.29369 0.11059 - 15.89842 0.31432 0.13857 - 15.93060 0.33804 0.16455 - 15.93258 0.32792 0.16455 - 16.05590 1.27745 0.19754 - 16.25703 1.51471 0.22655 - 16.43456 0.77792 0.25155 - 16.42189 -1.09363 0.27254 - 16.11672 -3.21421 0.28948 - 16.11300 -3.23438 0.28948 - 15.53130 -5.02427 0.30239 - 14.72074 -6.50266 0.31147 - 13.72514 -7.66862 0.31695 - 12.58785 -8.52761 0.31908 - 11.35118 -9.09144 0.31810 - 11.34986 -9.06722 0.31810 - 10.05899 -9.32728 0.31429 - 8.75130 -9.30699 0.30800 - 7.46603 -9.00817 0.29955 - 6.24170 -8.43760 0.28924 - 5.11507 -7.61920 0.27738 - 5.11644 -7.59686 0.27738 - 4.11709 -6.68684 0.26429 - 3.24199 -5.82252 0.25019 - 2.48451 -5.00698 0.23525 - 1.83764 -4.24269 0.21968 - 1.29408 -3.53148 0.20366 - 1.29412 -3.53097 0.20366 - 0.85317 -2.80157 0.18735 - 0.50372 -2.19984 0.17083 - 0.23751 -1.59195 0.15416 - 0.06309 -0.87439 0.13742 - -0.00001 -0.00003 0.12066 + 0.00000 0.00000 -8.00298 + 0.00000 0.00000 -7.94198 + 0.00000 0.00000 -7.88099 + 0.00000 0.00000 -7.81999 + 0.00000 0.00000 -7.75899 + 0.00000 0.00000 -7.69800 + 0.00000 0.00000 -7.69800 + 0.00000 0.00000 -7.63700 + 0.00000 0.00000 -7.57601 + 0.00000 0.00000 -7.51501 + 0.00000 0.00000 -7.45402 + 0.00000 0.00000 -7.39302 + 0.00000 0.00000 -7.39302 + 0.00000 0.00000 -7.31169 + 0.00000 0.00000 -7.23037 + 0.00000 0.00000 -7.14904 + 0.00000 0.00000 -7.06771 + 0.00000 0.00000 -6.98638 + 0.00000 0.00000 -6.98638 + 0.00000 0.00000 -6.91861 + 0.00000 0.00000 -6.85084 + 0.00000 0.00000 -6.78307 + 0.00000 0.00000 -6.71529 + 0.00000 0.00000 -6.64752 + 0.00000 0.00000 -6.64752 + 0.00000 0.00000 -6.57975 + 0.00000 0.00000 -6.51197 + 0.00000 0.00000 -6.44420 + 0.00000 0.00000 -6.37643 + 0.00000 0.00000 -6.30866 + 0.00000 0.00000 -6.30866 + 0.00000 0.00000 -6.25037 + 0.00000 0.00000 -6.19209 + 0.00000 0.00000 -6.13380 + 0.00000 0.00000 -6.07552 + 0.00000 0.00000 -6.01723 + 0.00000 0.16058 -6.01723 + 0.01831 0.16058 -5.93997 + 0.03661 0.16058 -5.86272 + 0.05492 0.16058 -5.78546 + 0.07322 0.16058 -5.70822 + 0.09153 0.16058 -5.63099 + 0.09218 0.14969 -5.63099 + 0.10415 0.14969 -5.57680 + 0.11613 0.14969 -5.52262 + 0.12810 0.14969 -5.46845 + 0.14008 0.14969 -5.41429 + 0.15206 0.14969 -5.36014 + 0.15184 0.14798 -5.36014 + 0.15480 0.14798 -5.34661 + 0.15775 0.14798 -5.33307 + 0.16071 0.14798 -5.31954 + 0.16367 0.14798 -5.30601 + 0.16663 0.14798 -5.29248 + 0.16634 0.15124 -5.29248 + 0.18146 0.15124 -5.22483 + 0.19659 0.15124 -5.15720 + 0.21171 0.15124 -5.08960 + 0.22683 0.15124 -5.02203 + 0.24196 0.15124 -4.95449 + 0.24207 0.15214 -4.95449 + 0.25728 0.15214 -4.88697 + 0.27250 0.15214 -4.81949 + 0.28771 0.15214 -4.75204 + 0.30293 0.15214 -4.68463 + 0.31814 0.15214 -4.61726 + 0.31814 0.15229 -4.61726 + 0.33337 0.15229 -4.54993 + 0.34860 0.15229 -4.48263 + 0.36383 0.15229 -4.41539 + 0.37905 0.15229 -4.34819 + 0.39428 0.15229 -4.28103 + 0.39427 0.15257 -4.28103 + 0.41563 0.15257 -4.18710 + 0.43698 0.15257 -4.09327 + 0.45834 0.15257 -3.99955 + 0.47970 0.15257 -3.90595 + 0.50106 0.15257 -3.81246 + 0.50102 0.15335 -3.81246 + 0.52096 0.15335 -3.72576 + 0.54089 0.15335 -3.63917 + 0.56083 0.15335 -3.55269 + 0.58076 0.15335 -3.46634 + 0.60070 0.15335 -3.38011 + 0.60077 0.15373 -3.38011 + 0.62075 0.15373 -3.29400 + 0.64074 0.15373 -3.20803 + 0.66072 0.15373 -3.12220 + 0.68071 0.15373 -3.03650 + 0.70069 0.15373 -2.95095 + 0.70069 0.15373 -2.95095 + 0.72367 0.15373 -2.85276 + 0.74666 0.15373 -2.75476 + 0.76964 0.15373 -2.65698 + 0.79262 0.15373 -2.55941 + 0.81560 0.15373 -2.46207 + 0.81560 0.15373 -2.46207 + 0.83859 0.15373 -2.36496 + 0.86157 0.15373 -2.26808 + 0.88455 0.15373 -2.17145 + 0.90753 0.15373 -2.07506 + 0.93051 0.15373 -1.97893 + 0.92987 0.15691 -1.97893 + 0.95333 0.15691 -1.88306 + 0.97679 0.15691 -1.78746 + 1.00024 0.15691 -1.69214 + 1.02370 0.15691 -1.59709 + 1.04716 0.15691 -1.50234 + 1.04815 0.16475 -1.50234 + 1.07278 0.16475 -1.40788 + 1.09741 0.16475 -1.31372 + 1.12204 0.16475 -1.21987 + 1.14667 0.16475 -1.12634 + 1.17130 0.16475 -1.03313 + 1.17138 0.16489 -1.03313 + 1.17171 0.16489 -1.03188 + 1.17204 0.16489 -1.03064 + 1.17237 0.16489 -1.02940 + 1.17270 0.16489 -1.02815 + 1.17303 0.16489 -1.02691 + 1.17303 0.16488 -1.02691 + 1.17929 0.16488 -1.00327 + 1.18556 0.16488 -0.97966 + 1.19182 0.16488 -0.95607 + 1.19809 0.16488 -0.93250 + 1.20435 0.16488 -0.90895 + 1.20324 16.19398 -0.90895 + 3.14652 16.19398 -0.83479 + 5.08980 16.19398 -0.76120 + 7.03307 16.19398 -0.68854 + 8.97635 16.19398 -0.61715 + 10.91963 16.19398 -0.54739 + 10.92009 16.19512 -0.54739 + 11.83149 14.16871 -0.51323 + 12.61820 12.03596 -0.47961 + 13.27354 9.78995 -0.44656 + 13.79079 7.43377 -0.41411 + 14.16365 4.98050 -0.38228 + 14.16442 4.95818 -0.38228 + 14.57161 4.01663 -0.33524 + 14.89935 3.20388 -0.28973 + 15.15782 2.49363 -0.24576 + 15.35624 1.88386 -0.20337 + 15.50355 1.36861 -0.16258 + 15.50346 1.36847 -0.16258 + 15.60862 0.95738 -0.12342 + 15.68044 0.63666 -0.08588 + 15.72729 0.40813 -0.04998 + 15.75745 0.26969 -0.01571 + 15.77892 0.21537 0.01691 + 15.77898 0.21537 0.01691 + 15.79951 0.20161 0.05085 + 15.82039 0.22062 0.08281 + 15.84431 0.25973 0.11277 + 15.87174 0.28102 0.14074 + 15.90064 0.30624 0.16671 + 15.90258 0.29649 0.16671 + 16.02204 1.25566 0.19968 + 16.22093 1.50262 0.22869 + 16.39735 0.77618 0.25370 + 16.38524 -1.08648 0.27470 + 16.08115 -3.20591 0.29167 + 16.07746 -3.22596 0.29167 + 15.49700 -5.01507 0.30461 + 14.68775 -6.49309 0.31373 + 13.69349 -7.65908 0.31927 + 12.55752 -8.51850 0.32145 + 11.32207 -9.08318 0.32053 + 11.32075 -9.05909 0.32053 + 10.03094 -9.32043 0.31680 + 8.72409 -9.30184 0.31059 + 7.43940 -9.00514 0.30222 + 6.21532 -8.43712 0.29200 + 5.08885 -7.61528 0.28025 + 5.09022 -7.59295 0.28025 + 4.09210 -6.67313 0.26726 + 3.21963 -5.79863 0.25327 + 2.46623 -4.97254 0.23845 + 1.82495 -4.19729 0.22300 + 1.28853 -3.47472 0.20710 + 1.28857 -3.47421 0.20710 + 0.84962 -2.80554 0.19092 + 0.50046 -2.19159 0.17453 + 0.23585 -1.58029 0.15799 + 0.06267 -0.86844 0.14137 + -0.00001 -0.00003 0.12474 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12171,24 +12307,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -12263,8 +12399,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12282,7 +12418,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -12294,7 +12430,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -12324,7 +12460,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -12465,13 +12601,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -12484,54 +12620,54 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.76994 69.84300 58.91108 10.23728 110 0 1 - 9.10746 70.73571 59.07501 10.45829 110 0 1 - 9.63261 71.62842 59.55950 10.80128 110 0 1 - 10.15156 72.52113 60.24321 11.14428 110 0 1 - 10.66422 73.41384 61.05177 11.48728 110 0 1 - 11.08472 74.30655 61.71273 11.74453 110 0 1 - 11.25622 74.30655 62.17548 11.91602 110 0 1 - 11.67022 75.19926 62.89559 12.17327 110 0 1 - 12.16347 76.09197 63.89046 12.51627 110 0 1 - 12.65018 76.98468 64.91817 12.85927 110 0 1 - 13.13033 77.87739 65.97136 13.20226 110 0 1 - 13.51814 78.77010 66.77420 13.45951 110 20 1 - 15.14130 78.77010 41.96461 15.49997 110 0 1 - 12.21964 82.75110 38.00268 12.27314 110 0 1 - 10.35089 86.73210 32.76169 10.18968 110 32 1 - 8.32740 90.71310 27.56116 8.10622 110 30 1 - 6.29990 94.69410 22.39249 6.02276 110 28 1 - 5.73970 98.67510 18.53208 4.46017 110 31 1 - 30.56979 98.67510 33.91813 2.66609 330 90 3 - 25.80276 100.04850 40.08908 3.16905 220 64 2 - 24.95655 101.42190 48.22870 3.83967 220 52 2 - 15.59643 102.79530 56.28858 4.51028 110 28 1 - 8.45135 104.16870 64.29642 5.18090 110 13 1 - 9.15759 105.54210 70.28227 5.68386 110 13 1 - 9.49290 105.54210 74.26662 6.01917 110 13 1 - 10.15082 106.91550 80.23883 6.52214 110 13 1 - 10.93039 108.28890 88.20049 7.19275 110 12 1 - 11.66682 109.66230 96.16625 7.86337 110 12 1 - 12.36299 111.03570 104.14003 8.53399 110 12 1 - 12.85412 112.40910 110.12653 9.03695 110 12 1 - 13.18942 112.40910 114.12106 9.37226 110 12 1 - 13.64670 113.78250 120.11821 9.87522 110 11 1 - 14.24187 115.15590 128.12317 10.54584 110 11 1 - 14.81104 116.52930 136.13813 11.21646 110 11 1 - 15.35794 117.90270 144.16229 11.88707 110 11 1 - 15.71865 119.27610 150.18570 12.39004 110 10 1 - 16.05396 119.27610 154.20390 12.72534 110 10 1 - 16.39982 120.64950 160.23477 13.22831 110 10 1 - 16.90116 122.02290 168.28135 13.89892 110 10 1 - 17.39258 123.39630 176.33377 14.56954 110 10 1 - 17.87633 124.76970 184.39132 15.24016 110 10 1 - 18.18701 126.14310 190.43734 15.74312 110 10 1 - 14.86021 126.14310 194.46939 11.38031 110 8 1 - 18.82955 127.51650 200.51935 16.58139 110 9 1 - 19.30192 128.88990 208.58880 17.25201 110 9 1 - 20.65694 130.26330 216.66126 17.92263 110 10 1 - 22.61091 131.63670 224.73639 18.59324 110 10 1 - 24.47237 133.01010 230.79421 19.09621 110 11 1 + 0.73462 69.84300 58.91108 10.20104 110 0 1 + 9.11731 70.73571 59.07501 10.45829 110 0 1 + 9.64237 71.62842 59.55950 10.80128 110 0 1 + 10.16123 72.52113 60.24321 11.14428 110 0 1 + 10.67379 73.41384 61.05177 11.48728 110 0 1 + 11.09419 74.30655 61.71273 11.74453 110 0 1 + 11.26569 74.30655 62.17548 11.91602 110 0 1 + 11.67960 75.19926 62.89559 12.17327 110 0 1 + 12.17274 76.09197 63.89046 12.51627 110 0 1 + 12.65935 76.98468 64.91817 12.85927 110 0 1 + 13.13941 77.87739 65.97136 13.20226 110 0 1 + 13.52714 78.77010 66.77420 13.45951 110 20 1 + 13.47789 78.77010 41.96461 13.83574 110 0 1 + 12.22034 82.75110 38.00268 12.27314 110 0 1 + 10.35530 86.73210 32.76169 10.18968 110 32 1 + 8.33177 90.71310 27.56116 8.10622 110 30 1 + 6.30424 94.69410 22.39249 6.02276 110 28 1 + 5.76555 98.67510 18.53208 4.46017 110 31 1 + 30.60156 98.67510 33.91813 2.66609 330 90 3 + 25.91285 100.04850 40.08908 3.16905 220 65 2 + 24.99028 101.42190 48.22870 3.83967 220 52 2 + 15.72729 102.79530 56.28858 4.51028 110 28 1 + 8.47733 104.16870 64.29642 5.18090 110 13 1 + 9.18386 105.54210 70.28227 5.68386 110 13 1 + 9.51917 105.54210 74.26662 6.01917 110 13 1 + 10.17749 106.91550 80.23883 6.52214 110 13 1 + 10.95755 108.28890 88.20049 7.19275 110 12 1 + 11.69458 109.66230 96.16625 7.86337 110 12 1 + 12.39144 111.03570 104.14003 8.53399 110 12 1 + 12.88335 112.40910 110.12653 9.03695 110 12 1 + 13.21866 112.40910 114.12106 9.37226 110 12 1 + 13.67680 113.78250 120.11821 9.87522 110 11 1 + 14.27292 115.15590 128.12317 10.54584 110 11 1 + 14.84312 116.52930 136.13813 11.21646 110 11 1 + 15.39113 117.90270 144.16229 11.88707 110 11 1 + 15.75303 119.27610 150.18570 12.39004 110 10 1 + 16.08834 119.27610 154.20390 12.72534 110 10 1 + 16.43547 120.64950 160.23477 13.22831 110 10 1 + 16.93815 122.02290 168.28135 13.89892 110 10 1 + 17.43098 123.39630 176.33377 14.56954 110 10 1 + 17.91618 124.76970 184.39132 15.24016 110 10 1 + 18.22836 126.14310 190.43734 15.74312 110 10 1 + 18.56367 126.14310 194.46939 16.07843 110 10 1 + 18.87241 127.51650 200.51935 16.58139 110 9 1 + 19.34631 128.88990 208.58880 17.25201 110 9 1 + 20.57101 130.26330 216.66126 17.92263 110 9 1 + 22.52181 131.63670 224.73639 18.59324 110 10 1 + 24.38011 133.01010 230.79421 19.09621 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12546,9 +12682,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 9.781 'Hydrobiaklei' - -12.00 4.764 'Basisveen' - -12.50 57.431 'Eerste zandlaag' + -11.09 9.788 'Hydrobiaklei' + -12.00 4.683 'Basisveen' + -12.50 57.786 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12567,7 +12703,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -2.08 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -22.05 'Eerste zandlaag' + -12.50 -22.18 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -12691,24 +12827,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -12783,8 +12919,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12802,7 +12938,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -12814,7 +12950,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -12844,7 +12980,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -12985,73 +13121,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 35.72382 66.90000 67.75891 5.13458 220 53 2 - 37.47860 67.48860 70.78484 5.36388 220 53 2 - 39.55695 68.07720 74.81942 5.66961 220 53 2 - 41.58291 68.66580 78.85400 5.97534 220 53 2 - 43.55851 69.25440 82.88858 6.28107 220 53 2 - 45.10776 69.84300 85.91452 6.51036 220 53 2 - 11.96528 69.84300 58.91108 10.23728 110 20 1 - 18.57031 70.73571 59.07501 10.45829 110 31 1 - 17.95994 71.62842 59.55950 10.80128 110 30 1 - 17.36566 72.52113 60.24321 11.14428 110 29 1 - 16.78764 73.41384 61.05177 11.48728 110 27 1 - 16.22603 74.30655 61.71273 11.74453 110 26 1 - 16.22603 74.30655 62.17548 11.91602 110 26 1 - 15.68095 75.19926 62.89559 12.17327 110 25 1 - 15.15242 76.09197 63.89046 12.51627 110 24 1 - 14.64042 76.98468 64.91817 12.85927 110 23 1 - 14.14496 77.87739 65.97136 13.20226 110 21 1 - 13.66604 78.77010 66.77420 13.45951 110 20 1 - 15.47066 78.77010 41.96461 15.49997 110 0 1 - 12.17588 82.75110 38.00268 12.27314 110 0 1 - 10.02847 86.73210 32.76169 10.18968 110 0 1 - 7.88505 90.71310 27.56116 8.10622 110 0 1 + 35.72271 66.90000 67.75891 5.13458 220 53 2 + 37.47744 67.48860 70.78484 5.36388 220 53 2 + 39.55576 68.07720 74.81942 5.66961 220 53 2 + 41.58169 68.66580 78.85400 5.97534 220 53 2 + 43.55726 69.25440 82.88858 6.28107 220 53 2 + 45.10650 69.84300 85.91452 6.51036 220 53 2 + 11.92794 69.84300 58.91108 10.20104 110 20 1 + 18.61743 70.73571 59.07501 10.45829 110 32 1 + 18.00498 71.62842 59.55950 10.80128 110 30 1 + 17.40849 72.52113 60.24321 11.14428 110 29 1 + 16.82811 73.41384 61.05177 11.48728 110 28 1 + 16.26399 74.30655 61.71273 11.74453 110 26 1 + 16.26399 74.30655 62.17548 11.91602 110 26 1 + 15.71624 75.19926 62.89559 12.17327 110 25 1 + 15.18488 76.09197 63.89046 12.51627 110 24 1 + 14.66991 76.98468 64.91817 12.85927 110 23 1 + 14.17135 77.87739 65.97136 13.20226 110 21 1 + 13.68922 78.77010 66.77420 13.45951 110 21 1 + 13.80192 78.77010 41.96461 13.83574 110 0 1 + 12.17143 82.75110 38.00268 12.27314 110 0 1 + 10.02406 86.73210 32.76169 10.18968 110 0 1 + 7.88068 90.71310 27.56116 8.10622 110 0 1 6.32958 94.69410 22.39249 6.02276 110 28 1 - 5.23570 98.67510 18.53208 4.46017 110 28 1 - 20.44012 98.67510 33.91813 2.66609 220 60 2 - 22.36772 100.04850 40.08908 3.16905 220 56 2 - 25.00214 101.42190 48.22870 3.83967 220 52 2 - 26.07650 102.79530 56.28858 4.51028 110 46 1 - 24.70759 104.16870 64.29642 5.18090 110 38 1 - 23.19535 105.54210 70.28227 5.68386 110 33 1 - 23.37817 105.54210 74.26662 6.01917 110 31 1 - 21.83536 106.91550 80.23883 6.52214 110 27 1 - 20.36571 108.28890 88.20049 7.19275 110 23 1 - 18.88814 109.66230 96.16625 7.86337 110 20 1 - 17.41299 111.03570 104.14003 8.53399 110 17 1 - 15.85873 112.40910 110.12653 9.03695 110 14 1 - 16.04247 112.40910 114.12106 9.37226 110 14 1 - 14.50891 113.78250 120.11821 9.87522 110 12 1 - 13.08974 115.15590 128.12317 10.54584 110 10 1 - 11.69428 116.52930 136.13813 11.21646 110 9 1 - 10.32373 117.90270 144.16229 11.88707 110 0 1 - 9.06142 119.27610 150.18570 12.39004 110 0 1 - 9.39673 119.27610 154.20390 12.72534 110 0 1 - 10.05679 120.64950 160.23477 13.22831 110 0 1 - 10.89669 122.02290 168.28135 13.89892 110 0 1 - 11.74651 123.39630 176.33377 14.56954 110 0 1 - 12.60399 124.76970 184.39132 15.24016 110 0 1 - 13.29923 126.14310 190.43734 15.74312 110 0 1 - 8.93642 126.14310 194.46939 11.38031 110 0 1 - 14.33324 127.51650 200.51935 16.58139 110 0 1 - 15.20210 128.88990 208.58880 17.25201 110 0 1 - 16.07269 130.26330 216.66126 17.92263 110 0 1 - 16.94423 131.63670 224.73639 18.59324 110 0 1 - 17.64829 133.01010 230.79421 19.09621 110 0 1 + 5.23589 98.67510 18.53208 4.46017 110 28 1 + 20.44187 98.67510 33.91813 2.66609 220 60 2 + 22.37007 100.04850 40.08908 3.16905 220 56 2 + 25.00514 101.42190 48.22870 3.83967 220 52 2 + 26.09011 102.79530 56.28858 4.51028 110 46 1 + 24.72399 104.16870 64.29642 5.18090 110 38 1 + 23.21473 105.54210 70.28227 5.68386 110 33 1 + 23.39755 105.54210 74.26662 6.01917 110 32 1 + 21.85791 106.91550 80.23883 6.52214 110 27 1 + 20.39160 108.28890 88.20049 7.19275 110 23 1 + 18.91753 109.66230 96.16625 7.86337 110 20 1 + 17.44603 111.03570 104.14003 8.53399 110 17 1 + 15.89555 112.40910 110.12653 9.03695 110 14 1 + 16.07929 112.40910 114.12106 9.37226 110 14 1 + 14.54963 113.78250 120.11821 9.87522 110 12 1 + 13.13446 115.15590 128.12317 10.54584 110 10 1 + 11.74305 116.52930 136.13813 11.21646 110 9 1 + 10.37657 117.90270 144.16229 11.88707 110 0 1 + 9.02704 119.27610 150.18570 12.39004 110 0 1 + 9.36234 119.27610 154.20390 12.72534 110 0 1 + 10.02114 120.64950 160.23477 13.22831 110 0 1 + 10.85969 122.02290 168.28135 13.89892 110 0 1 + 11.70811 123.39630 176.33377 14.56954 110 0 1 + 12.56414 124.76970 184.39132 15.24016 110 0 1 + 13.25788 126.14310 190.43734 15.74312 110 0 1 + 13.59319 126.14310 194.46939 16.07843 110 0 1 + 14.29038 127.51650 200.51935 16.58139 110 0 1 + 15.15771 128.88990 208.58880 17.25201 110 0 1 + 16.02676 130.26330 216.66126 17.92263 110 0 1 + 16.89677 131.63670 224.73639 18.59324 110 0 1 + 17.59929 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13065,10 +13201,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 12.156 'Grind' - -11.09 14.500 'Hydrobiaklei' - -12.00 4.677 'Basisveen' - -12.50 57.786 'Eerste zandlaag' + -10.79 12.155 'Grind' + -11.09 14.530 'Hydrobiaklei' + -12.00 4.592 'Basisveen' + -12.50 58.109 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -13085,9 +13221,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 4.91 'Grind' - -11.09 3.08 'Hydrobiaklei' + -11.09 3.09 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 22.18 'Eerste zandlaag' + -12.50 22.31 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -13294,7 +13430,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=8 CalculationStatus=0 -IterationCount=3 +IterationCount=11 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -13309,8 +13445,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 384.84499 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.48621 10000000.000 1 1 1 'Dek' + -10.19000 384.84384 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.48564 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -13371,10 +13507,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 28.66 : Percentage mobilized resistance left - 18.19 : Percentage mobilized resistance right - 177.74 : Effective left - 112.78 : Effective right + 28.70 : Percentage mobilized resistance left + 18.22 : Percentage mobilized resistance right + 177.98 : Effective left + 113.02 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -13383,8 +13519,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 38.90 : Vertical force left - 17.25 : Vertical force right + 39.02 : Vertical force left + 17.37 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -13393,17 +13529,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --17.25 : Active force -38.90 : Passive force --17.25 : Plugged active force -38.90 : Plugged passive force +-17.37 : Active force +39.02 : Passive force +-17.37 : Plugged active force +39.02 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --78.35 : Resulting Vertical Force Unplugged --78.35 : Resulting Vertical Force Plugged +-78.36 : Resulting Vertical Force Unplugged +-78.36 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -13416,192 +13552,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.66675 - 0.12578 0.00000 -58.40894 - 0.25155 0.00000 -57.15115 - 0.37733 0.00000 -55.89339 - 0.50310 0.00000 -54.63566 - 0.62888 0.00000 -53.37799 - 0.62888 0.00000 -53.37799 - 0.75462 0.00000 -52.12038 - 0.88036 0.00000 -50.86284 - 1.00611 0.00000 -49.60540 - 1.13185 0.00000 -48.34806 - 1.25759 0.00000 -47.09083 - 1.25759 0.00000 -47.09083 - 1.42514 0.00000 -45.41473 - 1.59270 0.00000 -43.73889 - 1.76025 0.00000 -42.06334 - 1.92780 0.00000 -40.38811 - 2.09535 0.00000 -38.71323 - 2.09535 0.00000 -38.71323 - 2.23484 0.00000 -37.31778 - 2.37432 0.00000 -35.92262 - 2.51381 0.00000 -34.52775 - 2.65329 0.00000 -33.13320 - 2.79278 0.00000 -31.73899 - 2.79278 0.00000 -31.73899 - 2.93208 0.00000 -30.34513 - 3.07139 0.00000 -28.95163 - 3.21070 0.00000 -27.55853 - 3.35001 0.00000 -26.16582 - 3.48932 0.00000 -24.77355 - 3.48932 0.00000 -24.77355 - 3.60895 0.00000 -23.57654 - 3.72858 0.00000 -22.37986 - 3.84821 0.00000 -21.18354 - 3.96785 0.00000 -19.98757 - 4.08748 0.00000 -18.79197 - 4.08748 439.90000 -18.79197 - 54.39094 439.90000 -17.20907 - 104.69440 439.90000 -15.63507 - 154.99786 439.90000 -14.07821 - 205.30133 439.90000 -12.54673 - 255.60479 439.90000 -11.04886 - 255.60544 439.88913 -11.04886 - 290.89397 439.88913 -10.02222 - 326.18250 439.88913 -9.01904 - 361.47104 439.88913 -8.04215 - 396.75957 439.88913 -7.09441 - 432.04811 439.88913 -6.17866 - 432.04789 -83.59879 -6.17866 - 430.39784 -83.59879 -5.95505 - 428.74780 -83.59879 -5.73360 - 427.09775 -83.59879 -5.51431 - 425.44770 -83.59879 -5.29718 - 423.79766 -83.59879 -5.08219 - 423.79736 -83.59553 -5.08219 - 415.53185 -83.59553 -4.03911 - 407.26635 -83.59553 -3.04838 - 399.00084 -83.59553 -2.10895 - 390.73533 -83.59553 -1.21979 - 382.46983 -83.59553 -0.37986 - 382.46994 -83.59464 -0.37986 - 374.18043 -83.59464 0.41189 - 365.89092 -83.59464 1.15651 - 357.60142 -83.59464 1.85502 - 349.31191 -83.59464 2.50849 - 341.02240 -83.59464 3.11795 - 341.02240 -83.59449 3.11795 - 332.71143 -83.59449 3.68445 - 324.40046 -83.59449 4.20904 - 316.08948 -83.59449 4.69275 - 307.77851 -83.59449 5.13665 - 299.46754 -83.59449 5.54177 - 299.46752 -83.59421 5.54177 - 287.80110 -83.59421 6.04580 - 276.13468 -83.59421 6.47876 - 264.46825 -83.59421 6.84353 - 252.80183 -83.59421 7.14300 - 241.13540 -83.59421 7.38005 - 241.13536 -83.59343 7.38005 - 230.27555 -83.59343 7.54679 - 219.41573 -83.59343 7.66450 - 208.55592 -83.59343 7.73550 - 197.69610 -83.59343 7.76209 - 186.83629 -83.59343 7.74659 - 186.83636 -83.59305 7.74659 - 175.95671 -83.59305 7.69132 - 165.07705 -83.59305 7.59858 - 154.19740 -83.59305 7.47069 - 143.31775 -83.59305 7.30997 - 132.43809 -83.59305 7.11874 - 132.43809 -83.59305 7.11874 - 119.90942 -83.59305 6.86411 - 107.38075 -83.59305 6.57572 - 94.85208 -83.59305 6.25709 - 82.32341 -83.59305 5.91176 - 69.79474 -83.59305 5.54324 - 69.79474 -83.59305 5.54324 - 57.25624 -83.59305 5.15507 - 44.71774 -83.59305 4.75078 - 32.17925 -83.59305 4.33389 - 19.64075 -83.59305 3.90795 - 7.10226 -83.59305 3.47647 - 7.10161 -83.58987 3.47647 - -5.43741 -83.58987 3.04300 - -17.97643 -83.58987 2.61106 - -30.51545 -83.58987 2.18417 - -43.05447 -83.58987 1.76588 - -55.59349 -83.58987 1.35972 - -55.59251 -83.58200 1.35972 - -68.12252 -83.58200 0.96921 - -80.65254 -83.58200 0.59787 - -93.18256 -83.58200 0.24925 - -105.71258 -83.58200 -0.07313 - -118.24260 -83.58200 -0.36575 - -118.24251 -83.58184 -0.36575 - -118.41004 -83.58183 -0.36944 - -118.57758 -83.58183 -0.37313 - -118.74511 -83.58183 -0.37682 - -118.91264 -83.58183 -0.38050 - -119.08017 -83.58183 -0.38417 - -119.08017 -83.58185 -0.38417 - -122.26258 -83.58185 -0.45281 - -125.44498 -83.58185 -0.51922 - -128.62739 -83.58185 -0.58335 - -131.80979 -83.58185 -0.64513 - -134.99220 -83.58185 -0.70453 - -134.99331 64.98301 -0.70453 - -127.20712 64.98301 -0.87622 - -119.42092 64.98301 -1.02484 - -111.63473 64.98301 -1.15179 - -103.84854 64.98301 -1.25849 - -96.06234 64.98301 -1.34636 - -96.06195 64.98685 -1.34636 - -92.23356 62.68803 -1.38367 - -88.54689 60.26024 -1.41680 - -85.00995 57.69810 -1.44591 - -81.63065 55.00617 -1.47115 - -78.41644 52.19896 -1.49270 - -78.41575 52.17955 -1.49270 - -73.73866 50.58956 -1.51865 - -69.21334 48.89715 -1.53691 - -64.83938 47.26382 -1.54794 - -60.61120 45.69376 -1.55218 - -56.52299 44.18692 -1.55011 - -56.52324 44.18881 -1.55011 - -52.56626 42.76044 -1.54215 - -48.73616 41.40204 -1.52872 - -45.02621 40.12045 -1.51019 - -41.42928 38.91835 -1.48694 - -37.93815 37.79420 -1.45938 - -37.93811 37.79288 -1.45938 - -34.18667 37.18916 -1.42456 - -30.49383 36.61962 -1.38543 - -26.85664 36.07405 -1.34245 - -23.27409 35.51715 -1.29608 - -19.74752 34.97167 -1.24678 - -19.74559 34.95746 -1.24678 - -14.83877 34.85658 -1.17374 - -10.04980 33.20769 -1.09707 - -5.61003 29.89572 -1.01784 - -1.71413 25.65538 -0.93710 - 1.57102 21.18695 -0.85594 - 1.56815 21.17052 -0.85594 - 4.21190 16.61336 -0.77532 - 6.24359 12.42803 -0.69575 - 7.71573 8.62059 -0.61760 - 8.68150 5.19461 -0.54123 - 9.19441 2.15120 -0.46702 - 9.19520 2.15832 -0.46702 - 9.30856 -0.50367 -0.39521 - 9.07874 -2.72353 -0.32569 - 8.57402 -4.42657 -0.25835 - 7.86777 -5.60357 -0.19308 - 7.03233 -6.27947 -0.12977 - 7.03274 -6.26117 -0.12977 - 6.13151 -6.59379 -0.06822 - 5.19807 -6.72215 -0.00819 - 4.26068 -6.65096 0.05056 - 3.34699 -6.38415 0.10826 - 2.48416 -5.92488 0.16512 - 2.48422 -5.92397 0.16512 - 1.70521 -5.20211 0.22140 - 1.03369 -4.36437 0.27726 - 0.49546 -3.27751 0.33283 - 0.13307 -1.83839 0.38825 - -0.00001 -0.00007 0.44362 + 0.00000 0.00000 -59.66764 + 0.12578 0.00000 -58.40980 + 0.25156 0.00000 -57.15198 + 0.37734 0.00000 -55.89418 + 0.50311 0.00000 -54.63642 + 0.62889 0.00000 -53.37871 + 0.62889 0.00000 -53.37871 + 0.75464 0.00000 -52.12106 + 0.88039 0.00000 -50.86350 + 1.00613 0.00000 -49.60602 + 1.13188 0.00000 -48.34864 + 1.25763 0.00000 -47.09139 + 1.25763 0.00000 -47.09139 + 1.42518 0.00000 -45.41524 + 1.59274 0.00000 -43.73936 + 1.76029 0.00000 -42.06376 + 1.92785 0.00000 -40.38848 + 2.09541 0.00000 -38.71356 + 2.09541 0.00000 -38.71356 + 2.23490 0.00000 -37.31807 + 2.37439 0.00000 -35.92287 + 2.51387 0.00000 -34.52797 + 2.65336 0.00000 -33.13338 + 2.79285 0.00000 -31.73913 + 2.79285 0.00000 -31.73913 + 2.93216 0.00000 -30.34523 + 3.07148 0.00000 -28.95170 + 3.21079 0.00000 -27.55855 + 3.35010 0.00000 -26.16581 + 3.48941 0.00000 -24.77350 + 3.48941 0.00000 -24.77350 + 3.60905 0.00000 -23.57646 + 3.72868 0.00000 -22.37975 + 3.84832 0.00000 -21.18339 + 3.96795 0.00000 -19.98739 + 4.08759 0.00000 -18.79176 + 4.08759 439.90000 -18.79176 + 54.39105 439.90000 -17.20881 + 104.69452 439.90000 -15.63477 + 154.99799 439.90000 -14.07787 + 205.30145 439.90000 -12.54635 + 255.60492 439.90000 -11.04844 + 255.60557 439.88912 -11.04844 + 290.89410 439.88912 -10.02177 + 326.18264 439.88912 -9.01856 + 361.47118 439.88912 -8.04164 + 396.75971 439.88912 -7.09387 + 432.04825 439.88912 -6.17809 + 432.04803 -83.59823 -6.17809 + 430.39799 -83.59823 -5.95447 + 428.74796 -83.59823 -5.73301 + 427.09793 -83.59823 -5.51372 + 425.44789 -83.59823 -5.29658 + 423.79786 -83.59823 -5.08158 + 423.79756 -83.59498 -5.08158 + 415.53211 -83.59498 -4.03847 + 407.26667 -83.59498 -3.04770 + 399.00122 -83.59498 -2.10823 + 390.73577 -83.59498 -1.21904 + 382.47032 -83.59498 -0.37907 + 382.47044 -83.59408 -0.37907 + 374.18099 -83.59408 0.41272 + 365.89154 -83.59408 1.15737 + 357.60209 -83.59408 1.85593 + 349.31264 -83.59408 2.50943 + 341.02320 -83.59408 3.11893 + 341.02320 -83.59393 3.11893 + 332.71228 -83.59393 3.68547 + 324.40137 -83.59393 4.21009 + 316.09046 -83.59393 4.69384 + 307.77955 -83.59393 5.13777 + 299.46863 -83.59393 5.54293 + 299.46861 -83.59365 5.54293 + 287.80227 -83.59365 6.04701 + 276.13593 -83.59365 6.48002 + 264.46959 -83.59365 6.84484 + 252.80325 -83.59365 7.14436 + 241.13691 -83.59365 7.38146 + 241.13687 -83.59287 7.38146 + 230.27713 -83.59287 7.54824 + 219.41740 -83.59287 7.66600 + 208.55766 -83.59287 7.73704 + 197.69792 -83.59287 7.76368 + 186.83818 -83.59287 7.74822 + 186.83825 -83.59249 7.74822 + 175.95868 -83.59249 7.69299 + 165.07910 -83.59249 7.60029 + 154.19953 -83.59249 7.47245 + 143.31995 -83.59249 7.31177 + 132.44037 -83.59249 7.12058 + 132.44037 -83.59249 7.12058 + 119.91179 -83.59249 6.86600 + 107.38321 -83.59249 6.57765 + 94.85462 -83.59249 6.25907 + 82.32604 -83.59249 5.91378 + 69.79746 -83.59249 5.54530 + 69.79746 -83.59249 5.54530 + 57.25905 -83.59249 5.15718 + 44.72064 -83.59249 4.75293 + 32.18223 -83.59249 4.33609 + 19.64383 -83.59249 3.91018 + 7.10542 -83.59249 3.47875 + 7.10477 -83.58931 3.47875 + -5.43416 -83.58931 3.04531 + -17.97309 -83.58931 2.61341 + -30.51203 -83.58931 2.18657 + -43.05096 -83.58931 1.76831 + -55.58989 -83.58931 1.36218 + -55.58891 -83.58147 1.36218 + -68.11884 -83.58147 0.97170 + -80.64878 -83.58147 0.60041 + -93.17871 -83.58147 0.25182 + -105.70865 -83.58147 -0.07053 + -118.23858 -83.58147 -0.36312 + -118.23850 -83.58133 -0.36312 + -118.40603 -83.58132 -0.36682 + -118.57356 -83.58132 -0.37051 + -118.74109 -83.58132 -0.37419 + -118.90863 -83.58132 -0.37787 + -119.07616 -83.58132 -0.38154 + -119.07616 -83.58134 -0.38154 + -122.25854 -83.58134 -0.45017 + -125.44093 -83.58134 -0.51657 + -128.62331 -83.58134 -0.58070 + -131.80570 -83.58134 -0.64248 + -134.98808 -83.58134 -0.70186 + -134.98920 64.98470 -0.70186 + -127.20280 64.98470 -0.87353 + -119.41640 64.98470 -1.02213 + -111.63000 64.98470 -1.14906 + -103.84361 64.98470 -1.25575 + -96.05721 64.98470 -1.34359 + -96.05674 64.98552 -1.34359 + -92.22842 62.68685 -1.38089 + -88.54182 60.25921 -1.41402 + -85.00493 57.69723 -1.44311 + -81.62568 55.00547 -1.46835 + -78.41151 52.19843 -1.48989 + -78.41082 52.17890 -1.48989 + -73.73373 50.58910 -1.51583 + -69.20860 48.89367 -1.53408 + -64.83508 47.25752 -1.54509 + -60.60759 45.68486 -1.54933 + -56.52029 44.17567 -1.54724 + -56.52039 44.17338 -1.54724 + -52.56491 42.74290 -1.53928 + -48.73649 41.38266 -1.52583 + -45.02837 40.09952 -1.50729 + -41.43341 38.89616 -1.48404 + -37.94435 37.77105 -1.45647 + -37.94432 37.76961 -1.45647 + -34.19517 37.16668 -1.42163 + -30.50453 36.59813 -1.38249 + -26.86943 36.05373 -1.33949 + -23.28886 35.49780 -1.29311 + -19.76415 34.95415 -1.24379 + -19.76227 34.94030 -1.24379 + -14.85726 34.84971 -1.17073 + -10.06807 33.21818 -1.09402 + -5.62595 29.91558 -1.01475 + -1.72727 25.67511 -0.93397 + 1.56063 21.20644 -0.85277 + 1.55778 21.19014 -0.85277 + 4.20420 16.63172 -0.77210 + 6.23834 12.44468 -0.69248 + 7.71266 8.63506 -0.61428 + 8.68028 5.20640 -0.53786 + 9.19463 2.15978 -0.46360 + 9.19445 2.16282 -0.46360 + 9.30755 -0.51644 -0.39173 + 9.07452 -2.75119 -0.32216 + 8.56601 -4.45325 -0.25477 + 7.85607 -5.62979 -0.18944 + 7.01725 -6.29940 -0.12607 + 7.01846 -6.27711 -0.12607 + 6.11588 -6.59721 -0.06446 + 5.18285 -6.71283 -0.00436 + 4.24767 -6.62868 0.05445 + 3.33802 -6.34867 0.11222 + 2.48110 -5.87595 0.16916 + 2.48116 -5.87505 0.16916 + 1.70318 -5.21200 0.22551 + 1.03126 -4.36031 0.28145 + 0.49415 -3.26847 0.33710 + 0.13274 -1.83367 0.39259 + -0.00001 -0.00007 0.44805 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -13722,24 +13858,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -13814,8 +13950,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -13833,7 +13969,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -13845,7 +13981,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -13875,7 +14011,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -14016,13 +14152,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -14035,27 +14171,27 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.36256 69.84300 58.91108 10.23728 1 0 A - 4.38369 70.73571 59.07501 10.45829 110 0 1 - 4.65364 71.62842 59.55950 10.80128 110 0 1 - 4.95254 72.52113 60.24321 11.14428 110 0 1 - 5.27855 73.41384 61.05177 11.48728 110 0 1 - 5.54409 74.30655 61.71273 11.74453 110 0 1 - 5.71559 74.30655 62.17548 11.91602 110 0 1 - 6.00465 75.19926 62.89559 12.17327 110 0 1 - 6.40140 76.09197 63.89046 12.51627 110 0 1 - 6.81852 76.98468 64.91817 12.85927 110 0 1 - 7.25448 77.87739 65.97136 13.20226 110 0 1 - 7.62198 78.77010 66.77420 13.45951 110 0 1 - 12.19322 78.77010 41.96461 15.49997 110 0 1 - 9.27327 82.75110 38.00268 12.27314 110 0 1 - 7.41883 86.73210 32.76169 10.18968 110 0 1 - 5.42133 90.71310 27.56116 8.10622 110 0 1 - 3.43061 94.69410 22.39249 6.02276 110 0 1 - 2.91705 98.67510 18.53208 4.46017 110 0 1 - 29.15847 98.67510 33.91813 2.66609 330 86 3 - 21.31493 100.04850 40.08908 3.16905 220 53 2 - 11.31902 101.42190 48.22870 3.83967 110 23 1 + 0.36256 69.84300 58.91108 10.20104 1 0 A + 4.39497 70.73571 59.07501 10.45829 110 0 1 + 4.66497 71.62842 59.55950 10.80128 110 0 1 + 4.96391 72.52113 60.24321 11.14428 110 0 1 + 5.28996 73.41384 61.05177 11.48728 110 0 1 + 5.55555 74.30655 61.71273 11.74453 110 0 1 + 5.72705 74.30655 62.17548 11.91602 110 0 1 + 6.01615 75.19926 62.89559 12.17327 110 0 1 + 6.41293 76.09197 63.89046 12.51627 110 0 1 + 6.83010 76.98468 64.91817 12.85927 110 0 1 + 7.26610 77.87739 65.97136 13.20226 110 0 1 + 7.63363 78.77010 66.77420 13.45951 110 0 1 + 10.53114 78.77010 41.96461 13.83574 110 0 1 + 9.27537 82.75110 38.00268 12.27314 110 0 1 + 7.42471 86.73210 32.76169 10.18968 110 0 1 + 5.42724 90.71310 27.56116 8.10622 110 0 1 + 3.43655 94.69410 22.39249 6.02276 110 0 1 + 2.94456 98.67510 18.53208 4.46017 110 0 1 + 29.19106 98.67510 33.91813 2.66609 330 86 3 + 21.42788 100.04850 40.08908 3.16905 220 53 2 + 11.45356 101.42190 48.22870 3.83967 110 24 1 2.43581 102.79530 56.28858 4.51028 1 0 A 2.80048 104.16870 64.29642 5.18090 1 0 A 3.07440 105.54210 70.28227 5.68386 1 0 A @@ -14066,23 +14202,23 @@ Status character 4.63207 111.03570 104.14003 8.53399 1 0 A 4.90758 112.40910 110.12653 9.03695 1 0 A 5.09133 112.40910 114.12106 9.37226 1 0 A - 5.36702 113.78250 120.11821 9.87522 1 0 A - 6.63760 115.15590 128.12317 10.54584 110 0 1 - 8.11627 116.52930 136.13813 11.21646 110 0 1 - 9.57011 117.90270 144.16229 11.88707 110 0 1 - 10.83285 119.27610 150.18570 12.39004 110 0 1 - 11.16816 119.27610 154.20390 12.72534 110 0 1 - 12.40966 120.64950 160.23477 13.22831 110 0 1 - 13.80067 122.02290 168.28135 13.89892 110 0 1 - 15.17628 123.39630 176.33377 14.56954 110 9 1 - 16.53922 124.76970 184.39132 15.24016 110 9 1 - 17.72455 126.14310 190.43734 15.74312 110 9 1 - 14.39775 126.14310 194.46939 11.38031 110 7 1 - 19.23814 127.51650 200.51935 16.58139 110 10 1 - 20.57910 128.88990 208.58880 17.25201 110 10 1 - 22.80098 130.26330 216.66126 17.92263 110 11 1 - 25.62084 131.63670 224.73639 18.59324 110 11 1 - 28.34795 133.01010 230.79421 19.09621 110 12 1 + 5.17446 113.78250 120.11821 9.87522 110 0 1 + 6.67995 115.15590 128.12317 10.54584 110 0 1 + 8.15926 116.52930 136.13813 11.21646 110 0 1 + 9.61377 117.90270 144.16229 11.88707 110 0 1 + 10.87721 119.27610 150.18570 12.39004 110 0 1 + 11.21252 119.27610 154.20390 12.72534 110 0 1 + 12.45475 120.64950 160.23477 13.22831 110 0 1 + 13.84656 122.02290 168.28135 13.89892 110 0 1 + 15.22300 123.39630 176.33377 14.56954 110 9 1 + 16.58680 124.76970 184.39132 15.24016 110 9 1 + 17.77303 126.14310 190.43734 15.74312 110 9 1 + 18.10834 126.14310 194.46939 16.07843 110 9 1 + 19.28752 127.51650 200.51935 16.58139 110 10 1 + 20.62939 128.88990 208.58880 17.25201 110 10 1 + 22.72034 130.26330 216.66126 17.92263 110 10 1 + 25.53641 131.63670 224.73639 18.59324 110 11 1 + 28.25974 133.01010 230.79421 19.09621 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14097,9 +14233,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.039 'Hydrobiaklei' - -12.00 3.310 'Basisveen' - -12.50 41.165 'Eerste zandlaag' + -11.09 5.049 'Hydrobiaklei' + -12.00 3.230 'Basisveen' + -12.50 41.473 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14118,7 +14254,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.07 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -15.80 'Eerste zandlaag' + -12.50 -15.92 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14242,24 +14378,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -14334,8 +14470,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -14353,7 +14489,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -14365,7 +14501,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -14395,7 +14531,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -14536,73 +14672,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 40.06790 66.90000 67.75891 5.13458 220 59 2 - 42.21257 67.48860 70.78484 5.36388 220 60 2 - 44.65508 68.07720 74.81942 5.66961 220 60 2 - 47.02017 68.66580 78.85400 5.97534 220 60 2 - 49.31057 69.25440 82.88858 6.28107 220 59 2 - 51.15104 69.84300 85.91452 6.51036 220 60 2 - 16.39702 69.84300 58.91108 10.23728 110 28 1 - 23.29408 70.73571 59.07501 10.45829 110 39 1 - 22.93890 71.62842 59.55950 10.80128 110 39 1 - 22.56469 72.52113 60.24321 11.14428 110 37 1 - 22.17331 73.41384 61.05177 11.48728 110 36 1 - 21.76665 74.30655 61.71273 11.74453 110 35 1 - 21.76665 74.30655 62.17548 11.91602 110 35 1 - 21.34652 75.19926 62.89559 12.17327 110 34 1 - 20.91449 76.09197 63.89046 12.51627 110 33 1 - 20.47207 76.98468 64.91817 12.85927 110 32 1 - 20.02080 77.87739 65.97136 13.20226 110 30 1 - 19.56221 78.77010 66.77420 13.45951 110 29 1 - 18.41874 78.77010 41.96461 15.49997 110 44 1 - 15.12226 82.75110 38.00268 12.27314 110 40 1 - 12.96053 86.73210 32.76169 10.18968 110 40 1 - 10.79112 90.71310 27.56116 8.10622 110 39 1 - 9.19888 94.69410 22.39249 6.02276 110 41 1 - 8.05835 98.67510 18.53208 4.46017 110 43 1 - 25.05901 98.67510 33.91813 2.66609 220 74 2 - 26.85554 100.04850 40.08908 3.16905 220 67 2 - 29.33398 101.42190 48.22870 3.83967 220 61 2 - 31.73471 102.79530 56.28858 4.51028 220 56 2 - 34.07777 104.16870 64.29642 5.18090 220 53 2 - 35.63184 105.54210 70.28227 5.68386 220 51 2 - 37.12320 105.54210 74.26662 6.01917 110 50 1 - 34.76793 106.91550 80.23883 6.52214 110 43 1 - 32.45236 108.28890 88.20049 7.19275 110 37 1 - 30.10275 109.66230 96.16625 7.86337 110 31 1 - 27.73676 111.03570 104.14003 8.53399 110 27 1 - 25.28018 112.40910 110.12653 9.03695 110 23 1 - 25.46392 112.40910 114.12106 9.37226 110 22 1 - 23.02286 113.78250 120.11821 9.87522 110 19 1 - 20.69401 115.15590 128.12317 10.54584 110 16 1 - 18.38905 116.52930 136.13813 11.21646 110 14 1 - 16.11155 117.90270 144.16229 11.88707 110 11 1 - 13.94722 119.27610 150.18570 12.39004 110 9 1 - 14.28252 119.27610 154.20390 12.72534 110 9 1 - 14.04696 120.64950 160.23477 13.22831 110 9 1 - 13.99718 122.02290 168.28135 13.89892 110 8 1 - 13.96280 123.39630 176.33377 14.56954 110 0 1 - 13.94110 124.76970 184.39132 15.24016 110 0 1 - 13.76169 126.14310 190.43734 15.74312 110 0 1 - 9.39888 126.14310 194.46939 11.38031 110 0 1 - 13.92464 127.51650 200.51935 16.58139 110 0 1 - 13.92492 128.88990 208.58880 17.25201 110 0 1 - 13.92865 130.26330 216.66126 17.92263 110 0 1 - 13.93430 131.63670 224.73639 18.59324 110 0 1 - 13.77271 133.01010 230.79421 19.09621 110 0 1 + 40.06563 66.90000 67.75891 5.13458 220 59 2 + 42.21014 67.48860 70.78484 5.36388 220 60 2 + 44.65249 68.07720 74.81942 5.66961 220 60 2 + 47.01742 68.66580 78.85400 5.97534 220 60 2 + 49.30768 69.25440 82.88858 6.28107 220 59 2 + 51.14801 69.84300 85.91452 6.51036 220 60 2 + 16.35839 69.84300 58.91108 10.20104 110 28 1 + 23.33977 70.73571 59.07501 10.45829 110 40 1 + 22.98238 71.62842 59.55950 10.80128 110 39 1 + 22.60581 72.52113 60.24321 11.14428 110 38 1 + 22.21193 73.41384 61.05177 11.48728 110 36 1 + 21.80263 74.30655 61.71273 11.74453 110 35 1 + 21.80263 74.30655 62.17548 11.91602 110 35 1 + 21.37969 75.19926 62.89559 12.17327 110 34 1 + 20.94469 76.09197 63.89046 12.51627 110 33 1 + 20.49916 76.98468 64.91817 12.85927 110 32 1 + 20.04466 77.87739 65.97136 13.20226 110 30 1 + 19.58273 78.77010 66.77420 13.45951 110 29 1 + 16.74868 78.77010 41.96461 13.83574 110 40 1 + 15.11641 82.75110 38.00268 12.27314 110 40 1 + 12.95466 86.73210 32.76169 10.18968 110 40 1 + 10.78521 90.71310 27.56116 8.10622 110 39 1 + 9.19727 94.69410 22.39249 6.02276 110 41 1 + 8.05688 98.67510 18.53208 4.46017 110 43 1 + 25.05804 98.67510 33.91813 2.66609 220 74 2 + 26.85504 100.04850 40.08908 3.16905 220 67 2 + 29.33401 101.42190 48.22870 3.83967 220 61 2 + 31.73535 102.79530 56.28858 4.51028 220 56 2 + 34.07909 104.16870 64.29642 5.18090 220 53 2 + 35.63390 105.54210 70.28227 5.68386 220 51 2 + 37.13075 105.54210 74.26662 6.01917 110 50 1 + 34.77848 106.91550 80.23883 6.52214 110 43 1 + 32.46616 108.28890 88.20049 7.19275 110 37 1 + 30.12004 109.66230 96.16625 7.86337 110 31 1 + 27.75777 111.03570 104.14003 8.53399 110 27 1 + 25.30513 112.40910 110.12653 9.03695 110 23 1 + 25.48887 112.40910 114.12106 9.37226 110 22 1 + 23.05197 113.78250 120.11821 9.87522 110 19 1 + 20.72743 115.15590 128.12317 10.54584 110 16 1 + 18.42691 116.52930 136.13813 11.21646 110 14 1 + 16.15393 117.90270 144.16229 11.88707 110 11 1 + 13.90286 119.27610 150.18570 12.39004 110 9 1 + 14.23817 119.27610 154.20390 12.72534 110 9 1 + 14.00186 120.64950 160.23477 13.22831 110 9 1 + 13.95129 122.02290 168.28135 13.89892 110 8 1 + 13.91608 123.39630 176.33377 14.56954 110 0 1 + 13.89352 124.76970 184.39132 15.24016 110 0 1 + 13.71321 126.14310 190.43734 15.74312 110 0 1 + 14.04852 126.14310 194.46939 16.07843 110 0 1 + 13.87526 127.51650 200.51935 16.58139 110 0 1 + 13.87463 128.88990 208.58880 17.25201 110 0 1 + 13.87743 130.26330 216.66126 17.92263 110 0 1 + 13.88217 131.63670 224.73639 18.59324 110 0 1 + 13.71966 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14617,9 +14753,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 13.728 'Grind' - -11.09 19.426 'Hydrobiaklei' - -12.00 6.131 'Basisveen' - -12.50 76.132 'Eerste zandlaag' + -11.09 19.454 'Hydrobiaklei' + -12.00 6.046 'Basisveen' + -12.50 76.423 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14636,9 +14772,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 5.55 'Grind' - -11.09 4.13 'Hydrobiaklei' + -11.09 4.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 29.22 'Eerste zandlaag' + -12.50 29.34 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14855,10 +14991,10 @@ PartialFactorSet=10 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.65 : Percentage mobilized resistance left - 11.65 : Percentage mobilized resistance right - 272.01 : Effective left - 272.01 : Effective right + 11.60 : Percentage mobilized resistance left + 11.60 : Percentage mobilized resistance right + 270.83 : Effective left + 270.83 : Effective right 1089.18 : Water pressure left 1089.18 : Water pressure right 2335.10 : Max effective resistance left @@ -14867,8 +15003,8 @@ PartialFactorSet=10 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 80.70 : Vertical force left - 80.70 : Vertical force right + 80.21 : Vertical force left + 80.21 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -14877,10 +15013,10 @@ PartialFactorSet=10 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --80.70 : Active force -80.70 : Passive force --80.70 : Plugged active force -80.70 : Plugged passive force +-80.21 : Active force +80.21 : Passive force +-80.21 : Plugged active force +80.21 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -15395,7 +15531,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -15407,7 +15543,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -15437,7 +15573,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -15467,13 +15603,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -15574,72 +15710,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 330 100 3 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -15647,15 +15783,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -15669,41 +15805,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -15720,11 +15856,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -15743,10 +15879,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 1.45 'Oude Zeeklei' - -7.00 13.63 'Wadzand' - -10.00 12.92 'Hydrobiaklei' + -7.00 13.59 'Wadzand' + -10.00 12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 52.70 'Eerste zandlaag' + -12.50 52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16059,7 +16195,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -16071,7 +16207,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -16101,7 +16237,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -16131,13 +16267,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -16238,72 +16374,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 330 100 3 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -16311,15 +16447,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -16333,41 +16469,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -16384,11 +16520,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -16407,10 +16543,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -1.45 'Oude Zeeklei' - -7.00 -13.63 'Wadzand' - -10.00 -12.92 'Hydrobiaklei' + -7.00 -13.59 'Wadzand' + -10.00 -12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -52.70 'Eerste zandlaag' + -12.50 -52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16617,7 +16753,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -16632,7 +16768,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 116.81762 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 116.79546 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -16657,39 +16793,39 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 8.43 : Percentage mobilized resistance left - 17.26 : Percentage mobilized resistance right - 193.65 : Effective left - 264.19 : Effective right + 8.39 : Percentage mobilized resistance left + 17.21 : Percentage mobilized resistance right + 192.93 : Effective left + 263.45 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2298.14 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -24405.26 : Max moment left --16790.25 : Max moment right --2057.42 : Max mobilized moment left --2347.32 : Max mobilized moment right - 58.81 : Vertical force left - 72.51 : Vertical force right +-16790.18 : Max moment right +-2049.18 : Max mobilized moment left +-2339.16 : Max mobilized moment right + 58.54 : Vertical force left + 72.30 : Vertical force right 8.4 : Max mobilized moment percentage left - 14.0 : Max mobilized moment percentage right + 13.9 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --58.81 : Active force -72.51 : Passive force --58.81 : Plugged active force -72.51 : Plugged passive force +-58.54 : Active force +72.30 : Passive force +-58.54 : Plugged active force +72.30 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.70 : Resulting Vertical Force Unplugged -13.70 : Resulting Vertical Force Plugged +13.76 : Resulting Vertical Force Unplugged +13.76 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -16702,192 +16838,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -15.03321 - 0.00000 0.00000 -14.61262 - 0.00000 0.00000 -14.19203 - 0.00000 0.00000 -13.77144 - 0.00000 0.00000 -13.35086 - 0.00000 0.00000 -12.93027 - 0.00000 0.00000 -12.93027 - 0.00000 0.00000 -12.50968 - 0.00000 0.00000 -12.08910 - 0.00000 0.00000 -11.66851 - 0.00000 0.00000 -11.24792 - 0.00000 0.00000 -10.82733 - 0.00000 0.00000 -10.82733 - -0.00339 -0.08476 -10.26655 - -0.02712 -0.33903 -9.70578 - -0.09154 -0.76283 -9.14499 - -0.21698 -1.35613 -8.58418 - -0.42379 -2.11896 -8.02334 - -0.42379 -2.11896 -8.02334 - -0.67297 -2.88414 -7.55593 - -1.00454 -3.76704 -7.08846 - -1.43030 -4.76766 -6.62087 - -1.96200 -5.88600 -6.15312 - -2.61142 -7.12206 -5.68516 - -2.61142 -7.12206 -5.68516 - -3.39034 -8.47584 -5.21695 - -4.31051 -9.94734 -4.74838 - -5.38373 -11.53656 -4.27935 - -6.62175 -13.24350 -3.80973 - -8.03635 -15.06816 -3.33943 - -8.03635 177.77184 -3.33943 - 7.18113 176.10848 -2.93452 - 22.25181 174.35805 -2.53018 - 37.16822 172.52056 -2.12755 - 51.92285 170.59601 -1.72780 - 66.50823 168.58438 -1.33207 - 66.50823 51.76677 -1.33207 - 72.25145 48.96599 -0.81540 - 77.66667 46.01223 -0.30859 - 82.73643 42.90549 0.18767 - 87.44330 39.64575 0.67269 - 91.76985 36.23302 1.14578 - 91.77067 36.21915 1.14578 - 94.57788 34.05604 1.47030 - 97.23286 32.38856 1.78846 - 99.76983 31.08795 2.10010 - 102.21524 30.09904 2.40505 - 104.59297 29.38343 2.70312 - 104.59268 29.38122 2.70312 - 105.17909 29.26181 2.77655 - 105.76327 29.15931 2.84953 - 106.34559 29.07595 2.92207 - 106.92643 29.01171 2.99416 - 107.50617 28.96426 3.06581 - 107.50579 28.96834 3.06581 - 110.27715 26.46617 3.41719 - 112.80041 24.00542 3.75700 - 115.07893 21.56569 4.08499 - 117.11370 19.13075 4.40092 - 118.90529 16.70224 4.70455 - 118.90545 16.70349 4.70455 - 120.45462 14.28126 4.99567 - 121.76196 11.86688 5.27414 - 122.82826 9.46034 5.53985 - 123.65430 7.06184 5.79269 - 124.24090 4.67139 6.03255 - 124.24090 4.67157 6.03255 - 124.58891 2.28991 6.25933 - 124.69912 -0.08440 6.47304 - 124.57230 -2.45083 6.67367 - 124.20921 -4.80959 6.86125 - 123.61062 -7.16108 7.03579 - 123.61060 -7.16076 7.03579 - 122.37839 -10.44005 7.25827 - 120.68799 -13.70633 7.45557 - 118.54121 -16.95994 7.62812 - 115.93976 -20.20169 7.77637 - 112.88522 -23.43304 7.90075 - 112.88518 -23.43213 7.90075 - 109.79415 -24.08838 7.99538 - 106.63088 -24.54431 8.07053 - 103.42113 -24.80393 8.12677 - 100.19024 -24.87006 8.16466 - 96.96474 -24.70949 8.18478 - 96.96481 -24.70881 8.18478 - 93.68106 -26.00966 8.18767 - 90.18667 -27.67122 8.17394 - 86.50710 -28.85853 8.14424 - 82.70400 -29.57161 8.09921 - 78.83903 -29.81044 8.03951 - 78.83903 -29.81044 8.03951 - 74.38222 -29.81242 7.95357 - 69.92512 -29.81439 7.85019 - 65.46772 -29.81636 7.73040 - 61.01002 -29.81834 7.59525 - 56.55204 -29.82031 7.44579 - 56.55204 -29.82031 7.44579 - 52.08445 -30.00899 7.28302 - 47.54537 -30.87942 7.10803 - 42.82498 -32.28197 6.92192 - 37.88918 -33.76237 6.72581 - 32.72662 -35.31134 6.52081 - 32.72593 -35.30797 6.52081 - 27.32161 -37.00109 6.30808 - 21.65925 -38.76165 6.08896 - 15.79658 -39.22379 5.86479 - 10.03438 -37.61819 5.63689 - 4.58855 -35.21376 5.40663 - 4.58973 -35.20597 5.40663 - -0.48173 -32.59806 5.17535 - -5.14602 -29.76807 4.94420 - -9.37268 -26.74348 4.71416 - -13.13264 -23.52455 4.48622 - -16.39845 -20.14358 4.26136 - -16.39847 -20.14374 4.26136 - -16.43871 -20.09674 4.25838 - -16.47885 -20.04972 4.25540 - -16.51891 -20.00266 4.25242 - -16.55886 -19.95556 4.24944 - -16.59873 -19.90844 4.24646 - -16.59873 -19.90845 4.24646 - -17.34072 -19.14512 4.18997 - -18.05386 -18.39014 4.13375 - -18.73847 -17.64321 4.07781 - -19.39485 -16.90427 4.02214 - -20.02330 -16.17354 3.96677 - -20.02466 -16.16140 3.96677 - -21.82761 -13.90155 3.79398 - -23.36635 -11.77451 3.62449 - -24.66096 -9.83430 3.45850 - -25.73414 -8.08318 3.29621 - -26.60832 -6.51685 3.13781 - -26.60788 -6.51071 3.13781 - -26.97229 -5.68166 3.06013 - -27.29284 -5.01091 2.98346 - -27.57447 -4.38404 2.90782 - -27.81979 -3.80043 2.83322 - -28.03138 -3.25951 2.75968 - -28.03134 -3.25998 2.75968 - -28.30040 -2.63200 2.65017 - -28.50982 -1.98616 2.54311 - -28.66469 -1.43279 2.43853 - -28.77333 -0.96972 2.33644 - -28.84385 -0.59478 2.23685 - -28.84404 -0.59067 2.23685 - -28.83602 0.48923 2.13977 - -28.78153 0.69452 2.04520 - -28.71209 0.81827 1.95313 - -28.63502 0.86264 1.86355 - -28.55743 0.82979 1.77646 - -28.55742 0.82918 1.77646 - -28.52717 -0.23168 1.68362 - -28.60523 -1.33657 1.59377 - -28.79590 -2.48391 1.50693 - -29.10337 -3.67223 1.42313 - -29.53167 -4.90020 1.34239 - -29.53471 -4.87747 1.34239 - -29.98504 -1.58623 1.23460 - -29.99013 1.46343 1.13298 - -29.59128 4.17026 1.03747 - -28.83987 6.50401 0.94797 - -27.78644 8.48872 0.86442 - -27.78500 8.48679 0.86442 - -26.46088 10.31929 0.78665 - -24.91780 11.67608 0.71432 - -23.20471 12.75143 0.64710 - -21.35960 13.56519 0.58462 - -19.41780 14.13574 0.52654 - -19.41795 14.12902 0.52654 - -17.55171 12.98981 0.47247 - -15.72141 13.12343 0.42202 - -13.88634 13.06005 0.37480 - -12.07322 12.81195 0.33045 - -10.30712 12.38985 0.28857 - -10.30725 12.38625 0.28857 - -8.61237 11.79958 0.24881 - -7.01070 11.05597 0.21081 - -5.52372 10.16200 0.17427 - -4.17210 9.12296 0.13890 - -2.97587 7.94286 0.10438 - -2.97596 7.94173 0.10438 - -1.95478 6.62361 0.07044 - -1.12770 5.16926 0.03689 - -0.51368 3.58008 0.00361 - -0.13153 1.85692 -0.02952 - 0.00001 0.00007 -0.06263 + 0.00000 0.00000 -15.04770 + 0.00000 0.00000 -14.62666 + 0.00000 0.00000 -14.20562 + 0.00000 0.00000 -13.78458 + 0.00000 0.00000 -13.36354 + 0.00000 0.00000 -12.94250 + 0.00000 0.00000 -12.94250 + 0.00000 0.00000 -12.52146 + 0.00000 0.00000 -12.10042 + 0.00000 0.00000 -11.67938 + 0.00000 0.00000 -11.25834 + 0.00000 0.00000 -10.83730 + 0.00000 0.00000 -10.83730 + -0.00339 -0.08476 -10.27591 + -0.02712 -0.33903 -9.71453 + -0.09154 -0.76283 -9.15314 + -0.21698 -1.35613 -8.59173 + -0.42379 -2.11896 -8.03028 + -0.42379 -2.11896 -8.03028 + -0.67297 -2.88414 -7.56237 + -1.00454 -3.76704 -7.09439 + -1.43030 -4.76766 -6.62630 + -1.96200 -5.88600 -6.15805 + -2.61142 -7.12206 -5.68959 + -2.61142 -7.12206 -5.68959 + -3.39034 -8.47584 -5.22087 + -4.31051 -9.94734 -4.75180 + -5.38373 -11.53656 -4.28227 + -6.62175 -13.24350 -3.81215 + -8.03635 -15.06816 -3.34134 + -8.03635 177.77184 -3.34134 + 7.18113 176.10848 -2.93600 + 22.25181 174.35805 -2.53122 + 37.16822 172.52056 -2.12816 + 51.92285 170.59601 -1.72798 + 66.50823 168.58438 -1.33182 + 66.50823 51.78892 -1.33182 + 72.25398 48.98815 -0.81457 + 77.67172 46.03439 -0.30719 + 82.74401 42.92765 0.18965 + 87.45341 39.66791 0.67524 + 91.78248 36.25518 1.14889 + 91.78331 36.24129 1.14889 + 94.59229 34.07835 1.47381 + 97.24907 32.41165 1.79237 + 99.78795 31.11233 2.10441 + 102.23536 30.12484 2.40975 + 104.61521 29.41077 2.70822 + 104.61493 29.40855 2.70822 + 105.20189 29.28955 2.78174 + 105.78663 29.18746 2.85482 + 106.36951 29.10453 2.92746 + 106.95093 29.04071 2.99965 + 107.53125 28.99370 3.07140 + 107.53088 28.99778 3.07140 + 110.30521 26.49631 3.42327 + 112.83151 24.03603 3.76356 + 115.11311 21.59652 4.09203 + 117.15098 19.16182 4.40844 + 118.94569 16.73357 4.71255 + 118.94584 16.73482 4.71255 + 120.49816 14.31286 5.00414 + 121.80868 11.89876 5.28308 + 122.87818 9.49253 5.54925 + 123.70745 7.09434 5.80254 + 124.29731 4.70422 6.04285 + 124.29731 4.70440 6.04285 + 124.64859 2.32249 6.27008 + 124.76208 -0.05145 6.48422 + 124.63856 -2.41752 6.68528 + 124.27883 -4.77588 6.87329 + 123.68363 -7.12698 7.04824 + 123.68361 -7.12665 7.04824 + 122.45622 -10.40536 7.27130 + 120.77072 -13.67103 7.46915 + 118.62892 -16.92400 7.64224 + 116.03255 -20.16509 7.79101 + 112.98318 -23.39577 7.91589 + 112.98313 -23.39486 7.91589 + 109.89408 -24.08355 8.01097 + 106.73161 -24.53679 8.08655 + 103.52302 -24.79365 8.14320 + 100.29365 -24.85695 8.18148 + 97.07004 -24.69349 8.20197 + 97.07011 -24.69280 8.20197 + 93.78847 -25.99334 8.20522 + 90.29620 -27.65489 8.19183 + 86.61875 -28.84221 8.16245 + 82.81777 -29.55528 8.11772 + 78.95493 -29.79412 8.05829 + 78.95493 -29.79412 8.05829 + 74.50056 -29.79609 7.97265 + 70.04589 -29.79807 7.86953 + 65.59094 -29.80004 7.74998 + 61.13568 -29.80201 7.61504 + 56.68013 -29.80399 7.46575 + 56.68013 -29.80399 7.46575 + 52.21499 -29.99267 7.30314 + 47.67817 -30.86678 7.12827 + 42.95912 -32.27668 6.94225 + 38.02375 -33.76075 6.74619 + 32.86142 -35.30972 6.54121 + 32.86074 -35.30635 6.54121 + 27.45665 -36.99947 6.32848 + 21.79454 -38.76003 6.10932 + 15.93215 -39.22126 5.88508 + 10.17057 -37.61178 5.65708 + 4.72614 -35.20145 5.42668 + 4.72732 -35.19365 5.42668 + -0.33590 -32.52020 5.19523 + -4.98813 -29.68440 4.96388 + -9.20185 -26.65406 4.73360 + -12.94801 -23.42947 4.50539 + -16.19919 -20.04291 4.28021 + -16.19920 -20.04307 4.28021 + -16.23924 -19.99600 4.27722 + -16.27919 -19.94890 4.27424 + -16.31904 -19.90177 4.27125 + -16.35879 -19.85460 4.26827 + -16.39846 -19.80740 4.26528 + -16.39846 -19.80741 4.26528 + -17.13654 -19.04065 4.20871 + -17.84565 -18.28227 4.15240 + -18.52610 -17.53195 4.09635 + -19.17818 -16.78963 4.04059 + -19.80221 -16.05555 3.98512 + -19.80358 -16.04337 3.98512 + -21.59173 -13.77306 3.81198 + -23.11423 -11.63068 3.64211 + -24.39038 -9.67042 3.47570 + -25.44272 -7.89976 3.31295 + -26.29374 -6.31444 3.15404 + -26.29320 -6.31192 3.15404 + -26.64996 -5.58743 3.07608 + -26.96459 -4.90758 2.99913 + -27.23975 -4.27176 2.92320 + -27.47807 -3.67938 2.84830 + -27.68213 -3.12987 2.77443 + -27.68210 -3.13044 2.77443 + -27.93197 -2.37729 2.66441 + -28.11765 -1.71926 2.55681 + -28.24770 -1.15417 2.45165 + -28.33047 -0.67989 2.34895 + -28.37413 -0.29432 2.24871 + -28.37413 -0.29521 2.24871 + -28.38674 0.00391 2.15094 + -28.37598 0.21864 2.05563 + -28.34944 0.35116 1.96279 + -28.31449 0.40363 1.87242 + -28.27834 0.37817 1.78451 + -28.27835 0.37742 1.78451 + -28.29309 -0.67980 1.69073 + -28.41579 -1.78152 1.59992 + -28.65082 -2.92613 1.51210 + -29.00240 -4.11222 1.42730 + -29.47461 -5.33843 1.34555 + -29.47769 -5.31533 1.34555 + -29.98894 -2.01913 1.23635 + -30.05444 1.03295 1.13332 + -29.71590 3.73829 1.03639 + -29.02540 6.06494 0.94552 + -28.03426 8.03707 0.86063 + -28.03279 8.03515 0.86063 + -26.78923 9.67681 0.78157 + -25.33764 11.01066 0.70802 + -23.71960 12.05833 0.63966 + -21.97372 12.84005 0.57616 + -20.13592 13.37467 0.51717 + -20.13606 13.36774 0.51717 + -18.24063 13.67297 0.46235 + -16.31760 13.76456 0.41129 + -14.39585 13.65691 0.36358 + -12.50237 13.36276 0.31883 + -10.66246 12.89324 0.27666 + -10.66261 12.88950 0.27666 + -8.90065 12.25435 0.23667 + -7.23875 11.46145 0.19850 + -5.69849 10.51761 0.16184 + -4.30061 9.42830 0.12639 + -3.06516 8.19765 0.09182 + -3.06525 8.19648 0.09182 + -2.01196 6.82762 0.05783 + -1.15988 5.32239 0.02425 + -0.52799 3.68223 -0.00905 + -0.13511 1.90802 -0.04219 + 0.00001 0.00008 -0.07531 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17215,7 +17351,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -17227,7 +17363,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -17238,17 +17374,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -17257,7 +17393,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -17287,13 +17423,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -17394,48 +17530,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00340 0.00000 0.00340 0.00340 402 100 P - 6.72865 0.00000 7.80254 0.68000 330 86 3 - 11.89863 0.00000 15.60507 1.36000 220 76 2 - 15.94129 0.00000 23.40761 2.04000 220 68 2 - 19.96202 0.00000 31.21015 2.72000 220 64 2 - 23.20459 0.00000 37.06205 3.23000 220 63 2 - 24.14920 0.00000 39.50034 3.44250 220 61 2 - 24.95627 0.00000 40.96332 3.57000 220 61 2 - 25.95081 0.00000 42.91395 3.74000 220 60 2 - 26.94390 0.00000 44.86459 3.91000 220 60 2 - 27.93552 0.00000 46.81522 4.08000 220 60 2 - 28.73676 0.00000 48.27820 4.20750 220 60 2 - 9.37307 0.00000 20.56677 6.30726 110 46 1 - 9.74614 0.98100 20.32861 6.32894 110 48 1 - 10.06327 1.96200 20.08785 6.35785 220 50 2 - 10.09659 2.94300 19.91182 6.38676 220 51 2 - 10.14307 3.92400 19.78100 6.41566 220 51 2 - 10.20387 4.90500 19.70421 6.43734 220 52 2 - 10.19251 4.90500 19.66214 6.45179 220 52 2 - 10.25896 5.88600 19.61027 6.47347 220 52 2 - 10.32331 6.86700 19.55671 6.50238 220 53 2 - 10.38977 7.84800 19.51850 6.53129 220 53 2 - 10.45723 8.82900 19.49272 6.56019 220 54 2 - 10.52390 9.81000 19.47992 6.58187 220 54 2 - 10.53565 9.81000 19.47440 6.63230 220 54 2 - 10.59204 10.79100 19.47010 6.61800 220 54 2 - 10.65825 11.77200 19.47023 6.64691 220 55 2 - 10.72312 12.75300 19.47646 6.67582 220 55 2 - 10.78634 13.73400 19.48795 6.70472 220 55 2 - 10.84404 14.71500 19.49947 6.72640 220 56 2 - 10.85278 14.71500 19.51051 6.74375 220 56 2 - 10.92999 16.08840 19.53319 6.77410 220 56 2 - 11.00776 17.46180 19.56875 6.81457 220 56 2 - 11.08080 18.83520 19.60984 6.85503 220 57 2 - 11.14893 20.20860 19.65566 6.89550 220 57 2 - 11.20457 21.58200 19.69261 6.92585 220 57 2 - 25.55395 21.58200 40.65119 7.89320 220 63 2 - 23.81459 25.39730 37.49247 5.34869 220 64 2 - 22.04208 29.21260 33.28909 4.15339 220 66 2 - 20.25151 33.02790 29.09277 2.95808 220 70 2 - 18.44270 36.84320 24.90135 1.76278 220 74 2 - 17.07784 40.65850 21.76001 0.86630 220 78 2 - 10.70443 40.65850 12.41397 0.26865 330 86 3 + 6.73217 0.00000 7.80254 0.68000 330 86 3 + 11.91143 0.00000 15.60507 1.36000 220 76 2 + 15.95539 0.00000 23.40761 2.04000 220 68 2 + 19.97742 0.00000 31.21015 2.72000 220 64 2 + 23.22128 0.00000 37.06205 3.23000 220 63 2 + 24.16589 0.00000 39.50034 3.44250 220 61 2 + 24.97327 0.00000 40.96332 3.57000 220 61 2 + 25.96814 0.00000 42.91395 3.74000 220 61 2 + 26.96155 0.00000 44.86459 3.91000 220 60 2 + 27.95349 0.00000 46.81522 4.08000 220 60 2 + 28.75505 0.00000 48.27820 4.20750 220 60 2 + 9.37866 0.00000 20.56677 6.30726 110 46 1 + 9.75221 0.98100 20.32861 6.32894 110 48 1 + 10.06506 1.96200 20.08785 6.35785 220 50 2 + 10.09851 2.94300 19.91182 6.38676 220 51 2 + 10.14512 3.92400 19.78100 6.41566 220 51 2 + 10.20605 4.90500 19.70421 6.43734 220 52 2 + 10.19469 4.90500 19.66214 6.45179 220 52 2 + 10.26127 5.88600 19.61027 6.47347 220 52 2 + 10.32575 6.86700 19.55671 6.50238 220 53 2 + 10.39233 7.84800 19.51850 6.53129 220 53 2 + 10.45992 8.82900 19.49272 6.56019 220 54 2 + 10.52671 9.81000 19.47992 6.58187 220 54 2 + 10.52865 9.81000 19.47440 6.59633 220 54 2 + 10.59497 10.79100 19.47010 6.61800 220 54 2 + 10.66130 11.77200 19.47023 6.64691 220 55 2 + 10.72629 12.75300 19.47646 6.67582 220 55 2 + 10.78962 13.73400 19.48795 6.70472 220 55 2 + 10.84744 14.71500 19.49947 6.72640 220 56 2 + 10.85618 14.71500 19.51051 6.74375 220 56 2 + 10.93354 16.08840 19.53319 6.77410 220 56 2 + 11.01147 17.46180 19.56875 6.81457 220 56 2 + 11.08465 18.83520 19.60984 6.85503 220 57 2 + 11.15293 20.20860 19.65566 6.89550 220 57 2 + 11.20870 21.58200 19.69261 6.92585 220 57 2 + 25.12100 21.58200 40.65119 6.24517 220 62 2 + 23.83160 25.39730 37.49247 5.34869 220 64 2 + 22.05955 29.21260 33.28909 4.15339 220 66 2 + 20.26943 33.02790 29.09277 2.95808 220 70 2 + 18.46105 36.84320 24.90135 1.76278 220 74 2 + 17.09660 40.65850 21.76001 0.86630 220 79 2 + 10.70848 40.65850 12.41397 0.26865 330 86 3 0.00000 44.47380 0.00000 0.00000 402 0 P 0.00000 48.28910 0.00000 0.00000 402 0 P 0.00000 52.10440 0.00000 0.00000 402 0 P @@ -17449,94 +17585,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 68.53457 0.00000 0.00000 402 0 P - 0.04098 70.00117 0.04098 0.04098 402 100 P - 0.04098 71.46776 0.04098 0.04098 402 100 P + 0.00000 70.00117 0.00000 0.00000 402 0 P + 0.00000 71.46776 0.00000 0.00000 402 0 P 0.00000 72.93436 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P - 0.00000 75.86755 0.00000 0.00000 402 100 P - 0.00000 77.33414 0.00000 0.00000 402 100 P - 15.28679 78.80074 17.96911 4.49986 330 85 3 - 23.86345 80.26733 36.36631 5.18955 220 66 2 - 24.90251 81.73392 39.87198 5.70681 220 62 2 - 25.17770 81.73392 42.19987 3.61198 220 60 2 - 26.87142 83.20052 45.68064 6.56892 220 59 2 - 28.36374 84.66711 50.30746 7.25860 220 56 2 - 29.85361 86.13371 54.92251 7.94829 220 54 2 - 31.34443 87.60031 59.53073 8.63797 220 53 2 - 32.37357 89.06690 62.98476 9.15524 220 51 2 - 32.84542 89.06690 64.15130 9.32997 220 51 2 - 32.85924 89.08652 64.19752 9.33689 220 51 2 - 32.87927 89.10614 64.25913 9.34611 220 51 2 - 32.89931 89.12576 64.32073 9.35534 220 51 2 - 32.91934 89.14538 64.38231 9.36457 220 51 2 - 32.93316 89.16500 64.42851 9.37149 220 51 2 - 28.37468 89.16500 58.82727 11.38885 110 48 1 - 28.25616 89.53778 59.19268 11.49627 110 48 1 - 28.17451 89.91056 59.68017 11.63950 110 47 1 - 28.09395 90.28334 60.16799 11.78273 110 47 1 - 28.01453 90.65612 60.65612 11.92596 110 46 1 - 27.90047 91.02890 61.02242 12.03338 110 46 1 - 28.04936 91.02890 61.53041 12.18226 110 46 1 - 27.69742 92.20610 62.68904 12.52149 110 44 1 - 27.47177 93.38330 64.23606 12.97380 110 43 1 - 27.26011 94.56050 65.78549 13.42610 110 41 1 - 27.06324 95.73770 67.33709 13.87840 110 40 1 - 26.76888 96.91490 68.50203 14.21763 110 39 1 - 26.93849 96.91490 69.08491 14.38724 110 39 1 - 26.79736 97.50350 69.66807 14.55686 110 38 1 - 26.71684 98.09210 70.44596 14.78301 110 38 1 - 26.64044 98.68070 71.22427 15.00916 110 37 1 - 26.56821 99.26930 72.00296 15.23531 110 37 1 - 26.44365 99.85790 72.58721 15.40493 110 36 1 - 24.52568 99.85790 73.07750 13.48696 110 34 1 - 26.40512 100.75061 73.96428 15.80446 110 36 1 - 26.31990 101.64332 75.14728 16.14746 110 35 1 - 26.24458 102.53603 76.33100 16.49046 110 34 1 - 26.17921 103.42874 77.51539 16.83345 110 34 1 - 26.03810 104.32145 78.40407 17.09070 110 33 1 - 40.69361 104.32145 78.99672 34.93354 220 52 2 - 26.07853 105.21416 79.88599 17.51945 110 33 1 - 26.04324 106.10687 81.07214 17.86244 110 32 1 - 26.01795 106.99958 82.25880 18.20544 110 32 1 - 26.00264 107.89229 83.44594 18.54844 110 31 1 - 25.91154 108.78500 84.33659 18.80568 110 31 1 - 24.16684 108.78500 56.86688 20.61391 110 42 1 - 25.75387 106.76600 61.08371 22.38663 110 42 1 - 27.93780 104.74700 66.69564 24.75026 110 42 1 - 30.12775 102.72800 72.29483 27.11388 110 42 1 - 32.32377 100.70900 77.88124 29.47751 110 42 1 - 33.93500 98.69000 82.06310 31.25023 110 41 1 - 36.47095 98.69000 272.58042 20.36232 110 13 1 - 35.68047 100.06340 271.86044 20.86529 110 13 1 - 35.13171 101.43680 274.54312 21.53590 110 13 1 - 34.65611 102.81020 279.33150 22.20652 110 12 1 - 34.25276 104.18360 285.19980 22.87714 110 12 1 - 33.75309 105.55700 290.01763 23.38010 110 12 1 - 34.08840 105.55700 293.38484 23.71541 110 12 1 - 33.65814 106.93040 298.60646 24.21837 110 11 1 - 33.46087 108.30380 305.78478 24.88899 110 11 1 - 33.32475 109.67720 313.15603 25.55961 110 11 1 - 33.24561 111.05060 320.66827 26.23022 110 10 1 - 33.05162 112.42400 326.37074 26.73319 110 10 1 - 33.38693 112.42400 330.20204 27.06849 110 10 1 - 33.24112 113.79740 335.98580 27.57146 110 10 1 - 33.30630 115.17080 343.74884 28.24207 110 10 1 - 33.41031 116.54420 351.56245 28.91269 110 10 1 - 33.54865 117.91760 359.41683 29.58331 110 9 1 - 33.54916 119.29100 365.32890 30.08627 110 9 1 - 33.88447 119.29100 369.28008 30.42158 110 9 1 - 33.91022 120.66440 375.21958 30.92454 110 9 1 - 34.12484 122.03780 383.15752 31.59516 110 9 1 - 34.35705 123.41120 391.11465 32.26578 110 9 1 - 34.60318 124.78460 399.08801 32.93639 110 9 1 - 34.69196 126.15800 405.07683 33.43936 110 9 1 - 35.02727 126.15800 409.07356 33.77467 110 9 1 - 35.12286 127.53140 415.07425 34.27763 110 8 1 - 35.39087 128.90480 423.08354 34.94825 110 8 1 - 35.66215 130.27820 431.10170 35.61886 110 8 1 - 35.93522 131.65160 439.12760 36.28948 110 0 1 - 36.04093 133.02500 445.15132 36.79244 110 0 1 + 0.00000 75.86755 0.00000 0.00000 402 0 P + 0.00000 77.33414 0.00000 0.00000 402 0 P + 15.29694 78.80074 17.96911 4.49986 330 85 3 + 23.89649 80.26733 36.36631 5.18955 220 66 2 + 24.93532 81.73392 39.87198 5.70681 220 63 2 + 25.87588 81.73392 42.19987 6.05165 220 61 2 + 26.90396 83.20052 45.68064 6.56892 220 59 2 + 28.39596 84.66711 50.30746 7.25860 220 56 2 + 29.88543 86.13371 54.92251 7.94829 220 54 2 + 31.37580 87.60031 59.53073 8.63797 220 53 2 + 32.40441 89.06690 62.98476 9.15524 220 51 2 + 32.87626 89.06690 64.15130 9.32997 220 51 2 + 32.89007 89.08652 64.19752 9.33689 220 51 2 + 32.91010 89.10614 64.25913 9.34611 220 51 2 + 32.93013 89.12576 64.32073 9.35534 220 51 2 + 32.95016 89.14538 64.38231 9.36457 220 51 2 + 32.96396 89.16500 64.42851 9.37149 220 51 2 + 28.44997 89.16500 58.82727 11.38885 110 48 1 + 28.33110 89.53778 59.19268 11.49627 110 48 1 + 28.24908 89.91056 59.68017 11.63950 110 47 1 + 28.16814 90.28334 60.16799 11.78273 110 47 1 + 28.08832 90.65612 60.65612 11.92596 110 46 1 + 27.97385 91.02890 61.02242 12.03338 110 46 1 + 28.12273 91.02890 61.53041 12.18226 110 46 1 + 27.76942 92.20610 62.68904 12.52149 110 44 1 + 27.54224 93.38330 64.23606 12.97380 110 43 1 + 27.32890 94.56050 65.78549 13.42610 110 42 1 + 27.13018 95.73770 67.33709 13.87840 110 40 1 + 26.83380 96.91490 68.50203 14.21763 110 39 1 + 27.00341 96.91490 69.08491 14.38724 110 39 1 + 26.86120 97.50350 69.66807 14.55686 110 39 1 + 26.77955 98.09210 70.44596 14.78301 110 38 1 + 26.70197 98.68070 71.22427 15.00916 110 37 1 + 26.62851 99.26930 72.00296 15.23531 110 37 1 + 26.50266 99.85790 72.58721 15.40493 110 37 1 + 26.64495 99.85790 73.07750 15.54721 110 36 1 + 26.46210 100.75061 73.96428 15.80446 110 36 1 + 26.37471 101.64332 75.14728 16.14746 110 35 1 + 26.29707 102.53603 76.33100 16.49046 110 34 1 + 26.22925 103.42874 77.51539 16.83345 110 34 1 + 26.08553 104.32145 78.40407 17.09070 110 33 1 + 26.25703 104.32145 78.99672 17.26220 110 33 1 + 26.12319 105.21416 79.88599 17.51945 110 33 1 + 26.08497 106.10687 81.07214 17.86244 110 32 1 + 26.05662 106.99958 82.25880 18.20544 110 32 1 + 26.03811 107.89229 83.44594 18.54844 110 31 1 + 25.94371 108.78500 84.33659 18.80568 110 31 1 + 24.18292 108.78500 56.86688 20.61391 110 43 1 + 25.76809 106.76600 61.08371 22.38663 110 42 1 + 27.95009 104.74700 66.69564 24.75026 110 42 1 + 30.13808 102.72800 72.29483 27.11388 110 42 1 + 32.33212 100.70900 77.88124 29.47751 110 42 1 + 33.94133 98.69000 82.06310 31.25023 110 41 1 + 36.50893 98.69000 272.58042 20.36232 110 13 1 + 35.70144 100.06340 271.86044 20.86529 110 13 1 + 35.13568 101.43680 274.54312 21.53590 110 13 1 + 34.64325 102.81020 279.33150 22.20652 110 12 1 + 34.22336 104.18360 285.19980 22.87714 110 12 1 + 33.70762 105.55700 290.01763 23.38010 110 12 1 + 34.04292 105.55700 293.38484 23.71541 110 12 1 + 33.59720 106.93040 298.60646 24.21837 110 11 1 + 33.38528 108.30380 305.78478 24.88899 110 11 1 + 33.23555 109.67720 313.15603 25.55961 110 11 1 + 33.14408 111.05060 320.66827 26.23022 110 10 1 + 32.93929 112.42400 326.37074 26.73319 110 10 1 + 33.27459 112.42400 330.20204 27.06849 110 10 1 + 33.11972 113.79740 335.98580 27.57146 110 10 1 + 33.17750 115.17080 343.74884 28.24207 110 10 1 + 33.27559 116.54420 351.56245 28.91269 110 9 1 + 33.40928 117.91760 359.41683 29.58331 110 9 1 + 33.40621 119.29100 365.32890 30.08627 110 9 1 + 33.74152 119.29100 369.28008 30.42158 110 9 1 + 33.76454 120.66440 375.21958 30.92454 110 9 1 + 33.97715 122.03780 383.15752 31.59516 110 9 1 + 34.20792 123.41120 391.11465 32.26578 110 9 1 + 34.45307 124.78460 399.08801 32.93639 110 9 1 + 34.54117 126.15800 405.07683 33.43936 110 9 1 + 34.87648 126.15800 409.07356 33.77467 110 9 1 + 34.97160 127.53140 415.07425 34.27763 110 8 1 + 35.23927 128.90480 423.08354 34.94825 110 8 1 + 35.51032 130.27820 431.10170 35.61886 110 0 1 + 35.78320 131.65160 439.12760 36.28948 110 0 1 + 35.88873 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17551,13 +17687,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.935 'Ophooglaag zand' - -3.50 23.235 'Hollandveen' - -5.70 14.458 'Oude Zeeklei' - -7.00 29.764 'Wadzand' - -10.00 54.155 'Hydrobiaklei' - -12.00 14.519 'Basisveen' - -12.50 120.119 'Eerste zandlaag' + -3.00 7.941 'Ophooglaag zand' + -3.50 23.241 'Hollandveen' + -5.70 14.441 'Oude Zeeklei' + -7.00 29.835 'Wadzand' + -10.00 53.707 'Hydrobiaklei' + -12.00 14.525 'Basisveen' + -12.50 119.759 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -17577,10 +17713,10 @@ Layer name -3.00 2.89 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 3.07 'Oude Zeeklei' - -7.00 8.93 'Wadzand' - -10.00 11.51 'Hydrobiaklei' + -7.00 8.95 'Wadzand' + -10.00 11.42 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 46.11 'Eerste zandlaag' + -12.50 45.97 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -17883,7 +18019,7 @@ Lambda passive -6.74000 11.10450 44.38498 0.00000 0.68728 0.00000 3.99703 -6.87000 12.43389 47.59701 0.00000 0.68823 0.00000 3.82801 -7.00000 13.76322 50.00567 0.00000 0.68902 0.00000 3.72318 - -7.00000 13.76322 56.56939 0.00000 0.56962 0.00000 4.02302 + -7.00000 13.76322 56.56939 0.00000 0.56701 0.00000 4.02302 -7.14950 14.95606 59.17756 0.00000 0.56756 0.00000 3.95676 -7.29900 16.14883 63.03696 0.00000 0.56807 0.00000 3.90350 -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 @@ -17895,7 +18031,7 @@ Lambda passive -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 -8.34550 24.49678 95.35621 8.46813 0.57065 0.34568 3.89260 -8.49500 25.68924 98.76054 8.77815 0.57093 0.34572 3.88957 - -8.49500 25.68924 101.03367 9.25368 0.63815 0.35608 3.88780 + -8.49500 25.68924 101.03367 9.25368 0.57093 0.35608 3.88780 -8.64450 26.88169 104.44831 9.59969 0.57119 0.35711 3.88548 -8.79400 28.07413 109.00806 10.00551 0.57144 0.35640 3.88286 -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 @@ -17925,7 +18061,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -17955,13 +18091,13 @@ Lambda passive -12.92000 68.66611 399.79848 17.40762 0.46790 0.25351 5.82236 -13.06000 70.09142 406.19871 17.79637 0.46796 0.25390 5.79527 -13.20000 71.51677 411.25599 18.08658 0.46802 0.25417 5.77928 - -13.20000 71.51677 414.73635 18.27940 0.43937 0.25433 5.77040 + -13.20000 71.51677 414.73635 18.27940 0.46802 0.25433 5.77040 -13.34000 72.94213 420.09417 18.56772 0.46808 0.25455 5.75928 -13.48000 74.36752 427.39798 18.94839 0.46813 0.25479 5.74711 -13.62000 75.79293 434.84979 19.24842 0.46818 0.25396 5.73734 -13.76000 77.21836 442.29337 19.51523 0.46823 0.25273 5.72783 -13.90000 78.64381 447.87370 19.78051 0.46828 0.25267 5.72089 - -13.90000 78.64381 451.61995 19.97027 0.69187 0.25279 5.71670 + -13.90000 78.64381 451.61995 19.97027 0.46828 0.25279 5.71670 -14.04000 80.06929 457.27233 20.25436 0.46833 0.25296 5.71096 -14.18000 81.49478 464.85577 20.63172 0.46837 0.25317 5.70412 -14.32000 82.92030 472.47626 21.00738 0.46842 0.25334 5.69796 @@ -18085,7 +18221,7 @@ Status character 0.00000 58.19540 44.38498 7.63186 1 0 A 0.00000 58.97070 47.59701 8.55736 1 0 A 0.00000 59.74600 50.00567 9.25421 1 0 A - 0.00000 59.74600 56.56939 8.00965 1 0 A + 0.00000 59.74600 56.56939 7.97293 1 0 A 0.00000 61.21260 59.17756 8.48851 1 0 A 0.00000 62.67919 63.03696 9.17359 1 0 A 0.00000 64.14579 67.15179 9.85907 1 0 A @@ -18097,7 +18233,7 @@ Status character 8.05472 71.47876 90.80343 13.29161 1 0 A 8.46813 72.94536 95.35621 13.97900 1 0 A 8.77815 74.41195 98.76054 14.49644 1 0 A - 9.25368 74.41195 101.03367 16.58377 1 0 A + 9.25368 74.41195 101.03367 14.83684 1 0 A 9.59969 75.87855 104.44831 15.35451 1 0 A 10.00551 77.34514 109.00806 16.04260 1 0 A 10.41135 78.81174 113.57458 16.73088 1 0 A @@ -18123,64 +18259,64 @@ Status character 11.95738 91.03990 113.85153 26.88125 1 0 A 12.05633 91.03990 114.33661 27.02892 1 0 A 12.28174 92.21710 115.44439 27.36892 1 0 A - 13.32317 93.39430 116.92621 27.82114 110 0 1 - 14.43940 94.57150 118.41340 28.27341 110 0 1 - 15.54088 95.74870 119.90552 28.72573 110 0 1 - 16.51460 96.92590 121.02749 29.06585 110 0 1 - 13.52077 96.92590 121.58944 24.57613 1 0 A - 17.16378 97.51450 122.15203 29.40428 110 0 1 - 17.69665 98.10310 122.90301 29.63048 110 0 1 - 18.22542 98.69170 123.65496 29.85670 110 0 1 - 18.75002 99.28030 124.40787 30.08292 110 0 1 - 19.21429 99.86890 124.97311 30.25301 110 0 1 - 19.35558 99.86890 125.44772 30.39430 110 0 1 - 20.05163 100.76161 126.30668 30.65229 110 0 1 - 20.82299 101.65432 127.45492 30.99544 110 0 1 - 21.58448 102.54703 128.63081 31.33861 110 0 1 - 22.33603 103.43974 129.81818 31.68179 110 0 1 - 22.99240 104.33245 130.70972 31.93980 110 0 1 - 23.16278 104.33245 131.30460 32.11018 110 0 1 - 23.80912 105.22516 132.19767 32.36821 110 0 1 - 24.53064 106.11787 133.38964 32.71144 110 0 1 - 25.24217 107.01058 134.58301 33.05468 110 0 1 - 25.94373 107.90329 135.77771 33.39793 110 0 1 - 26.55011 108.79600 136.67455 33.65597 110 0 1 - 32.80929 108.79600 96.36922 36.36222 110 0 1 - 34.77044 106.77700 100.67195 38.13768 110 0 1 - 37.31408 104.75800 106.39642 40.50163 110 0 1 - 39.85171 102.73900 112.10591 42.86558 110 0 1 - 42.38328 100.72000 117.80054 45.22955 110 0 1 - 44.31965 98.70100 122.06230 47.00442 110 0 1 + 13.25270 93.39430 116.92621 27.82114 110 0 1 + 14.37061 94.57150 118.41340 28.27341 110 0 1 + 15.47395 95.74870 119.90552 28.72573 110 0 1 + 16.44968 96.92590 121.02749 29.06585 110 0 1 + 16.61804 96.92590 121.58944 29.23421 110 0 1 + 17.09994 97.51450 122.15203 29.40428 110 0 1 + 17.63394 98.10310 122.90301 29.63048 110 0 1 + 18.16389 98.69170 123.65496 29.85670 110 0 1 + 18.68972 99.28030 124.40787 30.08292 110 0 1 + 19.15528 99.86890 124.97311 30.25301 110 0 1 + 19.29656 99.86890 125.44772 30.39430 110 0 1 + 19.99465 100.76161 126.30668 30.65229 110 0 1 + 20.76819 101.65432 127.45492 30.99544 110 0 1 + 21.53199 102.54703 128.63081 31.33861 110 0 1 + 22.28599 103.43974 129.81818 31.68179 110 0 1 + 22.94497 104.33245 130.70972 31.93980 110 0 1 + 23.11535 104.33245 131.30460 32.11018 110 0 1 + 23.76446 105.22516 132.19767 32.36821 110 0 1 + 24.48891 106.11787 133.38964 32.71144 110 0 1 + 25.20350 107.01058 134.58301 33.05468 110 0 1 + 25.90825 107.90329 135.77771 33.39793 110 0 1 + 26.51794 108.79600 136.67455 33.65597 110 0 1 + 32.79320 108.79600 96.36922 36.36222 110 0 1 + 34.75623 106.77700 100.67195 38.13768 110 0 1 + 37.30179 104.75800 106.39642 40.50163 110 0 1 + 39.84138 102.73900 112.10591 42.86558 110 0 1 + 42.37494 100.72000 117.80054 45.22955 110 0 1 + 44.31332 98.70100 122.06230 47.00442 110 0 1 16.32529 98.70100 386.35900 30.28234 1 0 A 16.62261 100.07440 389.12584 30.78681 1 0 A - 17.86214 101.44780 393.99108 31.45795 110 0 1 - 19.67951 102.82120 399.79848 32.12910 110 0 1 - 21.42464 104.19460 406.19871 32.80027 110 0 1 - 22.93168 105.56800 411.25599 33.30467 110 0 1 - 21.20613 105.56800 414.73635 31.57912 110 0 1 - 24.70286 106.94140 420.09417 34.14263 110 0 1 - 26.24194 108.31480 427.39798 34.81382 110 0 1 - 27.71988 109.68820 434.84979 35.48502 110 0 1 - 29.14085 111.06160 442.29337 36.15623 110 0 1 - 30.34213 112.43500 447.87370 36.66057 110 0 1 - 48.33913 112.43500 451.61995 54.65757 110 0 1 - 31.82900 113.80840 457.27233 37.49867 110 0 1 - 33.10567 115.18180 464.85577 38.16989 110 0 1 - 34.34350 116.55520 472.47626 38.84112 110 0 1 - 35.54701 117.92860 480.11294 39.51236 110 0 1 - 36.55373 119.30200 485.86065 40.01662 110 0 1 - 36.88767 119.30200 489.70215 40.35056 110 0 1 - 37.86915 120.67540 495.49874 40.85483 110 0 1 - 38.99638 122.04880 503.39465 41.52606 110 0 1 - 40.10604 123.42220 511.34019 42.19730 110 0 1 - 41.20176 124.79560 519.30166 42.86854 110 0 1 - 42.12014 126.16900 525.28152 43.37274 110 0 1 - 42.45422 126.16900 529.27230 43.70683 110 0 1 - 43.36579 127.54240 535.26413 44.21102 110 0 1 - 44.43964 128.91580 543.26180 44.88226 110 0 1 - 45.51022 130.28920 551.26866 45.55350 110 0 1 - 46.57900 131.66260 559.28359 46.22474 110 8 1 - 47.48039 133.03600 565.29934 46.72887 110 8 1 + 17.85817 101.44780 393.99108 31.45795 110 0 1 + 19.69238 102.82120 399.79848 32.12910 110 0 1 + 21.45404 104.19460 406.19871 32.80027 110 0 1 + 22.97715 105.56800 411.25599 33.30467 110 0 1 + 23.31070 105.56800 414.73635 33.63822 110 0 1 + 24.76379 106.94140 420.09417 34.14263 110 0 1 + 26.31753 108.31480 427.39798 34.81382 110 0 1 + 27.80908 109.68820 434.84979 35.48502 110 0 1 + 29.24237 111.06160 442.29337 36.15623 110 0 1 + 30.45447 112.43500 447.87370 36.66057 110 0 1 + 30.78823 112.43500 451.61995 36.99433 110 0 1 + 31.95041 113.80840 457.27233 37.49867 110 0 1 + 33.23447 115.18180 464.85577 38.16989 110 0 1 + 34.47822 116.55520 472.47626 38.84112 110 0 1 + 35.68638 117.92860 480.11294 39.51236 110 0 1 + 36.69669 119.30200 485.86065 40.01662 110 0 1 + 37.03062 119.30200 489.70215 40.35056 110 0 1 + 38.01483 120.67540 495.49874 40.85483 110 0 1 + 39.14407 122.04880 503.39465 41.52606 110 0 1 + 40.25516 123.42220 511.34019 42.19730 110 0 1 + 41.35187 124.79560 519.30166 42.86854 110 0 1 + 42.27092 126.16900 525.28152 43.37274 110 0 1 + 42.60501 126.16900 529.27230 43.70683 110 0 1 + 43.51705 127.54240 535.26413 44.21102 110 0 1 + 44.59123 128.91580 543.26180 44.88226 110 0 1 + 45.66205 130.28920 551.26866 45.55350 110 8 1 + 46.73102 131.66260 559.28359 46.22474 110 8 1 + 47.63258 133.03600 565.29934 46.72887 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -18198,9 +18334,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 21.489 'Wadzand' - -10.00 36.870 'Hydrobiaklei' - -12.00 19.288 'Basisveen' - -12.50 116.005 'Eerste zandlaag' + -10.00 36.875 'Hydrobiaklei' + -12.00 19.283 'Basisveen' + -12.50 115.279 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -18222,7 +18358,7 @@ Layer name -7.00 -6.45 'Wadzand' -10.00 -7.84 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -44.53 'Eerste zandlaag' + -12.50 -44.25 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -18444,7 +18580,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 115.55025 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 115.53966 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -18469,20 +18605,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.84 : Percentage mobilized resistance left - 13.24 : Percentage mobilized resistance right - 109.48 : Effective left - 202.65 : Effective right + 11.80 : Percentage mobilized resistance left + 13.22 : Percentage mobilized resistance right + 109.18 : Effective left + 202.35 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 925.02 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -11008.78 : Max moment left --16790.25 : Max moment right --1277.95 : Max mobilized moment left --1716.48 : Max mobilized moment right - 38.42 : Vertical force left - 52.65 : Vertical force right +-16790.18 : Max moment right +-1274.78 : Max mobilized moment left +-1713.37 : Max mobilized moment right + 38.32 : Vertical force left + 52.61 : Vertical force right 11.6 : Max mobilized moment percentage left 10.2 : Max mobilized moment percentage right -2.43 : Level of single support @@ -18491,17 +18627,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.42 : Active force -52.65 : Passive force --38.42 : Plugged active force -52.65 : Plugged passive force +-38.32 : Active force +52.61 : Passive force +-38.32 : Plugged active force +52.61 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -14.23 : Resulting Vertical Force Unplugged -14.23 : Resulting Vertical Force Plugged +14.29 : Resulting Vertical Force Unplugged +14.29 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -18514,192 +18650,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -14.33849 - 0.00000 0.00000 -13.93880 - 0.00000 0.00000 -13.53911 - 0.00000 0.00000 -13.13941 - 0.00000 0.00000 -12.73972 - 0.00000 0.00000 -12.34003 - 0.00000 0.00000 -12.34003 - 0.00000 0.00000 -11.94034 - 0.00000 0.00000 -11.54065 - 0.00000 0.00000 -11.14095 - 0.00000 0.00000 -10.74126 - 0.00000 0.00000 -10.34157 - 0.00000 0.00000 -10.34157 - -0.00339 -0.08476 -9.80865 - -0.02712 -0.33903 -9.27574 - -0.09154 -0.76283 -8.74281 - -0.21698 -1.35613 -8.20986 - -0.42379 -2.11896 -7.67688 - -0.42379 -2.11896 -7.67688 - -0.67297 -2.88414 -7.23269 - -1.00454 -3.76704 -6.78843 - -1.43030 -4.76766 -6.34406 - -1.96200 -5.88600 -5.89953 - -2.61142 -7.12206 -5.45479 - -2.61142 -7.12206 -5.45479 - -3.39034 -8.47584 -5.00979 - -4.31051 -9.94734 -4.56445 - -5.38373 -11.53656 -4.11863 - -6.62175 -13.24350 -3.67223 - -8.03635 -15.06816 -3.22514 - -8.03635 177.77184 -3.22514 - 7.18113 176.10848 -2.84020 - 22.25181 174.35805 -2.45582 - 37.16822 172.52056 -2.07316 - 51.92285 170.59601 -1.69338 - 66.50823 168.58438 -1.31762 - 66.50823 53.03413 -1.31762 - 72.39593 50.23336 -0.82742 - 77.95562 47.27960 -0.34710 - 83.16987 44.17285 0.12263 - 88.02122 40.91312 0.58106 - 92.49225 37.50039 1.02748 - 92.49302 37.48734 1.02748 - 95.40150 35.31749 1.33323 - 98.15639 33.61895 1.63257 - 100.78976 32.26639 1.92532 - 103.32716 31.21958 2.21130 - 105.79202 30.44011 2.49034 - 105.79176 30.43806 2.49034 - 106.39913 30.30175 2.55900 - 107.00394 30.18198 2.62721 - 107.60653 30.08097 2.69497 - 108.20730 29.99870 2.76227 - 108.80659 29.93286 2.82913 - 108.80624 29.93676 2.82913 - 111.67296 27.40475 3.15647 - 114.28857 24.91435 3.47209 - 116.65689 22.45556 3.77573 - 118.78013 20.01010 4.06715 - 120.65909 17.57027 4.34610 - 120.65923 17.57134 4.34610 - 122.29458 15.13697 4.61235 - 123.68686 12.70963 4.86576 - 124.83675 10.28932 5.10621 - 125.74496 7.87621 5.33358 - 126.41223 5.47031 5.54774 - 126.41223 5.47049 5.54774 - 126.83933 3.07254 5.74860 - 127.02695 0.68110 5.93614 - 126.97578 -1.70334 6.11037 - 126.68651 -4.08097 6.27130 - 126.15980 -6.45221 6.41892 - 126.15978 -6.45188 6.41892 - 125.02480 -9.76031 6.60328 - 123.42742 -13.05749 6.76190 - 121.36921 -16.34378 6.89521 - 118.85163 -19.62002 7.00364 - 115.87600 -22.88770 7.08760 - 115.87595 -22.88677 7.08760 - 112.84499 -23.72364 7.14414 - 109.71282 -24.44473 7.18065 - 106.49420 -25.05412 7.19772 - 103.20346 -25.55474 7.19590 - 99.85612 -25.91346 7.17578 - 99.85620 -25.91300 7.17578 - 96.38727 -27.66137 7.13790 - 92.64604 -29.82992 7.08292 - 88.64866 -31.60224 7.01154 - 84.44663 -32.97832 6.92447 - 80.09147 -33.95815 6.82241 - 80.09146 -33.95816 6.82241 - 74.94752 -34.85713 6.68747 - 69.66918 -35.75611 6.53495 - 64.25645 -36.65508 6.36611 - 58.70931 -37.55405 6.18222 - 53.02778 -38.45303 5.98455 - 53.02778 -38.45303 5.98455 - 47.21186 -39.35200 5.77441 - 41.26154 -40.25097 5.55318 - 35.17682 -41.14995 5.32230 - 28.95770 -42.04892 5.08319 - 22.60419 -42.94789 4.83729 - 22.60342 -42.94408 4.83729 - 16.11608 -43.84305 4.58607 - 9.49435 -44.74202 4.33109 - 2.80255 -44.35009 4.07387 - -3.67298 -42.08489 3.81597 - -9.74737 -39.14805 3.55891 - -9.74618 -39.13860 3.55891 - -15.36011 -35.91463 3.30423 - -20.47073 -32.41122 3.05317 - -25.04669 -28.81996 2.80679 - -29.09342 -25.33941 2.56618 - -32.63050 -22.00590 2.33241 - -32.63040 -22.00571 2.33241 - -32.67437 -21.96177 2.32934 - -32.71825 -21.91786 2.32626 - -32.76204 -21.87397 2.32319 - -32.80574 -21.83010 2.32012 - -32.84936 -21.78625 2.31705 - -32.84936 -21.78627 2.31705 - -33.66372 -21.07566 2.25897 - -34.45117 -20.36988 2.20140 - -35.21188 -19.66802 2.14435 - -35.94599 -18.96999 2.08784 - -36.65365 -18.27650 2.03187 - -36.65499 -18.26468 2.03187 - -38.71558 -16.08706 1.85885 - -40.51752 -13.95043 1.69169 - -42.06486 -11.84319 1.53062 - -43.36092 -9.76178 1.37587 - -44.40890 -7.71063 1.22768 - -44.40849 -7.70485 1.22768 - -44.84000 -6.68039 1.15611 - -45.21026 -5.66205 1.08623 - -45.51952 -4.64730 1.01806 - -45.76799 -3.63566 0.95161 - -45.95589 -2.62866 0.88688 - -45.95580 -2.63046 0.88688 - -46.11985 -1.07429 0.79204 - -46.16026 0.18713 0.70121 - -46.08561 1.45462 0.61439 - -45.89526 2.73061 0.53156 - -45.58845 4.01279 0.45272 - -45.58865 4.01636 0.45272 - -45.10530 6.28604 0.37786 - -44.47353 7.60180 0.30692 - -43.72122 8.93550 0.23984 - -42.84665 10.28938 0.17655 - -41.84802 11.66095 0.11698 - -41.84802 11.65999 0.11698 - -40.60368 13.22192 0.05573 - -39.20458 14.75548 -0.00125 - -37.65346 16.26267 -0.05413 - -35.95286 17.74542 -0.10308 - -34.10513 19.20559 -0.14825 - -34.10819 19.22816 -0.14825 - -31.48613 18.23362 -0.20552 - -29.00107 17.27550 -0.25631 - -26.64639 16.37313 -0.30111 - -24.41347 15.53780 -0.34040 - -22.29253 14.77259 -0.37468 - -22.29117 14.77234 -0.37468 - -20.27071 14.10384 -0.40439 - -18.33817 13.51952 -0.42993 - -16.48153 13.01483 -0.45169 - -14.69420 12.50603 -0.47004 - -12.98301 11.92933 -0.48537 - -12.98314 11.92479 -0.48537 - -11.35740 11.29164 -0.49804 - -9.82365 10.61207 -0.50839 - -8.38777 9.89490 -0.51669 - -7.05448 9.14777 -0.52325 - -5.82749 8.37712 -0.52836 - -5.82759 8.37504 -0.52836 - -4.72376 7.44000 -0.53230 - -3.73822 6.63719 -0.53526 - -2.86583 5.82401 -0.53744 - -2.10785 5.00329 -0.53901 - -1.46516 4.17713 -0.54014 - -1.46521 4.17656 -0.54014 - -0.93856 3.34638 -0.54100 - -0.52837 2.51311 -0.54167 - -0.23501 1.67740 -0.54221 - -0.05879 0.83965 -0.54268 - 0.00001 0.00003 -0.54314 + 0.00000 0.00000 -14.35097 + 0.00000 0.00000 -13.95089 + 0.00000 0.00000 -13.55081 + 0.00000 0.00000 -13.15073 + 0.00000 0.00000 -12.75066 + 0.00000 0.00000 -12.35058 + 0.00000 0.00000 -12.35058 + 0.00000 0.00000 -11.95050 + 0.00000 0.00000 -11.55042 + 0.00000 0.00000 -11.15034 + 0.00000 0.00000 -10.75026 + 0.00000 0.00000 -10.35018 + 0.00000 0.00000 -10.35018 + -0.00339 -0.08476 -9.81675 + -0.02712 -0.33903 -9.28331 + -0.09154 -0.76283 -8.74987 + -0.21698 -1.35613 -8.21641 + -0.42379 -2.11896 -7.68291 + -0.42379 -2.11896 -7.68291 + -0.67297 -2.88414 -7.23829 + -1.00454 -3.76704 -6.79360 + -1.43030 -4.76766 -6.34880 + -1.96200 -5.88600 -5.90384 + -2.61142 -7.12206 -5.45867 + -2.61142 -7.12206 -5.45867 + -3.39034 -8.47584 -5.01324 + -4.31051 -9.94734 -4.56746 + -5.38373 -11.53656 -4.12122 + -6.62175 -13.24350 -3.67439 + -8.03635 -15.06816 -3.22687 + -8.03635 177.77184 -3.22687 + 7.18113 176.10848 -2.84156 + 22.25181 174.35805 -2.45681 + 37.16822 172.52056 -2.07378 + 51.92285 170.59601 -1.69363 + 66.50823 168.58438 -1.31750 + 66.50823 53.04472 -1.31750 + 72.39714 50.24395 -0.82681 + 77.95804 47.29019 -0.34599 + 83.17349 44.18344 0.12423 + 88.02605 40.92370 0.58314 + 92.49828 37.51098 1.03005 + 92.49906 37.49791 1.03005 + 95.40838 35.32820 1.33614 + 98.16415 33.63031 1.63582 + 100.79847 32.27882 1.92891 + 103.33692 31.23320 2.21524 + 105.80291 30.45502 2.49462 + 105.80265 30.45297 2.49462 + 106.41033 30.31700 2.56336 + 107.01544 30.19757 2.63165 + 107.61835 30.09692 2.69950 + 108.21944 30.01500 2.76689 + 108.81906 29.94953 2.83383 + 108.81871 29.95343 2.83383 + 111.68713 27.42201 3.16159 + 114.30450 24.93225 3.47763 + 116.67463 22.47389 3.78170 + 118.79972 20.02863 4.07353 + 120.68054 17.58902 4.35290 + 120.68068 17.59009 4.35290 + 122.31792 15.15595 4.61956 + 123.71210 12.72886 4.87338 + 124.86393 10.30880 5.11424 + 125.77411 7.89596 5.34201 + 126.44336 5.49034 5.55658 + 126.44336 5.49052 5.55658 + 126.87244 3.09228 5.75784 + 127.06205 0.70115 5.94578 + 127.01290 -1.68297 6.12040 + 126.72569 -4.06026 6.28171 + 126.20107 -6.43116 6.42972 + 126.20104 -6.43083 6.42972 + 125.06904 -9.73875 6.61461 + 123.47472 -13.03539 6.77375 + 121.41964 -16.32113 6.90757 + 118.90527 -19.59680 7.01650 + 115.93294 -22.86388 7.10095 + 115.93289 -22.86294 7.10095 + 112.90214 -23.73257 7.15793 + 109.76896 -24.45127 7.19489 + 106.54965 -25.05820 7.21238 + 103.25855 -25.55629 7.21098 + 99.91117 -25.91241 7.19125 + 99.91125 -25.91195 7.19125 + 96.44248 -27.66003 7.15377 + 92.70142 -29.82859 7.09917 + 88.70422 -31.60090 7.02817 + 84.50236 -32.97698 6.94147 + 80.14737 -33.95682 6.83976 + 80.14737 -33.95682 6.83976 + 75.00363 -34.85580 6.70522 + 69.72549 -35.75477 6.55309 + 64.31295 -36.65374 6.38462 + 58.76602 -37.55272 6.20108 + 53.08469 -38.45169 6.00376 + 53.08469 -38.45169 6.00376 + 47.26896 -39.35066 5.79394 + 41.31884 -40.24964 5.57303 + 35.23432 -41.14861 5.34246 + 29.01541 -42.04758 5.10364 + 22.66210 -42.94656 4.85802 + 22.66132 -42.94274 4.85802 + 16.17419 -43.84172 4.60706 + 9.55265 -44.74069 4.35233 + 2.86110 -44.34780 4.09535 + -3.61383 -42.07845 3.83767 + -9.68678 -39.13520 3.58081 + -9.68559 -39.12579 3.58081 + -15.29117 -35.83567 3.32633 + -20.38950 -32.32575 3.07545 + -24.95175 -28.71914 2.82923 + -28.98160 -25.21436 2.58876 + -32.49817 -21.85650 2.35510 + -32.49807 -21.85633 2.35510 + -32.54174 -21.81207 2.35202 + -32.58532 -21.76783 2.34895 + -32.62881 -21.72361 2.34588 + -32.67222 -21.67941 2.34281 + -32.71553 -21.63524 2.33974 + -32.71553 -21.63526 2.33974 + -33.52407 -20.92051 2.28168 + -34.30555 -20.21059 2.22413 + -35.06013 -19.50458 2.16711 + -35.78795 -18.80240 2.11061 + -36.48917 -18.10475 2.05465 + -36.49050 -18.09289 2.05465 + -38.52970 -15.90215 1.88166 + -40.30866 -13.75238 1.71450 + -41.83144 -11.63202 1.55339 + -43.10138 -9.53751 1.39858 + -44.12166 -7.47331 1.25028 + -44.12115 -7.47115 1.25028 + -44.53845 -6.44019 1.17863 + -44.89410 -5.41537 1.10867 + -45.18837 -4.39418 1.04041 + -45.42146 -3.37611 0.97385 + -45.59359 -2.36273 0.90901 + -45.59351 -2.36465 0.90901 + -45.72606 -0.68468 0.81396 + -45.73042 0.58968 0.72289 + -45.61856 1.87013 0.63579 + -45.38980 3.15907 0.55264 + -45.04342 4.45419 0.47344 + -45.04343 4.45274 0.47344 + -44.57831 5.77045 0.39817 + -43.99287 7.09905 0.32678 + -43.28574 8.44548 0.25919 + -42.45519 9.81198 0.19537 + -41.49943 11.19605 0.13523 + -41.49945 11.19495 0.13523 + -40.30118 12.76549 0.07332 + -38.94730 14.30732 0.01565 + -37.44060 15.82245 -0.03796 + -35.78364 17.31279 -0.08764 + -33.97881 18.78018 -0.13357 + -33.98192 18.80313 -0.13357 + -31.41571 17.86064 -0.19192 + -28.97931 16.95302 -0.24381 + -26.66633 16.09955 -0.28972 + -24.46839 15.31147 -0.33011 + -22.37593 14.59185 -0.36548 + -22.37454 14.59168 -0.36548 + -20.37628 13.96705 -0.39626 + -18.45992 13.42487 -0.42285 + -16.61403 12.95301 -0.44563 + -14.83375 12.46662 -0.46498 + -13.12673 11.90836 -0.48128 + -13.12687 11.90377 -0.48128 + -11.50300 11.28520 -0.49490 + -9.96935 10.61650 -0.50615 + -8.53230 9.90659 -0.51533 + -7.19707 9.16322 -0.52274 + -5.96786 8.39297 -0.52867 + -5.96795 8.39085 -0.52867 + -4.84843 7.59911 -0.53340 + -3.84100 6.79031 -0.53713 + -2.94777 5.96809 -0.54006 + -2.17042 5.13536 -0.54235 + -1.51026 4.29428 -0.54420 + -1.51031 4.29369 -0.54420 + -0.96848 3.44572 -0.54577 + -0.54578 2.59183 -0.54714 + -0.24301 1.73268 -0.54837 + -0.06086 0.86869 -0.54954 + 0.00001 0.00004 -0.55069 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -19027,7 +19163,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -19039,7 +19175,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -19050,17 +19186,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -19069,7 +19205,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -19099,13 +19235,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -19206,48 +19342,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 6.59159 0.00000 7.80254 0.68000 330 84 3 - 11.38842 0.00000 15.60507 1.36000 220 73 2 - 15.36926 0.00000 23.40761 2.04000 220 66 2 - 19.32795 0.00000 31.21015 2.72000 220 62 2 - 22.50823 0.00000 37.06205 3.23000 220 61 2 - 23.45284 0.00000 39.50034 3.44250 220 59 2 - 24.24429 0.00000 40.96332 3.57000 220 59 2 - 25.22321 0.00000 42.91395 3.74000 220 59 2 - 26.20065 0.00000 44.86459 3.91000 220 58 2 - 27.17661 0.00000 46.81522 4.08000 220 58 2 - 27.96216 0.00000 48.27820 4.20750 220 58 2 - 9.13639 0.00000 20.56677 6.30726 110 44 1 - 9.48541 0.98100 20.32861 6.32894 110 47 1 - 9.82994 1.96200 20.08785 6.35785 110 49 1 - 10.01225 2.94300 19.91182 6.38676 220 50 2 - 10.05204 3.92400 19.78100 6.41566 220 51 2 - 10.10611 4.90500 19.70421 6.43734 220 51 2 - 10.09475 4.90500 19.66214 6.45179 220 51 2 - 10.15441 5.88600 19.61027 6.47347 220 52 2 - 10.21193 6.86700 19.55671 6.50238 220 52 2 - 10.27150 7.84800 19.51850 6.53129 220 53 2 - 10.33202 8.82900 19.49272 6.56019 220 53 2 - 10.39168 9.81000 19.47992 6.58187 220 53 2 - 10.40343 9.81000 19.47440 6.63230 220 53 2 - 10.45275 10.79100 19.47010 6.61800 220 54 2 - 10.51182 11.77200 19.47023 6.64691 220 54 2 - 10.56949 12.75300 19.47646 6.67582 220 54 2 - 10.62544 13.73400 19.48795 6.70472 220 55 2 - 10.67580 14.71500 19.49947 6.72640 220 55 2 - 10.68455 14.71500 19.51051 6.74375 220 55 2 - 10.75135 16.08840 19.53319 6.77410 220 55 2 - 10.81858 17.46180 19.56875 6.81457 220 55 2 - 10.88092 18.83520 19.60984 6.85503 220 55 2 - 10.93819 20.20860 19.65566 6.89550 220 56 2 - 10.98280 21.58200 19.69261 6.92585 220 56 2 - 24.66687 21.58200 40.65119 7.89320 220 61 2 - 22.88596 25.39730 37.49247 5.34869 220 61 2 - 21.07131 29.21260 33.28909 4.15339 220 63 2 - 19.23800 33.02790 29.09277 2.95808 220 66 2 - 17.38587 36.84320 24.90135 1.76278 220 70 2 - 15.97711 40.65850 21.76001 0.86630 220 73 2 - 10.46702 40.65850 12.41397 0.26865 330 84 3 + 6.59450 0.00000 7.80254 0.68000 330 85 3 + 11.39907 0.00000 15.60507 1.36000 220 73 2 + 15.38102 0.00000 23.40761 2.04000 220 66 2 + 19.34083 0.00000 31.21015 2.72000 220 62 2 + 22.52223 0.00000 37.06205 3.23000 220 61 2 + 23.46683 0.00000 39.50034 3.44250 220 59 2 + 24.25856 0.00000 40.96332 3.57000 220 59 2 + 25.23775 0.00000 42.91395 3.74000 220 59 2 + 26.21547 0.00000 44.86459 3.91000 220 58 2 + 27.19172 0.00000 46.81522 4.08000 220 58 2 + 27.97755 0.00000 48.27820 4.20750 220 58 2 + 9.14109 0.00000 20.56677 6.30726 110 44 1 + 9.49054 0.98100 20.32861 6.32894 110 47 1 + 9.83548 1.96200 20.08785 6.35785 110 49 1 + 10.01388 2.94300 19.91182 6.38676 220 50 2 + 10.05378 3.92400 19.78100 6.41566 220 51 2 + 10.10796 4.90500 19.70421 6.43734 220 51 2 + 10.09661 4.90500 19.66214 6.45179 220 51 2 + 10.15638 5.88600 19.61027 6.47347 220 52 2 + 10.21401 6.86700 19.55671 6.50238 220 52 2 + 10.27369 7.84800 19.51850 6.53129 220 53 2 + 10.33432 8.82900 19.49272 6.56019 220 53 2 + 10.39409 9.81000 19.47992 6.58187 220 53 2 + 10.39603 9.81000 19.47440 6.59633 220 53 2 + 10.45527 10.79100 19.47010 6.61800 220 54 2 + 10.51445 11.77200 19.47023 6.64691 220 54 2 + 10.57223 12.75300 19.47646 6.67582 220 54 2 + 10.62828 13.73400 19.48795 6.70472 220 55 2 + 10.67875 14.71500 19.49947 6.72640 220 55 2 + 10.68749 14.71500 19.51051 6.74375 220 55 2 + 10.75444 16.08840 19.53319 6.77410 220 55 2 + 10.82181 17.46180 19.56875 6.81457 220 55 2 + 10.88429 18.83520 19.60984 6.85503 220 56 2 + 10.94170 20.20860 19.65566 6.89550 220 56 2 + 10.98644 21.58200 19.69261 6.92585 220 56 2 + 24.23197 21.58200 40.65119 6.24517 220 60 2 + 22.90102 25.39730 37.49247 5.34869 220 61 2 + 21.08683 29.21260 33.28909 4.15339 220 63 2 + 19.25399 33.02790 29.09277 2.95808 220 66 2 + 17.40231 36.84320 24.90135 1.76278 220 70 2 + 15.99400 40.65850 21.76001 0.86630 220 74 2 + 10.47066 40.65850 12.41397 0.26865 330 84 3 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -19261,94 +19397,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 14.39133 78.80074 17.96911 4.49986 330 80 3 - 20.88375 80.26733 36.36631 5.18955 220 57 2 - 21.87897 81.73392 39.87198 5.70681 220 55 2 - 22.15416 81.73392 42.19987 3.61198 220 52 2 - 23.80958 83.20052 45.68064 6.56892 220 52 2 - 25.26933 84.66711 50.30746 7.25860 220 50 2 - 24.78905 86.13371 54.92251 7.94829 110 45 1 - 24.03508 87.60031 59.53073 8.63797 110 40 1 - 23.14971 89.06690 62.98476 9.15524 110 37 1 - 23.32444 89.06690 64.15130 9.32997 110 36 1 - 23.31291 89.08652 64.19752 9.33689 110 36 1 - 23.30368 89.10614 64.25913 9.34611 110 36 1 - 23.29447 89.12576 64.32073 9.35534 110 36 1 - 23.28526 89.14538 64.38231 9.36457 110 36 1 - 23.27376 89.16500 64.42851 9.37149 110 36 1 - 20.65703 89.16500 58.82727 11.38885 110 35 1 - 20.53214 89.53778 59.19268 11.49627 110 35 1 - 20.44510 89.91056 59.68017 11.63950 110 34 1 - 20.36014 90.28334 60.16799 11.78273 110 34 1 - 20.27732 90.65612 60.65612 11.92596 110 33 1 - 20.16087 91.02890 61.02242 12.03338 110 33 1 - 20.30976 91.02890 61.53041 12.18226 110 33 1 - 19.95691 92.20610 62.68904 12.52149 110 32 1 - 19.74057 93.38330 64.23606 12.97380 110 31 1 - 19.54858 94.56050 65.78549 13.42610 110 30 1 - 19.38189 95.73770 67.33709 13.87840 110 29 1 - 19.12836 96.91490 68.50203 14.21763 110 28 1 - 19.29797 96.91490 69.08491 14.38724 110 28 1 - 19.18129 97.50350 69.66807 14.55686 110 28 1 - 19.12793 98.09210 70.44596 14.78301 110 27 1 - 19.08140 98.68070 71.22427 15.00916 110 27 1 - 19.04174 99.26930 72.00296 15.23531 110 26 1 - 18.95246 99.85790 72.58721 15.40493 110 26 1 - 17.03449 99.85790 73.07750 13.48696 110 23 1 - 18.97264 100.75061 73.96428 15.80446 110 26 1 - 18.95232 101.64332 75.14728 16.14746 110 25 1 - 18.94801 102.53603 76.33100 16.49046 110 25 1 - 18.95970 103.42874 77.51539 16.83345 110 24 1 - 18.90160 104.32145 78.40407 17.09070 110 24 1 - 36.74444 104.32145 78.99672 34.93354 110 47 1 - 19.03090 105.21416 79.88599 17.51945 110 24 1 - 19.09014 106.10687 81.07214 17.86244 110 24 1 - 19.16480 106.99958 82.25880 18.20544 110 23 1 - 19.25463 107.89229 83.44594 18.54844 110 23 1 - 19.27361 108.78500 84.33659 18.80568 110 23 1 - 20.84787 108.78500 56.86688 20.61391 110 37 1 - 22.49810 106.76600 61.08371 22.38663 110 37 1 - 24.74776 104.74700 66.69564 24.75026 110 0 1 - 27.00562 102.72800 72.29483 27.11388 110 0 1 - 29.27135 100.70900 77.88124 29.47751 110 0 1 - 30.95373 98.69000 82.06310 31.25023 110 0 1 - 18.58336 98.69000 272.58042 20.36232 110 0 1 - 18.39909 100.06340 271.86044 20.86529 110 0 1 - 18.46020 101.43680 274.54312 21.53590 110 0 1 - 18.59322 102.81020 279.33150 22.20652 110 0 1 - 18.79230 104.18360 285.19980 22.87714 110 0 1 - 18.88397 105.55700 290.01763 23.38010 110 0 1 - 19.21928 105.55700 293.38484 23.71541 110 0 1 - 19.36569 106.93040 298.60646 24.21837 110 0 1 - 19.72980 108.30380 305.78478 24.88899 110 0 1 - 20.13935 109.67720 313.15603 25.55961 110 0 1 - 20.58977 111.05060 320.66827 26.23022 110 0 1 - 20.90880 112.42400 326.37074 26.73319 110 0 1 - 21.24411 112.42400 330.20204 27.06849 110 0 1 - 21.59492 113.79740 335.98580 27.57146 110 0 1 - 22.14141 115.17080 343.74884 28.24207 110 0 1 - 22.71238 116.54420 351.56245 28.91269 110 0 1 - 23.30429 117.91760 359.41683 29.58331 110 0 1 - 23.74595 119.29100 365.32890 30.08627 110 0 1 - 24.08126 119.29100 369.28008 30.42158 110 0 1 - 24.53697 120.66440 375.21958 30.92454 110 0 1 - 25.17199 122.03780 383.15752 31.59516 110 0 1 - 25.81649 123.41120 391.11465 32.26578 110 0 1 - 26.46832 124.78460 399.08801 32.93639 110 0 1 - 26.95769 126.15800 405.07683 33.43936 110 0 1 - 27.29299 126.15800 409.07356 33.77467 110 0 1 - 27.78562 127.53140 415.07425 34.27763 110 0 1 - 28.44819 128.90480 423.08354 34.94825 110 0 1 - 29.11233 130.27820 431.10170 35.61886 110 0 1 - 29.77731 131.65160 439.12760 36.28948 110 0 1 - 30.27477 133.02500 445.15132 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 14.40207 78.80074 17.96911 4.49986 330 80 3 + 20.91926 80.26733 36.36631 5.18955 220 58 2 + 21.91482 81.73392 39.87198 5.70681 220 55 2 + 22.85537 81.73392 42.19987 6.05165 220 54 2 + 23.84575 83.20052 45.68064 6.56892 220 52 2 + 25.30579 84.66711 50.30746 7.25860 220 50 2 + 24.92368 86.13371 54.92251 7.94829 110 45 1 + 24.17053 87.60031 59.53073 8.63797 110 41 1 + 23.28582 89.06690 62.98476 9.15524 110 37 1 + 23.46055 89.06690 64.15130 9.32997 110 37 1 + 23.44902 89.08652 64.19752 9.33689 110 37 1 + 23.43980 89.10614 64.25913 9.34611 110 36 1 + 23.43060 89.12576 64.32073 9.35534 110 36 1 + 23.42140 89.14538 64.38231 9.36457 110 36 1 + 23.40990 89.16500 64.42851 9.37149 110 36 1 + 20.74779 89.16500 58.82727 11.38885 110 35 1 + 20.62299 89.53778 59.19268 11.49627 110 35 1 + 20.53603 89.91056 59.68017 11.63950 110 34 1 + 20.45115 90.28334 60.16799 11.78273 110 34 1 + 20.36839 90.65612 60.65612 11.92596 110 34 1 + 20.25200 91.02890 61.02242 12.03338 110 33 1 + 20.40088 91.02890 61.53041 12.18226 110 33 1 + 20.04814 92.20610 62.68904 12.52149 110 32 1 + 19.83179 93.38330 64.23606 12.97380 110 31 1 + 19.63967 94.56050 65.78549 13.42610 110 30 1 + 19.47270 95.73770 67.33709 13.87840 110 29 1 + 19.21874 96.91490 68.50203 14.21763 110 28 1 + 19.38835 96.91490 69.08491 14.38724 110 28 1 + 19.27140 97.50350 69.66807 14.55686 110 28 1 + 19.21771 98.09210 70.44596 14.78301 110 27 1 + 19.17080 98.68070 71.22427 15.00916 110 27 1 + 19.13072 99.26930 72.00296 15.23531 110 27 1 + 19.04096 99.85790 72.58721 15.40493 110 26 1 + 19.18325 99.85790 73.07750 15.54721 110 26 1 + 19.06031 100.75061 73.96428 15.80446 110 26 1 + 19.03903 101.64332 75.14728 16.14746 110 25 1 + 19.03361 102.53603 76.33100 16.49046 110 25 1 + 19.04402 103.42874 77.51539 16.83345 110 25 1 + 18.98447 104.32145 78.40407 17.09070 110 24 1 + 19.15597 104.32145 78.99672 17.26220 110 24 1 + 19.11213 105.21416 79.88599 17.51945 110 24 1 + 19.16954 106.10687 81.07214 17.86244 110 24 1 + 19.24222 106.99958 82.25880 18.20544 110 23 1 + 19.32991 107.89229 83.44594 18.54844 110 23 1 + 19.34661 108.78500 84.33659 18.80568 110 23 1 + 20.88437 108.78500 56.86688 20.61391 110 37 1 + 22.53328 106.76600 61.08371 22.38663 110 37 1 + 24.78155 104.74700 66.69564 24.75026 110 37 1 + 27.03797 102.72800 72.29483 27.11388 110 0 1 + 29.30222 100.70900 77.88124 29.47751 110 0 1 + 30.98309 98.69000 82.06310 31.25023 110 0 1 + 18.75948 98.69000 272.58042 20.36232 110 0 1 + 18.56221 100.06340 271.86044 20.86529 110 0 1 + 18.61014 101.43680 274.54312 21.53590 110 0 1 + 18.72991 102.81020 279.33150 22.20652 110 0 1 + 18.91578 104.18360 285.19980 22.87714 110 0 1 + 18.99439 105.55700 290.01763 23.38010 110 0 1 + 19.32969 105.55700 293.38484 23.71541 110 0 1 + 19.46325 106.93040 298.60646 24.21837 110 0 1 + 19.81477 108.30380 305.78478 24.88899 110 0 1 + 20.21203 109.67720 313.15603 25.55961 110 0 1 + 20.65046 111.05060 320.66827 26.23022 110 0 1 + 20.95785 112.42400 326.37074 26.73319 110 0 1 + 21.29316 112.42400 330.20204 27.06849 110 0 1 + 21.63271 113.79740 335.98580 27.57146 110 0 1 + 22.16829 115.17080 343.74884 28.24207 110 0 1 + 22.72870 116.54420 351.56245 28.91269 110 0 1 + 23.31041 117.91760 359.41683 29.58331 110 0 1 + 23.74222 119.29100 365.32890 30.08627 110 0 1 + 24.07753 119.29100 369.28008 30.42158 110 0 1 + 24.52374 120.66440 375.21958 30.92454 110 0 1 + 25.14955 122.03780 383.15752 31.59516 110 0 1 + 25.78511 123.41120 391.11465 32.26578 110 0 1 + 26.42821 124.78460 399.08801 32.93639 110 0 1 + 26.90899 126.15800 405.07683 33.43936 110 0 1 + 27.24430 126.15800 409.07356 33.77467 110 0 1 + 27.72844 127.53140 415.07425 34.27763 110 0 1 + 28.38261 128.90480 423.08354 34.94825 110 0 1 + 29.03839 130.27820 431.10170 35.61886 110 0 1 + 29.69505 131.65160 439.12760 36.28948 110 0 1 + 30.18418 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19363,13 +19499,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.686 'Ophooglaag zand' - -3.50 22.882 'Hollandveen' - -5.70 13.798 'Oude Zeeklei' - -7.00 25.165 'Wadzand' - -10.00 39.462 'Hydrobiaklei' - -12.00 12.942 'Basisveen' - -12.50 80.715 'Eerste zandlaag' + -3.00 7.691 'Ophooglaag zand' + -3.50 22.888 'Hollandveen' + -5.70 13.779 'Oude Zeeklei' + -7.00 25.290 'Wadzand' + -10.00 38.925 'Hydrobiaklei' + -12.00 12.959 'Basisveen' + -12.50 80.819 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19389,10 +19525,10 @@ Layer name -3.00 2.80 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 2.93 'Oude Zeeklei' - -7.00 7.55 'Wadzand' - -10.00 8.39 'Hydrobiaklei' + -7.00 7.59 'Wadzand' + -10.00 8.27 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.98 'Eerste zandlaag' + -12.50 31.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -19621,7 +19757,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -19633,7 +19769,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -19800,53 +19936,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.43249 100.76161 31.86408 3.83947 110 23 1 - 7.36759 101.65432 33.06586 4.18246 110 22 1 - 7.29657 102.54703 34.26739 4.52546 110 21 1 - 7.21951 103.43974 35.46867 4.86846 110 20 1 - 7.13650 104.33245 36.36949 5.12571 110 20 1 - 7.13650 104.33245 36.96996 5.29720 110 19 1 - 7.04763 105.22516 37.87056 5.55445 110 19 1 - 6.95310 106.11787 39.07118 5.89745 110 18 1 - 6.85315 107.01058 40.27161 6.24045 110 17 1 - 6.74801 107.90329 41.47185 6.58344 110 16 1 - 6.63793 108.79600 42.37192 6.84069 110 0 1 - 7.69826 108.79600 25.59840 7.93223 110 0 1 - 9.59348 106.77700 29.70475 9.70495 110 0 1 - 12.07108 104.75800 35.16081 12.06858 110 34 1 - 14.54047 102.73900 40.59674 14.43220 110 36 1 - 17.00198 100.72000 46.01595 16.79583 110 37 1 - 18.86504 98.70100 50.07174 18.56855 110 38 1 - 24.56129 98.70100 177.20934 12.31919 110 14 1 - 24.23886 100.07440 165.98087 12.82216 110 15 1 - 24.00462 101.44780 168.35015 13.49277 110 14 1 - 23.76932 102.82120 174.33058 14.16339 110 14 1 - 23.53861 104.19460 181.36358 14.83401 110 13 1 - 23.22532 105.56800 186.93725 15.33697 110 12 1 - 23.41038 105.56800 190.74477 15.70861 110 12 1 - 23.11093 106.94140 196.54307 16.17524 110 12 1 - 22.91868 108.31480 204.37210 16.84586 110 11 1 - 22.93673 109.68820 212.27871 17.51648 110 11 1 - 23.82755 111.06160 220.23553 18.18709 110 11 1 - 24.51445 112.43500 226.22528 18.69006 110 11 1 - 24.84976 112.43500 230.22741 19.02537 110 11 1 - 25.50486 113.80840 236.24102 19.52833 110 11 1 - 26.29961 115.18180 244.27295 20.19895 110 11 1 - 27.06987 116.55520 252.31767 20.86956 110 11 1 - 27.81920 117.92860 260.37206 21.54018 110 11 1 - 28.38347 119.30200 266.41766 22.04314 110 11 1 - 30.45870 119.30200 270.45017 24.11838 110 11 1 - 29.26898 120.67540 276.50161 22.88141 110 11 1 - 29.97521 122.04880 284.57394 23.55203 110 11 1 - 30.67194 123.42220 292.65001 24.22265 110 10 1 - 31.36134 124.79560 300.72910 24.89327 110 10 1 - 31.87790 126.16900 306.79002 25.39623 110 10 1 - 32.21321 126.16900 310.83135 25.73154 110 10 1 - 32.72651 127.54240 316.89433 26.23450 110 10 1 - 33.40518 128.91580 324.97970 26.90512 110 10 1 - 34.08227 130.28920 333.06652 27.57574 110 10 1 - 34.75852 131.66260 341.15457 28.24635 110 10 1 - 35.26699 133.03600 347.22126 28.74932 110 10 1 + 7.40179 100.76161 31.86408 3.83947 110 23 1 + 7.33568 101.65432 33.06586 4.18246 110 22 1 + 7.26346 102.54703 34.26739 4.52546 110 21 1 + 7.18523 103.43974 35.46867 4.86846 110 20 1 + 7.10106 104.33245 36.36949 5.12571 110 20 1 + 7.10106 104.33245 36.96996 5.29720 110 19 1 + 7.01106 105.22516 37.87056 5.55445 110 19 1 + 6.91543 106.11787 39.07118 5.89745 110 18 1 + 6.81440 107.01058 40.27161 6.24045 110 17 1 + 6.70821 107.90329 41.47185 6.58344 110 16 1 + 6.59710 108.79600 42.37192 6.84069 110 0 1 + 7.66177 108.79600 25.59840 7.93223 110 0 1 + 9.55830 106.77700 29.70475 9.70495 110 0 1 + 12.03728 104.75800 35.16081 12.06858 110 0 1 + 14.50811 102.73900 40.59674 14.43220 110 36 1 + 16.97111 100.72000 46.01595 16.79583 110 37 1 + 18.83569 98.70100 50.07174 18.56855 110 38 1 + 24.42315 98.70100 177.20934 12.31919 110 14 1 + 24.09672 100.07440 165.98087 12.82216 110 15 1 + 23.85866 101.44780 168.35015 13.49277 110 14 1 + 23.61976 102.82120 174.33058 14.16339 110 14 1 + 23.38573 104.19460 181.36358 14.83401 110 13 1 + 23.06943 105.56800 186.93725 15.33697 110 12 1 + 23.25449 105.56800 190.74477 15.67228 110 12 1 + 22.95243 106.94140 196.54307 16.17524 110 12 1 + 22.75811 108.31480 204.37210 16.84586 110 11 1 + 22.86406 109.68820 212.27871 17.51648 110 11 1 + 23.76686 111.06160 220.23553 18.18709 110 11 1 + 24.46539 112.43500 226.22528 18.69006 110 11 1 + 24.80070 112.43500 230.22741 19.02537 110 11 1 + 25.46708 113.80840 236.24102 19.52833 110 11 1 + 26.27274 115.18180 244.27295 20.19895 110 11 1 + 27.05356 116.55520 252.31767 20.86956 110 11 1 + 27.81308 117.92860 260.37206 21.54018 110 11 1 + 28.38720 119.30200 266.41766 22.04314 110 11 1 + 28.72251 119.30200 270.45017 22.37845 110 11 1 + 29.28222 120.67540 276.50161 22.88141 110 11 1 + 29.99764 122.04880 284.57394 23.55203 110 11 1 + 30.70332 123.42220 292.65001 24.22265 110 10 1 + 31.40145 124.79560 300.72910 24.89327 110 10 1 + 31.92660 126.16900 306.79002 25.39623 110 10 1 + 32.26191 126.16900 310.83135 25.73154 110 10 1 + 32.78369 127.54240 316.89433 26.23450 110 10 1 + 33.47076 128.91580 324.97970 26.90512 110 10 1 + 34.15621 130.28920 333.06652 27.57574 110 10 1 + 34.84078 131.66260 341.15457 28.24635 110 10 1 + 35.35758 133.03600 347.22126 28.74932 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19864,9 +20000,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.133 'Hydrobiaklei' - -12.00 6.649 'Basisveen' - -12.50 96.694 'Eerste zandlaag' + -10.00 6.103 'Hydrobiaklei' + -12.00 6.632 'Basisveen' + -12.50 96.443 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19888,7 +20024,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.30 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -37.12 'Eerste zandlaag' + -12.50 -37.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -20110,7 +20246,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 288.81177 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 288.80840 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -20135,20 +20271,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.50 : Percentage mobilized resistance left - 9.41 : Percentage mobilized resistance right - 87.88 : Effective left - 87.01 : Effective right + 9.49 : Percentage mobilized resistance left + 9.39 : Percentage mobilized resistance right + 87.76 : Effective left + 86.90 : Effective right 1112.88 : Water pressure left 1112.88 : Water pressure right 925.02 : Max effective resistance left 925.02 : Max effective resistance right -11008.78 : Max moment left -11008.78 : Max moment right --1017.70 : Max mobilized moment left --1017.24 : Max mobilized moment right - 29.98 : Vertical force left - 29.96 : Vertical force right +-1016.21 : Max mobilized moment left +-1015.81 : Max mobilized moment right + 29.93 : Vertical force left + 29.92 : Vertical force right 9.2 : Max mobilized moment percentage left 9.2 : Max mobilized moment percentage right -2.43 : Level of single support @@ -20157,17 +20293,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.96 : Active force -29.98 : Passive force --29.96 : Plugged active force -29.98 : Plugged passive force +-29.92 : Active force +29.93 : Passive force +-29.92 : Plugged active force +29.93 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -0.02 : Resulting Vertical Force Unplugged -0.02 : Resulting Vertical Force Plugged +0.01 : Resulting Vertical Force Unplugged +0.01 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -20180,192 +20316,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.80041 - 0.00000 0.00000 -4.75412 - 0.00000 0.00000 -4.70782 - 0.00000 0.00000 -4.66153 - 0.00000 0.00000 -4.61524 - 0.00000 0.00000 -4.56895 - 0.00000 0.00000 -4.56895 - 0.00000 0.00000 -4.52265 - 0.00000 0.00000 -4.47636 - 0.00000 0.00000 -4.43007 - 0.00000 0.00000 -4.38378 - 0.00000 0.00000 -4.33748 - 0.00000 0.00000 -4.33748 - 0.00000 0.00000 -4.27576 - 0.00000 0.00000 -4.21404 - 0.00000 0.00000 -4.15231 - 0.00000 0.00000 -4.09059 - 0.00000 0.00000 -4.02887 - 0.00000 0.00000 -4.02887 - 0.00000 0.00000 -3.97743 - 0.00000 0.00000 -3.92599 - 0.00000 0.00000 -3.87456 - 0.00000 0.00000 -3.82312 - 0.00000 0.00000 -3.77169 - 0.00000 0.00000 -3.77169 - 0.00000 0.00000 -3.72025 - 0.00000 0.00000 -3.66881 - 0.00000 0.00000 -3.61738 - 0.00000 0.00000 -3.56594 - 0.00000 0.00000 -3.51450 - 0.00000 0.00000 -3.51450 - 0.00000 0.00000 -3.47027 - 0.00000 0.00000 -3.42603 - 0.00000 0.00000 -3.38180 - 0.00000 0.00000 -3.33756 - 0.00000 0.00000 -3.29333 - 0.00000 0.98823 -3.29333 - 0.11266 0.98823 -3.23469 - 0.22532 0.98823 -3.17608 - 0.33797 0.98823 -3.11749 - 0.45063 0.98823 -3.05894 - 0.56329 0.98823 -3.00046 - 0.56407 0.97518 -3.00046 - 0.64208 0.97518 -2.95947 - 0.72009 0.97518 -2.91852 - 0.79811 0.97518 -2.87761 - 0.87612 0.97518 -2.83677 - 0.95414 0.97518 -2.79598 - 0.95387 0.97313 -2.79598 - 0.97334 0.97313 -2.78579 - 0.99280 0.97313 -2.77560 - 1.01226 0.97313 -2.76542 - 1.03172 0.97313 -2.75525 - 1.05119 0.97313 -2.74508 - 1.05083 0.97703 -2.74508 - 1.14854 0.97703 -2.69429 - 1.24624 0.97703 -2.64363 - 1.34394 0.97703 -2.59309 - 1.44165 0.97703 -2.54270 - 1.53935 0.97703 -2.49245 - 1.53948 0.97811 -2.49245 - 1.63729 0.97811 -2.44237 - 1.73510 0.97811 -2.39246 - 1.83292 0.97811 -2.34274 - 1.93073 0.97811 -2.29320 - 2.02854 0.97811 -2.24387 - 2.02854 0.97829 -2.24387 - 2.12637 0.97829 -2.19475 - 2.22419 0.97829 -2.14585 - 2.32202 0.97829 -2.09719 - 2.41985 0.97829 -2.04877 - 2.51768 0.97829 -2.00061 - 2.51766 0.97862 -2.00061 - 2.65467 0.97862 -1.93362 - 2.79167 0.97862 -1.86718 - 2.92868 0.97862 -1.80132 - 3.06569 0.97862 -1.73606 - 3.20270 0.97862 -1.67143 - 3.20265 0.97956 -1.67143 - 3.32999 0.97956 -1.61201 - 3.45733 0.97956 -1.55317 - 3.58468 0.97956 -1.49495 - 3.71202 0.97956 -1.43737 - 3.83936 0.97956 -1.38044 - 3.83944 0.98002 -1.38044 - 3.96685 0.98002 -1.32420 - 4.09425 0.98002 -1.26866 - 4.22165 0.98002 -1.21384 - 4.34905 0.98002 -1.15978 - 4.47646 0.98002 -1.10649 - 4.47646 0.98001 -1.10649 - 4.62297 0.98001 -1.04618 - 4.76948 0.98001 -0.98696 - 4.91599 0.98001 -0.92886 - 5.06250 0.98001 -0.87191 - 5.20901 0.98001 -0.81615 - 5.20901 0.98001 -0.81615 - 5.35553 0.98001 -0.76162 - 5.50204 0.98001 -0.70834 - 5.64855 0.98001 -0.65635 - 5.79506 0.98001 -0.60568 - 5.94157 0.98001 -0.55638 - 5.94080 0.98383 -0.55638 - 6.08788 0.98383 -0.50847 - 6.23497 0.98383 -0.46199 - 6.38205 0.98383 -0.41697 - 6.52913 0.98383 -0.37344 - 6.67621 0.98383 -0.33146 - 6.67739 0.99328 -0.33146 - 6.82589 0.99328 -0.29103 - 6.97438 0.99328 -0.25221 - 7.12288 0.99328 -0.21503 - 7.27137 0.99328 -0.17951 - 7.41987 0.99328 -0.14570 - 7.41997 0.99347 -0.14570 - 7.42196 0.99347 -0.14526 - 7.42394 0.99347 -0.14482 - 7.42593 0.99347 -0.14438 - 7.42792 0.99347 -0.14394 - 7.42991 0.99347 -0.14350 - 7.42991 0.99345 -0.14350 - 7.46766 0.99345 -0.13522 - 7.50541 0.99345 -0.12704 - 7.54316 0.99345 -0.11898 - 7.58091 0.99345 -0.11104 - 7.61866 0.99345 -0.10321 - 7.61733 1.00527 -0.10321 - 7.73796 1.00527 -0.07924 - 7.85859 1.00527 -0.05644 - 7.97923 1.00527 -0.03482 - 8.09986 1.00527 -0.01442 - 8.22049 1.00527 0.00476 - 8.22091 1.01106 0.00476 - 8.28157 1.01106 0.01389 - 8.34223 1.01106 0.02270 - 8.40290 1.01106 0.03120 - 8.46356 1.01106 0.03938 - 8.52422 1.01106 0.04724 - 8.52483 0.99493 0.04724 - 8.60478 0.64854 0.05854 - 8.63394 0.00808 0.06909 - 8.60905 -0.53982 0.07890 - 8.53845 -0.99688 0.08796 - 8.43018 -1.36953 0.09628 - 8.42992 -1.36470 0.09628 - 8.29260 -1.64063 0.10387 - 8.13379 -1.83562 0.11073 - 7.96106 -1.94670 0.11689 - 7.78198 -1.97558 0.12235 - 7.60381 -1.92862 0.12714 - 7.60383 -1.92827 0.12714 - 7.41409 -1.86617 0.13164 - 7.23066 -1.80209 0.13536 - 7.05373 -1.73640 0.13833 - 6.88342 -1.66947 0.14055 - 6.71986 -1.60165 0.14205 - 6.71612 -1.57233 0.14205 - 6.41905 -2.62851 0.14295 - 5.99205 -3.42944 0.14254 - 5.47022 -3.98601 0.14091 - 4.88659 -4.31482 0.13817 - 4.27165 -4.43829 0.13442 - 4.27323 -4.42930 0.13442 - 3.65733 -4.34090 0.12979 - 3.06582 -4.08017 0.12440 - 2.52198 -3.66746 0.11838 - 2.04133 -3.20336 0.11183 - 1.62376 -2.76653 0.10486 - 1.62379 -2.76593 0.10486 - 1.26547 -2.35786 0.09756 - 0.96220 -1.97971 0.09001 - 0.70971 -1.63244 0.08225 - 0.50364 -1.31678 0.07433 - 0.33952 -1.03323 0.06631 - 0.33953 -1.03309 0.06631 - 0.21285 -0.78200 0.05824 - 0.11904 -0.56356 0.05011 - 0.05352 -0.37794 0.04196 - 0.01169 -0.22521 0.03380 - -0.01107 -0.10541 0.02563 - -0.01107 -0.10541 0.02563 - -0.01936 -0.01854 0.01746 - -0.01780 0.03543 0.00930 - -0.01098 0.05650 0.00115 - -0.00351 0.04469 -0.00701 - 0.00000 0.00000 -0.01516 + 0.00000 0.00000 -4.80240 + 0.00000 0.00000 -4.75604 + 0.00000 0.00000 -4.70969 + 0.00000 0.00000 -4.66334 + 0.00000 0.00000 -4.61698 + 0.00000 0.00000 -4.57063 + 0.00000 0.00000 -4.57063 + 0.00000 0.00000 -4.52427 + 0.00000 0.00000 -4.47792 + 0.00000 0.00000 -4.43156 + 0.00000 0.00000 -4.38521 + 0.00000 0.00000 -4.33885 + 0.00000 0.00000 -4.33885 + 0.00000 0.00000 -4.27704 + 0.00000 0.00000 -4.21524 + 0.00000 0.00000 -4.15343 + 0.00000 0.00000 -4.09162 + 0.00000 0.00000 -4.02982 + 0.00000 0.00000 -4.02982 + 0.00000 0.00000 -3.97831 + 0.00000 0.00000 -3.92681 + 0.00000 0.00000 -3.87530 + 0.00000 0.00000 -3.82380 + 0.00000 0.00000 -3.77229 + 0.00000 0.00000 -3.77229 + 0.00000 0.00000 -3.72079 + 0.00000 0.00000 -3.66928 + 0.00000 0.00000 -3.61777 + 0.00000 0.00000 -3.56627 + 0.00000 0.00000 -3.51476 + 0.00000 0.00000 -3.51476 + 0.00000 0.00000 -3.47047 + 0.00000 0.00000 -3.42617 + 0.00000 0.00000 -3.38188 + 0.00000 0.00000 -3.33759 + 0.00000 0.00000 -3.29329 + 0.00000 0.99160 -3.29329 + 0.11304 0.99160 -3.23458 + 0.22609 0.99160 -3.17588 + 0.33913 0.99160 -3.11721 + 0.45217 0.99160 -3.05859 + 0.56521 0.99160 -3.00003 + 0.56599 0.97854 -3.00003 + 0.64428 0.97854 -2.95898 + 0.72256 0.97854 -2.91798 + 0.80084 0.97854 -2.87702 + 0.87913 0.97854 -2.83611 + 0.95741 0.97854 -2.79527 + 0.95714 0.97649 -2.79527 + 0.97667 0.97649 -2.78507 + 0.99620 0.97649 -2.77487 + 1.01573 0.97649 -2.76468 + 1.03526 0.97649 -2.75449 + 1.05479 0.97649 -2.74431 + 1.05444 0.98040 -2.74431 + 1.15248 0.98040 -2.69345 + 1.25052 0.98040 -2.64272 + 1.34856 0.98040 -2.59212 + 1.44660 0.98040 -2.54166 + 1.54464 0.98040 -2.49135 + 1.54477 0.98147 -2.49135 + 1.64292 0.98147 -2.44120 + 1.74107 0.98147 -2.39123 + 1.83921 0.98147 -2.34144 + 1.93736 0.98147 -2.29184 + 2.03551 0.98147 -2.24245 + 2.03551 0.98165 -2.24245 + 2.13367 0.98165 -2.19327 + 2.23184 0.98165 -2.14431 + 2.33000 0.98165 -2.09559 + 2.42817 0.98165 -2.04711 + 2.52634 0.98165 -1.99889 + 2.52631 0.98199 -1.99889 + 2.66379 0.98199 -1.93182 + 2.80127 0.98199 -1.86531 + 2.93875 0.98199 -1.79937 + 3.07623 0.98199 -1.73403 + 3.21371 0.98199 -1.66933 + 3.21366 0.98292 -1.66933 + 3.34144 0.98292 -1.60984 + 3.46922 0.98292 -1.55095 + 3.59700 0.98292 -1.49267 + 3.72478 0.98292 -1.43502 + 3.85256 0.98292 -1.37804 + 3.85264 0.98339 -1.37804 + 3.98048 0.98339 -1.32175 + 4.10832 0.98339 -1.26615 + 4.23616 0.98339 -1.21129 + 4.36400 0.98339 -1.15718 + 4.49185 0.98339 -1.10384 + 4.49184 0.98338 -1.10384 + 4.63886 0.98338 -1.04349 + 4.78587 0.98338 -0.98423 + 4.93289 0.98338 -0.92609 + 5.07991 0.98338 -0.86911 + 5.22692 0.98338 -0.81332 + 5.22692 0.98338 -0.81332 + 5.37394 0.98338 -0.75875 + 5.52095 0.98338 -0.70545 + 5.66797 0.98338 -0.65344 + 5.81498 0.98338 -0.60277 + 5.96200 0.98338 -0.55345 + 5.96123 0.98719 -0.55345 + 6.10881 0.98719 -0.50554 + 6.25640 0.98719 -0.45906 + 6.40398 0.98719 -0.41404 + 6.55157 0.98719 -0.37053 + 6.69916 0.98719 -0.32856 + 6.70034 0.99661 -0.32856 + 6.84933 0.99661 -0.28816 + 6.99833 0.99661 -0.24936 + 7.14732 0.99661 -0.21221 + 7.29631 0.99661 -0.17674 + 7.44531 0.99661 -0.14297 + 7.44540 0.99678 -0.14297 + 7.44740 0.99678 -0.14253 + 7.44939 0.99678 -0.14209 + 7.45138 0.99678 -0.14165 + 7.45338 0.99678 -0.14122 + 7.45537 0.99678 -0.14078 + 7.45537 0.99676 -0.14078 + 7.49325 0.99676 -0.13250 + 7.53113 0.99676 -0.12434 + 7.56900 0.99676 -0.11629 + 7.60688 0.99676 -0.10836 + 7.64476 0.99676 -0.10054 + 7.64342 1.00862 -0.10054 + 7.76445 1.00862 -0.07662 + 7.88549 1.00862 -0.05387 + 8.00652 1.00862 -0.03231 + 8.12755 1.00862 -0.01197 + 8.24859 1.00862 0.00715 + 8.24910 1.01078 0.00715 + 8.30974 1.01078 0.01624 + 8.37039 1.01078 0.02502 + 8.43104 1.01078 0.03348 + 8.49168 1.01078 0.04163 + 8.55233 1.01078 0.04945 + 8.55293 0.99451 0.04945 + 8.63277 0.64595 0.06069 + 8.66151 0.00124 0.07118 + 8.63581 -0.55072 0.08093 + 8.56404 -1.01163 0.08993 + 8.45426 -1.38791 0.09818 + 8.45419 -1.38811 0.09818 + 8.31458 -1.66745 0.10569 + 8.15318 -1.86559 0.11248 + 7.97759 -1.97956 0.11857 + 7.79540 -2.01105 0.12396 + 7.61389 -1.96642 0.12867 + 7.61389 -1.96622 0.12867 + 7.42039 -1.90340 0.13308 + 7.23328 -1.83865 0.13672 + 7.05272 -1.77233 0.13960 + 6.87885 -1.70481 0.14173 + 6.71178 -1.63644 0.14315 + 6.70799 -1.60675 0.14315 + 6.40603 -2.66368 0.14394 + 5.97419 -3.46296 0.14341 + 5.44791 -4.01552 0.14167 + 4.86058 -4.33794 0.13882 + 4.24298 -4.45269 0.13497 + 4.24458 -4.44361 0.13497 + 3.62714 -4.34731 0.13024 + 3.03562 -4.07346 0.12477 + 2.49341 -3.65310 0.11866 + 2.01484 -3.18802 0.11203 + 1.59948 -2.75051 0.10499 + 1.59951 -2.74992 0.10499 + 1.24346 -2.34145 0.09763 + 0.94250 -1.96317 0.09001 + 0.69232 -1.61601 0.08219 + 0.48853 -1.30068 0.07422 + 0.32662 -1.01768 0.06615 + 0.32663 -1.01755 0.06615 + 0.20208 -0.76721 0.05803 + 0.11028 -0.54972 0.04986 + 0.04662 -0.36522 0.04166 + 0.00648 -0.21380 0.03345 + -0.01479 -0.09549 0.02524 + -0.01478 -0.09549 0.02524 + -0.02180 -0.01027 0.01703 + -0.01920 0.04188 0.00883 + -0.01162 0.06096 0.00064 + -0.00368 0.04700 -0.00756 + 0.00000 0.00000 -0.01575 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -20591,7 +20727,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -20603,7 +20739,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -20770,53 +20906,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.00000 99.86890 0.05123 0.05123 1 0 A - 4.07362 100.76161 31.86408 3.83947 110 13 1 - 4.45883 101.65432 33.06586 4.18246 110 13 1 - 4.84106 102.54703 34.26739 4.52546 110 14 1 - 5.22031 103.43974 35.46867 4.86846 110 15 1 - 5.51084 104.33245 36.36949 5.12571 110 15 1 - 5.68233 104.33245 36.96996 5.29720 110 15 1 - 5.96992 105.22516 37.87056 5.55445 110 16 1 - 6.34037 106.11787 39.07118 5.89745 110 16 1 - 6.70799 107.01058 40.27161 6.24045 110 17 1 - 7.07285 107.90329 41.47185 6.58344 110 17 1 - 7.34925 108.79600 42.37192 6.84069 110 17 1 - 8.18651 108.79600 25.59840 7.93223 110 32 1 - 9.96823 106.77700 29.70475 9.70495 110 34 1 - 12.33930 104.75800 35.16081 12.06858 110 35 1 - 14.70885 102.73900 40.59674 14.43220 110 36 1 - 17.07692 100.72000 46.01595 16.79583 110 37 1 - 18.85264 98.70100 50.07174 18.56855 110 38 1 - 14.02375 98.70100 177.20934 12.31919 110 8 1 - 14.53760 100.07440 165.98087 12.82216 110 9 1 - 15.20326 101.44780 168.35015 13.49277 110 9 1 - 15.85433 102.82120 174.33058 14.16339 110 9 1 - 16.49205 104.19460 181.36358 14.83401 110 9 1 - 16.95001 105.56800 186.93725 15.33697 110 9 1 - 17.32165 105.56800 190.74477 15.70861 110 9 1 - 17.73269 106.94140 196.54307 16.17524 110 9 1 - 18.33871 108.31480 204.37210 16.84586 110 9 1 - 18.93705 109.68820 212.27871 17.51648 110 9 1 - 19.52903 111.06160 220.23553 18.18709 110 9 1 - 19.94832 112.43500 226.22528 18.69006 110 9 1 - 20.28363 112.43500 230.22741 19.02537 110 9 1 - 20.69907 113.80840 236.24102 19.52833 110 9 1 - 21.27905 115.18180 244.27295 20.19895 110 9 1 - 21.85654 116.55520 252.31767 20.86956 110 9 1 - 22.43217 117.92860 260.37206 21.54018 110 9 1 - 22.83892 119.30200 266.41766 22.04314 110 9 1 - 24.91415 119.30200 270.45017 24.11838 110 9 1 - 23.58025 120.67540 276.50161 22.88141 110 9 1 - 24.15340 122.04880 284.57394 23.55203 110 8 1 - 24.72620 123.42220 292.65001 24.22265 110 8 1 - 25.29881 124.79560 300.72910 24.89327 110 8 1 - 25.70375 126.16900 306.79002 25.39623 110 8 1 - 26.03906 126.16900 310.83135 25.73154 110 8 1 - 26.44406 127.54240 316.89433 26.23450 110 8 1 - 27.01677 128.91580 324.97970 26.90512 110 8 1 - 27.58951 130.28920 333.06652 27.57574 110 8 1 - 28.16228 131.66260 341.15457 28.24635 110 0 1 - 28.56740 133.03600 347.22126 28.74932 110 0 1 + 4.08224 100.76161 31.86408 3.83947 110 13 1 + 4.46720 101.65432 33.06586 4.18246 110 14 1 + 4.84918 102.54703 34.26739 4.52546 110 14 1 + 5.22816 103.43974 35.46867 4.86846 110 15 1 + 5.51842 104.33245 36.36949 5.12571 110 15 1 + 5.68992 104.33245 36.96996 5.29720 110 15 1 + 5.97722 105.22516 37.87056 5.55445 110 16 1 + 6.34738 106.11787 39.07118 5.89745 110 16 1 + 6.71471 107.01058 40.27161 6.24045 110 17 1 + 7.07927 107.90329 41.47185 6.58344 110 17 1 + 7.35537 108.79600 42.37192 6.84069 110 17 1 + 8.18957 108.79600 25.59840 7.93223 110 32 1 + 9.97112 106.77700 29.70475 9.70495 110 34 1 + 12.34202 104.75800 35.16081 12.06858 110 35 1 + 14.71140 102.73900 40.59674 14.43220 110 36 1 + 17.07930 100.72000 46.01595 16.79583 110 37 1 + 18.85484 98.70100 50.07174 18.56855 110 38 1 + 14.03697 98.70100 177.20934 12.31919 110 8 1 + 14.54940 100.07440 165.98087 12.82216 110 9 1 + 15.21369 101.44780 168.35015 13.49277 110 9 1 + 15.86343 102.82120 174.33058 14.16339 110 9 1 + 16.49986 104.19460 181.36358 14.83401 110 9 1 + 16.95660 105.56800 186.93725 15.33697 110 9 1 + 17.29191 105.56800 190.74477 15.67228 110 9 1 + 17.73813 106.94140 196.54307 16.17524 110 9 1 + 18.34308 108.31480 204.37210 16.84586 110 9 1 + 18.94042 109.68820 212.27871 17.51648 110 9 1 + 19.53148 111.06160 220.23553 18.18709 110 9 1 + 19.94990 112.43500 226.22528 18.69006 110 9 1 + 20.28521 112.43500 230.22741 19.02537 110 9 1 + 20.69985 113.80840 236.24102 19.52833 110 9 1 + 21.27908 115.18180 244.27295 20.19895 110 9 1 + 21.85587 116.55520 252.31767 20.86956 110 9 1 + 22.43084 117.92860 260.37206 21.54018 110 9 1 + 22.83697 119.30200 266.41766 22.04314 110 9 1 + 23.17228 119.30200 270.45017 22.37845 110 9 1 + 23.57772 120.67540 276.50161 22.88141 110 9 1 + 24.15031 122.04880 284.57394 23.55203 110 8 1 + 24.72257 123.42220 292.65001 24.22265 110 8 1 + 25.29465 124.79560 300.72910 24.89327 110 8 1 + 25.69908 126.16900 306.79002 25.39623 110 8 1 + 26.03439 126.16900 310.83135 25.73154 110 8 1 + 26.43890 127.54240 316.89433 26.23450 110 8 1 + 27.01111 128.91580 324.97970 26.90512 110 8 1 + 27.58336 130.28920 333.06652 27.57574 110 8 1 + 28.15563 131.66260 341.15457 28.24635 110 0 1 + 28.56027 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -20834,9 +20970,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.910 'Hydrobiaklei' - -12.00 6.761 'Basisveen' - -12.50 75.342 'Eerste zandlaag' + -10.00 4.916 'Hydrobiaklei' + -12.00 6.763 'Basisveen' + -12.50 75.221 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -20856,9 +20992,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.04 'Hydrobiaklei' + -10.00 -1.05 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.92 'Eerste zandlaag' + -12.50 -28.87 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21087,7 +21223,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -21099,7 +21235,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -21266,53 +21402,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 10.36651 100.76161 31.86408 3.83947 110 33 1 - 9.89608 101.65432 33.06586 4.18246 110 30 1 - 9.43853 102.54703 34.26739 4.52546 110 28 1 - 8.99391 103.43974 35.46867 4.86846 110 25 1 - 8.56227 104.33245 36.36949 5.12571 110 24 1 - 8.56227 104.33245 36.96996 5.29720 110 23 1 - 8.14362 105.22516 37.87056 5.55445 110 22 1 - 7.73788 106.11787 39.07118 5.89745 110 20 1 - 7.34496 107.01058 40.27161 6.24045 110 18 1 - 6.96480 107.90329 41.47185 6.58344 110 17 1 - 6.59729 108.79600 42.37192 6.84069 110 0 1 - 7.67795 108.79600 25.59840 7.93223 110 0 1 - 9.44167 106.77700 29.70475 9.70495 110 0 1 - 11.79785 104.75800 35.16081 12.06858 110 0 1 - 14.15555 102.73900 40.59674 14.43220 110 0 1 - 16.51473 100.72000 46.01595 16.79583 110 0 1 - 18.28445 98.70100 50.07174 18.56855 110 0 1 - 21.07777 98.70100 177.20934 12.31919 110 12 1 - 20.05723 100.07440 165.98087 12.82216 110 12 1 - 19.21844 101.44780 168.35015 13.49277 110 11 1 - 18.46508 102.82120 174.33058 14.16339 110 11 1 - 17.79573 104.19460 181.36358 14.83401 110 10 1 - 17.11615 105.56800 186.93725 15.33697 110 9 1 - 17.30121 105.56800 190.74477 15.70861 110 9 1 - 16.70081 106.94140 196.54307 16.17524 110 8 1 - 16.26664 108.31480 204.37210 16.84586 110 0 1 - 16.09590 109.68820 212.27871 17.51648 110 0 1 - 16.84516 111.06160 220.23553 18.18709 110 0 1 - 17.43179 112.43500 226.22528 18.69006 110 0 1 - 17.76710 112.43500 230.22741 19.02537 110 0 1 - 18.35758 113.80840 236.24102 19.52833 110 0 1 - 19.11884 115.18180 244.27295 20.19895 110 0 1 - 19.88258 116.55520 252.31767 20.86956 110 0 1 - 20.64819 117.92860 260.37206 21.54018 110 0 1 - 21.24737 119.30200 266.41766 22.04314 110 0 1 - 23.32260 119.30200 270.45017 24.11838 110 0 1 - 22.18258 120.67540 276.50161 22.88141 110 0 1 - 22.95066 122.04880 284.57394 23.55203 110 0 1 - 23.71910 123.42220 292.65001 24.22265 110 0 1 - 24.48772 124.79560 300.72910 24.89327 110 0 1 - 25.08871 126.16900 306.79002 25.39623 110 0 1 - 25.42402 126.16900 310.83135 25.73154 110 0 1 - 26.02494 127.54240 316.89433 26.23450 110 0 1 - 26.79347 128.91580 324.97970 26.90512 110 0 1 - 27.56196 130.28920 333.06652 27.57574 110 0 1 - 28.33043 131.66260 341.15457 28.24635 110 8 1 - 28.93123 133.03600 347.22126 28.74932 110 8 1 + 10.41487 100.76161 31.86408 3.83947 110 33 1 + 9.94251 101.65432 33.06586 4.18246 110 30 1 + 9.48290 102.54703 34.26739 4.52546 110 28 1 + 9.03609 103.43974 35.46867 4.86846 110 25 1 + 8.60212 104.33245 36.36949 5.12571 110 24 1 + 8.60212 104.33245 36.96996 5.29720 110 23 1 + 8.18098 105.22516 37.87056 5.55445 110 22 1 + 7.77260 106.11787 39.07118 5.89745 110 20 1 + 7.37691 107.01058 40.27161 6.24045 110 18 1 + 6.99385 107.90329 41.47185 6.58344 110 17 1 + 6.62335 108.79600 42.37192 6.84069 110 0 1 + 7.67489 108.79600 25.59840 7.93223 110 0 1 + 9.43878 106.77700 29.70475 9.70495 110 0 1 + 11.79513 104.75800 35.16081 12.06858 110 0 1 + 14.15300 102.73900 40.59674 14.43220 110 0 1 + 16.51236 100.72000 46.01595 16.79583 110 0 1 + 18.28225 98.70100 50.07174 18.56855 110 0 1 + 21.10253 98.70100 177.20934 12.31919 110 12 1 + 20.06640 100.07440 165.98087 12.82216 110 12 1 + 19.21198 101.44780 168.35015 13.49277 110 11 1 + 18.44312 102.82120 174.33058 14.16339 110 11 1 + 17.75852 104.19460 181.36358 14.83401 110 10 1 + 17.06409 105.56800 186.93725 15.33697 110 9 1 + 17.24915 105.56800 190.74477 15.67228 110 9 1 + 16.63443 106.94140 196.54307 16.17524 110 8 1 + 16.18667 108.31480 204.37210 16.84586 110 0 1 + 16.09253 109.68820 212.27871 17.51648 110 0 1 + 16.84271 111.06160 220.23553 18.18709 110 0 1 + 17.43021 112.43500 226.22528 18.69006 110 0 1 + 17.76552 112.43500 230.22741 19.02537 110 0 1 + 18.35681 113.80840 236.24102 19.52833 110 0 1 + 19.11881 115.18180 244.27295 20.19895 110 0 1 + 19.88326 116.55520 252.31767 20.86956 110 0 1 + 20.64952 117.92860 260.37206 21.54018 110 0 1 + 21.24932 119.30200 266.41766 22.04314 110 0 1 + 21.58462 119.30200 270.45017 22.37845 110 0 1 + 22.18511 120.67540 276.50161 22.88141 110 0 1 + 22.95376 122.04880 284.57394 23.55203 110 0 1 + 23.72273 123.42220 292.65001 24.22265 110 0 1 + 24.49188 124.79560 300.72910 24.89327 110 0 1 + 25.09338 126.16900 306.79002 25.39623 110 0 1 + 25.42869 126.16900 310.83135 25.73154 110 0 1 + 26.03011 127.54240 316.89433 26.23450 110 0 1 + 26.79913 128.91580 324.97970 26.90512 110 0 1 + 27.56811 130.28920 333.06652 27.57574 110 0 1 + 28.33707 131.66260 341.15457 28.24635 110 8 1 + 28.93836 133.03600 347.22126 28.74932 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21330,9 +21466,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 7.350 'Hydrobiaklei' - -12.00 6.489 'Basisveen' - -12.50 74.040 'Eerste zandlaag' + -10.00 7.384 'Hydrobiaklei' + -12.00 6.488 'Basisveen' + -12.50 73.890 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -21352,9 +21488,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 1.56 'Hydrobiaklei' + -10.00 1.57 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.42 'Eerste zandlaag' + -12.50 28.36 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21576,8 +21712,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 436.80104 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 311.32522 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 436.79722 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 311.40092 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -21618,10 +21754,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.09 : Percentage mobilized resistance left - 9.92 : Percentage mobilized resistance right - 48.10 : Effective left - 91.75 : Effective right + 11.10 : Percentage mobilized resistance left + 9.93 : Percentage mobilized resistance right + 48.18 : Effective left + 91.90 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 433.89 : Max effective resistance left @@ -21630,8 +21766,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.98 : Vertical force left - 30.79 : Vertical force right + 15.03 : Vertical force left + 30.84 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -21640,10 +21776,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.79 : Active force -14.98 : Passive force --30.79 : Plugged active force -14.98 : Plugged passive force +-30.84 : Active force +15.03 : Passive force +-30.84 : Plugged active force +15.03 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -21663,192 +21799,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.32601 - 0.00000 0.00000 6.94907 - 0.00000 0.00000 6.57214 - 0.00000 0.00000 6.19520 - 0.00000 0.00000 5.81827 - 0.00000 0.00000 5.44133 - 0.00000 0.00000 5.44133 - 0.00000 0.00000 5.06439 - 0.00000 0.00000 4.68746 - 0.00000 0.00000 4.31052 - 0.00000 0.00000 3.93359 - 0.00000 0.00000 3.55665 - 0.00000 0.00000 3.55665 - 0.00339 0.08476 3.05407 - 0.02712 0.33903 2.55150 - 0.09154 0.76283 2.04891 - 0.21698 1.35613 1.54630 - 0.42379 2.11896 1.04366 - 0.42379 2.11896 1.04366 - 0.67297 2.88414 0.62476 - 1.00454 3.76704 0.20579 - 1.43030 4.76766 -0.21330 - 1.96200 5.88600 -0.63255 - 2.61142 7.12206 -1.05200 - 2.61142 7.12206 -1.05200 - 3.39034 8.47584 -1.47172 - 4.31051 9.94734 -1.89178 - 5.38373 11.53656 -2.31231 - 6.62175 13.24350 -2.73343 - 8.03635 15.06816 -3.15523 - 8.03635 15.06816 -3.15523 - 9.40311 16.73152 -3.51864 - 10.91667 18.48195 -3.88278 - 12.58450 20.31944 -4.24777 - 14.41411 22.24399 -4.61375 - 16.41297 24.25562 -4.98085 - 16.41297 -122.74542 -4.98085 - 2.57818 -119.94465 -5.46905 - -10.92860 -116.99089 -5.95759 - -24.08993 -113.88415 -6.44468 - -36.88837 -110.62441 -6.92853 - -49.30648 -107.21168 -7.40734 - -49.30570 -107.22473 -7.40734 - -57.78474 -104.73848 -7.73941 - -66.06185 -102.17689 -8.06758 - -74.13103 -99.53997 -8.39134 - -81.98624 -96.82770 -8.71012 - -89.62145 -94.04009 -9.02340 - -89.62172 -94.04214 -9.02340 - -91.49548 -93.33346 -9.10079 - -93.35502 -92.62008 -9.17780 - -95.20025 -91.90199 -9.25442 - -97.03107 -91.17919 -9.33064 - -98.84739 -90.45168 -9.40646 - -98.84774 -90.44777 -9.40646 - -107.70809 -86.73959 -9.77911 - -116.19174 -82.91369 -10.14046 - -124.28691 -78.97007 -10.48964 - -131.98183 -74.90873 -10.82582 - -139.26473 -70.72967 -11.14814 - -139.26459 -70.72860 -11.14814 - -146.12556 -66.49068 -11.45578 - -152.56273 -62.25276 -11.74808 - -158.57611 -58.01484 -12.02441 - -164.16570 -53.77692 -12.28412 - -169.33149 -49.53900 -12.52660 - -169.33149 -49.53882 -12.52660 - -174.07348 -45.30090 -12.75125 - -178.39167 -41.06298 -12.95762 - -182.28608 -36.82506 -13.14531 - -185.75669 -32.58714 -13.31389 - -188.80350 -28.34922 -13.46298 - -188.80352 -28.34888 -13.46298 - -192.35705 -22.41580 -13.63818 - -195.07995 -16.48271 -13.77379 - -196.97221 -10.54962 -13.86942 - -198.03384 -4.61653 -13.92468 - -198.26484 1.31656 -13.93917 - -198.26489 1.31749 -13.93917 - -197.73551 6.82679 -13.91592 - -196.48992 12.33608 -13.85758 - -194.52813 17.84538 -13.76449 - -191.85012 23.35467 -13.63701 - -188.45591 28.86397 -13.47548 - -188.45583 28.86443 -13.47548 - -184.34535 34.37373 -13.28036 - -179.51866 39.88302 -13.05252 - -173.97576 45.39232 -12.79295 - -167.71666 50.90161 -12.50262 - -160.74134 56.41091 -12.18253 - -160.74134 56.41091 -12.18253 - -151.83432 62.74660 -11.77903 - -141.98011 69.08229 -11.33987 - -131.17872 75.41798 -10.86761 - -119.43014 81.75367 -10.36477 - -106.73437 88.08936 -9.83390 - -106.73437 88.08936 -9.83390 - -93.09142 94.42505 -9.27770 - -78.50128 100.76074 -8.69964 - -62.96396 107.09643 -8.10336 - -46.47945 113.43212 -7.49252 - -29.04775 119.76781 -6.87075 - -29.04853 119.77163 -6.87075 - -10.66908 126.10732 -6.24189 - 8.65756 132.44301 -5.61050 - 28.93138 138.77870 -4.98135 - 50.15239 145.11439 -4.35919 - 72.32059 151.45008 -3.74879 - 72.32177 151.45953 -3.74879 - 95.43856 157.79522 -3.15507 - 119.50254 164.13091 -2.58373 - 144.51370 170.46660 -2.04063 - 170.47205 176.80229 -1.53164 - 197.37758 183.13798 -1.06263 - 197.37769 183.13817 -1.06263 - 197.74403 183.20475 -1.05665 - 198.11049 183.25351 -1.05069 - 198.47705 183.30234 -1.04473 - 198.84370 183.35126 -1.03877 - 199.21045 183.40022 -1.03283 - 199.21045 183.40020 -1.03283 - 206.19754 184.34278 -0.92151 - 213.22068 185.29913 -0.81332 - 220.28049 186.27246 -0.70837 - 227.37760 187.26277 -0.60675 - 234.51263 188.26686 -0.50858 - 234.51130 -123.04653 -0.50858 - 219.94412 -119.72215 -0.22143 - 205.78348 -116.26039 0.03247 - 192.04840 -112.62929 0.25521 - 178.75922 -108.82884 0.44885 - 165.93498 -104.89101 0.61547 - 165.93539 -104.88523 0.61547 - 159.70807 -102.69368 0.68928 - 153.61194 -100.51249 0.75706 - 147.64633 -98.34316 0.81902 - 141.81053 -96.18569 0.87540 - 136.10384 -94.03858 0.92642 - 136.10447 -94.05706 0.92642 - 127.67261 -91.24032 0.99408 - 119.50217 -88.31017 1.05064 - 111.60356 -85.26789 1.09678 - 103.98652 -82.12338 1.13321 - 96.65964 -78.89537 1.16059 - 96.65939 -78.88785 1.16059 - 89.63170 -75.55667 1.17960 - 82.91010 -72.15885 1.19083 - 76.50087 -68.69257 1.19482 - 70.40991 -65.16502 1.19214 - 64.64221 -61.59232 1.18333 - 64.64232 -61.59074 1.18333 - 58.64923 -58.27699 1.16724 - 52.98394 -55.05281 1.14498 - 47.63386 -51.97297 1.11714 - 42.58328 -49.07505 1.08427 - 37.81009 -46.43992 1.04692 - 37.80616 -46.41102 1.04692 - 31.53594 -42.96493 0.98819 - 25.80191 -38.96314 0.92297 - 20.62227 -35.04697 0.85234 - 15.98430 -31.22630 0.77737 - 11.87379 -27.51524 0.69911 - 11.87549 -27.50482 0.69911 - 8.27959 -23.88682 0.61855 - 5.18147 -20.39124 0.53628 - 2.56464 -17.01155 0.45287 - 0.41274 -13.74956 0.36883 - -1.29106 -10.61238 0.28472 - -1.29240 -10.58750 0.28472 - -2.56548 -7.65384 0.20098 - -3.45093 -5.05137 0.11776 - -3.99546 -2.78311 0.03520 - -4.24567 -0.84621 -0.04660 - -4.24771 0.76265 -0.12752 - -4.24755 0.76203 -0.12752 - -4.03355 2.19265 -0.20751 - -3.65540 3.15626 -0.28668 - -3.16463 3.80215 -0.36511 - -2.60550 4.13310 -0.44290 - -2.02195 4.15147 -0.52015 - -2.02199 4.15077 -0.52015 - -1.42084 4.25371 -0.59700 - -0.86382 3.65217 -0.67355 - -0.41262 2.74236 -0.74991 - -0.11032 1.52490 -0.82616 - 0.00001 0.00006 -0.90238 + 0.00000 0.00000 7.32393 + 0.00000 0.00000 6.94705 + 0.00000 0.00000 6.57018 + 0.00000 0.00000 6.19331 + 0.00000 0.00000 5.81644 + 0.00000 0.00000 5.43957 + 0.00000 0.00000 5.43957 + 0.00000 0.00000 5.06270 + 0.00000 0.00000 4.68583 + 0.00000 0.00000 4.30896 + 0.00000 0.00000 3.93209 + 0.00000 0.00000 3.55522 + 0.00000 0.00000 3.55522 + 0.00339 0.08476 3.05273 + 0.02712 0.33903 2.55024 + 0.09154 0.76283 2.04774 + 0.21698 1.35613 1.54522 + 0.42379 2.11896 1.04267 + 0.42379 2.11896 1.04267 + 0.67297 2.88414 0.62384 + 1.00454 3.76704 0.20494 + 1.43030 4.76766 -0.21408 + 1.96200 5.88600 -0.63326 + 2.61142 7.12206 -1.05264 + 2.61142 7.12206 -1.05264 + 3.39034 8.47584 -1.47228 + 4.31051 9.94734 -1.89227 + 5.38373 11.53656 -2.31273 + 6.62175 13.24350 -2.73377 + 8.03635 15.06816 -3.15550 + 8.03635 15.06816 -3.15550 + 9.40311 16.73152 -3.51885 + 10.91667 18.48195 -3.88292 + 12.58450 20.31944 -4.24785 + 14.41411 22.24399 -4.61377 + 16.41297 24.25562 -4.98081 + 16.41297 -122.74160 -4.98081 + 2.57862 -119.94083 -5.46892 + -10.92773 -116.98707 -5.95738 + -24.08862 -113.88032 -6.44439 + -36.88663 -110.62058 -6.92815 + -49.30430 -107.20786 -7.40689 + -49.30352 -107.22092 -7.40689 + -57.78225 -104.73467 -7.73889 + -66.05906 -102.17308 -8.06701 + -74.12793 -99.53616 -8.39071 + -81.98284 -96.82389 -8.70944 + -89.61775 -94.03628 -9.02265 + -89.61801 -94.03833 -9.02265 + -91.49170 -93.32966 -9.10004 + -93.35117 -92.61627 -9.17703 + -95.19632 -91.89818 -9.25364 + -97.02706 -91.17538 -9.32984 + -98.84330 -90.44787 -9.40564 + -98.84366 -90.44396 -9.40564 + -107.70362 -86.73578 -9.77823 + -116.18689 -82.90988 -10.13951 + -124.28168 -78.96626 -10.48862 + -131.97622 -74.90492 -10.82473 + -139.25874 -70.72586 -11.14698 + -139.25860 -70.72479 -11.14698 + -146.11919 -66.48687 -11.45456 + -152.55598 -62.24895 -11.74679 + -158.56897 -58.01103 -12.02305 + -164.15818 -53.77311 -12.28270 + -169.32360 -49.53519 -12.52512 + -169.32360 -49.53501 -12.52512 + -174.06520 -45.29709 -12.74970 + -178.38301 -41.05917 -12.95601 + -182.27703 -36.82125 -13.14363 + -185.74726 -32.58333 -13.31216 + -188.79370 -28.34541 -13.46118 + -188.79372 -28.34507 -13.46118 + -192.34671 -22.41198 -13.63630 + -195.06907 -16.47890 -13.77183 + -196.96080 -10.54581 -13.86738 + -198.02190 -4.61272 -13.92256 + -198.25237 1.32037 -13.93699 + -198.25241 1.32130 -13.93699 + -197.72254 6.83060 -13.91367 + -196.47646 12.33990 -13.85527 + -194.51417 17.84919 -13.76212 + -191.83567 23.35849 -13.63458 + -188.44096 28.86778 -13.47299 + -188.44087 28.86825 -13.47299 + -184.32990 34.37754 -13.27782 + -179.50271 39.88684 -13.04993 + -173.95932 45.39614 -12.79031 + -167.69972 50.90543 -12.49994 + -160.72391 56.41473 -12.17981 + -160.72391 56.41472 -12.17981 + -151.81632 62.75041 -11.77625 + -141.96154 69.08610 -11.33706 + -131.15957 75.42179 -10.86476 + -119.41042 81.75748 -10.36190 + -106.71408 88.09317 -9.83099 + -106.71408 88.09317 -9.83099 + -93.07056 94.42886 -9.27477 + -78.47985 100.76455 -8.69670 + -62.94196 107.10024 -8.10041 + -46.45688 113.43594 -7.48956 + -29.02461 119.77163 -6.86779 + -29.02539 119.77544 -6.86779 + -10.64536 126.11113 -6.23893 + 8.68184 132.44682 -5.60755 + 28.95623 138.78251 -4.97842 + 50.17781 145.11820 -4.35628 + 72.34658 151.45389 -3.74590 + 72.34776 151.46331 -3.74590 + 95.46512 157.79900 -3.15222 + 119.52966 164.13469 -2.58092 + 144.54139 170.47038 -2.03786 + 170.50030 176.80607 -1.52893 + 197.40640 183.14176 -1.05998 + 197.40650 183.14193 -1.05998 + 197.77286 183.20851 -1.05400 + 198.13932 183.25726 -1.04803 + 198.50589 183.30609 -1.04207 + 198.87255 183.35502 -1.03612 + 199.23931 183.40398 -1.03018 + 199.23931 183.40396 -1.03018 + 206.22653 184.34653 -0.91888 + 213.24982 185.30288 -0.81071 + 220.30977 186.27621 -0.70577 + 227.40703 187.26653 -0.60417 + 234.54220 188.27062 -0.50601 + 234.54086 -123.11845 -0.50601 + 219.96506 -119.79406 -0.21893 + 205.79578 -116.33230 0.03491 + 192.05208 -112.70120 0.25759 + 178.75427 -108.90075 0.45116 + 165.92139 -104.96293 0.61772 + 165.92190 -104.96076 0.61772 + 159.69004 -102.76921 0.69150 + 153.58939 -100.58802 0.75924 + 147.61924 -98.41869 0.82118 + 141.77891 -96.26122 0.87753 + 136.06769 -94.11411 0.92852 + 136.06831 -94.13274 0.92852 + 127.62961 -91.31628 0.99614 + 119.45206 -88.39044 1.05266 + 111.54596 -85.35227 1.09878 + 103.92106 -82.21163 1.13517 + 96.58598 -78.98723 1.16254 + 96.58593 -78.98474 1.16254 + 89.54927 -75.65690 1.18154 + 82.81840 -72.26211 1.19275 + 76.39965 -68.79855 1.19674 + 70.29894 -65.27336 1.19407 + 64.52128 -61.70265 1.18529 + 64.52137 -61.70122 1.18529 + 58.52391 -58.28722 1.16922 + 52.85763 -55.06208 1.14702 + 47.50668 -51.98125 1.11923 + 42.45531 -49.08256 1.08643 + 37.68140 -46.44691 1.04918 + 37.67742 -46.41764 1.04918 + 31.40661 -42.96676 0.99058 + 25.67267 -38.95997 0.92554 + 20.49384 -35.03842 0.85511 + 15.85747 -31.21195 0.78036 + 11.74940 -27.49461 0.70235 + 11.75113 -27.48412 0.70235 + 8.15831 -23.86236 0.62206 + 5.06412 -20.35939 0.54010 + 2.45231 -16.97169 0.45700 + 0.30659 -13.70101 0.37332 + -1.38977 -10.55441 0.28957 + -1.39110 -10.52970 0.28957 + -2.65514 -7.58059 0.20622 + -3.52882 -4.95615 0.12342 + -4.05838 -2.66424 0.04127 + -4.29019 -0.70196 -0.04009 + -4.27015 0.93405 -0.12056 + -4.27000 0.93342 -0.12056 + -4.04364 2.24685 -0.20010 + -3.65577 3.24124 -0.27881 + -3.15083 3.91976 -0.35679 + -2.57285 4.28514 -0.43414 + -1.96549 4.33973 -0.51095 + -1.96554 4.33905 -0.51095 + -1.37228 4.08475 -0.58736 + -0.83616 3.52293 -0.66349 + -0.40016 2.65453 -0.73943 + -0.10717 1.48015 -0.81526 + 0.00001 0.00006 -0.89107 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -22074,7 +22210,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -22086,7 +22222,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -22253,53 +22389,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.81578 100.76161 31.86408 3.83947 110 25 1 - 8.38501 101.65432 33.06586 4.18246 110 25 1 - 8.91260 102.54703 34.26739 4.52546 110 26 1 - 9.40128 103.43974 35.46867 4.86846 110 27 1 - 9.76807 104.33245 36.36949 5.12571 110 27 1 - 9.93957 104.33245 36.96996 5.29720 110 27 1 - 10.27287 105.22516 37.87056 5.55445 110 27 1 - 10.66076 106.11787 39.07118 5.89745 110 27 1 - 11.01973 107.01058 40.27161 6.24045 110 27 1 - 11.35199 107.90329 41.47185 6.58344 110 27 1 - 11.57402 108.79600 42.37192 6.84069 110 27 1 - 10.29889 108.79600 25.59840 7.93223 110 40 1 - 12.03942 106.77700 29.70475 9.70495 110 41 1 - 14.35854 104.75800 35.16081 12.06858 110 41 1 - 16.66648 102.73900 40.59674 14.43220 110 41 1 - 18.96436 100.72000 46.01595 16.79583 110 41 1 - 20.66240 98.70100 50.07174 18.56855 110 41 1 - 24.88229 98.70100 177.20934 12.31919 110 14 1 - 24.68041 100.07440 165.98087 12.82216 110 15 1 - 24.56842 101.44780 168.35015 13.49277 110 15 1 - 24.39149 102.82120 174.33058 14.16339 110 14 1 - 24.16241 104.19460 181.36358 14.83401 110 13 1 - 23.72633 105.56800 186.93725 15.33697 110 13 1 - 24.09796 105.56800 190.74477 15.70861 110 13 1 - 23.59781 106.94140 196.54307 16.17524 110 12 1 - 23.28127 108.31480 204.37210 16.84586 110 11 1 - 22.95086 109.68820 212.27871 17.51648 110 11 1 - 22.61305 111.06160 220.23553 18.18709 110 10 1 - 22.10669 112.43500 226.22528 18.69006 110 10 1 - 22.44200 112.43500 230.22741 19.02537 110 10 1 - 21.94005 113.80840 236.24102 19.52833 110 9 1 - 21.61211 115.18180 244.27295 20.19895 110 9 1 - 21.29194 116.55520 252.31767 20.86956 110 8 1 - 20.98096 117.92860 260.37206 21.54018 110 0 1 - 20.51290 119.30200 266.41766 22.04314 110 0 1 - 22.58814 119.30200 270.45017 24.11838 110 0 1 - 20.39128 120.67540 276.50161 22.88141 110 0 1 - 20.11193 122.04880 284.57394 23.55203 110 0 1 - 19.84137 123.42220 292.65001 24.22265 110 0 1 - 19.57845 124.79560 300.72910 24.89327 110 0 1 - 19.15437 126.16900 306.79002 25.39623 110 0 1 - 19.48968 126.16900 310.83135 25.73154 110 0 1 - 19.07053 127.54240 316.89433 26.23450 110 0 1 - 18.82248 128.91580 324.97970 26.90512 110 0 1 - 18.57680 130.28920 333.06652 27.57574 110 0 1 - 18.33247 131.66260 341.15457 28.24635 110 0 1 - 17.92077 133.03600 347.22126 28.74932 110 0 1 + 7.82402 100.76161 31.86408 3.83947 110 25 1 + 8.39310 101.65432 33.06586 4.18246 110 25 1 + 8.92056 102.54703 34.26739 4.52546 110 26 1 + 9.40915 103.43974 35.46867 4.86846 110 27 1 + 9.77585 104.33245 36.36949 5.12571 110 27 1 + 9.94735 104.33245 36.96996 5.29720 110 27 1 + 10.28059 105.22516 37.87056 5.55445 110 27 1 + 10.66846 106.11787 39.07118 5.89745 110 27 1 + 11.02743 107.01058 40.27161 6.24045 110 27 1 + 11.35972 107.90329 41.47185 6.58344 110 27 1 + 11.58184 108.79600 42.37192 6.84069 110 27 1 + 10.30280 108.79600 25.59840 7.93223 110 40 1 + 12.04339 106.77700 29.70475 9.70495 110 41 1 + 14.36261 104.75800 35.16081 12.06858 110 41 1 + 16.67067 102.73900 40.59674 14.43220 110 41 1 + 18.96869 100.72000 46.01595 16.79583 110 41 1 + 20.66690 98.70100 50.07174 18.56855 110 41 1 + 24.90933 98.70100 177.20934 12.31919 110 14 1 + 24.70918 100.07440 165.98087 12.82216 110 15 1 + 24.59924 101.44780 168.35015 13.49277 110 15 1 + 24.42467 102.82120 174.33058 14.16339 110 14 1 + 24.19827 104.19460 181.36358 14.83401 110 13 1 + 23.76518 105.56800 186.93725 15.33697 110 13 1 + 24.10049 105.56800 190.74477 15.67228 110 13 1 + 23.63997 106.94140 196.54307 16.17524 110 12 1 + 23.32704 108.31480 204.37210 16.84586 110 11 1 + 23.00051 109.68820 212.27871 17.51648 110 11 1 + 22.66688 111.06160 220.23553 18.18709 110 10 1 + 22.16494 112.43500 226.22528 18.69006 110 10 1 + 22.50025 112.43500 230.22741 19.02537 110 10 1 + 22.00298 113.80840 236.24102 19.52833 110 9 1 + 21.67994 115.18180 244.27295 20.19895 110 9 1 + 21.36486 116.55520 252.31767 20.86956 110 8 1 + 21.05911 117.92860 260.37206 21.54018 110 0 1 + 20.59640 119.30200 266.41766 22.04314 110 0 1 + 20.93171 119.30200 270.45017 22.37845 110 0 1 + 20.48019 120.67540 276.50161 22.88141 110 0 1 + 20.20628 122.04880 284.57394 23.55203 110 0 1 + 19.94115 123.42220 292.65001 24.22265 110 0 1 + 19.68362 124.79560 300.72910 24.89327 110 0 1 + 19.26485 126.16900 306.79002 25.39623 110 0 1 + 19.60016 126.16900 310.83135 25.73154 110 0 1 + 19.18620 127.54240 316.89433 26.23450 110 0 1 + 18.94322 128.91580 324.97970 26.90512 110 0 1 + 18.70255 130.28920 333.06652 27.57574 110 0 1 + 18.46317 131.66260 341.15457 28.24635 110 0 1 + 18.05642 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -22317,9 +22453,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.507 'Hydrobiaklei' - -12.00 7.751 'Basisveen' - -12.50 75.496 'Eerste zandlaag' + -10.00 8.514 'Hydrobiaklei' + -12.00 7.753 'Basisveen' + -12.50 75.631 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22341,7 +22477,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.81 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.98 'Eerste zandlaag' + -12.50 -29.03 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -22465,24 +22601,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 71.33900 32.23900 7.86393 7.28848 -10.88000 71.33900 32.23900 9.24535 7.34485 -10.94000 71.33900 32.23900 10.86885 7.41109 @@ -22576,7 +22712,7 @@ Lambda passive -10.97000 5.17420 31.09283 1.26873 0.45536 0.24520 6.00921 -11.03000 5.84560 35.12741 1.43335 0.45536 0.24520 6.00921 -11.09000 6.51700 38.15335 1.55683 0.45536 0.24520 6.00921 - -11.09000 6.51700 38.09030 -3.30713 0.70481 0.00000 5.84689 + -11.09000 6.51700 38.09030 -3.30713 0.69929 0.00000 5.84689 -11.18100 6.50749 37.13796 -3.30434 0.69929 0.00000 5.70696 -11.27200 6.49798 36.38146 -3.30632 0.69929 0.00000 5.59889 -11.36300 6.48847 35.91666 -3.30987 0.69929 0.00000 5.53546 @@ -22588,7 +22724,7 @@ Lambda passive -11.81800 6.44092 34.91455 -3.33088 0.69929 0.00000 5.42074 -11.90900 6.43141 34.81167 -3.33521 0.69929 0.00000 5.41276 -12.00000 6.42190 34.74335 -3.33847 0.69929 0.00000 5.40813 - -12.00000 6.42190 18.56125 -0.24957 1.01009 0.00000 3.01605 + -12.00000 6.42190 18.56125 -0.24957 0.74118 0.00000 3.01605 -12.10000 5.35090 17.07239 -0.71711 0.74118 0.00000 3.19056 -12.20000 4.27990 15.10025 -1.34197 0.74118 0.00000 3.52818 -12.30000 3.20890 13.14123 -1.96811 0.74118 0.00000 4.09525 @@ -22618,7 +22754,7 @@ Lambda passive -15.02000 26.74570 152.13832 6.86581 0.47008 0.25671 5.68833 -15.16000 28.17230 160.19767 7.23257 0.47008 0.25673 5.68635 -15.30000 29.59890 166.24550 7.50762 0.47008 0.25674 5.68511 - -15.30000 29.59890 170.27895 7.69098 0.31301 0.25675 5.68439 + -15.30000 29.59890 170.27895 7.69098 0.47008 0.25675 5.68439 -15.44000 31.02550 176.33119 7.96601 0.47008 0.25676 5.68343 -15.58000 32.45210 184.40388 8.33270 0.47008 0.25677 5.68234 -15.72000 33.87870 192.47975 8.69937 0.47008 0.25678 5.68144 @@ -22771,32 +22907,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 19.99774 1.51537 1 0 A 0.93947 71.19850 23.02367 1.74467 1 0 A 1.10410 71.78710 27.05825 2.05040 1 0 A 1.26873 72.37570 31.09283 2.35613 1 0 A 1.43335 72.96430 35.12741 2.66186 1 0 A 1.55683 73.55290 38.15335 2.89116 1 0 A - 1.07481 73.55290 38.09030 4.59156 110 0 1 - 7.33553 74.94561 37.13796 4.55065 110 20 1 - 6.33143 76.33832 36.38146 4.54400 110 17 1 - 5.37888 77.73103 35.91666 4.53735 110 15 1 - 4.47517 79.12374 35.59797 4.53070 110 0 1 - 3.70504 80.51645 35.41437 4.52571 110 0 1 - 3.53022 80.51645 35.31241 4.52239 110 0 1 - 2.80361 81.90916 35.18176 4.51740 110 0 1 - 2.03078 83.30187 35.03566 4.51075 110 0 1 - 1.29688 84.69458 34.91455 4.50410 110 0 1 - 0.59967 86.08729 34.81167 4.49745 110 0 1 - 0.02430 87.48000 34.74335 4.49246 110 0 1 - 3.84956 87.48000 18.56125 6.21623 110 0 1 - 1.63151 89.72100 17.07239 3.96599 110 0 1 - 0.88221 91.96200 15.10025 3.17218 110 0 1 - 0.14410 94.20300 13.14123 2.37838 110 0 1 + 1.03934 73.55290 38.09030 4.55564 110 0 1 + 7.38427 74.94561 37.13796 4.55065 110 20 1 + 6.37814 76.33832 36.38146 4.54400 110 18 1 + 5.42341 77.73103 35.91666 4.53735 110 15 1 + 4.51735 79.12374 35.59797 4.53070 110 0 1 + 3.74469 80.51645 35.41437 4.52571 110 0 1 + 3.56987 80.51645 35.31241 4.52239 110 0 1 + 2.84055 81.90916 35.18176 4.51740 110 0 1 + 2.06482 83.30187 35.03566 4.51075 110 0 1 + 1.32785 84.69458 34.91455 4.50410 110 0 1 + 0.62740 86.08729 34.81167 4.49745 110 0 1 + 0.04865 87.48000 34.74335 4.49246 110 0 1 + 2.19077 87.48000 18.56125 4.56134 110 0 1 + 1.62754 89.72100 17.07239 3.96599 110 0 1 + 0.87815 91.96200 15.10025 3.17218 110 0 1 + 0.13991 94.20300 13.14123 2.37838 110 0 1 0.00000 96.44400 11.19306 1.58457 1 0 A 0.00000 98.68500 9.73768 0.98922 1 0 A - 7.93205 98.68500 8.83693 0.66918 330 90 3 + 7.93090 98.68500 8.83693 0.66918 330 90 3 0.63774 100.05840 15.37247 1.17215 1 0 A 1.00279 101.43180 23.89347 1.84276 1 0 A 1.36806 102.80520 32.18680 2.51338 1 0 A @@ -22809,23 +22945,23 @@ Status character 3.56466 111.04560 80.04950 6.53708 1 0 A 3.83967 112.41900 86.01153 7.04005 1 0 A 4.02303 112.41900 89.99195 7.37536 1 0 A - 5.46660 113.79240 95.97127 7.87832 110 0 1 - 7.13577 115.16580 103.95761 8.54894 110 0 1 - 8.79717 116.53920 111.95936 9.21955 110 0 1 - 10.44939 117.91260 119.97473 9.89017 110 9 1 - 11.92337 119.28600 125.99378 10.39313 110 9 1 - 12.25868 119.28600 130.01005 10.72844 110 9 1 - 13.72154 120.65940 136.03922 11.23140 110 10 1 - 15.34212 122.03280 144.08513 11.90202 110 11 1 - 16.95392 123.40620 152.13832 12.57264 110 11 1 - 18.55807 124.77960 160.19767 13.24326 110 12 1 - 19.98808 126.15300 166.24550 13.74622 110 12 1 - 15.61823 126.15300 170.27895 9.37638 110 9 1 - 21.74846 127.52640 176.33119 14.58449 110 12 1 - 23.33775 128.89980 184.40388 15.25511 110 13 1 - 24.92465 130.27320 192.47975 15.92572 110 13 1 - 26.51022 131.64660 200.55831 16.59634 110 13 1 - 27.92785 133.02000 206.61870 17.09930 110 14 1 + 5.40367 113.79240 95.97127 7.87832 110 0 1 + 7.06794 115.16580 103.95761 8.54894 110 0 1 + 8.72425 116.53920 111.95936 9.21955 110 0 1 + 10.37124 117.91260 119.97473 9.89017 110 9 1 + 11.83988 119.28600 125.99378 10.39313 110 9 1 + 12.17519 119.28600 130.01005 10.72844 110 9 1 + 13.63263 120.65940 136.03922 11.23140 110 10 1 + 15.24777 122.03280 144.08513 11.90202 110 11 1 + 16.85413 123.40620 152.13832 12.57264 110 11 1 + 18.45290 124.77960 160.19767 13.24326 110 12 1 + 19.87759 126.15300 166.24550 13.74622 110 12 1 + 20.21290 126.15300 170.27895 14.08153 110 12 1 + 21.63279 127.52640 176.33119 14.58449 110 12 1 + 23.21700 128.89980 184.40388 15.25511 110 13 1 + 24.79891 130.27320 192.47975 15.92572 110 13 1 + 26.37952 131.64660 200.55831 16.59634 110 13 1 + 27.79220 133.02000 206.61870 17.09930 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -22840,9 +22976,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 3.132 'Hydrobiaklei' - -12.00 0.458 'Basisveen' - -12.50 36.904 'Eerste zandlaag' + -11.09 3.164 'Hydrobiaklei' + -12.00 0.374 'Basisveen' + -12.50 37.034 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22861,7 +22997,7 @@ Layer name -10.79 0.14 'Grind' -11.09 0.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.17 'Eerste zandlaag' + -12.50 14.22 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23083,8 +23219,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 476.98347 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 530.42879 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 476.98034 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 530.50127 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -23125,10 +23261,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 17.08 : Percentage mobilized resistance left - 13.94 : Percentage mobilized resistance right - 105.94 : Effective left - 128.92 : Effective right + 17.10 : Percentage mobilized resistance left + 13.96 : Percentage mobilized resistance right + 106.05 : Effective left + 129.09 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 620.14 : Max effective resistance left @@ -23137,8 +23273,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 15.09 : Vertical force left - 43.70 : Vertical force right + 15.16 : Vertical force left + 43.76 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -23147,10 +23283,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --43.70 : Active force -15.09 : Passive force --43.70 : Plugged active force -15.09 : Plugged passive force +-43.76 : Active force +15.16 : Passive force +-43.76 : Plugged active force +15.16 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -23170,192 +23306,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.67342 - 0.00000 0.00000 15.02600 - 0.00000 0.00000 14.37859 - 0.00000 0.00000 13.73117 - 0.00000 0.00000 13.08376 - 0.00000 0.00000 12.43634 - 0.00000 0.00000 12.43634 - 0.00000 0.00000 11.78893 - 0.00000 0.00000 11.14151 - 0.00000 0.00000 10.49409 - 0.00000 0.00000 9.84668 - 0.00000 0.00000 9.19926 - 0.00000 0.00000 9.19926 - 0.00339 0.08476 8.33605 - 0.02712 0.33903 7.47283 - 0.09154 0.76283 6.60961 - 0.21698 1.35613 5.74636 - 0.42379 2.11896 4.88308 - 0.42379 2.11896 4.88308 - 0.67297 2.88414 4.16364 - 1.00454 3.76704 3.44414 - 1.43030 4.76766 2.72452 - 1.96200 5.88600 2.00473 - 2.61142 7.12206 1.28475 - 2.61142 7.12206 1.28475 - 3.39034 8.47584 0.56450 - 4.31051 9.94734 -0.15609 - 5.38373 11.53656 -0.87716 - 6.62175 13.24350 -1.59880 - 8.03635 15.06816 -2.32115 - 8.03635 15.06816 -2.32115 - 9.40311 16.73152 -2.94301 - 10.91667 18.48195 -3.56560 - 12.58450 20.31944 -4.18906 - 14.41411 22.24399 -4.81350 - 16.41297 24.25562 -5.43906 - 16.41297 -162.92786 -5.43906 - -2.00262 -160.12708 -6.26975 - -20.09019 -157.17332 -7.10017 - -37.83232 -154.06658 -7.92789 - -55.21156 -150.80684 -8.75049 - -72.21047 -147.39411 -9.56556 - -72.20969 -147.40716 -9.56556 - -83.90332 -144.92091 -10.13176 - -95.39503 -142.35932 -10.69232 - -106.67880 -139.72240 -11.24649 - -117.74860 -137.01013 -11.79350 - -128.59841 -134.22252 -12.33260 - -128.59867 -134.22457 -12.33260 - -131.27609 -133.51589 -12.46605 - -133.93928 -132.80251 -12.59895 - -136.58815 -132.08442 -12.73129 - -139.22262 -131.36162 -12.86305 - -141.84259 -130.63411 -12.99423 - -141.84294 -130.63020 -12.99423 - -154.72154 -126.92202 -13.64094 - -167.22342 -123.09612 -14.27141 - -179.33684 -119.15250 -14.88436 - -191.05000 -115.09116 -15.47852 - -202.35114 -110.91210 -16.05263 - -202.35101 -110.91103 -16.05263 - -213.22826 -106.61425 -16.60543 - -223.66994 -102.19975 -17.13585 - -233.66428 -97.66753 -17.64282 - -243.19952 -93.01759 -18.12531 - -252.26387 -88.24993 -18.58227 - -252.26388 -88.24975 -18.58227 - -260.84556 -83.36437 -19.01268 - -268.93282 -78.36127 -19.41570 - -276.51389 -73.24045 -19.79054 - -283.57699 -68.00191 -20.13640 - -290.11035 -62.64565 -20.45248 - -290.11037 -62.64532 -20.45248 - -298.34465 -54.94878 -20.84350 - -305.48526 -47.02152 -21.17310 - -311.49991 -38.86352 -21.44006 - -316.35628 -30.47479 -21.64314 - -320.02208 -21.85534 -21.78111 - -320.02213 -21.85440 -21.78111 - -322.33168 -13.64402 -21.85002 - -323.56095 -5.23469 -21.86172 - -323.68408 3.37358 -21.81620 - -322.67520 12.18081 -21.71343 - -320.50845 21.18697 -21.55340 - -320.50837 21.18744 -21.55340 - -317.15782 30.39255 -21.33625 - -312.59768 39.79661 -21.06280 - -306.80208 49.39962 -20.73410 - -299.74516 59.20158 -20.35117 - -291.40105 69.20248 -19.91505 - -291.40105 69.20247 -19.91505 - -280.18047 80.94946 -19.34926 - -267.18405 92.95955 -18.71769 - -252.37245 105.23275 -18.02383 - -235.70635 117.76906 -17.27114 - -217.14639 130.56848 -16.46312 - -217.14639 130.56848 -16.46312 - -196.65326 143.63100 -15.60359 - -174.18761 156.95663 -14.69787 - -149.71012 170.54536 -13.75171 - -123.18144 184.39721 -12.77087 - -94.56224 198.51216 -11.76108 - -94.56301 198.51597 -11.76108 - -63.81339 212.89403 -10.72849 - -30.89459 227.53519 -9.68087 - 4.23274 242.43947 -8.62648 - 41.60792 257.60684 -7.57357 - 81.27030 273.03733 -6.53038 - 81.27148 273.04678 -6.53038 - 123.26179 288.74037 -5.50558 - 167.61796 304.69707 -4.50964 - 214.37933 320.91688 -3.55356 - 263.58522 337.39979 -2.64830 - 315.27498 354.14582 -1.80484 - 315.27508 354.14601 -1.80484 - 315.98353 354.27728 -1.79402 - 316.69213 354.31594 -1.78322 - 317.40080 354.35465 -1.77243 - 318.10955 354.39340 -1.76166 - 318.81837 354.43220 -1.75090 - 318.81837 354.43218 -1.75090 - 332.30092 355.17829 -1.54901 - 345.81214 355.94138 -1.35215 - 359.35268 356.72145 -1.16054 - 372.92318 357.51851 -0.97438 - 386.52430 358.33255 -0.79387 - 386.52297 -172.08442 -0.79387 - 366.03207 -169.40231 -0.26164 - 345.87319 -166.55084 0.21526 - 326.06664 -163.53002 0.63983 - 306.63275 -160.33986 1.01505 - 287.59185 -156.98033 1.34392 - 287.59226 -156.97455 1.34392 - 278.24339 -154.65620 1.49190 - 269.03331 -152.34822 1.62936 - 259.96136 -150.05210 1.75664 - 251.02682 -147.76782 1.87410 - 242.22902 -145.49392 1.98207 - 242.22974 -145.51657 1.98207 - 229.13486 -142.17216 2.12849 - 216.36746 -138.39761 2.25499 - 203.95213 -134.43711 2.36266 - 191.90503 -130.30772 2.45256 - 180.24062 -126.03025 2.52578 - 180.24037 -126.02025 2.52578 - 168.97293 -121.59586 2.58338 - 158.11352 -117.05295 2.62629 - 147.67262 -112.40035 2.65542 - 137.65960 -107.65079 2.67168 - 128.08261 -102.82090 2.67598 - 128.08277 -102.81780 2.67598 - 117.99604 -98.93264 2.66794 - 108.29169 -95.18422 2.64751 - 98.95287 -91.62566 2.61568 - 89.95858 -88.30626 2.57343 - 81.28022 -85.32874 2.52174 - 81.27598 -85.29624 2.52174 - 69.81551 -78.44742 2.43539 - 59.30402 -71.74194 2.33469 - 49.72011 -65.20036 2.22161 - 41.03919 -58.84578 2.09813 - 33.23338 -52.70369 1.96622 - 33.23523 -52.68948 1.96622 - 26.27714 -46.75289 1.82769 - 20.13308 -41.05932 1.68377 - 14.76918 -35.60915 1.53555 - 10.15080 -30.40997 1.38416 - 6.24212 -25.47350 1.23069 - 6.24071 -25.44654 1.23069 - 3.00966 -20.75692 1.07611 - 0.41628 -16.33501 0.92092 - -1.57638 -12.17528 0.76553 - -3.00503 -8.27772 0.61036 - -3.90731 -4.66245 0.45582 - -3.90571 -4.63892 0.45582 - -4.31350 -1.33854 0.30219 - -4.31615 1.19805 0.14945 - -4.00671 3.12047 -0.00246 - -3.47093 4.43196 -0.15359 - -2.79413 5.13555 -0.30399 - -2.79418 5.13463 -0.30399 - -2.02456 5.62762 -0.45381 - -1.26501 5.12273 -0.60322 - -0.61829 4.01599 -0.75234 - -0.16858 2.30831 -0.90131 - 0.00002 0.00009 -1.05023 + 0.00000 0.00000 15.67153 + 0.00000 0.00000 15.02418 + 0.00000 0.00000 14.37682 + 0.00000 0.00000 13.72946 + 0.00000 0.00000 13.08211 + 0.00000 0.00000 12.43475 + 0.00000 0.00000 12.43475 + 0.00000 0.00000 11.78740 + 0.00000 0.00000 11.14004 + 0.00000 0.00000 10.49268 + 0.00000 0.00000 9.84533 + 0.00000 0.00000 9.19797 + 0.00000 0.00000 9.19797 + 0.00339 0.08476 8.33483 + 0.02712 0.33903 7.47169 + 0.09154 0.76283 6.60855 + 0.21698 1.35613 5.74538 + 0.42379 2.11896 4.88218 + 0.42379 2.11896 4.88218 + 0.67297 2.88414 4.16281 + 1.00454 3.76704 3.44337 + 1.43030 4.76766 2.72381 + 1.96200 5.88600 2.00410 + 2.61142 7.12206 1.28417 + 2.61142 7.12206 1.28417 + 3.39034 8.47584 0.56400 + 4.31051 9.94734 -0.15654 + 5.38373 11.53656 -0.87754 + 6.62175 13.24350 -1.59912 + 8.03635 15.06816 -2.32139 + 8.03635 15.06816 -2.32139 + 9.40311 16.73152 -2.94320 + 10.91667 18.48195 -3.56574 + 12.58450 20.31944 -4.18913 + 14.41411 22.24399 -4.81352 + 16.41297 24.25562 -5.43902 + 16.41297 -162.92472 -5.43902 + -2.00226 -160.12395 -6.26964 + -20.08948 -157.17019 -7.09998 + -37.83125 -154.06345 -7.92763 + -55.21013 -150.80371 -8.75016 + -72.20868 -147.39098 -9.56515 + -72.20790 -147.40404 -9.56515 + -83.90128 -144.91780 -10.13130 + -95.39274 -142.35621 -10.69181 + -106.67626 -139.71928 -11.24593 + -117.74582 -137.00701 -11.79289 + -128.59538 -134.21940 -12.33193 + -128.59564 -134.22145 -12.33193 + -131.27299 -133.51278 -12.46537 + -133.93612 -132.79940 -12.59826 + -136.58494 -132.08130 -12.73058 + -139.21934 -131.35850 -12.86233 + -141.83925 -130.63099 -12.99350 + -141.83960 -130.62709 -12.99350 + -154.71788 -126.91891 -13.64015 + -167.21946 -123.09301 -14.27056 + -179.33256 -119.14939 -14.88344 + -191.04541 -115.08805 -15.47754 + -202.34624 -110.90899 -16.05158 + -202.34611 -110.90791 -16.05158 + -213.22304 -106.61113 -16.60433 + -223.66441 -102.19663 -17.13468 + -233.65844 -97.66441 -17.64160 + -243.19337 -93.01447 -18.12403 + -252.25741 -88.24681 -18.58093 + -252.25741 -88.24663 -18.58093 + -260.83879 -83.36125 -19.01128 + -268.92574 -78.35815 -19.41424 + -276.50649 -73.23733 -19.78902 + -283.56928 -67.99879 -20.13483 + -290.10233 -62.64253 -20.45086 + -290.10235 -62.64220 -20.45086 + -298.33619 -54.94566 -20.84179 + -305.47637 -47.01840 -21.17132 + -311.49058 -38.86040 -21.43821 + -316.34651 -30.47167 -21.64122 + -320.01188 -21.85222 -21.77912 + -320.01192 -21.85128 -21.77912 + -322.32107 -13.64090 -21.84797 + -323.54994 -5.23157 -21.85961 + -323.67266 3.37670 -21.81403 + -322.66337 12.18393 -21.71121 + -320.49622 21.19009 -21.55113 + -320.49613 21.19056 -21.55113 + -317.14518 30.39567 -21.33392 + -312.58464 39.79974 -21.06043 + -306.78863 49.40274 -20.73168 + -299.73130 59.20470 -20.34871 + -291.38679 69.20560 -19.91254 + -291.38679 69.20560 -19.91254 + -280.16574 80.95258 -19.34671 + -267.16885 92.96268 -18.71510 + -252.35679 105.23588 -18.02119 + -235.69022 117.77218 -17.26848 + -217.12980 130.57160 -16.46043 + -217.12980 130.57160 -16.46043 + -196.63620 143.63412 -15.60086 + -174.17008 156.95975 -14.69512 + -149.69212 170.54848 -13.74894 + -123.16297 184.40033 -12.76808 + -94.54331 198.51528 -11.75829 + -94.54408 198.51909 -11.75829 + -63.79400 212.89715 -10.72569 + -30.87472 227.53831 -9.67807 + 4.25307 242.44259 -8.62369 + 41.62872 257.60996 -7.57079 + 81.29156 273.04045 -6.52761 + 81.29275 273.04987 -6.52761 + 123.28352 288.74346 -5.50282 + 167.64015 304.70016 -4.50691 + 214.40198 320.91997 -3.55086 + 263.60833 337.40288 -2.64563 + 315.29855 354.14890 -1.80221 + 315.29865 354.14907 -1.80221 + 316.00711 354.28035 -1.79140 + 316.71571 354.31900 -1.78059 + 317.42439 354.35771 -1.76981 + 318.13314 354.39646 -1.75903 + 318.84197 354.43526 -1.74827 + 318.84197 354.43524 -1.74827 + 332.32463 355.18135 -1.54639 + 345.83597 355.94444 -1.34955 + 359.37663 356.72451 -1.15795 + 372.94725 357.52157 -0.97180 + 386.54848 358.33561 -0.79130 + 386.54714 -172.15380 -0.79130 + 366.04792 -169.47169 -0.25911 + 345.88071 -166.62022 0.21774 + 326.06584 -163.59940 0.64226 + 306.62363 -160.40924 1.01744 + 287.57440 -157.04971 1.34627 + 287.57491 -157.04754 1.34627 + 278.22165 -154.72920 1.49422 + 269.00720 -152.42122 1.63166 + 259.93087 -150.12509 1.75893 + 250.99195 -147.84082 1.87637 + 242.18976 -145.56692 1.98433 + 242.19048 -145.58972 1.98433 + 229.08899 -142.24545 2.13072 + 216.31473 -138.47507 2.25721 + 203.89218 -134.51849 2.36486 + 191.83750 -130.39278 2.45475 + 180.16519 -126.11872 2.52797 + 180.16514 -126.11375 2.52797 + 168.88904 -121.69248 2.58558 + 158.02071 -117.15236 2.62850 + 147.57064 -112.50221 2.65765 + 137.54826 -107.75475 2.67394 + 127.96173 -102.92657 2.67827 + 127.96187 -102.92361 2.67827 + 117.87125 -98.93793 2.67028 + 108.16641 -95.18860 2.64992 + 98.82721 -91.62885 2.61817 + 89.83266 -88.30849 2.57602 + 81.15411 -85.33024 2.52443 + 81.14982 -85.29736 2.52443 + 69.68958 -78.44295 2.43825 + 59.17913 -71.73150 2.33775 + 49.59713 -65.18353 2.22489 + 40.91903 -58.82207 2.10166 + 33.11705 -52.67259 1.97003 + 33.11892 -52.65831 1.97003 + 26.16547 -46.71680 1.83180 + 20.02705 -41.01463 1.68819 + 14.67005 -35.55521 1.54032 + 10.05991 -30.34606 1.38928 + 6.16092 -25.39888 1.23620 + 6.15952 -25.37210 1.23620 + 2.93969 -20.67098 1.08202 + 0.35919 -16.23675 0.92724 + -1.61880 -12.06387 0.77227 + -3.03088 -8.15229 0.61753 + -3.91422 -4.51446 0.46343 + -3.91262 -4.49093 0.46343 + -4.31114 -1.30515 0.31024 + -4.30680 1.26477 0.15794 + -3.98558 3.22227 0.00646 + -3.43299 4.57060 -0.14423 + -2.73410 5.31276 -0.29422 + -2.73415 5.31185 -0.29422 + -1.97376 5.45044 -0.44362 + -1.23610 4.98745 -0.59263 + -0.60529 3.92422 -0.74135 + -0.16529 2.26163 -0.88993 + 0.00002 0.00008 -1.03846 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -23581,7 +23717,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -23593,7 +23729,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -23760,53 +23896,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 12.35343 100.76161 31.86408 3.83947 110 39 1 - 13.20244 101.65432 33.06586 4.18246 110 40 1 - 13.97609 102.54703 34.26739 4.52546 110 41 1 - 14.67870 103.43974 35.46867 4.86846 110 41 1 - 15.22884 104.33245 36.36949 5.12571 110 42 1 - 15.40034 104.33245 36.96996 5.29720 110 42 1 - 15.88798 105.22516 37.87056 5.55445 110 42 1 - 16.40262 106.11787 39.07118 5.89745 110 42 1 - 16.86214 107.01058 40.27161 6.24045 110 42 1 - 17.27018 107.90329 41.47185 6.58344 110 42 1 - 17.54461 108.79600 42.37192 6.84069 110 41 1 - 12.89620 108.79600 25.59840 7.93223 220 50 2 - 14.89007 106.77700 29.70475 9.70495 220 50 2 - 17.36360 104.75800 35.16081 12.06858 110 49 1 - 19.66357 102.73900 40.59674 14.43220 110 48 1 - 21.94269 100.72000 46.01595 16.79583 110 48 1 - 23.61203 98.70100 50.07174 18.56855 110 47 1 - 42.58009 98.70100 177.20934 12.31919 110 24 1 - 42.04685 100.07440 165.98087 12.82216 110 25 1 - 41.50904 101.44780 168.35015 13.49277 110 25 1 - 40.82272 102.82120 174.33058 14.16339 110 23 1 - 40.01157 104.19460 181.36358 14.83401 110 22 1 - 38.93165 105.56800 186.93725 15.33697 110 21 1 - 39.30329 105.56800 190.74477 15.70861 110 21 1 - 38.10758 106.94140 196.54307 16.17524 110 19 1 - 37.05109 108.31480 204.37210 16.84586 110 18 1 - 35.94314 109.68820 212.27871 17.51648 110 17 1 - 34.79702 111.06160 220.23553 18.18709 110 16 1 - 33.45837 112.43500 226.22528 18.69006 110 15 1 - 33.79368 112.43500 230.22741 19.02537 110 15 1 - 32.44169 113.80840 236.24102 19.52833 110 14 1 - 31.25001 115.18180 244.27295 20.19895 110 13 1 - 30.05597 116.55520 252.31767 20.86956 110 12 1 - 28.86452 117.92860 260.37206 21.54018 110 11 1 - 27.51299 119.30200 266.41766 22.04314 110 10 1 - 29.58822 119.30200 270.45017 24.11838 110 11 1 - 26.50774 120.67540 276.50161 22.88141 110 10 1 - 25.34546 122.04880 284.57394 23.55203 110 9 1 - 24.19317 123.42220 292.65001 24.22265 110 0 1 - 23.05022 124.79560 300.72910 24.89327 110 0 1 - 21.74832 126.16900 306.79002 25.39623 110 0 1 - 22.08362 126.16900 310.83135 25.73154 110 0 1 - 20.78880 127.54240 316.89433 26.23450 110 0 1 - 19.66651 128.91580 324.97970 26.90512 110 0 1 - 18.54763 130.28920 333.06652 27.57574 110 0 1 - 17.43068 131.66260 341.15457 28.24635 110 0 1 - 16.14655 133.03600 347.22126 28.74932 110 0 1 + 12.36236 100.76161 31.86408 3.83947 110 39 1 + 13.21129 101.65432 33.06586 4.18246 110 40 1 + 13.98489 102.54703 34.26739 4.52546 110 41 1 + 14.68747 103.43974 35.46867 4.86846 110 41 1 + 15.23760 104.33245 36.36949 5.12571 110 42 1 + 15.40910 104.33245 36.96996 5.29720 110 42 1 + 15.89675 105.22516 37.87056 5.55445 110 42 1 + 16.41144 106.11787 39.07118 5.89745 110 42 1 + 16.87104 107.01058 40.27161 6.24045 110 42 1 + 17.27919 107.90329 41.47185 6.58344 110 42 1 + 17.55377 108.79600 42.37192 6.84069 110 41 1 + 12.89711 108.79600 25.59840 7.93223 220 50 2 + 14.89100 106.77700 29.70475 9.70495 220 50 2 + 17.36842 104.75800 35.16081 12.06858 110 49 1 + 19.66855 102.73900 40.59674 14.43220 110 48 1 + 21.94786 100.72000 46.01595 16.79583 110 48 1 + 23.61741 98.70100 50.07174 18.56855 110 47 1 + 42.61239 98.70100 177.20934 12.31919 110 24 1 + 42.08121 100.07440 165.98087 12.82216 110 25 1 + 41.54577 101.44780 168.35015 13.49277 110 25 1 + 40.86212 102.82120 174.33058 14.16339 110 23 1 + 40.05395 104.19460 181.36358 14.83401 110 22 1 + 38.97730 105.56800 186.93725 15.33697 110 21 1 + 39.31261 105.56800 190.74477 15.67228 110 21 1 + 38.15679 106.94140 196.54307 16.17524 110 19 1 + 37.10414 108.31480 204.37210 16.84586 110 18 1 + 36.00029 109.68820 212.27871 17.51648 110 17 1 + 34.85851 111.06160 220.23553 18.18709 110 16 1 + 33.52442 112.43500 226.22528 18.69006 110 15 1 + 33.85973 112.43500 230.22741 19.02537 110 15 1 + 32.51252 113.80840 236.24102 19.52833 110 14 1 + 31.32578 115.18180 244.27295 20.19895 110 13 1 + 30.13681 116.55520 252.31767 20.86956 110 12 1 + 28.95055 117.92860 260.37206 21.54018 110 11 1 + 27.60426 119.30200 266.41766 22.04314 110 10 1 + 27.93957 119.30200 270.45017 22.37845 110 10 1 + 26.60429 120.67540 276.50161 22.88141 110 10 1 + 25.44728 122.04880 284.57394 23.55203 110 9 1 + 24.30022 123.42220 292.65001 24.22265 110 8 1 + 23.16245 124.79560 300.72910 24.89327 110 0 1 + 21.86563 126.16900 306.79002 25.39623 110 0 1 + 22.20094 126.16900 310.83135 25.73154 110 0 1 + 20.91106 127.54240 316.89433 26.23450 110 0 1 + 19.79361 128.91580 324.97970 26.90512 110 0 1 + 18.67949 130.28920 333.06652 27.57574 110 0 1 + 17.56725 131.66260 341.15457 28.24635 110 0 1 + 16.28782 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23824,9 +23960,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 13.172 'Hydrobiaklei' - -12.00 9.211 'Basisveen' - -12.50 106.541 'Eerste zandlaag' + -10.00 13.180 'Hydrobiaklei' + -12.00 9.213 'Basisveen' + -12.50 106.700 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -23848,7 +23984,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.80 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -40.90 'Eerste zandlaag' + -12.50 -40.96 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23972,24 +24108,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -24064,8 +24200,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -24083,7 +24219,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -24095,7 +24231,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -24125,7 +24261,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -24266,13 +24402,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -24285,24 +24421,24 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 2.49794 69.84300 58.91108 10.23728 110 0 1 - 8.70552 70.73571 59.07501 10.45829 110 0 1 - 7.77129 71.62842 59.55950 10.80128 110 0 1 - 6.92232 72.52113 60.24321 11.14428 110 0 1 - 6.15434 73.41384 61.05177 11.48728 110 0 1 - 5.46308 74.30655 61.71273 11.74453 110 0 1 - 5.46308 74.30655 62.17548 11.91602 110 0 1 - 4.84438 75.19926 62.89559 12.17327 110 0 1 - 4.29445 76.09197 63.89046 12.51627 110 0 1 - 3.80964 76.98468 64.91817 12.85927 110 0 1 - 3.38629 77.87739 65.97136 13.20226 110 0 1 - 3.02076 78.77010 66.77420 13.45951 110 0 1 - 10.14802 78.77010 41.96461 15.49997 110 0 1 - 6.93727 82.75110 38.00268 12.27314 110 0 1 - 4.89466 86.73210 32.76169 10.18968 110 0 1 - 2.87486 90.71310 27.56116 8.10622 110 0 1 - 1.45986 94.69410 22.39249 6.02276 110 0 1 - 0.52132 98.67510 18.53208 4.46017 110 0 1 + 2.46152 69.84300 58.91108 10.20104 110 0 1 + 8.75356 70.73571 59.07501 10.45829 110 0 1 + 7.81724 71.62842 59.55950 10.80128 110 0 1 + 6.96601 72.52113 60.24321 11.14428 110 0 1 + 6.19560 73.41384 61.05177 11.48728 110 0 1 + 5.50175 74.30655 61.71273 11.74453 110 0 1 + 5.50175 74.30655 62.17548 11.91602 110 0 1 + 4.88026 75.19926 62.89559 12.17327 110 0 1 + 4.32736 76.09197 63.89046 12.51627 110 0 1 + 3.83940 76.98468 64.91817 12.85927 110 0 1 + 3.41275 77.87739 65.97136 13.20226 110 0 1 + 3.04377 78.77010 66.77420 13.45951 110 0 1 + 8.47920 78.77010 41.96461 13.83574 110 0 1 + 6.93258 82.75110 38.00268 12.27314 110 0 1 + 4.88983 86.73210 32.76169 10.18968 110 0 1 + 2.86987 90.71310 27.56116 8.10622 110 0 1 + 1.45902 94.69410 22.39249 6.02276 110 0 1 + 0.52044 98.67510 18.53208 4.46017 110 0 1 1.43664 98.67510 33.91813 2.66609 1 0 A 1.70862 100.04850 40.08908 3.16905 1 0 A 2.07185 101.42190 48.22870 3.83967 1 0 A @@ -24320,19 +24456,19 @@ Status character 5.73470 115.15590 128.12317 10.54584 1 0 A 6.10246 116.52930 136.13813 11.21646 1 0 A 6.47026 117.90270 144.16229 11.88707 1 0 A - 6.92019 119.27610 150.18570 12.39004 110 0 1 - 7.25550 119.27610 154.20390 12.72534 110 0 1 - 9.60198 120.64950 160.23477 13.22831 110 0 1 - 12.10550 122.02290 168.28135 13.89892 110 0 1 - 14.59903 123.39630 176.33377 14.56954 110 8 1 - 17.08321 124.76970 184.39132 15.24016 110 9 1 - 19.39103 126.14310 190.43734 15.74312 110 10 1 - 15.02822 126.14310 194.46939 11.38031 110 8 1 - 22.02710 127.51650 200.51935 16.58139 110 11 1 - 24.49062 128.88990 208.58880 17.25201 110 12 1 - 26.95073 130.26330 216.66126 17.92263 110 12 1 - 29.40891 131.63670 224.73639 18.59324 110 13 1 - 31.69897 133.01010 230.79421 19.09621 110 14 1 + 6.82892 119.27610 150.18570 12.39004 110 0 1 + 7.16422 119.27610 154.20390 12.72534 110 0 1 + 9.50543 120.64950 160.23477 13.22831 110 0 1 + 12.00368 122.02290 168.28135 13.89892 110 0 1 + 14.49197 123.39630 176.33377 14.56954 110 0 1 + 16.97098 124.76970 184.39132 15.24016 110 9 1 + 19.27372 126.14310 190.43734 15.74312 110 10 1 + 19.60903 126.14310 194.46939 16.07843 110 10 1 + 21.90483 127.51650 200.51935 16.58139 110 11 1 + 24.36352 128.88990 208.58880 17.25201 110 12 1 + 26.81888 130.26330 216.66126 17.92263 110 12 1 + 29.27234 131.63670 224.73639 18.59324 110 13 1 + 31.55770 133.01010 230.79421 19.09621 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -24347,9 +24483,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 4.924 'Hydrobiaklei' - -12.00 2.150 'Basisveen' - -12.50 35.604 'Eerste zandlaag' + -11.09 4.955 'Hydrobiaklei' + -12.00 2.065 'Basisveen' + -12.50 35.763 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -24368,7 +24504,7 @@ Layer name -10.79 0.38 'Grind' -11.09 1.05 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.67 'Eerste zandlaag' + -12.50 13.73 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -24575,7 +24711,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=7 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -24590,8 +24726,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 527.68946 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 620.84821 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 527.68731 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 620.85693 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -24635,10 +24771,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 24.42 : Percentage mobilized resistance left - 21.81 : Percentage mobilized resistance right - 151.45 : Effective left - 135.24 : Effective right + 24.46 : Percentage mobilized resistance left + 21.85 : Percentage mobilized resistance right + 151.71 : Effective left + 135.52 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -24647,8 +24783,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 30.18 : Vertical force left - 24.50 : Vertical force right + 30.31 : Vertical force left + 24.64 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -24657,17 +24793,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.50 : Active force -30.18 : Passive force --24.50 : Plugged active force -30.18 : Plugged passive force +-24.64 : Active force +30.31 : Passive force +-24.64 : Plugged active force +30.31 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -5.67 : Resulting Vertical Force Unplugged -5.67 : Resulting Vertical Force Plugged +5.66 : Resulting Vertical Force Unplugged +5.66 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -24680,192 +24816,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.00135 - 0.00000 0.00000 -7.94040 - 0.00000 0.00000 -7.87946 - 0.00000 0.00000 -7.81851 - 0.00000 0.00000 -7.75757 - 0.00000 0.00000 -7.69662 - 0.00000 0.00000 -7.69662 - 0.00000 0.00000 -7.63568 - 0.00000 0.00000 -7.57473 - 0.00000 0.00000 -7.51379 - 0.00000 0.00000 -7.45284 - 0.00000 0.00000 -7.39190 - 0.00000 0.00000 -7.39190 - 0.00000 0.00000 -7.31064 - 0.00000 0.00000 -7.22938 - 0.00000 0.00000 -7.14812 - 0.00000 0.00000 -7.06686 - 0.00000 0.00000 -6.98560 - 0.00000 0.00000 -6.98560 - 0.00000 0.00000 -6.91789 - 0.00000 0.00000 -6.85017 - 0.00000 0.00000 -6.78245 - 0.00000 0.00000 -6.71474 - 0.00000 0.00000 -6.64702 - 0.00000 0.00000 -6.64702 - 0.00000 0.00000 -6.57930 - 0.00000 0.00000 -6.51159 - 0.00000 0.00000 -6.44387 - 0.00000 0.00000 -6.37615 - 0.00000 0.00000 -6.30844 - 0.00000 0.00000 -6.30844 - 0.00000 0.00000 -6.25020 - 0.00000 0.00000 -6.19197 - 0.00000 0.00000 -6.13373 - 0.00000 0.00000 -6.07549 - 0.00000 0.00000 -6.01726 - 0.00000 0.19054 -6.01726 - 0.02172 0.19054 -5.94006 - 0.04344 0.19054 -5.86287 - 0.06516 0.19054 -5.78568 - 0.08689 0.19054 -5.70850 - 0.10861 0.19054 -5.63134 - 0.10938 0.17749 -5.63134 - 0.12358 0.17749 -5.57719 - 0.13778 0.17749 -5.52306 - 0.15198 0.17749 -5.46893 - 0.16618 0.17749 -5.41482 - 0.18038 0.17749 -5.36071 - 0.18012 0.17544 -5.36071 - 0.18363 0.17544 -5.34719 - 0.18714 0.17544 -5.33367 - 0.19064 0.17544 -5.32014 - 0.19415 0.17544 -5.30662 - 0.19766 0.17544 -5.29310 - 0.19731 0.17935 -5.29310 - 0.21524 0.17935 -5.22551 - 0.23318 0.17935 -5.15794 - 0.25111 0.17935 -5.09039 - 0.26905 0.17935 -5.02287 - 0.28698 0.17935 -4.95538 - 0.28712 0.18042 -4.95538 - 0.30516 0.18042 -4.88792 - 0.32320 0.18042 -4.82049 - 0.34124 0.18042 -4.75310 - 0.35928 0.18042 -4.68574 - 0.37733 0.18042 -4.61842 - 0.37733 0.18060 -4.61842 - 0.39539 0.18060 -4.55114 - 0.41345 0.18060 -4.48390 - 0.43151 0.18060 -4.41670 - 0.44957 0.18060 -4.34955 - 0.46763 0.18060 -4.28244 - 0.46761 0.18094 -4.28244 - 0.49294 0.18094 -4.18858 - 0.51827 0.18094 -4.09482 - 0.54360 0.18094 -4.00116 - 0.56893 0.18094 -3.90762 - 0.59426 0.18094 -3.81420 - 0.59421 0.18187 -3.81420 - 0.61786 0.18187 -3.72755 - 0.64150 0.18187 -3.64102 - 0.66514 0.18187 -3.55460 - 0.68878 0.18187 -3.46830 - 0.71243 0.18187 -3.38212 - 0.71251 0.18233 -3.38212 - 0.73622 0.18233 -3.29606 - 0.75992 0.18233 -3.21014 - 0.78362 0.18233 -3.12435 - 0.80732 0.18233 -3.03870 - 0.83103 0.18233 -2.95320 - 0.83103 0.18233 -2.95320 - 0.85828 0.18233 -2.85505 - 0.88554 0.18233 -2.75710 - 0.91280 0.18233 -2.65936 - 0.94006 0.18233 -2.56184 - 0.96731 0.18233 -2.46453 - 0.96731 0.18233 -2.46453 - 0.99457 0.18233 -2.36745 - 1.02183 0.18233 -2.27061 - 1.04909 0.18233 -2.17401 - 1.07635 0.18233 -2.07765 - 1.10360 0.18233 -1.98154 - 1.10283 0.18614 -1.98154 - 1.13066 0.18614 -1.88569 - 1.15849 0.18614 -1.79011 - 1.18632 0.18614 -1.69480 - 1.21414 0.18614 -1.59977 - 1.24197 0.18614 -1.50502 - 1.24315 0.19559 -1.50502 - 1.27239 0.19559 -1.41057 - 1.30163 0.19559 -1.31641 - 1.33088 0.19559 -1.22256 - 1.36012 0.19559 -1.12902 - 1.38936 0.19559 -1.03580 - 1.38946 0.19578 -1.03580 - 1.38985 0.19578 -1.03455 - 1.39024 0.19578 -1.03331 - 1.39063 0.19578 -1.03206 - 1.39102 0.19578 -1.03082 - 1.39142 0.19578 -1.02958 - 1.39142 0.19577 -1.02958 - 1.39886 0.19577 -1.00594 - 1.40630 0.19577 -0.98232 - 1.41373 0.19577 -0.95873 - 1.42117 0.19577 -0.93515 - 1.42861 0.19577 -0.91160 - 1.42728 19.43938 -0.91160 - 3.76000 19.43938 -0.83743 - 6.09273 19.43938 -0.76382 - 8.42545 19.43938 -0.69114 - 10.75818 19.43938 -0.61973 - 13.09090 19.43938 -0.54994 - 13.09136 19.44436 -0.54994 - 14.18565 17.01258 -0.51577 - 15.13032 14.45319 -0.48214 - 15.91732 11.75790 -0.44908 - 16.53862 8.93040 -0.41661 - 16.98664 5.98638 -0.38476 - 16.98757 5.95974 -0.38476 - 17.47715 4.83181 -0.33771 - 17.87171 3.86046 -0.29217 - 18.18348 3.01190 -0.24818 - 18.42352 2.28367 -0.20576 - 18.60254 1.66862 -0.16495 - 18.60224 1.67348 -0.16495 - 18.73142 1.18314 -0.12576 - 18.82085 0.80096 -0.08820 - 18.88054 0.52910 -0.05227 - 18.92041 0.36503 -0.01798 - 18.95003 0.30156 0.01466 - 18.95011 0.30170 0.01466 - 18.97905 0.28457 0.04863 - 19.00833 0.30654 0.08061 - 19.04116 0.35242 0.11059 - 19.07811 0.37718 0.13857 - 19.11672 0.40564 0.16455 - 19.11910 0.39350 0.16455 - 19.26707 1.53294 0.19754 - 19.50844 1.81765 0.22655 - 19.72147 0.93350 0.25155 - 19.70627 -1.31235 0.27254 - 19.34007 -3.85705 0.28948 - 19.33560 -3.88126 0.28948 - 18.63756 -6.02912 0.30239 - 17.66489 -7.80319 0.31147 - 16.47017 -9.20234 0.31695 - 15.10543 -10.23314 0.31908 - 13.62142 -10.90972 0.31810 - 13.61983 -10.88066 0.31810 - 12.07079 -11.19274 0.31429 - 10.50156 -11.16839 0.30800 - 8.95924 -10.80980 0.29955 - 7.49004 -10.12512 0.28924 - 6.13808 -9.14304 0.27738 - 6.13972 -9.11623 0.27738 - 4.94051 -8.02421 0.26429 - 3.89039 -6.98702 0.25019 - 2.98141 -6.00837 0.23525 - 2.20517 -5.09123 0.21968 - 1.55289 -4.23778 0.20366 - 1.55294 -4.23717 0.20366 - 1.02381 -3.36188 0.18735 - 0.60447 -2.63981 0.17083 - 0.28501 -1.91034 0.15416 - 0.07571 -1.04926 0.13742 - -0.00001 -0.00004 0.12066 + 0.00000 0.00000 -8.00298 + 0.00000 0.00000 -7.94198 + 0.00000 0.00000 -7.88099 + 0.00000 0.00000 -7.81999 + 0.00000 0.00000 -7.75899 + 0.00000 0.00000 -7.69800 + 0.00000 0.00000 -7.69800 + 0.00000 0.00000 -7.63700 + 0.00000 0.00000 -7.57601 + 0.00000 0.00000 -7.51501 + 0.00000 0.00000 -7.45402 + 0.00000 0.00000 -7.39302 + 0.00000 0.00000 -7.39302 + 0.00000 0.00000 -7.31169 + 0.00000 0.00000 -7.23037 + 0.00000 0.00000 -7.14904 + 0.00000 0.00000 -7.06771 + 0.00000 0.00000 -6.98638 + 0.00000 0.00000 -6.98638 + 0.00000 0.00000 -6.91861 + 0.00000 0.00000 -6.85084 + 0.00000 0.00000 -6.78307 + 0.00000 0.00000 -6.71529 + 0.00000 0.00000 -6.64752 + 0.00000 0.00000 -6.64752 + 0.00000 0.00000 -6.57975 + 0.00000 0.00000 -6.51197 + 0.00000 0.00000 -6.44420 + 0.00000 0.00000 -6.37643 + 0.00000 0.00000 -6.30866 + 0.00000 0.00000 -6.30866 + 0.00000 0.00000 -6.25037 + 0.00000 0.00000 -6.19209 + 0.00000 0.00000 -6.13380 + 0.00000 0.00000 -6.07552 + 0.00000 0.00000 -6.01723 + 0.00000 0.19269 -6.01723 + 0.02197 0.19269 -5.93997 + 0.04393 0.19269 -5.86272 + 0.06590 0.19269 -5.78546 + 0.08787 0.19269 -5.70822 + 0.10984 0.19269 -5.63099 + 0.11061 0.17963 -5.63099 + 0.12498 0.17963 -5.57680 + 0.13935 0.17963 -5.52262 + 0.15373 0.17963 -5.46845 + 0.16810 0.17963 -5.41429 + 0.18247 0.17963 -5.36014 + 0.18220 0.17758 -5.36014 + 0.18575 0.17758 -5.34661 + 0.18931 0.17758 -5.33307 + 0.19286 0.17758 -5.31954 + 0.19641 0.17758 -5.30601 + 0.19996 0.17758 -5.29248 + 0.19961 0.18149 -5.29248 + 0.21775 0.18149 -5.22483 + 0.23590 0.18149 -5.15720 + 0.25405 0.18149 -5.08960 + 0.27220 0.18149 -5.02203 + 0.29035 0.18149 -4.95449 + 0.29049 0.18256 -4.95449 + 0.30874 0.18256 -4.88697 + 0.32700 0.18256 -4.81949 + 0.34525 0.18256 -4.75204 + 0.36351 0.18256 -4.68463 + 0.38177 0.18256 -4.61726 + 0.38177 0.18275 -4.61726 + 0.40004 0.18275 -4.54993 + 0.41832 0.18275 -4.48263 + 0.43659 0.18275 -4.41539 + 0.45487 0.18275 -4.34819 + 0.47314 0.18275 -4.28103 + 0.47312 0.18308 -4.28103 + 0.49875 0.18308 -4.18710 + 0.52438 0.18308 -4.09327 + 0.55001 0.18308 -3.99955 + 0.57564 0.18308 -3.90595 + 0.60127 0.18308 -3.81246 + 0.60123 0.18402 -3.81246 + 0.62515 0.18402 -3.72576 + 0.64907 0.18402 -3.63917 + 0.67299 0.18402 -3.55269 + 0.69691 0.18402 -3.46634 + 0.72084 0.18402 -3.38011 + 0.72092 0.18448 -3.38011 + 0.74490 0.18448 -3.29400 + 0.76889 0.18448 -3.20803 + 0.79287 0.18448 -3.12220 + 0.81685 0.18448 -3.03650 + 0.84083 0.18448 -2.95095 + 0.84083 0.18447 -2.95095 + 0.86841 0.18447 -2.85276 + 0.89599 0.18447 -2.75476 + 0.92357 0.18447 -2.65698 + 0.95115 0.18447 -2.55941 + 0.97872 0.18447 -2.46207 + 0.97872 0.18447 -2.46207 + 1.00630 0.18447 -2.36496 + 1.03388 0.18447 -2.26808 + 1.06146 0.18447 -2.17145 + 1.08904 0.18447 -2.07506 + 1.11662 0.18447 -1.97893 + 1.11585 0.18829 -1.97893 + 1.14399 0.18829 -1.88306 + 1.17214 0.18829 -1.78746 + 1.20029 0.18829 -1.69214 + 1.22844 0.18829 -1.59709 + 1.25659 0.18829 -1.50234 + 1.25777 0.19770 -1.50234 + 1.28733 0.19770 -1.40788 + 1.31689 0.19770 -1.31372 + 1.34644 0.19770 -1.21987 + 1.37600 0.19770 -1.12634 + 1.40556 0.19770 -1.03313 + 1.40565 0.19787 -1.03313 + 1.40605 0.19787 -1.03188 + 1.40644 0.19787 -1.03064 + 1.40684 0.19787 -1.02940 + 1.40724 0.19787 -1.02815 + 1.40763 0.19787 -1.02691 + 1.40763 0.19785 -1.02691 + 1.41515 0.19785 -1.00327 + 1.42267 0.19785 -0.97966 + 1.43019 0.19785 -0.95607 + 1.43771 0.19785 -0.93250 + 1.44522 0.19785 -0.90895 + 1.44389 19.43278 -0.90895 + 3.77582 19.43278 -0.83479 + 6.10775 19.43278 -0.76120 + 8.43969 19.43278 -0.68854 + 10.77162 19.43278 -0.61715 + 13.10356 19.43278 -0.54739 + 13.10410 19.43414 -0.54739 + 14.19779 17.00245 -0.51323 + 15.14184 14.44315 -0.47961 + 15.92825 11.74794 -0.44656 + 16.54895 8.92053 -0.41411 + 16.99638 5.97660 -0.38228 + 16.99730 5.94982 -0.38228 + 17.48593 4.81996 -0.33524 + 17.87922 3.84465 -0.28973 + 18.18938 2.99235 -0.24576 + 18.42749 2.26063 -0.20337 + 18.60426 1.64233 -0.16258 + 18.60415 1.64216 -0.16258 + 18.73034 1.14886 -0.12342 + 18.81653 0.76399 -0.08588 + 18.87275 0.48975 -0.04998 + 18.90894 0.32363 -0.01571 + 18.93471 0.25844 0.01691 + 18.93477 0.25844 0.01691 + 18.95942 0.24193 0.05085 + 18.98447 0.26474 0.08281 + 19.01317 0.31168 0.11277 + 19.04609 0.33723 0.14074 + 19.08077 0.36749 0.16671 + 19.08310 0.35579 0.16671 + 19.22645 1.50680 0.19968 + 19.46512 1.80314 0.22869 + 19.67682 0.93142 0.25370 + 19.66229 -1.30378 0.27470 + 19.29738 -3.84709 0.29167 + 19.29295 -3.87115 0.29167 + 18.59639 -6.01809 0.30461 + 17.62531 -7.79170 0.31373 + 16.43219 -9.19089 0.31927 + 15.06902 -10.22220 0.32145 + 13.58648 -10.89981 0.32053 + 13.58490 -10.87091 0.32053 + 12.03713 -11.18452 0.31680 + 10.46891 -11.16220 0.31059 + 8.92728 -10.80617 0.30222 + 7.45838 -10.12454 0.29200 + 6.10663 -9.13833 0.28025 + 6.10826 -9.11154 0.28025 + 4.91052 -8.00775 0.26726 + 3.86356 -6.95836 0.25327 + 2.95947 -5.96704 0.23845 + 2.18994 -5.03675 0.22300 + 1.54623 -4.16966 0.20710 + 1.54628 -4.16906 0.20710 + 1.01955 -3.36664 0.19092 + 0.60056 -2.62991 0.17453 + 0.28302 -1.89635 0.15799 + 0.07521 -1.04213 0.14137 + -0.00001 -0.00004 0.12474 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24986,24 +25122,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -25078,8 +25214,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -25097,7 +25233,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -25109,7 +25245,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -25139,7 +25275,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -25280,13 +25416,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -25299,54 +25435,54 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.76994 69.84300 58.91108 10.23728 110 0 1 - 9.10746 70.73571 59.07501 10.45829 110 0 1 - 9.63261 71.62842 59.55950 10.80128 110 0 1 - 10.15156 72.52113 60.24321 11.14428 110 0 1 - 10.66422 73.41384 61.05177 11.48728 110 0 1 - 11.08472 74.30655 61.71273 11.74453 110 0 1 - 11.25622 74.30655 62.17548 11.91602 110 0 1 - 11.67022 75.19926 62.89559 12.17327 110 0 1 - 12.16347 76.09197 63.89046 12.51627 110 0 1 - 12.65018 76.98468 64.91817 12.85927 110 0 1 - 13.13033 77.87739 65.97136 13.20226 110 0 1 - 13.51814 78.77010 66.77420 13.45951 110 20 1 - 15.14130 78.77010 41.96461 15.49997 110 0 1 - 12.21964 82.75110 38.00268 12.27314 110 0 1 - 10.35089 86.73210 32.76169 10.18968 110 32 1 - 8.32740 90.71310 27.56116 8.10622 110 30 1 - 6.29990 94.69410 22.39249 6.02276 110 28 1 - 5.73970 98.67510 18.53208 4.46017 110 31 1 - 30.56979 98.67510 33.91813 2.66609 330 90 3 - 25.80276 100.04850 40.08908 3.16905 220 64 2 - 24.95655 101.42190 48.22870 3.83967 220 52 2 - 15.59643 102.79530 56.28858 4.51028 110 28 1 - 8.45135 104.16870 64.29642 5.18090 110 13 1 - 9.15759 105.54210 70.28227 5.68386 110 13 1 - 9.49290 105.54210 74.26662 6.01917 110 13 1 - 10.15082 106.91550 80.23883 6.52214 110 13 1 - 10.93039 108.28890 88.20049 7.19275 110 12 1 - 11.66682 109.66230 96.16625 7.86337 110 12 1 - 12.36299 111.03570 104.14003 8.53399 110 12 1 - 12.85412 112.40910 110.12653 9.03695 110 12 1 - 13.18942 112.40910 114.12106 9.37226 110 12 1 - 13.64670 113.78250 120.11821 9.87522 110 11 1 - 14.24187 115.15590 128.12317 10.54584 110 11 1 - 14.81104 116.52930 136.13813 11.21646 110 11 1 - 15.35794 117.90270 144.16229 11.88707 110 11 1 - 15.71865 119.27610 150.18570 12.39004 110 10 1 - 16.05396 119.27610 154.20390 12.72534 110 10 1 - 16.39982 120.64950 160.23477 13.22831 110 10 1 - 16.90116 122.02290 168.28135 13.89892 110 10 1 - 17.39258 123.39630 176.33377 14.56954 110 10 1 - 17.87633 124.76970 184.39132 15.24016 110 10 1 - 18.18701 126.14310 190.43734 15.74312 110 10 1 - 14.86021 126.14310 194.46939 11.38031 110 8 1 - 18.82955 127.51650 200.51935 16.58139 110 9 1 - 19.30192 128.88990 208.58880 17.25201 110 9 1 - 20.65694 130.26330 216.66126 17.92263 110 10 1 - 22.61091 131.63670 224.73639 18.59324 110 10 1 - 24.47237 133.01010 230.79421 19.09621 110 11 1 + 0.73462 69.84300 58.91108 10.20104 110 0 1 + 9.11731 70.73571 59.07501 10.45829 110 0 1 + 9.64237 71.62842 59.55950 10.80128 110 0 1 + 10.16123 72.52113 60.24321 11.14428 110 0 1 + 10.67379 73.41384 61.05177 11.48728 110 0 1 + 11.09419 74.30655 61.71273 11.74453 110 0 1 + 11.26569 74.30655 62.17548 11.91602 110 0 1 + 11.67960 75.19926 62.89559 12.17327 110 0 1 + 12.17274 76.09197 63.89046 12.51627 110 0 1 + 12.65935 76.98468 64.91817 12.85927 110 0 1 + 13.13941 77.87739 65.97136 13.20226 110 0 1 + 13.52714 78.77010 66.77420 13.45951 110 20 1 + 13.47789 78.77010 41.96461 13.83574 110 0 1 + 12.22034 82.75110 38.00268 12.27314 110 0 1 + 10.35530 86.73210 32.76169 10.18968 110 32 1 + 8.33177 90.71310 27.56116 8.10622 110 30 1 + 6.30424 94.69410 22.39249 6.02276 110 28 1 + 5.76555 98.67510 18.53208 4.46017 110 31 1 + 30.60156 98.67510 33.91813 2.66609 330 90 3 + 25.91285 100.04850 40.08908 3.16905 220 65 2 + 24.99028 101.42190 48.22870 3.83967 220 52 2 + 15.72729 102.79530 56.28858 4.51028 110 28 1 + 8.47733 104.16870 64.29642 5.18090 110 13 1 + 9.18386 105.54210 70.28227 5.68386 110 13 1 + 9.51917 105.54210 74.26662 6.01917 110 13 1 + 10.17749 106.91550 80.23883 6.52214 110 13 1 + 10.95755 108.28890 88.20049 7.19275 110 12 1 + 11.69458 109.66230 96.16625 7.86337 110 12 1 + 12.39144 111.03570 104.14003 8.53399 110 12 1 + 12.88335 112.40910 110.12653 9.03695 110 12 1 + 13.21866 112.40910 114.12106 9.37226 110 12 1 + 13.67680 113.78250 120.11821 9.87522 110 11 1 + 14.27292 115.15590 128.12317 10.54584 110 11 1 + 14.84312 116.52930 136.13813 11.21646 110 11 1 + 15.39113 117.90270 144.16229 11.88707 110 11 1 + 15.75303 119.27610 150.18570 12.39004 110 10 1 + 16.08834 119.27610 154.20390 12.72534 110 10 1 + 16.43547 120.64950 160.23477 13.22831 110 10 1 + 16.93815 122.02290 168.28135 13.89892 110 10 1 + 17.43098 123.39630 176.33377 14.56954 110 10 1 + 17.91618 124.76970 184.39132 15.24016 110 10 1 + 18.22836 126.14310 190.43734 15.74312 110 10 1 + 18.56367 126.14310 194.46939 16.07843 110 10 1 + 18.87241 127.51650 200.51935 16.58139 110 9 1 + 19.34631 128.88990 208.58880 17.25201 110 9 1 + 20.57101 130.26330 216.66126 17.92263 110 9 1 + 22.52181 131.63670 224.73639 18.59324 110 10 1 + 24.38011 133.01010 230.79421 19.09621 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -25361,9 +25497,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 9.781 'Hydrobiaklei' - -12.00 4.764 'Basisveen' - -12.50 57.431 'Eerste zandlaag' + -11.09 9.788 'Hydrobiaklei' + -12.00 4.683 'Basisveen' + -12.50 57.786 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25382,7 +25518,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -2.08 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -22.05 'Eerste zandlaag' + -12.50 -22.18 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -25506,24 +25642,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -25598,8 +25734,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -25617,7 +25753,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -25629,7 +25765,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -25659,7 +25795,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -25800,73 +25936,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 35.72382 66.90000 67.75891 5.13458 220 53 2 - 37.47860 67.48860 70.78484 5.36388 220 53 2 - 39.55695 68.07720 74.81942 5.66961 220 53 2 - 41.58291 68.66580 78.85400 5.97534 220 53 2 - 43.55851 69.25440 82.88858 6.28107 220 53 2 - 45.10776 69.84300 85.91452 6.51036 220 53 2 - 11.96528 69.84300 58.91108 10.23728 110 20 1 - 18.57031 70.73571 59.07501 10.45829 110 31 1 - 17.95994 71.62842 59.55950 10.80128 110 30 1 - 17.36566 72.52113 60.24321 11.14428 110 29 1 - 16.78764 73.41384 61.05177 11.48728 110 27 1 - 16.22603 74.30655 61.71273 11.74453 110 26 1 - 16.22603 74.30655 62.17548 11.91602 110 26 1 - 15.68095 75.19926 62.89559 12.17327 110 25 1 - 15.15242 76.09197 63.89046 12.51627 110 24 1 - 14.64042 76.98468 64.91817 12.85927 110 23 1 - 14.14496 77.87739 65.97136 13.20226 110 21 1 - 13.66604 78.77010 66.77420 13.45951 110 20 1 - 15.47066 78.77010 41.96461 15.49997 110 0 1 - 12.17588 82.75110 38.00268 12.27314 110 0 1 - 10.02847 86.73210 32.76169 10.18968 110 0 1 - 7.88505 90.71310 27.56116 8.10622 110 0 1 + 35.72271 66.90000 67.75891 5.13458 220 53 2 + 37.47744 67.48860 70.78484 5.36388 220 53 2 + 39.55576 68.07720 74.81942 5.66961 220 53 2 + 41.58169 68.66580 78.85400 5.97534 220 53 2 + 43.55726 69.25440 82.88858 6.28107 220 53 2 + 45.10650 69.84300 85.91452 6.51036 220 53 2 + 11.92794 69.84300 58.91108 10.20104 110 20 1 + 18.61743 70.73571 59.07501 10.45829 110 32 1 + 18.00498 71.62842 59.55950 10.80128 110 30 1 + 17.40849 72.52113 60.24321 11.14428 110 29 1 + 16.82811 73.41384 61.05177 11.48728 110 28 1 + 16.26399 74.30655 61.71273 11.74453 110 26 1 + 16.26399 74.30655 62.17548 11.91602 110 26 1 + 15.71624 75.19926 62.89559 12.17327 110 25 1 + 15.18488 76.09197 63.89046 12.51627 110 24 1 + 14.66991 76.98468 64.91817 12.85927 110 23 1 + 14.17135 77.87739 65.97136 13.20226 110 21 1 + 13.68922 78.77010 66.77420 13.45951 110 21 1 + 13.80192 78.77010 41.96461 13.83574 110 0 1 + 12.17143 82.75110 38.00268 12.27314 110 0 1 + 10.02406 86.73210 32.76169 10.18968 110 0 1 + 7.88068 90.71310 27.56116 8.10622 110 0 1 6.32958 94.69410 22.39249 6.02276 110 28 1 - 5.23570 98.67510 18.53208 4.46017 110 28 1 - 20.44012 98.67510 33.91813 2.66609 220 60 2 - 22.36772 100.04850 40.08908 3.16905 220 56 2 - 25.00214 101.42190 48.22870 3.83967 220 52 2 - 26.07650 102.79530 56.28858 4.51028 110 46 1 - 24.70759 104.16870 64.29642 5.18090 110 38 1 - 23.19535 105.54210 70.28227 5.68386 110 33 1 - 23.37817 105.54210 74.26662 6.01917 110 31 1 - 21.83536 106.91550 80.23883 6.52214 110 27 1 - 20.36571 108.28890 88.20049 7.19275 110 23 1 - 18.88814 109.66230 96.16625 7.86337 110 20 1 - 17.41299 111.03570 104.14003 8.53399 110 17 1 - 15.85873 112.40910 110.12653 9.03695 110 14 1 - 16.04247 112.40910 114.12106 9.37226 110 14 1 - 14.50891 113.78250 120.11821 9.87522 110 12 1 - 13.08974 115.15590 128.12317 10.54584 110 10 1 - 11.69428 116.52930 136.13813 11.21646 110 9 1 - 10.32373 117.90270 144.16229 11.88707 110 0 1 - 9.06142 119.27610 150.18570 12.39004 110 0 1 - 9.39673 119.27610 154.20390 12.72534 110 0 1 - 10.05679 120.64950 160.23477 13.22831 110 0 1 - 10.89669 122.02290 168.28135 13.89892 110 0 1 - 11.74651 123.39630 176.33377 14.56954 110 0 1 - 12.60399 124.76970 184.39132 15.24016 110 0 1 - 13.29923 126.14310 190.43734 15.74312 110 0 1 - 8.93642 126.14310 194.46939 11.38031 110 0 1 - 14.33324 127.51650 200.51935 16.58139 110 0 1 - 15.20210 128.88990 208.58880 17.25201 110 0 1 - 16.07269 130.26330 216.66126 17.92263 110 0 1 - 16.94423 131.63670 224.73639 18.59324 110 0 1 - 17.64829 133.01010 230.79421 19.09621 110 0 1 + 5.23589 98.67510 18.53208 4.46017 110 28 1 + 20.44187 98.67510 33.91813 2.66609 220 60 2 + 22.37007 100.04850 40.08908 3.16905 220 56 2 + 25.00514 101.42190 48.22870 3.83967 220 52 2 + 26.09011 102.79530 56.28858 4.51028 110 46 1 + 24.72399 104.16870 64.29642 5.18090 110 38 1 + 23.21473 105.54210 70.28227 5.68386 110 33 1 + 23.39755 105.54210 74.26662 6.01917 110 32 1 + 21.85791 106.91550 80.23883 6.52214 110 27 1 + 20.39160 108.28890 88.20049 7.19275 110 23 1 + 18.91753 109.66230 96.16625 7.86337 110 20 1 + 17.44603 111.03570 104.14003 8.53399 110 17 1 + 15.89555 112.40910 110.12653 9.03695 110 14 1 + 16.07929 112.40910 114.12106 9.37226 110 14 1 + 14.54963 113.78250 120.11821 9.87522 110 12 1 + 13.13446 115.15590 128.12317 10.54584 110 10 1 + 11.74305 116.52930 136.13813 11.21646 110 9 1 + 10.37657 117.90270 144.16229 11.88707 110 0 1 + 9.02704 119.27610 150.18570 12.39004 110 0 1 + 9.36234 119.27610 154.20390 12.72534 110 0 1 + 10.02114 120.64950 160.23477 13.22831 110 0 1 + 10.85969 122.02290 168.28135 13.89892 110 0 1 + 11.70811 123.39630 176.33377 14.56954 110 0 1 + 12.56414 124.76970 184.39132 15.24016 110 0 1 + 13.25788 126.14310 190.43734 15.74312 110 0 1 + 13.59319 126.14310 194.46939 16.07843 110 0 1 + 14.29038 127.51650 200.51935 16.58139 110 0 1 + 15.15771 128.88990 208.58880 17.25201 110 0 1 + 16.02676 130.26330 216.66126 17.92263 110 0 1 + 16.89677 131.63670 224.73639 18.59324 110 0 1 + 17.59929 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -25880,10 +26016,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 12.156 'Grind' - -11.09 14.500 'Hydrobiaklei' - -12.00 4.677 'Basisveen' - -12.50 57.786 'Eerste zandlaag' + -10.79 12.155 'Grind' + -11.09 14.530 'Hydrobiaklei' + -12.00 4.592 'Basisveen' + -12.50 58.109 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25900,9 +26036,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 4.91 'Grind' - -11.09 3.08 'Hydrobiaklei' + -11.09 3.09 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 22.18 'Eerste zandlaag' + -12.50 22.31 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -26109,7 +26245,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=8 CalculationStatus=0 -IterationCount=3 +IterationCount=11 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -26124,8 +26260,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 461.81399 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 628.18345 10000000.000 1 1 1 'Dek' + -10.19000 461.81260 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 628.18277 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -26186,10 +26322,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 28.66 : Percentage mobilized resistance left - 18.19 : Percentage mobilized resistance right - 177.74 : Effective left - 112.78 : Effective right + 28.70 : Percentage mobilized resistance left + 18.22 : Percentage mobilized resistance right + 177.98 : Effective left + 113.02 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -26198,8 +26334,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 38.90 : Vertical force left - 17.25 : Vertical force right + 39.02 : Vertical force left + 17.37 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -26208,17 +26344,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --17.25 : Active force -38.90 : Passive force --17.25 : Plugged active force -38.90 : Plugged passive force +-17.37 : Active force +39.02 : Passive force +-17.37 : Plugged active force +39.02 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --78.35 : Resulting Vertical Force Unplugged --78.35 : Resulting Vertical Force Plugged +-78.36 : Resulting Vertical Force Unplugged +-78.36 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -26231,192 +26367,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.66675 - 0.15093 0.00000 -58.40894 - 0.30186 0.00000 -57.15115 - 0.45279 0.00000 -55.89339 - 0.60372 0.00000 -54.63566 - 0.75465 0.00000 -53.37799 - 0.75465 0.00000 -53.37799 - 0.90554 0.00000 -52.12038 - 1.05643 0.00000 -50.86284 - 1.20733 0.00000 -49.60540 - 1.35822 0.00000 -48.34806 - 1.50911 0.00000 -47.09083 - 1.50911 0.00000 -47.09083 - 1.71017 0.00000 -45.41473 - 1.91123 0.00000 -43.73889 - 2.11230 0.00000 -42.06334 - 2.31336 0.00000 -40.38811 - 2.51442 0.00000 -38.71323 - 2.51442 0.00000 -38.71323 - 2.68180 0.00000 -37.31778 - 2.84919 0.00000 -35.92262 - 3.01657 0.00000 -34.52775 - 3.18395 0.00000 -33.13320 - 3.35133 0.00000 -31.73899 - 3.35133 0.00000 -31.73899 - 3.51850 0.00000 -30.34513 - 3.68567 0.00000 -28.95163 - 3.85284 0.00000 -27.55853 - 4.02001 0.00000 -26.16582 - 4.18718 0.00000 -24.77355 - 4.18718 0.00000 -24.77355 - 4.33074 0.00000 -23.57654 - 4.47430 0.00000 -22.37986 - 4.61786 0.00000 -21.18354 - 4.76142 0.00000 -19.98757 - 4.90497 0.00000 -18.79197 - 4.90497 527.88000 -18.79197 - 65.26913 527.88000 -17.20907 - 125.63328 527.88000 -15.63507 - 185.99744 527.88000 -14.07821 - 246.36159 527.88000 -12.54673 - 306.72575 527.88000 -11.04886 - 306.72652 527.86695 -11.04886 - 349.07276 527.86695 -10.02222 - 391.41901 527.86695 -9.01904 - 433.76525 527.86695 -8.04215 - 476.11149 527.86695 -7.09441 - 518.45773 527.86695 -6.17866 - 518.45747 -100.31854 -6.17866 - 516.47741 -100.31854 -5.95505 - 514.49735 -100.31854 -5.73360 - 512.51730 -100.31854 -5.51431 - 510.53724 -100.31854 -5.29718 - 508.55719 -100.31854 -5.08219 - 508.55683 -100.31464 -5.08219 - 498.63822 -100.31464 -4.03911 - 488.71962 -100.31464 -3.04838 - 478.80101 -100.31464 -2.10895 - 468.88240 -100.31464 -1.21979 - 458.96379 -100.31464 -0.37986 - 458.96393 -100.31357 -0.37986 - 449.01652 -100.31357 0.41189 - 439.06911 -100.31357 1.15651 - 429.12170 -100.31357 1.85502 - 419.17429 -100.31357 2.50849 - 409.22688 -100.31357 3.11795 - 409.22688 -100.31338 3.11795 - 399.25372 -100.31338 3.68445 - 389.28055 -100.31338 4.20904 - 379.30738 -100.31338 4.69275 - 369.33422 -100.31338 5.13665 - 359.36105 -100.31338 5.54177 - 359.36103 -100.31305 5.54177 - 345.36132 -100.31305 6.04580 - 331.36161 -100.31305 6.47876 - 317.36190 -100.31305 6.84353 - 303.36219 -100.31305 7.14300 - 289.36249 -100.31305 7.38005 - 289.36244 -100.31212 7.38005 - 276.33066 -100.31212 7.54679 - 263.29888 -100.31212 7.66450 - 250.26710 -100.31212 7.73550 - 237.23533 -100.31212 7.76209 - 224.20355 -100.31212 7.74659 - 224.20363 -100.31166 7.74659 - 211.14805 -100.31166 7.69132 - 198.09246 -100.31166 7.59858 - 185.03688 -100.31166 7.47069 - 171.98130 -100.31166 7.30997 - 158.92571 -100.31166 7.11874 - 158.92571 -100.31166 7.11874 - 143.89131 -100.31166 6.86411 - 128.85690 -100.31166 6.57572 - 113.82250 -100.31166 6.25709 - 98.78809 -100.31166 5.91176 - 83.75369 -100.31166 5.54324 - 83.75369 -100.31166 5.54324 - 68.70749 -100.31166 5.15507 - 53.66129 -100.31166 4.75078 - 38.61510 -100.31166 4.33389 - 23.56890 -100.31166 3.90795 - 8.52271 -100.31166 3.47647 - 8.52193 -100.30784 3.47647 - -6.52489 -100.30784 3.04300 - -21.57171 -100.30784 2.61106 - -36.61854 -100.30784 2.18417 - -51.66536 -100.30784 1.76588 - -66.71219 -100.30784 1.35972 - -66.71101 -100.29840 1.35972 - -81.74703 -100.29840 0.96921 - -96.78305 -100.29840 0.59787 - -111.81907 -100.29840 0.24925 - -126.85509 -100.29840 -0.07313 - -141.89111 -100.29840 -0.36575 - -141.89101 -100.29820 -0.36575 - -142.09205 -100.29820 -0.36944 - -142.29309 -100.29820 -0.37313 - -142.49413 -100.29820 -0.37682 - -142.69517 -100.29820 -0.38050 - -142.89621 -100.29820 -0.38417 - -142.89621 -100.29822 -0.38417 - -146.71509 -100.29822 -0.45281 - -150.53398 -100.29822 -0.51922 - -154.35286 -100.29822 -0.58335 - -158.17175 -100.29822 -0.64513 - -161.99064 -100.29822 -0.70453 - -161.99197 77.97962 -0.70453 - -152.64854 77.97962 -0.87622 - -143.30511 77.97962 -1.02484 - -133.96168 77.97962 -1.15179 - -124.61825 77.97962 -1.25849 - -115.27481 77.97962 -1.34636 - -115.27434 77.98422 -1.34636 - -110.68027 75.22564 -1.38367 - -106.25627 72.31229 -1.41680 - -102.01194 69.23772 -1.44591 - -97.95678 66.00740 -1.47115 - -94.09973 62.63875 -1.49270 - -94.09890 62.61546 -1.49270 - -88.48640 60.70747 -1.51865 - -83.05601 58.67658 -1.53691 - -77.80725 56.71659 -1.54794 - -72.73344 54.83251 -1.55218 - -67.82758 53.02430 -1.55011 - -67.82788 53.02658 -1.55011 - -63.07951 51.31252 -1.54215 - -58.48339 49.68244 -1.52872 - -54.03145 48.14454 -1.51019 - -49.71513 46.70202 -1.48694 - -45.52578 45.35304 -1.45938 - -45.52573 45.35146 -1.45938 - -41.02400 44.62699 -1.42456 - -36.59260 43.94355 -1.38543 - -32.22797 43.28886 -1.34245 - -27.92891 42.62057 -1.29608 - -23.69703 41.96600 -1.24678 - -23.69471 41.94895 -1.24678 - -17.80652 41.82789 -1.17374 - -12.05976 39.84923 -1.09707 - -6.73204 35.87486 -1.01784 - -2.05695 30.78646 -0.93710 - 1.88523 25.42434 -0.85594 - 1.88178 25.40462 -0.85594 - 5.05428 19.93604 -0.77532 - 7.49231 14.91364 -0.69575 - 9.25887 10.34470 -0.61760 - 10.41780 6.23353 -0.54123 - 11.03329 2.58144 -0.46702 - 11.03425 2.58998 -0.46702 - 11.17027 -0.60440 -0.39521 - 10.89449 -3.26823 -0.32569 - 10.28882 -5.31189 -0.25835 - 9.44133 -6.72428 -0.19308 - 8.43879 -7.53537 -0.12977 - 8.43929 -7.51340 -0.12977 - 7.35781 -7.91254 -0.06822 - 6.23769 -8.06658 -0.00819 - 5.11282 -7.98116 0.05056 - 4.01639 -7.66098 0.10826 - 2.98099 -7.10986 0.16512 - 2.98107 -7.10877 0.16512 - 2.04625 -6.24253 0.22140 - 1.24043 -5.23725 0.27726 - 0.59455 -3.93302 0.33283 - 0.15969 -2.20607 0.38825 - -0.00002 -0.00008 0.44362 + 0.00000 0.00000 -59.66764 + 0.15093 0.00000 -58.40980 + 0.30187 0.00000 -57.15198 + 0.45280 0.00000 -55.89418 + 0.60374 0.00000 -54.63642 + 0.75467 0.00000 -53.37871 + 0.75467 0.00000 -53.37871 + 0.90557 0.00000 -52.12106 + 1.05646 0.00000 -50.86350 + 1.20736 0.00000 -49.60602 + 1.35825 0.00000 -48.34864 + 1.50915 0.00000 -47.09139 + 1.50915 0.00000 -47.09139 + 1.71022 0.00000 -45.41524 + 1.91129 0.00000 -43.73936 + 2.11235 0.00000 -42.06376 + 2.31342 0.00000 -40.38848 + 2.51449 0.00000 -38.71356 + 2.51449 0.00000 -38.71356 + 2.68188 0.00000 -37.31807 + 2.84926 0.00000 -35.92287 + 3.01665 0.00000 -34.52797 + 3.18403 0.00000 -33.13338 + 3.35142 0.00000 -31.73913 + 3.35142 0.00000 -31.73913 + 3.51860 0.00000 -30.34523 + 3.68577 0.00000 -28.95170 + 3.85295 0.00000 -27.55855 + 4.02012 0.00000 -26.16581 + 4.18730 0.00000 -24.77350 + 4.18730 0.00000 -24.77350 + 4.33086 0.00000 -23.57646 + 4.47442 0.00000 -22.37975 + 4.61798 0.00000 -21.18339 + 4.76154 0.00000 -19.98739 + 4.90510 0.00000 -18.79176 + 4.90510 527.88000 -18.79176 + 65.26926 527.88000 -17.20881 + 125.63342 527.88000 -15.63477 + 185.99758 527.88000 -14.07787 + 246.36174 527.88000 -12.54635 + 306.72590 527.88000 -11.04844 + 306.72668 527.86694 -11.04844 + 349.07293 527.86694 -10.02177 + 391.41917 527.86694 -9.01856 + 433.76541 527.86694 -8.04164 + 476.11166 527.86694 -7.09387 + 518.45790 527.86694 -6.17809 + 518.45763 -100.31788 -6.17809 + 516.47759 -100.31788 -5.95447 + 514.49755 -100.31788 -5.73301 + 512.51751 -100.31788 -5.51372 + 510.53747 -100.31788 -5.29658 + 508.55743 -100.31788 -5.08158 + 508.55707 -100.31397 -5.08158 + 498.63854 -100.31397 -4.03847 + 488.72000 -100.31397 -3.04770 + 478.80146 -100.31397 -2.10823 + 468.88293 -100.31397 -1.21904 + 458.96439 -100.31397 -0.37907 + 458.96452 -100.31290 -0.37907 + 449.01719 -100.31290 0.41272 + 439.06985 -100.31290 1.15737 + 429.12251 -100.31290 1.85593 + 419.17517 -100.31290 2.50943 + 409.22784 -100.31290 3.11893 + 409.22784 -100.31271 3.11893 + 399.25474 -100.31271 3.68547 + 389.28165 -100.31271 4.21009 + 379.30855 -100.31271 4.69384 + 369.33545 -100.31271 5.13777 + 359.36236 -100.31271 5.54293 + 359.36234 -100.31238 5.54293 + 345.36273 -100.31238 6.04701 + 331.36312 -100.31238 6.48002 + 317.36351 -100.31238 6.84484 + 303.36390 -100.31238 7.14436 + 289.36429 -100.31238 7.38146 + 289.36425 -100.31145 7.38146 + 276.33256 -100.31145 7.54824 + 263.30088 -100.31145 7.66600 + 250.26919 -100.31145 7.73704 + 237.23750 -100.31145 7.76368 + 224.20582 -100.31145 7.74822 + 224.20590 -100.31098 7.74822 + 211.15041 -100.31098 7.69299 + 198.09492 -100.31098 7.60029 + 185.03943 -100.31098 7.47245 + 171.98394 -100.31098 7.31177 + 158.92845 -100.31098 7.12058 + 158.92845 -100.31099 7.12058 + 143.89415 -100.31099 6.86600 + 128.85985 -100.31099 6.57765 + 113.82555 -100.31099 6.25907 + 98.79125 -100.31099 5.91378 + 83.75695 -100.31099 5.54530 + 83.75695 -100.31099 5.54530 + 68.71086 -100.31099 5.15718 + 53.66477 -100.31099 4.75293 + 38.61868 -100.31099 4.33609 + 23.57259 -100.31099 3.91018 + 8.52650 -100.31099 3.47875 + 8.52573 -100.30717 3.47875 + -6.52099 -100.30717 3.04531 + -21.56771 -100.30717 2.61341 + -36.61443 -100.30717 2.18657 + -51.66115 -100.30717 1.76831 + -66.70787 -100.30717 1.36218 + -66.70669 -100.29776 1.36218 + -81.74261 -100.29776 0.97170 + -96.77853 -100.29776 0.60041 + -111.81445 -100.29776 0.25182 + -126.85038 -100.29776 -0.07053 + -141.88630 -100.29776 -0.36312 + -141.88620 -100.29759 -0.36312 + -142.08724 -100.29759 -0.36682 + -142.28828 -100.29759 -0.37051 + -142.48931 -100.29759 -0.37419 + -142.69035 -100.29759 -0.37787 + -142.89139 -100.29759 -0.38154 + -142.89139 -100.29761 -0.38154 + -146.71025 -100.29761 -0.45017 + -150.52911 -100.29761 -0.51657 + -154.34797 -100.29761 -0.58070 + -158.16684 -100.29761 -0.64248 + -161.98570 -100.29761 -0.70186 + -161.98704 77.98164 -0.70186 + -152.64336 77.98164 -0.87353 + -143.29968 77.98164 -1.02213 + -133.95600 77.98164 -1.14906 + -124.61233 77.98164 -1.25575 + -115.26865 77.98164 -1.34359 + -115.26808 77.98263 -1.34359 + -110.67411 75.22422 -1.38089 + -106.25019 72.31105 -1.41402 + -102.00592 69.23667 -1.44311 + -97.95081 66.00656 -1.46835 + -94.09381 62.63812 -1.48989 + -94.09298 62.61468 -1.48989 + -88.48048 60.70692 -1.51583 + -83.05031 58.67240 -1.53408 + -77.80209 56.70902 -1.54509 + -72.72911 54.82184 -1.54933 + -67.82435 53.01081 -1.54724 + -67.82446 53.00805 -1.54724 + -63.07789 51.29148 -1.53928 + -58.48379 49.65919 -1.52583 + -54.03405 48.11943 -1.50729 + -49.72009 46.67539 -1.48404 + -45.53321 45.32526 -1.45647 + -45.53319 45.32353 -1.45647 + -41.03420 44.60001 -1.42163 + -36.60544 43.91776 -1.38249 + -32.24332 43.26448 -1.33949 + -27.94664 42.59736 -1.29311 + -23.71698 41.94497 -1.24379 + -23.71473 41.92836 -1.24379 + -17.82871 41.81966 -1.17073 + -12.08168 39.86182 -1.09402 + -6.75114 35.89870 -1.01475 + -2.07273 30.81013 -0.93397 + 1.87275 25.44773 -0.85277 + 1.86934 25.42817 -0.85277 + 5.04503 19.95806 -0.77210 + 7.48601 14.93362 -0.69248 + 9.25520 10.36207 -0.61428 + 10.41634 6.24769 -0.53786 + 11.03356 2.59173 -0.46360 + 11.03334 2.59538 -0.46360 + 11.16906 -0.61973 -0.39173 + 10.88943 -3.30142 -0.32216 + 10.27921 -5.34390 -0.25477 + 9.42728 -6.75575 -0.18944 + 8.42070 -7.55928 -0.12607 + 8.42216 -7.53254 -0.12607 + 7.33905 -7.91665 -0.06446 + 6.21942 -8.05540 -0.00436 + 5.09720 -7.95442 0.05445 + 4.00563 -7.61840 0.11222 + 2.97732 -7.05114 0.16916 + 2.97739 -7.05005 0.16916 + 2.04382 -6.25440 0.22551 + 1.23751 -5.23237 0.28145 + 0.59299 -3.92217 0.33710 + 0.15929 -2.20041 0.39259 + -0.00002 -0.00008 0.44805 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -26537,24 +26673,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -26629,8 +26765,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -26648,7 +26784,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -26660,7 +26796,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -26690,7 +26826,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -26831,13 +26967,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -26850,27 +26986,27 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.36256 69.84300 58.91108 10.23728 1 0 A - 4.38369 70.73571 59.07501 10.45829 110 0 1 - 4.65364 71.62842 59.55950 10.80128 110 0 1 - 4.95254 72.52113 60.24321 11.14428 110 0 1 - 5.27855 73.41384 61.05177 11.48728 110 0 1 - 5.54409 74.30655 61.71273 11.74453 110 0 1 - 5.71559 74.30655 62.17548 11.91602 110 0 1 - 6.00465 75.19926 62.89559 12.17327 110 0 1 - 6.40140 76.09197 63.89046 12.51627 110 0 1 - 6.81852 76.98468 64.91817 12.85927 110 0 1 - 7.25448 77.87739 65.97136 13.20226 110 0 1 - 7.62198 78.77010 66.77420 13.45951 110 0 1 - 12.19322 78.77010 41.96461 15.49997 110 0 1 - 9.27327 82.75110 38.00268 12.27314 110 0 1 - 7.41883 86.73210 32.76169 10.18968 110 0 1 - 5.42133 90.71310 27.56116 8.10622 110 0 1 - 3.43061 94.69410 22.39249 6.02276 110 0 1 - 2.91705 98.67510 18.53208 4.46017 110 0 1 - 29.15847 98.67510 33.91813 2.66609 330 86 3 - 21.31493 100.04850 40.08908 3.16905 220 53 2 - 11.31902 101.42190 48.22870 3.83967 110 23 1 + 0.36256 69.84300 58.91108 10.20104 1 0 A + 4.39497 70.73571 59.07501 10.45829 110 0 1 + 4.66497 71.62842 59.55950 10.80128 110 0 1 + 4.96391 72.52113 60.24321 11.14428 110 0 1 + 5.28996 73.41384 61.05177 11.48728 110 0 1 + 5.55555 74.30655 61.71273 11.74453 110 0 1 + 5.72705 74.30655 62.17548 11.91602 110 0 1 + 6.01615 75.19926 62.89559 12.17327 110 0 1 + 6.41293 76.09197 63.89046 12.51627 110 0 1 + 6.83010 76.98468 64.91817 12.85927 110 0 1 + 7.26610 77.87739 65.97136 13.20226 110 0 1 + 7.63363 78.77010 66.77420 13.45951 110 0 1 + 10.53114 78.77010 41.96461 13.83574 110 0 1 + 9.27537 82.75110 38.00268 12.27314 110 0 1 + 7.42471 86.73210 32.76169 10.18968 110 0 1 + 5.42724 90.71310 27.56116 8.10622 110 0 1 + 3.43655 94.69410 22.39249 6.02276 110 0 1 + 2.94456 98.67510 18.53208 4.46017 110 0 1 + 29.19106 98.67510 33.91813 2.66609 330 86 3 + 21.42788 100.04850 40.08908 3.16905 220 53 2 + 11.45356 101.42190 48.22870 3.83967 110 24 1 2.43581 102.79530 56.28858 4.51028 1 0 A 2.80048 104.16870 64.29642 5.18090 1 0 A 3.07440 105.54210 70.28227 5.68386 1 0 A @@ -26881,23 +27017,23 @@ Status character 4.63207 111.03570 104.14003 8.53399 1 0 A 4.90758 112.40910 110.12653 9.03695 1 0 A 5.09133 112.40910 114.12106 9.37226 1 0 A - 5.36702 113.78250 120.11821 9.87522 1 0 A - 6.63760 115.15590 128.12317 10.54584 110 0 1 - 8.11627 116.52930 136.13813 11.21646 110 0 1 - 9.57011 117.90270 144.16229 11.88707 110 0 1 - 10.83285 119.27610 150.18570 12.39004 110 0 1 - 11.16816 119.27610 154.20390 12.72534 110 0 1 - 12.40966 120.64950 160.23477 13.22831 110 0 1 - 13.80067 122.02290 168.28135 13.89892 110 0 1 - 15.17628 123.39630 176.33377 14.56954 110 9 1 - 16.53922 124.76970 184.39132 15.24016 110 9 1 - 17.72455 126.14310 190.43734 15.74312 110 9 1 - 14.39775 126.14310 194.46939 11.38031 110 7 1 - 19.23814 127.51650 200.51935 16.58139 110 10 1 - 20.57910 128.88990 208.58880 17.25201 110 10 1 - 22.80098 130.26330 216.66126 17.92263 110 11 1 - 25.62084 131.63670 224.73639 18.59324 110 11 1 - 28.34795 133.01010 230.79421 19.09621 110 12 1 + 5.17446 113.78250 120.11821 9.87522 110 0 1 + 6.67995 115.15590 128.12317 10.54584 110 0 1 + 8.15926 116.52930 136.13813 11.21646 110 0 1 + 9.61377 117.90270 144.16229 11.88707 110 0 1 + 10.87721 119.27610 150.18570 12.39004 110 0 1 + 11.21252 119.27610 154.20390 12.72534 110 0 1 + 12.45475 120.64950 160.23477 13.22831 110 0 1 + 13.84656 122.02290 168.28135 13.89892 110 0 1 + 15.22300 123.39630 176.33377 14.56954 110 9 1 + 16.58680 124.76970 184.39132 15.24016 110 9 1 + 17.77303 126.14310 190.43734 15.74312 110 9 1 + 18.10834 126.14310 194.46939 16.07843 110 9 1 + 19.28752 127.51650 200.51935 16.58139 110 10 1 + 20.62939 128.88990 208.58880 17.25201 110 10 1 + 22.72034 130.26330 216.66126 17.92263 110 10 1 + 25.53641 131.63670 224.73639 18.59324 110 11 1 + 28.25974 133.01010 230.79421 19.09621 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -26912,9 +27048,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.039 'Hydrobiaklei' - -12.00 3.310 'Basisveen' - -12.50 41.165 'Eerste zandlaag' + -11.09 5.049 'Hydrobiaklei' + -12.00 3.230 'Basisveen' + -12.50 41.473 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -26933,7 +27069,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.07 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -15.80 'Eerste zandlaag' + -12.50 -15.92 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -27057,24 +27193,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -27149,8 +27285,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -27168,7 +27304,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -27180,7 +27316,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -27210,7 +27346,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -27351,73 +27487,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 40.06790 66.90000 67.75891 5.13458 220 59 2 - 42.21257 67.48860 70.78484 5.36388 220 60 2 - 44.65508 68.07720 74.81942 5.66961 220 60 2 - 47.02017 68.66580 78.85400 5.97534 220 60 2 - 49.31057 69.25440 82.88858 6.28107 220 59 2 - 51.15104 69.84300 85.91452 6.51036 220 60 2 - 16.39702 69.84300 58.91108 10.23728 110 28 1 - 23.29408 70.73571 59.07501 10.45829 110 39 1 - 22.93890 71.62842 59.55950 10.80128 110 39 1 - 22.56469 72.52113 60.24321 11.14428 110 37 1 - 22.17331 73.41384 61.05177 11.48728 110 36 1 - 21.76665 74.30655 61.71273 11.74453 110 35 1 - 21.76665 74.30655 62.17548 11.91602 110 35 1 - 21.34652 75.19926 62.89559 12.17327 110 34 1 - 20.91449 76.09197 63.89046 12.51627 110 33 1 - 20.47207 76.98468 64.91817 12.85927 110 32 1 - 20.02080 77.87739 65.97136 13.20226 110 30 1 - 19.56221 78.77010 66.77420 13.45951 110 29 1 - 18.41874 78.77010 41.96461 15.49997 110 44 1 - 15.12226 82.75110 38.00268 12.27314 110 40 1 - 12.96053 86.73210 32.76169 10.18968 110 40 1 - 10.79112 90.71310 27.56116 8.10622 110 39 1 - 9.19888 94.69410 22.39249 6.02276 110 41 1 - 8.05835 98.67510 18.53208 4.46017 110 43 1 - 25.05901 98.67510 33.91813 2.66609 220 74 2 - 26.85554 100.04850 40.08908 3.16905 220 67 2 - 29.33398 101.42190 48.22870 3.83967 220 61 2 - 31.73471 102.79530 56.28858 4.51028 220 56 2 - 34.07777 104.16870 64.29642 5.18090 220 53 2 - 35.63184 105.54210 70.28227 5.68386 220 51 2 - 37.12320 105.54210 74.26662 6.01917 110 50 1 - 34.76793 106.91550 80.23883 6.52214 110 43 1 - 32.45236 108.28890 88.20049 7.19275 110 37 1 - 30.10275 109.66230 96.16625 7.86337 110 31 1 - 27.73676 111.03570 104.14003 8.53399 110 27 1 - 25.28018 112.40910 110.12653 9.03695 110 23 1 - 25.46392 112.40910 114.12106 9.37226 110 22 1 - 23.02286 113.78250 120.11821 9.87522 110 19 1 - 20.69401 115.15590 128.12317 10.54584 110 16 1 - 18.38905 116.52930 136.13813 11.21646 110 14 1 - 16.11155 117.90270 144.16229 11.88707 110 11 1 - 13.94722 119.27610 150.18570 12.39004 110 9 1 - 14.28252 119.27610 154.20390 12.72534 110 9 1 - 14.04696 120.64950 160.23477 13.22831 110 9 1 - 13.99718 122.02290 168.28135 13.89892 110 8 1 - 13.96280 123.39630 176.33377 14.56954 110 0 1 - 13.94110 124.76970 184.39132 15.24016 110 0 1 - 13.76169 126.14310 190.43734 15.74312 110 0 1 - 9.39888 126.14310 194.46939 11.38031 110 0 1 - 13.92464 127.51650 200.51935 16.58139 110 0 1 - 13.92492 128.88990 208.58880 17.25201 110 0 1 - 13.92865 130.26330 216.66126 17.92263 110 0 1 - 13.93430 131.63670 224.73639 18.59324 110 0 1 - 13.77271 133.01010 230.79421 19.09621 110 0 1 + 40.06563 66.90000 67.75891 5.13458 220 59 2 + 42.21014 67.48860 70.78484 5.36388 220 60 2 + 44.65249 68.07720 74.81942 5.66961 220 60 2 + 47.01742 68.66580 78.85400 5.97534 220 60 2 + 49.30768 69.25440 82.88858 6.28107 220 59 2 + 51.14801 69.84300 85.91452 6.51036 220 60 2 + 16.35839 69.84300 58.91108 10.20104 110 28 1 + 23.33977 70.73571 59.07501 10.45829 110 40 1 + 22.98238 71.62842 59.55950 10.80128 110 39 1 + 22.60581 72.52113 60.24321 11.14428 110 38 1 + 22.21193 73.41384 61.05177 11.48728 110 36 1 + 21.80263 74.30655 61.71273 11.74453 110 35 1 + 21.80263 74.30655 62.17548 11.91602 110 35 1 + 21.37969 75.19926 62.89559 12.17327 110 34 1 + 20.94469 76.09197 63.89046 12.51627 110 33 1 + 20.49916 76.98468 64.91817 12.85927 110 32 1 + 20.04466 77.87739 65.97136 13.20226 110 30 1 + 19.58273 78.77010 66.77420 13.45951 110 29 1 + 16.74868 78.77010 41.96461 13.83574 110 40 1 + 15.11641 82.75110 38.00268 12.27314 110 40 1 + 12.95466 86.73210 32.76169 10.18968 110 40 1 + 10.78521 90.71310 27.56116 8.10622 110 39 1 + 9.19727 94.69410 22.39249 6.02276 110 41 1 + 8.05688 98.67510 18.53208 4.46017 110 43 1 + 25.05804 98.67510 33.91813 2.66609 220 74 2 + 26.85504 100.04850 40.08908 3.16905 220 67 2 + 29.33401 101.42190 48.22870 3.83967 220 61 2 + 31.73535 102.79530 56.28858 4.51028 220 56 2 + 34.07909 104.16870 64.29642 5.18090 220 53 2 + 35.63390 105.54210 70.28227 5.68386 220 51 2 + 37.13075 105.54210 74.26662 6.01917 110 50 1 + 34.77848 106.91550 80.23883 6.52214 110 43 1 + 32.46616 108.28890 88.20049 7.19275 110 37 1 + 30.12004 109.66230 96.16625 7.86337 110 31 1 + 27.75777 111.03570 104.14003 8.53399 110 27 1 + 25.30513 112.40910 110.12653 9.03695 110 23 1 + 25.48887 112.40910 114.12106 9.37226 110 22 1 + 23.05197 113.78250 120.11821 9.87522 110 19 1 + 20.72743 115.15590 128.12317 10.54584 110 16 1 + 18.42691 116.52930 136.13813 11.21646 110 14 1 + 16.15393 117.90270 144.16229 11.88707 110 11 1 + 13.90286 119.27610 150.18570 12.39004 110 9 1 + 14.23817 119.27610 154.20390 12.72534 110 9 1 + 14.00186 120.64950 160.23477 13.22831 110 9 1 + 13.95129 122.02290 168.28135 13.89892 110 8 1 + 13.91608 123.39630 176.33377 14.56954 110 0 1 + 13.89352 124.76970 184.39132 15.24016 110 0 1 + 13.71321 126.14310 190.43734 15.74312 110 0 1 + 14.04852 126.14310 194.46939 16.07843 110 0 1 + 13.87526 127.51650 200.51935 16.58139 110 0 1 + 13.87463 128.88990 208.58880 17.25201 110 0 1 + 13.87743 130.26330 216.66126 17.92263 110 0 1 + 13.88217 131.63670 224.73639 18.59324 110 0 1 + 13.71966 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -27432,9 +27568,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 13.728 'Grind' - -11.09 19.426 'Hydrobiaklei' - -12.00 6.131 'Basisveen' - -12.50 76.132 'Eerste zandlaag' + -11.09 19.454 'Hydrobiaklei' + -12.00 6.046 'Basisveen' + -12.50 76.423 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -27451,9 +27587,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 5.55 'Grind' - -11.09 4.13 'Hydrobiaklei' + -11.09 4.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 29.22 'Eerste zandlaag' + -12.50 29.34 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -27688,10 +27824,10 @@ PartialFactorSet=10 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.80 : Percentage mobilized resistance left - 15.17 : Percentage mobilized resistance right - 252.63 : Effective left - 298.25 : Effective right + 12.75 : Percentage mobilized resistance left + 15.11 : Percentage mobilized resistance right + 251.57 : Effective left + 297.17 : Effective right 1096.84 : Water pressure left 1051.23 : Water pressure right 1973.32 : Max effective resistance left @@ -27700,8 +27836,8 @@ PartialFactorSet=10 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 64.95 : Vertical force left - 75.12 : Vertical force right + 64.56 : Vertical force left + 74.73 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -27710,10 +27846,10 @@ PartialFactorSet=10 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --64.95 : Active force -75.12 : Passive force --64.95 : Plugged active force -75.12 : Plugged passive force +-64.56 : Active force +74.73 : Passive force +-64.56 : Plugged active force +74.73 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -27733,210 +27869,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 20.50787 - 0.00000 0.00000 20.26666 - 0.00000 0.00000 20.02545 - 0.00000 0.00000 19.78424 - 0.00000 0.00000 19.54304 - 0.00000 0.00000 19.30183 - 0.00000 0.00000 19.30183 - 0.00000 0.00000 19.06062 - 0.00000 0.00000 18.81941 - 0.00000 0.00000 18.57820 - 0.00000 0.00000 18.33699 - 0.00000 0.00000 18.09578 - 0.00000 0.00000 18.09578 - 0.00000 -0.00049 18.06740 - -0.00001 -0.00196 18.03902 - -0.00004 -0.00441 18.01065 - -0.00010 -0.00785 17.98227 - -0.00020 -0.01226 17.95389 - -0.00020 -0.01226 17.95389 - -0.00163 -0.04905 17.81200 - -0.00552 -0.11036 17.67011 - -0.01308 -0.19620 17.52823 - -0.02555 -0.30656 17.38634 - -0.04415 -0.44145 17.24445 - -0.04415 -0.44145 17.24445 - -0.08226 -0.64746 17.04581 - -0.13479 -0.85347 16.84718 - -0.20174 -1.05948 16.64856 - -0.28312 -1.26549 16.44994 - -0.37891 -1.47150 16.25135 - -0.37891 -1.47150 16.25135 - -0.54078 -1.76580 15.96768 - -0.73207 -2.06010 15.68408 - -0.95280 -2.35440 15.40058 - -1.20295 -2.64870 15.11720 - -1.48254 -2.94300 14.83397 - -1.48254 -2.94300 14.83397 - -1.79155 -3.23730 14.55093 - -2.13000 -3.53160 14.26810 - -2.49787 -3.82590 13.98555 - -2.89518 -4.12020 13.70332 - -3.32191 -4.41450 13.42146 - -3.32191 -4.41450 13.42146 - -3.71244 -4.66760 13.17938 - -4.12474 -4.92070 12.93765 - -4.55880 -5.17379 12.69630 - -5.01463 -5.42689 12.45539 - -5.49223 -5.67999 12.21494 - -5.49223 -5.67999 12.21494 - -6.15887 -6.01549 11.89699 - -6.86376 -6.35099 11.58005 - -7.60690 -6.68650 11.26424 - -8.38828 -7.02200 10.94968 - -9.20791 -7.35750 10.63650 - -9.20791 -7.35750 10.63650 - -9.80593 -7.59294 10.41761 - -10.42278 -7.82838 10.19951 - -11.05847 -8.06382 9.98225 - -11.71299 -8.29926 9.76588 - -12.38635 -8.53470 9.55046 - -12.38635 -8.53470 9.55046 - -12.55763 -8.59356 9.49676 - -12.73009 -8.65242 9.44312 - -12.90373 -8.71128 9.38955 - -13.07854 -8.77014 9.33604 - -13.25454 -8.82900 9.28260 - -13.25454 -8.82900 9.28260 - -13.97027 -9.06444 9.06950 - -14.70485 -9.29988 8.85753 - -15.45825 -9.53532 8.64674 - -16.23050 -9.77076 8.43721 - -17.02158 -10.00620 8.22898 - -17.02158 -10.00619 8.22898 - -17.22216 -10.04625 8.17713 - -17.42330 -10.06746 8.12537 - -17.62486 -10.08857 8.07370 - -17.82684 -10.10957 8.02212 - -18.02924 -10.13048 7.97063 - -18.02924 -10.13049 7.97063 - -19.04741 -10.23267 7.71455 - -20.07571 -10.33282 7.46087 - -21.11388 -10.43025 7.20972 - -22.16167 -10.52497 6.96124 - -23.21881 -10.61750 6.71554 - -23.21881 -10.61751 6.71554 - -24.28500 -10.70615 6.47277 - -25.35996 -10.79258 6.23305 - -26.44342 -10.87620 5.99654 - -27.53511 -10.95701 5.76335 - -28.63475 -11.03552 5.53364 - -28.63485 -11.03473 5.53364 - -30.18698 -11.13797 5.21812 - -31.75344 -11.24021 4.91006 - -33.33434 -11.34463 4.60984 - -34.93007 -11.45184 4.31786 - -36.54101 -11.56237 4.03450 - -36.54102 -11.56208 4.03450 - -37.98718 -10.67265 3.77947 - -39.31117 -9.67395 3.53253 - -40.49649 -8.53866 3.29393 - -41.52518 -7.26402 3.06392 - -42.38076 -5.88838 2.84275 - -42.38116 -5.87273 2.84275 - -43.04906 -4.40185 2.63066 - -43.52466 -2.90845 2.42773 - -43.80675 -1.44948 2.23403 - -43.90708 -0.11861 2.04962 - -43.84383 1.06830 1.87456 - -43.84237 1.06942 1.87456 - -43.52852 3.08561 1.68485 - -42.93241 4.84829 1.50740 - -42.09067 6.37438 1.34198 - -41.03744 7.68033 1.18835 - -39.80911 8.68820 1.04628 - -39.81171 8.67790 1.04628 - -38.45382 9.47684 0.91548 - -36.98248 10.18861 0.79550 - -35.41388 10.77081 0.68592 - -33.76921 11.20865 0.58628 - -32.06903 11.51548 0.49616 - -32.06843 11.51336 0.49616 - -30.33167 11.70221 0.41508 - -28.57475 11.78499 0.34254 - -26.81267 11.77321 0.27804 - -25.05874 11.67764 0.22110 - -23.32473 11.50829 0.17121 - -23.32480 11.50451 0.17121 - -21.62158 11.27096 0.12788 - -19.95755 10.98176 0.09064 - -18.34040 10.64505 0.05902 - -16.77668 10.26828 0.03259 - -15.27185 9.85824 0.01088 - -15.27204 9.85681 0.01088 - -15.25233 9.85112 0.01061 - -15.23263 9.84543 0.01036 - -15.21295 9.83973 0.01010 - -15.19327 9.83403 0.00984 - -15.17361 9.82833 0.00958 - -15.17361 9.82831 0.00958 - -14.80222 9.71817 0.00483 - -14.43504 9.60694 0.00036 - -14.07211 9.49470 -0.00386 - -13.71346 9.38150 -0.00782 - -13.35913 9.26740 -0.01153 - -13.35909 9.26706 -0.01153 - -12.26890 8.90166 -0.02169 - -11.22296 8.52956 -0.02962 - -10.22201 8.15235 -0.03550 - -9.26655 7.77149 -0.03953 - -8.35694 7.38825 -0.04187 - -8.35697 7.38795 -0.04187 - -7.91946 7.19581 -0.04247 - -7.49348 7.00350 -0.04271 - -7.07904 6.81117 -0.04261 - -6.67613 6.61894 -0.04218 - -6.28476 6.42691 -0.04145 - -6.28476 6.42682 -0.04145 - -5.71314 6.13627 -0.03982 - -5.16792 5.84678 -0.03758 - -4.64899 5.55870 -0.03481 - -4.15619 5.27231 -0.03154 - -3.68937 4.98785 -0.02785 - -3.68937 4.98776 -0.02785 - -3.24834 4.70551 -0.02377 - -2.83289 4.42563 -0.01935 - -2.44280 4.14830 -0.01464 - -2.07782 3.87368 -0.00966 - -1.73770 3.60190 -0.00448 - -1.73771 3.60186 -0.00448 - -1.39227 3.30718 0.00143 - -1.07621 3.01425 0.00751 - -0.78935 2.72322 0.01373 - -0.53150 2.43412 0.02005 - -0.30247 2.14690 0.02644 - -0.30247 2.14690 0.02644 - -0.02542 1.81489 0.03543 - 0.20678 1.50608 0.04443 - 0.39737 1.22048 0.05339 - 0.54959 0.95791 0.06226 - 0.66664 0.71805 0.07099 - 0.66664 0.71822 0.07099 - 0.75171 0.50075 0.07954 - 0.80787 0.30514 0.08791 - 0.83815 0.13091 0.09609 - 0.84550 -0.02244 0.10407 - 0.83281 -0.15548 0.11183 - 0.83281 -0.15527 0.11183 - 0.80292 -0.26846 0.11939 - 0.75854 -0.36241 0.12674 - 0.70232 -0.43758 0.13391 - 0.63687 -0.49444 0.14091 - 0.56471 -0.53344 0.14776 - 0.56472 -0.53329 0.14776 - 0.48835 -0.55473 0.15446 - 0.41019 -0.55903 0.16104 - 0.33261 -0.54645 0.16752 - 0.25796 -0.51723 0.17392 - 0.18855 -0.47158 0.18025 - 0.18856 -0.47153 0.18025 - 0.12669 -0.40952 0.18654 - 0.07465 -0.33133 0.19280 - 0.03468 -0.23698 0.19903 - 0.00904 -0.12653 0.20526 - 0.00000 0.00000 0.21148 + 0.00000 0.00000 20.50529 + 0.00000 0.00000 20.26410 + 0.00000 0.00000 20.02291 + 0.00000 0.00000 19.78172 + 0.00000 0.00000 19.54053 + 0.00000 0.00000 19.29934 + 0.00000 0.00000 19.29934 + 0.00000 0.00000 19.05815 + 0.00000 0.00000 18.81696 + 0.00000 0.00000 18.57577 + 0.00000 0.00000 18.33458 + 0.00000 0.00000 18.09339 + 0.00000 0.00000 18.09339 + 0.00000 -0.00049 18.06502 + -0.00001 -0.00196 18.03664 + -0.00004 -0.00441 18.00827 + -0.00010 -0.00785 17.97989 + -0.00020 -0.01226 17.95152 + -0.00020 -0.01226 17.95152 + -0.00163 -0.04905 17.80964 + -0.00552 -0.11036 17.66777 + -0.01308 -0.19620 17.52589 + -0.02555 -0.30656 17.38401 + -0.04415 -0.44145 17.24214 + -0.04415 -0.44145 17.24214 + -0.08226 -0.64746 17.04352 + -0.13479 -0.85347 16.84490 + -0.20174 -1.05948 16.64629 + -0.28312 -1.26549 16.44770 + -0.37891 -1.47150 16.24912 + -0.37891 -1.47150 16.24912 + -0.54078 -1.76580 15.96548 + -0.73207 -2.06010 15.68190 + -0.95280 -2.35440 15.39842 + -1.20295 -2.64870 15.11506 + -1.48254 -2.94300 14.83186 + -1.48254 -2.94300 14.83186 + -1.79155 -3.23730 14.54884 + -2.13000 -3.53160 14.26604 + -2.49787 -3.82590 13.98351 + -2.89518 -4.12020 13.70131 + -3.32191 -4.41450 13.41946 + -3.32191 -4.41450 13.41946 + -3.71244 -4.66760 13.17741 + -4.12474 -4.92070 12.93570 + -4.55880 -5.17379 12.69437 + -5.01463 -5.42689 12.45347 + -5.49223 -5.67999 12.21304 + -5.49223 -5.67999 12.21304 + -6.15887 -6.01549 11.89512 + -6.86376 -6.35099 11.57821 + -7.60690 -6.68650 11.26243 + -8.38828 -7.02200 10.94790 + -9.20791 -7.35750 10.63474 + -9.20791 -7.35750 10.63474 + -9.80593 -7.59294 10.41587 + -10.42278 -7.82838 10.19779 + -11.05847 -8.06382 9.98055 + -11.71299 -8.29926 9.76420 + -12.38635 -8.53470 9.54880 + -12.38635 -8.53470 9.54880 + -12.55763 -8.59356 9.49510 + -12.73009 -8.65242 9.44147 + -12.90373 -8.71128 9.38790 + -13.07854 -8.77014 9.33440 + -13.25454 -8.82900 9.28096 + -13.25454 -8.82900 9.28096 + -13.97027 -9.06444 9.06788 + -14.70485 -9.29988 8.85593 + -15.45825 -9.53532 8.64516 + -16.23050 -9.77076 8.43564 + -17.02158 -10.00620 8.22743 + -17.02158 -10.00619 8.22743 + -17.22216 -10.04625 8.17559 + -17.42330 -10.06747 8.12384 + -17.62486 -10.08857 8.07217 + -17.82684 -10.10957 8.02060 + -18.02924 -10.13049 7.96911 + -18.02924 -10.13049 7.96911 + -19.04741 -10.23269 7.71305 + -20.07571 -10.33284 7.45940 + -21.11389 -10.43029 7.20827 + -22.16168 -10.52501 6.95981 + -23.21882 -10.61755 6.71414 + -23.21882 -10.61756 6.71414 + -24.28502 -10.70622 6.47139 + -25.35999 -10.79265 6.23170 + -26.44346 -10.87629 5.99521 + -27.53516 -10.95710 5.76205 + -28.63481 -11.03562 5.53235 + -28.63491 -11.03483 5.53235 + -30.18705 -11.13808 5.21687 + -31.75353 -11.24034 4.90884 + -33.33445 -11.34480 4.60866 + -34.93020 -11.45205 4.31671 + -36.54118 -11.56261 4.03338 + -36.54118 -11.56232 4.03338 + -37.98744 -10.67369 3.77838 + -39.31157 -9.67510 3.53147 + -40.49705 -8.53993 3.29290 + -41.52592 -7.26539 3.06293 + -42.38168 -5.89000 2.84179 + -42.38208 -5.87435 2.84179 + -43.05022 -4.40385 2.62973 + -43.52610 -2.91081 2.42683 + -43.80853 -1.45237 2.23316 + -43.90928 -0.12218 2.04879 + -43.84653 1.06408 1.87376 + -43.84642 1.08675 1.87376 + -43.53083 3.09414 1.68409 + -42.93352 4.85579 1.50668 + -42.09074 6.38092 1.34130 + -41.03660 7.68595 1.18771 + -39.80748 8.69316 1.04568 + -39.80994 8.68349 1.04568 + -38.45124 9.48203 0.91492 + -36.97916 10.19324 0.79498 + -35.40992 10.77474 0.68543 + -33.76470 11.21193 0.58583 + -32.06408 11.51816 0.49574 + -32.06348 11.51605 0.49574 + -30.32636 11.70435 0.41470 + -28.56916 11.78662 0.34219 + -26.80687 11.77438 0.27772 + -25.05280 11.67839 0.22081 + -23.31871 11.50866 0.17095 + -23.31878 11.50487 0.17095 + -21.61553 11.27098 0.12764 + -19.95152 10.98147 0.09042 + -18.33444 10.64447 0.05883 + -16.77082 10.26745 0.03242 + -15.26613 9.85719 0.01072 + -15.26632 9.85576 0.01072 + -15.24661 9.85007 0.01046 + -15.22692 9.84438 0.01020 + -15.20724 9.83868 0.00994 + -15.18756 9.83297 0.00969 + -15.16790 9.82726 0.00943 + -15.16790 9.82725 0.00943 + -14.79657 9.71674 0.00469 + -14.42944 9.60548 0.00021 + -14.06656 9.49320 -0.00400 + -13.70797 9.37997 -0.00795 + -13.35370 9.26584 -0.01166 + -13.35366 9.26550 -0.01166 + -12.26366 8.90001 -0.02180 + -11.21793 8.52783 -0.02972 + -10.21718 8.15055 -0.03560 + -9.26194 7.76962 -0.03962 + -8.35257 7.38632 -0.04195 + -8.35260 7.38602 -0.04195 + -7.91520 7.19384 -0.04254 + -7.48934 7.00151 -0.04278 + -7.07502 6.80916 -0.04267 + -6.67224 6.61690 -0.04224 + -6.28099 6.42485 -0.04151 + -6.28098 6.42476 -0.04151 + -5.70956 6.13417 -0.03987 + -5.16453 5.84466 -0.03763 + -4.64579 5.55655 -0.03485 + -4.15319 5.27014 -0.03159 + -3.68656 4.98566 -0.02789 + -3.68656 4.98557 -0.02789 + -3.24574 4.70329 -0.02380 + -2.83049 4.42339 -0.01938 + -2.44060 4.14604 -0.01467 + -2.07583 3.87141 -0.00969 + -1.73592 3.59961 -0.00450 + -1.73592 3.59957 -0.00450 + -1.39073 3.30459 0.00140 + -1.07494 3.01166 0.00749 + -0.78834 2.72062 0.01371 + -0.53075 2.43151 0.02003 + -0.30197 2.14429 0.02642 + -0.30198 2.14429 0.02642 + -0.02504 1.81493 0.03542 + 0.20716 1.50608 0.04442 + 0.39775 1.22044 0.05338 + 0.54996 0.95784 0.06225 + 0.66700 0.71796 0.07098 + 0.66700 0.71813 0.07098 + 0.75205 0.50064 0.07954 + 0.80820 0.30501 0.08791 + 0.83845 0.13076 0.09609 + 0.84579 -0.02260 0.10406 + 0.83307 -0.15565 0.11183 + 0.83308 -0.15544 0.11183 + 0.80316 -0.26864 0.11938 + 0.75876 -0.36259 0.12674 + 0.70251 -0.43776 0.13391 + 0.63704 -0.49462 0.14091 + 0.56486 -0.53360 0.14776 + 0.56486 -0.53346 0.14776 + 0.48847 -0.55489 0.15446 + 0.41029 -0.55919 0.16104 + 0.33269 -0.54660 0.16752 + 0.25802 -0.51736 0.17392 + 0.18859 -0.47169 0.18026 + 0.18860 -0.47164 0.18026 + 0.12672 -0.40962 0.18655 + 0.07466 -0.33140 0.19281 + 0.03468 -0.23703 0.19904 + 0.00905 -0.12655 0.20527 + 0.00000 0.00000 0.21149 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -28246,7 +28382,7 @@ Lambda passive -5.42000 0.59280 2.93770 0.00000 0.93623 0.00000 4.95564 -5.56000 0.64740 3.02352 0.00000 0.91978 0.00000 4.67026 -5.70000 0.70200 3.08789 0.00000 0.90589 0.00000 4.48593 - -5.70000 0.70200 16.00809 0.00000 0.90589 0.00000 15.47161 + -5.70000 0.70200 16.00809 0.00000 0.86905 0.00000 15.47161 -5.83000 2.03270 17.92499 0.00000 0.75296 0.00000 8.81832 -5.96000 3.36340 20.64691 0.00000 0.73173 0.00000 6.13870 -6.09000 4.69410 23.42791 0.00000 0.72253 0.00000 4.99093 @@ -28258,7 +28394,7 @@ Lambda passive -6.74000 11.34760 37.47882 0.00000 0.70891 0.00000 3.30280 -6.87000 12.67830 40.29419 0.00000 0.70790 0.00000 3.17820 -7.00000 14.00900 42.40579 0.00000 0.70708 0.00000 3.10067 - -7.00000 14.00900 47.14848 0.00000 0.70708 0.00000 3.29534 + -7.00000 14.00900 47.14848 0.00000 0.59738 0.00000 3.29534 -7.14950 15.20350 49.42915 0.00000 0.58331 0.00000 3.25117 -7.29900 16.39801 52.69103 0.00000 0.58287 0.00000 3.21326 -7.44850 17.59251 56.10333 0.00000 0.58250 0.00000 3.18905 @@ -28288,7 +28424,7 @@ Lambda passive -9.99600 37.94704 118.52034 15.09101 0.57976 0.39769 3.12331 -9.99800 37.96302 118.57003 15.09738 0.57975 0.39769 3.12330 -10.00000 37.97900 118.60727 15.10214 0.57975 0.39769 3.12330 - -10.00000 37.97900 95.01958 14.30585 0.57975 0.37617 2.49853 + -10.00000 37.97900 95.01958 14.30585 0.68945 0.37617 2.49853 -10.03800 38.18382 95.33121 14.38655 0.70215 0.37677 2.49664 -10.07600 38.38864 95.74702 14.49412 0.70214 0.37756 2.49415 -10.11400 38.59346 96.16319 14.60167 0.70212 0.37835 2.49170 @@ -28318,13 +28454,13 @@ Lambda passive -11.81800 47.77802 115.07736 19.41113 0.70158 0.40628 2.40858 -11.90900 48.26851 116.09690 19.66761 0.70155 0.40746 2.40523 -12.00000 48.75900 116.86197 19.85997 0.70153 0.40834 2.40277 - -12.00000 48.75900 87.41678 28.32640 0.70153 0.57160 1.76399 + -12.00000 48.75900 87.41678 28.32640 0.73837 0.57160 1.76399 -12.10000 51.94800 91.30292 29.84799 0.74341 0.57457 1.75758 -12.20000 55.13700 96.47626 31.87681 0.74328 0.57814 1.74976 -12.30000 58.32600 101.63981 33.90568 0.74316 0.58131 1.74262 -12.40000 61.51500 106.79366 35.93458 0.74306 0.58416 1.73606 -12.50000 64.70400 110.65304 37.45628 0.74297 0.58611 1.73148 - -12.50000 64.70400 340.89527 19.53058 0.74297 0.30019 5.23965 + -12.50000 64.70400 340.89527 19.53058 0.49577 0.30019 5.23965 -12.64000 66.13060 340.57469 19.87329 0.47119 0.30052 5.15003 -12.78000 67.55720 342.66319 20.32853 0.47117 0.30091 5.07219 -12.92000 68.98380 346.39185 20.78194 0.47114 0.30126 5.02135 @@ -28443,137 +28579,137 @@ Status character 0.00000 31.09770 0.00000 0.00000 -1 0 - 0.00000 31.88250 0.00000 0.00000 -1 0 - 0.00002 31.88250 0.00002 0.00002 402 100 P - 1.87976 32.07870 2.01820 0.12141 330 93 3 - 1.88510 32.27490 2.03046 0.12719 330 93 3 - 1.89044 32.47110 2.04272 0.13297 330 93 3 - 1.89579 32.66730 2.05498 0.13875 330 92 3 - 1.89850 32.86350 2.06418 0.13730 330 92 3 - 1.91437 32.86350 2.08257 0.18066 330 92 3 - 1.92800 33.84450 2.12854 0.17344 330 91 3 - 1.95502 34.82550 2.18984 0.20234 330 89 3 - 1.98219 35.80650 2.25114 0.23125 330 88 3 - 2.00954 36.78750 2.31244 0.26015 330 87 3 - 2.02585 37.76850 2.35842 0.27702 330 86 3 - 2.04829 37.76850 2.38907 0.30110 330 86 3 - 2.06478 38.74950 2.43504 0.31797 330 85 3 - 2.09269 39.73050 2.49634 0.34687 330 84 3 - 2.12080 40.71150 2.55764 0.37578 330 83 3 - 2.14913 41.69250 2.61894 0.40468 330 82 3 - 2.16664 42.67350 2.66492 0.42374 330 81 3 - 2.19314 42.67350 2.70170 0.44739 330 81 3 - 2.21804 44.04690 2.76606 0.47406 330 80 3 - 2.20746 45.42030 2.85188 0.51453 220 77 2 - 2.18672 46.79370 2.93770 0.55500 220 74 2 - 2.16771 48.16710 3.02352 0.59546 220 72 2 - 2.13933 49.54050 3.08789 0.62357 220 69 2 - 9.46234 49.54050 16.00809 0.93730 220 59 2 - 10.10718 50.31580 17.92499 1.53055 220 56 2 - 11.14353 51.09110 20.64691 2.46110 220 54 2 - 12.20837 51.86640 23.42791 3.39165 220 52 2 - 13.28755 52.64170 26.22853 4.32220 220 51 2 - 13.76211 53.41700 28.33447 5.01518 110 49 1 - 14.23726 53.41700 29.74000 5.49032 110 48 1 - 14.27763 54.19230 31.84964 6.18330 110 45 1 - 14.58378 54.96760 34.66381 7.11385 110 42 1 - 14.91833 55.74290 37.47882 8.04440 110 40 1 - 15.28147 56.51820 40.29419 8.97495 110 38 1 - 15.43816 57.29350 42.40579 9.67027 110 36 1 - 18.76848 57.29350 47.14848 10.11666 110 40 1 - 16.64454 58.76009 49.42915 8.86830 110 34 1 - 16.51522 60.22669 52.69103 9.55798 110 31 1 - 16.44141 61.69329 56.10333 10.24767 110 29 1 - 16.42203 63.15988 59.60370 10.93735 110 28 1 - 16.28226 64.62648 62.26597 11.45327 110 26 1 - 16.62980 64.62648 64.05543 11.80081 110 26 1 - 16.54201 66.09307 66.75644 12.31672 110 25 1 - 16.67797 67.55967 70.37985 13.00641 110 24 1 - 16.86187 69.02626 74.02365 13.69610 110 23 1 - 17.09170 70.49286 77.68288 14.38578 110 22 1 - 17.19197 71.95945 80.43496 14.90201 110 21 1 - 17.53889 71.95945 82.27306 15.24892 110 21 1 - 17.68090 73.42605 85.03447 15.76515 110 21 1 - 18.03579 74.89264 88.72236 16.45484 110 20 1 - 18.42780 76.35924 92.41622 17.14452 110 20 1 - 18.85466 77.82583 96.11494 17.83421 110 20 1 - 19.14083 79.29243 98.89154 18.35063 110 19 1 - 19.48736 79.29243 100.74377 18.69716 110 19 1 - 19.80379 80.75902 103.52367 19.21358 110 19 1 - 20.32158 82.22561 107.23244 19.90326 110 19 1 - 20.86536 83.69221 110.94353 20.59295 110 19 1 - 21.43304 85.15881 114.65657 21.28263 110 19 1 - 21.84938 86.62540 117.44241 21.79919 110 19 1 - 22.02483 86.62540 118.38361 21.97464 110 19 1 - 22.03054 86.64502 118.42091 21.98155 110 19 1 - 22.03857 86.66464 118.47063 21.99077 110 19 1 - 22.04660 86.68426 118.52034 22.00000 110 19 1 - 22.05463 86.70388 118.57003 22.00923 110 19 1 - 22.06035 86.72350 118.60727 22.01614 110 19 1 - 22.07762 86.72350 95.01958 22.04814 110 23 1 - 26.82569 87.09628 95.33121 26.81081 110 28 1 - 26.95514 87.46906 95.74702 26.95404 110 28 1 - 27.08540 87.84184 96.16319 27.09727 110 0 1 - 27.21644 88.21462 96.57970 27.24050 110 0 1 - 27.31231 88.58740 96.89230 27.34778 110 0 1 - 27.46178 88.58740 97.32590 27.49726 110 0 1 - 27.76931 89.76460 98.31516 27.83604 110 0 1 - 28.19721 90.94180 99.63663 28.28834 110 0 1 - 28.63140 92.11900 100.96087 28.74064 110 0 1 - 29.07132 93.29620 102.28764 29.19295 110 0 1 - 29.40291 94.47340 103.28420 29.53176 110 0 1 - 29.57316 94.47340 103.78297 29.70200 110 0 1 - 29.74072 95.06200 104.28208 29.87140 110 0 1 - 29.96614 95.65060 104.94798 30.09755 110 0 1 - 30.19261 96.23920 105.61439 30.32370 110 0 1 - 30.42007 96.82780 106.28128 30.54986 110 0 1 - 30.59172 97.41640 106.78174 30.71927 110 0 1 - 30.73451 97.41640 107.20178 30.86206 110 0 1 - 30.99649 98.30911 107.96166 31.11900 110 0 1 - 31.34637 99.20182 108.97564 31.46200 110 0 1 - 31.69790 100.09453 109.99055 31.80500 110 0 1 - 32.05094 100.98724 111.00633 32.14799 110 0 1 - 32.31927 101.87995 111.76869 32.40495 110 0 1 - 32.49135 101.87995 112.27719 32.57703 110 0 1 - 32.76086 102.77266 113.04034 32.83399 110 0 1 - 33.11744 103.66537 114.05849 33.17699 110 0 1 - 33.47495 104.55808 115.07736 33.51998 110 0 1 - 33.83324 105.45079 116.09690 33.86298 110 0 1 - 34.10618 106.34350 116.86197 34.11995 110 0 1 - 34.75839 106.34350 87.41678 34.76527 110 0 1 - 38.62069 104.32450 91.30292 38.61849 110 42 1 - 40.99367 102.30550 96.47626 40.98212 110 42 1 - 43.36687 100.28650 101.63981 43.34574 110 43 1 - 45.74022 98.26750 106.79366 45.70937 110 43 1 - 47.52134 96.24850 110.65304 47.48067 110 43 1 - 48.58204 96.24850 340.89527 48.33798 110 14 1 - 31.48713 97.62190 340.57469 31.16005 110 9 1 - 32.24082 98.99530 342.66319 31.83067 110 9 1 - 32.99411 100.36870 346.39185 32.50129 110 10 1 - 33.74658 101.74210 351.04356 33.17191 110 10 1 - 34.32977 103.11550 354.90949 33.67450 110 10 1 - 34.66581 103.11550 357.63285 34.01054 110 10 1 - 35.24739 104.48890 361.88335 34.51314 110 10 1 - 35.99527 105.86230 367.76522 35.18376 110 10 1 - 36.74136 107.23570 373.84331 35.85437 110 10 1 - 37.48560 108.60910 380.06841 36.52499 110 10 1 - 38.05991 109.98250 384.80983 37.02762 110 10 1 - 38.39588 109.98250 388.00277 37.36359 110 10 1 - 38.96825 111.35590 392.83243 37.86623 110 10 1 - 39.70677 112.72930 399.32877 38.53684 110 10 1 - 40.44358 114.10270 405.88178 39.20746 110 10 1 - 41.17882 115.47610 412.48108 39.87808 110 10 1 - 41.74464 116.84950 417.45500 40.38074 110 10 1 - 42.08055 116.84950 420.78228 40.71665 110 10 1 - 42.64508 118.22290 425.78811 41.21931 110 10 1 - 43.37645 119.59630 432.48443 41.88993 110 10 1 - 44.10688 120.96970 439.20353 42.56055 110 10 1 - 44.83655 122.34310 445.94208 43.23116 110 10 1 - 45.39769 123.71650 451.00664 43.73385 110 10 1 - 45.73356 123.71650 454.38808 44.06971 110 10 1 - 46.29430 125.08990 459.46710 44.57240 110 10 1 - 47.02268 126.46330 466.24940 45.24301 110 10 1 - 47.75087 127.83670 473.04269 45.91363 110 10 1 - 48.47895 129.21010 479.84562 46.58425 110 10 1 - 49.03910 130.58350 484.95322 47.08695 110 10 1 + 1.87966 32.07870 2.01820 0.12141 330 93 3 + 1.88500 32.27490 2.03046 0.12719 330 93 3 + 1.89034 32.47110 2.04272 0.13297 330 93 3 + 1.89569 32.66730 2.05498 0.13875 330 92 3 + 1.89840 32.86350 2.06418 0.13730 330 92 3 + 1.91427 32.86350 2.08257 0.18066 330 92 3 + 1.92791 33.84450 2.12854 0.17344 330 91 3 + 1.95492 34.82550 2.18984 0.20234 330 89 3 + 1.98210 35.80650 2.25114 0.23125 330 88 3 + 2.00945 36.78750 2.31244 0.26015 330 87 3 + 2.02576 37.76850 2.35842 0.27702 330 86 3 + 2.04820 37.76850 2.38907 0.30110 330 86 3 + 2.06469 38.74950 2.43504 0.31797 330 85 3 + 2.09260 39.73050 2.49634 0.34687 330 84 3 + 2.12072 40.71150 2.55764 0.37578 330 83 3 + 2.14905 41.69250 2.61894 0.40468 330 82 3 + 2.16656 42.67350 2.66492 0.42374 330 81 3 + 2.19305 42.67350 2.70170 0.44739 330 81 3 + 2.21796 44.04690 2.76606 0.47406 330 80 3 + 2.20720 45.42030 2.85188 0.51453 220 77 2 + 2.18647 46.79370 2.93770 0.55500 220 74 2 + 2.16747 48.16710 3.02352 0.59546 220 72 2 + 2.13910 49.54050 3.08789 0.62357 220 69 2 + 9.45101 49.54050 16.00809 0.89919 220 59 2 + 10.10627 50.31580 17.92499 1.53055 220 56 2 + 11.14265 51.09110 20.64691 2.46110 220 54 2 + 12.20751 51.86640 23.42791 3.39165 220 52 2 + 13.28672 52.64170 26.22853 4.32220 220 51 2 + 13.75916 53.41700 28.33447 5.01518 110 49 1 + 14.23430 53.41700 29.74000 5.49032 110 48 1 + 14.27477 54.19230 31.84964 6.18330 110 45 1 + 14.58102 54.96760 34.66381 7.11385 110 42 1 + 14.91567 55.74290 37.47882 8.04440 110 40 1 + 15.27891 56.51820 40.29419 8.97495 110 38 1 + 15.43570 57.29350 42.40579 9.67027 110 36 1 + 17.19523 57.29350 47.14848 8.54710 110 36 1 + 16.64103 58.76009 49.42915 8.86830 110 34 1 + 16.51190 60.22669 52.69103 9.55798 110 31 1 + 16.43827 61.69329 56.10333 10.24767 110 29 1 + 16.41907 63.15988 59.60370 10.93735 110 28 1 + 16.27948 64.62648 62.26597 11.45327 110 26 1 + 16.62702 64.62648 64.05543 11.80081 110 26 1 + 16.53941 66.09307 66.75644 12.31672 110 25 1 + 16.67554 67.55967 70.37985 13.00641 110 24 1 + 16.85962 69.02626 74.02365 13.69610 110 23 1 + 17.08962 70.49286 77.68288 14.38578 110 22 1 + 17.19005 71.95945 80.43496 14.90201 110 21 1 + 17.53697 71.95945 82.27306 15.24892 110 21 1 + 17.67914 73.42605 85.03447 15.76515 110 21 1 + 18.03417 74.89264 88.72236 16.45484 110 20 1 + 18.42632 76.35924 92.41622 17.14452 110 20 1 + 18.85332 77.82583 96.11494 17.83421 110 20 1 + 19.13961 79.29243 98.89154 18.35063 110 19 1 + 19.48614 79.29243 100.74377 18.69716 110 19 1 + 19.80269 80.75902 103.52367 19.21358 110 19 1 + 20.32059 82.22561 107.23244 19.90326 110 19 1 + 20.86447 83.69221 110.94353 20.59295 110 19 1 + 21.43225 85.15881 114.65657 21.28263 110 19 1 + 21.84868 86.62540 117.44241 21.79919 110 19 1 + 22.02412 86.62540 118.38361 21.97464 110 19 1 + 22.02983 86.64502 118.42091 21.98155 110 19 1 + 22.03786 86.66464 118.47063 21.99077 110 19 1 + 22.04589 86.68426 118.52034 22.00000 110 19 1 + 22.05393 86.70388 118.57003 22.00923 110 19 1 + 22.05965 86.72350 118.60727 22.01614 110 19 1 + 26.24909 86.72350 95.01958 26.22008 110 28 1 + 26.82523 87.09628 95.33121 26.81081 110 28 1 + 26.95470 87.46906 95.74702 26.95404 110 28 1 + 27.08497 87.84184 96.16319 27.09727 110 0 1 + 27.21603 88.21462 96.57970 27.24050 110 0 1 + 27.31190 88.58740 96.89230 27.34778 110 0 1 + 27.46138 88.58740 97.32590 27.49726 110 0 1 + 27.76895 89.76460 98.31516 27.83604 110 0 1 + 28.19688 90.94180 99.63663 28.28834 110 0 1 + 28.63111 92.11900 100.96087 28.74064 110 0 1 + 29.07105 93.29620 102.28764 29.19295 110 0 1 + 29.40267 94.47340 103.28420 29.53176 110 0 1 + 29.57291 94.47340 103.78297 29.70200 110 0 1 + 29.74050 95.06200 104.28208 29.87140 110 0 1 + 29.96593 95.65060 104.94798 30.09755 110 0 1 + 30.19241 96.23920 105.61439 30.32370 110 0 1 + 30.41987 96.82780 106.28128 30.54986 110 0 1 + 30.59153 97.41640 106.78174 30.71927 110 0 1 + 30.73433 97.41640 107.20178 30.86206 110 0 1 + 30.99633 98.30911 107.96166 31.11900 110 0 1 + 31.34621 99.20182 108.97564 31.46200 110 0 1 + 31.69776 100.09453 109.99055 31.80500 110 0 1 + 32.05081 100.98724 111.00633 32.14799 110 0 1 + 32.31915 101.87995 111.76869 32.40495 110 0 1 + 32.49123 101.87995 112.27719 32.57703 110 0 1 + 32.76074 102.77266 113.04034 32.83399 110 0 1 + 33.11734 103.66537 114.05849 33.17699 110 0 1 + 33.47485 104.55808 115.07736 33.51998 110 0 1 + 33.83315 105.45079 116.09690 33.86298 110 0 1 + 34.10610 106.34350 116.86197 34.11995 110 0 1 + 36.58383 106.34350 87.41678 36.59075 110 0 1 + 38.62065 104.32450 91.30292 38.61849 110 42 1 + 40.99364 102.30550 96.47626 40.98212 110 42 1 + 43.36683 100.28650 101.63981 43.34574 110 43 1 + 45.74019 98.26750 106.79366 45.70937 110 43 1 + 47.52132 96.24850 110.65304 47.48067 110 43 1 + 32.49873 96.24850 340.89527 32.25483 110 10 1 + 31.48698 97.62190 340.57469 31.16005 110 9 1 + 32.24068 98.99530 342.66319 31.83067 110 9 1 + 32.99399 100.36870 346.39185 32.50129 110 10 1 + 33.74648 101.74210 351.04356 33.17191 110 10 1 + 34.32968 103.11550 354.90949 33.67450 110 10 1 + 34.66572 103.11550 357.63285 34.01054 110 10 1 + 35.24731 104.48890 361.88335 34.51314 110 10 1 + 35.99521 105.86230 367.76522 35.18376 110 10 1 + 36.74132 107.23570 373.84331 35.85437 110 10 1 + 37.48556 108.60910 380.06841 36.52499 110 10 1 + 38.05988 109.98250 384.80983 37.02762 110 10 1 + 38.39585 109.98250 388.00277 37.36359 110 10 1 + 38.96823 111.35590 392.83243 37.86623 110 10 1 + 39.70676 112.72930 399.32877 38.53684 110 10 1 + 40.44359 114.10270 405.88178 39.20746 110 10 1 + 41.17883 115.47610 412.48108 39.87808 110 10 1 + 41.74466 116.84950 417.45500 40.38074 110 10 1 + 42.08058 116.84950 420.78228 40.71665 110 10 1 + 42.64511 118.22290 425.78811 41.21931 110 10 1 + 43.37648 119.59630 432.48443 41.88993 110 10 1 + 44.10692 120.96970 439.20353 42.56055 110 10 1 + 44.83660 122.34310 445.94208 43.23116 110 10 1 + 45.39775 123.71650 451.00664 43.73385 110 10 1 + 45.73362 123.71650 454.38808 44.06971 110 10 1 + 46.29436 125.08990 459.46710 44.57240 110 10 1 + 47.02276 126.46330 466.24940 45.24301 110 10 1 + 47.75096 127.83670 473.04269 45.91363 110 10 1 + 48.47904 129.21010 479.84562 46.58425 110 10 1 + 49.03920 130.58350 484.95322 47.08695 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -28589,11 +28725,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 3.740 'Hollandveen' - -5.70 17.194 'Oude Zeeklei' - -7.00 54.349 'Wadzand' - -10.00 60.615 'Hydrobiaklei' - -12.00 20.986 'Basisveen' - -12.50 141.367 'Eerste zandlaag' + -5.70 17.190 'Oude Zeeklei' + -7.00 54.226 'Wadzand' + -10.00 60.694 'Hydrobiaklei' + -12.00 21.077 'Basisveen' + -12.50 140.241 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -28612,10 +28748,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 3.12 'Oude Zeeklei' - -7.00 14.01 'Wadzand' - -10.00 11.02 'Hydrobiaklei' + -7.00 13.98 'Wadzand' + -10.00 11.03 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 46.97 'Eerste zandlaag' + -12.50 46.59 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -28940,7 +29076,7 @@ Lambda passive -5.42000 0.74880 3.18290 0.00000 0.74118 0.00000 4.25067 -5.56000 0.80340 3.26873 0.00000 0.74118 0.00000 4.06861 -5.70000 0.85800 3.33309 0.00000 0.74118 0.00000 3.94752 - -5.70000 0.85800 16.38179 0.00000 0.74118 0.00000 13.75841 + -5.70000 0.85800 16.38179 0.00000 0.70434 0.00000 13.75841 -5.83000 2.18870 18.31176 0.00000 0.69929 0.00000 8.36650 -5.96000 3.51940 21.02646 0.00000 0.69929 0.00000 5.97445 -6.09000 4.85010 23.79897 0.00000 0.69929 0.00000 4.90690 @@ -28952,7 +29088,7 @@ Lambda passive -6.74000 11.50360 37.82878 0.00000 0.69929 0.00000 3.28843 -6.87000 12.83430 40.64210 0.00000 0.69929 0.00000 3.16668 -7.00000 14.16500 42.75238 0.00000 0.69929 0.00000 3.09076 - -7.00000 14.16500 47.76726 0.00000 0.69929 0.00000 3.30258 + -7.00000 14.16500 47.76726 0.00000 0.58959 0.00000 3.30258 -7.14950 15.35950 50.02879 0.00000 0.57738 0.00000 3.25719 -7.29900 16.55401 53.27149 0.00000 0.57738 0.00000 3.21804 -7.44850 17.74851 56.66936 0.00000 0.57738 0.00000 3.19291 @@ -28982,7 +29118,7 @@ Lambda passive -9.99600 38.10304 119.01876 15.15315 0.57738 0.39769 3.12360 -9.99800 38.11902 119.06846 15.15952 0.57738 0.39769 3.12360 -10.00000 38.13500 119.10577 15.16428 0.57738 0.39769 3.12359 - -10.00000 38.13500 95.32658 14.38720 0.57738 0.37676 2.49636 + -10.00000 38.13500 95.32658 14.38720 0.68708 0.37676 2.49636 -10.03800 38.33982 95.63859 14.46788 0.69929 0.37736 2.49450 -10.07600 38.54464 96.05489 14.57544 0.69929 0.37814 2.49204 -10.11400 38.74946 96.47153 14.68297 0.69929 0.37892 2.48962 @@ -29012,13 +29148,13 @@ Lambda passive -11.81800 47.93402 115.39800 19.49228 0.69929 0.40665 2.40743 -11.90900 48.42451 116.41790 19.74877 0.69929 0.40783 2.40411 -12.00000 48.91500 117.18322 19.94112 0.69929 0.40869 2.40167 - -12.00000 48.91500 87.65681 28.42563 0.69929 0.57180 1.76328 + -12.00000 48.91500 87.65681 28.42563 0.73613 0.57180 1.76328 -12.10000 52.10400 91.54267 29.94721 0.74118 0.57476 1.75692 -12.20000 55.29300 96.71571 31.97603 0.74118 0.57830 1.74915 -12.30000 58.48200 101.87906 34.00490 0.74118 0.58146 1.74206 -12.40000 61.67100 107.03278 36.03380 0.74118 0.58429 1.73554 -12.50000 64.86000 110.89211 37.55550 0.74118 0.58623 1.73099 - -12.50000 64.86000 341.86602 19.57729 0.74118 0.30019 5.24201 + -12.50000 64.86000 341.86602 19.57729 0.49398 0.30019 5.24201 -12.64000 66.28660 341.51730 19.91990 0.47008 0.30051 5.15213 -12.78000 67.71320 343.57625 20.37503 0.47008 0.30090 5.07399 -12.92000 69.13980 347.28230 20.82837 0.47008 0.30125 5.02290 @@ -29160,7 +29296,7 @@ Status character 0.00000 49.73670 3.18290 0.55500 1 0 A 0.00000 51.11010 3.26873 0.59546 1 0 A 0.00000 52.48350 3.33309 0.62582 1 0 A - 0.00000 52.48350 16.38179 0.88251 1 0 A + 0.00000 52.48350 16.38179 0.83865 1 0 A 0.00000 53.25880 18.31176 1.53055 1 0 A 0.00000 54.03410 21.02646 2.46110 1 0 A 0.00000 54.80940 23.79897 3.39165 1 0 A @@ -29169,105 +29305,105 @@ Status character 0.00000 56.36000 30.09831 5.48539 1 0 A 0.00000 57.13530 32.20516 6.18330 1 0 A 0.00000 57.91060 35.01626 7.11385 1 0 A - 1.17047 58.68590 37.82878 8.04440 110 0 1 - 2.66843 59.46120 40.64210 8.97495 110 0 1 - 3.90498 60.23650 42.75238 9.67286 110 0 1 - 1.46251 60.23650 47.76726 10.11433 110 0 1 - 1.09205 61.70309 50.02879 8.86830 110 0 1 - 2.60074 63.16969 53.27149 9.55798 110 0 1 - 4.05393 64.63629 56.66936 10.24767 110 0 1 - 5.45267 66.10288 60.15837 10.93735 110 0 1 + 1.17313 58.68590 37.82878 8.04440 110 0 1 + 2.67099 59.46120 40.64210 8.97495 110 0 1 + 3.90744 60.23650 42.75238 9.67286 110 0 1 + 0.00000 60.23650 47.76726 8.52766 1 0 A + 1.09556 61.70309 50.02879 8.86830 110 0 1 + 2.60407 63.16969 53.27149 9.55798 110 0 1 + 4.05707 64.63629 56.66936 10.24767 110 0 1 + 5.45564 66.10288 60.15837 10.93735 110 0 1 7.88246 67.56948 62.81355 11.45462 1 0 A 8.12038 67.56948 64.59887 11.79946 1 0 A 8.47724 69.03607 67.29441 12.31672 1 0 A - 9.33485 70.50267 70.91152 13.00641 110 0 1 - 10.53032 71.96926 74.55002 13.69610 110 0 1 - 11.67986 73.43586 78.20475 14.38578 110 0 1 - 12.61308 74.90245 80.95386 14.90304 110 0 1 - 12.95792 74.90245 82.79018 15.24789 110 0 1 - 13.84940 76.36905 85.54917 15.76515 110 0 1 - 14.87389 77.83564 89.23418 16.45484 110 0 1 - 15.86125 79.30224 92.92554 17.14452 110 0 1 - 16.81376 80.76883 96.62208 17.83421 110 0 1 - 17.56127 82.23543 99.39721 18.35147 110 0 1 - 17.90612 82.23543 101.24855 18.69631 110 0 1 - 18.62336 83.70202 104.02721 19.21358 110 0 1 - 19.48495 85.16862 107.73449 19.90326 110 0 1 - 20.32054 86.63521 111.44425 20.59295 110 0 1 - 21.13223 88.10181 115.15611 21.28263 110 0 1 - 21.74970 89.56840 117.94115 21.79990 110 0 1 - 21.92443 89.56840 118.88211 21.97463 110 0 1 - 21.93255 89.58802 118.91940 21.98155 110 0 1 - 21.94298 89.60764 118.96910 21.99077 110 0 1 - 21.95340 89.62726 119.01876 22.00000 110 0 1 - 21.96382 89.64688 119.06846 22.00923 110 0 1 - 21.97193 89.66650 119.10577 22.01615 110 0 1 - 22.01854 89.66650 95.32658 22.04802 110 0 1 - 26.79594 90.03928 95.63859 26.81081 110 0 1 - 26.95295 90.41206 96.05489 26.95404 110 0 1 - 27.10915 90.78484 96.47153 27.09727 110 28 1 - 27.26456 91.15762 96.88851 27.24050 110 28 1 - 27.38340 91.53040 97.20145 27.34792 110 28 1 - 27.53228 91.53040 97.63550 27.49681 110 28 1 - 27.90276 92.70760 98.62574 27.83604 110 28 1 - 28.37946 93.88480 99.94844 28.28834 110 28 1 - 28.84988 95.06200 101.27379 28.74064 110 28 1 - 29.31457 96.23920 102.60160 29.19295 110 29 1 - 29.66101 97.41640 103.59888 29.53217 110 29 1 - 29.83063 97.41640 104.09799 29.70179 110 29 1 - 30.00208 98.00500 104.59743 29.87140 110 29 1 - 30.22896 98.59360 105.26376 30.09755 110 29 1 - 30.45480 99.18220 105.93058 30.32370 110 29 1 - 30.67964 99.77080 106.59787 30.54986 110 29 1 - 30.84702 100.35940 107.09862 30.71947 110 29 1 - 30.98931 100.35940 107.51890 30.86176 110 29 1 - 31.24151 101.25211 108.27919 31.11900 110 29 1 - 31.57764 102.14482 109.29369 31.46200 110 29 1 - 31.91209 103.03753 110.30909 31.80500 110 29 1 - 32.24505 103.93024 111.32533 32.14799 110 29 1 - 32.49092 104.82295 112.08803 32.40524 110 29 1 - 32.66242 104.82295 112.59675 32.57674 110 29 1 - 32.90712 105.71566 113.36021 32.83399 110 29 1 - 33.23653 106.60837 114.37876 33.17699 110 29 1 - 33.56502 107.50108 115.39800 33.51998 110 29 1 - 33.89271 108.39379 116.41790 33.86298 110 29 1 - 34.13400 109.28650 117.18322 34.12023 110 29 1 - 34.77037 109.28650 87.65681 34.76349 110 40 1 - 38.61629 107.26750 91.54267 38.61849 110 0 1 - 40.97056 105.24850 96.71571 40.98212 110 0 1 - 43.32462 103.22950 101.87906 43.34574 110 0 1 - 45.67852 101.21050 107.03278 45.70937 110 0 1 - 47.44141 99.19150 110.89211 47.48209 110 0 1 - 48.09327 99.19150 341.86602 48.33734 110 0 1 - 30.83297 100.56490 341.51730 31.16005 110 0 1 - 31.42053 101.93830 343.57625 31.83067 110 0 1 - 32.00847 103.31170 347.28230 32.50129 110 0 1 - 32.59723 104.68510 351.91623 33.17191 110 0 1 - 33.01960 106.05850 355.77105 33.67487 110 0 1 - 33.35491 106.05850 358.48796 34.01018 110 0 1 - 33.77889 107.43190 362.72993 34.51314 110 0 1 - 34.37224 108.80530 368.60198 35.18376 110 0 1 - 34.96738 110.17870 374.67178 35.85437 110 0 1 - 35.56439 111.55210 380.88980 36.52499 110 0 1 - 35.99567 112.92550 385.62652 37.02795 110 0 1 - 36.33098 112.92550 388.81664 37.36326 110 0 1 - 36.76421 114.29890 393.64241 37.86623 110 0 1 + 9.33728 70.50267 70.91152 13.00641 110 0 1 + 10.53257 71.96926 74.55002 13.69610 110 0 1 + 11.68195 73.43586 78.20475 14.38578 110 0 1 + 12.61500 74.90245 80.95386 14.90304 110 0 1 + 12.95984 74.90245 82.79018 15.24789 110 0 1 + 13.85117 76.36905 85.54917 15.76515 110 0 1 + 14.87551 77.83564 89.23418 16.45484 110 0 1 + 15.86272 79.30224 92.92554 17.14452 110 0 1 + 16.81510 80.76883 96.62208 17.83421 110 0 1 + 17.56249 82.23543 99.39721 18.35147 110 0 1 + 17.90733 82.23543 101.24855 18.69631 110 0 1 + 18.62446 83.70202 104.02721 19.21358 110 0 1 + 19.48594 85.16862 107.73449 19.90326 110 0 1 + 20.32142 86.63521 111.44425 20.59295 110 0 1 + 21.13302 88.10181 115.15611 21.28263 110 0 1 + 21.75041 89.56840 117.94115 21.79990 110 0 1 + 21.92514 89.56840 118.88211 21.97463 110 0 1 + 21.93326 89.58802 118.91940 21.98155 110 0 1 + 21.94368 89.60764 118.96910 21.99077 110 0 1 + 21.95410 89.62726 119.01876 22.00000 110 0 1 + 21.96452 89.64688 119.06846 22.00923 110 0 1 + 21.97263 89.66650 119.10577 22.01615 110 0 1 + 26.20806 89.66650 95.32658 26.23707 110 0 1 + 26.79640 90.03928 95.63859 26.81081 110 0 1 + 26.95339 90.41206 96.05489 26.95404 110 0 1 + 27.10958 90.78484 96.47153 27.09727 110 28 1 + 27.26498 91.15762 96.88851 27.24050 110 28 1 + 27.38380 91.53040 97.20145 27.34792 110 28 1 + 27.53268 91.53040 97.63550 27.49681 110 28 1 + 27.90312 92.70760 98.62574 27.83604 110 28 1 + 28.37979 93.88480 99.94844 28.28834 110 28 1 + 28.85018 95.06200 101.27379 28.74064 110 28 1 + 29.31484 96.23920 102.60160 29.19295 110 29 1 + 29.66125 97.41640 103.59888 29.53217 110 29 1 + 29.83087 97.41640 104.09799 29.70179 110 29 1 + 30.00231 98.00500 104.59743 29.87140 110 29 1 + 30.22918 98.59360 105.26376 30.09755 110 29 1 + 30.45500 99.18220 105.93058 30.32370 110 29 1 + 30.67984 99.77080 106.59787 30.54986 110 29 1 + 30.84720 100.35940 107.09862 30.71947 110 29 1 + 30.98949 100.35940 107.51890 30.86176 110 29 1 + 31.24168 101.25211 108.27919 31.11900 110 29 1 + 31.57779 102.14482 109.29369 31.46200 110 29 1 + 31.91224 103.03753 110.30909 31.80500 110 29 1 + 32.24518 103.93024 111.32533 32.14799 110 29 1 + 32.49104 104.82295 112.08803 32.40524 110 29 1 + 32.66254 104.82295 112.59675 32.57674 110 29 1 + 32.90723 105.71566 113.36021 32.83399 110 29 1 + 33.23663 106.60837 114.37876 33.17699 110 29 1 + 33.56511 107.50108 115.39800 33.51998 110 29 1 + 33.89280 108.39379 116.41790 33.86298 110 29 1 + 34.13408 109.28650 117.18322 34.12023 110 29 1 + 36.60164 109.28650 87.65681 36.59472 110 42 1 + 38.61633 107.26750 91.54267 38.61849 110 0 1 + 40.97060 105.24850 96.71571 40.98212 110 0 1 + 43.32466 103.22950 101.87906 43.34574 110 0 1 + 45.67855 101.21050 107.03278 45.70937 110 0 1 + 47.44144 99.19150 110.89211 47.48209 110 0 1 + 31.97173 99.19150 341.86602 32.21563 110 0 1 + 30.83313 100.56490 341.51730 31.16005 110 0 1 + 31.42066 101.93830 343.57625 31.83067 110 0 1 + 32.00858 103.31170 347.28230 32.50129 110 0 1 + 32.59733 104.68510 351.91623 33.17191 110 0 1 + 33.01969 106.05850 355.77105 33.67487 110 0 1 + 33.35500 106.05850 358.48796 34.01018 110 0 1 + 33.77896 107.43190 362.72993 34.51314 110 0 1 + 34.37230 108.80530 368.60198 35.18376 110 0 1 + 34.96743 110.17870 374.67178 35.85437 110 0 1 + 35.56442 111.55210 380.88980 36.52499 110 0 1 + 35.99569 112.92550 385.62652 37.02795 110 0 1 + 36.33100 112.92550 388.81664 37.36326 110 0 1 + 36.76422 114.29890 393.64241 37.86623 110 0 1 37.36692 115.67230 400.13412 38.53684 110 0 1 - 37.97134 117.04570 406.68303 39.20746 110 0 1 - 38.57734 118.41910 413.27872 39.87808 110 0 1 - 39.01714 119.79250 418.25017 40.38104 110 0 1 - 39.35245 119.79250 421.57593 40.71635 110 0 1 - 39.79355 121.16590 426.57964 41.21931 110 0 1 - 40.40341 122.53930 433.27338 41.88993 110 0 1 - 41.01421 123.91270 439.99014 42.56055 110 0 1 - 41.62578 125.28610 446.72658 43.23116 110 0 1 - 42.07028 126.65950 451.78968 43.73413 110 0 1 - 42.40559 126.65950 455.17021 44.06943 110 0 1 - 42.85050 128.03290 460.24793 44.57240 110 0 1 - 43.46335 129.40630 467.02864 45.24301 110 0 1 - 44.07639 130.77970 473.82048 45.91363 110 0 1 - 44.68954 132.15310 480.62207 46.58425 110 0 1 - 45.13506 133.52650 485.72873 47.08721 110 0 1 + 37.97133 117.04570 406.68303 39.20746 110 0 1 + 38.57732 118.41910 413.27872 39.87808 110 0 1 + 39.01712 119.79250 418.25017 40.38104 110 0 1 + 39.35242 119.79250 421.57593 40.71635 110 0 1 + 39.79352 121.16590 426.57964 41.21931 110 0 1 + 40.40337 122.53930 433.27338 41.88993 110 0 1 + 41.01417 123.91270 439.99014 42.56055 110 0 1 + 41.62573 125.28610 446.72658 43.23116 110 0 1 + 42.07022 126.65950 451.78968 43.73413 110 0 1 + 42.40553 126.65950 455.17021 44.06943 110 0 1 + 42.85043 128.03290 460.24793 44.57240 110 0 1 + 43.46327 129.40630 467.02864 45.24301 110 0 1 + 44.07631 130.77970 473.82048 45.91363 110 0 1 + 44.68945 132.15310 480.62207 46.58425 110 0 1 + 45.13496 133.52650 485.72873 47.08721 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -29283,11 +29419,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.000 'Hollandveen' - -5.70 0.753 'Oude Zeeklei' - -7.00 36.743 'Wadzand' - -10.00 60.955 'Hydrobiaklei' - -12.00 20.970 'Basisveen' - -12.50 133.214 'Eerste zandlaag' + -5.70 0.754 'Oude Zeeklei' + -7.00 36.639 'Wadzand' + -10.00 61.035 'Hydrobiaklei' + -12.00 21.061 'Basisveen' + -12.50 132.085 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -29306,10 +29442,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -0.14 'Oude Zeeklei' - -7.00 -9.47 'Wadzand' - -10.00 -11.08 'Hydrobiaklei' + -7.00 -9.45 'Wadzand' + -10.00 -11.09 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -44.26 'Eerste zandlaag' + -12.50 -43.88 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -29574,39 +29710,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 20.02 : Percentage mobilized resistance left - 41.41 : Percentage mobilized resistance right - 388.87 : Effective left - 560.79 : Effective right + 20.00 : Percentage mobilized resistance left + 41.38 : Percentage mobilized resistance right + 388.47 : Effective left + 560.39 : Effective right 1096.84 : Water pressure left 924.92 : Water pressure right 1942.71 : Max effective resistance left 1354.10 : Max effective resistance right -20727.44 : Max moment left -14782.45 : Max moment right --4574.20 : Max mobilized moment left --5064.70 : Max mobilized moment right - 116.53 : Vertical force left - 139.48 : Vertical force right - 22.1 : Max mobilized moment percentage left - 34.3 : Max mobilized moment percentage right +-4569.65 : Max mobilized moment left +-5060.18 : Max mobilized moment right + 116.40 : Vertical force left + 139.35 : Vertical force right + 22.0 : Max mobilized moment percentage left + 34.2 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --116.53 : Active force -139.48 : Passive force --116.53 : Plugged active force -139.48 : Plugged passive force +-116.40 : Active force +139.35 : Passive force +-116.40 : Plugged active force +139.35 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -22.95 : Resulting Vertical Force Unplugged -22.95 : Resulting Vertical Force Plugged +22.96 : Resulting Vertical Force Unplugged +22.96 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -29619,210 +29755,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 769.00656 - 0.00000 0.00000 763.40658 - 0.00000 0.00000 757.80660 - 0.00000 0.00000 752.20662 - 0.00000 0.00000 746.60664 - 0.00000 0.00000 741.00666 - 0.00000 0.00000 741.00666 - 0.00000 0.00000 735.40668 - 0.00000 0.00000 729.80670 - 0.00000 0.00000 724.20672 - 0.00000 0.00000 718.60674 - 0.00000 0.00000 713.00676 - 0.00000 0.00000 713.00676 - 0.00000 -0.00049 712.34793 - -0.00001 -0.00196 711.68911 - -0.00004 -0.00442 711.03029 - -0.00010 -0.00785 710.37147 - -0.00020 -0.01226 709.71265 - -0.00020 -0.01226 709.71265 - -0.00803 -0.14175 701.80679 - -0.03988 -0.41251 693.90093 - -0.11269 -0.82453 685.99508 - -0.24341 -1.37781 678.08927 - -0.44901 -2.07236 670.18349 - -0.44901 -2.07236 670.18349 - -0.68977 -2.75906 663.59540 - -1.00409 -3.54386 657.00739 - -1.40181 -4.42676 650.41952 - -1.89272 -5.40776 643.83183 - -2.48663 -6.48686 637.24438 - -2.48663 -6.48686 637.24438 - -3.19336 -7.66406 630.65723 - -4.02271 -8.93936 624.07048 - -4.98450 -10.31276 617.48425 - -6.08854 -11.78426 610.89866 - -7.34462 -13.35386 604.31384 - -7.34462 -13.35386 604.31384 - -8.55395 -14.78218 598.65161 - -9.88924 -16.28305 592.99018 - -11.35672 -17.85648 587.32968 - -12.96263 -19.50246 581.67025 - -14.71322 -21.22099 576.01203 - -14.71322 -21.22099 576.01203 - -17.26743 -23.61088 568.51369 - -20.10135 -26.12827 561.01818 - -23.22952 -28.77314 553.52600 - -26.66647 -31.54551 546.03768 - -30.42674 -34.44536 538.55371 - -30.42674 -34.44536 538.55371 - -30.82111 -34.74236 537.80557 - -31.21887 -35.04063 537.05749 - -31.62004 -35.34018 536.30945 - -32.02463 -35.64100 535.56147 - -32.43266 -35.94310 534.81354 - -32.43266 -35.94310 534.81354 - -34.95747 -37.61777 530.31398 - -37.58710 -38.99866 525.81649 - -40.30137 -40.08565 521.32123 - -43.08013 -40.87875 516.82836 - -45.90418 -41.42047 512.33805 - -45.90418 -41.42047 512.33805 - -46.73349 -41.50706 511.02943 - -47.56433 -41.57230 509.72104 - -48.39622 -41.61255 508.41289 - -49.22866 -41.62782 507.10498 - -50.06119 -41.62172 505.79733 - -50.06119 -41.62172 505.79733 - -52.16085 -42.36428 502.52929 - -54.29750 -43.09979 499.26291 - -56.47063 -43.82336 495.99823 - -58.67963 -44.53460 492.73533 - -60.92395 -45.23791 489.47428 - -60.92395 -45.23791 489.47428 - -63.20320 -45.93252 486.21515 - -65.51725 -46.63002 482.95800 - -67.86625 -47.33030 479.70292 - -70.25032 -48.03285 476.44998 - -72.66956 -48.73708 473.19926 - -72.66956 -48.73708 473.19926 - -77.61392 -50.15069 466.70473 - -82.69981 -51.56748 460.21998 - -87.92750 -52.98653 453.74567 - -93.29715 -54.40659 447.28245 - -98.80882 -55.82675 440.83098 - -98.80882 -55.82675 440.83098 - -104.46246 -57.24594 434.39193 - -110.25796 -58.66380 427.96605 - -116.19515 -60.07972 421.55407 - -122.27382 -61.49324 415.15674 - -128.49372 -62.90437 408.77482 - -128.49372 -62.90437 408.77482 - -137.43822 -64.87338 399.86744 - -146.65799 -66.83638 390.99399 - -156.15206 -68.79200 382.15682 - -165.91938 -70.73976 373.35826 - -175.95886 -72.68030 364.60067 - -175.95886 -72.68030 364.60067 - -185.38890 -72.39030 356.50743 - -194.78107 -72.11721 348.45366 - -204.14267 -71.91997 340.44135 - -213.48356 -71.79869 332.47250 - -222.81107 -71.69456 324.54911 - -222.81107 -71.69456 324.54911 - -232.13766 -71.78453 316.67313 - -241.50666 -72.60395 308.84657 - -251.03863 -73.97597 301.07146 - -260.72328 -74.95279 293.34981 - -270.50923 -75.53441 285.68368 - -270.50923 -75.53441 285.68368 - -281.83464 -75.97603 276.93891 - -293.22607 -76.41765 268.27349 - -304.68352 -76.85928 259.69066 - -316.22754 -77.71320 251.19363 - -327.94854 -79.14460 242.78564 - -327.94854 -79.14460 242.78564 - -339.90399 -80.80346 234.46993 - -352.11188 -82.52458 226.24992 - -364.58254 -84.31990 218.12911 - -377.32808 -86.20652 210.11103 - -390.36222 -88.17204 202.19918 - -390.36222 -88.17204 202.19918 - -403.60285 -88.44179 194.39724 - -416.71653 -86.90976 186.70897 - -429.56438 -84.88627 179.13795 - -442.07325 -82.37563 171.68780 - -454.17358 -79.44133 164.36211 - -454.17358 -79.44133 164.36211 - -465.79022 -75.90525 157.16448 - -476.84833 -71.94955 150.09801 - -487.27928 -67.51509 143.16564 - -497.01151 -62.60229 136.37029 - -505.97651 -57.27102 129.71489 - -505.97651 -57.27100 129.71489 - -506.09098 -57.19563 129.62682 - -506.20529 -57.12018 129.53877 - -506.31946 -57.04464 129.45075 - -506.43347 -56.96902 129.36275 - -506.54733 -56.89333 129.27478 - -506.54733 -56.89333 129.27478 - -508.68478 -55.60219 127.60818 - -510.77296 -54.30032 125.95083 - -512.81145 -52.98618 124.30277 - -514.79976 -51.65977 122.66404 - -516.73745 -50.32261 121.03468 - -516.73745 -50.32261 121.03468 - -522.51767 -45.99910 115.95125 - -527.77294 -41.56823 110.96262 - -532.48914 -37.01452 106.06964 - -536.65151 -32.33789 101.27317 - -540.24593 -27.55369 96.57406 - -540.24592 -27.55375 96.57406 - -541.82478 -25.07657 94.26125 - -543.25527 -22.60722 91.97302 - -544.53775 -20.14298 89.70941 - -545.67252 -17.68357 87.47050 - -546.65992 -15.23117 85.25633 - -546.65991 -15.23142 85.25633 - -547.87685 -11.51613 81.94554 - -548.75611 -7.80985 78.69190 - -549.29848 -4.11149 75.49548 - -549.50462 -0.42009 72.35633 - -549.37529 3.25966 69.27450 - -549.37529 3.25927 69.27450 - -548.90685 7.01134 66.25003 - -548.10152 10.68764 63.28283 - -546.96180 14.36081 60.37277 - -545.48792 18.03182 57.51974 - -543.68022 21.69596 54.72362 - -543.68019 21.69532 54.72362 - -541.45475 22.80470 51.71640 - -539.12078 23.86822 48.77738 - -536.68236 24.89420 45.90627 - -534.14314 25.88438 43.10276 - -531.50683 26.83411 40.36653 - -531.50575 26.82425 40.36653 - -526.06429 50.65445 36.64871 - -517.38829 73.07508 33.06082 - -505.65836 94.31512 29.60000 - -491.02792 114.52938 26.26337 - -473.63524 133.77705 23.04806 - -473.65439 133.85308 23.04806 - -453.61377 152.29166 19.95051 - -431.05198 169.88898 16.96501 - -406.08029 186.72690 14.08540 - -378.81540 202.55870 11.30553 - -349.47389 216.03270 8.61926 - -349.47088 216.58369 8.61926 - -318.40242 226.69700 6.01971 - -286.14833 233.54014 3.49873 - -253.18889 236.57533 1.04828 - -220.15396 234.32348 -1.33970 - -187.80068 227.30655 -3.67324 - -187.78508 227.04730 -3.67324 - -156.79384 215.59836 -5.96071 - -127.49847 202.41503 -8.20956 - -100.25438 186.30140 -10.42643 - -75.46910 167.29444 -12.61802 - -53.54537 145.42807 -14.79098 - -53.51659 145.25222 -14.79098 - -34.87888 120.52969 -16.95170 - -19.90016 92.98105 -19.10393 - -8.94585 63.25397 -21.25033 - -2.24973 32.22657 -23.39357 - 0.02949 0.16848 -25.53632 + 0.00000 0.00000 769.36347 + 0.00000 0.00000 763.76118 + 0.00000 0.00000 758.15888 + 0.00000 0.00000 752.55658 + 0.00000 0.00000 746.95428 + 0.00000 0.00000 741.35198 + 0.00000 0.00000 741.35198 + 0.00000 0.00000 735.74969 + 0.00000 0.00000 730.14739 + 0.00000 0.00000 724.54509 + 0.00000 0.00000 718.94279 + 0.00000 0.00000 713.34050 + 0.00000 0.00000 713.34050 + 0.00000 -0.00049 712.68140 + -0.00001 -0.00196 712.02231 + -0.00004 -0.00441 711.36321 + -0.00010 -0.00785 710.70412 + -0.00020 -0.01226 710.04503 + -0.00020 -0.01226 710.04503 + -0.00803 -0.14175 702.13589 + -0.03988 -0.41251 694.22676 + -0.11269 -0.82453 686.31765 + -0.24341 -1.37781 678.40856 + -0.44901 -2.07236 670.49951 + -0.44901 -2.07236 670.49951 + -0.68977 -2.75906 663.90869 + -1.00409 -3.54386 657.31796 + -1.40181 -4.42676 650.72736 + -1.89272 -5.40776 644.13695 + -2.48663 -6.48686 637.54677 + -2.48663 -6.48686 637.54677 + -3.19336 -7.66406 630.95689 + -4.02271 -8.93936 624.36742 + -4.98450 -10.31276 617.77846 + -6.08854 -11.78426 611.19015 + -7.34462 -13.35386 604.60260 + -7.34462 -13.35386 604.60260 + -8.55395 -14.78218 598.93803 + -9.88924 -16.28305 593.27425 + -11.35672 -17.85648 587.61141 + -12.96263 -19.50246 581.94963 + -14.71322 -21.22099 576.28907 + -14.71322 -21.22099 576.28907 + -17.26743 -23.61088 568.78762 + -20.10135 -26.12827 561.28900 + -23.22952 -28.77314 553.79372 + -26.66647 -31.54551 546.30228 + -30.42674 -34.44536 538.81521 + -30.42674 -34.44536 538.81521 + -30.82111 -34.74236 538.06676 + -31.21887 -35.04063 537.31837 + -31.62004 -35.34018 536.57002 + -32.02463 -35.64100 535.82173 + -32.43266 -35.94310 535.07348 + -32.43266 -35.94310 535.07348 + -34.95747 -37.61777 530.57205 + -37.58710 -38.99866 526.07269 + -40.30137 -40.08565 521.57556 + -43.08013 -40.87875 517.08083 + -45.90418 -41.42047 512.58865 + -45.90418 -41.42047 512.58865 + -46.73349 -41.50706 511.27948 + -47.56433 -41.57230 509.97054 + -48.39622 -41.61255 508.66185 + -49.22866 -41.62782 507.35340 + -50.06119 -41.62172 506.04519 + -50.06119 -41.62172 506.04519 + -52.16085 -42.36428 502.77580 + -54.29750 -43.09979 499.50805 + -56.47063 -43.82336 496.24201 + -58.67963 -44.53460 492.97775 + -60.92395 -45.23791 489.71533 + -60.92395 -45.23791 489.71533 + -63.20320 -45.93252 486.45484 + -65.51725 -46.63002 483.19633 + -67.86625 -47.33030 479.93989 + -70.25032 -48.03285 476.68559 + -72.66956 -48.73708 473.43350 + -72.66956 -48.73708 473.43350 + -77.61392 -50.15069 466.93624 + -82.69981 -51.56748 460.44877 + -87.92750 -52.98653 453.97173 + -93.29715 -54.40659 447.50578 + -98.80882 -55.82675 441.05159 + -98.80882 -55.82675 441.05159 + -104.46246 -57.24594 434.60982 + -110.25796 -58.66380 428.18120 + -116.19515 -60.07972 421.76650 + -122.27382 -61.49324 415.36645 + -128.49372 -62.90437 408.98180 + -128.49372 -62.90437 408.98180 + -137.43822 -64.87338 400.07060 + -146.65799 -66.83638 391.19334 + -156.15206 -68.79200 382.35235 + -165.91938 -70.73976 373.54997 + -175.95886 -72.68030 364.78856 + -175.95886 -72.68030 364.78856 + -185.38890 -72.39030 356.69178 + -194.78107 -72.11721 348.63447 + -204.14267 -71.91997 340.61862 + -213.48356 -71.79869 332.64622 + -222.81107 -71.69456 324.71928 + -222.81107 -71.69456 324.71928 + -232.13766 -71.78453 316.83976 + -241.50666 -72.60395 309.00966 + -251.03863 -73.97597 301.23100 + -260.72328 -74.95279 293.50581 + -270.50923 -75.53441 285.83613 + -270.50923 -75.53441 285.83613 + -281.83464 -75.97603 277.08729 + -293.22607 -76.41765 268.41780 + -304.68352 -76.85928 259.83089 + -316.22754 -77.71320 251.32978 + -327.94854 -79.14460 242.91772 + -327.94854 -79.14460 242.91772 + -339.90399 -80.80346 234.59794 + -352.11188 -82.52458 226.37385 + -364.58254 -84.31990 218.24896 + -377.32808 -86.20652 210.22680 + -390.36222 -88.17204 202.31088 + -390.36222 -88.17204 202.31088 + -403.60285 -88.44179 194.50487 + -416.71653 -86.90976 186.81252 + -429.56438 -84.88627 179.23743 + -442.07325 -82.37563 171.78320 + -454.17358 -79.44133 164.45344 + -454.17358 -79.44133 164.45344 + -465.79022 -75.90525 157.25173 + -476.84833 -71.94955 150.18119 + -487.27928 -67.51509 143.24474 + -497.01151 -62.60229 136.44532 + -505.97651 -57.27102 129.78584 + -505.97651 -57.27101 129.78584 + -506.09098 -57.19564 129.69771 + -506.20529 -57.12019 129.60961 + -506.31946 -57.04465 129.52153 + -506.43347 -56.96903 129.43348 + -506.54733 -56.89334 129.34546 + -506.54733 -56.89333 129.34546 + -508.68478 -55.60219 127.67782 + -510.77296 -54.30032 126.01943 + -512.81145 -52.98618 124.37034 + -514.79976 -51.65977 122.73057 + -516.73745 -50.32261 121.10017 + -516.73745 -50.32261 121.10017 + -522.51767 -45.99910 116.01347 + -527.77294 -41.56823 111.02157 + -532.48914 -37.01452 106.12533 + -536.65151 -32.33789 101.32558 + -540.24593 -27.55369 96.62320 + -540.24592 -27.55375 96.62320 + -541.82476 -25.07604 94.30875 + -543.25521 -22.60619 92.01888 + -544.53761 -20.14146 89.75365 + -545.67228 -17.68158 87.51310 + -546.65954 -15.22873 85.29729 + -546.65953 -15.22898 85.29729 + -547.87588 -11.50752 81.98402 + -548.75434 -7.80062 78.72790 + -549.29584 -4.10169 75.52900 + -549.50106 -0.40976 72.38736 + -549.37077 3.27048 69.30306 + -549.37077 3.27009 69.30306 + -548.90533 6.95657 66.27611 + -548.10497 10.63327 63.30642 + -546.97017 14.30681 60.39388 + -545.50120 17.97815 57.53837 + -543.69836 21.64257 54.73977 + -543.69834 21.64194 54.73977 + -541.47821 22.75176 51.72982 + -539.14952 23.81566 48.78809 + -536.71633 24.84193 45.91426 + -534.18233 25.83231 43.10803 + -531.55122 26.78216 40.36910 + -531.55015 26.77230 40.36910 + -526.11592 50.60274 36.64750 + -517.44722 73.02228 33.05585 + -505.72484 94.25990 29.59127 + -491.10238 114.47042 26.25090 + -473.71829 133.71305 23.03187 + -473.73746 133.78920 23.03187 + -453.70621 152.22143 19.93063 + -431.15478 169.81109 16.94145 + -406.19461 186.64006 14.05819 + -378.94325 202.44715 11.27470 + -349.62025 215.87899 8.58484 + -349.61724 216.43075 8.58484 + -318.57342 226.49729 5.98174 + -286.35082 233.28909 3.45725 + -253.43174 236.23940 1.00333 + -220.45218 233.86699 -1.38804 + -188.17020 226.75420 -3.72491 + -188.15457 226.49458 -3.72491 + -157.13013 216.21274 -6.01562 + -127.75381 202.95642 -8.26762 + -100.43927 186.76576 -10.48759 + -75.59461 167.67780 -12.68222 + -53.62310 145.72652 -14.85819 + -53.59428 145.55042 -14.85819 + -34.92100 120.73910 -17.02191 + -19.91940 93.09779 -19.17713 + -8.95378 63.31000 -21.32651 + -2.25172 32.25523 -23.47272 + 0.02953 0.16871 -25.61845 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -30162,7 +30298,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -30174,7 +30310,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -30204,7 +30340,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -30234,13 +30370,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -30382,7 +30518,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 402 100 P 19.15121 6.37650 19.15121 8.03679 402 100 P 19.15346 7.35750 19.15346 8.05953 402 100 P - 19.15749 7.35750 19.15749 8.11067 402 100 P + 19.15749 7.35750 19.15749 8.07470 402 100 P 19.16680 8.33850 19.16680 8.09745 402 100 P 19.18391 9.31950 19.18391 8.12778 402 100 P 19.20583 10.30050 19.20583 8.15810 402 100 P @@ -30394,7 +30530,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 402 100 P 19.47040 17.75610 19.47040 8.38860 402 100 P 19.51557 19.12950 19.51557 8.42045 402 100 P - 35.42323 19.12950 35.42323 9.37395 402 100 P + 35.42323 19.12950 35.42323 7.71513 402 100 P 32.70625 22.94480 32.70625 6.76540 402 100 P 29.08315 26.76010 29.08315 5.49910 402 100 P 25.45932 30.57540 25.45932 4.23280 402 100 P @@ -30416,7 +30552,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 402 0 P 0.00000 67.54866 0.00000 0.00000 402 0 P 0.00000 69.01526 0.00000 0.00000 402 0 P - 0.00000 70.48186 0.00000 0.00000 402 100 P + 0.00000 70.48186 0.00000 0.00000 402 0 P 0.00000 71.94845 0.00000 0.00000 402 0 P 1.35175 71.94845 1.35175 1.35175 402 100 P 22.50228 73.41505 22.50228 4.34725 402 100 P @@ -30424,7 +30560,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 402 100 P 33.72460 77.81483 33.72460 6.60891 402 100 P 36.49712 79.28142 36.49712 7.17432 402 100 P - 38.34053 79.28142 38.34053 4.74872 402 100 P + 38.34053 79.28142 38.34053 7.55127 402 100 P 41.10027 80.74802 41.10027 8.11668 402 100 P 44.77379 82.21461 44.77379 8.87057 402 100 P 48.44314 83.68121 48.44314 9.62445 402 100 P @@ -30448,47 +30584,47 @@ Status character 57.30729 92.10800 57.30729 15.32257 402 100 P 58.66532 93.28520 58.66532 15.80174 402 100 P 59.68438 94.46240 59.68438 16.16112 402 100 P - 60.93064 94.46240 60.19409 16.34081 330 101 3 - 60.88248 95.05100 60.70391 16.52049 330 100 3 - 60.96235 95.63960 61.38383 16.76008 330 99 3 - 61.04680 96.22820 62.06392 16.99966 330 98 3 - 61.13584 96.81680 62.74417 17.23925 330 97 3 - 61.10586 97.40540 63.25446 17.41894 330 97 3 - 61.29580 97.40540 63.68261 15.51013 330 96 3 - 61.38025 98.29811 64.45683 17.84220 330 95 3 - 61.54159 99.19082 65.48938 18.20557 330 94 3 - 61.71350 100.08353 66.52224 18.56894 330 93 3 - 61.89597 100.97624 67.55537 18.93231 330 92 3 - 61.90127 101.86895 68.33038 19.20484 330 91 3 - 63.72836 101.86895 68.84713 37.05286 330 93 3 - 62.29258 102.76166 69.62238 19.65905 330 89 3 - 62.50668 103.65437 70.65622 20.02242 330 88 3 - 62.73126 104.54708 71.69028 20.38579 330 88 3 - 62.96631 105.43979 72.72453 20.74916 330 87 3 - 63.02388 106.33250 73.50032 21.02168 330 86 3 - 42.60057 106.33250 53.01517 22.78231 220 80 2 - 43.58708 104.31350 56.86471 24.64229 220 77 2 - 45.22897 102.29450 61.99022 27.12226 220 73 2 - 46.88826 100.27550 67.10701 29.60224 220 70 2 - 48.56487 98.25650 72.21510 32.08222 220 67 2 - 49.62522 96.23750 76.04076 33.94220 220 65 2 - 198.17752 96.23750 247.70391 23.76485 220 80 2 - 187.52644 97.61090 243.72655 24.33242 220 77 2 - 178.83271 98.98430 244.09044 25.08918 220 73 2 - 171.47749 100.35770 247.25554 25.84593 220 69 2 - 164.90982 101.73110 251.72665 26.60269 220 66 2 - 158.36411 103.10450 255.56014 27.17026 220 62 2 - 159.45996 103.10450 258.28993 27.54864 220 62 2 - 153.37401 104.47790 262.57243 28.11621 220 58 2 - 148.22602 105.85130 268.51677 28.87297 220 55 2 - 143.41966 107.22470 274.66750 29.62973 220 52 2 - 134.74521 108.59810 280.96720 30.38649 110 48 1 - 110.51645 109.97150 285.76348 30.95406 110 39 1 - 110.89483 109.97150 288.99188 31.33244 110 38 1 - 87.46655 111.34490 293.87257 31.90001 110 30 1 - 64.95275 112.71830 300.43310 32.65677 110 22 1 - 43.08994 114.09170 307.04554 33.41353 110 14 1 - 21.80386 115.46510 313.69964 34.17029 110 0 1 + 60.93953 94.46240 60.19409 16.34081 330 101 3 + 60.89107 95.05100 60.70391 16.52049 330 100 3 + 60.97065 95.63960 61.38383 16.76008 330 99 3 + 61.05481 96.22820 62.06392 16.99966 330 98 3 + 61.14355 96.81680 62.74417 17.23925 330 97 3 + 61.11328 97.40540 63.25446 17.41894 330 97 3 + 61.42436 97.40540 63.68261 17.56967 330 96 3 + 61.38721 98.29811 64.45683 17.84220 330 95 3 + 61.54811 99.19082 65.48938 18.20557 330 94 3 + 61.71957 100.08353 66.52224 18.56894 330 93 3 + 61.90159 100.97624 67.55537 18.93231 330 92 3 + 61.90644 101.86895 68.33038 19.20484 330 91 3 + 62.28190 101.86895 68.84713 19.38652 330 90 3 + 62.29730 102.76166 69.62238 19.65905 330 89 3 + 62.51095 103.65437 70.65622 20.02242 330 88 3 + 62.73509 104.54708 71.69028 20.38579 330 88 3 + 62.96968 105.43979 72.72453 20.74916 330 87 3 + 63.02680 106.33250 73.50032 21.02168 330 86 3 + 42.60553 106.33250 53.01517 22.78231 220 80 2 + 43.59121 104.31350 56.86471 24.64229 220 77 2 + 45.23226 102.29450 61.99022 27.12226 220 73 2 + 46.89072 100.27550 67.10701 29.60224 220 70 2 + 48.56649 98.25650 72.21510 32.08222 220 67 2 + 49.62601 96.23750 76.04076 33.94220 220 65 2 + 198.18399 96.23750 247.70391 23.76485 220 80 2 + 187.52339 97.61090 243.72655 24.33242 220 77 2 + 178.82018 98.98430 244.09044 25.08918 220 73 2 + 171.45551 100.35770 247.25554 25.84593 220 69 2 + 164.87844 101.73110 251.72665 26.60269 220 65 2 + 158.32337 103.10450 255.56014 27.17026 220 62 2 + 159.41921 103.10450 258.28993 27.54864 220 62 2 + 153.32395 104.47790 262.57243 28.11621 220 58 2 + 148.16671 105.85130 268.51677 28.87297 220 55 2 + 143.35117 107.22470 274.66750 29.62973 220 52 2 + 134.46066 108.59810 280.96720 30.38649 110 48 1 + 110.19877 109.97150 285.76348 30.95406 110 39 1 + 110.57715 109.97150 288.99188 31.33244 110 38 1 + 87.11605 111.34490 293.87257 31.90001 110 30 1 + 64.56982 112.71830 300.43310 32.65677 110 21 1 + 42.67507 114.09170 307.04554 33.41353 110 14 1 + 21.35762 115.46510 313.69964 34.17029 110 0 1 19.92689 116.83850 318.71190 34.73786 1 0 A 20.14592 116.83850 322.06333 35.11624 1 0 A 20.47437 118.21190 327.10343 35.68381 1 0 A @@ -30520,9 +30656,9 @@ Layer name -3.50 42.014 'Hollandveen' -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' - -10.00 118.795 'Hydrobiaklei' - -12.00 23.038 'Basisveen' - -12.50 294.103 'Eerste zandlaag' + -10.00 118.741 'Hydrobiaklei' + -12.00 23.040 'Basisveen' + -12.50 293.755 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -30543,9 +30679,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.77 'Oude Zeeklei' -7.00 14.19 'Wadzand' - -10.00 21.59 'Hydrobiaklei' + -10.00 21.58 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 97.71 'Eerste zandlaag' + -12.50 97.59 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -30854,7 +30990,7 @@ Lambda passive -7.44850 17.34153 53.43947 0.00000 0.62232 0.00000 3.08159 -7.59800 18.53417 56.91891 5.51572 0.62275 0.29760 3.07103 -7.74750 19.72676 59.56041 7.72546 0.62314 0.39763 3.06560 - -7.74750 19.72676 61.33399 7.96352 0.62496 0.39768 3.06289 + -7.74750 19.72676 61.33399 7.96352 0.62314 0.39768 3.06289 -7.89700 20.91931 64.00872 8.32056 0.62350 0.39775 3.05979 -8.04650 22.11182 67.59374 8.79654 0.62384 0.39782 3.05690 -8.19600 23.30431 71.19588 9.31303 0.62416 0.39963 3.05505 @@ -30866,7 +31002,7 @@ Lambda passive -8.94350 29.26658 90.56117 11.88697 0.62549 0.40616 3.09435 -9.09300 30.45903 94.22835 12.35420 0.62571 0.40560 3.09361 -9.24250 31.65149 96.98024 12.70463 0.62592 0.40521 3.09314 - -9.24250 31.65149 98.81551 12.93825 0.68048 0.40496 3.09286 + -9.24250 31.65149 98.81551 12.93825 0.62592 0.40496 3.09286 -9.39200 32.84396 101.56932 13.28907 0.62612 0.40461 3.09248 -9.54150 34.03645 105.24237 13.75801 0.62631 0.40421 3.09205 -9.69100 35.22896 108.91793 14.22706 0.62649 0.40385 3.09172 @@ -30896,7 +31032,7 @@ Lambda passive -10.97000 42.91008 104.04078 17.06353 0.73739 0.39766 2.42462 -11.03000 43.23277 104.70394 17.23081 0.73743 0.39856 2.42187 -11.09000 43.55547 105.20168 17.35626 0.73747 0.39923 2.41983 - -11.09000 43.55547 105.61948 17.46149 0.63073 0.39978 2.41815 + -11.09000 43.55547 105.61948 17.46149 0.73747 0.39978 2.41815 -11.18100 44.04491 106.37543 17.65175 0.73753 0.40077 2.41516 -11.27200 44.53436 107.38436 17.90541 0.73759 0.40206 2.41127 -11.36300 45.02382 108.39444 18.15906 0.73764 0.40332 2.40749 @@ -30926,13 +31062,13 @@ Lambda passive -13.62000 75.79293 371.53915 22.82127 0.52864 0.30110 4.90203 -13.76000 77.21836 377.78371 23.26707 0.52869 0.30132 4.89241 -13.90000 78.64381 382.45053 23.60087 0.52874 0.30146 4.88521 - -13.90000 78.64381 385.58770 23.82263 0.50268 0.30155 4.88085 + -13.90000 78.64381 385.58770 23.82263 0.52874 0.30155 4.88085 -14.04000 80.06929 390.33231 24.15485 0.52878 0.30167 4.87493 -14.18000 81.49478 396.71320 24.59734 0.52883 0.30183 4.86796 -14.32000 82.92030 403.14850 25.03929 0.52887 0.30197 4.86188 -14.46000 84.34583 409.61450 25.48076 0.52891 0.30210 4.85637 -14.60000 85.77139 414.47965 25.81159 0.52895 0.30219 4.85254 - -14.60000 85.77139 417.73399 26.03200 0.73395 0.30225 4.85017 + -14.60000 85.77139 417.73399 26.03200 0.52895 0.30225 4.85017 -14.74000 87.19696 422.62984 26.36244 0.52899 0.30233 4.84684 -14.88000 88.62256 429.23019 26.80263 0.52902 0.30244 4.84335 -15.02000 90.04817 435.96362 27.24159 0.52906 0.30252 4.84145 @@ -31074,7 +31210,7 @@ Status character 0.00000 64.63629 53.43947 10.79204 1 0 A 5.51572 66.10288 56.91891 11.54208 1 0 A 7.72546 67.56948 59.56041 12.10670 1 0 A - 7.96352 67.56948 61.33399 12.51475 1 0 A + 7.96352 67.56948 61.33399 12.47827 1 0 A 8.32056 69.03607 64.00872 13.04321 1 0 A 8.79654 70.50267 67.59374 13.79425 1 0 A 9.31303 71.96926 71.19588 14.54558 1 0 A @@ -31086,7 +31222,7 @@ Status character 11.88697 79.30224 90.56117 18.30586 1 0 A 12.35420 80.76883 94.22835 19.05853 1 0 A 12.70463 82.23543 96.98024 19.62477 1 0 A - 12.93825 82.23543 98.81551 21.74112 1 0 A + 12.93825 82.23543 98.81551 19.99796 1 0 A 13.28907 83.70202 101.56932 20.56436 1 0 A 13.75801 85.16862 105.24237 21.31749 1 0 A 14.22706 86.63521 108.91793 22.07076 1 0 A @@ -31116,7 +31252,7 @@ Status character 17.06353 99.18220 104.04078 31.64160 1 0 A 17.23081 99.77080 104.70394 31.88126 1 0 A 17.35626 100.35940 105.20168 32.06142 1 0 A - 17.46149 100.35940 105.61948 27.54896 1 0 A + 17.46149 100.35940 105.61948 32.21116 1 0 A 17.65175 101.25211 106.37543 32.48443 1 0 A 17.90541 102.14482 107.38436 32.84795 1 0 A 18.15906 103.03753 108.39444 33.21149 1 0 A @@ -31146,24 +31282,24 @@ Status character 22.82127 110.17870 371.53915 40.06704 1 0 A 23.26707 111.55210 377.78371 40.82439 1 0 A 23.60087 112.92550 382.45053 41.39333 1 0 A - 23.82263 112.92550 385.58770 39.71200 1 0 A + 23.82263 112.92550 385.58770 41.77017 1 0 A 24.15485 114.29890 390.33231 42.33911 1 0 A 24.59734 115.67230 396.71320 43.09648 1 0 A - 34.17744 117.04570 403.14850 43.85385 110 0 1 - 56.97766 118.41910 409.61450 44.61123 110 14 1 - 79.08693 119.79250 414.47965 45.18009 110 19 1 - 97.12058 119.79250 417.73399 63.21374 110 23 1 - 101.14796 121.16590 422.62984 46.12598 110 24 1 - 122.66387 122.53930 429.23019 46.88336 110 29 1 - 143.88474 123.91270 435.96362 47.64074 110 33 1 - 164.87213 125.28610 442.71840 48.39812 110 37 1 - 185.49900 126.65950 447.79404 48.96692 110 41 1 - 185.87618 126.65950 451.18238 49.34409 110 41 1 - 206.39016 128.03290 456.27102 49.91289 110 45 1 - 227.01427 129.40630 463.06514 50.67027 110 49 1 - 238.38457 130.77970 469.86914 51.42765 220 51 2 - 246.46402 132.15310 476.68180 52.18503 220 52 2 - 253.87323 133.52650 481.79615 52.75376 220 53 2 + 34.59231 117.04570 403.14850 43.85385 110 0 1 + 57.42390 118.41910 409.61450 44.61123 110 14 1 + 79.56386 119.79250 414.47965 45.18009 110 19 1 + 79.94088 119.79250 417.73399 45.55712 110 19 1 + 101.65477 121.16590 422.62984 46.12598 110 24 1 + 123.19982 122.53930 429.23019 46.88336 110 29 1 + 144.44924 123.91270 435.96362 47.64074 110 33 1 + 165.46473 125.28610 442.71840 48.39812 110 37 1 + 186.11942 126.65950 447.79404 48.96692 110 42 1 + 186.49660 126.65950 451.18238 49.34409 110 41 1 + 207.03825 128.03290 456.27102 49.91289 110 45 1 + 227.68992 129.40630 463.06514 50.67027 110 49 1 + 238.57634 130.77970 469.86914 51.42765 220 51 2 + 246.66328 132.15310 476.68180 52.18503 220 52 2 + 254.07998 133.52650 481.79615 52.75376 220 53 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -31183,7 +31319,7 @@ Layer name -7.00 27.544 'Wadzand' -10.00 34.297 'Hydrobiaklei' -12.00 16.422 'Basisveen' - -12.50 310.611 'Eerste zandlaag' + -12.50 310.212 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -31205,7 +31341,7 @@ Layer name -7.00 -7.10 'Wadzand' -10.00 -6.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -103.19 'Eerste zandlaag' + -12.50 -103.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -31470,20 +31606,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 32.96 : Percentage mobilized resistance left + 32.97 : Percentage mobilized resistance left 33.60 : Percentage mobilized resistance right - 259.38 : Effective left - 454.94 : Effective right + 259.44 : Effective left + 455.00 : Effective right 1120.54 : Water pressure left 924.92 : Water pressure right 786.97 : Max effective resistance left 1354.10 : Max effective resistance right -9369.37 : Max moment left -14782.45 : Max moment right --3270.88 : Max mobilized moment left --3909.12 : Max mobilized moment right - 85.28 : Vertical force left - 106.24 : Vertical force right +-3271.66 : Max mobilized moment left +-3909.93 : Max mobilized moment right + 85.30 : Vertical force left + 106.28 : Vertical force right 34.9 : Max mobilized moment percentage left 26.4 : Max mobilized moment percentage right -2.43 : Level of single support @@ -31492,17 +31628,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --85.28 : Active force -106.24 : Passive force --85.28 : Plugged active force -106.24 : Plugged passive force +-85.30 : Active force +106.28 : Passive force +-85.30 : Plugged active force +106.28 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -20.97 : Resulting Vertical Force Unplugged -20.97 : Resulting Vertical Force Plugged +20.98 : Resulting Vertical Force Unplugged +20.98 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -31515,210 +31651,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 655.01026 - 0.00000 0.00000 650.03754 - 0.00000 0.00000 645.06482 - 0.00000 0.00000 640.09210 - 0.00000 0.00000 635.11938 - 0.00000 0.00000 630.14666 - 0.00000 0.00000 630.14666 - 0.00000 0.00000 625.17394 - 0.00000 0.00000 620.20122 - 0.00000 0.00000 615.22850 - 0.00000 0.00000 610.25578 - 0.00000 0.00000 605.28305 - 0.00000 0.00000 605.28305 - 0.00000 -0.00049 604.69803 - -0.00001 -0.00196 604.11300 - -0.00004 -0.00441 603.52798 - -0.00010 -0.00785 602.94295 - -0.00020 -0.01226 602.35793 - -0.00020 -0.01226 602.35793 - -0.00803 -0.14175 595.33761 - -0.03988 -0.41251 588.31729 - -0.11269 -0.82453 581.29699 - -0.24341 -1.37781 574.27672 - -0.44901 -2.07236 567.25649 - -0.44901 -2.07236 567.25649 - -0.68977 -2.75906 561.40635 - -1.00409 -3.54386 555.55629 - -1.40181 -4.42676 549.70637 - -1.89272 -5.40776 543.85664 - -2.48663 -6.48686 538.00715 - -2.48663 -6.48686 538.00715 - -3.19336 -7.66406 532.15795 - -4.02271 -8.93936 526.30915 - -4.98450 -10.31276 520.46087 - -6.08854 -11.78426 514.61324 - -7.34462 -13.35386 508.76637 - -7.34462 -13.35386 508.76637 - -8.55395 -14.78218 503.73878 - -9.88924 -16.28305 498.71199 - -11.35672 -17.85648 493.68613 - -12.96263 -19.50246 488.66134 - -14.71322 -21.22099 483.63776 - -14.71322 -21.22099 483.63776 - -17.26743 -23.61088 476.98069 - -20.10135 -26.12827 470.32644 - -23.22952 -28.77314 463.67553 - -26.66647 -31.54551 457.02847 - -30.42674 -34.44536 450.38577 - -30.42674 -34.44538 450.38577 - -30.82111 -34.74238 449.72176 - -31.21887 -35.04065 449.05780 - -31.62004 -35.34020 448.39390 - -32.02463 -35.64102 447.73004 - -32.43266 -35.94312 447.06624 - -32.43231 -35.94854 447.06624 - -34.95750 -37.62322 443.07291 - -37.58750 -39.00410 439.08166 - -40.30215 -40.09109 435.09263 - -43.08128 -40.88419 431.10600 - -45.90571 -41.42591 427.12193 - -45.90585 -41.42719 427.12193 - -46.73529 -41.51379 425.96090 - -47.56626 -41.57902 424.80010 - -48.39828 -41.61927 423.63954 - -49.23086 -41.63454 422.47922 - -50.06352 -41.62844 421.31916 - -50.06354 -41.62819 421.31916 - -52.16352 -42.37075 418.42010 - -54.30050 -43.10626 415.52269 - -56.47395 -43.82983 412.62699 - -58.68327 -44.54107 409.73307 - -60.92792 -45.24438 406.84100 - -60.92789 -45.24355 406.84100 - -63.20742 -45.93816 403.95084 - -65.52175 -46.63566 401.06267 - -67.87103 -47.33594 398.17657 - -70.25538 -48.03850 395.29261 - -72.67491 -48.74273 392.41086 - -72.67491 -48.74265 392.41086 - -77.61983 -50.15626 386.65429 - -82.70627 -51.57304 380.90750 - -87.93451 -52.99209 375.17115 - -93.30472 -54.41215 369.44589 - -98.81695 -55.83232 363.73238 - -98.81695 -55.83217 363.73238 - -104.47113 -57.25135 358.03129 - -110.26717 -58.66922 352.34337 - -116.20491 -60.08513 346.66935 - -122.28412 -61.49865 341.00999 - -128.50456 -62.90979 335.36604 - -128.50458 -62.90952 335.36604 - -137.44980 -64.87852 327.49181 - -146.67028 -66.84152 319.65152 - -156.16508 -68.79715 311.84751 - -165.93312 -70.74490 304.08211 - -175.97332 -72.68544 296.35769 - -175.97336 -72.68469 296.35769 - -185.40538 -72.42719 289.22382 - -194.80797 -72.25160 282.12942 - -204.19690 -72.21686 275.07649 - -213.59046 -72.32307 268.06704 - -223.00446 -72.51145 261.10307 - -223.00440 -72.51088 261.10307 - -232.45964 -72.95835 254.18654 - -242.00800 -74.20026 247.31950 - -251.77848 -76.05978 240.50402 - -261.76923 -77.58910 233.74219 - -271.93733 -78.78822 227.03608 - -271.93733 -78.78822 227.03608 - -283.80506 -79.97735 219.39570 - -295.85056 -81.16647 211.83522 - -308.07383 -82.35559 204.35809 - -320.47488 -83.54472 196.96775 - -333.05370 -84.73384 189.66764 - -333.05370 -84.73384 189.66764 - -345.81030 -85.92296 182.46124 - -358.74467 -87.11208 175.35220 - -371.85681 -88.30121 168.34421 - -385.14673 -89.49033 161.44098 - -398.61442 -90.67945 154.64617 - -398.61499 -90.67665 154.64617 - -412.16614 -90.08268 147.96365 - -425.45688 -87.62583 141.39721 - -438.33829 -84.60766 134.95044 - -450.72681 -81.03250 128.62697 - -462.54285 -76.97255 122.43041 - -462.54187 -76.96606 122.43041 - -473.69844 -72.21698 116.36431 - -484.11078 -66.98702 110.43162 - -493.70021 -61.20817 104.63502 - -502.38469 -54.88087 98.97719 - -510.08567 -48.07372 93.46083 - -510.08569 -48.07386 93.46083 - -510.18174 -47.97815 93.38800 - -510.27760 -47.88235 93.31520 - -510.37327 -47.78645 93.24243 - -510.46874 -47.69046 93.16968 - -510.56403 -47.59438 93.09695 - -510.56403 -47.59441 93.09695 - -512.34131 -45.94482 91.72010 - -514.05566 -44.28099 90.35257 - -515.70646 -42.60087 88.99438 - -517.29312 -40.90447 87.64558 - -518.81502 -39.19382 86.30619 - -518.81738 -39.17283 86.30619 - -523.18718 -33.63699 82.13869 - -526.88708 -28.02189 78.06612 - -529.91141 -22.38118 74.08901 - -532.25778 -16.72086 70.20792 - -533.92381 -11.04541 66.42340 - -533.92287 -11.04073 66.42340 - -534.49946 -8.17847 64.56748 - -534.90417 -5.31055 62.73581 - -535.13653 -2.43299 60.92839 - -535.19594 0.45448 59.14523 - -535.08186 3.34843 57.38635 - -535.08201 3.35243 57.38635 - -534.55627 8.21037 54.76505 - -533.58660 13.10527 52.19952 - -532.17032 18.02612 49.68961 - -530.30503 22.97388 47.23518 - -527.98849 27.94095 44.83607 - -527.98847 27.93997 44.83607 - -525.21007 33.08252 42.49210 - -521.97074 38.11664 40.20293 - -518.27191 43.18141 37.96816 - -514.11076 48.27774 35.78742 - -509.48464 53.39799 33.66032 - -509.48463 53.39680 33.66032 - -503.97630 56.78982 31.38417 - -498.12177 60.32962 29.17152 - -491.91947 63.59658 27.02158 - -485.41467 66.49702 24.93357 - -478.62072 69.37785 22.90672 - -478.62451 69.39805 22.90672 - -467.52258 89.00051 20.17065 - -453.75457 107.52722 17.55006 - -437.45496 125.19671 15.04093 - -418.73278 142.15293 12.63927 - -397.68926 158.31362 10.34105 - -397.66933 158.62653 10.34105 - -374.42760 172.92504 8.14161 - -349.37969 184.45126 6.03462 - -322.90488 193.32814 4.01358 - -295.36636 199.66456 2.07201 - -267.13135 203.16074 0.20344 - -267.07217 203.20315 0.20344 - -238.60064 202.75055 -1.59913 - -210.46617 198.78049 -3.34284 - -183.04916 192.51629 -5.03440 - -156.66514 184.03353 -6.68055 - -131.62046 173.39314 -8.28800 - -131.61343 173.10984 -8.28800 - -108.24751 160.34163 -9.86342 - -86.79048 146.01544 -11.41218 - -67.40732 130.74356 -12.93902 - -50.22227 114.61483 -14.44874 - -35.35305 97.67423 -15.94608 - -35.36373 97.62057 -15.94608 - -22.94177 79.71909 -17.43544 - -13.07845 61.04480 -18.91921 - -5.88862 41.52635 -20.39914 - -1.49042 21.16473 -21.87698 - 0.00003 0.00014 -23.35451 + 0.00000 0.00000 655.27937 + 0.00000 0.00000 650.30510 + 0.00000 0.00000 645.33083 + 0.00000 0.00000 640.35656 + 0.00000 0.00000 635.38229 + 0.00000 0.00000 630.40802 + 0.00000 0.00000 630.40802 + 0.00000 0.00000 625.43374 + 0.00000 0.00000 620.45947 + 0.00000 0.00000 615.48520 + 0.00000 0.00000 610.51093 + 0.00000 0.00000 605.53666 + 0.00000 0.00000 605.53666 + 0.00000 -0.00049 604.95145 + -0.00001 -0.00196 604.36624 + -0.00004 -0.00442 603.78103 + -0.00010 -0.00785 603.19582 + -0.00020 -0.01226 602.61062 + -0.00020 -0.01226 602.61062 + -0.00803 -0.14175 595.58811 + -0.03988 -0.41251 588.56560 + -0.11269 -0.82453 581.54311 + -0.24341 -1.37781 574.52065 + -0.44901 -2.07236 567.49823 + -0.44901 -2.07236 567.49823 + -0.68977 -2.75906 561.64626 + -1.00409 -3.54386 555.79438 + -1.40181 -4.42676 549.94264 + -1.89272 -5.40776 544.09108 + -2.48663 -6.48686 538.23976 + -2.48663 -6.48686 538.23976 + -3.19336 -7.66406 532.38874 + -4.02271 -8.93936 526.53811 + -4.98450 -10.31276 520.68801 + -6.08854 -11.78426 514.83856 + -7.34462 -13.35386 508.98986 + -7.34462 -13.35386 508.98986 + -8.55395 -14.78218 503.96071 + -9.88924 -16.28305 498.93234 + -11.35672 -17.85648 493.90491 + -12.96263 -19.50246 488.87856 + -14.71322 -21.22099 483.85340 + -14.71322 -21.22099 483.85340 + -17.26743 -23.61088 477.19425 + -20.10135 -26.12827 470.53793 + -23.22952 -28.77314 463.88494 + -26.66647 -31.54551 457.23579 + -30.42674 -34.44536 450.59102 + -30.42674 -34.44538 450.59102 + -30.82111 -34.74238 449.92680 + -31.21887 -35.04065 449.26263 + -31.62004 -35.34020 448.59851 + -32.02463 -35.64102 447.93445 + -32.43266 -35.94312 447.27044 + -32.43231 -35.94855 447.27044 + -34.95750 -37.62323 443.27586 + -37.58750 -39.00411 439.28335 + -40.30215 -40.09110 435.29308 + -43.08128 -40.88420 431.30520 + -45.90571 -41.42592 427.31987 + -45.90585 -41.42721 427.31987 + -46.73529 -41.51380 426.15847 + -47.56626 -41.57904 424.99731 + -48.39829 -41.61929 423.83639 + -49.23087 -41.63456 422.67571 + -50.06353 -41.62846 421.51527 + -50.06354 -41.62820 421.51527 + -52.16353 -42.37077 418.61531 + -54.30050 -43.10628 415.71698 + -56.47396 -43.82984 412.82037 + -58.68328 -44.54109 409.92554 + -60.92793 -45.24439 407.03255 + -60.92789 -45.24356 407.03255 + -63.20743 -45.93817 404.14148 + -65.52176 -46.63567 401.25240 + -67.87104 -47.33595 398.36539 + -70.25539 -48.03851 395.48052 + -72.67492 -48.74274 392.59786 + -72.67493 -48.74266 392.59786 + -77.61984 -50.15627 386.83946 + -82.70628 -51.57305 381.09085 + -87.93453 -52.99211 375.35266 + -93.30474 -54.41216 369.62558 + -98.81697 -55.83233 363.91024 + -98.81697 -55.83218 363.91024 + -104.47115 -57.25137 358.20734 + -110.26719 -58.66923 352.51759 + -116.20493 -60.08514 346.84175 + -122.28414 -61.49866 341.18056 + -128.50458 -62.90980 335.53478 + -128.50460 -62.90953 335.53478 + -137.44982 -64.87853 327.65800 + -146.67031 -66.84153 319.81515 + -156.16511 -68.79716 312.00858 + -165.93315 -70.74491 304.24064 + -175.97335 -72.68546 296.51365 + -175.97339 -72.68470 296.51365 + -185.40541 -72.42720 289.37741 + -194.80801 -72.25161 282.28064 + -204.19693 -72.21687 275.22535 + -213.59050 -72.32308 268.21352 + -223.00449 -72.51146 261.24717 + -223.00444 -72.51089 261.24717 + -232.45968 -72.95836 254.32828 + -242.00804 -74.20027 247.45886 + -251.77852 -76.05979 240.64101 + -261.76927 -77.58911 233.87680 + -271.93738 -78.78823 227.16832 + -271.93738 -78.78823 227.16832 + -283.80510 -79.97735 219.52522 + -295.85061 -81.16648 211.96201 + -308.07388 -82.35560 204.48216 + -320.47493 -83.54472 197.08909 + -333.05375 -84.73384 189.78624 + -333.05375 -84.73384 189.78624 + -345.81035 -85.92297 182.57712 + -358.74472 -87.11209 175.46535 + -371.85686 -88.30121 168.45464 + -385.14678 -89.49034 161.54867 + -398.61448 -90.67946 154.75114 + -398.61504 -90.67665 154.75114 + -412.16620 -90.08269 148.06589 + -425.45693 -87.62584 141.49672 + -438.33835 -84.60767 135.04722 + -450.72687 -81.03250 128.72103 + -462.54291 -76.97255 122.52174 + -462.54193 -76.96605 122.52174 + -473.69850 -72.21698 116.45291 + -484.11084 -66.98701 110.51749 + -493.70026 -61.20817 104.71816 + -502.38475 -54.88086 99.05761 + -510.08573 -48.07372 93.53851 + -510.08574 -48.07386 93.53851 + -510.18179 -47.97815 93.46565 + -510.27765 -47.88235 93.39281 + -510.37332 -47.78645 93.32000 + -510.46880 -47.69046 93.24722 + -510.56408 -47.59438 93.17446 + -510.56408 -47.59442 93.17446 + -512.34137 -45.94482 91.79691 + -514.05571 -44.28099 90.42868 + -515.70652 -42.60088 89.06981 + -517.29317 -40.90448 87.72031 + -518.81508 -39.19382 86.38023 + -518.81744 -39.17278 86.38023 + -523.18724 -33.63694 82.21054 + -526.88705 -28.01983 78.13578 + -529.91090 -22.37516 74.15648 + -532.25636 -16.71207 70.27320 + -533.92124 -11.03504 66.48649 + -533.92029 -11.03034 66.48649 + -534.49623 -8.16730 64.62948 + -534.90026 -5.29862 62.79671 + -535.13187 -2.42032 60.98819 + -535.19050 0.46788 59.20394 + -535.07560 3.36255 57.44396 + -535.07556 3.36184 57.44396 + -534.54768 8.24132 54.82100 + -533.57514 13.13724 52.25380 + -532.15591 18.05909 49.74223 + -530.28757 23.00782 47.28613 + -527.96790 27.97583 44.88536 + -527.96790 27.97472 44.88536 + -525.19417 32.98857 42.53972 + -521.96334 38.02356 40.24887 + -518.27295 43.08916 38.01244 + -514.12016 48.18630 35.83002 + -509.50232 53.30732 33.70124 + -509.50231 53.30614 33.70124 + -504.00298 56.70054 31.42326 + -498.15731 60.24165 29.20878 + -491.96374 63.50985 27.05701 + -485.46756 66.41147 24.96719 + -478.68211 69.29341 22.93852 + -478.68595 69.31401 22.93852 + -467.59495 88.92825 20.19992 + -453.83630 107.46564 17.57682 + -437.54462 125.14475 15.06521 + -418.82910 142.10952 12.66107 + -397.79070 158.28697 10.36042 + -397.77073 158.60006 10.36042 + -374.53101 172.92218 8.15856 + -349.48207 184.46818 6.04917 + -323.00373 193.36108 4.02576 + -295.45970 199.70979 2.08185 + -267.21755 203.21797 0.21096 + -267.15835 203.26035 0.21096 + -238.67779 202.82021 -1.59391 + -210.53328 198.85310 -3.33990 + -183.10622 192.58672 -5.03372 + -156.71269 184.09827 -6.68212 + -131.65955 173.44874 -8.29181 + -131.65251 173.16519 -8.29181 + -108.27968 160.38445 -9.86946 + -86.81743 146.04876 -11.42043 + -67.42996 130.77164 -12.94949 + -50.24140 114.63680 -14.46141 + -35.36958 97.68920 -15.96096 + -35.38027 97.63545 -15.96096 + -22.95368 79.75928 -17.45252 + -13.08532 61.07625 -18.93849 + -5.89176 41.54818 -20.42061 + -1.49122 21.17608 -21.90065 + 0.00003 0.00015 -23.38036 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -32058,7 +32194,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -32070,7 +32206,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -32100,7 +32236,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -32130,13 +32266,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -32278,7 +32414,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 402 100 P 19.15121 6.37650 19.15121 8.03679 402 100 P 19.15346 7.35750 19.15346 8.05953 402 100 P - 19.15749 7.35750 19.15749 8.11067 402 100 P + 19.15749 7.35750 19.15749 8.07470 402 100 P 19.16680 8.33850 19.16680 8.09745 402 100 P 19.18391 9.31950 19.18391 8.12778 402 100 P 19.20583 10.30050 19.20583 8.15810 402 100 P @@ -32290,7 +32426,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 402 100 P 19.47040 17.75610 19.47040 8.38860 402 100 P 19.51557 19.12950 19.51557 8.42045 402 100 P - 35.42323 19.12950 35.42323 9.37395 402 100 P + 35.42323 19.12950 35.42323 7.71513 402 100 P 32.70625 22.94480 32.70625 6.76540 402 100 P 29.08315 26.76010 29.08315 5.49910 402 100 P 25.45932 30.57540 25.45932 4.23280 402 100 P @@ -32312,7 +32448,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 402 0 P 0.00000 67.54866 0.00000 0.00000 402 0 P 0.00000 69.01526 0.00000 0.00000 402 0 P - 0.00000 70.48186 0.00000 0.00000 402 100 P + 0.00000 70.48186 0.00000 0.00000 402 0 P 0.00000 71.94845 0.00000 0.00000 402 0 P 1.35175 71.94845 1.35175 1.35175 402 100 P 22.50228 73.41505 22.50228 4.34725 402 100 P @@ -32320,7 +32456,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 402 100 P 33.72460 77.81483 33.72460 6.60891 402 100 P 36.49712 79.28142 36.49712 7.17432 402 100 P - 38.34053 79.28142 38.34053 4.74872 402 100 P + 38.34053 79.28142 38.34053 7.55127 402 100 P 41.10027 80.74802 41.10027 8.11668 402 100 P 44.77379 82.21461 44.77379 8.87057 402 100 P 48.44314 83.68121 48.44314 9.62445 402 100 P @@ -32340,48 +32476,48 @@ Status character 53.13201 88.57640 53.13201 13.84713 402 100 P 53.57784 88.57640 53.57784 14.00486 402 100 P 54.59416 89.75360 54.59416 14.36424 402 100 P - 54.89884 90.93080 55.95020 14.84340 330 98 3 - 55.02088 92.10800 57.30729 15.32257 330 96 3 - 55.22592 93.28520 58.66532 15.80174 330 94 3 - 55.27283 94.46240 59.68438 16.16112 330 93 3 - 55.64319 94.46240 60.19409 16.34081 330 92 3 - 55.67351 95.05100 60.70391 16.52049 330 92 3 - 55.83187 95.63960 61.38383 16.76008 330 91 3 - 55.99479 96.22820 62.06392 16.99966 330 90 3 - 56.16228 96.81680 62.74417 17.23925 330 90 3 - 56.21072 97.40540 63.25446 17.41894 330 89 3 - 56.07208 97.40540 63.68261 15.51013 330 88 3 - 56.60397 98.29811 64.45683 17.84220 330 88 3 - 56.88407 99.19082 65.48938 18.20557 330 87 3 - 57.17457 100.08353 66.52224 18.56894 330 86 3 - 57.47545 100.97624 67.55537 18.93231 330 85 3 - 57.59892 101.86895 68.33038 19.20484 330 84 3 - 60.82303 101.86895 68.84713 37.05286 330 88 3 - 58.10814 102.76166 69.62238 19.65905 330 83 3 - 58.43984 103.65437 70.65622 20.02242 330 83 3 - 58.78167 104.54708 71.69028 20.38579 330 82 3 - 59.13355 105.43979 72.72453 20.74916 330 81 3 - 59.30749 106.33250 73.50032 21.02168 330 81 3 - 36.28271 106.33250 53.01517 22.78231 220 68 2 - 37.48563 104.31350 56.86471 24.64229 220 66 2 - 39.34275 102.29450 61.99022 27.12226 220 63 2 - 41.21595 100.27550 67.10701 29.60224 220 61 2 - 43.10501 98.25650 72.21510 32.08222 220 60 2 - 44.37620 96.23750 76.04076 33.94220 220 58 2 - 155.23101 96.23750 247.70391 23.76485 220 63 2 - 146.97039 97.61090 243.72655 24.33242 220 60 2 - 140.63539 98.98430 244.09044 25.08918 220 58 2 - 135.60425 100.35770 247.25554 25.84593 220 55 2 - 131.32311 101.73110 251.72665 26.60269 220 52 2 - 125.00587 103.10450 255.56014 27.17026 110 49 1 - 125.38425 103.10450 258.28993 27.54864 110 49 1 - 105.43543 104.47790 262.57243 28.11621 110 40 1 - 86.54433 105.85130 268.51677 28.87297 110 32 1 - 68.46098 107.22470 274.66750 29.62973 110 25 1 - 51.12460 108.59810 280.96720 30.38649 110 18 1 - 34.28521 109.97150 285.76348 30.95406 110 12 1 - 34.66359 109.97150 288.99188 31.33244 110 12 1 - 18.44489 111.34490 293.87257 31.90001 110 0 1 + 54.93233 90.93080 55.95020 14.84340 330 98 3 + 55.05354 92.10800 57.30729 15.32257 330 96 3 + 55.23932 93.28520 58.66532 15.80174 330 94 3 + 55.28579 94.46240 59.68438 16.16112 330 93 3 + 55.65616 94.46240 60.19409 16.34081 330 92 3 + 55.68626 95.05100 60.70391 16.52049 330 92 3 + 55.84439 95.63960 61.38383 16.76008 330 91 3 + 56.00709 96.22820 62.06392 16.99966 330 90 3 + 56.17436 96.81680 62.74417 17.23925 330 90 3 + 56.22257 97.40540 63.25446 17.41894 330 89 3 + 56.53366 97.40540 63.68261 17.56967 330 89 3 + 56.61548 98.29811 64.45683 17.84220 330 88 3 + 56.89523 99.19082 65.48938 18.20557 330 87 3 + 57.18539 100.08353 66.52224 18.56894 330 86 3 + 57.48591 100.97624 67.55537 18.93231 330 85 3 + 57.60904 101.86895 68.33038 19.20484 330 84 3 + 57.98449 101.86895 68.84713 19.38652 330 84 3 + 58.11790 102.76166 69.62238 19.65905 330 83 3 + 58.44924 103.65437 70.65622 20.02242 330 83 3 + 58.79071 104.54708 71.69028 20.38579 330 82 3 + 59.14223 105.43979 72.72453 20.74916 330 81 3 + 59.31581 106.33250 73.50032 21.02168 330 81 3 + 36.29685 106.33250 53.01517 22.78231 220 68 2 + 37.49909 104.31350 56.86471 24.64229 220 66 2 + 39.35553 102.29450 61.99022 27.12226 220 63 2 + 41.22805 100.27550 67.10701 29.60224 220 61 2 + 43.11643 98.25650 72.21510 32.08222 220 60 2 + 44.38695 96.23750 76.04076 33.94220 220 58 2 + 155.31894 96.23750 247.70391 23.76485 220 63 2 + 147.05058 97.61090 243.72655 24.33242 220 60 2 + 140.70788 98.98430 244.09044 25.08918 220 58 2 + 135.66908 100.35770 247.25554 25.84593 220 55 2 + 131.38035 101.73110 251.72665 26.60269 220 52 2 + 125.18811 103.10450 255.56014 27.17026 110 49 1 + 125.56649 103.10450 258.28993 27.54864 110 49 1 + 105.59032 104.47790 262.57243 28.11621 110 40 1 + 86.67215 105.85130 268.51677 28.87297 110 32 1 + 68.56202 107.22470 274.66750 29.62973 110 25 1 + 51.19916 108.59810 280.96720 30.38649 110 18 1 + 34.33360 109.97150 285.76348 30.95406 110 12 1 + 34.71198 109.97150 288.99188 31.33244 110 12 1 + 18.46743 111.34490 293.87257 31.90001 110 0 1 18.72123 112.71830 300.43310 32.65677 1 0 A 19.15986 114.09170 307.04554 33.41353 1 0 A 19.59824 115.46510 313.69964 34.17029 1 0 A @@ -32416,9 +32552,9 @@ Layer name -3.50 42.014 'Hollandveen' -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' - -10.00 112.322 'Hydrobiaklei' - -12.00 20.148 'Basisveen' - -12.50 197.611 'Eerste zandlaag' + -10.00 112.236 'Hydrobiaklei' + -12.00 20.154 'Basisveen' + -12.50 197.756 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -32439,9 +32575,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.77 'Oude Zeeklei' -7.00 14.19 'Wadzand' - -10.00 20.41 'Hydrobiaklei' + -10.00 20.40 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 65.65 'Eerste zandlaag' + -12.50 65.70 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -32676,7 +32812,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -32688,7 +32824,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -32895,25 +33031,25 @@ Status character 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A 11.79674 111.55210 187.60408 20.52326 1 0 A - 17.75969 112.92550 192.70971 21.09083 110 0 1 - 18.17432 112.92550 196.12085 21.50547 110 0 1 - 35.49190 114.29890 201.24614 22.03678 110 18 1 - 52.48131 115.67230 208.09120 22.79354 110 25 1 - 68.98032 117.04570 214.94675 23.55030 110 32 1 - 85.05210 118.41910 221.81023 24.30706 110 38 1 - 100.57065 119.79250 226.96177 24.87463 110 44 1 - 100.94903 119.79250 230.39786 25.25301 110 44 1 - 116.16620 121.16590 235.55418 25.82058 110 49 1 - 123.97219 122.53930 242.43233 26.57734 220 51 2 - 130.55151 123.91270 249.31352 27.33410 220 52 2 - 137.08774 125.28610 256.19718 28.09086 220 54 2 - 142.91529 126.65950 261.36123 28.65843 220 55 2 - 144.74465 126.65950 264.80452 30.77502 220 55 2 - 150.07824 128.03290 269.97025 29.60438 220 56 2 - 156.54967 129.40630 276.85902 30.36113 220 57 2 - 163.01166 130.77970 283.74896 31.11789 220 57 2 - 169.46867 132.15310 290.63991 31.87465 220 58 2 - 175.24699 133.52650 295.80866 32.44222 220 59 2 + 17.71129 112.92550 192.70971 21.09083 110 0 1 + 18.08967 112.92550 196.12085 21.46921 110 0 1 + 35.46936 114.29890 201.24614 22.03678 110 18 1 + 52.48431 115.67230 208.09120 22.79354 110 25 1 + 69.00851 117.04570 214.94675 23.55030 110 32 1 + 85.10513 118.41910 221.81023 24.30706 110 38 1 + 100.64814 119.79250 226.96177 24.87463 110 44 1 + 101.02652 119.79250 230.39786 25.25301 110 44 1 + 116.26776 121.16590 235.55418 25.82058 110 49 1 + 124.00635 122.53930 242.43233 26.57734 220 51 2 + 130.59206 123.91270 249.31352 27.33410 220 52 2 + 137.13461 125.28610 256.19718 28.09086 220 54 2 + 142.96842 126.65950 261.36123 28.65843 220 55 2 + 144.32373 126.65950 264.80452 29.03681 220 55 2 + 150.13761 128.03290 269.97025 29.60438 220 56 2 + 156.61525 129.40630 276.85902 30.36113 220 57 2 + 163.08344 130.77970 283.74896 31.11789 220 57 2 + 169.54663 132.15310 290.63991 31.87465 220 58 2 + 175.33114 133.52650 295.80866 32.44222 220 59 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -32933,7 +33069,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 256.689 'Eerste zandlaag' + -12.50 256.749 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -32955,7 +33091,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -85.28 'Eerste zandlaag' + -12.50 -85.30 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -33189,7 +33325,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 380.84328 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 380.84398 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -33214,32 +33350,32 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.34 : Percentage mobilized resistance left - 10.03 : Percentage mobilized resistance right - 103.50 : Effective left - 78.94 : Effective right + 14.32 : Percentage mobilized resistance left + 10.01 : Percentage mobilized resistance right + 103.35 : Effective left + 78.80 : Effective right 1077.43 : Water pressure left 1120.54 : Water pressure right 721.71 : Max effective resistance left 786.86 : Max effective resistance right -8648.25 : Max moment left -9368.41 : Max moment right --1195.74 : Max mobilized moment left - -952.03 : Max mobilized moment right - 31.40 : Vertical force left - 24.22 : Vertical force right +-1193.94 : Max mobilized moment left + -950.29 : Max mobilized moment right + 31.36 : Vertical force left + 24.18 : Vertical force right 13.8 : Max mobilized moment percentage left - 10.2 : Max mobilized moment percentage right + 10.1 : Max mobilized moment percentage right -2.43 : Level of single support 9 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.22 : Active force -31.40 : Passive force --24.22 : Plugged active force -31.40 : Plugged passive force +-24.18 : Active force +31.36 : Passive force +-24.18 : Plugged active force +31.36 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -33259,204 +33395,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.05975 - 0.00000 0.00000 -4.09253 - 0.00000 0.00000 -4.12531 - 0.00000 0.00000 -4.15808 - 0.00000 0.00000 -4.19086 - 0.00000 0.00000 -4.22364 - 0.00000 0.00000 -4.22364 - 0.00000 0.00000 -4.25642 - 0.00000 0.00000 -4.28920 - 0.00000 0.00000 -4.32197 - 0.00000 0.00000 -4.35475 - 0.00000 0.00000 -4.38753 - 0.00000 0.00000 -4.38753 - 0.00000 0.00049 -4.39139 - 0.00001 0.00196 -4.39524 - 0.00004 0.00441 -4.39910 - 0.00010 0.00785 -4.40296 - 0.00020 0.01226 -4.40681 - 0.00020 0.01226 -4.40681 - 0.00163 0.04905 -4.42609 - 0.00552 0.11036 -4.44537 - 0.01308 0.19620 -4.46465 - 0.02555 0.30656 -4.48394 - 0.04415 0.44145 -4.50322 - 0.04415 0.44145 -4.50322 - 0.08226 0.64746 -4.53022 - 0.13479 0.85347 -4.55722 - 0.20174 1.05948 -4.58423 - 0.28312 1.26549 -4.61126 - 0.37891 1.47150 -4.63830 - 0.37891 1.47150 -4.63830 - 0.54078 1.76580 -4.67697 - 0.73207 2.06010 -4.71571 - 0.95280 2.35440 -4.75454 - 1.20295 2.64870 -4.79350 - 1.48254 2.94300 -4.83261 - 1.48254 2.94300 -4.83261 - 1.79155 3.23730 -4.87190 - 2.13000 3.53160 -4.91142 - 2.49787 3.82590 -4.95121 - 2.89518 4.12020 -4.99132 - 3.32191 4.41450 -5.03179 - 3.32191 4.41450 -5.03179 - 3.71244 4.66760 -5.06692 - 4.12474 4.92070 -5.10240 - 4.55880 5.17379 -5.13827 - 5.01463 5.42689 -5.17456 - 5.49223 5.67999 -5.21132 - 5.49223 -12.91329 -5.21132 - 4.03923 -12.57779 -5.26078 - 2.62449 -12.24229 -5.31090 - 1.24799 -11.90679 -5.36146 - -0.09026 -11.57129 -5.41223 - -1.39026 -11.23578 -5.46298 - -1.38961 -11.24666 -5.46298 - -2.27993 -11.01122 -5.49847 - -3.15141 -10.77578 -5.53377 - -4.00405 -10.54034 -5.56883 - -4.83786 -10.30490 -5.60356 - -5.65283 -10.06946 -5.63790 - -5.65305 -10.07116 -5.63790 - -5.85389 -10.01230 -5.64641 - -6.05355 -9.95344 -5.65490 - -6.25203 -9.89458 -5.66336 - -6.44933 -9.83572 -5.67178 - -6.64546 -9.77686 -5.68017 - -6.64575 -9.77361 -5.68017 - -7.60840 -9.47931 -5.72161 - -8.54161 -9.18501 -5.76209 - -9.44540 -8.89071 -5.80149 - -10.31976 -8.59641 -5.83971 - -11.16468 -8.30211 -5.87663 - -11.16457 -8.30122 -5.87663 - -11.97998 -8.00692 -5.91214 - -12.76595 -7.71262 -5.94613 - -13.52250 -7.41832 -5.97853 - -14.24962 -7.12402 -6.00922 - -14.94730 -6.82972 -6.03811 - -14.94730 -6.82957 -6.03811 - -15.61554 -6.53527 -6.06512 - -16.25436 -6.24097 -6.09017 - -16.86374 -5.94667 -6.11316 - -17.44369 -5.65237 -6.13404 - -17.99421 -5.35807 -6.15272 - -17.99423 -5.35779 -6.15272 - -18.71548 -4.94577 -6.17503 - -19.37904 -4.53375 -6.19273 - -19.98493 -4.12173 -6.20565 - -20.53313 -3.70971 -6.21365 - -21.02364 -3.29769 -6.21658 - -21.02368 -3.29691 -6.21658 - -21.42741 -2.91432 -6.21463 - -21.78141 -2.53173 -6.20813 - -22.08566 -2.14914 -6.19700 - -22.34018 -1.76655 -6.18117 - -22.54496 -1.38396 -6.16059 - -22.54489 -1.38357 -6.16059 - -22.69989 -1.00098 -6.13520 - -22.80515 -0.61839 -6.10497 - -22.86067 -0.23580 -6.06990 - -22.86646 0.14679 -6.02997 - -22.82251 0.52938 -5.98517 - -22.82251 0.52937 -5.98517 - -22.71048 0.96935 -5.92762 - -22.53267 1.40933 -5.86368 - -22.28909 1.84931 -5.79341 - -21.97973 2.28929 -5.71688 - -21.60459 2.72926 -5.63417 - -21.60459 2.72926 -5.63417 - -21.16368 3.16924 -5.54534 - -20.65699 3.60922 -5.45056 - -20.08452 4.04920 -5.34998 - -19.44628 4.48918 -5.24376 - -18.74226 4.92916 -5.13206 - -18.74290 4.93234 -5.13206 - -17.97263 5.37232 -5.01506 - -17.13658 5.81229 -4.89300 - -16.23475 6.25227 -4.76613 - -15.26715 6.69225 -4.63471 - -14.23377 7.13223 -4.49899 - -14.23279 7.14010 -4.49899 - -13.13245 7.58008 -4.35923 - -11.96634 8.02006 -4.21578 - -10.73445 8.46004 -4.06898 - -9.43679 8.90002 -3.91917 - -8.07335 9.33999 -3.76670 - -8.07326 9.34016 -3.76670 - -8.05458 9.34604 -3.76464 - -8.03588 9.35193 -3.76259 - -8.01717 9.35781 -3.76053 - -7.99845 9.36370 -3.75847 - -7.97972 9.36959 -3.75641 - -7.97972 9.36957 -3.75641 - -7.62155 9.48140 -3.71724 - -7.25913 9.59324 -3.67793 - -6.89246 9.70507 -3.63849 - -6.52154 9.81690 -3.59892 - -6.14638 9.92874 -3.55923 - -6.14749 9.93859 -3.55923 - -4.93367 10.29175 -3.43319 - -3.67747 10.64491 -3.30626 - -2.37889 10.99807 -3.17867 - -1.03793 11.35123 -3.05065 - 0.34541 11.70439 -2.92245 - 0.34575 11.70921 -2.92245 - 1.05360 11.88579 -2.85835 - 1.77205 12.06237 -2.79430 - 2.50109 12.23895 -2.73033 - 3.24072 12.41553 -2.66648 - 3.99095 12.59211 -2.60277 - 3.99107 12.59024 -2.60277 - 5.23980 12.38454 -2.49701 - 6.46797 12.17884 -2.39191 - 7.67557 11.97314 -2.28762 - 8.86260 11.76744 -2.18430 - 10.02906 11.56174 -2.08209 - 10.02941 11.55292 -2.08209 - 10.97277 11.28886 -1.99923 - 11.86812 10.56162 -1.91729 - 12.70707 9.91449 -1.83635 - 13.49639 9.35119 -1.75648 - 14.24284 8.86780 -1.67776 - 14.24271 8.86677 -1.67776 - 15.12971 8.87709 -1.58340 - 16.01890 8.91068 -1.49095 - 16.91261 8.96733 -1.40051 - 17.81313 9.04677 -1.31221 - 18.72271 9.14868 -1.22615 - 18.71984 9.17090 -1.22615 - 19.77799 5.99665 -1.10971 - 20.41289 3.12215 -0.99816 - 20.66550 0.53291 -0.89156 - 20.57475 -1.78537 -0.78999 - 20.17759 -3.84683 -0.69350 - 20.17853 -3.83959 -0.69350 - 19.51545 -5.57204 -0.60208 - 18.63546 -6.93787 -0.51548 - 17.58899 -7.95770 -0.43344 - 16.41922 -8.72215 -0.35571 - 15.15531 -9.30409 -0.28205 - 15.15536 -9.30096 -0.28205 - 13.82248 -9.71084 -0.21215 - 12.44425 -9.95091 -0.14566 - 11.04372 -10.03040 -0.08224 - 9.64295 -9.95532 -0.02154 - 8.26319 -9.73103 0.03677 - 8.26326 -9.72922 0.03677 - 6.93669 -9.23861 0.09305 - 5.67732 -8.72928 0.14762 - 4.49889 -8.08278 0.20078 - 3.42041 -7.30188 0.25280 - 2.46054 -6.38872 0.30397 - 2.46058 -6.38812 0.30397 - 1.62644 -5.46596 0.35458 - 0.94184 -4.29245 0.40480 - 0.43057 -2.99002 0.45474 - 0.11063 -1.55916 0.50453 - -0.00001 -0.00004 0.55430 + 0.00000 0.00000 -4.05892 + 0.00000 0.00000 -4.09172 + 0.00000 0.00000 -4.12452 + 0.00000 0.00000 -4.15732 + 0.00000 0.00000 -4.19013 + 0.00000 0.00000 -4.22293 + 0.00000 0.00000 -4.22293 + 0.00000 0.00000 -4.25573 + 0.00000 0.00000 -4.28853 + 0.00000 0.00000 -4.32134 + 0.00000 0.00000 -4.35414 + 0.00000 0.00000 -4.38694 + 0.00000 0.00000 -4.38694 + 0.00000 0.00049 -4.39080 + 0.00001 0.00196 -4.39466 + 0.00004 0.00441 -4.39852 + 0.00010 0.00785 -4.40238 + 0.00020 0.01226 -4.40624 + 0.00020 0.01226 -4.40624 + 0.00163 0.04905 -4.42553 + 0.00552 0.11036 -4.44483 + 0.01308 0.19620 -4.46412 + 0.02555 0.30656 -4.48342 + 0.04415 0.44145 -4.50272 + 0.04415 0.44145 -4.50272 + 0.08226 0.64746 -4.52974 + 0.13479 0.85347 -4.55676 + 0.20174 1.05948 -4.58379 + 0.28312 1.26549 -4.61084 + 0.37891 1.47150 -4.63790 + 0.37891 1.47150 -4.63790 + 0.54078 1.76580 -4.67660 + 0.73207 2.06010 -4.71537 + 0.95280 2.35440 -4.75423 + 1.20295 2.64870 -4.79322 + 1.48254 2.94300 -4.83235 + 1.48254 2.94300 -4.83235 + 1.79155 3.23730 -4.87167 + 2.13000 3.53160 -4.91122 + 2.49787 3.82590 -4.95104 + 2.89518 4.12020 -4.99117 + 3.32191 4.41450 -5.03167 + 3.32191 4.41450 -5.03167 + 3.71244 4.66760 -5.06683 + 4.12474 4.92070 -5.10234 + 4.55880 5.17379 -5.13823 + 5.01463 5.42689 -5.17455 + 5.49223 5.67999 -5.21133 + 5.49223 -12.91399 -5.21133 + 4.03916 -12.57849 -5.26082 + 2.62433 -12.24298 -5.31098 + 1.24776 -11.90748 -5.36157 + -0.09057 -11.57198 -5.41237 + -1.39066 -11.23648 -5.46315 + -1.39001 -11.24736 -5.46315 + -2.28038 -11.01192 -5.49867 + -3.15192 -10.77648 -5.53399 + -4.00462 -10.54104 -5.56907 + -4.83848 -10.30560 -5.60382 + -5.65351 -10.07016 -5.63818 + -5.65373 -10.07187 -5.63818 + -5.85458 -10.01301 -5.64671 + -6.05425 -9.95415 -5.65520 + -6.25275 -9.89529 -5.66366 + -6.45007 -9.83643 -5.67209 + -6.64621 -9.77757 -5.68049 + -6.64650 -9.77432 -5.68049 + -7.60922 -9.48002 -5.72195 + -8.54250 -9.18572 -5.76246 + -9.44636 -8.89142 -5.80189 + -10.32079 -8.59712 -5.84014 + -11.16578 -8.30282 -5.87708 + -11.16567 -8.30192 -5.87708 + -11.98115 -8.00762 -5.91262 + -12.76719 -7.71332 -5.94664 + -13.52381 -7.41902 -5.97906 + -14.25100 -7.12472 -6.00978 + -14.94876 -6.83042 -6.03871 + -14.94876 -6.83027 -6.03871 + -15.61707 -6.53597 -6.06574 + -16.25595 -6.24167 -6.09081 + -16.86540 -5.94737 -6.11384 + -17.44542 -5.65307 -6.13474 + -17.99601 -5.35877 -6.15344 + -17.99603 -5.35849 -6.15344 + -18.71738 -4.94647 -6.17579 + -19.38104 -4.53445 -6.19352 + -19.98703 -4.12243 -6.20648 + -20.53532 -3.71041 -6.21451 + -21.02594 -3.29839 -6.21747 + -21.02598 -3.29761 -6.21747 + -21.42980 -2.91502 -6.21556 + -21.78389 -2.53243 -6.20909 + -22.08823 -2.14984 -6.19799 + -22.34284 -1.76725 -6.18219 + -22.54772 -1.38466 -6.16164 + -22.54765 -1.38427 -6.16164 + -22.70274 -1.00168 -6.13627 + -22.80809 -0.61909 -6.10607 + -22.86370 -0.23650 -6.07103 + -22.86958 0.14609 -6.03112 + -22.82572 0.52868 -5.98635 + -22.82572 0.52867 -5.98635 + -22.71379 0.96865 -5.92883 + -22.53609 1.40863 -5.86492 + -22.29261 1.84861 -5.79468 + -21.98336 2.28858 -5.71818 + -21.60833 2.72856 -5.63548 + -21.60833 2.72856 -5.63548 + -21.16752 3.16854 -5.54668 + -20.66093 3.60852 -5.45192 + -20.08857 4.04850 -5.35136 + -19.45043 4.48848 -5.24516 + -18.74652 4.92846 -5.13348 + -18.74716 4.93163 -5.13348 + -17.97699 5.37161 -5.01650 + -17.14105 5.81159 -4.89446 + -16.23933 6.25157 -4.76760 + -15.27183 6.69155 -4.63620 + -14.23855 7.13153 -4.50049 + -14.23757 7.13937 -4.50049 + -13.13734 7.57935 -4.36075 + -11.97134 8.01933 -4.21730 + -10.73956 8.45931 -4.07051 + -9.44201 8.89929 -3.92071 + -8.07867 9.33927 -3.76824 + -8.07859 9.33940 -3.76824 + -8.05991 9.34529 -3.76619 + -8.04121 9.35118 -3.76413 + -8.02251 9.35706 -3.76207 + -8.00379 9.36295 -3.76002 + -7.98505 9.36883 -3.75796 + -7.98505 9.36882 -3.75796 + -7.62691 9.48065 -3.71879 + -7.26452 9.59249 -3.67948 + -6.89788 9.70432 -3.64003 + -6.52700 9.81615 -3.60047 + -6.15186 9.92799 -3.56078 + -6.15297 9.93787 -3.56078 + -4.93924 10.29103 -3.43475 + -3.68312 10.64419 -3.30782 + -2.38463 10.99735 -3.18022 + -1.04376 11.35051 -3.05221 + 0.33949 11.70367 -2.92400 + 0.33991 11.70547 -2.92400 + 1.04754 11.88205 -2.85990 + 1.76576 12.05863 -2.79585 + 2.49457 12.23521 -2.73188 + 3.23398 12.41179 -2.66802 + 3.98399 12.58837 -2.60431 + 3.98409 12.58639 -2.60431 + 5.23245 12.38069 -2.49855 + 6.46023 12.17499 -2.39344 + 7.66745 11.96929 -2.28915 + 8.85409 11.76359 -2.18581 + 10.02017 11.55789 -2.08360 + 10.02063 11.54570 -2.08360 + 10.96341 11.28182 -2.00072 + 11.85818 10.55428 -1.91877 + 12.69648 9.90630 -1.83783 + 13.48510 9.34230 -1.75795 + 14.23081 8.85838 -1.67922 + 14.23066 8.85726 -1.67922 + 15.11676 8.86852 -1.58484 + 16.00514 8.90301 -1.49237 + 16.89812 8.96051 -1.40192 + 17.79800 9.04076 -1.31359 + 18.70702 9.14342 -1.22751 + 18.70412 9.16594 -1.22751 + 19.76162 5.99272 -1.11103 + 20.39615 3.12115 -0.99944 + 20.64894 0.53671 -0.89280 + 20.55916 -1.77491 -0.79118 + 20.16403 -3.82791 -0.69465 + 20.16499 -3.82059 -0.69465 + 19.50489 -5.54655 -0.60317 + 18.62937 -6.89940 -0.51651 + 17.58895 -7.91173 -0.43441 + 16.42570 -8.67508 -0.35663 + 15.16842 -9.25642 -0.28290 + 15.16847 -9.25330 -0.28290 + 13.84252 -9.66054 -0.21295 + 12.47130 -9.90100 -0.14641 + 11.07771 -9.98135 -0.08295 + 9.68372 -9.90761 -0.02222 + 8.31052 -9.68516 0.03611 + 8.31058 -9.68334 0.03611 + 6.97891 -9.31685 0.09241 + 5.70840 -8.81034 0.14698 + 4.51840 -8.16717 0.20013 + 3.42784 -7.39011 0.25214 + 2.45531 -6.48130 0.30330 + 2.45536 -6.48070 0.30330 + 1.61928 -5.44168 0.35390 + 0.93772 -4.27351 0.40411 + 0.42869 -2.97691 0.45404 + 0.11015 -1.55236 0.50383 + -0.00001 -0.00004 0.55359 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -33682,7 +33818,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -33694,7 +33830,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -33879,47 +34015,47 @@ Status character 0.00000 104.28340 28.51197 5.30137 1 0 A 0.00000 105.26440 29.37014 5.60086 1 0 A 0.00000 105.26440 29.89070 5.78254 1 0 A - 0.20113 106.06882 30.59424 6.02811 110 0 1 - 0.72274 106.87324 31.53218 6.35555 110 0 1 - 1.24415 107.67766 32.46998 6.68298 110 0 1 - 1.76509 108.48208 33.40765 7.01041 110 0 1 - 2.20344 109.28650 34.11083 7.25598 110 0 1 - 5.79642 109.28650 22.39924 8.32270 110 0 1 - 7.77327 107.26750 26.18365 10.18268 110 0 1 - 10.36915 105.24850 31.21648 12.66266 110 0 1 - 12.96382 103.22950 36.23585 15.14263 110 0 1 - 15.55702 101.21050 41.24435 17.62261 110 0 1 - 17.52852 99.19150 44.99531 19.48259 110 0 1 + 0.21215 106.06882 30.59424 6.02811 110 0 1 + 0.73347 106.87324 31.53218 6.35555 110 0 1 + 1.25457 107.67766 32.46998 6.68298 110 0 1 + 1.77517 108.48208 33.40765 7.01041 110 0 1 + 2.21316 109.28650 34.11083 7.25598 110 0 1 + 5.80129 109.28650 22.39924 8.32270 110 0 1 + 7.77791 107.26750 26.18365 10.18268 110 0 1 + 10.37354 105.24850 31.21648 12.66266 110 0 1 + 12.96796 103.22950 36.23585 15.14263 110 0 1 + 15.56091 101.21050 41.24435 17.62261 110 0 1 + 17.53215 99.19150 44.99531 19.48259 110 0 1 7.96320 99.19150 152.00137 13.90162 1 0 A 8.29497 100.56490 141.39199 14.46919 1 0 A 8.73556 101.93830 143.33806 15.22595 1 0 A 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.28555 106.05850 162.45605 17.72174 110 0 1 - 11.57812 107.43190 167.40248 18.25299 110 0 1 - 13.06329 108.80530 174.07947 19.00974 110 0 1 - 14.51682 110.17870 180.82097 19.76650 110 0 1 - 15.93997 111.55210 187.60408 20.52326 110 0 1 - 17.14483 112.92550 192.70971 21.09083 110 0 1 - 17.52321 112.92550 196.12085 21.46921 110 0 1 - 18.70065 114.29890 201.24614 22.03678 110 0 1 - 20.04227 115.67230 208.09120 22.79354 110 0 1 - 21.36121 117.04570 214.94675 23.55030 110 0 1 - 22.65984 118.41910 221.81023 24.30706 110 0 1 - 23.75129 119.79250 226.96177 24.87463 110 0 1 - 25.86960 119.79250 230.39786 26.99293 110 0 1 - 25.20566 121.16590 235.55418 25.82058 110 0 1 - 26.45775 122.53930 242.43233 26.57734 110 0 1 - 27.69891 123.91270 249.31352 27.33410 110 11 1 - 28.93132 125.28610 256.19718 28.09086 110 11 1 - 29.96794 126.65950 261.36123 28.65843 110 11 1 - 30.34632 126.65950 264.80452 29.03681 110 11 1 - 31.37847 128.03290 269.97025 29.60438 110 12 1 - 32.59670 129.40630 276.85902 30.36113 110 12 1 - 33.81277 130.77970 283.74896 31.11789 110 12 1 - 35.02766 132.15310 290.63991 31.87465 110 12 1 - 36.05315 133.52650 295.80866 32.44222 110 12 1 + 10.26000 106.05850 162.45605 17.68542 110 0 1 + 11.58685 107.43190 167.40248 18.25299 110 0 1 + 13.07006 108.80530 174.07947 19.00974 110 0 1 + 14.52168 110.17870 180.82097 19.76650 110 0 1 + 15.94299 111.55210 187.60408 20.52326 110 0 1 + 17.14606 112.92550 192.70971 21.09083 110 0 1 + 17.52444 112.92550 196.12085 21.46921 110 0 1 + 18.70014 114.29890 201.24614 22.03678 110 0 1 + 20.04003 115.67230 208.09120 22.79354 110 0 1 + 21.35727 117.04570 214.94675 23.55030 110 0 1 + 22.65417 118.41910 221.81023 24.30706 110 0 1 + 23.74389 119.79250 226.96177 24.87463 110 0 1 + 24.12227 119.79250 230.39786 25.25301 110 0 1 + 25.19648 121.16590 235.55418 25.82058 110 0 1 + 26.44677 122.53930 242.43233 26.57734 110 0 1 + 27.68611 123.91270 249.31352 27.33410 110 11 1 + 28.91669 125.28610 256.19718 28.09086 110 11 1 + 29.95150 126.65950 261.36123 28.65843 110 11 1 + 30.32988 126.65950 264.80452 29.03681 110 11 1 + 31.36026 128.03290 269.97025 29.60438 110 12 1 + 32.57673 129.40630 276.85902 30.36113 110 12 1 + 33.79107 130.77970 283.74896 31.11789 110 12 1 + 35.00425 132.15310 290.63991 31.87465 110 12 1 + 36.02803 133.52650 295.80866 32.44222 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -33937,9 +34073,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 0.413 'Hydrobiaklei' - -12.00 5.833 'Basisveen' - -12.50 72.690 'Eerste zandlaag' + -10.00 0.417 'Hydrobiaklei' + -12.00 5.835 'Basisveen' + -12.50 72.544 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -33961,7 +34097,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -0.08 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -24.15 'Eerste zandlaag' + -12.50 -24.10 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -34184,7 +34320,7 @@ Lambda passive -13.62000 34.56770 167.44702 10.54104 0.53046 0.30494 4.84403 -13.76000 35.99430 174.28878 10.97700 0.53046 0.30496 4.84212 -13.90000 37.42090 179.42961 11.30387 0.53046 0.30498 4.84104 - -13.90000 37.42090 182.86061 11.52175 0.53142 0.30499 4.84046 + -13.90000 37.42090 182.86061 11.52175 0.53046 0.30499 4.84046 -14.04000 38.84750 188.01143 11.84851 0.53046 0.30500 4.83973 -14.18000 40.27410 194.88482 12.28414 0.53046 0.30501 4.83896 -14.32000 41.70070 201.76336 12.71969 0.53046 0.30502 4.83837 @@ -34196,7 +34332,7 @@ Lambda passive -15.02000 48.83370 236.19872 14.89687 0.53046 0.30505 4.83680 -15.16000 50.26030 243.09061 15.33222 0.53046 0.30506 4.83663 -15.30000 51.68690 248.26013 15.65873 0.53046 0.30506 4.83653 - -15.30000 51.68690 251.70674 15.87640 0.56387 0.30506 4.83646 + -15.30000 51.68690 251.70674 15.87640 0.53046 0.30506 4.83646 -15.44000 53.11350 256.87701 16.20290 0.53046 0.30506 4.83638 -15.58000 54.54010 263.77123 16.63821 0.53046 0.30506 4.83628 -15.72000 55.96670 270.66597 17.07352 0.53046 0.30507 4.83620 @@ -34375,47 +34511,47 @@ Status character 0.00000 106.34040 0.00000 0.00000 -1 0 - 0.00000 107.32140 0.00000 0.00000 -1 0 - 0.05110 102.32140 0.05110 0.05110 402 100 P - 12.47653 103.12582 24.87182 4.03158 220 50 2 - 12.07104 103.93024 25.81073 4.35901 110 47 1 - 11.56554 104.73466 26.74945 4.68644 110 43 1 - 11.06861 105.53908 27.68801 5.01387 110 40 1 - 10.57590 106.34350 28.39182 5.25945 110 37 1 - 8.75316 106.34350 18.04937 6.22689 110 48 1 - 10.49628 104.32450 21.80427 8.08687 110 48 1 - 12.86035 102.30550 26.79827 10.56685 110 48 1 - 15.22564 100.28650 31.78298 13.04682 110 48 1 - 17.59239 98.26750 36.76329 15.52680 110 48 1 - 19.34085 96.24850 40.49761 17.38678 110 48 1 - 34.67651 96.24850 135.72642 12.47202 110 26 1 - 32.81421 97.62190 125.13722 13.03959 110 26 1 - 31.16654 98.99530 128.37942 13.79635 110 24 1 - 29.61889 100.36870 134.13328 14.55311 110 22 1 - 28.17304 101.74210 140.50728 15.30987 110 20 1 - 26.71645 103.11550 145.44864 15.87744 110 18 1 - 26.90825 103.11550 148.78948 16.25582 110 18 1 - 25.59069 104.48890 153.84310 16.82339 110 17 1 - 24.44853 105.86230 160.62739 17.58015 110 15 1 - 23.58659 107.23570 167.44702 18.33690 110 14 1 - 23.67696 108.60910 174.28878 19.09366 110 14 1 - 23.60724 109.98250 179.42961 19.66123 110 13 1 - 24.02190 109.98250 182.86061 20.07589 110 13 1 - 23.94332 111.35590 188.01143 20.60718 110 13 1 - 24.11522 112.72930 194.88482 21.36394 110 12 1 - 24.30979 114.10270 201.76336 22.12070 110 12 1 - 24.52468 115.47610 208.64575 22.87746 110 12 1 - 24.56836 116.84950 213.80942 23.44503 110 11 1 - 24.94674 116.84950 217.25269 23.82341 110 11 1 - 25.00590 118.22290 222.41863 24.39098 110 11 1 - 25.26733 119.59630 229.30797 25.14774 110 11 1 - 25.53968 120.96970 236.19872 25.90450 110 0 1 - 25.82079 122.34310 243.09061 26.66126 110 0 1 - 25.91931 123.71650 248.26013 27.22883 110 0 1 - 28.03650 123.71650 251.70674 29.34601 110 0 1 - 26.40068 125.08990 256.87701 28.17478 110 0 1 - 26.69597 126.46330 263.77123 28.93154 110 0 1 - 26.99342 127.83670 270.66597 29.68829 110 0 1 - 27.29205 129.21010 277.56115 30.44505 110 0 1 - 27.40169 130.58350 282.73278 31.01262 110 0 1 + 12.48316 103.12582 24.87182 4.03158 220 50 2 + 12.09318 103.93024 25.81073 4.35901 110 47 1 + 11.58545 104.73466 26.74945 4.68644 110 43 1 + 11.08621 105.53908 27.68801 5.01387 110 40 1 + 10.59113 106.34350 28.39182 5.25945 110 37 1 + 8.74830 106.34350 18.04937 6.22689 110 48 1 + 10.49164 104.32450 21.80427 8.08687 110 48 1 + 12.85596 102.30550 26.79827 10.56685 110 48 1 + 15.22150 100.28650 31.78298 13.04682 110 48 1 + 17.58850 98.26750 36.76329 15.52680 110 48 1 + 19.33723 96.24850 40.49761 17.38678 110 48 1 + 34.67581 96.24850 135.72642 12.47202 110 26 1 + 32.80004 97.62190 125.13722 13.03959 110 26 1 + 31.13890 98.99530 128.37942 13.79635 110 24 1 + 29.57790 100.36870 134.13328 14.55311 110 22 1 + 28.11894 101.74210 140.50728 15.30987 110 20 1 + 26.64960 103.11550 145.44864 15.87744 110 18 1 + 26.87773 103.11550 148.78948 16.25582 110 18 1 + 25.51159 104.48890 153.84310 16.82339 110 17 1 + 24.35787 105.86230 160.62739 17.58015 110 15 1 + 23.58173 107.23570 167.44702 18.33690 110 14 1 + 23.67393 108.60910 174.28878 19.09366 110 14 1 + 23.60600 109.98250 179.42961 19.66123 110 13 1 + 23.98438 109.98250 182.86061 20.03961 110 13 1 + 23.94383 111.35590 188.01143 20.60718 110 13 1 + 24.11745 112.72930 194.88482 21.36394 110 12 1 + 24.31374 114.10270 201.76336 22.12070 110 12 1 + 24.53035 115.47610 208.64575 22.87746 110 12 1 + 24.57577 116.84950 213.80942 23.44503 110 11 1 + 24.95415 116.84950 217.25269 23.82341 110 11 1 + 25.01507 118.22290 222.41863 24.39098 110 11 1 + 25.27831 119.59630 229.30797 25.14774 110 11 1 + 25.55249 120.96970 236.19872 25.90450 110 0 1 + 25.83542 122.34310 243.09061 26.66126 110 0 1 + 25.93575 123.71650 248.26013 27.22883 110 0 1 + 26.31413 123.71650 251.70674 27.60721 110 0 1 + 26.41889 125.08990 256.87701 28.17478 110 0 1 + 26.71594 126.46330 263.77123 28.93154 110 0 1 + 27.01511 127.83670 270.66597 29.68829 110 0 1 + 27.31546 129.21010 277.56115 30.44505 110 0 1 + 27.42682 130.58350 282.73278 31.01262 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -34433,9 +34569,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.305 'Hydrobiaklei' - -12.00 7.022 'Basisveen' - -12.50 92.174 'Eerste zandlaag' + -10.00 4.311 'Hydrobiaklei' + -12.00 7.020 'Basisveen' + -12.50 92.024 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -34457,7 +34593,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.78 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.62 'Eerste zandlaag' + -12.50 30.57 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -34697,8 +34833,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 491.09298 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 282.35882 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 491.08756 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 282.38024 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -34739,10 +34875,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 15.57 : Percentage mobilized resistance left - 11.97 : Percentage mobilized resistance right - 58.03 : Effective left - 94.18 : Effective right + 15.56 : Percentage mobilized resistance left + 11.96 : Percentage mobilized resistance right + 58.01 : Effective left + 94.16 : Effective right 745.54 : Water pressure left 1120.54 : Water pressure right 372.69 : Max effective resistance left @@ -34751,8 +34887,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 16.18 : Vertical force left - 27.44 : Vertical force right + 16.17 : Vertical force left + 27.43 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -34761,17 +34897,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --27.44 : Active force -16.18 : Passive force --27.44 : Plugged active force -16.18 : Plugged passive force +-27.43 : Active force +16.17 : Passive force +-27.43 : Plugged active force +16.17 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --11.25 : Resulting Vertical Force Unplugged --11.25 : Resulting Vertical Force Plugged +-11.26 : Resulting Vertical Force Unplugged +-11.26 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -34784,210 +34920,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 5.74020 - 0.00000 0.00000 5.37989 - 0.00000 0.00000 5.01958 - 0.00000 0.00000 4.65927 - 0.00000 0.00000 4.29896 - 0.00000 0.00000 3.93865 - 0.00000 0.00000 3.93865 - 0.00000 0.00000 3.57835 - 0.00000 0.00000 3.21804 - 0.00000 0.00000 2.85773 - 0.00000 0.00000 2.49742 - 0.00000 0.00000 2.13711 - 0.00000 0.00000 2.13711 - 0.00000 0.00049 2.09472 - 0.00001 0.00196 2.05233 - 0.00004 0.00441 2.00995 - 0.00010 0.00785 1.96756 - 0.00020 0.01226 1.92517 - 0.00020 0.01226 1.92517 - 0.00803 0.14175 1.41650 - 0.03988 0.41251 0.90784 - 0.11269 0.82453 0.39916 - 0.24341 1.37781 -0.10955 - 0.44901 2.07236 -0.61830 - 0.44901 2.07236 -0.61830 - 0.68977 2.75906 -1.04231 - 1.00409 3.54386 -1.46641 - 1.40181 4.42676 -1.89064 - 1.89272 5.40776 -2.31506 - 2.48663 6.48686 -2.73972 - 2.48663 6.48686 -2.73972 - 3.19336 7.66406 -3.16467 - 4.02271 8.93936 -3.59002 - 4.98450 10.31276 -4.01590 - 6.08854 11.78426 -4.44242 - 7.34462 13.35386 -4.86970 - 7.34462 13.35386 -4.86970 - 8.55395 14.78218 -5.23788 - 9.88924 16.28305 -5.60686 - 11.35672 17.85648 -5.97677 - 12.96263 19.50246 -6.34775 - 14.71322 21.22099 -6.71994 - 14.71322 -107.62199 -6.71994 - 2.57933 -105.23209 -7.21500 - -9.27485 -102.71471 -7.71048 - -20.83478 -100.06984 -8.20449 - -32.08593 -97.29747 -8.69513 - -43.01376 -94.39761 -9.18052 - -43.01311 -94.40849 -9.18052 - -50.48177 -92.29737 -9.51701 - -57.77902 -90.12348 -9.84942 - -64.89985 -87.88680 -10.17720 - -71.83923 -85.58733 -10.49975 - -78.59215 -83.22509 -10.81651 - -78.59237 -83.22679 -10.81651 - -80.25091 -82.62642 -10.89473 - -81.89740 -82.02212 -10.97255 - -83.53176 -81.41390 -11.04995 - -85.15393 -80.80176 -11.12693 - -86.76381 -80.18569 -11.20348 - -86.76410 -80.18244 -11.20348 - -94.62621 -77.04324 -11.57950 - -102.16948 -73.80594 -11.94359 - -109.38412 -70.47054 -12.29484 - -116.26032 -67.03704 -12.63236 - -122.78826 -63.50544 -12.95522 - -122.78814 -63.50461 -12.95522 - -125.91841 -61.70202 -13.11089 - -128.95794 -59.87491 -13.26259 - -131.90549 -58.02327 -13.41023 - -134.75986 -56.14711 -13.55373 - -137.51980 -54.24642 -13.69297 - -137.51980 -54.24640 -13.69297 - -140.18429 -52.33345 -13.82788 - -142.75314 -50.42050 -13.95838 - -145.22634 -48.50755 -14.08438 - -147.60390 -46.59460 -14.20582 - -149.88580 -44.68165 -14.32260 - -149.88581 -44.68157 -14.32260 - -154.16267 -40.85567 -14.54190 - -158.05694 -37.02977 -14.74178 - -161.56862 -33.20387 -14.92179 - -164.69772 -29.37797 -15.08149 - -167.44422 -25.55207 -15.22044 - -167.44424 -25.55179 -15.22044 - -170.64655 -20.19553 -15.37930 - -173.09898 -14.83927 -15.49601 - -174.80154 -9.48301 -15.57014 - -175.75423 -4.12675 -15.60129 - -175.95703 1.22951 -15.58903 - -175.95707 1.23029 -15.58903 - -175.47385 6.20396 -15.53854 - -174.34404 11.17763 -15.45069 - -172.56766 16.15130 -15.32584 - -170.14471 21.12497 -15.16438 - -167.07517 26.09864 -14.96668 - -167.07510 26.09902 -14.96668 - -163.35894 31.07269 -14.73325 - -158.99620 36.04636 -14.46502 - -153.98689 41.02003 -14.16307 - -148.33099 45.99370 -13.82846 - -142.02852 50.96737 -13.46226 - -142.02852 50.96737 -13.46226 - -133.98135 56.68709 -13.00358 - -125.07908 62.40681 -12.50716 - -115.32172 68.12653 -11.97575 - -104.70925 73.84625 -11.41208 - -93.24169 79.56597 -10.81891 - -93.24169 79.56597 -10.81891 - -80.91903 85.28569 -10.19919 - -67.74127 91.00541 -9.55667 - -53.70841 96.72513 -8.89529 - -38.82045 102.44485 -8.21901 - -23.07740 108.16457 -7.53178 - -23.07804 108.16775 -7.53178 - -6.47941 113.88747 -6.83776 - 10.97431 119.60720 -6.14188 - 29.28314 125.32692 -5.44932 - 48.44706 131.04664 -4.76523 - 68.46608 136.76636 -4.09475 - 68.46707 136.77423 -4.09475 - 89.34236 142.49395 -3.44325 - 111.07276 148.21367 -2.81689 - 133.65825 153.93339 -2.22202 - 157.09884 159.65311 -1.66501 - 181.39453 165.37283 -1.15220 - 181.39461 165.37299 -1.15220 - 181.72544 165.44950 -1.14567 - 182.05641 165.52602 -1.13915 - 182.38754 165.60254 -1.13264 - 182.71882 165.67906 -1.12613 - 183.05026 165.75558 -1.11964 - 183.05026 165.75558 -1.11964 - 183.38185 165.83209 -1.11315 - 183.71359 165.90861 -1.10668 - 184.04548 165.98513 -1.10021 - 184.37753 166.06165 -1.09375 - 184.70973 166.13817 -1.08730 - 184.70973 166.13815 -1.08730 - 190.71222 167.24737 -0.97284 - 196.74850 168.10374 -0.86148 - 202.81584 168.97282 -0.75334 - 208.91470 169.85460 -0.64851 - 215.04550 170.74668 -0.54710 - 215.04439 -111.60229 -0.54710 - 201.83723 -108.50233 -0.23389 - 189.00841 -105.28789 0.04271 - 176.57378 -101.93233 0.28496 - 164.55029 -98.43565 0.49511 - 152.95381 -94.82449 0.67541 - 152.95415 -94.81967 0.67541 - 147.32469 -92.83040 0.75506 - 141.81430 -90.85144 0.82802 - 136.42229 -88.88427 0.89455 - 131.14795 -86.92888 0.95488 - 125.99061 -84.98381 1.00927 - 125.99113 -84.99882 1.00927 - 118.37009 -82.48791 1.08095 - 110.98053 -79.90430 1.14028 - 103.83023 -77.23104 1.18802 - 96.92698 -74.47545 1.22489 - 90.27773 -71.65255 1.25166 - 90.27753 -71.64657 1.25166 - 83.88963 -68.73850 1.26905 - 77.76878 -65.77574 1.27768 - 71.92018 -62.75592 1.27818 - 66.34877 -59.68446 1.27115 - 61.05877 -56.57455 1.25719 - 61.05883 -56.57316 1.25719 - 55.55647 -53.50421 1.23458 - 50.35325 -50.57732 1.20497 - 45.43752 -47.75493 1.16898 - 40.79872 -45.03896 1.12723 - 36.42385 -42.49939 1.08035 - 36.42144 -42.47311 1.08035 - 30.67484 -39.55790 1.00724 - 25.36616 -36.19420 0.92656 - 20.55095 -32.60579 0.83951 - 16.23320 -29.08895 0.74727 - 12.40215 -25.65567 0.65104 - 12.40313 -25.66533 0.65104 - 9.04262 -22.34436 0.55189 - 6.14432 -19.07468 0.45051 - 3.69755 -15.89422 0.34751 - 1.68763 -12.84885 0.24351 - 0.08925 -10.03099 0.13909 - 0.09137 -10.01485 0.13909 - -1.12928 -7.46966 0.03477 - -2.01309 -5.20195 -0.06927 - -2.59862 -3.20845 -0.17289 - -2.92419 -1.48799 -0.27592 - -3.02793 -0.03899 -0.37822 - -3.02792 -0.03968 -0.37822 - -2.94778 1.13979 -0.47971 - -2.72127 2.05168 -0.58048 - -2.38572 2.69772 -0.68060 - -1.97824 3.07947 -0.78015 - -1.53573 3.19832 -0.87920 - -1.53576 3.19791 -0.87920 - -1.08365 3.17664 -0.97788 - -0.66415 2.77274 -1.07629 - -0.31943 2.10846 -1.17452 - -0.08592 1.18417 -1.27265 - 0.00001 0.00003 -1.37076 + 0.00000 0.00000 5.73628 + 0.00000 0.00000 5.37608 + 0.00000 0.00000 5.01589 + 0.00000 0.00000 4.65570 + 0.00000 0.00000 4.29551 + 0.00000 0.00000 3.93531 + 0.00000 0.00000 3.93531 + 0.00000 0.00000 3.57512 + 0.00000 0.00000 3.21493 + 0.00000 0.00000 2.85474 + 0.00000 0.00000 2.49455 + 0.00000 0.00000 2.13435 + 0.00000 0.00000 2.13435 + 0.00000 0.00049 2.09198 + 0.00001 0.00196 2.04960 + 0.00004 0.00441 2.00723 + 0.00010 0.00785 1.96485 + 0.00020 0.01226 1.92247 + 0.00020 0.01226 1.92247 + 0.00803 0.14175 1.41397 + 0.03988 0.41251 0.90547 + 0.11269 0.82453 0.39696 + 0.24341 1.37781 -0.11159 + 0.44901 2.07236 -0.62018 + 0.44901 2.07236 -0.62018 + 0.68977 2.75906 -1.04405 + 1.00409 3.54386 -1.46801 + 1.40181 4.42676 -1.89211 + 1.89272 5.40776 -2.31639 + 2.48663 6.48686 -2.74091 + 2.48663 6.48686 -2.74091 + 3.19336 7.66406 -3.16573 + 4.02271 8.93936 -3.59094 + 4.98450 10.31276 -4.01668 + 6.08854 11.78426 -4.44306 + 7.34462 13.35386 -4.87021 + 7.34462 13.35386 -4.87021 + 8.55395 14.78218 -5.23828 + 9.88924 16.28305 -5.60714 + 11.35672 17.85648 -5.97693 + 12.96263 19.50246 -6.34779 + 14.71322 21.22099 -6.71986 + 14.71322 -107.61657 -6.71986 + 2.57995 -105.22667 -7.21477 + -9.27362 -102.70929 -7.71010 + -20.83293 -100.06442 -8.20395 + -32.08346 -97.29205 -8.69444 + -43.01067 -94.39220 -9.17967 + -43.01002 -94.40308 -9.17967 + -50.47824 -92.29197 -9.51605 + -57.77506 -90.11807 -9.84836 + -64.89546 -87.88139 -10.17603 + -71.83441 -85.58193 -10.49847 + -78.58690 -83.21968 -10.81513 + -78.58712 -83.22139 -10.81513 + -80.24555 -82.62102 -10.89332 + -81.89193 -82.01672 -10.97111 + -83.52619 -81.40850 -11.04848 + -85.14824 -80.79636 -11.12544 + -86.75802 -80.18029 -11.20196 + -86.75831 -80.17703 -11.20196 + -94.61987 -77.03783 -11.57785 + -102.16261 -73.80053 -11.94180 + -109.37671 -70.46513 -12.29293 + -116.25237 -67.03163 -12.63032 + -122.77977 -63.50003 -12.95305 + -122.77965 -63.49920 -12.95305 + -125.90965 -61.69661 -13.10866 + -128.94890 -59.86950 -13.26029 + -131.89619 -58.01786 -13.40787 + -134.75028 -56.14170 -13.55130 + -137.50995 -54.24101 -13.69049 + -137.50995 -54.24100 -13.69049 + -140.17418 -52.32805 -13.82534 + -142.74275 -50.41510 -13.95577 + -145.21568 -48.50215 -14.08171 + -147.59297 -46.58920 -14.20308 + -149.87460 -44.67625 -14.31981 + -149.87461 -44.67616 -14.31981 + -154.15093 -40.85026 -14.53899 + -158.04466 -37.02436 -14.73875 + -161.55580 -33.19846 -14.91864 + -164.68435 -29.37256 -15.07822 + -167.43032 -25.54666 -15.21705 + -167.43033 -25.54638 -15.21705 + -170.63189 -20.19012 -15.37576 + -173.08357 -14.83386 -15.49231 + -174.78537 -9.47760 -15.56630 + -175.73730 -4.12134 -15.59730 + -175.93934 1.23492 -15.58489 + -175.93938 1.23570 -15.58489 + -175.45546 6.20937 -15.53428 + -174.32495 11.18304 -15.44630 + -172.54787 16.15671 -15.32134 + -170.12421 21.13038 -15.15976 + -167.05397 26.10405 -14.96195 + -167.05390 26.10443 -14.96195 + -163.33703 31.07810 -14.72841 + -158.97359 36.05177 -14.46008 + -153.96357 41.02544 -14.15803 + -148.30697 45.99911 -13.82333 + -142.00380 50.97278 -13.45704 + -142.00380 50.97278 -13.45704 + -133.95582 56.69250 -12.99827 + -125.05274 62.41222 -12.50176 + -115.29457 68.13194 -11.97027 + -104.68129 73.85166 -11.40653 + -93.21292 79.57138 -10.81330 + -93.21292 79.57138 -10.81330 + -80.88945 85.29110 -10.19353 + -67.71088 91.01082 -9.55095 + -53.67722 96.73054 -8.88954 + -38.78845 102.45026 -8.21323 + -23.04459 108.16998 -7.52598 + -23.04523 108.17316 -7.52598 + -6.44579 113.89288 -6.83194 + 11.00874 119.61260 -6.13607 + 29.31838 125.33232 -5.44351 + 48.48311 131.05204 -4.75943 + 68.50294 136.77176 -4.08899 + 68.50392 136.77961 -4.08899 + 89.38003 142.49933 -3.43753 + 111.11122 148.21905 -2.81121 + 133.69752 153.93877 -2.21640 + 157.13892 159.65849 -1.65946 + 181.43541 165.37821 -1.14674 + 181.43549 165.37835 -1.14674 + 181.76632 165.45487 -1.14021 + 182.09731 165.53139 -1.13368 + 182.42845 165.60791 -1.12717 + 182.75974 165.68442 -1.12067 + 183.09119 165.76094 -1.11418 + 183.09119 165.76094 -1.11418 + 183.42279 165.83746 -1.10769 + 183.75454 165.91398 -1.10122 + 184.08644 165.99050 -1.09475 + 184.41850 166.06701 -1.08829 + 184.75071 166.14353 -1.08185 + 184.75071 166.14352 -1.08185 + 190.75340 167.25273 -0.96740 + 196.78987 168.10911 -0.85607 + 202.85741 168.97818 -0.74795 + 208.95646 169.85996 -0.64315 + 215.08745 170.75204 -0.54176 + 215.08633 -111.61831 -0.54176 + 201.87726 -108.51835 -0.22863 + 189.04651 -105.30391 0.04787 + 176.60996 -101.94835 0.29002 + 164.58455 -98.45167 0.50006 + 152.98614 -94.84051 0.68025 + 152.98656 -94.83871 0.68025 + 147.35596 -92.84944 0.75984 + 141.84442 -90.87048 0.83274 + 136.45127 -88.90331 0.89921 + 131.17579 -86.94792 0.95948 + 126.01731 -85.00285 1.01380 + 126.01782 -85.01797 1.01380 + 118.39497 -82.50912 1.08538 + 111.00330 -79.92951 1.14461 + 103.85052 -77.26014 1.19224 + 96.94446 -74.50831 1.22901 + 90.29206 -71.68903 1.25567 + 90.29201 -71.68724 1.25567 + 83.90025 -68.78265 1.27294 + 77.77523 -65.82318 1.28147 + 71.92217 -62.80648 1.28185 + 66.34603 -59.73794 1.27471 + 61.05104 -56.63074 1.26064 + 61.05108 -56.62946 1.26064 + 55.54327 -53.55742 1.23791 + 50.33480 -50.62920 1.20817 + 45.41394 -47.80552 1.17207 + 40.77015 -45.08832 1.13021 + 36.39039 -42.54786 1.08322 + 36.38794 -42.52124 1.08322 + 30.63425 -39.61592 1.00995 + 25.31640 -36.26235 0.92914 + 20.49195 -32.66971 0.84196 + 16.16553 -29.14888 0.74961 + 12.32636 -25.71181 0.65328 + 12.32621 -25.70168 0.65328 + 8.96467 -22.33633 0.55405 + 6.06773 -19.06321 0.45262 + 3.62280 -15.87945 0.34959 + 1.61525 -12.82931 0.24556 + 0.02004 -10.00523 0.14114 + 0.02228 -9.98858 0.14114 + -1.19449 -7.43982 0.03683 + -2.07370 -5.16607 -0.06718 + -2.65379 -3.16657 -0.17074 + -2.97308 -1.44010 -0.27372 + -3.06968 0.01498 -0.37594 + -3.06968 0.01427 -0.37594 + -2.98155 1.19990 -0.47736 + -2.74619 2.11804 -0.57803 + -2.40090 2.77048 -0.67806 + -1.98278 3.15877 -0.77751 + -1.52871 3.28430 -0.87646 + -1.52873 3.28390 -0.87646 + -1.07547 3.14779 -0.97504 + -0.65952 2.75089 -1.07335 + -0.31736 2.09375 -1.17149 + -0.08540 1.17674 -1.26952 + 0.00001 0.00003 -1.36753 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -35219,7 +35355,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -35231,7 +35367,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -35410,53 +35546,53 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 7.44524 101.25211 24.97488 4.06752 110 30 1 - 8.00094 102.14482 26.01680 4.43089 110 31 1 - 8.52027 103.03753 27.05851 4.79425 110 31 1 - 9.00550 103.93024 28.10001 5.15762 110 32 1 - 9.36810 104.82295 28.88100 5.43015 110 32 1 - 9.54979 104.82295 29.40161 5.61184 110 32 1 - 9.88284 105.71566 30.18242 5.88436 110 33 1 - 10.27915 106.60837 31.22336 6.24773 110 33 1 - 10.64976 107.50108 32.26413 6.61110 110 33 1 - 10.99658 108.39379 33.30474 6.97447 110 33 1 - 11.23063 109.28650 34.08510 7.24700 110 33 1 - 10.31451 109.28650 22.39924 8.32270 110 46 1 - 12.14180 107.26750 26.18365 10.18268 110 46 1 - 14.57796 105.24850 31.21648 12.66266 110 47 1 - 17.00397 103.22950 36.23585 15.14263 110 47 1 - 19.42077 101.21050 41.24435 17.62261 110 47 1 - 21.20935 99.19150 44.99531 19.48259 110 47 1 - 24.26215 99.19150 152.00137 13.90162 110 16 1 - 24.15754 100.56490 141.39199 14.46919 110 17 1 - 24.16869 101.93830 143.33806 15.22595 110 17 1 - 24.11765 103.31170 148.44319 15.98271 110 16 1 - 24.01566 104.68510 154.44929 16.73947 110 16 1 - 23.68479 106.05850 159.20703 17.30704 110 15 1 - 24.06317 106.05850 162.45605 17.68542 110 15 1 - 23.70293 107.43190 167.40248 18.25299 110 14 1 - 23.50928 108.80530 174.07947 19.00974 110 14 1 - 23.29891 110.17870 180.82097 19.76650 110 13 1 - 23.07773 111.55210 187.60408 20.52326 110 12 1 - 22.66246 112.92550 192.70971 21.09083 110 12 1 - 23.07710 112.92550 196.12085 21.50547 110 12 1 - 22.62551 114.29890 201.24614 22.03678 110 11 1 - 22.40124 115.67230 208.09120 22.79354 110 0 1 - 22.18037 117.04570 214.94675 23.55030 110 0 1 - 21.96443 118.41910 221.81023 24.30706 110 0 1 - 21.56577 119.79250 226.96177 24.87463 110 0 1 - 21.94415 119.79250 230.39786 25.25301 110 0 1 - 21.55275 121.16590 235.55418 25.82058 110 0 1 - 21.35712 122.53930 242.43233 26.57734 110 0 1 - 21.16739 123.91270 249.31352 27.33410 110 0 1 - 20.98289 125.28610 256.19718 28.09086 110 0 1 - 20.61375 126.65950 261.36123 28.65843 110 0 1 - 22.73035 126.65950 264.80452 30.77502 110 0 1 - 20.62650 128.03290 269.97025 29.60438 110 0 1 - 20.45249 129.40630 276.85902 30.36113 110 0 1 - 20.28017 130.77970 283.74896 31.11789 110 0 1 - 20.10880 132.15310 290.63991 31.87465 110 0 1 - 19.74846 133.52650 295.80866 32.44222 110 0 1 + 7.46317 101.25211 24.97488 4.06752 110 30 1 + 8.01848 102.14482 26.01680 4.43089 110 31 1 + 8.53739 103.03753 27.05851 4.79425 110 32 1 + 9.02221 103.93024 28.10001 5.15762 110 32 1 + 9.38438 104.82295 28.88100 5.43015 110 32 1 + 9.56607 104.82295 29.40161 5.61184 110 33 1 + 9.89868 105.71566 30.18242 5.88436 110 33 1 + 10.29455 106.60837 31.22336 6.24773 110 33 1 + 10.66471 107.50108 32.26413 6.61110 110 33 1 + 11.01107 108.39379 33.30474 6.97447 110 33 1 + 11.24468 109.28650 34.08510 7.24700 110 33 1 + 10.32154 109.28650 22.39924 8.32270 110 46 1 + 12.14858 107.26750 26.18365 10.18268 110 46 1 + 14.58449 105.24850 31.21648 12.66266 110 47 1 + 17.01025 103.22950 36.23585 15.14263 110 47 1 + 19.42681 101.21050 41.24435 17.62261 110 47 1 + 21.21515 99.19150 44.99531 19.48259 110 47 1 + 24.29696 99.19150 152.00137 13.90162 110 16 1 + 24.19043 100.56490 141.39199 14.46919 110 17 1 + 24.19974 101.93830 143.33806 15.22595 110 17 1 + 24.14697 103.31170 148.44319 15.98271 110 16 1 + 24.04340 104.68510 154.44929 16.73947 110 16 1 + 23.71110 106.05850 159.20703 17.30704 110 15 1 + 24.08948 106.05850 162.45605 17.68542 110 15 1 + 23.72800 107.43190 167.40248 18.25299 110 14 1 + 23.53329 108.80530 174.07947 19.00974 110 14 1 + 23.32206 110.17870 180.82097 19.76650 110 13 1 + 23.10020 111.55210 187.60408 20.52326 110 12 1 + 22.68442 112.92550 192.70971 21.09083 110 12 1 + 23.06280 112.92550 196.12085 21.46921 110 12 1 + 22.64713 114.29890 201.24614 22.03678 110 11 1 + 22.42269 115.67230 208.09120 22.79354 110 0 1 + 22.20181 117.04570 214.94675 23.55030 110 0 1 + 21.98599 118.41910 221.81023 24.30706 110 0 1 + 21.58757 119.79250 226.96177 24.87463 110 0 1 + 21.96595 119.79250 230.39786 25.25301 110 0 1 + 21.57490 121.16590 235.55418 25.82058 110 0 1 + 21.37970 122.53930 242.43233 26.57734 110 0 1 + 21.19047 123.91270 249.31352 27.33410 110 0 1 + 21.00651 125.28610 256.19718 28.09086 110 0 1 + 20.63792 126.65950 261.36123 28.65843 110 0 1 + 21.01630 126.65950 264.80452 29.03681 110 0 1 + 20.65121 128.03290 269.97025 29.60438 110 0 1 + 20.47773 129.40630 276.85902 30.36113 110 0 1 + 20.30593 130.77970 283.74896 31.11789 110 0 1 + 20.13507 132.15310 290.63991 31.87465 110 0 1 + 19.77524 133.52650 295.80866 32.44222 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -35474,9 +35610,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.179 'Hydrobiaklei' - -12.00 7.891 'Basisveen' - -12.50 78.109 'Eerste zandlaag' + -10.00 8.193 'Hydrobiaklei' + -12.00 7.894 'Basisveen' + -12.50 78.072 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -35498,7 +35634,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.49 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -25.95 'Eerste zandlaag' + -12.50 -25.94 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -35622,18 +35758,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 71.15100 34.65200 7.67527 7.15077 -10.88000 71.15100 34.65200 8.94487 7.22146 -10.94000 71.15100 34.65200 10.42612 7.30393 @@ -35733,7 +35869,7 @@ Lambda passive -11.81800 6.63692 28.21538 -1.95352 0.74083 0.00000 4.25128 -11.90900 6.62741 28.11445 -1.95837 0.74083 0.00000 4.24215 -12.00000 6.61790 28.04722 -1.96202 0.74083 0.00000 4.23656 - -12.00000 6.61790 16.30334 0.83382 0.78310 0.13131 2.56739 + -12.00000 6.61790 16.30334 0.83382 0.77767 0.13131 2.56739 -12.10000 5.54690 14.93681 0.32506 0.77767 0.05860 2.69282 -12.20000 4.47590 13.12568 -0.35388 0.77767 0.00000 2.93252 -12.30000 3.40490 11.32554 -1.03336 0.77767 0.00000 3.32625 @@ -35745,7 +35881,7 @@ Lambda passive -12.92000 5.54270 28.23105 1.68796 0.53046 0.30454 5.09337 -13.06000 6.96930 35.13832 2.12272 0.53046 0.30458 5.04187 -13.20000 8.39590 40.26414 2.44888 0.53046 0.30462 5.00844 - -13.20000 8.39590 43.66291 2.66637 0.73615 0.30464 4.98859 + -13.20000 8.39590 43.66291 2.66637 0.53046 0.30464 4.98859 -13.34000 9.82250 48.74577 2.99268 0.53046 0.30468 4.96266 -13.48000 11.24910 55.51183 3.42784 0.53046 0.30472 4.93478 -13.62000 12.67570 62.27780 3.86311 0.53046 0.30476 4.91316 @@ -35941,54 +36077,54 @@ Status character 1.57101 69.92320 28.21509 2.77251 1 0 A 1.76742 70.51180 31.74264 3.11914 1 0 A 1.91473 71.10040 34.38829 3.37911 1 0 A - 2.00355 71.10040 31.05886 4.97143 110 0 1 - 8.32618 72.49311 30.25615 4.96614 110 28 1 - 7.35538 73.88582 29.59143 4.95910 110 25 1 - 6.43088 75.27853 29.16860 4.95205 110 22 1 - 5.55044 76.67124 28.87177 4.94501 110 19 1 - 4.79933 78.06395 28.69817 4.93972 110 0 1 - 4.62431 78.06395 28.60083 4.93620 110 0 1 - 3.91281 79.45666 28.47518 4.93092 110 0 1 - 3.15144 80.84937 28.33359 4.92387 110 0 1 - 2.42580 82.24208 28.21538 4.91683 110 0 1 - 1.73397 83.63479 28.11445 4.90978 110 0 1 - 1.16156 85.02750 28.04722 4.90450 110 0 1 - 2.98096 85.02750 16.30334 4.97278 110 0 1 - 2.35451 87.26850 14.93681 4.31363 110 0 1 - 1.56545 89.50950 13.12568 3.48075 110 0 1 - 0.78654 91.75050 11.32554 2.64787 110 0 1 - 0.01683 93.99150 9.53444 1.81499 110 0 1 + 2.00420 71.10040 31.05886 4.97143 110 0 1 + 8.38865 72.49311 30.25615 4.96614 110 28 1 + 7.41629 73.88582 29.59143 4.95910 110 25 1 + 6.49007 75.27853 29.16860 4.95205 110 22 1 + 5.60776 76.67124 28.87177 4.94501 110 19 1 + 4.85462 78.06395 28.69817 4.93972 110 0 1 + 4.67960 78.06395 28.60083 4.93620 110 0 1 + 3.96589 79.45666 28.47518 4.93092 110 0 1 + 3.20214 80.84937 28.33359 4.92387 110 0 1 + 2.47395 82.24208 28.21538 4.91683 110 0 1 + 1.77941 83.63479 28.11445 4.90978 110 0 1 + 1.20416 85.02750 28.04722 4.90450 110 0 1 + 2.93946 85.02750 16.30334 4.93830 110 0 1 + 2.34774 87.26850 14.93681 4.31363 110 0 1 + 1.55892 89.50950 13.12568 3.48075 110 0 1 + 0.78026 91.75050 11.32554 2.64787 110 0 1 + 0.01080 93.99150 9.53444 1.81499 110 0 1 0.00000 96.23250 8.19590 1.19033 1 0 A - 7.75386 96.23250 8.47711 0.85911 330 91 3 - 4.93801 97.60590 13.98945 1.42668 110 35 1 + 7.75398 96.23250 8.47711 0.85911 330 91 3 + 5.14675 97.60590 13.98945 1.42668 110 37 1 1.25335 98.97930 21.19441 2.18344 1 0 A 1.68796 100.35270 28.23105 2.94020 1 0 A 2.12272 101.72610 35.13832 3.69696 1 0 A 2.44888 103.09950 40.26414 4.26453 1 0 A - 3.24905 103.09950 43.66291 6.44316 110 0 1 + 2.66637 103.09950 43.66291 4.64291 1 0 A 2.99268 104.47290 48.74577 5.21048 1 0 A 3.42784 105.84630 55.51183 5.96724 1 0 A 3.86311 107.21970 62.27780 6.72400 1 0 A - 4.92629 108.59310 69.05226 7.48076 110 0 1 - 6.47670 109.96650 74.14069 8.04833 110 0 1 - 6.85508 109.96650 77.53742 8.42671 110 0 1 - 8.40555 111.33990 82.63924 8.99427 110 0 1 - 10.14334 112.71330 89.45241 9.75103 110 11 1 - 11.87772 114.08670 96.27744 10.50779 110 12 1 - 13.60718 115.46010 103.11296 11.26455 110 13 1 - 15.14098 116.83350 108.24538 11.83212 110 14 1 - 15.51936 116.83350 111.66974 12.21050 110 14 1 - 17.04590 118.20690 116.80993 12.77807 110 15 1 - 18.75505 119.58030 123.66891 13.53483 110 15 1 - 20.45830 120.95370 130.53348 14.29159 110 16 1 - 22.15632 122.32710 137.40278 15.04835 110 16 1 - 23.66059 123.70050 142.55730 15.61592 110 17 1 - 24.03897 123.70050 145.99484 15.99430 110 16 1 - 25.53974 125.07390 151.15274 16.56187 110 17 1 - 27.22727 126.44730 158.03228 17.31863 110 17 1 - 28.91311 127.82070 164.91424 18.07539 110 18 1 - 30.59800 129.19410 171.79828 18.83215 110 18 1 - 32.09348 130.56750 176.96243 19.39972 110 18 1 + 4.90382 108.59310 69.05226 7.48076 110 0 1 + 6.45474 109.96650 74.14069 8.04833 110 0 1 + 6.83312 109.96650 77.53742 8.42671 110 0 1 + 8.38392 111.33990 82.63924 8.99427 110 0 1 + 10.12188 112.71330 89.45241 9.75103 110 11 1 + 11.85629 114.08670 96.27744 10.50779 110 12 1 + 13.58562 115.46010 103.11296 11.26455 110 13 1 + 15.11918 116.83350 108.24538 11.83212 110 14 1 + 15.49756 116.83350 111.66974 12.21050 110 14 1 + 17.02375 118.20690 116.80993 12.77807 110 15 1 + 18.73247 119.58030 123.66891 13.53483 110 15 1 + 20.43522 120.95370 130.53348 14.29159 110 16 1 + 22.13270 122.32710 137.40278 15.04835 110 16 1 + 23.63643 123.70050 142.55730 15.61592 110 17 1 + 24.01480 123.70050 145.99484 15.99430 110 16 1 + 25.51503 125.07390 151.15274 16.56187 110 17 1 + 27.20203 126.44730 158.03228 17.31863 110 17 1 + 28.88735 127.82070 164.91424 18.07539 110 18 1 + 30.57172 129.19410 171.79828 18.83215 110 18 1 + 32.06670 130.56750 176.96243 19.39972 110 18 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -36003,9 +36139,9 @@ Layer name [DATA] -9.99 6.857 'OWB' -10.79 0.442 'Grind' - -11.09 4.111 'Hydrobiaklei' - -12.00 0.621 'Basisveen' - -12.50 45.998 'Eerste zandlaag' + -11.09 4.158 'Hydrobiaklei' + -12.00 0.617 'Basisveen' + -12.50 45.933 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -36022,9 +36158,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.15 'Grind' - -11.09 0.75 'Hydrobiaklei' + -11.09 0.76 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 15.28 'Eerste zandlaag' + -12.50 15.26 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -36264,8 +36400,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 520.25392 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 458.09272 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 520.25313 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 458.15274 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -36306,10 +36442,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.62 : Percentage mobilized resistance left - 16.21 : Percentage mobilized resistance right - 123.33 : Effective left - 127.55 : Effective right + 18.63 : Percentage mobilized resistance left + 16.23 : Percentage mobilized resistance right + 123.42 : Effective left + 127.70 : Effective right 508.74 : Water pressure left 1120.54 : Water pressure right 662.49 : Max effective resistance left @@ -36318,8 +36454,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 18.99 : Vertical force left - 37.66 : Vertical force right + 19.04 : Vertical force left + 37.71 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -36328,10 +36464,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --37.66 : Active force -18.99 : Passive force --37.66 : Plugged active force -18.99 : Plugged passive force +-37.71 : Active force +19.04 : Passive force +-37.71 : Plugged active force +19.04 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -36351,210 +36487,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 13.21978 - 0.00000 0.00000 12.63092 - 0.00000 0.00000 12.04205 - 0.00000 0.00000 11.45318 - 0.00000 0.00000 10.86431 - 0.00000 0.00000 10.27544 - 0.00000 0.00000 10.27544 - 0.00000 0.00000 9.68657 - 0.00000 0.00000 9.09770 - 0.00000 0.00000 8.50883 - 0.00000 0.00000 7.91997 - 0.00000 0.00000 7.33110 - 0.00000 0.00000 7.33110 - 0.00000 0.00049 7.26182 - 0.00001 0.00196 7.19254 - 0.00004 0.00441 7.12326 - 0.00010 0.00785 7.05398 - 0.00020 0.01226 6.98470 - 0.00020 0.01226 6.98470 - 0.00803 0.14175 6.15336 - 0.03988 0.41251 5.32203 - 0.11269 0.82453 4.49067 - 0.24341 1.37781 3.65929 - 0.44901 2.07236 2.82786 - 0.44901 2.07236 2.82786 - 0.68977 2.75906 2.13496 - 1.00409 3.54386 1.44197 - 1.40181 4.42676 0.74884 - 1.89272 5.40776 0.05553 - 2.48663 6.48686 -0.63802 - 2.48663 6.48686 -0.63802 - 3.19336 7.66406 -1.33187 - 4.02271 8.93936 -2.02612 - 4.98450 10.31276 -2.72089 - 6.08854 11.78426 -3.41630 - 7.34462 13.35386 -4.11248 - 7.34462 13.35386 -4.11248 - 8.55395 14.78218 -4.71191 - 9.88924 16.28305 -5.31214 - 11.35672 17.85648 -5.91330 - 12.96263 19.50246 -6.51553 - 14.71322 21.22099 -7.11896 - 14.71322 -136.78293 -7.11896 - -0.74502 -134.39303 -7.92048 - -15.92355 -131.87565 -8.72186 - -30.80782 -129.23078 -9.52069 - -45.38332 -126.45841 -10.31451 - -59.63550 -123.55856 -11.10090 - -59.63485 -123.56943 -11.10090 - -69.43638 -121.45832 -11.64704 - -79.06650 -119.28442 -12.18757 - -88.52021 -117.04774 -12.72174 - -97.79247 -114.74828 -13.24878 - -106.87826 -112.38603 -13.76794 - -106.87848 -112.38774 -13.76794 - -109.12024 -111.78736 -13.89641 - -111.34995 -111.18307 -14.02433 - -113.56753 -110.57485 -14.15169 - -115.77292 -109.96270 -14.27848 - -117.96602 -109.34664 -14.40468 - -117.96631 -109.34338 -14.40468 - -128.74451 -106.20418 -15.02653 - -139.20388 -102.96688 -15.63216 - -149.33461 -99.63148 -16.22029 - -159.12690 -96.19798 -16.78965 - -168.57094 -92.66638 -17.33896 - -168.57083 -92.66549 -17.33896 - -177.65671 -89.03579 -17.86697 - -186.37471 -85.30799 -18.37261 - -194.71504 -81.48209 -18.85480 - -202.66786 -77.55809 -19.31251 - -210.22338 -73.53599 -19.74469 - -210.22338 -73.53584 -19.74469 - -217.37177 -69.41564 -20.15032 - -224.10324 -65.19734 -20.52856 - -230.40797 -60.88094 -20.87862 - -236.27616 -56.46644 -21.19970 - -241.69799 -51.95384 -21.49101 - -241.69801 -51.95356 -21.49101 - -248.51998 -45.47111 -21.84735 - -254.42095 -38.79639 -22.14231 - -259.37399 -31.92939 -22.37467 - -263.35220 -24.87011 -22.54320 - -266.32865 -17.61856 -22.64668 - -266.32869 -17.61778 -22.64668 - -268.17192 -10.71203 -22.68365 - -269.10663 -3.64049 -22.66350 - -269.11127 3.59684 -22.58624 - -268.16427 10.99995 -22.45187 - -266.24410 18.56886 -22.26039 - -266.24402 18.56924 -22.26039 - -263.32906 26.30394 -22.01197 - -259.39782 34.20442 -21.70746 - -254.42873 42.27069 -21.34794 - -248.40025 50.50275 -20.93444 - -241.29083 58.90060 -20.46805 - -241.29083 58.90060 -20.46805 - -231.75070 68.76308 -19.86786 - -220.71974 78.84483 -19.20238 - -208.16517 89.14582 -18.47515 - -194.05422 99.66607 -17.68971 - -178.35409 110.40558 -16.84960 - -178.35409 110.40558 -16.84960 - -161.03202 121.36435 -15.95870 - -142.05523 132.54237 -15.02241 - -121.39093 143.93964 -14.04657 - -99.00635 155.55618 -13.03699 - -74.86870 167.39197 -11.99949 - -74.86935 167.39515 -11.99949 - -48.94539 179.45019 -10.94029 - -21.20281 191.72449 -9.86726 - 8.39116 204.21805 -8.78874 - 39.86931 216.93086 -7.71307 - 73.26441 229.86293 -6.64858 - 73.26540 229.87080 -6.64858 - 108.61141 243.02212 -5.60403 - 145.93994 256.39270 -4.59002 - 185.28376 269.98254 -3.61761 - 226.67564 283.79163 -2.69790 - 270.14838 297.81998 -1.84197 - 270.14846 297.82013 -1.84197 - 270.74429 298.00929 -1.83101 - 271.34050 298.19849 -1.82005 - 271.93709 298.38772 -1.80911 - 272.53405 298.57700 -1.79819 - 273.13139 298.76631 -1.78727 - 273.13139 298.76631 -1.78727 - 273.72912 298.95566 -1.77637 - 274.32722 299.14505 -1.76549 - 274.92570 299.33448 -1.75462 - 275.52455 299.52396 -1.74376 - 276.12379 299.71346 -1.73291 - 276.12379 299.71345 -1.73291 - 286.95778 301.71329 -1.54013 - 297.83062 302.33586 -1.35204 - 308.72611 302.97114 -1.16880 - 319.64470 303.61912 -0.99061 - 330.58684 304.27980 -0.81764 - 330.58573 -153.80306 -0.81764 - 312.26559 -151.50908 -0.27935 - 294.22919 -149.07397 0.20230 - 276.49348 -146.49774 0.63053 - 259.07538 -143.78039 1.00854 - 241.99183 -140.92190 1.33956 - 241.99223 -140.91955 1.33956 - 235.03906 -137.19753 1.46437 - 228.27338 -133.42110 1.58178 - 221.69780 -129.59407 1.69200 - 215.31478 -125.71879 1.79522 - 209.12672 -121.79525 1.89167 - 209.12674 -121.79485 1.89167 - 207.91045 -121.46175 1.91016 - 206.69750 -121.12895 1.92840 - 205.48787 -120.79647 1.94637 - 204.28157 -120.46432 1.96408 - 203.07859 -120.13245 1.98153 - 203.07917 -120.15050 1.98153 - 192.26645 -117.41305 2.12882 - 181.71944 -114.36430 2.25606 - 171.45653 -111.17122 2.36431 - 161.49026 -107.84673 2.45465 - 151.83192 -104.40696 2.52814 - 151.83172 -104.39906 2.52814 - 142.49245 -100.84380 2.58584 - 133.48096 -97.19562 2.62867 - 124.80547 -93.46087 2.65754 - 116.47342 -89.64916 2.67337 - 108.49127 -85.77346 2.67704 - 108.49140 -85.77118 2.67704 - 100.07033 -82.66403 2.66811 - 91.95495 -79.66623 2.64657 - 84.13251 -76.80563 2.61341 - 76.58818 -74.11441 2.56962 - 69.30108 -71.67964 2.51619 - 69.29758 -71.65323 2.51619 - 59.66252 -66.00782 2.42706 - 50.81030 -60.47146 2.32322 - 42.72475 -55.05856 2.20666 - 35.38735 -49.78624 2.07939 - 28.77712 -44.67422 1.94339 - 28.77864 -44.66297 1.94339 - 22.87520 -39.70305 1.80050 - 17.65325 -34.92611 1.65198 - 13.08740 -30.33111 1.49895 - 9.15179 -25.92352 1.34254 - 5.81963 -21.71271 1.18389 - 5.81782 -21.68741 1.18389 - 3.06599 -17.65877 1.02398 - 0.86403 -13.83026 0.86332 - -0.81559 -10.19674 0.70233 - -2.00432 -6.84732 0.54143 - -2.75267 -3.92298 0.38104 - -2.75075 -3.90989 0.38104 - -3.10983 -1.33937 0.22144 - -3.15353 0.63645 0.06260 - -2.95357 2.14189 -0.09550 - -2.57564 3.17933 -0.25293 - -2.08510 3.75093 -0.40970 - -2.08514 3.75027 -0.40970 - -1.51648 4.18661 -0.56595 - -0.94981 3.83174 -0.72183 - -0.46513 3.01532 -0.87745 - -0.12703 1.73800 -1.03293 - 0.00001 0.00006 -1.18838 + 0.00000 0.00000 13.21905 + 0.00000 0.00000 12.63020 + 0.00000 0.00000 12.04135 + 0.00000 0.00000 11.45251 + 0.00000 0.00000 10.86366 + 0.00000 0.00000 10.27481 + 0.00000 0.00000 10.27481 + 0.00000 0.00000 9.68596 + 0.00000 0.00000 9.09712 + 0.00000 0.00000 8.50827 + 0.00000 0.00000 7.91942 + 0.00000 0.00000 7.33058 + 0.00000 0.00000 7.33058 + 0.00000 0.00049 7.26130 + 0.00001 0.00196 7.19202 + 0.00004 0.00441 7.12275 + 0.00010 0.00785 7.05347 + 0.00020 0.01226 6.98420 + 0.00020 0.01226 6.98420 + 0.00803 0.14175 6.15289 + 0.03988 0.41251 5.32158 + 0.11269 0.82453 4.49026 + 0.24341 1.37781 3.65891 + 0.44901 2.07236 2.82751 + 0.44901 2.07236 2.82751 + 0.68977 2.75906 2.13463 + 1.00409 3.54386 1.44167 + 1.40181 4.42676 0.74856 + 1.89272 5.40776 0.05528 + 2.48663 6.48686 -0.63825 + 2.48663 6.48686 -0.63825 + 3.19336 7.66406 -1.33207 + 4.02271 8.93936 -2.02629 + 4.98450 10.31276 -2.72104 + 6.08854 11.78426 -3.41643 + 7.34462 13.35386 -4.11258 + 7.34462 13.35386 -4.11258 + 8.55395 14.78218 -4.71199 + 9.88924 16.28305 -5.31219 + 11.35672 17.85648 -5.91333 + 12.96263 19.50246 -6.51554 + 14.71322 21.22099 -7.11895 + 14.71322 -136.78214 -7.11895 + -0.74493 -134.39224 -7.92044 + -15.92337 -131.87486 -8.72179 + -30.80755 -129.22999 -9.52059 + -45.38296 -126.45762 -10.31439 + -59.63505 -123.55776 -11.10075 + -59.63440 -123.56865 -11.10075 + -69.43586 -121.45754 -11.64686 + -79.06593 -119.28364 -12.18737 + -88.51957 -117.04696 -12.72152 + -97.79177 -114.74750 -13.24854 + -106.87750 -112.38525 -13.76768 + -106.87772 -112.38696 -13.76768 + -109.11946 -111.78659 -13.89615 + -111.34915 -111.18229 -14.02406 + -113.56672 -110.57407 -14.15142 + -115.77209 -109.96193 -14.27820 + -117.96518 -109.34586 -14.40440 + -117.96547 -109.34260 -14.40440 + -128.74359 -106.20340 -15.02622 + -139.20288 -102.96610 -15.63183 + -149.33354 -99.63070 -16.21994 + -159.12575 -96.19720 -16.78927 + -168.56971 -92.66560 -17.33855 + -168.56960 -92.66471 -17.33855 + -177.65540 -89.03501 -17.86654 + -186.37333 -85.30721 -18.37215 + -194.71357 -81.48131 -18.85432 + -202.66632 -77.55731 -19.31201 + -210.22176 -73.53521 -19.74416 + -210.22176 -73.53506 -19.74416 + -217.37008 -69.41486 -20.14977 + -224.10146 -65.19656 -20.52799 + -230.40612 -60.88016 -20.87802 + -236.27422 -56.46566 -21.19908 + -241.69598 -51.95306 -21.49037 + -241.69599 -51.95278 -21.49037 + -248.51786 -45.47033 -21.84668 + -254.41871 -38.79560 -22.14161 + -259.37165 -31.92860 -22.37394 + -263.34975 -24.86933 -22.54244 + -266.32609 -17.61778 -22.64590 + -266.32613 -17.61700 -22.64590 + -268.16926 -10.71125 -22.68283 + -269.10387 -3.63971 -22.66266 + -269.10840 3.59762 -22.58537 + -268.16131 11.00074 -22.45098 + -266.24103 18.56964 -22.25948 + -266.24096 18.57003 -22.25948 + -263.32589 26.30472 -22.01104 + -259.39455 34.20520 -21.70651 + -254.42536 42.27148 -21.34696 + -248.39678 50.50354 -20.93344 + -241.28725 58.90139 -20.46703 + -241.28725 58.90138 -20.46703 + -231.74701 68.76387 -19.86682 + -220.71593 78.84561 -19.20132 + -208.16124 89.14661 -18.47407 + -194.05017 99.66686 -17.68861 + -178.34993 110.40637 -16.84848 + -178.34993 110.40637 -16.84848 + -161.02774 121.36513 -15.95756 + -142.05083 132.54315 -15.02126 + -121.38641 143.94043 -14.04540 + -99.00171 155.55696 -13.03581 + -74.86395 167.39275 -11.99830 + -74.86460 167.39593 -11.99830 + -48.94052 179.45097 -10.93909 + -21.19783 191.72527 -9.86605 + 8.39626 204.21883 -8.78752 + 39.87453 216.93164 -7.71184 + 73.26975 229.86371 -6.64735 + 73.27073 229.87155 -6.64735 + 108.61686 243.02288 -5.60280 + 145.94550 256.39346 -4.58878 + 185.28943 269.98329 -3.61638 + 226.68143 283.79239 -2.69667 + 270.15428 297.82073 -1.84074 + 270.15436 297.82087 -1.84074 + 270.75019 298.01003 -1.82978 + 271.34640 298.19922 -1.81882 + 271.94299 298.38846 -1.80788 + 272.53996 298.57773 -1.79696 + 273.13730 298.76705 -1.78604 + 273.13730 298.76705 -1.78604 + 273.73502 298.95640 -1.77514 + 274.33313 299.14579 -1.76426 + 274.93161 299.33522 -1.75339 + 275.53047 299.52469 -1.74253 + 276.12971 299.71420 -1.73169 + 276.12971 299.71419 -1.73169 + 286.96372 301.71402 -1.53891 + 297.83659 302.33660 -1.35081 + 308.73210 302.97188 -1.16758 + 319.65072 303.61986 -0.98939 + 330.59289 304.28054 -0.81642 + 330.59177 -153.86232 -0.81642 + 312.26452 -151.56835 -0.27813 + 294.22101 -149.13323 0.20351 + 276.47819 -146.55700 0.63173 + 259.05298 -143.83965 1.00975 + 241.96232 -140.98116 1.34077 + 241.96272 -140.97880 1.34077 + 235.00656 -137.25764 1.46559 + 228.23788 -133.48111 1.58300 + 221.65929 -129.65398 1.69322 + 215.27328 -125.77859 1.79645 + 209.08224 -121.85492 1.89291 + 209.08226 -121.85452 1.89291 + 207.86538 -121.52142 1.91140 + 206.65183 -121.18862 1.92963 + 205.44160 -120.85614 1.94761 + 204.23470 -120.52398 1.96532 + 203.03112 -120.19212 1.98278 + 203.03171 -120.21020 1.98278 + 192.21361 -117.47257 2.13009 + 181.66105 -114.42672 2.25735 + 171.39234 -111.23635 2.36563 + 161.42003 -107.91439 2.45601 + 151.75542 -104.47691 2.52955 + 151.75537 -104.47321 2.52955 + 142.40927 -100.92003 2.58730 + 133.39076 -97.27367 2.63019 + 124.70809 -93.54045 2.65914 + 116.36874 -89.73001 2.67504 + 108.37918 -85.85526 2.67881 + 108.37930 -85.85310 2.67881 + 99.95562 -82.66205 2.66999 + 91.84046 -79.66383 2.64858 + 84.01828 -76.80278 2.61557 + 76.47425 -74.11120 2.57194 + 69.18749 -71.67616 2.51868 + 69.18396 -71.64948 2.51868 + 59.54969 -66.00020 2.42982 + 50.69883 -60.45959 2.32627 + 42.61526 -55.04203 2.21004 + 35.28052 -49.76459 2.08311 + 28.67372 -44.64697 1.94749 + 28.67525 -44.63566 1.94749 + 22.77582 -39.67216 1.80500 + 17.55865 -34.88854 1.65690 + 12.99856 -30.28629 1.50432 + 9.06977 -25.87081 1.34838 + 5.74558 -21.65149 1.19022 + 5.74378 -21.62624 1.19022 + 3.00114 -17.58842 1.03082 + 0.80971 -13.75005 0.87069 + -0.85794 -10.10594 0.71023 + -2.03291 -6.73941 0.54988 + -2.76449 -3.79105 0.39005 + -2.76258 -3.77804 0.39005 + -3.11280 -1.30382 0.23101 + -3.14966 0.69894 0.07273 + -2.93898 2.23278 -0.08482 + -2.54625 3.30005 -0.24169 + -2.03664 3.90290 -0.39791 + -2.03667 3.90225 -0.39791 + -1.47515 4.04255 -0.55362 + -0.92628 3.72169 -0.70898 + -0.45455 2.94063 -0.86408 + -0.12435 1.69999 -1.01905 + 0.00001 0.00006 -1.17398 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -36780,7 +36916,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -36792,7 +36928,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -36977,53 +37113,53 @@ Status character 0.00000 105.26130 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 11.53663 101.25211 24.97488 4.06752 110 46 1 - 12.34370 102.14482 26.01680 4.43089 110 47 1 - 13.08275 103.03753 27.05851 4.79425 110 48 1 - 13.75770 103.93024 28.10001 5.15762 110 49 1 - 14.28164 104.82295 28.88100 5.43015 110 49 1 - 14.46333 104.82295 29.40161 5.61184 110 49 1 - 14.93094 105.71566 30.18242 5.88436 110 49 1 - 15.43647 106.60837 31.22336 6.24773 110 49 1 - 15.89238 107.50108 32.26413 6.61110 110 49 1 - 16.30198 108.39379 33.30474 6.97447 110 49 1 - 16.57771 109.28650 34.08510 7.24700 110 49 1 - 11.55731 109.28650 22.39924 8.32270 220 52 2 - 13.43884 107.26750 26.18365 10.18268 220 51 2 - 15.93928 105.24850 31.21648 12.66266 220 51 2 - 18.43026 103.22950 36.23585 15.14263 220 51 2 - 20.91315 101.21050 41.24435 17.62261 220 51 2 - 22.76565 99.19150 44.99531 19.48259 220 51 2 - 40.03194 99.19150 152.00137 13.90162 110 26 1 - 39.61449 100.56490 141.39199 14.46919 110 28 1 - 39.23248 101.93830 143.33806 15.22595 110 27 1 - 38.71813 103.31170 148.44319 15.98271 110 26 1 - 38.09284 104.68510 154.44929 16.73947 110 25 1 - 37.18885 106.05850 159.20703 17.30704 110 23 1 - 37.60356 106.05850 162.45605 17.72174 110 23 1 - 36.59329 107.43190 167.40248 18.25299 110 22 1 - 35.75186 108.80530 174.07947 19.00974 110 21 1 - 34.86569 110.17870 180.82097 19.76650 110 19 1 - 33.94672 111.55210 187.60408 20.52326 110 18 1 - 32.81769 112.92550 192.70971 21.09083 110 17 1 - 33.19607 112.92550 196.12085 21.46921 110 17 1 - 32.05649 114.29890 201.24614 22.03678 110 16 1 - 31.10071 115.67230 208.09120 22.79354 110 15 1 - 30.14372 117.04570 214.94675 23.55030 110 14 1 - 29.18973 118.41910 221.81023 24.30706 110 13 1 - 28.05374 119.79250 226.96177 24.87463 110 12 1 - 30.17204 119.79250 230.39786 26.99293 110 13 1 - 27.30603 121.16590 235.55418 25.82058 110 12 1 - 26.37852 122.53930 242.43233 26.57734 110 0 1 - 25.45976 123.91270 249.31352 27.33410 110 0 1 - 24.54910 125.28610 256.19718 28.09086 110 0 1 - 23.45671 126.65950 261.36123 28.65843 110 0 1 - 23.83509 126.65950 264.80452 29.03681 110 0 1 - 22.74870 128.03290 269.97025 29.60438 110 0 1 - 21.85566 129.40630 276.85902 30.36113 110 0 1 - 20.96550 130.77970 283.74896 31.11789 110 0 1 - 20.07699 132.15310 290.63991 31.87465 110 0 1 - 18.99967 133.52650 295.80866 32.44222 110 0 1 + 11.54149 101.25211 24.97488 4.06752 110 46 1 + 12.34864 102.14482 26.01680 4.43089 110 47 1 + 13.08779 103.03753 27.05851 4.79425 110 48 1 + 13.76286 103.93024 28.10001 5.15762 110 49 1 + 14.28695 104.82295 28.88100 5.43015 110 49 1 + 14.46863 104.82295 29.40161 5.61184 110 49 1 + 14.93641 105.71566 30.18242 5.88436 110 49 1 + 15.44214 106.60837 31.22336 6.24773 110 49 1 + 15.89829 107.50108 32.26413 6.61110 110 49 1 + 16.30815 108.39379 33.30474 6.97447 110 49 1 + 16.58418 109.28650 34.08510 7.24700 110 49 1 + 11.55795 109.28650 22.39924 8.32270 220 52 2 + 13.43952 107.26750 26.18365 10.18268 220 51 2 + 15.94001 105.24850 31.21648 12.66266 220 51 2 + 18.43103 103.22950 36.23585 15.14263 220 51 2 + 20.91398 101.21050 41.24435 17.62261 220 51 2 + 22.76653 99.19150 44.99531 19.48259 220 51 2 + 40.05830 99.19150 152.00137 13.90162 110 26 1 + 39.64342 100.56490 141.39199 14.46919 110 28 1 + 39.26425 101.93830 143.33806 15.22595 110 27 1 + 38.75299 103.31170 148.44319 15.98271 110 26 1 + 38.13106 104.68510 154.44929 16.73947 110 25 1 + 37.23066 106.05850 159.20703 17.30704 110 23 1 + 37.60904 106.05850 162.45605 17.68542 110 23 1 + 36.63895 107.43190 167.40248 18.25299 110 22 1 + 35.80159 108.80530 174.07947 19.00974 110 21 1 + 34.91971 110.17870 180.82097 19.76650 110 19 1 + 34.00522 111.55210 187.60408 20.52326 110 18 1 + 32.88086 112.92550 192.70971 21.09083 110 17 1 + 33.25924 112.92550 196.12085 21.46921 110 17 1 + 32.12450 114.29890 201.24614 22.03678 110 16 1 + 31.17369 115.67230 208.09120 22.79354 110 15 1 + 30.22179 117.04570 214.94675 23.55030 110 14 1 + 29.27295 118.41910 221.81023 24.30706 110 13 1 + 28.14216 119.79250 226.96177 24.87463 110 12 1 + 28.52054 119.79250 230.39786 25.25301 110 12 1 + 27.39966 121.16590 235.55418 25.82058 110 12 1 + 26.47735 122.53930 242.43233 26.57734 110 0 1 + 25.56375 123.91270 249.31352 27.33410 110 0 1 + 24.65820 125.28610 256.19718 28.09086 110 0 1 + 23.57084 126.65950 261.36123 28.65843 110 0 1 + 23.94922 126.65950 264.80452 29.03681 110 0 1 + 22.86775 128.03290 269.97025 29.60438 110 0 1 + 21.97954 129.40630 276.85902 30.36113 110 0 1 + 21.09415 130.77970 283.74896 31.11789 110 0 1 + 20.21037 132.15310 290.63991 31.87465 110 0 1 + 19.13778 133.52650 295.80866 32.44222 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37041,9 +37177,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.373 'Hydrobiaklei' - -12.00 8.588 'Basisveen' - -12.50 106.585 'Eerste zandlaag' + -10.00 12.378 'Hydrobiaklei' + -12.00 8.589 'Basisveen' + -12.50 106.733 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -37065,7 +37201,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.25 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -35.41 'Eerste zandlaag' + -12.50 -35.46 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37189,18 +37325,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -37300,7 +37436,7 @@ Lambda passive -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 -11.08000 16.30540 85.66876 4.77001 0.51628 0.29254 5.25401 -11.09000 16.41730 86.10970 4.79456 0.51628 0.29254 5.25401 - -11.09000 16.41730 53.16020 3.08859 0.74302 0.18674 3.21405 + -11.09000 16.41730 53.16020 3.08859 0.74083 0.18674 3.21405 -11.18100 16.90779 53.28529 3.30861 0.74083 0.19569 3.15152 -11.27200 17.39828 53.67411 3.58108 0.74083 0.20583 3.08502 -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 @@ -37312,7 +37448,7 @@ Lambda passive -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 -11.90900 20.83171 59.04829 5.38526 0.74083 0.25851 2.83454 -12.00000 21.32220 59.73052 5.57688 0.74083 0.26307 2.81753 - -12.00000 21.32220 40.77271 9.92754 0.85866 0.48146 1.97739 + -12.00000 21.32220 40.77271 9.92754 0.77767 0.48146 1.97739 -12.10000 18.51120 37.12819 8.58629 0.77767 0.46384 2.00572 -12.20000 15.70020 32.30543 6.79795 0.77767 0.43299 2.05764 -12.30000 12.88920 27.51836 5.00960 0.77767 0.38867 2.13499 @@ -37342,7 +37478,7 @@ Lambda passive -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 -15.16000 34.37260 166.50031 10.47301 0.53046 0.30469 4.84398 -15.30000 35.79920 171.65390 10.80008 0.53046 0.30472 4.84316 - -15.30000 35.79920 175.09065 11.01811 0.40060 0.30474 4.84266 + -15.30000 35.79920 175.09065 11.01811 0.53046 0.30474 4.84266 -15.44000 37.22580 180.24715 11.34512 0.53046 0.30477 4.84200 -15.58000 38.65240 187.12459 11.78110 0.53046 0.30480 4.84122 -15.72000 40.07900 194.00428 12.21703 0.53046 0.30482 4.84055 @@ -37505,39 +37641,39 @@ Status character 78.00210 0.00000 78.00210 78.00210 402 100 P 78.00300 0.00000 78.00300 78.00300 402 100 P 78.00420 0.00000 78.00420 78.00420 1 100 A - 78.00540 0.00000 78.00540 78.00540 1 0 A + 78.00540 0.00000 78.00540 78.00540 1 100 A 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00750 0.00000 78.00750 78.00750 1 100 A - 28.54646 0.00000 411.10170 40.39621 110 0 1 - 27.89630 0.00000 414.84519 40.76406 110 0 1 - 27.35081 0.00000 419.83650 41.25452 110 0 1 - 26.85314 0.00000 424.82781 41.74498 110 0 1 - 26.40211 0.00000 429.81912 42.23545 110 0 1 - 25.90336 0.00000 433.56260 42.60329 110 0 1 + 28.58240 0.00000 411.10170 40.39621 110 0 1 + 27.89453 0.00000 414.84519 40.76406 110 0 1 + 27.34885 0.00000 419.83650 41.25452 110 0 1 + 26.85097 0.00000 424.82781 41.74498 110 0 1 + 26.39974 0.00000 429.81912 42.23545 110 0 1 + 25.90078 0.00000 433.56260 42.60329 110 0 1 4.64725 66.90000 83.46404 8.20145 1 0 A 4.67181 66.99810 83.90499 8.24478 1 0 A 4.70454 67.09620 84.49291 8.30255 1 0 A 4.73728 67.19430 85.08083 8.36032 1 0 A 4.77001 67.29240 85.66876 8.41810 1 0 A 4.79456 67.39050 86.10970 8.46142 1 0 A - 5.52973 67.39050 53.16020 12.28947 110 0 1 - 11.83227 68.28321 53.28529 12.52579 110 0 1 - 10.98033 69.17592 53.67411 12.88916 110 0 1 - 10.20629 70.06863 54.23393 13.25253 110 0 1 - 9.50629 70.96134 54.90361 13.61590 110 0 1 - 8.87137 71.85405 55.45470 13.88842 110 0 1 - 8.88156 71.85405 55.84214 14.07011 110 0 1 - 8.31300 72.74676 56.44708 14.34263 110 0 1 - 7.81248 73.63947 57.28575 14.70600 110 0 1 - 7.37157 74.53218 58.15503 15.06937 110 0 1 - 6.98695 75.42489 59.04829 15.43274 110 0 1 - 6.65023 76.31760 59.73052 15.70527 110 0 1 - 13.03966 76.31760 40.77271 17.70502 110 0 1 - 9.75133 80.29860 37.12819 14.39553 110 0 1 - 7.60870 84.27960 32.30543 12.20951 110 0 1 - 5.48652 88.26060 27.51836 10.02349 110 0 1 - 3.97031 92.24160 22.75954 7.83747 110 0 1 - 2.95102 96.22260 19.20478 6.19796 110 0 1 + 5.49275 67.39050 53.16020 12.25326 110 0 1 + 11.86998 68.28321 53.28529 12.52579 110 0 1 + 11.01618 69.17592 53.67411 12.88916 110 0 1 + 10.24015 70.06863 54.23393 13.25253 110 0 1 + 9.53800 70.96134 54.90361 13.61590 110 0 1 + 8.90075 71.85405 55.45470 13.88842 110 0 1 + 8.91094 71.85405 55.84214 14.07011 110 0 1 + 8.33988 72.74676 56.44708 14.34263 110 0 1 + 7.83668 73.63947 57.28575 14.70600 110 0 1 + 7.39292 74.53218 58.15503 15.06937 110 0 1 + 7.00530 75.42489 59.04829 15.43274 110 0 1 + 6.66543 76.31760 59.73052 15.70527 110 0 1 + 11.36645 76.31760 40.77271 16.03504 110 0 1 + 9.74791 80.29860 37.12819 14.39553 110 0 1 + 7.60507 84.27960 32.30543 12.20951 110 0 1 + 5.48266 88.26060 27.51836 10.02349 110 0 1 + 3.96858 92.24160 22.75954 7.83747 110 0 1 + 2.94905 96.22260 19.20478 6.19796 110 0 1 2.30545 96.22260 38.54151 4.04417 1 0 A 2.63017 97.59600 43.70980 4.61174 1 0 A 3.06364 98.96940 50.55187 5.36850 1 0 A @@ -37554,20 +37690,20 @@ Status character 6.98284 111.33000 111.69332 12.17934 1 0 A 7.41918 112.70340 118.52150 12.93610 1 0 A 7.85552 114.07680 125.35771 13.69286 1 0 A - 9.56694 115.45020 132.20113 14.44961 110 0 1 - 11.83808 116.82360 137.33776 15.01718 110 0 1 - 12.21646 116.82360 140.76415 15.39556 110 0 1 - 14.47769 118.19700 145.90643 15.96313 110 0 1 - 16.91871 119.57040 152.76688 16.71989 110 11 1 - 19.35099 120.94380 159.63169 17.47665 110 12 1 - 21.77517 122.31720 166.50031 18.23341 110 13 1 - 24.00270 123.69060 171.65390 18.80098 110 14 1 - 19.68563 123.69060 175.09065 14.48391 110 11 1 - 26.60260 125.06400 180.24715 19.74693 110 15 1 - 29.00917 126.43740 187.12459 20.50369 110 16 1 - 31.41284 127.81080 194.00428 21.26045 110 16 1 - 33.81487 129.18420 200.88593 22.01721 110 17 1 - 36.02733 130.55760 206.04826 22.58478 110 17 1 + 9.48372 115.45020 132.20113 14.44961 110 0 1 + 11.74965 116.82360 137.33776 15.01718 110 0 1 + 12.12803 116.82360 140.76415 15.39556 110 0 1 + 14.38405 118.19700 145.90643 15.96313 110 0 1 + 16.81988 119.57040 152.76688 16.71989 110 11 1 + 19.24700 120.94380 159.63169 17.47665 110 12 1 + 21.66607 122.31720 166.50031 18.23341 110 13 1 + 23.88857 123.69060 171.65390 18.80098 110 14 1 + 24.26695 123.69060 175.09065 19.17936 110 14 1 + 26.48355 125.06400 180.24715 19.74693 110 15 1 + 28.88529 126.43740 187.12459 20.50369 110 15 1 + 31.28419 127.81080 194.00428 21.26045 110 16 1 + 33.68149 129.18420 200.88593 22.01721 110 17 1 + 35.88922 130.55760 206.04826 22.58478 110 17 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37581,10 +37717,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 7.022 'Grind' - -11.09 8.006 'Hydrobiaklei' - -12.00 3.481 'Basisveen' - -12.50 45.372 'Eerste zandlaag' + -10.79 7.023 'Grind' + -11.09 8.028 'Hydrobiaklei' + -12.00 3.396 'Basisveen' + -12.50 45.524 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -37601,9 +37737,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 2.46 'Grind' - -11.09 1.45 'Hydrobiaklei' + -11.09 1.46 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 15.07 'Eerste zandlaag' + -12.50 15.12 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37843,8 +37979,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 658.36818 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 803.06242 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 658.35605 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 803.19460 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -37889,9 +38025,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 26.07 : Percentage mobilized resistance left - 27.05 : Percentage mobilized resistance right + 27.07 : Percentage mobilized resistance right 172.71 : Effective left - 142.40 : Effective right + 142.52 : Effective right 508.74 : Water pressure left 540.51 : Water pressure right 662.49 : Max effective resistance left @@ -37900,8 +38036,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 33.84 : Vertical force left - 22.76 : Vertical force right + 33.85 : Vertical force left + 22.80 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -37910,17 +38046,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --33.84 : Active force -22.76 : Passive force --33.84 : Plugged active force -22.76 : Plugged passive force +-33.85 : Active force +22.80 : Passive force +-33.85 : Plugged active force +22.80 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --11.08 : Resulting Vertical Force Unplugged --11.08 : Resulting Vertical Force Plugged +-11.04 : Resulting Vertical Force Unplugged +-11.04 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -37933,210 +38069,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -12.44469 - 0.00000 0.00000 -12.33916 - 0.00000 0.00000 -12.23362 - 0.00000 0.00000 -12.12808 - 0.00000 0.00000 -12.02254 - 0.00000 0.00000 -11.91701 - 0.00000 0.00000 -11.91701 - 0.00000 0.00000 -11.81147 - 0.00000 0.00000 -11.70593 - 0.00000 0.00000 -11.60039 - 0.00000 0.00000 -11.49486 - 0.00000 0.00000 -11.38932 - 0.00000 0.00000 -11.38932 - 0.00000 0.00000 -11.24860 - 0.00000 0.00000 -11.10789 - 0.00000 0.00000 -10.96717 - 0.00000 0.00000 -10.82646 - 0.00000 0.00000 -10.68574 - 0.00000 0.00000 -10.68574 - 0.00000 0.00000 -10.56848 - 0.00000 0.00000 -10.45121 - 0.00000 0.00000 -10.33395 - 0.00000 0.00000 -10.21668 - 0.00000 0.00000 -10.09942 - 0.00000 0.00000 -10.09942 - 0.00000 0.00000 -9.98216 - 0.00000 0.00000 -9.86489 - 0.00000 0.00000 -9.74763 - 0.00000 0.00000 -9.63037 - 0.00000 0.00000 -9.51310 - 0.00000 0.00000 -9.51310 - 0.00000 0.00000 -9.41226 - 0.00000 0.00000 -9.31141 - 0.00000 0.00000 -9.21056 - 0.00000 0.00000 -9.10972 - 0.00000 0.00000 -9.00887 - 0.00000 1.48182 -9.00887 - 0.16893 1.48182 -8.87519 - 0.33786 1.48182 -8.74155 - 0.50678 1.48182 -8.60795 - 0.67571 1.48182 -8.47444 - 0.84464 1.48182 -8.34104 - 0.84529 1.47095 -8.34104 - 0.96296 1.47095 -8.24751 - 1.08064 1.47095 -8.15406 - 1.19832 1.47095 -8.06069 - 1.31599 1.47095 -7.96742 - 1.43367 1.47095 -7.87425 - 1.43345 1.46924 -7.87425 - 1.46283 1.46924 -7.85098 - 1.49222 1.46924 -7.82771 - 1.52160 1.46924 -7.80445 - 1.55099 1.46924 -7.78120 - 1.58037 1.46924 -7.75796 - 1.58008 1.47250 -7.75796 - 1.72733 1.47250 -7.64186 - 1.87458 1.47250 -7.52599 - 2.02183 1.47250 -7.41035 - 2.16908 1.47250 -7.29496 - 2.31633 1.47250 -7.17985 - 2.31644 1.47339 -7.17985 - 2.46378 1.47339 -7.06503 - 2.61112 1.47339 -6.95052 - 2.75846 1.47339 -6.83634 - 2.90580 1.47339 -6.72251 - 3.05313 1.47339 -6.60904 - 3.05313 1.47354 -6.60904 - 3.20049 1.47354 -6.49596 - 3.34784 1.47354 -6.38328 - 3.49520 1.47354 -6.27102 - 3.64255 1.47354 -6.15920 - 3.78991 1.47354 -6.04784 - 3.78989 1.47382 -6.04784 - 3.99622 1.47382 -5.89275 - 4.20256 1.47382 -5.73864 - 4.40889 1.47382 -5.58557 - 4.61523 1.47382 -5.43359 - 4.82156 1.47382 -5.28274 - 4.82152 1.47460 -5.28274 - 5.01322 1.47460 -5.14374 - 5.20492 1.47460 -5.00580 - 5.39662 1.47460 -4.86897 - 5.58832 1.47460 -4.73329 - 5.78001 1.47460 -4.59880 - 5.78008 1.47498 -4.59880 - 5.97183 1.47498 -4.46555 - 6.16358 1.47498 -4.33356 - 6.35533 1.47498 -4.20288 - 6.54708 1.47498 -4.07356 - 6.73882 1.47498 -3.94563 - 6.73882 1.47498 -3.94563 - 6.95933 1.47498 -3.80029 - 7.17984 1.47498 -3.65691 - 7.40035 1.47498 -3.51555 - 7.62086 1.47498 -3.37627 - 7.84137 1.47498 -3.23914 - 7.84137 1.47498 -3.23914 - 8.06188 1.47498 -3.10422 - 8.28239 1.47498 -2.97156 - 8.50290 1.47498 -2.84124 - 8.72341 1.47498 -2.71331 - 8.94392 1.47498 -2.58784 - 8.94327 1.47816 -2.58784 - 9.16426 1.47816 -2.46489 - 9.38524 1.47816 -2.34452 - 9.60623 1.47816 -2.22679 - 9.82721 1.47816 -2.11176 - 10.04820 1.47816 -1.99950 - 10.04918 1.48603 -1.99950 - 10.27134 1.48603 -1.89007 - 10.49351 1.48603 -1.78354 - 10.71567 1.48603 -1.67995 - 10.93783 1.48603 -1.57939 - 11.15999 1.48603 -1.48190 - 11.16008 1.48619 -1.48190 - 11.16310 1.56497 -1.48062 - 11.16639 1.72097 -1.47934 - 11.16998 1.87697 -1.47805 - 11.17389 2.03297 -1.47677 - 11.17812 2.18897 -1.47549 - 11.17812 2.18897 -1.47549 - 11.18265 2.34497 -1.47421 - 11.18750 2.50097 -1.47293 - 11.19265 2.65697 -1.47165 - 11.19812 2.81297 -1.47038 - 11.20391 2.96897 -1.46910 - 11.20391 2.96896 -1.46910 - 11.34415 4.35893 -1.44619 - 11.50107 4.35893 -1.42347 - 11.65799 4.35894 -1.40094 - 11.81491 4.35895 -1.37860 - 11.97184 4.35896 -1.35645 - 11.97097 1.40490 -1.35645 - 12.12551 1.40493 -1.28998 - 12.28005 1.40495 -1.22536 - 12.43460 1.40497 -1.16262 - 12.58915 1.40499 -1.10177 - 12.74370 1.40501 -1.04284 - 12.74403 1.40672 -1.04284 - 12.75809 1.40660 -1.03757 - 12.77216 1.40660 -1.03233 - 12.78622 1.40660 -1.02710 - 12.80029 1.40660 -1.02189 - 12.81436 1.40673 -1.01669 - 12.81441 1.40555 -1.01669 - 12.87941 1.18474 -0.99095 - 12.93192 0.90637 -0.96561 - 12.96915 0.57440 -0.94068 - 12.98855 0.19394 -0.91616 - 12.98784 -0.22877 -0.89205 - 12.98779 -0.22989 -0.89205 - 12.98367 -0.59604 -0.88727 - 12.97586 -0.96528 -0.88252 - 12.96435 -1.33698 -0.87778 - 12.94911 -1.71113 -0.87305 - 12.93012 -2.08748 -0.86834 - 12.93070 -2.10347 -0.86834 - 12.70643 -2.79964 -0.82625 - 12.42525 -3.36099 -0.78548 - 12.09812 -3.81045 -0.74600 - 11.73500 -4.15270 -0.70778 - 11.34533 -4.39613 -0.67079 - 11.34511 -4.39104 -0.67079 - 10.93381 -4.60734 -0.63498 - 10.51172 -4.65414 -0.60031 - 10.08950 -4.61057 -0.56674 - 9.67522 -4.48036 -0.53422 - 9.27606 -4.28471 -0.50271 - 9.27609 -4.28310 -0.50271 - 8.87345 -3.75375 -0.46920 - 8.52722 -3.16808 -0.43680 - 8.23973 -2.58550 -0.40548 - 8.00906 -2.03451 -0.37521 - 7.83119 -1.53253 -0.34595 - 7.83156 -1.52879 -0.34595 - 7.67864 -0.56911 -0.30661 - 7.67392 0.42721 -0.26917 - 7.77481 0.92118 -0.23365 - 7.91117 0.97211 -0.20006 - 8.01367 0.30883 -0.16842 - 8.01025 0.28422 -0.16842 - 7.90731 -1.58616 -0.13877 - 7.59543 -2.82860 -0.11106 - 7.12667 -3.82739 -0.08520 - 6.53507 -4.58385 -0.06107 - 5.85417 -5.10528 -0.03856 - 5.85285 -5.08303 -0.03856 - 5.11948 -5.35612 -0.01751 - 4.36385 -5.39955 0.00228 - 3.61844 -5.21073 0.02098 - 2.91557 -4.79223 0.03879 - 2.28661 -4.15962 0.05587 - 2.28793 -4.13869 0.05587 - 1.76472 -3.37241 0.07240 - 1.33675 -2.75415 0.08850 - 0.98998 -2.21247 0.10425 - 0.71368 -1.74754 0.11974 - 0.49709 -1.35933 0.13506 - 0.49710 -1.35935 0.13506 - 0.32949 -1.04774 0.15027 - 0.20016 -0.81257 0.16540 - 0.09981 -0.62370 0.18047 - 0.02814 -0.37879 0.19551 - 0.00000 0.00001 0.21055 + 0.00000 0.00000 -12.44937 + 0.00000 0.00000 -12.34368 + 0.00000 0.00000 -12.23800 + 0.00000 0.00000 -12.13231 + 0.00000 0.00000 -12.02663 + 0.00000 0.00000 -11.92094 + 0.00000 0.00000 -11.92094 + 0.00000 0.00000 -11.81525 + 0.00000 0.00000 -11.70957 + 0.00000 0.00000 -11.60388 + 0.00000 0.00000 -11.49820 + 0.00000 0.00000 -11.39251 + 0.00000 0.00000 -11.39251 + 0.00000 0.00000 -11.25160 + 0.00000 0.00000 -11.11068 + 0.00000 0.00000 -10.96977 + 0.00000 0.00000 -10.82885 + 0.00000 0.00000 -10.68794 + 0.00000 0.00000 -10.68794 + 0.00000 0.00000 -10.57051 + 0.00000 0.00000 -10.45308 + 0.00000 0.00000 -10.33565 + 0.00000 0.00000 -10.21822 + 0.00000 0.00000 -10.10079 + 0.00000 0.00000 -10.10079 + 0.00000 0.00000 -9.98336 + 0.00000 0.00000 -9.86593 + 0.00000 0.00000 -9.74851 + 0.00000 0.00000 -9.63108 + 0.00000 0.00000 -9.51365 + 0.00000 0.00000 -9.51365 + 0.00000 0.00000 -9.41266 + 0.00000 0.00000 -9.31167 + 0.00000 0.00000 -9.21068 + 0.00000 0.00000 -9.10969 + 0.00000 0.00000 -9.00870 + 0.00000 1.49395 -9.00870 + 0.17031 1.49395 -8.87484 + 0.34062 1.49395 -8.74100 + 0.51093 1.49395 -8.60722 + 0.68124 1.49395 -8.47353 + 0.85155 1.49395 -8.33994 + 0.85220 1.48307 -8.33994 + 0.97085 1.48307 -8.24628 + 1.08949 1.48307 -8.15269 + 1.20814 1.48307 -8.05920 + 1.32678 1.48307 -7.96580 + 1.44543 1.48307 -7.87251 + 1.44521 1.48136 -7.87251 + 1.47483 1.48136 -7.84920 + 1.50446 1.48136 -7.82590 + 1.53409 1.48136 -7.80261 + 1.56372 1.48136 -7.77933 + 1.59334 1.48136 -7.75606 + 1.59305 1.48461 -7.75606 + 1.74151 1.48461 -7.63981 + 1.88997 1.48461 -7.52378 + 2.03843 1.48461 -7.40798 + 2.18689 1.48461 -7.29245 + 2.33535 1.48461 -7.17719 + 2.33547 1.48551 -7.17719 + 2.48402 1.48551 -7.06222 + 2.63257 1.48551 -6.94757 + 2.78112 1.48551 -6.83325 + 2.92967 1.48551 -6.71928 + 3.07822 1.48551 -6.60568 + 3.07822 1.48566 -6.60568 + 3.22679 1.48566 -6.49246 + 3.37535 1.48566 -6.37966 + 3.52392 1.48566 -6.26728 + 3.67249 1.48566 -6.15534 + 3.82105 1.48566 -6.04386 + 3.82103 1.48594 -6.04386 + 4.02907 1.48594 -5.88861 + 4.23710 1.48594 -5.73435 + 4.44513 1.48594 -5.58114 + 4.65316 1.48594 -5.42903 + 4.86119 1.48594 -5.27806 + 4.86115 1.48672 -5.27806 + 5.05442 1.48672 -5.13895 + 5.24770 1.48672 -5.00092 + 5.44097 1.48672 -4.86401 + 5.63425 1.48672 -4.72825 + 5.82752 1.48672 -4.59369 + 5.82759 1.48710 -4.59369 + 6.02091 1.48710 -4.46038 + 6.21424 1.48710 -4.32834 + 6.40756 1.48710 -4.19763 + 6.60088 1.48710 -4.06828 + 6.79421 1.48710 -3.94034 + 6.79421 1.48710 -3.94034 + 7.01653 1.48710 -3.79500 + 7.23885 1.48710 -3.65163 + 7.46117 1.48710 -3.51030 + 7.68349 1.48710 -3.37108 + 7.90581 1.48710 -3.23401 + 7.90581 1.48710 -3.23401 + 8.12813 1.48710 -3.09917 + 8.35046 1.48710 -2.96662 + 8.57278 1.48710 -2.83642 + 8.79510 1.48710 -2.70864 + 9.01742 1.48710 -2.58333 + 9.01678 1.49028 -2.58333 + 9.23957 1.49028 -2.46056 + 9.46237 1.49028 -2.34039 + 9.68517 1.49028 -2.22289 + 9.90796 1.49028 -2.10811 + 10.13076 1.49028 -1.99612 + 10.13175 1.49812 -1.99612 + 10.35572 1.49812 -1.88699 + 10.57969 1.49812 -1.78077 + 10.80366 1.49812 -1.67753 + 11.02763 1.49812 -1.57733 + 11.25160 1.49812 -1.48024 + 11.25168 1.49826 -1.48024 + 11.25473 1.57704 -1.47896 + 11.25804 1.73304 -1.47768 + 11.26166 1.88904 -1.47640 + 11.26559 2.04504 -1.47513 + 11.26984 2.20104 -1.47385 + 11.26984 2.20104 -1.47385 + 11.27440 2.35704 -1.47258 + 11.27927 2.51304 -1.47130 + 11.28445 2.66904 -1.47003 + 11.28994 2.82504 -1.46876 + 11.29575 2.98104 -1.46748 + 11.29575 2.98103 -1.46748 + 11.43643 4.37100 -1.44468 + 11.59378 4.37101 -1.42206 + 11.75114 4.37102 -1.39963 + 11.90850 4.37102 -1.37739 + 12.06585 4.37103 -1.35534 + 12.06499 1.28481 -1.35534 + 12.20632 1.28484 -1.28921 + 12.34765 1.28486 -1.22493 + 12.48899 1.28488 -1.16254 + 12.63032 1.28490 -1.10205 + 12.77166 1.28492 -1.04349 + 12.77199 1.28664 -1.04349 + 12.78486 1.28652 -1.03826 + 12.79772 1.28652 -1.03305 + 12.81059 1.28652 -1.02786 + 12.82345 1.28652 -1.02268 + 12.83632 1.28665 -1.01751 + 12.83637 1.28547 -1.01751 + 12.89532 1.06277 -0.99194 + 12.94168 0.78238 -0.96677 + 12.97266 0.44823 -0.94201 + 12.98570 0.06545 -0.91766 + 12.97850 -0.35972 -0.89372 + 12.97845 -0.36084 -0.89372 + 12.97301 -0.72798 -0.88898 + 12.96389 -1.09736 -0.88426 + 12.95105 -1.46920 -0.87955 + 12.93449 -1.84350 -0.87486 + 12.91418 -2.21999 -0.87019 + 12.91475 -2.23600 -0.87019 + 12.67833 -2.93494 -0.82840 + 12.38462 -3.50108 -0.78794 + 12.04453 -3.95533 -0.74876 + 11.66801 -4.30234 -0.71083 + 11.26450 -4.55051 -0.67413 + 11.26444 -4.54962 -0.67413 + 10.84329 -4.69152 -0.63860 + 10.41333 -4.74295 -0.60420 + 9.98282 -4.70391 -0.57089 + 9.55985 -4.57813 -0.53862 + 9.15161 -4.38614 -0.50735 + 9.15162 -4.38466 -0.50735 + 8.73877 -3.85634 -0.47408 + 8.38225 -3.27133 -0.44191 + 8.08440 -2.68948 -0.41080 + 7.84329 -2.13944 -0.38072 + 7.65488 -1.63844 -0.35163 + 7.65520 -1.63441 -0.35163 + 7.48724 -0.67833 -0.31249 + 7.46720 0.31905 -0.27521 + 7.55298 0.81088 -0.23979 + 7.67324 0.85267 -0.20624 + 7.75845 0.18118 -0.17459 + 7.75505 0.15661 -0.17459 + 7.66930 -1.34259 -0.14486 + 7.39028 -2.60262 -0.11703 + 6.95195 -3.61863 -0.09098 + 6.38840 -4.39179 -0.06662 + 5.73325 -4.92931 -0.04385 + 5.73193 -4.90711 -0.04385 + 5.02210 -5.19559 -0.02251 + 4.28792 -5.25365 -0.00240 + 3.56196 -5.07860 0.01664 + 2.87667 -4.67301 0.03479 + 2.26364 -4.05041 0.05223 + 2.26497 -4.02948 0.05223 + 1.74983 -3.34208 0.06913 + 1.32567 -2.73000 0.08560 + 0.98190 -2.19358 0.10172 + 0.70793 -1.73297 0.11759 + 0.49314 -1.34815 0.13328 + 0.49314 -1.34817 0.13328 + 0.32692 -1.03901 0.14887 + 0.19869 -0.80536 0.16437 + 0.09922 -0.61877 0.17982 + 0.02802 -0.37684 0.19524 + 0.00000 0.00001 0.21065 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -38257,36 +38393,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.81500 71.15100 34.65200 63.80392 62.46961 -10.86500 71.15100 34.65200 66.74013 62.63310 -10.91500 71.15100 34.65200 69.82331 62.80477 @@ -38367,7 +38503,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -38385,7 +38521,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -38398,7 +38534,7 @@ Lambda passive -10.94000 12.29600 64.60333 3.59709 0.51628 0.29254 5.25401 -10.99000 12.85550 67.54294 3.76077 0.51628 0.29254 5.25401 -11.04000 13.41500 69.74766 3.88353 0.51628 0.29254 5.25401 - -11.04000 13.41500 70.62954 3.93263 0.64500 0.29254 5.25401 + -11.04000 13.41500 70.62954 3.93263 0.51628 0.29254 5.25401 -11.05000 13.52690 71.07049 3.95718 0.51628 0.29254 5.25401 -11.06000 13.63880 71.65841 3.98992 0.51628 0.29254 5.25401 -11.07000 13.75070 72.24634 4.02266 0.51628 0.29254 5.25401 @@ -38428,7 +38564,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -38587,13 +38723,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 1 100 A @@ -38605,73 +38741,73 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.14698 67.39050 56.51937 5.55378 1 0 A 3.26974 67.88100 58.72409 5.77042 1 0 A 3.43342 68.37150 61.66371 6.05928 1 0 A 3.59709 68.86200 64.60333 6.34814 1 0 A 3.76077 69.35250 67.54294 6.63699 1 0 A 3.88353 69.84300 69.74766 6.85364 1 0 A - 3.93263 69.84300 70.62954 8.67078 1 0 A + 3.93263 69.84300 70.62954 6.94029 1 0 A 3.95718 69.94110 71.07049 6.98362 1 0 A 3.98992 70.03920 71.65841 7.04139 1 0 A 4.02266 70.13730 72.24634 7.09916 1 0 A 4.05539 70.23540 72.83426 7.15693 1 0 A 4.07994 70.33350 73.27520 7.20026 1 0 A 1.84243 70.33350 47.69739 10.44356 1 0 A - 10.13921 71.22621 47.84478 10.71609 110 0 1 - 10.74475 72.11892 48.26126 11.07946 110 0 1 - 11.32893 73.01163 48.84496 11.44283 110 0 1 - 11.89284 73.90434 49.53488 11.80620 110 24 1 - 12.34676 74.79705 50.09920 12.07872 110 25 1 - 12.52844 74.79705 50.49456 12.26041 110 25 1 - 12.96429 75.68976 51.11025 12.53294 110 25 1 - 13.47392 76.58247 51.96161 12.89631 110 26 1 - 13.96747 77.47518 52.84194 13.25967 110 26 1 - 14.44590 78.36789 53.74489 13.62304 110 27 1 - 14.81936 79.26060 54.43367 13.89557 110 27 1 - 17.44407 79.26060 36.58125 14.13536 110 48 1 - 16.71574 83.24160 32.95268 12.49585 220 51 2 - 14.65679 87.22260 28.14940 10.30983 220 52 2 - 12.42662 91.20360 23.37981 8.12381 220 53 2 - 10.17853 95.18460 18.63653 5.93779 220 55 2 - 8.46068 99.16560 15.09227 4.29828 220 56 2 - 24.05779 99.16560 26.26428 2.74836 330 92 3 - 29.42900 100.53900 31.53892 3.31593 330 93 3 - 28.49969 101.91240 38.50115 4.07269 220 74 2 - 25.31939 103.28580 45.39611 4.82945 220 56 2 - 21.97751 104.65920 52.24433 5.58621 110 42 1 - 12.95005 106.03260 57.36125 6.15378 110 23 1 - 7.63168 106.03260 60.76601 3.73674 110 13 1 - 10.88549 107.40600 65.86774 7.09972 110 17 1 - 11.50019 108.77940 72.66634 7.85648 110 16 1 - 12.08609 110.15280 79.46578 8.61324 110 15 1 - 12.64726 111.52620 86.26991 9.37000 110 15 1 - 12.99862 112.89960 91.37714 9.93757 110 14 1 - 13.37700 112.89960 94.78447 10.31595 110 14 1 - 13.71183 114.27300 99.89939 10.88352 110 14 1 - 14.22258 115.64640 106.72583 11.64028 110 13 1 - 14.72285 117.01980 113.55988 12.39704 110 13 1 - 15.21544 118.39320 120.40102 13.15380 110 13 1 - 15.51396 119.76660 125.53597 13.72137 110 12 1 - 15.89234 119.76660 128.96129 14.09975 110 12 1 - 16.18836 121.14000 134.10206 14.66732 110 12 1 - 16.67204 122.51340 140.96069 15.42408 110 12 1 - 17.15482 123.88680 147.82389 16.18084 110 12 1 - 17.63736 125.26020 154.69114 16.93760 110 11 1 - 17.93110 126.63360 159.84382 17.50516 110 11 1 - 18.30948 126.63360 163.28003 17.88354 110 11 1 - 18.60384 128.00700 168.43582 18.45111 110 11 1 - 19.08776 129.38040 175.31244 19.20787 110 0 1 - 20.00133 130.75380 182.19144 19.96463 110 11 1 - 21.94692 132.12720 189.07254 20.72139 110 12 1 - 23.78312 133.50060 194.23453 21.28896 110 12 1 + 10.13413 71.22621 47.84478 10.71609 110 0 1 + 10.73876 72.11892 48.26126 11.07946 110 0 1 + 11.32203 73.01163 48.84496 11.44283 110 0 1 + 11.88507 73.90434 49.53488 11.80620 110 24 1 + 12.33812 74.79705 50.09920 12.07872 110 25 1 + 12.51981 74.79705 50.49456 12.26041 110 25 1 + 12.95482 75.68976 51.11025 12.53294 110 25 1 + 13.46364 76.58247 51.96161 12.89631 110 26 1 + 13.95641 77.47518 52.84194 13.25967 110 26 1 + 14.43410 78.36789 53.74489 13.62304 110 27 1 + 14.80685 79.26060 54.43367 13.89557 110 27 1 + 17.43781 79.26060 36.58125 14.13536 110 48 1 + 16.71442 83.24160 32.95268 12.49585 220 51 2 + 14.65852 87.22260 28.14940 10.30983 220 52 2 + 12.42833 91.20360 23.37981 8.12381 220 53 2 + 10.18022 95.18460 18.63653 5.93779 220 55 2 + 8.46235 99.16560 15.09227 4.29828 220 56 2 + 24.05186 99.16560 26.26428 2.74836 330 92 3 + 29.42290 100.53900 31.53892 3.31593 330 93 3 + 28.56128 101.91240 38.50115 4.07269 220 74 2 + 25.32405 103.28580 45.39611 4.82945 220 56 2 + 21.99528 104.65920 52.24433 5.58621 110 42 1 + 12.96901 106.03260 57.36125 6.15378 110 23 1 + 10.37620 106.03260 60.76601 6.53215 110 17 1 + 10.83537 107.40600 65.86774 7.09972 110 16 1 + 11.45137 108.77940 72.66634 7.85648 110 16 1 + 12.03903 110.15280 79.46578 8.61324 110 15 1 + 12.60237 111.52620 86.26991 9.37000 110 15 1 + 12.95622 112.89960 91.37714 9.93757 110 14 1 + 13.33460 112.89960 94.78447 10.31595 110 14 1 + 13.67218 114.27300 99.89939 10.88352 110 14 1 + 14.18588 115.64640 106.72583 11.64028 110 13 1 + 14.68927 117.01980 113.55988 12.39704 110 13 1 + 15.18509 118.39320 120.40102 13.15380 110 13 1 + 15.48690 119.76660 125.53597 13.72137 110 12 1 + 15.86528 119.76660 128.96129 14.09975 110 12 1 + 16.16462 121.14000 134.10206 14.66732 110 12 1 + 16.65161 122.51340 140.96069 15.42408 110 12 1 + 17.13772 123.88680 147.82389 16.18084 110 12 1 + 17.62359 125.26020 154.69114 16.93760 110 11 1 + 17.92066 126.63360 159.84382 17.50516 110 11 1 + 18.29904 126.63360 163.28003 17.88354 110 11 1 + 18.59674 128.00700 168.43582 18.45111 110 11 1 + 19.08398 129.38040 175.31244 19.20787 110 0 1 + 19.97685 130.75380 182.19144 19.96463 110 11 1 + 21.92642 132.12720 189.07254 20.72139 110 12 1 + 23.76661 133.50060 194.23453 21.28896 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -38686,9 +38822,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.079 'Grind' - -11.09 10.895 'Hydrobiaklei' + -11.09 10.887 'Hydrobiaklei' -12.00 6.693 'Basisveen' - -12.50 61.423 'Eerste zandlaag' + -12.50 61.549 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -38707,7 +38843,7 @@ Layer name -10.79 0.38 'Grind' -11.09 1.98 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 20.41 'Eerste zandlaag' + -12.50 20.45 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -38831,24 +38967,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -38935,20 +39071,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 59.60834 3.31898 0.51628 0.29254 5.25401 -10.84000 12.05780 63.35182 3.52741 0.51628 0.29254 5.25401 -10.89000 13.00780 68.34313 3.80533 0.51628 0.29254 5.25401 -10.94000 13.95780 73.33444 4.08324 0.51628 0.29254 5.25401 -10.99000 14.90780 78.32575 4.36116 0.51628 0.29254 5.25401 -11.04000 15.85780 82.06924 4.56959 0.51628 0.29254 5.25401 - -11.04000 15.85780 83.46404 4.64725 0.51854 0.29254 5.25401 + -11.04000 15.85780 83.46404 4.64725 0.51628 0.29254 5.25401 -11.05000 15.96970 83.90499 4.67181 0.51628 0.29254 5.25401 -11.06000 16.08160 84.49291 4.70454 0.51628 0.29254 5.25401 -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 @@ -38960,7 +39096,7 @@ Lambda passive -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 -11.45400 18.37926 54.90361 4.10350 0.74083 0.22327 2.98726 -11.54500 18.86975 55.45470 4.29683 0.74083 0.22920 2.95804 - -11.54500 18.86975 55.84214 4.42534 0.83235 0.23301 2.94024 + -11.54500 18.86975 55.84214 4.42534 0.74083 0.23301 2.94024 -11.63600 19.36024 56.44708 4.61774 0.74083 0.23852 2.91562 -11.72700 19.85073 57.28575 4.87386 0.74083 0.24553 2.88583 -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 @@ -38990,7 +39126,7 @@ Lambda passive -14.32000 25.81300 125.35771 7.85552 0.53046 0.30432 4.85638 -14.46000 27.23960 132.20113 8.29186 0.53046 0.30440 4.85327 -14.60000 28.66620 137.33776 8.61910 0.53046 0.30446 4.85129 - -14.60000 28.66620 140.76415 8.83725 0.36828 0.30449 4.85011 + -14.60000 28.66620 140.76415 8.83725 0.53046 0.30449 4.85011 -14.74000 30.09280 145.90643 9.16446 0.53046 0.30454 4.84855 -14.88000 31.51940 152.76688 9.60069 0.53046 0.30460 4.84676 -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 @@ -39150,78 +39286,78 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00207 0.00000 78.00207 78.00207 402 100 P + 78.00207 0.00000 78.00207 78.00208 402 100 P 78.00290 0.00000 78.00290 78.00290 402 100 P 78.00400 0.00000 78.00400 78.00400 402 100 P 78.00510 0.00000 78.00510 78.00510 402 100 P 78.00620 0.00000 78.00620 78.00620 402 100 P - 78.00703 0.00000 78.00703 78.00703 402 100 P - 78.00732 0.00000 78.00732 78.00732 402 100 P + 78.00702 0.00000 78.00702 78.00703 402 100 P + 78.00732 0.00000 78.00732 78.00733 402 100 P 78.00740 0.00000 78.00740 78.00740 402 100 P 78.00750 0.00000 78.00750 78.00750 402 100 P 78.00760 0.00000 78.00760 78.00760 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 78.00778 0.00000 78.00778 78.00778 402 100 P - 74.36461 0.00000 411.10170 40.39621 110 18 1 - 76.15614 0.00000 414.84519 40.76406 110 18 1 - 77.93418 0.00000 419.83650 41.25452 110 19 1 - 79.60859 0.00000 424.82781 41.74498 110 19 1 - 81.18247 0.00000 429.81912 42.23545 110 19 1 - 82.56568 0.00000 433.56260 42.60329 110 19 1 - 43.30582 66.90000 83.46404 8.23745 220 52 2 - 43.70096 66.99810 83.90499 8.24478 220 52 2 - 43.98015 67.09620 84.49291 8.30255 220 52 2 - 44.25832 67.19430 85.08083 8.36032 220 52 2 - 44.53547 67.29240 85.66876 8.41810 220 52 2 - 44.75585 67.39050 86.10970 8.46142 220 52 2 - 13.28915 67.39050 53.16020 12.25326 110 25 1 - 19.87895 68.28321 53.28529 12.52579 110 37 1 - 19.22851 69.17592 53.67411 12.88916 110 36 1 - 18.60933 70.06863 54.23393 13.25253 110 34 1 - 18.02034 70.96134 54.90361 13.61590 110 33 1 - 17.45542 71.85405 55.45470 13.88842 110 31 1 - 19.20372 71.85405 55.84214 15.80822 110 34 1 - 16.92879 72.74676 56.44708 14.34263 110 30 1 - 16.42414 73.63947 57.28575 14.70600 110 29 1 - 15.94557 74.53218 58.15503 15.06937 110 27 1 - 15.49210 75.42489 59.04829 15.43274 110 26 1 - 15.35901 76.31760 59.73052 15.70527 110 0 1 - 15.57315 76.31760 40.77271 16.03504 110 0 1 - 13.88578 80.29860 37.12819 14.39553 110 0 1 - 11.65932 84.27960 32.30543 12.20951 110 0 1 - 9.65849 88.26060 27.51836 10.02349 110 0 1 - 7.81278 92.24160 22.75954 7.83747 110 0 1 - 6.67288 96.22260 19.20478 6.19796 110 35 1 - 22.00401 96.22260 38.54151 4.04417 220 57 2 - 23.65910 97.59600 43.70980 4.61174 220 54 2 - 25.92233 98.96940 50.55187 5.36850 220 51 2 - 26.72616 100.34280 57.35548 6.12526 110 47 1 - 25.72903 101.71620 64.13881 6.88202 110 40 1 - 24.56003 103.08960 69.22085 7.44959 110 35 1 - 27.54788 103.08960 72.60831 7.82797 110 38 1 - 23.57498 104.46300 77.69108 8.39554 110 30 1 - 22.44590 105.83640 84.47328 9.15230 110 27 1 - 21.29486 107.20980 91.26387 9.90906 110 23 1 - 20.13097 108.58320 98.06401 10.66582 110 21 1 - 18.84993 109.95660 103.17026 11.23339 110 18 1 - 19.07675 109.95660 106.57763 11.61177 110 18 1 - 17.79934 111.33000 111.69332 12.17934 110 16 1 - 16.64162 112.70340 118.52150 12.93610 110 14 1 - 15.49229 114.07680 125.35771 13.69286 110 12 1 - 14.35348 115.45020 132.20113 14.44961 110 0 1 - 13.22460 116.82360 137.33776 15.01718 110 0 1 - 12.57781 116.82360 140.76415 10.68859 110 9 1 - 14.44209 118.19700 145.90643 15.96313 110 0 1 - 15.47193 119.57040 152.76688 16.71989 110 0 1 - 16.50266 120.94380 159.63169 17.47665 110 0 1 - 17.53365 122.31720 166.50031 18.23341 110 0 1 - 18.37505 123.69060 171.65390 18.80098 110 0 1 - 18.75343 123.69060 175.09065 19.17936 110 0 1 - 19.59420 125.06400 180.24715 19.74693 110 0 1 - 20.62381 126.43740 187.12459 20.50369 110 11 1 - 21.65316 127.81080 194.00428 21.26045 110 11 1 - 22.68237 129.18420 200.88593 22.01721 110 11 1 - 23.52234 130.55760 206.04826 22.58478 110 11 1 + 78.00777 0.00000 78.00777 78.00778 402 0 P + 74.40089 0.00000 411.10170 40.39621 110 18 1 + 76.19530 0.00000 414.84519 40.76406 110 18 1 + 77.97622 0.00000 419.83650 41.25452 110 19 1 + 79.65351 0.00000 424.82781 41.74498 110 19 1 + 81.23027 0.00000 429.81912 42.23545 110 19 1 + 82.61636 0.00000 433.56260 42.60329 110 19 1 + 43.49036 66.90000 83.46404 8.20145 220 52 2 + 43.71494 66.99810 83.90499 8.24478 220 52 2 + 43.99428 67.09620 84.49291 8.30255 220 52 2 + 44.27261 67.19430 85.08083 8.36032 220 52 2 + 44.54993 67.29240 85.66876 8.41810 220 52 2 + 44.77045 67.39050 86.10970 8.46142 220 52 2 + 13.29733 67.39050 53.16020 12.25326 110 25 1 + 19.92647 68.28321 53.28529 12.52579 110 37 1 + 19.27518 69.17592 53.67411 12.88916 110 36 1 + 18.65500 70.06863 54.23393 13.25253 110 34 1 + 18.06486 70.96134 54.90361 13.61590 110 33 1 + 17.49863 71.85405 55.45470 13.88842 110 32 1 + 17.50882 71.85405 55.84214 14.07011 110 31 1 + 16.97050 72.74676 56.44708 14.34263 110 30 1 + 16.46419 73.63947 57.28575 14.70600 110 29 1 + 15.98379 74.53218 58.15503 15.06937 110 27 1 + 15.52832 75.42489 59.04829 15.43274 110 26 1 + 15.37914 76.31760 59.73052 15.70527 110 0 1 + 15.57940 76.31760 40.77271 16.03504 110 0 1 + 13.89239 80.29860 37.12819 14.39553 110 0 1 + 11.66628 84.27960 32.30543 12.20951 110 0 1 + 9.66972 88.26060 27.51836 10.02349 110 0 1 + 7.82404 92.24160 22.75954 7.83747 110 0 1 + 6.68442 96.22260 19.20478 6.19796 110 35 1 + 22.02341 96.22260 38.54151 4.04417 220 57 2 + 23.67908 97.59600 43.70980 4.61174 220 54 2 + 25.94277 98.96940 50.55187 5.36850 220 51 2 + 26.80236 100.34280 57.35548 6.12526 110 47 1 + 25.80595 101.71620 64.13881 6.88202 110 40 1 + 24.63712 103.08960 69.22085 7.44959 110 36 1 + 24.86301 103.08960 72.60831 7.82797 110 34 1 + 23.65166 104.46300 77.69108 8.39554 110 30 1 + 22.52163 105.83640 84.47328 9.15230 110 27 1 + 21.36915 107.20980 91.26387 9.90906 110 23 1 + 20.20339 108.58320 98.06401 10.66582 110 21 1 + 18.92012 109.95660 103.17026 11.23339 110 18 1 + 19.14694 109.95660 106.57763 11.61177 110 18 1 + 17.86699 111.33000 111.69332 12.17934 110 16 1 + 16.70646 112.70340 118.52150 12.93610 110 14 1 + 15.55410 114.07680 125.35771 13.69286 110 12 1 + 14.41204 115.45020 132.20113 14.44961 110 0 1 + 13.25166 116.82360 137.33776 15.01718 110 0 1 + 13.63004 116.82360 140.76415 15.39556 110 0 1 + 14.46583 118.19700 145.90643 15.96313 110 0 1 + 15.49236 119.57040 152.76688 16.71989 110 0 1 + 16.51976 120.94380 159.63169 17.47665 110 0 1 + 17.54742 122.31720 166.50031 18.23341 110 0 1 + 18.38549 123.69060 171.65390 18.80098 110 0 1 + 18.76387 123.69060 175.09065 19.17936 110 0 1 + 19.60131 125.06400 180.24715 19.74693 110 0 1 + 20.62758 126.43740 187.12459 20.50369 110 11 1 + 21.65360 127.81080 194.00428 21.26045 110 11 1 + 22.67948 129.18420 200.88593 22.01721 110 11 1 + 23.51612 130.55760 206.04826 22.58478 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -39235,10 +39371,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 21.872 'Grind' - -11.09 15.760 'Hydrobiaklei' - -12.00 5.414 'Basisveen' - -12.50 70.213 'Eerste zandlaag' + -10.79 21.885 'Grind' + -11.09 15.717 'Hydrobiaklei' + -12.00 5.418 'Basisveen' + -12.50 70.234 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -39254,7 +39390,7 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 -7.65 'Grind' + -10.79 -7.66 'Grind' -11.09 -2.86 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 -23.33 'Eerste zandlaag' @@ -39497,8 +39633,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 593.15250 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 785.61765 10000000.000 1 1 1 'Dek' + -10.19000 593.17677 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 785.61815 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -39560,9 +39696,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 33.22 : Percentage mobilized resistance left - 20.35 : Percentage mobilized resistance right - 220.05 : Effective left - 107.14 : Effective right + 20.36 : Percentage mobilized resistance right + 220.09 : Effective left + 107.21 : Effective right 508.74 : Water pressure left 540.51 : Water pressure right 662.49 : Max effective resistance left @@ -39571,8 +39707,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 47.83 : Vertical force left - 13.60 : Vertical force right + 47.85 : Vertical force left + 13.63 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -39581,10 +39717,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --13.60 : Active force -47.83 : Passive force --13.60 : Plugged active force -47.83 : Plugged passive force +-13.63 : Active force +47.85 : Passive force +-13.63 : Plugged active force +47.85 : Plugged passive force 0.00 : Anchor force 135.00 : Normal force 41.67 : Factor on resistance @@ -39604,210 +39740,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -85.86736 - 0.25195 0.00000 -84.00099 - 0.50389 0.00000 -82.13465 - 0.75584 0.00000 -80.26836 - 1.00778 0.00000 -78.40215 - 1.25973 0.00000 -76.53604 - 1.25973 0.00000 -76.53604 - 1.51159 0.00000 -74.67006 - 1.76345 0.00000 -72.80423 - 2.01531 0.00000 -70.93858 - 2.26716 0.00000 -69.07314 - 2.51902 0.00000 -67.20793 - 2.51902 0.00000 -67.20793 - 2.85455 0.00000 -64.72138 - 3.19008 0.00000 -62.23536 - 3.52560 0.00000 -59.74991 - 3.86113 0.00000 -57.26511 - 4.19666 0.00000 -54.78100 - 4.19666 0.00000 -54.78100 - 4.47588 0.00000 -52.71149 - 4.75510 0.00000 -50.64254 - 5.03433 0.00000 -48.57420 - 5.31355 0.00000 -46.50648 - 5.59277 0.00000 -44.43944 - 5.59277 0.00000 -44.43944 - 5.87152 0.00000 -42.37310 - 6.15026 0.00000 -40.30750 - 6.42901 0.00000 -38.24268 - 6.70776 0.00000 -36.17866 - 6.98650 0.00000 -34.11549 - 6.98650 0.00000 -34.11549 - 7.22575 0.00000 -32.34187 - 7.46500 0.00000 -30.56892 - 7.70426 0.00000 -28.79667 - 7.94351 0.00000 -27.02513 - 8.18276 0.00000 -25.25433 - 8.18276 659.85000 -25.25433 - 83.71507 659.85000 -22.91023 - 159.24739 659.85000 -20.57984 - 234.77970 659.85000 -18.27551 - 310.31201 659.85000 -16.00963 - 385.84433 659.85000 -13.79455 - 385.84498 659.83913 -13.79455 - 438.82626 659.83913 -12.27710 - 491.80754 659.83913 -10.79503 - 544.78882 659.83913 -9.35261 - 597.77010 659.83913 -7.95411 - 650.75138 659.83913 -6.60381 - 650.75116 -125.78023 -6.60381 - 648.27917 -125.78023 -6.27425 - 645.80717 -125.78023 -5.94796 - 643.33518 -125.78023 -5.62493 - 640.86319 -125.78023 -5.30513 - 638.39119 -125.78023 -4.98857 - 638.39090 -125.77697 -4.98857 - 625.99953 -125.77697 -3.45375 - 613.60816 -125.77697 -1.99779 - 601.21679 -125.77697 -0.61914 - 588.82542 -125.77697 0.68377 - 576.43405 -125.77697 1.91250 - 576.43417 -125.77608 1.91250 - 563.99387 -125.77608 3.06861 - 551.55358 -125.77608 4.15367 - 539.11329 -125.77608 5.16924 - 526.67299 -125.77608 6.11690 - 514.23270 -125.77608 6.99820 - 514.23270 -125.77593 6.99820 - 501.74869 -125.77593 7.81473 - 489.26469 -125.77593 8.56804 - 476.78068 -125.77593 9.25971 - 464.29668 -125.77593 9.89132 - 451.81267 -125.77593 10.46444 - 451.81266 -125.77565 10.46444 - 434.27174 -125.77565 11.17153 - 416.73082 -125.77565 11.77139 - 399.18990 -125.77565 12.26834 - 381.64899 -125.77565 12.66672 - 364.10807 -125.77565 12.97086 - 364.10803 -125.77487 12.97086 - 347.76549 -125.77487 13.17268 - 331.42295 -125.77487 13.30045 - 315.08041 -125.77487 13.35766 - 298.73787 -125.77487 13.34779 - 282.39533 -125.77487 13.27431 - 282.39540 -125.77449 13.27431 - 266.01233 -125.77449 13.14071 - 249.62926 -125.77449 12.95047 - 233.24619 -125.77449 12.70708 - 216.86312 -125.77449 12.41403 - 200.48005 -125.77449 12.07481 - 200.48005 -125.77449 12.07481 - 181.60463 -125.77449 11.63215 - 162.72921 -125.77449 11.13836 - 143.85380 -125.77449 10.59874 - 124.97838 -125.77449 10.01862 - 106.10296 -125.77449 9.40330 - 106.10296 -125.77449 9.40330 - 87.20738 -125.77449 8.75811 - 68.31180 -125.77449 8.08836 - 49.41622 -125.77449 7.39938 - 30.52064 -125.77449 6.69648 - 11.62506 -125.77449 5.98499 - 11.62441 -125.77131 5.98499 - -7.27290 -125.77131 5.27023 - -26.17021 -125.77131 4.55751 - -45.06753 -125.77131 3.85216 - -63.96484 -125.77131 3.15951 - -82.86216 -125.77131 2.48486 - -82.86117 -125.76344 2.48486 - -101.74157 -125.76344 1.83354 - -120.62196 -125.76344 1.21088 - -139.50235 -125.76344 0.62218 - -158.38274 -125.76344 0.07276 - -177.26313 -125.76344 -0.43206 - -177.26305 -125.76328 -0.43206 - -177.51538 -125.68450 -0.43849 - -177.76746 -125.52850 -0.44491 - -178.01923 -125.37250 -0.45132 - -178.27068 -125.21650 -0.45772 - -178.52183 -125.06050 -0.46411 - -178.52183 -125.06050 -0.46411 - -178.77265 -124.90450 -0.47049 - -179.02316 -124.74850 -0.47686 - -179.27336 -124.59250 -0.48323 - -179.52325 -124.43650 -0.48958 - -179.77283 -124.28050 -0.49593 - -179.77283 -124.28052 -0.49593 - -184.22794 -122.89054 -0.60860 - -188.66638 -122.89053 -0.71825 - -193.10482 -122.89053 -0.82483 - -197.54326 -122.89052 -0.92826 - -201.98169 -122.89051 -1.02846 - -201.98256 84.06535 -1.02846 - -192.76407 84.06537 -1.31447 - -183.54557 84.06539 -1.57109 - -174.32707 84.06541 -1.79974 - -165.10858 84.06544 -2.00181 - -155.89007 84.06546 -2.17871 - -155.88975 84.06716 -2.17871 - -155.05079 84.06704 -2.19359 - -154.21183 84.06704 -2.20828 - -153.37287 84.06704 -2.22277 - -152.53391 84.06705 -2.23707 - -151.69494 84.06717 -2.25118 - -151.69485 84.06487 -2.25118 - -147.53891 82.41628 -2.31888 - -143.46914 80.61936 -2.38192 - -139.49273 78.68348 -2.44045 - -135.61637 76.61902 -2.49458 - -131.84622 74.43735 -2.54444 - -131.84632 74.43516 -2.54444 - -131.10558 73.91292 -2.55391 - -130.37013 73.37905 -2.56322 - -129.64004 72.84206 -2.57236 - -128.91533 72.30202 -2.58134 - -128.19604 71.75898 -2.59015 - -128.19529 71.73855 -2.59015 - -121.74631 70.02243 -2.66307 - -115.46931 68.04907 -2.72329 - -109.37128 66.08885 -2.77145 - -103.45051 64.15932 -2.80818 - -97.70304 62.28055 -2.83412 - -97.70317 62.28631 -2.83412 - -92.12165 60.41128 -2.84989 - -86.70394 58.66571 -2.85605 - -81.44189 56.99098 -2.85315 - -76.32887 55.39080 -2.84174 - -71.35807 53.86466 -2.82237 - -71.35805 53.86314 -2.82237 - -66.00702 53.08811 -2.79253 - -60.73138 52.35532 -2.75438 - -55.52718 51.65695 -2.70857 - -50.39166 50.97954 -2.65575 - -45.32317 50.31618 -2.59659 - -45.32096 50.29510 -2.59659 - -38.33447 49.22602 -2.50440 - -31.60657 46.35191 -2.40277 - -25.39827 42.24194 -2.29322 - -19.76632 38.07125 -2.17727 - -14.73054 33.73864 -2.05645 - -14.72960 33.71969 -2.05645 - -10.32754 29.06409 -1.93217 - -6.58107 24.33280 -1.80536 - -3.49384 19.73862 -1.67677 - -1.02073 15.56038 -1.54718 - 0.89679 11.80219 -1.41735 - 0.89457 11.82097 -1.41735 - 2.31599 8.48325 -1.28790 - 3.29963 5.56663 -1.15902 - 3.90433 3.06968 -1.03087 - 4.18873 0.99048 -0.90361 - 4.21078 -0.68109 -0.77740 - 4.21385 -0.68858 -0.77740 - 4.04052 -1.85101 -0.65230 - 3.70550 -2.92550 -0.52820 - 3.24148 -3.69435 -0.40498 - 2.69106 -4.16028 -0.28254 - 2.09647 -4.32560 -0.16077 - 2.09632 -4.32578 -0.16077 - 1.49753 -4.19230 -0.03952 - 0.93826 -3.76135 0.08137 - 0.46263 -2.97948 0.20200 - 0.12709 -1.74377 0.32249 - -0.00001 -0.00006 0.44295 + 0.00000 0.00000 -85.86678 + 0.25195 0.00000 -84.00041 + 0.50389 0.00000 -82.13407 + 0.75584 0.00000 -80.26777 + 1.00778 0.00000 -78.40156 + 1.25973 0.00000 -76.53544 + 1.25973 0.00000 -76.53544 + 1.51159 0.00000 -74.66946 + 1.76345 0.00000 -72.80363 + 2.01531 0.00000 -70.93798 + 2.26717 0.00000 -69.07253 + 2.51903 0.00000 -67.20732 + 2.51903 0.00000 -67.20732 + 2.85456 0.00000 -64.72077 + 3.19008 0.00000 -62.23474 + 3.52561 0.00000 -59.74929 + 3.86114 0.00000 -57.26448 + 4.19667 0.00000 -54.78037 + 4.19667 0.00000 -54.78037 + 4.47589 0.00000 -52.71085 + 4.75511 0.00000 -50.64190 + 5.03433 0.00000 -48.57355 + 5.31356 0.00000 -46.50584 + 5.59278 0.00000 -44.43879 + 5.59278 0.00000 -44.43879 + 5.87153 0.00000 -42.37245 + 6.15027 0.00000 -40.30685 + 6.42902 0.00000 -38.24202 + 6.70777 0.00000 -36.17800 + 6.98651 0.00000 -34.11483 + 6.98651 0.00000 -34.11483 + 7.22577 0.00000 -32.34120 + 7.46502 0.00000 -30.56825 + 7.70427 0.00000 -28.79599 + 7.94352 0.00000 -27.02445 + 8.18277 0.00000 -25.25366 + 8.18277 659.85000 -25.25366 + 83.71509 659.85000 -22.90955 + 159.24740 659.85000 -20.57915 + 234.77972 659.85000 -18.27482 + 310.31203 659.85000 -16.00894 + 385.84434 659.85000 -13.79386 + 385.84499 659.83912 -13.79386 + 438.82627 659.83912 -12.27640 + 491.80755 659.83912 -10.79432 + 544.78883 659.83912 -9.35190 + 597.77011 659.83912 -7.95340 + 650.75139 659.83912 -6.60310 + 650.75117 -125.78075 -6.60310 + 648.27917 -125.78075 -6.27354 + 645.80717 -125.78075 -5.94725 + 643.33516 -125.78075 -5.62421 + 640.86316 -125.78075 -5.30442 + 638.39116 -125.78075 -4.98785 + 638.39086 -125.77749 -4.98785 + 625.99944 -125.77749 -3.45303 + 613.60802 -125.77749 -1.99707 + 601.21660 -125.77749 -0.61842 + 588.82518 -125.77749 0.68450 + 576.43376 -125.77749 1.91323 + 576.43387 -125.77659 1.91323 + 563.99353 -125.77659 3.06935 + 551.55318 -125.77659 4.15441 + 539.11284 -125.77659 5.16999 + 526.67250 -125.77659 6.11765 + 514.23215 -125.77659 6.99895 + 514.23215 -125.77644 6.99895 + 501.74810 -125.77644 7.81548 + 489.26404 -125.77644 8.56880 + 476.77998 -125.77644 9.26047 + 464.29593 -125.77644 9.89209 + 451.81187 -125.77644 10.46521 + 451.81186 -125.77616 10.46521 + 434.27087 -125.77616 11.17231 + 416.72988 -125.77616 11.77217 + 399.18889 -125.77616 12.26913 + 381.64790 -125.77616 12.66751 + 364.10691 -125.77616 12.97166 + 364.10687 -125.77538 12.97166 + 347.76427 -125.77538 13.17349 + 331.42166 -125.77538 13.30127 + 315.07906 -125.77538 13.35849 + 298.73645 -125.77538 13.34862 + 282.39385 -125.77538 13.27515 + 282.39392 -125.77500 13.27515 + 266.01078 -125.77500 13.14156 + 249.62765 -125.77500 12.95133 + 233.24451 -125.77500 12.70795 + 216.86138 -125.77500 12.41491 + 200.47824 -125.77500 12.07569 + 200.47824 -125.77500 12.07569 + 181.60275 -125.77500 11.63304 + 162.72726 -125.77500 11.13926 + 143.85176 -125.77500 10.59966 + 124.97627 -125.77500 10.01955 + 106.10078 -125.77500 9.40425 + 106.10078 -125.77500 9.40425 + 87.20513 -125.77500 8.75907 + 68.30947 -125.77500 8.08934 + 49.41382 -125.77500 7.40037 + 30.51816 -125.77500 6.69749 + 11.62251 -125.77500 5.98601 + 11.62186 -125.77182 5.98601 + -7.27553 -125.77182 5.27127 + -26.17292 -125.77182 4.55857 + -45.07030 -125.77182 3.85324 + -63.96769 -125.77182 3.16060 + -82.86508 -125.77182 2.48598 + -82.86409 -125.76398 2.48598 + -101.74456 -125.76398 1.83468 + -120.62503 -125.76398 1.21204 + -139.50550 -125.76398 0.62336 + -158.38597 -125.76398 0.07397 + -177.26644 -125.76398 -0.43083 + -177.26636 -125.76384 -0.43083 + -177.51870 -125.68506 -0.43725 + -177.77077 -125.52906 -0.44367 + -178.02254 -125.37306 -0.45008 + -178.27400 -125.21706 -0.45648 + -178.52514 -125.06106 -0.46287 + -178.52514 -125.06106 -0.46287 + -178.77597 -124.90506 -0.46925 + -179.02648 -124.74906 -0.47563 + -179.27668 -124.59306 -0.48199 + -179.52657 -124.43706 -0.48834 + -179.77615 -124.28106 -0.49469 + -179.77615 -124.28107 -0.49469 + -184.23128 -122.89110 -0.60735 + -188.66974 -122.89109 -0.71700 + -193.10820 -122.89108 -0.82358 + -197.54665 -122.89107 -0.92700 + -201.98511 -122.89107 -1.02719 + -201.98598 84.04055 -1.02719 + -192.77021 84.04057 -1.31318 + -183.55444 84.04059 -1.56978 + -174.33867 84.04061 -1.79841 + -165.12289 84.04064 -2.00045 + -155.90712 84.04066 -2.17733 + -155.90679 84.04237 -2.17733 + -155.06808 84.04225 -2.19221 + -154.22936 84.04225 -2.20689 + -153.39065 84.04225 -2.22138 + -152.55194 84.04226 -2.23568 + -151.71323 84.04238 -2.24979 + -151.71313 84.04008 -2.24979 + -147.55843 82.39117 -2.31747 + -143.48992 80.59392 -2.38050 + -139.51480 78.65768 -2.43901 + -135.63974 76.59284 -2.49313 + -131.87091 74.41079 -2.54297 + -131.87100 74.40859 -2.54297 + -131.13058 73.87768 -2.55244 + -130.39549 73.34360 -2.56174 + -129.66575 72.80641 -2.57088 + -128.94140 72.26616 -2.57985 + -128.22247 71.72291 -2.58866 + -128.22172 71.70244 -2.58866 + -121.77603 69.98611 -2.66155 + -115.50235 68.01229 -2.72174 + -109.40768 66.05165 -2.76986 + -103.49034 64.12069 -2.80654 + -97.74649 62.23959 -2.83244 + -97.74638 62.23916 -2.83244 + -92.16521 60.42856 -2.84815 + -86.74601 58.68109 -2.85426 + -81.48263 57.00471 -2.85130 + -76.36843 55.40313 -2.83982 + -71.39655 53.87587 -2.82038 + -71.39655 53.87419 -2.82038 + -66.04440 53.09929 -2.79046 + -60.76763 52.36667 -2.75222 + -55.56227 51.66866 -2.70632 + -50.42556 50.99157 -2.65341 + -45.35584 50.32851 -2.59415 + -45.35367 50.30773 -2.59415 + -38.36521 49.24250 -2.50182 + -31.63475 46.36981 -2.40003 + -25.42415 42.25753 -2.29033 + -19.79001 38.08673 -2.17421 + -14.75206 33.75407 -2.05322 + -14.75110 33.73515 -2.05322 + -10.34194 29.13227 -1.92877 + -6.58592 24.40109 -1.80177 + -3.48909 19.80724 -1.67300 + -1.00634 15.62952 -1.54323 + 0.92092 11.87207 -1.41322 + 0.91870 11.89082 -1.41322 + 2.34997 8.55405 -1.28360 + 3.34361 5.63861 -1.15456 + 3.95849 3.14306 -1.02626 + 4.25328 1.06547 -0.89886 + 4.28605 -0.60229 -0.77253 + 4.28912 -0.60977 -0.77253 + 4.10882 -1.96215 -0.64732 + 3.75910 -3.02438 -0.52313 + 3.28211 -3.78067 -0.39984 + 2.72050 -4.23379 -0.27734 + 2.11653 -4.38604 -0.15551 + 2.11638 -4.38622 -0.15551 + 1.51006 -4.23944 -0.03421 + 0.94514 -3.79497 0.08673 + 0.46568 -3.00105 0.20741 + 0.12786 -1.75470 0.32794 + -0.00001 -0.00006 0.44845 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -39928,36 +40064,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.81500 71.15100 34.65200 63.80392 62.46961 -10.86500 71.15100 34.65200 66.74013 62.63310 -10.91500 71.15100 34.65200 69.82331 62.80477 @@ -40038,7 +40174,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -40056,7 +40192,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -40069,7 +40205,7 @@ Lambda passive -10.94000 12.29600 64.60333 3.59709 0.51628 0.29254 5.25401 -10.99000 12.85550 67.54294 3.76077 0.51628 0.29254 5.25401 -11.04000 13.41500 69.74766 3.88353 0.51628 0.29254 5.25401 - -11.04000 13.41500 70.62954 3.93263 0.64500 0.29254 5.25401 + -11.04000 13.41500 70.62954 3.93263 0.51628 0.29254 5.25401 -11.05000 13.52690 71.07049 3.95718 0.51628 0.29254 5.25401 -11.06000 13.63880 71.65841 3.98992 0.51628 0.29254 5.25401 -11.07000 13.75070 72.24634 4.02266 0.51628 0.29254 5.25401 @@ -40099,7 +40235,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -40258,13 +40394,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 402 100 P @@ -40276,50 +40412,50 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.14698 67.39050 56.51937 5.55378 1 0 A 3.26974 67.88100 58.72409 5.77042 1 0 A 3.43342 68.37150 61.66371 6.05928 1 0 A 3.59709 68.86200 64.60333 6.34814 1 0 A 3.76077 69.35250 67.54294 6.63699 1 0 A 3.88353 69.84300 69.74766 6.85364 1 0 A - 3.93263 69.84300 70.62954 8.67078 1 0 A + 3.93263 69.84300 70.62954 6.94029 1 0 A 3.95718 69.94110 71.07049 6.98362 1 0 A 3.98992 70.03920 71.65841 7.04139 1 0 A 4.02266 70.13730 72.24634 7.09916 1 0 A 4.05539 70.23540 72.83426 7.15693 1 0 A 4.07994 70.33350 73.27520 7.20026 1 0 A 1.84243 70.33350 47.69739 10.44356 1 0 A - 2.24547 71.22621 47.84478 10.71609 110 0 1 - 2.46810 72.11892 48.26126 11.07946 110 0 1 - 2.72632 73.01163 48.84496 11.44283 110 0 1 - 3.01815 73.90434 49.53488 11.80620 110 0 1 - 3.25075 74.79705 50.09920 12.07872 110 0 1 - 3.43244 74.79705 50.49456 12.26041 110 0 1 - 3.69472 75.68976 51.11025 12.53294 110 0 1 - 4.07580 76.58247 51.96161 12.89631 110 0 1 - 4.48311 77.47518 52.84194 13.25967 110 0 1 - 4.91495 78.36789 53.74489 13.62304 110 0 1 - 5.27878 79.26060 54.43367 13.89557 110 0 1 - 9.43817 79.26060 36.58125 14.13536 110 0 1 - 8.09821 83.24160 32.95268 12.49585 110 0 1 - 6.13791 87.22260 28.14940 10.30983 110 0 1 - 4.03678 91.20360 23.37981 8.12381 110 0 1 - 1.94538 95.18460 18.63653 5.93779 110 0 1 - 0.40920 99.16560 15.09227 4.29828 110 0 1 - 24.09077 99.16560 26.26428 2.74836 330 92 3 - 18.93956 100.53900 31.53892 3.31593 220 60 2 + 2.25035 71.22621 47.84478 10.71609 110 0 1 + 2.47299 72.11892 48.26126 11.07946 110 0 1 + 2.73123 73.01163 48.84496 11.44283 110 0 1 + 3.02309 73.90434 49.53488 11.80620 110 0 1 + 3.25574 74.79705 50.09920 12.07872 110 0 1 + 3.43742 74.79705 50.49456 12.26041 110 0 1 + 3.69977 75.68976 51.11025 12.53294 110 0 1 + 4.08091 76.58247 51.96161 12.89631 110 0 1 + 4.48831 77.47518 52.84194 13.25967 110 0 1 + 4.92025 78.36789 53.74489 13.62304 110 0 1 + 5.28420 79.26060 54.43367 13.89557 110 0 1 + 9.43784 79.26060 36.58125 14.13536 110 0 1 + 8.09790 83.24160 32.95268 12.49585 110 0 1 + 6.14078 87.22260 28.14940 10.30983 110 0 1 + 4.03973 91.20360 23.37981 8.12381 110 0 1 + 1.94843 95.18460 18.63653 5.93779 110 0 1 + 0.41237 99.16560 15.09227 4.29828 110 0 1 + 24.09362 99.16560 26.26428 2.74836 330 92 3 + 18.99343 100.53900 31.53892 3.31593 220 60 2 2.32601 101.91240 38.50115 4.07269 1 0 A 2.75956 103.28580 45.39611 4.82945 1 0 A 3.19359 104.65920 52.24433 5.58621 1 0 A 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A 4.93366 110.15280 79.46578 8.61324 1 0 A @@ -40332,17 +40468,17 @@ Status character 7.54953 118.39320 120.40102 13.15380 1 0 A 7.87663 119.76660 125.53597 13.72137 1 0 A 8.09468 119.76660 128.96129 14.09975 1 0 A - 9.45785 121.14000 134.10206 14.66732 110 0 1 - 11.31144 122.51340 140.96069 15.42408 110 0 1 - 13.15452 123.88680 147.82389 16.18084 110 0 1 - 14.98863 125.26020 154.69114 16.93760 110 0 1 - 16.62611 126.63360 159.84382 17.50516 110 0 1 - 17.00449 126.63360 163.28003 17.88354 110 0 1 - 18.63641 128.00700 168.43582 18.45111 110 11 1 - 20.45361 129.38040 175.31244 19.20787 110 12 1 - 23.04490 130.75380 182.19144 19.96463 110 13 1 - 26.33678 132.12720 189.07254 20.72139 110 14 1 - 29.51443 133.50060 194.23453 21.28896 110 15 1 + 9.50106 121.14000 134.10206 14.66732 110 0 1 + 11.35577 122.51340 140.96069 15.42408 110 0 1 + 13.19985 123.88680 147.82389 16.18084 110 0 1 + 15.03487 125.26020 154.69114 16.93760 110 0 1 + 16.67320 126.63360 159.84382 17.50516 110 0 1 + 17.05158 126.63360 163.28003 17.88354 110 0 1 + 18.68431 128.00700 168.43582 18.45111 110 11 1 + 20.50228 129.38040 175.31244 19.20787 110 12 1 + 23.07031 130.75380 182.19144 19.96463 110 13 1 + 26.36359 132.12720 189.07254 20.72139 110 14 1 + 29.54266 133.50060 194.23453 21.28896 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40357,9 +40493,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.079 'Grind' - -11.09 3.142 'Hydrobiaklei' - -12.00 2.514 'Basisveen' - -12.50 38.092 'Eerste zandlaag' + -11.09 3.146 'Hydrobiaklei' + -12.00 2.515 'Basisveen' + -12.50 38.154 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40378,7 +40514,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.57 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -12.66 'Eerste zandlaag' + -12.50 -12.68 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -40502,24 +40638,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -40606,20 +40742,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 59.60834 3.31898 0.51628 0.29254 5.25401 -10.84000 12.05780 63.35182 3.52741 0.51628 0.29254 5.25401 -10.89000 13.00780 68.34313 3.80533 0.51628 0.29254 5.25401 -10.94000 13.95780 73.33444 4.08324 0.51628 0.29254 5.25401 -10.99000 14.90780 78.32575 4.36116 0.51628 0.29254 5.25401 -11.04000 15.85780 82.06924 4.56959 0.51628 0.29254 5.25401 - -11.04000 15.85780 83.46404 4.64725 0.51854 0.29254 5.25401 + -11.04000 15.85780 83.46404 4.64725 0.51628 0.29254 5.25401 -11.05000 15.96970 83.90499 4.67181 0.51628 0.29254 5.25401 -11.06000 16.08160 84.49291 4.70454 0.51628 0.29254 5.25401 -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 @@ -40631,7 +40767,7 @@ Lambda passive -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 -11.45400 18.37926 54.90361 4.10350 0.74083 0.22327 2.98726 -11.54500 18.86975 55.45470 4.29683 0.74083 0.22920 2.95804 - -11.54500 18.86975 55.84214 4.42534 0.83235 0.23301 2.94024 + -11.54500 18.86975 55.84214 4.42534 0.74083 0.23301 2.94024 -11.63600 19.36024 56.44708 4.61774 0.74083 0.23852 2.91562 -11.72700 19.85073 57.28575 4.87386 0.74083 0.24553 2.88583 -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 @@ -40661,7 +40797,7 @@ Lambda passive -14.32000 25.81300 125.35771 7.85552 0.53046 0.30432 4.85638 -14.46000 27.23960 132.20113 8.29186 0.53046 0.30440 4.85327 -14.60000 28.66620 137.33776 8.61910 0.53046 0.30446 4.85129 - -14.60000 28.66620 140.76415 8.83725 0.36828 0.30449 4.85011 + -14.60000 28.66620 140.76415 8.83725 0.53046 0.30449 4.85011 -14.74000 30.09280 145.90643 9.16446 0.53046 0.30454 4.84855 -14.88000 31.51940 152.76688 9.60069 0.53046 0.30460 4.84676 -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 @@ -40815,84 +40951,84 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.77959 0.00000 0.78000 0.78000 330 0 3 + 0.77960 0.00000 0.78000 0.78000 330 0 3 78.00036 0.00000 78.00036 78.00036 1 100 A 78.00072 0.00000 78.00072 78.00072 1 100 A 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00207 0.00000 78.00207 78.00207 402 100 P + 78.00207 0.00000 78.00207 78.00208 402 100 P 78.00290 0.00000 78.00290 78.00290 402 100 P 78.00400 0.00000 78.00400 78.00400 402 100 P 78.00510 0.00000 78.00510 78.00510 402 100 P 78.00620 0.00000 78.00620 78.00620 402 100 P - 78.00703 0.00000 78.00703 78.00703 402 100 P - 78.00732 0.00000 78.00732 78.00732 402 100 P + 78.00702 0.00000 78.00702 78.00703 402 100 P + 78.00732 0.00000 78.00732 78.00733 402 100 P 78.00740 0.00000 78.00740 78.00740 402 100 P 78.00750 0.00000 78.00750 78.00750 402 100 P 78.00760 0.00000 78.00760 78.00760 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 78.00778 0.00000 78.00778 78.00778 402 100 P - 101.98486 0.00000 411.10170 40.39621 110 25 1 - 105.64687 0.00000 414.84519 40.76406 110 25 1 - 109.18554 0.00000 419.83650 41.25452 110 26 1 - 112.51367 0.00000 424.82781 41.74498 110 26 1 - 115.63728 0.00000 429.81912 42.23545 110 27 1 - 118.46916 0.00000 433.56260 42.60329 110 27 1 - 58.09276 66.90000 83.46404 8.23745 220 70 2 - 60.13075 66.99810 83.90499 8.24478 220 72 2 - 60.47734 67.09620 84.49291 8.30255 220 72 2 - 60.81836 67.19430 85.08083 8.36032 220 71 2 - 61.15384 67.29240 85.66876 8.41810 220 71 2 - 61.47526 67.39050 86.10970 8.46142 220 71 2 - 20.73994 67.39050 53.16020 12.25326 110 39 1 - 26.95084 68.28321 53.28529 12.52579 220 51 2 - 27.01927 69.17592 53.67411 12.88916 220 50 2 - 27.14287 70.06863 54.23393 13.25253 220 50 2 - 26.89503 70.96134 54.90361 13.61590 110 49 1 - 26.55143 71.85405 55.45470 13.88842 110 48 1 - 28.02434 71.85405 55.84214 15.80822 220 50 2 - 26.19835 72.74676 56.44708 14.34263 110 46 1 - 25.82227 73.63947 57.28575 14.70600 110 45 1 - 25.42994 74.53218 58.15503 15.06937 110 44 1 - 25.02305 75.42489 59.04829 15.43274 110 42 1 - 24.59820 76.31760 59.73052 15.70527 110 41 1 - 20.34344 76.31760 40.77271 16.03504 110 50 1 - 18.57959 80.29860 37.12819 14.39553 220 50 2 - 16.19846 84.27960 32.30543 12.20951 220 50 2 - 13.82945 88.26060 27.51836 10.02349 220 50 2 - 11.58701 92.24160 22.75954 7.83747 220 51 2 - 9.92070 96.22260 19.20478 6.19796 220 52 2 - 30.89328 96.22260 38.54151 4.04417 330 80 3 - 33.29562 97.59600 43.70980 4.61174 220 76 2 - 34.91471 98.96940 50.55187 5.36850 220 69 2 - 34.77063 100.34280 57.35548 6.12526 220 61 2 - 36.64989 101.71620 64.13881 6.88202 220 57 2 - 37.84352 103.08960 69.22085 7.44959 220 55 2 - 39.89020 103.08960 72.60831 7.82797 220 55 2 - 40.30405 104.46300 77.69108 8.39554 220 52 2 - 41.73290 105.83640 84.47328 9.15230 110 49 1 - 39.21602 107.20980 91.26387 9.90906 110 43 1 - 36.66226 108.58320 98.06401 10.66582 110 37 1 - 33.97770 109.95660 103.17026 11.23339 110 33 1 - 34.20451 109.95660 106.57763 11.61177 110 32 1 - 31.51869 111.33000 111.69332 12.17934 110 28 1 - 28.95176 112.70340 118.52150 12.93610 110 24 1 - 26.39574 114.07680 125.35771 13.69286 110 21 1 - 23.85608 115.45020 132.20113 14.44961 110 18 1 - 21.33553 116.82360 137.33776 15.01718 110 16 1 - 18.87217 116.82360 140.76415 10.68859 110 13 1 - 21.17260 118.19700 145.90643 15.96313 110 15 1 - 20.83253 119.57040 152.76688 16.71989 110 14 1 - 20.50297 120.94380 159.63169 17.47665 110 13 1 - 20.18238 122.31720 166.50031 18.23341 110 12 1 - 19.68003 123.69060 171.65390 18.80098 110 11 1 - 20.05841 123.69060 175.09065 19.17936 110 11 1 - 19.56163 125.06400 180.24715 19.74693 110 0 1 - 19.25796 126.43740 187.12459 20.50369 110 0 1 - 18.95702 127.81080 194.00428 21.26045 110 0 1 - 18.65762 129.18420 200.88593 22.01721 110 0 1 - 18.16940 130.55760 206.04826 22.58478 110 0 1 + 78.00777 0.00000 78.00777 78.00778 402 0 P + 101.99100 0.00000 411.10170 40.39621 110 25 1 + 105.65340 0.00000 414.84519 40.76406 110 25 1 + 109.19246 0.00000 419.83650 41.25452 110 26 1 + 112.52097 0.00000 424.82781 41.74498 110 26 1 + 115.64495 0.00000 429.81912 42.23545 110 27 1 + 118.47719 0.00000 433.56260 42.60329 110 27 1 + 59.80730 66.90000 83.46404 8.20145 220 72 2 + 60.15117 66.99810 83.90499 8.24478 220 72 2 + 60.49799 67.09620 84.49291 8.30255 220 72 2 + 60.83924 67.19430 85.08083 8.36032 220 72 2 + 61.17496 67.29240 85.66876 8.41810 220 71 2 + 61.49662 67.39050 86.10970 8.46142 220 71 2 + 20.73908 67.39050 53.16020 12.25326 110 39 1 + 26.96108 68.28321 53.28529 12.52579 220 51 2 + 27.02903 69.17592 53.67411 12.88916 220 50 2 + 27.15210 70.06863 54.23393 13.25253 220 50 2 + 26.92684 70.96134 54.90361 13.61590 110 49 1 + 26.58102 71.85405 55.45470 13.88842 110 48 1 + 26.59120 71.85405 55.84214 14.07011 110 48 1 + 26.22556 72.74676 56.44708 14.34263 110 46 1 + 25.84692 73.63947 57.28575 14.70600 110 45 1 + 25.45189 74.53218 58.15503 15.06937 110 44 1 + 25.04217 75.42489 59.04829 15.43274 110 42 1 + 24.61436 76.31760 59.73052 15.70527 110 41 1 + 20.34073 76.31760 40.77271 16.03504 110 50 1 + 18.57904 80.29860 37.12819 14.39553 220 50 2 + 16.19788 84.27960 32.30543 12.20951 220 50 2 + 13.82886 88.26060 27.51836 10.02349 220 50 2 + 11.58714 92.24160 22.75954 7.83747 220 51 2 + 9.92082 96.22260 19.20478 6.19796 220 52 2 + 30.89372 96.22260 38.54151 4.04417 330 80 3 + 33.29690 97.59600 43.70980 4.61174 220 76 2 + 34.94700 98.96940 50.55187 5.36850 220 69 2 + 34.77147 100.34280 57.35548 6.12526 220 61 2 + 36.65047 101.71620 64.13881 6.88202 220 57 2 + 37.84380 103.08960 69.22085 7.44959 220 55 2 + 39.13721 103.08960 72.60831 7.82797 220 54 2 + 40.30398 104.46300 77.69108 8.39554 220 52 2 + 41.73133 105.83640 84.47328 9.15230 110 49 1 + 39.21302 107.20980 91.26387 9.90906 110 43 1 + 36.65776 108.58320 98.06401 10.66582 110 37 1 + 33.97165 109.95660 103.17026 11.23339 110 33 1 + 34.19847 109.95660 106.57763 11.61177 110 32 1 + 31.51108 111.33000 111.69332 12.17934 110 28 1 + 28.94257 112.70340 118.52150 12.93610 110 24 1 + 26.38498 114.07680 125.35771 13.69286 110 21 1 + 23.84375 115.45020 132.20113 14.44961 110 18 1 + 21.29358 116.82360 137.33776 15.01718 110 16 1 + 21.67196 116.82360 140.76415 15.39556 110 15 1 + 21.12939 118.19700 145.90643 15.96313 110 14 1 + 20.78820 119.57040 152.76688 16.71989 110 14 1 + 20.45764 120.94380 159.63169 17.47665 110 13 1 + 20.13614 122.31720 166.50031 18.23341 110 12 1 + 19.63295 123.69060 171.65390 18.80098 110 11 1 + 20.01133 123.69060 175.09065 19.17936 110 11 1 + 19.51374 125.06400 180.24715 19.74693 110 0 1 + 19.20928 126.43740 187.12459 20.50369 110 0 1 + 18.90757 127.81080 194.00428 21.26045 110 0 1 + 18.60742 129.18420 200.88593 22.01721 110 0 1 + 18.11845 130.55760 206.04826 22.58478 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40906,10 +41042,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 30.684 'Grind' - -11.09 23.700 'Hydrobiaklei' - -12.00 7.533 'Basisveen' - -12.50 98.680 'Eerste zandlaag' + -10.79 30.695 'Grind' + -11.09 23.651 'Hydrobiaklei' + -12.00 7.532 'Basisveen' + -12.50 98.755 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40926,9 +41062,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 10.74 'Grind' - -11.09 4.31 'Hydrobiaklei' + -11.09 4.30 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 32.78 'Eerste zandlaag' + -12.50 32.81 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -41163,10 +41299,10 @@ PartialFactorSet=10 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.87 : Percentage mobilized resistance left - 15.23 : Percentage mobilized resistance right - 253.98 : Effective left - 299.56 : Effective right + 12.82 : Percentage mobilized resistance left + 15.18 : Percentage mobilized resistance right + 252.98 : Effective left + 298.56 : Effective right 1096.84 : Water pressure left 1051.23 : Water pressure right 1973.32 : Max effective resistance left @@ -41175,8 +41311,8 @@ PartialFactorSet=10 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 65.21 : Vertical force left - 75.23 : Vertical force right + 64.84 : Vertical force left + 74.86 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -41185,10 +41321,10 @@ PartialFactorSet=10 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --65.21 : Active force -75.23 : Passive force --65.21 : Plugged active force -75.23 : Plugged passive force +-64.84 : Active force +74.86 : Passive force +-64.84 : Plugged active force +74.86 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -41208,210 +41344,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.85731 - 0.00000 0.00000 15.65691 - 0.00000 0.00000 15.45652 - 0.00000 0.00000 15.25612 - 0.00000 0.00000 15.05573 - 0.00000 0.00000 14.85533 - 0.00000 0.00000 14.85533 - 0.00000 0.00000 14.65493 - 0.00000 0.00000 14.45454 - 0.00000 0.00000 14.25414 - 0.00000 0.00000 14.05375 - 0.00000 0.00000 13.85335 - 0.00000 0.00000 13.85335 - 0.00000 -0.00049 13.82978 - -0.00001 -0.00196 13.80620 - -0.00004 -0.00441 13.78263 - -0.00010 -0.00785 13.75905 - -0.00020 -0.01226 13.73547 - -0.00020 -0.01226 13.73547 - -0.00163 -0.04905 13.61759 - -0.00552 -0.11036 13.49971 - -0.01308 -0.19620 13.38183 - -0.02555 -0.30656 13.26396 - -0.04415 -0.44145 13.14608 - -0.04415 -0.44145 13.14608 - -0.08226 -0.64746 12.98105 - -0.13479 -0.85347 12.81603 - -0.20174 -1.05948 12.65101 - -0.28312 -1.26549 12.48601 - -0.37891 -1.47150 12.32103 - -0.37891 -1.47150 12.32103 - -0.54078 -1.76580 12.08538 - -0.73207 -2.06010 11.84980 - -0.95280 -2.35440 11.61431 - -1.20295 -2.64870 11.37895 - -1.48254 -2.94300 11.14374 - -1.48254 -2.94300 11.14374 - -1.79155 -3.23730 10.90871 - -2.13000 -3.53160 10.67390 - -2.49787 -3.82590 10.43937 - -2.89518 -4.12020 10.20515 - -3.32191 -4.41450 9.97130 - -3.32191 -4.41450 9.97130 - -3.71244 -4.66760 9.77052 - -4.12474 -4.92070 9.57008 - -4.55880 -5.17379 9.37003 - -5.01463 -5.42689 9.17041 - -5.49223 -5.67999 8.97125 - -5.49223 -5.67999 8.97125 - -6.15887 -6.01549 8.70804 - -6.86376 -6.35099 8.44585 - -7.60690 -6.68650 8.18477 - -8.38828 -7.02200 7.92496 - -9.20791 -7.35750 7.66651 - -9.20791 -7.35750 7.66651 - -9.80593 -7.59294 7.48603 - -10.42278 -7.82838 7.30634 - -11.05847 -8.06382 7.12750 - -11.71299 -8.29926 6.94955 - -12.38635 -8.53470 6.77254 - -12.38635 -8.53470 6.77254 - -12.55763 -8.59356 6.72844 - -12.73009 -8.65242 6.68441 - -12.90373 -8.71128 6.64043 - -13.07854 -8.77014 6.59653 - -13.25454 -8.82900 6.55269 - -13.25454 -8.82900 6.55269 - -13.97027 -9.06444 6.37800 - -14.70485 -9.29988 6.20445 - -15.45825 -9.53532 6.03207 - -16.23050 -9.77076 5.86095 - -17.02158 -10.00620 5.69114 - -17.02158 -10.00620 5.69114 - -17.22215 -10.04488 5.64889 - -17.42324 -10.06325 5.60674 - -17.62468 -10.08138 5.56467 - -17.82649 -10.09926 5.52269 - -18.02865 -10.11693 5.48080 - -18.02865 -10.11693 5.48080 - -19.04457 -10.20068 5.27274 - -20.06861 -10.27906 5.06708 - -21.10018 -10.35131 4.86395 - -22.13867 -10.41743 4.66347 - -23.18348 -10.47818 4.46579 - -23.18353 -10.47772 4.46579 - -24.23399 -10.53081 4.27102 - -25.28958 -10.58046 4.07931 - -26.35003 -10.62857 3.89078 - -27.41526 -10.67584 3.70557 - -28.48519 -10.72279 3.52382 - -28.48517 -10.72271 3.52382 - -29.99070 -10.78496 3.27542 - -31.50491 -10.84622 3.03443 - -33.02754 -10.90523 2.80122 - -34.55826 -10.96177 2.57616 - -36.09676 -11.01670 2.35964 - -36.09670 -11.01728 2.35964 - -37.45245 -9.83193 2.16658 - -38.64970 -8.57025 1.98150 - -39.67615 -7.20326 1.80461 - -40.51779 -5.72646 1.63613 - -41.16102 -4.15728 1.47628 - -41.16347 -4.14416 1.47628 - -41.59078 -2.41708 1.32525 - -41.78765 -0.59162 1.18308 - -41.74186 1.29697 1.04976 - -41.45267 3.13396 0.92528 - -40.93526 4.78104 0.80963 - -40.93466 4.82833 0.80963 - -40.02131 7.31825 0.68748 - -38.76691 9.39864 0.57660 - -37.23079 11.08419 0.47656 - -35.47182 12.38697 0.38694 - -33.54626 13.30499 0.30733 - -33.54772 13.29596 0.30733 - -31.51068 13.91997 0.23721 - -29.39712 14.31385 0.17596 - -27.24232 14.47718 0.12297 - -25.07833 14.44211 0.07765 - -22.93254 14.23830 0.03940 - -22.93263 14.22809 0.03940 - -20.82972 13.88303 0.00759 - -18.78741 13.42133 -0.01835 - -16.82142 12.86563 -0.03899 - -14.94426 12.23624 -0.05486 - -13.16556 11.55118 -0.06653 - -13.16577 11.54486 -0.06653 - -11.49357 10.82024 -0.07453 - -9.93180 10.06980 -0.07930 - -8.48338 9.30583 -0.08123 - -7.14950 8.53892 -0.08076 - -5.92994 7.77794 -0.07827 - -5.93020 7.77607 -0.07827 - -5.91466 7.76596 -0.07822 - -5.89914 7.75585 -0.07818 - -5.88363 7.74575 -0.07813 - -5.86815 7.73564 -0.07808 - -5.85269 7.72554 -0.07804 - -5.85269 7.72553 -0.07804 - -5.56226 7.56064 -0.07710 - -5.27807 7.39642 -0.07607 - -5.00012 7.23294 -0.07494 - -4.72836 7.07027 -0.07371 - -4.46277 6.90846 -0.07240 - -4.46274 6.90818 -0.07240 - -3.66413 6.40366 -0.06777 - -2.92544 5.90985 -0.06247 - -2.24529 5.42806 -0.05663 - -1.62218 4.95934 -0.05037 - -1.05449 4.50443 -0.04382 - -1.05451 4.50427 -0.04382 - -0.79094 4.28218 -0.04047 - -0.54058 4.06372 -0.03708 - -0.30322 3.84893 -0.03367 - -0.07863 3.63783 -0.03025 - 0.13340 3.43042 -0.02682 - 0.13339 3.43044 -0.02682 - 0.43151 3.12295 -0.02164 - 0.70203 2.82390 -0.01650 - 0.94571 2.53321 -0.01143 - 1.16332 2.25074 -0.00646 - 1.35559 1.97629 -0.00162 - 1.35559 1.97639 -0.00162 - 1.52325 1.70980 0.00309 - 1.66700 1.45076 0.00763 - 1.78751 1.19904 0.01201 - 1.88544 0.95432 0.01620 - 1.96140 0.71630 0.02019 - 1.96140 0.71641 0.02019 - 2.01931 0.44224 0.02434 - 2.04997 0.17159 0.02823 - 2.05374 -0.09567 0.03187 - 2.03094 -0.35976 0.03525 - 1.98188 -0.62101 0.03837 - 1.98180 -0.62025 0.03837 - 1.88714 -0.72717 0.04233 - 1.77950 -0.80601 0.04582 - 1.66260 -0.86014 0.04887 - 1.53967 -0.89275 0.05151 - 1.41350 -0.90685 0.05377 - 1.41352 -0.90575 0.05377 - 1.28667 -0.90403 0.05568 - 1.16101 -0.88908 0.05727 - 1.03824 -0.86317 0.05858 - 0.91974 -0.82835 0.05963 - 0.80663 -0.78648 0.06045 - 0.80665 -0.78585 0.06045 - 0.69989 -0.73846 0.06108 - 0.60007 -0.68703 0.06153 - 0.50766 -0.63275 0.06183 - 0.42298 -0.57666 0.06201 - 0.34624 -0.51966 0.06208 - 0.34625 -0.51938 0.06208 - 0.27754 -0.46212 0.06207 - 0.21684 -0.40523 0.06198 - 0.16404 -0.34916 0.06185 - 0.11902 -0.29428 0.06167 - 0.08157 -0.24087 0.06146 - 0.08158 -0.24080 0.06146 - 0.05152 -0.18899 0.06124 - 0.02858 -0.13895 0.06100 - 0.01252 -0.09074 0.06075 - 0.00309 -0.04441 0.06050 - 0.00000 0.00000 0.06025 + 0.00000 0.00000 15.87281 + 0.00000 0.00000 15.67228 + 0.00000 0.00000 15.47175 + 0.00000 0.00000 15.27122 + 0.00000 0.00000 15.07069 + 0.00000 0.00000 14.87015 + 0.00000 0.00000 14.87015 + 0.00000 0.00000 14.66962 + 0.00000 0.00000 14.46909 + 0.00000 0.00000 14.26856 + 0.00000 0.00000 14.06803 + 0.00000 0.00000 13.86750 + 0.00000 0.00000 13.86750 + 0.00000 -0.00049 13.84391 + -0.00001 -0.00196 13.82032 + -0.00004 -0.00441 13.79673 + -0.00010 -0.00785 13.77314 + -0.00020 -0.01226 13.74955 + -0.00020 -0.01226 13.74955 + -0.00163 -0.04905 13.63159 + -0.00552 -0.11036 13.51363 + -0.01308 -0.19620 13.39567 + -0.02555 -0.30656 13.27771 + -0.04415 -0.44145 13.15975 + -0.04415 -0.44145 13.15975 + -0.08226 -0.64746 12.99461 + -0.13479 -0.85347 12.82948 + -0.20174 -1.05948 12.66436 + -0.28312 -1.26549 12.49925 + -0.37891 -1.47150 12.33415 + -0.37891 -1.47150 12.33415 + -0.54078 -1.76580 12.09834 + -0.73207 -2.06010 11.86260 + -0.95280 -2.35440 11.62696 + -1.20295 -2.64870 11.39143 + -1.48254 -2.94300 11.15606 + -1.48254 -2.94300 11.15606 + -1.79155 -3.23730 10.92087 + -2.13000 -3.53160 10.68591 + -2.49787 -3.82590 10.45122 + -2.89518 -4.12020 10.21685 + -3.32191 -4.41450 9.98284 + -3.32191 -4.41450 9.98284 + -3.71244 -4.66760 9.78192 + -4.12474 -4.92070 9.58134 + -4.55880 -5.17379 9.38116 + -5.01463 -5.42689 9.18140 + -5.49223 -5.67999 8.98211 + -5.49223 -5.67999 8.98211 + -6.15887 -6.01549 8.71872 + -6.86376 -6.35099 8.45634 + -7.60690 -6.68650 8.19509 + -8.38828 -7.02200 7.93509 + -9.20791 -7.35750 7.67646 + -9.20791 -7.35750 7.67646 + -9.80593 -7.59294 7.49585 + -10.42278 -7.82838 7.31604 + -11.05847 -8.06382 7.13707 + -11.71299 -8.29926 6.95899 + -12.38635 -8.53470 6.78185 + -12.38635 -8.53470 6.78185 + -12.55763 -8.59356 6.73772 + -12.73009 -8.65242 6.69366 + -12.90373 -8.71128 6.64965 + -13.07854 -8.77014 6.60572 + -13.25454 -8.82900 6.56184 + -13.25454 -8.82900 6.56184 + -13.97027 -9.06444 6.38703 + -14.70485 -9.29988 6.21335 + -15.45825 -9.53532 6.04085 + -16.23050 -9.77076 5.86960 + -17.02158 -10.00620 5.69966 + -17.02158 -10.00620 5.69966 + -17.22215 -10.04488 5.65738 + -17.42324 -10.06325 5.61520 + -17.62468 -10.08138 5.57310 + -17.82649 -10.09926 5.53109 + -18.02865 -10.11693 5.48917 + -18.02865 -10.11693 5.48917 + -19.04457 -10.20068 5.28095 + -20.06861 -10.27906 5.07513 + -21.10018 -10.35131 4.87183 + -22.13867 -10.41743 4.67120 + -23.18348 -10.47818 4.47336 + -23.18353 -10.47772 4.47336 + -24.23399 -10.53081 4.27843 + -25.28957 -10.58039 4.08656 + -26.35002 -10.62836 3.89788 + -27.41522 -10.67551 3.71251 + -28.48511 -10.72233 3.53060 + -28.48509 -10.72225 3.53060 + -29.99054 -10.78432 3.28198 + -31.50465 -10.84541 3.04076 + -33.02715 -10.90426 2.80733 + -34.55773 -10.96064 2.58205 + -36.09606 -11.01542 2.36531 + -36.09600 -11.01600 2.36531 + -37.45152 -9.82955 2.17204 + -38.64835 -8.56616 1.98675 + -39.67416 -7.19753 1.80965 + -40.51495 -5.71915 1.64097 + -41.15714 -4.14846 1.48091 + -41.15959 -4.13532 1.48091 + -41.58566 -2.40680 1.32967 + -41.78110 -0.57996 1.18729 + -41.73364 1.31165 1.05376 + -41.44214 3.15541 0.92907 + -40.92138 4.81110 0.81320 + -40.92078 4.85851 0.81320 + -40.01408 7.23805 0.69080 + -38.77104 9.32798 0.57966 + -37.24458 11.02540 0.47937 + -35.49356 12.33905 0.38951 + -33.57454 13.26460 0.30965 + -33.57601 13.25557 0.30965 + -31.54456 13.88614 0.23930 + -29.43545 14.28801 0.17782 + -27.28397 14.45844 0.12462 + -25.12230 14.42963 0.07910 + -22.97796 14.23129 0.04066 + -22.97804 14.22106 0.04066 + -20.87582 13.88073 0.00868 + -18.83355 13.42307 -0.01743 + -16.86704 12.87077 -0.03822 + -14.98889 12.24420 -0.05424 + -13.20883 11.56143 -0.06603 + -13.20903 11.55509 -0.06603 + -11.53517 10.83227 -0.07414 + -9.97149 10.08320 -0.07901 + -8.52098 9.32021 -0.08104 + -7.18491 8.55393 -0.08064 + -5.96308 7.79328 -0.07822 + -5.96334 7.79141 -0.07822 + -5.94776 7.78130 -0.07817 + -5.93221 7.77119 -0.07813 + -5.91668 7.76109 -0.07809 + -5.90117 7.75099 -0.07804 + -5.88567 7.74089 -0.07799 + -5.88567 7.74087 -0.07799 + -5.59466 7.57568 -0.07708 + -5.30991 7.41148 -0.07606 + -5.03138 7.24800 -0.07494 + -4.75905 7.08532 -0.07373 + -4.49289 6.92349 -0.07244 + -4.49286 6.92321 -0.07244 + -3.69245 6.41858 -0.06784 + -2.95198 5.92457 -0.06258 + -2.27008 5.44252 -0.05677 + -1.64525 4.97347 -0.05053 + -1.07590 4.51819 -0.04401 + -1.07591 4.51802 -0.04401 + -0.81152 4.29572 -0.04067 + -0.56036 4.07705 -0.03729 + -0.32220 3.86203 -0.03389 + -0.09684 3.65070 -0.03047 + 0.11596 3.44306 -0.02704 + 0.11595 3.44308 -0.02704 + 0.41520 3.13522 -0.02187 + 0.68682 2.83578 -0.01674 + 0.93157 2.54470 -0.01167 + 1.15020 2.26183 -0.00671 + 1.34347 1.98699 -0.00186 + 1.34346 1.98708 -0.00186 + 1.51208 1.72009 0.00285 + 1.65675 1.46066 0.00739 + 1.77814 1.20854 0.01177 + 1.87692 0.96344 0.01596 + 1.95369 0.72503 0.01996 + 1.95369 0.72514 0.01996 + 2.01244 0.45047 0.02411 + 2.04392 0.17962 0.02801 + 2.04848 -0.08783 0.03165 + 2.02646 -0.35212 0.03504 + 1.97815 -0.61354 0.03818 + 1.97807 -0.61278 0.03818 + 1.88460 -0.71846 0.04214 + 1.77809 -0.79865 0.04564 + 1.66214 -0.85402 0.04871 + 1.53998 -0.88777 0.05136 + 1.41443 -0.90292 0.05364 + 1.41445 -0.90182 0.05364 + 1.28808 -0.90104 0.05556 + 1.16278 -0.88693 0.05717 + 1.04026 -0.86177 0.05849 + 0.92191 -0.82761 0.05955 + 0.80886 -0.78630 0.06038 + 0.80888 -0.78567 0.06038 + 0.70211 -0.73876 0.06102 + 0.60222 -0.68773 0.06148 + 0.50968 -0.63377 0.06179 + 0.42485 -0.57793 0.06198 + 0.34791 -0.52112 0.06206 + 0.34792 -0.52084 0.06206 + 0.27901 -0.46369 0.06205 + 0.21807 -0.40686 0.06198 + 0.16505 -0.35078 0.06185 + 0.11980 -0.29583 0.06168 + 0.08215 -0.24230 0.06148 + 0.08216 -0.24223 0.06148 + 0.05191 -0.19024 0.06127 + 0.02881 -0.13997 0.06103 + 0.01263 -0.09147 0.06079 + 0.00311 -0.04481 0.06055 + 0.00000 0.00000 0.06031 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -41721,7 +41857,7 @@ Lambda passive -5.42000 0.59280 2.93770 0.00000 0.93623 0.00000 4.95564 -5.56000 0.64740 3.02352 0.00000 0.91978 0.00000 4.67026 -5.70000 0.70200 3.08789 0.00000 0.90589 0.00000 4.48593 - -5.70000 0.70200 16.00809 0.00000 0.90589 0.00000 15.47161 + -5.70000 0.70200 16.00809 0.00000 0.86905 0.00000 15.47161 -5.83000 2.03270 17.92499 0.00000 0.75296 0.00000 8.81832 -5.96000 3.36340 20.64691 0.00000 0.73173 0.00000 6.13870 -6.09000 4.69410 23.42791 0.00000 0.72253 0.00000 4.99093 @@ -41733,7 +41869,7 @@ Lambda passive -6.74000 11.34760 37.47882 0.00000 0.70891 0.00000 3.30280 -6.87000 12.67830 40.29419 0.00000 0.70790 0.00000 3.17820 -7.00000 14.00900 42.40579 0.00000 0.70708 0.00000 3.10067 - -7.00000 14.00900 47.14848 0.00000 0.70708 0.00000 3.29534 + -7.00000 14.00900 47.14848 0.00000 0.59738 0.00000 3.29534 -7.14950 15.20350 49.42915 0.00000 0.58331 0.00000 3.25117 -7.29900 16.39801 52.69103 0.00000 0.58287 0.00000 3.21326 -7.44850 17.59251 56.10333 0.00000 0.58250 0.00000 3.18905 @@ -41763,7 +41899,7 @@ Lambda passive -9.99600 37.94704 118.52034 15.09101 0.57976 0.39769 3.12331 -9.99800 37.96302 118.57003 15.09738 0.57975 0.39769 3.12330 -10.00000 37.97900 118.60727 15.10214 0.57975 0.39769 3.12330 - -10.00000 37.97900 95.01958 14.30585 0.57975 0.37617 2.49853 + -10.00000 37.97900 95.01958 14.30585 0.68945 0.37617 2.49853 -10.03800 38.18382 95.33121 14.38655 0.70215 0.37677 2.49664 -10.07600 38.38864 95.74702 14.49412 0.70214 0.37756 2.49415 -10.11400 38.59346 96.16319 14.60167 0.70212 0.37835 2.49170 @@ -41793,13 +41929,13 @@ Lambda passive -11.81800 47.77802 115.07736 19.41113 0.70158 0.40628 2.40858 -11.90900 48.26851 116.09690 19.66761 0.70155 0.40746 2.40523 -12.00000 48.75900 116.86197 19.85997 0.70153 0.40834 2.40277 - -12.00000 48.75900 87.41678 28.32640 0.70153 0.57160 1.76399 + -12.00000 48.75900 87.41678 28.32640 0.73837 0.57160 1.76399 -12.10000 51.94800 91.30292 29.84799 0.74341 0.57457 1.75758 -12.20000 55.13700 96.47626 31.87681 0.74328 0.57814 1.74976 -12.30000 58.32600 101.63981 33.90568 0.74316 0.58131 1.74262 -12.40000 61.51500 106.79366 35.93458 0.74306 0.58416 1.73606 -12.50000 64.70400 110.65304 37.45628 0.74297 0.58611 1.73148 - -12.50000 64.70400 340.89527 19.53058 0.74297 0.30019 5.23965 + -12.50000 64.70400 340.89527 19.53058 0.49577 0.30019 5.23965 -12.64000 66.13060 340.57469 19.87329 0.47119 0.30052 5.15003 -12.78000 67.55720 342.66319 20.32853 0.47117 0.30091 5.07219 -12.92000 68.98380 346.39185 20.78194 0.47114 0.30126 5.02135 @@ -41931,124 +42067,124 @@ Status character 2.35842 37.76850 2.35842 0.27702 402 100 P 2.38907 37.76850 2.38907 0.30110 402 100 P 2.43504 38.74950 2.43504 0.31797 402 100 P - 2.45801 39.73050 2.49634 0.34687 330 98 3 - 2.46593 40.71150 2.55764 0.37578 330 96 3 - 2.47448 41.69250 2.61894 0.40468 330 94 3 - 2.47264 42.67350 2.66492 0.42374 330 93 3 - 2.49913 42.67350 2.70170 0.44739 330 93 3 - 2.49769 44.04690 2.76606 0.47406 330 90 3 - 2.51309 45.42030 2.85188 0.51453 330 88 3 - 2.52995 46.79370 2.93770 0.55500 330 86 3 - 2.54834 48.16710 3.02352 0.59546 330 84 3 - 2.55299 49.54050 3.08789 0.62357 330 83 3 - 11.86860 49.54050 16.00809 0.93730 220 74 2 - 12.25357 50.31580 17.92499 1.53055 220 68 2 - 13.04285 51.09110 20.64691 2.46110 220 63 2 - 13.87373 51.86640 23.42791 3.39165 220 59 2 - 14.73239 52.64170 26.22853 4.32220 220 56 2 - 15.29482 53.41700 28.33447 5.01518 220 54 2 - 15.93551 53.41700 29.74000 5.49032 220 54 2 - 16.52093 54.19230 31.84964 6.18330 220 52 2 - 17.44909 54.96760 34.66381 7.11385 220 50 2 - 17.49224 55.74290 37.47882 8.04440 110 47 1 - 17.30246 56.51820 40.29419 8.97495 110 43 1 - 16.95692 57.29350 42.40579 9.67027 110 40 1 - 21.04663 57.29350 47.14848 10.11666 110 45 1 - 18.14924 58.76009 49.42915 8.86830 110 37 1 - 17.34202 60.22669 52.69103 9.55798 110 33 1 - 16.68120 61.69329 56.10333 10.24767 110 30 1 - 16.16109 63.15988 59.60370 10.93735 110 27 1 - 15.60221 64.62648 62.26597 11.45327 110 25 1 - 15.94974 64.62648 64.05543 11.80081 110 25 1 - 15.51902 66.09307 66.75644 12.31672 110 23 1 - 15.38180 67.55967 70.37985 13.00641 110 22 1 - 15.35620 69.02626 74.02365 13.69610 110 21 1 - 15.43409 70.49286 77.68288 14.38578 110 20 1 - 15.43390 71.95945 80.43496 14.90201 110 19 1 - 15.78082 71.95945 82.27306 15.24892 110 19 1 - 15.86766 73.42605 85.03447 15.76515 110 19 1 - 16.20708 74.89264 88.72236 16.45484 110 0 1 - 16.61819 76.35924 92.41622 17.14452 110 0 1 - 17.09354 77.82583 96.11494 17.83421 110 0 1 - 17.45242 79.29243 98.89154 18.35063 110 0 1 - 17.79895 79.29243 100.74377 18.69716 110 0 1 - 18.20740 80.75902 103.52367 19.21358 110 0 1 - 18.83277 82.22561 107.23244 19.90326 110 0 1 - 19.49628 83.69221 110.94353 20.59295 110 0 1 - 20.19244 85.15881 114.65657 21.28263 110 0 1 - 20.74260 86.62540 117.44241 21.79919 110 0 1 - 20.91805 86.62540 118.38361 21.97464 110 0 1 - 20.92557 86.64502 118.42091 21.98155 110 0 1 - 20.93541 86.66464 118.47063 21.99077 110 0 1 - 20.94525 86.68426 118.52034 22.00000 110 0 1 - 20.95510 86.70388 118.57003 22.00923 110 0 1 - 20.96264 86.72350 118.60727 22.01614 110 0 1 - 21.34581 86.72350 95.01958 22.04814 110 0 1 - 26.11689 87.09628 95.33121 26.81081 110 0 1 - 26.26944 87.46906 95.74702 26.95404 110 0 1 - 26.42285 87.84184 96.16319 27.09727 110 0 1 - 26.57708 88.21462 96.57970 27.24050 110 0 1 - 26.69614 88.58740 96.89230 27.34778 110 0 1 - 26.84562 88.58740 97.32590 27.49726 110 0 1 - 27.22612 89.76460 98.31516 27.83604 110 0 1 - 27.72613 90.94180 99.63663 28.28834 110 0 1 - 28.23099 92.11900 100.96087 28.74064 110 0 1 - 28.73961 93.29620 102.28764 29.19295 110 0 1 - 29.13738 94.47340 103.28420 29.53176 110 0 1 - 29.30762 94.47340 103.78297 29.70200 110 0 1 - 29.50717 95.06200 104.28208 29.87140 110 0 1 - 29.76379 95.65060 104.94798 30.09755 110 0 1 - 30.02064 96.23920 105.61439 30.32370 110 0 1 - 30.27761 96.82780 106.28128 30.54986 110 0 1 - 30.47788 97.41640 106.78174 30.71927 110 0 1 - 30.62067 97.41640 107.20178 30.86206 110 0 1 - 30.92426 98.30911 107.96166 31.11900 110 0 1 - 31.31349 99.20182 108.97564 31.46200 110 0 1 - 31.70209 100.09453 109.99055 31.80500 110 0 1 - 32.08982 100.98724 111.00633 32.14799 110 0 1 - 32.39042 101.87995 111.76869 32.40495 110 0 1 - 32.56249 101.87995 112.27719 32.57703 110 0 1 - 32.86179 102.77266 113.04034 32.83399 110 29 1 - 33.24569 103.66537 114.05849 33.17699 110 29 1 - 33.62805 104.55808 115.07736 33.51998 110 29 1 - 34.00875 105.45079 116.09690 33.86298 110 29 1 - 34.30165 106.34350 116.86197 34.11995 110 29 1 - 34.85612 106.34350 87.41678 34.76527 110 40 1 - 38.72801 104.32450 91.30292 38.61849 110 42 1 - 41.10915 102.30550 96.47626 40.98212 110 43 1 - 43.48914 100.28650 101.63981 43.34574 110 43 1 - 45.86799 98.26750 106.79366 45.70937 110 43 1 - 47.65335 96.24850 110.65304 47.48067 110 43 1 - 49.37406 96.24850 340.89527 48.33798 110 14 1 - 32.30289 97.62190 340.57469 31.16005 110 9 1 - 33.06769 98.99530 342.66319 31.83067 110 10 1 - 33.82067 100.36870 346.39185 32.50129 110 10 1 - 34.56261 101.74210 351.04356 33.17191 110 10 1 - 35.12626 103.11550 354.90949 33.67450 110 10 1 - 35.46230 103.11550 357.63285 34.01054 110 10 1 - 36.01651 104.48890 361.88335 34.51314 110 10 1 - 36.73016 105.86230 367.76522 35.18376 110 10 1 - 37.43605 107.23570 373.84331 35.85437 110 10 1 - 38.13500 108.60910 380.06841 36.52499 110 10 1 - 38.65983 109.98250 384.80983 37.02762 110 10 1 - 38.99581 109.98250 388.00277 37.36359 110 10 1 - 39.51531 111.35590 392.83243 37.86623 110 10 1 - 40.19813 112.72930 399.32877 38.53684 110 10 1 - 40.87691 114.10270 405.88178 39.20746 110 10 1 - 41.55226 115.47610 412.48108 39.87808 110 10 1 - 42.05683 116.84950 417.45500 40.38074 110 10 1 - 42.39275 116.84950 420.78228 40.71665 110 10 1 - 42.89508 118.22290 425.78811 41.21931 110 10 1 - 43.56352 119.59630 432.48443 41.88993 110 10 1 - 44.23046 120.96970 439.20353 42.56055 110 10 1 - 44.89627 122.34310 445.94208 43.23116 110 10 1 - 45.39335 123.71650 451.00664 43.73385 110 10 1 - 45.72922 123.71650 454.38808 44.06971 110 10 1 - 46.22582 125.08990 459.46710 44.57240 110 10 1 - 46.89002 126.46330 466.24940 45.24301 110 10 1 - 47.55398 127.83670 473.04269 45.91363 110 10 1 - 48.21782 129.21010 479.84562 46.58425 110 10 1 - 48.71372 130.58350 484.95322 47.08695 110 10 1 + 2.45937 39.73050 2.49634 0.34687 330 99 3 + 2.46726 40.71150 2.55764 0.37578 330 96 3 + 2.47578 41.69250 2.61894 0.40468 330 95 3 + 2.47391 42.67350 2.66492 0.42374 330 93 3 + 2.50040 42.67350 2.70170 0.44739 330 93 3 + 2.49892 44.04690 2.76606 0.47406 330 90 3 + 2.51428 45.42030 2.85188 0.51453 330 88 3 + 2.53109 46.79370 2.93770 0.55500 330 86 3 + 2.54944 48.16710 3.02352 0.59546 330 84 3 + 2.55405 49.54050 3.08789 0.62357 330 83 3 + 11.87211 49.54050 16.00809 0.89919 220 74 2 + 12.26697 50.31580 17.92499 1.53055 220 68 2 + 13.05575 51.09110 20.64691 2.46110 220 63 2 + 13.88611 51.86640 23.42791 3.39165 220 59 2 + 14.74426 52.64170 26.22853 4.32220 220 56 2 + 15.30619 53.41700 28.33447 5.01518 220 54 2 + 15.94687 53.41700 29.74000 5.49032 220 54 2 + 16.53179 54.19230 31.84964 6.18330 220 52 2 + 17.45943 54.96760 34.66381 7.11385 220 50 2 + 17.52824 55.74290 37.47882 8.04440 110 47 1 + 17.33655 56.51820 40.29419 8.97495 110 43 1 + 16.98907 57.29350 42.40579 9.67027 110 40 1 + 19.52529 57.29350 47.14848 8.54710 110 41 1 + 18.19407 58.76009 49.42915 8.86830 110 37 1 + 17.38343 60.22669 52.69103 9.55798 110 33 1 + 16.71921 61.69329 56.10333 10.24767 110 30 1 + 16.19575 63.15988 59.60370 10.93735 110 27 1 + 15.63359 64.62648 62.26597 11.45327 110 25 1 + 15.98112 64.62648 64.05543 11.80081 110 25 1 + 15.54724 66.09307 66.75644 12.31672 110 23 1 + 15.40700 67.55967 70.37985 13.00641 110 22 1 + 15.37851 69.02626 74.02365 13.69610 110 21 1 + 15.45366 70.49286 77.68288 14.38578 110 20 1 + 15.45091 71.95945 80.43496 14.90201 110 19 1 + 15.79782 71.95945 82.27306 15.24892 110 19 1 + 15.88227 73.42605 85.03447 15.76515 110 19 1 + 16.21948 74.89264 88.72236 16.45484 110 0 1 + 16.62855 76.35924 92.41622 17.14452 110 0 1 + 17.10203 77.82583 96.11494 17.83421 110 0 1 + 17.45921 79.29243 98.89154 18.35063 110 0 1 + 17.80574 79.29243 100.74377 18.69716 110 0 1 + 18.21266 80.75902 103.52367 19.21358 110 0 1 + 18.83665 82.22561 107.23244 19.90326 110 0 1 + 19.49894 83.69221 110.94353 20.59295 110 0 1 + 20.19402 85.15881 114.65657 21.28263 110 0 1 + 20.74324 86.62540 117.44241 21.79919 110 0 1 + 20.91868 86.62540 118.38361 21.97464 110 0 1 + 20.92619 86.64502 118.42091 21.98155 110 0 1 + 20.93602 86.66464 118.47063 21.99077 110 0 1 + 20.94585 86.68426 118.52034 22.00000 110 0 1 + 20.95569 86.70388 118.57003 22.00923 110 0 1 + 20.96321 86.72350 118.60727 22.01614 110 0 1 + 25.51813 86.72350 95.01958 26.22008 110 0 1 + 26.11713 87.09628 95.33121 26.81081 110 0 1 + 26.26953 87.46906 95.74702 26.95404 110 0 1 + 26.42281 87.84184 96.16319 27.09727 110 0 1 + 26.57692 88.21462 96.57970 27.24050 110 0 1 + 26.69585 88.58740 96.89230 27.34778 110 0 1 + 26.84533 88.58740 97.32590 27.49726 110 0 1 + 27.22547 89.76460 98.31516 27.83604 110 0 1 + 27.72515 90.94180 99.63663 28.28834 110 0 1 + 28.22975 92.11900 100.96087 28.74064 110 0 1 + 28.73814 93.29620 102.28764 29.19295 110 0 1 + 29.13571 94.47340 103.28420 29.53176 110 0 1 + 29.30595 94.47340 103.78297 29.70200 110 0 1 + 29.50542 95.06200 104.28208 29.87140 110 0 1 + 29.76196 95.65060 104.94798 30.09755 110 0 1 + 30.01874 96.23920 105.61439 30.32370 110 0 1 + 30.27565 96.82780 106.28128 30.54986 110 0 1 + 30.47587 97.41640 106.78174 30.71927 110 0 1 + 30.61866 97.41640 107.20178 30.86206 110 0 1 + 30.92218 98.30911 107.96166 31.11900 110 0 1 + 31.31136 99.20182 108.97564 31.46200 110 0 1 + 31.69992 100.09453 109.99055 31.80500 110 0 1 + 32.08763 100.98724 111.00633 32.14799 110 0 1 + 32.38822 101.87995 111.76869 32.40495 110 0 1 + 32.56030 101.87995 112.27719 32.57703 110 0 1 + 32.85959 102.77266 113.04034 32.83399 110 29 1 + 33.24351 103.66537 114.05849 33.17699 110 29 1 + 33.62589 104.55808 115.07736 33.51998 110 29 1 + 34.00662 105.45079 116.09690 33.86298 110 29 1 + 34.29956 106.34350 116.86197 34.11995 110 29 1 + 36.68056 106.34350 87.41678 36.59075 110 42 1 + 38.72698 104.32450 91.30292 38.61849 110 42 1 + 41.10815 102.30550 96.47626 40.98212 110 43 1 + 43.48818 100.28650 101.63981 43.34574 110 43 1 + 45.86706 98.26750 106.79366 45.70937 110 43 1 + 47.65246 96.24850 110.65304 47.48067 110 43 1 + 33.28558 96.24850 340.89527 32.25483 110 10 1 + 32.29789 97.62190 340.57469 31.16005 110 9 1 + 33.06304 98.99530 342.66319 31.83067 110 10 1 + 33.81639 100.36870 346.39185 32.50129 110 10 1 + 34.55870 101.74210 351.04356 33.17191 110 10 1 + 35.12272 103.11550 354.90949 33.67450 110 10 1 + 35.45875 103.11550 357.63285 34.01054 110 10 1 + 36.01332 104.48890 361.88335 34.51314 110 10 1 + 36.72732 105.86230 367.76522 35.18376 110 10 1 + 37.43356 107.23570 373.84331 35.85437 110 10 1 + 38.13283 108.60910 380.06841 36.52499 110 10 1 + 38.65797 109.98250 384.80983 37.02762 110 10 1 + 38.99394 109.98250 388.00277 37.36359 110 10 1 + 39.51374 111.35590 392.83243 37.86623 110 10 1 + 40.19684 112.72930 399.32877 38.53684 110 10 1 + 40.87589 114.10270 405.88178 39.20746 110 10 1 + 41.55149 115.47610 412.48108 39.87808 110 10 1 + 42.05630 116.84950 417.45500 40.38074 110 10 1 + 42.39222 116.84950 420.78228 40.71665 110 10 1 + 42.89478 118.22290 425.78811 41.21931 110 10 1 + 43.56344 119.59630 432.48443 41.88993 110 10 1 + 44.23060 120.96970 439.20353 42.56055 110 10 1 + 44.89661 122.34310 445.94208 43.23116 110 10 1 + 45.39389 123.71650 451.00664 43.73385 110 10 1 + 45.72976 123.71650 454.38808 44.06971 110 10 1 + 46.22655 125.08990 459.46710 44.57240 110 10 1 + 46.89094 126.46330 466.24940 45.24301 110 10 1 + 47.55509 127.83670 473.04269 45.91363 110 10 1 + 48.21912 129.21010 479.84562 46.58425 110 10 1 + 48.71522 130.58350 484.95322 47.08695 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -42063,12 +42199,12 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 4.286 'Hollandveen' - -5.70 19.850 'Oude Zeeklei' - -7.00 51.405 'Wadzand' - -10.00 60.224 'Hydrobiaklei' - -12.00 21.045 'Basisveen' - -12.50 142.749 'Eerste zandlaag' + -3.00 4.288 'Hollandveen' + -5.70 19.873 'Oude Zeeklei' + -7.00 51.346 'Wadzand' + -10.00 60.300 'Hydrobiaklei' + -12.00 21.136 'Basisveen' + -12.50 141.619 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -42087,10 +42223,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 3.61 'Oude Zeeklei' - -7.00 13.26 'Wadzand' - -10.00 10.94 'Hydrobiaklei' + -7.00 13.24 'Wadzand' + -10.00 10.96 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 47.42 'Eerste zandlaag' + -12.50 47.05 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -42415,7 +42551,7 @@ Lambda passive -5.42000 0.74880 3.18290 0.00000 0.74118 0.00000 4.25067 -5.56000 0.80340 3.26873 0.00000 0.74118 0.00000 4.06861 -5.70000 0.85800 3.33309 0.00000 0.74118 0.00000 3.94752 - -5.70000 0.85800 16.38179 0.00000 0.74118 0.00000 13.75841 + -5.70000 0.85800 16.38179 0.00000 0.70434 0.00000 13.75841 -5.83000 2.18870 18.31176 0.00000 0.69929 0.00000 8.36650 -5.96000 3.51940 21.02646 0.00000 0.69929 0.00000 5.97445 -6.09000 4.85010 23.79897 0.00000 0.69929 0.00000 4.90690 @@ -42427,7 +42563,7 @@ Lambda passive -6.74000 11.50360 37.82878 0.00000 0.69929 0.00000 3.28843 -6.87000 12.83430 40.64210 0.00000 0.69929 0.00000 3.16668 -7.00000 14.16500 42.75238 0.00000 0.69929 0.00000 3.09076 - -7.00000 14.16500 47.76726 0.00000 0.69929 0.00000 3.30258 + -7.00000 14.16500 47.76726 0.00000 0.58959 0.00000 3.30258 -7.14950 15.35950 50.02879 0.00000 0.57738 0.00000 3.25719 -7.29900 16.55401 53.27149 0.00000 0.57738 0.00000 3.21804 -7.44850 17.74851 56.66936 0.00000 0.57738 0.00000 3.19291 @@ -42457,7 +42593,7 @@ Lambda passive -9.99600 38.10304 119.01876 15.15315 0.57738 0.39769 3.12360 -9.99800 38.11902 119.06846 15.15952 0.57738 0.39769 3.12360 -10.00000 38.13500 119.10577 15.16428 0.57738 0.39769 3.12359 - -10.00000 38.13500 95.32658 14.38720 0.57738 0.37676 2.49636 + -10.00000 38.13500 95.32658 14.38720 0.68708 0.37676 2.49636 -10.03800 38.33982 95.63859 14.46788 0.69929 0.37736 2.49450 -10.07600 38.54464 96.05489 14.57544 0.69929 0.37814 2.49204 -10.11400 38.74946 96.47153 14.68297 0.69929 0.37892 2.48962 @@ -42487,13 +42623,13 @@ Lambda passive -11.81800 47.93402 115.39800 19.49228 0.69929 0.40665 2.40743 -11.90900 48.42451 116.41790 19.74877 0.69929 0.40783 2.40411 -12.00000 48.91500 117.18322 19.94112 0.69929 0.40869 2.40167 - -12.00000 48.91500 87.65681 28.42563 0.69929 0.57180 1.76328 + -12.00000 48.91500 87.65681 28.42563 0.73613 0.57180 1.76328 -12.10000 52.10400 91.54267 29.94721 0.74118 0.57476 1.75692 -12.20000 55.29300 96.71571 31.97603 0.74118 0.57830 1.74915 -12.30000 58.48200 101.87906 34.00490 0.74118 0.58146 1.74206 -12.40000 61.67100 107.03278 36.03380 0.74118 0.58429 1.73554 -12.50000 64.86000 110.89211 37.55550 0.74118 0.58623 1.73099 - -12.50000 64.86000 341.86602 19.57729 0.74118 0.30019 5.24201 + -12.50000 64.86000 341.86602 19.57729 0.49398 0.30019 5.24201 -12.64000 66.28660 341.51730 19.91990 0.47008 0.30051 5.15213 -12.78000 67.71320 343.57625 20.37503 0.47008 0.30090 5.07399 -12.92000 69.13980 347.28230 20.82837 0.47008 0.30125 5.02290 @@ -42635,7 +42771,7 @@ Status character 0.00000 49.73670 3.18290 0.55500 1 0 A 0.00000 51.11010 3.26873 0.59546 1 0 A 0.00000 52.48350 3.33309 0.62582 1 0 A - 0.00000 52.48350 16.38179 0.88251 1 0 A + 0.00000 52.48350 16.38179 0.83865 1 0 A 0.00000 53.25880 18.31176 1.53055 1 0 A 0.00000 54.03410 21.02646 2.46110 1 0 A 0.00000 54.80940 23.79897 3.39165 1 0 A @@ -42645,104 +42781,104 @@ Status character 0.00000 57.13530 32.20516 6.18330 1 0 A 0.00000 57.91060 35.01626 7.11385 1 0 A 0.00000 58.68590 37.82878 8.04440 1 0 A - 0.64744 59.46120 40.64210 8.97495 110 0 1 - 2.38621 60.23650 42.75238 9.67286 110 0 1 - 0.00000 60.23650 47.76726 10.11433 1 0 A + 0.61336 59.46120 40.64210 8.97495 110 0 1 + 2.35407 60.23650 42.75238 9.67286 110 0 1 + 0.00000 60.23650 47.76726 8.52766 1 0 A 0.00000 61.70309 50.02879 8.86830 1 0 A - 1.77395 63.16969 53.27149 9.55798 110 0 1 - 3.81413 64.63629 56.66936 10.24767 110 0 1 - 5.71362 66.10288 60.15837 10.93735 110 0 1 + 1.73254 63.16969 53.27149 9.55798 110 0 1 + 3.77612 64.63629 56.66936 10.24767 110 0 1 + 5.67896 66.10288 60.15837 10.93735 110 0 1 7.88246 67.56948 62.81355 11.45462 1 0 A 8.12038 67.56948 64.59887 11.79946 1 0 A - 9.11443 69.03607 67.29441 12.31672 110 0 1 - 10.63102 70.50267 70.91152 13.00641 110 0 1 - 12.03599 71.96926 74.55002 13.69610 110 0 1 - 13.33747 73.43586 78.20475 14.38578 110 0 1 - 14.37115 74.90245 80.95386 14.90304 110 0 1 - 14.71599 74.90245 82.79018 15.24789 110 0 1 - 15.66265 76.36905 85.54917 15.76515 110 0 1 - 16.70259 77.83564 89.23418 16.45484 110 19 1 - 17.67085 79.30224 92.92554 17.14452 110 19 1 - 18.57487 80.76883 96.62208 17.83421 110 19 1 - 19.24968 82.23543 99.39721 18.35147 110 19 1 - 19.59452 82.23543 101.24855 18.69631 110 19 1 - 20.21975 83.70202 104.02721 19.21358 110 19 1 - 20.97376 85.16862 107.73449 19.90326 110 19 1 - 21.68962 86.63521 111.44425 20.59295 110 19 1 - 22.37283 88.10181 115.15611 21.28263 110 19 1 - 22.85648 89.56840 117.94115 21.79990 110 19 1 - 23.03121 89.56840 118.88211 21.97463 110 19 1 - 23.03752 89.58802 118.91940 21.98155 110 19 1 - 23.04614 89.60764 118.96910 21.99077 110 19 1 - 23.05475 89.62726 119.01876 22.00000 110 19 1 - 23.06335 89.64688 119.06846 22.00923 110 19 1 - 23.06965 89.66650 119.10577 22.01615 110 19 1 - 22.75035 89.66650 95.32658 22.04802 110 24 1 - 27.50474 90.03928 95.63859 26.81081 110 29 1 - 27.63865 90.41206 96.05489 26.95404 110 29 1 - 27.77169 90.78484 96.47153 27.09727 110 29 1 - 27.90392 91.15762 96.88851 27.24050 110 29 1 - 27.99956 91.53040 97.20145 27.34792 110 29 1 - 28.14845 91.53040 97.63550 27.49681 110 29 1 - 28.44595 92.70760 98.62574 27.83604 110 29 1 - 28.85055 93.88480 99.94844 28.28834 110 29 1 - 29.25029 95.06200 101.27379 28.74064 110 29 1 - 29.64628 96.23920 102.60160 29.19295 110 29 1 - 29.92655 97.41640 103.59888 29.53217 110 29 1 - 30.09616 97.41640 104.09799 29.70179 110 29 1 - 30.23563 98.00500 104.59743 29.87140 110 29 1 - 30.43132 98.59360 105.26376 30.09755 110 29 1 - 30.62677 99.18220 105.93058 30.32370 110 29 1 - 30.82210 99.77080 106.59787 30.54986 110 29 1 - 30.96086 100.35940 107.09862 30.71947 110 29 1 - 31.10315 100.35940 107.51890 30.86176 110 29 1 - 31.31375 101.25211 108.27919 31.11900 110 29 1 - 31.61051 102.14482 109.29369 31.46200 110 29 1 - 31.90791 103.03753 110.30909 31.80500 110 29 1 - 32.20617 103.93024 111.32533 32.14799 110 29 1 - 32.41978 104.82295 112.08803 32.40524 110 29 1 - 32.59128 104.82295 112.59675 32.57674 110 29 1 - 32.80619 105.71566 113.36021 32.83399 110 0 1 - 33.10828 106.60837 114.37876 33.17699 110 0 1 - 33.41191 107.50108 115.39800 33.51998 110 0 1 - 33.71721 108.39379 116.41790 33.86298 110 0 1 - 33.93852 109.28650 117.18322 34.12023 110 0 1 - 34.67264 109.28650 87.65681 34.76349 110 0 1 - 38.50898 107.26750 91.54267 38.61849 110 0 1 - 40.85509 105.24850 96.71571 40.98212 110 0 1 - 43.20235 103.22950 101.87906 43.34574 110 0 1 - 45.55076 101.21050 107.03278 45.70937 110 0 1 - 47.30941 99.19150 110.89211 47.48209 110 0 1 - 47.30126 99.19150 341.86602 48.33734 110 0 1 - 30.01722 100.56490 341.51730 31.16005 110 0 1 - 30.59366 101.93830 343.57625 31.83067 110 0 1 - 31.18191 103.31170 347.28230 32.50129 110 0 1 - 31.78120 104.68510 351.91623 33.17191 110 0 1 - 32.22311 106.05850 355.77105 33.67487 110 0 1 - 32.55842 106.05850 358.48796 34.01018 110 0 1 - 33.00977 107.43190 362.72993 34.51314 110 0 1 - 33.63735 108.80530 368.60198 35.18376 110 0 1 - 34.27269 110.17870 374.67178 35.85437 110 0 1 - 34.91498 111.55210 380.88980 36.52499 110 0 1 - 35.39574 112.92550 385.62652 37.02795 110 0 1 - 35.73105 112.92550 388.81664 37.36326 110 0 1 - 36.21715 114.29890 393.64241 37.86623 110 0 1 - 36.87556 115.67230 400.13412 38.53684 110 0 1 - 37.53801 117.04570 406.68303 39.20746 110 0 1 - 38.20390 118.41910 413.27872 39.87808 110 0 1 - 38.70495 119.79250 418.25017 40.38104 110 0 1 - 39.04025 119.79250 421.57593 40.71635 110 0 1 - 39.54355 121.16590 426.57964 41.21931 110 0 1 - 40.21634 122.53930 433.27338 41.88993 110 0 1 - 40.89063 123.91270 439.99014 42.56055 110 0 1 - 41.56606 125.28610 446.72658 43.23116 110 0 1 - 42.07462 126.65950 451.78968 43.73413 110 0 1 - 42.40993 126.65950 455.17021 44.06943 110 0 1 - 42.91897 128.03290 460.24793 44.57240 110 0 1 - 43.59601 129.40630 467.02864 45.24301 110 0 1 - 44.27329 130.77970 473.82048 45.91363 110 0 1 - 44.95068 132.15310 480.62207 46.58425 110 0 1 - 45.46044 133.52650 485.72873 47.08721 110 0 1 + 9.08621 69.03607 67.29441 12.31672 110 0 1 + 10.60582 70.50267 70.91152 13.00641 110 0 1 + 12.01369 71.96926 74.55002 13.69610 110 0 1 + 13.31790 73.43586 78.20475 14.38578 110 0 1 + 14.35414 74.90245 80.95386 14.90304 110 0 1 + 14.69899 74.90245 82.79018 15.24789 110 0 1 + 15.64803 76.36905 85.54917 15.76515 110 0 1 + 16.69019 77.83564 89.23418 16.45484 110 19 1 + 17.66049 79.30224 92.92554 17.14452 110 19 1 + 18.56638 80.76883 96.62208 17.83421 110 19 1 + 19.24289 82.23543 99.39721 18.35147 110 19 1 + 19.58773 82.23543 101.24855 18.69631 110 19 1 + 20.21449 83.70202 104.02721 19.21358 110 19 1 + 20.96987 85.16862 107.73449 19.90326 110 19 1 + 21.68695 86.63521 111.44425 20.59295 110 19 1 + 22.37125 88.10181 115.15611 21.28263 110 19 1 + 22.85585 89.56840 117.94115 21.79990 110 19 1 + 23.03058 89.56840 118.88211 21.97463 110 19 1 + 23.03690 89.58802 118.91940 21.98155 110 19 1 + 23.04553 89.60764 118.96910 21.99077 110 19 1 + 23.05415 89.62726 119.01876 22.00000 110 19 1 + 23.06277 89.64688 119.06846 22.00923 110 19 1 + 23.06907 89.66650 119.10577 22.01615 110 19 1 + 26.93902 89.66650 95.32658 26.23707 110 28 1 + 27.50450 90.03928 95.63859 26.81081 110 29 1 + 27.63855 90.41206 96.05489 26.95404 110 29 1 + 27.77173 90.78484 96.47153 27.09727 110 29 1 + 27.90409 91.15762 96.88851 27.24050 110 29 1 + 27.99986 91.53040 97.20145 27.34792 110 29 1 + 28.14874 91.53040 97.63550 27.49681 110 29 1 + 28.44660 92.70760 98.62574 27.83604 110 29 1 + 28.85152 93.88480 99.94844 28.28834 110 29 1 + 29.25153 95.06200 101.27379 28.74064 110 29 1 + 29.64775 96.23920 102.60160 29.19295 110 29 1 + 29.92822 97.41640 103.59888 29.53217 110 29 1 + 30.09783 97.41640 104.09799 29.70179 110 29 1 + 30.23739 98.00500 104.59743 29.87140 110 29 1 + 30.43314 98.59360 105.26376 30.09755 110 29 1 + 30.62867 99.18220 105.93058 30.32370 110 29 1 + 30.82406 99.77080 106.59787 30.54986 110 29 1 + 30.96287 100.35940 107.09862 30.71947 110 29 1 + 31.10516 100.35940 107.51890 30.86176 110 29 1 + 31.31583 101.25211 108.27919 31.11900 110 29 1 + 31.61264 102.14482 109.29369 31.46200 110 29 1 + 31.91007 103.03753 110.30909 31.80500 110 29 1 + 32.20836 103.93024 111.32533 32.14799 110 29 1 + 32.42198 104.82295 112.08803 32.40524 110 29 1 + 32.59347 104.82295 112.59675 32.57674 110 29 1 + 32.80838 105.71566 113.36021 32.83399 110 0 1 + 33.11046 106.60837 114.37876 33.17699 110 0 1 + 33.41408 107.50108 115.39800 33.51998 110 0 1 + 33.71934 108.39379 116.41790 33.86298 110 0 1 + 33.94062 109.28650 117.18322 34.12023 110 0 1 + 36.50491 109.28650 87.65681 36.59472 110 0 1 + 38.51000 107.26750 91.54267 38.61849 110 0 1 + 40.85608 105.24850 96.71571 40.98212 110 0 1 + 43.20331 103.22950 101.87906 43.34574 110 0 1 + 45.55168 101.21050 107.03278 45.70937 110 0 1 + 47.31030 99.19150 110.89211 47.48209 110 0 1 + 31.18488 99.19150 341.86602 32.21563 110 0 1 + 30.02221 100.56490 341.51730 31.16005 110 0 1 + 30.59830 101.93830 343.57625 31.83067 110 0 1 + 31.18618 103.31170 347.28230 32.50129 110 0 1 + 31.78511 104.68510 351.91623 33.17191 110 0 1 + 32.22666 106.05850 355.77105 33.67487 110 0 1 + 32.56196 106.05850 358.48796 34.01018 110 0 1 + 33.01296 107.43190 362.72993 34.51314 110 0 1 + 33.64019 108.80530 368.60198 35.18376 110 0 1 + 34.27519 110.17870 374.67178 35.85437 110 0 1 + 34.91715 111.55210 380.88980 36.52499 110 0 1 + 35.39761 112.92550 385.62652 37.02795 110 0 1 + 35.73291 112.92550 388.81664 37.36326 110 0 1 + 36.21871 114.29890 393.64241 37.86623 110 0 1 + 36.87684 115.67230 400.13412 38.53684 110 0 1 + 37.53903 117.04570 406.68303 39.20746 110 0 1 + 38.20467 118.41910 413.27872 39.87808 110 0 1 + 38.70547 119.79250 418.25017 40.38104 110 0 1 + 39.04078 119.79250 421.57593 40.71635 110 0 1 + 39.54385 121.16590 426.57964 41.21931 110 0 1 + 40.21642 122.53930 433.27338 41.88993 110 0 1 + 40.89050 123.91270 439.99014 42.56055 110 0 1 + 41.56572 125.28610 446.72658 43.23116 110 0 1 + 42.07408 126.65950 451.78968 43.73413 110 0 1 + 42.40939 126.65950 455.17021 44.06943 110 0 1 + 42.91824 128.03290 460.24793 44.57240 110 0 1 + 43.59509 129.40630 467.02864 45.24301 110 0 1 + 44.27217 130.77970 473.82048 45.91363 110 0 1 + 44.94938 132.15310 480.62207 46.58425 110 0 1 + 45.45894 133.52650 485.72873 47.08721 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -42758,11 +42894,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.000 'Hollandveen' - -5.70 0.239 'Oude Zeeklei' - -7.00 39.651 'Wadzand' - -10.00 61.347 'Hydrobiaklei' - -12.00 20.911 'Basisveen' - -12.50 131.831 'Eerste zandlaag' + -5.70 0.233 'Oude Zeeklei' + -7.00 39.607 'Wadzand' + -10.00 61.429 'Hydrobiaklei' + -12.00 21.003 'Basisveen' + -12.50 130.707 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -42781,10 +42917,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -0.04 'Oude Zeeklei' - -7.00 -10.22 'Wadzand' - -10.00 -11.15 'Hydrobiaklei' + -7.00 -10.21 'Wadzand' + -10.00 -11.16 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -43.80 'Eerste zandlaag' + -12.50 -43.42 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -43049,20 +43185,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.74 : Percentage mobilized resistance left - 41.00 : Percentage mobilized resistance right - 383.52 : Effective left - 555.14 : Effective right + 19.72 : Percentage mobilized resistance left + 40.97 : Percentage mobilized resistance right + 383.18 : Effective left + 554.81 : Effective right 1096.84 : Water pressure left 924.92 : Water pressure right 1942.71 : Max effective resistance left 1354.10 : Max effective resistance right -20727.44 : Max moment left -14782.45 : Max moment right --4492.23 : Max mobilized moment left --4979.48 : Max mobilized moment right - 114.75 : Vertical force left - 136.40 : Vertical force right +-4488.34 : Max mobilized moment left +-4975.76 : Max mobilized moment right + 114.64 : Vertical force left + 136.30 : Vertical force right 21.7 : Max mobilized moment percentage left 33.7 : Max mobilized moment percentage right -2.43 : Level of single support @@ -43071,17 +43207,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --114.75 : Active force -136.40 : Passive force --114.75 : Plugged active force -136.40 : Plugged passive force +-114.64 : Active force +136.30 : Passive force +-114.64 : Plugged active force +136.30 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -21.65 : Resulting Vertical Force Unplugged -21.65 : Resulting Vertical Force Plugged +21.66 : Resulting Vertical Force Unplugged +21.66 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -43094,210 +43230,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 585.36898 - 0.00000 0.00000 580.81548 - 0.00000 0.00000 576.26198 - 0.00000 0.00000 571.70848 - 0.00000 0.00000 567.15498 - 0.00000 0.00000 562.60148 - 0.00000 0.00000 562.60148 - 0.00000 0.00000 558.04798 - 0.00000 0.00000 553.49447 - 0.00000 0.00000 548.94097 - 0.00000 0.00000 544.38747 - 0.00000 0.00000 539.83397 - 0.00000 0.00000 539.83397 - 0.00000 -0.00049 539.29826 - -0.00001 -0.00196 538.76256 - -0.00004 -0.00441 538.22685 - -0.00010 -0.00785 537.69114 - -0.00020 -0.01226 537.15544 - -0.00020 -0.01226 537.15544 - -0.00803 -0.14175 530.72696 - -0.03988 -0.41251 524.29848 - -0.11269 -0.82453 517.87002 - -0.24341 -1.37781 511.44158 - -0.44901 -2.07236 505.01319 - -0.44901 -2.07236 505.01319 - -0.68977 -2.75906 499.65625 - -1.00409 -3.54386 494.29939 - -1.40181 -4.42676 488.94267 - -1.89272 -5.40776 483.58614 - -2.48663 -6.48686 478.22984 - -2.48663 -6.48686 478.22984 - -3.19336 -7.66406 472.87384 - -4.02271 -8.93936 467.51824 - -4.98450 -10.31276 462.16316 - -6.08854 -11.78426 456.80873 - -7.34462 -13.35386 451.45506 - -7.34462 -13.35386 451.45506 - -8.55395 -14.78218 446.85162 - -9.88924 -16.28305 442.24898 - -11.35672 -17.85648 437.64727 - -12.96263 -19.50246 433.04663 - -14.71322 -21.22099 428.44720 - -14.71322 -21.22099 428.44720 - -17.26743 -23.61088 422.35238 - -20.10135 -26.12827 416.26038 - -23.22952 -28.77314 410.17172 - -26.66647 -31.54551 404.08690 - -30.42674 -34.44536 398.00645 - -30.42674 -34.44536 398.00645 - -30.82111 -34.74236 397.39866 - -31.21887 -35.04063 396.79093 - -31.62004 -35.34018 396.18325 - -32.02463 -35.64100 395.57561 - -32.43266 -35.94310 394.96803 - -32.43266 -35.94310 394.96803 - -34.95747 -37.61777 391.31304 - -37.58710 -38.99866 387.66012 - -40.30137 -40.08565 384.00943 - -43.08013 -40.87875 380.36114 - -45.90419 -41.42047 376.71540 - -45.90419 -41.42047 376.71540 - -46.73349 -41.50707 375.65300 - -47.56433 -41.57230 374.59085 - -48.39622 -41.61255 373.52893 - -49.22866 -41.62782 372.46725 - -50.06119 -41.62172 371.40582 - -50.06119 -41.62172 371.40582 - -52.16085 -42.36428 368.75337 - -54.29750 -43.09979 366.10256 - -56.47063 -43.82336 363.45345 - -58.67963 -44.53460 360.80613 - -60.92395 -45.23791 358.16066 - -60.92395 -45.23791 358.16066 - -63.20320 -45.93252 355.51710 - -65.51725 -46.63002 352.87553 - -67.86625 -47.33030 350.23603 - -70.25032 -48.03286 347.59867 - -72.66956 -48.73708 344.96351 - -72.66956 -48.73708 344.96351 - -77.61393 -50.15069 339.70014 - -82.69981 -51.56748 334.44654 - -87.92750 -52.98653 329.20338 - -93.29715 -54.40659 323.97131 - -98.80882 -55.82675 318.75100 - -98.80882 -55.82675 318.75100 - -104.46246 -57.24594 313.54310 - -110.25796 -58.66380 308.34837 - -116.19516 -60.07972 303.16754 - -122.27383 -61.49324 298.00137 - -128.49372 -62.90438 292.85060 - -128.49372 -62.90438 292.85060 - -137.43822 -64.87338 285.66683 - -146.65799 -66.83638 278.51700 - -156.15207 -68.79200 271.40343 - -165.91938 -70.73976 264.32849 - -175.95886 -72.68030 257.29451 - -175.95886 -72.68030 257.29451 - -185.38891 -72.39031 250.80177 - -194.78107 -72.11721 244.34849 - -204.14267 -71.91997 237.93669 - -213.48356 -71.79869 231.56833 - -222.81107 -71.69456 225.24543 - -222.81107 -71.69456 225.24543 - -232.13766 -71.78454 218.96996 - -241.50666 -72.60395 212.74389 - -251.03864 -73.97597 206.56928 - -260.72329 -74.95279 200.44813 - -270.50924 -75.53441 194.38249 - -270.50924 -75.53441 194.38249 - -281.83464 -75.97603 187.47830 - -293.22607 -76.41765 180.65345 - -304.68352 -76.85928 173.91119 - -316.22754 -77.71320 167.25473 - -327.94854 -79.14460 160.68732 - -327.94854 -79.14460 160.68732 - -339.90400 -80.80346 154.21218 - -352.11188 -82.52459 147.83274 - -364.58254 -84.31990 141.55250 - -377.32808 -86.20652 135.37499 - -390.36223 -88.17204 129.30371 - -390.36223 -88.17204 129.30371 - -403.60285 -88.44179 123.34235 - -416.71653 -86.90977 117.49465 - -429.56438 -84.88627 111.76420 - -442.07325 -82.37563 106.15462 - -454.17358 -79.44133 100.66951 - -454.17358 -79.44133 100.66951 - -465.79022 -75.90525 95.31245 - -476.84834 -71.94955 90.08655 - -487.27928 -67.51509 84.99476 - -497.01151 -62.60229 80.03998 - -505.97651 -57.27102 75.22515 - -505.97651 -57.27099 75.22515 - -506.09098 -57.19562 75.16170 - -506.20530 -57.12017 75.09828 - -506.31946 -57.04463 75.03488 - -506.43347 -56.96901 74.97150 - -506.54734 -56.89332 74.90815 - -506.54734 -56.89329 74.90815 - -508.68478 -55.60215 73.70939 - -510.77296 -54.30029 72.51988 - -512.81145 -52.98615 71.33966 - -514.79976 -51.65973 70.16876 - -516.73745 -50.32257 69.00724 - -516.73745 -50.32257 69.00724 - -522.51767 -45.99907 65.40119 - -527.77293 -41.56819 61.88995 - -532.48912 -37.01448 58.47435 - -536.65149 -32.33785 55.15526 - -540.24590 -27.55365 51.93353 - -540.24590 -27.55365 51.93353 - -541.82574 -25.10393 50.35941 - -543.25783 -22.62729 48.80987 - -544.54040 -20.11989 47.28496 - -545.67161 -17.58172 45.78474 - -546.64967 -15.01661 44.30926 - -546.64973 -15.01618 44.30926 - -547.83625 -11.05230 42.11882 - -548.65937 -7.02641 39.98553 - -549.11291 -2.92963 37.90944 - -549.19041 1.23807 35.89059 - -548.88708 5.42212 33.92905 - -548.88703 5.45172 33.92905 - -548.19810 9.66253 32.02481 - -547.13157 13.77043 30.17776 - -545.69317 17.83601 28.38776 - -543.88662 21.86201 26.65465 - -541.71557 25.84553 24.97828 - -541.71641 25.85452 24.97828 - -539.06022 27.27207 23.20131 - -536.26084 28.72415 21.49226 - -533.31614 30.15390 19.85074 - -530.23317 31.49043 18.27640 - -527.02118 32.73305 16.76885 - -527.04146 32.89278 16.76885 - -520.67345 57.90511 14.77024 - -510.87717 81.86443 12.90024 - -497.81497 104.46186 11.15565 - -481.70081 125.49587 9.53328 - -462.74254 145.10674 8.02993 - -462.75423 145.21151 8.02993 - -441.12050 163.63527 6.64168 - -416.98975 180.91472 5.36236 - -390.51066 197.20231 4.18549 - -361.87661 211.27185 3.10455 - -331.52296 221.73262 2.11304 - -331.50161 222.31400 2.11304 - -299.85333 229.23692 1.20370 - -267.49530 232.30199 0.36832 - -235.04508 230.30335 -0.40099 - -203.22104 223.79034 -1.11216 - -172.51782 214.40500 -1.77310 - -172.54646 214.08044 -1.77310 - -143.49305 200.98477 -2.39184 - -116.32090 186.81384 -2.97523 - -91.28760 170.44819 -3.52940 - -68.69322 151.98663 -4.06048 - -48.82536 131.51032 -4.57463 - -48.82559 131.48309 -4.57463 - -31.96721 109.02844 -5.07764 - -18.38750 84.64784 -5.57286 - -8.35479 58.36058 -6.06272 - -2.13479 30.18226 -6.54967 - 0.01291 0.21810 -7.03615 + 0.00000 0.00000 585.50060 + 0.00000 0.00000 580.94624 + 0.00000 0.00000 576.39188 + 0.00000 0.00000 571.83752 + 0.00000 0.00000 567.28316 + 0.00000 0.00000 562.72881 + 0.00000 0.00000 562.72881 + 0.00000 0.00000 558.17445 + 0.00000 0.00000 553.62009 + 0.00000 0.00000 549.06573 + 0.00000 0.00000 544.51137 + 0.00000 0.00000 539.95701 + 0.00000 0.00000 539.95701 + 0.00000 -0.00049 539.42121 + -0.00001 -0.00196 538.88540 + -0.00004 -0.00442 538.34959 + -0.00010 -0.00785 537.81379 + -0.00020 -0.01226 537.27798 + -0.00020 -0.01226 537.27798 + -0.00803 -0.14175 530.84829 + -0.03988 -0.41251 524.41860 + -0.11269 -0.82453 517.98893 + -0.24341 -1.37781 511.55929 + -0.44901 -2.07236 505.12969 + -0.44901 -2.07236 505.12969 + -0.68977 -2.75906 499.77174 + -1.00409 -3.54386 494.41387 + -1.40181 -4.42676 489.05614 + -1.89272 -5.40776 483.69860 + -2.48663 -6.48686 478.34130 + -2.48663 -6.48686 478.34130 + -3.19336 -7.66406 472.98429 + -4.02271 -8.93936 467.62768 + -4.98450 -10.31276 462.27160 + -6.08854 -11.78426 456.91615 + -7.34462 -13.35386 451.56148 + -7.34462 -13.35386 451.56148 + -8.55395 -14.78218 446.95717 + -9.88924 -16.28305 442.35367 + -11.35672 -17.85648 437.75109 + -12.96263 -19.50246 433.14958 + -14.71322 -21.22099 428.54928 + -14.71322 -21.22099 428.54928 + -17.26743 -23.61088 422.45331 + -20.10135 -26.12827 416.36017 + -23.22952 -28.77314 410.27035 + -26.66647 -31.54551 404.18439 + -30.42674 -34.44536 398.10279 + -30.42674 -34.44536 398.10279 + -30.82111 -34.74236 397.49489 + -31.21887 -35.04063 396.88704 + -31.62004 -35.34018 396.27924 + -32.02463 -35.64100 395.67149 + -32.43266 -35.94310 395.06380 + -32.43266 -35.94310 395.06380 + -34.95747 -37.61777 391.40811 + -37.58710 -38.99866 387.75450 + -40.30137 -40.08565 384.10312 + -43.08013 -40.87875 380.45414 + -45.90419 -41.42047 376.80771 + -45.90419 -41.42047 376.80771 + -46.73349 -41.50707 375.74511 + -47.56433 -41.57230 374.68275 + -48.39622 -41.61255 373.62063 + -49.22866 -41.62782 372.55875 + -50.06119 -41.62172 371.49712 + -50.06119 -41.62172 371.49712 + -52.16085 -42.36428 368.84416 + -54.29750 -43.09979 366.19285 + -56.47063 -43.82336 363.54324 + -58.67963 -44.53460 360.89541 + -60.92395 -45.23791 358.24944 + -60.92395 -45.23791 358.24944 + -63.20320 -45.93252 355.60537 + -65.51725 -46.63002 352.96330 + -67.86625 -47.33030 350.32330 + -70.25032 -48.03286 347.68543 + -72.66956 -48.73708 345.04977 + -72.66956 -48.73708 345.04977 + -77.61393 -50.15069 339.78539 + -82.69981 -51.56748 334.53079 + -87.92750 -52.98653 329.28662 + -93.29715 -54.40659 324.05354 + -98.80882 -55.82675 318.83222 + -98.80882 -55.82675 318.83222 + -104.46246 -57.24594 313.62332 + -110.25796 -58.66380 308.42758 + -116.19516 -60.07972 303.24574 + -122.27383 -61.49324 298.07856 + -128.49372 -62.90438 292.92678 + -128.49372 -62.90438 292.92678 + -137.43822 -64.87338 285.74160 + -146.65799 -66.83638 278.59036 + -156.15207 -68.79200 271.47538 + -165.91938 -70.73976 264.39903 + -175.95886 -72.68030 257.36363 + -175.95886 -72.68030 257.36363 + -185.38891 -72.39031 250.86958 + -194.78107 -72.11721 244.41500 + -204.14267 -71.91997 238.00188 + -213.48356 -71.79869 231.63222 + -222.81107 -71.69456 225.30801 + -222.81107 -71.69456 225.30801 + -232.13766 -71.78454 219.03122 + -241.50666 -72.60395 212.80385 + -251.03864 -73.97597 206.62792 + -260.72329 -74.95279 200.50547 + -270.50924 -75.53441 194.43852 + -270.50924 -75.53441 194.43852 + -281.83464 -75.97603 187.53282 + -293.22607 -76.41765 180.70646 + -304.68352 -76.85928 173.96269 + -316.22754 -77.71320 167.30473 + -327.94854 -79.14460 160.73581 + -327.94854 -79.14460 160.73581 + -339.90400 -80.80346 154.25917 + -352.11188 -82.52459 147.87822 + -364.58254 -84.31990 141.59647 + -377.32808 -86.20652 135.41746 + -390.36223 -88.17204 129.34467 + -390.36223 -88.17204 129.34467 + -403.60285 -88.44179 123.38181 + -416.71653 -86.90977 117.53259 + -429.56438 -84.88627 111.80064 + -442.07325 -82.37563 106.18955 + -454.17358 -79.44133 100.70294 + -454.17358 -79.44133 100.70294 + -465.79022 -75.90525 95.34437 + -476.84834 -71.94955 90.11696 + -487.27928 -67.51509 85.02366 + -497.01151 -62.60229 80.06738 + -505.97651 -57.27102 75.25104 + -505.97651 -57.27100 75.25104 + -506.09098 -57.19562 75.18757 + -506.20530 -57.12017 75.12413 + -506.31946 -57.04464 75.06071 + -506.43347 -56.96902 74.99731 + -506.54734 -56.89332 74.93394 + -506.54734 -56.89329 74.93394 + -508.68478 -55.60215 73.73480 + -510.77296 -54.30029 72.54490 + -512.81145 -52.98615 71.36430 + -514.79976 -51.65973 70.19302 + -516.73745 -50.32257 69.03111 + -516.73745 -50.32257 69.03111 + -522.51767 -45.99907 65.42386 + -527.77293 -41.56819 61.91140 + -532.48912 -37.01448 58.49460 + -536.65149 -32.33785 55.17430 + -540.24590 -27.55365 51.95136 + -540.24590 -27.55365 51.95136 + -541.82574 -25.10393 50.37664 + -543.25783 -22.62729 48.82649 + -544.54040 -20.11989 47.30097 + -545.67161 -17.58172 45.80015 + -546.64967 -15.01661 44.32407 + -546.64973 -15.01618 44.32407 + -547.83625 -11.05230 42.13271 + -548.65937 -7.02641 39.99850 + -549.11291 -2.92963 37.92149 + -549.19041 1.23807 35.90173 + -548.88708 5.42237 33.93927 + -548.88646 5.43700 33.93927 + -548.20201 9.59612 32.03411 + -547.14150 13.70445 30.18615 + -545.70909 17.77041 28.39523 + -543.90849 21.79675 26.66120 + -541.74337 25.78057 24.98392 + -541.74427 25.78913 24.98392 + -539.09461 27.20691 23.20596 + -536.30173 28.65926 21.49591 + -533.36350 30.08929 19.85341 + -530.28698 31.42601 18.27808 + -527.08143 32.66875 16.76955 + -527.10173 32.82860 16.76955 + -520.74270 57.84094 14.76959 + -510.95546 81.79913 12.89825 + -497.90257 104.39383 11.15235 + -481.79821 125.42376 9.52868 + -462.85039 145.02924 8.02406 + -462.86210 145.13414 8.02406 + -441.23966 163.55121 6.63456 + -417.12122 180.82270 5.35403 + -390.65564 197.10109 4.17597 + -362.03716 211.14557 3.09389 + -331.70410 221.56394 2.10127 + -331.68274 222.14603 2.10127 + -300.06118 229.02244 1.19086 + -267.73789 232.01090 0.35448 + -235.33591 229.90397 -0.41579 + -203.57439 223.30539 -1.12784 + -172.94329 213.85930 -1.78957 + -172.97195 213.53429 -1.78957 + -143.88407 201.61105 -2.40900 + -116.62883 187.37415 -2.99298 + -91.52182 170.94043 -3.54766 + -68.86340 152.40895 -4.07921 + -48.94141 131.86108 -4.59377 + -48.94164 131.83380 -4.59377 + -32.03926 109.30606 -5.09717 + -18.42589 84.85094 -5.59276 + -8.37004 58.48777 -6.08299 + -2.13763 30.23220 -6.57029 + 0.01292 0.21826 -7.05712 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -43637,7 +43773,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -43649,7 +43785,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -43679,7 +43815,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -43709,13 +43845,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -43857,7 +43993,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 402 100 P 19.15121 6.37650 19.15121 8.03679 402 100 P 19.15346 7.35750 19.15346 8.05953 402 100 P - 19.15749 7.35750 19.15749 8.11067 402 100 P + 19.15749 7.35750 19.15749 8.07470 402 100 P 19.16680 8.33850 19.16680 8.09745 402 100 P 19.18391 9.31950 19.18391 8.12778 402 100 P 19.20583 10.30050 19.20583 8.15810 402 100 P @@ -43869,7 +44005,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 402 100 P 19.47040 17.75610 19.47040 8.38860 402 100 P 19.51557 19.12950 19.51557 8.42045 402 100 P - 35.42323 19.12950 35.42323 9.37395 402 100 P + 35.42323 19.12950 35.42323 7.71513 402 100 P 32.70625 22.94480 32.70625 6.76540 402 100 P 29.08315 26.76010 29.08315 5.49910 402 100 P 25.45932 30.57540 25.45932 4.23280 402 100 P @@ -43891,7 +44027,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 402 0 P 0.00000 67.54866 0.00000 0.00000 402 0 P 0.00000 69.01526 0.00000 0.00000 402 0 P - 0.00000 70.48186 0.00000 0.00000 402 100 P + 0.00000 70.48186 0.00000 0.00000 402 0 P 0.00000 71.94845 0.00000 0.00000 402 0 P 1.35175 71.94845 1.35175 1.35175 402 100 P 22.50228 73.41505 22.50228 4.34725 402 100 P @@ -43899,7 +44035,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 402 100 P 33.72460 77.81483 33.72460 6.60891 402 100 P 36.49712 79.28142 36.49712 7.17432 402 100 P - 38.34053 79.28142 38.34053 4.74872 402 100 P + 38.34053 79.28142 38.34053 7.55127 402 100 P 41.10027 80.74802 41.10027 8.11668 402 100 P 44.77379 82.21461 44.77379 8.87057 402 100 P 48.44314 83.68121 48.44314 9.62445 402 100 P @@ -43929,40 +44065,40 @@ Status character 62.06392 96.22820 62.06392 16.99966 402 100 P 62.74417 96.81680 62.74417 17.23925 402 100 P 63.25446 97.40540 63.25446 17.41894 402 100 P - 63.68261 97.40540 63.68261 15.51013 402 100 P + 63.68261 97.40540 63.68261 17.56967 402 100 P 64.45683 98.29811 64.45683 17.84220 402 100 P 65.48938 99.19082 65.48938 18.20557 402 100 P 66.52224 100.08353 66.52224 18.56894 402 100 P 67.55537 100.97624 67.55537 18.93231 402 100 P - 67.32534 101.86895 68.33038 19.20484 330 99 3 - 68.84713 101.86895 68.84713 37.05286 402 100 P - 67.25593 102.76166 69.62238 19.65905 330 97 3 - 67.02923 103.65437 70.65622 20.02242 330 95 3 - 66.83288 104.54708 71.69028 20.38579 330 93 3 - 66.66678 105.43979 72.72453 20.74916 330 92 3 - 66.34294 106.33250 73.50032 21.02168 330 90 3 - 45.32755 106.33250 53.01517 22.78231 330 85 3 - 47.02364 104.31350 56.86471 24.64229 330 83 3 - 49.56357 102.29450 61.99022 27.12226 220 80 2 - 50.62892 100.27550 67.10701 29.60224 220 75 2 - 51.75124 98.25650 72.21510 32.08222 220 72 2 - 52.29671 96.23750 76.04076 33.94220 220 69 2 - 204.84626 96.23750 247.70391 23.76485 330 83 3 - 197.74511 97.61090 243.72655 24.33242 330 81 3 - 190.59533 98.98430 244.09044 25.08918 220 78 2 - 179.10616 100.35770 247.25554 25.84593 220 72 2 - 168.99187 101.73110 251.72665 26.60269 220 67 2 - 159.47055 103.10450 255.56014 27.17026 220 62 2 - 160.56640 103.10450 258.28993 27.54864 220 62 2 - 152.05583 104.47790 262.57243 28.11621 220 58 2 - 145.00340 105.85130 268.51677 28.87297 220 54 2 - 138.78036 107.22470 274.66750 29.62973 220 51 2 - 114.20938 108.59810 280.96720 30.38649 110 41 1 - 88.00612 109.97150 285.76348 30.95406 110 31 1 - 88.38450 109.97150 288.99188 31.33244 110 31 1 - 64.39979 111.34490 293.87257 31.90001 110 22 1 - 42.60152 112.71830 300.43310 32.65677 110 14 1 - 22.58681 114.09170 307.04554 33.41353 110 0 1 + 67.33075 101.86895 68.33038 19.20484 330 99 3 + 67.70620 101.86895 68.84713 19.38652 330 98 3 + 67.26086 102.76166 69.62238 19.65905 330 97 3 + 67.03367 103.65437 70.65622 20.02242 330 95 3 + 66.83683 104.54708 71.69028 20.38579 330 93 3 + 66.67025 105.43979 72.72453 20.74916 330 92 3 + 66.34593 106.33250 73.50032 21.02168 330 90 3 + 45.33009 106.33250 53.01517 22.78231 330 86 3 + 47.02574 104.31350 56.86471 24.64229 330 83 3 + 49.56686 102.29450 61.99022 27.12226 220 80 2 + 50.63132 100.27550 67.10701 29.60224 220 75 2 + 51.75275 98.25650 72.21510 32.08222 220 72 2 + 52.29734 96.23750 76.04076 33.94220 220 69 2 + 204.84784 96.23750 247.70391 23.76485 330 83 3 + 197.74365 97.61090 243.72655 24.33242 330 81 3 + 190.58070 98.98430 244.09044 25.08918 220 78 2 + 179.08183 100.35770 247.25554 25.84593 220 72 2 + 168.95799 101.73110 251.72665 26.60269 220 67 2 + 159.42732 103.10450 255.56014 27.17026 220 62 2 + 160.52316 103.10450 258.28993 27.54864 220 62 2 + 152.00342 104.47790 262.57243 28.11621 220 58 2 + 144.94204 105.85130 268.51677 28.87297 220 54 2 + 138.71029 107.22470 274.66750 29.62973 220 51 2 + 113.92148 108.59810 280.96720 30.38649 110 41 1 + 87.68832 109.97150 285.76348 30.95406 110 31 1 + 88.06670 109.97150 288.99188 31.33244 110 30 1 + 64.05324 111.34490 293.87257 31.90001 110 22 1 + 42.22760 112.71830 300.43310 32.65677 110 14 1 + 22.18722 114.09170 307.04554 33.41353 110 0 1 19.59824 115.46510 313.69964 34.17029 1 0 A 19.92689 116.83850 318.71190 34.73786 1 0 A 20.14592 116.83850 322.06333 35.11624 1 0 A @@ -43995,9 +44131,9 @@ Layer name -3.50 42.014 'Hollandveen' -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' - -10.00 122.913 'Hydrobiaklei' - -12.00 24.778 'Basisveen' - -12.50 282.592 'Eerste zandlaag' + -10.00 122.863 'Hydrobiaklei' + -12.00 24.779 'Basisveen' + -12.50 282.308 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -44018,9 +44154,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.77 'Oude Zeeklei' -7.00 14.19 'Wadzand' - -10.00 22.34 'Hydrobiaklei' + -10.00 22.33 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 93.88 'Eerste zandlaag' + -12.50 93.79 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -44329,7 +44465,7 @@ Lambda passive -7.44850 17.34153 53.43947 0.00000 0.62232 0.00000 3.08159 -7.59800 18.53417 56.91891 5.51572 0.62275 0.29760 3.07103 -7.74750 19.72676 59.56041 7.72546 0.62314 0.39763 3.06560 - -7.74750 19.72676 61.33399 7.96352 0.62496 0.39768 3.06289 + -7.74750 19.72676 61.33399 7.96352 0.62314 0.39768 3.06289 -7.89700 20.91931 64.00872 8.32056 0.62350 0.39775 3.05979 -8.04650 22.11182 67.59374 8.79654 0.62384 0.39782 3.05690 -8.19600 23.30431 71.19588 9.31303 0.62416 0.39963 3.05505 @@ -44341,7 +44477,7 @@ Lambda passive -8.94350 29.26658 90.56117 11.88697 0.62549 0.40616 3.09435 -9.09300 30.45903 94.22835 12.35420 0.62571 0.40560 3.09361 -9.24250 31.65149 96.98024 12.70463 0.62592 0.40521 3.09314 - -9.24250 31.65149 98.81551 12.93825 0.68048 0.40496 3.09286 + -9.24250 31.65149 98.81551 12.93825 0.62592 0.40496 3.09286 -9.39200 32.84396 101.56932 13.28907 0.62612 0.40461 3.09248 -9.54150 34.03645 105.24237 13.75801 0.62631 0.40421 3.09205 -9.69100 35.22896 108.91793 14.22706 0.62649 0.40385 3.09172 @@ -44371,7 +44507,7 @@ Lambda passive -10.97000 42.91008 104.04078 17.06353 0.73739 0.39766 2.42462 -11.03000 43.23277 104.70394 17.23081 0.73743 0.39856 2.42187 -11.09000 43.55547 105.20168 17.35626 0.73747 0.39923 2.41983 - -11.09000 43.55547 105.61948 17.46149 0.63073 0.39978 2.41815 + -11.09000 43.55547 105.61948 17.46149 0.73747 0.39978 2.41815 -11.18100 44.04491 106.37543 17.65175 0.73753 0.40077 2.41516 -11.27200 44.53436 107.38436 17.90541 0.73759 0.40206 2.41127 -11.36300 45.02382 108.39444 18.15906 0.73764 0.40332 2.40749 @@ -44401,13 +44537,13 @@ Lambda passive -13.62000 75.79293 371.53915 22.82127 0.52864 0.30110 4.90203 -13.76000 77.21836 377.78371 23.26707 0.52869 0.30132 4.89241 -13.90000 78.64381 382.45053 23.60087 0.52874 0.30146 4.88521 - -13.90000 78.64381 385.58770 23.82263 0.50268 0.30155 4.88085 + -13.90000 78.64381 385.58770 23.82263 0.52874 0.30155 4.88085 -14.04000 80.06929 390.33231 24.15485 0.52878 0.30167 4.87493 -14.18000 81.49478 396.71320 24.59734 0.52883 0.30183 4.86796 -14.32000 82.92030 403.14850 25.03929 0.52887 0.30197 4.86188 -14.46000 84.34583 409.61450 25.48076 0.52891 0.30210 4.85637 -14.60000 85.77139 414.47965 25.81159 0.52895 0.30219 4.85254 - -14.60000 85.77139 417.73399 26.03200 0.73395 0.30225 4.85017 + -14.60000 85.77139 417.73399 26.03200 0.52895 0.30225 4.85017 -14.74000 87.19696 422.62984 26.36244 0.52899 0.30233 4.84684 -14.88000 88.62256 429.23019 26.80263 0.52902 0.30244 4.84335 -15.02000 90.04817 435.96362 27.24159 0.52906 0.30252 4.84145 @@ -44549,7 +44685,7 @@ Status character 0.00000 64.63629 53.43947 10.79204 1 0 A 5.51572 66.10288 56.91891 11.54208 1 0 A 7.72546 67.56948 59.56041 12.10670 1 0 A - 7.96352 67.56948 61.33399 12.51475 1 0 A + 7.96352 67.56948 61.33399 12.47827 1 0 A 8.32056 69.03607 64.00872 13.04321 1 0 A 8.79654 70.50267 67.59374 13.79425 1 0 A 9.31303 71.96926 71.19588 14.54558 1 0 A @@ -44561,7 +44697,7 @@ Status character 11.88697 79.30224 90.56117 18.30586 1 0 A 12.35420 80.76883 94.22835 19.05853 1 0 A 12.70463 82.23543 96.98024 19.62477 1 0 A - 12.93825 82.23543 98.81551 21.74112 1 0 A + 12.93825 82.23543 98.81551 19.99796 1 0 A 13.28907 83.70202 101.56932 20.56436 1 0 A 13.75801 85.16862 105.24237 21.31749 1 0 A 14.22706 86.63521 108.91793 22.07076 1 0 A @@ -44591,7 +44727,7 @@ Status character 17.06353 99.18220 104.04078 31.64160 1 0 A 17.23081 99.77080 104.70394 31.88126 1 0 A 17.35626 100.35940 105.20168 32.06142 1 0 A - 17.46149 100.35940 105.61948 27.54896 1 0 A + 17.46149 100.35940 105.61948 32.21116 1 0 A 17.65175 101.25211 106.37543 32.48443 1 0 A 17.90541 102.14482 107.38436 32.84795 1 0 A 18.15906 103.03753 108.39444 33.21149 1 0 A @@ -44621,24 +44757,24 @@ Status character 22.82127 110.17870 371.53915 40.06704 1 0 A 23.26707 111.55210 377.78371 40.82439 1 0 A 23.60087 112.92550 382.45053 41.39333 1 0 A - 23.82263 112.92550 385.58770 39.71200 1 0 A + 23.82263 112.92550 385.58770 41.77017 1 0 A 24.15485 114.29890 390.33231 42.33911 1 0 A - 33.15173 115.67230 396.71320 43.09648 110 0 1 - 54.68057 117.04570 403.14850 43.85385 110 14 1 - 74.63955 118.41910 409.61450 44.61123 110 18 1 - 93.05385 119.79250 414.47965 45.18009 110 22 1 - 111.08750 119.79250 417.73399 63.21374 110 27 1 - 110.70577 121.16590 422.62984 46.12598 110 26 1 - 127.21453 122.53930 429.23019 46.88336 110 30 1 - 142.93441 123.91270 435.96362 47.64074 110 33 1 - 158.03114 125.28610 442.71840 48.39812 110 36 1 - 172.48186 126.65950 447.79404 48.96692 110 39 1 - 172.85904 126.65950 451.18238 49.34409 110 38 1 - 187.00915 128.03290 456.27102 49.91289 110 41 1 - 201.13745 129.40630 463.06514 50.67027 110 43 1 - 215.12120 130.77970 469.86914 51.42765 110 46 1 - 229.02624 132.15310 476.68180 52.18503 110 48 1 - 241.39763 133.52650 481.79615 52.75376 220 50 2 + 33.52564 115.67230 396.71320 43.09648 110 0 1 + 55.08016 117.04570 403.14850 43.85385 110 14 1 + 75.06280 118.41910 409.61450 44.61123 110 18 1 + 93.49842 119.79250 414.47965 45.18009 110 23 1 + 93.87545 119.79250 417.73399 45.55712 110 22 1 + 111.16894 121.16590 422.62984 46.12598 110 26 1 + 127.69376 122.53930 429.23019 46.88336 110 30 1 + 143.42761 123.91270 435.96362 47.64074 110 33 1 + 158.53670 125.28610 442.71840 48.39812 110 36 1 + 172.99864 126.65950 447.79404 48.96692 110 39 1 + 173.37582 126.65950 451.18238 49.34409 110 38 1 + 187.53645 128.03290 456.27102 49.91289 110 41 1 + 201.67479 129.40630 463.06514 50.67027 110 44 1 + 215.66825 130.77970 469.86914 51.42765 110 46 1 + 229.58285 132.15310 476.68180 52.18503 110 48 1 + 241.55204 133.52650 481.79615 52.75376 220 50 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -44658,7 +44794,7 @@ Layer name -7.00 27.544 'Wadzand' -10.00 34.297 'Hydrobiaklei' -12.00 16.422 'Basisveen' - -12.50 305.262 'Eerste zandlaag' + -12.50 304.914 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -44680,7 +44816,7 @@ Layer name -7.00 -7.10 'Wadzand' -10.00 -6.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -101.42 'Eerste zandlaag' + -12.50 -101.30 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -44947,18 +45083,18 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 32.59 : Percentage mobilized resistance left 33.38 : Percentage mobilized resistance right - 256.45 : Effective left - 451.96 : Effective right + 256.51 : Effective left + 452.02 : Effective right 1120.54 : Water pressure left 924.92 : Water pressure right 786.97 : Max effective resistance left 1354.10 : Max effective resistance right -9369.37 : Max moment left -14782.45 : Max moment right --3220.03 : Max mobilized moment left --3857.60 : Max mobilized moment right - 84.31 : Vertical force left - 103.98 : Vertical force right +-3220.82 : Max mobilized moment left +-3858.44 : Max mobilized moment right + 84.33 : Vertical force left + 104.01 : Vertical force right 34.4 : Max mobilized moment percentage left 26.1 : Max mobilized moment percentage right -2.43 : Level of single support @@ -44967,17 +45103,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --84.31 : Active force -103.98 : Passive force --84.31 : Plugged active force -103.98 : Plugged passive force +-84.33 : Active force +104.01 : Passive force +-84.33 : Plugged active force +104.01 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -19.67 : Resulting Vertical Force Unplugged -19.67 : Resulting Vertical Force Plugged +19.69 : Resulting Vertical Force Unplugged +19.69 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -44990,210 +45126,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 524.86446 - 0.00000 0.00000 520.65928 - 0.00000 0.00000 516.45409 - 0.00000 0.00000 512.24890 - 0.00000 0.00000 508.04372 - 0.00000 0.00000 503.83853 - 0.00000 0.00000 503.83853 - 0.00000 0.00000 499.63334 - 0.00000 0.00000 495.42816 - 0.00000 0.00000 491.22297 - 0.00000 0.00000 487.01778 - 0.00000 0.00000 482.81260 - 0.00000 0.00000 482.81260 - 0.00000 -0.00049 482.31787 - -0.00001 -0.00196 481.82314 - -0.00004 -0.00441 481.32841 - -0.00010 -0.00785 480.83369 - -0.00020 -0.01226 480.33896 - -0.00020 -0.01226 480.33896 - -0.00803 -0.14175 474.40222 - -0.03988 -0.41251 468.46548 - -0.11269 -0.82453 462.52875 - -0.24341 -1.37781 456.59206 - -0.44901 -2.07236 450.65541 - -0.44901 -2.07236 450.65541 - -0.68977 -2.75906 445.70825 - -1.00409 -3.54386 440.76117 - -1.40181 -4.42676 435.81423 - -1.89272 -5.40776 430.86748 - -2.48663 -6.48686 425.92097 - -2.48663 -6.48686 425.92097 - -3.19336 -7.66406 420.97475 - -4.02271 -8.93936 416.02893 - -4.98450 -10.31276 411.08364 - -6.08854 -11.78426 406.13898 - -7.34462 -13.35386 401.19510 - -7.34462 -13.35386 401.19510 - -8.55395 -14.78218 396.94407 - -9.88924 -16.28305 392.69384 - -11.35672 -17.85648 388.44455 - -12.96263 -19.50246 384.19632 - -14.71322 -21.22099 379.94930 - -14.71322 -21.22099 379.94930 - -17.26743 -23.61088 374.32163 - -20.10135 -26.12827 368.69678 - -23.22952 -28.77314 363.07527 - -26.66647 -31.54551 357.45761 - -30.42674 -34.44536 351.84431 - -30.42674 -34.44538 351.84431 - -30.82111 -34.74238 351.28324 - -31.21887 -35.04065 350.72222 - -31.62004 -35.34020 350.16125 - -32.02463 -35.64102 349.60033 - -32.43266 -35.94312 349.03947 - -32.43231 -35.94854 349.03947 - -34.95750 -37.62322 345.66559 - -37.58750 -39.00410 342.29378 - -40.30215 -40.09109 338.92420 - -43.08128 -40.88419 335.55702 - -45.90571 -41.42591 332.19239 - -45.90585 -41.42719 332.19239 - -46.73529 -41.51379 331.21195 - -47.56626 -41.57902 330.23175 - -48.39828 -41.61927 329.25178 - -49.23086 -41.63454 328.27207 - -50.06352 -41.62844 327.29260 - -50.06354 -41.62819 327.29260 - -52.16352 -42.37075 324.84503 - -54.30050 -43.10626 322.39911 - -56.47395 -43.82983 319.95490 - -58.68327 -44.54107 317.51247 - -60.92792 -45.24438 315.07189 - -60.92789 -45.24355 315.07189 - -63.20742 -45.93816 312.63322 - -65.52175 -46.63566 310.19655 - -67.87103 -47.33594 307.76194 - -70.25538 -48.03850 305.32946 - -72.67491 -48.74273 302.89920 - -72.67491 -48.74265 302.89920 - -77.61983 -50.15626 298.04562 - -82.70627 -51.57304 293.20181 - -87.93451 -52.99209 288.36843 - -93.30472 -54.41215 283.54615 - -98.81695 -55.83232 278.73562 - -98.81695 -55.83217 278.73562 - -104.47113 -57.25135 273.93752 - -110.26717 -58.66922 269.15258 - -116.20491 -60.08513 264.38154 - -122.28412 -61.49865 259.62516 - -128.50456 -62.90979 254.88419 - -128.50458 -62.90952 254.88419 - -137.44980 -64.87852 248.27414 - -146.67028 -66.84152 241.69802 - -156.16508 -68.79715 235.15818 - -165.93312 -70.74490 228.65696 - -175.97332 -72.68544 222.19670 - -175.97336 -72.68469 222.19670 - -185.40538 -72.42719 216.23671 - -194.80797 -72.25160 210.31619 - -204.19690 -72.21686 204.43714 - -213.59046 -72.32307 198.60156 - -223.00446 -72.51145 192.81146 - -223.00440 -72.51088 192.81146 - -232.45964 -72.95835 187.06881 - -242.00800 -74.20026 181.37564 - -251.77848 -76.05978 175.73404 - -261.76923 -77.58910 170.14608 - -271.93733 -78.78822 164.61385 - -271.93733 -78.78822 164.61385 - -283.80506 -79.97735 158.32342 - -295.85056 -81.16647 152.11290 - -308.07383 -82.35559 145.98573 - -320.47488 -83.54472 139.94534 - -333.05370 -84.73384 133.99519 - -333.05370 -84.73384 133.99519 - -345.81030 -85.92296 128.13874 - -358.74467 -87.11208 122.37966 - -371.85681 -88.30121 116.72163 - -385.14673 -89.49033 111.16835 - -398.61442 -90.67945 105.72350 - -398.61499 -90.67665 105.72350 - -412.16614 -90.08268 100.39094 - -425.45688 -87.62583 95.17445 - -438.33829 -84.60766 90.07764 - -450.72681 -81.03250 85.10413 - -462.54285 -76.97255 80.25752 - -462.54187 -76.96606 80.25752 - -473.69844 -72.21698 75.54138 - -484.11078 -66.98702 70.95865 - -493.70021 -61.20817 66.51200 - -502.38469 -54.88086 62.20413 - -510.08567 -48.07372 58.03772 - -510.08569 -48.07384 58.03772 - -510.18174 -47.97813 57.98296 - -510.27760 -47.88233 57.92821 - -510.37327 -47.78643 57.87350 - -510.46874 -47.69044 57.81881 - -510.56403 -47.59436 57.76415 - -510.56403 -47.59434 57.76415 - -512.34131 -45.94475 56.73042 - -514.05565 -44.28091 55.70602 - -515.70645 -42.60080 54.69097 - -517.29310 -40.90440 53.68530 - -518.81501 -39.19375 52.68904 - -518.81614 -39.18365 52.68904 - -523.18725 -33.64781 49.60513 - -526.88592 -27.96962 46.61613 - -529.89345 -22.12865 43.72260 - -532.19028 -16.12478 40.92508 - -533.75769 -9.97827 38.22411 - -533.75748 -9.97308 38.22411 - -534.26152 -6.82338 36.90997 - -534.57557 -3.63798 35.62006 - -534.69722 -0.40934 34.35438 - -534.62432 2.83794 33.11295 - -534.35690 6.07342 31.89576 - -534.35678 6.08014 31.89576 - -533.56048 11.42237 30.09597 - -532.27798 16.76232 28.35185 - -530.51009 22.09068 26.66321 - -528.25775 27.41008 25.02987 - -525.52191 32.71459 23.45164 - -525.52189 32.71292 23.45164 - -522.29504 38.16036 21.92830 - -518.58093 43.46848 20.45945 - -514.38374 48.77798 19.04465 - -509.70322 54.09142 17.68346 - -504.53916 59.40275 16.37546 - -504.53911 59.40050 16.37546 - -498.41455 63.10272 14.99883 - -491.91523 66.90510 13.68499 - -485.04407 70.39151 12.43307 - -477.85047 73.47172 11.24223 - -470.35158 76.49601 10.11159 - -470.35431 76.50346 10.11159 - -458.16795 97.30497 8.62845 - -443.18040 116.57478 7.25847 - -425.58501 134.60171 5.99734 - -405.54007 151.59698 4.84073 - -383.20715 167.10739 3.78432 - -383.19413 167.53148 3.78432 - -358.80347 180.33358 2.82306 - -332.85335 189.86514 1.95038 - -305.77907 196.44290 1.15965 - -277.99165 199.97124 0.44423 - -249.97247 199.52799 -0.20248 - -249.91525 199.39318 -0.20248 - -222.24408 195.55365 -0.78750 - -195.25539 189.67483 -1.31770 - -169.22177 181.93928 -1.79945 - -144.39137 172.51148 -2.23917 - -120.99068 161.53819 -2.64323 - -120.98335 161.41493 -2.64323 - -99.23851 148.99756 -3.01790 - -79.32608 135.25058 -3.36813 - -61.41443 120.51604 -3.69831 - -45.61209 105.12803 -4.01285 - -32.00553 89.16265 -4.31617 - -32.01811 89.08859 -4.31617 - -20.70839 72.40230 -4.61228 - -11.77016 55.18679 -4.90334 - -5.28400 37.37319 -5.19094 - -1.33346 18.96408 -5.47666 - 0.00005 0.00028 -5.76209 + 0.00000 0.00000 525.08950 + 0.00000 0.00000 520.88296 + 0.00000 0.00000 516.67642 + 0.00000 0.00000 512.46988 + 0.00000 0.00000 508.26334 + 0.00000 0.00000 504.05680 + 0.00000 0.00000 504.05680 + 0.00000 0.00000 499.85027 + 0.00000 0.00000 495.64373 + 0.00000 0.00000 491.43719 + 0.00000 0.00000 487.23065 + 0.00000 0.00000 483.02411 + 0.00000 0.00000 483.02411 + 0.00000 -0.00049 482.52923 + -0.00001 -0.00196 482.03434 + -0.00004 -0.00441 481.53945 + -0.00010 -0.00785 481.04457 + -0.00020 -0.01226 480.54968 + -0.00020 -0.01226 480.54968 + -0.00803 -0.14175 474.61103 + -0.03988 -0.41251 468.67238 + -0.11269 -0.82453 462.73375 + -0.24341 -1.37781 456.79515 + -0.44901 -2.07236 450.85659 + -0.44901 -2.07236 450.85659 + -0.68977 -2.75906 445.90783 + -1.00409 -3.54386 440.95917 + -1.40181 -4.42676 436.01064 + -1.89272 -5.40776 431.06230 + -2.48663 -6.48686 426.11419 + -2.48663 -6.48686 426.11419 + -3.19336 -7.66406 421.16639 + -4.02271 -8.93936 416.21898 + -4.98450 -10.31276 411.27209 + -6.08854 -11.78426 406.32585 + -7.34462 -13.35386 401.38037 + -7.34462 -13.35386 401.38037 + -8.55395 -14.78218 397.12798 + -9.88924 -16.28305 392.87639 + -11.35672 -17.85648 388.62572 + -12.96263 -19.50246 384.37613 + -14.71322 -21.22099 380.12774 + -14.71322 -21.22099 380.12774 + -17.26743 -23.61088 374.49826 + -20.10135 -26.12827 368.87160 + -23.22952 -28.77314 363.24827 + -26.66647 -31.54551 357.62879 + -30.42674 -34.44536 352.01368 + -30.42674 -34.44538 352.01368 + -30.82111 -34.74238 351.45243 + -31.21887 -35.04065 350.89123 + -31.62004 -35.34020 350.33008 + -32.02463 -35.64102 349.76898 + -32.43266 -35.94312 349.20794 + -32.43231 -35.94855 349.20794 + -34.95750 -37.62323 345.83296 + -37.58750 -39.00411 342.46006 + -40.30215 -40.09110 339.08940 + -43.08128 -40.88420 335.72112 + -45.90571 -41.42592 332.35540 + -45.90585 -41.42721 332.35540 + -46.73529 -41.51380 331.37464 + -47.56626 -41.57904 330.39412 + -48.39829 -41.61929 329.41384 + -49.23087 -41.63456 328.43381 + -50.06353 -41.62846 327.45402 + -50.06354 -41.62820 327.45402 + -52.16353 -42.37077 325.00566 + -54.30050 -43.10628 322.55894 + -56.47396 -43.82984 320.11394 + -58.68328 -44.54109 317.67071 + -60.92793 -45.24439 315.22933 + -60.92789 -45.24356 315.22933 + -63.20743 -45.93817 312.78987 + -65.52176 -46.63567 310.35240 + -67.87104 -47.33595 307.91700 + -70.25539 -48.03851 305.48373 + -72.67492 -48.74274 303.05268 + -72.67493 -48.74266 303.05268 + -77.61984 -50.15627 298.19750 + -82.70628 -51.57305 293.35210 + -87.93453 -52.99211 288.51713 + -93.30474 -54.41216 283.69326 + -98.81697 -55.83233 278.88114 + -98.81697 -55.83218 278.88114 + -104.47115 -57.25137 274.08145 + -110.26719 -58.66923 269.29492 + -116.20493 -60.08514 264.52229 + -122.28414 -61.49866 259.76432 + -128.50458 -62.90980 255.02175 + -128.50460 -62.90953 255.02175 + -137.44982 -64.87853 248.40948 + -146.67031 -66.84153 241.83113 + -156.16511 -68.79716 235.28907 + -165.93315 -70.74491 228.78562 + -175.97335 -72.68546 222.32314 + -175.97339 -72.68470 222.32314 + -185.40541 -72.42720 216.36108 + -194.80801 -72.25161 210.43849 + -204.19693 -72.21687 204.55737 + -213.59050 -72.32308 198.71973 + -223.00449 -72.51146 192.92756 + -223.00444 -72.51089 192.92756 + -232.45968 -72.95836 187.18284 + -242.00804 -74.20027 181.48761 + -251.77852 -76.05979 175.84394 + -261.76927 -77.58911 170.25391 + -271.93738 -78.78823 164.71961 + -271.93738 -78.78823 164.71961 + -283.80510 -79.97735 158.42681 + -295.85061 -81.16648 152.21391 + -308.07388 -82.35560 146.08436 + -320.47493 -83.54472 140.04160 + -333.05375 -84.73384 134.08907 + -333.05375 -84.73384 134.08907 + -345.81035 -85.92297 128.23024 + -358.74472 -87.11209 122.46878 + -371.85686 -88.30121 116.80838 + -385.14678 -89.49034 111.25272 + -398.61448 -90.67946 105.80550 + -398.61504 -90.67665 105.80550 + -412.16620 -90.08269 100.47056 + -425.45693 -87.62584 95.25169 + -438.33835 -84.60767 90.15250 + -450.72687 -81.03250 85.17661 + -462.54291 -76.97255 80.32763 + -462.54193 -76.96605 80.32763 + -473.69850 -72.21698 75.60911 + -484.11084 -66.98701 71.02400 + -493.70026 -61.20817 66.57498 + -502.38475 -54.88086 62.26473 + -510.08573 -48.07372 58.09594 + -510.08574 -48.07383 58.09594 + -510.18179 -47.97812 58.04115 + -510.27765 -47.88232 57.98637 + -510.37332 -47.78642 57.93163 + -510.46880 -47.69043 57.87690 + -510.56408 -47.59435 57.82221 + -510.56408 -47.59433 57.82221 + -512.34136 -45.94474 56.78788 + -514.05570 -44.28091 55.76288 + -515.70651 -42.60079 54.74722 + -517.29316 -40.90439 53.74095 + -518.81506 -39.19374 52.74409 + -518.81620 -39.18359 52.74409 + -523.18730 -33.64775 49.65826 + -526.88597 -27.96957 46.66736 + -529.89349 -22.12860 43.77192 + -532.19032 -16.12473 40.97249 + -533.75772 -9.97822 38.26962 + -533.75750 -9.97300 38.26962 + -534.26155 -6.82330 36.95452 + -534.57559 -3.63791 35.66365 + -534.69722 -0.40882 34.39702 + -534.62426 2.83932 33.15463 + -534.35674 6.07564 31.93649 + -534.35644 6.07766 31.93649 + -533.55907 11.44159 30.13526 + -532.27476 16.78272 28.38969 + -530.50497 22.11223 26.69961 + -528.25061 27.43272 25.06482 + -525.51266 32.73827 23.48514 + -525.51267 32.73648 23.48514 + -522.29149 38.05531 21.96035 + -518.58690 43.36439 20.49004 + -514.39913 48.67482 19.07380 + -509.72796 53.98913 17.71116 + -504.57317 59.30130 16.40171 + -504.57313 59.29905 16.40171 + -498.45864 63.00276 15.02350 + -491.96924 66.80654 13.70808 + -485.10786 70.29428 12.45460 + -477.92393 73.37574 11.26219 + -470.43458 76.40120 10.12999 + -470.43736 76.40905 10.12999 + -458.26333 97.22296 8.64469 + -443.28646 116.50402 7.27258 + -425.70026 134.54106 6.00934 + -405.66316 151.54534 4.85065 + -383.33645 167.07352 3.79219 + -383.32340 167.49781 3.79219 + -358.93565 180.32511 2.82892 + -332.98517 189.87811 1.95425 + -305.90779 196.47362 1.16156 + -278.11475 200.02226 0.44423 + -250.08686 199.60014 -0.20437 + -250.02963 199.46527 -0.20437 + -222.34719 195.63969 -0.79126 + -195.34617 189.76437 -1.32329 + -169.29998 182.02874 -1.80686 + -144.45726 172.59722 -2.24837 + -121.04505 161.61645 -2.65421 + -121.03769 161.49302 -2.65421 + -99.28267 149.06424 -3.03065 + -79.36195 135.30174 -3.38263 + -61.44410 120.55540 -3.71456 + -45.63669 105.16080 -4.03084 + -32.02608 89.18760 -4.33589 + -32.03868 89.11335 -4.33589 + -20.72302 72.45118 -4.63373 + -11.77865 55.22534 -4.92651 + -5.28790 37.40016 -5.21583 + -1.33446 18.97820 -5.50327 + 0.00006 0.00028 -5.79042 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -45533,7 +45669,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -45545,7 +45681,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -45575,7 +45711,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -45605,13 +45741,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -45753,7 +45889,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 402 100 P 19.15121 6.37650 19.15121 8.03679 402 100 P 19.15346 7.35750 19.15346 8.05953 402 100 P - 19.15749 7.35750 19.15749 8.11067 402 100 P + 19.15749 7.35750 19.15749 8.07470 402 100 P 19.16680 8.33850 19.16680 8.09745 402 100 P 19.18391 9.31950 19.18391 8.12778 402 100 P 19.20583 10.30050 19.20583 8.15810 402 100 P @@ -45765,7 +45901,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 402 100 P 19.47040 17.75610 19.47040 8.38860 402 100 P 19.51557 19.12950 19.51557 8.42045 402 100 P - 35.42323 19.12950 35.42323 9.37395 402 100 P + 35.42323 19.12950 35.42323 7.71513 402 100 P 32.70625 22.94480 32.70625 6.76540 402 100 P 29.08315 26.76010 29.08315 5.49910 402 100 P 25.45932 30.57540 25.45932 4.23280 402 100 P @@ -45787,7 +45923,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 402 0 P 0.00000 67.54866 0.00000 0.00000 402 0 P 0.00000 69.01526 0.00000 0.00000 402 0 P - 0.00000 70.48186 0.00000 0.00000 402 100 P + 0.00000 70.48186 0.00000 0.00000 402 0 P 0.00000 71.94845 0.00000 0.00000 402 0 P 1.35175 71.94845 1.35175 1.35175 402 100 P 22.50228 73.41505 22.50228 4.34725 402 100 P @@ -45795,7 +45931,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 402 100 P 33.72460 77.81483 33.72460 6.60891 402 100 P 36.49712 79.28142 36.49712 7.17432 402 100 P - 38.34053 79.28142 38.34053 4.74872 402 100 P + 38.34053 79.28142 38.34053 7.55127 402 100 P 41.10027 80.74802 41.10027 8.11668 402 100 P 44.77379 82.21461 44.77379 8.87057 402 100 P 48.44314 83.68121 48.44314 9.62445 402 100 P @@ -45822,40 +45958,40 @@ Status character 60.19409 94.46240 60.19409 16.34081 402 100 P 60.70391 95.05100 60.70391 16.52049 402 100 P 61.38383 95.63960 61.38383 16.76008 402 100 P - 62.14579 96.22820 62.06392 16.99966 330 100 3 - 62.00472 96.81680 62.74417 17.23925 330 99 3 - 61.75267 97.40540 63.25446 17.41894 330 98 3 - 61.61403 97.40540 63.68261 15.51013 330 97 3 - 61.70560 98.29811 64.45683 17.84220 330 96 3 - 61.56387 99.19082 65.48938 18.20557 330 94 3 - 61.45100 100.08353 66.52224 18.56894 330 92 3 - 61.36687 100.97624 67.55537 18.93231 330 91 3 - 61.12363 101.86895 68.33038 19.20484 330 89 3 - 64.34773 101.86895 68.84713 37.05286 330 93 3 - 61.28433 102.76166 69.62238 19.65905 330 88 3 - 61.28558 103.65437 70.65622 20.02242 330 87 3 - 61.31486 104.54708 71.69028 20.38579 330 86 3 - 61.37192 105.43979 72.72453 20.74916 330 84 3 - 61.26863 106.33250 73.50032 21.02168 330 83 3 - 39.61664 106.33250 53.01517 22.78231 220 75 2 - 40.33576 104.31350 56.86471 24.64229 220 71 2 - 41.74427 102.29450 61.99022 27.12226 220 67 2 - 43.20354 100.27550 67.10701 29.60224 220 64 2 - 44.71276 98.25650 72.21510 32.08222 220 62 2 - 45.63766 96.23750 76.04076 33.94220 220 60 2 - 165.55207 96.23750 247.70391 23.76485 220 67 2 - 153.77847 97.61090 243.72655 24.33242 220 63 2 - 144.44310 98.98430 244.09044 25.08918 220 59 2 - 136.90283 100.35770 247.25554 25.84593 220 55 2 - 130.58240 101.73110 251.72665 26.60269 220 52 2 - 116.45680 103.10450 255.56014 27.17026 110 46 1 - 116.83518 103.10450 258.28993 27.54864 110 45 1 - 92.60724 104.47790 262.57243 28.11621 110 35 1 - 70.87755 105.85130 268.51677 28.87297 110 26 1 - 51.28309 107.22470 274.66750 29.62973 110 19 1 - 33.65000 108.59810 280.96720 30.38649 110 12 1 - 17.61526 109.97150 285.76348 30.95406 110 0 1 - 17.99364 109.97150 288.99188 31.33244 110 0 1 + 62.16036 96.22820 62.06392 16.99966 330 100 3 + 62.01892 96.81680 62.74417 17.23925 330 99 3 + 61.76651 97.40540 63.25446 17.41894 330 98 3 + 62.07760 97.40540 63.68261 17.56967 330 97 3 + 61.71890 98.29811 64.45683 17.84220 330 96 3 + 61.57665 99.19082 65.48938 18.20557 330 94 3 + 61.46327 100.08353 66.52224 18.56894 330 92 3 + 61.37864 100.97624 67.55537 18.93231 330 91 3 + 61.13491 101.86895 68.33038 19.20484 330 89 3 + 61.51036 101.86895 68.84713 19.38652 330 89 3 + 61.29514 102.76166 69.62238 19.65905 330 88 3 + 61.29591 103.65437 70.65622 20.02242 330 87 3 + 61.32473 104.54708 71.69028 20.38579 330 86 3 + 61.38134 105.43979 72.72453 20.74916 330 84 3 + 61.27761 106.33250 73.50032 21.02168 330 83 3 + 39.63191 106.33250 53.01517 22.78231 220 75 2 + 40.35021 104.31350 56.86471 24.64229 220 71 2 + 41.75793 102.29450 61.99022 27.12226 220 67 2 + 43.21640 100.27550 67.10701 29.60224 220 64 2 + 44.72486 98.25650 72.21510 32.08222 220 62 2 + 45.64901 96.23750 76.04076 33.94220 220 60 2 + 165.64492 96.23750 247.70391 23.76485 220 67 2 + 153.86288 97.61090 243.72655 24.33242 220 63 2 + 144.51930 98.98430 244.09044 25.08918 220 59 2 + 136.97103 100.35770 247.25554 25.84593 220 55 2 + 130.64280 101.73110 251.72665 26.60269 220 52 2 + 116.65040 103.10450 255.56014 27.17026 110 46 1 + 117.02878 103.10450 258.28993 27.54864 110 45 1 + 92.77365 104.47790 262.57243 28.11621 110 35 1 + 71.01739 105.85130 268.51677 28.87297 110 26 1 + 51.39686 107.22470 274.66750 29.62973 110 19 1 + 33.73812 108.59810 280.96720 30.38649 110 12 1 + 17.67803 109.97150 285.76348 30.95406 110 0 1 + 18.05641 109.97150 288.99188 31.33244 110 0 1 18.28233 111.34490 293.87257 31.90001 1 0 A 18.72123 112.71830 300.43310 32.65677 1 0 A 19.15986 114.09170 307.04554 33.41353 1 0 A @@ -45891,9 +46027,9 @@ Layer name -3.50 42.014 'Hollandveen' -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' - -10.00 118.335 'Hydrobiaklei' - -12.00 21.262 'Basisveen' - -12.50 187.504 'Eerste zandlaag' + -10.00 118.238 'Hydrobiaklei' + -12.00 21.269 'Basisveen' + -12.50 187.658 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -45914,9 +46050,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.77 'Oude Zeeklei' -7.00 14.19 'Wadzand' - -10.00 21.51 'Hydrobiaklei' + -10.00 21.49 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 62.29 'Eerste zandlaag' + -12.50 62.34 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -46151,7 +46287,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -46163,7 +46299,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -46369,26 +46505,26 @@ Status character 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A - 17.25975 111.55210 187.60408 20.52326 110 0 1 - 34.42963 112.92550 192.70971 21.09083 110 18 1 - 34.84427 112.92550 196.12085 21.50547 110 18 1 - 50.37413 114.29890 201.24614 22.03678 110 25 1 - 64.70452 115.67230 208.09120 22.79354 110 31 1 - 77.77648 117.04570 214.94675 23.55030 110 36 1 - 89.75650 118.41910 221.81023 24.30706 110 40 1 - 100.62187 119.79250 226.96177 24.87463 110 44 1 - 101.00025 119.79250 230.39786 25.25301 110 44 1 - 111.10308 121.16590 235.55418 25.82058 110 47 1 - 120.76084 122.53930 242.43233 26.57734 110 50 1 - 126.08643 123.91270 249.31352 27.33410 220 51 2 - 130.97125 125.28610 256.19718 28.09086 220 51 2 - 135.09989 126.65950 261.36123 28.65843 220 52 2 - 136.92925 126.65950 264.80452 30.77502 220 52 2 - 140.53366 128.03290 269.97025 29.60438 220 52 2 - 145.25464 129.40630 276.85902 30.36113 220 52 2 - 149.95163 130.77970 283.74896 31.11789 220 53 2 - 154.63577 132.15310 290.63991 31.87465 220 53 2 - 158.64005 133.52650 295.80866 32.44222 220 54 2 + 17.17163 111.55210 187.60408 20.52326 110 0 1 + 34.36687 112.92550 192.70971 21.09083 110 18 1 + 34.74525 112.92550 196.12085 21.46921 110 18 1 + 50.33654 114.29890 201.24614 22.03678 110 25 1 + 64.69221 115.67230 208.09120 22.79354 110 31 1 + 77.78985 117.04570 214.94675 23.55030 110 36 1 + 89.79625 118.41910 221.81023 24.30706 110 40 1 + 100.68902 119.79250 226.96177 24.87463 110 44 1 + 101.06740 119.79250 230.39786 25.25301 110 44 1 + 111.19894 121.16590 235.55418 25.82058 110 47 1 + 120.88667 122.53930 242.43233 26.57734 110 50 1 + 126.12920 123.91270 249.31352 27.33410 220 51 2 + 131.02270 125.28610 256.19718 28.09086 220 51 2 + 135.16018 126.65950 261.36123 28.65843 220 52 2 + 136.51548 126.65950 264.80452 29.03681 220 52 2 + 140.60288 128.03290 269.97025 29.60438 220 52 2 + 145.33286 129.40630 276.85902 30.36113 220 52 2 + 150.03889 130.77970 283.74896 31.11789 220 53 2 + 154.73210 132.15310 290.63991 31.87465 220 53 2 + 158.74545 133.52650 295.80866 32.44222 220 54 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -46408,7 +46544,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 253.760 'Eerste zandlaag' + -12.50 253.820 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -46430,7 +46566,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -84.31 'Eerste zandlaag' + -12.50 -84.33 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -46664,7 +46800,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 380.05558 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 380.04921 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -46689,20 +46825,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.60 : Percentage mobilized resistance left - 10.17 : Percentage mobilized resistance right - 105.36 : Effective left - 80.00 : Effective right + 14.58 : Percentage mobilized resistance left + 10.15 : Percentage mobilized resistance right + 105.23 : Effective left + 79.87 : Effective right 1077.43 : Water pressure left 1120.54 : Water pressure right 721.71 : Max effective resistance left 786.86 : Max effective resistance right -8648.25 : Max moment left -9368.41 : Max moment right --1210.66 : Max mobilized moment left - -966.89 : Max mobilized moment right - 31.70 : Vertical force left - 24.98 : Vertical force right +-1208.99 : Max mobilized moment left + -965.27 : Max mobilized moment right + 31.66 : Vertical force left + 24.94 : Vertical force right 14.0 : Max mobilized moment percentage left 10.3 : Max mobilized moment percentage right -2.43 : Level of single support @@ -46711,17 +46847,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.98 : Active force -31.70 : Passive force --24.98 : Plugged active force -31.70 : Plugged passive force +-24.94 : Active force +31.66 : Passive force +-24.94 : Plugged active force +31.66 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -6.72 : Resulting Vertical Force Unplugged -6.72 : Resulting Vertical Force Plugged +6.71 : Resulting Vertical Force Unplugged +6.71 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -46734,204 +46870,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.65605 - 0.00000 0.00000 -4.67122 - 0.00000 0.00000 -4.68639 - 0.00000 0.00000 -4.70155 - 0.00000 0.00000 -4.71672 - 0.00000 0.00000 -4.73189 - 0.00000 0.00000 -4.73189 - 0.00000 0.00000 -4.74705 - 0.00000 0.00000 -4.76222 - 0.00000 0.00000 -4.77738 - 0.00000 0.00000 -4.79255 - 0.00000 0.00000 -4.80772 - 0.00000 0.00000 -4.80772 - 0.00000 0.00049 -4.80950 - 0.00001 0.00196 -4.81129 - 0.00004 0.00441 -4.81307 - 0.00010 0.00785 -4.81485 - 0.00020 0.01226 -4.81664 - 0.00020 0.01226 -4.81664 - 0.00163 0.04905 -4.82556 - 0.00552 0.11036 -4.83448 - 0.01308 0.19620 -4.84340 - 0.02555 0.30656 -4.85233 - 0.04415 0.44145 -4.86125 - 0.04415 0.44145 -4.86125 - 0.08226 0.64746 -4.87374 - 0.13479 0.85347 -4.88624 - 0.20174 1.05948 -4.89875 - 0.28312 1.26549 -4.91127 - 0.37891 1.47150 -4.92381 - 0.37891 1.47150 -4.92381 - 0.54078 1.76580 -4.94176 - 0.73207 2.06010 -4.95978 - 0.95280 2.35440 -4.97790 - 1.20295 2.64870 -4.99614 - 1.48254 2.94300 -5.01452 - 1.48254 2.94300 -5.01452 - 1.79155 3.23730 -5.03310 - 2.13000 3.53160 -5.05189 - 2.49787 3.82590 -5.07096 - 2.89518 4.12020 -5.09035 - 3.32191 4.41450 -5.11010 - 3.32191 4.41450 -5.11010 - 3.71244 4.66760 -5.12742 - 4.12474 4.92070 -5.14508 - 4.55880 5.17379 -5.16313 - 5.01463 5.42689 -5.18160 - 5.49223 5.67999 -5.20054 - 5.49223 -12.12559 -5.20054 - 4.12903 -11.79009 -5.22639 - 2.80409 -11.45458 -5.25290 - 1.51739 -11.11908 -5.27989 - 0.26894 -10.78358 -5.30713 - -0.94127 -10.44808 -5.33441 - -0.94062 -10.45895 -5.33441 - -1.76792 -10.22351 -5.35347 - -2.57638 -9.98807 -5.37239 - -3.36601 -9.75263 -5.39110 - -4.13680 -9.51719 -5.40954 - -4.88876 -9.28175 -5.42765 - -4.88898 -9.28346 -5.42765 - -5.07406 -9.22460 -5.43212 - -5.25796 -9.16574 -5.43656 - -5.44069 -9.10688 -5.44097 - -5.62224 -9.04802 -5.44536 - -5.80261 -8.98916 -5.44972 - -5.80291 -8.98591 -5.44972 - -6.68678 -8.69161 -5.47106 - -7.54123 -8.39731 -5.49156 - -8.36624 -8.10301 -5.51111 - -9.16183 -7.80871 -5.52961 - -9.92799 -7.51441 -5.54695 - -9.92787 -7.51351 -5.54695 - -10.66451 -7.21921 -5.56304 - -11.37172 -6.92491 -5.57779 - -12.04949 -6.63061 -5.59111 - -12.69784 -6.33631 -5.60291 - -13.31675 -6.04201 -5.61311 - -13.31675 -6.04186 -5.61311 - -13.90622 -5.74756 -5.62163 - -14.46627 -5.45326 -5.62840 - -14.99688 -5.15896 -5.63335 - -15.49806 -4.86466 -5.63641 - -15.96981 -4.57036 -5.63752 - -15.96983 -4.57008 -5.63752 - -16.58080 -4.15806 -5.63567 - -17.13408 -3.74604 -5.62973 - -17.62969 -3.33402 -5.61956 - -18.06761 -2.92200 -5.60506 - -18.44785 -2.50998 -5.58610 - -18.44789 -2.50920 -5.58610 - -18.74922 -2.12661 -5.56440 - -19.00081 -1.74402 -5.53870 - -19.20266 -1.36143 -5.50897 - -19.35478 -0.97884 -5.47516 - -19.45716 -0.59625 -5.43723 - -19.45709 -0.59587 -5.43723 - -19.50968 -0.21328 -5.39515 - -19.51254 0.16931 -5.34890 - -19.46566 0.55190 -5.29852 - -19.36905 0.93449 -5.24400 - -19.22270 1.31708 -5.18536 - -19.22270 1.31708 -5.18536 - -18.99291 1.75706 -5.11284 - -18.69734 2.19703 -5.03497 - -18.33599 2.63701 -4.95186 - -17.90887 3.07699 -4.86360 - -17.41597 3.51697 -4.77030 - -17.41597 3.51697 -4.77030 - -16.85730 3.95695 -4.67207 - -16.23285 4.39693 -4.56909 - -15.54262 4.83690 -4.46156 - -14.78661 5.27688 -4.34967 - -13.96483 5.71686 -4.23361 - -13.96547 5.72004 -4.23361 - -13.07744 6.16002 -4.11360 - -12.12363 6.60000 -3.98991 - -11.10404 7.03998 -3.86282 - -10.01867 7.47996 -3.73261 - -8.86753 7.91993 -3.59959 - -8.86655 7.92781 -3.59959 - -7.64845 8.36779 -3.46405 - -6.36458 8.80776 -3.32635 - -5.01493 9.24774 -3.18688 - -3.59950 9.68772 -3.04601 - -2.11830 10.12770 -2.90413 - -2.11822 10.12786 -2.90413 - -2.09795 10.13375 -2.90223 - -2.07768 10.13963 -2.90032 - -2.05740 10.14552 -2.89842 - -2.03710 10.15140 -2.89652 - -2.01679 10.15729 -2.89461 - -2.01679 10.15727 -2.89461 - -1.62869 10.26911 -2.85842 - -1.23634 10.38094 -2.82221 - -0.83974 10.49278 -2.78597 - -0.43889 10.60461 -2.74971 - -0.03379 10.71644 -2.71345 - -0.03490 10.72630 -2.71345 - 1.27345 11.07946 -2.59896 - 2.62417 11.43262 -2.48470 - 4.01728 11.78578 -2.37093 - 5.45276 12.13894 -2.25789 - 6.93062 12.49210 -2.14584 - 6.93097 12.49692 -2.14584 - 7.68608 12.67350 -2.09026 - 8.45179 12.85008 -2.03504 - 9.22809 13.02666 -1.98020 - 10.01499 13.20324 -1.92577 - 10.81248 13.37982 -1.87181 - 10.81259 13.37794 -1.87181 - 12.14010 13.17224 -1.78297 - 13.44704 12.96654 -1.69566 - 14.73341 12.76084 -1.61004 - 15.99921 12.55514 -1.52628 - 17.24444 12.34944 -1.44453 - 17.24441 12.34742 -1.44453 - 18.25015 11.98183 -1.37912 - 19.19294 11.01302 -1.31525 - 20.05624 10.04281 -1.25300 - 20.83990 9.07034 -1.19245 - 21.54379 8.09831 -1.13366 - 21.54374 8.09851 -1.13366 - 22.33610 7.75789 -1.06445 - 23.09708 7.47026 -0.99805 - 23.83184 7.23303 -0.93456 - 24.54528 7.04367 -0.87407 - 25.24208 6.89959 -0.81667 - 25.23844 6.92911 -0.81667 - 25.90952 2.75495 -0.74175 - 26.03588 -0.86096 -0.67322 - 25.69228 -3.96634 -0.61102 - 24.94698 -6.60709 -0.55507 - 23.86191 -8.82742 -0.50530 - 23.86519 -8.85054 -0.50530 - 22.49756 -10.59676 -0.46150 - 20.92383 -11.79170 -0.42325 - 19.21996 -12.47068 -0.39014 - 17.44984 -12.76807 -0.36176 - 15.65748 -12.79608 -0.33769 - 15.65763 -12.78050 -0.33769 - 13.87961 -12.58453 -0.31749 - 12.14287 -12.19755 -0.30072 - 10.47153 -11.65564 -0.28696 - 8.88516 -10.98797 -0.27580 - 7.39960 -10.21942 -0.26684 - 7.39995 -10.21133 -0.26684 - 6.04033 -9.24068 -0.25967 - 4.80984 -8.32844 -0.25399 - 3.71067 -7.36674 -0.24953 - 2.74894 -6.36673 -0.24601 - 1.92939 -5.33673 -0.24317 - 1.92957 -5.33444 -0.24317 - 1.24494 -4.40183 -0.24077 - 0.70370 -3.32695 -0.23866 - 0.31423 -2.23411 -0.23677 - 0.07891 -1.12495 -0.23499 - -0.00003 -0.00014 -0.23322 + 0.00000 0.00000 -4.66151 + 0.00000 0.00000 -4.67652 + 0.00000 0.00000 -4.69152 + 0.00000 0.00000 -4.70653 + 0.00000 0.00000 -4.72154 + 0.00000 0.00000 -4.73654 + 0.00000 0.00000 -4.73654 + 0.00000 0.00000 -4.75155 + 0.00000 0.00000 -4.76655 + 0.00000 0.00000 -4.78156 + 0.00000 0.00000 -4.79656 + 0.00000 0.00000 -4.81157 + 0.00000 0.00000 -4.81157 + 0.00000 0.00049 -4.81333 + 0.00001 0.00196 -4.81510 + 0.00004 0.00441 -4.81686 + 0.00010 0.00785 -4.81863 + 0.00020 0.01226 -4.82039 + 0.00020 0.01226 -4.82039 + 0.00163 0.04905 -4.82922 + 0.00552 0.11036 -4.83805 + 0.01308 0.19620 -4.84688 + 0.02555 0.30656 -4.85570 + 0.04415 0.44145 -4.86453 + 0.04415 0.44145 -4.86453 + 0.08226 0.64746 -4.87689 + 0.13479 0.85347 -4.88926 + 0.20174 1.05948 -4.90163 + 0.28312 1.26549 -4.91402 + 0.37891 1.47150 -4.92643 + 0.37891 1.47150 -4.92643 + 0.54078 1.76580 -4.94419 + 0.73207 2.06010 -4.96202 + 0.95280 2.35440 -4.97995 + 1.20295 2.64870 -4.99800 + 1.48254 2.94300 -5.01620 + 1.48254 2.94300 -5.01620 + 1.79155 3.23730 -5.03458 + 2.13000 3.53160 -5.05319 + 2.49787 3.82590 -5.07207 + 2.89518 4.12020 -5.09127 + 3.32191 4.41450 -5.11083 + 3.32191 4.41450 -5.11083 + 3.71244 4.66760 -5.12798 + 4.12474 4.92070 -5.14548 + 4.55880 5.17379 -5.16336 + 5.01463 5.42689 -5.18168 + 5.49223 5.67999 -5.20045 + 5.49223 -12.11922 -5.20045 + 4.12976 -11.78372 -5.22608 + 2.80554 -11.44821 -5.25239 + 1.51957 -11.11271 -5.27915 + 0.27184 -10.77721 -5.30618 + -0.93764 -10.44171 -5.33324 + -0.93699 -10.45259 -5.33324 + -1.76378 -10.21715 -5.35215 + -2.57173 -9.98171 -5.37092 + -3.36085 -9.74627 -5.38948 + -4.13114 -9.51083 -5.40778 + -4.88259 -9.27539 -5.42574 + -4.88281 -9.27710 -5.42574 + -5.06776 -9.21824 -5.43017 + -5.25154 -9.15938 -5.43457 + -5.43414 -9.10052 -5.43895 + -5.61556 -9.04166 -5.44330 + -5.79580 -8.98280 -5.44762 + -5.79610 -8.97955 -5.44762 + -6.67934 -8.68525 -5.46878 + -7.53315 -8.39095 -5.48909 + -8.35753 -8.09665 -5.50846 + -9.15248 -7.80235 -5.52678 + -9.91800 -7.50805 -5.54395 + -9.91788 -7.50715 -5.54395 + -10.65388 -7.21285 -5.55986 + -11.36045 -6.91855 -5.57443 + -12.03759 -6.62425 -5.58757 + -12.68530 -6.32995 -5.59919 + -13.30358 -6.03565 -5.60922 + -13.30358 -6.03550 -5.60922 + -13.89242 -5.74120 -5.61757 + -14.45182 -5.44690 -5.62417 + -14.98180 -5.15260 -5.62895 + -15.48234 -4.85830 -5.63185 + -15.95346 -4.56400 -5.63280 + -15.95347 -4.56372 -5.63280 + -16.56355 -4.15170 -5.63072 + -17.11595 -3.73968 -5.62455 + -17.61066 -3.32766 -5.61417 + -18.04770 -2.91564 -5.59946 + -18.42704 -2.50362 -5.58029 + -18.42708 -2.50284 -5.58029 + -18.72758 -2.12025 -5.55840 + -18.97835 -1.73766 -5.53252 + -19.17938 -1.35507 -5.50261 + -19.33067 -0.97248 -5.46863 + -19.43222 -0.58989 -5.43053 + -19.43215 -0.58950 -5.43053 + -19.48392 -0.20691 -5.38828 + -19.48595 0.17568 -5.34188 + -19.43824 0.55827 -5.29134 + -19.34080 0.94086 -5.23668 + -19.19362 1.32345 -5.17789 + -19.19362 1.32344 -5.17789 + -18.96288 1.76342 -5.10522 + -18.66636 2.20340 -5.02721 + -18.30406 2.64338 -4.94396 + -17.87599 3.08335 -4.85557 + -17.38214 3.52333 -4.76215 + -17.38214 3.52333 -4.76215 + -16.82251 3.96331 -4.66381 + -16.19711 4.40329 -4.56074 + -15.50593 4.84327 -4.45312 + -14.74897 5.28325 -4.34115 + -13.92624 5.72323 -4.22502 + -13.92688 5.72640 -4.22502 + -13.03790 6.16638 -4.10495 + -12.08313 6.60636 -3.98121 + -11.06259 7.04634 -3.85409 + -9.97628 7.48632 -3.72387 + -8.82419 7.92630 -3.59083 + -8.82320 7.93414 -3.59083 + -7.60415 8.37412 -3.45529 + -6.31934 8.81410 -3.31761 + -4.96874 9.25408 -3.17816 + -3.55237 9.69406 -3.03733 + -2.07022 10.13403 -2.89550 + -2.07014 10.13417 -2.89550 + -2.04986 10.14006 -2.89360 + -2.02958 10.14594 -2.89170 + -2.00928 10.15183 -2.88979 + -1.98897 10.15772 -2.88789 + -1.96865 10.16360 -2.88599 + -1.96865 10.16359 -2.88599 + -1.58031 10.27542 -2.84982 + -1.18771 10.38726 -2.81362 + -0.79087 10.49909 -2.77739 + -0.38978 10.61092 -2.74116 + 0.01556 10.72276 -2.70491 + 0.01444 10.73264 -2.70491 + 1.32355 11.08580 -2.59049 + 2.67503 11.43896 -2.47631 + 4.06890 11.79212 -2.36262 + 5.50514 12.14528 -2.24967 + 6.98377 12.49844 -2.13773 + 6.98419 12.50024 -2.13773 + 7.73950 12.67682 -2.08221 + 8.50541 12.85340 -2.02704 + 9.28191 13.02998 -1.97226 + 10.06900 13.20656 -1.91790 + 10.86669 13.38314 -1.86400 + 10.86680 13.38116 -1.86400 + 12.19463 13.17546 -1.77528 + 13.50189 12.96976 -1.68809 + 14.78858 12.76406 -1.60260 + 16.05470 12.55836 -1.51897 + 17.30026 12.35266 -1.43737 + 17.30035 12.34728 -1.43737 + 18.30605 11.98106 -1.37207 + 19.24874 11.01102 -1.30833 + 20.11182 10.03965 -1.24622 + 20.89518 9.06609 -1.18580 + 21.59868 8.09305 -1.12715 + 21.59861 8.09315 -1.12715 + 22.39039 7.75147 -1.05812 + 23.15067 7.46285 -0.99191 + 23.88464 7.22470 -0.92861 + 24.59721 7.03450 -0.86831 + 25.29305 6.88965 -0.81112 + 25.28937 6.91947 -0.81112 + 25.95862 2.73885 -0.73649 + 26.08244 -0.88052 -0.66828 + 25.73604 -3.98638 -0.60640 + 24.98807 -6.62472 -0.55078 + 23.90087 -8.83981 -0.50135 + 23.90418 -8.86316 -0.50135 + 22.53505 -10.60434 -0.45790 + 20.96093 -11.78921 -0.42001 + 19.25797 -12.46208 -0.38727 + 17.48912 -12.75839 -0.35927 + 15.69822 -12.78466 -0.33559 + 15.69837 -12.76902 -0.33559 + 13.92235 -12.56830 -0.31579 + 12.18806 -12.17881 -0.29943 + 10.51952 -11.63428 -0.28609 + 8.93632 -10.96410 -0.27536 + 7.45426 -10.19332 -0.26684 + 7.45462 -10.18516 -0.26684 + 6.08741 -9.33458 -0.26014 + 4.84386 -8.42131 -0.25493 + 3.73171 -7.45945 -0.25094 + 2.75695 -6.46026 -0.24791 + 1.92419 -5.43213 -0.24556 + 1.92438 -5.42983 -0.24556 + 1.23755 -4.37850 -0.24364 + 0.69931 -3.30774 -0.24202 + 0.31217 -2.22016 -0.24060 + 0.07837 -1.11741 -0.23930 + -0.00003 -0.00014 -0.23802 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -47157,7 +47293,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -47169,7 +47305,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -47359,42 +47495,42 @@ Status character 0.00000 107.67766 32.46998 6.68298 1 0 A 0.00000 108.48208 33.40765 7.01041 1 0 A 0.00000 109.28650 34.11083 7.25598 1 0 A - 2.92385 109.28650 22.39924 8.32270 110 0 1 - 5.24858 107.26750 26.18365 10.18268 110 0 1 - 8.16999 105.24850 31.21648 12.66266 110 0 1 - 11.06807 103.22950 36.23585 15.14263 110 0 1 - 13.94281 101.21050 41.24435 17.62261 110 0 1 - 16.17420 99.19150 44.99531 19.48259 110 0 1 + 2.91467 109.28650 22.39924 8.32270 110 0 1 + 5.23998 107.26750 26.18365 10.18268 110 0 1 + 8.16200 105.24850 31.21648 12.66266 110 0 1 + 11.06073 103.22950 36.23585 15.14263 110 0 1 + 13.93615 101.21050 41.24435 17.62261 110 0 1 + 16.16822 99.19150 44.99531 19.48259 110 0 1 7.96320 99.19150 152.00137 13.90162 1 0 A 8.29497 100.56490 141.39199 14.46919 1 0 A 8.73556 101.93830 143.33806 15.22595 1 0 A 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.15974 106.05850 162.45605 17.72174 1 0 A - 11.84397 107.43190 167.40248 18.25299 110 0 1 - 14.01809 108.80530 174.07947 19.00974 110 0 1 - 15.99661 110.17870 180.82097 19.76650 110 0 1 - 17.79638 111.55210 187.60408 20.52326 110 0 1 - 19.24505 112.92550 192.70971 21.09083 110 0 1 - 19.62343 112.92550 196.12085 21.46921 110 0 1 - 20.92786 114.29890 201.24614 22.03678 110 0 1 - 22.29398 115.67230 208.09120 22.79354 110 0 1 - 23.54810 117.04570 214.94675 23.55030 110 0 1 - 24.70570 118.41910 221.81023 24.30706 110 11 1 - 25.59308 119.79250 226.96177 24.87463 110 11 1 - 27.71139 119.79250 230.39786 26.99293 110 12 1 - 26.79279 121.16590 235.55418 25.82058 110 11 1 - 27.74854 122.53930 242.43233 26.57734 110 11 1 - 28.65954 123.91270 249.31352 27.33410 110 11 1 - 29.53578 125.28610 256.19718 28.09086 110 12 1 - 30.19807 126.65950 261.36123 28.65843 110 12 1 - 30.57645 126.65950 264.80452 29.03681 110 12 1 - 31.22300 128.03290 269.97025 29.60438 110 12 1 - 32.04767 129.40630 276.85902 30.36113 110 12 1 - 32.86475 130.77970 283.74896 31.11789 110 12 1 - 33.67773 132.15310 290.63991 31.87465 110 12 1 - 34.30093 133.52650 295.80866 32.44222 110 12 1 + 10.15974 106.05850 162.45605 17.68542 1 0 A + 11.83942 107.43190 167.40248 18.25299 110 0 1 + 14.01735 108.80530 174.07947 19.00974 110 0 1 + 15.99912 110.17870 180.82097 19.76650 110 0 1 + 17.80156 111.55210 187.60408 20.52326 110 0 1 + 19.25227 112.92550 192.70971 21.09083 110 0 1 + 19.63065 112.92550 196.12085 21.46921 110 0 1 + 20.93646 114.29890 201.24614 22.03678 110 0 1 + 22.30330 115.67230 208.09120 22.79354 110 0 1 + 23.55744 117.04570 214.94675 23.55030 110 11 1 + 24.71435 118.41910 221.81023 24.30706 110 11 1 + 25.60032 119.79250 226.96177 24.87463 110 11 1 + 25.97870 119.79250 230.39786 25.25301 110 11 1 + 26.79786 121.16590 235.55418 25.82058 110 11 1 + 27.75080 122.53930 242.43233 26.57734 110 11 1 + 28.65847 123.91270 249.31352 27.33410 110 11 1 + 29.53101 125.28610 256.19718 28.09086 110 12 1 + 30.18939 126.65950 261.36123 28.65843 110 12 1 + 30.56777 126.65950 264.80452 29.03681 110 12 1 + 31.21030 128.03290 269.97025 29.60438 110 12 1 + 32.03092 129.40630 276.85902 30.36113 110 12 1 + 32.84392 130.77970 283.74896 31.11789 110 12 1 + 33.65282 132.15310 290.63991 31.87465 110 12 1 + 34.27193 133.52650 295.80866 32.44222 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -47413,8 +47549,8 @@ Layer name -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' - -12.00 4.798 'Basisveen' - -12.50 75.202 'Eerste zandlaag' + -12.00 4.794 'Basisveen' + -12.50 75.074 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -47436,7 +47572,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -24.98 'Eerste zandlaag' + -12.50 -24.94 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -47659,7 +47795,7 @@ Lambda passive -13.62000 34.56770 167.44702 10.54104 0.53046 0.30494 4.84403 -13.76000 35.99430 174.28878 10.97700 0.53046 0.30496 4.84212 -13.90000 37.42090 179.42961 11.30387 0.53046 0.30498 4.84104 - -13.90000 37.42090 182.86061 11.52175 0.53142 0.30499 4.84046 + -13.90000 37.42090 182.86061 11.52175 0.53046 0.30499 4.84046 -14.04000 38.84750 188.01143 11.84851 0.53046 0.30500 4.83973 -14.18000 40.27410 194.88482 12.28414 0.53046 0.30501 4.83896 -14.32000 41.70070 201.76336 12.71969 0.53046 0.30502 4.83837 @@ -47671,7 +47807,7 @@ Lambda passive -15.02000 48.83370 236.19872 14.89687 0.53046 0.30505 4.83680 -15.16000 50.26030 243.09061 15.33222 0.53046 0.30506 4.83663 -15.30000 51.68690 248.26013 15.65873 0.53046 0.30506 4.83653 - -15.30000 51.68690 251.70674 15.87640 0.56387 0.30506 4.83646 + -15.30000 51.68690 251.70674 15.87640 0.53046 0.30506 4.83646 -15.44000 53.11350 256.87701 16.20290 0.53046 0.30506 4.83638 -15.58000 54.54010 263.77123 16.63821 0.53046 0.30506 4.83628 -15.72000 55.96670 270.66597 17.07352 0.53046 0.30507 4.83620 @@ -47850,47 +47986,47 @@ Status character 0.00000 106.34040 0.00000 0.00000 -1 0 - 0.00000 107.32140 0.00000 0.00000 -1 0 - 0.05110 102.32140 0.05110 0.05110 402 100 P - 14.75180 103.12582 24.87182 4.03158 220 59 2 - 14.76370 103.93024 25.81073 4.35901 220 57 2 - 14.78596 104.73466 26.74945 4.68644 220 55 2 - 14.81871 105.53908 27.68801 5.01387 220 54 2 - 14.77550 106.34350 28.39182 5.25945 220 52 2 - 9.54489 106.34350 18.04937 6.22689 220 53 2 - 11.32590 104.32450 21.80427 8.08687 220 52 2 - 13.73121 102.30550 26.79827 10.56685 220 51 2 - 16.13747 100.28650 31.78298 13.04682 220 51 2 - 18.54664 98.26750 36.76329 15.52680 220 50 2 - 20.33808 96.24850 40.49761 17.38678 220 50 2 - 42.80247 96.24850 135.72642 12.47202 110 32 1 - 38.97249 97.62190 125.13722 13.03959 110 31 1 - 35.59992 98.99530 128.37942 13.79635 110 28 1 - 32.55888 100.36870 134.13328 14.55311 110 24 1 - 29.83988 101.74210 140.50728 15.30987 110 21 1 - 27.31909 103.11550 145.44864 15.87744 110 19 1 - 27.51090 103.11550 148.78948 16.25582 110 18 1 - 25.32484 104.48890 153.84310 16.82339 110 16 1 - 23.49372 105.86230 160.62739 17.58015 110 15 1 - 22.10680 107.23570 167.44702 18.33690 110 13 1 - 21.82055 108.60910 174.28878 19.09366 110 13 1 - 21.50701 109.98250 179.42961 19.66123 110 12 1 - 21.92167 109.98250 182.86061 20.07589 110 12 1 - 21.71610 111.35590 188.01143 20.60718 110 12 1 - 21.86350 112.72930 194.88482 21.36394 110 11 1 - 22.12290 114.10270 201.76336 22.12070 110 11 1 - 22.47882 115.47610 208.64575 22.87746 110 0 1 - 22.72658 116.84950 213.80942 23.44503 110 0 1 - 23.10496 116.84950 217.25269 23.82341 110 0 1 - 23.41877 118.22290 222.41863 24.39098 110 0 1 - 23.97654 119.59630 229.30797 25.14774 110 0 1 - 24.57906 120.96970 236.19872 25.90450 110 0 1 - 25.21634 122.34310 243.09061 26.66126 110 0 1 - 25.68918 123.71650 248.26013 27.22883 110 0 1 - 27.80636 123.71650 251.70674 29.34601 110 0 1 - 26.55615 125.08990 256.87701 28.17478 110 0 1 - 27.24500 126.46330 263.77123 28.93154 110 0 1 - 27.94144 127.83670 270.66597 29.68829 110 0 1 - 28.64197 129.21010 277.56115 30.44505 110 0 1 - 29.15392 130.58350 282.73278 31.01262 110 0 1 + 14.76723 103.12582 24.87182 4.03158 220 59 2 + 14.77830 103.93024 25.81073 4.35901 220 57 2 + 14.79968 104.73466 26.74945 4.68644 220 55 2 + 14.83150 105.53908 27.68801 5.01387 220 54 2 + 14.78731 106.34350 28.39182 5.25945 220 52 2 + 9.54673 106.34350 18.04937 6.22689 220 53 2 + 11.32762 104.32450 21.80427 8.08687 220 52 2 + 13.73281 102.30550 26.79827 10.56685 220 51 2 + 16.13894 100.28650 31.78298 13.04682 220 51 2 + 18.54797 98.26750 36.76329 15.52680 220 50 2 + 20.33927 96.24850 40.49761 17.38678 220 50 2 + 42.85934 96.24850 135.72642 12.47202 110 32 1 + 39.00788 97.62190 125.13722 13.03959 110 31 1 + 35.61393 98.99530 128.37942 13.79635 110 28 1 + 32.55183 100.36870 134.13328 14.55311 110 24 1 + 29.81234 101.74210 140.50728 15.30987 110 21 1 + 27.27189 103.11550 145.44864 15.87744 110 19 1 + 27.50003 103.11550 148.78948 16.25582 110 18 1 + 25.25902 104.48890 153.84310 16.82339 110 16 1 + 23.41057 105.86230 160.62739 17.58015 110 15 1 + 22.10428 107.23570 167.44702 18.33690 110 13 1 + 21.81537 108.60910 174.28878 19.09366 110 13 1 + 21.49980 109.98250 179.42961 19.66123 110 12 1 + 21.87818 109.98250 182.86061 20.03961 110 12 1 + 21.70750 111.35590 188.01143 20.60718 110 12 1 + 21.85419 112.72930 194.88482 21.36394 110 11 1 + 22.11357 114.10270 201.76336 22.12070 110 0 1 + 22.47017 115.47610 208.64575 22.87746 110 0 1 + 22.71934 116.84950 213.80942 23.44503 110 0 1 + 23.09772 116.84950 217.25269 23.82341 110 0 1 + 23.41370 118.22290 222.41863 24.39098 110 0 1 + 23.97428 119.59630 229.30797 25.14774 110 0 1 + 24.58013 120.96970 236.19872 25.90450 110 0 1 + 25.22110 122.34310 243.09061 26.66126 110 0 1 + 25.69787 123.71650 248.26013 27.22883 110 0 1 + 26.07624 123.71650 251.70674 27.60721 110 0 1 + 26.56885 125.08990 256.87701 28.17478 110 0 1 + 27.26175 126.46330 263.77123 28.93154 110 0 1 + 27.96227 127.83670 270.66597 29.68829 110 0 1 + 28.66689 129.21010 277.56115 30.44505 110 0 1 + 29.18292 130.58350 282.73278 31.01262 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -47908,9 +48044,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 5.456 'Hydrobiaklei' - -12.00 7.468 'Basisveen' - -12.50 92.434 'Eerste zandlaag' + -10.00 5.461 'Hydrobiaklei' + -12.00 7.469 'Basisveen' + -12.50 92.297 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -47932,7 +48068,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.99 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.71 'Eerste zandlaag' + -12.50 30.66 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -48172,8 +48308,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 490.53629 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 294.14592 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 490.53073 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 294.16863 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -48214,10 +48350,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 15.20 : Percentage mobilized resistance left + 15.19 : Percentage mobilized resistance left 13.22 : Percentage mobilized resistance right - 56.65 : Effective left - 104.04 : Effective right + 56.60 : Effective left + 104.02 : Effective right 745.54 : Water pressure left 1120.54 : Water pressure right 372.69 : Max effective resistance left @@ -48226,8 +48362,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 16.41 : Vertical force left - 29.87 : Vertical force right + 16.39 : Vertical force left + 29.86 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -48236,17 +48372,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.87 : Active force -16.41 : Passive force --29.87 : Plugged active force -16.41 : Plugged passive force +-29.86 : Active force +16.39 : Passive force +-29.86 : Plugged active force +16.39 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --13.46 : Resulting Vertical Force Unplugged --13.46 : Resulting Vertical Force Plugged +-13.47 : Resulting Vertical Force Unplugged +-13.47 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -48259,210 +48395,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 5.55142 - 0.00000 0.00000 5.19681 - 0.00000 0.00000 4.84220 - 0.00000 0.00000 4.48759 - 0.00000 0.00000 4.13298 - 0.00000 0.00000 3.77836 - 0.00000 0.00000 3.77836 - 0.00000 0.00000 3.42375 - 0.00000 0.00000 3.06914 - 0.00000 0.00000 2.71453 - 0.00000 0.00000 2.35992 - 0.00000 0.00000 2.00531 - 0.00000 0.00000 2.00531 - 0.00000 0.00049 1.96359 - 0.00001 0.00196 1.92187 - 0.00004 0.00441 1.88015 - 0.00010 0.00785 1.83843 - 0.00020 0.01226 1.79672 - 0.00020 0.01226 1.79672 - 0.00803 0.14175 1.29609 - 0.03988 0.41251 0.79547 - 0.11269 0.82453 0.29484 - 0.24341 1.37781 -0.20583 - 0.44901 2.07236 -0.70654 - 0.44901 2.07236 -0.70654 - 0.68977 2.75906 -1.12385 - 1.00409 3.54386 -1.54124 - 1.40181 4.42676 -1.95877 - 1.89272 5.40776 -2.37648 - 2.48663 6.48686 -2.79444 - 2.48663 6.48686 -2.79444 - 3.19336 7.66406 -3.21269 - 4.02271 8.93936 -3.63134 - 4.98450 10.31276 -4.05051 - 6.08854 11.78426 -4.47032 - 7.34462 13.35386 -4.89091 - 7.34462 13.35386 -4.89091 - 8.55395 14.78218 -5.25332 - 9.88924 16.28305 -5.61654 - 11.35672 17.85648 -5.98068 - 12.96263 19.50246 -6.34590 - 14.71322 21.22099 -6.71232 - 14.71322 -107.06530 -6.71232 - 2.64279 -104.67540 -7.19974 - -9.14793 -102.15802 -7.68760 - -20.64439 -99.51315 -8.17399 - -31.83208 -96.74078 -8.65706 - -42.69645 -93.84093 -9.13491 - -42.69580 -93.85180 -9.13491 - -50.11992 -91.74069 -9.46614 - -57.37264 -89.56679 -9.79333 - -64.44893 -87.33011 -10.11591 - -71.34378 -85.03065 -10.43330 - -78.05216 -82.66840 -10.74495 - -78.05238 -82.67010 -10.74495 - -79.69978 -82.06973 -10.82189 - -81.33514 -81.46544 -10.89844 - -82.95838 -80.85722 -10.97457 - -84.56940 -80.24507 -11.05029 - -86.16815 -79.62900 -11.12558 - -86.16845 -79.62575 -11.12558 - -93.97488 -76.48655 -11.49533 - -101.46249 -73.24925 -11.85324 - -108.62146 -69.91385 -12.19840 - -115.44199 -66.48035 -12.52992 - -121.91426 -62.94875 -12.84689 - -121.91414 -62.94792 -12.84689 - -125.01658 -61.14533 -12.99966 - -128.02827 -59.31822 -13.14848 - -130.94799 -57.46658 -13.29327 - -133.77452 -55.59042 -13.43395 - -136.50662 -53.68973 -13.57041 - -136.50662 -53.68972 -13.57041 - -139.14329 -51.77677 -13.70257 - -141.68430 -49.86382 -13.83034 - -144.12967 -47.95087 -13.95366 - -146.47939 -46.03792 -14.07244 - -148.73346 -44.12497 -14.18660 - -148.73346 -44.12488 -14.18660 - -152.95466 -40.29898 -14.40078 - -156.79326 -36.47308 -14.59568 - -160.24927 -32.64718 -14.77087 - -163.32270 -28.82128 -14.92592 - -166.01353 -24.99538 -15.06040 - -166.01355 -24.99510 -15.06040 - -169.13792 -19.63884 -15.21329 - -171.51242 -14.28258 -15.32441 - -173.13705 -8.92632 -15.39335 - -174.01179 -3.57006 -15.41971 - -174.13666 1.78620 -15.40309 - -174.13670 1.78698 -15.40309 - -173.58111 6.76065 -15.34897 - -172.37894 11.73432 -15.25787 - -170.53019 16.70799 -15.13020 - -168.03486 21.68166 -14.96635 - -164.89295 26.65533 -14.76672 - -164.89288 26.65571 -14.76672 - -161.10435 31.62938 -14.53181 - -156.66925 36.60305 -14.26259 - -151.58756 41.57672 -13.96013 - -145.85930 46.55039 -13.62554 - -139.48446 51.52406 -13.25987 - -139.48446 51.52406 -13.25987 - -131.35406 57.24378 -12.80249 - -122.36857 62.96350 -12.30810 - -112.52798 68.68322 -11.77948 - -101.83229 74.40294 -11.21939 - -90.28150 80.12266 -10.63061 - -90.28150 80.12266 -10.63061 - -77.87561 85.84238 -10.01611 - -64.61463 91.56210 -9.37967 - -50.49855 97.28182 -8.72525 - -35.52736 103.00154 -8.05684 - -19.70109 108.72126 -7.37840 - -19.70173 108.72444 -7.37840 - -3.01988 114.44416 -6.69411 - 14.51708 120.16388 -6.00895 - 32.90913 125.88360 -5.32811 - 52.15627 131.60332 -4.65674 - 72.25852 137.32304 -4.00005 - 72.25950 137.33092 -4.00005 - 93.21803 143.05064 -3.36340 - 115.03164 148.77036 -2.75297 - 137.70036 154.49008 -2.17515 - 161.22418 160.20980 -1.63633 - 185.60309 165.92952 -1.14288 - 185.60318 165.92967 -1.14288 - 185.93511 166.00619 -1.13661 - 186.26720 166.08271 -1.13036 - 186.59944 166.15923 -1.12411 - 186.93184 166.23575 -1.11787 - 187.26439 166.31226 -1.11165 - 187.26439 166.31226 -1.11165 - 187.59709 166.38878 -1.10543 - 187.92994 166.46530 -1.09922 - 188.26295 166.54182 -1.09302 - 188.59611 166.61834 -1.08683 - 188.92942 166.69485 -1.08065 - 188.92942 166.69484 -1.08065 - 194.95196 167.80406 -0.97106 - 201.00828 168.66043 -0.86465 - 207.09566 169.52951 -0.76152 - 213.21456 170.41128 -0.66178 - 219.36540 171.30336 -0.56551 - 219.36428 -122.83270 -0.56551 - 204.80948 -119.73274 -0.26995 - 190.63301 -116.51830 -0.01154 - 176.85073 -113.16274 0.21223 - 163.47960 -109.66606 0.40385 - 150.53546 -106.05490 0.56582 - 150.53580 -106.05007 0.56582 - 144.23252 -104.06081 0.63645 - 138.04830 -102.08185 0.70053 - 131.98246 -100.11468 0.75835 - 126.03430 -98.15929 0.81018 - 120.20314 -96.21422 0.85629 - 120.20389 -96.23763 0.85629 - 111.57831 -93.21828 0.91594 - 103.25078 -89.78311 0.96395 - 95.24137 -86.22947 1.00116 - 87.56008 -82.57462 1.02840 - 80.21484 -78.85217 1.04651 - 80.21477 -78.84337 1.04651 - 73.21086 -75.09134 1.05629 - 66.54769 -71.35429 1.05844 - 60.22388 -67.63375 1.05362 - 54.23769 -63.93484 1.04248 - 48.58682 -60.26630 1.02568 - 48.58691 -60.26502 1.02568 - 42.73181 -56.86849 1.00145 - 37.20764 -53.63916 0.97184 - 31.99857 -50.57198 0.93751 - 27.08726 -47.68405 0.89910 - 22.45472 -45.00723 0.85730 - 22.45164 -44.98426 0.85730 - 16.47405 -40.29565 0.79427 - 11.18000 -35.36820 0.72720 - 6.56106 -30.65274 0.65721 - 2.58704 -26.15568 0.58545 - -0.77309 -21.88499 0.51307 - -0.77179 -21.87786 0.51307 - -3.54763 -17.81515 0.44107 - -5.77034 -13.97324 0.36994 - -7.46992 -10.34094 0.30013 - -8.67526 -6.91127 0.23204 - -9.41603 -3.71630 0.16611 - -9.41366 -3.68604 0.16611 - -9.72578 -0.84869 0.10263 - -9.67195 1.54602 0.04155 - -9.31256 3.51945 -0.01721 - -8.70532 5.08962 -0.07373 - -7.90548 6.27371 -0.12809 - -7.90564 6.26760 -0.12809 - -6.96696 7.08168 -0.18045 - -5.93937 7.53999 -0.23110 - -4.87180 7.65470 -0.28029 - -3.81161 7.43597 -0.32827 - -2.80490 6.89197 -0.37531 - -2.80301 6.87786 -0.37531 - -1.88548 6.13633 -0.42168 - -1.10521 4.95814 -0.46760 - -0.50962 3.51376 -0.51320 - -0.13113 1.85991 -0.55863 - 0.00209 0.01196 -0.60403 + 0.00000 0.00000 5.54745 + 0.00000 0.00000 5.19296 + 0.00000 0.00000 4.83846 + 0.00000 0.00000 4.48397 + 0.00000 0.00000 4.12948 + 0.00000 0.00000 3.77498 + 0.00000 0.00000 3.77498 + 0.00000 0.00000 3.42049 + 0.00000 0.00000 3.06600 + 0.00000 0.00000 2.71150 + 0.00000 0.00000 2.35701 + 0.00000 0.00000 2.00252 + 0.00000 0.00000 2.00252 + 0.00000 0.00049 1.96081 + 0.00001 0.00196 1.91911 + 0.00004 0.00441 1.87740 + 0.00010 0.00785 1.83569 + 0.00020 0.01226 1.79399 + 0.00020 0.01226 1.79399 + 0.00803 0.14175 1.29353 + 0.03988 0.41251 0.79308 + 0.11269 0.82453 0.29261 + 0.24341 1.37781 -0.20789 + 0.44901 2.07236 -0.70844 + 0.44901 2.07236 -0.70844 + 0.68977 2.75906 -1.12561 + 1.00409 3.54386 -1.54286 + 1.40181 4.42676 -1.96025 + 1.89272 5.40776 -2.37783 + 2.48663 6.48686 -2.79564 + 2.48663 6.48686 -2.79564 + 3.19336 7.66406 -3.21376 + 4.02271 8.93936 -3.63227 + 4.98450 10.31276 -4.05130 + 6.08854 11.78426 -4.47098 + 7.34462 13.35386 -4.89142 + 7.34462 13.35386 -4.89142 + 8.55395 14.78218 -5.25372 + 9.88924 16.28305 -5.61682 + 11.35672 17.85648 -5.98084 + 12.96263 19.50246 -6.34594 + 14.71322 21.22099 -6.71224 + 14.71322 -107.05973 -6.71224 + 2.64342 -104.66984 -7.19951 + -9.14666 -102.15246 -7.68720 + -20.64249 -99.50758 -8.17345 + -31.82954 -96.73522 -8.65635 + -42.69328 -93.83536 -9.13405 + -42.69263 -93.84625 -9.13405 + -50.11630 -91.73514 -9.46517 + -57.36858 -89.56124 -9.79225 + -64.44443 -87.32456 -10.11472 + -71.33883 -85.02510 -10.43201 + -78.04677 -82.66285 -10.74354 + -78.04699 -82.66456 -10.74354 + -79.69428 -82.06419 -10.82046 + -81.32953 -81.45989 -10.89698 + -82.95265 -80.85167 -10.97308 + -84.56357 -80.23953 -11.04877 + -86.16221 -79.62346 -11.12404 + -86.16250 -79.62020 -11.12404 + -93.96838 -76.48100 -11.49365 + -101.45543 -73.24370 -11.85143 + -108.61385 -69.90830 -12.19646 + -115.43382 -66.47480 -12.52785 + -121.90554 -62.94320 -12.84469 + -121.90542 -62.94237 -12.84469 + -125.00758 -61.13978 -12.99739 + -128.01899 -59.31267 -13.14615 + -130.93844 -57.46103 -13.29088 + -133.76469 -55.58487 -13.43149 + -136.49651 -53.68418 -13.56789 + -136.49651 -53.68416 -13.56789 + -139.13290 -51.77121 -13.69998 + -141.67364 -49.85826 -13.82770 + -144.11872 -47.94531 -13.95095 + -146.46817 -46.03236 -14.06967 + -148.72196 -44.11941 -14.18377 + -148.72197 -44.11933 -14.18377 + -152.94260 -40.29343 -14.39782 + -156.78065 -36.46753 -14.59261 + -160.23611 -32.64163 -14.76768 + -163.30898 -28.81573 -14.92261 + -165.99926 -24.98983 -15.05697 + -165.99927 -24.98955 -15.05697 + -169.12287 -19.63329 -15.20971 + -171.49659 -14.27703 -15.32067 + -173.12044 -8.92077 -15.38946 + -173.99441 -3.56451 -15.41568 + -174.11850 1.79175 -15.39891 + -174.11854 1.79253 -15.39891 + -173.56223 6.76620 -15.34465 + -172.35933 11.73987 -15.25343 + -170.50986 16.71354 -15.12565 + -168.01381 21.68721 -14.96168 + -164.87118 26.66088 -14.76193 + -164.87111 26.66127 -14.76193 + -161.08186 31.63494 -14.52692 + -156.64603 36.60861 -14.25759 + -151.56362 41.58228 -13.95504 + -145.83464 46.55595 -13.62035 + -139.45908 51.52962 -13.25460 + -139.45908 51.52961 -13.25460 + -131.32785 57.24933 -12.79712 + -122.34153 62.96905 -12.30265 + -112.50011 68.68877 -11.77395 + -101.80358 74.40849 -11.21379 + -90.25197 80.12821 -10.62495 + -90.25197 80.12821 -10.62495 + -77.84525 85.84793 -10.01040 + -64.58343 91.56766 -9.37391 + -50.46652 97.28738 -8.71945 + -35.49451 103.00710 -8.05101 + -19.66740 108.72682 -7.37255 + -19.66804 108.72999 -7.37255 + -2.98536 114.44972 -6.68826 + 14.55242 120.16944 -6.00310 + 32.94530 125.88916 -5.32226 + 52.19328 131.60888 -4.65092 + 72.29636 137.32860 -3.99425 + 72.29735 137.33644 -3.99425 + 93.25669 143.05616 -3.35764 + 115.07114 148.77588 -2.74727 + 137.74068 154.49561 -2.16952 + 161.26532 160.21533 -1.63077 + 185.64506 165.93505 -1.13740 + 185.64514 165.93518 -1.13740 + 185.97709 166.01170 -1.13114 + 186.30919 166.08822 -1.12489 + 186.64144 166.16474 -1.11864 + 186.97385 166.24126 -1.11241 + 187.30641 166.31777 -1.10618 + 187.30641 166.31777 -1.10618 + 187.63912 166.39429 -1.09996 + 187.97199 166.47081 -1.09376 + 188.30500 166.54733 -1.08756 + 188.63818 166.62385 -1.08137 + 188.97150 166.70036 -1.07519 + 188.97150 166.70035 -1.07519 + 194.99423 167.80957 -0.96562 + 201.05076 168.66594 -0.85924 + 207.13833 169.53502 -0.75613 + 213.25743 170.41679 -0.65641 + 219.40847 171.30887 -0.56018 + 219.40735 -122.84987 -0.56018 + 204.85049 -119.74991 -0.26470 + 190.67195 -116.53547 -0.00639 + 176.88762 -113.17991 0.21728 + 163.51442 -109.68323 0.40878 + 150.56822 -106.07207 0.57063 + 150.56865 -106.07027 0.57063 + 144.26415 -104.08100 0.64120 + 138.07872 -102.10204 0.70522 + 132.01167 -100.13487 0.76297 + 126.06230 -98.17948 0.81474 + 120.22993 -96.23441 0.86078 + 120.23067 -96.25793 0.86078 + 111.60317 -93.24077 0.92033 + 103.27340 -89.80992 0.96823 + 95.26136 -86.26051 1.00533 + 87.57706 -82.60978 1.03246 + 80.22852 -78.88872 1.05046 + 80.22860 -78.88412 1.05046 + 73.22104 -75.13082 1.06013 + 66.55434 -71.39255 1.06216 + 60.22710 -67.67083 1.05722 + 54.23759 -63.97079 1.04597 + 48.58349 -60.30114 1.02905 + 48.58356 -60.29999 1.02905 + 42.72497 -56.90335 1.00470 + 37.19732 -53.67390 0.97496 + 31.98479 -50.60662 0.94050 + 27.07002 -47.71858 0.90198 + 22.43403 -45.04167 0.86005 + 22.43090 -45.01836 0.86005 + 16.44881 -40.32585 0.79686 + 11.15081 -35.39465 0.72962 + 6.52841 -30.67560 0.65948 + 2.55144 -26.17510 0.58758 + -0.81118 -21.90106 0.51507 + -0.80986 -21.89386 0.51507 + -3.58771 -17.82788 0.44294 + -5.81197 -13.98277 0.37170 + -7.51267 -10.34728 0.30178 + -8.71867 -6.91442 0.23360 + -9.45958 -3.71460 0.16758 + -9.45721 -3.68442 0.16758 + -9.76889 -0.84302 0.10403 + -9.71379 1.55846 0.04288 + -9.35217 3.53892 -0.01593 + -8.74169 5.11641 -0.07249 + -7.93757 6.30818 -0.12689 + -7.93773 6.30205 -0.12689 + -6.99367 7.12421 -0.17927 + -5.95953 7.59104 -0.22994 + -4.88419 7.71476 -0.27914 + -3.81494 7.50553 -0.32713 + -2.79780 6.97151 -0.37418 + -2.79591 6.95744 -0.37418 + -1.87786 6.10472 -0.42057 + -1.10126 4.93750 -0.46650 + -0.50790 3.50162 -0.51212 + -0.13070 1.85371 -0.55756 + 0.00209 0.01192 -0.60297 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -48694,7 +48830,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -48706,7 +48842,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -48885,50 +49021,50 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 12.03076 101.25211 24.97488 4.06752 110 48 1 - 12.77331 102.14482 26.01680 4.43089 110 49 1 - 13.42236 103.03753 27.05851 4.79425 110 50 1 - 13.98543 103.93024 28.10001 5.15762 110 50 1 - 14.37918 104.82295 28.88100 5.43015 110 50 1 - 14.56086 104.82295 29.40161 5.61184 110 50 1 - 14.88335 105.71566 30.18242 5.88436 110 49 1 - 15.23157 106.60837 31.22336 6.24773 110 49 1 - 15.52054 107.50108 32.26413 6.61110 110 48 1 - 15.75612 108.39379 33.30474 6.97447 110 47 1 - 15.85334 109.28650 34.08510 7.24700 110 47 1 - 11.48487 109.28650 22.39924 8.32270 220 51 2 - 13.34655 107.26750 26.18365 10.18268 220 51 2 - 15.82714 105.24850 31.21648 12.66266 220 51 2 - 18.29847 103.22950 36.23585 15.14263 220 50 2 - 20.76217 101.21050 41.24435 17.62261 220 50 2 - 22.59615 99.19150 44.99531 19.48259 220 50 2 - 34.94671 99.19150 152.00137 13.90162 110 23 1 - 33.79788 100.56490 141.39199 14.46919 110 24 1 - 32.74846 101.93830 143.33806 15.22595 110 23 1 - 31.63861 103.31170 148.44319 15.98271 110 21 1 - 30.49768 104.68510 154.44929 16.73947 110 20 1 - 29.16586 106.05850 159.20703 17.30704 110 18 1 - 29.54424 106.05850 162.45605 17.68542 110 18 1 - 28.23561 107.43190 167.40248 18.25299 110 17 1 - 27.15126 108.80530 174.07947 19.00974 110 16 1 - 26.11179 110.17870 180.82097 19.76650 110 14 1 - 25.12700 111.55210 187.60408 20.52326 110 13 1 - 24.01751 112.92550 192.70971 21.09083 110 12 1 - 24.43215 112.92550 196.12085 21.50547 110 12 1 - 23.35727 114.29890 201.24614 22.03678 110 12 1 - 22.57659 115.67230 208.09120 22.79354 110 0 1 - 21.86170 117.04570 214.94675 23.55030 110 0 1 - 21.20966 118.41910 221.81023 24.30706 110 0 1 - 20.42831 119.79250 226.96177 24.87463 110 0 1 - 20.80669 119.79250 230.39786 25.25301 110 0 1 - 20.08019 121.16590 235.55418 25.82058 110 0 1 - 19.58987 122.53930 242.43233 26.57734 110 0 1 - 19.13942 123.91270 249.31352 27.33410 110 0 1 - 18.72169 125.28610 256.19718 28.09086 110 0 1 - 18.14034 126.65950 261.36123 28.65843 110 0 1 - 20.25693 126.65950 264.80452 30.77502 110 0 1 - 17.95520 128.03290 269.97025 29.60438 110 0 1 - 17.59318 129.40630 276.85902 30.36113 110 0 1 + 12.04697 101.25211 24.97488 4.06752 110 48 1 + 12.78900 102.14482 26.01680 4.43089 110 49 1 + 13.43755 103.03753 27.05851 4.79425 110 50 1 + 14.00011 103.93024 28.10001 5.15762 110 50 1 + 14.39335 104.82295 28.88100 5.43015 110 50 1 + 14.57503 104.82295 29.40161 5.61184 110 50 1 + 14.89703 105.71566 30.18242 5.88436 110 49 1 + 15.24476 106.60837 31.22336 6.24773 110 49 1 + 15.53325 107.50108 32.26413 6.61110 110 48 1 + 15.76836 108.39379 33.30474 6.97447 110 47 1 + 15.86513 109.28650 34.08510 7.24700 110 47 1 + 11.48605 109.28650 22.39924 8.32270 220 51 2 + 13.34768 107.26750 26.18365 10.18268 220 51 2 + 15.82822 105.24850 31.21648 12.66266 220 51 2 + 18.29951 103.22950 36.23585 15.14263 220 51 2 + 20.76317 101.21050 41.24435 17.62261 220 50 2 + 22.59711 99.19150 44.99531 19.48259 220 50 2 + 34.97560 99.19150 152.00137 13.90162 110 23 1 + 33.82531 100.56490 141.39199 14.46919 110 24 1 + 32.77461 101.93830 143.33806 15.22595 110 23 1 + 31.66368 103.31170 148.44319 15.98271 110 21 1 + 30.52188 104.68510 154.44929 16.73947 110 20 1 + 29.18937 106.05850 159.20703 17.30704 110 18 1 + 29.56775 106.05850 162.45605 17.68542 110 18 1 + 28.25866 107.43190 167.40248 18.25299 110 17 1 + 27.17404 108.80530 174.07947 19.00974 110 16 1 + 26.13451 110.17870 180.82097 19.76650 110 14 1 + 25.14987 111.55210 187.60408 20.52326 110 13 1 + 24.04074 112.92550 192.70971 21.09083 110 12 1 + 24.41911 112.92550 196.12085 21.46921 110 12 1 + 23.38107 114.29890 201.24614 22.03678 110 12 1 + 22.60117 115.67230 208.09120 22.79354 110 0 1 + 21.88727 117.04570 214.94675 23.55030 110 0 1 + 21.23641 118.41910 221.81023 24.30706 110 0 1 + 20.45641 119.79250 226.96177 24.87463 110 0 1 + 20.83479 119.79250 230.39786 25.25301 110 0 1 + 20.10981 121.16590 235.55418 25.82058 110 0 1 + 19.62115 122.53930 242.43233 26.57734 110 0 1 + 19.17244 123.91270 249.31352 27.33410 110 0 1 + 18.75649 125.28610 256.19718 28.09086 110 0 1 + 18.17692 126.65950 261.36123 28.65843 110 0 1 + 18.55530 126.65950 264.80452 29.03681 110 0 1 + 17.99351 128.03290 269.97025 29.60438 110 0 1 + 17.63316 129.40630 276.85902 30.36113 110 0 1 17.89495 130.77970 283.74896 31.11789 1 0 A 18.33030 132.15310 290.63991 31.87465 1 0 A 18.65681 133.52650 295.80866 32.44222 1 0 A @@ -48949,9 +49085,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.378 'Hydrobiaklei' - -12.00 8.527 'Basisveen' - -12.50 83.134 'Eerste zandlaag' + -10.00 12.391 'Hydrobiaklei' + -12.00 8.528 'Basisveen' + -12.50 83.098 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -48973,7 +49109,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.25 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -27.62 'Eerste zandlaag' + -12.50 -27.61 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -49097,18 +49233,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 71.15100 34.65200 7.67527 7.15077 -10.88000 71.15100 34.65200 8.94487 7.22146 -10.94000 71.15100 34.65200 10.42612 7.30393 @@ -49208,7 +49344,7 @@ Lambda passive -11.81800 6.63692 28.21538 -1.95352 0.74083 0.00000 4.25128 -11.90900 6.62741 28.11445 -1.95837 0.74083 0.00000 4.24215 -12.00000 6.61790 28.04722 -1.96202 0.74083 0.00000 4.23656 - -12.00000 6.61790 16.30334 0.83382 0.78310 0.13131 2.56739 + -12.00000 6.61790 16.30334 0.83382 0.77767 0.13131 2.56739 -12.10000 5.54690 14.93681 0.32506 0.77767 0.05860 2.69282 -12.20000 4.47590 13.12568 -0.35388 0.77767 0.00000 2.93252 -12.30000 3.40490 11.32554 -1.03336 0.77767 0.00000 3.32625 @@ -49220,7 +49356,7 @@ Lambda passive -12.92000 5.54270 28.23105 1.68796 0.53046 0.30454 5.09337 -13.06000 6.96930 35.13832 2.12272 0.53046 0.30458 5.04187 -13.20000 8.39590 40.26414 2.44888 0.53046 0.30462 5.00844 - -13.20000 8.39590 43.66291 2.66637 0.73615 0.30464 4.98859 + -13.20000 8.39590 43.66291 2.66637 0.53046 0.30464 4.98859 -13.34000 9.82250 48.74577 2.99268 0.53046 0.30468 4.96266 -13.48000 11.24910 55.51183 3.42784 0.53046 0.30472 4.93478 -13.62000 12.67570 62.27780 3.86311 0.53046 0.30476 4.91316 @@ -49417,10 +49553,10 @@ Status character 1.76742 70.51180 31.74264 3.11914 1 0 A 1.91473 71.10040 34.38829 3.37911 1 0 A 0.00000 71.10040 31.05886 4.97143 1 0 A - 3.74066 72.49311 30.25615 4.96614 110 0 1 - 2.58302 73.88582 29.59143 4.95910 110 0 1 - 1.52879 75.27853 29.16860 4.95205 110 0 1 - 0.57051 76.67124 28.87177 4.94501 110 0 1 + 3.80486 72.49311 30.25615 4.96614 110 0 1 + 2.64576 73.88582 29.59143 4.95910 110 0 1 + 1.58992 75.27853 29.16860 4.95205 110 0 1 + 0.62986 76.67124 28.87177 4.94501 110 0 1 0.00000 78.06395 28.69817 4.93972 1 0 A 0.00000 78.06395 28.60083 4.93620 1 0 A 0.00000 79.45666 28.47518 4.93092 1 0 A @@ -49428,42 +49564,42 @@ Status character 0.00000 82.24208 28.21538 4.91683 1 0 A 0.00000 83.63479 28.11445 4.90978 1 0 A 0.00000 85.02750 28.04722 4.90450 1 0 A - 0.83382 85.02750 16.30334 4.97278 1 0 A + 0.83382 85.02750 16.30334 4.93830 1 0 A 0.32506 87.26850 14.93681 4.31363 1 0 A 0.00000 89.50950 13.12568 3.48075 1 0 A 0.00000 91.75050 11.32554 2.64787 1 0 A 0.00000 93.99150 9.53444 1.81499 1 0 A 0.00000 96.23250 8.19590 1.19033 1 0 A - 6.86348 96.23250 8.47711 0.85911 330 81 3 + 6.86409 96.23250 8.47711 0.85911 330 81 3 0.81887 97.60590 13.98945 1.42668 1 0 A 1.25335 98.97930 21.19441 2.18344 1 0 A 1.68796 100.35270 28.23105 2.94020 1 0 A 2.12272 101.72610 35.13832 3.69696 1 0 A 2.44888 103.09950 40.26414 4.26453 1 0 A - 2.66637 103.09950 43.66291 6.44316 1 0 A + 2.66637 103.09950 43.66291 4.64291 1 0 A 2.99268 104.47290 48.74577 5.21048 1 0 A 3.42784 105.84630 55.51183 5.96724 1 0 A 3.86311 107.21970 62.27780 6.72400 1 0 A 4.29845 108.59310 69.05226 7.48076 1 0 A - 5.12165 109.96650 74.14069 8.04833 110 0 1 - 5.50003 109.96650 77.53742 8.42671 110 0 1 - 7.67379 111.33990 82.63924 8.99427 110 0 1 - 9.96799 112.71330 89.45241 9.75103 110 11 1 - 12.19639 114.08670 96.27744 10.50779 110 13 1 - 14.36195 115.46010 103.11296 11.26455 110 14 1 - 16.27844 116.83350 108.24538 11.83212 110 15 1 - 16.65682 116.83350 111.66974 12.21050 110 15 1 - 18.51846 118.20690 116.80993 12.77807 110 16 1 - 20.52229 119.58030 123.66891 13.53483 110 17 1 - 22.48626 120.95370 130.53348 14.29159 110 17 1 - 24.41752 122.32710 137.40278 15.04835 110 18 1 - 26.13401 123.70050 142.55730 15.61592 110 18 1 - 26.51239 123.70050 145.99484 15.99430 110 18 1 - 28.21104 125.07390 151.15274 16.56187 110 19 1 - 30.08658 126.44730 158.03228 17.31863 110 19 1 - 31.95363 127.82070 164.91424 18.07539 110 19 1 - 33.81602 129.19410 171.79828 18.83215 110 20 1 - 35.48840 130.56750 176.96243 19.39972 110 20 1 + 5.09842 109.96650 74.14069 8.04833 110 0 1 + 5.47680 109.96650 77.53742 8.42671 110 0 1 + 7.64999 111.33990 82.63924 8.99427 110 0 1 + 9.94340 112.71330 89.45241 9.75103 110 11 1 + 12.17082 114.08670 96.27744 10.50779 110 13 1 + 14.33521 115.46010 103.11296 11.26455 110 14 1 + 16.25034 116.83350 108.24538 11.83212 110 15 1 + 16.62872 116.83350 111.66974 12.21050 110 15 1 + 18.48884 118.20690 116.80993 12.77807 110 16 1 + 20.49102 119.58030 123.66891 13.53483 110 17 1 + 22.45324 120.95370 130.53348 14.29159 110 17 1 + 24.38272 122.32710 137.40278 15.04835 110 18 1 + 26.09743 123.70050 142.55730 15.61592 110 18 1 + 26.47581 123.70050 145.99484 15.99430 110 18 1 + 28.17274 125.07390 151.15274 16.56187 110 19 1 + 30.04660 126.44730 158.03228 17.31863 110 19 1 + 31.91202 127.82070 164.91424 18.07539 110 19 1 + 33.77281 129.19410 171.79828 18.83215 110 20 1 + 35.44359 130.56750 176.96243 19.39972 110 20 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -49478,9 +49614,9 @@ Layer name [DATA] -9.99 6.857 'OWB' -10.79 0.442 'Grind' - -11.09 0.766 'Hydrobiaklei' + -11.09 0.789 'Hydrobiaklei' -12.00 0.074 'Basisveen' - -12.50 48.512 'Eerste zandlaag' + -12.50 48.441 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -49499,7 +49635,7 @@ Layer name -10.79 0.15 'Grind' -11.09 0.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 16.12 'Eerste zandlaag' + -12.50 16.09 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -49739,8 +49875,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 519.37001 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 470.26449 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 519.36865 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 470.29852 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -49781,10 +49917,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 18.52 : Percentage mobilized resistance left - 17.56 : Percentage mobilized resistance right - 122.69 : Effective left - 138.21 : Effective right + 18.53 : Percentage mobilized resistance left + 17.58 : Percentage mobilized resistance right + 122.78 : Effective left + 138.34 : Effective right 508.74 : Water pressure left 1120.54 : Water pressure right 662.49 : Max effective resistance left @@ -49793,8 +49929,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 19.40 : Vertical force left - 40.92 : Vertical force right + 19.44 : Vertical force left + 40.96 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -49803,17 +49939,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --40.92 : Active force -19.40 : Passive force --40.92 : Plugged active force -19.40 : Plugged passive force +-40.96 : Active force +19.44 : Passive force +-40.96 : Plugged active force +19.44 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --21.51 : Resulting Vertical Force Unplugged --21.51 : Resulting Vertical Force Plugged +-21.52 : Resulting Vertical Force Unplugged +-21.52 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -49826,210 +49962,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 12.91618 - 0.00000 0.00000 12.33647 - 0.00000 0.00000 11.75676 - 0.00000 0.00000 11.17705 - 0.00000 0.00000 10.59734 - 0.00000 0.00000 10.01763 - 0.00000 0.00000 10.01763 - 0.00000 0.00000 9.43792 - 0.00000 0.00000 8.85821 - 0.00000 0.00000 8.27850 - 0.00000 0.00000 7.69879 - 0.00000 0.00000 7.11908 - 0.00000 0.00000 7.11908 - 0.00000 0.00049 7.05088 - 0.00001 0.00196 6.98268 - 0.00004 0.00441 6.91448 - 0.00010 0.00785 6.84627 - 0.00020 0.01226 6.77807 - 0.00020 0.01226 6.77807 - 0.00803 0.14175 5.95966 - 0.03988 0.41251 5.14125 - 0.11269 0.82453 4.32283 - 0.24341 1.37781 3.50438 - 0.44901 2.07236 2.68588 - 0.44901 2.07236 2.68588 - 0.68977 2.75906 2.00375 - 1.00409 3.54386 1.32154 - 1.40181 4.42676 0.63918 - 1.89272 5.40776 -0.04336 - 2.48663 6.48686 -0.72613 - 2.48663 6.48686 -0.72613 - 3.19336 7.66406 -1.40920 - 4.02271 8.93936 -2.09268 - 4.98450 10.31276 -2.77667 - 6.08854 11.78426 -3.46131 - 7.34462 13.35386 -4.14672 - 7.34462 13.35386 -4.14672 - 8.55395 14.78218 -4.73688 - 9.88924 16.28305 -5.32784 - 11.35672 17.85648 -5.91974 - 12.96263 19.50246 -6.51270 - 14.71322 21.22099 -7.10687 - 14.71322 -135.89902 -7.10687 - -0.64425 -133.50912 -7.89610 - -15.72201 -130.99174 -8.68522 - -30.50553 -128.34687 -9.47182 - -44.98025 -125.57450 -10.25346 - -59.13167 -122.67464 -11.02774 - -59.13102 -122.68552 -11.02774 - -68.86183 -120.57440 -11.56541 - -78.42125 -118.40051 -12.09754 - -87.80424 -116.16383 -12.62335 - -97.00579 -113.86436 -13.14210 - -106.02087 -111.50212 -13.65303 - -106.02109 -111.50382 -13.65303 - -108.24517 -110.90345 -13.77945 - -110.45720 -110.29916 -13.90532 - -112.65711 -109.69094 -14.03064 - -114.84481 -109.07879 -14.15540 - -117.02023 -108.46272 -14.27957 - -117.02053 -108.45947 -14.27957 - -127.71033 -105.32027 -14.89135 - -138.08131 -102.08297 -15.48703 - -148.12366 -98.74757 -16.06536 - -157.82755 -95.31407 -16.62506 - -167.18320 -91.78247 -17.16488 - -167.18309 -91.78158 -17.16488 - -176.18058 -88.15188 -17.68359 - -184.81019 -84.42408 -18.18009 - -193.06212 -80.59818 -18.65336 - -200.92656 -76.67418 -19.10235 - -208.39369 -72.65208 -19.52602 - -208.39369 -72.65193 -19.52602 - -215.45369 -68.53173 -19.92338 - -222.09676 -64.31343 -20.29359 - -228.31310 -59.99703 -20.63587 - -234.09290 -55.58253 -20.94944 - -239.42634 -51.06993 -21.23351 - -239.42636 -51.06965 -21.23351 - -246.12458 -44.58720 -21.58020 - -251.90180 -37.91248 -21.86610 - -256.73110 -31.04548 -22.09002 - -260.58556 -23.98620 -22.25076 - -263.43826 -16.73465 -22.34715 - -263.43830 -16.73387 -22.34715 - -265.16663 -9.82812 -22.37816 - -265.98643 -2.75658 -22.35269 - -265.87615 4.48075 -22.27078 - -264.81425 11.88386 -22.13245 - -262.77916 19.45277 -21.93772 - -262.77909 19.45315 -21.93772 - -259.74922 27.18785 -21.68679 - -255.70307 35.08833 -21.38053 - -250.61907 43.15460 -21.02004 - -244.47569 51.38667 -20.60640 - -237.25136 59.78452 -20.14069 - -237.25136 59.78451 -20.14069 - -227.57908 69.64700 -19.54235 - -216.41598 79.72874 -18.87990 - -203.72927 90.02973 -18.15690 - -189.48616 100.54999 -17.37694 - -173.65389 111.28949 -16.54360 - -173.65389 111.28949 -16.54360 - -156.19968 122.24826 -15.66080 - -137.09074 133.42628 -14.73397 - -116.29429 144.82356 -13.76898 - -93.77757 156.44009 -12.77169 - -69.50778 168.27588 -11.74796 - -69.50843 168.27906 -11.74796 - -43.45232 180.33410 -10.70402 - -15.57760 192.60840 -9.64781 - 14.14851 205.10196 -8.58769 - 45.75881 217.81477 -7.53204 - 79.28606 230.74684 -6.48923 - 79.28704 230.75471 -6.48923 - 114.76520 243.90603 -5.46806 - 152.22587 257.27661 -4.47915 - 191.70183 270.86645 -3.53362 - 233.22587 284.67554 -2.64260 - 276.83075 298.70389 -1.81720 - 276.83083 298.70405 -1.81720 - 277.42843 298.89320 -1.80665 - 278.02640 299.08240 -1.79612 - 278.62476 299.27163 -1.78560 - 279.22349 299.46091 -1.77510 - 279.82260 299.65022 -1.76461 - 279.82260 299.65022 -1.76461 - 280.42209 299.83957 -1.75413 - 281.02196 300.02896 -1.74367 - 281.62221 300.21840 -1.73322 - 282.22283 300.40787 -1.72279 - 282.82384 300.59738 -1.71237 - 282.82384 300.59736 -1.71237 - 293.68964 302.59720 -1.52728 - 304.59431 303.21977 -1.34699 - 315.52162 303.85505 -1.17166 - 326.47203 304.50303 -1.00150 - 337.44599 305.16371 -0.83666 - 337.44488 -165.09092 -0.83666 - 317.77019 -162.79695 -0.32625 - 298.37926 -160.36183 0.12652 - 279.28900 -157.78560 0.52511 - 260.51636 -155.06825 0.87298 - 242.07826 -152.20976 1.17360 - 242.07868 -152.20791 1.17360 - 234.56781 -148.22454 1.28572 - 227.25643 -144.22880 1.39046 - 220.14511 -140.22244 1.48803 - 213.23437 -136.20544 1.57867 - 206.52477 -132.17608 1.66259 - 206.52477 -132.17616 1.66259 - 205.20467 -131.84307 1.67859 - 203.88790 -131.51026 1.69433 - 202.57446 -131.17778 1.70981 - 201.26435 -130.84563 1.72504 - 199.95755 -130.51376 1.74001 - 199.95830 -130.53727 1.74001 - 188.21570 -127.40608 1.86492 - 176.78515 -123.78867 1.97020 - 165.69073 -120.02069 2.05700 - 154.94553 -116.11588 2.12649 - 144.56071 -112.10977 2.17981 - 144.56070 -112.09870 2.17981 - 134.54442 -108.03569 2.21810 - 124.89889 -103.94995 2.24236 - 115.62623 -99.84103 2.25355 - 106.72847 -95.71086 2.25265 - 98.20737 -91.56374 2.24061 - 98.20750 -91.56264 2.24061 - 89.21985 -88.22588 2.21565 - 80.55590 -85.08184 2.17946 - 72.19772 -82.11080 2.13308 - 64.12794 -79.31383 2.07757 - 56.32733 -76.74540 2.01399 - 56.32368 -76.71776 2.01399 - 46.09948 -69.37943 1.91345 - 36.88662 -62.27307 1.80155 - 28.65121 -55.41978 1.68032 - 21.35628 -48.84080 1.55180 - 14.96198 -42.55758 1.41803 - 14.96366 -42.54662 1.41803 - 9.43062 -36.55036 1.28083 - 4.71483 -30.86977 1.14131 - 0.77255 -25.50067 1.00045 - -2.43996 -20.44448 0.85924 - -4.96672 -15.70565 0.71865 - -4.96917 -15.67928 0.71865 - -6.84964 -11.23747 0.57948 - -8.13008 -7.10461 0.44202 - -8.85283 -3.26959 0.30643 - -9.06202 0.21295 0.17291 - -8.81804 3.16346 0.04165 - -8.81450 3.18529 0.04165 - -8.18850 5.61017 -0.08733 - -7.27897 7.27834 -0.21429 - -6.17969 8.32254 -0.33950 - -4.97734 8.75220 -0.46321 - -3.75738 8.57520 -0.58567 - -3.75508 8.55892 -0.58567 - -2.57361 8.11009 -0.70723 - -1.52742 6.73642 -0.82816 - -0.71094 4.85861 -0.94867 - -0.18461 2.60370 -1.06893 - 0.00248 0.01417 -1.18915 + 0.00000 0.00000 12.91523 + 0.00000 0.00000 12.33555 + 0.00000 0.00000 11.75587 + 0.00000 0.00000 11.17619 + 0.00000 0.00000 10.59650 + 0.00000 0.00000 10.01682 + 0.00000 0.00000 10.01682 + 0.00000 0.00000 9.43714 + 0.00000 0.00000 8.85746 + 0.00000 0.00000 8.27778 + 0.00000 0.00000 7.69809 + 0.00000 0.00000 7.11841 + 0.00000 0.00000 7.11841 + 0.00000 0.00049 7.05021 + 0.00001 0.00196 6.98201 + 0.00004 0.00441 6.91382 + 0.00010 0.00785 6.84562 + 0.00020 0.01226 6.77742 + 0.00020 0.01226 6.77742 + 0.00803 0.14175 5.95905 + 0.03988 0.41251 5.14068 + 0.11269 0.82453 4.32230 + 0.24341 1.37781 3.50388 + 0.44901 2.07236 2.68543 + 0.44901 2.07236 2.68543 + 0.68977 2.75906 2.00333 + 1.00409 3.54386 1.32115 + 1.40181 4.42676 0.63883 + 1.89272 5.40776 -0.04368 + 2.48663 6.48686 -0.72642 + 2.48663 6.48686 -0.72642 + 3.19336 7.66406 -1.40946 + 4.02271 8.93936 -2.09290 + 4.98450 10.31276 -2.77686 + 6.08854 11.78426 -3.46147 + 7.34462 13.35386 -4.14684 + 7.34462 13.35386 -4.14684 + 8.55395 14.78218 -4.73698 + 9.88924 16.28305 -5.32791 + 11.35672 17.85648 -5.91977 + 12.96263 19.50246 -6.51271 + 14.71322 21.22099 -7.10685 + 14.71322 -135.89766 -7.10685 + -0.64410 -133.50777 -7.89605 + -15.72171 -130.99039 -8.68513 + -30.50506 -128.34551 -9.47169 + -44.97964 -125.57315 -10.25329 + -59.13090 -122.67329 -11.02753 + -59.13025 -122.68418 -11.02753 + -68.86096 -120.57306 -11.56518 + -78.42026 -118.39917 -12.09728 + -87.80315 -116.16249 -12.62307 + -97.00459 -113.86302 -13.14179 + -106.01956 -111.50078 -13.65269 + -106.01978 -111.50249 -13.65269 + -108.24383 -110.90211 -13.77910 + -110.45584 -110.29782 -13.90497 + -112.65572 -109.68960 -14.03029 + -114.84339 -109.07745 -14.15503 + -117.01879 -108.46139 -14.27920 + -117.01909 -108.45813 -14.27920 + -127.70876 -105.31893 -14.89095 + -138.07960 -102.08163 -15.48660 + -148.12181 -98.74623 -16.06489 + -157.82558 -95.31273 -16.62457 + -167.18109 -91.78113 -17.16436 + -167.18097 -91.78023 -17.16436 + -176.17833 -88.15053 -17.68303 + -184.80781 -84.42273 -18.17950 + -193.05961 -80.59683 -18.65274 + -200.92391 -76.67283 -19.10170 + -208.39090 -72.65073 -19.52534 + -208.39090 -72.65058 -19.52534 + -215.45077 -68.53038 -19.92267 + -222.09371 -64.31208 -20.29285 + -228.30992 -59.99568 -20.63510 + -234.08958 -55.58118 -20.94864 + -239.42288 -51.06858 -21.23269 + -239.42290 -51.06830 -21.23269 + -246.12093 -44.58586 -21.57935 + -251.89797 -37.91113 -21.86521 + -256.72708 -31.04413 -22.08909 + -260.58135 -23.98486 -22.24980 + -263.43387 -16.73330 -22.34615 + -263.43391 -16.73252 -22.34615 + -265.16206 -9.82677 -22.37713 + -265.98168 -2.75524 -22.35163 + -265.87123 4.48209 -22.26969 + -264.80915 11.88521 -22.13133 + -262.77389 19.45411 -21.93658 + -262.77382 19.45450 -21.93658 + -259.74378 27.18919 -21.68562 + -255.69745 35.08968 -21.37934 + -250.61328 43.15595 -21.01882 + -244.46972 51.38801 -20.60516 + -237.24521 59.78586 -20.13943 + -237.24521 59.78586 -20.13943 + -227.57274 69.64834 -19.54107 + -216.40943 79.73008 -18.87859 + -203.72252 90.03108 -18.15558 + -189.47921 100.55133 -17.37561 + -173.64674 111.29084 -16.54225 + -173.64674 111.29084 -16.54225 + -156.19233 122.24960 -15.65944 + -137.08319 133.42763 -14.73260 + -116.28654 144.82490 -13.76760 + -93.76961 156.44143 -12.77030 + -69.49963 168.27722 -11.74656 + -69.50027 168.28040 -11.74656 + -43.44397 180.33544 -10.70263 + -15.56905 192.60974 -9.64642 + 14.15727 205.10330 -8.58630 + 45.76777 217.81611 -7.53065 + 79.29522 230.74818 -6.48785 + 79.29620 230.75603 -6.48785 + 114.77456 243.90735 -5.46669 + 152.23543 257.27793 -4.47780 + 191.71159 270.86777 -3.53229 + 233.23582 284.67686 -2.64128 + 276.84090 298.70521 -1.81590 + 276.84098 298.70534 -1.81590 + 277.43858 298.89450 -1.80536 + 278.03655 299.08370 -1.79483 + 278.63491 299.27293 -1.78431 + 279.23365 299.46221 -1.77380 + 279.83276 299.65152 -1.76331 + 279.83276 299.65152 -1.76331 + 280.43225 299.84087 -1.75284 + 281.03212 300.03027 -1.74238 + 281.63237 300.21970 -1.73193 + 282.23300 300.40917 -1.72149 + 282.83401 300.59868 -1.71107 + 282.83401 300.59866 -1.71107 + 293.69986 302.59850 -1.52599 + 304.60457 303.22107 -1.34570 + 315.53193 303.85635 -1.17039 + 326.48238 304.50433 -1.00023 + 337.45639 305.16501 -0.83539 + 337.45528 -165.12363 -0.83539 + 317.77667 -162.82966 -0.32501 + 298.38181 -160.39454 0.12773 + 279.28763 -157.81831 0.52630 + 260.51106 -155.10096 0.87415 + 242.06904 -152.24247 1.17474 + 242.06946 -152.24061 1.17474 + 234.55696 -148.25724 1.28686 + 227.24394 -144.26150 1.39159 + 220.13098 -140.25514 1.48915 + 213.21861 -136.23814 1.57978 + 206.50737 -132.20878 1.66369 + 206.50737 -132.20886 1.66369 + 205.18695 -131.87577 1.67969 + 203.86985 -131.54296 1.69543 + 202.55609 -131.21048 1.71091 + 201.24564 -130.87833 1.72614 + 199.93852 -130.54646 1.74111 + 199.93927 -130.57000 1.74111 + 188.19364 -127.44049 1.86601 + 176.75981 -123.82635 1.97128 + 165.66182 -120.06148 2.05807 + 154.91277 -116.15961 2.12756 + 144.52389 -112.15487 2.18088 + 144.52404 -112.14800 2.18088 + 134.50328 -108.08488 2.21918 + 124.85328 -103.99903 2.24344 + 115.57616 -99.89000 2.25465 + 106.67394 -95.75971 2.25376 + 98.14840 -91.61248 2.24175 + 98.14849 -91.61095 2.24175 + 89.15820 -88.24130 2.21683 + 80.49271 -85.09722 2.18067 + 72.13299 -82.12612 2.13434 + 64.06169 -79.32909 2.07890 + 56.25956 -76.76060 2.01538 + 56.25588 -76.73268 2.01538 + 46.02978 -69.39148 1.91495 + 36.81545 -62.28192 1.80317 + 28.57905 -55.42500 1.68208 + 21.28367 -48.84194 1.55372 + 14.88953 -42.55410 1.42013 + 14.89123 -42.54309 1.42013 + 9.35880 -36.54415 1.28312 + 4.64428 -30.85768 1.14382 + 0.70414 -25.48198 1.00319 + -2.50524 -20.41839 0.86222 + -5.02778 -15.67131 0.72190 + -5.03022 -15.64503 0.72190 + -6.90527 -11.19405 0.58301 + -8.17893 -7.05103 0.44583 + -8.89341 -3.20483 0.31055 + -9.09238 0.29640 0.17735 + -8.83486 3.27374 0.04641 + -8.83135 3.29541 0.04641 + -8.19929 5.62767 -0.08224 + -7.28512 7.32744 -0.20888 + -6.17661 8.40572 -0.33375 + -4.96008 8.87194 -0.45713 + -3.72066 8.73399 -0.57928 + -3.71838 8.71782 -0.57928 + -2.54245 7.98182 -0.70052 + -1.51117 6.65207 -0.82114 + -0.70384 4.80869 -0.94134 + -0.18281 2.57810 -1.06130 + 0.00247 0.01407 -1.18122 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -50255,7 +50391,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -50267,7 +50403,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -50452,50 +50588,50 @@ Status character 0.00000 105.26130 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 13.41118 101.25211 24.97488 4.06752 220 54 2 - 14.07045 102.14482 26.01680 4.43089 220 54 2 - 14.69849 103.03753 27.05851 4.79425 220 54 2 - 15.29720 103.93024 28.10001 5.15762 220 54 2 - 15.74907 104.82295 28.88100 5.43015 220 55 2 - 15.98793 104.82295 29.40161 5.61184 220 54 2 - 16.41423 105.71566 30.18242 5.88436 220 54 2 - 16.93607 106.60837 31.22336 6.24773 220 54 2 - 17.43565 107.50108 32.26413 6.61110 220 54 2 - 17.91456 108.39379 33.30474 6.97447 220 54 2 - 18.25508 109.28650 34.08510 7.24700 220 54 2 - 12.04838 109.28650 22.39924 8.32270 220 54 2 - 13.91971 107.26750 26.18365 10.18268 220 53 2 - 16.40737 105.24850 31.21648 12.66266 220 53 2 - 18.88326 103.22950 36.23585 15.14263 220 52 2 - 21.34911 101.21050 41.24435 17.62261 220 52 2 - 23.18290 99.19150 44.99531 19.48259 220 52 2 - 52.54939 99.19150 152.00137 13.90162 110 35 1 - 51.28182 100.56490 141.39199 14.46919 110 36 1 - 49.99350 101.93830 143.33806 15.22595 110 35 1 - 48.53428 103.31170 148.44319 15.98271 110 33 1 - 46.94318 104.68510 154.44929 16.73947 110 30 1 - 45.07003 106.05850 159.20703 17.30704 110 28 1 - 45.48474 106.05850 162.45605 17.72174 110 28 1 - 43.51702 107.43190 167.40248 18.25299 110 26 1 - 41.73741 108.80530 174.07947 19.00974 110 24 1 - 39.93873 110.17870 180.82097 19.76650 110 22 1 - 38.13931 111.55210 187.60408 20.52326 110 20 1 - 36.16832 112.92550 192.70971 21.09083 110 19 1 - 36.54670 112.92550 196.12085 21.46921 110 19 1 - 34.60835 114.29890 201.24614 22.03678 110 17 1 - 32.89678 115.67230 208.09120 22.79354 110 16 1 - 31.22606 117.04570 214.94675 23.55030 110 15 1 - 29.59945 118.41910 221.81023 24.30706 110 13 1 - 27.83100 119.79250 226.96177 24.87463 110 12 1 - 29.94930 119.79250 230.39786 26.99293 110 13 1 - 26.48846 121.16590 235.55418 25.82058 110 11 1 - 24.99859 122.53930 242.43233 26.57734 110 0 1 - 23.54510 123.91270 249.31352 27.33410 110 0 1 - 22.12251 125.28610 256.19718 28.09086 110 0 1 - 20.53613 126.65950 261.36123 28.65843 110 0 1 - 20.91451 126.65950 264.80452 29.03681 110 0 1 - 19.34664 128.03290 269.97025 29.60438 110 0 1 - 17.98061 129.40630 276.85902 30.36113 110 0 1 + 13.41242 101.25211 24.97488 4.06752 220 54 2 + 14.07167 102.14482 26.01680 4.43089 220 54 2 + 14.69970 103.03753 27.05851 4.79425 220 54 2 + 15.29840 103.93024 28.10001 5.15762 220 54 2 + 15.75026 104.82295 28.88100 5.43015 220 55 2 + 15.98912 104.82295 29.40161 5.61184 220 54 2 + 16.41542 105.71566 30.18242 5.88436 220 54 2 + 16.93728 106.60837 31.22336 6.24773 220 54 2 + 17.43687 107.50108 32.26413 6.61110 220 54 2 + 17.91581 108.39379 33.30474 6.97447 220 54 2 + 18.25637 109.28650 34.08510 7.24700 220 54 2 + 12.04886 109.28650 22.39924 8.32270 220 54 2 + 13.92021 107.26750 26.18365 10.18268 220 53 2 + 16.40789 105.24850 31.21648 12.66266 220 53 2 + 18.88382 103.22950 36.23585 15.14263 220 52 2 + 21.34971 101.21050 41.24435 17.62261 220 52 2 + 23.18354 99.19150 44.99531 19.48259 220 52 2 + 52.56866 99.19150 152.00137 13.90162 110 35 1 + 51.30339 100.56490 141.39199 14.46919 110 36 1 + 50.01779 101.93830 143.33806 15.22595 110 35 1 + 48.56170 103.31170 148.44319 15.98271 110 33 1 + 46.97417 104.68510 154.44929 16.73947 110 30 1 + 45.10505 106.05850 159.20703 17.30704 110 28 1 + 45.48343 106.05850 162.45605 17.68542 110 28 1 + 43.55654 107.43190 167.40248 18.25299 110 26 1 + 41.78189 108.80530 174.07947 19.00974 110 24 1 + 39.98863 110.17870 180.82097 19.76650 110 22 1 + 38.19510 111.55210 187.60408 20.52326 110 20 1 + 36.23044 112.92550 192.70971 21.09083 110 19 1 + 36.60882 112.92550 196.12085 21.46921 110 19 1 + 34.67726 114.29890 201.24614 22.03678 110 17 1 + 32.97290 115.67230 208.09120 22.79354 110 16 1 + 31.30978 117.04570 214.94675 23.55030 110 15 1 + 29.69112 118.41910 221.81023 24.30706 110 13 1 + 27.93093 119.79250 226.96177 24.87463 110 12 1 + 28.30931 119.79250 230.39786 25.25301 110 12 1 + 26.59694 121.16590 235.55418 25.82058 110 11 1 + 25.11583 122.53930 242.43233 26.57734 110 0 1 + 23.67123 123.91270 249.31352 27.33410 110 0 1 + 22.25755 125.28610 256.19718 28.09086 110 0 1 + 20.68004 126.65950 261.36123 28.65843 110 0 1 + 21.05842 126.65950 264.80452 29.03681 110 0 1 + 19.49925 128.03290 269.97025 29.60438 110 0 1 + 18.14175 129.40630 276.85902 30.36113 110 0 1 17.89495 130.77970 283.74896 31.11789 1 0 A 18.33030 132.15310 290.63991 31.87465 1 0 A 18.65681 133.52650 295.80866 32.44222 1 0 A @@ -50516,9 +50652,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 13.759 'Hydrobiaklei' + -10.00 13.760 'Hydrobiaklei' -12.00 8.818 'Basisveen' - -12.50 115.637 'Eerste zandlaag' + -12.50 115.760 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -50540,7 +50676,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.50 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -38.42 'Eerste zandlaag' + -12.50 -38.46 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -50664,18 +50800,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -50775,7 +50911,7 @@ Lambda passive -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 -11.08000 16.30540 85.66876 4.77001 0.51628 0.29254 5.25401 -11.09000 16.41730 86.10970 4.79456 0.51628 0.29254 5.25401 - -11.09000 16.41730 53.16020 3.08859 0.74302 0.18674 3.21405 + -11.09000 16.41730 53.16020 3.08859 0.74083 0.18674 3.21405 -11.18100 16.90779 53.28529 3.30861 0.74083 0.19569 3.15152 -11.27200 17.39828 53.67411 3.58108 0.74083 0.20583 3.08502 -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 @@ -50787,7 +50923,7 @@ Lambda passive -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 -11.90900 20.83171 59.04829 5.38526 0.74083 0.25851 2.83454 -12.00000 21.32220 59.73052 5.57688 0.74083 0.26307 2.81753 - -12.00000 21.32220 40.77271 9.92754 0.85866 0.48146 1.97739 + -12.00000 21.32220 40.77271 9.92754 0.77767 0.48146 1.97739 -12.10000 18.51120 37.12819 8.58629 0.77767 0.46384 2.00572 -12.20000 15.70020 32.30543 6.79795 0.77767 0.43299 2.05764 -12.30000 12.88920 27.51836 5.00960 0.77767 0.38867 2.13499 @@ -50817,7 +50953,7 @@ Lambda passive -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 -15.16000 34.37260 166.50031 10.47301 0.53046 0.30469 4.84398 -15.30000 35.79920 171.65390 10.80008 0.53046 0.30472 4.84316 - -15.30000 35.79920 175.09065 11.01811 0.40060 0.30474 4.84266 + -15.30000 35.79920 175.09065 11.01811 0.53046 0.30474 4.84266 -15.44000 37.22580 180.24715 11.34512 0.53046 0.30477 4.84200 -15.58000 38.65240 187.12459 11.78110 0.53046 0.30480 4.84122 -15.72000 40.07900 194.00428 12.21703 0.53046 0.30482 4.84055 @@ -50980,7 +51116,7 @@ Status character 78.00210 0.00000 78.00210 78.00210 402 100 P 78.00300 0.00000 78.00300 78.00300 402 100 P 78.00420 0.00000 78.00420 78.00420 1 100 A - 78.00540 0.00000 78.00540 78.00540 1 0 A + 78.00540 0.00000 78.00540 78.00540 1 100 A 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00750 0.00000 78.00750 78.00750 1 100 A 22.89003 0.00000 411.10170 40.39621 1 0 A @@ -50995,11 +51131,11 @@ Status character 4.73728 67.19430 85.08083 8.36032 1 0 A 4.77001 67.29240 85.66876 8.41810 1 0 A 4.79456 67.39050 86.10970 8.46142 1 0 A - 3.08859 67.39050 53.16020 12.28947 1 0 A - 7.49439 68.28321 53.28529 12.52579 110 0 1 - 6.42144 69.17592 53.67411 12.88916 110 0 1 - 5.47259 70.06863 54.23393 13.25253 110 0 1 - 4.64093 70.96134 54.90361 13.61590 110 0 1 + 3.08859 67.39050 53.16020 12.25326 1 0 A + 7.53245 68.28321 53.28529 12.52579 110 0 1 + 6.45777 69.17592 53.67411 12.88916 110 0 1 + 5.50707 70.06863 54.23393 13.25253 110 0 1 + 4.67341 70.96134 54.90361 13.61590 110 0 1 4.29683 71.85405 55.45470 13.88842 1 0 A 4.42534 71.85405 55.84214 14.07011 1 0 A 4.61774 72.74676 56.44708 14.34263 1 0 A @@ -51007,7 +51143,7 @@ Status character 5.12966 74.53218 58.15503 15.06937 1 0 A 5.38526 75.42489 59.04829 15.43274 1 0 A 5.57688 76.31760 59.73052 15.70527 1 0 A - 10.58427 76.31760 40.77271 17.70502 110 0 1 + 9.92754 76.31760 40.77271 16.03504 1 0 A 8.58629 80.29860 37.12819 14.39553 1 0 A 6.79795 84.27960 32.30543 12.20951 1 0 A 5.00960 88.26060 27.51836 10.02349 1 0 A @@ -51029,20 +51165,20 @@ Status character 6.98284 111.33000 111.69332 12.17934 1 0 A 7.41918 112.70340 118.52150 12.93610 1 0 A 7.85552 114.07680 125.35771 13.69286 1 0 A - 9.15723 115.45020 132.20113 14.44961 110 0 1 - 12.06081 116.82360 137.33776 15.01718 110 0 1 - 12.43919 116.82360 140.76415 15.39556 110 0 1 - 15.29526 118.19700 145.90643 15.96313 110 0 1 - 18.29864 119.57040 152.76688 16.71989 110 12 1 - 21.26565 120.94380 159.63169 17.47665 110 13 1 - 24.20176 122.31720 166.50031 18.23341 110 15 1 - 26.92327 123.69060 171.65390 18.80098 110 16 1 - 22.60620 123.69060 175.09065 14.48391 110 13 1 - 30.00466 125.06400 180.24715 19.74693 110 17 1 - 32.88421 126.43740 187.12459 20.50369 110 18 1 - 35.75504 127.81080 194.00428 21.26045 110 18 1 - 38.62106 129.18420 200.88593 22.01721 110 19 1 - 41.29701 130.55760 206.04826 22.58478 110 20 1 + 9.06556 115.45020 132.20113 14.44961 110 0 1 + 11.96088 116.82360 137.33776 15.01718 110 0 1 + 12.33926 116.82360 140.76415 15.39556 110 0 1 + 15.18677 118.19700 145.90643 15.96313 110 0 1 + 18.18140 119.57040 152.76688 16.71989 110 12 1 + 21.13952 120.94380 159.63169 17.47665 110 13 1 + 24.06672 122.31720 166.50031 18.23341 110 14 1 + 26.77937 123.69060 171.65390 18.80098 110 16 1 + 27.15775 123.69060 175.09065 19.17936 110 16 1 + 29.85206 125.06400 180.24715 19.74693 110 17 1 + 32.72308 126.43740 187.12459 20.50369 110 17 1 + 35.58548 127.81080 194.00428 21.26045 110 18 1 + 38.44314 129.18420 200.88593 22.01721 110 19 1 + 41.11074 130.55760 206.04826 22.58478 110 20 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -51057,9 +51193,9 @@ Layer name [DATA] -9.99 59.453 'OWB' -10.79 6.115 'Grind' - -11.09 4.798 'Hydrobiaklei' - -12.00 2.985 'Basisveen' - -12.50 49.339 'Eerste zandlaag' + -11.09 4.811 'Hydrobiaklei' + -12.00 2.952 'Basisveen' + -12.50 49.447 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -51078,7 +51214,7 @@ Layer name -10.79 2.14 'Grind' -11.09 0.87 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 16.39 'Eerste zandlaag' + -12.50 16.43 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -51303,7 +51439,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=7 CalculationStatus=0 -IterationCount=3 +IterationCount=4 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -51318,8 +51454,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 660.45958 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 762.97379 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 660.45818 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 762.98981 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -51364,9 +51500,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 30.24 : Percentage mobilized resistance left - 25.09 : Percentage mobilized resistance right - 200.33 : Effective left - 132.09 : Effective right + 25.10 : Percentage mobilized resistance right + 200.37 : Effective left + 132.14 : Effective right 508.74 : Water pressure left 540.51 : Water pressure right 662.49 : Max effective resistance left @@ -51375,8 +51511,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 41.18 : Vertical force left - 20.93 : Vertical force right + 41.19 : Vertical force left + 20.95 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -51385,10 +51521,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --20.93 : Active force -41.18 : Passive force --20.93 : Plugged active force -41.18 : Plugged passive force +-20.95 : Active force +41.19 : Passive force +-20.95 : Plugged active force +41.19 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -51408,210 +51544,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -11.73301 - 0.00000 0.00000 -11.65021 - 0.00000 0.00000 -11.56741 - 0.00000 0.00000 -11.48462 - 0.00000 0.00000 -11.40182 - 0.00000 0.00000 -11.31902 - 0.00000 0.00000 -11.31902 - 0.00000 0.00000 -11.23622 - 0.00000 0.00000 -11.15343 - 0.00000 0.00000 -11.07063 - 0.00000 0.00000 -10.98783 - 0.00000 0.00000 -10.90503 - 0.00000 0.00000 -10.90503 - 0.00000 0.00000 -10.79464 - 0.00000 0.00000 -10.68424 - 0.00000 0.00000 -10.57384 - 0.00000 0.00000 -10.46345 - 0.00000 0.00000 -10.35305 - 0.00000 0.00000 -10.35305 - 0.00000 0.00000 -10.26105 - 0.00000 0.00000 -10.16905 - 0.00000 0.00000 -10.07706 - 0.00000 0.00000 -9.98506 - 0.00000 0.00000 -9.89306 - 0.00000 0.00000 -9.89306 - 0.00000 0.00000 -9.80107 - 0.00000 0.00000 -9.70907 - 0.00000 0.00000 -9.61707 - 0.00000 0.00000 -9.52507 - 0.00000 0.00000 -9.43308 - 0.00000 0.00000 -9.43308 - 0.00000 0.00000 -9.35396 - 0.00000 0.00000 -9.27484 - 0.00000 0.00000 -9.19572 - 0.00000 0.00000 -9.11661 - 0.00000 0.00000 -9.03749 - 0.00000 -0.60958 -9.03749 - -0.06949 -0.60958 -8.93261 - -0.13898 -0.60958 -8.82772 - -0.20848 -0.60958 -8.72281 - -0.27797 -0.60958 -8.61786 - -0.34746 -0.60958 -8.51287 - -0.34681 -0.62045 -8.51287 - -0.39645 -0.62045 -8.43915 - -0.44608 -0.62045 -8.36541 - -0.49572 -0.62045 -8.29163 - -0.54536 -0.62045 -8.21781 - -0.59499 -0.62045 -8.14394 - -0.59521 -0.62216 -8.14394 - -0.60766 -0.62216 -8.12547 - -0.62010 -0.62216 -8.10699 - -0.63254 -0.62216 -8.08852 - -0.64498 -0.62216 -8.07003 - -0.65743 -0.62216 -8.05155 - -0.65772 -0.61891 -8.05155 - -0.71961 -0.61891 -7.95907 - -0.78150 -0.61891 -7.86649 - -0.84340 -0.61891 -7.77382 - -0.90529 -0.61891 -7.68105 - -0.96718 -0.61891 -7.58816 - -0.96706 -0.61801 -7.58816 - -1.02886 -0.61801 -7.49514 - -1.09067 -0.61801 -7.40200 - -1.15247 -0.61801 -7.30872 - -1.21427 -0.61801 -7.21530 - -1.27607 -0.61801 -7.12172 - -1.27607 -0.61786 -7.12172 - -1.33785 -0.61786 -7.02798 - -1.39964 -0.61786 -6.93408 - -1.46143 -0.61786 -6.83999 - -1.52321 -0.61786 -6.74573 - -1.58500 -0.61786 -6.65127 - -1.58502 -0.61758 -6.65127 - -1.67148 -0.61758 -6.51869 - -1.75794 -0.61758 -6.38570 - -1.84440 -0.61758 -6.25227 - -1.93086 -0.61758 -6.11839 - -2.01732 -0.61758 -5.98403 - -2.01736 -0.61680 -5.98403 - -2.09755 -0.61680 -5.85882 - -2.17773 -0.61680 -5.73317 - -2.25792 -0.61680 -5.60705 - -2.33810 -0.61680 -5.48045 - -2.41828 -0.61680 -5.35336 - -2.41821 -0.61642 -5.35336 - -2.49835 -0.61642 -5.22575 - -2.57848 -0.61642 -5.09760 - -2.65862 -0.61642 -4.96891 - -2.73875 -0.61642 -4.83965 - -2.81889 -0.61642 -4.70981 - -2.81889 -0.61642 -4.70981 - -2.91104 -0.61642 -4.55975 - -3.00320 -0.61642 -4.40887 - -3.09535 -0.61642 -4.25715 - -3.18751 -0.61642 -4.10455 - -3.27966 -0.61642 -3.95106 - -3.27966 -0.61642 -3.95106 - -3.37182 -0.61642 -3.79664 - -3.46397 -0.61642 -3.64127 - -3.55613 -0.61642 -3.48493 - -3.64828 -0.61642 -3.32759 - -3.74044 -0.61642 -3.16922 - -3.74108 -0.61324 -3.16922 - -3.83276 -0.61324 -3.00979 - -3.92444 -0.61324 -2.84929 - -4.01612 -0.61324 -2.68768 - -4.10780 -0.61324 -2.52494 - -4.19948 -0.61324 -2.36105 - -4.19850 -0.60537 -2.36105 - -4.28900 -0.60537 -2.19597 - -4.37950 -0.60537 -2.02969 - -4.47001 -0.60537 -1.86217 - -4.56051 -0.60537 -1.69339 - -4.65101 -0.60537 -1.52333 - -4.65093 -0.60521 -1.52333 - -4.65208 -0.52643 -1.52105 - -4.65298 -0.37043 -1.51876 - -4.65357 -0.21443 -1.51648 - -4.65384 -0.05843 -1.51419 - -4.65380 0.09757 -1.51191 - -4.65380 0.09757 -1.51191 - -4.65345 0.25357 -1.50962 - -4.65279 0.40957 -1.50734 - -4.65181 0.56557 -1.50505 - -4.65052 0.72157 -1.50277 - -4.64892 0.87757 -1.50048 - -4.64892 0.87755 -1.50048 - -4.58397 2.26753 -1.45929 - -4.50234 2.26754 -1.41803 - -4.42071 2.26754 -1.37669 - -4.33908 2.26755 -1.33529 - -4.25745 2.26756 -1.29381 - -4.25831 39.40213 -1.29381 - 0.07592 39.40215 -1.16674 - 4.41016 39.40217 -1.03969 - 8.74440 39.40219 -0.91331 - 13.07864 39.40221 -0.78827 - 17.41289 39.40224 -0.66521 - 17.41322 39.40394 -0.66521 - 17.80725 39.40382 -0.65415 - 18.20129 39.40382 -0.64311 - 18.59533 39.40382 -0.63209 - 18.98937 39.40382 -0.62109 - 19.38341 39.40395 -0.61012 - 19.38354 39.40080 -0.61012 - 21.28308 36.55737 -0.55564 - 23.03705 33.58036 -0.50183 - 24.63911 30.48321 -0.44874 - 26.08360 27.28008 -0.39642 - 27.36560 23.98588 -0.34492 - 27.36547 23.98296 -0.34492 - 27.60269 23.45874 -0.33472 - 27.83464 22.93102 -0.32456 - 28.06130 22.40042 -0.31444 - 28.28264 21.86699 -0.30435 - 28.49863 21.33099 -0.29429 - 28.49951 21.30553 -0.29429 - 30.35067 19.33658 -0.20448 - 32.01525 17.25176 -0.11783 - 33.49118 15.18970 -0.03451 - 34.78035 13.14660 0.04533 - 35.88439 11.12067 0.12155 - 35.88440 11.12497 0.12155 - 36.80384 9.09228 0.19400 - 37.54118 7.12503 0.26260 - 38.10312 5.24112 0.32731 - 38.49796 3.45272 0.38806 - 38.73425 1.75439 0.44479 - 38.73383 1.74819 0.44479 - 38.88639 1.34147 0.50246 - 39.00927 1.14907 0.55523 - 39.12121 1.10671 0.60309 - 39.23350 1.15093 0.64602 - 39.35266 1.23306 0.68401 - 39.35623 1.22070 0.68401 - 39.51019 1.08512 0.72883 - 39.65594 0.86112 0.76388 - 39.70357 -0.38575 0.78918 - 39.48787 -2.91963 0.80472 - 38.83625 -6.52115 0.81052 - 38.84631 -6.55578 0.81052 - 37.64502 -10.50384 0.80664 - 35.93093 -13.90129 0.79346 - 33.77986 -16.71582 0.77151 - 31.28264 -18.84165 0.74129 - 28.53564 -20.29372 0.70334 - 28.52695 -20.29624 0.70334 - 25.62185 -21.10551 0.65829 - 22.64452 -21.33368 0.60692 - 19.67379 -21.01822 0.54995 - 16.78293 -20.19888 0.48811 - 14.03929 -18.92540 0.42212 - 14.04098 -18.89260 0.42212 - 11.50945 -17.27631 0.35271 - 9.20521 -15.62581 0.28046 - 7.13809 -13.89248 0.20589 - 5.31829 -12.09539 0.12950 - 3.75366 -10.24951 0.05180 - 3.75397 -10.24529 0.05180 - 2.45110 -8.36151 -0.02675 - 1.41416 -6.44734 -0.10589 - 0.64842 -4.47797 -0.18545 - 0.16753 -2.35442 -0.26523 - -0.00006 -0.00030 -0.34505 + 0.00000 0.00000 -11.73398 + 0.00000 0.00000 -11.65115 + 0.00000 0.00000 -11.56833 + 0.00000 0.00000 -11.48550 + 0.00000 0.00000 -11.40267 + 0.00000 0.00000 -11.31984 + 0.00000 0.00000 -11.31984 + 0.00000 0.00000 -11.23701 + 0.00000 0.00000 -11.15419 + 0.00000 0.00000 -11.07136 + 0.00000 0.00000 -10.98853 + 0.00000 0.00000 -10.90570 + 0.00000 0.00000 -10.90570 + 0.00000 0.00000 -10.79526 + 0.00000 0.00000 -10.68483 + 0.00000 0.00000 -10.57439 + 0.00000 0.00000 -10.46395 + 0.00000 0.00000 -10.35351 + 0.00000 0.00000 -10.35351 + 0.00000 0.00000 -10.26148 + 0.00000 0.00000 -10.16945 + 0.00000 0.00000 -10.07742 + 0.00000 0.00000 -9.98539 + 0.00000 0.00000 -9.89336 + 0.00000 0.00000 -9.89336 + 0.00000 0.00000 -9.80133 + 0.00000 0.00000 -9.70930 + 0.00000 0.00000 -9.61726 + 0.00000 0.00000 -9.52523 + 0.00000 0.00000 -9.43320 + 0.00000 0.00000 -9.43320 + 0.00000 0.00000 -9.35406 + 0.00000 0.00000 -9.27491 + 0.00000 0.00000 -9.19576 + 0.00000 0.00000 -9.11662 + 0.00000 0.00000 -9.03747 + 0.00000 -0.60818 -9.03747 + -0.06933 -0.60818 -8.93255 + -0.13866 -0.60818 -8.82762 + -0.20800 -0.60818 -8.72267 + -0.27733 -0.60818 -8.61768 + -0.34666 -0.60818 -8.51265 + -0.34601 -0.61906 -8.51265 + -0.39554 -0.61906 -8.43891 + -0.44506 -0.61906 -8.36514 + -0.49459 -0.61906 -8.29134 + -0.54411 -0.61906 -8.21749 + -0.59364 -0.61906 -8.14360 + -0.59386 -0.62077 -8.14360 + -0.60627 -0.62077 -8.12512 + -0.61869 -0.62077 -8.10664 + -0.63110 -0.62077 -8.08815 + -0.64352 -0.62077 -8.06966 + -0.65594 -0.62077 -8.05117 + -0.65623 -0.61752 -8.05117 + -0.71798 -0.61752 -7.95865 + -0.77973 -0.61752 -7.86605 + -0.84149 -0.61752 -7.77335 + -0.90324 -0.61752 -7.68054 + -0.96499 -0.61752 -7.58762 + -0.96488 -0.61662 -7.58762 + -1.02654 -0.61662 -7.49457 + -1.08820 -0.61662 -7.40140 + -1.14986 -0.61662 -7.30809 + -1.21152 -0.61662 -7.21463 + -1.27319 -0.61662 -7.12103 + -1.27319 -0.61647 -7.12103 + -1.33483 -0.61647 -7.02726 + -1.39648 -0.61647 -6.93332 + -1.45813 -0.61647 -6.83921 + -1.51977 -0.61647 -6.74491 + -1.58142 -0.61647 -6.65043 + -1.58144 -0.61619 -6.65043 + -1.66771 -0.61619 -6.51781 + -1.75397 -0.61619 -6.38478 + -1.84024 -0.61619 -6.25132 + -1.92651 -0.61619 -6.11740 + -2.01277 -0.61619 -5.98300 + -2.01281 -0.61541 -5.98300 + -2.09282 -0.61541 -5.85777 + -2.17282 -0.61541 -5.73208 + -2.25282 -0.61541 -5.60593 + -2.33283 -0.61541 -5.47931 + -2.41283 -0.61541 -5.35218 + -2.41276 -0.61502 -5.35218 + -2.49271 -0.61502 -5.22455 + -2.57266 -0.61502 -5.09638 + -2.65262 -0.61502 -4.96767 + -2.73257 -0.61502 -4.83839 + -2.81252 -0.61502 -4.70852 + -2.81253 -0.61503 -4.70852 + -2.90447 -0.61503 -4.55844 + -2.99642 -0.61503 -4.40754 + -3.08837 -0.61503 -4.25580 + -3.18031 -0.61503 -4.10319 + -3.27226 -0.61503 -3.94968 + -3.27226 -0.61503 -3.94968 + -3.36421 -0.61503 -3.79525 + -3.45615 -0.61503 -3.63987 + -3.54810 -0.61503 -3.48352 + -3.64005 -0.61503 -3.32617 + -3.73199 -0.61503 -3.16780 + -3.73264 -0.61185 -3.16780 + -3.82411 -0.61185 -3.00837 + -3.91558 -0.61185 -2.84787 + -4.00705 -0.61185 -2.68626 + -4.09852 -0.61185 -2.52353 + -4.19000 -0.61185 -2.35965 + -4.18901 -0.60401 -2.35965 + -4.27931 -0.60401 -2.19458 + -4.36961 -0.60401 -2.02831 + -4.45991 -0.60401 -1.86081 + -4.55020 -0.60401 -1.69205 + -4.64050 -0.60401 -1.52201 + -4.64042 -0.60387 -1.52201 + -4.64158 -0.52509 -1.51973 + -4.64247 -0.36909 -1.51745 + -4.64305 -0.21309 -1.51516 + -4.64332 -0.05709 -1.51288 + -4.64328 0.09891 -1.51059 + -4.64328 0.09891 -1.51059 + -4.64293 0.25491 -1.50831 + -4.64226 0.41091 -1.50602 + -4.64128 0.56691 -1.50374 + -4.63999 0.72291 -1.50145 + -4.63839 0.87892 -1.49917 + -4.63839 0.87890 -1.49917 + -4.57339 2.26888 -1.45798 + -4.49171 2.26888 -1.41673 + -4.41003 2.26889 -1.37540 + -4.32835 2.26890 -1.33400 + -4.24667 2.26890 -1.29252 + -4.24754 39.38748 -1.29252 + 0.08508 39.38750 -1.16548 + 4.41771 39.38752 -1.03845 + 8.75034 39.38754 -0.91210 + 13.08297 39.38757 -0.78708 + 17.41560 39.38759 -0.66405 + 17.41593 39.38930 -0.66405 + 17.80982 39.38918 -0.65299 + 18.20372 39.38918 -0.64195 + 18.59761 39.38918 -0.63093 + 18.99150 39.38919 -0.61994 + 19.38539 39.38931 -0.60897 + 19.38552 39.38616 -0.60897 + 21.28431 36.54184 -0.55450 + 23.03748 33.56387 -0.50070 + 24.63869 30.46569 -0.44762 + 26.08228 27.26147 -0.39531 + 27.36332 23.96611 -0.34383 + 27.36319 23.96319 -0.34383 + 27.60020 23.43805 -0.33363 + 27.83194 22.91026 -0.32348 + 28.05840 22.37960 -0.31335 + 28.27953 21.84611 -0.30326 + 28.49531 21.31003 -0.29321 + 28.49619 21.28454 -0.29321 + 30.34542 19.31496 -0.20342 + 32.00799 17.22913 -0.11680 + 33.48182 15.16611 -0.03349 + 34.76880 13.12208 0.04633 + 35.87056 11.09526 0.12253 + 35.87073 11.09538 0.12253 + 36.78875 9.08342 0.19496 + 37.52521 7.11438 0.26356 + 38.08606 5.22781 0.32825 + 38.47958 3.43698 0.38899 + 38.71435 1.73703 0.44571 + 38.71391 1.73071 0.44571 + 38.86473 1.32391 0.50337 + 38.98587 1.13220 0.55614 + 39.09619 1.09127 0.60399 + 39.20698 1.13629 0.64692 + 39.32469 1.21863 0.68491 + 39.32823 1.20654 0.68491 + 39.48010 1.06944 0.72975 + 39.62380 0.84924 0.76482 + 39.67036 -0.38932 0.79014 + 39.45469 -2.91558 0.80572 + 38.80397 -6.51383 0.81157 + 38.81405 -6.54842 0.81157 + 37.61856 -10.44644 0.80774 + 35.91222 -13.84805 0.79462 + 33.76831 -16.66672 0.77272 + 31.27768 -18.79651 0.74258 + 28.53674 -20.25218 0.70469 + 28.52805 -20.25473 0.70469 + 25.62853 -21.06721 0.65970 + 22.65637 -21.29819 0.60840 + 19.69043 -20.98512 0.55149 + 16.80407 -20.16772 0.48971 + 14.06477 -18.89376 0.42377 + 14.06646 -18.86096 0.42377 + 11.53286 -17.31354 0.35441 + 9.22363 -15.65971 0.28220 + 7.15202 -13.92263 0.20767 + 5.32829 -12.12134 0.13131 + 3.76034 -10.27084 0.05364 + 3.76065 -10.26662 0.05364 + 2.45515 -8.37779 -0.02488 + 1.41631 -6.45813 -0.10400 + 0.64939 -4.48453 -0.18353 + 0.16778 -2.35797 -0.26328 + -0.00006 -0.00030 -0.34307 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -51732,36 +51868,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.81500 71.15100 34.65200 63.80392 62.46961 -10.86500 71.15100 34.65200 66.74013 62.63310 -10.91500 71.15100 34.65200 69.82331 62.80477 @@ -51842,7 +51978,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -51860,7 +51996,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -51873,7 +52009,7 @@ Lambda passive -10.94000 12.29600 64.60333 3.59709 0.51628 0.29254 5.25401 -10.99000 12.85550 67.54294 3.76077 0.51628 0.29254 5.25401 -11.04000 13.41500 69.74766 3.88353 0.51628 0.29254 5.25401 - -11.04000 13.41500 70.62954 3.93263 0.64500 0.29254 5.25401 + -11.04000 13.41500 70.62954 3.93263 0.51628 0.29254 5.25401 -11.05000 13.52690 71.07049 3.95718 0.51628 0.29254 5.25401 -11.06000 13.63880 71.65841 3.98992 0.51628 0.29254 5.25401 -11.07000 13.75070 72.24634 4.02266 0.51628 0.29254 5.25401 @@ -51903,7 +52039,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -52062,13 +52198,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 1 100 A @@ -52080,20 +52216,20 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.14698 67.39050 56.51937 5.55378 1 0 A 3.26974 67.88100 58.72409 5.77042 1 0 A 3.43342 68.37150 61.66371 6.05928 1 0 A 3.59709 68.86200 64.60333 6.34814 1 0 A 3.76077 69.35250 67.54294 6.63699 1 0 A 3.88353 69.84300 69.74766 6.85364 1 0 A - 3.93263 69.84300 70.62954 8.67078 1 0 A + 3.93263 69.84300 70.62954 6.94029 1 0 A 3.95718 69.94110 71.07049 6.98362 1 0 A 3.98992 70.03920 71.65841 7.04139 1 0 A 4.02266 70.13730 72.24634 7.09916 1 0 A @@ -52110,43 +52246,43 @@ Status character 3.60675 76.58247 51.96161 12.89631 1 0 A 3.86196 77.47518 52.84194 13.25967 1 0 A 4.11705 78.36789 53.74489 13.62304 1 0 A - 4.51632 79.26060 54.43367 13.89557 110 0 1 - 12.29255 79.26060 36.58125 14.13536 110 0 1 - 12.75351 83.24160 32.95268 12.49585 110 39 1 - 12.31330 87.22260 28.14940 10.30983 110 44 1 - 10.96298 91.20360 23.37981 8.12381 110 47 1 - 9.35073 95.18460 18.63653 5.93779 220 50 2 - 7.68863 99.16560 15.09227 4.29828 220 51 2 - 22.12768 99.16560 26.26428 2.74836 330 84 3 - 27.69716 100.53900 31.53892 3.31593 330 88 3 - 23.48296 101.91240 38.50115 4.07269 220 61 2 - 16.27596 103.28580 45.39611 4.82945 110 36 1 - 8.24384 104.65920 52.24433 5.58621 110 16 1 + 4.51505 79.26060 54.43367 13.89557 110 0 1 + 12.29191 79.26060 36.58125 14.13536 110 0 1 + 12.75278 83.24160 32.95268 12.49585 110 39 1 + 12.32811 87.22260 28.14940 10.30983 110 44 1 + 10.97792 91.20360 23.37981 8.12381 110 47 1 + 9.35375 95.18460 18.63653 5.93779 220 50 2 + 7.69168 99.16560 15.09227 4.29828 220 51 2 + 22.12516 99.16560 26.26428 2.74836 330 84 3 + 27.69460 100.53900 31.53892 3.31593 330 88 3 + 23.55652 101.91240 38.50115 4.07269 220 61 2 + 16.33810 103.28580 45.39611 4.82945 110 36 1 + 8.30747 104.65920 52.24433 5.58621 110 16 1 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A - 6.37258 110.15280 79.46578 8.61324 110 0 1 - 8.57951 111.52620 86.26991 9.37000 110 0 1 - 10.41901 112.89960 91.37714 9.93757 110 11 1 - 10.79739 112.89960 94.78447 10.31595 110 11 1 - 12.46160 114.27300 99.89939 10.88352 110 12 1 - 14.15330 115.64640 106.72583 11.64028 110 13 1 - 15.69660 117.01980 113.55988 12.39704 110 14 1 - 17.10486 118.39320 120.40102 13.15380 110 14 1 - 18.20219 119.76660 125.53597 13.72137 110 14 1 - 18.58057 119.76660 128.96129 14.09975 110 14 1 - 19.57163 121.14000 134.10206 14.66732 110 15 1 - 20.66188 122.51340 140.96069 15.42408 110 15 1 - 21.67676 123.88680 147.82389 16.18084 110 15 1 - 22.63085 125.26020 154.69114 16.93760 110 15 1 - 23.34958 126.63360 159.84382 17.50516 110 15 1 - 23.72796 126.63360 163.28003 17.88354 110 15 1 - 24.41511 128.00700 168.43582 18.45111 110 14 1 - 25.26932 129.38040 175.31244 19.20787 110 14 1 - 26.53764 130.75380 182.19144 19.96463 110 15 1 - 28.82940 132.12720 189.07254 20.72139 110 15 1 - 31.01015 133.50060 194.23453 21.28896 110 16 1 + 6.37140 110.15280 79.46578 8.61324 110 0 1 + 8.57973 111.52620 86.26991 9.37000 110 0 1 + 10.42072 112.89960 91.37714 9.93757 110 11 1 + 10.79910 112.89960 94.78447 10.31595 110 11 1 + 12.46484 114.27300 99.89939 10.88352 110 12 1 + 14.15809 115.64640 106.72583 11.64028 110 13 1 + 15.70298 117.01980 113.55988 12.39704 110 14 1 + 17.11282 118.39320 120.40102 13.15380 110 14 1 + 18.21173 119.76660 125.53597 13.72137 110 15 1 + 18.59011 119.76660 128.96129 14.09975 110 14 1 + 19.58273 121.14000 134.10206 14.66732 110 15 1 + 20.67454 122.51340 140.96069 15.42408 110 15 1 + 21.69096 123.88680 147.82389 16.18084 110 15 1 + 22.64659 125.26020 154.69114 16.93760 110 15 1 + 23.36686 126.63360 159.84382 17.50516 110 15 1 + 23.74524 126.63360 163.28003 17.88354 110 15 1 + 24.43393 128.00700 168.43582 18.45111 110 15 1 + 25.28967 129.38040 175.31244 19.20787 110 14 1 + 26.53549 130.75380 182.19144 19.96463 110 15 1 + 28.82944 132.12720 189.07254 20.72139 110 15 1 + 31.01237 133.50060 194.23453 21.28896 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -52162,8 +52298,8 @@ Layer name -9.99 62.314 'OWB' -10.79 1.079 'Grind' -11.09 2.822 'Hydrobiaklei' - -12.00 5.537 'Basisveen' - -12.50 60.334 'Eerste zandlaag' + -12.00 5.540 'Basisveen' + -12.50 60.381 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -52182,7 +52318,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.51 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -20.04 'Eerste zandlaag' + -12.50 -20.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -52306,24 +52442,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -52410,20 +52546,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 59.60834 3.31898 0.51628 0.29254 5.25401 -10.84000 12.05780 63.35182 3.52741 0.51628 0.29254 5.25401 -10.89000 13.00780 68.34313 3.80533 0.51628 0.29254 5.25401 -10.94000 13.95780 73.33444 4.08324 0.51628 0.29254 5.25401 -10.99000 14.90780 78.32575 4.36116 0.51628 0.29254 5.25401 -11.04000 15.85780 82.06924 4.56959 0.51628 0.29254 5.25401 - -11.04000 15.85780 83.46404 4.64725 0.51854 0.29254 5.25401 + -11.04000 15.85780 83.46404 4.64725 0.51628 0.29254 5.25401 -11.05000 15.96970 83.90499 4.67181 0.51628 0.29254 5.25401 -11.06000 16.08160 84.49291 4.70454 0.51628 0.29254 5.25401 -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 @@ -52435,7 +52571,7 @@ Lambda passive -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 -11.45400 18.37926 54.90361 4.10350 0.74083 0.22327 2.98726 -11.54500 18.86975 55.45470 4.29683 0.74083 0.22920 2.95804 - -11.54500 18.86975 55.84214 4.42534 0.83235 0.23301 2.94024 + -11.54500 18.86975 55.84214 4.42534 0.74083 0.23301 2.94024 -11.63600 19.36024 56.44708 4.61774 0.74083 0.23852 2.91562 -11.72700 19.85073 57.28575 4.87386 0.74083 0.24553 2.88583 -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 @@ -52465,7 +52601,7 @@ Lambda passive -14.32000 25.81300 125.35771 7.85552 0.53046 0.30432 4.85638 -14.46000 27.23960 132.20113 8.29186 0.53046 0.30440 4.85327 -14.60000 28.66620 137.33776 8.61910 0.53046 0.30446 4.85129 - -14.60000 28.66620 140.76415 8.83725 0.36828 0.30449 4.85011 + -14.60000 28.66620 140.76415 8.83725 0.53046 0.30449 4.85011 -14.74000 30.09280 145.90643 9.16446 0.53046 0.30454 4.84855 -14.88000 31.51940 152.76688 9.60069 0.53046 0.30460 4.84676 -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 @@ -52625,78 +52761,78 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00207 0.00000 78.00207 78.00207 402 100 P + 78.00207 0.00000 78.00207 78.00208 402 100 P 78.00290 0.00000 78.00290 78.00290 402 100 P 78.00400 0.00000 78.00400 78.00400 402 100 P 78.00510 0.00000 78.00510 78.00510 402 100 P 78.00620 0.00000 78.00620 78.00620 402 100 P - 78.00703 0.00000 78.00703 78.00703 402 100 P - 78.00732 0.00000 78.00732 78.00732 402 100 P + 78.00702 0.00000 78.00702 78.00703 402 100 P + 78.00732 0.00000 78.00732 78.00733 402 100 P 78.00740 0.00000 78.00740 78.00740 402 100 P 78.00750 0.00000 78.00750 78.00750 402 100 P 78.00760 0.00000 78.00760 78.00760 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 78.00778 0.00000 78.00778 78.00778 402 100 P - 126.00849 0.00000 411.10170 40.39621 110 31 1 - 129.41711 0.00000 414.84519 40.76406 110 31 1 - 132.61872 0.00000 419.83650 41.25452 110 32 1 - 135.53137 0.00000 424.82781 41.74498 110 32 1 - 138.16631 0.00000 429.81912 42.23545 110 32 1 - 140.44158 0.00000 433.56260 42.60329 110 32 1 - 59.09015 66.90000 83.46404 8.23745 220 71 2 - 59.52862 66.99810 83.90499 8.24478 220 71 2 - 59.84938 67.09620 84.49291 8.30255 220 71 2 - 60.16739 67.19430 85.08083 8.36032 220 71 2 - 60.48268 67.29240 85.66876 8.41810 220 71 2 - 60.73949 67.39050 86.10970 8.46142 220 71 2 - 25.01049 67.39050 53.16020 12.25326 110 47 1 - 28.04604 68.28321 53.28529 12.52579 220 53 2 - 28.03584 69.17592 53.67411 12.88916 220 52 2 - 28.07300 70.06863 54.23393 13.25253 220 52 2 - 28.13714 70.96134 54.90361 13.61590 220 51 2 - 28.14567 71.85405 55.45470 13.88842 220 51 2 - 28.76336 71.85405 55.84214 15.80822 220 52 2 - 28.30812 72.74676 56.44708 14.34263 220 50 2 - 27.77227 73.63947 57.28575 14.70600 110 48 1 - 26.98712 74.53218 58.15503 15.06937 110 46 1 - 26.18327 75.42489 59.04829 15.43274 110 44 1 - 25.66205 76.31760 59.73052 15.70527 110 43 1 - 20.45402 76.31760 40.77271 16.03504 220 50 2 - 18.61240 80.29860 37.12819 14.39553 220 50 2 - 16.18840 84.27960 32.30543 12.20951 220 50 2 - 13.82115 88.26060 27.51836 10.02349 220 50 2 - 11.49417 92.24160 22.75954 7.83747 220 51 2 - 9.78853 96.22260 19.20478 6.19796 220 51 2 - 28.32074 96.22260 38.54151 4.04417 220 73 2 - 29.32696 97.59600 43.70980 4.61174 220 67 2 - 30.93906 98.96940 50.55187 5.36850 220 61 2 - 32.51831 100.34280 57.35548 6.12526 220 57 2 - 34.08576 101.71620 64.13881 6.88202 220 53 2 - 35.01379 103.08960 69.22085 7.44959 220 51 2 - 37.06046 103.08960 72.60831 7.82797 220 51 2 - 33.02600 104.46300 77.69108 8.39554 110 43 1 - 29.95607 105.83640 84.47328 9.15230 110 35 1 - 27.00837 107.20980 91.26387 9.90906 110 30 1 - 24.19872 108.58320 98.06401 10.66582 110 25 1 - 21.42954 109.95660 103.17026 11.23339 110 21 1 - 21.65636 109.95660 106.57763 11.61177 110 20 1 - 19.04956 111.33000 111.69332 12.17934 110 17 1 - 16.71090 112.70340 118.52150 12.93610 110 14 1 - 14.51854 114.07680 125.35771 13.69286 110 12 1 - 12.46406 115.45020 132.20113 14.44961 110 0 1 - 10.53636 116.82360 137.33776 15.01718 110 0 1 - 9.88957 116.82360 140.76415 10.68859 110 0 1 - 11.05882 118.19700 145.90643 15.96313 110 0 1 - 11.48208 119.57040 152.76688 16.71989 110 0 1 - 11.98073 120.94380 159.63169 17.47665 110 0 1 - 12.54016 122.31720 166.50031 18.23341 110 0 1 - 12.95657 123.69060 171.65390 18.80098 110 0 1 - 13.33495 123.69060 175.09065 19.17936 110 0 1 - 13.78293 125.06400 180.24715 19.74693 110 0 1 - 14.44224 126.43740 187.12459 20.50369 110 0 1 - 15.11684 127.81080 194.00428 21.26045 110 0 1 - 15.79988 129.18420 200.88593 22.01721 110 0 1 - 16.29531 130.55760 206.04826 22.58478 110 0 1 + 78.00777 0.00000 78.00777 78.00778 402 0 P + 126.02573 0.00000 411.10170 40.39621 110 31 1 + 129.43567 0.00000 414.84519 40.76406 110 31 1 + 132.63860 0.00000 419.83650 41.25452 110 32 1 + 135.55256 0.00000 424.82781 41.74498 110 32 1 + 138.18880 0.00000 429.81912 42.23545 110 32 1 + 140.46537 0.00000 433.56260 42.60329 110 32 1 + 59.26736 66.90000 83.46404 8.20145 220 71 2 + 59.53517 66.99810 83.90499 8.24478 220 71 2 + 59.85601 67.09620 84.49291 8.30255 220 71 2 + 60.17409 67.19430 85.08083 8.36032 220 71 2 + 60.48945 67.29240 85.66876 8.41810 220 71 2 + 60.74633 67.39050 86.10970 8.46142 220 71 2 + 25.01297 67.39050 53.16020 12.25326 110 47 1 + 28.05729 68.28321 53.28529 12.52579 220 53 2 + 28.04670 69.17592 53.67411 12.88916 220 52 2 + 28.08343 70.06863 54.23393 13.25253 220 52 2 + 28.14710 70.96134 54.90361 13.61590 220 51 2 + 28.15511 71.85405 55.45470 13.88842 220 51 2 + 28.29878 71.85405 55.84214 14.07011 220 51 2 + 28.31701 72.74676 56.44708 14.34263 220 50 2 + 27.80265 73.63947 57.28575 14.70600 110 49 1 + 27.01513 74.53218 58.15503 15.06937 110 46 1 + 26.20876 75.42489 59.04829 15.43274 110 44 1 + 25.67094 76.31760 59.73052 15.70527 110 43 1 + 20.45414 76.31760 40.77271 16.03504 220 50 2 + 18.61254 80.29860 37.12819 14.39553 220 50 2 + 16.18856 84.27960 32.30543 12.20951 220 50 2 + 13.82212 88.26060 27.51836 10.02349 220 50 2 + 11.49510 92.24160 22.75954 7.83747 220 51 2 + 9.78947 96.22260 19.20478 6.19796 220 51 2 + 28.32896 96.22260 38.54151 4.04417 220 74 2 + 29.33533 97.59600 43.70980 4.61174 220 67 2 + 30.94752 98.96940 50.55187 5.36850 220 61 2 + 32.52681 100.34280 57.35548 6.12526 220 57 2 + 34.09423 101.71620 64.13881 6.88202 220 53 2 + 35.02216 103.08960 69.22085 7.44959 220 51 2 + 36.31558 103.08960 72.60831 7.82797 220 50 2 + 33.05615 104.46300 77.69108 8.39554 110 43 1 + 29.98543 105.83640 84.47328 9.15230 110 35 1 + 27.03678 107.20980 91.26387 9.90906 110 30 1 + 24.22603 108.58320 98.06401 10.66582 110 25 1 + 21.45563 109.95660 103.17026 11.23339 110 21 1 + 21.68244 109.95660 106.57763 11.61177 110 20 1 + 19.07433 111.33000 111.69332 12.17934 110 17 1 + 16.73426 112.70340 118.52150 12.93610 110 14 1 + 14.54039 114.07680 125.35771 13.69286 110 12 1 + 12.48431 115.45020 132.20113 14.44961 110 0 1 + 10.52682 116.82360 137.33776 15.01718 110 0 1 + 10.90520 116.82360 140.76415 15.39556 110 0 1 + 11.04772 118.19700 145.90643 15.96313 110 0 1 + 11.46943 119.57040 152.76688 16.71989 110 0 1 + 11.96653 120.94380 159.63169 17.47665 110 0 1 + 12.52441 122.31720 166.50031 18.23341 110 0 1 + 12.93929 123.69060 171.65390 18.80098 110 0 1 + 13.31767 123.69060 175.09065 19.17936 110 0 1 + 13.76412 125.06400 180.24715 19.74693 110 0 1 + 14.42189 126.43740 187.12459 20.50369 110 0 1 + 15.09496 127.81080 194.00428 21.26045 110 0 1 + 15.77646 129.18420 200.88593 22.01721 110 0 1 + 16.27036 130.55760 206.04826 22.58478 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -52710,10 +52846,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 36.447 'Grind' - -11.09 25.055 'Hydrobiaklei' + -10.79 36.454 'Grind' + -11.09 25.047 'Hydrobiaklei' -12.00 7.524 'Basisveen' - -12.50 71.855 'Eerste zandlaag' + -12.50 71.888 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -52729,10 +52865,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 12.75 'Grind' + -10.79 12.76 'Grind' -11.09 4.55 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 23.87 'Eerste zandlaag' + -12.50 23.88 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -52957,7 +53093,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=8 CalculationStatus=0 -IterationCount=4 +IterationCount=3 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -52972,8 +53108,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 569.14407 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 787.38614 10000000.000 1 1 1 'Dek' + -10.19000 569.16240 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 787.38487 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -53034,10 +53170,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 36.94 : Percentage mobilized resistance left - 20.82 : Percentage mobilized resistance right - 244.74 : Effective left - 109.60 : Effective right + 36.95 : Percentage mobilized resistance left + 20.83 : Percentage mobilized resistance right + 244.78 : Effective left + 109.66 : Effective right 508.74 : Water pressure left 540.51 : Water pressure right 662.49 : Max effective resistance left @@ -53046,8 +53182,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 55.46 : Vertical force left - 14.58 : Vertical force right + 55.47 : Vertical force left + 14.60 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -53056,10 +53192,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --14.58 : Active force -55.46 : Passive force --14.58 : Plugged active force -55.46 : Plugged passive force +-14.60 : Active force +55.47 : Passive force +-14.60 : Plugged active force +55.47 : Plugged passive force 0.00 : Anchor force 135.00 : Normal force 41.67 : Factor on resistance @@ -53079,210 +53215,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -85.19875 - 0.24985 0.00000 -83.34794 - 0.49969 0.00000 -81.49716 - 0.74954 0.00000 -79.64643 - 0.99938 0.00000 -77.79577 - 1.24923 0.00000 -75.94522 - 1.24923 0.00000 -75.94522 - 1.49899 0.00000 -74.09480 - 1.74874 0.00000 -72.24452 - 1.99850 0.00000 -70.39443 - 2.24826 0.00000 -68.54454 - 2.49802 0.00000 -66.69488 - 2.49802 0.00000 -66.69488 - 2.83075 0.00000 -64.22907 - 3.16348 0.00000 -61.76377 - 3.49621 0.00000 -59.29904 - 3.82894 0.00000 -56.83495 - 4.16167 0.00000 -54.37156 - 4.16167 0.00000 -54.37156 - 4.43856 0.00000 -52.31930 - 4.71546 0.00000 -50.26760 - 4.99235 0.00000 -48.21650 - 5.26925 0.00000 -46.16603 - 5.54614 0.00000 -44.11622 - 5.54614 0.00000 -44.11622 - 5.82256 0.00000 -42.06711 - 6.09899 0.00000 -40.01873 - 6.37541 0.00000 -37.97112 - 6.65183 0.00000 -35.92431 - 6.92825 0.00000 -33.87835 - 6.92825 0.00000 -33.87835 - 7.16551 0.00000 -32.11951 - 7.40277 0.00000 -30.36134 - 7.64002 0.00000 -28.60386 - 7.87728 0.00000 -26.84710 - 8.11454 0.00000 -25.09106 - 8.11454 659.85000 -25.09106 - 83.64421 659.85000 -22.76652 - 159.17389 659.85000 -20.45567 - 234.70357 659.85000 -18.17089 - 310.23324 659.85000 -15.92453 - 385.76292 659.85000 -13.72896 - 385.76357 659.83913 -13.72896 - 438.74300 659.83913 -12.22519 - 491.72244 659.83913 -10.75680 - 544.70187 659.83913 -9.32805 - 597.68131 659.83913 -7.94322 - 650.66074 659.83913 -6.60657 - 650.66052 -127.54872 -6.60657 - 648.15270 -127.54872 -6.28043 - 645.64488 -127.54872 -5.95755 - 643.13705 -127.54872 -5.63793 - 640.62923 -127.54872 -5.32154 - 638.12141 -127.54872 -5.00839 - 638.12111 -127.54546 -5.00839 - 625.55062 -127.54546 -3.49059 - 612.98012 -127.54546 -2.05160 - 600.40963 -127.54546 -0.68984 - 587.83913 -127.54546 0.59629 - 575.26864 -127.54546 1.80836 - 575.26875 -127.54457 1.80836 - 562.64943 -127.54457 2.94795 - 550.03011 -127.54457 4.01667 - 537.41079 -127.54457 5.01609 - 524.79147 -127.54457 5.94781 - 512.17215 -127.54457 6.81341 - 512.17215 -127.54442 6.81341 - 499.50929 -127.54442 7.61449 - 486.84644 -127.54442 8.35264 - 474.18358 -127.54442 9.02946 - 461.52073 -127.54442 9.64654 - 448.85787 -127.54442 10.20548 - 448.85785 -127.54414 10.20548 - 431.06698 -127.54414 10.89335 - 413.27611 -127.54414 11.47478 - 395.48524 -127.54414 11.95416 - 377.69437 -127.54414 12.33588 - 359.90350 -127.54414 12.62434 - 359.90346 -127.54336 12.62434 - 343.32945 -127.54336 12.81252 - 326.75543 -127.54336 12.92761 - 310.18142 -127.54336 12.97312 - 293.60740 -127.54336 12.95260 - 277.03338 -127.54336 12.86956 - 277.03345 -127.54298 12.86956 - 260.41968 -127.54298 12.72753 - 243.80590 -127.54298 12.53007 - 227.19213 -127.54298 12.28069 - 210.57835 -127.54298 11.98294 - 193.96458 -127.54298 11.64035 - 193.96458 -127.54298 11.64035 - 174.82502 -127.54298 11.19555 - 155.68546 -127.54298 10.70151 - 136.54589 -127.54298 10.16364 - 117.40633 -127.54298 9.58732 - 98.26677 -127.54298 8.97794 - 98.26677 -127.54298 8.97794 - 79.10854 -127.54298 8.34089 - 59.95030 -127.54298 7.68156 - 40.79207 -127.54298 7.00536 - 21.63383 -127.54298 6.31766 - 2.47560 -127.54298 5.62388 - 2.47495 -127.53980 5.62388 - -16.68328 -127.53980 4.92939 - -35.84151 -127.53980 4.23961 - -54.99974 -127.53980 3.55992 - -74.15797 -127.53980 2.89571 - -93.31620 -127.53980 2.25239 - -93.31521 -127.53193 2.25239 - -112.45453 -127.53193 1.63534 - -131.59385 -127.53193 1.04996 - -150.73317 -127.53193 0.50163 - -169.87249 -127.53193 -0.00425 - -189.01181 -127.53193 -0.46230 - -189.01173 -127.53177 -0.46230 - -189.26752 -127.45299 -0.46808 - -189.52304 -127.29699 -0.47385 - -189.77826 -127.14099 -0.47961 - -190.03316 -126.98499 -0.48536 - -190.28776 -126.82899 -0.49110 - -190.28776 -126.82899 -0.49110 - -190.54203 -126.67299 -0.49683 - -190.79599 -126.51699 -0.50256 - -191.04964 -126.36099 -0.50827 - -191.30298 -126.20499 -0.51397 - -191.55600 -126.04899 -0.51966 - -191.55600 -126.04901 -0.51966 - -196.07313 -124.65902 -0.62047 - -200.57358 -124.65901 -0.71807 - -205.07403 -124.65900 -0.81241 - -209.57448 -124.65899 -0.90339 - -214.07492 -124.65899 -0.99095 - -214.07579 106.30530 -0.99095 - -202.40567 106.30532 -1.23717 - -190.73554 106.30535 -1.45254 - -179.06541 106.30537 -1.63884 - -167.39528 106.30539 -1.79784 - -155.72515 106.30541 -1.93132 - -155.72482 106.30712 -1.93132 - -154.66300 106.30699 -1.94225 - -153.60117 106.30700 -1.95298 - -152.53934 106.30700 -1.96353 - -151.47752 106.30700 -1.97388 - -150.41569 106.30713 -1.98404 - -150.41553 106.30333 -1.98404 - -145.19516 102.64870 -2.03202 - -140.16372 98.74877 -2.07544 - -135.33307 94.62008 -2.11443 - -130.71421 90.27996 -2.14916 - -126.31727 85.74655 -2.17976 - -126.31742 85.74295 -2.17976 - -125.46366 85.12638 -2.18541 - -124.61610 84.50336 -2.19089 - -123.77479 83.87614 -2.19621 - -122.93978 83.24472 -2.20138 - -122.11110 82.60951 -2.20640 - -122.11024 82.58737 -2.20640 - -114.69382 80.42043 -2.24511 - -107.47958 78.17339 -2.27186 - -100.46945 75.93405 -2.28737 - -93.66286 73.69972 -2.29238 - -87.05940 71.46974 -2.28763 - -87.05966 71.47282 -2.28763 - -80.65550 69.22442 -2.27382 - -74.45443 67.00211 -2.25159 - -68.45537 64.78457 -2.22158 - -62.65787 62.57251 -2.18441 - -57.06136 60.36769 -2.14070 - -57.06131 60.36730 -2.14070 - -51.06900 59.37472 -2.08585 - -45.17334 58.43679 -2.02457 - -39.36840 57.56011 -1.95758 - -33.64830 56.73813 -1.88563 - -28.00817 55.95841 -1.80944 - -28.00503 55.93749 -1.80944 - -20.32628 53.09640 -1.69711 - -13.20911 48.36978 -1.57979 - -6.77781 43.38638 -1.45906 - -1.04688 38.34145 -1.33649 - 3.97056 33.20739 -1.21368 - 3.97062 33.18588 -1.21368 - 8.24551 27.80270 -1.09207 - 11.76692 22.39223 -0.97251 - 14.52275 16.86580 -0.85569 - 16.49681 11.22448 -0.74227 - 17.69156 5.86451 -0.63295 - 17.68470 5.84980 -0.63295 - 18.17145 1.16102 -0.52819 - 18.04827 -2.86552 -0.42791 - 17.40706 -6.24108 -0.33198 - 16.33817 -8.97747 -0.24025 - 14.92984 -11.09477 -0.15256 - 14.93750 -11.11674 -0.15256 - 13.28040 -12.59586 -0.06865 - 11.42845 -13.77332 0.01198 - 9.45905 -14.27640 0.08982 - 7.46549 -14.12101 0.16533 - 5.53897 -13.32066 0.23899 - 5.53148 -13.30163 0.23899 - 3.76290 -11.86676 0.31133 - 2.23917 -9.80478 0.38276 - 1.04755 -7.12421 0.45355 - 0.27290 -3.85672 0.52399 - -0.00506 -0.02890 0.59437 + 0.00000 0.00000 -85.19886 + 0.24985 0.00000 -83.34804 + 0.49970 0.00000 -81.49723 + 0.74954 0.00000 -79.64648 + 0.99939 0.00000 -77.79581 + 1.24924 0.00000 -75.94524 + 1.24924 0.00000 -75.94524 + 1.49900 0.00000 -74.09480 + 1.74876 0.00000 -72.24450 + 1.99852 0.00000 -70.39439 + 2.24829 0.00000 -68.54448 + 2.49805 0.00000 -66.69480 + 2.49805 0.00000 -66.69480 + 2.83078 0.00000 -64.22897 + 3.16351 0.00000 -61.76364 + 3.49625 0.00000 -59.29889 + 3.82898 0.00000 -56.83477 + 4.16171 0.00000 -54.37135 + 4.16171 0.00000 -54.37135 + 4.43861 0.00000 -52.31907 + 4.71551 0.00000 -50.26736 + 4.99240 0.00000 -48.21623 + 5.26930 0.00000 -46.16574 + 5.54620 0.00000 -44.11591 + 5.54620 0.00000 -44.11591 + 5.82262 0.00000 -42.06677 + 6.09905 0.00000 -40.01837 + 6.37548 0.00000 -37.97074 + 6.65190 0.00000 -35.92392 + 6.92833 0.00000 -33.87793 + 6.92833 0.00000 -33.87793 + 7.16559 0.00000 -32.11907 + 7.40284 0.00000 -30.36089 + 7.64010 0.00000 -28.60339 + 7.87736 0.00000 -26.84660 + 8.11462 0.00000 -25.09055 + 8.11462 659.85000 -25.09055 + 83.64430 659.85000 -22.76599 + 159.17398 659.85000 -20.45512 + 234.70366 659.85000 -18.17031 + 310.23334 659.85000 -15.92392 + 385.76302 659.85000 -13.72833 + 385.76367 659.83912 -13.72833 + 438.74311 659.83912 -12.22455 + 491.72254 659.83912 -10.75613 + 544.70198 659.83912 -9.32737 + 597.68141 659.83912 -7.94252 + 650.66085 659.83912 -6.60586 + 650.66063 -127.54747 -6.60586 + 648.15283 -127.54747 -6.27971 + 645.64503 -127.54747 -5.95683 + 643.13724 -127.54747 -5.63720 + 640.62944 -127.54747 -5.32081 + 638.12164 -127.54747 -5.00765 + 638.12135 -127.54421 -5.00765 + 625.55098 -127.54421 -3.48984 + 612.98061 -127.54421 -2.05083 + 600.41025 -127.54421 -0.68904 + 587.83988 -127.54421 0.59711 + 575.26951 -127.54421 1.80920 + 575.26963 -127.54331 1.80920 + 562.65044 -127.54331 2.94882 + 550.03124 -127.54331 4.01755 + 537.41205 -127.54331 5.01699 + 524.79286 -127.54331 5.94873 + 512.17367 -127.54331 6.81435 + 512.17367 -127.54316 6.81435 + 499.51094 -127.54316 7.61545 + 486.84821 -127.54316 8.35363 + 474.18548 -127.54316 9.03046 + 461.52276 -127.54316 9.64756 + 448.86003 -127.54316 10.20652 + 448.86001 -127.54288 10.20652 + 431.06932 -127.54288 10.89442 + 413.27863 -127.54288 11.47587 + 395.48794 -127.54288 11.95528 + 377.69724 -127.54288 12.33702 + 359.90655 -127.54288 12.62550 + 359.90651 -127.54211 12.62550 + 343.33266 -127.54211 12.81371 + 326.75881 -127.54211 12.92881 + 310.18496 -127.54211 12.97435 + 293.61111 -127.54211 12.95384 + 277.03726 -127.54211 12.87082 + 277.03733 -127.54172 12.87082 + 260.42372 -127.54172 12.72882 + 243.81011 -127.54172 12.53136 + 227.19650 -127.54172 12.28200 + 210.58289 -127.54172 11.98427 + 193.96928 -127.54172 11.64170 + 193.96928 -127.54172 11.64170 + 174.82991 -127.54172 11.19690 + 155.69054 -127.54172 10.70288 + 136.55117 -127.54172 10.16502 + 117.41180 -127.54172 9.58871 + 98.27243 -127.54172 8.97934 + 98.27243 -127.54172 8.97934 + 79.11438 -127.54172 8.34229 + 59.95633 -127.54172 7.68297 + 40.79829 -127.54172 7.00677 + 21.64024 -127.54172 6.31908 + 2.48219 -127.54172 5.62530 + 2.48155 -127.53855 5.62530 + -16.67649 -127.53855 4.93081 + -35.83454 -127.53855 4.24102 + -54.99258 -127.53855 3.56133 + -74.15062 -127.53855 2.89712 + -93.30867 -127.53855 2.25378 + -93.30768 -127.53070 2.25378 + -112.44682 -127.53070 1.63672 + -131.58596 -127.53070 1.05133 + -150.72510 -127.53070 0.50298 + -169.86423 -127.53070 -0.00292 + -189.00337 -127.53070 -0.46099 + -189.00329 -127.53056 -0.46099 + -189.25908 -127.45178 -0.46677 + -189.51460 -127.29578 -0.47254 + -189.76982 -127.13978 -0.47830 + -190.02472 -126.98378 -0.48405 + -190.27931 -126.82778 -0.48979 + -190.27931 -126.82778 -0.48979 + -190.53358 -126.67178 -0.49553 + -190.78754 -126.51578 -0.50125 + -191.04118 -126.35978 -0.50696 + -191.29452 -126.20378 -0.51266 + -191.54754 -126.04778 -0.51836 + -191.54754 -126.04779 -0.51836 + -196.06463 -124.65781 -0.61917 + -200.56503 -124.65780 -0.71678 + -205.06544 -124.65779 -0.81111 + -209.56584 -124.65778 -0.90210 + -214.06625 -124.65778 -0.98967 + -214.06712 106.28820 -0.98967 + -202.39888 106.28822 -1.23591 + -190.73064 106.28825 -1.45130 + -179.06239 106.28827 -1.63762 + -167.39414 106.28829 -1.79664 + -155.72590 106.28831 -1.93014 + -155.72557 106.29002 -1.93014 + -154.66391 106.28990 -1.94107 + -153.60226 106.28990 -1.95181 + -152.54060 106.28991 -1.96236 + -151.47895 106.28991 -1.97271 + -150.41729 106.29003 -1.98287 + -150.41713 106.28624 -1.98287 + -145.19761 102.63188 -2.03087 + -140.16701 98.73226 -2.07429 + -135.33717 94.60390 -2.11329 + -130.71912 90.26414 -2.14803 + -126.32296 85.73113 -2.17864 + -126.32311 85.72753 -2.17864 + -125.46952 85.10832 -2.18429 + -124.62214 84.48526 -2.18977 + -123.78101 83.85799 -2.19510 + -122.94618 83.22652 -2.20027 + -122.11768 82.59126 -2.20529 + -122.11683 82.56909 -2.20529 + -114.70208 80.40178 -2.24401 + -107.48958 78.15393 -2.27078 + -100.48126 75.91383 -2.28630 + -93.67654 73.67881 -2.29133 + -87.07501 71.44820 -2.28659 + -87.07511 71.44709 -2.28659 + -80.67201 69.21969 -2.27278 + -74.47139 66.99689 -2.25057 + -68.47283 64.77893 -2.22056 + -62.67586 62.56653 -2.18340 + -57.07990 60.36145 -2.13969 + -57.07987 60.36094 -2.13969 + -51.08820 59.36850 -2.08484 + -45.19315 58.43070 -2.02356 + -39.38881 57.55416 -1.95657 + -33.66930 56.73229 -1.88461 + -28.02975 55.95265 -1.80840 + -28.02665 55.93205 -1.80840 + -20.34861 53.09159 -1.69606 + -13.23212 48.36460 -1.57872 + -6.80156 43.38122 -1.45795 + -1.07128 38.33738 -1.33535 + 3.94567 33.20447 -1.21250 + 3.94575 33.18301 -1.21250 + 8.22525 27.85375 -1.09084 + 11.75390 22.44452 -0.97123 + 14.51713 16.91935 -0.85435 + 16.49887 11.28105 -0.74088 + 17.70187 5.92586 -0.63150 + 17.69501 5.91114 -0.63150 + 18.19069 1.22718 -0.52669 + 18.07710 -2.79454 -0.42636 + 17.44618 -6.16531 -0.33039 + 16.38822 -8.89696 -0.23862 + 14.99159 -11.00767 -0.15092 + 14.99641 -11.04194 -0.15092 + 13.33198 -12.70780 -0.06701 + 11.46546 -13.86930 0.01362 + 9.48374 -14.35663 0.09144 + 7.48001 -14.18611 0.16693 + 5.54540 -13.37131 0.24057 + 5.54027 -13.34063 0.24057 + 3.76720 -11.89202 0.31288 + 2.24085 -9.81701 0.38427 + 1.04817 -7.12882 0.45504 + 0.27306 -3.85886 0.52545 + -0.00505 -0.02885 0.59580 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -53403,36 +53539,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.81500 71.15100 34.65200 63.80392 62.46961 -10.86500 71.15100 34.65200 66.74013 62.63310 -10.91500 71.15100 34.65200 69.82331 62.80477 @@ -53513,7 +53649,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -53531,7 +53667,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -53544,7 +53680,7 @@ Lambda passive -10.94000 12.29600 64.60333 3.59709 0.51628 0.29254 5.25401 -10.99000 12.85550 67.54294 3.76077 0.51628 0.29254 5.25401 -11.04000 13.41500 69.74766 3.88353 0.51628 0.29254 5.25401 - -11.04000 13.41500 70.62954 3.93263 0.64500 0.29254 5.25401 + -11.04000 13.41500 70.62954 3.93263 0.51628 0.29254 5.25401 -11.05000 13.52690 71.07049 3.95718 0.51628 0.29254 5.25401 -11.06000 13.63880 71.65841 3.98992 0.51628 0.29254 5.25401 -11.07000 13.75070 72.24634 4.02266 0.51628 0.29254 5.25401 @@ -53574,7 +53710,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -53733,13 +53869,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 402 100 P @@ -53751,20 +53887,20 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.14698 67.39050 56.51937 5.55378 1 0 A 3.26974 67.88100 58.72409 5.77042 1 0 A 3.43342 68.37150 61.66371 6.05928 1 0 A 3.59709 68.86200 64.60333 6.34814 1 0 A 3.76077 69.35250 67.54294 6.63699 1 0 A 3.88353 69.84300 69.74766 6.85364 1 0 A - 3.93263 69.84300 70.62954 8.67078 1 0 A + 3.93263 69.84300 70.62954 6.94029 1 0 A 3.95718 69.94110 71.07049 6.98362 1 0 A 3.98992 70.03920 71.65841 7.04139 1 0 A 4.02266 70.13730 72.24634 7.09916 1 0 A @@ -53788,13 +53924,13 @@ Status character 3.45497 91.20360 23.37981 8.12381 1 0 A 1.66671 95.18460 18.63653 5.93779 1 0 A 0.32550 99.16560 15.09227 4.29828 1 0 A - 21.67785 99.16560 26.26428 2.74836 330 83 3 + 21.68303 99.16560 26.26428 2.74836 330 83 3 1.89296 100.53900 31.53892 3.31593 1 0 A 2.32601 101.91240 38.50115 4.07269 1 0 A 2.75956 103.28580 45.39611 4.82945 1 0 A 3.19359 104.65920 52.24433 5.58621 1 0 A 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A 4.93366 110.15280 79.46578 8.61324 1 0 A @@ -53807,17 +53943,17 @@ Status character 7.54953 118.39320 120.40102 13.15380 1 0 A 7.87663 119.76660 125.53597 13.72137 1 0 A 8.09468 119.76660 128.96129 14.09975 1 0 A - 8.42176 121.14000 134.10206 14.66732 1 0 A - 11.61462 122.51340 140.96069 15.42408 110 0 1 - 14.74965 123.88680 147.82389 16.18084 110 0 1 - 17.83151 125.26020 154.69114 16.93760 110 12 1 - 20.68088 126.63360 159.84382 17.50516 110 13 1 - 21.05926 126.63360 163.28003 17.88354 110 13 1 - 23.87728 128.00700 168.43582 18.45111 110 14 1 - 26.86293 129.38040 175.31244 19.20787 110 15 1 - 30.61051 130.75380 182.19144 19.96463 110 17 1 - 35.05195 132.12720 189.07254 20.72139 110 19 1 - 39.37793 133.50060 194.23453 21.28896 110 20 1 + 8.47578 121.14000 134.10206 14.66732 110 0 1 + 11.67199 122.51340 140.96069 15.42408 110 0 1 + 14.80486 123.88680 147.82389 16.18084 110 0 1 + 17.88436 125.26020 154.69114 16.93760 110 12 1 + 20.73124 126.63360 159.84382 17.50516 110 13 1 + 21.10962 126.63360 163.28003 17.88354 110 13 1 + 23.92510 128.00700 168.43582 18.45111 110 14 1 + 26.90816 129.38040 175.31244 19.20787 110 15 1 + 30.62908 130.75380 182.19144 19.96463 110 17 1 + 35.06856 132.12720 189.07254 20.72139 110 19 1 + 39.39256 133.50060 194.23453 21.28896 110 20 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -53834,7 +53970,7 @@ Layer name -10.79 1.079 'Grind' -11.09 2.812 'Hydrobiaklei' -12.00 2.175 'Basisveen' - -12.50 41.224 'Eerste zandlaag' + -12.50 41.281 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -53853,7 +53989,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.51 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.70 'Eerste zandlaag' + -12.50 -13.71 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -53977,24 +54113,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.81500 71.15100 34.65200 62.33325 60.92602 -10.86500 71.15100 34.65200 65.50084 61.10239 -10.91500 71.15100 34.65200 68.91800 61.29265 @@ -54081,20 +54217,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 59.60834 3.31898 0.51628 0.29254 5.25401 -10.84000 12.05780 63.35182 3.52741 0.51628 0.29254 5.25401 -10.89000 13.00780 68.34313 3.80533 0.51628 0.29254 5.25401 -10.94000 13.95780 73.33444 4.08324 0.51628 0.29254 5.25401 -10.99000 14.90780 78.32575 4.36116 0.51628 0.29254 5.25401 -11.04000 15.85780 82.06924 4.56959 0.51628 0.29254 5.25401 - -11.04000 15.85780 83.46404 4.64725 0.51854 0.29254 5.25401 + -11.04000 15.85780 83.46404 4.64725 0.51628 0.29254 5.25401 -11.05000 15.96970 83.90499 4.67181 0.51628 0.29254 5.25401 -11.06000 16.08160 84.49291 4.70454 0.51628 0.29254 5.25401 -11.07000 16.19350 85.08083 4.73728 0.51628 0.29254 5.25401 @@ -54106,7 +54242,7 @@ Lambda passive -11.36300 17.88877 54.23393 3.84415 0.74083 0.21489 3.03173 -11.45400 18.37926 54.90361 4.10350 0.74083 0.22327 2.98726 -11.54500 18.86975 55.45470 4.29683 0.74083 0.22920 2.95804 - -11.54500 18.86975 55.84214 4.42534 0.83235 0.23301 2.94024 + -11.54500 18.86975 55.84214 4.42534 0.74083 0.23301 2.94024 -11.63600 19.36024 56.44708 4.61774 0.74083 0.23852 2.91562 -11.72700 19.85073 57.28575 4.87386 0.74083 0.24553 2.88583 -11.81800 20.34122 58.15503 5.12966 0.74083 0.25218 2.85897 @@ -54136,7 +54272,7 @@ Lambda passive -14.32000 25.81300 125.35771 7.85552 0.53046 0.30432 4.85638 -14.46000 27.23960 132.20113 8.29186 0.53046 0.30440 4.85327 -14.60000 28.66620 137.33776 8.61910 0.53046 0.30446 4.85129 - -14.60000 28.66620 140.76415 8.83725 0.36828 0.30449 4.85011 + -14.60000 28.66620 140.76415 8.83725 0.53046 0.30449 4.85011 -14.74000 30.09280 145.90643 9.16446 0.53046 0.30454 4.84855 -14.88000 31.51940 152.76688 9.60069 0.53046 0.30460 4.84676 -15.02000 32.94600 159.63169 10.03688 0.53046 0.30465 4.84525 @@ -54296,75 +54432,75 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00207 0.00000 78.00207 78.00207 402 100 P + 78.00207 0.00000 78.00207 78.00208 402 100 P 78.00290 0.00000 78.00290 78.00290 402 100 P 78.00400 0.00000 78.00400 78.00400 402 100 P 78.00510 0.00000 78.00510 78.00510 402 100 P 78.00620 0.00000 78.00620 78.00620 402 100 P - 78.00703 0.00000 78.00703 78.00703 402 100 P - 78.00732 0.00000 78.00732 78.00732 402 100 P + 78.00702 0.00000 78.00702 78.00703 402 100 P + 78.00732 0.00000 78.00732 78.00733 402 100 P 78.00740 0.00000 78.00740 78.00740 402 100 P 78.00750 0.00000 78.00750 78.00750 402 100 P 78.00760 0.00000 78.00760 78.00760 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 78.00778 0.00000 78.00778 78.00778 402 100 P - 141.09944 0.00000 411.10170 40.39621 110 34 1 - 146.77376 0.00000 414.84519 40.76406 110 35 1 - 152.17912 0.00000 419.83650 41.25452 110 36 1 - 157.23260 0.00000 424.82781 41.74498 110 37 1 - 161.94451 0.00000 429.81912 42.23545 110 38 1 - 166.23193 0.00000 433.56260 42.60329 110 38 1 - 68.09971 66.90000 83.46404 8.23745 330 82 3 - 68.99036 66.99810 83.90499 8.24478 330 82 3 - 69.44542 67.09620 84.49291 8.30255 330 82 3 - 69.89836 67.19430 85.08083 8.36032 330 82 3 - 70.34918 67.29240 85.66876 8.41810 330 82 3 - 70.71363 67.39050 86.10970 8.46142 330 82 3 - 27.66494 67.39050 53.16020 12.25326 220 52 2 - 29.74285 68.28321 53.28529 12.52579 220 56 2 - 29.90436 69.17592 53.67411 12.88916 220 56 2 - 30.10093 70.06863 54.23393 13.25253 220 56 2 - 30.31210 70.96134 54.90361 13.61590 220 55 2 - 30.45515 71.85405 55.45470 13.88842 220 55 2 - 31.07284 71.85405 55.84214 15.80822 220 56 2 - 30.73958 72.74676 56.44708 14.34263 220 54 2 - 30.94641 73.63947 57.28575 14.70600 220 54 2 - 31.14556 74.53218 58.15503 15.06937 220 54 2 - 31.33614 75.42489 59.04829 15.43274 220 53 2 - 31.43281 76.31760 59.73052 15.70527 220 53 2 - 21.47924 76.31760 40.77271 16.03504 220 53 2 - 19.66199 80.29860 37.12819 14.39553 220 53 2 - 17.25724 84.27960 32.30543 12.20951 220 53 2 - 14.86053 88.26060 27.51836 10.02349 220 54 2 - 12.58674 92.24160 22.75954 7.83747 220 55 2 - 10.88587 96.22260 19.20478 6.19796 220 57 2 - 33.30620 96.22260 38.54151 4.04417 330 86 3 - 36.73762 97.59600 43.70980 4.61174 330 84 3 - 40.89059 98.96940 50.55187 5.36850 330 81 3 - 41.27229 100.34280 57.35548 6.12526 220 72 2 - 42.63736 101.71620 64.13881 6.88202 220 66 2 - 43.30534 103.08960 69.22085 7.44959 220 63 2 - 45.35202 103.08960 72.60831 7.82797 220 62 2 - 45.23629 104.46300 77.69108 8.39554 220 58 2 - 46.50321 105.83640 84.47328 9.15230 220 55 2 - 47.76358 107.20980 91.26387 9.90906 220 52 2 - 49.01582 108.58320 98.06401 10.66582 110 50 1 - 44.50680 109.95660 103.17026 11.23339 110 43 1 - 44.73361 109.95660 106.57763 11.61177 110 42 1 - 40.29047 111.33000 111.69332 12.17934 110 36 1 - 36.03605 112.70340 118.52150 12.93610 110 30 1 - 31.86295 114.07680 125.35771 13.69286 110 25 1 - 27.77721 115.45020 132.20113 14.44961 110 21 1 - 23.78214 116.82360 137.33776 15.01718 110 17 1 - 21.31879 116.82360 140.76415 10.68859 110 15 1 - 22.21389 118.19700 145.90643 15.96313 110 15 1 - 20.52935 119.57040 152.76688 16.71989 110 13 1 - 18.90784 120.94380 159.63169 17.47665 110 12 1 - 17.33950 122.31720 166.50031 18.23341 110 0 1 - 15.62526 123.69060 171.65390 18.80098 110 0 1 - 16.00364 123.69060 175.09065 19.17936 110 0 1 - 14.32076 125.06400 180.24715 19.74693 110 0 1 - 12.84863 126.43740 187.12459 20.50369 110 0 1 + 78.00777 0.00000 78.00777 78.00778 402 0 P + 141.09431 0.00000 411.10170 40.39621 110 34 1 + 146.76803 0.00000 414.84519 40.76406 110 35 1 + 152.17277 0.00000 419.83650 41.25452 110 36 1 + 157.22561 0.00000 424.82781 41.74498 110 37 1 + 161.93685 0.00000 429.81912 42.23545 110 38 1 + 166.22359 0.00000 433.56260 42.60329 110 38 1 + 68.62223 66.90000 83.46404 8.20145 330 82 3 + 68.99522 66.99810 83.90499 8.24478 330 82 3 + 69.45033 67.09620 84.49291 8.30255 330 82 3 + 69.90332 67.19430 85.08083 8.36032 330 82 3 + 70.35420 67.29240 85.66876 8.41810 330 82 3 + 70.71870 67.39050 86.10970 8.46142 330 82 3 + 27.66376 67.39050 53.16020 12.25326 220 52 2 + 29.75204 68.28321 53.28529 12.52579 220 56 2 + 29.91295 69.17592 53.67411 12.88916 220 56 2 + 30.10890 70.06863 54.23393 13.25253 220 56 2 + 30.31939 70.96134 54.90361 13.61590 220 55 2 + 30.46173 71.85405 55.45470 13.88842 220 55 2 + 30.60539 71.85405 55.84214 14.07011 220 55 2 + 30.74539 72.74676 56.44708 14.34263 220 54 2 + 30.95142 73.63947 57.28575 14.70600 220 54 2 + 31.14973 74.53218 58.15503 15.06937 220 54 2 + 31.33943 75.42489 59.04829 15.43274 220 53 2 + 31.43518 76.31760 59.73052 15.70527 220 53 2 + 21.47796 76.31760 40.77271 16.03504 220 53 2 + 19.66065 80.29860 37.12819 14.39553 220 53 2 + 17.25584 84.27960 32.30543 12.20951 220 53 2 + 14.85907 88.26060 27.51836 10.02349 220 54 2 + 12.58597 92.24160 22.75954 7.83747 220 55 2 + 10.88505 96.22260 19.20478 6.19796 220 57 2 + 33.30431 96.22260 38.54151 4.04417 330 86 3 + 36.73558 97.59600 43.70980 4.61174 330 84 3 + 40.89794 98.96940 50.55187 5.36850 330 81 3 + 41.26469 100.34280 57.35548 6.12526 220 72 2 + 42.62935 101.71620 64.13881 6.88202 220 66 2 + 43.29697 103.08960 69.22085 7.44959 220 63 2 + 44.59039 103.08960 72.60831 7.82797 220 61 2 + 45.22761 104.46300 77.69108 8.39554 220 58 2 + 46.49428 105.83640 84.47328 9.15230 220 55 2 + 47.75445 107.20980 91.26387 9.90906 220 52 2 + 48.98182 108.58320 98.06401 10.66582 110 50 1 + 44.47246 109.95660 103.17026 11.23339 110 43 1 + 44.69928 109.95660 106.57763 11.61177 110 42 1 + 40.25599 111.33000 111.69332 12.17934 110 36 1 + 36.00164 112.70340 118.52150 12.93610 110 30 1 + 31.82886 114.07680 125.35771 13.69286 110 25 1 + 27.74371 115.45020 132.20113 14.44961 110 21 1 + 23.72146 116.82360 137.33776 15.01718 110 17 1 + 24.09984 116.82360 140.76415 15.39556 110 17 1 + 22.15467 118.19700 145.90643 15.96313 110 15 1 + 20.47198 119.57040 152.76688 16.71989 110 13 1 + 18.85263 120.94380 159.63169 17.47665 110 12 1 + 17.28665 122.31720 166.50031 18.23341 110 0 1 + 15.57490 123.69060 171.65390 18.80098 110 0 1 + 15.95328 123.69060 175.09065 19.17936 110 0 1 + 14.27295 125.06400 180.24715 19.74693 110 0 1 + 12.80340 126.43740 187.12459 20.50369 110 0 1 12.21703 127.81080 194.00428 21.26045 1 0 A 12.65291 129.18420 200.88593 22.01721 1 0 A 12.97980 130.55760 206.04826 22.58478 1 0 A @@ -54381,10 +54517,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 42.071 'Grind' - -11.09 27.713 'Hydrobiaklei' - -12.00 8.055 'Basisveen' - -12.50 107.451 'Eerste zandlaag' + -10.79 42.072 'Grind' + -11.09 27.697 'Hydrobiaklei' + -12.00 8.054 'Basisveen' + -12.50 107.502 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -54401,9 +54537,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 14.72 'Grind' - -11.09 5.04 'Hydrobiaklei' + -11.09 5.03 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 35.70 'Eerste zandlaag' + -12.50 35.71 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -54670,20 +54806,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 25.86 : Percentage mobilized resistance left - 51.65 : Percentage mobilized resistance right - 502.34 : Effective left - 612.37 : Effective right + 25.87 : Percentage mobilized resistance left + 51.68 : Percentage mobilized resistance right + 502.60 : Effective left + 612.63 : Effective right 1096.84 : Water pressure left 986.23 : Water pressure right 1942.71 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -20727.44 : Max moment left --13318.95 : Max moment right --6052.51 : Max mobilized moment left --6088.47 : Max mobilized moment right - 154.22 : Vertical force left - 166.86 : Vertical force right +-13318.44 : Max moment right +-6055.97 : Max mobilized moment left +-6091.92 : Max mobilized moment right + 154.31 : Vertical force left + 166.95 : Vertical force right 29.2 : Max mobilized moment percentage left 45.7 : Max mobilized moment percentage right -2.43 : Level of single support @@ -54692,10 +54828,10 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --154.22 : Active force -166.86 : Passive force --154.22 : Plugged active force -166.86 : Plugged passive force +-154.31 : Active force +166.95 : Passive force +-154.31 : Plugged active force +166.95 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -54715,210 +54851,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1433.04749 - 0.00000 0.00000 1423.57239 - 0.00000 0.00000 1414.09729 - 0.00000 0.00000 1404.62219 - 0.00000 0.00000 1395.14709 - 0.00000 0.00000 1385.67199 - 0.00000 0.00000 1385.67199 - 0.00000 0.00000 1376.19689 - 0.00000 0.00000 1366.72179 - 0.00000 0.00000 1357.24669 - 0.00000 0.00000 1347.77159 - 0.00000 0.00000 1338.29649 - 0.00000 0.00000 1338.29649 - 0.00000 -0.00049 1337.18177 - -0.00001 -0.00196 1336.06705 - -0.00004 -0.00441 1334.95233 - -0.00010 -0.00785 1333.83762 - -0.00020 -0.01226 1332.72290 - -0.00020 -0.01226 1332.72290 - -0.00803 -0.14175 1319.34628 - -0.03988 -0.41251 1305.96967 - -0.11269 -0.82453 1292.59306 - -0.24341 -1.37781 1279.21649 - -0.44901 -2.07236 1265.83996 - -0.44901 -2.07236 1265.83996 - -0.68977 -2.75906 1254.69290 - -1.00409 -3.54386 1243.54593 - -1.40181 -4.42676 1232.39909 - -1.89272 -5.40776 1221.25244 - -2.48663 -6.48686 1210.10603 - -2.48663 -6.48686 1210.10603 - -3.19336 -7.66406 1198.95991 - -4.02271 -8.93936 1187.81420 - -4.98450 -10.31276 1176.66900 - -6.08854 -11.78426 1165.52446 - -7.34462 -13.35386 1154.38067 - -7.34462 -13.35386 1154.38067 - -8.55395 -14.78218 1144.79773 - -9.88924 -16.28305 1135.21559 - -11.35672 -17.85648 1125.63438 - -12.96263 -19.50246 1116.05425 - -14.71322 -21.22099 1106.47531 - -14.71322 -21.22099 1106.47531 - -17.26743 -23.61088 1093.77976 - -20.10135 -26.12827 1081.08703 - -23.22952 -28.77314 1068.39763 - -26.66647 -31.54551 1055.71209 - -30.42674 -34.44536 1043.03090 - -30.42674 -34.44536 1043.03090 - -30.82111 -34.74236 1041.76304 - -31.21887 -35.04063 1040.49524 - -31.62004 -35.34018 1039.22748 - -32.02463 -35.64100 1037.95977 - -32.43266 -35.94310 1036.69212 - -32.43266 -35.94310 1036.69212 - -33.83924 -36.92159 1032.40029 - -35.28181 -37.80707 1028.10910 - -36.75675 -38.59949 1023.81857 - -38.26049 -39.29887 1019.52873 - -39.78960 -39.91866 1015.23961 - -39.78960 -39.91866 1015.23961 - -40.99342 -40.33176 1011.90660 - -42.20920 -40.71411 1008.57407 - -43.43592 -41.06130 1005.24201 - -44.67253 -41.37333 1001.91045 - -45.91801 -41.65460 998.57939 - -45.91801 -41.65459 998.57939 - -46.75275 -41.81769 996.35897 - -47.59063 -41.96712 994.13879 - -48.43133 -42.10092 991.91885 - -49.27456 -42.21909 989.69915 - -50.12001 -42.32360 987.47970 - -50.12001 -42.32360 987.47970 - -54.43295 -43.93735 976.38631 - -58.90787 -45.56290 965.29978 - -63.54584 -47.19761 954.22069 - -68.34758 -48.83801 943.14962 - -73.31354 -50.48153 932.08717 - -73.31354 -50.48153 932.08717 - -78.44397 -52.12707 921.03392 - -83.73896 -53.77278 909.99055 - -89.19850 -55.41791 898.95775 - -94.82250 -57.06169 887.93621 - -100.61079 -58.70383 876.92661 - -100.61079 -58.70383 876.92661 - -106.56314 -60.34291 865.92965 - -112.67929 -61.97945 854.94612 - -118.95893 -63.61280 843.97681 - -125.40173 -65.24267 833.02250 - -132.00735 -66.86931 822.08398 - -132.00735 -66.86931 822.08398 - -141.52795 -69.13826 806.79812 - -151.36573 -71.39997 791.54720 - -161.51954 -73.65307 776.33373 - -171.98817 -75.89720 761.16020 - -182.77038 -78.13327 746.02914 - -182.77038 -78.13327 746.02914 - -192.94649 -78.41533 732.01916 - -203.15911 -78.71462 718.05026 - -213.41560 -79.09013 704.12462 - -223.76112 -80.35574 690.24444 - -234.33644 -82.27571 676.41190 - -234.33644 -82.27571 676.41190 - -245.13568 -83.80048 662.62922 - -256.10744 -84.93005 648.89874 - -267.20037 -85.66442 635.22280 - -278.36307 -86.00359 621.60377 - -289.54417 -85.94756 608.04399 - -289.54417 -85.94756 608.04399 - -302.37153 -85.65589 592.52659 - -315.15528 -85.36421 577.09433 - -327.89543 -85.07254 561.75080 - -340.61252 -85.19316 546.49958 - -353.39696 -85.89127 531.34427 - -353.39696 -85.89127 531.34427 - -366.30623 -86.81683 516.28844 - -379.35830 -87.80466 501.33574 - -392.56352 -88.86667 486.48989 - -405.93181 -89.97639 471.75462 - -419.47039 -91.16500 457.13363 - -419.47039 -91.16500 457.13363 - -433.19754 -92.48454 442.63069 - -447.12631 -93.86519 428.24971 - -461.26671 -95.31569 413.99468 - -475.62919 -96.83604 399.86958 - -490.22374 -98.41752 385.87840 - -490.22374 -98.41752 385.87840 - -505.06125 -100.08634 372.02520 - -520.15260 -101.81643 358.31424 - -535.41965 -101.84667 344.74974 - -550.46312 -99.03464 331.33596 - -564.96717 -94.94171 318.07713 - -564.96718 -94.94157 318.07713 - -565.15700 -94.88289 317.90082 - -565.34671 -94.82414 317.72455 - -565.53630 -94.76530 317.54830 - -565.72577 -94.70638 317.37208 - -565.91512 -94.64739 317.19589 - -565.91512 -94.60265 317.19589 - -569.48884 -93.48618 313.82817 - -573.01993 -92.35885 310.50873 - -576.50795 -91.21909 307.21246 - -579.95243 -90.06691 303.91426 - -583.35290 -88.90385 300.58902 - -583.35290 -88.85856 300.58902 - -593.79037 -85.08372 290.23672 - -603.76865 -81.20034 279.99215 - -613.27349 -77.19287 269.85702 - -622.28998 -73.06130 259.83306 - -630.80385 -68.82117 249.92200 - -630.80385 -68.82117 249.92200 - -634.86790 -66.64299 245.00932 - -638.80047 -64.43768 240.12543 - -642.59980 -62.20135 235.27051 - -646.26401 -59.93402 230.44472 - -649.79134 -57.63956 225.64824 - -649.79134 -57.63956 225.64824 - -654.87524 -54.08563 218.42990 - -659.63303 -50.46928 211.27989 - -664.05848 -46.78157 204.19865 - -668.14511 -43.02250 197.18666 - -671.88668 -39.20099 190.24437 - -671.88668 -39.20099 190.24437 - -675.27644 -35.29028 183.37222 - -678.30762 -31.31713 176.57052 - -680.97400 -27.27260 169.83954 - -683.26907 -23.15671 163.17957 - -685.18662 -18.97837 156.59088 - -685.18773 -18.96947 156.59088 - -686.98512 -16.93988 149.43305 - -688.56675 -14.64155 142.36177 - -689.90380 -12.05422 135.37720 - -690.97273 -9.32097 128.47951 - -691.76781 -6.58232 121.66887 - -691.78078 -6.49311 121.66887 - -690.62822 22.76880 112.28105 - -685.43642 51.36863 103.06383 - -676.24335 80.00399 94.01495 - -663.04288 108.47680 85.13214 - -645.89789 136.34875 76.41312 - -645.88563 136.43270 76.41312 - -624.85247 163.94808 67.85478 - -600.00241 190.98664 59.45080 - -571.39390 217.64610 51.19412 - -539.07771 243.95824 43.07768 - -503.14676 268.95975 35.09443 - -503.23188 269.85878 35.09443 - -463.83053 292.59364 27.23636 - -421.42161 312.84385 19.49283 - -376.35156 330.58048 11.85277 - -329.14634 342.16145 4.30516 - -281.10560 341.75839 -3.16105 - -280.90185 341.75355 -3.16105 - -233.80900 329.40258 -10.55810 - -189.11533 307.49021 -17.89758 - -148.00732 279.24420 -25.18955 - -111.06709 247.99517 -32.44406 - -78.70050 213.92115 -39.67118 - -78.80105 213.34501 -39.67118 - -51.49100 176.33600 -46.88036 - -29.55824 136.51401 -54.07699 - -13.40002 93.84312 -61.26499 - -3.41503 48.32521 -68.44831 - 0.00004 0.00021 -75.63087 + 0.00000 0.00000 1435.23736 + 0.00000 0.00000 1425.74977 + 0.00000 0.00000 1416.26218 + 0.00000 0.00000 1406.77460 + 0.00000 0.00000 1397.28701 + 0.00000 0.00000 1387.79942 + 0.00000 0.00000 1387.79942 + 0.00000 0.00000 1378.31183 + 0.00000 0.00000 1368.82425 + 0.00000 0.00000 1359.33666 + 0.00000 0.00000 1349.84907 + 0.00000 0.00000 1340.36149 + 0.00000 0.00000 1340.36149 + 0.00000 -0.00049 1339.24530 + -0.00001 -0.00196 1338.12911 + -0.00004 -0.00442 1337.01293 + -0.00010 -0.00785 1335.89674 + -0.00020 -0.01226 1334.78055 + -0.00020 -0.01226 1334.78055 + -0.00803 -0.14175 1321.38631 + -0.03988 -0.41251 1307.99206 + -0.11269 -0.82453 1294.59783 + -0.24341 -1.37781 1281.20363 + -0.44901 -2.07236 1267.80947 + -0.44901 -2.07236 1267.80947 + -0.68977 -2.75906 1256.64772 + -1.00409 -3.54386 1245.48606 + -1.40181 -4.42676 1234.32453 + -1.89272 -5.40776 1223.16319 + -2.48663 -6.48686 1212.00209 + -2.48663 -6.48686 1212.00209 + -3.19336 -7.66406 1200.84128 + -4.02271 -8.93936 1189.68087 + -4.98450 -10.31276 1178.52099 + -6.08854 -11.78426 1167.36175 + -7.34462 -13.35386 1156.20327 + -7.34462 -13.35386 1156.20327 + -8.55395 -14.78218 1146.60770 + -9.88924 -16.28305 1137.01293 + -11.35672 -17.85648 1127.41908 + -12.96263 -19.50246 1117.82631 + -14.71322 -21.22099 1108.23474 + -14.71322 -21.22099 1108.23474 + -17.26743 -23.61088 1095.52244 + -20.10135 -26.12827 1082.81296 + -23.22952 -28.77314 1070.10682 + -26.66647 -31.54551 1057.40453 + -30.42674 -34.44536 1044.70659 + -30.42674 -34.44536 1044.70659 + -30.82111 -34.74236 1043.43706 + -31.21887 -35.04063 1042.16758 + -31.62004 -35.34018 1040.89815 + -32.02463 -35.64100 1039.62877 + -32.43266 -35.94310 1038.35944 + -32.43266 -35.94310 1038.35944 + -33.83924 -36.92159 1034.06194 + -35.28181 -37.80707 1029.76508 + -36.75675 -38.59949 1025.46888 + -38.26049 -39.29887 1021.17336 + -39.78960 -39.91866 1016.87857 + -39.78960 -39.91866 1016.87857 + -40.99342 -40.33176 1013.54116 + -42.20920 -40.71411 1010.20422 + -43.43592 -41.06130 1006.86776 + -44.67253 -41.37333 1003.53178 + -45.91801 -41.65460 1000.19632 + -45.91801 -41.65459 1000.19632 + -46.75275 -41.81769 997.97296 + -47.59063 -41.96712 995.74984 + -48.43133 -42.10092 993.52696 + -49.27456 -42.21909 991.30433 + -50.12001 -42.32360 989.08194 + -50.12001 -42.32360 989.08194 + -54.43295 -43.93735 977.97386 + -58.90787 -45.56290 966.87264 + -63.54584 -47.19761 955.77886 + -68.34758 -48.83801 944.69310 + -73.31354 -50.48153 933.61595 + -73.31354 -50.48153 933.61595 + -78.44397 -52.12707 922.54801 + -83.73896 -53.77278 911.48995 + -89.19850 -55.41791 900.44246 + -94.82250 -57.06169 889.40623 + -100.61079 -58.70383 878.38194 + -100.61079 -58.70383 878.38194 + -106.56314 -60.34291 867.37029 + -112.67929 -61.97945 856.37207 + -118.95893 -63.61280 845.38807 + -125.40173 -65.24267 834.41907 + -132.00735 -66.86931 823.46586 + -132.00735 -66.86931 823.46586 + -141.52795 -69.13826 808.15943 + -151.36573 -71.39997 792.88795 + -161.51954 -73.65307 777.65390 + -171.98817 -75.89720 762.45981 + -182.77038 -78.13327 747.30818 + -182.77038 -78.13327 747.30818 + -192.94649 -78.41533 733.27911 + -203.15911 -78.71462 719.29111 + -213.41560 -79.09013 705.34637 + -223.76112 -80.35574 691.44709 + -234.33644 -82.27571 677.59545 + -234.33644 -82.27571 677.59545 + -245.13568 -83.80048 663.79368 + -256.10744 -84.93005 650.04409 + -267.20037 -85.66442 636.34906 + -278.36307 -86.00359 622.71093 + -289.54417 -85.94756 609.13205 + -289.54417 -85.94756 609.13205 + -302.37153 -85.65589 593.59269 + -315.15528 -85.36421 578.13847 + -327.89543 -85.07254 562.77297 + -340.61252 -85.19316 547.49979 + -353.39696 -85.89127 532.32251 + -353.39696 -85.89127 532.32251 + -366.30623 -86.81683 517.24472 + -379.35830 -87.80466 502.27006 + -392.56352 -88.86667 487.40225 + -405.93398 -90.02000 472.64501 + -419.48343 -91.25222 458.00207 + -419.48343 -91.25222 458.00207 + -433.22362 -92.57176 443.47717 + -447.16543 -93.95241 429.07424 + -461.31887 -95.40291 414.79727 + -475.69438 -96.92326 400.65024 + -490.30197 -98.50474 386.63715 + -490.30197 -98.50474 386.63715 + -505.15252 -100.17355 372.76207 + -520.25692 -101.90365 359.02924 + -535.53700 -101.93389 345.44292 + -550.59351 -99.12185 332.00734 + -565.11061 -95.02892 318.72675 + -565.11061 -95.02885 318.72675 + -565.30061 -94.97017 318.55016 + -565.49049 -94.91142 318.37359 + -565.68025 -94.85258 318.19705 + -565.86990 -94.79366 318.02054 + -566.05943 -94.73467 317.84405 + -566.05942 -94.68990 317.84405 + -569.63646 -93.57344 314.47077 + -573.17087 -92.44610 311.14583 + -576.66220 -91.30635 307.84409 + -580.10999 -90.15417 304.54040 + -583.51378 -88.99111 301.20960 + -583.51378 -88.94581 301.20960 + -593.96172 -85.17098 290.83991 + -603.95048 -81.28760 280.57798 + -613.46578 -77.28013 270.42552 + -622.49274 -73.14855 260.38428 + -631.01709 -68.90843 250.45596 + -631.01709 -68.90843 250.45596 + -635.08637 -66.73025 245.53467 + -639.02418 -64.52493 240.64217 + -642.82874 -62.28861 235.77866 + -646.49819 -60.02128 230.94429 + -650.03075 -57.72682 226.13924 + -650.03075 -57.72682 226.13924 + -655.12259 -54.17289 218.90792 + -659.88832 -50.55653 211.74495 + -664.32172 -46.86882 204.65079 + -668.41629 -43.10976 197.62590 + -672.16580 -39.28825 190.67074 + -672.16580 -39.28825 190.67074 + -675.56350 -35.37754 183.78574 + -678.60262 -31.40438 176.97123 + -681.27693 -27.35986 170.22747 + -683.57995 -23.24397 163.55475 + -685.50544 -19.06563 156.95335 + -685.50655 -19.05671 156.95335 + -687.31267 -17.02712 149.78158 + -688.90302 -14.72879 142.69640 + -690.24871 -12.13900 135.69798 + -691.32588 -9.40091 128.78648 + -692.12872 -6.65764 121.96208 + -692.14172 -6.56825 121.96208 + -690.99968 22.69366 112.55506 + -685.81839 51.29349 103.31874 + -676.63525 79.94156 94.25085 + -663.44179 108.43875 85.34913 + -646.30053 136.33305 76.61130 + -646.28825 136.41719 76.61130 + -625.25582 163.95291 68.03425 + -600.40378 191.00979 59.61165 + -571.79086 217.68558 51.33645 + -539.46812 244.01205 43.20159 + -503.52814 269.03885 35.20002 + -503.61346 269.94000 35.20002 + -464.19829 292.70887 27.32373 + -421.77123 312.98668 19.56206 + -376.67850 330.76857 11.90396 + -329.44286 342.40409 4.33838 + -281.36569 342.03238 -3.14573 + -281.16145 342.02754 -3.14573 + -234.02939 329.68484 -10.56062 + -189.29697 307.75773 -17.91788 + -148.15304 279.49191 -25.22758 + -111.17922 248.22636 -32.49978 + -78.78178 214.12958 -39.74457 + -78.88258 213.55205 -39.74457 + -51.54549 176.51406 -46.97140 + -29.59020 136.65687 -54.18566 + -13.41481 93.94458 -61.39130 + -3.41887 48.37905 -68.59224 + 0.00004 0.00021 -75.79242 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -55252,7 +55388,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -55264,7 +55400,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -55281,18 +55417,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -55324,13 +55460,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -55472,7 +55608,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 402 100 P 12.02358 6.37650 12.02358 4.45953 402 100 P 12.00402 7.35750 12.00402 4.48227 402 100 P - 11.99626 7.35750 11.99626 4.53344 402 100 P + 11.99626 7.35750 11.99626 4.49744 402 100 P 11.99100 8.33850 11.99100 4.52018 402 100 P 11.99268 9.31950 11.99268 4.55051 402 100 P 12.00279 10.30050 12.00279 4.58084 402 100 P @@ -55484,7 +55620,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 402 100 P 12.16836 16.18650 12.16836 4.76281 402 100 P 12.19689 17.16750 12.19689 4.78556 402 100 P - 12.22063 17.16750 12.22063 6.53447 402 100 P + 12.22063 17.16750 12.22063 4.80376 402 100 P 12.26382 18.54090 12.26382 4.83560 402 100 P 12.32401 19.91430 12.32401 4.87806 402 100 P 12.38688 21.28770 12.38688 4.92053 402 100 P @@ -55512,17 +55648,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 402 0 P 0.00000 72.45367 0.00000 0.00000 402 0 P 0.00000 73.92026 0.00000 0.00000 402 0 P - 0.58341 75.38686 0.58341 0.05935 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 78.32005 0.00000 0.00000 402 100 P - 0.00000 79.78664 0.00000 0.00000 402 100 P - 0.00000 81.25324 0.00000 0.00000 402 100 P - 0.00000 82.71983 0.00000 0.00000 402 100 P + 0.00000 75.38686 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 78.32005 0.00000 0.00000 402 0 P + 0.00000 79.78664 0.00000 0.00000 402 0 P + 0.00000 81.25324 0.00000 0.00000 402 0 P + 0.00000 82.71983 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 85.65302 0.00000 0.00000 402 0 P - 0.00000 87.11961 0.00000 0.00000 402 100 P + 0.00000 87.11961 0.00000 0.00000 402 0 P 23.67856 88.58621 23.67856 6.84433 402 100 P 38.96179 90.05281 38.96179 7.59822 402 100 P 41.63516 91.51940 41.63516 8.16363 402 100 P @@ -55544,13 +55680,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 402 100 P 49.22299 98.19020 49.22299 12.53839 402 100 P 50.24884 99.36740 50.24884 12.89776 402 100 P - 50.76181 99.36740 50.76181 11.01914 402 100 P + 50.76181 99.36740 50.76181 13.07745 402 100 P 51.27482 99.95600 51.27482 13.25714 402 100 P 51.95886 100.54460 51.95886 13.49673 402 100 P 52.64294 101.13320 52.64294 13.73631 402 100 P 53.32706 101.72180 53.32706 13.97589 402 100 P 53.84017 102.31040 53.84017 14.15558 402 100 P - 54.27062 102.31040 54.27062 32.00225 402 100 P + 54.27062 102.31040 54.27062 14.30632 402 100 P 55.04889 103.20311 55.04889 14.57885 402 100 P 56.08662 104.09582 56.08662 14.94222 402 100 P 57.12440 104.98853 57.12440 15.30559 402 100 P @@ -55565,26 +55701,26 @@ Status character 45.47794 111.23750 45.47794 19.35669 402 100 P 49.30396 109.21850 49.30396 21.21667 402 100 P 54.39837 107.19950 54.39837 23.69665 402 100 P - 59.13560 105.18050 59.48446 26.17662 330 99 3 - 61.36914 103.16150 64.56233 28.65660 330 95 3 - 62.78936 101.14250 68.36569 30.51658 330 92 3 + 59.18495 105.18050 59.48446 26.17662 330 99 3 + 61.41636 103.16150 64.56233 28.65660 330 95 3 + 62.83447 101.14250 68.36569 30.51658 330 92 3 230.63240 101.14250 230.63240 21.42815 402 100 P 222.85744 102.51590 222.85744 21.99572 402 100 P 221.96585 103.88930 221.96585 22.75248 402 100 P - 224.18201 105.26270 224.85557 23.50924 330 99 3 - 220.37459 106.63610 229.29925 24.26600 330 96 3 - 216.29311 108.00950 233.16649 24.83357 330 93 3 - 218.16740 108.00950 235.93061 25.21195 330 92 3 - 214.52514 109.38290 240.27129 25.77952 330 89 3 - 212.13985 110.75630 246.29566 26.53628 330 86 3 - 210.00351 112.12970 252.52350 27.29304 330 83 3 - 208.07054 113.50310 258.89457 28.04980 330 80 3 - 192.05992 114.87650 263.74034 28.61737 220 73 2 - 193.34828 114.87650 266.99955 28.99575 220 72 2 - 175.51100 116.24990 271.92333 29.56332 220 65 2 - 158.62792 117.62330 278.53639 30.32008 220 57 2 - 140.48705 118.99670 285.19596 31.07684 110 49 1 - 71.57355 120.37010 291.89239 31.83360 110 25 1 + 224.36347 105.26270 224.85557 23.50924 330 99 3 + 220.54151 106.63610 229.29925 24.26600 330 96 3 + 216.44556 108.00950 233.16649 24.83357 330 93 3 + 218.31984 108.00950 235.93061 25.21195 330 93 3 + 214.66319 109.38290 240.27129 25.77952 330 89 3 + 212.26358 110.75630 246.29566 26.53628 330 86 3 + 210.11299 112.12970 252.52350 27.29304 330 83 3 + 208.16586 113.50310 258.89457 28.04980 330 80 3 + 192.32576 114.87650 263.74034 28.61737 220 73 2 + 193.61412 114.87650 266.99955 28.99575 220 73 2 + 175.73095 116.24990 271.92333 29.56332 220 65 2 + 158.80221 117.62330 278.53639 30.32008 220 57 2 + 140.95952 118.99670 285.19596 31.07684 110 49 1 + 71.88014 120.37010 291.89239 31.83360 110 25 1 18.60613 121.74350 296.93368 32.40116 1 0 A 18.82462 121.74350 300.30316 32.77954 1 0 A 19.15229 123.11690 305.36851 33.34711 1 0 A @@ -55615,10 +55751,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' + -7.00 12.903 'Wadzand' -10.00 105.974 'Hydrobiaklei' - -12.00 27.834 'Basisveen' - -12.50 423.340 'Eerste zandlaag' + -12.00 27.846 'Basisveen' + -12.50 423.677 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -55638,10 +55774,10 @@ Layer name -3.00 1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 1.71 'Oude Zeeklei' - -7.00 3.35 'Wadzand' + -7.00 3.33 'Wadzand' -10.00 19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 140.64 'Eerste zandlaag' + -12.50 140.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -55944,7 +56080,7 @@ Lambda passive -6.74000 11.10450 36.00989 0.00000 0.72885 0.00000 3.24282 -6.87000 12.43389 38.79470 0.00000 0.72980 0.00000 3.12008 -7.00000 13.76322 40.88301 0.00000 0.73059 0.00000 3.04395 - -7.00000 13.76322 44.37549 0.00000 0.62341 0.00000 3.15583 + -7.00000 13.76322 44.37549 0.00000 0.62080 0.00000 3.15583 -7.14950 14.95606 46.72876 0.00000 0.62136 0.00000 3.12440 -7.29900 16.14883 50.03381 0.00000 0.62186 0.00000 3.09829 -7.44850 17.34153 53.43947 0.00000 0.62232 0.00000 3.08159 @@ -55956,7 +56092,7 @@ Lambda passive -8.19600 23.30431 71.19588 9.31303 0.62416 0.39963 3.05505 -8.34550 24.49678 75.55610 10.01810 0.62446 0.40896 3.08433 -8.49500 25.68924 78.67755 10.36850 0.62474 0.40835 3.09862 - -8.49500 25.68924 80.49425 10.60211 0.69196 0.40797 3.09744 + -8.49500 25.68924 80.49425 10.60211 0.62474 0.40797 3.09744 -8.64450 26.88169 83.23607 10.95252 0.62500 0.40743 3.09639 -8.79400 28.07413 86.89685 11.41974 0.62525 0.40677 3.09526 -8.94350 29.26658 90.56117 11.88697 0.62549 0.40616 3.09435 @@ -55986,7 +56122,7 @@ Lambda passive -10.55000 40.65134 99.41690 15.89365 0.73710 0.39097 2.44560 -10.67000 41.29667 100.73452 16.22710 0.73719 0.39294 2.43929 -10.79000 41.94202 101.72457 16.47803 0.73727 0.39439 2.43473 - -10.79000 41.94202 102.22021 16.60350 0.62643 0.39511 2.43250 + -10.79000 41.94202 102.22021 16.60350 0.73727 0.39511 2.43250 -10.85000 42.26470 102.71627 16.72897 0.73731 0.39581 2.43031 -10.91000 42.58739 103.37821 16.89626 0.73735 0.39674 2.42744 -10.97000 42.91008 104.04078 17.06353 0.73739 0.39766 2.42462 @@ -56016,13 +56152,13 @@ Lambda passive -12.92000 68.66611 343.68930 20.67061 0.52836 0.30103 5.00522 -13.06000 70.09142 348.44322 21.03356 0.52842 0.30009 4.97127 -13.20000 71.51677 352.37096 21.36553 0.52848 0.30024 4.95178 - -13.20000 71.51677 355.12958 21.59051 0.49983 0.30040 4.94106 + -13.20000 71.51677 355.12958 21.59051 0.52848 0.30040 4.94106 -13.34000 72.94213 359.43653 21.92717 0.52853 0.30061 4.92769 -13.48000 74.36752 365.39426 22.37468 0.52859 0.30087 4.91336 -13.62000 75.79293 371.53915 22.82127 0.52864 0.30110 4.90203 -13.76000 77.21836 377.78371 23.26707 0.52869 0.30132 4.89241 -13.90000 78.64381 382.45053 23.60087 0.52874 0.30146 4.88521 - -13.90000 78.64381 385.58770 23.82263 0.75232 0.30155 4.88085 + -13.90000 78.64381 385.58770 23.82263 0.52874 0.30155 4.88085 -14.04000 80.06929 390.33231 24.15485 0.52878 0.30167 4.87493 -14.18000 81.49478 396.71320 24.59734 0.52883 0.30183 4.86796 -14.32000 82.92030 403.14850 25.03929 0.52887 0.30197 4.86188 @@ -56164,7 +56300,7 @@ Status character 0.00000 58.68590 36.00989 8.09347 1 0 A 0.00000 59.46120 38.79470 9.07423 1 0 A 0.00000 60.23650 40.88301 9.81254 1 0 A - 0.00000 60.23650 44.37549 8.76606 1 0 A + 0.00000 60.23650 44.37549 8.72934 1 0 A 0.00000 61.70309 46.72876 9.29308 1 0 A 0.00000 63.16969 50.03381 10.04236 1 0 A 0.00000 64.63629 53.43947 10.79204 1 0 A @@ -56176,7 +56312,7 @@ Status character 9.31303 71.96926 71.19588 14.54558 1 0 A 10.01810 73.43586 75.55610 15.29717 1 0 A 10.36850 74.90245 78.67755 15.86277 1 0 A - 10.60211 74.90245 80.49425 17.98218 1 0 A + 10.60211 74.90245 80.49425 16.23525 1 0 A 10.95252 76.36905 83.23607 16.80109 1 0 A 11.41974 77.83564 86.89685 17.55337 1 0 A 11.88697 79.30224 90.56117 18.30586 1 0 A @@ -56206,7 +56342,7 @@ Status character 15.89365 95.06200 99.41690 29.96429 1 0 A 16.22710 96.23920 100.73452 30.44347 1 0 A 16.47803 97.41640 101.72457 30.80374 1 0 A - 16.60350 97.41640 102.22021 26.32409 1 0 A + 16.60350 97.41640 102.22021 30.98217 1 0 A 16.72897 98.00500 102.71627 31.16232 1 0 A 16.89626 98.59360 103.37821 31.40195 1 0 A 17.06353 99.18220 104.04078 31.64160 1 0 A @@ -56236,30 +56372,30 @@ Status character 20.67061 103.31170 343.68930 36.28041 1 0 A 21.03356 104.68510 348.44322 37.03771 1 0 A 21.36553 106.05850 352.37096 37.60672 1 0 A - 21.59051 106.05850 355.12958 35.92425 1 0 A + 21.59051 106.05850 355.12958 37.98335 1 0 A 21.92717 107.43190 359.43653 38.55236 1 0 A 22.37468 108.80530 365.39426 39.30970 1 0 A 22.82127 110.17870 371.53915 40.06704 1 0 A 23.26707 111.55210 377.78371 40.82439 1 0 A 23.60087 112.92550 382.45053 41.39333 1 0 A - 23.82263 112.92550 385.58770 59.43341 1 0 A + 23.82263 112.92550 385.58770 41.77017 1 0 A 24.15485 114.29890 390.33231 42.33911 1 0 A 24.59734 115.67230 396.71320 43.09648 1 0 A 25.03929 117.04570 403.14850 43.85385 1 0 A 25.48076 118.41910 409.61450 44.61123 1 0 A - 74.35900 119.79250 414.47965 45.18009 110 18 1 - 74.73603 119.79250 417.73399 45.55712 110 18 1 - 143.58538 121.16590 422.62984 46.12598 110 34 1 - 212.09181 122.53930 429.23019 46.88336 110 49 1 - 234.93940 123.91270 435.96362 47.64074 220 54 2 - 255.86535 125.28610 442.71840 48.39812 220 58 2 - 276.06030 126.65950 447.79404 48.96692 220 62 2 - 277.39529 126.65950 451.18238 49.34409 220 61 2 - 297.54982 128.03290 456.27102 49.91289 220 65 2 - 318.34435 129.40630 463.06514 50.67027 220 69 2 - 339.12077 130.77970 469.86914 51.42765 220 72 2 - 359.88854 132.15310 476.68180 52.18503 220 75 2 - 379.98537 133.52650 481.79615 52.75376 220 79 2 + 74.21762 119.79250 414.47965 45.18009 110 18 1 + 74.59464 119.79250 417.73399 45.55712 110 18 1 + 143.60860 121.16590 422.62984 46.12598 110 34 1 + 212.27914 122.53930 429.23019 46.88336 110 49 1 + 235.03514 123.91270 435.96362 47.64074 220 54 2 + 256.00564 125.28610 442.71840 48.39812 220 58 2 + 276.24507 126.65950 447.79404 48.96692 220 62 2 + 277.58006 126.65950 451.18238 49.34409 220 62 2 + 297.77902 128.03290 456.27102 49.91289 220 65 2 + 318.61795 129.40630 463.06514 50.67027 220 69 2 + 339.43875 130.77970 469.86914 51.42765 220 72 2 + 360.25087 132.15310 476.68180 52.18503 220 76 2 + 380.39207 133.52650 481.79615 52.75376 220 79 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -56279,7 +56415,7 @@ Layer name -7.00 27.544 'Wadzand' -10.00 34.297 'Hydrobiaklei' -12.00 16.422 'Basisveen' - -12.50 424.077 'Eerste zandlaag' + -12.50 424.340 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -56301,7 +56437,7 @@ Layer name -7.00 -7.10 'Wadzand' -10.00 -6.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -140.89 'Eerste zandlaag' + -12.50 -140.98 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -56566,32 +56702,32 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 44.71 : Percentage mobilized resistance left - 40.99 : Percentage mobilized resistance right - 351.86 : Effective left - 485.98 : Effective right + 44.74 : Percentage mobilized resistance left + 41.01 : Percentage mobilized resistance right + 352.09 : Effective left + 486.22 : Effective right 1120.54 : Water pressure left 986.23 : Water pressure right 786.97 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -9369.37 : Max moment left --13318.95 : Max moment right --4465.80 : Max mobilized moment left --4654.92 : Max mobilized moment right - 116.00 : Vertical force left - 125.86 : Vertical force right +-13318.44 : Max moment right +-4468.76 : Max mobilized moment left +-4657.93 : Max mobilized moment right + 116.08 : Vertical force left + 125.94 : Vertical force right 47.7 : Max mobilized moment percentage left - 34.9 : Max mobilized moment percentage right + 35.0 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --125.86 : Active force -116.00 : Passive force --125.86 : Plugged active force -116.00 : Plugged passive force +-125.94 : Active force +116.08 : Passive force +-125.94 : Plugged active force +116.08 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -56611,210 +56747,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1147.46151 - 0.00000 0.00000 1139.52273 - 0.00000 0.00000 1131.58395 - 0.00000 0.00000 1123.64517 - 0.00000 0.00000 1115.70639 - 0.00000 0.00000 1107.76762 - 0.00000 0.00000 1107.76762 - 0.00000 0.00000 1099.82884 - 0.00000 0.00000 1091.89006 - 0.00000 0.00000 1083.95128 - 0.00000 0.00000 1076.01250 - 0.00000 0.00000 1068.07372 - 0.00000 0.00000 1068.07372 - 0.00000 -0.00049 1067.13975 - -0.00001 -0.00196 1066.20577 - -0.00004 -0.00441 1065.27180 - -0.00010 -0.00785 1064.33783 - -0.00020 -0.01226 1063.40385 - -0.00020 -0.01226 1063.40385 - -0.00803 -0.14175 1052.19616 - -0.03988 -0.41251 1040.98847 - -0.11269 -0.82453 1029.78079 - -0.24341 -1.37781 1018.57314 - -0.44901 -2.07236 1007.36553 - -0.44901 -2.07236 1007.36553 - -0.68977 -2.75906 998.02591 - -1.00409 -3.54386 988.68637 - -1.40181 -4.42676 979.34697 - -1.89272 -5.40776 970.00776 - -2.48663 -6.48686 960.66879 - -2.48663 -6.48686 960.66879 - -3.19336 -7.66406 951.33011 - -4.02271 -8.93936 941.99183 - -4.98450 -10.31276 932.65407 - -6.08854 -11.78426 923.31696 - -7.34462 -13.35386 913.98061 - -7.34462 -13.35386 913.98061 - -8.55395 -14.78218 905.95207 - -9.88924 -16.28305 897.92432 - -11.35672 -17.85648 889.89751 - -12.96263 -19.50246 881.87177 - -14.71322 -21.22099 873.84723 - -14.71322 -21.22099 873.84723 - -17.26743 -23.61088 863.21216 - -20.10135 -26.12827 852.57990 - -23.22952 -28.77314 841.95098 - -26.66647 -31.54551 831.32591 - -30.42674 -34.44536 820.70521 - -30.42674 -34.44538 820.70521 - -30.82111 -34.74238 819.64340 - -31.21887 -35.04065 818.58164 - -31.62004 -35.34020 817.51993 - -32.02463 -35.64102 816.45827 - -32.43266 -35.94312 815.39667 - -32.43261 -35.94428 815.39667 - -33.83924 -36.92278 811.80251 - -35.28185 -37.80825 808.20899 - -36.75684 -38.60068 804.61613 - -38.26062 -39.30005 801.02396 - -39.78978 -39.91984 797.43250 - -39.78983 -39.92090 797.43250 - -40.99372 -40.33400 794.64173 - -42.20956 -40.71635 791.85143 - -43.43635 -41.06354 789.06160 - -44.67302 -41.37557 786.27227 - -45.91858 -41.65684 783.48344 - -45.91858 -41.65681 783.48344 - -46.75336 -41.81991 781.62451 - -47.59128 -41.96933 779.76582 - -48.43203 -42.10313 777.90736 - -49.27530 -42.22131 776.04915 - -50.12079 -42.32581 774.19119 - -50.12111 -42.32242 774.19119 - -54.43393 -43.93617 764.90524 - -58.90873 -45.56172 755.62615 - -63.54658 -47.19643 746.35449 - -68.34821 -48.83683 737.09086 - -73.31405 -50.48035 727.83584 - -73.31392 -50.47931 727.83584 - -78.44413 -52.12485 718.59003 - -83.73890 -53.77056 709.35410 - -89.19822 -55.41569 700.12874 - -94.82199 -57.05947 690.91463 - -100.61006 -58.70161 681.71247 - -100.61006 -58.70146 681.71247 - -106.56217 -60.34054 672.52295 - -112.67808 -61.97708 663.34686 - -118.95748 -63.61043 654.18498 - -125.40005 -65.24030 645.03811 - -132.00544 -66.86694 635.90703 - -132.00545 -66.86667 635.90703 - -141.52568 -69.13561 623.15158 - -151.36309 -71.39733 610.43107 - -161.51653 -73.65042 597.74801 - -171.98479 -75.89456 585.10489 - -182.76663 -78.13063 572.50424 - -182.76667 -78.12987 572.50424 - -192.94375 -78.44443 560.84392 - -203.16579 -78.84122 549.22468 - -213.44859 -79.37923 537.64870 - -223.84578 -80.87234 526.11819 - -234.50657 -83.08481 514.63535 - -234.50651 -83.08424 514.63535 - -245.43339 -84.96651 503.20239 - -256.58349 -86.51858 491.82169 - -267.91391 -87.74045 480.49565 - -279.38170 -88.63212 469.22667 - -290.94395 -89.19359 458.01717 - -290.94395 -89.19359 458.01717 - -304.31247 -89.64942 445.20294 - -317.74913 -90.10524 432.47439 - -331.25393 -90.56107 419.83532 - -344.82689 -91.01689 407.28953 - -358.46798 -91.47272 394.84084 - -358.46798 -91.47272 394.84084 - -372.17723 -91.92854 382.49305 - -385.95462 -92.38437 370.25005 - -399.80015 -92.84019 358.11573 - -413.71166 -93.25241 346.09400 - -427.68263 -93.66463 334.18876 - -427.68319 -93.66182 334.18876 - -441.71971 -94.11765 322.40390 - -455.82437 -94.57347 310.74342 - -469.99718 -95.02930 299.21130 - -484.23813 -95.48512 287.81153 - -498.54723 -95.94095 276.54810 - -498.54625 -95.93446 276.54810 - -512.92252 -96.39029 265.42505 - -527.36694 -96.84611 254.44646 - -541.79131 -95.53197 243.61633 - -555.78587 -91.30543 232.93864 - -569.02474 -85.73663 222.41742 - -569.02475 -85.73677 222.41742 - -569.19615 -85.65775 222.27774 - -569.36738 -85.57865 222.13810 - -569.53846 -85.49945 221.99848 - -569.70938 -85.42016 221.85889 - -569.88014 -85.34078 221.71933 - -569.88014 -85.28174 221.71933 - -573.09286 -83.80681 219.05296 - -576.24928 -82.31751 216.42702 - -579.34879 -80.81178 213.82167 - -582.39077 -79.28962 211.21708 - -585.37462 -77.75307 208.59341 - -585.37575 -77.68311 208.59341 - -594.39972 -72.69594 200.44014 - -602.81703 -67.56525 192.39471 - -610.60882 -62.27052 184.45853 - -617.75540 -56.81170 176.63302 - -624.23789 -51.20927 168.91957 - -624.23757 -51.20196 168.91957 - -627.22350 -48.32380 165.10529 - -630.03571 -45.40973 161.31945 - -632.67185 -42.45462 157.56217 - -635.12944 -39.45846 153.83358 - -637.40614 -36.42638 150.13380 - -637.40610 -36.42671 150.13380 - -640.48708 -31.27513 144.57770 - -643.09567 -26.04092 139.08843 - -645.22366 -20.71228 133.66619 - -646.86244 -15.28920 128.31122 - -648.00379 -9.78348 123.02373 - -648.00384 -9.78386 123.02373 - -648.63883 -4.16008 117.80391 - -648.75847 1.54633 112.65176 - -648.35453 7.34719 107.56725 - -647.41842 13.24250 102.55031 - -645.94196 19.21795 97.60092 - -645.94146 19.23001 97.60092 - -643.78410 23.94346 92.23981 - -641.14620 28.85403 86.95981 - -638.02030 33.55444 81.76052 - -634.44547 37.95017 76.64155 - -630.42920 42.37790 71.60252 - -630.43138 42.39341 71.60252 - -622.52344 70.32486 64.68179 - -610.79601 97.06511 57.91483 - -595.37710 123.12199 51.29786 - -576.34136 148.76078 44.82707 - -553.74041 174.04950 38.49867 - -553.75833 174.30428 38.49867 - -527.62509 198.71975 32.30801 - -498.20352 221.27690 26.24767 - -465.75353 241.99188 20.30967 - -430.52937 260.91580 14.48602 - -392.82982 276.99578 8.76877 - -392.74011 277.64595 8.76877 - -353.04891 288.16289 3.14884 - -312.46376 289.90994 -2.38404 - -272.28020 282.95540 -7.83965 - -233.48399 270.69220 -13.22777 - -196.61763 255.61649 -18.55818 - -196.70388 254.93837 -18.55818 - -162.20536 237.55790 -23.84064 - -130.28584 218.07365 -29.08314 - -101.24572 196.42551 -34.29281 - -75.38720 172.62378 -39.47677 - -52.99556 147.01134 -44.64215 - -53.00769 146.80540 -44.64215 - -34.34332 119.66202 -49.79555 - -19.55237 91.44620 -54.94057 - -8.79184 62.08475 -60.07984 - -2.22209 31.57806 -65.21600 - 0.00002 0.00010 -70.35168 + 0.00000 0.00000 1149.50465 + 0.00000 0.00000 1141.55388 + 0.00000 0.00000 1133.60312 + 0.00000 0.00000 1125.65235 + 0.00000 0.00000 1117.70159 + 0.00000 0.00000 1109.75082 + 0.00000 0.00000 1109.75082 + 0.00000 0.00000 1101.80006 + 0.00000 0.00000 1093.84930 + 0.00000 0.00000 1085.89853 + 0.00000 0.00000 1077.94777 + 0.00000 0.00000 1069.99700 + 0.00000 0.00000 1069.99700 + 0.00000 -0.00049 1069.06162 + -0.00001 -0.00196 1068.12624 + -0.00004 -0.00442 1067.19085 + -0.00010 -0.00785 1066.25547 + -0.00020 -0.01227 1065.32008 + -0.00020 -0.01226 1065.32008 + -0.00803 -0.14175 1054.09547 + -0.03988 -0.41251 1042.87086 + -0.11269 -0.82453 1031.64626 + -0.24341 -1.37781 1020.42169 + -0.44901 -2.07236 1009.19716 + -0.44901 -2.07236 1009.19716 + -0.68977 -2.75906 999.84344 + -1.00409 -3.54386 990.48980 + -1.40181 -4.42676 981.13630 + -1.89272 -5.40776 971.78299 + -2.48663 -6.48686 962.42991 + -2.48663 -6.48686 962.42991 + -3.19336 -7.66406 953.07713 + -4.02271 -8.93936 943.72475 + -4.98450 -10.31276 934.37289 + -6.08854 -11.78426 925.02168 + -7.34462 -13.35386 915.67123 + -7.34462 -13.35386 915.67123 + -8.55395 -14.78218 907.63056 + -9.88924 -16.28305 899.59069 + -11.35672 -17.85648 891.55175 + -12.96263 -19.50246 883.51388 + -14.71322 -21.22099 875.47722 + -14.71322 -21.22099 875.47722 + -17.26743 -23.61088 864.82607 + -20.10135 -26.12827 854.17774 + -23.22952 -28.77314 843.53275 + -26.66647 -31.54551 832.89160 + -30.42674 -34.44536 822.25482 + -30.42674 -34.44538 822.25482 + -30.82111 -34.74238 821.19140 + -31.21887 -35.04065 820.12804 + -31.62004 -35.34020 819.06472 + -32.02463 -35.64102 818.00146 + -32.43266 -35.94312 816.93824 + -32.43261 -35.94428 816.93824 + -33.83924 -36.92278 813.33864 + -35.28185 -37.80825 809.73968 + -36.75684 -38.60068 806.14137 + -38.26062 -39.30005 802.54376 + -39.78978 -39.91984 798.94687 + -39.78983 -39.92090 798.94687 + -40.99372 -40.33401 796.15187 + -42.20956 -40.71635 793.35733 + -43.43635 -41.06354 790.56327 + -44.67303 -41.37557 787.76971 + -45.91858 -41.65684 784.97665 + -45.91858 -41.65681 784.97665 + -46.75336 -41.81991 783.11490 + -47.59128 -41.96934 781.25339 + -48.43203 -42.10314 779.39211 + -49.27530 -42.22131 777.53108 + -50.12079 -42.32581 775.67030 + -50.12111 -42.32241 775.67030 + -54.43393 -43.93617 766.37025 + -58.90874 -45.56172 757.07706 + -63.54658 -47.19643 747.79130 + -68.34821 -48.83683 738.51357 + -73.31405 -50.48035 729.24445 + -73.31392 -50.47931 729.24445 + -78.44413 -52.12484 719.98454 + -83.73890 -53.77056 710.73451 + -89.19822 -55.41569 701.49504 + -94.82199 -57.05947 692.26684 + -100.61006 -58.70161 683.05057 + -100.61006 -58.70146 683.05057 + -106.56217 -60.34054 673.84696 + -112.67808 -61.97708 664.65676 + -118.95748 -63.61043 655.48079 + -125.40005 -65.24030 646.31981 + -132.00543 -66.86694 637.17463 + -132.00545 -66.86666 637.17463 + -141.52568 -69.13561 624.39944 + -151.36309 -71.39732 611.65919 + -161.51653 -73.65042 598.95638 + -171.98479 -75.89456 586.29353 + -182.76663 -78.13063 573.67313 + -182.76667 -78.12987 573.67313 + -192.94375 -78.44443 561.99448 + -203.16578 -78.84121 550.35691 + -213.44858 -79.37922 538.76261 + -223.84577 -80.87234 527.21377 + -234.50656 -83.08481 515.71259 + -234.50650 -83.08424 515.71259 + -245.43338 -84.96651 504.26130 + -256.58349 -86.51858 492.86227 + -267.91390 -87.74045 481.51790 + -279.38169 -88.63212 470.23059 + -290.94394 -89.19359 459.00276 + -290.94394 -89.19359 459.00276 + -304.31246 -89.64941 446.16744 + -317.74912 -90.10524 433.41781 + -331.25392 -90.56106 420.75766 + -344.82687 -91.01689 408.19080 + -358.46797 -91.47271 395.72102 + -358.46797 -91.47271 395.72102 + -372.17721 -91.92854 383.35215 + -385.95460 -92.38436 371.08807 + -399.80014 -92.84019 358.93267 + -413.71382 -93.29601 346.88986 + -427.69565 -93.75184 334.96354 + -427.69622 -93.74903 334.96354 + -441.74577 -94.20486 323.15761 + -455.86347 -94.66068 311.47606 + -470.04931 -95.11651 299.92288 + -484.30331 -95.57234 288.50206 + -498.62544 -96.02816 277.21761 + -498.62446 -96.02166 277.21761 + -513.01377 -96.47749 266.07356 + -527.47123 -96.93331 255.07400 + -541.90863 -95.61917 244.22291 + -555.91622 -91.39263 233.52431 + -569.16813 -85.82383 222.98221 + -569.16815 -85.82395 222.98221 + -569.33972 -85.74494 222.84226 + -569.51113 -85.66583 222.70233 + -569.68238 -85.58664 222.56244 + -569.85347 -85.50734 222.42257 + -570.02441 -85.42797 222.28273 + -570.02441 -85.36894 222.28273 + -573.24044 -83.89401 219.61102 + -576.40017 -82.40471 216.97980 + -579.50299 -80.89898 214.36920 + -582.54829 -79.37682 211.75934 + -585.53545 -77.84027 209.13033 + -585.53659 -77.77027 209.13033 + -594.57102 -72.78310 200.96039 + -602.99879 -67.65242 192.89831 + -610.80104 -62.35768 184.94551 + -617.95807 -56.89886 177.10341 + -624.45102 -51.29643 169.37342 + -624.45057 -51.29433 169.37342 + -627.44204 -48.41617 165.55088 + -630.25980 -45.50210 161.75679 + -632.90147 -42.54699 157.99128 + -635.36461 -39.55083 154.25446 + -637.64686 -36.51875 150.54646 + -637.64683 -36.51922 150.54646 + -640.73622 -31.36765 144.97792 + -643.35324 -26.13344 139.47623 + -645.48964 -20.80480 134.04160 + -647.13685 -15.38171 128.67427 + -648.28661 -9.87600 123.37445 + -648.28666 -9.87637 123.37445 + -648.93007 -4.25260 118.14233 + -649.05813 1.45382 112.97790 + -648.66261 7.25468 107.88114 + -647.73491 13.14999 102.85200 + -646.26681 19.12782 97.89044 + -646.26630 19.13991 97.89044 + -644.11774 23.85768 92.51598 + -641.48820 28.77239 87.22268 + -638.37027 33.47673 82.01013 + -634.80302 37.87619 76.87795 + -630.79397 42.30744 71.82575 + -630.79618 42.32315 71.82575 + -622.89645 70.27749 64.88667 + -611.17417 97.03863 58.10145 + -595.75761 123.11441 51.46630 + -576.72174 148.77011 44.97744 + -554.11841 174.07377 38.63105 + -554.13636 174.32929 38.63105 + -527.99806 198.77138 32.42250 + -498.56666 221.36463 26.34436 + -466.10222 242.10939 20.38865 + -430.85990 261.05679 14.54738 + -393.13846 277.17280 8.81258 + -393.04847 277.82485 8.81258 + -353.32913 288.38217 3.17519 + -312.71178 290.14696 -2.37509 + -272.49511 283.18766 -7.84803 + -233.66737 270.91126 -13.25343 + -196.77122 255.82207 -18.60108 + -196.85774 255.14172 -18.60108 + -162.32895 237.77492 -23.90074 + -130.38077 218.26510 -29.16041 + -101.31599 196.58536 -34.38722 + -75.43765 172.74602 -39.58831 + -53.03113 147.10616 -44.77080 + -53.04330 146.89950 -44.77080 + -34.36679 119.74096 -49.94131 + -19.56596 91.50815 -55.10343 + -8.79805 62.12788 -60.25980 + -2.22368 31.60054 -65.41305 + 0.00002 0.00010 -70.56583 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -57148,7 +57284,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -57160,7 +57296,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -57177,18 +57313,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -57220,13 +57356,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -57368,7 +57504,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 402 100 P 12.02358 6.37650 12.02358 4.45953 402 100 P 12.00402 7.35750 12.00402 4.48227 402 100 P - 11.99626 7.35750 11.99626 4.53344 402 100 P + 11.99626 7.35750 11.99626 4.49744 402 100 P 11.99100 8.33850 11.99100 4.52018 402 100 P 11.99268 9.31950 11.99268 4.55051 402 100 P 12.00279 10.30050 12.00279 4.58084 402 100 P @@ -57380,7 +57516,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 402 100 P 12.16836 16.18650 12.16836 4.76281 402 100 P 12.19689 17.16750 12.19689 4.78556 402 100 P - 12.22063 17.16750 12.22063 6.53447 402 100 P + 12.22063 17.16750 12.22063 4.80376 402 100 P 12.26382 18.54090 12.26382 4.83560 402 100 P 12.32401 19.91430 12.32401 4.87806 402 100 P 12.38688 21.28770 12.38688 4.92053 402 100 P @@ -57408,17 +57544,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 402 0 P 0.00000 72.45367 0.00000 0.00000 402 0 P 0.00000 73.92026 0.00000 0.00000 402 0 P - 0.58341 75.38686 0.58341 0.05935 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 78.32005 0.00000 0.00000 402 100 P - 0.00000 79.78664 0.00000 0.00000 402 100 P - 0.00000 81.25324 0.00000 0.00000 402 100 P - 0.00000 82.71983 0.00000 0.00000 402 100 P + 0.00000 75.38686 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 78.32005 0.00000 0.00000 402 0 P + 0.00000 79.78664 0.00000 0.00000 402 0 P + 0.00000 81.25324 0.00000 0.00000 402 0 P + 0.00000 82.71983 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 85.65302 0.00000 0.00000 402 0 P - 0.00000 87.11961 0.00000 0.00000 402 100 P + 0.00000 87.11961 0.00000 0.00000 402 0 P 23.67856 88.58621 23.67856 6.84433 402 100 P 38.96179 90.05281 38.96179 7.59822 402 100 P 41.63516 91.51940 41.63516 8.16363 402 100 P @@ -57440,13 +57576,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 402 100 P 49.22299 98.19020 49.22299 12.53839 402 100 P 50.24884 99.36740 50.24884 12.89776 402 100 P - 50.76181 99.36740 50.76181 11.01914 402 100 P + 50.76181 99.36740 50.76181 13.07745 402 100 P 51.27482 99.95600 51.27482 13.25714 402 100 P 51.95886 100.54460 51.95886 13.49673 402 100 P 52.64294 101.13320 52.64294 13.73631 402 100 P 53.32706 101.72180 53.32706 13.97589 402 100 P 53.84017 102.31040 53.84017 14.15558 402 100 P - 54.27062 102.31040 54.27062 32.00225 402 100 P + 54.27062 102.31040 54.27062 14.30632 402 100 P 55.04889 103.20311 55.04889 14.57885 402 100 P 56.08662 104.09582 56.08662 14.94222 402 100 P 57.12440 104.98853 57.12440 15.30559 402 100 P @@ -57457,27 +57593,27 @@ Status character 61.27578 108.55937 61.27578 16.75906 402 100 P 62.31366 109.45208 62.31366 17.12243 402 100 P 63.35155 110.34479 63.35155 17.48580 402 100 P - 64.07500 111.23750 64.12997 17.75833 330 99 3 - 44.39427 111.23750 45.47794 19.35669 330 98 3 - 45.97281 109.21850 49.30396 21.21667 330 93 3 - 48.46100 107.19950 54.39837 23.69665 330 89 3 - 50.95675 105.18050 59.48446 26.17662 330 86 3 - 53.46006 103.16150 64.56233 28.65660 330 83 3 - 55.14910 101.14250 68.36569 30.51658 330 81 3 - 210.93075 101.14250 230.63240 21.42815 330 91 3 - 200.44616 102.51590 222.85744 21.99572 330 90 3 - 194.68597 103.88930 221.96585 22.75248 330 88 3 - 191.56341 105.26270 224.85557 23.50924 330 85 3 - 189.59067 106.63610 229.29925 24.26600 330 83 3 - 187.32876 108.00950 233.16649 24.83357 330 80 3 - 189.20305 108.00950 235.93061 25.21195 330 80 3 - 176.33457 109.38290 240.27129 25.77952 220 73 2 - 163.41993 110.75630 246.29566 26.53628 220 66 2 - 150.89112 112.12970 252.52350 27.29304 220 60 2 - 138.70589 113.50310 258.89457 28.04980 220 54 2 - 111.02657 114.87650 263.74034 28.61737 110 42 1 - 111.40495 114.87650 266.99955 28.99575 110 42 1 - 59.94553 116.24990 271.92333 29.56332 110 22 1 + 64.12736 111.23750 64.12997 17.75833 330 99 3 + 44.43829 111.23750 45.47794 19.35669 330 98 3 + 46.01524 109.21850 49.30396 21.21667 330 93 3 + 48.50134 107.19950 54.39837 23.69665 330 89 3 + 50.99502 105.18050 59.48446 26.17662 330 86 3 + 53.49626 103.16150 64.56233 28.65660 330 83 3 + 55.18324 101.14250 68.36569 30.51658 330 81 3 + 211.10146 101.14250 230.63240 21.42815 330 92 3 + 200.60252 102.51590 222.85744 21.99572 330 90 3 + 194.82804 103.88930 221.96585 22.75248 330 88 3 + 191.69128 105.26270 224.85557 23.50924 330 85 3 + 189.70442 106.63610 229.29925 24.26600 330 83 3 + 187.42847 108.00950 233.16649 24.83357 330 80 3 + 189.30275 108.00950 235.93061 25.21195 330 80 3 + 176.61518 109.38290 240.27129 25.77952 220 74 2 + 163.65515 110.75630 246.29566 26.53628 220 66 2 + 151.08123 112.12970 252.52350 27.29304 220 60 2 + 138.85117 113.50310 258.89457 28.04980 220 54 2 + 111.39605 114.87650 263.74034 28.61737 110 42 1 + 111.77443 114.87650 266.99955 28.99575 110 42 1 + 60.15285 116.24990 271.92333 29.56332 110 22 1 17.40371 117.62330 278.53639 30.32008 1 0 A 17.84110 118.99670 285.19596 31.07684 1 0 A 18.27832 120.37010 291.89239 31.83360 1 0 A @@ -57511,10 +57647,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' - -10.00 105.971 'Hydrobiaklei' - -12.00 24.862 'Basisveen' - -12.50 299.928 'Eerste zandlaag' + -7.00 12.903 'Wadzand' + -10.00 105.974 'Hydrobiaklei' + -12.00 24.882 'Basisveen' + -12.50 300.229 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -57534,10 +57670,10 @@ Layer name -3.00 -1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -1.71 'Oude Zeeklei' - -7.00 -3.35 'Wadzand' + -7.00 -3.33 'Wadzand' -10.00 -19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -99.64 'Eerste zandlaag' + -12.50 -99.74 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -57766,7 +57902,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -57778,7 +57914,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -57986,7 +58122,7 @@ Status character 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.15974 106.05850 162.45605 17.72174 1 0 A + 10.15974 106.05850 162.45605 17.68542 1 0 A 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A @@ -57994,22 +58130,22 @@ Status character 12.12378 112.92550 192.70971 21.09083 1 0 A 12.34176 112.92550 196.12085 21.46921 1 0 A 12.66867 114.29890 201.24614 22.03678 1 0 A - 43.62474 115.67230 208.09120 22.79354 110 21 1 - 94.87267 117.04570 214.94675 23.55030 110 44 1 - 120.33727 118.41910 221.81023 24.30706 220 54 2 - 135.81644 119.79250 226.96177 24.87463 220 60 2 - 137.64365 119.79250 230.39786 26.99293 220 60 2 - 152.52773 121.16590 235.55418 25.82058 220 65 2 - 168.46211 122.53930 242.43233 26.57734 220 69 2 - 184.31384 123.91270 249.31352 27.33410 220 74 2 - 200.10087 125.28610 256.19718 28.09086 220 78 2 - 210.94511 126.65950 261.36123 28.65843 330 81 3 - 213.27217 126.65950 264.80452 29.03681 330 81 3 - 220.73534 128.03290 269.97025 29.60438 330 82 3 - 229.35644 129.40630 276.85902 30.36113 330 83 3 - 237.97384 130.77970 283.74896 31.11789 330 84 3 - 246.58948 132.15310 290.63991 31.87465 330 85 3 - 254.04084 133.52650 295.80866 32.44222 330 86 3 + 43.57858 115.67230 208.09120 22.79354 110 21 1 + 94.98678 117.04570 214.94675 23.55030 110 44 1 + 120.41189 118.41910 221.81023 24.30706 220 54 2 + 135.93439 119.79250 226.96177 24.87463 220 60 2 + 137.28708 119.79250 230.39786 25.25301 220 60 2 + 152.68887 121.16590 235.55418 25.82058 220 65 2 + 168.66632 122.53930 242.43233 26.57734 220 70 2 + 184.56102 123.91270 249.31352 27.33410 220 74 2 + 200.39095 125.28610 256.19718 28.09086 220 78 2 + 211.04684 126.65950 261.36123 28.65843 330 81 3 + 213.37390 126.65950 264.80452 29.03681 330 81 3 + 220.85016 128.03290 269.97025 29.60438 330 82 3 + 229.48433 129.40630 276.85902 30.36113 330 83 3 + 238.11481 130.77970 283.74896 31.11789 330 84 3 + 246.74352 132.15310 290.63991 31.87465 330 85 3 + 254.20796 133.52650 295.80866 32.44222 330 86 3 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -58029,7 +58165,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 349.170 'Eerste zandlaag' + -12.50 349.401 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -58051,7 +58187,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 116.00 'Eerste zandlaag' + -12.50 116.08 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -58276,7 +58412,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=6 CalculationStatus=0 -IterationCount=4 +IterationCount=3 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -58291,8 +58427,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 520.80784 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 445.22007 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 520.80750 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 445.27768 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -58333,10 +58469,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 21.24 : Percentage mobilized resistance left - 17.33 : Percentage mobilized resistance right - 102.24 : Effective left - 136.42 : Effective right + 21.26 : Percentage mobilized resistance left + 17.36 : Percentage mobilized resistance right + 102.35 : Effective left + 136.58 : Effective right 551.02 : Water pressure left 1120.54 : Water pressure right 481.31 : Max effective resistance left @@ -58345,8 +58481,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 13.09 : Vertical force left - 40.54 : Vertical force right + 13.14 : Vertical force left + 40.59 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -58355,10 +58491,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --40.54 : Active force -13.09 : Passive force --40.54 : Plugged active force -13.09 : Plugged passive force +-40.59 : Active force +13.14 : Passive force +-40.59 : Plugged active force +13.14 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -58378,210 +58514,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 13.40665 - 0.00000 0.00000 12.81214 - 0.00000 0.00000 12.21763 - 0.00000 0.00000 11.62312 - 0.00000 0.00000 11.02862 - 0.00000 0.00000 10.43411 - 0.00000 0.00000 10.43411 - 0.00000 0.00000 9.83960 - 0.00000 0.00000 9.24509 - 0.00000 0.00000 8.65058 - 0.00000 0.00000 8.05607 - 0.00000 0.00000 7.46156 - 0.00000 0.00000 7.46156 - 0.00000 0.00049 7.39161 - 0.00001 0.00196 7.32167 - 0.00004 0.00441 7.25173 - 0.00010 0.00785 7.18179 - 0.00020 0.01226 7.11184 - 0.00020 0.01226 7.11184 - 0.00803 0.14175 6.27254 - 0.03988 0.41251 5.43324 - 0.11269 0.82453 4.59392 - 0.24341 1.37781 3.75458 - 0.44901 2.07236 2.91519 - 0.44901 2.07236 2.91519 - 0.68977 2.75906 2.21564 - 1.00409 3.54386 1.51602 - 1.40181 4.42676 0.81625 - 1.89272 5.40776 0.11630 - 2.48663 6.48686 -0.58388 - 2.48663 6.48686 -0.58388 - 3.19336 7.66406 -1.28437 - 4.02271 8.93936 -1.98525 - 4.98450 10.31276 -2.68666 - 6.08854 11.78426 -3.38871 - 7.34462 13.35386 -4.09152 - 7.34462 13.35386 -4.09152 - 8.55395 14.78218 -4.69666 - 9.88924 16.28305 -5.30260 - 11.35672 17.85648 -5.90946 - 12.96263 19.50246 -6.51740 + 0.00000 0.00000 13.40608 + 0.00000 0.00000 12.81159 + 0.00000 0.00000 12.21709 + 0.00000 0.00000 11.62260 + 0.00000 0.00000 11.02811 + 0.00000 0.00000 10.43362 + 0.00000 0.00000 10.43362 + 0.00000 0.00000 9.83912 + 0.00000 0.00000 9.24463 + 0.00000 0.00000 8.65014 + 0.00000 0.00000 8.05564 + 0.00000 0.00000 7.46115 + 0.00000 0.00000 7.46115 + 0.00000 0.00049 7.39121 + 0.00001 0.00196 7.32127 + 0.00004 0.00441 7.25133 + 0.00010 0.00785 7.18139 + 0.00020 0.01226 7.11145 + 0.00020 0.01226 7.11145 + 0.00803 0.14175 6.27217 + 0.03988 0.41251 5.43289 + 0.11269 0.82453 4.59360 + 0.24341 1.37781 3.75427 + 0.44901 2.07236 2.91491 + 0.44901 2.07236 2.91491 + 0.68977 2.75906 2.21539 + 1.00409 3.54386 1.51578 + 1.40181 4.42676 0.81604 + 1.89272 5.40776 0.11611 + 2.48663 6.48686 -0.58406 + 2.48663 6.48686 -0.58406 + 3.19336 7.66406 -1.28453 + 4.02271 8.93936 -1.98539 + 4.98450 10.31276 -2.68678 + 6.08854 11.78426 -3.38881 + 7.34462 13.35386 -4.09160 + 7.34462 13.35386 -4.09160 + 8.55395 14.78218 -4.69673 + 9.88924 16.28305 -5.30264 + 11.35672 17.85648 -5.90949 + 12.96263 19.50246 -6.51741 14.71322 21.22099 -7.12654 - 14.71322 -137.33685 -7.12654 - -0.80817 -134.94696 -7.93562 - -16.04984 -132.42958 -8.74456 - -30.99727 -129.78470 -9.55092 - -45.63591 -127.01234 -10.35224 - -59.95123 -124.11248 -11.14610 - -59.95059 -124.12335 -11.14610 - -69.79643 -122.01224 -11.69743 - -79.47087 -119.83835 -12.24314 - -88.96889 -117.60167 -12.78245 - -98.28546 -115.30220 -13.31461 - -107.41557 -112.93995 -13.83883 - -107.41579 -112.94166 -13.83883 - -109.66862 -112.34129 -13.96856 - -111.90941 -111.73699 -14.09774 - -114.13808 -111.12877 -14.22635 - -116.35454 -110.51663 -14.35439 - -118.55872 -109.90056 -14.48184 - -118.55901 -109.89731 -14.48184 - -129.39260 -106.75811 -15.10990 - -139.90736 -103.52081 -15.72164 - -150.09349 -100.18541 -16.31580 - -159.94118 -96.75191 -16.89109 - -169.44060 -93.22031 -17.44623 - -169.44049 -93.21941 -17.44623 - -178.58177 -89.58971 -17.97997 - -187.35516 -85.86191 -18.49120 - -195.75088 -82.03601 -18.97888 - -203.75910 -78.11201 -19.44194 - -211.37001 -74.08991 -19.87933 - -211.37001 -74.08976 -19.87933 - -218.57379 -69.96956 -20.29003 - -225.36065 -65.75126 -20.67318 - -231.72078 -61.43486 -21.02800 - -237.64436 -57.02036 -21.35367 - -243.12158 -52.50776 -21.64941 - -243.12160 -52.50748 -21.64941 - -250.02112 -46.02504 -22.01164 - -255.99963 -39.35031 -22.31211 - -261.03023 -32.48331 -22.54959 - -265.08599 -25.42404 -22.72283 - -268.13999 -18.17248 -22.83061 - -268.14003 -18.17171 -22.83061 - -270.05527 -11.26596 -22.87116 - -271.06199 -4.19442 -22.85419 - -271.13864 3.04291 -22.77969 - -270.26365 10.44603 -22.64766 - -268.41549 18.01493 -22.45807 - -268.41542 18.01532 -22.45807 - -265.57247 25.75001 -22.21107 - -261.71323 33.65049 -21.90751 - -256.81615 41.71677 -21.54843 - -250.85969 49.94883 -21.13489 - -243.82227 58.34668 -20.66792 - -243.82227 58.34667 -20.66792 - -234.36496 68.20916 -20.06640 - -223.41681 78.29090 -19.39885 - -210.94505 88.59190 -18.66879 - -196.91691 99.11215 -17.87974 - -181.29959 109.85166 -17.03521 - -181.29959 109.85166 -17.03521 - -164.06033 120.81042 -16.13906 - -145.16635 131.98844 -15.19668 - -124.58486 143.38572 -14.21386 - -102.28310 155.00225 -13.19640 - -78.22827 166.83804 -12.15011 - -78.22891 166.84122 -12.15011 - -52.38776 178.89626 -11.08117 - -24.72800 191.17056 -9.99742 - 4.78316 203.66412 -8.90720 - 36.17850 216.37693 -7.81881 - 69.49079 229.30900 -6.74056 - 69.49178 229.31687 -6.74056 - 104.75498 242.46820 -5.68119 - 142.00069 255.83878 -4.65127 - 181.26170 269.42861 -3.66184 - 222.57077 283.23770 -2.72399 - 265.96070 297.26605 -1.84875 - 265.96078 297.26621 -1.84875 - 266.55550 297.45536 -1.83752 - 267.15060 297.64456 -1.82630 - 267.74608 297.83380 -1.81509 - 268.34194 298.02307 -1.80390 - 268.93817 298.21238 -1.79272 - 268.93817 298.21238 -1.79272 - 269.53479 298.40174 -1.78155 - 270.13178 298.59113 -1.77040 - 270.72915 298.78056 -1.75926 - 271.32690 298.97003 -1.74813 - 271.92503 299.15954 -1.73702 - 271.92503 299.15952 -1.73702 - 282.73907 301.15936 -1.53938 - 293.59198 301.78194 -1.34635 - 304.46753 302.41721 -1.15812 - 315.36617 303.06519 -0.97486 - 326.28837 303.72587 -0.79674 - 326.28814 -141.49069 -0.79674 - 316.42975 -140.16968 -0.46550 - 306.66551 -138.80065 -0.15378 - 296.99878 -137.38360 0.13899 - 287.43292 -135.91853 0.41343 - 277.97130 -134.40543 0.67013 - 277.97140 -134.40468 0.67013 - 271.27892 -133.29144 0.84295 - 264.64261 -132.15676 1.00722 - 258.06365 -130.99758 1.16316 - 251.54326 -129.81390 1.31097 - 245.08262 -128.60878 1.45086 - 245.08262 -128.60899 1.45086 - 237.42087 -126.78445 1.60856 - 229.86828 -124.97021 1.75549 - 222.42420 -123.16776 1.89200 - 215.08792 -121.37710 2.01841 - 207.85875 -119.59674 2.13507 - 207.85921 -119.61425 2.13507 - 197.09119 -116.95850 2.29414 - 186.58305 -113.96340 2.43265 - 176.35429 -110.82212 2.55167 - 166.41728 -107.55400 2.65226 - 156.78278 -104.17655 2.73550 - 156.78268 -104.16767 2.73550 - 147.46173 -100.67312 2.80242 - 138.46303 -97.08452 2.85396 - 129.79514 -93.40370 2.89103 - 121.46599 -89.64267 2.91452 - 113.48150 -85.83791 2.92534 - 113.48168 -85.83502 2.92534 - 105.04920 -82.82854 2.92366 - 96.91199 -79.94160 2.90875 - 89.05541 -77.21857 2.88159 - 81.46253 -74.66787 2.84319 - 74.11275 -72.38994 2.79453 - 74.10920 -72.36333 2.79453 - 64.36505 -66.85493 2.71106 - 55.38504 -61.44896 2.61172 - 47.15382 -56.16129 2.49854 - 39.65350 -51.01045 2.37354 - 32.86353 -46.01754 2.23877 - 32.86505 -46.00575 2.23877 - 26.76536 -41.16387 2.09610 - 21.33062 -36.50522 1.94682 - 16.53534 -32.02997 1.79214 - 12.35336 -27.74471 1.63324 - 8.75746 -23.65990 1.47130 - 8.75642 -23.63792 1.47130 - 5.72243 -19.73992 1.30737 - 3.21964 -16.04762 1.14203 - 1.21970 -12.55665 0.97579 - -0.30565 -9.26761 0.80914 - -1.38491 -6.18598 0.64257 - -1.38582 -6.16801 0.64257 - -2.03948 -3.29179 0.47646 - -2.33596 -1.02517 0.31086 - -2.34931 0.75330 0.14577 - -2.14773 2.04550 -0.01879 - -1.79918 2.85327 -0.18281 - -1.79909 2.85322 -0.18281 - -1.34054 3.50737 -0.34637 - -0.85485 3.35091 -0.50960 - -0.42472 2.71388 -0.67260 - -0.11737 1.59684 -0.83547 - 0.00001 0.00006 -0.99831 + 14.71322 -137.33651 -7.12654 + -0.80813 -134.94662 -7.93559 + -16.04976 -132.42924 -8.74451 + -30.99715 -129.78436 -9.55084 + -45.63575 -127.01200 -10.35215 + -59.95104 -124.11214 -11.14598 + -59.95039 -124.12303 -11.14598 + -69.79621 -122.01191 -11.69730 + -79.47062 -119.83802 -12.24299 + -88.96862 -117.60134 -12.78229 + -98.28516 -115.30187 -13.31443 + -107.41524 -112.93963 -13.83864 + -107.41546 -112.94134 -13.83864 + -109.66829 -112.34096 -13.96836 + -111.90907 -111.73667 -14.09754 + -114.13773 -111.12845 -14.22615 + -116.35419 -110.51630 -14.35418 + -118.55836 -109.90024 -14.48163 + -118.55865 -109.89698 -14.48163 + -129.39221 -106.75778 -15.10966 + -139.90694 -103.52048 -15.72139 + -150.09304 -100.18508 -16.31553 + -159.94069 -96.75158 -16.89080 + -169.44008 -93.21998 -17.44592 + -169.43997 -93.21908 -17.44592 + -178.58121 -89.58938 -17.97964 + -187.35458 -85.86158 -18.49085 + -195.75026 -82.03568 -18.97851 + -203.75844 -78.11168 -19.44155 + -211.36932 -74.08958 -19.87892 + -211.36932 -74.08943 -19.87892 + -218.57307 -69.96923 -20.28960 + -225.35990 -65.75093 -20.67274 + -231.71999 -61.43453 -21.02753 + -237.64354 -57.02003 -21.35319 + -243.12073 -52.50743 -21.64891 + -243.12074 -52.50715 -21.64891 + -250.02022 -46.02471 -22.01111 + -255.99869 -39.34998 -22.31156 + -261.02924 -32.48298 -22.54901 + -265.08495 -25.42371 -22.72223 + -268.13890 -18.17215 -22.82998 + -268.13894 -18.17137 -22.82998 + -270.05415 -11.26562 -22.87051 + -271.06082 -4.19409 -22.85352 + -271.13742 3.04324 -22.77900 + -270.26240 10.44636 -22.64694 + -268.41419 18.01526 -22.45733 + -268.41412 18.01565 -22.45733 + -265.57112 25.75034 -22.21031 + -261.71184 33.65083 -21.90673 + -256.81472 41.71710 -21.54763 + -250.85821 49.94916 -21.13407 + -243.82076 58.34701 -20.66708 + -243.82076 58.34701 -20.66708 + -234.36339 68.20949 -20.06553 + -223.41519 78.29123 -19.39796 + -210.94339 88.59223 -18.66788 + -196.91519 99.11248 -17.87881 + -181.29783 109.85199 -17.03426 + -181.29783 109.85199 -17.03426 + -164.05852 120.81075 -16.13809 + -145.16449 131.98878 -15.19569 + -124.58295 143.38605 -14.21285 + -102.28113 155.00258 -13.19537 + -78.22625 166.83837 -12.14907 + -78.22689 166.84155 -12.14907 + -52.38570 178.89659 -11.08010 + -24.72589 191.17089 -9.99634 + 4.78533 203.66445 -8.90610 + 36.18071 216.37726 -7.81769 + 69.49305 229.30933 -6.73943 + 69.49404 229.31718 -6.73943 + 104.75729 242.46850 -5.68005 + 142.00305 255.83908 -4.65011 + 181.26410 269.42892 -3.66067 + 222.57322 283.23801 -2.72280 + 265.96319 297.26636 -1.84756 + 265.96327 297.26650 -1.84756 + 266.55799 297.45565 -1.83632 + 267.15309 297.64485 -1.82510 + 267.74857 297.83408 -1.81389 + 268.34443 298.02336 -1.80270 + 268.94067 298.21267 -1.79152 + 268.94067 298.21267 -1.79152 + 269.53728 298.40202 -1.78035 + 270.13428 298.59142 -1.76920 + 270.73165 298.78085 -1.75806 + 271.32940 298.97032 -1.74694 + 271.92753 299.15983 -1.73582 + 271.92753 299.15981 -1.73582 + 282.74158 301.15965 -1.53818 + 293.59450 301.78222 -1.34515 + 304.47005 302.41750 -1.15691 + 315.36871 303.06548 -0.97365 + 326.29092 303.72616 -0.79553 + 326.29073 -141.54934 -0.79553 + 316.42823 -140.22834 -0.46428 + 306.65988 -138.85931 -0.15256 + 296.98904 -137.44226 0.14022 + 287.41908 -135.97718 0.41466 + 277.95336 -134.46408 0.67137 + 277.95356 -134.46202 0.67137 + 271.25821 -133.34878 0.84419 + 264.61903 -132.21410 1.00847 + 258.03721 -131.05492 1.16442 + 251.51395 -129.87124 1.31224 + 245.05044 -128.66612 1.45214 + 245.05044 -128.66633 1.45214 + 237.38524 -126.84179 1.60985 + 229.82922 -125.02755 1.75679 + 222.38170 -123.22510 1.89331 + 215.04198 -121.43444 2.01974 + 207.80936 -119.65408 2.13642 + 207.80983 -119.67162 2.13642 + 197.03665 -117.01561 2.29552 + 186.52319 -114.02331 2.43407 + 176.28884 -110.88482 2.55314 + 166.34600 -107.61947 2.65379 + 156.70542 -104.24458 2.73708 + 156.70549 -104.23990 2.73708 + 147.37785 -100.74769 2.80407 + 138.37227 -97.16118 2.85569 + 129.69732 -93.48218 2.89284 + 121.36098 -89.72191 2.91643 + 113.36929 -85.91698 2.92736 + 113.36945 -85.91421 2.92736 + 104.93459 -82.82452 2.92581 + 96.79780 -79.93731 2.91104 + 88.94165 -77.21420 2.88405 + 81.34921 -74.66341 2.84582 + 73.99988 -72.38539 2.79734 + 73.99630 -72.35851 2.79734 + 64.25312 -66.84582 2.71417 + 55.27471 -61.43514 2.61514 + 47.04578 -56.14232 2.50230 + 39.54850 -50.98585 2.37767 + 32.76240 -45.98681 2.24329 + 32.76393 -45.97495 2.24329 + 26.66878 -41.12893 2.10104 + 21.23943 -36.46302 1.95221 + 16.45060 -31.97989 1.79800 + 12.27622 -27.68612 1.63958 + 8.68916 -23.59214 1.47815 + 8.68812 -23.57019 1.47815 + 5.66429 -19.66233 1.31474 + 3.17310 -15.95946 1.14994 + 1.18628 -12.45722 0.98425 + -0.32431 -9.15616 0.81815 + -1.38709 -6.06178 0.65215 + -1.38799 -6.04392 0.65215 + -2.03439 -3.26909 0.48661 + -2.32572 -0.97403 0.32156 + -2.32983 0.83432 0.15703 + -2.11474 2.15784 -0.00698 + -1.74818 2.99835 -0.17045 + -1.74809 2.99831 -0.17045 + -1.29758 3.35745 -0.33347 + -0.83041 3.23648 -0.49617 + -0.41373 2.63627 -0.65866 + -0.11459 1.55737 -0.82102 + 0.00001 0.00005 -0.98335 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -58807,7 +58943,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -58819,7 +58955,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -59004,53 +59140,53 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 12.04578 101.25211 24.97488 4.06752 110 48 1 - 12.88752 102.14482 26.01680 4.43089 110 50 1 - 13.56483 103.03753 27.05851 4.79425 220 50 2 - 14.13623 103.93024 28.10001 5.15762 220 50 2 - 14.57130 104.82295 28.88100 5.43015 220 50 2 - 14.81016 104.82295 29.40161 5.61184 220 50 2 - 15.22936 105.71566 30.18242 5.88436 220 50 2 - 15.75306 106.60837 31.22336 6.24773 220 50 2 - 16.26273 107.50108 32.26413 6.61110 220 50 2 - 16.75927 108.39379 33.30474 6.97447 220 50 2 - 17.12423 109.28650 34.08510 7.24700 220 50 2 - 11.63374 109.28650 22.39924 8.32270 220 52 2 - 13.51750 107.26750 26.18365 10.18268 220 52 2 - 16.01999 105.24850 31.21648 12.66266 220 51 2 - 18.51281 103.22950 36.23585 15.14263 220 51 2 - 20.99736 101.21050 41.24435 17.62261 220 51 2 - 22.85132 99.19150 44.99531 19.48259 220 51 2 - 42.60196 99.19150 152.00137 13.90162 110 28 1 - 42.23668 100.56490 141.39199 14.46919 110 30 1 - 41.89611 101.93830 143.33806 15.22595 110 29 1 - 41.41282 103.31170 148.44319 15.98271 110 28 1 - 40.80854 104.68510 154.44929 16.73947 110 26 1 - 39.91583 106.05850 159.20703 17.30704 110 25 1 - 40.33053 106.05850 162.45605 17.72174 110 25 1 - 39.32219 107.43190 167.40248 18.25299 110 23 1 - 38.47382 108.80530 174.07947 19.00974 110 22 1 - 37.57236 110.17870 180.82097 19.76650 110 21 1 - 36.63027 111.55210 187.60408 20.52326 110 20 1 - 35.47084 112.92550 192.70971 21.09083 110 18 1 - 35.84922 112.92550 196.12085 21.46921 110 18 1 - 34.67249 114.29890 201.24614 22.03678 110 17 1 - 33.67351 115.67230 208.09120 22.79354 110 16 1 - 32.66799 117.04570 214.94675 23.55030 110 15 1 - 31.66086 118.41910 221.81023 24.30706 110 14 1 - 30.46785 119.79250 226.96177 24.87463 110 13 1 - 32.58615 119.79250 230.39786 26.99293 110 14 1 - 29.66004 121.16590 235.55418 25.82058 110 13 1 - 28.66999 122.53930 242.43233 26.57734 110 12 1 - 27.68675 123.91270 249.31352 27.33410 110 11 1 - 26.71016 125.28610 256.19718 28.09086 110 0 1 - 25.55088 126.65950 261.36123 28.65843 110 0 1 - 25.92925 126.65950 264.80452 29.03681 110 0 1 - 24.77541 128.03290 269.97025 29.60438 110 0 1 - 23.81450 129.40630 276.85902 30.36113 110 0 1 - 22.85622 130.77970 283.74896 31.11789 110 0 1 - 21.89943 132.15310 290.63991 31.87465 110 0 1 - 20.75383 133.52650 295.80866 32.44222 110 0 1 + 12.05100 101.25211 24.97488 4.06752 110 48 1 + 12.89286 102.14482 26.01680 4.43089 110 50 1 + 13.56632 103.03753 27.05851 4.79425 220 50 2 + 14.13777 103.93024 28.10001 5.15762 220 50 2 + 14.57289 104.82295 28.88100 5.43015 220 50 2 + 14.81175 104.82295 29.40161 5.61184 220 50 2 + 15.23100 105.71566 30.18242 5.88436 220 50 2 + 15.75477 106.60837 31.22336 6.24773 220 50 2 + 16.26451 107.50108 32.26413 6.61110 220 50 2 + 16.76114 108.39379 33.30474 6.97447 220 50 2 + 17.12620 109.28650 34.08510 7.24700 220 50 2 + 11.63446 109.28650 22.39924 8.32270 220 52 2 + 13.51826 107.26750 26.18365 10.18268 220 52 2 + 16.02079 105.24850 31.21648 12.66266 220 51 2 + 18.51367 103.22950 36.23585 15.14263 220 51 2 + 20.99827 101.21050 41.24435 17.62261 220 51 2 + 22.85230 99.19150 44.99531 19.48259 220 51 2 + 42.63127 99.19150 152.00137 13.90162 110 28 1 + 42.26876 100.56490 141.39199 14.46919 110 30 1 + 41.93123 101.93830 143.33806 15.22595 110 29 1 + 41.45123 103.31170 148.44319 15.98271 110 28 1 + 40.85049 104.68510 154.44929 16.73947 110 26 1 + 39.96157 106.05850 159.20703 17.30704 110 25 1 + 40.33995 106.05850 162.45605 17.68542 110 25 1 + 39.37196 107.43190 167.40248 18.25299 110 24 1 + 38.52784 108.80530 174.07947 19.00974 110 22 1 + 37.63083 110.17870 180.82097 19.76650 110 21 1 + 36.69340 111.55210 187.60408 20.52326 110 20 1 + 35.53878 112.92550 192.70971 21.09083 110 18 1 + 35.91716 112.92550 196.12085 21.46921 110 18 1 + 34.74540 114.29890 201.24614 22.03678 110 17 1 + 33.75151 115.67230 208.09120 22.79354 110 16 1 + 32.75118 117.04570 214.94675 23.55030 110 15 1 + 31.74929 118.41910 221.81023 24.30706 110 14 1 + 30.56154 119.79250 226.96177 24.87463 110 13 1 + 30.93992 119.79250 230.39786 25.25301 110 13 1 + 29.75897 121.16590 235.55418 25.82058 110 13 1 + 28.77415 122.53930 242.43233 26.57734 110 12 1 + 27.79608 123.91270 249.31352 27.33410 110 11 1 + 26.82458 125.28610 256.19718 28.09086 110 0 1 + 25.67030 126.65950 261.36123 28.65843 110 0 1 + 26.04868 126.65950 264.80452 29.03681 110 0 1 + 24.89974 128.03290 269.97025 29.60438 110 0 1 + 23.94364 129.40630 276.85902 30.36113 110 0 1 + 22.99010 130.77970 283.74896 31.11789 110 0 1 + 22.03802 132.15310 290.63991 31.87465 110 0 1 + 20.89712 133.52650 295.80866 32.44222 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -59068,9 +59204,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.732 'Hydrobiaklei' + -10.00 12.735 'Hydrobiaklei' -12.00 8.629 'Basisveen' - -12.50 115.056 'Eerste zandlaag' + -12.50 115.220 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -59092,7 +59228,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.31 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -38.22 'Eerste zandlaag' + -12.50 -38.28 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -59216,24 +59352,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56500 4.00000 0.95000 43.28847 43.28847 - -10.61500 19.99400 20.00000 47.16424 47.16424 - -10.66500 22.03000 22.00000 51.01550 51.01550 - -10.71500 9.05000 13.00000 54.84227 54.84227 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56500 1.00000 1.00000 43.28847 43.28847 + -10.61500 1.00000 1.00000 47.16424 47.16424 + -10.66500 1.00000 1.00000 51.01550 51.01550 + -10.71500 1.00000 1.00000 54.84227 54.84227 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -59309,12 +59445,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.88280 77.88280 1.00000 1.00000 1.00000 -10.59000 77.51530 77.51530 77.51530 1.00000 1.00000 1.00000 -10.64000 77.02530 77.02530 77.02530 1.00000 1.00000 1.00000 @@ -59327,7 +59463,7 @@ Lambda passive -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 -11.03000 11.34090 59.58522 3.31769 0.51628 0.29254 5.25401 -11.09000 12.01230 62.23088 3.46500 0.51628 0.29254 5.25401 - -11.09000 12.01230 43.29272 0.84213 0.74382 0.06940 3.56761 + -11.09000 12.01230 43.29272 0.84213 0.74083 0.06940 3.56761 -11.18100 12.50279 43.42601 1.04828 0.74083 0.08384 3.47331 -11.27200 12.99328 43.84429 1.31117 0.74083 0.10091 3.37438 -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 @@ -59339,7 +59475,7 @@ Lambda passive -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 -11.90900 16.42671 49.41509 3.09961 0.74083 0.18869 3.00822 -12.00000 16.91720 50.11123 3.29057 0.74083 0.19593 2.98377 - -12.00000 16.91720 33.15113 7.12286 0.87974 0.43929 2.04454 + -12.00000 16.91720 33.15113 7.12286 0.77767 0.43929 2.04454 -12.10000 14.10620 29.54181 5.78200 0.77767 0.40989 2.09424 -12.20000 11.29520 24.76262 3.99406 0.77767 0.35361 2.19231 -12.30000 8.48420 20.01523 2.20602 0.77767 0.26002 2.35912 @@ -59369,7 +59505,7 @@ Lambda passive -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 -15.16000 29.96760 145.21264 9.13291 0.53046 0.30476 4.84565 -15.30000 31.39420 150.36370 9.45982 0.53046 0.30479 4.84457 - -15.30000 31.39420 153.79896 9.67775 0.38237 0.30480 4.84393 + -15.30000 31.39420 153.79896 9.67775 0.53046 0.30480 4.84393 -15.44000 32.82080 158.95348 10.00461 0.53046 0.30483 4.84307 -15.58000 34.24740 165.82865 10.44041 0.53046 0.30485 4.84208 -15.72000 35.67400 172.70644 10.87617 0.53046 0.30488 4.84124 @@ -59529,12 +59665,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00460 0.00000 78.00460 78.00460 1 100 A - 78.00513 0.00000 78.00513 78.00513 1 100 A + 78.00512 0.00000 78.00512 78.00513 1 100 A 77.88280 0.00000 77.88280 77.88280 1 100 A 77.51530 0.49050 77.51530 77.51530 1 100 A 77.02530 0.98100 77.02530 77.02530 1 100 A @@ -59547,20 +59683,20 @@ Status character 3.12128 71.11830 56.05768 5.50841 1 0 A 3.31769 71.70690 59.58522 5.85504 1 0 A 3.46500 72.29550 62.23088 6.11501 1 0 A - 1.79600 72.29550 43.29272 9.02621 110 0 1 - 8.06069 73.18821 43.42601 9.26243 110 0 1 - 7.17404 74.08092 43.84429 9.62580 110 0 1 - 6.36686 74.97363 44.43915 9.98917 110 0 1 - 5.63529 75.86634 45.14292 10.35254 110 0 1 - 4.97037 76.75905 45.71787 10.62507 110 0 1 - 4.98056 76.75905 46.12017 10.80675 110 0 1 - 4.38360 77.65176 46.74585 11.07928 110 0 1 - 3.85626 78.54447 47.60973 11.44265 110 0 1 - 3.39014 79.43718 48.50158 11.80602 110 0 1 + 1.75855 72.29550 43.29272 8.98991 110 0 1 + 8.09766 73.18821 43.42601 9.26243 110 0 1 + 7.20914 74.08092 43.84429 9.62580 110 0 1 + 6.39993 74.97363 44.43915 9.98917 110 0 1 + 5.66617 75.86634 45.14292 10.35254 110 0 1 + 4.99890 76.75905 45.71787 10.62507 110 0 1 + 5.00908 76.75905 46.12017 10.80675 110 0 1 + 4.40959 77.65176 46.74585 11.07928 110 0 1 + 3.87955 78.54447 47.60973 11.44265 110 0 1 + 3.41055 79.43718 48.50158 11.80602 110 0 1 3.09961 80.32989 49.41509 12.16939 1 0 A 3.29057 81.22260 50.11123 12.44192 1 0 A - 9.21705 81.22260 33.15113 14.26458 110 0 1 - 5.93240 85.20360 29.54181 10.96991 110 0 1 + 7.55830 81.22260 33.15113 12.60942 110 0 1 + 5.92858 85.20360 29.54181 10.96991 110 0 1 3.99406 89.18460 24.76262 8.78389 1 0 A 2.20602 93.16560 20.01523 6.59787 1 0 A 0.41790 97.14660 15.29236 4.41185 1 0 A @@ -59584,17 +59720,17 @@ Status character 6.95314 120.35520 110.94008 12.11292 1 0 A 7.28013 121.72860 116.07149 12.68049 1 0 A 7.49812 121.72860 119.49465 13.05887 1 0 A - 9.78698 123.10200 124.63248 13.62644 110 0 1 - 12.29054 124.47540 131.48763 14.38320 110 0 1 - 14.78730 125.84880 138.34788 15.13996 110 0 1 - 17.27741 127.22220 145.21264 15.89672 110 12 1 - 19.57184 128.59560 150.36370 16.46429 110 13 1 - 15.24827 128.59560 153.79896 12.14072 110 10 1 - 22.23920 129.96900 158.95348 17.41024 110 14 1 - 24.71363 131.34240 165.82865 18.16700 110 15 1 - 27.18543 132.71580 172.70644 18.92376 110 16 1 - 29.65573 134.08920 179.58654 19.68052 110 17 1 - 31.93647 135.46260 184.74790 20.24809 110 17 1 + 9.68805 123.10200 124.63248 13.62644 110 0 1 + 12.18639 124.47540 131.48763 14.38320 110 0 1 + 14.67798 125.84880 138.34788 15.13996 110 0 1 + 17.16299 127.22220 145.21264 15.89672 110 12 1 + 19.45241 128.59560 150.36370 16.46429 110 13 1 + 19.83079 128.59560 153.79896 16.84267 110 13 1 + 22.11487 129.96900 158.95348 17.41024 110 14 1 + 24.58449 131.34240 165.82865 18.16700 110 15 1 + 27.05155 132.71580 172.70644 18.92376 110 16 1 + 29.51715 134.08920 179.58654 19.68052 110 16 1 + 31.79319 135.46260 184.74790 20.24809 110 17 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -59609,9 +59745,9 @@ Layer name [DATA] -9.99 59.147 'OWB' -10.79 0.907 'Grind' - -11.09 4.503 'Hydrobiaklei' - -12.00 1.716 'Basisveen' - -12.50 35.968 'Eerste zandlaag' + -11.09 4.523 'Hydrobiaklei' + -12.00 1.633 'Basisveen' + -12.50 36.137 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -59630,7 +59766,7 @@ Layer name -10.79 0.32 'Grind' -11.09 0.82 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 11.95 'Eerste zandlaag' + -12.50 12.01 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -59870,8 +60006,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 658.60850 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 797.25790 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 658.59573 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 797.39641 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -59915,10 +60051,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.19 : Percentage mobilized resistance left - 27.90 : Percentage mobilized resistance right - 140.49 : Effective left - 146.91 : Effective right + 29.18 : Percentage mobilized resistance left + 27.92 : Percentage mobilized resistance right + 140.45 : Effective left + 147.00 : Effective right 551.02 : Water pressure left 540.51 : Water pressure right 481.31 : Max effective resistance left @@ -59927,8 +60063,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 24.00 : Vertical force left - 24.22 : Vertical force right + 23.99 : Vertical force left + 24.25 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -59937,17 +60073,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.22 : Active force -24.00 : Passive force --24.22 : Plugged active force -24.00 : Plugged passive force +-24.25 : Active force +23.99 : Passive force +-24.25 : Plugged active force +23.99 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --0.21 : Resulting Vertical Force Unplugged --0.21 : Resulting Vertical Force Plugged +-0.25 : Resulting Vertical Force Unplugged +-0.25 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -59960,210 +60096,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -12.36384 - 0.00000 0.00000 -12.26088 - 0.00000 0.00000 -12.15793 - 0.00000 0.00000 -12.05498 - 0.00000 0.00000 -11.95202 - 0.00000 0.00000 -11.84907 - 0.00000 0.00000 -11.84907 - 0.00000 0.00000 -11.74612 - 0.00000 0.00000 -11.64317 - 0.00000 0.00000 -11.54021 - 0.00000 0.00000 -11.43726 - 0.00000 0.00000 -11.33431 - 0.00000 0.00000 -11.33431 - 0.00000 0.00000 -11.19704 - 0.00000 0.00000 -11.05977 - 0.00000 0.00000 -10.92250 - 0.00000 0.00000 -10.78523 - 0.00000 0.00000 -10.64796 - 0.00000 0.00000 -10.64796 - 0.00000 0.00000 -10.53357 - 0.00000 0.00000 -10.41918 - 0.00000 0.00000 -10.30478 - 0.00000 0.00000 -10.19039 - 0.00000 0.00000 -10.07600 - 0.00000 0.00000 -10.07600 - 0.00000 0.00000 -9.96161 - 0.00000 0.00000 -9.84722 - 0.00000 0.00000 -9.73283 - 0.00000 0.00000 -9.61843 - 0.00000 0.00000 -9.50404 - 0.00000 0.00000 -9.50404 - 0.00000 0.00000 -9.40567 - 0.00000 0.00000 -9.30729 - 0.00000 0.00000 -9.20891 - 0.00000 0.00000 -9.11053 - 0.00000 0.00000 -9.01216 - 0.00000 1.24150 -9.01216 - 0.14153 1.24150 -8.88176 - 0.28306 1.24150 -8.75138 - 0.42459 1.24150 -8.62104 - 0.56613 1.24150 -8.49078 - 0.70766 1.24150 -8.36061 - 0.70830 1.23063 -8.36061 - 0.80675 1.23063 -8.26933 - 0.90521 1.23063 -8.17811 - 1.00366 1.23063 -8.08697 - 1.10211 1.23063 -7.99591 - 1.20056 1.23063 -7.90494 - 1.20034 1.22892 -7.90494 - 1.22491 1.22892 -7.88221 - 1.24949 1.22892 -7.85949 - 1.27407 1.22892 -7.83677 - 1.29865 1.22892 -7.81406 - 1.32323 1.22892 -7.79136 - 1.32293 1.23218 -7.79136 - 1.44615 1.23218 -7.67795 - 1.56937 1.23218 -7.56472 - 1.69259 1.23218 -7.45168 - 1.81580 1.23218 -7.33887 - 1.93902 1.23218 -7.22628 - 1.93913 1.23307 -7.22628 - 2.06244 1.23307 -7.11393 - 2.18575 1.23307 -7.00184 - 2.30905 1.23307 -6.89003 - 2.43236 1.23307 -6.77851 - 2.55567 1.23307 -6.66730 - 2.55567 1.23322 -6.66730 - 2.67899 1.23322 -6.55641 - 2.80231 1.23322 -6.44586 - 2.92563 1.23322 -6.33566 - 3.04896 1.23322 -6.22582 - 3.17228 1.23322 -6.11637 - 3.17226 1.23350 -6.11637 - 3.34495 1.23350 -5.96382 - 3.51764 1.23350 -5.81210 - 3.69033 1.23350 -5.66124 - 3.86302 1.23350 -5.51129 - 4.03571 1.23350 -5.36230 - 4.03567 1.23428 -5.36230 - 4.19613 1.23428 -5.22484 - 4.35658 1.23428 -5.08827 - 4.51704 1.23428 -4.95263 - 4.67750 1.23428 -4.81796 - 4.83795 1.23428 -4.68428 - 4.83802 1.23466 -4.68428 - 4.99853 1.23466 -4.55163 - 5.15904 1.23466 -4.42004 - 5.31954 1.23466 -4.28955 - 5.48005 1.23466 -4.16020 - 5.64055 1.23466 -4.03201 - 5.64055 1.23466 -4.03201 - 5.82513 1.23466 -3.88608 - 6.00972 1.23466 -3.74178 - 6.19430 1.23466 -3.59919 - 6.37888 1.23466 -3.45833 - 6.56346 1.23466 -3.31927 - 6.56346 1.23466 -3.31927 - 6.74804 1.23466 -3.18206 - 6.93262 1.23466 -3.04675 - 7.11720 1.23466 -2.91339 - 7.30179 1.23466 -2.78204 - 7.48637 1.23466 -2.65274 - 7.48572 1.23784 -2.65274 - 7.67078 1.23784 -2.52555 - 7.85584 1.23784 -2.40052 - 8.04089 1.23784 -2.27770 - 8.22595 1.23784 -2.15714 - 8.41101 1.23784 -2.03891 - 8.41199 1.24571 -2.03891 - 8.59823 1.24571 -1.92303 - 8.78446 1.24571 -1.80958 - 8.97069 1.24571 -1.69861 - 9.15693 1.24571 -1.59016 - 9.34316 1.24571 -1.48429 - 9.34324 1.24587 -1.48429 - 9.34579 1.32465 -1.48289 - 9.34859 1.48065 -1.48149 - 9.35171 1.63665 -1.48009 - 9.35514 1.79265 -1.47869 - 9.35888 1.94865 -1.47730 - 9.35888 1.94865 -1.47730 - 9.36294 2.10465 -1.47590 - 9.36730 2.26065 -1.47450 - 9.37198 2.41665 -1.47311 - 9.37697 2.57265 -1.47171 - 9.38227 2.72865 -1.47032 - 9.38227 2.72863 -1.47032 - 9.51386 4.11861 -1.44530 - 9.66213 4.11861 -1.42044 - 9.81040 4.11862 -1.39573 - 9.95867 4.11863 -1.37119 - 10.10694 4.11864 -1.34681 - 10.10671 6.96424 -1.34681 - 10.59421 6.96425 -1.29987 - 11.08170 6.96426 -1.25360 - 11.56920 6.96428 -1.20800 - 12.05670 6.96429 -1.16312 - 12.54420 6.96431 -1.11898 - 12.54430 6.96509 -1.11898 - 12.82295 6.96706 -1.09411 - 13.10164 6.96707 -1.06949 - 13.38032 6.96708 -1.04514 - 13.65900 6.96708 -1.02106 - 13.93766 6.96513 -0.99725 - 13.93766 6.96509 -0.99725 - 14.00731 6.96509 -0.99134 - 14.07696 6.96509 -0.98545 - 14.14661 6.96510 -0.97958 - 14.21626 6.96510 -0.97372 - 14.28591 6.96510 -0.96788 - 14.28595 6.96446 -0.96788 - 14.65608 5.36011 -0.93325 - 14.92742 3.66864 -0.89927 - 15.09445 1.88394 -0.86597 - 15.15167 0.00834 -0.83335 - 15.09385 -1.94734 -0.80142 - 15.09458 -1.96885 -0.80142 - 14.87703 -2.78344 -0.75430 - 14.59241 -3.45250 -0.70873 - 14.25215 -4.00703 -0.66468 - 13.86646 -4.45186 -0.62211 - 13.44498 -4.79551 -0.58099 - 13.44474 -4.79051 -0.58099 - 12.99261 -5.10493 -0.54128 - 12.52086 -5.24757 -0.50292 - 12.04025 -5.30146 -0.46586 - 11.55766 -5.30040 -0.43006 - 11.07637 -5.27298 -0.39547 - 11.07640 -5.27127 -0.39547 - 10.56874 -4.87064 -0.35879 - 10.10311 -4.44503 -0.32343 - 9.67886 -4.04562 -0.28935 - 9.29284 -3.68039 -0.25650 - 8.94025 -3.39090 -0.22482 - 8.93901 -3.38107 -0.22482 - 8.56628 -1.85855 -0.18231 - 8.42061 -0.29321 -0.14193 - 8.45646 0.67804 -0.10367 - 8.57738 0.94044 -0.06751 - 8.67611 0.26686 -0.03346 - 8.67327 0.22914 -0.03346 - 8.56068 -1.67721 -0.00156 - 8.23197 -2.97676 0.02823 - 7.73892 -4.02498 0.05603 - 7.11662 -4.82354 0.08194 - 6.39960 -5.38047 0.10609 - 6.39829 -5.35808 0.10609 - 5.62436 -5.65945 0.12864 - 4.82464 -5.72524 0.14981 - 4.03241 -5.55283 0.16978 - 3.28083 -5.14508 0.18875 - 2.60238 -4.51036 0.20690 - 2.60371 -4.48934 0.20690 - 2.02710 -3.76081 0.22443 - 1.54715 -3.10797 0.24146 - 1.15341 -2.52939 0.25809 - 0.83545 -2.02535 0.27442 - 0.58283 -1.59592 0.29054 - 0.58283 -1.59591 0.29054 - 0.38512 -1.24102 0.30654 - 0.23187 -0.96056 0.32244 - 0.11409 -0.72437 0.33828 - 0.03176 -0.43011 0.35408 - 0.00000 0.00000 0.36987 + 0.00000 0.00000 -12.36873 + 0.00000 0.00000 -12.26562 + 0.00000 0.00000 -12.16252 + 0.00000 0.00000 -12.05941 + 0.00000 0.00000 -11.95630 + 0.00000 0.00000 -11.85319 + 0.00000 0.00000 -11.85319 + 0.00000 0.00000 -11.75008 + 0.00000 0.00000 -11.64697 + 0.00000 0.00000 -11.54387 + 0.00000 0.00000 -11.44076 + 0.00000 0.00000 -11.33765 + 0.00000 0.00000 -11.33765 + 0.00000 0.00000 -11.20017 + 0.00000 0.00000 -11.06269 + 0.00000 0.00000 -10.92522 + 0.00000 0.00000 -10.78774 + 0.00000 0.00000 -10.65026 + 0.00000 0.00000 -10.65026 + 0.00000 0.00000 -10.53570 + 0.00000 0.00000 -10.42113 + 0.00000 0.00000 -10.30657 + 0.00000 0.00000 -10.19200 + 0.00000 0.00000 -10.07744 + 0.00000 0.00000 -10.07744 + 0.00000 0.00000 -9.96287 + 0.00000 0.00000 -9.84831 + 0.00000 0.00000 -9.73374 + 0.00000 0.00000 -9.61918 + 0.00000 0.00000 -9.50461 + 0.00000 0.00000 -9.50461 + 0.00000 0.00000 -9.40609 + 0.00000 0.00000 -9.30756 + 0.00000 0.00000 -9.20903 + 0.00000 0.00000 -9.11051 + 0.00000 0.00000 -9.01198 + 0.00000 1.25427 -9.01198 + 0.14299 1.25427 -8.88138 + 0.28597 1.25427 -8.75081 + 0.42896 1.25427 -8.62028 + 0.57195 1.25427 -8.48982 + 0.71494 1.25427 -8.35945 + 0.71558 1.24339 -8.35945 + 0.81506 1.24339 -8.26804 + 0.91453 1.24339 -8.17668 + 1.01400 1.24339 -8.08541 + 1.11347 1.24339 -7.99421 + 1.21294 1.24339 -7.90311 + 1.21272 1.24168 -7.90311 + 1.23755 1.24168 -7.88035 + 1.26239 1.24168 -7.85759 + 1.28722 1.24168 -7.83484 + 1.31205 1.24168 -7.81210 + 1.33689 1.24168 -7.78936 + 1.33659 1.24494 -7.78936 + 1.46109 1.24494 -7.67579 + 1.58558 1.24494 -7.56240 + 1.71007 1.24494 -7.44921 + 1.83457 1.24494 -7.33623 + 1.95906 1.24494 -7.22349 + 1.95917 1.24583 -7.22349 + 2.08376 1.24583 -7.11099 + 2.20834 1.24583 -6.99875 + 2.33292 1.24583 -6.88680 + 2.45751 1.24583 -6.77513 + 2.58209 1.24583 -6.66378 + 2.58209 1.24598 -6.66378 + 2.70669 1.24598 -6.55275 + 2.83129 1.24598 -6.44207 + 2.95588 1.24598 -6.33173 + 3.08048 1.24598 -6.22178 + 3.20508 1.24598 -6.11221 + 3.20506 1.24626 -6.11221 + 3.37954 1.24626 -5.95949 + 3.55402 1.24626 -5.80761 + 3.72849 1.24626 -5.65660 + 3.90297 1.24626 -5.50652 + 4.07745 1.24626 -5.35740 + 4.07741 1.24704 -5.35740 + 4.23952 1.24704 -5.21983 + 4.40164 1.24704 -5.08317 + 4.56375 1.24704 -4.94744 + 4.72587 1.24704 -4.81268 + 4.88798 1.24704 -4.67893 + 4.88805 1.24743 -4.67893 + 5.05022 1.24743 -4.54622 + 5.21239 1.24743 -4.41459 + 5.37455 1.24743 -4.28406 + 5.53672 1.24743 -4.15468 + 5.69888 1.24743 -4.02648 + 5.69888 1.24742 -4.02648 + 5.88537 1.24742 -3.88055 + 6.07186 1.24742 -3.73628 + 6.25835 1.24742 -3.59371 + 6.44484 1.24742 -3.45291 + 6.63133 1.24742 -3.31392 + 6.63133 1.24742 -3.31392 + 6.81782 1.24742 -3.17680 + 7.00431 1.24742 -3.04160 + 7.19080 1.24742 -2.90838 + 7.37729 1.24742 -2.77717 + 7.56378 1.24742 -2.64805 + 7.56314 1.25060 -2.64805 + 7.75010 1.25060 -2.52105 + 7.93707 1.25060 -2.39624 + 8.12403 1.25060 -2.27366 + 8.31099 1.25060 -2.15336 + 8.49796 1.25060 -2.03541 + 8.49895 1.25845 -2.03541 + 8.68708 1.25845 -1.91985 + 8.87522 1.25845 -1.80674 + 9.06336 1.25845 -1.69612 + 9.25150 1.25845 -1.58806 + 9.43964 1.25845 -1.48260 + 9.43972 1.25859 -1.48260 + 9.44229 1.33737 -1.48121 + 9.44512 1.49337 -1.47982 + 9.44826 1.64937 -1.47843 + 9.45172 1.80537 -1.47703 + 9.45548 1.96137 -1.47564 + 9.45548 1.96137 -1.47564 + 9.45956 2.11737 -1.47425 + 9.46395 2.27337 -1.47286 + 9.46865 2.42937 -1.47147 + 9.47367 2.58537 -1.47008 + 9.47900 2.74137 -1.46870 + 9.47900 2.74135 -1.46870 + 9.61104 4.13133 -1.44378 + 9.75977 4.13133 -1.41903 + 9.90850 4.13134 -1.39443 + 10.05723 4.13135 -1.36999 + 10.20596 4.13135 -1.34572 + 10.20576 6.83711 -1.34572 + 10.68436 6.83713 -1.29901 + 11.16296 6.83714 -1.25296 + 11.64156 6.83715 -1.20759 + 12.12016 6.83717 -1.16295 + 12.59876 6.83718 -1.11905 + 12.59896 6.83928 -1.11905 + 12.87258 6.84125 -1.09432 + 13.14623 6.84126 -1.06984 + 13.41988 6.84127 -1.04563 + 13.69353 6.84128 -1.02168 + 13.96716 6.83932 -0.99802 + 13.96716 6.83928 -0.99802 + 14.03555 6.83929 -0.99215 + 14.10394 6.83929 -0.98629 + 14.17234 6.83929 -0.98045 + 14.24073 6.83929 -0.97463 + 14.30912 6.83929 -0.96883 + 14.30915 6.83865 -0.96883 + 14.67172 5.23365 -0.93441 + 14.93545 3.54147 -0.90065 + 15.09483 1.75600 -0.86757 + 15.14435 -0.12043 -0.83516 + 15.07878 -2.07700 -0.80344 + 15.07951 -2.09855 -0.80344 + 14.85003 -2.91648 -0.75665 + 14.55308 -3.59043 -0.71140 + 14.20004 -4.14986 -0.66767 + 13.80113 -4.59957 -0.62542 + 13.36599 -4.94808 -0.58460 + 13.36591 -4.94729 -0.58460 + 12.90410 -5.18729 -0.54519 + 12.42463 -5.33470 -0.50711 + 11.93591 -5.39239 -0.47034 + 11.44491 -5.39428 -0.43481 + 10.95494 -5.36995 -0.40047 + 10.95495 -5.36838 -0.40047 + 10.43751 -4.96905 -0.36405 + 9.96198 -4.54456 -0.32895 + 9.52773 -4.14616 -0.29510 + 9.13161 -3.78199 -0.26246 + 8.76881 -3.49359 -0.23097 + 8.76752 -3.48346 -0.23097 + 8.38029 -1.96376 -0.18871 + 8.21983 -0.39769 -0.14851 + 8.24124 0.57489 -0.11038 + 8.34756 0.83520 -0.07431 + 8.43125 0.15593 -0.04029 + 8.42843 0.11826 -0.04029 + 8.33256 -1.44759 -0.00836 + 8.03463 -2.76661 0.02152 + 7.56965 -3.83404 0.04945 + 6.97276 -4.65144 0.07554 + 6.27855 -5.22670 0.09991 + 6.27723 -5.20436 0.09991 + 5.52358 -5.52350 0.12270 + 4.74168 -5.60642 0.14413 + 3.96493 -5.45041 0.16439 + 3.22658 -5.05831 0.18367 + 2.55923 -4.43843 0.20214 + 2.56056 -4.41742 0.20214 + 1.99312 -3.70093 0.22000 + 1.52090 -3.05731 0.23737 + 1.13365 -2.48710 0.25434 + 0.82108 -1.99056 0.27102 + 0.57285 -1.56776 0.28750 + 0.57286 -1.56776 0.28750 + 0.37867 -1.21861 0.30385 + 0.22822 -0.94303 0.32011 + 0.11252 -0.71250 0.33630 + 0.03139 -0.42466 0.35246 + 0.00000 0.00000 0.36861 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -60284,42 +60420,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.22500 8.00000 6.00000 18.33028 18.33028 - -10.29500 13.00000 12.00000 23.79047 23.79047 - -10.36500 1.00400 48.00000 29.25070 29.25070 - -10.43500 8.00000 8.30000 34.71099 34.71099 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.54000 3.59100 3.60000 42.90151 42.90151 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.60000 21.00000 43.00000 47.58186 47.58186 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.68000 17.00000 8.00000 53.82238 53.82238 - -10.72000 44.10000 45.00000 56.94266 56.94266 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.22500 1.00000 1.00000 18.33028 18.33028 + -10.29500 1.00000 1.00000 23.79047 23.79047 + -10.36500 1.00000 1.00000 29.25070 29.25070 + -10.43500 1.00000 1.00000 34.71099 34.71099 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.54000 1.00000 1.00000 42.90151 42.90151 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.60000 1.00000 1.00000 47.58186 47.58186 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.68000 1.00000 1.00000 53.82238 53.82238 + -10.72000 1.00000 1.00000 56.94266 56.94266 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 71.15100 34.65200 64.09093 62.48559 -10.88000 71.15100 34.65200 67.64965 62.68374 -10.94000 71.15100 34.65200 71.42002 62.89367 @@ -60394,7 +60530,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -60425,7 +60561,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 56.66635 3.15517 0.67892 0.29254 5.25401 + -10.79000 10.61750 56.66635 3.15517 0.51628 0.29254 5.25401 -10.85000 11.28890 59.31201 3.30248 0.51628 0.29254 5.25401 -10.91000 11.96030 62.83955 3.49889 0.51628 0.29254 5.25401 -10.97000 12.63170 66.36710 3.69530 0.51628 0.29254 5.25401 @@ -60455,7 +60591,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -60614,91 +60750,91 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 1 100 A 78.00128 0.00000 78.00128 78.00128 1 100 A 78.00164 0.00000 78.00164 78.00164 1 100 A 78.00191 0.00000 78.00191 78.00191 1 100 A - 78.00217 0.00000 78.00217 78.00217 1 0 A + 78.00217 0.00000 78.00217 78.00218 1 100 A 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00340 0.00000 78.00340 78.00340 1 100 A 78.00410 0.00000 78.00410 78.00410 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A - 78.00532 0.00000 78.00532 78.00532 1 100 A + 78.00532 0.00000 78.00532 78.00533 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00590 0.00000 78.00590 78.00590 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00740 0.00000 78.00740 78.00740 1 0 A + 78.00740 0.00000 78.00740 78.00740 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.15517 67.39050 56.66635 7.32241 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.15517 67.39050 56.66635 5.56822 1 0 A 3.30248 67.97910 59.31201 5.82819 1 0 A 3.49889 68.56770 62.83955 6.17482 1 0 A 3.69530 69.15630 66.36710 6.52145 1 0 A 3.89171 69.74490 69.89464 6.86808 1 0 A 4.03902 70.33350 72.54030 7.12805 1 0 A - 1.87519 70.33350 47.69739 10.44356 110 0 1 - 10.36101 71.22621 47.84478 10.71609 110 0 1 - 10.98130 72.11892 48.26126 11.07946 110 0 1 - 11.57953 73.01163 48.84496 11.44283 110 24 1 - 12.15682 73.90434 49.53488 11.80620 110 25 1 - 12.62342 74.79705 50.09920 12.07872 110 25 1 - 12.80510 74.79705 50.49456 12.26041 110 25 1 - 13.25296 75.68976 51.11025 12.53294 110 26 1 - 13.77394 76.58247 51.96161 12.89631 110 27 1 - 14.27819 77.47518 52.84194 13.25967 110 27 1 - 14.76670 78.36789 53.74489 13.62304 110 27 1 - 15.14963 79.26060 54.43367 13.89557 110 28 1 - 17.60920 79.26060 36.58125 14.13536 110 48 1 - 16.74974 83.24160 32.95268 12.49585 220 51 2 - 14.69216 87.22260 28.14940 10.30983 220 52 2 - 12.46282 91.20360 23.37981 8.12381 220 53 2 - 10.21550 95.18460 18.63653 5.93779 220 55 2 - 8.49836 99.16560 15.09227 4.29828 220 56 2 - 24.15078 99.16560 26.26428 2.74836 330 92 3 - 29.52444 100.53900 31.53892 3.31593 330 94 3 - 28.82767 101.91240 38.50115 4.07269 220 75 2 - 25.64843 103.28580 45.39611 4.82945 220 56 2 - 23.20708 104.65920 52.24433 5.58621 110 44 1 - 14.20123 106.03260 57.36125 6.15378 110 25 1 - 8.87790 106.03260 60.76601 3.73674 110 15 1 - 12.15243 107.40600 65.86774 7.09972 110 18 1 - 12.78636 108.77940 72.66634 7.85648 110 18 1 - 13.39005 110.15280 79.46578 8.61324 110 17 1 - 13.96764 111.52620 86.26991 9.37000 110 16 1 - 14.33408 112.89960 91.37714 9.93757 110 16 1 - 14.71246 112.89960 94.78447 10.31595 110 16 1 - 15.06113 114.27300 99.89939 10.88352 110 15 1 - 15.58456 115.64640 106.72583 11.64028 110 15 1 - 16.09647 117.01980 113.55988 12.39704 110 14 1 - 16.59976 118.39320 120.40102 13.15380 110 14 1 - 16.90815 119.76660 125.53597 13.72137 110 13 1 - 17.28653 119.76660 128.96129 14.09975 110 13 1 - 17.59172 121.14000 134.10206 14.66732 110 13 1 - 18.08396 122.51340 140.96069 15.42408 110 13 1 - 18.57481 123.88680 147.82389 16.18084 110 13 1 - 19.06504 125.26020 154.69114 16.93760 110 12 1 - 19.36619 126.63360 159.84382 17.50516 110 12 1 - 19.74457 126.63360 163.28003 17.88354 110 12 1 - 20.04617 128.00700 168.43582 18.45111 110 12 1 - 20.53719 129.38040 175.31244 19.20787 110 12 1 - 21.45865 130.75380 182.19144 19.96463 110 12 1 - 23.41134 132.12720 189.07254 20.72139 110 12 1 - 25.25463 133.50060 194.23453 21.28896 110 13 1 + 1.86394 70.33350 47.69739 10.44356 110 0 1 + 10.35530 71.22621 47.84478 10.71609 110 0 1 + 10.97463 72.11892 48.26126 11.07946 110 0 1 + 11.57191 73.01163 48.84496 11.44283 110 24 1 + 12.14826 73.90434 49.53488 11.80620 110 25 1 + 12.61394 74.79705 50.09920 12.07872 110 25 1 + 12.79562 74.79705 50.49456 12.26041 110 25 1 + 13.24259 75.68976 51.11025 12.53294 110 26 1 + 13.76270 76.58247 51.96161 12.89631 110 26 1 + 14.26612 77.47518 52.84194 13.25967 110 27 1 + 14.75383 78.36789 53.74489 13.62304 110 27 1 + 15.13599 79.26060 54.43367 13.89557 110 28 1 + 17.60239 79.26060 36.58125 14.13536 110 48 1 + 16.74830 83.24160 32.95268 12.49585 220 51 2 + 14.69375 87.22260 28.14940 10.30983 220 52 2 + 12.46439 91.20360 23.37981 8.12381 220 53 2 + 10.21704 95.18460 18.63653 5.93779 220 55 2 + 8.49988 99.16560 15.09227 4.29828 220 56 2 + 24.14449 99.16560 26.26428 2.74836 330 92 3 + 29.51795 100.53900 31.53892 3.31593 330 94 3 + 28.88762 101.91240 38.50115 4.07269 220 75 2 + 25.65157 103.28580 45.39611 4.82945 220 57 2 + 23.21888 104.65920 52.24433 5.58621 110 44 1 + 14.21386 106.03260 57.36125 6.15378 110 25 1 + 11.61628 106.03260 60.76601 6.53215 110 19 1 + 12.09577 107.40600 65.86774 7.09972 110 18 1 + 12.73058 108.77940 72.66634 7.85648 110 18 1 + 13.33560 110.15280 79.46578 8.61324 110 17 1 + 13.91491 111.52620 86.26991 9.37000 110 16 1 + 14.28339 112.89960 91.37714 9.93757 110 16 1 + 14.66177 112.89960 94.78447 10.31595 110 15 1 + 15.01273 114.27300 99.89939 10.88352 110 15 1 + 15.53867 115.64640 106.72583 11.64028 110 15 1 + 16.05327 117.01980 113.55988 12.39704 110 14 1 + 16.55939 118.39320 120.40102 13.15380 110 14 1 + 16.87070 119.76660 125.53597 13.72137 110 13 1 + 17.24908 119.76660 128.96129 14.09975 110 13 1 + 17.55725 121.14000 134.10206 14.66732 110 13 1 + 18.05253 122.51340 140.96069 15.42408 110 13 1 + 18.54646 123.88680 147.82389 16.18084 110 13 1 + 19.03980 125.26020 154.69114 16.93760 110 12 1 + 19.34408 126.63360 159.84382 17.50516 110 12 1 + 19.72246 126.63360 163.28003 17.88354 110 12 1 + 20.02720 128.00700 168.43582 18.45111 110 12 1 + 20.52138 129.38040 175.31244 19.20787 110 12 1 + 21.42194 130.75380 182.19144 19.96463 110 12 1 + 23.37844 132.12720 189.07254 20.72139 110 12 1 + 25.22555 133.50060 194.23453 21.28896 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -60713,9 +60849,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.079 'Grind' - -11.09 11.136 'Hydrobiaklei' + -11.09 11.127 'Hydrobiaklei' -12.00 6.717 'Basisveen' - -12.50 65.665 'Eerste zandlaag' + -12.50 65.762 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -60734,7 +60870,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -2.02 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -21.82 'Eerste zandlaag' + -12.50 -21.85 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -60858,30 +60994,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56000 17.00000 8.00000 42.89955 42.89955 - -10.60000 13.00000 13.40000 46.00408 46.00408 - -10.64000 36.00000 9.00000 49.09293 49.09293 - -10.68000 9.00500 20.00000 52.16611 52.16611 - -10.72000 55.00000 71.00000 55.22360 55.22360 - -10.74000 20.00000 39.00000 56.74646 56.74646 - -10.74500 16.30300 17.00300 57.12657 57.12657 - -10.75500 36.00000 36.20000 57.88604 57.88604 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.77500 5.00400 2.00000 59.40205 59.40205 - -10.78500 15.00000 65.00000 60.15858 60.15858 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56000 1.00000 1.00000 42.89955 42.89955 + -10.60000 1.00000 1.00000 46.00408 46.00408 + -10.64000 1.00000 1.00000 49.09293 49.09293 + -10.68000 1.00000 1.00000 52.16611 52.16611 + -10.72000 1.00000 1.00000 55.22360 55.22360 + -10.74000 1.00000 1.00000 56.74646 56.74646 + -10.74500 1.00000 1.00000 57.12657 57.12657 + -10.75500 1.00000 1.00000 57.88604 57.88604 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.77500 1.00000 1.00000 59.40205 59.40205 + -10.78500 1.00000 1.00000 60.15858 60.15858 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -60957,12 +61093,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.90730 77.90730 1.00000 1.00000 1.00000 -10.58000 77.61330 77.61330 77.61330 1.00000 1.00000 1.00000 -10.62000 77.22130 77.22130 77.22130 1.00000 1.00000 1.00000 @@ -60975,7 +61111,7 @@ Lambda passive -10.77000 75.75130 75.75130 75.75130 1.00000 1.00000 1.00000 -10.78000 75.65330 75.65330 75.65330 1.00000 1.00000 1.00000 -10.79000 75.55530 75.57980 75.57980 1.00000 1.00000 1.00000 - -10.79000 8.65530 46.35693 2.58114 0.52043 0.29254 5.25401 + -10.79000 8.65530 46.35693 2.58114 0.51628 0.29254 5.25401 -10.85000 9.32670 49.00259 2.72845 0.51628 0.29254 5.25401 -10.91000 9.99810 52.53013 2.92486 0.51628 0.29254 5.25401 -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 @@ -60987,7 +61123,7 @@ Lambda passive -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 -11.45400 13.97426 45.14292 1.82525 0.74083 0.13062 3.23043 -11.54500 14.46475 45.71787 2.01682 0.74083 0.14062 3.18766 - -11.54500 14.46475 46.12017 2.14437 0.86022 0.14700 3.16165 + -11.54500 14.46475 46.12017 2.14437 0.74083 0.14700 3.16165 -11.63600 14.95524 46.74585 2.33555 0.74083 0.15617 3.12572 -11.72700 15.44573 47.60973 2.59032 0.74083 0.16770 3.08239 -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 @@ -61017,7 +61153,7 @@ Lambda passive -14.32000 21.40800 104.10414 6.51717 0.53046 0.30443 4.86286 -14.46000 22.83460 110.94008 6.95314 0.53046 0.30450 4.85842 -14.60000 24.26120 116.07149 7.28013 0.53046 0.30455 4.85562 - -14.60000 24.26120 119.49465 7.49812 0.33884 0.30458 4.85398 + -14.60000 24.26120 119.49465 7.49812 0.53046 0.30458 4.85398 -14.74000 25.68780 124.63248 7.82511 0.53046 0.30462 4.85182 -14.88000 27.11440 131.48763 8.26107 0.53046 0.30467 4.84937 -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 @@ -61177,12 +61313,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00390 0.00000 78.00390 78.00390 402 100 P 78.00460 0.00000 78.00460 78.00460 402 100 P - 78.00513 0.00000 78.00513 78.00513 402 100 P + 78.00512 0.00000 78.00512 78.00513 402 100 P 77.90730 0.00000 77.90730 77.90730 402 100 P 77.61330 0.39240 77.61330 77.61330 402 100 P 77.22130 0.78480 77.22130 77.22130 402 100 P @@ -61195,60 +61331,60 @@ Status character 75.75130 2.25630 75.75130 75.75130 402 100 P 75.65330 2.35440 75.65330 75.65330 402 100 P 75.57980 2.45250 75.57980 75.57980 402 100 P - 27.26712 69.35250 46.35693 4.59182 220 59 2 - 28.74467 69.94110 49.00259 4.81516 220 59 2 - 30.51497 70.52970 52.53013 5.16178 220 58 2 - 32.24542 71.11830 56.05768 5.50841 220 58 2 - 33.93748 71.70690 59.58522 5.85504 220 57 2 - 35.25855 72.29550 62.23088 6.11501 220 57 2 - 9.82122 72.29550 43.29272 8.98991 110 23 1 - 16.39404 73.18821 43.42601 9.26243 110 38 1 - 15.72885 74.08092 43.84429 9.62580 110 36 1 - 15.09559 74.97363 44.43915 9.98917 110 34 1 - 14.49323 75.86634 45.14292 10.35254 110 32 1 - 13.91562 76.75905 45.71787 10.62507 110 30 1 - 15.66733 76.75905 46.12017 12.54828 110 34 1 - 13.37697 77.65176 46.74585 11.07928 110 29 1 - 12.86096 78.54447 47.60973 11.44265 110 27 1 - 12.45152 79.43718 48.50158 11.80602 110 26 1 - 12.64598 80.32989 49.41509 12.16939 110 26 1 - 12.74371 81.22260 50.11123 12.44192 110 25 1 - 11.98240 81.22260 33.15113 12.60942 110 0 1 - 10.43977 85.20360 29.54181 10.96991 110 0 1 - 8.56606 89.18460 24.76262 8.78389 110 0 1 - 6.67667 93.16560 20.01523 6.59787 110 33 1 - 4.77309 97.14660 15.29236 4.41185 110 31 1 - 4.22702 101.12760 11.76233 2.77234 110 36 1 - 13.13516 101.12760 16.41056 1.70748 330 80 3 - 14.86571 102.50100 21.77557 2.27505 220 68 2 - 17.20043 103.87440 28.84714 3.03181 220 60 2 - 19.47672 105.24780 35.82859 3.78857 220 54 2 - 21.70614 106.62120 42.73804 4.54533 220 51 2 - 21.40080 107.99460 47.88667 5.11290 110 45 1 - 23.96683 107.99460 51.30624 5.49128 110 47 1 - 20.37298 109.36800 56.42271 6.05885 110 36 1 - 19.20684 110.74140 63.23158 6.81561 110 30 1 - 18.02006 112.11480 70.03362 7.57237 110 26 1 - 16.82174 113.48820 76.83574 8.32913 110 22 1 - 15.51204 114.86160 81.93981 8.89670 110 19 1 - 15.72990 114.86160 85.34452 9.27508 110 18 1 - 14.42503 116.23500 90.45516 9.84265 110 16 1 - 13.23652 117.60840 97.27574 10.59940 110 14 1 - 12.05744 118.98180 104.10414 11.35616 110 12 1 - 10.88981 120.35520 110.94008 12.11292 110 0 1 - 9.62667 121.72860 116.07149 12.68049 110 0 1 - 9.84466 121.72860 119.49465 8.34140 110 8 1 - 10.70204 123.10200 124.63248 13.62644 110 0 1 - 11.72332 124.47540 131.48763 14.38320 110 0 1 - 12.74598 125.84880 138.34788 15.13996 110 0 1 - 13.76928 127.22220 145.21264 15.89672 110 0 1 - 14.60326 128.59560 150.36370 16.46429 110 0 1 - 14.98164 128.59560 153.79896 16.84267 110 0 1 - 15.81518 129.96900 158.95348 17.41024 110 0 1 - 16.83768 131.34240 165.82865 18.16700 110 0 1 - 17.86000 132.71580 172.70644 18.92376 110 0 1 - 18.88223 134.08920 179.58654 19.68052 110 0 1 - 19.71524 135.46260 184.74790 20.24809 110 0 1 + 27.27750 69.35250 46.35693 4.55519 220 59 2 + 28.75604 69.94110 49.00259 4.81516 220 59 2 + 30.52734 70.52970 52.53013 5.16178 220 58 2 + 32.25877 71.11830 56.05768 5.50841 220 58 2 + 33.95183 71.70690 59.58522 5.85504 220 57 2 + 35.27389 72.29550 62.23088 6.11501 220 57 2 + 9.82993 72.29550 43.29272 8.98991 110 23 1 + 16.44193 73.18821 43.42601 9.26243 110 38 1 + 15.77594 74.08092 43.84429 9.62580 110 36 1 + 15.14175 74.97363 44.43915 9.98917 110 34 1 + 14.53831 75.86634 45.14292 10.35254 110 32 1 + 13.95945 76.75905 45.71787 10.62507 110 31 1 + 13.96963 76.75905 46.12017 10.80675 110 30 1 + 13.41937 77.65176 46.74585 11.07928 110 29 1 + 12.90176 78.54447 47.60973 11.44265 110 27 1 + 12.47098 79.43718 48.50158 11.80602 110 26 1 + 12.66634 80.32989 49.41509 12.16939 110 26 1 + 12.76493 81.22260 50.11123 12.44192 110 25 1 + 11.98922 81.22260 33.15113 12.60942 110 0 1 + 10.45084 85.20360 29.54181 10.96991 110 0 1 + 8.57754 89.18460 24.76262 8.78389 110 0 1 + 6.68855 93.16560 20.01523 6.59787 110 33 1 + 4.78533 97.14660 15.29236 4.41185 110 31 1 + 4.23960 101.12760 11.76233 2.77234 110 36 1 + 13.14145 101.12760 16.41056 1.70748 330 80 3 + 14.88696 102.50100 21.77557 2.27505 220 68 2 + 17.22223 103.87440 28.84714 3.03181 220 60 2 + 19.49895 105.24780 35.82859 3.78857 220 54 2 + 21.72867 106.62120 42.73804 4.54533 220 51 2 + 21.48396 107.99460 47.88667 5.11290 110 45 1 + 21.70114 107.99460 51.30624 5.49128 110 42 1 + 20.45613 109.36800 56.42271 6.05885 110 36 1 + 19.28946 110.74140 63.23158 6.81561 110 31 1 + 18.10168 112.11480 70.03362 7.57237 110 26 1 + 16.90195 113.48820 76.83574 8.32913 110 22 1 + 15.59047 114.86160 81.93981 8.89670 110 19 1 + 15.80833 114.86160 85.34452 9.27508 110 19 1 + 14.50139 116.23500 90.45516 9.84265 110 16 1 + 13.31052 117.60840 97.27574 10.59940 110 14 1 + 12.12884 118.98180 104.10414 11.35616 110 12 1 + 10.95837 120.35520 110.94008 12.11292 110 0 1 + 9.69218 121.72860 116.07149 12.68049 110 0 1 + 9.91017 121.72860 119.49465 13.05887 110 0 1 + 10.73651 123.10200 124.63248 13.62644 110 0 1 + 11.75475 124.47540 131.48763 14.38320 110 0 1 + 12.77433 125.84880 138.34788 15.13996 110 0 1 + 13.79452 127.22220 145.21264 15.89672 110 0 1 + 14.62537 128.59560 150.36370 16.46429 110 0 1 + 15.00375 128.59560 153.79896 16.84267 110 0 1 + 15.83415 129.96900 158.95348 17.41024 110 0 1 + 16.85349 131.34240 165.82865 18.16700 110 0 1 + 17.87266 132.71580 172.70644 18.92376 110 0 1 + 18.89173 134.08920 179.58654 19.68052 110 0 1 + 19.72157 135.46260 184.74790 20.24809 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -61262,10 +61398,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.147 'OWB' - -10.79 9.402 'Grind' - -11.09 12.660 'Hydrobiaklei' - -12.00 3.856 'Basisveen' - -12.50 55.422 'Eerste zandlaag' + -10.79 9.406 'Grind' + -11.09 12.614 'Hydrobiaklei' + -12.00 3.862 'Basisveen' + -12.50 55.417 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -61282,7 +61418,7 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 3.29 'Grind' - -11.09 2.30 'Hydrobiaklei' + -11.09 2.29 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 18.41 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' @@ -61524,8 +61660,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 592.02139 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 785.68335 10000000.000 1 1 1 'Dek' + -10.19000 591.97901 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 785.68542 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -61586,10 +61722,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 37.54 : Percentage mobilized resistance left - 20.71 : Percentage mobilized resistance right - 180.69 : Effective left - 109.01 : Effective right + 37.56 : Percentage mobilized resistance left + 20.72 : Percentage mobilized resistance right + 180.78 : Effective left + 109.06 : Effective right 551.02 : Water pressure left 540.51 : Water pressure right 481.31 : Max effective resistance left @@ -61598,8 +61734,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 35.70 : Vertical force left - 14.21 : Vertical force right + 35.73 : Vertical force left + 14.23 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -61608,17 +61744,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --14.21 : Active force -35.70 : Passive force --14.21 : Plugged active force -35.70 : Plugged passive force +-14.23 : Active force +35.73 : Passive force +-14.23 : Plugged active force +35.73 : Plugged passive force 0.00 : Anchor force 135.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --113.51 : Resulting Vertical Force Unplugged --113.51 : Resulting Vertical Force Plugged +-113.49 : Resulting Vertical Force Unplugged +-113.49 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -61631,210 +61767,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -85.84282 - 0.25187 0.00000 -83.97702 - 0.50374 0.00000 -82.11125 - 0.75561 0.00000 -80.24553 - 1.00748 0.00000 -78.37988 - 1.25935 0.00000 -76.51434 - 1.25935 0.00000 -76.51434 - 1.51113 0.00000 -74.64892 - 1.76291 0.00000 -72.78366 - 2.01469 0.00000 -70.91858 - 2.26648 0.00000 -69.05370 - 2.51826 0.00000 -67.18906 - 2.51826 0.00000 -67.18906 - 2.85368 0.00000 -64.70327 - 3.18911 0.00000 -62.21800 - 3.52453 0.00000 -59.73331 - 3.85996 0.00000 -57.24926 - 4.19538 0.00000 -54.76591 - 4.19538 0.00000 -54.76591 - 4.47452 0.00000 -52.69703 - 4.75366 0.00000 -50.62871 - 5.03280 0.00000 -48.56099 - 5.31193 0.00000 -46.49391 - 5.59107 0.00000 -44.42749 - 5.59107 0.00000 -44.42749 - 5.86973 0.00000 -42.36178 - 6.14839 0.00000 -40.29681 - 6.42705 0.00000 -38.23262 - 6.70572 0.00000 -36.16923 - 6.98438 0.00000 -34.10669 - 6.98438 0.00000 -34.10669 - 7.22356 0.00000 -32.33360 - 7.46274 0.00000 -30.56119 - 7.70191 0.00000 -28.78948 - 7.94109 0.00000 -27.01848 - 8.18027 0.00000 -25.24822 - 8.18027 659.85000 -25.24822 - 83.71249 659.85000 -22.90483 - 159.24471 659.85000 -20.57515 - 234.77693 659.85000 -18.27154 - 310.30914 659.85000 -16.00637 - 385.84136 659.85000 -13.79200 - 385.84201 659.83913 -13.79200 - 438.82322 659.83913 -12.27505 - 491.80443 659.83913 -10.79347 - 544.78565 659.83913 -9.35155 - 597.76686 659.83913 -7.95355 - 650.74807 659.83913 -6.60375 - 650.74785 -125.84593 -6.60375 - 648.27453 -125.84593 -6.27432 - 645.80121 -125.84593 -5.94815 - 643.32788 -125.84593 -5.62524 - 640.85456 -125.84593 -5.30557 - 638.38123 -125.84593 -4.98913 - 638.38094 -125.84268 -4.98913 - 625.98292 -125.84268 -3.45493 - 613.58489 -125.84268 -1.99959 - 601.18687 -125.84268 -0.62156 - 588.78885 -125.84268 0.68074 - 576.39083 -125.84268 1.90886 - 576.39094 -125.84178 1.90886 - 563.94400 -125.84178 3.06437 - 551.49705 -125.84178 4.14884 - 539.05011 -125.84178 5.16382 - 526.60317 -125.84178 6.11090 - 514.15622 -125.84178 6.99163 - 514.15622 -125.84163 6.99163 - 501.66558 -125.84163 7.80759 - 489.17493 -125.84163 8.56035 - 476.68428 -125.84163 9.25149 - 464.19363 -125.84163 9.88257 - 451.70298 -125.84163 10.45517 - 451.70297 -125.84135 10.45517 - 434.15276 -125.84135 11.16156 - 416.60256 -125.84135 11.76075 - 399.05236 -125.84135 12.25707 - 381.50216 -125.84135 12.65485 - 363.95196 -125.84135 12.95842 - 363.95192 -125.84058 12.95842 - 347.60078 -125.84058 13.15975 - 331.24964 -125.84058 13.28707 - 314.89850 -125.84058 13.34386 - 298.54737 -125.84058 13.33360 - 282.19623 -125.84058 13.25979 - 282.19630 -125.84019 13.25979 - 265.80466 -125.84019 13.12589 - 249.41302 -125.84019 12.93539 - 233.02138 -125.84019 12.69180 - 216.62974 -125.84019 12.39859 - 200.23810 -125.84019 12.05925 - 200.23810 -125.84020 12.05925 - 181.35287 -125.84020 11.61653 - 162.46764 -125.84020 11.12275 - 143.58242 -125.84020 10.58321 - 124.69719 -125.84020 10.00325 - 105.81196 -125.84020 9.38817 - 105.81196 -125.84020 9.38817 - 86.90662 -125.84020 8.74330 - 68.00128 -125.84020 8.07395 - 49.09595 -125.84020 7.38546 - 30.19061 -125.84020 6.68315 - 11.28527 -125.84020 5.97233 - 11.28463 -125.83702 5.97233 - -7.62238 -125.83702 5.25833 - -26.52938 -125.83702 4.54649 - -45.43639 -125.83702 3.84211 - -64.34339 -125.83702 3.15053 - -83.25040 -125.83702 2.47706 - -83.24942 -125.82914 2.47706 - -102.13943 -125.82914 1.82704 - -121.02943 -125.82914 1.20577 - -139.91944 -125.82914 0.61859 - -158.80945 -125.82914 0.07080 - -177.69946 -125.82914 -0.43227 - -177.69938 -125.82899 -0.43227 - -177.95184 -125.75021 -0.43867 - -178.20405 -125.59421 -0.44506 - -178.45594 -125.43821 -0.45145 - -178.70753 -125.28221 -0.45782 - -178.95880 -125.12621 -0.46419 - -178.95880 -125.12620 -0.46419 - -179.20975 -124.97020 -0.47055 - -179.46039 -124.81420 -0.47690 - -179.71072 -124.65820 -0.48324 - -179.96073 -124.50220 -0.48957 - -180.21044 -124.34620 -0.49589 - -180.21044 -124.34622 -0.49589 - -184.66786 -122.95624 -0.60811 - -189.10860 -122.95624 -0.71732 - -193.54934 -122.95623 -0.82344 - -197.99008 -122.95622 -0.92640 - -202.43082 -122.95621 -1.02613 - -202.43105 85.12590 -1.02613 - -196.49269 85.12592 -1.21066 - -190.55432 85.12593 -1.38307 - -184.61595 85.12594 -1.54372 - -178.67759 85.12596 -1.69297 - -172.73922 85.12597 -1.83119 - -172.73912 85.12676 -1.83119 - -169.34215 85.12873 -1.90536 - -165.94516 85.12873 -1.97612 - -162.54816 85.12874 -2.04353 - -159.15116 85.12875 -2.10767 - -155.75419 85.12680 -2.16860 - -155.75419 85.12676 -2.16860 - -154.90462 85.12676 -2.18334 - -154.05504 85.12676 -2.19788 - -153.20547 85.12676 -2.21223 - -152.35589 85.12676 -2.22639 - -151.50632 85.12677 -2.24036 - -151.50618 85.12408 -2.24036 - -146.47880 82.66899 -2.32018 - -141.60495 80.02517 -2.39336 - -136.89355 77.25632 -2.46011 - -132.35173 74.37422 -2.52065 - -127.98596 71.38972 -2.57519 - -127.98527 71.36621 -2.57519 - -121.57496 69.56078 -2.64691 - -115.34137 67.55383 -2.70594 - -109.28983 65.55938 -2.75293 - -103.41926 63.57645 -2.78850 - -97.72862 61.60484 -2.81328 - -97.72892 61.60867 -2.81328 - -92.21213 59.64699 -2.82788 - -86.87008 57.76473 -2.83287 - -81.69610 55.95396 -2.82878 - -76.68350 54.21841 -2.81615 - -71.82541 52.55760 -2.79553 - -71.82539 52.55625 -2.79553 - -66.61066 51.66673 -2.76426 - -61.48271 50.81988 -2.72459 - -56.43767 50.00611 -2.67718 - -51.47292 49.21208 -2.62264 - -46.58691 48.43121 -2.56162 - -46.58460 48.41120 -2.56162 - -39.77691 48.48473 -2.46655 - -33.10154 46.23304 -2.36169 - -26.89389 42.30824 -2.24855 - -21.24210 38.32527 -2.12865 - -16.14423 34.40096 -2.00351 - -16.14476 34.38943 -2.00351 - -11.61326 30.23939 -1.87456 - -7.66777 25.98819 -1.74275 - -4.33068 21.54831 -1.60891 - -1.61693 17.16457 -1.47386 - 0.50709 13.14508 -1.33843 - 0.50377 13.15069 -1.33843 - 2.09372 9.55899 -1.20327 - 3.21084 6.39581 -1.06864 - 3.91503 3.65977 -0.93470 - 4.26597 1.34898 -0.80165 - 4.32437 -0.51021 -0.66967 - 4.32390 -0.51888 -0.66967 - 4.16057 -1.84679 -0.53883 - 3.82198 -2.98021 -0.40902 - 3.34717 -3.79328 -0.28012 - 2.78079 -4.28879 -0.15203 - 2.16712 -4.46911 -0.02463 - 2.16717 -4.46842 -0.02463 - 1.54825 -4.33541 0.10224 - 0.96980 -3.89045 0.22873 - 0.47797 -3.08004 0.35496 - 0.13124 -1.80128 0.48104 - -0.00001 -0.00006 0.60708 + 0.00000 0.00000 -85.84169 + 0.25187 0.00000 -83.97590 + 0.50374 0.00000 -82.11013 + 0.75560 0.00000 -80.24442 + 1.00747 0.00000 -78.37878 + 1.25934 0.00000 -76.51325 + 1.25934 0.00000 -76.51325 + 1.51112 0.00000 -74.64785 + 1.76290 0.00000 -72.78260 + 2.01468 0.00000 -70.91752 + 2.26646 0.00000 -69.05266 + 2.51824 0.00000 -67.18803 + 2.51824 0.00000 -67.18803 + 2.85367 0.00000 -64.70225 + 3.18909 0.00000 -62.21699 + 3.52451 0.00000 -59.73232 + 3.85994 0.00000 -57.24828 + 4.19536 0.00000 -54.76494 + 4.19536 0.00000 -54.76494 + 4.47450 0.00000 -52.69607 + 4.75363 0.00000 -50.62776 + 5.03277 0.00000 -48.56006 + 5.31190 0.00000 -46.49298 + 5.59104 0.00000 -44.42658 + 5.59104 0.00000 -44.42658 + 5.86970 0.00000 -42.36088 + 6.14836 0.00000 -40.29592 + 6.42702 0.00000 -38.23173 + 6.70568 0.00000 -36.16836 + 6.98434 0.00000 -34.10582 + 6.98434 0.00000 -34.10582 + 7.22352 0.00000 -32.33275 + 7.46270 0.00000 -30.56035 + 7.70187 0.00000 -28.78864 + 7.94105 0.00000 -27.01765 + 8.18023 0.00000 -25.24741 + 8.18023 659.85000 -25.24741 + 83.71244 659.85000 -22.90403 + 159.24466 659.85000 -20.57436 + 234.77688 659.85000 -18.27076 + 310.30909 659.85000 -16.00560 + 385.84131 659.85000 -13.79125 + 385.84196 659.83912 -13.79125 + 438.82317 659.83912 -12.27430 + 491.80438 659.83912 -10.79273 + 544.78559 659.83912 -9.35082 + 597.76680 659.83912 -7.95283 + 650.74801 659.83912 -6.60304 + 650.74779 -125.84802 -6.60304 + 648.27443 -125.84802 -6.27361 + 645.80106 -125.84802 -5.94745 + 643.32769 -125.84802 -5.62454 + 640.85433 -125.84802 -5.30487 + 638.38096 -125.84802 -4.98843 + 638.38067 -125.84476 -4.98843 + 625.98244 -125.84476 -3.45424 + 613.58420 -125.84476 -1.99892 + 601.18597 -125.84476 -0.62089 + 588.78774 -125.84476 0.68140 + 576.38951 -125.84476 1.90951 + 576.38962 -125.84386 1.90951 + 563.94247 -125.84386 3.06501 + 551.49532 -125.84386 4.14946 + 539.04816 -125.84386 5.16444 + 526.60101 -125.84386 6.11151 + 514.15386 -125.84386 6.99223 + 514.15386 -125.84371 6.99223 + 501.66300 -125.84371 7.80818 + 489.17215 -125.84371 8.56093 + 476.68129 -125.84371 9.25206 + 464.19043 -125.84371 9.88313 + 451.69957 -125.84371 10.45573 + 451.69956 -125.84343 10.45573 + 434.14906 -125.84343 11.16211 + 416.59857 -125.84343 11.76129 + 399.04808 -125.84343 12.25760 + 381.49758 -125.84343 12.65537 + 363.94709 -125.84343 12.95894 + 363.94705 -125.84265 12.95894 + 347.59564 -125.84265 13.16026 + 331.24423 -125.84265 13.28758 + 314.89282 -125.84265 13.34437 + 298.54141 -125.84265 13.33411 + 282.19001 -125.84265 13.26029 + 282.19008 -125.84227 13.26029 + 265.79817 -125.84227 13.12640 + 249.40626 -125.84227 12.93591 + 233.01435 -125.84227 12.69231 + 216.62244 -125.84227 12.39911 + 200.23053 -125.84227 12.05979 + 200.23053 -125.84227 12.05979 + 181.34500 -125.84227 11.61708 + 162.45946 -125.84227 11.12330 + 143.57392 -125.84227 10.58378 + 124.68839 -125.84227 10.00384 + 105.80285 -125.84227 9.38878 + 105.80285 -125.84227 9.38878 + 86.89721 -125.84227 8.74393 + 67.99156 -125.84227 8.07461 + 49.08592 -125.84227 7.38615 + 30.18028 -125.84227 6.68386 + 11.27463 -125.84227 5.97308 + 11.27399 -125.83909 5.97308 + -7.63332 -125.83909 5.25912 + -26.54063 -125.83909 4.54732 + -45.44794 -125.83909 3.84298 + -64.35526 -125.83909 3.15144 + -83.26257 -125.83909 2.47803 + -83.26158 -125.83125 2.47803 + -102.15189 -125.83125 1.82806 + -121.04221 -125.83125 1.20685 + -139.93252 -125.83125 0.61973 + -158.82284 -125.83125 0.07200 + -177.71315 -125.83125 -0.43100 + -177.71307 -125.83111 -0.43100 + -177.96554 -125.75233 -0.43740 + -178.21775 -125.59633 -0.44379 + -178.46965 -125.44033 -0.45017 + -178.72124 -125.28433 -0.45655 + -178.97251 -125.12833 -0.46291 + -178.97251 -125.12833 -0.46291 + -179.22347 -124.97233 -0.46927 + -179.47412 -124.81633 -0.47562 + -179.72445 -124.66033 -0.48196 + -179.97447 -124.50432 -0.48829 + -180.22418 -124.34832 -0.49461 + -180.22418 -124.34834 -0.49461 + -184.68167 -122.95836 -0.60681 + -189.12249 -122.95836 -0.71600 + -193.56330 -122.95835 -0.82211 + -198.00412 -122.95834 -0.92505 + -202.44493 -122.95834 -1.02476 + -202.44512 85.16483 -1.02476 + -196.50403 85.16484 -1.20926 + -190.56293 85.16485 -1.38163 + -184.62184 85.16487 -1.54224 + -178.68074 85.16488 -1.69146 + -172.73964 85.16490 -1.82964 + -172.73945 85.16700 -1.82964 + -169.34087 85.16897 -1.90379 + -165.94226 85.16897 -1.97453 + -162.54365 85.16898 -2.04192 + -159.14504 85.16899 -2.10604 + -155.74645 85.16704 -2.16694 + -155.74645 85.16700 -2.16694 + -154.89648 85.16700 -2.18168 + -154.04650 85.16700 -2.19622 + -153.19652 85.16700 -2.21056 + -152.34654 85.16700 -2.22471 + -151.49657 85.16701 -2.23867 + -151.49643 85.16432 -2.23867 + -146.46872 82.65673 -2.31847 + -141.59564 80.01181 -2.39162 + -136.88507 77.24174 -2.45834 + -132.34416 74.35834 -2.51885 + -127.97937 71.37297 -2.57336 + -127.97868 71.34943 -2.57336 + -121.56989 69.54391 -2.64503 + -115.33785 67.53663 -2.70402 + -109.28788 65.54189 -2.75097 + -103.41891 63.55874 -2.78649 + -97.72989 61.58695 -2.81123 + -97.73002 61.58658 -2.81123 + -92.21396 59.64554 -2.82579 + -86.87212 57.76159 -2.83074 + -81.69849 55.94937 -2.82660 + -76.68636 54.21262 -2.81393 + -71.82883 52.55087 -2.79326 + -71.82883 52.54940 -2.79326 + -66.61478 51.65995 -2.76194 + -61.48750 50.81332 -2.72223 + -56.44309 49.99994 -2.67477 + -51.47894 49.20626 -2.62018 + -46.59348 48.42571 -2.55911 + -46.59121 48.40601 -2.55911 + -39.78405 48.48349 -2.46397 + -33.10863 46.23277 -2.35903 + -26.90130 42.30448 -2.24581 + -21.25021 38.31840 -2.12584 + -16.15352 34.39162 -2.00062 + -16.15404 34.38014 -2.00062 + -11.61892 30.28268 -1.87158 + -7.66737 26.03135 -1.73969 + -4.32425 21.59136 -1.60576 + -1.60448 17.20742 -1.47063 + 0.52552 13.18768 -1.33512 + 0.52221 13.19326 -1.33512 + 2.11810 9.60140 -1.19989 + 3.24116 6.43816 -1.06519 + 3.95128 3.70215 -0.93119 + 4.30817 1.39150 -0.79809 + 4.37273 -0.46336 -0.66607 + 4.37226 -0.47201 -0.66607 + 4.20404 -1.92046 -0.53520 + 3.85575 -3.04518 -0.40537 + 3.37246 -3.84942 -0.27646 + 2.79884 -4.33600 -0.14836 + 2.17920 -4.50729 -0.02096 + 2.17924 -4.50659 -0.02096 + 1.55561 -4.36447 0.10590 + 0.97374 -3.91030 0.23239 + 0.47970 -3.09229 0.35861 + 0.13168 -1.80749 0.48469 + -0.00001 -0.00006 0.61073 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -61955,42 +62091,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.22500 8.00000 6.00000 18.33028 18.33028 - -10.29500 13.00000 12.00000 23.79047 23.79047 - -10.36500 1.00400 48.00000 29.25070 29.25070 - -10.43500 8.00000 8.30000 34.71099 34.71099 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.54000 3.59100 3.60000 42.90151 42.90151 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.60000 21.00000 43.00000 47.58186 47.58186 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.68000 17.00000 8.00000 53.82238 53.82238 - -10.72000 44.10000 45.00000 56.94266 56.94266 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.22500 1.00000 1.00000 18.33028 18.33028 + -10.29500 1.00000 1.00000 23.79047 23.79047 + -10.36500 1.00000 1.00000 29.25070 29.25070 + -10.43500 1.00000 1.00000 34.71099 34.71099 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.54000 1.00000 1.00000 42.90151 42.90151 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.60000 1.00000 1.00000 47.58186 47.58186 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.68000 1.00000 1.00000 53.82238 53.82238 + -10.72000 1.00000 1.00000 56.94266 56.94266 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 71.15100 34.65200 64.09093 62.48559 -10.88000 71.15100 34.65200 67.64965 62.68374 -10.94000 71.15100 34.65200 71.42002 62.89367 @@ -62065,7 +62201,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -62096,7 +62232,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 56.66635 3.15517 0.67892 0.29254 5.25401 + -10.79000 10.61750 56.66635 3.15517 0.51628 0.29254 5.25401 -10.85000 11.28890 59.31201 3.30248 0.51628 0.29254 5.25401 -10.91000 11.96030 62.83955 3.49889 0.51628 0.29254 5.25401 -10.97000 12.63170 66.36710 3.69530 0.51628 0.29254 5.25401 @@ -62126,7 +62262,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -62285,68 +62421,68 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 402 100 P 78.00128 0.00000 78.00128 78.00128 402 100 P 78.00164 0.00000 78.00164 78.00164 402 100 P 78.00191 0.00000 78.00191 78.00191 1 100 A - 78.00217 0.00000 78.00217 78.00217 1 0 A + 78.00217 0.00000 78.00217 78.00218 1 100 A 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00340 0.00000 78.00340 78.00340 1 100 A 78.00410 0.00000 78.00410 78.00410 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A - 78.00532 0.00000 78.00532 78.00532 1 100 A + 78.00532 0.00000 78.00532 78.00533 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00590 0.00000 78.00590 78.00590 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00740 0.00000 78.00740 78.00740 1 0 A + 78.00740 0.00000 78.00740 78.00740 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.15517 67.39050 56.66635 7.32241 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.15517 67.39050 56.66635 5.56822 1 0 A 3.30248 67.97910 59.31201 5.82819 1 0 A 3.49889 68.56770 62.83955 6.17482 1 0 A 3.69530 69.15630 66.36710 6.52145 1 0 A 3.89171 69.74490 69.89464 6.86808 1 0 A 4.03902 70.33350 72.54030 7.12805 1 0 A 1.84243 70.33350 47.69739 10.44356 1 0 A - 2.29561 71.22621 47.84478 10.71609 110 0 1 - 2.52187 72.11892 48.26126 11.07946 110 0 1 - 2.78369 73.01163 48.84496 11.44283 110 0 1 - 3.07908 73.90434 49.53488 11.80620 110 0 1 - 3.31524 74.79705 50.09920 12.07872 110 0 1 - 3.49693 74.79705 50.49456 12.26041 110 0 1 - 3.76278 75.68976 51.11025 12.53294 110 0 1 - 4.14744 76.58247 51.96161 12.89631 110 0 1 - 4.55840 77.47518 52.84194 13.25967 110 0 1 - 4.99398 78.36789 53.74489 13.62304 110 0 1 - 5.36166 79.26060 54.43367 13.89557 110 0 1 - 9.47910 79.26060 36.58125 14.13536 110 0 1 - 8.14135 83.24160 32.95268 12.49585 110 0 1 - 6.18386 87.22260 28.14940 10.30983 110 0 1 - 4.08519 91.20360 23.37981 8.12381 110 0 1 - 1.99643 95.18460 18.63653 5.93779 110 0 1 - 0.46311 99.16560 15.09227 4.29828 110 0 1 - 24.11749 99.16560 26.26428 2.74836 330 92 3 - 19.04304 100.53900 31.53892 3.31593 220 60 2 + 2.30158 71.22621 47.84478 10.71609 110 0 1 + 2.52787 72.11892 48.26126 11.07946 110 0 1 + 2.78972 73.01163 48.84496 11.44283 110 0 1 + 3.08515 73.90434 49.53488 11.80620 110 0 1 + 3.32134 74.79705 50.09920 12.07872 110 0 1 + 3.50302 74.79705 50.49456 12.26041 110 0 1 + 3.76890 75.68976 51.11025 12.53294 110 0 1 + 4.15359 76.58247 51.96161 12.89631 110 0 1 + 4.56458 77.47518 52.84194 13.25967 110 0 1 + 5.00020 78.36789 53.74489 13.62304 110 0 1 + 5.36792 79.26060 54.43367 13.89557 110 0 1 + 9.47920 79.26060 36.58125 14.13536 110 0 1 + 8.14143 83.24160 32.95268 12.49585 110 0 1 + 6.18704 87.22260 28.14940 10.30983 110 0 1 + 4.08839 91.20360 23.37981 8.12381 110 0 1 + 1.99967 95.18460 18.63653 5.93779 110 0 1 + 0.46638 99.16560 15.09227 4.29828 110 0 1 + 24.12041 99.16560 26.26428 2.74836 330 92 3 + 19.09666 100.53900 31.53892 3.31593 220 61 2 2.32601 101.91240 38.50115 4.07269 1 0 A 2.75956 103.28580 45.39611 4.82945 1 0 A 3.19359 104.65920 52.24433 5.58621 1 0 A 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A 4.93366 110.15280 79.46578 8.61324 1 0 A @@ -62357,19 +62493,19 @@ Status character 6.67730 115.64640 106.72583 11.64028 1 0 A 7.11341 117.01980 113.55988 12.39704 1 0 A 7.54953 118.39320 120.40102 13.15380 1 0 A - 8.39746 119.76660 125.53597 13.72137 110 0 1 - 8.77584 119.76660 128.96129 14.09975 110 0 1 - 10.50521 121.14000 134.10206 14.66732 110 0 1 - 12.41146 122.51340 140.96069 15.42408 110 0 1 - 14.30694 123.88680 147.82389 16.18084 110 0 1 - 16.19322 125.26020 154.69114 16.93760 110 0 1 - 17.88267 126.63360 159.84382 17.50516 110 11 1 - 18.26105 126.63360 163.28003 17.88354 110 11 1 - 19.94478 128.00700 168.43582 18.45111 110 12 1 - 21.81366 129.38040 175.31244 19.20787 110 12 1 - 24.45742 130.75380 182.19144 19.96463 110 13 1 - 27.80099 132.12720 189.07254 20.72139 110 15 1 - 31.03032 133.50060 194.23453 21.28896 110 16 1 + 8.42771 119.76660 125.53597 13.72137 110 0 1 + 8.80609 119.76660 128.96129 14.09975 110 0 1 + 10.53604 121.14000 134.10206 14.66732 110 0 1 + 12.44277 122.51340 140.96069 15.42408 110 0 1 + 14.33867 123.88680 147.82389 16.18084 110 0 1 + 16.22532 125.26020 154.69114 16.93760 110 0 1 + 17.91509 126.63360 159.84382 17.50516 110 11 1 + 18.29347 126.63360 163.28003 17.88354 110 11 1 + 19.97750 128.00700 168.43582 18.45111 110 12 1 + 21.84668 129.38040 175.31244 19.20787 110 12 1 + 24.46667 130.75380 182.19144 19.96463 110 13 1 + 27.81116 132.12720 189.07254 20.72139 110 15 1 + 31.04142 133.50060 194.23453 21.28896 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -62384,9 +62520,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.079 'Grind' - -11.09 3.199 'Hydrobiaklei' - -12.00 2.538 'Basisveen' - -12.50 39.881 'Eerste zandlaag' + -11.09 3.204 'Hydrobiaklei' + -12.00 2.539 'Basisveen' + -12.50 39.928 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -62405,7 +62541,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.58 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.25 'Eerste zandlaag' + -12.50 -13.27 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -62529,30 +62665,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56000 17.00000 8.00000 42.89955 42.89955 - -10.60000 13.00000 13.40000 46.00408 46.00408 - -10.64000 36.00000 9.00000 49.09293 49.09293 - -10.68000 9.00500 20.00000 52.16611 52.16611 - -10.72000 55.00000 71.00000 55.22360 55.22360 - -10.74000 20.00000 39.00000 56.74646 56.74646 - -10.74500 16.30300 17.00300 57.12657 57.12657 - -10.75500 36.00000 36.20000 57.88604 57.88604 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.77500 5.00400 2.00000 59.40205 59.40205 - -10.78500 15.00000 65.00000 60.15858 60.15858 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56000 1.00000 1.00000 42.89955 42.89955 + -10.60000 1.00000 1.00000 46.00408 46.00408 + -10.64000 1.00000 1.00000 49.09293 49.09293 + -10.68000 1.00000 1.00000 52.16611 52.16611 + -10.72000 1.00000 1.00000 55.22360 55.22360 + -10.74000 1.00000 1.00000 56.74646 56.74646 + -10.74500 1.00000 1.00000 57.12657 57.12657 + -10.75500 1.00000 1.00000 57.88604 57.88604 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.77500 1.00000 1.00000 59.40205 59.40205 + -10.78500 1.00000 1.00000 60.15858 60.15858 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -62628,12 +62764,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.90730 77.90730 1.00000 1.00000 1.00000 -10.58000 77.61330 77.61330 77.61330 1.00000 1.00000 1.00000 -10.62000 77.22130 77.22130 77.22130 1.00000 1.00000 1.00000 @@ -62646,7 +62782,7 @@ Lambda passive -10.77000 75.75130 75.75130 75.75130 1.00000 1.00000 1.00000 -10.78000 75.65330 75.65330 75.65330 1.00000 1.00000 1.00000 -10.79000 75.55530 75.57980 75.57980 1.00000 1.00000 1.00000 - -10.79000 8.65530 46.35693 2.58114 0.52043 0.29254 5.25401 + -10.79000 8.65530 46.35693 2.58114 0.51628 0.29254 5.25401 -10.85000 9.32670 49.00259 2.72845 0.51628 0.29254 5.25401 -10.91000 9.99810 52.53013 2.92486 0.51628 0.29254 5.25401 -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 @@ -62658,7 +62794,7 @@ Lambda passive -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 -11.45400 13.97426 45.14292 1.82525 0.74083 0.13062 3.23043 -11.54500 14.46475 45.71787 2.01682 0.74083 0.14062 3.18766 - -11.54500 14.46475 46.12017 2.14437 0.86022 0.14700 3.16165 + -11.54500 14.46475 46.12017 2.14437 0.74083 0.14700 3.16165 -11.63600 14.95524 46.74585 2.33555 0.74083 0.15617 3.12572 -11.72700 15.44573 47.60973 2.59032 0.74083 0.16770 3.08239 -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 @@ -62688,7 +62824,7 @@ Lambda passive -14.32000 21.40800 104.10414 6.51717 0.53046 0.30443 4.86286 -14.46000 22.83460 110.94008 6.95314 0.53046 0.30450 4.85842 -14.60000 24.26120 116.07149 7.28013 0.53046 0.30455 4.85562 - -14.60000 24.26120 119.49465 7.49812 0.33884 0.30458 4.85398 + -14.60000 24.26120 119.49465 7.49812 0.53046 0.30458 4.85398 -14.74000 25.68780 124.63248 7.82511 0.53046 0.30462 4.85182 -14.88000 27.11440 131.48763 8.26107 0.53046 0.30467 4.84937 -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 @@ -62848,12 +62984,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00390 0.00000 78.00390 78.00390 402 100 P 78.00460 0.00000 78.00460 78.00460 402 100 P - 78.00513 0.00000 78.00513 78.00513 402 100 P + 78.00512 0.00000 78.00512 78.00513 402 100 P 77.90730 0.00000 77.90730 77.90730 402 100 P 77.61330 0.39240 77.61330 77.61330 402 100 P 77.22130 0.78480 77.22130 77.22130 402 100 P @@ -62866,60 +63002,60 @@ Status character 75.75130 2.25630 75.75130 75.75130 402 100 P 75.65330 2.35440 75.65330 75.65330 402 100 P 75.57980 2.45250 75.57980 75.57980 402 100 P - 40.05794 69.35250 46.35693 4.59182 330 86 3 - 44.31192 69.94110 49.00259 4.81516 330 90 3 - 46.69261 70.52970 52.53013 5.16178 330 89 3 - 48.87274 71.11830 56.05768 5.50841 330 87 3 - 50.86008 71.70690 59.58522 5.85504 330 85 3 - 52.63028 72.29550 62.23088 6.11501 330 85 3 - 17.43190 72.29550 43.29272 8.98991 110 40 1 - 22.46203 73.18821 43.42601 9.26243 220 52 2 - 22.54018 74.08092 43.84429 9.62580 220 51 2 - 22.67554 74.97363 44.43915 9.98917 220 51 2 - 22.84405 75.86634 45.14292 10.35254 220 51 2 - 22.95844 76.75905 45.71787 10.62507 220 50 2 - 23.58247 76.75905 46.12017 12.54828 220 51 2 - 22.86715 77.65176 46.74585 11.07928 110 49 1 - 22.48746 78.54447 47.60973 11.44265 110 47 1 - 22.09148 79.43718 48.50158 11.80602 110 46 1 - 21.68085 80.32989 49.41509 12.16939 110 44 1 - 21.25214 81.22260 50.11123 12.44192 110 42 1 - 16.63573 81.22260 33.15113 12.60942 220 50 2 - 14.85119 85.20360 29.54181 10.96991 220 50 2 - 12.48702 89.18460 24.76262 8.78389 220 50 2 - 10.13339 93.16560 20.01523 6.59787 220 51 2 - 7.90489 97.14660 15.29236 4.41185 220 52 2 - 6.24789 101.12760 11.76233 2.77234 220 53 2 + 41.79033 69.35250 46.35693 4.55519 330 90 3 + 44.32958 69.94110 49.00259 4.81516 330 90 3 + 46.71191 70.52970 52.53013 5.16178 330 89 3 + 48.89369 71.11830 56.05768 5.50841 330 87 3 + 50.88269 71.70690 59.58522 5.85504 330 85 3 + 52.63635 72.29550 62.23088 6.11501 330 85 3 + 17.42994 72.29550 43.29272 8.98991 110 40 1 + 22.47191 73.18821 43.42601 9.26243 220 52 2 + 22.54957 74.08092 43.84429 9.62580 220 51 2 + 22.68440 74.97363 44.43915 9.98917 220 51 2 + 22.85236 75.86634 45.14292 10.35254 220 51 2 + 22.96615 76.75905 45.71787 10.62507 220 50 2 + 23.11522 76.75905 46.12017 10.80675 220 50 2 + 22.89306 77.65176 46.74585 11.07928 110 49 1 + 22.51087 78.54447 47.60973 11.44265 110 47 1 + 22.11225 79.43718 48.50158 11.80602 110 46 1 + 21.69886 80.32989 49.41509 12.16939 110 44 1 + 21.26728 81.22260 50.11123 12.44192 110 42 1 + 16.63510 81.22260 33.15113 12.60942 220 50 2 + 14.85056 85.20360 29.54181 10.96991 220 50 2 + 12.48638 89.18460 24.76262 8.78389 220 50 2 + 10.13275 93.16560 20.01523 6.59787 220 51 2 + 7.90498 97.14660 15.29236 4.41185 220 52 2 + 6.24798 101.12760 11.76233 2.77234 220 53 2 16.41056 101.12760 16.41056 1.70748 402 100 P 21.77557 102.50100 21.77557 2.27505 402 100 P - 27.83660 103.87440 28.84714 3.03181 330 96 3 - 29.39354 105.24780 35.82859 3.78857 330 82 3 - 29.53512 106.62120 42.73804 4.54533 220 69 2 - 29.31549 107.99460 47.88667 5.11290 220 61 2 - 31.37384 107.99460 51.30624 5.49128 220 61 2 - 31.78813 109.36800 56.42271 6.05885 220 56 2 - 33.58043 110.74140 63.23158 6.81561 220 53 2 - 35.35422 112.11480 70.03362 7.57237 220 50 2 - 33.64969 113.48820 76.83574 8.32913 110 44 1 - 30.91322 114.86160 81.93981 8.89670 110 38 1 - 31.14004 114.86160 85.34452 9.27508 110 36 1 - 28.40146 116.23500 90.45516 9.84265 110 31 1 - 25.78127 117.60840 97.27574 10.59940 110 27 1 - 23.17173 118.98180 104.10414 11.35616 110 22 1 - 20.57851 120.35520 110.94008 12.11292 110 19 1 - 18.00440 121.72860 116.07149 12.68049 110 16 1 - 16.53862 121.72860 119.49465 8.34140 110 14 1 - 17.78854 123.10200 124.63248 13.62644 110 14 1 - 17.39582 124.47540 131.48763 14.38320 110 13 1 - 17.01385 125.84880 138.34788 15.13996 110 12 1 - 16.64109 127.22220 145.21264 15.89672 110 11 1 - 16.08678 128.59560 150.36370 16.46429 110 0 1 - 16.46516 128.59560 153.79896 16.84267 110 0 1 - 15.91657 129.96900 158.95348 17.41024 110 0 1 - 15.56121 131.34240 165.82865 18.16700 110 0 1 - 15.20866 132.71580 172.70644 18.92376 110 0 1 - 14.85770 134.08920 179.58654 19.68052 110 0 1 - 14.31792 135.46260 184.74790 20.24809 110 0 1 + 27.87631 103.87440 28.84714 3.03181 330 97 3 + 29.40375 105.24780 35.82859 3.78857 330 82 3 + 29.56931 106.62120 42.73804 4.54533 220 69 2 + 29.31659 107.99460 47.88667 5.11290 220 61 2 + 30.62168 107.99460 51.30624 5.49128 220 60 2 + 31.78913 109.36800 56.42271 6.05885 220 56 2 + 33.58131 110.74140 63.23158 6.81561 220 53 2 + 35.35495 112.11480 70.03362 7.57237 220 50 2 + 33.65182 113.48820 76.83574 8.32913 110 44 1 + 30.91471 114.86160 81.93981 8.89670 110 38 1 + 31.14153 114.86160 85.34452 9.27508 110 36 1 + 28.40227 116.23500 90.45516 9.84265 110 31 1 + 25.78138 117.60840 97.27574 10.59940 110 27 1 + 23.17110 118.98180 104.10414 11.35616 110 22 1 + 20.57711 120.35520 110.94008 12.11292 110 19 1 + 17.97415 121.72860 116.07149 12.68049 110 15 1 + 18.35253 121.72860 119.49465 13.05887 110 15 1 + 17.75772 123.10200 124.63248 13.62644 110 14 1 + 17.36451 124.47540 131.48763 14.38320 110 13 1 + 16.98213 125.84880 138.34788 15.13996 110 12 1 + 16.60900 127.22220 145.21264 15.89672 110 11 1 + 16.05436 128.59560 150.36370 16.46429 110 0 1 + 16.43274 128.59560 153.79896 16.84267 110 0 1 + 15.88385 129.96900 158.95348 17.41024 110 0 1 + 15.52819 131.34240 165.82865 18.16700 110 0 1 + 15.17536 132.71580 172.70644 18.92376 110 0 1 + 14.82412 134.08920 179.58654 19.68052 110 0 1 + 14.28407 135.46260 184.74790 20.24809 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -62933,10 +63069,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.147 'OWB' - -10.79 14.225 'Grind' - -11.09 20.226 'Hydrobiaklei' + -10.79 14.282 'Grind' + -11.09 20.217 'Hydrobiaklei' -12.00 5.682 'Basisveen' - -12.50 81.412 'Eerste zandlaag' + -12.50 81.453 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -62952,10 +63088,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 4.98 'Grind' - -11.09 3.68 'Hydrobiaklei' + -10.79 5.00 'Grind' + -11.09 3.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 27.05 'Eerste zandlaag' + -12.50 27.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -63222,39 +63358,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 25.83 : Percentage mobilized resistance left - 51.60 : Percentage mobilized resistance right - 501.88 : Effective left - 611.84 : Effective right + 25.85 : Percentage mobilized resistance left + 51.63 : Percentage mobilized resistance right + 502.16 : Effective left + 612.11 : Effective right 1096.84 : Water pressure left 986.23 : Water pressure right 1942.71 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -20727.44 : Max moment left --13318.95 : Max moment right --6042.74 : Max mobilized moment left --6077.74 : Max mobilized moment right - 154.07 : Vertical force left - 166.51 : Vertical force right +-13318.44 : Max moment right +-6046.39 : Max mobilized moment left +-6081.38 : Max mobilized moment right + 154.16 : Vertical force left + 166.61 : Vertical force right 29.2 : Max mobilized moment percentage left - 45.6 : Max mobilized moment percentage right + 45.7 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --154.07 : Active force -166.51 : Passive force --154.07 : Plugged active force -166.51 : Plugged passive force +-154.16 : Active force +166.61 : Passive force +-154.16 : Plugged active force +166.61 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -12.44 : Resulting Vertical Force Unplugged -12.44 : Resulting Vertical Force Plugged +12.45 : Resulting Vertical Force Unplugged +12.45 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -63267,210 +63403,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 900.48172 - 0.00000 0.00000 894.01389 - 0.00000 0.00000 887.54606 - 0.00000 0.00000 881.07823 - 0.00000 0.00000 874.61041 - 0.00000 0.00000 868.14258 - 0.00000 0.00000 868.14258 - 0.00000 0.00000 861.67475 - 0.00000 0.00000 855.20692 - 0.00000 0.00000 848.73909 - 0.00000 0.00000 842.27126 - 0.00000 0.00000 835.80343 - 0.00000 0.00000 835.80343 - 0.00000 -0.00049 835.04251 - -0.00001 -0.00196 834.28159 - -0.00004 -0.00441 833.52067 - -0.00010 -0.00785 832.75975 - -0.00020 -0.01226 831.99883 - -0.00020 -0.01226 831.99883 - -0.00803 -0.14175 822.86777 - -0.03988 -0.41251 813.73671 - -0.11269 -0.82453 804.60567 - -0.24341 -1.37781 795.47466 - -0.44901 -2.07236 786.34369 - -0.44901 -2.07236 786.34369 - -0.68977 -2.75906 778.73460 - -1.00409 -3.54386 771.12559 - -1.40181 -4.42676 763.51672 - -1.89272 -5.40776 755.90804 - -2.48663 -6.48686 748.29959 - -2.48663 -6.48686 748.29959 - -3.19336 -7.66406 740.69144 - -4.02271 -8.93936 733.08369 - -4.98450 -10.31276 725.47646 - -6.08854 -11.78426 717.86988 - -7.34462 -13.35386 710.26406 - -7.34462 -13.35386 710.26406 - -8.55395 -14.78218 703.72378 - -9.88924 -16.28305 697.18429 - -11.35672 -17.85648 690.64573 - -12.96263 -19.50246 684.10824 - -14.71322 -21.22099 677.57196 - -14.71322 -21.22099 677.57196 - -17.26743 -23.61088 668.90969 - -20.10135 -26.12827 660.25024 - -23.22952 -28.77314 651.59413 - -26.66647 -31.54551 642.94186 - -30.42674 -34.44536 634.29396 - -30.42674 -34.44536 634.29396 - -30.82111 -34.74236 633.42943 - -31.21887 -35.04063 632.56495 - -31.62004 -35.34018 631.70052 - -32.02463 -35.64100 630.83614 - -32.43266 -35.94310 629.97182 - -32.43266 -35.94310 629.97182 - -33.83924 -36.92159 627.04565 - -35.28181 -37.80707 624.12011 - -36.75675 -38.59949 621.19523 - -38.26049 -39.29887 618.27105 - -39.78960 -39.91866 615.34758 - -39.78960 -39.91866 615.34758 - -40.99342 -40.33176 613.07597 - -42.20920 -40.71411 610.80482 - -43.43592 -41.06130 608.53415 - -44.67253 -41.37333 606.26398 - -45.91801 -41.65460 603.99431 - -45.91801 -41.65460 603.99431 - -46.75275 -41.81769 602.48149 - -47.59063 -41.96712 600.96890 - -48.43133 -42.10092 599.45655 - -49.27456 -42.21909 597.94445 - -50.12001 -42.32360 596.43259 - -50.12001 -42.32360 596.43259 - -54.43295 -43.93735 588.87717 - -58.90787 -45.56290 581.32861 - -63.54584 -47.19761 573.78748 - -68.34758 -48.83801 566.25438 - -73.31354 -50.48153 558.72989 - -73.31354 -50.48153 558.72989 - -78.44397 -52.12707 551.21461 - -83.73896 -53.77278 543.70920 - -89.19851 -55.41791 536.21437 - -94.82250 -57.06169 528.73079 - -100.61079 -58.70383 521.25916 - -100.61079 -58.70383 521.25916 - -106.56314 -60.34291 513.80017 - -112.67929 -61.97945 506.35461 - -118.95893 -63.61280 498.92326 - -125.40173 -65.24267 491.50692 - -132.00735 -66.86931 484.10637 - -132.00735 -66.86931 484.10637 - -141.52795 -69.13826 473.77366 - -151.36573 -71.39997 463.47589 - -161.51954 -73.65307 453.21557 - -171.98817 -75.89720 442.99520 - -182.77038 -78.13327 432.81729 - -182.77038 -78.13327 432.81729 - -192.94649 -78.41533 423.40667 - -203.15912 -78.71462 414.03712 - -213.41560 -79.09013 404.71084 - -223.76112 -80.35574 395.43001 - -234.33645 -82.27571 386.19683 - -234.33645 -82.27571 386.19683 - -245.13568 -83.80048 377.01351 - -256.10744 -84.93005 367.88239 - -267.20037 -85.66442 358.80580 - -278.36307 -86.00359 349.78613 - -289.54418 -85.94756 340.82571 - -289.54418 -85.94756 340.82571 - -302.37153 -85.65589 330.59757 - -315.15529 -85.36421 320.45457 - -327.89543 -85.07254 310.40029 - -340.61252 -85.19316 300.43833 - -353.39697 -85.89127 290.57228 - -353.39697 -85.89127 290.57228 - -366.30623 -86.81683 280.80571 - -379.35830 -87.80466 271.14227 - -392.56352 -88.86667 261.58568 - -405.93181 -89.97639 252.13967 - -419.47039 -91.16500 242.80795 - -419.47039 -91.16500 242.80795 - -433.19754 -92.48454 233.59426 - -447.12631 -93.86519 224.50255 - -461.26672 -95.31569 215.53678 - -475.62919 -96.83604 206.70094 - -490.22374 -98.41752 197.99901 - -490.22374 -98.41752 197.99901 - -505.06125 -100.08634 189.43507 - -520.15261 -101.81643 181.01337 - -535.41965 -101.84667 172.73813 - -550.46312 -99.03464 164.61361 - -564.96718 -94.94171 156.64404 - -564.96718 -94.94171 156.64404 - -565.15700 -94.88303 156.53850 - -565.34671 -94.82428 156.43298 - -565.53630 -94.76544 156.32749 - -565.72577 -94.70652 156.22203 - -565.91512 -94.64753 156.11659 - -565.91512 -94.60282 156.11659 - -569.48885 -93.48636 154.10349 - -573.01995 -92.35902 152.12338 - -576.50798 -91.21927 150.16136 - -579.95246 -90.06709 148.20249 - -583.35294 -88.90403 146.23187 - -583.35294 -88.85873 146.23187 - -593.79042 -85.08390 140.12513 - -603.76873 -81.20052 134.12611 - -613.27359 -77.19305 128.23654 - -622.29010 -73.06147 122.45815 - -630.80400 -68.82135 116.79264 - -630.80400 -68.82135 116.79264 - -634.86805 -66.64317 114.00274 - -638.80063 -64.43785 111.24163 - -642.59997 -62.20153 108.50949 - -646.26420 -59.93420 105.80648 - -649.79153 -57.63974 103.13278 - -649.79153 -57.63974 103.13278 - -654.87545 -54.08581 99.13399 - -659.63326 -50.46945 95.20353 - -664.05873 -46.78174 91.34184 - -668.14537 -43.02268 87.54940 - -671.88696 -39.20117 83.82666 - -671.88696 -39.20117 83.82666 - -675.27674 -35.29046 80.17406 - -678.30793 -31.31730 76.59191 - -680.97432 -27.27278 73.08048 - -683.26941 -23.15689 69.64006 - -685.18698 -18.97855 66.27092 - -685.18709 -18.97786 66.27092 - -686.98532 -16.94828 62.65106 - -688.56779 -14.64994 59.11774 - -689.90509 -12.04518 55.67114 - -690.96664 -9.13482 52.31142 - -691.72688 -6.06905 49.03875 - -691.73486 -6.00137 49.03875 - -690.51346 23.26054 44.60407 - -685.25281 51.86037 40.33997 - -675.98870 80.54288 36.24416 - -662.68480 109.56831 32.31434 - -645.32200 138.32752 28.54824 - -645.30234 138.48358 28.54824 - -623.93360 166.65551 24.94267 - -598.67029 194.15249 21.49124 - -569.59639 221.10343 18.18676 - -536.78394 247.56979 15.02208 - -500.34323 272.61356 11.99002 - -500.42735 273.53560 11.99002 - -460.51714 296.14820 9.08244 - -417.63064 316.08667 6.28856 - -372.16479 332.76977 3.59726 - -324.77518 342.59414 0.99740 - -276.79649 340.46006 -1.52213 - -276.57937 340.13083 -1.52213 - -229.82368 326.25759 -3.97361 - -185.64651 303.40012 -6.36849 - -145.13763 274.84291 -8.71669 - -108.81710 243.57272 -11.02814 - -77.06057 209.66049 -13.31276 - -77.11002 209.41273 -13.31276 - -50.32768 172.76334 -15.57985 - -28.85786 133.50877 -17.83466 - -13.06816 91.62006 -20.08105 - -3.32688 47.10343 -22.32286 - 0.00011 0.00059 -24.56393 + 0.00000 0.00000 901.49594 + 0.00000 0.00000 895.02219 + 0.00000 0.00000 888.54844 + 0.00000 0.00000 882.07468 + 0.00000 0.00000 875.60093 + 0.00000 0.00000 869.12717 + 0.00000 0.00000 869.12717 + 0.00000 0.00000 862.65342 + 0.00000 0.00000 856.17967 + 0.00000 0.00000 849.70591 + 0.00000 0.00000 843.23216 + 0.00000 0.00000 836.75841 + 0.00000 0.00000 836.75841 + 0.00000 -0.00049 835.99679 + -0.00001 -0.00196 835.23517 + -0.00004 -0.00441 834.47355 + -0.00010 -0.00785 833.71194 + -0.00020 -0.01226 832.95032 + -0.00020 -0.01226 832.95032 + -0.00803 -0.14175 823.81090 + -0.03988 -0.41251 814.67147 + -0.11269 -0.82453 805.53206 + -0.24341 -1.37781 796.39269 + -0.44901 -2.07236 787.25335 + -0.44901 -2.07236 787.25335 + -0.68977 -2.75906 779.63729 + -1.00409 -3.54386 772.02131 + -1.40181 -4.42676 764.40547 + -1.89272 -5.40776 756.78982 + -2.48663 -6.48686 749.17440 + -2.48663 -6.48686 749.17440 + -3.19336 -7.66406 741.55928 + -4.02271 -8.93936 733.94456 + -4.98450 -10.31276 726.33036 + -6.08854 -11.78426 718.71681 + -7.34462 -13.35386 711.10402 + -7.34462 -13.35386 711.10402 + -8.55395 -14.78218 704.55774 + -9.88924 -16.28305 698.01226 + -11.35672 -17.85648 691.46770 + -12.96263 -19.50246 684.92422 + -14.71322 -21.22099 678.38195 + -14.71322 -21.22099 678.38195 + -17.26743 -23.61088 669.71173 + -20.10135 -26.12827 661.04433 + -23.22952 -28.77314 652.38027 + -26.66647 -31.54551 643.72006 + -30.42674 -34.44536 635.06421 + -30.42674 -34.44536 635.06421 + -30.82111 -34.74236 634.19889 + -31.21887 -35.04063 633.33361 + -31.62004 -35.34018 632.46839 + -32.02463 -35.64100 631.60322 + -32.43266 -35.94310 630.73810 + -32.43266 -35.94310 630.73810 + -33.83924 -36.92159 627.80923 + -35.28181 -37.80707 624.88100 + -36.75675 -38.59949 621.95344 + -38.26049 -39.29887 619.02656 + -39.78960 -39.91866 616.10040 + -39.78960 -39.91866 616.10040 + -40.99342 -40.33176 613.82670 + -42.20920 -40.71411 611.55346 + -43.43592 -41.06130 609.28071 + -44.67253 -41.37333 607.00844 + -45.91801 -41.65460 604.73668 + -45.91801 -41.65460 604.73668 + -46.75275 -41.81769 603.22246 + -47.59063 -41.96712 601.70848 + -48.43133 -42.10092 600.19474 + -49.27456 -42.21909 598.68124 + -50.12001 -42.32360 597.16799 + -50.12001 -42.32360 597.16799 + -54.43295 -43.93735 589.60560 + -58.90787 -45.56290 582.05006 + -63.54584 -47.19761 574.50197 + -68.34758 -48.83801 566.96190 + -73.31354 -50.48153 559.43043 + -73.31354 -50.48153 559.43043 + -78.44397 -52.12707 551.90818 + -83.73896 -53.77278 544.39581 + -89.19851 -55.41791 536.89400 + -94.82250 -57.06169 529.40346 + -100.61079 -58.70383 521.92485 + -100.61079 -58.70383 521.92485 + -106.56314 -60.34291 514.45890 + -112.67929 -61.97945 507.00636 + -118.95893 -63.61280 499.56804 + -125.40173 -65.24267 492.14473 + -132.00735 -66.86931 484.73721 + -132.00735 -66.86931 484.73721 + -141.52795 -69.13826 474.39474 + -151.36573 -71.39997 464.08722 + -161.51954 -73.65307 453.81713 + -171.98817 -75.89720 443.58701 + -182.77038 -78.13327 433.39934 + -182.77038 -78.13327 433.39934 + -192.94649 -78.41533 423.97965 + -203.15912 -78.71462 414.60105 + -213.41560 -79.09013 405.26570 + -223.76112 -80.35574 395.97581 + -234.33645 -82.27571 386.73357 + -234.33645 -82.27571 386.73357 + -245.13568 -83.80048 377.54119 + -256.10744 -84.93005 368.40100 + -267.20037 -85.66442 359.31536 + -278.36307 -86.00359 350.28662 + -289.54418 -85.94756 341.31713 + -289.54418 -85.94756 341.31713 + -302.37153 -85.65589 331.07857 + -315.15529 -85.36421 320.92515 + -327.89543 -85.07254 310.86045 + -340.61252 -85.19316 300.88807 + -353.39697 -85.89127 291.01160 + -353.39697 -85.89127 291.01160 + -366.30623 -86.81683 281.23461 + -379.35830 -87.80466 271.56075 + -392.56352 -88.86667 261.99374 + -405.93399 -90.02000 252.53731 + -419.48343 -91.25222 243.19516 + -419.48343 -91.25222 243.19516 + -433.22362 -92.57176 233.97106 + -447.16543 -93.95241 224.86894 + -461.31887 -95.40291 215.89277 + -475.69438 -96.92326 207.04655 + -490.30197 -98.50474 198.33426 + -490.30197 -98.50474 198.33426 + -505.15252 -100.17355 189.75998 + -520.25692 -101.90365 181.32795 + -535.53700 -101.93389 173.04243 + -550.59351 -99.12185 164.90765 + -565.11061 -95.02892 156.92787 + -565.11061 -95.02892 156.92787 + -565.30061 -94.97024 156.82218 + -565.49049 -94.91149 156.71653 + -565.68025 -94.85265 156.61090 + -565.86990 -94.79373 156.50530 + -566.05943 -94.73474 156.39973 + -566.05943 -94.69004 156.39973 + -569.63647 -93.57358 154.38402 + -573.17088 -92.44624 152.40134 + -576.66222 -91.30649 150.43675 + -580.11002 -90.15431 148.47531 + -583.51381 -88.99125 146.50208 + -583.51381 -88.94595 146.50208 + -593.96177 -85.17112 140.38722 + -603.95054 -81.28774 134.38011 + -613.46586 -77.28027 128.48248 + -622.49284 -73.14869 122.69606 + -631.01720 -68.90857 117.02256 + -631.01720 -68.90857 117.02256 + -635.08649 -66.73038 114.22868 + -639.02431 -64.52507 111.46360 + -642.82888 -62.28875 108.72750 + -646.49834 -60.02142 106.02054 + -650.03091 -57.72696 103.34290 + -650.03091 -57.72696 103.34290 + -655.12276 -54.17303 99.33816 + -659.88850 -50.55667 95.40177 + -664.32191 -46.86896 91.53418 + -668.41649 -43.10990 87.73586 + -672.16602 -39.28839 84.00728 + -672.16602 -39.28839 84.00728 + -675.56373 -35.37768 80.34886 + -678.60286 -31.40452 76.76092 + -681.27719 -27.36000 73.24374 + -683.58022 -23.24411 69.79759 + -685.50572 -19.06576 66.42276 + -685.50583 -19.06508 66.42276 + -687.31278 -17.03550 62.79668 + -688.90397 -14.73716 59.25719 + -690.25000 -12.13239 55.80446 + -691.32026 -9.22204 52.43865 + -692.08914 -6.15354 49.15993 + -692.09714 -6.08573 49.15993 + -690.88755 23.17619 44.71686 + -685.63871 51.77601 40.44447 + -676.38641 80.45853 36.34046 + -663.09367 109.49785 32.40255 + -645.73884 138.28358 28.62844 + -645.71914 138.43999 28.62844 + -624.35480 166.63594 25.01498 + -599.09269 194.15447 21.55576 + -570.01715 221.12453 18.24359 + -537.20055 247.60759 15.07133 + -500.75282 272.68064 12.03179 + -500.83717 273.60516 12.03179 + -460.91439 296.25701 9.11683 + -418.01035 316.22718 6.31567 + -372.52177 332.96188 3.61717 + -325.10062 342.84811 1.01021 + -277.08361 340.74918 -1.51634 + -276.86587 340.41903 -1.51634 + -230.06891 326.55455 -3.97477 + -185.85057 303.69074 -6.37654 + -145.30175 275.12170 -8.73158 + -108.94342 243.83267 -11.04983 + -77.15222 209.89459 -13.34121 + -77.20182 209.64614 -13.34121 + -50.38902 172.96393 -15.61505 + -28.89381 133.66961 -17.87659 + -13.08478 91.73421 -20.12970 + -3.33120 47.16396 -22.37822 + 0.00011 0.00059 -24.62601 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -63804,7 +63940,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -63816,7 +63952,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -63833,18 +63969,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -63876,13 +64012,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -64024,7 +64160,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 402 100 P 12.02358 6.37650 12.02358 4.45953 402 100 P 12.00402 7.35750 12.00402 4.48227 402 100 P - 11.99626 7.35750 11.99626 4.53344 402 100 P + 11.99626 7.35750 11.99626 4.49744 402 100 P 11.99100 8.33850 11.99100 4.52018 402 100 P 11.99268 9.31950 11.99268 4.55051 402 100 P 12.00279 10.30050 12.00279 4.58084 402 100 P @@ -64036,7 +64172,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 402 100 P 12.16836 16.18650 12.16836 4.76281 402 100 P 12.19689 17.16750 12.19689 4.78556 402 100 P - 12.22063 17.16750 12.22063 6.53447 402 100 P + 12.22063 17.16750 12.22063 4.80376 402 100 P 12.26382 18.54090 12.26382 4.83560 402 100 P 12.32401 19.91430 12.32401 4.87806 402 100 P 12.38688 21.28770 12.38688 4.92053 402 100 P @@ -64064,17 +64200,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 402 0 P 0.00000 72.45367 0.00000 0.00000 402 0 P 0.00000 73.92026 0.00000 0.00000 402 0 P - 0.58341 75.38686 0.58341 0.05935 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 78.32005 0.00000 0.00000 402 100 P - 0.00000 79.78664 0.00000 0.00000 402 100 P - 0.00000 81.25324 0.00000 0.00000 402 100 P - 0.00000 82.71983 0.00000 0.00000 402 100 P + 0.00000 75.38686 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 78.32005 0.00000 0.00000 402 0 P + 0.00000 79.78664 0.00000 0.00000 402 0 P + 0.00000 81.25324 0.00000 0.00000 402 0 P + 0.00000 82.71983 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 85.65302 0.00000 0.00000 402 0 P - 0.00000 87.11961 0.00000 0.00000 402 100 P + 0.00000 87.11961 0.00000 0.00000 402 0 P 23.67856 88.58621 23.67856 6.84433 402 100 P 38.96179 90.05281 38.96179 7.59822 402 100 P 41.63516 91.51940 41.63516 8.16363 402 100 P @@ -64096,13 +64232,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 402 100 P 49.22299 98.19020 49.22299 12.53839 402 100 P 50.24884 99.36740 50.24884 12.89776 402 100 P - 50.76181 99.36740 50.76181 11.01914 402 100 P + 50.76181 99.36740 50.76181 13.07745 402 100 P 51.27482 99.95600 51.27482 13.25714 402 100 P 51.95886 100.54460 51.95886 13.49673 402 100 P 52.64294 101.13320 52.64294 13.73631 402 100 P 53.32706 101.72180 53.32706 13.97589 402 100 P 53.84017 102.31040 53.84017 14.15558 402 100 P - 54.27062 102.31040 54.27062 32.00225 402 100 P + 54.27062 102.31040 54.27062 14.30632 402 100 P 55.04889 103.20311 55.04889 14.57885 402 100 P 56.08662 104.09582 56.08662 14.94222 402 100 P 57.12440 104.98853 57.12440 15.30559 402 100 P @@ -64119,24 +64255,24 @@ Status character 54.39837 107.19950 54.39837 23.69665 402 100 P 59.48446 105.18050 59.48446 26.17662 402 100 P 64.56233 103.16150 64.56233 28.65660 402 100 P - 66.13851 101.14250 68.36569 30.51658 330 97 3 + 66.19304 101.14250 68.36569 30.51658 330 97 3 230.63240 101.14250 230.63240 21.42815 402 100 P 222.85744 102.51590 222.85744 21.99572 402 100 P 221.96585 103.88930 221.96585 22.75248 402 100 P 224.85557 105.26270 224.85557 23.50924 402 100 P - 227.59561 106.63610 229.29925 24.26600 330 99 3 - 221.74732 108.00950 233.16649 24.83357 330 95 3 - 223.62161 108.00950 235.93061 25.21195 330 95 3 - 218.45017 109.38290 240.27129 25.77952 330 91 3 - 214.76375 110.75630 246.29566 26.53628 330 87 3 - 211.54363 112.12970 252.52350 27.29304 330 84 3 - 208.73354 113.50310 258.89457 28.04980 330 81 3 - 192.00047 114.87650 263.74034 28.61737 220 73 2 - 193.28884 114.87650 266.99955 28.99575 220 72 2 - 173.82375 116.24990 271.92333 29.56332 220 64 2 - 155.86177 117.62330 278.53639 30.32008 220 56 2 - 128.20280 118.99670 285.19596 31.07684 110 45 1 - 58.76341 120.37010 291.89239 31.83360 110 20 1 + 227.79407 106.63610 229.29925 24.26600 330 99 3 + 221.92779 108.00950 233.16649 24.83357 330 95 3 + 223.80207 108.00950 235.93061 25.21195 330 95 3 + 218.61287 109.38290 240.27129 25.77952 330 91 3 + 214.90892 110.75630 246.29566 26.53628 330 87 3 + 211.67150 112.12970 252.52350 27.29304 330 84 3 + 208.84435 113.50310 258.89457 28.04980 330 81 3 + 192.30800 114.87650 263.74034 28.61737 220 73 2 + 193.59637 114.87650 266.99955 28.99575 220 73 2 + 174.07694 116.24990 271.92333 29.56332 220 64 2 + 156.06135 117.62330 278.53639 30.32008 220 56 2 + 128.74048 118.99670 285.19596 31.07684 110 45 1 + 59.10934 120.37010 291.89239 31.83360 110 20 1 18.60613 121.74350 296.93368 32.40116 1 0 A 18.82462 121.74350 300.30316 32.77954 1 0 A 19.15229 123.11690 305.36851 33.34711 1 0 A @@ -64167,10 +64303,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' + -7.00 12.903 'Wadzand' -10.00 105.974 'Hydrobiaklei' - -12.00 28.356 'Basisveen' - -12.50 422.289 'Eerste zandlaag' + -12.00 28.358 'Basisveen' + -12.50 422.649 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -64190,10 +64326,10 @@ Layer name -3.00 1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 1.71 'Oude Zeeklei' - -7.00 3.35 'Wadzand' + -7.00 3.33 'Wadzand' -10.00 19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 140.29 'Eerste zandlaag' + -12.50 140.41 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -64496,7 +64632,7 @@ Lambda passive -6.74000 11.10450 36.00989 0.00000 0.72885 0.00000 3.24282 -6.87000 12.43389 38.79470 0.00000 0.72980 0.00000 3.12008 -7.00000 13.76322 40.88301 0.00000 0.73059 0.00000 3.04395 - -7.00000 13.76322 44.37549 0.00000 0.62341 0.00000 3.15583 + -7.00000 13.76322 44.37549 0.00000 0.62080 0.00000 3.15583 -7.14950 14.95606 46.72876 0.00000 0.62136 0.00000 3.12440 -7.29900 16.14883 50.03381 0.00000 0.62186 0.00000 3.09829 -7.44850 17.34153 53.43947 0.00000 0.62232 0.00000 3.08159 @@ -64508,7 +64644,7 @@ Lambda passive -8.19600 23.30431 71.19588 9.31303 0.62416 0.39963 3.05505 -8.34550 24.49678 75.55610 10.01810 0.62446 0.40896 3.08433 -8.49500 25.68924 78.67755 10.36850 0.62474 0.40835 3.09862 - -8.49500 25.68924 80.49425 10.60211 0.69196 0.40797 3.09744 + -8.49500 25.68924 80.49425 10.60211 0.62474 0.40797 3.09744 -8.64450 26.88169 83.23607 10.95252 0.62500 0.40743 3.09639 -8.79400 28.07413 86.89685 11.41974 0.62525 0.40677 3.09526 -8.94350 29.26658 90.56117 11.88697 0.62549 0.40616 3.09435 @@ -64538,7 +64674,7 @@ Lambda passive -10.55000 40.65134 99.41690 15.89365 0.73710 0.39097 2.44560 -10.67000 41.29667 100.73452 16.22710 0.73719 0.39294 2.43929 -10.79000 41.94202 101.72457 16.47803 0.73727 0.39439 2.43473 - -10.79000 41.94202 102.22021 16.60350 0.62643 0.39511 2.43250 + -10.79000 41.94202 102.22021 16.60350 0.73727 0.39511 2.43250 -10.85000 42.26470 102.71627 16.72897 0.73731 0.39581 2.43031 -10.91000 42.58739 103.37821 16.89626 0.73735 0.39674 2.42744 -10.97000 42.91008 104.04078 17.06353 0.73739 0.39766 2.42462 @@ -64568,13 +64704,13 @@ Lambda passive -12.92000 68.66611 343.68930 20.67061 0.52836 0.30103 5.00522 -13.06000 70.09142 348.44322 21.03356 0.52842 0.30009 4.97127 -13.20000 71.51677 352.37096 21.36553 0.52848 0.30024 4.95178 - -13.20000 71.51677 355.12958 21.59051 0.49983 0.30040 4.94106 + -13.20000 71.51677 355.12958 21.59051 0.52848 0.30040 4.94106 -13.34000 72.94213 359.43653 21.92717 0.52853 0.30061 4.92769 -13.48000 74.36752 365.39426 22.37468 0.52859 0.30087 4.91336 -13.62000 75.79293 371.53915 22.82127 0.52864 0.30110 4.90203 -13.76000 77.21836 377.78371 23.26707 0.52869 0.30132 4.89241 -13.90000 78.64381 382.45053 23.60087 0.52874 0.30146 4.88521 - -13.90000 78.64381 385.58770 23.82263 0.75232 0.30155 4.88085 + -13.90000 78.64381 385.58770 23.82263 0.52874 0.30155 4.88085 -14.04000 80.06929 390.33231 24.15485 0.52878 0.30167 4.87493 -14.18000 81.49478 396.71320 24.59734 0.52883 0.30183 4.86796 -14.32000 82.92030 403.14850 25.03929 0.52887 0.30197 4.86188 @@ -64716,7 +64852,7 @@ Status character 0.00000 58.68590 36.00989 8.09347 1 0 A 0.00000 59.46120 38.79470 9.07423 1 0 A 0.00000 60.23650 40.88301 9.81254 1 0 A - 0.00000 60.23650 44.37549 8.76606 1 0 A + 0.00000 60.23650 44.37549 8.72934 1 0 A 0.00000 61.70309 46.72876 9.29308 1 0 A 0.00000 63.16969 50.03381 10.04236 1 0 A 0.00000 64.63629 53.43947 10.79204 1 0 A @@ -64728,7 +64864,7 @@ Status character 9.31303 71.96926 71.19588 14.54558 1 0 A 10.01810 73.43586 75.55610 15.29717 1 0 A 10.36850 74.90245 78.67755 15.86277 1 0 A - 10.60211 74.90245 80.49425 17.98218 1 0 A + 10.60211 74.90245 80.49425 16.23525 1 0 A 10.95252 76.36905 83.23607 16.80109 1 0 A 11.41974 77.83564 86.89685 17.55337 1 0 A 11.88697 79.30224 90.56117 18.30586 1 0 A @@ -64758,7 +64894,7 @@ Status character 15.89365 95.06200 99.41690 29.96429 1 0 A 16.22710 96.23920 100.73452 30.44347 1 0 A 16.47803 97.41640 101.72457 30.80374 1 0 A - 16.60350 97.41640 102.22021 26.32409 1 0 A + 16.60350 97.41640 102.22021 30.98217 1 0 A 16.72897 98.00500 102.71627 31.16232 1 0 A 16.89626 98.59360 103.37821 31.40195 1 0 A 17.06353 99.18220 104.04078 31.64160 1 0 A @@ -64788,30 +64924,30 @@ Status character 20.67061 103.31170 343.68930 36.28041 1 0 A 21.03356 104.68510 348.44322 37.03771 1 0 A 21.36553 106.05850 352.37096 37.60672 1 0 A - 21.59051 106.05850 355.12958 35.92425 1 0 A + 21.59051 106.05850 355.12958 37.98335 1 0 A 21.92717 107.43190 359.43653 38.55236 1 0 A 22.37468 108.80530 365.39426 39.30970 1 0 A 22.82127 110.17870 371.53915 40.06704 1 0 A 23.26707 111.55210 377.78371 40.82439 1 0 A 23.60087 112.92550 382.45053 41.39333 1 0 A - 23.82263 112.92550 385.58770 59.43341 1 0 A + 23.82263 112.92550 385.58770 41.77017 1 0 A 24.15485 114.29890 390.33231 42.33911 1 0 A 24.59734 115.67230 396.71320 43.09648 1 0 A 25.03929 117.04570 403.14850 43.85385 1 0 A 25.48076 118.41910 409.61450 44.61123 1 0 A - 86.27764 119.79250 414.47965 45.18009 110 21 1 - 86.65467 119.79250 417.73399 45.55712 110 21 1 - 153.41334 121.16590 422.62984 46.12598 110 36 1 - 215.76530 122.53930 429.23019 46.88336 220 50 2 - 235.71171 123.91270 435.96362 47.64074 220 54 2 - 255.39524 125.28610 442.71840 48.39812 220 58 2 - 274.21913 126.65950 447.79404 48.96692 220 61 2 - 275.55412 126.65950 451.18238 49.34409 220 61 2 - 294.25367 128.03290 456.27102 49.91289 220 64 2 - 313.53445 129.40630 463.06514 50.67027 220 68 2 - 332.75678 130.77970 469.86914 51.42765 220 71 2 - 351.94853 132.15310 476.68180 52.18503 220 74 2 - 370.46585 133.52650 481.79615 52.75376 220 77 2 + 86.12130 119.79250 414.47965 45.18009 110 21 1 + 86.49833 119.79250 417.73399 45.55712 110 21 1 + 153.44466 121.16590 422.62984 46.12598 110 36 1 + 215.82457 122.53930 429.23019 46.88336 220 50 2 + 235.82134 123.91270 435.96362 47.64074 220 54 2 + 255.55493 125.28610 442.71840 48.39812 220 58 2 + 274.42865 126.65950 447.79404 48.96692 220 61 2 + 275.76364 126.65950 451.18238 49.34409 220 61 2 + 294.51285 128.03290 456.27102 49.91289 220 65 2 + 313.84320 129.40630 463.06514 50.67027 220 68 2 + 333.11501 130.77970 469.86914 51.42765 220 71 2 + 352.35620 132.15310 476.68180 52.18503 220 74 2 + 370.92296 133.52650 481.79615 52.75376 220 77 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -64831,7 +64967,7 @@ Layer name -7.00 27.544 'Wadzand' -10.00 34.297 'Hydrobiaklei' -12.00 16.422 'Basisveen' - -12.50 423.617 'Eerste zandlaag' + -12.50 423.893 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -64853,7 +64989,7 @@ Layer name -7.00 -7.10 'Wadzand' -10.00 -6.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -140.74 'Eerste zandlaag' + -12.50 -140.83 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -65118,21 +65254,21 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 44.64 : Percentage mobilized resistance left - 40.94 : Percentage mobilized resistance right - 351.30 : Effective left - 485.35 : Effective right + 44.67 : Percentage mobilized resistance left + 40.96 : Percentage mobilized resistance right + 351.52 : Effective left + 485.59 : Effective right 1120.54 : Water pressure left 986.23 : Water pressure right 786.97 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -9369.37 : Max moment left --13318.95 : Max moment right --4453.69 : Max mobilized moment left --4642.12 : Max mobilized moment right - 115.82 : Vertical force left - 125.28 : Vertical force right - 47.5 : Max mobilized moment percentage left +-13318.44 : Max moment right +-4456.64 : Max mobilized moment left +-4645.12 : Max mobilized moment right + 115.89 : Vertical force left + 125.36 : Vertical force right + 47.6 : Max mobilized moment percentage left 34.9 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support @@ -65140,10 +65276,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --125.28 : Active force -115.82 : Passive force --125.28 : Plugged active force -115.82 : Plugged passive force +-125.36 : Active force +115.89 : Passive force +-125.36 : Plugged active force +115.89 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -65163,210 +65299,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 765.60354 - 0.00000 0.00000 759.88370 - 0.00000 0.00000 754.16385 - 0.00000 0.00000 748.44401 - 0.00000 0.00000 742.72417 - 0.00000 0.00000 737.00432 - 0.00000 0.00000 737.00432 - 0.00000 0.00000 731.28448 - 0.00000 0.00000 725.56464 - 0.00000 0.00000 719.84480 - 0.00000 0.00000 714.12495 - 0.00000 0.00000 708.40511 - 0.00000 0.00000 708.40511 - 0.00000 -0.00049 707.73219 - -0.00001 -0.00196 707.05926 - -0.00004 -0.00441 706.38634 - -0.00010 -0.00785 705.71342 - -0.00020 -0.01226 705.04050 - -0.00020 -0.01226 705.04050 - -0.00803 -0.14175 696.96542 - -0.03988 -0.41251 688.89034 - -0.11269 -0.82453 680.81528 - -0.24341 -1.37781 672.74024 - -0.44901 -2.07236 664.66525 - -0.44901 -2.07236 664.66525 - -0.68977 -2.75906 657.93615 - -1.00409 -3.54386 651.20712 - -1.40181 -4.42676 644.47824 - -1.89272 -5.40776 637.74953 - -2.48663 -6.48686 631.02107 - -2.48663 -6.48686 631.02107 - -3.19336 -7.66406 624.29291 - -4.02271 -8.93936 617.56514 - -4.98450 -10.31276 610.83790 - -6.08854 -11.78426 604.11130 - -7.34462 -13.35386 597.38546 - -7.34462 -13.35386 597.38546 - -8.55395 -14.78218 591.60196 - -9.88924 -16.28305 585.81926 - -11.35672 -17.85648 580.03748 - -12.96263 -19.50246 574.25678 - -14.71322 -21.22099 568.47729 - -14.71322 -21.22099 568.47729 - -17.26743 -23.61088 560.81820 - -20.10135 -26.12827 553.16193 - -23.22952 -28.77314 545.50899 - -26.66647 -31.54551 537.85991 - -30.42674 -34.44536 530.21519 - -30.42674 -34.44538 530.21519 - -30.82111 -34.74238 529.45097 - -31.21887 -35.04065 528.68681 - -31.62004 -35.34020 527.92270 - -32.02463 -35.64102 527.15864 - -32.43266 -35.94312 526.39464 - -32.43261 -35.94428 526.39464 - -33.83924 -36.92277 523.80814 - -35.28185 -37.80825 521.22227 - -36.75684 -38.60068 518.63707 - -38.26062 -39.30005 516.05256 - -39.78978 -39.91984 513.46877 - -39.78983 -39.92090 513.46877 - -40.99372 -40.33400 511.46115 - -42.20956 -40.71635 509.45400 - -43.43635 -41.06354 507.44733 - -44.67302 -41.37557 505.44115 - -45.91858 -41.65684 503.43547 - -45.91858 -41.65681 503.43547 - -46.75336 -41.81991 502.09865 - -47.59128 -41.96933 500.76205 - -48.43203 -42.10313 499.42570 - -49.27530 -42.22131 498.08959 - -50.12079 -42.32581 496.75373 - -50.12111 -42.32241 496.75373 - -54.43393 -43.93617 490.07830 - -58.90873 -45.56172 483.40972 - -63.54658 -47.19643 476.74858 - -68.34821 -48.83683 470.09546 - -73.31405 -50.48035 463.45095 - -73.31392 -50.47931 463.45095 - -78.44413 -52.12484 456.81565 - -83.73890 -53.77056 450.19023 - -89.19822 -55.41569 443.57538 - -94.82199 -57.05947 436.97179 - -100.61006 -58.70161 430.38014 - -100.61006 -58.70146 430.38014 - -106.56217 -60.34054 423.80114 - -112.67808 -61.97708 417.23556 - -118.95748 -63.61043 410.68419 - -125.40005 -65.24030 404.14783 - -132.00544 -66.86694 397.62727 - -132.00545 -66.86667 397.62727 - -141.52568 -69.13561 388.52654 - -151.36309 -71.39733 379.46074 - -161.51653 -73.65042 370.43240 - -171.98479 -75.89456 361.44400 - -182.76663 -78.13063 352.49806 - -182.76667 -78.12987 352.49806 - -192.94375 -78.44443 344.23141 - -203.16579 -78.84121 336.00584 - -213.44859 -79.37923 327.82353 - -223.84577 -80.87234 319.68669 - -234.50657 -83.08481 311.59751 - -234.50651 -83.08424 311.59751 - -245.43338 -84.96651 303.55822 - -256.58349 -86.51858 295.57118 - -267.91391 -87.74045 287.63881 - -279.38170 -88.63212 279.76350 - -290.94395 -89.19359 271.94766 - -290.94395 -89.19359 271.94766 - -304.31246 -89.64942 263.03615 - -317.74912 -90.10524 254.21031 - -331.25393 -90.56107 245.47396 - -344.82688 -91.01689 236.83089 - -358.46798 -91.47272 228.28491 - -358.46798 -91.47272 228.28491 - -372.17722 -91.92854 219.83984 - -385.95461 -92.38437 211.49956 - -399.80015 -92.84019 203.26796 - -413.71166 -93.25241 195.14895 - -427.68262 -93.66463 187.14642 - -427.68319 -93.66182 187.14642 - -441.71970 -94.11765 179.26428 - -455.82437 -94.57347 171.50652 - -469.99717 -95.02930 163.87711 - -484.23813 -95.48512 156.38006 - -498.54722 -95.94095 149.01934 - -498.54624 -95.93446 149.01934 - -512.92252 -96.39029 141.79902 - -527.36694 -96.84611 134.72314 - -541.79130 -95.53197 127.79572 - -555.78586 -91.30543 121.02075 - -569.02473 -85.73663 114.40224 - -569.02475 -85.73677 114.40224 - -569.19614 -85.65776 114.31478 - -569.36738 -85.57865 114.22735 - -569.53846 -85.49946 114.13994 - -569.70938 -85.42016 114.05256 - -569.88014 -85.34079 113.96521 - -569.88014 -85.28182 113.96521 - -573.09286 -83.80689 112.29835 - -576.24928 -82.31760 110.66064 - -579.34879 -80.81186 109.03977 - -582.39077 -79.28970 107.42342 - -585.37463 -77.75315 105.79926 - -585.37576 -77.68319 105.79926 - -594.39974 -72.69602 100.77861 - -602.81706 -67.56534 95.86580 - -610.60886 -62.27060 91.06223 - -617.75545 -56.81178 86.36933 - -624.23795 -51.20935 81.78850 - -624.23763 -51.20204 81.78850 - -627.22356 -48.32388 79.54052 - -630.03578 -45.40981 77.32099 - -632.67192 -42.45470 75.13003 - -635.12952 -39.45854 72.96775 - -637.40623 -36.42646 70.83427 - -637.40619 -36.42679 70.83427 - -640.48717 -31.27521 67.65374 - -643.09577 -26.04100 64.54003 - -645.22376 -20.71236 61.49336 - -646.86256 -15.28928 58.51395 - -648.00391 -9.78356 55.60204 - -648.00391 -9.78431 55.60204 - -648.63893 -4.16054 52.75778 - -648.75862 1.54588 49.98120 - -648.35472 7.34674 47.27225 - -647.41865 13.24205 44.63088 - -645.94216 19.22000 42.05706 - -645.94292 19.23816 42.05706 - -643.77614 24.15562 39.30647 - -641.10264 29.34772 36.63698 - -637.91477 34.29458 34.04819 - -634.25497 38.90398 31.53971 - -630.13393 43.51487 29.11114 - -630.13532 43.52418 29.11114 - -621.99260 72.50441 25.84502 - -609.90115 100.04760 22.73254 - -594.02123 126.69175 19.76979 - -574.45566 152.73148 16.95288 - -551.28012 178.26336 14.27790 - -551.29961 178.54139 14.27790 - -524.56100 203.13214 11.74006 - -494.51608 225.71981 9.33177 - -461.45747 246.20717 7.04492 - -425.67016 264.72126 4.87137 - -387.50830 279.53286 2.80302 - -387.41690 280.17013 2.80302 - -347.51745 288.60417 0.83064 - -307.01496 288.31197 -1.05606 - -267.18523 279.55268 -2.86677 - -228.94945 266.30965 -4.61121 - -192.71494 251.00058 -6.29907 - -192.79898 250.34960 -6.29907 - -158.94876 232.91811 -7.93997 - -127.67029 213.59276 -9.54171 - -99.23291 192.33628 -11.11128 - -73.90491 169.17735 -12.65565 - -51.94917 144.17741 -14.18180 - -51.93978 143.99964 -14.18180 - -33.63131 117.35251 -15.69622 - -19.13341 89.58381 -17.20243 - -8.59724 60.75668 -18.70301 - -2.17088 30.87235 -20.20055 - 0.00115 0.00513 -21.69761 + 0.00000 0.00000 766.41893 + 0.00000 0.00000 760.69414 + 0.00000 0.00000 754.96934 + 0.00000 0.00000 749.24454 + 0.00000 0.00000 743.51975 + 0.00000 0.00000 737.79495 + 0.00000 0.00000 737.79495 + 0.00000 0.00000 732.07015 + 0.00000 0.00000 726.34536 + 0.00000 0.00000 720.62056 + 0.00000 0.00000 714.89576 + 0.00000 0.00000 709.17097 + 0.00000 0.00000 709.17097 + 0.00000 -0.00049 708.49746 + -0.00001 -0.00196 707.82396 + -0.00004 -0.00441 707.15045 + -0.00010 -0.00785 706.47695 + -0.00020 -0.01226 705.80344 + -0.00020 -0.01226 705.80344 + -0.00803 -0.14175 697.72137 + -0.03988 -0.41251 689.63930 + -0.11269 -0.82453 681.55724 + -0.24341 -1.37781 673.47521 + -0.44901 -2.07236 665.39323 + -0.44901 -2.07236 665.39323 + -0.68977 -2.75906 658.65830 + -1.00409 -3.54386 651.92344 + -1.40181 -4.42676 645.18873 + -1.89272 -5.40776 638.45420 + -2.48663 -6.48686 631.71991 + -2.48663 -6.48686 631.71991 + -3.19336 -7.66406 624.98592 + -4.02271 -8.93936 618.25232 + -4.98450 -10.31276 611.51925 + -6.08854 -11.78426 604.78682 + -7.34462 -13.35386 598.05516 + -7.34462 -13.35386 598.05516 + -8.55395 -14.78218 592.26665 + -9.88924 -16.28305 586.47893 + -11.35672 -17.85648 580.69215 + -12.96263 -19.50246 574.90643 + -14.71322 -21.22099 569.12193 + -14.71322 -21.22099 569.12193 + -17.26743 -23.61088 561.45619 + -20.10135 -26.12827 553.79328 + -23.22952 -28.77314 546.13370 + -26.66647 -31.54551 538.47797 + -30.42674 -34.44536 530.82661 + -30.42674 -34.44538 530.82661 + -30.82111 -34.74238 530.06173 + -31.21887 -35.04065 529.29691 + -31.62004 -35.34020 528.53213 + -32.02463 -35.64102 527.76741 + -32.43266 -35.94312 527.00274 + -32.43261 -35.94428 527.00274 + -33.83924 -36.92278 524.41399 + -35.28185 -37.80825 521.82587 + -36.75684 -38.60068 519.23842 + -38.26062 -39.30005 516.65166 + -39.78978 -39.91984 514.06562 + -39.78983 -39.92090 514.06562 + -40.99372 -40.33401 512.05625 + -42.20956 -40.71635 510.04735 + -43.43635 -41.06354 508.03893 + -44.67303 -41.37557 506.03100 + -45.91858 -41.65684 504.02358 + -45.91858 -41.65681 504.02358 + -46.75336 -41.81991 502.68559 + -47.59128 -41.96934 501.34783 + -48.43203 -42.10314 500.01031 + -49.27530 -42.22131 498.67304 + -50.12079 -42.32581 497.33602 + -50.12111 -42.32241 497.33602 + -54.43393 -43.93617 490.65475 + -58.90874 -45.56172 483.98034 + -63.54658 -47.19643 477.31337 + -68.34821 -48.83683 470.65443 + -73.31405 -50.48035 464.00409 + -73.31392 -50.47930 464.00409 + -78.44413 -52.12484 457.36297 + -83.73890 -53.77056 450.73172 + -89.19822 -55.41568 444.11104 + -94.82199 -57.05947 437.50162 + -100.61006 -58.70160 430.90414 + -100.61006 -58.70146 430.90414 + -106.56217 -60.34054 424.31931 + -112.67808 -61.97708 417.74791 + -118.95748 -63.61043 411.19071 + -125.40005 -65.24030 404.64853 + -132.00543 -66.86694 398.12213 + -132.00545 -66.86666 398.12213 + -141.52568 -69.13561 389.01324 + -151.36308 -71.39732 379.93929 + -161.51653 -73.65042 370.90278 + -171.98478 -75.89456 361.90623 + -182.76663 -78.13063 352.95213 + -182.76667 -78.12987 352.95213 + -192.94374 -78.44443 344.67791 + -203.16578 -78.84121 336.44475 + -213.44858 -79.37922 328.25487 + -223.84577 -80.87234 320.11045 + -234.50656 -83.08481 312.01370 + -234.50650 -83.08424 312.01370 + -245.43338 -84.96651 303.96683 + -256.58348 -86.51858 295.97222 + -267.91390 -87.74045 288.03227 + -279.38169 -88.63212 280.14938 + -290.94394 -89.19359 272.32597 + -290.94394 -89.19358 272.32597 + -304.31245 -89.64941 263.40574 + -317.74911 -90.10524 254.57119 + -331.25392 -90.56106 245.82613 + -344.82687 -91.01689 237.17435 + -358.46797 -91.47271 228.61966 + -358.46797 -91.47271 228.61966 + -372.17721 -91.92854 220.16587 + -385.95460 -92.38436 211.81687 + -399.80014 -92.84019 203.57656 + -413.71382 -93.29601 195.44884 + -427.69564 -93.75184 187.43760 + -427.69621 -93.74903 187.43760 + -441.74577 -94.20486 179.54676 + -455.86346 -94.66068 171.78029 + -470.04931 -95.11651 164.14219 + -484.30330 -95.57233 156.63646 + -498.62544 -96.02816 149.26709 + -498.62445 -96.02166 149.26709 + -513.01377 -96.47749 142.03813 + -527.47122 -96.93331 134.95365 + -541.90862 -95.61917 128.01765 + -555.91622 -91.39263 121.23413 + -569.16813 -85.82383 114.60711 + -569.16814 -85.82398 114.60711 + -569.33971 -85.74497 114.51954 + -569.51112 -85.66586 114.43199 + -569.68237 -85.58667 114.34447 + -569.85347 -85.50737 114.25698 + -570.02440 -85.42800 114.16952 + -570.02440 -85.36902 114.16952 + -573.24044 -83.89409 112.50048 + -576.40017 -82.40479 110.86063 + -579.50300 -80.89906 109.23763 + -582.54829 -79.37690 107.61913 + -585.53546 -77.84035 105.99281 + -585.53660 -77.77036 105.99281 + -594.57104 -72.78318 100.96541 + -602.99882 -67.65250 96.04587 + -610.80108 -62.35777 91.23562 + -617.95812 -56.89894 86.53606 + -624.45108 -51.29651 81.94861 + -624.45063 -51.29441 81.94861 + -627.44211 -48.41626 79.69734 + -630.25987 -45.50218 77.47452 + -632.90155 -42.54707 75.28028 + -635.36469 -39.55091 73.11474 + -637.64694 -36.51883 70.97801 + -637.64692 -36.51931 70.97801 + -640.73631 -31.36773 67.79256 + -643.35334 -26.13352 64.67396 + -645.48975 -20.80488 61.62243 + -647.13696 -15.38180 58.63820 + -648.28673 -9.87608 55.72147 + -648.28673 -9.87682 55.72147 + -648.93018 -4.25305 52.87244 + -649.05828 1.45336 50.09112 + -648.66280 7.25422 47.37745 + -647.73514 13.14953 44.73141 + -646.26708 19.12748 42.15293 + -646.26784 19.14568 42.15293 + -644.11024 24.06520 39.39727 + -641.44558 29.26132 36.72275 + -638.26616 34.21199 34.12899 + -634.61444 38.82499 31.61557 + -630.50111 43.43928 29.18211 + -630.50253 43.44879 29.18211 + -622.36880 72.45117 25.90921 + -610.28336 100.01456 22.79005 + -594.40677 126.67699 19.82072 + -574.84210 152.73311 16.99731 + -551.66528 178.27952 14.31593 + -551.68481 178.55823 14.31593 + -524.94231 203.17502 11.77179 + -494.88884 225.79819 9.35730 + -461.81711 246.31513 7.06433 + -426.01297 264.85291 4.88476 + -387.83042 279.70223 2.81046 + -387.73877 280.34127 2.81046 + -347.81203 288.81924 0.83222 + -307.27761 288.54952 -1.06027 + -267.41430 279.79127 -2.87671 + -229.14577 266.53914 -4.62681 + -192.87986 251.21867 -6.32029 + -192.96417 250.56558 -6.32029 + -159.08176 233.15005 -7.96678 + -127.77235 213.80160 -9.57406 + -99.30770 192.51620 -11.14915 + -73.95687 169.32251 -12.69902 + -51.98358 144.28198 -14.23067 + -51.97415 144.10352 -14.23067 + -33.65353 117.42709 -15.75056 + -19.14628 89.64242 -17.26225 + -8.60313 60.79755 -18.76830 + -2.17239 30.89368 -20.27131 + 0.00115 0.00515 -21.77384 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -65700,7 +65836,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -65712,7 +65848,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -65729,18 +65865,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -65772,13 +65908,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -65920,7 +66056,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 402 100 P 12.02358 6.37650 12.02358 4.45953 402 100 P 12.00402 7.35750 12.00402 4.48227 402 100 P - 11.99626 7.35750 11.99626 4.53344 402 100 P + 11.99626 7.35750 11.99626 4.49744 402 100 P 11.99100 8.33850 11.99100 4.52018 402 100 P 11.99268 9.31950 11.99268 4.55051 402 100 P 12.00279 10.30050 12.00279 4.58084 402 100 P @@ -65932,7 +66068,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 402 100 P 12.16836 16.18650 12.16836 4.76281 402 100 P 12.19689 17.16750 12.19689 4.78556 402 100 P - 12.22063 17.16750 12.22063 6.53447 402 100 P + 12.22063 17.16750 12.22063 4.80376 402 100 P 12.26382 18.54090 12.26382 4.83560 402 100 P 12.32401 19.91430 12.32401 4.87806 402 100 P 12.38688 21.28770 12.38688 4.92053 402 100 P @@ -65960,17 +66096,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 402 0 P 0.00000 72.45367 0.00000 0.00000 402 0 P 0.00000 73.92026 0.00000 0.00000 402 0 P - 0.58341 75.38686 0.58341 0.05935 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 76.85345 0.00000 0.00000 402 100 P - 0.00000 78.32005 0.00000 0.00000 402 100 P - 0.00000 79.78664 0.00000 0.00000 402 100 P - 0.00000 81.25324 0.00000 0.00000 402 100 P - 0.00000 82.71983 0.00000 0.00000 402 100 P + 0.00000 75.38686 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 76.85345 0.00000 0.00000 402 0 P + 0.00000 78.32005 0.00000 0.00000 402 0 P + 0.00000 79.78664 0.00000 0.00000 402 0 P + 0.00000 81.25324 0.00000 0.00000 402 0 P + 0.00000 82.71983 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 84.18642 0.00000 0.00000 402 0 P 0.00000 85.65302 0.00000 0.00000 402 0 P - 0.00000 87.11961 0.00000 0.00000 402 100 P + 0.00000 87.11961 0.00000 0.00000 402 0 P 23.67856 88.58621 23.67856 6.84433 402 100 P 38.96179 90.05281 38.96179 7.59822 402 100 P 41.63516 91.51940 41.63516 8.16363 402 100 P @@ -65992,13 +66128,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 402 100 P 49.22299 98.19020 49.22299 12.53839 402 100 P 50.24884 99.36740 50.24884 12.89776 402 100 P - 50.76181 99.36740 50.76181 11.01914 402 100 P + 50.76181 99.36740 50.76181 13.07745 402 100 P 51.27482 99.95600 51.27482 13.25714 402 100 P 51.95886 100.54460 51.95886 13.49673 402 100 P 52.64294 101.13320 52.64294 13.73631 402 100 P 53.32706 101.72180 53.32706 13.97589 402 100 P 53.84017 102.31040 53.84017 14.15558 402 100 P - 54.27062 102.31040 54.27062 32.00225 402 100 P + 54.27062 102.31040 54.27062 14.30632 402 100 P 55.04889 103.20311 55.04889 14.57885 402 100 P 56.08662 104.09582 56.08662 14.94222 402 100 P 57.12440 104.98853 57.12440 15.30559 402 100 P @@ -66011,25 +66147,25 @@ Status character 63.35155 110.34479 63.35155 17.48580 402 100 P 64.12997 111.23750 64.12997 17.75833 402 100 P 45.47794 111.23750 45.47794 19.35669 402 100 P - 48.96928 109.21850 49.30396 21.21667 330 99 3 - 51.09514 107.19950 54.39837 23.69665 330 94 3 - 53.25159 105.18050 59.48446 26.17662 330 90 3 - 55.43848 103.16150 64.56233 28.65660 330 86 3 - 56.83387 101.14250 68.36569 30.51658 330 83 3 - 219.35460 101.14250 230.63240 21.42815 330 95 3 - 207.00489 102.51590 222.85744 21.99572 330 93 3 - 199.59786 103.88930 221.96585 22.75248 330 90 3 - 195.04103 105.26270 224.85557 23.50924 330 87 3 - 191.84080 106.63610 229.29925 24.26600 330 84 3 - 188.55241 108.00950 233.16649 24.83357 330 81 3 - 190.42669 108.00950 235.93061 25.21195 330 81 3 - 177.61496 109.38290 240.27129 25.77952 220 74 2 - 162.57561 110.75630 246.29566 26.53628 220 66 2 - 148.48360 112.12970 252.52350 27.29304 220 59 2 - 135.25864 113.50310 258.89457 28.04980 220 52 2 - 96.35426 114.87650 263.74034 28.61737 110 37 1 - 96.73264 114.87650 266.99955 28.99575 110 36 1 - 44.86213 116.24990 271.92333 29.56332 110 16 1 + 49.01048 109.21850 49.30396 21.21667 330 99 3 + 51.13427 107.19950 54.39837 23.69665 330 94 3 + 53.28866 105.18050 59.48446 26.17662 330 90 3 + 55.47352 103.16150 64.56233 28.65660 330 86 3 + 56.86689 101.14250 68.36569 30.51658 330 83 3 + 219.51972 101.14250 230.63240 21.42815 330 95 3 + 207.15605 102.51590 222.85744 21.99572 330 93 3 + 199.73526 103.88930 221.96585 22.75248 330 90 3 + 195.16483 105.26270 224.85557 23.50924 330 87 3 + 191.95117 106.63610 229.29925 24.26600 330 84 3 + 188.64952 108.00950 233.16649 24.83357 330 81 3 + 190.52380 108.00950 235.93061 25.21195 330 81 3 + 177.88984 109.38290 240.27129 25.77952 220 74 2 + 162.80800 110.75630 246.29566 26.53628 220 66 2 + 148.67382 112.12970 252.52350 27.29304 220 59 2 + 135.40692 113.50310 258.89457 28.04980 220 52 2 + 96.74463 114.87650 263.74034 28.61737 110 37 1 + 97.12301 114.87650 266.99955 28.99575 110 36 1 + 45.09932 116.24990 271.92333 29.56332 110 17 1 17.40371 117.62330 278.53639 30.32008 1 0 A 17.84110 118.99670 285.19596 31.07684 1 0 A 18.27832 120.37010 291.89239 31.83360 1 0 A @@ -66063,10 +66199,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' + -7.00 12.903 'Wadzand' -10.00 105.974 'Hydrobiaklei' - -12.00 25.991 'Basisveen' - -12.50 298.172 'Eerste zandlaag' + -12.00 26.008 'Basisveen' + -12.50 298.477 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -66086,10 +66222,10 @@ Layer name -3.00 -1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -1.71 'Oude Zeeklei' - -7.00 -3.35 'Wadzand' + -7.00 -3.33 'Wadzand' -10.00 -19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -99.06 'Eerste zandlaag' + -12.50 -99.16 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -66318,7 +66454,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -66330,7 +66466,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -66538,7 +66674,7 @@ Status character 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.15974 106.05850 162.45605 17.72174 1 0 A + 10.15974 106.05850 162.45605 17.68542 1 0 A 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A @@ -66546,22 +66682,22 @@ Status character 12.12378 112.92550 192.70971 21.09083 1 0 A 12.34176 112.92550 196.12085 21.46921 1 0 A 12.66867 114.29890 201.24614 22.03678 1 0 A - 57.67348 115.67230 208.09120 22.79354 110 28 1 - 106.60606 117.04570 214.94675 23.55030 110 50 1 - 122.60157 118.41910 221.81023 24.30706 220 55 2 - 136.88577 119.79250 226.96177 24.87463 220 60 2 - 138.71298 119.79250 230.39786 26.99293 220 60 2 - 152.18723 121.16590 235.55418 25.82058 220 65 2 - 166.53260 122.53930 242.43233 26.57734 220 69 2 - 180.64815 123.91270 249.31352 27.33410 220 72 2 - 194.58384 125.28610 256.19718 28.09086 220 76 2 - 207.71203 126.65950 261.36123 28.65843 220 79 2 - 209.06733 126.65950 264.80452 29.03681 220 79 2 - 217.85102 128.03290 269.97025 29.60438 330 81 3 - 225.85324 129.40630 276.85902 30.36113 330 82 3 - 233.84391 130.77970 283.74896 31.11789 330 82 3 - 241.82859 132.15310 290.63991 31.87465 330 83 3 - 248.64835 133.52650 295.80866 32.44222 330 84 3 + 57.58950 115.67230 208.09120 22.79354 110 28 1 + 106.67528 117.04570 214.94675 23.55030 110 50 1 + 122.66221 118.41910 221.81023 24.30706 220 55 2 + 136.98816 119.79250 226.96177 24.87463 220 60 2 + 138.34084 119.79250 230.39786 25.25301 220 60 2 + 152.33132 121.16590 235.55418 25.82058 220 65 2 + 166.71838 122.53930 242.43233 26.57734 220 69 2 + 180.87560 123.91270 249.31352 27.33410 220 73 2 + 194.85295 125.28610 256.19718 28.09086 220 76 2 + 208.02280 126.65950 261.36123 28.65843 220 80 2 + 209.37810 126.65950 264.80452 29.03681 220 79 2 + 217.95871 128.03290 269.97025 29.60438 330 81 3 + 225.97365 129.40630 276.85902 30.36113 330 82 3 + 233.97706 130.77970 283.74896 31.11789 330 82 3 + 241.97447 132.15310 290.63991 31.87465 330 83 3 + 248.80696 133.52650 295.80866 32.44222 330 84 3 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -66581,7 +66717,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 348.606 'Eerste zandlaag' + -12.50 348.835 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -66603,7 +66739,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 115.82 'Eerste zandlaag' + -12.50 115.89 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -66843,8 +66979,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 519.79924 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 457.35495 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 519.79890 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 457.37401 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -66885,10 +67021,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 21.61 : Percentage mobilized resistance left - 18.98 : Percentage mobilized resistance right - 104.03 : Effective left - 149.36 : Effective right + 21.64 : Percentage mobilized resistance left + 19.00 : Percentage mobilized resistance right + 104.17 : Effective left + 149.53 : Effective right 551.02 : Water pressure left 1120.54 : Water pressure right 481.31 : Max effective resistance left @@ -66897,8 +67033,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.08 : Vertical force left - 44.54 : Vertical force right + 14.12 : Vertical force left + 44.60 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -66907,17 +67043,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --44.54 : Active force -14.08 : Passive force --44.54 : Plugged active force -14.08 : Plugged passive force +-44.60 : Active force +14.12 : Passive force +-44.60 : Plugged active force +14.12 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --30.47 : Resulting Vertical Force Unplugged --30.47 : Resulting Vertical Force Plugged +-30.48 : Resulting Vertical Force Unplugged +-30.48 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -66930,210 +67066,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 13.05919 - 0.00000 0.00000 12.47516 - 0.00000 0.00000 11.89113 - 0.00000 0.00000 11.30710 - 0.00000 0.00000 10.72307 - 0.00000 0.00000 10.13904 - 0.00000 0.00000 10.13904 - 0.00000 0.00000 9.55501 - 0.00000 0.00000 8.97098 - 0.00000 0.00000 8.38695 - 0.00000 0.00000 7.80292 - 0.00000 0.00000 7.21890 - 0.00000 0.00000 7.21890 - 0.00000 0.00049 7.15019 - 0.00001 0.00196 7.08148 - 0.00004 0.00441 7.01277 - 0.00010 0.00785 6.94406 - 0.00020 0.01226 6.87535 - 0.00020 0.01226 6.87535 - 0.00803 0.14175 6.05084 - 0.03988 0.41251 5.22634 - 0.11269 0.82453 4.40181 - 0.24341 1.37781 3.57726 - 0.44901 2.07236 2.75267 - 0.44901 2.07236 2.75267 - 0.68977 2.75906 2.06546 - 1.00409 3.54386 1.37816 - 1.40181 4.42676 0.69073 - 1.89272 5.40776 0.00311 - 2.48663 6.48686 -0.68475 - 2.48663 6.48686 -0.68475 - 3.19336 7.66406 -1.37290 - 4.02271 8.93936 -2.06146 - 4.98450 10.31276 -2.75053 - 6.08854 11.78426 -3.44025 - 7.34462 13.35386 -4.13074 - 7.34462 13.35386 -4.13074 - 8.55395 14.78218 -4.72528 - 9.88924 16.28305 -5.32061 - 11.35672 17.85648 -5.91687 - 12.96263 19.50246 -6.51420 + 0.00000 0.00000 13.05859 + 0.00000 0.00000 12.47458 + 0.00000 0.00000 11.89057 + 0.00000 0.00000 11.30656 + 0.00000 0.00000 10.72254 + 0.00000 0.00000 10.13853 + 0.00000 0.00000 10.13853 + 0.00000 0.00000 9.55452 + 0.00000 0.00000 8.97051 + 0.00000 0.00000 8.38650 + 0.00000 0.00000 7.80248 + 0.00000 0.00000 7.21847 + 0.00000 0.00000 7.21847 + 0.00000 0.00049 7.14976 + 0.00001 0.00196 7.08106 + 0.00004 0.00441 7.01235 + 0.00010 0.00785 6.94364 + 0.00020 0.01226 6.87494 + 0.00020 0.01226 6.87494 + 0.00803 0.14175 6.05045 + 0.03988 0.41251 5.22597 + 0.11269 0.82453 4.40148 + 0.24341 1.37781 3.57695 + 0.44901 2.07236 2.75238 + 0.44901 2.07236 2.75238 + 0.68977 2.75906 2.06519 + 1.00409 3.54386 1.37791 + 1.40181 4.42676 0.69050 + 1.89272 5.40776 0.00290 + 2.48663 6.48686 -0.68494 + 2.48663 6.48686 -0.68494 + 3.19336 7.66406 -1.37307 + 4.02271 8.93936 -2.06160 + 4.98450 10.31276 -2.75066 + 6.08854 11.78426 -3.44036 + 7.34462 13.35386 -4.13082 + 7.34462 13.35386 -4.13082 + 8.55395 14.78218 -4.72534 + 9.88924 16.28305 -5.32065 + 11.35672 17.85648 -5.91690 + 12.96263 19.50246 -6.51422 14.71322 21.22099 -7.11274 - 14.71322 -136.32825 -7.11274 - -0.69319 -133.93836 -7.90777 - -15.81988 -131.42097 -8.70267 - -30.65232 -128.77610 -9.49503 - -45.17599 -126.00373 -10.28242 - -59.37633 -123.10388 -11.06241 - -59.37568 -123.11475 -11.06241 - -69.14084 -121.00364 -11.60407 - -78.73459 -118.82974 -12.14015 - -88.15192 -116.59306 -12.66990 - -97.38781 -114.29360 -13.19256 - -106.43722 -111.93135 -13.70737 - -106.43744 -111.93306 -13.70737 - -108.67011 -111.33269 -13.83475 - -110.89072 -110.72839 -13.96159 - -113.09922 -110.12017 -14.08787 - -115.29550 -109.50803 -14.21358 - -117.47951 -108.89196 -14.33871 - -117.47981 -108.88871 -14.33871 - -128.21253 -105.74951 -14.95523 - -138.62644 -102.51221 -15.55559 - -148.71171 -99.17681 -16.13853 - -158.45853 -95.74331 -16.70277 - -167.85710 -92.21171 -17.24704 - -167.85698 -92.21081 -17.24704 - -176.89740 -88.58111 -17.77012 - -185.56994 -84.85331 -18.27090 - -193.86479 -81.02741 -18.74836 - -201.77215 -77.10341 -19.20143 - -209.28220 -73.08131 -19.62908 - -209.28220 -73.08116 -19.62908 - -216.38513 -68.96096 -20.03030 - -223.07112 -64.74266 -20.40426 - -229.33039 -60.42626 -20.75017 - -235.15311 -56.01176 -21.06724 - -240.52947 -51.49916 -21.35467 - -240.52949 -51.49888 -21.35467 - -247.28780 -45.01643 -21.70584 - -253.12511 -38.34171 -21.99593 - -258.01451 -31.47471 -22.22373 - -261.92906 -24.41543 -22.38804 - -264.84186 -17.16388 -22.48767 - -264.84190 -17.16310 -22.48767 - -266.62602 -10.25735 -22.52137 - -267.50162 -3.18581 -22.49829 - -267.44715 4.05151 -22.41844 - -266.44105 11.45463 -22.28184 - -264.46176 19.02354 -22.08850 - -264.46169 19.02392 -22.08850 - -261.48762 26.75861 -21.83858 - -257.49727 34.65910 -21.53298 - -252.46907 42.72537 -21.17276 - -246.38149 50.95743 -20.75899 - -239.21296 59.35528 -20.29276 - -239.21296 59.35528 -20.29276 - -229.60485 69.21776 -19.69330 - -218.50592 79.29950 -19.02915 - -205.88338 89.60050 -18.30387 - -191.70444 100.12075 -17.52102 - -175.93634 110.86026 -16.68417 - -175.93634 110.86026 -16.68417 - -158.54630 121.81902 -15.79721 - -139.50153 132.99705 -14.86556 - -118.76926 144.39432 -13.89507 - -96.31670 156.01085 -12.89159 - -72.11109 167.84664 -11.86095 - -72.11173 167.84982 -11.86095 - -46.11980 179.90487 -10.80937 - -18.30925 192.17917 -9.74477 - 11.35270 204.67272 -8.67549 - 42.89882 217.38554 -7.60989 - 76.36190 230.31760 -6.55632 - 76.36289 230.32548 -6.55632 - 111.77687 243.47680 -5.52358 - 149.17338 256.84738 -4.52225 - 188.58517 270.43722 -3.56344 - 230.04503 284.24631 -2.65827 - 273.58574 298.27465 -1.81781 - 273.58582 298.27481 -1.81781 - 274.18256 298.46397 -1.80706 - 274.77968 298.65316 -1.79632 - 275.37717 298.84240 -1.78559 - 275.97505 299.03167 -1.77488 - 276.57330 299.22099 -1.76418 - 276.57330 299.22099 -1.76418 - 277.17193 299.41034 -1.75350 - 277.77094 299.59973 -1.74283 - 278.37033 299.78916 -1.73217 - 278.97010 299.97863 -1.72153 - 279.57025 300.16814 -1.71090 - 279.57025 300.16813 -1.71090 - 290.42060 302.16796 -1.52202 - 301.30981 302.79054 -1.33788 - 312.22167 303.42582 -1.15867 - 323.15662 304.07380 -0.98455 - 334.11514 304.73448 -0.81570 - 334.11490 -152.61697 -0.81570 - 323.47767 -151.29596 -0.50284 - 312.93459 -149.92693 -0.20994 - 302.48902 -148.50988 0.06363 - 292.14433 -147.04480 0.31853 - 281.90387 -145.53171 0.55539 - 281.90396 -145.53096 0.55539 - 274.65517 -144.41772 0.71389 - 267.46255 -143.28304 0.86374 - 260.32728 -142.12386 1.00517 - 253.25057 -140.94018 1.13839 - 246.23362 -139.73506 1.26364 - 246.23362 -139.73527 1.26364 - 237.90428 -137.91073 1.40373 - 229.68413 -136.09649 1.53303 - 221.57247 -134.29404 1.65190 - 213.56861 -132.50338 1.76073 - 205.67186 -130.72302 1.85987 - 205.67232 -130.74502 1.85987 - 193.90323 -127.74316 1.99257 - 182.44135 -124.13872 2.10505 - 171.31390 -120.40515 2.19846 - 160.52952 -116.60876 2.27397 - 150.09197 -112.78367 2.33273 - 150.09213 -112.77353 2.33273 - 140.00515 -108.91461 2.37589 - 130.27040 -105.03181 2.40444 - 120.89010 -101.12482 2.41936 - 111.86635 -97.19570 2.42164 - 103.20101 -93.24892 2.41226 - 103.20112 -93.24724 2.41226 - 94.03747 -90.07215 2.38961 - 85.17918 -87.12249 2.35512 - 76.60721 -84.34573 2.30986 - 68.30423 -81.74299 2.25492 - 60.24946 -79.41495 2.19138 - 60.24573 -79.38662 2.19138 - 49.65969 -71.88014 2.09008 - 40.10826 -64.61008 1.97654 - 31.55671 -57.60064 1.85287 - 23.96679 -50.87596 1.72118 - 17.29703 -44.46006 1.58361 - 17.29873 -44.44818 1.58361 - 11.50788 -38.33452 1.44203 - 6.54952 -32.55392 1.29762 - 2.37735 -27.10402 1.15142 - -1.05518 -21.98786 1.00446 - -3.79510 -17.21131 0.85778 - -3.79610 -17.19152 0.85778 - -5.88700 -12.73542 0.71224 - -7.37757 -8.61272 0.56816 - -8.31364 -4.81314 0.42577 - -8.74008 -1.33132 0.28533 - -8.70122 1.83312 0.14705 - -8.70303 1.86460 0.14705 - -8.23413 4.68333 0.01104 - -7.42870 6.70918 -0.12294 - -6.38715 8.05813 -0.25515 - -5.20356 8.73987 -0.38580 - -3.97074 8.76264 -0.51517 - -3.96925 8.75428 -0.51517 - -2.74942 8.45381 -0.64356 - -1.64776 7.17657 -0.77129 - -0.77005 5.25496 -0.89856 - -0.20019 2.82314 -1.02557 - 0.00335 0.02545 -1.15253 + 14.71322 -136.32790 -7.11274 + -0.69315 -133.93801 -7.90774 + -15.81980 -131.42063 -8.70262 + -30.65221 -128.77575 -9.49496 + -45.17583 -126.00339 -10.28232 + -59.37613 -123.10353 -11.06229 + -59.37549 -123.11442 -11.06229 + -69.14061 -121.00331 -11.60393 + -78.73434 -118.82941 -12.14000 + -88.15164 -116.59273 -12.66973 + -97.38750 -114.29327 -13.19237 + -106.43689 -111.93102 -13.70716 + -106.43711 -111.93273 -13.70716 + -108.66977 -111.33236 -13.83454 + -110.89038 -110.72806 -13.96138 + -113.09887 -110.11984 -14.08765 + -115.29515 -109.50770 -14.21336 + -117.47915 -108.89163 -14.33848 + -117.47944 -108.88837 -14.33848 + -128.21214 -105.74917 -14.95498 + -138.62601 -102.51187 -15.55532 + -148.71124 -99.17647 -16.13824 + -158.45803 -95.74297 -16.70246 + -167.85657 -92.21137 -17.24672 + -167.85646 -92.21048 -17.24672 + -176.89684 -88.58078 -17.76977 + -185.56934 -84.85298 -18.27054 + -193.86416 -81.02708 -18.74797 + -201.77149 -77.10308 -19.20102 + -209.28151 -73.08098 -19.62866 + -209.28151 -73.08082 -19.62866 + -216.38440 -68.96062 -20.02986 + -223.07036 -64.74232 -20.40380 + -229.32959 -60.42592 -20.74969 + -235.15227 -56.01142 -21.06673 + -240.52860 -51.49882 -21.35415 + -240.52862 -51.49855 -21.35415 + -247.28689 -45.01610 -21.70529 + -253.12416 -38.34137 -21.99535 + -258.01350 -31.47437 -22.22313 + -261.92801 -24.41510 -22.38742 + -264.84076 -17.16355 -22.48701 + -264.84080 -17.16277 -22.48701 + -266.62488 -10.25702 -22.52069 + -267.50044 -3.18548 -22.49759 + -267.44592 4.05185 -22.41772 + -266.43977 11.45497 -22.28109 + -264.46044 19.02387 -22.08773 + -264.46037 19.02426 -22.08773 + -261.48626 26.75895 -21.83779 + -257.49586 34.65944 -21.53217 + -252.46762 42.72571 -21.17193 + -246.37999 50.95777 -20.75814 + -239.21142 59.35562 -20.29188 + -239.21142 59.35561 -20.29188 + -229.60327 69.21810 -19.69239 + -218.50428 79.29984 -19.02822 + -205.88169 89.60084 -18.30292 + -191.70271 100.12109 -17.52005 + -175.93456 110.86060 -16.68318 + -175.93456 110.86060 -16.68318 + -158.54446 121.81936 -15.79619 + -139.49964 132.99738 -14.86452 + -118.76732 144.39466 -13.89402 + -96.31471 156.01119 -12.89051 + -72.10904 167.84698 -11.85985 + -72.10969 167.85016 -11.85985 + -46.11771 179.90520 -10.80826 + -18.30711 192.17950 -9.74364 + 11.35489 204.67306 -8.67434 + 42.90106 217.38587 -7.60872 + 76.36419 230.31794 -6.55514 + 76.36518 230.32579 -6.55514 + 111.77922 243.47711 -5.52238 + 149.17576 256.84769 -4.52104 + 188.58760 270.43753 -3.56222 + 230.04751 284.24662 -2.65702 + 273.58827 298.27497 -1.81656 + 273.58835 298.27510 -1.81656 + 274.18509 298.46426 -1.80581 + 274.78220 298.65346 -1.79507 + 275.37970 298.84269 -1.78434 + 275.97757 299.03197 -1.77363 + 276.57583 299.22128 -1.76293 + 276.57583 299.22128 -1.76293 + 277.17446 299.41063 -1.75224 + 277.77347 299.60002 -1.74157 + 278.37286 299.78946 -1.73091 + 278.97263 299.97893 -1.72027 + 279.57277 300.16843 -1.70964 + 279.57278 300.16842 -1.70964 + 290.42314 302.16826 -1.52076 + 301.31236 302.79083 -1.33662 + 312.22423 303.42611 -1.15740 + 323.15919 304.07409 -0.98328 + 334.11772 304.73477 -0.81443 + 334.11752 -152.63707 -0.81443 + 323.47888 -151.31606 -0.50156 + 312.93439 -149.94703 -0.20866 + 302.48742 -148.52998 0.06492 + 292.14132 -147.06490 0.31982 + 281.89945 -145.55181 0.55669 + 281.89965 -145.54974 0.55669 + 274.64992 -144.43650 0.71519 + 267.45636 -143.30182 0.86505 + 260.32014 -142.14264 1.00648 + 253.24250 -140.95896 1.13971 + 246.22460 -139.75384 1.26496 + 246.22461 -139.75405 1.26496 + 237.89414 -137.92951 1.40506 + 229.67286 -136.11527 1.53436 + 221.56008 -134.31282 1.65324 + 213.55509 -132.52216 1.76208 + 205.65721 -130.74180 1.86122 + 205.65768 -130.76383 1.86122 + 193.88682 -127.76348 1.99394 + 182.42296 -124.16196 2.10643 + 171.29331 -120.42971 2.19987 + 160.50671 -116.63314 2.27539 + 150.06695 -112.80785 2.33418 + 150.06727 -112.80191 2.33418 + 139.97772 -108.94279 2.37736 + 130.24041 -105.05979 2.40594 + 120.85757 -101.15259 2.42090 + 111.83131 -97.22326 2.42321 + 103.16347 -93.27626 2.41386 + 103.16356 -93.27469 2.41386 + 93.99717 -90.09951 2.39126 + 85.13614 -87.14976 2.35682 + 76.56146 -84.37290 2.31162 + 68.25576 -81.77006 2.25674 + 60.19829 -79.44191 2.19327 + 60.19453 -79.41331 2.19327 + 49.60509 -71.90205 2.09208 + 40.05094 -64.62686 1.97866 + 31.49742 -57.61191 1.85512 + 23.90634 -50.88129 1.72359 + 17.23627 -44.45895 1.58617 + 17.23799 -44.44702 1.58617 + 11.44755 -38.32893 1.44477 + 6.49049 -32.54075 1.30056 + 2.32073 -27.08263 1.15457 + -1.10818 -21.95754 1.00783 + -3.84319 -17.17131 0.86139 + -3.84419 -17.15156 0.86139 + -5.92878 -12.68498 0.71609 + -7.41151 -8.55095 0.57227 + -8.33808 -4.73912 0.43015 + -8.75324 -1.24413 0.28998 + -8.70120 1.93445 0.15198 + -8.70300 1.96577 0.15198 + -8.22989 4.68566 0.01624 + -7.42190 6.74381 -0.11747 + -6.37312 8.12711 -0.24939 + -5.17735 8.84524 -0.37979 + -3.92711 8.90643 -0.50889 + -3.92563 8.89811 -0.50889 + -2.71358 8.30891 -0.63703 + -1.62927 7.07399 -0.76451 + -0.76285 5.19657 -0.89154 + -0.19850 2.79907 -1.01832 + 0.00333 0.02532 -1.14504 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -67359,7 +67495,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -67371,7 +67507,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -67556,51 +67692,51 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 13.72377 101.25211 24.97488 4.06752 220 55 2 - 14.40074 102.14482 26.01680 4.43089 220 55 2 - 15.04503 103.03753 27.05851 4.79425 220 56 2 - 15.65855 103.93024 28.10001 5.15762 220 56 2 - 16.12380 104.82295 28.88100 5.43015 220 56 2 - 16.36266 104.82295 29.40161 5.61184 220 56 2 - 16.80093 105.71566 30.18242 5.88436 220 56 2 - 17.33334 106.60837 31.22336 6.24773 220 56 2 - 17.84210 107.50108 32.26413 6.61110 220 55 2 - 18.32887 108.39379 33.30474 6.97447 220 55 2 - 18.67592 109.28650 34.08510 7.24700 220 55 2 - 12.20269 109.28650 22.39924 8.32270 220 54 2 - 14.07611 107.26750 26.18365 10.18268 220 54 2 - 16.56530 105.24850 31.21648 12.66266 220 53 2 - 19.04222 103.22950 36.23585 15.14263 220 53 2 - 21.50859 101.21050 41.24435 17.62261 220 52 2 - 23.34243 99.19150 44.99531 19.48259 220 52 2 - 57.33521 99.19150 152.00137 13.90162 110 38 1 - 56.04745 100.56490 141.39199 14.46919 110 40 1 - 54.71521 101.93830 143.33806 15.22595 110 38 1 - 53.19042 103.31170 148.44319 15.98271 110 36 1 - 51.51424 104.68510 154.44929 16.73947 110 33 1 - 49.53861 106.05850 159.20703 17.30704 110 31 1 - 49.95332 106.05850 162.45605 17.72174 110 31 1 - 47.86767 107.43190 167.40248 18.25299 110 29 1 - 45.95627 108.80530 174.07947 19.00974 110 26 1 - 44.01347 110.17870 180.82097 19.76650 110 24 1 - 42.05916 111.55210 187.60408 20.52326 110 22 1 - 39.92405 112.92550 192.70971 21.09083 110 21 1 - 40.30243 112.92550 196.12085 21.46921 110 21 1 - 38.19216 114.29890 201.24614 22.03678 110 19 1 - 36.30225 115.67230 208.09120 22.79354 110 17 1 - 34.44817 117.04570 214.94675 23.55030 110 16 1 - 32.63461 118.41910 221.81023 24.30706 110 15 1 - 30.67704 119.79250 226.96177 24.87463 110 14 1 - 32.79534 119.79250 230.39786 26.99293 110 14 1 - 29.14477 121.16590 235.55418 25.82058 110 12 1 - 27.46549 122.53930 242.43233 26.57734 110 11 1 - 25.82330 123.91270 249.31352 27.33410 110 0 1 - 24.21315 125.28610 256.19718 28.09086 110 0 1 - 22.44075 126.65950 261.36123 28.65843 110 0 1 - 22.81913 126.65950 264.80452 29.03681 110 0 1 - 21.06683 128.03290 269.97025 29.60438 110 0 1 - 19.51749 129.40630 276.85902 30.36113 110 0 1 - 17.97767 130.77970 283.74896 31.11789 110 0 1 + 13.72572 101.25211 24.97488 4.06752 220 55 2 + 14.40274 102.14482 26.01680 4.43089 220 55 2 + 15.04707 103.03753 27.05851 4.79425 220 56 2 + 15.66065 103.93024 28.10001 5.15762 220 56 2 + 16.12594 104.82295 28.88100 5.43015 220 56 2 + 16.36480 104.82295 29.40161 5.61184 220 56 2 + 16.80312 105.71566 30.18242 5.88436 220 56 2 + 17.33559 106.60837 31.22336 6.24773 220 56 2 + 17.84441 107.50108 32.26413 6.61110 220 55 2 + 18.33124 108.39379 33.30474 6.97447 220 55 2 + 18.67837 109.28650 34.08510 7.24700 220 55 2 + 12.20359 109.28650 22.39924 8.32270 220 54 2 + 14.07704 107.26750 26.18365 10.18268 220 54 2 + 16.56627 105.24850 31.21648 12.66266 220 53 2 + 19.04323 103.22950 36.23585 15.14263 220 53 2 + 21.50964 101.21050 41.24435 17.62261 220 52 2 + 23.34353 99.19150 44.99531 19.48259 220 52 2 + 57.36823 99.19150 152.00137 13.90162 110 38 1 + 56.08276 100.56490 141.39199 14.46919 110 40 1 + 54.75313 101.93830 143.33806 15.22595 110 38 1 + 53.23128 103.31170 148.44319 15.98271 110 36 1 + 51.55839 104.68510 154.44929 16.73947 110 33 1 + 49.58642 106.05850 159.20703 17.30704 110 31 1 + 49.96480 106.05850 162.45605 17.68542 110 31 1 + 47.91954 107.43190 167.40248 18.25299 110 29 1 + 46.01258 108.80530 174.07947 19.00974 110 26 1 + 44.07460 110.17870 180.82097 19.76650 110 24 1 + 42.12550 111.55210 187.60408 20.52326 110 22 1 + 39.99597 112.92550 192.70971 21.09083 110 21 1 + 40.37435 112.92550 196.12085 21.46921 110 21 1 + 38.27003 114.29890 201.24614 22.03678 110 19 1 + 36.38639 115.67230 208.09120 22.79354 110 17 1 + 34.53888 117.04570 214.94675 23.55030 110 16 1 + 32.73212 118.41910 221.81023 24.30706 110 15 1 + 30.78156 119.79250 226.96177 24.87463 110 14 1 + 31.15994 119.79250 230.39786 25.25301 110 14 1 + 29.25648 121.16590 235.55418 25.82058 110 12 1 + 27.58449 122.53930 242.43233 26.57734 110 11 1 + 25.94963 123.91270 249.31352 27.33410 110 0 1 + 24.34677 125.28610 256.19718 28.09086 110 0 1 + 22.58155 126.65950 261.36123 28.65843 110 0 1 + 22.95993 126.65950 264.80452 29.03681 110 0 1 + 21.21459 128.03290 269.97025 29.60438 110 0 1 + 19.67203 129.40630 276.85902 30.36113 110 0 1 + 18.13886 130.77970 283.74896 31.11789 110 0 1 18.33030 132.15310 290.63991 31.87465 1 0 A 18.65681 133.52650 295.80866 32.44222 1 0 A [END OF DATA] @@ -67620,9 +67756,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 14.081 'Hydrobiaklei' - -12.00 8.896 'Basisveen' - -12.50 126.378 'Eerste zandlaag' + -10.00 14.083 'Hydrobiaklei' + -12.00 8.897 'Basisveen' + -12.50 126.545 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -67644,7 +67780,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.56 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -41.99 'Eerste zandlaag' + -12.50 -42.04 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -67768,24 +67904,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56500 4.00000 0.95000 43.28847 43.28847 - -10.61500 19.99400 20.00000 47.16424 47.16424 - -10.66500 22.03000 22.00000 51.01550 51.01550 - -10.71500 9.05000 13.00000 54.84227 54.84227 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56500 1.00000 1.00000 43.28847 43.28847 + -10.61500 1.00000 1.00000 47.16424 47.16424 + -10.66500 1.00000 1.00000 51.01550 51.01550 + -10.71500 1.00000 1.00000 54.84227 54.84227 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -67861,12 +67997,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.88280 77.88280 1.00000 1.00000 1.00000 -10.59000 77.51530 77.51530 77.51530 1.00000 1.00000 1.00000 -10.64000 77.02530 77.02530 77.02530 1.00000 1.00000 1.00000 @@ -67879,7 +68015,7 @@ Lambda passive -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 -11.03000 11.34090 59.58522 3.31769 0.51628 0.29254 5.25401 -11.09000 12.01230 62.23088 3.46500 0.51628 0.29254 5.25401 - -11.09000 12.01230 43.29272 0.84213 0.74382 0.06940 3.56761 + -11.09000 12.01230 43.29272 0.84213 0.74083 0.06940 3.56761 -11.18100 12.50279 43.42601 1.04828 0.74083 0.08384 3.47331 -11.27200 12.99328 43.84429 1.31117 0.74083 0.10091 3.37438 -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 @@ -67891,7 +68027,7 @@ Lambda passive -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 -11.90900 16.42671 49.41509 3.09961 0.74083 0.18869 3.00822 -12.00000 16.91720 50.11123 3.29057 0.74083 0.19593 2.98377 - -12.00000 16.91720 33.15113 7.12286 0.87974 0.43929 2.04454 + -12.00000 16.91720 33.15113 7.12286 0.77767 0.43929 2.04454 -12.10000 14.10620 29.54181 5.78200 0.77767 0.40989 2.09424 -12.20000 11.29520 24.76262 3.99406 0.77767 0.35361 2.19231 -12.30000 8.48420 20.01523 2.20602 0.77767 0.26002 2.35912 @@ -67921,7 +68057,7 @@ Lambda passive -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 -15.16000 29.96760 145.21264 9.13291 0.53046 0.30476 4.84565 -15.30000 31.39420 150.36370 9.45982 0.53046 0.30479 4.84457 - -15.30000 31.39420 153.79896 9.67775 0.38237 0.30480 4.84393 + -15.30000 31.39420 153.79896 9.67775 0.53046 0.30480 4.84393 -15.44000 32.82080 158.95348 10.00461 0.53046 0.30483 4.84307 -15.58000 34.24740 165.82865 10.44041 0.53046 0.30485 4.84208 -15.72000 35.67400 172.70644 10.87617 0.53046 0.30488 4.84124 @@ -68081,12 +68217,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00460 0.00000 78.00460 78.00460 1 100 A - 78.00513 0.00000 78.00513 78.00513 1 100 A + 78.00512 0.00000 78.00512 78.00513 1 100 A 77.88280 0.00000 77.88280 77.88280 1 100 A 77.51530 0.49050 77.51530 77.51530 1 100 A 77.02530 0.98100 77.02530 77.02530 1 100 A @@ -68099,9 +68235,9 @@ Status character 3.12128 71.11830 56.05768 5.50841 1 0 A 3.31769 71.70690 59.58522 5.85504 1 0 A 3.46500 72.29550 62.23088 6.11501 1 0 A - 0.84213 72.29550 43.29272 9.02621 1 0 A - 3.08583 73.18821 43.42601 9.26243 110 0 1 - 1.94794 74.08092 43.84429 9.62580 110 0 1 + 0.84213 72.29550 43.29272 8.98991 1 0 A + 3.12085 73.18821 43.42601 9.26243 110 0 1 + 1.98103 74.08092 43.84429 9.62580 110 0 1 1.56911 74.97363 44.43915 9.98917 1 0 A 1.82525 75.86634 45.14292 10.35254 1 0 A 2.01682 76.75905 45.71787 10.62507 1 0 A @@ -68111,7 +68247,7 @@ Status character 2.84498 79.43718 48.50158 11.80602 1 0 A 3.09961 80.32989 49.41509 12.16939 1 0 A 3.29057 81.22260 50.11123 12.44192 1 0 A - 7.12286 81.22260 33.15113 14.26458 1 0 A + 7.12286 81.22260 33.15113 12.60942 1 0 A 5.78200 85.20360 29.54181 10.96991 1 0 A 3.99406 89.18460 24.76262 8.78389 1 0 A 2.20602 93.16560 20.01523 6.59787 1 0 A @@ -68136,17 +68272,17 @@ Status character 6.95314 120.35520 110.94008 12.11292 1 0 A 7.28013 121.72860 116.07149 12.68049 1 0 A 7.49812 121.72860 119.49465 13.05887 1 0 A - 10.30225 123.10200 124.63248 13.62644 110 0 1 - 13.49505 124.47540 131.48763 14.38320 110 0 1 - 16.65075 125.84880 138.34788 15.13996 110 12 1 - 19.77443 127.22220 145.21264 15.89672 110 14 1 - 22.68196 128.59560 150.36370 16.46429 110 15 1 - 18.35840 128.59560 153.79896 12.14072 110 12 1 - 25.94779 129.96900 158.95348 17.41024 110 16 1 - 29.01064 131.34240 165.82865 18.16700 110 17 1 - 32.06398 132.71580 172.70644 18.92376 110 19 1 - 35.11204 134.08920 179.58654 19.68052 110 20 1 - 37.96989 135.46260 184.74790 20.24809 110 21 1 + 10.19054 123.10200 124.63248 13.62644 110 0 1 + 13.37605 124.47540 131.48763 14.38320 110 0 1 + 16.52442 125.84880 138.34788 15.13996 110 12 1 + 19.64081 127.22220 145.21264 15.89672 110 14 1 + 22.54117 128.59560 150.36370 16.46429 110 15 1 + 22.91955 128.59560 153.79896 16.84267 110 15 1 + 25.80002 129.96900 158.95348 17.41024 110 16 1 + 28.85610 131.34240 165.82865 18.16700 110 17 1 + 31.90279 132.71580 172.70644 18.92376 110 18 1 + 34.94428 134.08920 179.58654 19.68052 110 19 1 + 37.79556 135.46260 184.74790 20.24809 110 20 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -68161,9 +68297,9 @@ Layer name [DATA] -9.99 59.147 'OWB' -10.79 0.907 'Grind' - -11.09 2.134 'Hydrobiaklei' + -11.09 2.140 'Hydrobiaklei' -12.00 1.596 'Basisveen' - -12.50 40.245 'Eerste zandlaag' + -12.50 40.385 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -68182,7 +68318,7 @@ Layer name -10.79 0.32 'Grind' -11.09 0.39 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.37 'Eerste zandlaag' + -12.50 13.42 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -68422,8 +68558,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 660.36052 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 767.24947 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 660.35865 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 767.27250 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -68469,8 +68605,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 32.45 : Percentage mobilized resistance left 25.53 : Percentage mobilized resistance right - 156.18 : Effective left - 134.39 : Effective right + 156.17 : Effective left + 134.40 : Effective right 551.02 : Water pressure left 540.51 : Water pressure right 481.31 : Max effective resistance left @@ -68512,210 +68648,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -11.76553 - 0.00000 0.00000 -11.68169 - 0.00000 0.00000 -11.59785 - 0.00000 0.00000 -11.51402 - 0.00000 0.00000 -11.43018 - 0.00000 0.00000 -11.34634 - 0.00000 0.00000 -11.34634 - 0.00000 0.00000 -11.26250 - 0.00000 0.00000 -11.17866 - 0.00000 0.00000 -11.09483 - 0.00000 0.00000 -11.01099 - 0.00000 0.00000 -10.92715 - 0.00000 0.00000 -10.92715 - 0.00000 0.00000 -10.81536 - 0.00000 0.00000 -10.70358 - 0.00000 0.00000 -10.59180 - 0.00000 0.00000 -10.48001 - 0.00000 0.00000 -10.36823 - 0.00000 0.00000 -10.36823 - 0.00000 0.00000 -10.27507 - 0.00000 0.00000 -10.18192 - 0.00000 0.00000 -10.08877 - 0.00000 0.00000 -9.99561 - 0.00000 0.00000 -9.90246 - 0.00000 0.00000 -9.90246 - 0.00000 0.00000 -9.80931 - 0.00000 0.00000 -9.71615 - 0.00000 0.00000 -9.62300 - 0.00000 0.00000 -9.52985 - 0.00000 0.00000 -9.43669 - 0.00000 0.00000 -9.43669 - 0.00000 0.00000 -9.35658 - 0.00000 0.00000 -9.27647 - 0.00000 0.00000 -9.19636 - 0.00000 0.00000 -9.11624 - 0.00000 0.00000 -9.03613 - 0.00000 -0.51052 -9.03613 - -0.05820 -0.51052 -8.92994 - -0.11640 -0.51052 -8.82373 - -0.17460 -0.51052 -8.71750 - -0.23280 -0.51052 -8.61125 - -0.29099 -0.51052 -8.50496 - -0.29035 -0.52139 -8.50496 - -0.33206 -0.52139 -8.43034 - -0.37377 -0.52139 -8.35569 - -0.41548 -0.52139 -8.28102 - -0.45719 -0.52139 -8.20631 - -0.49890 -0.52139 -8.13156 - -0.49912 -0.52310 -8.13156 - -0.50958 -0.52310 -8.11287 - -0.52005 -0.52310 -8.09418 - -0.53051 -0.52310 -8.07548 - -0.54097 -0.52310 -8.05678 - -0.55143 -0.52310 -8.03807 - -0.55173 -0.51984 -8.03807 - -0.60371 -0.51984 -7.94452 - -0.65570 -0.51984 -7.85088 - -0.70768 -0.51984 -7.75716 - -0.75966 -0.51984 -7.66336 - -0.81165 -0.51984 -7.56945 - -0.81154 -0.51895 -7.56945 - -0.86343 -0.51895 -7.47545 - -0.91533 -0.51895 -7.38134 - -0.96722 -0.51895 -7.28711 - -1.01912 -0.51895 -7.19276 - -1.07101 -0.51895 -7.09828 - -1.07101 -0.51880 -7.09828 - -1.12289 -0.51880 -7.00366 - -1.17477 -0.51880 -6.90891 - -1.22665 -0.51880 -6.81400 - -1.27853 -0.51880 -6.71895 - -1.33041 -0.51880 -6.62373 - -1.33043 -0.51852 -6.62373 - -1.40302 -0.51852 -6.49014 - -1.47561 -0.51852 -6.35620 - -1.54821 -0.51852 -6.22190 - -1.62080 -0.51852 -6.08722 - -1.69339 -0.51852 -5.95214 - -1.69343 -0.51774 -5.95214 - -1.76074 -0.51774 -5.82633 - -1.82804 -0.51774 -5.70015 - -1.89535 -0.51774 -5.57357 - -1.96266 -0.51774 -5.44660 - -2.02996 -0.51774 -5.31920 - -2.02989 -0.51736 -5.31920 - -2.09715 -0.51736 -5.19138 - -2.16440 -0.51736 -5.06311 - -2.23166 -0.51736 -4.93437 - -2.29892 -0.51736 -4.80517 - -2.36617 -0.51736 -4.67547 - -2.36617 -0.51736 -4.67547 - -2.44352 -0.51736 -4.52569 - -2.52087 -0.51736 -4.37523 - -2.59821 -0.51736 -4.22406 - -2.67556 -0.51736 -4.07215 - -2.75290 -0.51736 -3.91949 - -2.75290 -0.51736 -3.91949 - -2.83025 -0.51736 -3.76606 - -2.90759 -0.51736 -3.61183 - -2.98494 -0.51736 -3.45678 - -3.06228 -0.51736 -3.30089 - -3.13963 -0.51736 -3.14414 - -3.14027 -0.51418 -3.14414 - -3.21714 -0.51418 -2.98650 - -3.29401 -0.51418 -2.82796 - -3.37088 -0.51418 -2.66849 - -3.44775 -0.51418 -2.50807 - -3.52462 -0.51418 -2.34669 - -3.52364 -0.50631 -2.34669 - -3.59933 -0.50631 -2.18430 - -3.67502 -0.50631 -2.02091 - -3.75072 -0.50631 -1.85648 - -3.82641 -0.50631 -1.69100 - -3.90210 -0.50631 -1.52443 - -3.90202 -0.50615 -1.52443 - -3.90298 -0.42737 -1.52220 - -3.90368 -0.27137 -1.51996 - -3.90407 -0.11537 -1.51772 - -3.90414 0.04063 -1.51549 - -3.90390 0.19663 -1.51325 - -3.90390 0.19663 -1.51325 - -3.90335 0.35263 -1.51102 - -3.90249 0.50863 -1.50878 - -3.90132 0.66463 -1.50654 - -3.89983 0.82063 -1.50430 - -3.89804 0.97663 -1.50207 - -3.89804 0.97661 -1.50207 - -3.82952 2.36659 -1.46176 - -3.74432 2.36660 -1.42139 - -3.65912 2.36661 -1.38096 - -3.57393 2.36661 -1.34047 - -3.48873 2.36662 -1.29992 - -3.48896 35.22065 -1.29992 - -1.02351 35.22066 -1.22094 - 1.44193 35.22068 -1.14189 - 3.90738 35.22069 -1.06293 - 6.37283 35.22071 -0.98422 - 8.83828 35.22072 -0.90589 - 8.83837 35.22150 -0.90589 - 10.24729 35.22347 -0.86137 - 11.65623 35.22348 -0.81706 - 13.06517 35.22349 -0.77298 - 14.47411 35.22350 -0.72916 - 15.88302 35.22154 -0.68564 - 15.88302 35.22150 -0.68564 - 16.23523 35.22151 -0.67481 - 16.58745 35.22151 -0.66399 - 16.93966 35.22151 -0.65320 - 17.29188 35.22151 -0.64243 - 17.64409 35.22151 -0.63169 - 17.64412 35.22094 -0.63169 - 19.68900 32.92219 -0.56769 - 21.59215 30.49164 -0.50458 - 23.34508 27.91510 -0.44245 - 24.93908 25.19461 -0.38137 - 26.36591 22.34836 -0.32142 - 26.36655 22.32824 -0.32142 - 28.30557 20.26209 -0.23282 - 30.05228 18.13117 -0.14717 - 31.60610 16.02175 -0.06464 - 32.96878 13.92999 0.01461 - 34.14184 11.85432 0.09042 - 34.14185 11.85953 0.09042 - 35.12582 9.77577 0.16265 - 35.92213 7.72789 0.23120 - 36.53283 5.69782 0.29603 - 36.96003 3.69716 0.35707 - 37.20693 1.73653 0.41424 - 37.20667 1.73646 0.41424 - 37.35131 1.19401 0.47259 - 37.45241 0.85976 0.52622 - 37.52807 0.66980 0.57514 - 37.58937 0.56965 0.61934 - 37.64322 0.50598 0.65879 - 37.64864 0.48002 0.65879 - 37.77121 1.32404 0.70605 - 37.99913 1.73426 0.74397 - 38.19932 0.91265 0.77252 - 38.19376 -1.21416 0.79167 - 37.81097 -4.37777 0.80141 - 37.82347 -4.40543 0.80141 - 36.94252 -8.17864 0.80171 - 35.53831 -11.84781 0.79290 - 33.64641 -15.06107 0.77541 - 31.35500 -17.55029 0.74971 - 28.76547 -19.32943 0.71625 - 28.75415 -19.34496 0.71625 - 25.96150 -20.44438 0.67562 - 23.05849 -20.92730 0.62859 - 20.12887 -20.83154 0.57587 - 17.25077 -20.19762 0.51817 - 14.49663 -19.06866 0.45620 - 14.49546 -18.98399 0.45620 - 11.93775 -17.53374 0.39070 - 9.59144 -15.96734 0.32225 - 7.47159 -14.30040 0.25138 - 5.59156 -12.54279 0.17861 - 3.96321 -10.70788 0.10447 - 3.96842 -10.74050 0.10447 - 2.59865 -8.81710 0.02943 - 1.50262 -6.82976 -0.04624 - 0.69036 -4.75565 -0.12235 - 0.17945 -2.50126 -0.19870 - 0.00199 0.00970 -0.27509 + 0.00000 0.00000 -11.76666 + 0.00000 0.00000 -11.68279 + 0.00000 0.00000 -11.59892 + 0.00000 0.00000 -11.51504 + 0.00000 0.00000 -11.43117 + 0.00000 0.00000 -11.34729 + 0.00000 0.00000 -11.34729 + 0.00000 0.00000 -11.26342 + 0.00000 0.00000 -11.17955 + 0.00000 0.00000 -11.09567 + 0.00000 0.00000 -11.01180 + 0.00000 0.00000 -10.92793 + 0.00000 0.00000 -10.92793 + 0.00000 0.00000 -10.81609 + 0.00000 0.00000 -10.70426 + 0.00000 0.00000 -10.59243 + 0.00000 0.00000 -10.48060 + 0.00000 0.00000 -10.36877 + 0.00000 0.00000 -10.36877 + 0.00000 0.00000 -10.27557 + 0.00000 0.00000 -10.18238 + 0.00000 0.00000 -10.08919 + 0.00000 0.00000 -9.99599 + 0.00000 0.00000 -9.90280 + 0.00000 0.00000 -9.90280 + 0.00000 0.00000 -9.80961 + 0.00000 0.00000 -9.71642 + 0.00000 0.00000 -9.62322 + 0.00000 0.00000 -9.53003 + 0.00000 0.00000 -9.43684 + 0.00000 0.00000 -9.43684 + 0.00000 0.00000 -9.35669 + 0.00000 0.00000 -9.27654 + 0.00000 0.00000 -9.19640 + 0.00000 0.00000 -9.11625 + 0.00000 0.00000 -9.03611 + 0.00000 -0.50865 -9.03611 + -0.05799 -0.50865 -8.92986 + -0.11597 -0.50865 -8.82361 + -0.17396 -0.50865 -8.71734 + -0.23194 -0.50865 -8.61104 + -0.28993 -0.50865 -8.50471 + -0.28928 -0.51953 -8.50471 + -0.33084 -0.51953 -8.43006 + -0.37240 -0.51953 -8.35538 + -0.41397 -0.51953 -8.28067 + -0.45553 -0.51953 -8.20593 + -0.49709 -0.51953 -8.13116 + -0.49731 -0.52124 -8.13116 + -0.50774 -0.52124 -8.11246 + -0.51816 -0.52124 -8.09375 + -0.52859 -0.52124 -8.07505 + -0.53901 -0.52124 -8.05634 + -0.54944 -0.52124 -8.03763 + -0.54973 -0.51798 -8.03763 + -0.60153 -0.51798 -7.94403 + -0.65333 -0.51798 -7.85036 + -0.70513 -0.51798 -7.75661 + -0.75693 -0.51798 -7.66276 + -0.80872 -0.51798 -7.56882 + -0.80861 -0.51709 -7.56882 + -0.86032 -0.51709 -7.47478 + -0.91203 -0.51709 -7.38063 + -0.96374 -0.51709 -7.28637 + -1.01545 -0.51709 -7.19198 + -1.06716 -0.51709 -7.09747 + -1.06716 -0.51694 -7.09747 + -1.11885 -0.51694 -7.00282 + -1.17054 -0.51694 -6.90803 + -1.22224 -0.51694 -6.81309 + -1.27393 -0.51694 -6.71800 + -1.32562 -0.51694 -6.62275 + -1.32564 -0.51666 -6.62275 + -1.39797 -0.51666 -6.48912 + -1.47031 -0.51666 -6.35514 + -1.54264 -0.51666 -6.22080 + -1.61497 -0.51666 -6.08608 + -1.68730 -0.51666 -5.95096 + -1.68734 -0.51588 -5.95096 + -1.75441 -0.51588 -5.82511 + -1.82147 -0.51588 -5.69890 + -1.88854 -0.51588 -5.57229 + -1.95560 -0.51588 -5.44529 + -2.02266 -0.51588 -5.31787 + -2.02259 -0.51549 -5.31787 + -2.08961 -0.51549 -5.19001 + -2.15662 -0.51549 -5.06172 + -2.22364 -0.51549 -4.93296 + -2.29065 -0.51549 -4.80373 + -2.35766 -0.51549 -4.67401 + -2.35767 -0.51550 -4.67401 + -2.43473 -0.51550 -4.52421 + -2.51180 -0.51550 -4.37373 + -2.58887 -0.51550 -4.22254 + -2.66593 -0.51550 -4.07062 + -2.74300 -0.51550 -3.91795 + -2.74300 -0.51550 -3.91795 + -2.82007 -0.51550 -3.76451 + -2.89713 -0.51550 -3.61028 + -2.97420 -0.51550 -3.45523 + -3.05127 -0.51550 -3.29934 + -3.12833 -0.51550 -3.14259 + -3.12898 -0.51232 -3.14259 + -3.20557 -0.51232 -2.98496 + -3.28216 -0.51232 -2.82643 + -3.35875 -0.51232 -2.66697 + -3.43534 -0.51232 -2.50657 + -3.51194 -0.51232 -2.34520 + -3.51095 -0.50447 -2.34520 + -3.58637 -0.50447 -2.18285 + -3.66179 -0.50447 -2.01948 + -3.73720 -0.50447 -1.85508 + -3.81262 -0.50447 -1.68963 + -3.88804 -0.50447 -1.52311 + -3.88796 -0.50433 -1.52311 + -3.88892 -0.42555 -1.52087 + -3.88961 -0.26955 -1.51864 + -3.89000 -0.11355 -1.51640 + -3.89007 0.04245 -1.51417 + -3.88983 0.19845 -1.51193 + -3.88983 0.19845 -1.51193 + -3.88927 0.35445 -1.50970 + -3.88841 0.51045 -1.50746 + -3.88723 0.66645 -1.50522 + -3.88574 0.82245 -1.50299 + -3.88394 0.97845 -1.50075 + -3.88394 0.97843 -1.50075 + -3.81536 2.36841 -1.46045 + -3.73010 2.36842 -1.42009 + -3.64483 2.36842 -1.37967 + -3.55957 2.36843 -1.33919 + -3.47430 2.36844 -1.29865 + -3.47450 35.19811 -1.29865 + -1.01063 35.19812 -1.21969 + 1.45324 35.19814 -1.14067 + 3.91711 35.19815 -1.06174 + 6.38098 35.19817 -0.98304 + 8.84485 35.19818 -0.90475 + 8.84505 35.20028 -0.90475 + 10.25311 35.20225 -0.86024 + 11.66120 35.20226 -0.81594 + 13.06929 35.20227 -0.77187 + 14.47738 35.20227 -0.72807 + 15.88545 35.20032 -0.68456 + 15.88544 35.20028 -0.68456 + 16.23745 35.20028 -0.67374 + 16.58945 35.20029 -0.66293 + 16.94145 35.20029 -0.65214 + 17.29346 35.20029 -0.64137 + 17.64546 35.20029 -0.63063 + 17.64549 35.19971 -0.63063 + 19.68909 32.90086 -0.56665 + 21.59095 30.47019 -0.50357 + 23.34259 27.89352 -0.44146 + 24.93530 25.17289 -0.38040 + 26.36082 22.32649 -0.32047 + 26.36146 22.30634 -0.32047 + 28.29847 20.23962 -0.23191 + 30.04309 18.10767 -0.14629 + 31.59472 15.99725 -0.06379 + 32.95512 13.90452 0.01543 + 34.12583 11.82794 0.09121 + 34.12600 11.82896 0.09121 + 35.10845 9.76593 0.16341 + 35.90383 7.71723 0.23194 + 36.51353 5.68631 0.29675 + 36.93963 3.68470 0.35776 + 37.18535 1.72309 0.41492 + 37.18508 1.72289 0.41492 + 37.32835 1.18019 0.47324 + 37.42808 0.84642 0.52686 + 37.50247 0.65770 0.57577 + 37.56260 0.55825 0.61996 + 37.61532 0.49474 0.65941 + 37.62070 0.46905 0.65941 + 37.74168 1.31218 0.70667 + 37.96808 1.72616 0.74459 + 38.16767 0.91171 0.77315 + 38.16240 -1.20912 0.79232 + 37.78056 -4.37049 0.80209 + 37.79308 -4.39809 0.80209 + 36.91724 -8.12800 0.80243 + 35.51991 -11.80073 0.79366 + 33.63418 -15.02038 0.77622 + 31.34795 -17.51671 0.75056 + 28.76264 -19.30271 0.71715 + 28.75132 -19.31827 0.71715 + 25.96195 -20.42428 0.67658 + 23.06131 -20.91347 0.62960 + 20.13320 -20.82367 0.57693 + 17.25582 -20.19532 0.51928 + 14.50163 -19.07153 0.45736 + 14.50046 -18.98683 0.45736 + 11.94211 -17.53919 0.39191 + 9.59502 -15.97296 0.32351 + 7.47438 -14.30595 0.25269 + 5.59360 -12.54800 0.17996 + 3.96456 -10.71249 0.10587 + 3.96978 -10.74515 0.10587 + 2.59941 -8.82089 0.03087 + 1.50296 -6.83175 -0.04476 + 0.69054 -4.75647 -0.12083 + 0.17951 -2.50199 -0.19713 + 0.00199 0.00971 -0.27348 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -68836,42 +68972,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.22500 8.00000 6.00000 18.33028 18.33028 - -10.29500 13.00000 12.00000 23.79047 23.79047 - -10.36500 1.00400 48.00000 29.25070 29.25070 - -10.43500 8.00000 8.30000 34.71099 34.71099 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.54000 3.59100 3.60000 42.90151 42.90151 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.60000 21.00000 43.00000 47.58186 47.58186 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.68000 17.00000 8.00000 53.82238 53.82238 - -10.72000 44.10000 45.00000 56.94266 56.94266 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.22500 1.00000 1.00000 18.33028 18.33028 + -10.29500 1.00000 1.00000 23.79047 23.79047 + -10.36500 1.00000 1.00000 29.25070 29.25070 + -10.43500 1.00000 1.00000 34.71099 34.71099 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.54000 1.00000 1.00000 42.90151 42.90151 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.60000 1.00000 1.00000 47.58186 47.58186 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.68000 1.00000 1.00000 53.82238 53.82238 + -10.72000 1.00000 1.00000 56.94266 56.94266 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 71.15100 34.65200 64.09093 62.48559 -10.88000 71.15100 34.65200 67.64965 62.68374 -10.94000 71.15100 34.65200 71.42002 62.89367 @@ -68946,7 +69082,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -68977,7 +69113,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 56.66635 3.15517 0.67892 0.29254 5.25401 + -10.79000 10.61750 56.66635 3.15517 0.51628 0.29254 5.25401 -10.85000 11.28890 59.31201 3.30248 0.51628 0.29254 5.25401 -10.91000 11.96030 62.83955 3.49889 0.51628 0.29254 5.25401 -10.97000 12.63170 66.36710 3.69530 0.51628 0.29254 5.25401 @@ -69007,7 +69143,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -69166,38 +69302,38 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 1 100 A 78.00128 0.00000 78.00128 78.00128 1 100 A 78.00164 0.00000 78.00164 78.00164 1 100 A 78.00191 0.00000 78.00191 78.00191 1 100 A - 78.00217 0.00000 78.00217 78.00217 1 0 A + 78.00217 0.00000 78.00217 78.00218 1 100 A 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00340 0.00000 78.00340 78.00340 1 100 A 78.00410 0.00000 78.00410 78.00410 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A - 78.00532 0.00000 78.00532 78.00532 1 100 A + 78.00532 0.00000 78.00532 78.00533 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00590 0.00000 78.00590 78.00590 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00740 0.00000 78.00740 78.00740 1 0 A + 78.00740 0.00000 78.00740 78.00740 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.15517 67.39050 56.66635 7.32241 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.15517 67.39050 56.66635 5.56822 1 0 A 3.30248 67.97910 59.31201 5.82819 1 0 A 3.49889 68.56770 62.83955 6.17482 1 0 A 3.69530 69.15630 66.36710 6.52145 1 0 A @@ -69215,42 +69351,42 @@ Status character 3.86196 77.47518 52.84194 13.25967 1 0 A 4.11705 78.36789 53.74489 13.62304 1 0 A 4.30833 79.26060 54.43367 13.89557 1 0 A - 12.15428 79.26060 36.58125 14.13536 110 0 1 - 12.61830 83.24160 32.95268 12.49585 110 38 1 - 12.18433 87.22260 28.14940 10.30983 110 43 1 - 10.83872 91.20360 23.37981 8.12381 110 46 1 - 9.32700 95.18460 18.63653 5.93779 220 50 2 - 7.66621 99.16560 15.09227 4.29828 220 51 2 - 22.07039 99.16560 26.26428 2.74836 330 84 3 - 27.64539 100.53900 31.53892 3.31593 330 88 3 - 23.34294 101.91240 38.50115 4.07269 220 61 2 - 15.82932 103.28580 45.39611 4.82945 110 35 1 - 7.89443 104.65920 52.24433 5.58621 110 15 1 + 12.15258 79.26060 36.58125 14.13536 110 0 1 + 12.61646 83.24160 32.95268 12.49585 110 38 1 + 12.19793 87.22260 28.14940 10.30983 110 43 1 + 10.85239 91.20360 23.37981 8.12381 110 46 1 + 9.32975 95.18460 18.63653 5.93779 220 50 2 + 7.66899 99.16560 15.09227 4.29828 220 51 2 + 22.06724 99.16560 26.26428 2.74836 330 84 3 + 27.64217 100.53900 31.53892 3.31593 330 88 3 + 23.41393 101.91240 38.50115 4.07269 220 61 2 + 15.88234 103.28580 45.39611 4.82945 110 35 1 + 7.94855 104.65920 52.24433 5.58621 110 15 1 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A - 6.47631 110.15280 79.46578 8.61324 110 0 1 - 8.80528 111.52620 86.26991 9.37000 110 0 1 - 10.76632 112.89960 91.37714 9.93757 110 12 1 - 11.14470 112.89960 94.78447 10.31595 110 12 1 - 12.92858 114.27300 99.89939 10.88352 110 13 1 - 14.73766 115.64640 106.72583 11.64028 110 14 1 - 16.39579 117.01980 113.55988 12.39704 110 14 1 - 17.91600 118.39320 120.40102 13.15380 110 15 1 - 19.12215 119.76660 125.53597 13.72137 110 15 1 - 19.50053 119.76660 128.96129 14.09975 110 15 1 - 20.59717 121.14000 134.10206 14.66732 110 15 1 - 21.79017 122.51340 140.96069 15.42408 110 15 1 - 22.90526 123.88680 147.82389 16.18084 110 15 1 - 23.95739 125.26020 154.69114 16.93760 110 15 1 - 24.77233 126.63360 159.84382 17.50516 110 15 1 - 25.15071 126.63360 163.28003 17.88354 110 15 1 - 25.93268 128.00700 168.43582 18.45111 110 15 1 - 26.88074 129.38040 175.31244 19.20787 110 15 1 - 28.24309 130.75380 182.19144 19.96463 110 16 1 - 30.62778 132.12720 189.07254 20.72139 110 16 1 - 32.90138 133.50060 194.23453 21.28896 110 17 1 + 6.46412 110.15280 79.46578 8.61324 110 0 1 + 8.79406 111.52620 86.26991 9.37000 110 0 1 + 10.75616 112.89960 91.37714 9.93757 110 12 1 + 11.13454 112.89960 94.78447 10.31595 110 12 1 + 12.91956 114.27300 99.89939 10.88352 110 13 1 + 14.72985 115.64640 106.72583 11.64028 110 14 1 + 16.38927 117.01980 113.55988 12.39704 110 14 1 + 17.91086 118.39320 120.40102 13.15380 110 15 1 + 19.11849 119.76660 125.53597 13.72137 110 15 1 + 19.49687 119.76660 128.96129 14.09975 110 15 1 + 20.59512 121.14000 134.10206 14.66732 110 15 1 + 21.78982 122.51340 140.96069 15.42408 110 15 1 + 22.90672 123.88680 147.82389 16.18084 110 15 1 + 23.96073 125.26020 154.69114 16.93760 110 15 1 + 24.77759 126.63360 159.84382 17.50516 110 16 1 + 25.15597 126.63360 163.28003 17.88354 110 15 1 + 25.93989 128.00700 168.43582 18.45111 110 15 1 + 26.88993 129.38040 175.31244 19.20787 110 15 1 + 28.23023 130.75380 182.19144 19.96463 110 15 1 + 30.61757 132.12720 189.07254 20.72139 110 16 1 + 32.89382 133.50060 194.23453 21.28896 110 17 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -69266,8 +69402,8 @@ Layer name -9.99 62.314 'OWB' -10.79 1.079 'Grind' -11.09 2.812 'Hydrobiaklei' - -12.00 5.488 'Basisveen' - -12.50 62.693 'Eerste zandlaag' + -12.00 5.491 'Basisveen' + -12.50 62.708 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -69410,30 +69546,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56000 17.00000 8.00000 42.89955 42.89955 - -10.60000 13.00000 13.40000 46.00408 46.00408 - -10.64000 36.00000 9.00000 49.09293 49.09293 - -10.68000 9.00500 20.00000 52.16611 52.16611 - -10.72000 55.00000 71.00000 55.22360 55.22360 - -10.74000 20.00000 39.00000 56.74646 56.74646 - -10.74500 16.30300 17.00300 57.12657 57.12657 - -10.75500 36.00000 36.20000 57.88604 57.88604 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.77500 5.00400 2.00000 59.40205 59.40205 - -10.78500 15.00000 65.00000 60.15858 60.15858 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56000 1.00000 1.00000 42.89955 42.89955 + -10.60000 1.00000 1.00000 46.00408 46.00408 + -10.64000 1.00000 1.00000 49.09293 49.09293 + -10.68000 1.00000 1.00000 52.16611 52.16611 + -10.72000 1.00000 1.00000 55.22360 55.22360 + -10.74000 1.00000 1.00000 56.74646 56.74646 + -10.74500 1.00000 1.00000 57.12657 57.12657 + -10.75500 1.00000 1.00000 57.88604 57.88604 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.77500 1.00000 1.00000 59.40205 59.40205 + -10.78500 1.00000 1.00000 60.15858 60.15858 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -69509,12 +69645,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.90730 77.90730 1.00000 1.00000 1.00000 -10.58000 77.61330 77.61330 77.61330 1.00000 1.00000 1.00000 -10.62000 77.22130 77.22130 77.22130 1.00000 1.00000 1.00000 @@ -69527,7 +69663,7 @@ Lambda passive -10.77000 75.75130 75.75130 75.75130 1.00000 1.00000 1.00000 -10.78000 75.65330 75.65330 75.65330 1.00000 1.00000 1.00000 -10.79000 75.55530 75.57980 75.57980 1.00000 1.00000 1.00000 - -10.79000 8.65530 46.35693 2.58114 0.52043 0.29254 5.25401 + -10.79000 8.65530 46.35693 2.58114 0.51628 0.29254 5.25401 -10.85000 9.32670 49.00259 2.72845 0.51628 0.29254 5.25401 -10.91000 9.99810 52.53013 2.92486 0.51628 0.29254 5.25401 -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 @@ -69539,7 +69675,7 @@ Lambda passive -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 -11.45400 13.97426 45.14292 1.82525 0.74083 0.13062 3.23043 -11.54500 14.46475 45.71787 2.01682 0.74083 0.14062 3.18766 - -11.54500 14.46475 46.12017 2.14437 0.86022 0.14700 3.16165 + -11.54500 14.46475 46.12017 2.14437 0.74083 0.14700 3.16165 -11.63600 14.95524 46.74585 2.33555 0.74083 0.15617 3.12572 -11.72700 15.44573 47.60973 2.59032 0.74083 0.16770 3.08239 -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 @@ -69569,7 +69705,7 @@ Lambda passive -14.32000 21.40800 104.10414 6.51717 0.53046 0.30443 4.86286 -14.46000 22.83460 110.94008 6.95314 0.53046 0.30450 4.85842 -14.60000 24.26120 116.07149 7.28013 0.53046 0.30455 4.85562 - -14.60000 24.26120 119.49465 7.49812 0.33884 0.30458 4.85398 + -14.60000 24.26120 119.49465 7.49812 0.53046 0.30458 4.85398 -14.74000 25.68780 124.63248 7.82511 0.53046 0.30462 4.85182 -14.88000 27.11440 131.48763 8.26107 0.53046 0.30467 4.84937 -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 @@ -69729,12 +69865,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 402 100 P 78.00144 0.00000 78.00144 78.00144 402 100 P 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00390 0.00000 78.00390 78.00390 402 100 P 78.00460 0.00000 78.00460 78.00460 402 100 P - 78.00513 0.00000 78.00513 78.00513 402 100 P + 78.00512 0.00000 78.00512 78.00513 402 100 P 77.90730 0.00000 77.90730 77.90730 402 100 P 77.61330 0.39240 77.61330 77.61330 402 100 P 77.22130 0.78480 77.22130 77.22130 402 100 P @@ -69747,49 +69883,49 @@ Status character 75.75130 2.25630 75.75130 75.75130 402 100 P 75.65330 2.35440 75.65330 75.65330 402 100 P 75.57980 2.45250 75.57980 75.57980 402 100 P - 38.53381 69.35250 46.35693 4.59182 330 83 3 - 40.62457 69.94110 49.00259 4.81516 330 83 3 - 43.27127 70.52970 52.53013 5.16178 330 82 3 - 45.88347 71.11830 56.05768 5.50841 330 82 3 - 48.46276 71.70690 59.58522 5.85504 330 81 3 - 50.41871 72.29550 62.23088 6.11501 330 81 3 - 21.74154 72.29550 43.29272 8.98991 220 50 2 - 23.64107 73.18821 43.42601 9.26243 220 54 2 - 23.64401 74.08092 43.84429 9.62580 220 54 2 - 23.69584 74.97363 44.43915 9.98917 220 53 2 - 23.77381 75.86634 45.14292 10.35254 220 53 2 - 23.79198 76.75905 45.71787 10.62507 220 52 2 - 24.41601 76.75905 46.12017 12.54828 220 53 2 - 23.96791 77.65176 46.74585 11.07928 220 51 2 - 24.07450 78.54447 47.60973 11.44265 220 51 2 - 24.08704 79.43718 48.50158 11.80602 110 50 1 - 23.93857 80.32989 49.41509 12.16939 110 48 1 - 23.65356 81.22260 50.11123 12.44192 110 47 1 - 16.74791 81.22260 33.15113 12.60942 220 51 2 - 14.94969 85.20360 29.54181 10.96991 220 51 2 - 12.61379 89.18460 24.76262 8.78389 220 51 2 - 10.28458 93.16560 20.01523 6.59787 220 51 2 - 7.96006 97.14660 15.29236 4.41185 220 52 2 - 6.38249 101.12760 11.76233 2.77234 220 54 2 - 15.21554 101.12760 16.41056 1.70748 330 93 3 - 18.51888 102.50100 21.77557 2.27505 330 85 3 - 22.68516 103.87440 28.84714 3.03181 220 79 2 - 24.30039 105.24780 35.82859 3.78857 220 68 2 - 25.88232 106.62120 42.73804 4.54533 220 61 2 - 26.80193 107.99460 47.88667 5.11290 220 56 2 - 28.74524 107.99460 51.30624 5.49128 220 56 2 - 29.03353 109.36800 56.42271 6.05885 220 51 2 - 28.02029 110.74140 63.23158 6.81561 110 44 1 - 24.93380 112.11480 70.03362 7.57237 110 36 1 - 21.98410 113.48820 76.83574 8.32913 110 29 1 - 19.07981 114.86160 81.93981 8.89670 110 23 1 - 19.29766 114.86160 85.34452 9.27508 110 23 1 - 16.55759 116.23500 90.45516 9.84265 110 18 1 - 14.08342 117.60840 97.27574 10.59940 110 14 1 - 11.75812 118.98180 104.10414 11.35616 110 11 1 - 9.57358 120.35520 110.94008 12.11292 110 0 1 - 7.41267 121.72860 116.07149 12.68049 110 0 1 - 7.63067 121.72860 119.49465 8.34140 110 0 1 + 38.53557 69.35250 46.35693 4.55519 330 83 3 + 40.62649 69.94110 49.00259 4.81516 330 83 3 + 43.27335 70.52970 52.53013 5.16178 330 82 3 + 45.88572 71.11830 56.05768 5.50841 330 82 3 + 48.46517 71.70690 59.58522 5.85504 330 81 3 + 50.42128 72.29550 62.23088 6.11501 330 81 3 + 21.74253 72.29550 43.29272 8.98991 220 50 2 + 23.65260 73.18821 43.42601 9.26243 220 54 2 + 23.65518 74.08092 43.84429 9.62580 220 54 2 + 23.70660 74.97363 44.43915 9.98917 220 53 2 + 23.78413 75.86634 45.14292 10.35254 220 53 2 + 23.80183 76.75905 45.71787 10.62507 220 52 2 + 23.95089 76.75905 46.12017 10.80675 220 52 2 + 23.97723 77.65176 46.74585 11.07928 220 51 2 + 24.08323 78.54447 47.60973 11.44265 220 51 2 + 24.09723 79.43718 48.50158 11.80602 110 50 1 + 23.94916 80.32989 49.41509 12.16939 110 48 1 + 23.66453 81.22260 50.11123 12.44192 110 47 1 + 16.74825 81.22260 33.15113 12.60942 220 51 2 + 14.95082 85.20360 29.54181 10.96991 220 51 2 + 12.61496 89.18460 24.76262 8.78389 220 51 2 + 10.28579 93.16560 20.01523 6.59787 220 51 2 + 7.96129 97.14660 15.29236 4.41185 220 52 2 + 6.38375 101.12760 11.76233 2.77234 220 54 2 + 15.21869 101.12760 16.41056 1.70748 330 93 3 + 18.52211 102.50100 21.77557 2.27505 330 85 3 + 22.69592 103.87440 28.84714 3.03181 220 79 2 + 24.31129 105.24780 35.82859 3.78857 220 68 2 + 25.89330 106.62120 42.73804 4.54533 220 61 2 + 26.81294 107.99460 47.88667 5.11290 220 56 2 + 28.11565 107.99460 51.30624 5.49128 220 55 2 + 29.04450 109.36800 56.42271 6.05885 220 51 2 + 28.06017 110.74140 63.23158 6.81561 110 44 1 + 24.97317 112.11480 70.03362 7.57237 110 36 1 + 22.02280 113.48820 76.83574 8.32913 110 29 1 + 19.11770 114.86160 81.93981 8.89670 110 23 1 + 19.33556 114.86160 85.34452 9.27508 110 23 1 + 16.59456 116.23500 90.45516 9.84265 110 18 1 + 14.11935 117.60840 97.27574 10.59940 110 15 1 + 11.79284 118.98180 104.10414 11.35616 110 11 1 + 9.60690 120.35520 110.94008 12.11292 110 0 1 + 7.44439 121.72860 116.07149 12.68049 110 0 1 + 7.66238 121.72860 119.49465 13.05887 110 0 1 7.82511 123.10200 124.63248 13.62644 1 0 A 8.26107 124.47540 131.48763 14.38320 1 0 A 8.69701 125.84880 138.34788 15.13996 1 0 A @@ -69797,10 +69933,10 @@ Status character 9.45982 128.59560 150.36370 16.46429 1 0 A 9.67775 128.59560 153.79896 16.84267 1 0 A 10.00461 129.96900 158.95348 17.41024 1 0 A - 10.49413 131.34240 165.82865 18.16700 110 0 1 - 11.07556 132.71580 172.70644 18.92376 110 0 1 - 11.66579 134.08920 179.58654 19.68052 110 0 1 - 12.06850 135.46260 184.74790 20.24809 110 0 1 + 10.48494 131.34240 165.82865 18.16700 110 0 1 + 11.06437 132.71580 172.70644 18.92376 110 0 1 + 11.65260 134.08920 179.58654 19.68052 110 0 1 + 12.05331 135.46260 184.74790 20.24809 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -69814,10 +69950,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.147 'OWB' - -10.79 13.363 'Grind' - -11.09 21.624 'Hydrobiaklei' - -12.00 5.737 'Basisveen' - -12.50 56.306 'Eerste zandlaag' + -10.79 13.364 'Grind' + -11.09 21.611 'Hydrobiaklei' + -12.00 5.738 'Basisveen' + -12.50 56.309 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -70076,8 +70212,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 578.83225 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 786.94765 10000000.000 1 1 1 'Dek' + -10.19000 578.80446 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 786.94709 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -70138,10 +70274,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 40.54 : Percentage mobilized resistance left + 40.56 : Percentage mobilized resistance left 21.19 : Percentage mobilized resistance right - 195.14 : Effective left - 111.54 : Effective right + 195.20 : Effective left + 111.58 : Effective right 551.02 : Water pressure left 540.51 : Water pressure right 481.31 : Max effective resistance left @@ -70150,8 +70286,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 39.76 : Vertical force left - 15.23 : Vertical force right + 39.79 : Vertical force left + 15.24 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -70160,17 +70296,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.23 : Active force -39.76 : Passive force --15.23 : Plugged active force -39.76 : Plugged passive force +-15.24 : Active force +39.79 : Passive force +-15.24 : Plugged active force +39.79 : Plugged passive force 0.00 : Anchor force 135.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --110.47 : Resulting Vertical Force Unplugged --110.47 : Resulting Vertical Force Plugged +-110.45 : Resulting Vertical Force Unplugged +-110.45 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -70183,210 +70319,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -85.36110 - 0.25036 0.00000 -83.50651 - 0.50071 0.00000 -81.65194 - 0.75107 0.00000 -79.79743 - 1.00142 0.00000 -77.94299 - 1.25178 0.00000 -76.08866 - 1.25178 0.00000 -76.08866 - 1.50205 0.00000 -74.23445 - 1.75232 0.00000 -72.38040 - 2.00259 0.00000 -70.52652 - 2.25286 0.00000 -68.67285 - 2.50313 0.00000 -66.81941 - 2.50313 0.00000 -66.81941 - 2.83654 0.00000 -64.34856 - 3.16995 0.00000 -61.87823 - 3.50336 0.00000 -59.40846 - 3.83677 0.00000 -56.93934 - 4.17018 0.00000 -54.47091 - 4.17018 0.00000 -54.47091 - 4.44764 0.00000 -52.41446 - 4.72510 0.00000 -50.35857 - 5.00256 0.00000 -48.30327 - 5.28002 0.00000 -46.24861 - 5.55748 0.00000 -44.19461 - 5.55748 0.00000 -44.19461 - 5.83446 0.00000 -42.14131 - 6.11145 0.00000 -40.08875 - 6.38844 0.00000 -38.03695 - 6.66543 0.00000 -35.98596 - 6.94241 0.00000 -33.93581 - 6.94241 0.00000 -33.93581 - 7.18015 0.00000 -32.17338 - 7.41790 0.00000 -30.41162 - 7.65564 0.00000 -28.65055 - 7.89338 0.00000 -26.89020 - 8.13112 0.00000 -25.13057 - 8.13112 659.85000 -25.13057 - 83.66144 659.85000 -22.80128 - 159.19176 659.85000 -20.48568 - 234.72207 659.85000 -18.19614 - 310.25239 659.85000 -15.94504 - 385.78271 659.85000 -13.74473 - 385.78336 659.83913 -13.74473 - 438.76324 659.83913 -12.23763 - 491.74312 659.83913 -10.76591 - 544.72301 659.83913 -9.33384 - 597.70289 659.83913 -7.94569 - 650.68277 659.83913 -6.60573 - 650.68255 -127.11023 -6.60573 - 648.18361 -127.11023 -6.27875 - 645.68467 -127.11023 -5.95504 - 643.18573 -127.11023 -5.63459 - 640.68679 -127.11023 -5.31738 - 638.18785 -127.11023 -5.00339 - 638.18755 -127.10698 -5.00339 - 625.66146 -127.10698 -3.48146 - 613.13536 -127.10698 -2.03835 - 600.60927 -127.10698 -0.67248 - 588.08318 -127.10698 0.61773 - 575.55709 -127.10698 1.83384 - 575.55720 -127.10608 1.83384 - 562.98226 -127.10608 2.97745 - 550.40731 -127.10608 4.05014 - 537.83237 -127.10608 5.05348 - 525.25743 -127.10608 5.98907 - 512.68248 -127.10608 6.85848 - 512.68248 -127.10593 6.85848 - 500.06396 -127.10593 7.66331 - 487.44544 -127.10593 8.40514 - 474.82692 -127.10593 9.08556 - 462.20839 -127.10593 9.70616 - 449.58987 -127.10593 10.26853 - 449.58986 -127.10566 10.26853 - 431.86094 -127.10566 10.96106 - 414.13203 -127.10566 11.54694 - 396.40312 -127.10566 12.03056 - 378.67421 -127.10566 12.41630 - 360.94530 -127.10566 12.70853 - 360.94526 -127.10488 12.70853 - 344.42862 -127.10488 12.89999 - 327.91198 -127.10488 13.01811 - 311.39534 -127.10488 13.06642 - 294.87871 -127.10488 13.04843 - 278.36207 -127.10488 12.96766 - 278.36214 -127.10449 12.96766 - 261.80555 -127.10449 12.82762 - 245.24896 -127.10449 12.63184 - 228.69238 -127.10449 12.38384 - 212.13579 -127.10449 12.08715 - 195.57920 -127.10449 11.74530 - 195.57920 -127.10450 11.74530 - 176.50511 -127.10450 11.30090 - 157.43103 -127.10450 10.80681 - 138.35695 -127.10450 10.26839 - 119.28286 -127.10450 9.69100 - 100.20878 -127.10450 9.08003 - 100.20878 -127.10450 9.08003 - 81.11565 -127.10450 8.44085 - 62.02252 -127.10450 7.77882 - 42.92939 -127.10450 7.09933 - 23.83626 -127.10450 6.40775 - 4.74314 -127.10450 5.70945 - 4.74249 -127.10132 5.70945 - -14.35106 -127.10132 5.00982 - -33.44462 -127.10132 4.31424 - -52.53817 -127.10132 3.62807 - -71.63172 -127.10132 2.95669 - -90.72528 -127.10132 2.30549 - -90.72429 -127.09345 2.30549 - -109.79943 -127.09345 1.67983 - -128.87456 -127.09345 1.08509 - -147.94970 -127.09345 0.52663 - -167.02484 -127.09345 0.00984 - -186.09997 -127.09345 -0.45992 - -186.09989 -127.09329 -0.45992 - -186.35482 -127.01451 -0.46586 - -186.60949 -126.85851 -0.47179 - -186.86386 -126.70251 -0.47772 - -187.11790 -126.54651 -0.48363 - -187.37164 -126.39051 -0.48953 - -187.37164 -126.39051 -0.48953 - -187.62506 -126.23450 -0.49543 - -187.87816 -126.07850 -0.50131 - -188.13096 -125.92250 -0.50719 - -188.38344 -125.76650 -0.51305 - -188.63561 -125.61050 -0.51891 - -188.63561 -125.61052 -0.51891 - -193.13737 -124.22053 -0.62268 - -197.62245 -124.22053 -0.72331 - -202.10752 -124.22052 -0.82070 - -206.59260 -124.22051 -0.91480 - -211.07768 -124.22050 -1.00552 - -211.07791 97.05075 -1.00552 - -204.30242 97.05077 -1.17215 - -197.52693 97.05078 -1.32617 - -190.75144 97.05079 -1.46800 - -183.97595 97.05081 -1.59805 - -177.20046 97.05082 -1.71675 - -177.20036 97.05160 -1.71675 - -173.32502 97.05357 -1.77964 - -169.44965 97.05358 -1.83903 - -165.57428 97.05359 -1.89501 - -161.69890 97.05360 -1.94765 - -157.82356 97.05164 -1.99703 - -157.82356 97.05161 -1.99703 - -156.85440 97.05161 -2.00888 - -155.88523 97.05161 -2.02053 - -154.91607 97.05161 -2.03198 - -153.94690 97.05161 -2.04324 - -152.97774 97.05162 -2.05430 - -152.97759 97.04870 -2.05430 - -147.23924 94.37470 -2.11667 - -141.66795 91.49926 -2.17237 - -136.27335 88.48712 -2.22164 - -131.06326 85.35110 -2.26472 - -126.04475 82.10303 -2.30185 - -126.04404 82.07818 -2.30185 - -118.67734 79.85010 -2.34736 - -111.51850 77.53985 -2.38049 - -104.56962 75.23485 -2.40196 - -97.83036 72.93244 -2.41251 - -91.30053 70.63224 -2.41285 - -91.30079 70.63528 -2.41285 - -84.97649 68.31430 -2.40369 - -78.86196 66.01770 -2.38567 - -72.95629 63.72420 -2.35941 - -67.25915 61.43468 -2.32551 - -61.77011 59.15117 -2.28460 - -61.77006 59.15074 -2.28460 - -55.90605 58.02726 -2.23225 - -50.15185 56.95665 -2.17286 - -44.50175 55.94548 -2.10714 - -38.95000 54.98742 -2.03581 - -33.49191 54.07037 -1.95957 - -33.48931 54.05287 -1.95957 - -25.96514 52.73144 -1.84599 - -18.80976 49.20850 -1.72603 - -12.19899 45.04907 -1.60129 - -6.19562 40.52365 -1.47342 - -0.84591 35.76189 -1.34401 - -0.84829 35.74180 -1.34401 - 3.80979 30.71427 -1.21460 - 7.76467 25.66653 -1.08615 - 11.00532 20.51156 -0.95945 - 13.51689 15.25117 -0.83530 - 15.28640 9.92325 -0.71450 - 15.28814 9.89344 -0.71450 - 16.30497 4.65755 -0.59768 - 16.62934 0.03223 -0.48489 - 16.35521 -3.89404 -0.37607 - 15.57972 -7.13186 -0.27117 - 14.39810 -9.70043 -0.17014 - 14.40627 -9.73096 -0.17014 - 12.90835 -11.68045 -0.07277 - 11.16065 -13.18949 0.02143 - 9.25555 -13.92910 0.11290 - 7.30040 -13.90693 0.20210 - 5.40090 -13.13613 0.28948 - 5.39123 -13.09582 0.28948 - 3.65556 -11.58658 0.37557 - 2.17580 -9.48864 0.46078 - 1.02246 -6.91111 0.54537 - 0.26836 -3.76910 0.62962 - -0.00296 -0.01451 0.71381 + 0.00000 0.00000 -85.36098 + 0.25036 0.00000 -83.50637 + 0.50072 0.00000 -81.65180 + 0.75107 0.00000 -79.79727 + 1.00143 0.00000 -77.94282 + 1.25179 0.00000 -76.08847 + 1.25179 0.00000 -76.08847 + 1.50206 0.00000 -74.23425 + 1.75233 0.00000 -72.38018 + 2.00260 0.00000 -70.52630 + 2.25287 0.00000 -68.67261 + 2.50315 0.00000 -66.81916 + 2.50315 0.00000 -66.81916 + 2.83656 0.00000 -64.34829 + 3.16997 0.00000 -61.87793 + 3.50338 0.00000 -59.40815 + 3.83679 0.00000 -56.93901 + 4.17021 0.00000 -54.47056 + 4.17021 0.00000 -54.47056 + 4.44767 0.00000 -52.41409 + 4.72513 0.00000 -50.35819 + 5.00259 0.00000 -48.30288 + 5.28005 0.00000 -46.24820 + 5.55752 0.00000 -44.19418 + 5.55752 0.00000 -44.19418 + 5.83451 0.00000 -42.14087 + 6.11150 0.00000 -40.08829 + 6.38849 0.00000 -38.03648 + 6.66548 0.00000 -35.98548 + 6.94246 0.00000 -33.93531 + 6.94246 0.00000 -33.93531 + 7.18021 0.00000 -32.17287 + 7.41795 0.00000 -30.41109 + 7.65569 0.00000 -28.65001 + 7.89344 0.00000 -26.88964 + 8.13118 0.00000 -25.13001 + 8.13118 659.85000 -25.13001 + 83.66150 659.85000 -22.80069 + 159.19182 659.85000 -20.48508 + 234.72214 659.85000 -18.19552 + 310.25246 659.85000 -15.94440 + 385.78278 659.85000 -13.74408 + 385.78343 659.83912 -13.74408 + 438.76331 659.83912 -12.23697 + 491.74320 659.83912 -10.76524 + 544.72308 659.83912 -9.33315 + 597.70297 659.83912 -7.94499 + 650.68285 659.83912 -6.60501 + 650.68263 -127.10968 -6.60501 + 648.18370 -127.10968 -6.27803 + 645.68477 -127.10968 -5.95432 + 643.18584 -127.10968 -5.63387 + 640.68691 -127.10968 -5.31665 + 638.18798 -127.10968 -5.00266 + 638.18768 -127.10643 -5.00266 + 625.66165 -127.10643 -3.48071 + 613.13561 -127.10643 -2.03759 + 600.60958 -127.10643 -0.67170 + 588.08354 -127.10643 0.61852 + 575.55751 -127.10643 1.83465 + 575.55762 -127.10553 1.83465 + 562.98273 -127.10553 2.97827 + 550.40785 -127.10553 4.05097 + 537.83296 -127.10553 5.05433 + 525.25808 -127.10553 5.98993 + 512.68319 -127.10553 6.85936 + 512.68319 -127.10538 6.85936 + 500.06473 -127.10538 7.66420 + 487.44626 -127.10538 8.40605 + 474.82780 -127.10538 9.08648 + 462.20933 -127.10538 9.70710 + 449.59087 -127.10538 10.26948 + 449.59085 -127.10510 10.26948 + 431.86202 -127.10510 10.96203 + 414.13318 -127.10510 11.54793 + 396.40435 -127.10510 12.03157 + 378.67552 -127.10510 12.41732 + 360.94669 -127.10510 12.70957 + 360.94665 -127.10432 12.70957 + 344.43009 -127.10432 12.90105 + 327.91352 -127.10432 13.01919 + 311.39696 -127.10432 13.06752 + 294.88040 -127.10432 13.04954 + 278.36383 -127.10432 12.96879 + 278.36390 -127.10394 12.96879 + 261.80739 -127.10394 12.82876 + 245.25088 -127.10394 12.63300 + 228.69436 -127.10394 12.38501 + 212.13785 -127.10394 12.08834 + 195.58134 -127.10394 11.74650 + 195.58134 -127.10394 11.74650 + 176.50734 -127.10394 11.30212 + 157.43334 -127.10394 10.80804 + 138.35934 -127.10394 10.26963 + 119.28534 -127.10394 9.69226 + 100.21134 -127.10394 9.08130 + 100.21134 -127.10394 9.08130 + 81.11830 -127.10394 8.44212 + 62.02525 -127.10394 7.78010 + 42.93221 -127.10394 7.10062 + 23.83917 -127.10394 6.40905 + 4.74612 -127.10394 5.71077 + 4.74548 -127.10076 5.71077 + -14.34799 -127.10076 5.01115 + -33.44146 -127.10076 4.31557 + -52.53493 -127.10076 3.62940 + -71.62840 -127.10076 2.95803 + -90.72187 -127.10076 2.30683 + -90.72089 -127.09292 2.30683 + -109.79594 -127.09292 1.68117 + -128.87100 -127.09292 1.08643 + -147.94606 -127.09292 0.52798 + -167.02111 -127.09292 0.01119 + -186.09617 -127.09292 -0.45857 + -186.09609 -127.09278 -0.45857 + -186.35102 -127.01400 -0.46452 + -186.60569 -126.85800 -0.47045 + -186.86005 -126.70200 -0.47637 + -187.11410 -126.54600 -0.48228 + -187.36783 -126.39000 -0.48819 + -187.36783 -126.38999 -0.48819 + -187.62125 -126.23399 -0.49408 + -187.87436 -126.07799 -0.49996 + -188.12715 -125.92199 -0.50584 + -188.37963 -125.76599 -0.51171 + -188.63180 -125.60999 -0.51756 + -188.63180 -125.61001 -0.51756 + -193.13354 -124.22002 -0.62134 + -197.61860 -124.22001 -0.72196 + -202.10366 -124.22001 -0.81935 + -206.58872 -124.22000 -0.91345 + -211.07377 -124.21999 -1.00417 + -211.07397 97.07772 -1.00417 + -204.29659 97.07773 -1.17081 + -197.51922 97.07774 -1.32483 + -190.74184 97.07776 -1.46666 + -183.96446 97.07777 -1.59672 + -177.18708 97.07779 -1.71542 + -177.18689 97.07989 -1.71542 + -173.31041 97.08186 -1.77831 + -169.43391 97.08186 -1.83770 + -165.55741 97.08187 -1.89369 + -161.68091 97.08188 -1.94633 + -157.80443 97.07993 -1.99572 + -157.80443 97.07989 -1.99572 + -156.83498 97.07989 -2.00756 + -155.86554 97.07989 -2.01921 + -154.89609 97.07989 -2.03067 + -153.92664 97.07989 -2.04192 + -152.95719 97.07990 -2.05299 + -152.95705 97.07699 -2.05299 + -147.21908 94.35056 -2.11537 + -141.64928 91.47408 -2.17108 + -136.25623 88.46081 -2.22035 + -131.04775 85.32358 -2.26344 + -126.03092 82.07474 -2.30059 + -126.03021 82.04985 -2.30059 + -118.66610 79.82145 -2.34611 + -111.50990 77.51043 -2.37926 + -104.56373 75.20472 -2.40075 + -97.82725 72.90166 -2.41132 + -91.30025 70.60086 -2.41168 + -91.30035 70.59971 -2.41168 + -84.97800 68.29980 -2.40254 + -78.86482 66.00275 -2.38454 + -72.96052 63.70885 -2.35829 + -67.26480 61.41903 -2.32442 + -61.77719 59.13528 -2.28352 + -61.77716 59.13473 -2.28352 + -55.91474 58.01139 -2.23119 + -50.16213 56.94091 -2.17183 + -44.51359 55.92989 -2.10612 + -38.96340 54.97194 -2.03480 + -33.50686 54.05497 -1.95858 + -33.50430 54.03778 -1.95858 + -25.98221 52.71671 -1.84502 + -18.82890 49.19377 -1.72507 + -12.22021 45.03379 -1.60034 + -6.21906 40.50726 -1.47246 + -0.87168 35.74540 -1.34306 + -0.87403 35.72537 -1.34306 + 3.78674 30.75151 -1.21364 + 7.74689 25.70473 -1.08517 + 10.99296 20.55070 -0.95845 + 13.51008 15.29124 -0.83428 + 15.28526 9.96423 -0.71346 + 15.28700 9.93443 -0.71346 + 16.30968 4.70060 -0.59661 + 16.64030 0.07846 -0.48379 + 16.37286 -3.84476 -0.37495 + 15.60448 -7.07966 -0.27004 + 14.43046 -9.64349 -0.16900 + 14.43862 -9.67396 -0.16900 + 12.93709 -11.74602 -0.07162 + 11.18079 -13.24570 0.02257 + 9.26867 -13.97328 0.11403 + 7.30815 -13.93964 0.20322 + 5.40483 -13.15797 0.29059 + 5.39517 -13.11770 0.29059 + 3.65717 -11.59821 0.37667 + 2.17635 -9.49296 0.46185 + 1.02265 -6.91261 0.54643 + 0.26841 -3.76972 0.63066 + -0.00296 -0.01449 0.71483 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -70507,42 +70643,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.22500 8.00000 6.00000 18.33028 18.33028 - -10.29500 13.00000 12.00000 23.79047 23.79047 - -10.36500 1.00400 48.00000 29.25070 29.25070 - -10.43500 8.00000 8.30000 34.71099 34.71099 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.54000 3.59100 3.60000 42.90151 42.90151 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.60000 21.00000 43.00000 47.58186 47.58186 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.68000 17.00000 8.00000 53.82238 53.82238 - -10.72000 44.10000 45.00000 56.94266 56.94266 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.22500 1.00000 1.00000 18.33028 18.33028 + -10.29500 1.00000 1.00000 23.79047 23.79047 + -10.36500 1.00000 1.00000 29.25070 29.25070 + -10.43500 1.00000 1.00000 34.71099 34.71099 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.54000 1.00000 1.00000 42.90151 42.90151 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.60000 1.00000 1.00000 47.58186 47.58186 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.68000 1.00000 1.00000 53.82238 53.82238 + -10.72000 1.00000 1.00000 56.94266 56.94266 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 71.15100 34.65200 64.09093 62.48559 -10.88000 71.15100 34.65200 67.64965 62.68374 -10.94000 71.15100 34.65200 71.42002 62.89367 @@ -70617,7 +70753,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -70648,7 +70784,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 56.66635 3.15517 0.67892 0.29254 5.25401 + -10.79000 10.61750 56.66635 3.15517 0.51628 0.29254 5.25401 -10.85000 11.28890 59.31201 3.30248 0.51628 0.29254 5.25401 -10.91000 11.96030 62.83955 3.49889 0.51628 0.29254 5.25401 -10.97000 12.63170 66.36710 3.69530 0.51628 0.29254 5.25401 @@ -70678,7 +70814,7 @@ Lambda passive -12.92000 9.10420 45.39611 2.75956 0.53046 0.30311 4.98628 -13.06000 10.53080 52.24433 3.19359 0.53046 0.30326 4.96110 -13.20000 11.95740 57.36125 3.51940 0.53046 0.30338 4.94462 - -13.20000 11.95740 60.76601 3.73674 0.30345 0.30345 4.93469 + -13.20000 11.95740 60.76601 3.73674 0.53046 0.30345 4.93469 -13.34000 13.38400 65.86774 4.06295 0.53046 0.30357 4.92138 -13.48000 14.81060 72.66634 4.49817 0.53046 0.30371 4.90637 -13.62000 16.23720 79.46578 4.93366 0.53046 0.30385 4.89406 @@ -70837,38 +70973,38 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P 78.00011 0.00000 78.00011 78.00011 402 100 P 78.00012 0.00000 78.00012 78.00012 402 100 P 78.00014 0.00000 78.00014 78.00014 402 100 P 78.00016 0.00000 78.00016 78.00016 402 100 P 78.00018 0.00000 78.00018 78.00018 402 100 P - 78.00019 0.00000 78.00019 78.00019 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00029 0.00000 78.00029 78.00029 402 100 P 78.00056 0.00000 78.00056 78.00056 402 100 P 78.00092 0.00000 78.00092 78.00092 402 100 P 78.00128 0.00000 78.00128 78.00128 402 100 P 78.00164 0.00000 78.00164 78.00164 402 100 P 78.00191 0.00000 78.00191 78.00191 1 100 A - 78.00217 0.00000 78.00217 78.00217 1 0 A + 78.00217 0.00000 78.00217 78.00218 1 100 A 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00340 0.00000 78.00340 78.00340 1 100 A 78.00410 0.00000 78.00410 78.00410 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A - 78.00532 0.00000 78.00532 78.00532 1 100 A + 78.00532 0.00000 78.00532 78.00533 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00590 0.00000 78.00590 78.00590 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00740 0.00000 78.00740 78.00740 1 0 A + 78.00740 0.00000 78.00740 78.00740 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.15517 67.39050 56.66635 7.32241 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.15517 67.39050 56.66635 5.56822 1 0 A 3.30248 67.97910 59.31201 5.82819 1 0 A 3.49889 68.56770 62.83955 6.17482 1 0 A 3.69530 69.15630 66.36710 6.52145 1 0 A @@ -70892,13 +71028,13 @@ Status character 3.45497 91.20360 23.37981 8.12381 1 0 A 1.66671 95.18460 18.63653 5.93779 1 0 A 0.32550 99.16560 15.09227 4.29828 1 0 A - 21.33954 99.16560 26.26428 2.74836 330 81 3 + 21.34464 99.16560 26.26428 2.74836 330 81 3 1.89296 100.53900 31.53892 3.31593 1 0 A 2.32601 101.91240 38.50115 4.07269 1 0 A 2.75956 103.28580 45.39611 4.82945 1 0 A 3.19359 104.65920 52.24433 5.58621 1 0 A 3.51940 106.03260 57.36125 6.15378 1 0 A - 3.73674 106.03260 60.76601 3.73674 1 6 A + 3.73674 106.03260 60.76601 6.53215 1 0 A 4.06295 107.40600 65.86774 7.09972 1 0 A 4.49817 108.77940 72.66634 7.85648 1 0 A 4.93366 110.15280 79.46578 8.61324 1 0 A @@ -70912,16 +71048,16 @@ Status character 7.87663 119.76660 125.53597 13.72137 1 0 A 8.09468 119.76660 128.96129 14.09975 1 0 A 8.42176 121.14000 134.10206 14.66732 1 0 A - 11.86995 122.51340 140.96069 15.42408 110 0 1 - 15.37316 123.88680 147.82389 16.18084 110 0 1 - 18.82474 125.26020 154.69114 16.93760 110 12 1 - 22.04487 126.63360 159.84382 17.50516 110 14 1 - 22.42325 126.63360 163.28003 17.88354 110 14 1 - 25.61281 128.00700 168.43582 18.45111 110 15 1 - 28.97066 129.38040 175.31244 19.20787 110 17 1 - 33.09176 130.75380 182.19144 19.96463 110 18 1 - 37.90625 132.12720 189.07254 20.72139 110 20 1 - 42.60531 133.50060 194.23453 21.28896 110 22 1 + 11.91391 122.51340 140.96069 15.42408 110 0 1 + 15.41516 123.88680 147.82389 16.18084 110 0 1 + 18.86465 125.26020 154.69114 16.93760 110 12 1 + 22.08262 126.63360 159.84382 17.50516 110 14 1 + 22.46100 126.63360 163.28003 17.88354 110 14 1 + 25.64834 128.00700 168.43582 18.45111 110 15 1 + 29.00397 129.38040 175.31244 19.20787 110 17 1 + 33.09877 130.75380 182.19144 19.96463 110 18 1 + 37.91166 132.12720 189.07254 20.72139 110 20 1 + 42.60911 133.50060 194.23453 21.28896 110 22 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -70938,7 +71074,7 @@ Layer name -10.79 1.079 'Grind' -11.09 2.812 'Hydrobiaklei' -12.00 2.175 'Basisveen' - -12.50 43.164 'Eerste zandlaag' + -12.50 43.199 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -70957,7 +71093,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.51 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.34 'Eerste zandlaag' + -12.50 -14.35 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -71081,30 +71217,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.22500 19.00000 1.00000 16.77023 16.77023 - -10.29500 56.00000 56.07000 22.23041 22.23041 - -10.36500 3.99800 50.00000 27.69063 27.69063 - -10.43500 19.00000 1.00000 33.15090 33.15090 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.54000 23.00000 2.00000 41.34140 41.34140 - -10.56000 17.00000 8.00000 42.89955 42.89955 - -10.60000 13.00000 13.40000 46.00408 46.00408 - -10.64000 36.00000 9.00000 49.09293 49.09293 - -10.68000 9.00500 20.00000 52.16611 52.16611 - -10.72000 55.00000 71.00000 55.22360 55.22360 - -10.74000 20.00000 39.00000 56.74646 56.74646 - -10.74500 16.30300 17.00300 57.12657 57.12657 - -10.75500 36.00000 36.20000 57.88604 57.88604 - -10.76500 4.97000 5.00000 58.64453 58.64453 - -10.77500 5.00400 2.00000 59.40205 59.40205 - -10.78500 15.00000 65.00000 60.15858 60.15858 - -10.79000 52.00000 0.99100 60.53648 60.53648 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.22500 1.00000 1.00000 16.77023 16.77023 + -10.29500 1.00000 1.00000 22.23041 22.23041 + -10.36500 1.00000 1.00000 27.69063 27.69063 + -10.43500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.54000 1.00000 1.00000 41.34140 41.34140 + -10.56000 1.00000 1.00000 42.89955 42.89955 + -10.60000 1.00000 1.00000 46.00408 46.00408 + -10.64000 1.00000 1.00000 49.09293 49.09293 + -10.68000 1.00000 1.00000 52.16611 52.16611 + -10.72000 1.00000 1.00000 55.22360 55.22360 + -10.74000 1.00000 1.00000 56.74646 56.74646 + -10.74500 1.00000 1.00000 57.12657 57.12657 + -10.75500 1.00000 1.00000 57.88604 57.88604 + -10.76500 1.00000 1.00000 58.64453 58.64453 + -10.77500 1.00000 1.00000 59.40205 59.40205 + -10.78500 1.00000 1.00000 60.15858 60.15858 + -10.79000 1.00000 1.00000 60.53648 60.53648 -10.82000 71.15100 34.65200 61.92719 60.61391 -10.88000 71.15100 34.65200 64.86734 60.77762 -10.94000 71.15100 34.65200 68.01915 60.95311 @@ -71180,12 +71316,12 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00197 78.00197 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00198 78.00198 1.00000 1.00000 1.00000 -10.26000 78.00250 78.00250 78.00250 1.00000 1.00000 1.00000 -10.33000 78.00320 78.00320 78.00320 1.00000 1.00000 1.00000 -10.40000 78.00390 78.00390 78.00390 1.00000 1.00000 1.00000 -10.47000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 - -10.54000 78.00530 78.00513 78.00513 1.00000 1.00000 1.00000 + -10.54000 78.00530 78.00512 78.00512 1.00000 1.00000 1.00000 -10.54000 78.00530 77.90730 77.90730 1.00000 1.00000 1.00000 -10.58000 77.61330 77.61330 77.61330 1.00000 1.00000 1.00000 -10.62000 77.22130 77.22130 77.22130 1.00000 1.00000 1.00000 @@ -71198,7 +71334,7 @@ Lambda passive -10.77000 75.75130 75.75130 75.75130 1.00000 1.00000 1.00000 -10.78000 75.65330 75.65330 75.65330 1.00000 1.00000 1.00000 -10.79000 75.55530 75.57980 75.57980 1.00000 1.00000 1.00000 - -10.79000 8.65530 46.35693 2.58114 0.52043 0.29254 5.25401 + -10.79000 8.65530 46.35693 2.58114 0.51628 0.29254 5.25401 -10.85000 9.32670 49.00259 2.72845 0.51628 0.29254 5.25401 -10.91000 9.99810 52.53013 2.92486 0.51628 0.29254 5.25401 -10.97000 10.66950 56.05768 3.12128 0.51628 0.29254 5.25401 @@ -71210,7 +71346,7 @@ Lambda passive -11.36300 13.48377 44.43915 1.56911 0.74083 0.11637 3.29575 -11.45400 13.97426 45.14292 1.82525 0.74083 0.13062 3.23043 -11.54500 14.46475 45.71787 2.01682 0.74083 0.14062 3.18766 - -11.54500 14.46475 46.12017 2.14437 0.86022 0.14700 3.16165 + -11.54500 14.46475 46.12017 2.14437 0.74083 0.14700 3.16165 -11.63600 14.95524 46.74585 2.33555 0.74083 0.15617 3.12572 -11.72700 15.44573 47.60973 2.59032 0.74083 0.16770 3.08239 -11.81800 15.93622 48.50158 2.84498 0.74083 0.17852 3.04348 @@ -71240,7 +71376,7 @@ Lambda passive -14.32000 21.40800 104.10414 6.51717 0.53046 0.30443 4.86286 -14.46000 22.83460 110.94008 6.95314 0.53046 0.30450 4.85842 -14.60000 24.26120 116.07149 7.28013 0.53046 0.30455 4.85562 - -14.60000 24.26120 119.49465 7.49812 0.33884 0.30458 4.85398 + -14.60000 24.26120 119.49465 7.49812 0.53046 0.30458 4.85398 -14.74000 25.68780 124.63248 7.82511 0.53046 0.30462 4.85182 -14.88000 27.11440 131.48763 8.26107 0.53046 0.30467 4.84937 -15.02000 28.54100 138.34788 8.69701 0.53046 0.30472 4.84734 @@ -71400,12 +71536,12 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 402 100 P - 78.00197 0.00000 78.00197 78.00197 402 100 P + 78.00198 0.00000 78.00198 78.00198 402 100 P 78.00250 0.00000 78.00250 78.00250 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00390 0.00000 78.00390 78.00390 402 100 P 78.00460 0.00000 78.00460 78.00460 402 100 P - 78.00513 0.00000 78.00513 78.00513 402 100 P + 78.00512 0.00000 78.00512 78.00513 402 100 P 77.90730 0.00000 77.90730 77.90730 402 100 P 77.61330 0.39240 77.61330 77.61330 402 100 P 77.22130 0.78480 77.22130 77.22130 402 100 P @@ -71418,56 +71554,56 @@ Status character 75.75130 2.25630 75.75130 75.75130 402 100 P 75.65330 2.35440 75.65330 75.65330 402 100 P 75.57980 2.45250 75.57980 75.57980 402 100 P - 43.59607 69.35250 46.35693 4.59182 330 94 3 - 48.07092 69.94110 49.00259 4.81516 330 98 3 - 50.65458 70.52970 52.53013 5.16178 330 96 3 - 53.02033 71.11830 56.05768 5.50841 330 95 3 - 55.17652 71.70690 59.58522 5.85504 330 93 3 - 57.09932 72.29550 62.23088 6.11501 330 92 3 - 23.42216 72.29550 43.29272 8.98991 220 54 2 - 25.51929 73.18821 43.42601 9.26243 220 59 2 - 25.70716 74.08092 43.84429 9.62580 220 59 2 - 25.93108 74.97363 44.43915 9.98917 220 58 2 - 26.16819 75.86634 45.14292 10.35254 220 58 2 - 26.33241 76.75905 45.71787 10.62507 220 58 2 - 26.95644 76.75905 46.12017 12.54828 220 58 2 - 26.64119 77.65176 46.74585 11.07928 220 57 2 - 26.86749 78.54447 47.60973 11.44265 220 56 2 - 27.08401 79.43718 48.50158 11.80602 220 56 2 - 27.28997 80.32989 49.41509 12.16939 220 55 2 - 27.39853 81.22260 50.11123 12.44192 220 55 2 - 17.87514 81.22260 33.15113 12.60942 220 54 2 - 16.07422 85.20360 29.54181 10.96991 220 54 2 - 13.68860 89.18460 24.76262 8.78389 220 55 2 - 11.30889 93.16560 20.01523 6.59787 220 57 2 - 9.05010 97.14660 15.29236 4.41185 220 59 2 - 7.35907 101.12760 11.76233 2.77234 220 63 2 + 45.32732 69.35250 46.35693 4.55519 330 98 3 + 48.08735 69.94110 49.00259 4.81516 330 98 3 + 50.67255 70.52970 52.53013 5.16178 330 96 3 + 53.03986 71.11830 56.05768 5.50841 330 95 3 + 55.19761 71.70690 59.58522 5.85504 330 93 3 + 57.10378 72.29550 62.23088 6.11501 330 92 3 + 23.42057 72.29550 43.29272 8.98991 220 54 2 + 25.52802 73.18821 43.42601 9.26243 220 59 2 + 25.71530 74.08092 43.84429 9.62580 220 59 2 + 25.93861 74.97363 44.43915 9.98917 220 58 2 + 26.17507 75.86634 45.14292 10.35254 220 58 2 + 26.33860 76.75905 45.71787 10.62507 220 58 2 + 26.48766 76.75905 46.12017 10.80675 220 57 2 + 26.64664 77.65176 46.74585 11.07928 220 57 2 + 26.87216 78.54447 47.60973 11.44265 220 56 2 + 27.08788 79.43718 48.50158 11.80602 220 56 2 + 27.29300 80.32989 49.41509 12.16939 220 55 2 + 27.40069 81.22260 50.11123 12.44192 220 55 2 + 17.87379 81.22260 33.15113 12.60942 220 54 2 + 16.07283 85.20360 29.54181 10.96991 220 54 2 + 13.68717 89.18460 24.76262 8.78389 220 55 2 + 11.30742 93.16560 20.01523 6.59787 220 56 2 + 9.04934 97.14660 15.29236 4.41185 220 59 2 + 7.35828 101.12760 11.76233 2.77234 220 63 2 16.41056 101.12760 16.41056 1.70748 402 100 P 21.77557 102.50100 21.77557 2.27505 402 100 P 28.84714 103.87440 28.84714 3.03181 402 100 P - 31.73481 105.24780 35.82859 3.78857 330 89 3 - 34.94319 106.62120 42.73804 4.54533 330 82 3 - 35.87101 107.99460 47.88667 5.11290 220 75 2 - 37.92936 107.99460 51.30624 5.49128 220 74 2 - 37.76830 109.36800 56.42271 6.05885 220 67 2 - 38.97928 110.74140 63.23158 6.81561 220 62 2 - 40.17097 112.11480 70.03362 7.57237 220 57 2 - 41.35656 113.48820 76.83574 8.32913 220 54 2 - 41.89829 114.86160 81.93981 8.89670 220 51 2 - 43.19822 114.86160 85.34452 9.27508 220 51 2 - 39.83167 116.23500 90.45516 9.84265 110 44 1 - 35.23888 117.60840 97.27574 10.59940 110 36 1 - 30.71749 118.98180 104.10414 11.35616 110 30 1 - 26.27598 120.35520 110.94008 12.11292 110 24 1 - 21.91999 121.72860 116.07149 12.68049 110 19 1 - 20.45421 121.72860 119.49465 8.34140 110 17 1 - 19.98805 123.10200 124.63248 13.62644 110 16 1 - 17.93733 124.47540 131.48763 14.38320 110 14 1 - 15.94764 125.84880 138.34788 15.13996 110 12 1 - 14.00958 127.22220 145.21264 15.89672 110 0 1 - 11.92458 128.59560 150.36370 16.46429 110 0 1 - 12.30296 128.59560 153.79896 16.84267 110 0 1 - 10.24855 129.96900 158.95348 17.41024 110 0 1 + 31.74265 105.24780 35.82859 3.78857 330 89 3 + 34.95124 106.62120 42.73804 4.54533 330 82 3 + 35.86425 107.99460 47.88667 5.11290 220 75 2 + 37.16933 107.99460 51.30624 5.49128 220 72 2 + 37.76151 109.36800 56.42271 6.05885 220 67 2 + 38.97250 110.74140 63.23158 6.81561 220 62 2 + 40.16426 112.11480 70.03362 7.57237 220 57 2 + 41.34996 113.48820 76.83574 8.32913 220 54 2 + 41.89183 114.86160 81.93981 8.89670 220 51 2 + 43.19176 114.86160 85.34452 9.27508 220 51 2 + 39.80864 116.23500 90.45516 9.84265 110 44 1 + 35.21661 117.60840 97.27574 10.59940 110 36 1 + 30.69610 118.98180 104.10414 11.35616 110 29 1 + 26.25561 120.35520 110.94008 12.11292 110 24 1 + 21.87271 121.72860 116.07149 12.68049 110 19 1 + 22.25109 121.72860 119.49465 13.05887 110 19 1 + 19.94231 123.10200 124.63248 13.62644 110 16 1 + 17.89337 124.47540 131.48763 14.38320 110 14 1 + 15.90563 125.84880 138.34788 15.13996 110 11 1 + 13.96967 127.22220 145.21264 15.89672 110 0 1 + 11.88684 128.59560 150.36370 16.46429 110 0 1 + 12.26522 128.59560 153.79896 16.84267 110 0 1 + 10.21301 129.96900 158.95348 17.41024 110 0 1 10.44041 131.34240 165.82865 18.16700 1 0 A 10.87617 132.71580 172.70644 18.92376 1 0 A 11.31189 134.08920 179.58654 19.68052 1 0 A @@ -71485,10 +71621,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.146 'OWB' - -10.79 15.436 'Grind' - -11.09 23.957 'Hydrobiaklei' - -12.00 6.274 'Basisveen' - -12.50 90.324 'Eerste zandlaag' + -10.79 15.493 'Grind' + -11.09 23.940 'Hydrobiaklei' + -12.00 6.273 'Basisveen' + -12.50 90.344 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -71504,7 +71640,7 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 5.40 'Grind' + -10.79 5.42 'Grind' -11.09 4.35 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 30.01 'Eerste zandlaag' @@ -71535,52 +71671,52 @@ CalculationStatus [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 1 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 1 5 10 0.000 1 5 - -43.90708 11.78499 20.50787 0.00000 15.16740 1 0 10 1.000 2 0 - -41.78765 14.47718 15.85731 0.00000 15.23394 1 1 10 1.000 2 0 - 0.00000 0.00000 0.00000 0.00000 11.64883 1 3 10 1.000 0 0 - 0.00000 0.00000 0.00000 0.00000 11.64883 1 14 10 1.200 0 0 - -691.78078 342.16145 1433.04749 45.71283 51.64945 2 4 10 1.000 2 0 - -691.73486 342.59414 900.48172 45.63228 51.60481 2 5 10 1.000 2 0 - -549.50462 236.57533 769.00656 34.26157 41.41420 2 0 10 1.000 2 0 - -549.19041 232.30199 585.36898 33.68507 40.99678 2 1 10 1.000 2 0 - 103.91593 148.14320 -15.03321 13.98026 17.26095 2 3 10 1.000 2 0 - 124.69912 177.77184 -15.03321 13.98026 17.26095 2 14 10 1.200 2 0 - -648.75847 289.90994 1147.46151 47.66380 44.71060 3 4 10 1.000 0 0 - -648.75862 288.60417 765.60354 47.53459 44.63889 3 5 10 1.000 0 0 - -535.19594 203.20315 655.01026 26.44433 33.59687 3 0 10 1.000 2 0 - -534.69722 199.97124 524.86446 26.09581 33.37682 3 1 10 1.000 2 0 - 105.85579 148.14320 -14.33849 10.22307 13.24035 3 3 10 1.000 2 0 - 127.02695 177.77184 -14.33849 10.22307 13.24035 3 14 10 1.200 2 0 + -43.90928 11.78662 20.50529 0.00000 15.11235 1 0 10 1.000 2 0 + -41.78110 14.45844 15.87281 0.00000 15.18313 1 1 10 1.000 2 0 + 0.00000 0.00000 0.00000 0.00000 11.59829 1 3 10 1.000 0 0 + 0.00000 0.00000 0.00000 0.00000 11.59829 1 14 10 1.200 0 0 + -692.14172 342.40409 1435.23736 45.74047 51.67532 2 4 10 1.000 2 0 + -692.09714 342.84811 901.49594 45.66138 51.63182 2 5 10 1.000 2 0 + -549.50106 236.23940 769.36347 34.23101 41.38471 2 0 10 1.000 2 0 + -549.19041 232.01090 585.50060 33.65994 40.97222 2 1 10 1.000 2 0 + 103.96840 148.14320 -15.04770 13.93175 17.21289 2 3 10 1.000 2 0 + 124.76208 177.77184 -15.04770 13.93175 17.21289 2 14 10 1.200 2 0 + -649.05813 290.14696 1149.50465 47.69538 44.73993 3 4 10 1.000 0 0 + -649.05828 288.81924 766.41893 47.56607 44.66797 3 5 10 1.000 0 0 + -535.19050 203.26035 655.27937 26.44984 33.60164 3 0 10 1.000 2 0 + -534.69722 200.02226 525.08950 26.10147 33.38154 3 1 10 1.000 2 0 + 105.88504 148.14320 -14.35097 10.20458 13.22088 3 3 10 1.000 2 0 + 127.06205 177.77184 -14.35097 10.20458 13.22088 3 14 10 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 4 5 10 0.000 1 5 - -22.86646 -12.91329 -6.21658 13.82637 14.34109 4 0 10 1.000 2 0 - 26.03588 13.37982 -5.63752 13.99896 14.59847 4 1 10 1.000 2 0 - 7.19495 -3.69857 -4.80041 9.24447 9.50031 4 3 10 1.000 2 0 - 8.63394 -4.43829 -4.80041 9.24447 9.50031 4 14 10 1.200 2 0 + -22.86958 -12.91399 -6.21747 13.80563 14.32083 4 0 10 1.000 2 0 + 26.08244 13.38314 -5.63280 13.97957 14.58021 4 1 10 1.000 2 0 + 7.21792 -3.71058 -4.80240 9.23090 9.48756 4 3 10 1.000 2 0 + 8.66151 -4.45269 -4.80240 9.23090 9.48756 4 14 10 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 5 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 5 5 10 0.000 1 5 - 215.04550 170.74668 -15.60129 0.00000 15.57062 5 0 10 1.000 0 0 - 219.36540 171.30336 -15.41971 0.00000 15.20071 5 1 10 1.000 0 0 - 195.42719 156.88905 -13.93917 0.00000 11.08574 5 3 10 1.000 0 0 - 234.51263 188.26686 -13.93917 0.00000 11.08574 5 14 10 1.200 0 0 - 326.28837 303.72587 -22.87116 0.00000 21.24211 6 4 10 1.000 0 0 - 334.11514 304.73448 -22.52137 0.00000 21.61345 6 5 10 1.000 0 0 - 330.58684 304.27980 -22.68365 0.00000 18.61686 6 0 10 1.000 0 0 - 337.44599 305.16371 -22.37816 0.00000 18.51952 6 1 10 1.000 0 0 - 322.10358 298.61046 -21.86172 0.00000 17.08407 6 3 10 1.000 0 0 - 386.52430 358.33255 -21.86172 0.00000 17.08407 6 14 10 1.200 0 0 - 15.15167 6.96708 -12.36384 0.00000 29.18849 7 4 10 1.000 0 0 - 38.19932 35.22350 -11.76553 0.00000 32.44816 7 5 10 1.000 2 0 - 12.98855 -5.39955 -12.44469 0.00000 27.04833 7 0 10 1.000 0 0 - 39.70357 39.40395 -11.73301 0.00000 30.23972 7 1 10 1.000 2 0 - 16.43456 16.20363 -8.00135 0.00000 24.42116 7 3 10 1.000 2 0 - 19.72147 19.44436 -8.00135 0.00000 24.42116 7 14 10 1.200 2 0 - 650.74807 659.85000 -85.84282 0.00000 37.54145 8 4 10 1.000 1 0 - 650.68277 659.85000 -85.36110 0.00000 40.54306 8 5 10 1.000 1 0 - 650.75138 659.85000 -85.86736 0.00000 33.21556 8 0 10 1.000 1 0 - 650.66074 659.85000 -85.19875 0.00000 36.94297 8 1 10 1.000 1 0 - 432.04811 439.90000 -59.66675 0.00000 28.66189 8 3 10 1.000 1 0 - 518.45773 527.88000 -59.66675 0.00000 28.66189 8 14 10 1.200 1 0 + 215.08745 170.75204 -15.59730 0.00000 15.56443 5 0 10 1.000 0 0 + 219.40847 171.30887 -15.41568 0.00000 15.18788 5 1 10 1.000 0 0 + 195.45183 156.89218 -13.93699 0.00000 11.10352 5 3 10 1.000 0 0 + 234.54220 188.27062 -13.93699 0.00000 11.10352 5 14 10 1.200 0 0 + 326.29092 303.72616 -22.87051 0.00000 21.26399 6 4 10 1.000 0 0 + 334.11772 304.73477 -22.52069 0.00000 21.64386 6 5 10 1.000 0 0 + 330.59289 304.28054 -22.68283 0.00000 18.63037 6 0 10 1.000 0 0 + 337.45639 305.16501 -22.37713 0.00000 18.53280 6 1 10 1.000 0 0 + 322.12373 298.61301 -21.85961 0.00000 17.10090 6 3 10 1.000 0 0 + 386.54848 358.33561 -21.85961 0.00000 17.10090 6 14 10 1.200 0 0 + 15.14435 6.84128 -12.36873 0.00000 29.17989 7 4 10 1.000 0 0 + 38.16767 35.20227 -11.76666 0.00000 32.44655 7 5 10 1.000 2 0 + 12.98570 -5.25365 -12.44937 0.00000 27.07103 7 0 10 1.000 0 0 + 39.67036 39.38931 -11.73398 0.00000 30.24451 7 1 10 1.000 2 0 + 16.39735 16.19512 -8.00298 0.00000 24.46438 7 3 10 1.000 2 0 + 19.67682 19.43414 -8.00298 0.00000 24.46438 7 14 10 1.200 2 0 + 650.74801 659.85000 -85.84169 0.00000 37.56004 8 4 10 1.000 1 0 + 650.68285 659.85000 -85.36098 0.00000 40.55536 8 5 10 1.000 1 0 + 650.75139 659.85000 -85.86678 0.00000 33.22110 8 0 10 1.000 1 0 + 650.66085 659.85000 -85.19886 0.00000 36.94830 8 1 10 1.000 1 0 + 432.04825 439.90000 -59.66764 0.00000 28.69943 8 3 10 1.000 1 0 + 518.45790 527.88000 -59.66764 0.00000 28.69943 8 14 10 1.200 1 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -71605,68 +71741,68 @@ AnchorName 2 5 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 2 0 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 2 1 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' - 2 3 7 10 1.000 97.34801 1 1 0 0 'Stempelraam boven dek' - 2 14 7 10 1.200 116.81762 1 1 0 0 'Stempelraam boven dek' + 2 3 7 10 1.000 97.32955 1 1 0 0 'Stempelraam boven dek' + 2 14 7 10 1.200 116.79546 1 1 0 0 'Stempelraam boven dek' 3 4 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 5 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 0 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 1 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' - 3 3 7 10 1.000 96.29188 1 1 0 0 'Stempelraam boven dek' - 3 14 7 10 1.200 115.55025 1 1 0 0 'Stempelraam boven dek' + 3 3 7 10 1.000 96.28305 1 1 0 0 'Stempelraam boven dek' + 3 14 7 10 1.200 115.53966 1 1 0 0 'Stempelraam boven dek' 4 4 7 10 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 4 5 7 10 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' - 4 0 7 10 1.000 380.84328 1 1 0 0 'Stempelraam boven dek' - 4 1 7 10 1.000 380.05558 1 1 0 0 'Stempelraam boven dek' - 4 3 7 10 1.000 240.67648 1 1 0 0 'Stempelraam boven dek' - 4 14 7 10 1.200 288.81177 1 1 0 0 'Stempelraam boven dek' + 4 0 7 10 1.000 380.84398 1 1 0 0 'Stempelraam boven dek' + 4 1 7 10 1.000 380.04921 1 1 0 0 'Stempelraam boven dek' + 4 3 7 10 1.000 240.67366 1 1 0 0 'Stempelraam boven dek' + 4 14 7 10 1.200 288.80840 1 1 0 0 'Stempelraam boven dek' 5 4 7 10 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 4 7 10 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' 5 5 7 10 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 5 7 10 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' - 5 0 7 10 1.000 491.09298 1 1 0 0 'Stempelraam boven dek' - 5 0 7 10 1.000 282.35882 1 1 0 0 'Onderwaterbeton 2-laags' - 5 1 7 10 1.000 490.53629 1 1 0 0 'Stempelraam boven dek' - 5 1 7 10 1.000 294.14592 1 1 0 0 'Onderwaterbeton 2-laags' - 5 3 7 10 1.000 364.00087 1 1 0 0 'Stempelraam boven dek' - 5 3 7 10 1.000 259.43768 1 1 0 0 'Onderwaterbeton 2-laags' - 5 14 7 10 1.200 436.80104 1 1 0 0 'Stempelraam boven dek' - 5 14 7 10 1.200 311.32522 1 1 0 0 'Onderwaterbeton 2-laags' - 6 4 7 10 1.000 520.80784 1 1 0 0 'Stempelraam boven dek' - 6 4 7 10 1.000 445.22007 1 1 0 0 'Onderwaterbeton 2-laags' - 6 5 7 10 1.000 519.79924 1 1 0 0 'Stempelraam boven dek' - 6 5 7 10 1.000 457.35495 1 1 0 0 'Onderwaterbeton 2-laags' - 6 0 7 10 1.000 520.25392 1 1 0 0 'Stempelraam boven dek' - 6 0 7 10 1.000 458.09272 1 1 0 0 'Onderwaterbeton 2-laags' - 6 1 7 10 1.000 519.37001 1 1 0 0 'Stempelraam boven dek' - 6 1 7 10 1.000 470.26449 1 1 0 0 'Onderwaterbeton 2-laags' - 6 3 7 10 1.000 397.48623 1 1 0 0 'Stempelraam boven dek' - 6 3 7 10 1.000 442.02399 1 1 0 0 'Onderwaterbeton 2-laags' - 6 14 7 10 1.200 476.98347 1 1 0 0 'Stempelraam boven dek' - 6 14 7 10 1.200 530.42879 1 1 0 0 'Onderwaterbeton 2-laags' - 7 4 7 10 1.000 658.60850 1 1 0 0 'Stempelraam boven dek' - 7 4 7 10 1.000 797.25790 1 1 0 0 'Onderwaterbeton 2-laags' - 7 5 7 10 1.000 660.36052 1 1 0 0 'Stempelraam boven dek' - 7 5 7 10 1.000 767.24947 1 1 0 0 'Onderwaterbeton 2-laags' - 7 0 7 10 1.000 658.36818 1 1 0 0 'Stempelraam boven dek' - 7 0 7 10 1.000 803.06242 1 1 0 0 'Onderwaterbeton 2-laags' - 7 1 7 10 1.000 660.45958 1 1 0 0 'Stempelraam boven dek' - 7 1 7 10 1.000 762.97379 1 1 0 0 'Onderwaterbeton 2-laags' - 7 3 7 10 1.000 439.74122 1 1 0 0 'Stempelraam boven dek' - 7 3 7 10 1.000 517.37351 1 1 0 0 'Onderwaterbeton 2-laags' - 7 14 7 10 1.200 527.68946 1 1 0 0 'Stempelraam boven dek' - 7 14 7 10 1.200 620.84821 1 1 0 0 'Onderwaterbeton 2-laags' - 8 4 7 10 1.000 592.02139 1 1 0 0 'Onderwaterbeton 2-laags' - 8 4 7 10 1.000 785.68335 1 1 0 0 'Dek' - 8 5 7 10 1.000 578.83225 1 1 0 0 'Onderwaterbeton 2-laags' - 8 5 7 10 1.000 786.94765 1 1 0 0 'Dek' - 8 0 7 10 1.000 593.15250 1 1 0 0 'Onderwaterbeton 2-laags' - 8 0 7 10 1.000 785.61765 1 1 0 0 'Dek' - 8 1 7 10 1.000 569.14407 1 1 0 0 'Onderwaterbeton 2-laags' - 8 1 7 10 1.000 787.38614 1 1 0 0 'Dek' - 8 3 7 10 1.000 384.84499 1 1 0 0 'Onderwaterbeton 2-laags' - 8 3 7 10 1.000 523.48621 1 1 0 0 'Dek' - 8 14 7 10 1.200 461.81399 1 1 0 0 'Onderwaterbeton 2-laags' - 8 14 7 10 1.200 628.18345 1 1 0 0 'Dek' + 5 0 7 10 1.000 491.08756 1 1 0 0 'Stempelraam boven dek' + 5 0 7 10 1.000 282.38024 1 1 0 0 'Onderwaterbeton 2-laags' + 5 1 7 10 1.000 490.53073 1 1 0 0 'Stempelraam boven dek' + 5 1 7 10 1.000 294.16863 1 1 0 0 'Onderwaterbeton 2-laags' + 5 3 7 10 1.000 363.99768 1 1 0 0 'Stempelraam boven dek' + 5 3 7 10 1.000 259.50077 1 1 0 0 'Onderwaterbeton 2-laags' + 5 14 7 10 1.200 436.79722 1 1 0 0 'Stempelraam boven dek' + 5 14 7 10 1.200 311.40092 1 1 0 0 'Onderwaterbeton 2-laags' + 6 4 7 10 1.000 520.80750 1 1 0 0 'Stempelraam boven dek' + 6 4 7 10 1.000 445.27768 1 1 0 0 'Onderwaterbeton 2-laags' + 6 5 7 10 1.000 519.79890 1 1 0 0 'Stempelraam boven dek' + 6 5 7 10 1.000 457.37401 1 1 0 0 'Onderwaterbeton 2-laags' + 6 0 7 10 1.000 520.25313 1 1 0 0 'Stempelraam boven dek' + 6 0 7 10 1.000 458.15274 1 1 0 0 'Onderwaterbeton 2-laags' + 6 1 7 10 1.000 519.36865 1 1 0 0 'Stempelraam boven dek' + 6 1 7 10 1.000 470.29852 1 1 0 0 'Onderwaterbeton 2-laags' + 6 3 7 10 1.000 397.48362 1 1 0 0 'Stempelraam boven dek' + 6 3 7 10 1.000 442.08439 1 1 0 0 'Onderwaterbeton 2-laags' + 6 14 7 10 1.200 476.98034 1 1 0 0 'Stempelraam boven dek' + 6 14 7 10 1.200 530.50127 1 1 0 0 'Onderwaterbeton 2-laags' + 7 4 7 10 1.000 658.59573 1 1 0 0 'Stempelraam boven dek' + 7 4 7 10 1.000 797.39641 1 1 0 0 'Onderwaterbeton 2-laags' + 7 5 7 10 1.000 660.35865 1 1 0 0 'Stempelraam boven dek' + 7 5 7 10 1.000 767.27250 1 1 0 0 'Onderwaterbeton 2-laags' + 7 0 7 10 1.000 658.35605 1 1 0 0 'Stempelraam boven dek' + 7 0 7 10 1.000 803.19460 1 1 0 0 'Onderwaterbeton 2-laags' + 7 1 7 10 1.000 660.45818 1 1 0 0 'Stempelraam boven dek' + 7 1 7 10 1.000 762.98981 1 1 0 0 'Onderwaterbeton 2-laags' + 7 3 7 10 1.000 439.73942 1 1 0 0 'Stempelraam boven dek' + 7 3 7 10 1.000 517.38077 1 1 0 0 'Onderwaterbeton 2-laags' + 7 14 7 10 1.200 527.68731 1 1 0 0 'Stempelraam boven dek' + 7 14 7 10 1.200 620.85693 1 1 0 0 'Onderwaterbeton 2-laags' + 8 4 7 10 1.000 591.97901 1 1 0 0 'Onderwaterbeton 2-laags' + 8 4 7 10 1.000 785.68542 1 1 0 0 'Dek' + 8 5 7 10 1.000 578.80446 1 1 0 0 'Onderwaterbeton 2-laags' + 8 5 7 10 1.000 786.94709 1 1 0 0 'Dek' + 8 0 7 10 1.000 593.17677 1 1 0 0 'Onderwaterbeton 2-laags' + 8 0 7 10 1.000 785.61815 1 1 0 0 'Dek' + 8 1 7 10 1.000 569.16240 1 1 0 0 'Onderwaterbeton 2-laags' + 8 1 7 10 1.000 787.38487 1 1 0 0 'Dek' + 8 3 7 10 1.000 384.84384 1 1 0 0 'Onderwaterbeton 2-laags' + 8 3 7 10 1.000 523.48564 1 1 0 0 'Dek' + 8 14 7 10 1.200 461.81260 1 1 0 0 'Onderwaterbeton 2-laags' + 8 14 7 10 1.200 628.18277 1 1 0 0 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -71698,18 +71834,18 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Stempelraam boven dek' 660.45958 -'Onderwaterbeton 2-laags' 803.06242 -'Dek' 787.38614 +'Stempelraam boven dek' 660.45818 +'Onderwaterbeton 2-laags' 803.19460 +'Dek' 787.38487 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-691.78078 +MaximumMoment=-692.14172 MaximumShearForce=659.85000 -MaximumDisplacement=-59.66675 -MaximumPercentageMobilisedMoment=47.66380 -MaximumPercentageMobilisedResistance=51.64945 +MaximumDisplacement=-59.66764 +MaximumPercentageMobilisedMoment=47.69538 +MaximumPercentageMobilisedResistance=51.67532 VerticalBalanceSummary=1 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shi index f854b852..c05fc6fc 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects05.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:56:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects05.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:46:37 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects05.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1278,6 +1278,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1287,6 +1288,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1296,6 +1298,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1305,6 +1308,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1314,6 +1318,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1323,6 +1328,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1332,6 +1338,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1341,6 +1348,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1364,7 +1372,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1375,8 +1383,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1387,7 +1397,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1406,6 +1416,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1433,6 +1444,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1460,6 +1472,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1487,6 +1500,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1514,6 +1528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1541,6 +1556,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1568,6 +1584,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1595,6 +1612,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1605,7 +1623,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1620,8 +1694,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1631,8 +1706,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1649,6 +1724,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1658,7 +1734,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1676,6 +1808,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1703,6 +1836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1730,6 +1864,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shd index 165b5732..3f3b826d 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects06.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:10 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects06.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -615,6 +616,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -638,7 +640,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -649,8 +651,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -661,7 +665,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -680,6 +684,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,6 +712,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -734,6 +740,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -761,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -788,6 +796,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -815,6 +824,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.10 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -842,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -869,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -879,7 +891,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -888,14 +900,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -905,8 +974,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -923,6 +992,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -932,7 +1002,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -950,6 +1076,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -977,6 +1104,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1004,6 +1132,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1229,10 +1358,10 @@ PartialFactorSet=4 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 45.78 : Percentage mobilized resistance left + 45.75 : Percentage mobilized resistance left 5.29 : Percentage mobilized resistance right - 16.55 : Effective left - 16.55 : Effective right + 16.54 : Effective left + 16.54 : Effective right 10.12 : Water pressure left 10.12 : Water pressure right 36.15 : Max effective resistance left @@ -1274,150 +1403,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -0.15751 - 0.00000 0.00000 -0.15568 - 0.00000 0.00000 -0.15385 - 0.00000 0.00000 -0.15203 - 0.00000 0.00000 -0.15020 - 0.00000 0.00000 -0.14838 - 0.00000 0.00000 -0.14838 - 0.00000 0.00000 -0.14655 - 0.00000 0.00000 -0.14473 - 0.00000 0.00000 -0.14290 - 0.00000 0.00000 -0.14108 - 0.00000 0.00000 -0.13925 - 0.00000 0.00000 -0.13925 - 0.00000 0.00000 -0.13743 - 0.00000 0.00000 -0.13560 - 0.00000 0.00000 -0.13377 - 0.00000 0.00000 -0.13195 - 0.00000 0.00000 -0.13012 - 0.00000 0.00000 -0.13012 - 0.00000 0.00000 -0.12875 - 0.00000 0.00000 -0.12739 - 0.00000 0.00000 -0.12602 - 0.00000 0.00000 -0.12465 - 0.00000 0.00000 -0.12328 - 0.00000 0.00000 -0.12328 - 0.00000 0.00000 -0.12191 - 0.00000 0.00000 -0.12054 - 0.00000 0.00000 -0.11917 - 0.00000 0.00000 -0.11780 - 0.00000 0.00000 -0.11643 - 0.00000 0.00000 -0.11643 - 0.00000 0.00000 -0.11589 - 0.00000 0.00000 -0.11534 - 0.00000 0.00000 -0.11479 - 0.00000 0.00000 -0.11424 - 0.00000 0.00000 -0.11370 - 0.00000 0.00000 -0.11370 - 0.00000 0.00000 -0.11184 - 0.00000 0.00000 -0.10995 - 0.00000 0.00000 -0.10805 - 0.00000 0.00000 -0.10616 - 0.00000 0.00000 -0.10431 - 0.00000 0.00000 -0.10431 - 0.00000 0.00000 -0.10245 - 0.00000 0.00000 -0.10056 - 0.00000 0.00000 -0.09866 - 0.00000 0.00000 -0.09677 - 0.00000 0.00000 -0.09492 - 0.00000 0.00000 -0.09492 - 0.00000 0.00000 -0.09307 - 0.00000 0.00000 -0.09118 - 0.00000 0.00000 -0.08927 - 0.00000 0.00000 -0.08738 - 0.00000 0.00000 -0.08553 - 0.00000 0.00000 -0.08553 - 0.00000 0.00000 -0.08368 - 0.00000 0.00000 -0.08179 - 0.00000 0.00000 -0.07989 - 0.00000 0.00000 -0.07800 - 0.00000 0.00000 -0.07614 - 0.00000 0.00000 -0.07614 - 0.00000 0.00000 -0.07429 - 0.00000 0.00000 -0.07240 - 0.00000 0.00000 -0.07050 - 0.00000 0.00000 -0.06861 - 0.00000 0.00000 -0.06676 - 0.00000 0.00000 -0.06676 - 0.00000 0.00000 -0.06490 - 0.00000 0.00000 -0.06301 - 0.00000 0.00000 -0.06111 - 0.00000 0.00000 -0.05922 - 0.00000 0.00000 -0.05737 - 0.00000 0.00000 -0.05737 - 0.00000 0.00000 -0.05552 - 0.00000 0.00000 -0.05363 - 0.00000 0.00000 -0.05172 - 0.00000 0.00000 -0.04983 - 0.00000 0.00000 -0.04798 - 0.00000 0.00000 -0.04798 - 0.00000 -0.00002 -0.04615 - 0.00000 -0.00002 -0.04433 - 0.00000 -0.00002 -0.04250 - 0.00000 -0.00002 -0.04068 - 0.00000 -0.00002 -0.03885 - 0.00000 -0.00002 -0.03885 - 0.00000 -0.00002 -0.03703 - 0.00000 -0.00002 -0.03520 - -0.00001 -0.00002 -0.03338 - -0.00001 -0.00002 -0.03155 - -0.00001 -0.00002 -0.02972 - -0.00001 -0.00002 -0.02972 - -0.00001 -0.00002 -0.02790 - -0.00001 -0.00002 -0.02607 - -0.00001 -0.00002 -0.02425 - -0.00001 -0.00002 -0.02242 - -0.00001 -0.00002 -0.02059 - -0.00001 -0.00010 -0.02059 - 0.00111 0.04970 -0.01854 - 0.00316 0.05480 -0.01651 - 0.00502 0.04353 -0.01453 - 0.00641 0.03130 -0.01264 - 0.00738 0.02055 -0.01085 - 0.00738 0.02055 -0.01085 - 0.00798 0.01171 -0.00919 - 0.00827 0.00413 -0.00766 - 0.00831 -0.00214 -0.00627 - 0.00814 -0.00640 -0.00502 - 0.00785 -0.00911 -0.00391 - 0.00785 -0.00902 -0.00391 - 0.00747 -0.01084 -0.00293 - 0.00704 -0.01228 -0.00208 - 0.00656 -0.01326 -0.00135 - 0.00605 -0.01386 -0.00073 - 0.00552 -0.01422 -0.00021 - 0.00552 -0.01419 -0.00021 - 0.00499 -0.01411 0.00021 - 0.00447 -0.01389 0.00055 - 0.00395 -0.01350 0.00082 - 0.00346 -0.01298 0.00101 - 0.00298 -0.01240 0.00115 - 0.00298 -0.01239 0.00115 - 0.00253 -0.01167 0.00124 - 0.00211 -0.01073 0.00129 - 0.00173 -0.00957 0.00130 - 0.00139 -0.00841 0.00128 - 0.00109 -0.00729 0.00123 - 0.00110 -0.00728 0.00123 - 0.00084 -0.00620 0.00117 - 0.00063 -0.00518 0.00109 - 0.00045 -0.00424 0.00101 - 0.00031 -0.00338 0.00091 - 0.00020 -0.00257 0.00081 - 0.00020 -0.00257 0.00081 - 0.00011 -0.00192 0.00071 - 0.00005 -0.00133 0.00060 - 0.00001 -0.00084 0.00050 - -0.00001 -0.00044 0.00039 - -0.00002 -0.00009 0.00028 - -0.00002 -0.00009 0.00028 - -0.00002 0.00007 0.00018 - -0.00002 0.00018 0.00007 - -0.00001 0.00019 -0.00004 - 0.00000 0.00011 -0.00014 - 0.00000 0.00000 -0.00025 + 0.00000 0.00000 -0.07907 + 0.00000 0.00000 -0.07816 + 0.00000 0.00000 -0.07724 + 0.00000 0.00000 -0.07633 + 0.00000 0.00000 -0.07542 + 0.00000 0.00000 -0.07450 + 0.00000 0.00000 -0.07450 + 0.00000 0.00000 -0.07359 + 0.00000 0.00000 -0.07268 + 0.00000 0.00000 -0.07176 + 0.00000 0.00000 -0.07085 + 0.00000 0.00000 -0.06994 + 0.00000 0.00000 -0.06994 + 0.00000 0.00000 -0.06902 + 0.00000 0.00000 -0.06811 + 0.00000 0.00000 -0.06720 + 0.00000 0.00000 -0.06628 + 0.00000 0.00000 -0.06537 + 0.00000 0.00000 -0.06537 + 0.00000 0.00000 -0.06469 + 0.00000 0.00000 -0.06400 + 0.00000 0.00000 -0.06332 + 0.00000 0.00000 -0.06263 + 0.00000 0.00000 -0.06195 + 0.00000 0.00000 -0.06195 + 0.00000 0.00000 -0.06126 + 0.00000 0.00000 -0.06058 + 0.00000 0.00000 -0.05989 + 0.00000 0.00000 -0.05921 + 0.00000 0.00000 -0.05852 + 0.00000 0.00000 -0.05852 + 0.00000 0.00000 -0.05825 + 0.00000 0.00000 -0.05797 + 0.00000 0.00000 -0.05770 + 0.00000 0.00000 -0.05742 + 0.00000 0.00000 -0.05715 + 0.00000 0.00000 -0.05715 + 0.00000 0.00000 -0.05622 + 0.00000 0.00000 -0.05528 + 0.00000 0.00000 -0.05433 + 0.00000 0.00000 -0.05338 + 0.00000 0.00000 -0.05245 + 0.00000 0.00000 -0.05245 + 0.00000 0.00000 -0.05153 + 0.00000 0.00000 -0.05058 + 0.00000 0.00000 -0.04963 + 0.00000 0.00000 -0.04868 + 0.00000 0.00000 -0.04776 + 0.00000 0.00000 -0.04776 + 0.00000 0.00000 -0.04683 + 0.00000 0.00000 -0.04588 + 0.00000 0.00000 -0.04493 + 0.00000 0.00000 -0.04399 + 0.00000 0.00000 -0.04306 + 0.00000 0.00000 -0.04306 + 0.00000 0.00000 -0.04213 + 0.00000 0.00000 -0.04119 + 0.00000 0.00000 -0.04023 + 0.00000 0.00000 -0.03929 + 0.00000 0.00000 -0.03836 + 0.00000 0.00000 -0.03836 + 0.00000 0.00000 -0.03743 + 0.00000 0.00000 -0.03649 + 0.00000 0.00000 -0.03554 + 0.00000 0.00000 -0.03459 + 0.00000 0.00000 -0.03366 + 0.00000 0.00000 -0.03366 + 0.00000 0.00000 -0.03274 + 0.00000 0.00000 -0.03179 + 0.00000 0.00000 -0.03084 + 0.00000 0.00000 -0.02989 + 0.00000 0.00000 -0.02897 + 0.00000 0.00000 -0.02897 + 0.00000 0.00000 -0.02804 + 0.00000 0.00000 -0.02709 + 0.00000 0.00000 -0.02614 + 0.00000 0.00000 -0.02520 + 0.00000 0.00000 -0.02427 + 0.00000 0.00000 -0.02427 + 0.00000 -0.00002 -0.02336 + 0.00000 -0.00002 -0.02244 + 0.00000 -0.00002 -0.02153 + 0.00000 -0.00002 -0.02061 + 0.00000 -0.00002 -0.01970 + 0.00000 -0.00002 -0.01970 + 0.00000 -0.00002 -0.01879 + 0.00000 -0.00002 -0.01787 + -0.00001 -0.00002 -0.01696 + -0.00001 -0.00002 -0.01605 + -0.00001 -0.00002 -0.01513 + -0.00001 -0.00002 -0.01513 + -0.00001 -0.00002 -0.01422 + -0.00001 -0.00002 -0.01331 + -0.00001 -0.00002 -0.01239 + -0.00001 -0.00002 -0.01148 + -0.00001 -0.00002 -0.01056 + -0.00001 -0.00006 -0.01056 + 0.00033 0.01968 -0.00953 + 0.00134 0.02909 -0.00851 + 0.00233 0.02327 -0.00752 + 0.00308 0.01694 -0.00656 + 0.00361 0.01127 -0.00565 + 0.00360 0.01127 -0.00565 + 0.00394 0.00674 -0.00480 + 0.00412 0.00277 -0.00402 + 0.00416 -0.00053 -0.00331 + 0.00409 -0.00278 -0.00267 + 0.00396 -0.00429 -0.00209 + 0.00396 -0.00424 -0.00209 + 0.00378 -0.00516 -0.00159 + 0.00357 -0.00595 -0.00115 + 0.00334 -0.00650 -0.00077 + 0.00309 -0.00684 -0.00044 + 0.00283 -0.00711 -0.00017 + 0.00283 -0.00710 -0.00017 + 0.00256 -0.00705 0.00005 + 0.00230 -0.00697 0.00023 + 0.00204 -0.00680 0.00037 + 0.00179 -0.00656 0.00048 + 0.00155 -0.00630 0.00056 + 0.00155 -0.00629 0.00056 + 0.00132 -0.00593 0.00061 + 0.00110 -0.00547 0.00063 + 0.00091 -0.00489 0.00064 + 0.00074 -0.00432 0.00064 + 0.00059 -0.00375 0.00062 + 0.00059 -0.00375 0.00062 + 0.00045 -0.00321 0.00059 + 0.00034 -0.00270 0.00055 + 0.00025 -0.00222 0.00051 + 0.00018 -0.00178 0.00046 + 0.00012 -0.00136 0.00041 + 0.00012 -0.00136 0.00041 + 0.00007 -0.00104 0.00036 + 0.00004 -0.00074 0.00031 + 0.00002 -0.00048 0.00026 + 0.00000 -0.00028 0.00020 + 0.00000 -0.00007 0.00015 + 0.00000 -0.00007 0.00015 + 0.00000 -0.00001 0.00009 + 0.00000 0.00005 0.00004 + 0.00000 0.00006 -0.00001 + 0.00000 0.00002 -0.00007 + 0.00000 0.00000 -0.00012 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -1623,7 +1752,7 @@ Lambda passive -2.93333 6.51672 11.03958 3.82714 0.58728 0.58728 1.69404 -2.96667 7.02080 11.88877 4.12153 0.58705 0.58705 1.69336 -3.00000 7.52549 12.52567 4.34233 0.58770 0.58686 1.69281 - -3.00000 7.52549 58.46446 2.09965 0.58770 0.27552 7.67175 + -3.00000 7.52549 58.46446 2.09965 0.34734 0.27552 7.67175 -3.03750 7.90651 48.31537 2.18288 0.37052 0.27609 6.11083 -3.07500 8.28838 48.58033 2.29190 0.39361 0.27652 5.86125 -3.11250 8.67115 50.17457 2.39953 0.41631 0.27673 5.78638 @@ -1783,54 +1912,54 @@ Status character 3.82714 0.00000 11.03958 3.82714 1 35 A 4.12153 0.00000 11.88877 4.12153 1 35 A 4.34233 0.00000 12.52567 4.34857 1 0 A - 4.23158 0.00000 58.46446 4.47871 110 0 1 - 2.70704 0.33750 48.31537 2.92954 110 0 1 - 3.06426 0.67500 48.58033 3.26241 110 0 1 - 3.43548 1.01250 50.17457 3.60990 110 0 1 - 3.81809 1.35000 52.07629 3.96973 110 0 1 - 4.16553 1.68750 53.58038 4.29568 110 0 1 - 4.25407 1.68750 54.60535 4.38422 110 0 1 - 4.60843 2.02500 56.16287 4.71866 110 0 1 - 5.01258 2.36250 58.26129 5.10451 110 0 1 - 5.42087 2.70000 60.37624 5.49614 110 0 1 - 5.83217 3.03750 62.50150 5.89243 110 0 1 - 6.19157 3.37500 64.49504 6.23848 110 0 1 - 6.29956 3.37500 66.57937 6.34647 110 0 1 - 6.66001 3.71250 69.96423 6.69520 110 0 1 - 7.07513 4.05000 74.90531 7.10011 110 0 1 - 7.49029 4.38750 80.41770 7.50650 110 0 1 - 7.90506 4.72500 86.59035 7.91382 110 0 1 - 8.25736 5.06250 91.66416 8.25989 110 0 1 - 8.38095 5.06250 95.31204 8.38348 110 0 1 - 8.73197 5.40000 101.22566 8.72941 110 9 1 - 9.14354 5.73750 109.93207 9.13690 110 8 1 - 9.55356 6.07500 119.76442 9.54375 110 8 1 - 9.96185 6.41250 130.91494 9.94968 110 8 1 - 10.30049 6.75000 140.22829 10.28666 110 7 1 - 10.43628 6.75000 146.87656 10.42245 110 7 1 - 10.77275 7.08750 158.15994 10.75785 110 7 1 - 11.17513 7.42500 174.82748 11.15969 110 6 1 - 11.57535 7.76250 194.11160 11.55980 110 6 1 - 11.97335 8.10000 216.72962 11.95803 110 6 1 - 12.29656 8.43750 236.12971 12.28178 110 5 1 - 12.44175 8.43750 250.59121 12.42697 110 5 1 - 12.76244 8.77500 275.00417 12.74840 110 5 1 - 13.15344 9.11250 312.71845 13.14031 110 4 1 - 13.54202 9.45000 358.73203 13.52993 110 4 1 - 13.92813 9.78750 414.92278 13.91718 110 3 1 - 14.23568 10.12500 465.70152 14.22594 110 3 1 - 14.38799 10.12500 505.16448 14.37826 110 3 1 - 14.69283 10.46250 575.04950 14.68433 110 3 1 - 15.07136 10.80000 691.34024 15.06413 110 2 1 - 15.44730 11.13750 890.46711 15.44134 110 2 1 - 15.82062 11.47500 247.09042 15.81595 110 6 1 - 16.11261 11.81250 243.65765 16.10923 110 7 1 - 16.27019 11.81250 242.61634 16.26680 110 7 1 - 16.55936 12.15000 247.77890 16.55724 110 7 1 - 16.92473 12.48750 255.15813 16.92388 110 7 1 - 17.28741 12.82500 262.49387 17.28784 110 0 1 - 17.64741 13.16250 269.78378 17.64910 110 0 1 - 17.92413 13.50000 275.22171 17.92709 110 0 1 + 2.52020 0.00000 58.46446 2.64695 110 0 1 + 2.81513 0.33750 48.31537 2.92954 110 0 1 + 3.16025 0.67500 48.58033 3.26241 110 0 1 + 3.51971 1.01250 50.17457 3.60990 110 0 1 + 3.89106 1.35000 52.07629 3.96973 110 0 1 + 4.22793 1.68750 53.58038 4.29568 110 0 1 + 4.31647 1.68750 54.60535 4.38422 110 0 1 + 4.66106 2.02500 56.16287 4.71866 110 0 1 + 5.05626 2.36250 58.26129 5.10451 110 0 1 + 5.45643 2.70000 60.37624 5.49614 110 0 1 + 5.86043 3.03750 62.50150 5.89243 110 0 1 + 6.21336 3.37500 64.49504 6.23848 110 0 1 + 6.32134 3.37500 66.57937 6.34647 110 0 1 + 6.67613 3.71250 69.96423 6.69520 110 0 1 + 7.08633 4.05000 74.90531 7.10011 110 0 1 + 7.49728 4.38750 80.41770 7.50650 110 0 1 + 7.90849 4.72500 86.59035 7.91382 110 0 1 + 8.25782 5.06250 91.66416 8.25989 110 0 1 + 8.38141 5.06250 95.31204 8.38348 110 0 1 + 8.73002 5.40000 101.22566 8.72941 110 9 1 + 9.13968 5.73750 109.93207 9.13690 110 8 1 + 9.54822 6.07500 119.76442 9.54375 110 8 1 + 9.95544 6.41250 130.91494 9.94968 110 8 1 + 10.29333 6.75000 140.22829 10.28666 110 7 1 + 10.42912 6.75000 146.87656 10.42245 110 7 1 + 10.76513 7.08750 158.15994 10.75785 110 7 1 + 11.16730 7.42500 174.82748 11.15969 110 6 1 + 11.56752 7.76250 194.11160 11.55980 110 6 1 + 11.96568 8.10000 216.72962 11.95803 110 6 1 + 12.28919 8.43750 236.12971 12.28178 110 5 1 + 12.43439 8.43750 250.59121 12.42697 110 5 1 + 12.75547 8.77500 275.00417 12.74840 110 5 1 + 13.14695 9.11250 312.71845 13.14031 110 4 1 + 13.53607 9.45000 358.73203 13.52993 110 4 1 + 13.92275 9.78750 414.92278 13.91718 110 3 1 + 14.23091 10.12500 465.70152 14.22594 110 3 1 + 14.38323 10.12500 505.16448 14.37826 110 3 1 + 14.68869 10.46250 575.04950 14.68433 110 3 1 + 15.06785 10.80000 691.34024 15.06413 110 2 1 + 15.44442 11.13750 890.46711 15.44134 110 2 1 + 15.81838 11.47500 247.09042 15.81595 110 6 1 + 16.11101 11.81250 243.65765 16.10923 110 7 1 + 16.26858 11.81250 242.61634 16.26680 110 7 1 + 16.55837 12.15000 247.77890 16.55724 110 7 1 + 16.92437 12.48750 255.15813 16.92388 110 7 1 + 17.28768 12.82500 262.49387 17.28784 110 0 1 + 17.64829 13.16250 269.78378 17.64910 110 0 1 + 17.92563 13.50000 275.22171 17.92709 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1845,7 +1974,7 @@ Layer name [DATA] -0.50 0.000 'klei z.z. matig' -2.50 1.103 'klei z.z, org. matig' - -3.00 15.444 'zand los' + -3.00 15.432 'zand los' -4.50 0.000 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -2237,52 +2366,52 @@ Status character 4.34233 0.00000 4.34233 4.34233 402 100 P 2.09965 0.00000 2.09965 2.09965 402 100 P 2.18288 0.33750 2.18288 2.18288 402 100 P - 3.31645 0.67500 4.54660 3.26241 220 73 2 - 3.78432 1.01250 7.94104 3.60990 110 48 1 - 4.12136 1.35000 9.14117 3.96973 110 45 1 - 4.43558 1.68750 10.17108 4.30543 110 44 1 - 4.50498 1.68750 10.93710 4.37482 110 41 1 - 4.82889 2.02500 12.22460 4.71866 110 40 1 - 5.19644 2.36250 14.23335 5.10451 110 37 1 - 5.57142 2.70000 15.59528 5.49614 110 36 1 - 5.90887 3.03750 10.98903 5.89243 220 54 2 - 6.25901 3.37500 10.36190 6.24622 220 60 2 - 6.35208 3.37500 10.77499 6.33929 220 59 2 - 6.70480 3.71250 11.39934 6.69520 220 59 2 - 7.10693 4.05000 12.24862 7.10011 220 58 2 - 7.51092 4.38750 13.12705 7.50650 220 57 2 - 7.91621 4.72500 14.04203 7.91382 220 56 2 - 8.26540 5.06250 14.75407 8.26471 220 56 2 - 8.37989 5.06250 15.24459 8.37920 220 55 2 - 8.72871 5.40000 16.00333 8.72941 220 0 2 - 9.13509 5.73750 17.05048 9.13690 220 0 2 - 9.54107 6.07500 18.17887 9.54375 220 0 2 - 9.94636 6.41250 18.33662 9.94968 220 0 2 - 10.28503 6.75000 19.31676 10.28881 220 0 2 - 10.41698 6.75000 20.40728 10.42075 220 0 2 - 10.75379 7.08750 21.31664 10.75785 220 0 2 - 11.14425 7.42500 22.56395 11.15969 110 0 1 - 11.54424 7.76250 23.85266 11.55980 110 0 1 - 11.94272 8.10000 25.18218 11.95803 110 0 1 - 12.26706 8.43750 26.20444 12.28184 110 0 1 - 12.41247 8.43750 26.89913 12.42725 110 0 1 - 12.73435 8.77500 27.96062 12.74840 110 0 1 - 13.12718 9.11250 29.40771 13.14031 110 0 1 - 13.51785 9.45000 30.89199 13.52993 110 0 1 - 13.90624 9.78750 32.41231 13.91718 110 0 1 - 14.21477 10.12500 33.57439 14.22450 110 0 1 - 14.37023 10.12500 34.36045 14.37997 110 0 1 - 14.67584 10.46250 35.55605 14.68433 110 0 1 - 15.05690 10.80000 37.17686 15.06413 110 0 1 - 15.43539 11.13750 38.82849 15.44134 110 0 1 - 15.81128 11.47500 40.50956 15.81595 110 0 1 - 16.10334 11.81250 41.78800 16.10673 110 0 1 - 16.26613 11.81250 42.64936 16.26952 110 0 1 - 16.55513 12.15000 43.95447 16.55724 110 0 1 - 16.92304 12.48750 45.71557 16.92388 110 0 1 - 17.28827 12.82500 47.50064 17.28784 110 36 1 - 17.65079 13.16250 49.30836 17.64910 110 36 1 - 17.92679 13.50000 50.67761 17.92383 110 35 1 + 3.29027 0.67500 4.54660 3.26241 220 72 2 + 3.70009 1.01250 7.94104 3.60990 110 47 1 + 4.04839 1.35000 9.14117 3.96973 110 44 1 + 4.37318 1.68750 10.17108 4.30543 110 43 1 + 4.44258 1.68750 10.93710 4.37482 110 41 1 + 4.77626 2.02500 12.22460 4.71866 110 39 1 + 5.15276 2.36250 14.23335 5.10451 110 36 1 + 5.53586 2.70000 15.59528 5.49614 110 35 1 + 5.90116 3.03750 10.98903 5.89243 220 54 2 + 6.25307 3.37500 10.36190 6.24622 220 60 2 + 6.34614 3.37500 10.77499 6.33929 220 59 2 + 6.70040 3.71250 11.39934 6.69520 220 59 2 + 7.10387 4.05000 12.24862 7.10011 220 58 2 + 7.50902 4.38750 13.12705 7.50650 220 57 2 + 7.91527 4.72500 14.04203 7.91382 220 56 2 + 8.26528 5.06250 14.75407 8.26471 220 56 2 + 8.37977 5.06250 15.24459 8.37920 220 55 2 + 8.72924 5.40000 16.00333 8.72941 220 0 2 + 9.13614 5.73750 17.05048 9.13690 220 0 2 + 9.54253 6.07500 18.17887 9.54375 220 0 2 + 9.94811 6.41250 18.33662 9.94968 220 0 2 + 10.28699 6.75000 19.31676 10.28881 220 0 2 + 10.41893 6.75000 20.40728 10.42075 220 0 2 + 10.75587 7.08750 21.31664 10.75785 220 0 2 + 11.15207 7.42500 22.56395 11.15969 110 0 1 + 11.55207 7.76250 23.85266 11.55980 110 0 1 + 11.95039 8.10000 25.18218 11.95803 110 0 1 + 12.27443 8.43750 26.20444 12.28184 110 0 1 + 12.41983 8.43750 26.89913 12.42725 110 0 1 + 12.74132 8.77500 27.96062 12.74840 110 0 1 + 13.13367 9.11250 29.40771 13.14031 110 0 1 + 13.52380 9.45000 30.89199 13.52993 110 0 1 + 13.91161 9.78750 32.41231 13.91718 110 0 1 + 14.21953 10.12500 33.57439 14.22450 110 0 1 + 14.37499 10.12500 34.36045 14.37997 110 0 1 + 14.67998 10.46250 35.55605 14.68433 110 0 1 + 15.06041 10.80000 37.17686 15.06413 110 0 1 + 15.43827 11.13750 38.82849 15.44134 110 0 1 + 15.81353 11.47500 40.50956 15.81595 110 0 1 + 16.10495 11.81250 41.78800 16.10673 110 0 1 + 16.26774 11.81250 42.64936 16.26952 110 0 1 + 16.55611 12.15000 43.95447 16.55724 110 0 1 + 16.92340 12.48750 45.71557 16.92388 110 0 1 + 17.28800 12.82500 47.50064 17.28784 110 36 1 + 17.64991 13.16250 49.30836 17.64910 110 36 1 + 17.92528 13.50000 50.67761 17.92383 110 35 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2297,7 +2426,7 @@ Layer name [DATA] -0.50 0.000 'klei z.z. matig' -2.50 1.103 'klei z.z, org. matig' - -3.00 15.444 'zand los' + -3.00 15.432 'zand los' -4.50 0.000 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -2492,7 +2621,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -1.25000 20.47990 210000000.000 1 2 0 'anker 1' + -1.25000 20.96745 210000000.000 1 2 0 'anker 1' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -2519,39 +2648,39 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 78.19 : Percentage mobilized resistance left - 8.60 : Percentage mobilized resistance right - 28.26 : Effective left - 41.04 : Effective right + 77.74 : Percentage mobilized resistance left + 8.67 : Percentage mobilized resistance right + 28.10 : Effective left + 41.36 : Effective right 10.12 : Water pressure left 18.00 : Water pressure right 36.15 : Max effective resistance left 476.93 : Max effective resistance right -97.73 : Max moment left -841.95 : Max moment right - -73.05 : Max mobilized moment left - -59.40 : Max mobilized moment right - 9.89 : Vertical force left - 11.94 : Vertical force right - 74.7 : Max mobilized moment percentage left - 7.1 : Max mobilized moment percentage right + -72.55 : Max mobilized moment left + -58.94 : Max mobilized moment right + 9.83 : Vertical force left + 12.04 : Vertical force right + 74.2 : Max mobilized moment percentage left + 7.0 : Max mobilized moment percentage right -1.25 : Level of single support 6 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --11.94 : Active force -9.89 : Passive force --11.94 : Plugged active force -9.89 : Plugged passive force --1.96 : Anchor force +-12.04 : Active force +9.83 : Passive force +-12.04 : Plugged active force +9.83 : Plugged passive force +-2.01 : Anchor force 0.00 : Normal force 7.19 : Factor on resistance 7.19 : Plugged resistance 1.20 : Vertical balance load factor --4.01 : Resulting Vertical Force Unplugged --4.01 : Resulting Vertical Force Plugged +-4.22 : Resulting Vertical Force Unplugged +-4.22 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -2564,150 +2693,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00002 0.00060 2.34428 - 0.00277 0.24988 2.28788 - 0.01978 0.78162 2.23148 - 0.05562 1.37997 2.17459 - 0.11229 2.02517 2.11670 - 0.19077 2.68354 2.05732 - 0.19081 2.68523 2.05732 - 0.29147 3.35439 1.99574 - 0.41446 4.02581 1.93028 - 0.55991 4.70204 1.85900 - 0.72797 5.38238 1.77995 - 0.91864 6.05386 1.69118 - 0.91864 6.05741 1.69118 - 1.13143 6.70483 1.59046 - 1.36526 7.31956 1.47461 - 1.61899 7.89761 1.34024 - 1.89130 8.43284 1.18397 - 2.18062 8.91723 1.00241 - 2.18064 8.91986 1.00241 - 2.40817 9.26893 0.84744 - 2.64358 9.55749 0.67435 - 2.88570 9.80445 0.48130 - 3.13342 10.00499 0.26649 - 3.38551 10.15339 0.02808 - 3.38564 10.14410 0.02808 - 3.64060 10.24558 -0.23578 - 3.89777 10.32802 -0.52705 - 4.15703 10.41397 -0.84769 - 4.41849 10.50342 -1.19964 - 4.68223 10.59593 -1.58487 - 4.68222 -9.80634 -1.58487 - 4.58434 -9.76811 -1.74868 - 4.48686 -9.72939 -1.91801 - 4.38976 -9.69010 -2.09274 - 4.29306 -9.65026 -2.27277 - 4.19676 -9.60992 -2.45796 - 4.19676 -9.62104 -2.45796 - 3.86960 -9.46295 -3.12304 - 3.54788 -9.30342 -3.85686 - 3.23167 -9.14225 -4.64477 - 2.92101 -8.97942 -5.47210 - 2.61595 -8.81517 -6.32419 - 2.61595 -8.83812 -6.32419 - 2.31578 -8.67181 -7.21490 - 2.02133 -8.50406 -8.15668 - 1.73266 -8.33466 -9.13277 - 1.44983 -8.16362 -10.12641 - 1.17289 -7.99115 -11.12083 - 1.17289 -8.01524 -11.12083 - 0.90107 -7.84071 -12.13251 - 0.63525 -7.66475 -13.17747 - 0.37550 -7.48714 -14.23822 - 0.12187 -7.30788 -15.29727 - -0.12559 -7.12719 -16.33713 - -0.12559 -7.15243 -16.33713 - -0.36769 -6.96969 -17.37505 - -0.60350 -6.78551 -18.42862 - -0.83296 -6.59969 -19.48087 - -1.05603 -6.41222 -20.51484 - -1.27264 -6.22332 -21.51356 - -1.27264 -6.24970 -21.51356 - -1.48365 -6.05874 -22.49337 - -1.68808 -5.86635 -23.47167 - -1.88589 -5.67231 -24.43314 - -2.07702 -5.47663 -25.36242 - -2.26142 -5.27952 -26.24418 - -2.26142 -5.30704 -26.24418 - -2.43996 -5.10787 -27.09240 - -2.61165 -4.90727 -27.92277 - -2.77644 -4.70502 -28.72252 - -2.93426 -4.50113 -29.47889 - -3.08507 -4.29580 -30.17912 - -3.08507 -4.32446 -30.17912 - -3.22979 -4.11708 -30.83361 - -3.36737 -3.90827 -31.45503 - -3.49777 -3.69781 -32.03399 - -3.62092 -3.48571 -32.56108 - -3.73677 -3.27217 -33.02693 - -3.73677 -3.28686 -33.02693 - -3.83900 -2.84620 -33.43365 - -3.92647 -2.40129 -33.78896 - -3.99903 -1.95156 -34.09189 - -4.05652 -1.49701 -34.34146 - -4.09877 -1.03700 -34.53672 - -4.09877 -1.03700 -34.53672 - -4.12563 -0.57349 -34.67685 - -4.13694 -0.10451 -34.76173 - -4.13254 0.36928 -34.79143 - -4.11227 0.84787 -34.76599 - -4.07596 1.33191 -34.68549 - -4.07596 1.33191 -34.68549 - -4.02345 1.81946 -34.55016 - -3.95460 2.31246 -34.36094 - -3.86923 2.81026 -34.11899 - -3.76720 3.31286 -33.82544 - -3.64832 3.82091 -33.48145 - -3.64831 3.82083 -33.48145 - -3.49824 4.18296 -33.03591 - -3.33512 4.50266 -32.53111 - -3.16184 4.71833 -31.96995 - -2.98227 4.85178 -31.35533 - -2.79844 4.94686 -30.69015 - -2.79844 4.94685 -30.69015 - -2.61227 4.97466 -29.97750 - -2.42607 4.94411 -29.22060 - -2.24220 4.85430 -28.42256 - -2.06119 4.82924 -27.58650 - -1.87874 4.90575 -26.71553 - -1.87874 4.90584 -26.71553 - -1.69347 4.97183 -25.81274 - -1.50615 5.01363 -24.88127 - -1.31780 5.02696 -23.92429 - -1.12950 5.01060 -22.94499 - -0.94235 4.96717 -21.94654 - -0.94235 4.96719 -21.94654 - -0.75758 4.88271 -20.93218 - -0.57652 4.76780 -19.90500 - -0.40046 4.61603 -18.86797 - -0.23057 4.44408 -17.82406 - -0.06737 4.25423 -16.77625 - -0.06737 4.25424 -16.77625 - 0.08736 3.99299 -15.72749 - 0.23164 3.69473 -14.68024 - 0.36392 3.35286 -13.63672 - 0.48254 2.96582 -12.59917 - 0.58585 2.53813 -11.56979 - 0.58599 2.53505 -11.56979 - 0.67202 2.04714 -10.55070 - 0.73898 1.51565 -9.54304 - 0.78520 0.94478 -8.54757 - 0.80967 0.36050 -7.56507 - 0.81231 -0.21837 -6.59632 - 0.81247 -0.22785 -6.59632 - 0.79287 -0.81632 -5.64178 - 0.75128 -1.40207 -4.70071 - 0.68774 -1.98588 -3.77202 - 0.60294 -2.52163 -2.85466 - 0.49976 -2.96556 -1.94756 - 0.50185 -3.04782 -1.94756 - 0.38047 -3.41002 -1.04899 - 0.24942 -3.50586 -0.15669 - 0.12524 -2.98543 0.73118 - 0.03432 -1.76107 1.61648 - -0.00048 -0.02734 2.50108 + -0.00003 0.00082 2.01271 + 0.00272 0.24608 1.97001 + 0.01948 0.77040 1.92731 + 0.05471 1.35140 1.88412 + 0.10991 1.96274 1.83995 + 0.18569 2.58560 1.79433 + 0.18571 2.58656 1.79433 + 0.28265 3.23130 1.74657 + 0.40125 3.88670 1.69506 + 0.54191 4.55540 1.63790 + 0.70507 5.23611 1.57321 + 0.89100 5.91794 1.49910 + 0.89100 5.92111 1.49910 + 1.09964 6.59391 1.41343 + 1.33033 7.24348 1.31306 + 1.58224 7.86607 1.19462 + 1.85437 8.45513 1.05474 + 2.14544 9.00143 0.89008 + 2.14546 9.00401 0.89008 + 2.37538 9.38372 0.74811 + 2.61437 9.73022 0.58827 + 2.86158 10.03969 0.40868 + 3.11601 10.30697 0.20749 + 3.37652 10.52560 -0.01716 + 3.37675 10.51845 -0.01716 + 3.64191 10.68485 -0.26718 + 3.91053 10.79546 -0.54463 + 4.18148 10.88140 -0.85154 + 4.45462 10.97085 -1.18996 + 4.73005 11.06336 -1.56192 + 4.72996 -9.82672 -1.56192 + 4.63188 -9.78849 -1.72051 + 4.53419 -9.74977 -1.88468 + 4.43689 -9.71048 -2.05432 + 4.33998 -9.67064 -2.22930 + 4.24348 -9.63031 -2.40951 + 4.24348 -9.64143 -2.40951 + 3.91562 -9.48333 -3.05816 + 3.59321 -9.32380 -3.77588 + 3.27629 -9.16263 -4.54821 + 2.96493 -8.99981 -5.36068 + 2.65918 -8.83555 -6.19882 + 2.65918 -8.85850 -6.19882 + 2.35831 -8.69219 -7.07622 + 2.06316 -8.52444 -8.00503 + 1.77379 -8.35504 -8.96865 + 1.49026 -8.18400 -9.95046 + 1.21262 -8.01153 -10.93385 + 1.21262 -8.03563 -10.93385 + 0.94010 -7.86110 -11.93509 + 0.67359 -7.68513 -12.96996 + 0.41314 -7.50752 -14.02108 + 0.15881 -7.32827 -15.07109 + -0.08935 -7.14758 -16.10261 + -0.08935 -7.17281 -16.10261 + -0.33215 -6.99007 -17.13272 + -0.56866 -6.80589 -18.17883 + -0.79882 -6.62007 -19.22405 + -1.02258 -6.43260 -20.25151 + -1.23990 -6.24370 -21.24432 + -1.23990 -6.27008 -21.24432 + -1.45160 -6.07912 -22.21871 + -1.65673 -5.88673 -23.19193 + -1.85524 -5.69269 -24.14872 + -2.04707 -5.49702 -25.07378 + -2.23216 -5.29990 -25.95183 + -2.23216 -5.32742 -25.95183 + -2.41141 -5.12825 -26.79676 + -2.58380 -4.92765 -27.62418 + -2.74928 -4.72540 -28.42136 + -2.90781 -4.52151 -29.17554 + -3.05931 -4.31619 -29.87400 + -3.05931 -4.34485 -29.87400 + -3.20473 -4.13747 -30.52711 + -3.34301 -3.92865 -31.14747 + -3.47410 -3.71819 -31.72570 + -3.59795 -3.50609 -32.25240 + -3.71450 -3.29255 -32.71818 + -3.71450 -3.30724 -32.71818 + -3.81741 -2.86659 -33.12514 + -3.90556 -2.42167 -33.48098 + -3.97880 -1.97194 -33.78473 + -4.03697 -1.51739 -34.03539 + -4.07990 -1.05739 -34.23199 + -4.07990 -1.05739 -34.23199 + -4.10744 -0.59387 -34.37372 + -4.11943 -0.12489 -34.46045 + -4.11571 0.34889 -34.49222 + -4.09612 0.82748 -34.46909 + -4.06049 1.31153 -34.39111 + -4.06049 1.31153 -34.39111 + -4.00866 1.79908 -34.25850 + -3.94049 2.29208 -34.07221 + -3.85580 2.78988 -33.83337 + -3.75444 3.29248 -33.54312 + -3.63624 3.80053 -33.20259 + -3.63624 3.80049 -33.20259 + -3.48693 4.16262 -32.76114 + -3.32457 4.48232 -32.26062 + -3.15206 4.69799 -31.70392 + -2.97325 4.83144 -31.09393 + -2.79018 4.92651 -30.43353 + -2.79018 4.92651 -30.43353 + -2.60478 4.95432 -29.72580 + -2.41934 4.92378 -28.97394 + -2.23623 4.83396 -28.18106 + -2.05598 4.80890 -27.35026 + -1.87430 4.88542 -26.48464 + -1.87429 4.88546 -26.48464 + -1.68979 4.95145 -25.58728 + -1.50324 4.99324 -24.66129 + -1.31565 5.00658 -23.70985 + -1.12812 4.99022 -22.73612 + -0.94172 4.94679 -21.74327 + -0.94172 4.94680 -21.74327 + -0.75772 4.86231 -20.73451 + -0.57743 4.74741 -19.71293 + -0.40213 4.59564 -18.68149 + -0.23301 4.42369 -17.64315 + -0.07057 4.23384 -16.60086 + -0.07057 4.23385 -16.60086 + 0.08339 3.97259 -15.55756 + 0.22691 3.67433 -14.51571 + 0.35842 3.33246 -13.47751 + 0.47628 2.94542 -12.44518 + 0.57882 2.51773 -11.42092 + 0.57897 2.51466 -11.42092 + 0.66423 2.02676 -10.40683 + 0.73043 1.49526 -9.40404 + 0.77592 0.92691 -8.41329 + 0.79981 0.34758 -7.43536 + 0.80205 -0.22651 -6.47101 + 0.80221 -0.23595 -6.47101 + 0.78239 -0.81979 -5.52069 + 0.74076 -1.40109 -4.58366 + 0.67739 -1.97576 -3.65884 + 0.59323 -2.49784 -2.74518 + 0.49120 -2.92856 -1.84161 + 0.49327 -3.01051 -1.84161 + 0.37354 -3.35992 -0.94643 + 0.24454 -3.44864 -0.05741 + 0.12253 -2.92660 0.82727 + 0.03358 -1.72156 1.70943 + -0.00047 -0.02724 2.59091 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2976,149 +3105,149 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.53333 1.60000 18.00209 0.00000 1.14751 0.00000 11.25131 - -0.56667 2.20000 20.79279 0.00000 0.77015 0.00000 9.45127 - -0.60000 2.80000 23.58285 0.00000 0.56182 0.00000 8.42245 - -0.63333 3.40000 26.37242 0.07489 0.43426 0.02203 7.75660 - -0.66667 4.00000 28.46435 0.47833 0.35210 0.12424 7.39334 - -0.66667 4.00000 29.85887 0.57105 0.35210 0.13760 7.19491 - -0.70000 4.60000 31.95051 0.71026 0.29819 0.15441 6.94577 - -0.73333 5.19999 34.73917 0.89607 0.26304 0.17232 6.68062 - -0.76667 5.79999 37.52765 1.08206 0.24091 0.18656 6.47029 - -0.80000 6.39999 40.31597 1.26820 0.22803 0.19816 6.29938 - -0.83333 6.99998 42.40713 1.40789 0.22183 0.20553 6.19084 - -0.83333 6.99998 43.80120 1.50106 0.22183 0.20994 6.12606 - -0.86667 7.59998 45.89226 1.64085 0.22048 0.21590 6.03847 - -0.90000 8.19997 48.68026 1.82731 0.22284 0.22284 5.93664 - -0.93333 8.79997 51.46819 2.01385 0.22885 0.22885 5.84868 - -0.96667 9.39996 54.25606 2.20045 0.23409 0.23409 5.77195 - -1.00000 9.99995 56.34693 2.34043 0.24147 0.23761 5.72053 - -1.00000 9.99995 57.56659 2.42211 0.42236 0.23952 5.69265 - -1.02500 10.44994 59.13471 2.52712 0.24565 0.24183 5.65886 - -1.05000 10.89993 61.22551 2.66717 0.25127 0.24470 5.61706 - -1.07500 11.34992 63.31630 2.80723 0.25793 0.24734 5.57857 - -1.10000 11.79991 65.40707 2.94732 0.26534 0.24977 5.54301 - -1.12500 12.24990 66.97513 3.05239 0.27324 0.25149 5.51808 - -1.12500 12.24990 68.02050 3.12244 0.27324 0.25258 5.50221 - -1.15000 12.69988 69.58855 3.22753 0.28147 0.25414 5.47946 - -1.17500 13.14987 71.67927 3.36766 0.28987 0.25610 5.45095 - -1.20000 13.59986 73.76998 3.50781 0.29834 0.25793 5.42432 - -1.22500 14.04984 75.86068 3.64796 0.30680 0.25964 5.39940 - -1.25000 14.49982 77.42869 3.75308 0.31518 0.26086 5.38173 - -1.25000 14.49982 78.16043 3.80214 0.31518 0.26141 5.37376 - -1.26000 14.67981 78.78764 3.84419 0.32000 0.26187 5.36707 - -1.27000 14.85981 79.62391 3.90026 0.32503 0.26247 5.35834 - -1.28000 15.03980 80.46017 3.95633 0.33022 0.26306 5.34982 - -1.29000 15.21979 81.29644 4.01241 0.33554 0.26363 5.34149 - -1.30000 15.39978 81.92365 4.05446 0.34095 0.26405 5.33538 - -1.30000 15.39978 95.31794 4.59302 0.30518 0.29742 6.17239 - -1.33429 15.57118 95.93045 4.62901 0.30976 0.29728 6.16077 - -1.36857 15.74258 96.78043 4.67699 0.31444 0.29709 6.14768 - -1.40286 15.91398 97.65983 4.72495 0.31919 0.29691 6.13673 - -1.43714 16.08537 98.56046 4.77291 0.32398 0.29672 6.12734 - -1.47143 16.25676 99.24610 4.80887 0.32881 0.29659 6.12105 - -1.47143 16.25676 99.70757 4.83284 0.32881 0.29650 6.11718 - -1.50571 16.42814 100.40515 4.86879 0.33366 0.29637 6.11178 - -1.54000 16.59953 101.34271 4.91673 0.33851 0.29620 6.10516 - -1.57429 16.77091 102.28754 4.96466 0.34336 0.29603 6.09910 - -1.60857 16.94229 103.23816 5.01258 0.34820 0.29586 6.09352 - -1.64286 17.11366 103.95413 5.04852 0.35302 0.29574 6.08958 - -1.64286 17.11366 104.43281 5.07248 0.35302 0.29566 6.08707 - -1.67714 17.28503 105.15261 5.10842 0.35782 0.29554 6.08345 - -1.71143 17.45640 106.11491 5.15634 0.36258 0.29538 6.07885 - -1.74571 17.62777 107.07985 5.20425 0.36730 0.29523 6.07450 - -1.78000 17.79913 108.04700 5.25216 0.37198 0.29508 6.07035 - -1.81429 17.97048 108.77356 5.28810 0.37662 0.29497 6.06736 - -1.81429 17.97048 109.25850 5.31205 0.37662 0.29490 6.06543 - -1.84857 18.14184 109.98665 5.34798 0.38120 0.29479 6.06260 - -1.88286 18.31319 110.95865 5.39589 0.38574 0.29465 6.05895 - -1.91714 18.48453 111.93182 5.44380 0.39022 0.29451 6.05543 - -1.95143 18.65588 112.90603 5.49170 0.39465 0.29437 6.05204 - -1.98571 18.82722 113.63725 5.52763 0.39902 0.29427 6.04956 - -1.98571 18.82722 114.12500 5.55158 0.39902 0.29420 6.04794 - -2.02000 18.99855 114.85700 5.58751 0.40333 0.29410 6.04557 - -2.05429 19.16988 115.83357 5.63541 0.40758 0.29397 6.04248 - -2.08857 19.34121 116.81074 5.68332 0.41177 0.29384 6.03948 - -2.12286 19.51253 117.78846 5.73122 0.41590 0.29372 6.03656 - -2.15714 19.68384 118.52205 5.76714 0.41997 0.29363 6.03442 - -2.15714 19.68384 119.01126 5.79109 0.52729 0.29357 6.03301 - -2.19143 19.85516 119.74528 5.82702 0.52656 0.29348 6.03094 - -2.22571 20.02647 120.72428 5.87492 0.52585 0.29336 6.02824 - -2.26000 20.19777 121.70363 5.92282 0.52516 0.29324 6.02560 - -2.29429 20.36907 122.68329 5.97072 0.52449 0.29313 6.02302 - -2.32857 20.54036 123.41822 6.00664 0.52384 0.29304 6.02112 - -2.32857 20.54036 123.90825 6.03059 0.52384 0.29299 6.01988 - -2.36286 20.71165 124.64343 6.06652 0.52321 0.29290 6.01803 - -2.39714 20.88294 125.62385 6.11442 0.52259 0.29279 6.01562 - -2.43143 21.05422 126.60449 6.16231 0.52199 0.29269 6.01326 - -2.46571 21.22549 127.58532 6.21021 0.52141 0.29258 6.01095 - -2.50000 21.39676 128.32104 6.24614 0.52085 0.29251 6.00924 - -2.50000 21.39676 44.38124 13.16542 0.75079 0.61363 2.06857 - -2.53333 21.62993 44.70036 13.26962 0.75032 0.61348 2.06660 - -2.56667 21.86310 45.12535 13.40852 0.74986 0.61329 2.06400 - -2.60000 22.09627 45.54975 13.54735 0.74941 0.61311 2.06142 - -2.63333 22.32943 45.97357 13.68613 0.74898 0.61292 2.05888 - -2.66667 22.56258 46.29106 13.79019 0.74857 0.61278 2.05699 - -2.66667 22.56258 46.50254 13.85954 0.74857 0.61269 2.05574 - -2.70000 22.79573 46.81946 13.96355 0.74817 0.61255 2.05387 - -2.73333 23.02887 47.24157 14.10219 0.74778 0.61237 2.05141 - -2.76667 23.26201 47.66312 14.24078 0.74740 0.61219 2.04897 - -2.80000 23.49515 48.08412 14.37934 0.74703 0.61201 2.04656 - -2.83333 23.72827 48.39954 14.48323 0.74668 0.61188 2.04476 - -2.83333 23.72827 48.60964 14.55247 0.74668 0.61179 2.04358 - -2.86667 23.96140 48.92452 14.65632 0.74634 0.61166 2.04181 - -2.90000 24.19451 49.34394 14.79476 0.74601 0.61149 2.03947 - -2.93333 24.42763 49.76284 14.93317 0.74568 0.61132 2.03715 - -2.96667 24.66073 50.18123 15.07154 0.74537 0.61116 2.03486 - -3.00000 24.89383 50.49471 15.17530 0.74507 0.61103 2.03316 - -3.00000 24.89383 149.47943 7.25894 0.51352 0.29050 5.98216 - -3.03750 25.26857 151.08085 7.33759 0.51303 0.29038 5.97900 - -3.07500 25.64329 153.21693 7.44246 0.51255 0.29023 5.97493 - -3.11250 26.01801 155.35395 7.54733 0.51210 0.29008 5.97102 - -3.15000 26.39272 157.49184 7.65219 0.51166 0.28994 5.96725 - -3.18750 26.76742 159.09577 7.73084 0.51124 0.28983 5.96451 - -3.18750 26.76742 160.16531 7.78327 0.51124 0.28976 5.96272 - -3.22500 27.14212 161.76998 7.86191 0.51084 0.28966 5.96011 - -3.26250 27.51681 163.91011 7.96676 0.51044 0.28952 5.95673 - -3.30000 27.89149 166.05087 8.07161 0.51007 0.28939 5.95346 - -3.33750 28.26617 168.19223 8.17645 0.50970 0.28927 5.95030 - -3.37500 28.64083 169.79860 8.25509 0.50935 0.28917 5.94800 - -3.37500 28.64083 170.86969 8.30751 0.50935 0.28911 5.94650 - -3.41250 29.01549 172.47657 8.38614 0.50901 0.28902 5.94429 - -3.45000 29.39014 174.61948 8.49098 0.50868 0.28891 5.94143 - -3.48750 29.76479 176.76283 8.59581 0.50836 0.28879 5.93866 - -3.52500 30.13943 178.90660 8.70065 0.50806 0.28868 5.93597 - -3.56250 30.51406 180.51468 8.77927 0.50776 0.28860 5.93400 - -3.56250 30.51406 181.58684 8.83168 0.50776 0.28854 5.93272 - -3.60000 30.88868 183.19528 8.91031 0.50748 0.28847 5.93082 - -3.63750 31.26329 185.34015 9.01513 0.50720 0.28836 5.92836 - -3.67500 31.63790 187.48534 9.11996 0.50693 0.28826 5.92597 - -3.71250 32.01250 189.63083 9.22478 0.50667 0.28816 5.92365 - -3.75000 32.38709 191.24012 9.30340 0.50642 0.28809 5.92195 - -3.75000 32.38709 187.77704 9.35581 0.50642 0.28804 5.78118 - -3.78750 32.76167 184.57434 9.43442 0.50618 0.28797 5.63385 - -3.82500 33.13625 186.72136 9.53924 0.50594 0.28788 5.63496 - -3.86250 33.51082 188.86856 9.64405 0.50571 0.28779 5.63605 - -3.90000 33.88538 191.01592 9.74887 0.50549 0.28770 5.63712 - -3.93750 34.25993 192.62653 9.82747 0.50527 0.28764 5.63791 - -3.93750 34.25993 193.70033 9.87988 0.50527 0.28759 5.63843 - -3.97500 34.63447 195.31108 9.95849 0.50507 0.28753 5.63921 - -4.01250 35.00901 197.45889 10.06330 0.50486 0.28745 5.64023 - -4.05000 35.38354 199.60682 10.16811 0.50467 0.28737 5.64123 - -4.08750 35.75806 201.75489 10.27291 0.50448 0.28729 5.64222 - -4.12500 36.13258 203.36601 10.35152 0.50429 0.28723 5.64295 - -4.12500 36.13258 204.44012 10.40392 0.50429 0.28719 5.64343 - -4.16250 36.50708 206.05137 10.48252 0.50411 0.28714 5.64415 - -4.20000 36.88158 208.19977 10.58733 0.50394 0.28706 5.64509 - -4.23750 37.25607 210.34830 10.69213 0.50377 0.28699 5.64601 - -4.27500 37.63055 212.49692 10.79693 0.50361 0.28692 5.64693 - -4.31250 38.00503 214.10844 10.87553 0.50345 0.28687 5.64760 - -4.31250 38.00503 215.18284 10.92793 0.50345 0.28683 5.64804 - -4.35000 38.37950 216.79445 11.00653 0.50329 0.28678 5.64871 - -4.38750 38.75395 218.94335 11.11133 0.50314 0.28671 5.64957 - -4.42500 39.12841 221.09234 11.21612 0.50300 0.28665 5.65043 - -4.46250 39.50285 221.82299 11.32092 0.50285 0.28658 5.61537 - -4.50000 39.87729 222.87096 11.39952 0.50272 0.28654 5.60207 + -0.53333 1.60000 18.00209 0.00000 1.35803 0.00000 11.25131 + -0.56667 2.20000 20.79279 0.00000 1.11113 0.00000 9.45127 + -0.60000 2.80000 23.58285 0.00000 0.97205 0.00000 8.42245 + -0.63333 3.40000 26.37242 0.07489 0.88311 0.02203 7.75660 + -0.66667 4.00000 28.46435 0.47833 0.82153 0.12424 7.39334 + -0.66667 4.00000 29.85887 0.57105 0.82153 0.13760 7.19491 + -0.70000 4.60000 31.95051 0.71026 0.77647 0.15441 6.94577 + -0.73333 5.19999 34.73917 0.89607 0.74215 0.17232 6.68062 + -0.76667 5.79999 37.52765 1.08206 0.71519 0.18656 6.47029 + -0.80000 6.39999 40.31597 1.26820 0.69350 0.19816 6.29938 + -0.83333 6.99998 42.40713 1.40789 0.67569 0.20553 6.19084 + -0.83333 6.99998 43.80120 1.50106 0.67569 0.20994 6.12606 + -0.86667 7.59998 45.89226 1.64085 0.66083 0.21590 6.03847 + -0.90000 8.19997 48.68026 1.82731 0.64826 0.22284 5.93664 + -0.93333 8.79997 51.46819 2.01385 0.63750 0.22885 5.84868 + -0.96667 9.39996 54.25606 2.20045 0.62820 0.23409 5.77195 + -1.00000 9.99995 56.34693 2.34043 0.62010 0.23761 5.72053 + -1.00000 9.99995 57.56659 2.42211 0.62010 0.23952 5.69265 + -1.02500 10.44994 59.13471 2.52712 0.61467 0.24183 5.65886 + -1.05000 10.89993 61.22551 2.66717 0.60973 0.24470 5.61706 + -1.07500 11.34992 63.31630 2.80723 0.60520 0.24734 5.57857 + -1.10000 11.79991 65.40707 2.94732 0.60106 0.24977 5.54301 + -1.12500 12.24990 66.97513 3.05239 0.59724 0.25149 5.51808 + -1.12500 12.24990 68.02050 3.12244 0.59724 0.25258 5.50221 + -1.15000 12.69988 69.58855 3.22753 0.59372 0.25414 5.47946 + -1.17500 13.14987 71.67927 3.36766 0.59046 0.25610 5.45095 + -1.20000 13.59986 73.76998 3.50781 0.58743 0.25793 5.42432 + -1.22500 14.04984 75.86068 3.64796 0.58462 0.25964 5.39940 + -1.25000 14.49982 77.42869 3.75308 0.58201 0.26086 5.38173 + -1.25000 14.49982 78.16043 3.80214 0.58201 0.26141 5.37376 + -1.26000 14.67981 78.78764 3.84419 0.58101 0.26187 5.36707 + -1.27000 14.85981 79.62391 3.90026 0.58004 0.26247 5.35834 + -1.28000 15.03980 80.46017 3.95633 0.57909 0.26306 5.34982 + -1.29000 15.21979 81.29644 4.01241 0.57817 0.26363 5.34149 + -1.30000 15.39978 81.92365 4.05446 0.57728 0.26405 5.33538 + -1.30000 15.39978 95.31794 4.59302 0.54151 0.29742 6.17239 + -1.33429 15.57118 95.93045 4.62901 0.53962 0.29728 6.16077 + -1.36857 15.74258 96.78043 4.67699 0.53779 0.29709 6.14768 + -1.40286 15.91398 97.65983 4.72495 0.53603 0.29691 6.13673 + -1.43714 16.08537 98.56046 4.77291 0.53433 0.29672 6.12734 + -1.47143 16.25676 99.24610 4.80887 0.53268 0.29659 6.12105 + -1.47143 16.25676 99.70757 4.83284 0.53268 0.29650 6.11718 + -1.50571 16.42814 100.40515 4.86879 0.53110 0.29637 6.11178 + -1.54000 16.59953 101.34271 4.91673 0.52956 0.29620 6.10516 + -1.57429 16.77091 102.28754 4.96466 0.52808 0.29603 6.09910 + -1.60857 16.94229 103.23816 5.01258 0.52664 0.29586 6.09352 + -1.64286 17.11366 103.95413 5.04852 0.52525 0.29574 6.08958 + -1.64286 17.11366 104.43281 5.07248 0.52525 0.29566 6.08707 + -1.67714 17.28503 105.15261 5.10842 0.52391 0.29554 6.08345 + -1.71143 17.45640 106.11491 5.15634 0.52261 0.29538 6.07885 + -1.74571 17.62777 107.07985 5.20425 0.52135 0.29523 6.07450 + -1.78000 17.79913 108.04700 5.25216 0.52012 0.29508 6.07035 + -1.81429 17.97048 108.77356 5.28810 0.51894 0.29497 6.06736 + -1.81429 17.97048 109.25850 5.31205 0.51894 0.29490 6.06543 + -1.84857 18.14184 109.98665 5.34798 0.51779 0.29479 6.06260 + -1.88286 18.31319 110.95865 5.39589 0.51667 0.29465 6.05895 + -1.91714 18.48453 111.93182 5.44380 0.51559 0.29451 6.05543 + -1.95143 18.65588 112.90603 5.49170 0.51454 0.29437 6.05204 + -1.98571 18.82722 113.63725 5.52763 0.51352 0.29427 6.04956 + -1.98571 18.82722 114.12500 5.55158 0.51352 0.29420 6.04794 + -2.02000 18.99855 114.85700 5.58751 0.51252 0.29410 6.04557 + -2.05429 19.16988 115.83357 5.63541 0.51156 0.29397 6.04248 + -2.08857 19.34121 116.81074 5.68332 0.51062 0.29384 6.03948 + -2.12286 19.51253 117.78846 5.73122 0.50971 0.29372 6.03656 + -2.15714 19.68384 118.52205 5.76714 0.50883 0.29363 6.03442 + -2.15714 19.68384 119.01126 5.79109 0.50883 0.29357 6.03301 + -2.19143 19.85516 119.74528 5.82702 0.50797 0.29348 6.03094 + -2.22571 20.02647 120.72428 5.87492 0.50713 0.29336 6.02824 + -2.26000 20.19777 121.70363 5.92282 0.50631 0.29324 6.02560 + -2.29429 20.36907 122.68329 5.97072 0.50552 0.29313 6.02302 + -2.32857 20.54036 123.41822 6.00664 0.50475 0.29304 6.02112 + -2.32857 20.54036 123.90825 6.03059 0.50475 0.29299 6.01988 + -2.36286 20.71165 124.64343 6.06652 0.50399 0.29290 6.01803 + -2.39714 20.88294 125.62385 6.11442 0.50326 0.29279 6.01562 + -2.43143 21.05422 126.60449 6.16231 0.50255 0.29269 6.01326 + -2.46571 21.22549 127.58532 6.21021 0.50185 0.29258 6.01095 + -2.50000 21.39676 128.32104 6.24614 0.50117 0.29251 6.00924 + -2.50000 21.39676 44.38124 13.16542 0.73112 0.61363 2.06857 + -2.53333 21.62993 44.70036 13.26962 0.73059 0.61348 2.06660 + -2.56667 21.86310 45.12535 13.40852 0.71118 0.61329 2.06400 + -2.60000 22.09627 45.54975 13.54735 0.69286 0.61311 2.06142 + -2.63333 22.32943 45.97357 13.68613 0.67586 0.61292 2.05888 + -2.66667 22.56258 46.29106 13.79019 0.66037 0.61278 2.05699 + -2.66667 22.56258 46.50254 13.85954 0.66037 0.61269 2.05574 + -2.70000 22.79573 46.81946 13.96355 0.64648 0.61255 2.05387 + -2.73333 23.02887 47.24157 14.10219 0.63423 0.61237 2.05141 + -2.76667 23.26201 47.66312 14.24078 0.62359 0.61219 2.04897 + -2.80000 23.49515 48.08412 14.37934 0.61451 0.61201 2.04656 + -2.83333 23.72827 48.39954 14.48323 0.61188 0.61188 2.04476 + -2.83333 23.72827 48.60964 14.55247 0.61179 0.61179 2.04358 + -2.86667 23.96140 48.92452 14.65632 0.61166 0.61166 2.04181 + -2.90000 24.19451 49.34394 14.79476 0.61149 0.61149 2.03947 + -2.93333 24.42763 49.76284 14.93317 0.61132 0.61132 2.03715 + -2.96667 24.66073 50.18123 15.07154 0.61116 0.61116 2.03486 + -3.00000 24.89383 50.49471 15.17530 0.61103 0.61103 2.03316 + -3.00000 24.89383 149.47943 7.25894 0.35466 0.29050 5.98216 + -3.03750 25.26857 151.08085 7.33759 0.35359 0.29038 5.97900 + -3.07500 25.64329 153.21693 7.44246 0.35329 0.29023 5.97493 + -3.11250 26.01801 155.35395 7.54733 0.35365 0.29008 5.97102 + -3.15000 26.39272 157.49184 7.65219 0.35455 0.28994 5.96725 + -3.18750 26.76742 159.09577 7.73084 0.35589 0.28983 5.96451 + -3.18750 26.76742 160.16531 7.78327 0.35589 0.28976 5.96272 + -3.22500 27.14212 161.76998 7.86191 0.35760 0.28966 5.96011 + -3.26250 27.51681 163.91011 7.96676 0.35961 0.28952 5.95673 + -3.30000 27.89149 166.05087 8.07161 0.36186 0.28939 5.95346 + -3.33750 28.26617 168.19223 8.17645 0.36431 0.28927 5.95030 + -3.37500 28.64083 169.79860 8.25509 0.36691 0.28917 5.94800 + -3.37500 28.64083 170.86969 8.30751 0.36691 0.28911 5.94650 + -3.41250 29.01549 172.47657 8.38614 0.36964 0.28902 5.94429 + -3.45000 29.39014 174.61948 8.49098 0.37247 0.28891 5.94143 + -3.48750 29.76479 176.76283 8.59581 0.37537 0.28879 5.93866 + -3.52500 30.13943 178.90660 8.70065 0.37832 0.28868 5.93597 + -3.56250 30.51406 180.51468 8.77927 0.38132 0.28860 5.93400 + -3.56250 30.51406 181.58684 8.83168 0.38132 0.28854 5.93272 + -3.60000 30.88868 183.19528 8.91031 0.38433 0.28847 5.93082 + -3.63750 31.26329 185.34015 9.01513 0.38736 0.28836 5.92836 + -3.67500 31.63790 187.48534 9.11996 0.39039 0.28826 5.92597 + -3.71250 32.01250 189.63083 9.22478 0.39342 0.28816 5.92365 + -3.75000 32.38709 191.24012 9.30340 0.39643 0.28809 5.92195 + -3.75000 32.38709 187.77704 9.35581 0.39643 0.28804 5.78118 + -3.78750 32.76167 184.57434 9.43442 0.39943 0.28797 5.63385 + -3.82500 33.13625 186.72136 9.53924 0.40241 0.28788 5.63496 + -3.86250 33.51082 188.86856 9.64405 0.40536 0.28779 5.63605 + -3.90000 33.88538 191.01592 9.74887 0.40828 0.28770 5.63712 + -3.93750 34.25993 192.62653 9.82747 0.41117 0.28764 5.63791 + -3.93750 34.25993 193.70033 9.87988 0.41117 0.28759 5.63843 + -3.97500 34.63447 195.31108 9.95849 0.41402 0.28753 5.63921 + -4.01250 35.00901 197.45889 10.06330 0.41684 0.28745 5.64023 + -4.05000 35.38354 199.60682 10.16811 0.41961 0.28737 5.64123 + -4.08750 35.75806 201.75489 10.27291 0.42235 0.28729 5.64222 + -4.12500 36.13258 203.36601 10.35152 0.42505 0.28723 5.64295 + -4.12500 36.13258 204.44012 10.40392 0.42505 0.28719 5.64343 + -4.16250 36.50708 206.05137 10.48252 0.42771 0.28714 5.64415 + -4.20000 36.88158 208.19977 10.58733 0.43033 0.28706 5.64509 + -4.23750 37.25607 210.34830 10.69213 0.43291 0.28699 5.64601 + -4.27500 37.63055 212.49692 10.79693 0.43544 0.28692 5.64693 + -4.31250 38.00503 214.10844 10.87553 0.43793 0.28687 5.64760 + -4.31250 38.00503 215.18284 10.92793 0.43793 0.28683 5.64804 + -4.35000 38.37950 216.79445 11.00653 0.44038 0.28678 5.64871 + -4.38750 38.75395 218.94335 11.11133 0.44278 0.28671 5.64957 + -4.42500 39.12841 221.09234 11.21612 0.44514 0.28665 5.65043 + -4.46250 39.50285 221.82299 11.32092 0.44746 0.28658 5.61537 + -4.50000 39.87729 222.87096 11.39952 0.44974 0.28654 5.60207 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -3136,149 +3265,149 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00400 0.00000 0.00400 0.00400 402 100 P - 14.95298 0.00000 18.00209 1.83602 330 83 3 - 16.95123 0.00000 20.79279 1.69432 330 82 3 - 18.95004 0.00000 23.58285 1.57309 330 80 3 - 19.76177 0.00000 26.37242 1.47649 220 75 2 - 19.74039 0.00000 28.46435 1.35559 220 69 2 - 20.08267 0.00000 29.85887 1.46122 220 67 2 - 20.06683 0.00000 31.95051 1.37166 220 63 2 - 20.21858 0.00000 34.73917 1.36783 220 58 2 - 20.35532 0.00000 37.52765 1.39728 220 54 2 - 20.46500 0.00000 40.31597 1.45942 220 51 2 - 19.82384 0.00000 42.40713 1.51956 110 47 1 - 19.89039 0.00000 43.80120 1.58611 110 45 1 - 18.95447 0.00000 45.89226 1.67564 110 41 1 - 17.92938 0.00000 48.68026 1.82731 110 37 1 - 16.75399 0.00000 51.46819 2.01385 110 33 1 - 15.35962 0.00000 54.25606 2.20045 110 28 1 - 13.70380 0.00000 56.34693 2.37850 110 24 1 - 15.59639 0.00000 57.56659 4.27110 110 27 1 - 12.32902 0.00000 59.13471 2.56704 110 21 1 - 10.75613 0.00000 61.22551 2.73879 110 18 1 - 9.00067 0.00000 63.31630 2.92749 110 14 1 - 7.04226 0.00000 65.40707 3.13093 110 11 1 - 4.83006 0.00000 66.97513 3.31646 110 7 1 - 4.89154 0.00000 68.02050 3.37794 110 7 1 - 3.22753 0.00000 69.58855 3.57463 1 0 A - 3.36766 0.00000 71.67927 3.81178 1 0 A - 3.50781 0.00000 73.76998 4.05742 1 0 A - 3.64796 0.00000 75.86068 4.31048 1 0 A - 3.75308 0.00000 77.42869 4.53458 1 0 A - 3.80214 0.00000 78.16043 4.58422 1 0 A - 3.84419 0.00000 78.78764 4.69754 1 0 A - 3.90026 0.00000 79.62391 4.82988 1 0 A - 3.95633 0.00000 80.46017 4.96647 1 0 A - 4.01241 0.00000 81.29644 5.10682 1 0 A - 4.05446 0.00000 81.92365 5.23516 1 0 A - 4.59302 0.00000 95.31794 4.71276 1 0 A - 4.62901 0.00000 95.93045 4.82340 1 0 A - 4.67699 0.00000 96.78043 4.95013 1 0 A - 4.72495 0.00000 97.65983 5.07954 1 0 A - 4.77291 0.00000 98.56046 5.21138 1 0 A - 4.80887 0.00000 99.24610 5.33131 1 0 A - 4.83284 0.00000 99.70757 5.35948 1 0 A - 4.86879 0.00000 100.40515 5.48139 1 0 A - 4.91673 0.00000 101.34271 5.61915 1 0 A - 4.96466 0.00000 102.28754 5.75853 1 0 A - 5.01258 0.00000 103.23816 5.89937 1 0 A - 5.04852 0.00000 103.95413 6.02639 1 0 A - 5.07248 0.00000 104.43281 6.05664 1 0 A - 5.10842 0.00000 105.15261 6.18486 1 0 A - 5.15634 0.00000 106.11491 6.32928 1 0 A - 5.20425 0.00000 107.07985 6.47467 1 0 A - 5.25216 0.00000 108.04700 6.62093 1 0 A - 5.28810 0.00000 108.77356 6.75185 1 0 A - 5.31205 0.00000 109.25850 6.78412 1 0 A - 5.34798 0.00000 109.98665 6.91575 1 0 A - 5.39589 0.00000 110.95865 7.06414 1 0 A - 5.44380 0.00000 111.93182 7.21310 1 0 A - 5.49170 0.00000 112.90603 7.36255 1 0 A - 5.52763 0.00000 113.63725 7.49534 1 0 A - 5.55158 0.00000 114.12500 7.52952 1 0 A - 5.58751 0.00000 114.85700 7.66270 1 0 A - 5.63541 0.00000 115.83357 7.81329 1 0 A - 5.68332 0.00000 116.81074 7.96417 1 0 A - 5.73122 0.00000 117.78846 8.11527 1 0 A - 5.76714 0.00000 118.52205 8.24857 1 0 A - 5.79109 0.00000 119.01126 10.40158 1 0 A - 5.82702 0.00000 119.74528 10.45484 1 0 A - 5.87492 0.00000 120.72428 10.53085 1 0 A - 5.92282 0.00000 121.70363 10.60703 1 0 A - 5.97072 0.00000 122.68329 10.68336 1 0 A - 6.00664 0.00000 123.41822 10.73741 1 0 A - 6.03059 0.00000 123.90825 10.78228 1 0 A - 6.06652 0.00000 124.64343 10.83648 1 0 A - 6.11442 0.00000 125.62385 10.91326 1 0 A - 6.16231 0.00000 126.60449 10.99019 1 0 A - 6.21021 0.00000 127.58532 11.06725 1 0 A - 6.24614 0.00000 128.32104 11.12214 1 0 A - 13.16542 0.00000 44.38124 16.10830 1 0 A - 13.26962 0.30000 44.70036 16.22932 1 0 A - 13.40852 0.60000 45.12535 16.39423 1 0 A - 13.54735 0.90000 45.54975 16.55925 1 0 A - 13.68613 1.20000 45.97357 16.72438 1 0 A - 13.79019 1.50000 46.29106 16.84600 1 0 A - 13.85954 1.50000 46.50254 16.93326 1 0 A - 13.96355 1.80000 46.81946 17.05499 1 0 A - 14.10219 2.10000 47.24157 17.22045 1 0 A - 14.24078 2.40000 47.66312 17.38601 1 0 A - 14.37934 2.70000 48.08412 17.55168 1 0 A - 14.48323 3.00000 48.39954 17.67392 1 0 A - 14.55247 3.00000 48.60964 17.76095 1 0 A - 14.65632 3.30000 48.92452 17.88330 1 0 A - 14.79476 3.60000 49.34394 18.04925 1 0 A - 14.93317 3.90000 49.76284 18.21529 1 0 A - 15.07154 4.20000 50.18123 18.38142 1 0 A - 15.17530 4.50000 50.49471 18.50422 1 0 A - 7.25894 4.50000 149.47943 12.83152 1 0 A - 7.33759 4.83750 151.08085 12.96345 1 0 A - 7.44246 5.17500 153.21693 13.14359 1 0 A - 7.54733 5.51250 155.35395 13.32384 1 0 A - 7.65219 5.85000 157.49184 13.50418 1 0 A - 7.73084 6.18750 159.09577 13.63673 1 0 A - 7.78327 6.18750 160.16531 13.73251 1 0 A - 7.86191 6.52500 161.76998 13.86516 1 0 A - 7.96676 6.86250 163.91011 14.04579 1 0 A - 8.07161 7.20000 166.05087 14.22650 1 0 A - 8.17645 7.53750 168.19223 14.40731 1 0 A - 8.25509 7.87500 169.79860 14.54049 1 0 A - 8.30751 7.87500 170.86969 14.63591 1 0 A - 8.38614 8.21250 172.47657 14.76918 1 0 A - 8.49098 8.55000 174.61948 14.95024 1 0 A - 8.59581 8.88750 176.76283 15.13137 1 0 A - 8.70065 9.22500 178.90660 15.31259 1 0 A - 8.77927 9.56250 180.51468 15.44633 1 0 A - 8.83168 9.56250 181.58684 15.54144 1 0 A - 8.91031 9.90000 183.19528 15.67525 1 0 A - 9.01513 10.23750 185.34015 15.85669 1 0 A - 9.11996 10.57500 187.48534 16.03821 1 0 A - 9.22478 10.91250 189.63083 16.21979 1 0 A - 9.30340 11.25000 191.24012 16.35401 1 0 A - 9.35581 11.25000 187.77704 16.44886 1 0 A - 9.43442 11.58750 184.57434 16.58316 1 0 A - 9.53924 11.92500 186.72136 16.76494 1 0 A - 9.64405 12.26250 188.86856 16.94679 1 0 A - 9.74887 12.60000 191.01592 17.12870 1 0 A - 9.82747 12.93750 192.62653 17.26336 1 0 A - 9.87988 12.93750 193.70033 17.35799 1 0 A - 9.95849 13.27500 195.31108 17.49271 1 0 A - 10.06330 13.61250 197.45889 17.67481 1 0 A - 10.16811 13.95000 199.60682 17.85696 1 0 A - 10.27291 14.28750 201.75489 18.03917 1 0 A - 10.35152 14.62500 203.36601 18.17422 1 0 A - 10.40392 14.62500 204.44012 18.26865 1 0 A - 10.48252 14.96250 206.05137 18.40375 1 0 A - 10.58733 15.30000 208.19977 18.58613 1 0 A - 10.69213 15.63750 210.34830 18.76856 1 0 A - 10.79693 15.97500 212.49692 18.95104 1 0 A - 10.87553 16.31250 214.10844 19.08644 1 0 A - 10.92793 16.31250 215.18284 19.18070 1 0 A - 11.00653 16.65000 216.79445 19.31615 1 0 A - 17.61846 16.98750 218.94335 19.49878 110 0 1 - 28.45557 17.32500 221.09234 19.68147 110 13 1 - 39.26197 17.66250 221.82299 19.86419 110 18 1 - 50.01291 18.00000 222.87096 19.99991 110 22 1 + 14.71184 0.00000 18.00209 2.17285 330 82 3 + 16.74738 0.00000 20.79279 2.44449 330 81 3 + 18.11229 0.00000 23.58285 2.72173 220 77 2 + 18.56825 0.00000 26.37242 3.00258 220 70 2 + 18.80362 0.00000 28.46435 3.16287 220 66 2 + 19.23040 0.00000 29.85887 3.40933 220 64 2 + 19.45414 0.00000 31.95051 3.57176 220 61 2 + 19.86975 0.00000 34.73917 3.85918 220 57 2 + 20.25236 0.00000 37.52765 4.14812 220 54 2 + 20.59057 0.00000 40.31597 4.43837 220 51 2 + 20.31884 0.00000 42.40713 4.62845 110 48 1 + 20.52155 0.00000 43.80120 4.83115 110 47 1 + 19.84682 0.00000 45.89226 5.02228 110 43 1 + 19.12738 0.00000 48.68026 5.31570 110 39 1 + 18.22813 0.00000 51.46819 5.61000 110 35 1 + 17.11538 0.00000 54.25606 5.90510 110 32 1 + 15.66240 0.00000 56.34693 6.10792 110 28 1 + 15.82517 0.00000 57.56659 6.27070 110 27 1 + 14.55126 0.00000 59.13471 6.42327 110 25 1 + 13.16863 0.00000 61.22551 6.64597 110 22 1 + 11.58894 0.00000 63.31630 6.86903 110 18 1 + 9.79358 0.00000 65.40707 7.09241 110 15 1 + 7.69680 0.00000 66.97513 7.24893 110 11 1 + 7.83118 0.00000 68.02050 7.38331 110 12 1 + 5.48090 0.00000 69.58855 7.54013 110 0 1 + 3.36766 0.00000 71.67927 7.76443 1 0 A + 3.50781 0.00000 73.76998 7.98902 1 0 A + 3.64796 0.00000 75.86068 8.21387 1 0 A + 3.75308 0.00000 77.42869 8.37351 1 0 A + 3.80214 0.00000 78.16043 8.46518 1 0 A + 3.84419 0.00000 78.78764 8.52910 1 0 A + 3.90026 0.00000 79.62391 8.61926 1 0 A + 3.95633 0.00000 80.46017 8.70945 1 0 A + 4.01241 0.00000 81.29644 8.79968 1 0 A + 4.05446 0.00000 81.92365 8.86398 1 0 A + 4.59302 0.00000 95.31794 8.36234 1 0 A + 4.62901 0.00000 95.93045 8.40245 1 0 A + 4.67699 0.00000 96.78043 8.46618 1 0 A + 4.72495 0.00000 97.65983 8.53031 1 0 A + 4.77291 0.00000 98.56046 8.59482 1 0 A + 4.80887 0.00000 99.24610 8.63687 1 0 A + 4.83284 0.00000 99.70757 8.68251 1 0 A + 4.86879 0.00000 100.40515 8.72491 1 0 A + 4.91673 0.00000 101.34271 8.79047 1 0 A + 4.96466 0.00000 102.28754 8.85635 1 0 A + 5.01258 0.00000 103.23816 8.92254 1 0 A + 5.04852 0.00000 103.95413 8.96652 1 0 A + 5.07248 0.00000 104.43281 9.01153 1 0 A + 5.10842 0.00000 105.15261 9.05580 1 0 A + 5.15634 0.00000 106.11491 9.12284 1 0 A + 5.20425 0.00000 107.07985 9.19016 1 0 A + 5.25216 0.00000 108.04700 9.25773 1 0 A + 5.28810 0.00000 108.77356 9.30332 1 0 A + 5.31205 0.00000 109.25850 9.34778 1 0 A + 5.34798 0.00000 109.98665 9.39361 1 0 A + 5.39589 0.00000 110.95865 9.46190 1 0 A + 5.44380 0.00000 111.93182 9.53041 1 0 A + 5.49170 0.00000 112.90603 9.59914 1 0 A + 5.52763 0.00000 113.63725 9.64609 1 0 A + 5.55158 0.00000 114.12500 9.69008 1 0 A + 5.58751 0.00000 114.85700 9.73723 1 0 A + 5.63541 0.00000 115.83357 9.80657 1 0 A + 5.68332 0.00000 116.81074 9.87610 1 0 A + 5.73122 0.00000 117.78846 9.94581 1 0 A + 5.76714 0.00000 118.52205 9.99391 1 0 A + 5.79109 0.00000 119.01126 10.03750 1 0 A + 5.82702 0.00000 119.74528 10.08577 1 0 A + 5.87492 0.00000 120.72428 10.15601 1 0 A + 5.92282 0.00000 121.70363 10.22641 1 0 A + 5.97072 0.00000 122.68329 10.29696 1 0 A + 6.00664 0.00000 123.41822 10.34606 1 0 A + 6.03059 0.00000 123.90825 10.38929 1 0 A + 6.06652 0.00000 124.64343 10.43854 1 0 A + 6.11442 0.00000 125.62385 10.50955 1 0 A + 6.16231 0.00000 126.60449 10.58069 1 0 A + 6.21021 0.00000 127.58532 10.65198 1 0 A + 6.24614 0.00000 128.32104 10.70194 1 0 A + 13.16542 0.00000 44.38124 15.68611 1 0 A + 13.26962 0.30000 44.70036 15.80267 1 0 A + 13.40852 0.60000 45.12535 15.54862 1 0 A + 13.54735 0.90000 45.54975 15.30956 1 0 A + 13.68613 1.20000 45.97357 15.09163 1 0 A + 13.79019 1.50000 46.29106 14.86116 1 0 A + 13.85954 1.50000 46.50254 14.93814 1 0 A + 13.96355 1.80000 46.81946 14.73700 1 0 A + 14.10219 2.10000 47.24157 14.60559 1 0 A + 14.24078 2.40000 47.66312 14.50606 1 0 A + 14.37934 2.70000 48.08412 14.43798 1 0 A + 14.48323 3.00000 48.39954 14.48323 1 30 A + 14.55247 3.00000 48.60964 14.55247 1 30 A + 14.65632 3.30000 48.92452 14.65632 1 30 A + 14.79476 3.60000 49.34394 14.79476 1 30 A + 14.93317 3.90000 49.76284 14.93317 1 30 A + 15.07154 4.20000 50.18123 15.07154 1 30 A + 15.17530 4.50000 50.49471 15.17530 1 30 A + 7.25894 4.50000 149.47943 8.86201 1 0 A + 7.33759 4.83750 151.08085 8.93460 1 0 A + 7.44246 5.17500 153.21693 9.05958 1 0 A + 7.54733 5.51250 155.35395 9.20125 1 0 A + 7.65219 5.85000 157.49184 9.35744 1 0 A + 7.73084 6.18750 159.09577 9.49290 1 0 A + 7.78327 6.18750 160.16531 9.55958 1 0 A + 7.86191 6.52500 161.76998 9.70598 1 0 A + 7.96676 6.86250 163.91011 9.89525 1 0 A + 8.07161 7.20000 166.05087 10.09281 1 0 A + 8.17645 7.53750 168.19223 10.29761 1 0 A + 8.25509 7.87500 169.79860 10.47437 1 0 A + 8.30751 7.87500 170.86969 10.54310 1 0 A + 8.38614 8.21250 172.47657 10.72541 1 0 A + 8.49098 8.55000 174.61948 10.94697 1 0 A + 8.59581 8.88750 176.76283 11.17282 1 0 A + 8.70065 9.22500 178.90660 11.40247 1 0 A + 8.77927 9.56250 180.51468 11.59978 1 0 A + 8.83168 9.56250 181.58684 11.67120 1 0 A + 8.91031 9.90000 183.19528 11.87149 1 0 A + 9.01513 10.23750 185.34015 12.11015 1 0 A + 9.11996 10.57500 187.48534 12.35117 1 0 A + 9.22478 10.91250 189.63083 12.59431 1 0 A + 9.30340 11.25000 191.24012 12.80221 1 0 A + 9.35581 11.25000 187.77704 12.87646 1 0 A + 9.43442 11.58750 184.57434 13.08605 1 0 A + 9.53924 11.92500 186.72136 13.33427 1 0 A + 9.64405 12.26250 188.86856 13.58384 1 0 A + 9.74887 12.60000 191.01592 13.83462 1 0 A + 9.82747 12.93750 192.62653 14.04799 1 0 A + 9.87988 12.93750 193.70033 14.12499 1 0 A + 9.95849 13.27500 195.31108 14.33932 1 0 A + 10.06330 13.61250 197.45889 14.59301 1 0 A + 10.16811 13.95000 199.60682 14.84746 1 0 A + 10.27291 14.28750 201.75489 15.10259 1 0 A + 10.35152 14.62500 203.36601 15.31852 1 0 A + 10.40392 14.62500 204.44012 15.39811 1 0 A + 10.48252 14.96250 206.05137 15.61457 1 0 A + 10.58733 15.30000 208.19977 15.87127 1 0 A + 10.69213 15.63750 210.34830 16.12836 1 0 A + 10.79693 15.97500 212.49692 16.38579 1 0 A + 10.87553 16.31250 214.10844 16.60250 1 0 A + 10.92793 16.31250 215.18284 16.68449 1 0 A + 11.00653 16.65000 216.79445 16.90143 1 0 A + 16.47061 16.98750 218.94335 17.15954 110 0 1 + 27.34501 17.32500 221.09234 17.41779 110 12 1 + 38.18934 17.66250 221.82299 17.67613 110 17 1 + 48.98338 18.00000 222.87096 17.89243 110 22 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3291,10 +3420,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - -0.50 10.793 'opvulgrond' + -0.50 11.259 'opvulgrond' -1.30 6.504 'argex' -2.50 7.086 'klei z.z, org. matig' - -3.00 16.657 'zand los' + -3.00 16.512 'zand los' -4.50 0.000 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -3308,10 +3437,10 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - -0.50 -3.51 'opvulgrond' + -0.50 -3.66 'opvulgrond' -1.30 -2.37 'argex' -2.50 0.00 'klei z.z, org. matig' - -3.00 -6.06 'zand los' + -3.00 -6.01 'zand los' -4.50 0.00 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -3718,19 +3847,19 @@ Status character 26.89913 8.43750 26.89913 12.42725 402 100 P 27.96062 8.77500 27.96062 12.74840 402 100 P 29.40771 9.11250 29.40771 13.14031 402 100 P - 30.26973 9.45000 30.89199 13.52993 330 98 3 - 30.33304 9.78750 32.41231 13.91718 330 94 3 - 30.16463 10.12500 33.57439 14.22450 330 90 3 - 30.70162 10.12500 34.36045 14.37997 330 89 3 - 30.56951 10.46250 35.55605 14.68433 330 86 3 - 30.74062 10.80000 37.17686 15.06413 330 83 3 - 30.67553 11.13750 38.82849 15.44134 220 79 2 - 28.38672 11.47500 40.50956 15.81595 220 70 2 - 25.96220 11.81250 41.78800 16.10673 220 62 2 - 26.31982 11.81250 42.64936 16.26952 220 62 2 - 23.93210 12.15000 43.95447 16.55724 220 54 2 - 18.80421 12.48750 45.71557 16.92388 110 41 1 - 8.51374 12.82500 47.50064 17.28784 110 0 1 + 30.13545 9.45000 30.89199 13.52993 330 98 3 + 30.20333 9.78750 32.41231 13.91718 330 93 3 + 30.03931 10.12500 33.57439 14.22450 330 89 3 + 30.57631 10.12500 34.36045 14.37997 330 89 3 + 30.44842 10.46250 35.55605 14.68433 330 86 3 + 30.62358 10.80000 37.17686 15.06413 330 82 3 + 30.30512 11.13750 38.82849 15.44134 220 78 2 + 28.02842 11.47500 40.50956 15.81595 220 69 2 + 25.61548 11.81250 41.78800 16.10673 220 61 2 + 25.97310 11.81250 42.64936 16.26952 220 61 2 + 23.59646 12.15000 43.95447 16.55724 220 54 2 + 17.61281 12.48750 45.71557 16.92388 110 39 1 + 7.36061 12.82500 47.50064 17.28784 110 0 1 2.90471 13.16250 49.30836 17.64910 1 0 A 2.90421 13.50000 50.67761 17.92383 1 0 A [END OF DATA] @@ -3747,7 +3876,7 @@ Layer name [DATA] -0.50 0.000 'klei z.z. matig' -2.50 1.103 'klei z.z, org. matig' - -3.00 27.160 'zand los' + -3.00 26.996 'zand los' -4.50 0.000 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -3763,7 +3892,7 @@ Layer name [DATA] -0.50 0.00 'klei z.z. matig' -2.50 0.00 'klei z.z, org. matig' - -3.00 9.89 'zand los' + -3.00 9.83 'zand los' -4.50 0.00 'klei schoon slap' [END OF DATA] [END OF TABLE] @@ -3787,8 +3916,8 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 0.00831 0.05480 -0.15751 0.00000 45.77828 1 12 4 1.000 0 0 - 4.68223 10.59593 -34.79143 74.74781 78.19028 2 12 4 1.000 0 0 + 0.00416 0.02909 -0.07907 0.00000 45.74520 1 12 4 1.000 0 0 + 4.73005 11.06336 -34.49222 74.23005 77.73556 2 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -3799,18 +3928,18 @@ AnchorWallTop=-0.511 LengthOfAnchor=3.000 CrossSectionOfAnchor=200.000 IsShortAnchor=1 -ActiveForceSheetPilingWithoutLoad=22.434 -ActiveForceSheetPilingWithLoad=24.809 -HorizontalForceWithoutLoad=2.764 -HorizontalForceWithLoad=3.057 +ActiveForceSheetPilingWithoutLoad=22.427 +ActiveForceSheetPilingWithLoad=24.803 +HorizontalForceWithoutLoad=2.752 +HorizontalForceWithLoad=3.044 ActiveForceAnchorWall=9.644 PassiveForceAnchorWallWithoutLoad=81.348 PassiveForceAnchorWallWithLoad=91.016 HorizontalCohesiveForce=0.000 AnchorInclinationFactor=0.992 -AllowableAnchorForceKranz=12.206 +AllowableAnchorForceKranz=12.211 AllowableAnchorForceLong=81.372 -AllowableAnchorForceDecisive=12.206 +AllowableAnchorForceDecisive=12.211 IsCURAnchorForceCalculated=0 CURAnchorForce=0.000 [END OF KRANZ CALCULATION] @@ -3826,17 +3955,17 @@ HeightAnchorWall=2.000 LengthOfAnchor=3.000 CrossSectionOfAnchor=200.000 IsShortAnchor=1 -ActiveForceSheetPilingWithLoad=24.809 -HorizontalForceWithLoad=3.057 +ActiveForceSheetPilingWithLoad=24.803 +HorizontalForceWithLoad=3.044 ActiveForceAnchorWall=9.644 PassiveForceAnchorWallWithLoad=91.016 HorizontalCohesiveForce=0.000 AnchorInclinationFactor=0.992 -AllowableAnchorForceKranz=12.206 -AllowableAnchorForceDecisive=12.206 +AllowableAnchorForceKranz=12.211 +AllowableAnchorForceDecisive=12.211 IsCURAnchorForceCalculated=0 CURAnchorForce=0.000 -ClashAxis=-4.111 +ClashAxis=-4.110 ActiveAngleNoLoad=34 PassiveAngleNoLoad=-71 [END OF KRANZ DIAGRAM RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shi index a1663285..cdc545e2 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects06.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:09 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects06.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:09 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects06.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -605,6 +605,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -614,6 +615,7 @@ StagePartialFactorSetCUR=0 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -637,7 +639,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -648,8 +650,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -660,7 +664,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -679,6 +683,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -706,6 +711,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,6 +739,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -760,6 +767,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -787,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -814,6 +823,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.10 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -841,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -868,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -878,7 +890,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -887,14 +899,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -904,8 +973,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -922,6 +991,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -931,7 +1001,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -949,6 +1075,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -976,6 +1103,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,6 +1131,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shd index 1b143233..b1082c4c 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects07.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:10 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects07.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -438,6 +438,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -461,7 +462,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -472,8 +473,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -484,7 +487,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -503,6 +506,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -530,6 +534,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,6 +562,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,6 +590,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,6 +618,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -638,6 +646,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -665,6 +674,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -692,6 +702,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -702,7 +713,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -711,14 +722,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -728,8 +796,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -746,6 +814,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -755,7 +824,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -773,6 +898,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -800,6 +926,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -827,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shi index 904b0524..5aae1ba0 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects07.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:10 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects07.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:10 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects07.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -437,6 +437,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -460,7 +461,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -471,8 +472,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -483,7 +486,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -502,6 +505,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -529,6 +533,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -556,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -583,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -610,6 +617,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -637,6 +645,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -664,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -691,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -701,7 +712,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -710,14 +721,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,8 +795,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -745,6 +813,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -754,7 +823,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -772,6 +897,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -799,6 +925,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -826,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shd index 20c56a43..749b5704 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:24 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects08.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:39 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects08.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2021,6 +2021,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2030,6 +2031,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2039,6 +2041,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2048,6 +2051,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2057,6 +2061,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2066,6 +2071,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2089,7 +2095,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2100,8 +2106,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2112,7 +2120,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2131,6 +2139,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2158,6 +2167,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2185,6 +2195,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2212,6 +2223,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2239,6 +2251,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2266,6 +2279,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2293,6 +2307,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2320,6 +2335,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2330,7 +2346,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2339,14 +2355,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2356,8 +2429,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2374,6 +2447,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2383,7 +2457,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2401,6 +2531,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2428,6 +2559,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2455,6 +2587,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2529,6 +2662,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -2547,12 +2681,12 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 4 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 5 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 6 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 4 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 5 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 6 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -3317,43 +3451,43 @@ Status character 0.00000 0.00000 0.00001 0.00000 110 9 1 1.16667 2.33333 13.38671 1.16667 110 9 1 2.33333 4.66667 26.77341 2.33333 110 9 1 - 3.50000 7.00000 40.16012 3.50000 110 0 1 + 3.50000 7.00000 40.16012 3.50000 110 9 1 4.66667 9.33333 53.54682 4.66667 110 9 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 7.00000 14.00000 80.32024 7.00000 110 0 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 7.00000 14.00000 80.32024 7.00000 110 9 1 8.16667 16.33333 93.70694 8.16667 110 9 1 9.33333 18.66667 107.09365 9.33333 110 9 1 10.50000 21.00000 120.48035 10.50000 110 9 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 12.83333 25.66667 147.25376 12.83333 110 0 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 12.83333 25.66667 147.25376 12.83333 110 9 1 14.00000 28.00000 160.64047 14.00000 110 9 1 - 15.16667 30.33333 174.02718 15.16667 110 0 1 + 15.16667 30.33333 174.02718 15.16667 110 9 1 16.33333 32.66667 187.41388 16.33333 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 18.00000 36.00000 206.53775 18.00000 110 9 1 18.50000 37.00000 212.27491 18.50000 110 9 1 19.00000 38.00000 218.01207 19.00000 110 9 1 - 19.50000 39.00000 223.74923 19.50000 110 0 1 + 19.50000 39.00000 223.74923 19.50000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 21.25000 42.50000 243.82928 21.25000 110 9 1 - 22.50000 45.00000 258.17218 22.50000 110 0 1 + 22.50000 45.00000 258.17218 22.50000 110 9 1 23.75000 47.50000 272.51508 23.75000 110 9 1 25.00000 50.00000 286.85798 25.00000 110 9 1 - 26.25000 52.50000 301.20088 26.25000 110 0 1 26.25000 52.50000 301.20088 26.25000 110 9 1 - 27.50000 55.00000 315.54378 27.50000 110 0 1 + 26.25000 52.50000 301.20088 26.25000 110 9 1 + 27.50000 55.00000 315.54378 27.50000 110 9 1 28.75000 57.50000 329.88668 28.75000 110 9 1 - 30.00000 60.00000 344.22958 30.00000 110 0 1 - 31.25000 62.50000 358.57248 31.25000 110 0 1 + 30.00000 60.00000 344.22958 30.00000 110 9 1 + 31.25000 62.50000 358.57248 31.25000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 - 33.00000 66.00000 378.65254 33.00000 110 0 1 + 33.00000 66.00000 378.65254 33.00000 110 9 1 33.50000 67.00000 384.38970 33.50000 110 9 1 - 34.00000 68.00000 390.12686 34.00000 110 0 1 + 34.00000 68.00000 390.12686 34.00000 110 9 1 34.50000 69.00000 395.86402 34.50000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 @@ -3362,28 +3496,28 @@ Status character 36.50000 73.00000 418.81265 36.50000 110 9 1 37.00000 74.00000 424.54981 37.00000 110 9 1 37.50000 75.00000 430.28697 37.50000 110 9 1 - 37.50000 75.00000 430.28697 37.50000 110 0 1 - 38.40000 76.80000 440.61386 38.40000 110 0 1 + 37.50000 75.00000 430.28697 37.50000 110 9 1 + 38.40000 76.80000 440.61386 38.40000 110 9 1 39.30000 78.60000 450.94075 39.30000 110 9 1 40.20000 80.40000 461.26764 40.20000 110 9 1 - 41.10000 82.20000 471.59452 41.10000 110 0 1 - 42.00000 84.00000 481.92141 42.00000 110 0 1 + 41.10000 82.20000 471.59452 41.10000 110 9 1 + 42.00000 84.00000 481.92141 42.00000 110 9 1 42.00000 84.00000 481.92141 42.00000 110 9 1 - 42.90000 85.80000 492.24830 42.90000 110 0 1 - 43.80000 87.60000 502.57519 43.80000 110 0 1 + 42.90000 85.80000 492.24830 42.90000 110 9 1 + 43.80000 87.60000 502.57519 43.80000 110 9 1 44.70000 89.40000 512.90207 44.70000 110 9 1 45.60000 91.20000 523.22896 45.60000 110 9 1 - 46.50000 93.00000 533.55585 46.50000 110 0 1 46.50000 93.00000 533.55585 46.50000 110 9 1 - 46.70000 93.40000 535.85071 46.70000 110 0 1 - 46.90000 93.80000 538.14557 46.90000 110 0 1 - 47.10000 94.20000 540.44044 47.10000 110 0 1 + 46.50000 93.00000 533.55585 46.50000 110 9 1 + 46.70000 93.40000 535.85071 46.70000 110 9 1 + 46.90000 93.80000 538.14557 46.90000 110 9 1 + 47.10000 94.20000 540.44044 47.10000 110 9 1 47.30000 94.60000 542.73530 47.30000 110 9 1 - 47.50000 95.00000 545.03017 47.50000 110 0 1 47.50000 95.00000 545.03017 47.50000 110 9 1 - 48.00000 96.00000 550.76733 48.00000 110 0 1 - 48.50000 97.00000 556.50449 48.50000 110 0 1 - 49.00000 98.00000 562.24165 49.00000 110 0 1 + 47.50000 95.00000 545.03017 47.50000 110 9 1 + 48.00000 96.00000 550.76733 48.00000 110 9 1 + 48.50000 97.00000 556.50449 48.50000 110 9 1 + 49.00000 98.00000 562.24165 49.00000 110 9 1 49.50000 99.00000 567.97881 49.50000 110 9 1 50.00000 100.00000 573.71596 50.00000 110 9 1 69.09830 100.00000 285.40450 69.09830 110 24 1 @@ -3405,19 +3539,19 @@ Status character 74.34977 119.00000 303.52885 74.34977 110 24 1 74.62616 120.00000 304.65721 74.62616 110 24 1 60.65592 120.00000 461.49354 60.65592 110 13 1 - 61.82410 122.60000 470.38156 61.82410 110 0 1 - 62.99229 125.20000 479.26958 62.99229 110 0 1 + 61.82410 122.60000 470.38156 61.82410 110 13 1 + 62.99229 125.20000 479.26958 62.99229 110 13 1 64.16048 127.80000 488.15761 64.16048 110 13 1 - 65.32867 130.40000 497.04563 65.32867 110 0 1 + 65.32867 130.40000 497.04563 65.32867 110 13 1 66.49686 133.00000 505.93365 66.49686 110 13 1 66.49686 133.00000 504.73184 66.49686 110 13 1 67.66504 135.60000 513.59875 67.66504 110 13 1 68.83323 138.20000 522.46566 68.83323 110 13 1 70.00142 140.80000 531.33257 70.00142 110 13 1 - 71.16961 143.40000 540.19948 71.16961 110 0 1 + 71.16961 143.40000 540.19948 71.16961 110 13 1 72.33780 146.00000 549.06639 72.33780 110 13 1 72.33780 146.00000 548.05027 72.33780 110 13 1 - 73.50598 148.60000 556.90077 73.50598 110 0 1 + 73.50598 148.60000 556.90077 73.50598 110 13 1 74.67417 151.20000 565.75127 74.67417 110 13 1 75.84236 153.80000 574.60177 75.84236 110 13 1 77.01055 156.40000 583.45228 77.01055 110 13 1 @@ -3425,104 +3559,104 @@ Status character 78.17874 159.00000 591.43253 78.17874 110 13 1 79.34692 161.60000 600.27003 79.34692 110 13 1 80.51511 164.20000 609.10753 80.51511 110 13 1 - 81.68330 166.80000 617.94503 81.68330 110 0 1 + 81.68330 166.80000 617.94503 81.68330 110 13 1 82.85149 169.40000 626.78252 82.85149 110 13 1 84.01968 172.00000 635.62002 84.01968 110 13 1 - 84.01968 172.00000 634.86569 84.01968 110 0 1 + 84.01968 172.00000 634.86569 84.01968 110 13 1 85.18786 174.60000 643.69270 85.18786 110 13 1 86.35605 177.20000 652.51971 86.35605 110 13 1 - 87.52424 179.80000 661.34672 87.52424 110 0 1 + 87.52424 179.80000 661.34672 87.52424 110 13 1 88.69243 182.40000 670.17373 88.69243 110 13 1 - 89.86062 185.00000 679.00074 89.86062 110 0 1 - 98.77065 185.00000 559.56826 98.77065 110 0 1 + 89.86062 185.00000 679.00074 89.86062 110 13 1 + 98.77065 185.00000 559.56826 98.77065 110 18 1 97.78294 189.80000 553.97258 97.78294 110 18 1 96.79524 194.60000 548.37690 96.79524 110 18 1 95.80753 199.40000 542.78121 95.80753 110 18 1 94.81982 204.20000 537.18553 94.81982 110 18 1 - 93.83212 209.00000 531.58985 93.83212 110 0 1 - 85.36759 209.00000 644.40861 85.36759 110 0 1 - 86.26619 211.00000 651.19185 86.26619 110 0 1 + 93.83212 209.00000 531.58985 93.83212 110 18 1 + 85.36759 209.00000 644.40861 85.36759 110 13 1 + 86.26619 211.00000 651.19185 86.26619 110 13 1 87.16480 213.00000 657.97510 87.16480 110 13 1 88.06340 215.00000 664.75835 88.06340 110 13 1 88.96201 217.00000 671.54160 88.96201 110 13 1 - 89.86062 219.00000 678.32485 89.86062 110 0 1 + 89.86062 219.00000 678.32485 89.86062 110 13 1 89.86062 219.00000 677.92389 89.86062 110 13 1 90.75922 221.00000 684.70313 90.75922 110 13 1 91.65783 223.00000 691.48237 91.65783 110 13 1 - 92.55644 225.00000 698.26161 92.55644 110 0 1 - 93.45504 227.00000 705.04085 93.45504 110 0 1 - 94.35365 229.00000 711.82009 94.35365 110 0 1 + 92.55644 225.00000 698.26161 92.55644 110 13 1 + 93.45504 227.00000 705.04085 93.45504 110 13 1 + 94.35365 229.00000 711.82009 94.35365 110 13 1 103.70918 229.00000 583.81484 103.70918 110 18 1 104.44996 231.00000 587.98495 104.44996 110 18 1 - 105.19074 233.00000 592.15505 105.19074 110 0 1 + 105.19074 233.00000 592.15505 105.19074 110 18 1 105.93152 235.00000 596.32516 105.93152 110 18 1 106.67230 237.00000 600.49526 106.67230 110 18 1 107.41308 239.00000 604.66537 107.41308 110 18 1 80.50987 239.00000 1019.73819 80.50987 110 8 1 80.88466 239.90000 1024.48525 80.88466 110 8 1 - 81.25944 240.80000 1029.23230 81.25944 110 0 1 + 81.25944 240.80000 1029.23230 81.25944 110 8 1 81.63423 241.70000 1033.97936 81.63423 110 8 1 82.00902 242.60000 1038.72642 82.00902 110 8 1 - 82.38380 243.50000 1043.47347 82.38380 110 0 1 + 82.38380 243.50000 1043.47347 82.38380 110 8 1 82.38380 243.50000 1042.69337 82.38380 110 8 1 - 83.63310 246.50000 1058.50506 83.63310 110 0 1 + 83.63310 246.50000 1058.50506 83.63310 110 8 1 84.88239 249.50000 1074.31676 84.88239 110 8 1 86.13168 252.50000 1090.12845 86.13168 110 8 1 - 87.38097 255.50000 1105.94015 87.38097 110 0 1 + 87.38097 255.50000 1105.94015 87.38097 110 8 1 88.63026 258.50000 1121.75184 88.63026 110 8 1 88.63026 258.50000 1121.14810 88.63026 110 8 1 88.88012 259.10000 1124.30874 88.88012 110 8 1 89.12998 259.70000 1127.46937 89.12998 110 8 1 89.37983 260.30000 1130.63001 89.37983 110 8 1 89.62969 260.90000 1133.79065 89.62969 110 8 1 - 89.87955 261.50000 1136.95128 89.87955 110 0 1 - 89.87955 261.50000 1136.55186 89.87955 110 0 1 + 89.87955 261.50000 1136.95128 89.87955 110 8 1 + 89.87955 261.50000 1136.55186 89.87955 110 8 1 90.92063 264.00000 1149.71656 90.92063 110 8 1 91.96170 266.50000 1162.88125 91.96170 110 8 1 - 93.00278 269.00000 1176.04594 93.00278 110 0 1 + 93.00278 269.00000 1176.04594 93.00278 110 8 1 94.04385 271.50000 1189.21064 94.04385 110 8 1 - 95.08493 274.00000 1202.37533 95.08493 110 0 1 + 95.08493 274.00000 1202.37533 95.08493 110 8 1 95.08493 274.00000 1201.81956 95.08493 110 8 1 - 96.38049 276.80000 1218.19472 96.38049 110 0 1 + 96.38049 276.80000 1218.19472 96.38049 110 8 1 97.67605 279.60000 1234.56988 97.67605 110 8 1 - 98.97161 282.40000 1250.94503 98.97161 110 0 1 - 100.26717 285.20000 1267.32019 100.26717 110 0 1 + 98.97161 282.40000 1250.94503 98.97161 110 8 1 + 100.26717 285.20000 1267.32019 100.26717 110 8 1 101.56274 288.00000 1283.69535 101.56274 110 8 1 - 101.56274 288.00000 1283.24671 101.56274 110 0 1 - 102.85830 290.80000 1299.61615 102.85830 110 0 1 + 101.56274 288.00000 1283.24671 101.56274 110 8 1 + 102.85830 290.80000 1299.61615 102.85830 110 8 1 104.15386 293.60000 1315.98558 104.15386 110 8 1 - 105.44942 296.40000 1332.35502 105.44942 110 0 1 - 106.74498 299.20000 1348.72445 106.74498 110 0 1 + 105.44942 296.40000 1332.35502 105.44942 110 8 1 + 106.74498 299.20000 1348.72445 106.74498 110 8 1 108.04054 302.00000 1365.09389 108.04054 110 8 1 108.04054 302.00000 1364.74795 108.04054 110 8 1 109.33610 304.80000 1381.11324 109.33610 110 8 1 - 110.63166 307.60000 1397.47852 110.63166 110 0 1 - 111.92722 310.40000 1413.84381 111.92722 110 0 1 + 110.63166 307.60000 1397.47852 110.63166 110 8 1 + 111.92722 310.40000 1413.84381 111.92722 110 8 1 113.22279 313.20000 1430.20910 113.22279 110 8 1 114.51835 316.00000 1446.57438 114.51835 110 8 1 114.51835 316.00000 1446.30306 114.51835 110 8 1 115.81391 318.80000 1462.66528 115.81391 110 8 1 - 117.10947 321.60000 1479.02750 117.10947 110 0 1 + 117.10947 321.60000 1479.02750 117.10947 110 8 1 118.40503 324.40000 1495.38971 118.40503 110 8 1 - 119.70059 327.20000 1511.75193 119.70059 110 0 1 + 119.70059 327.20000 1511.75193 119.70059 110 8 1 120.99615 330.00000 1528.11415 120.99615 110 8 1 - 120.99615 330.00000 1527.89817 120.99615 110 0 1 - 122.29171 332.80000 1544.25807 122.29171 110 0 1 - 123.58727 335.60000 1560.61798 123.58727 110 0 1 - 124.88284 338.40000 1576.97788 124.88284 110 0 1 - 126.17840 341.20000 1593.33778 126.17840 110 0 1 + 120.99615 330.00000 1527.89817 120.99615 110 8 1 + 122.29171 332.80000 1544.25807 122.29171 110 8 1 + 123.58727 335.60000 1560.61798 123.58727 110 8 1 + 124.88284 338.40000 1576.97788 124.88284 110 8 1 + 126.17840 341.20000 1593.33778 126.17840 110 8 1 127.47396 344.00000 1609.69769 127.47396 110 8 1 - 170.07071 344.00000 948.32847 170.07071 110 0 1 + 170.07071 344.00000 948.32847 170.07071 110 18 1 170.99669 346.00000 953.49178 170.99669 110 18 1 171.92266 348.00000 958.65509 171.92266 110 18 1 172.84864 350.00000 963.81841 172.84864 110 18 1 - 173.77461 352.00000 968.98172 173.77461 110 0 1 + 173.77461 352.00000 968.98172 173.77461 110 18 1 174.70059 354.00000 974.14503 174.70059 110 18 1 - 130.94421 354.00000 1653.72148 130.94421 110 0 1 + 130.94421 354.00000 1653.72148 130.94421 110 8 1 131.86961 356.00000 1665.40856 131.86961 110 8 1 132.79501 358.00000 1677.09564 132.79501 110 8 1 133.72041 360.00000 1688.78272 133.72041 110 8 1 - 134.64581 362.00000 1700.46979 134.64581 110 0 1 + 134.64581 362.00000 1700.46979 134.64581 110 8 1 135.57121 364.00000 1712.15687 135.57121 110 8 1 [END OF DATA] [END OF TABLE] @@ -3829,43 +3963,43 @@ Status character 0.00000 0.00000 0.00001 0.00000 110 9 1 1.16667 2.33333 13.38671 1.16667 110 9 1 2.33333 4.66667 26.77341 2.33333 110 9 1 - 3.50000 7.00000 40.16012 3.50000 110 0 1 + 3.50000 7.00000 40.16012 3.50000 110 9 1 4.66667 9.33333 53.54682 4.66667 110 9 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 7.00000 14.00000 80.32024 7.00000 110 0 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 7.00000 14.00000 80.32024 7.00000 110 9 1 8.16667 16.33333 93.70694 8.16667 110 9 1 9.33333 18.66667 107.09365 9.33333 110 9 1 10.50000 21.00000 120.48035 10.50000 110 9 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 12.83333 25.66667 147.25376 12.83333 110 0 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 12.83333 25.66667 147.25376 12.83333 110 9 1 14.00000 28.00000 160.64047 14.00000 110 9 1 - 15.16667 30.33333 174.02718 15.16667 110 0 1 + 15.16667 30.33333 174.02718 15.16667 110 9 1 16.33333 32.66667 187.41388 16.33333 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 18.00000 36.00000 206.53775 18.00000 110 9 1 18.50000 37.00000 212.27491 18.50000 110 9 1 19.00000 38.00000 218.01207 19.00000 110 9 1 - 19.50000 39.00000 223.74923 19.50000 110 0 1 + 19.50000 39.00000 223.74923 19.50000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 21.25000 42.50000 243.82928 21.25000 110 9 1 - 22.50000 45.00000 258.17218 22.50000 110 0 1 + 22.50000 45.00000 258.17218 22.50000 110 9 1 23.75000 47.50000 272.51508 23.75000 110 9 1 25.00000 50.00000 286.85798 25.00000 110 9 1 - 26.25000 52.50000 301.20088 26.25000 110 0 1 26.25000 52.50000 301.20088 26.25000 110 9 1 - 27.50000 55.00000 315.54378 27.50000 110 0 1 + 26.25000 52.50000 301.20088 26.25000 110 9 1 + 27.50000 55.00000 315.54378 27.50000 110 9 1 28.75000 57.50000 329.88668 28.75000 110 9 1 - 30.00000 60.00000 344.22958 30.00000 110 0 1 - 31.25000 62.50000 358.57248 31.25000 110 0 1 + 30.00000 60.00000 344.22958 30.00000 110 9 1 + 31.25000 62.50000 358.57248 31.25000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 - 33.00000 66.00000 378.65254 33.00000 110 0 1 + 33.00000 66.00000 378.65254 33.00000 110 9 1 33.50000 67.00000 384.38970 33.50000 110 9 1 - 34.00000 68.00000 390.12686 34.00000 110 0 1 + 34.00000 68.00000 390.12686 34.00000 110 9 1 34.50000 69.00000 395.86402 34.50000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 @@ -3874,28 +4008,28 @@ Status character 36.50000 73.00000 418.81265 36.50000 110 9 1 37.00000 74.00000 424.54981 37.00000 110 9 1 37.50000 75.00000 430.28697 37.50000 110 9 1 - 37.50000 75.00000 430.28697 37.50000 110 0 1 - 38.40000 76.80000 440.61386 38.40000 110 0 1 + 37.50000 75.00000 430.28697 37.50000 110 9 1 + 38.40000 76.80000 440.61386 38.40000 110 9 1 39.30000 78.60000 450.94075 39.30000 110 9 1 40.20000 80.40000 461.26764 40.20000 110 9 1 - 41.10000 82.20000 471.59452 41.10000 110 0 1 - 42.00000 84.00000 481.92141 42.00000 110 0 1 + 41.10000 82.20000 471.59452 41.10000 110 9 1 42.00000 84.00000 481.92141 42.00000 110 9 1 - 42.90000 85.80000 492.24830 42.90000 110 0 1 - 43.80000 87.60000 502.57519 43.80000 110 0 1 + 42.00000 84.00000 481.92141 42.00000 110 9 1 + 42.90000 85.80000 492.24830 42.90000 110 9 1 + 43.80000 87.60000 502.57519 43.80000 110 9 1 44.70000 89.40000 512.90207 44.70000 110 9 1 45.60000 91.20000 523.22896 45.60000 110 9 1 - 46.50000 93.00000 533.55585 46.50000 110 0 1 46.50000 93.00000 533.55585 46.50000 110 9 1 - 46.70000 93.40000 535.85071 46.70000 110 0 1 - 46.90000 93.80000 538.14557 46.90000 110 0 1 - 47.10000 94.20000 540.44044 47.10000 110 0 1 + 46.50000 93.00000 533.55585 46.50000 110 9 1 + 46.70000 93.40000 535.85071 46.70000 110 9 1 + 46.90000 93.80000 538.14557 46.90000 110 9 1 + 47.10000 94.20000 540.44044 47.10000 110 9 1 47.30000 94.60000 542.73530 47.30000 110 9 1 - 47.50000 95.00000 545.03017 47.50000 110 0 1 47.50000 95.00000 545.03017 47.50000 110 9 1 - 48.00000 96.00000 550.76733 48.00000 110 0 1 - 48.50000 97.00000 556.50449 48.50000 110 0 1 - 49.00000 98.00000 562.24165 49.00000 110 0 1 + 47.50000 95.00000 545.03017 47.50000 110 9 1 + 48.00000 96.00000 550.76733 48.00000 110 9 1 + 48.50000 97.00000 556.50449 48.50000 110 9 1 + 49.00000 98.00000 562.24165 49.00000 110 9 1 49.50000 99.00000 567.97881 49.50000 110 9 1 50.00000 100.00000 573.71596 50.00000 110 9 1 69.09830 100.00000 285.40450 69.09830 110 24 1 @@ -3917,19 +4051,19 @@ Status character 74.34977 119.00000 303.52885 74.34977 110 24 1 74.62616 120.00000 304.65721 74.62616 110 24 1 60.65592 120.00000 461.49354 60.65592 110 13 1 - 61.82410 122.60000 470.38156 61.82410 110 0 1 - 62.99229 125.20000 479.26958 62.99229 110 0 1 + 61.82410 122.60000 470.38156 61.82410 110 13 1 + 62.99229 125.20000 479.26958 62.99229 110 13 1 64.16048 127.80000 488.15761 64.16048 110 13 1 - 65.32867 130.40000 497.04563 65.32867 110 0 1 + 65.32867 130.40000 497.04563 65.32867 110 13 1 66.49686 133.00000 505.93365 66.49686 110 13 1 66.49686 133.00000 504.73184 66.49686 110 13 1 67.66504 135.60000 513.59875 67.66504 110 13 1 68.83323 138.20000 522.46566 68.83323 110 13 1 70.00142 140.80000 531.33257 70.00142 110 13 1 - 71.16961 143.40000 540.19948 71.16961 110 0 1 + 71.16961 143.40000 540.19948 71.16961 110 13 1 72.33780 146.00000 549.06639 72.33780 110 13 1 72.33780 146.00000 548.05027 72.33780 110 13 1 - 73.50598 148.60000 556.90077 73.50598 110 0 1 + 73.50598 148.60000 556.90077 73.50598 110 13 1 74.67417 151.20000 565.75127 74.67417 110 13 1 75.84236 153.80000 574.60177 75.84236 110 13 1 77.01055 156.40000 583.45228 77.01055 110 13 1 @@ -3937,104 +4071,104 @@ Status character 78.17874 159.00000 591.43253 78.17874 110 13 1 79.34692 161.60000 600.27003 79.34692 110 13 1 80.51511 164.20000 609.10753 80.51511 110 13 1 - 81.68330 166.80000 617.94503 81.68330 110 0 1 + 81.68330 166.80000 617.94503 81.68330 110 13 1 82.85149 169.40000 626.78252 82.85149 110 13 1 84.01968 172.00000 635.62002 84.01968 110 13 1 - 84.01968 172.00000 634.86569 84.01968 110 0 1 + 84.01968 172.00000 634.86569 84.01968 110 13 1 85.18786 174.60000 643.69270 85.18786 110 13 1 86.35605 177.20000 652.51971 86.35605 110 13 1 - 87.52424 179.80000 661.34672 87.52424 110 0 1 + 87.52424 179.80000 661.34672 87.52424 110 13 1 88.69243 182.40000 670.17373 88.69243 110 13 1 - 89.86062 185.00000 679.00074 89.86062 110 0 1 - 98.77065 185.00000 559.56826 98.77065 110 0 1 + 89.86062 185.00000 679.00074 89.86062 110 13 1 + 98.77065 185.00000 559.56826 98.77065 110 18 1 97.78294 189.80000 553.97258 97.78294 110 18 1 96.79524 194.60000 548.37690 96.79524 110 18 1 95.80753 199.40000 542.78121 95.80753 110 18 1 94.81982 204.20000 537.18553 94.81982 110 18 1 - 93.83212 209.00000 531.58985 93.83212 110 0 1 - 85.36759 209.00000 644.40861 85.36759 110 0 1 - 86.26619 211.00000 651.19185 86.26619 110 0 1 + 93.83212 209.00000 531.58985 93.83212 110 18 1 + 85.36759 209.00000 644.40861 85.36759 110 13 1 + 86.26619 211.00000 651.19185 86.26619 110 13 1 87.16480 213.00000 657.97510 87.16480 110 13 1 88.06340 215.00000 664.75835 88.06340 110 13 1 88.96201 217.00000 671.54160 88.96201 110 13 1 - 89.86062 219.00000 678.32485 89.86062 110 0 1 + 89.86062 219.00000 678.32485 89.86062 110 13 1 89.86062 219.00000 677.92389 89.86062 110 13 1 90.75922 221.00000 684.70313 90.75922 110 13 1 91.65783 223.00000 691.48237 91.65783 110 13 1 - 92.55644 225.00000 698.26161 92.55644 110 0 1 - 93.45504 227.00000 705.04085 93.45504 110 0 1 - 94.35365 229.00000 711.82009 94.35365 110 0 1 + 92.55644 225.00000 698.26161 92.55644 110 13 1 + 93.45504 227.00000 705.04085 93.45504 110 13 1 + 94.35365 229.00000 711.82009 94.35365 110 13 1 103.70918 229.00000 583.81484 103.70918 110 18 1 104.44996 231.00000 587.98495 104.44996 110 18 1 - 105.19074 233.00000 592.15505 105.19074 110 0 1 + 105.19074 233.00000 592.15505 105.19074 110 18 1 105.93152 235.00000 596.32516 105.93152 110 18 1 106.67230 237.00000 600.49526 106.67230 110 18 1 107.41308 239.00000 604.66537 107.41308 110 18 1 80.50987 239.00000 1019.73819 80.50987 110 8 1 80.88466 239.90000 1024.48525 80.88466 110 8 1 - 81.25944 240.80000 1029.23230 81.25944 110 0 1 + 81.25944 240.80000 1029.23230 81.25944 110 8 1 81.63423 241.70000 1033.97936 81.63423 110 8 1 82.00902 242.60000 1038.72642 82.00902 110 8 1 - 82.38380 243.50000 1043.47347 82.38380 110 0 1 + 82.38380 243.50000 1043.47347 82.38380 110 8 1 82.38380 243.50000 1042.69337 82.38380 110 8 1 - 83.63310 246.50000 1058.50506 83.63310 110 0 1 + 83.63310 246.50000 1058.50506 83.63310 110 8 1 84.88239 249.50000 1074.31676 84.88239 110 8 1 86.13168 252.50000 1090.12845 86.13168 110 8 1 - 87.38097 255.50000 1105.94015 87.38097 110 0 1 + 87.38097 255.50000 1105.94015 87.38097 110 8 1 88.63026 258.50000 1121.75184 88.63026 110 8 1 88.63026 258.50000 1121.14810 88.63026 110 8 1 88.88012 259.10000 1124.30874 88.88012 110 8 1 89.12998 259.70000 1127.46937 89.12998 110 8 1 89.37983 260.30000 1130.63001 89.37983 110 8 1 89.62969 260.90000 1133.79065 89.62969 110 8 1 - 89.87955 261.50000 1136.95128 89.87955 110 0 1 - 89.87955 261.50000 1136.55186 89.87955 110 0 1 + 89.87955 261.50000 1136.95128 89.87955 110 8 1 + 89.87955 261.50000 1136.55186 89.87955 110 8 1 90.92063 264.00000 1149.71656 90.92063 110 8 1 91.96170 266.50000 1162.88125 91.96170 110 8 1 - 93.00278 269.00000 1176.04594 93.00278 110 0 1 + 93.00278 269.00000 1176.04594 93.00278 110 8 1 94.04385 271.50000 1189.21064 94.04385 110 8 1 - 95.08493 274.00000 1202.37533 95.08493 110 0 1 + 95.08493 274.00000 1202.37533 95.08493 110 8 1 95.08493 274.00000 1201.81956 95.08493 110 8 1 - 96.38049 276.80000 1218.19472 96.38049 110 0 1 + 96.38049 276.80000 1218.19472 96.38049 110 8 1 97.67605 279.60000 1234.56988 97.67605 110 8 1 - 98.97161 282.40000 1250.94503 98.97161 110 0 1 - 100.26717 285.20000 1267.32019 100.26717 110 0 1 + 98.97161 282.40000 1250.94503 98.97161 110 8 1 + 100.26717 285.20000 1267.32019 100.26717 110 8 1 101.56274 288.00000 1283.69535 101.56274 110 8 1 - 101.56274 288.00000 1283.24671 101.56274 110 0 1 - 102.85830 290.80000 1299.61615 102.85830 110 0 1 + 101.56274 288.00000 1283.24671 101.56274 110 8 1 + 102.85830 290.80000 1299.61615 102.85830 110 8 1 104.15386 293.60000 1315.98558 104.15386 110 8 1 - 105.44942 296.40000 1332.35502 105.44942 110 0 1 - 106.74498 299.20000 1348.72445 106.74498 110 0 1 + 105.44942 296.40000 1332.35502 105.44942 110 8 1 + 106.74498 299.20000 1348.72445 106.74498 110 8 1 108.04054 302.00000 1365.09389 108.04054 110 8 1 108.04054 302.00000 1364.74795 108.04054 110 8 1 109.33610 304.80000 1381.11324 109.33610 110 8 1 - 110.63166 307.60000 1397.47852 110.63166 110 0 1 - 111.92722 310.40000 1413.84381 111.92722 110 0 1 + 110.63166 307.60000 1397.47852 110.63166 110 8 1 + 111.92722 310.40000 1413.84381 111.92722 110 8 1 113.22279 313.20000 1430.20910 113.22279 110 8 1 114.51835 316.00000 1446.57438 114.51835 110 8 1 114.51835 316.00000 1446.30306 114.51835 110 8 1 115.81391 318.80000 1462.66528 115.81391 110 8 1 - 117.10947 321.60000 1479.02750 117.10947 110 0 1 + 117.10947 321.60000 1479.02750 117.10947 110 8 1 118.40503 324.40000 1495.38971 118.40503 110 8 1 - 119.70059 327.20000 1511.75193 119.70059 110 0 1 + 119.70059 327.20000 1511.75193 119.70059 110 8 1 120.99615 330.00000 1528.11415 120.99615 110 8 1 - 120.99615 330.00000 1527.89817 120.99615 110 0 1 - 122.29171 332.80000 1544.25807 122.29171 110 0 1 - 123.58727 335.60000 1560.61798 123.58727 110 0 1 - 124.88284 338.40000 1576.97788 124.88284 110 0 1 - 126.17840 341.20000 1593.33778 126.17840 110 0 1 + 120.99615 330.00000 1527.89817 120.99615 110 8 1 + 122.29171 332.80000 1544.25807 122.29171 110 8 1 + 123.58727 335.60000 1560.61798 123.58727 110 8 1 + 124.88284 338.40000 1576.97788 124.88284 110 8 1 + 126.17840 341.20000 1593.33778 126.17840 110 8 1 127.47396 344.00000 1609.69769 127.47396 110 8 1 - 170.07071 344.00000 948.32847 170.07071 110 0 1 + 170.07071 344.00000 948.32847 170.07071 110 18 1 170.99669 346.00000 953.49178 170.99669 110 18 1 171.92266 348.00000 958.65509 171.92266 110 18 1 172.84864 350.00000 963.81841 172.84864 110 18 1 - 173.77461 352.00000 968.98172 173.77461 110 0 1 + 173.77461 352.00000 968.98172 173.77461 110 18 1 174.70059 354.00000 974.14503 174.70059 110 18 1 - 130.94421 354.00000 1653.72148 130.94421 110 0 1 + 130.94421 354.00000 1653.72148 130.94421 110 8 1 131.86961 356.00000 1665.40856 131.86961 110 8 1 132.79501 358.00000 1677.09564 132.79501 110 8 1 133.72041 360.00000 1688.78272 133.72041 110 8 1 - 134.64581 362.00000 1700.46979 134.64581 110 0 1 + 134.64581 362.00000 1700.46979 134.64581 110 8 1 135.57121 364.00000 1712.15687 135.57121 110 8 1 [END OF DATA] [END OF TABLE] @@ -5811,7 +5945,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=3 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -6416,7 +6550,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 330 99 3 + 0.00001 0.00000 0.00001 0.00000 330 100 3 12.29281 0.00000 12.70805 2.74824 330 97 3 21.42373 0.00000 25.42190 5.49773 330 84 3 30.56260 0.00000 38.14723 8.24971 330 80 3 @@ -6461,47 +6595,47 @@ Status character 314.28369 70.00000 2406.92138 264.83171 110 13 1 223.49498 97.80000 1585.65340 174.46823 110 14 1 132.69223 125.60000 764.35498 84.10139 110 17 1 - 0.00003 153.40000 0.00003 0.00000 402 100 P - 0.00003 181.20000 0.00003 0.00000 402 100 P - 0.00003 209.00000 0.00003 0.00000 402 100 P - 0.00000 209.00000 0.00000 0.00000 402 0 P - 0.00000 211.00000 0.00000 0.00000 402 0 P - 0.00000 213.00000 0.00000 0.00000 402 0 P - 0.00000 215.00000 0.00000 0.00000 402 0 P - 0.00000 217.00000 0.00000 0.00000 402 0 P - 0.00000 219.00000 0.00000 0.00000 402 0 P - 0.00000 219.00000 0.00000 0.00000 402 0 P - 0.00000 221.00000 0.00000 0.00000 402 0 P - 0.00000 223.00000 0.00000 0.00000 402 0 P - 0.00000 225.00000 0.00000 0.00000 402 0 P - 0.00000 227.00000 0.00000 0.00000 402 0 P - 0.00000 229.00000 0.00000 0.00000 402 0 P - 0.00000 229.00000 0.00000 0.00000 402 0 P - 0.00000 231.00000 0.00000 0.00000 402 0 P - 0.00000 233.00000 0.00000 0.00000 402 0 P - 0.00000 235.00000 0.00000 0.00000 402 0 P - 0.00000 237.00000 0.00000 0.00000 402 0 P - 0.00000 239.00000 0.00000 0.00000 402 0 P - 0.00000 239.00000 0.00000 0.00000 402 0 P - 0.00000 239.90000 0.00000 0.00000 402 0 P - 0.00000 240.80000 0.00000 0.00000 402 0 P - 0.00000 241.70000 0.00000 0.00000 402 0 P - 0.00000 242.60000 0.00000 0.00000 402 0 P - 0.00000 243.50000 0.00000 0.00000 402 0 P - 0.00000 243.50000 0.00000 0.00000 402 0 P - 0.00000 246.50000 0.00000 0.00000 402 0 P - 0.00000 249.50000 0.00000 0.00000 402 0 P - 0.00000 252.50000 0.00000 0.00000 402 0 P - 0.00000 255.50000 0.00000 0.00000 402 0 P - 0.00000 258.50000 0.00000 0.00000 402 0 P - 0.00000 258.50000 0.00000 0.00000 402 0 P - 0.00000 259.10000 0.00000 0.00000 402 0 P - 0.00000 259.70000 0.00000 0.00000 402 0 P - 0.00000 260.30000 0.00000 0.00000 402 0 P - 0.00000 260.90000 0.00000 0.00000 402 0 P - 0.00000 261.50000 0.00000 0.00000 402 0 P - 0.00003 261.50000 0.00003 0.00001 402 100 P - 22.55451 264.00000 22.55451 5.82572 402 100 P + 0.00003 153.40000 0.00003 0.00000 330 100 3 + 0.00003 181.20000 0.00003 0.00000 330 100 3 + 0.00003 209.00000 0.00003 0.00000 330 100 3 + 0.00000 209.00000 0.00000 0.00000 1 0 A + 0.00000 211.00000 0.00000 0.00000 1 0 A + 0.00000 213.00000 0.00000 0.00000 1 0 A + 0.00000 215.00000 0.00000 0.00000 1 0 A + 0.00000 217.00000 0.00000 0.00000 1 0 A + 0.00000 219.00000 0.00000 0.00000 1 0 A + 0.00000 219.00000 0.00000 0.00000 1 0 A + 0.00000 221.00000 0.00000 0.00000 1 0 A + 0.00000 223.00000 0.00000 0.00000 1 0 A + 0.00000 225.00000 0.00000 0.00000 1 0 A + 0.00000 227.00000 0.00000 0.00000 1 0 A + 0.00000 229.00000 0.00000 0.00000 1 0 A + 0.00000 229.00000 0.00000 0.00000 1 0 A + 0.00000 231.00000 0.00000 0.00000 1 0 A + 0.00000 233.00000 0.00000 0.00000 1 0 A + 0.00000 235.00000 0.00000 0.00000 1 0 A + 0.00000 237.00000 0.00000 0.00000 1 0 A + 0.00000 239.00000 0.00000 0.00000 1 0 A + 0.00000 239.00000 0.00000 0.00000 1 0 A + 0.00000 239.90000 0.00000 0.00000 1 0 A + 0.00000 240.80000 0.00000 0.00000 1 0 A + 0.00000 241.70000 0.00000 0.00000 1 0 A + 0.00000 242.60000 0.00000 0.00000 1 0 A + 0.00000 243.50000 0.00000 0.00000 1 0 A + 0.00000 243.50000 0.00000 0.00000 1 0 A + 0.00000 246.50000 0.00000 0.00000 1 0 A + 0.00000 249.50000 0.00000 0.00000 1 0 A + 0.00000 252.50000 0.00000 0.00000 1 0 A + 0.00000 255.50000 0.00000 0.00000 1 0 A + 0.00000 258.50000 0.00000 0.00000 1 0 A + 0.00000 258.50000 0.00000 0.00000 1 0 A + 0.00000 259.10000 0.00000 0.00000 1 0 A + 0.00000 259.70000 0.00000 0.00000 1 0 A + 0.00000 260.30000 0.00000 0.00000 1 0 A + 0.00000 260.90000 0.00000 0.00000 1 0 A + 0.00000 261.50000 0.00000 0.00000 1 0 A + 0.00003 261.50000 0.00003 0.00001 330 100 3 + 22.55451 264.00000 22.55451 5.82572 330 100 3 78.57115 266.50000 104.55884 27.00704 220 75 2 112.87050 269.00000 186.42566 48.15285 220 61 2 147.11993 271.50000 268.15664 69.26356 220 55 2 @@ -6877,7 +7011,7 @@ Status character 0.00000 20.00000 0.00000 0.00000 -1 0 - 0.00000 22.50000 0.00000 0.00000 -1 0 - 0.00000 25.00000 0.00000 0.00000 -1 0 - - 0.00001 25.00000 0.00001 0.00000 330 99 3 + 0.00001 25.00000 0.00001 0.00000 330 100 3 2.87394 26.00000 5.73536 1.76559 220 50 2 4.42333 27.00000 11.47278 3.53181 110 39 1 5.92640 28.00000 17.21430 5.29929 110 34 1 @@ -6902,26 +7036,26 @@ Status character 31.30372 51.20000 159.70599 43.88673 110 0 1 33.19743 53.00000 171.36395 47.09030 110 0 1 31.34185 53.00000 200.34947 45.23472 110 0 1 - 7.92373 53.40000 203.39478 45.92229 110 0 1 - 8.04260 53.80000 206.44605 46.61120 110 0 1 - 8.16170 54.20000 209.50324 47.30145 110 0 1 - 8.28103 54.60000 212.56633 47.99303 110 0 1 - 8.40059 55.00000 215.63531 48.68594 110 0 1 - 8.33361 55.00000 257.25521 47.35168 110 0 1 - 8.63111 56.00000 266.43895 49.04209 110 0 1 - 8.93001 57.00000 275.66570 50.74041 110 0 1 - 9.23027 58.00000 284.93475 52.44652 110 0 1 - 9.53188 59.00000 294.24531 54.16026 110 0 1 - 9.83481 60.00000 303.59652 55.88150 110 0 1 - 9.77668 60.00000 274.43189 61.62255 110 0 1 - 9.99271 61.50000 280.49589 62.98420 110 0 1 + 7.92373 53.40000 203.39478 45.92229 1 0 A + 8.04260 53.80000 206.44605 46.61120 1 0 A + 8.16170 54.20000 209.50324 47.30145 1 0 A + 8.28103 54.60000 212.56633 47.99303 1 0 A + 8.40059 55.00000 215.63531 48.68594 1 0 A + 8.33361 55.00000 257.25521 47.35168 1 0 A + 8.63111 56.00000 266.43895 49.04209 1 0 A + 8.93001 57.00000 275.66570 50.74041 1 0 A + 9.23027 58.00000 284.93475 52.44652 1 0 A + 9.53188 59.00000 294.24531 54.16026 1 0 A + 9.83481 60.00000 303.59652 55.88150 1 0 A + 9.77668 60.00000 274.43189 61.62255 1 0 A + 9.99271 61.50000 280.49589 62.98420 1 0 A 10.31556 63.00000 286.63748 64.36327 110 0 1 11.78393 64.50000 292.85328 65.75900 110 0 1 13.27191 66.00000 299.13968 67.17058 110 0 1 14.77909 67.50000 305.49290 68.59717 110 0 1 - 52.26183 67.50000 623.79005 67.87991 110 0 1 - 53.35947 69.00000 636.89126 69.30556 110 0 1 - 54.46718 70.50000 650.11280 70.74431 110 0 1 + 52.26183 67.50000 623.79005 67.87991 1 0 A + 53.35947 69.00000 636.89126 69.30556 1 0 A + 54.46718 70.50000 650.11280 70.74431 1 0 A 55.58429 72.00000 663.44644 72.19526 1 0 A 56.71009 73.50000 676.88388 73.65750 1 0 A 57.84390 75.00000 690.41688 75.13014 1 0 A @@ -12373,43 +12507,43 @@ Status character 0.00000 0.00000 0.00001 0.00000 110 9 1 1.16667 2.33333 13.38671 1.16667 110 9 1 2.33333 4.66667 26.77341 2.33333 110 9 1 - 3.50000 7.00000 40.16012 3.50000 110 0 1 + 3.50000 7.00000 40.16012 3.50000 110 9 1 4.66667 9.33333 53.54682 4.66667 110 9 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 7.00000 14.00000 80.32024 7.00000 110 0 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 7.00000 14.00000 80.32024 7.00000 110 9 1 8.16667 16.33333 93.70694 8.16667 110 9 1 9.33333 18.66667 107.09365 9.33333 110 9 1 10.50000 21.00000 120.48035 10.50000 110 9 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 12.83333 25.66667 147.25376 12.83333 110 0 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 12.83333 25.66667 147.25376 12.83333 110 9 1 14.00000 28.00000 160.64047 14.00000 110 9 1 - 15.16667 30.33333 174.02718 15.16667 110 0 1 + 15.16667 30.33333 174.02718 15.16667 110 9 1 16.33333 32.66667 187.41388 16.33333 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 18.00000 36.00000 206.53775 18.00000 110 9 1 18.50000 37.00000 212.27491 18.50000 110 9 1 19.00000 38.00000 218.01207 19.00000 110 9 1 - 19.50000 39.00000 223.74923 19.50000 110 0 1 + 19.50000 39.00000 223.74923 19.50000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 21.25000 42.50000 243.82928 21.25000 110 9 1 - 22.50000 45.00000 258.17218 22.50000 110 0 1 + 22.50000 45.00000 258.17218 22.50000 110 9 1 23.75000 47.50000 272.51508 23.75000 110 9 1 25.00000 50.00000 286.85798 25.00000 110 9 1 - 26.25000 52.50000 301.20088 26.25000 110 0 1 26.25000 52.50000 301.20088 26.25000 110 9 1 - 27.50000 55.00000 315.54378 27.50000 110 0 1 + 26.25000 52.50000 301.20088 26.25000 110 9 1 + 27.50000 55.00000 315.54378 27.50000 110 9 1 28.75000 57.50000 329.88668 28.75000 110 9 1 - 30.00000 60.00000 344.22958 30.00000 110 0 1 - 31.25000 62.50000 358.57248 31.25000 110 0 1 + 30.00000 60.00000 344.22958 30.00000 110 9 1 + 31.25000 62.50000 358.57248 31.25000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 - 33.00000 66.00000 378.65254 33.00000 110 0 1 + 33.00000 66.00000 378.65254 33.00000 110 9 1 33.50000 67.00000 384.38970 33.50000 110 9 1 - 34.00000 68.00000 390.12686 34.00000 110 0 1 + 34.00000 68.00000 390.12686 34.00000 110 9 1 34.50000 69.00000 395.86402 34.50000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 @@ -12418,28 +12552,28 @@ Status character 36.50000 73.00000 418.81265 36.50000 110 9 1 37.00000 74.00000 424.54981 37.00000 110 9 1 37.50000 75.00000 430.28697 37.50000 110 9 1 - 37.50000 75.00000 430.28697 37.50000 110 0 1 - 38.40000 76.80000 440.61386 38.40000 110 0 1 + 37.50000 75.00000 430.28697 37.50000 110 9 1 + 38.40000 76.80000 440.61386 38.40000 110 9 1 39.30000 78.60000 450.94075 39.30000 110 9 1 40.20000 80.40000 461.26764 40.20000 110 9 1 - 41.10000 82.20000 471.59452 41.10000 110 0 1 - 42.00000 84.00000 481.92141 42.00000 110 0 1 + 41.10000 82.20000 471.59452 41.10000 110 9 1 42.00000 84.00000 481.92141 42.00000 110 9 1 - 42.90000 85.80000 492.24830 42.90000 110 0 1 - 43.80000 87.60000 502.57519 43.80000 110 0 1 + 42.00000 84.00000 481.92141 42.00000 110 9 1 + 42.90000 85.80000 492.24830 42.90000 110 9 1 + 43.80000 87.60000 502.57519 43.80000 110 9 1 44.70000 89.40000 512.90207 44.70000 110 9 1 45.60000 91.20000 523.22896 45.60000 110 9 1 - 46.50000 93.00000 533.55585 46.50000 110 0 1 46.50000 93.00000 533.55585 46.50000 110 9 1 - 46.70000 93.40000 535.85071 46.70000 110 0 1 - 46.90000 93.80000 538.14557 46.90000 110 0 1 - 47.10000 94.20000 540.44044 47.10000 110 0 1 + 46.50000 93.00000 533.55585 46.50000 110 9 1 + 46.70000 93.40000 535.85071 46.70000 110 9 1 + 46.90000 93.80000 538.14557 46.90000 110 9 1 + 47.10000 94.20000 540.44044 47.10000 110 9 1 47.30000 94.60000 542.73530 47.30000 110 9 1 - 47.50000 95.00000 545.03017 47.50000 110 0 1 47.50000 95.00000 545.03017 47.50000 110 9 1 - 48.00000 96.00000 550.76733 48.00000 110 0 1 - 48.50000 97.00000 556.50449 48.50000 110 0 1 - 49.00000 98.00000 562.24165 49.00000 110 0 1 + 47.50000 95.00000 545.03017 47.50000 110 9 1 + 48.00000 96.00000 550.76733 48.00000 110 9 1 + 48.50000 97.00000 556.50449 48.50000 110 9 1 + 49.00000 98.00000 562.24165 49.00000 110 9 1 49.50000 99.00000 567.97881 49.50000 110 9 1 50.00000 100.00000 573.71596 50.00000 110 9 1 69.09830 100.00000 285.40450 69.09830 110 24 1 @@ -12461,19 +12595,19 @@ Status character 74.34977 119.00000 303.52885 74.34977 110 24 1 74.62616 120.00000 304.65721 74.62616 110 24 1 60.65592 120.00000 461.49354 60.65592 110 13 1 - 61.82410 122.60000 470.38156 61.82410 110 0 1 - 62.99229 125.20000 479.26958 62.99229 110 0 1 + 61.82410 122.60000 470.38156 61.82410 110 13 1 + 62.99229 125.20000 479.26958 62.99229 110 13 1 64.16048 127.80000 488.15761 64.16048 110 13 1 - 65.32867 130.40000 497.04563 65.32867 110 0 1 + 65.32867 130.40000 497.04563 65.32867 110 13 1 66.49686 133.00000 505.93365 66.49686 110 13 1 66.49686 133.00000 504.73184 66.49686 110 13 1 67.66504 135.60000 513.59875 67.66504 110 13 1 68.83323 138.20000 522.46566 68.83323 110 13 1 70.00142 140.80000 531.33257 70.00142 110 13 1 - 71.16961 143.40000 540.19948 71.16961 110 0 1 + 71.16961 143.40000 540.19948 71.16961 110 13 1 72.33780 146.00000 549.06639 72.33780 110 13 1 72.33780 146.00000 548.05027 72.33780 110 13 1 - 73.50598 148.60000 556.90077 73.50598 110 0 1 + 73.50598 148.60000 556.90077 73.50598 110 13 1 74.67417 151.20000 565.75127 74.67417 110 13 1 75.84236 153.80000 574.60177 75.84236 110 13 1 77.01055 156.40000 583.45228 77.01055 110 13 1 @@ -12481,104 +12615,104 @@ Status character 78.17874 159.00000 591.43253 78.17874 110 13 1 79.34692 161.60000 600.27003 79.34692 110 13 1 80.51511 164.20000 609.10753 80.51511 110 13 1 - 81.68330 166.80000 617.94503 81.68330 110 0 1 + 81.68330 166.80000 617.94503 81.68330 110 13 1 82.85149 169.40000 626.78252 82.85149 110 13 1 84.01968 172.00000 635.62002 84.01968 110 13 1 - 84.01968 172.00000 634.86569 84.01968 110 0 1 + 84.01968 172.00000 634.86569 84.01968 110 13 1 85.18786 174.60000 643.69270 85.18786 110 13 1 86.35605 177.20000 652.51971 86.35605 110 13 1 - 87.52424 179.80000 661.34672 87.52424 110 0 1 + 87.52424 179.80000 661.34672 87.52424 110 13 1 88.69243 182.40000 670.17373 88.69243 110 13 1 - 89.86062 185.00000 679.00074 89.86062 110 0 1 - 98.77065 185.00000 559.56826 98.77065 110 0 1 + 89.86062 185.00000 679.00074 89.86062 110 13 1 + 98.77065 185.00000 559.56826 98.77065 110 18 1 97.78294 189.80000 553.97258 97.78294 110 18 1 96.79524 194.60000 548.37690 96.79524 110 18 1 95.80753 199.40000 542.78121 95.80753 110 18 1 94.81982 204.20000 537.18553 94.81982 110 18 1 - 93.83212 209.00000 531.58985 93.83212 110 0 1 - 85.36759 209.00000 644.40861 85.36759 110 0 1 - 86.26619 211.00000 651.19185 86.26619 110 0 1 + 93.83212 209.00000 531.58985 93.83212 110 18 1 + 85.36759 209.00000 644.40861 85.36759 110 13 1 + 86.26619 211.00000 651.19185 86.26619 110 13 1 87.16480 213.00000 657.97510 87.16480 110 13 1 88.06340 215.00000 664.75835 88.06340 110 13 1 88.96201 217.00000 671.54160 88.96201 110 13 1 - 89.86062 219.00000 678.32485 89.86062 110 0 1 + 89.86062 219.00000 678.32485 89.86062 110 13 1 89.86062 219.00000 677.92389 89.86062 110 13 1 90.75922 221.00000 684.70313 90.75922 110 13 1 91.65783 223.00000 691.48237 91.65783 110 13 1 - 92.55644 225.00000 698.26161 92.55644 110 0 1 - 93.45504 227.00000 705.04085 93.45504 110 0 1 - 94.35365 229.00000 711.82009 94.35365 110 0 1 + 92.55644 225.00000 698.26161 92.55644 110 13 1 + 93.45504 227.00000 705.04085 93.45504 110 13 1 + 94.35365 229.00000 711.82009 94.35365 110 13 1 103.70918 229.00000 583.81484 103.70918 110 18 1 104.44996 231.00000 587.98495 104.44996 110 18 1 - 105.19074 233.00000 592.15505 105.19074 110 0 1 + 105.19074 233.00000 592.15505 105.19074 110 18 1 105.93152 235.00000 596.32516 105.93152 110 18 1 106.67230 237.00000 600.49526 106.67230 110 18 1 107.41308 239.00000 604.66537 107.41308 110 18 1 80.50987 239.00000 1019.73819 80.50987 110 8 1 80.88466 239.90000 1024.48525 80.88466 110 8 1 - 81.25944 240.80000 1029.23230 81.25944 110 0 1 + 81.25944 240.80000 1029.23230 81.25944 110 8 1 81.63423 241.70000 1033.97936 81.63423 110 8 1 82.00902 242.60000 1038.72642 82.00902 110 8 1 - 82.38380 243.50000 1043.47347 82.38380 110 0 1 + 82.38380 243.50000 1043.47347 82.38380 110 8 1 82.38380 243.50000 1042.69337 82.38380 110 8 1 - 83.63310 246.50000 1058.50506 83.63310 110 0 1 + 83.63310 246.50000 1058.50506 83.63310 110 8 1 84.88239 249.50000 1074.31676 84.88239 110 8 1 86.13168 252.50000 1090.12845 86.13168 110 8 1 - 87.38097 255.50000 1105.94015 87.38097 110 0 1 + 87.38097 255.50000 1105.94015 87.38097 110 8 1 88.63026 258.50000 1121.75184 88.63026 110 8 1 88.63026 258.50000 1121.14810 88.63026 110 8 1 88.88012 259.10000 1124.30874 88.88012 110 8 1 89.12998 259.70000 1127.46937 89.12998 110 8 1 89.37983 260.30000 1130.63001 89.37983 110 8 1 89.62969 260.90000 1133.79065 89.62969 110 8 1 - 89.87955 261.50000 1136.95128 89.87955 110 0 1 - 89.87955 261.50000 1136.55186 89.87955 110 0 1 + 89.87955 261.50000 1136.95128 89.87955 110 8 1 + 89.87955 261.50000 1136.55186 89.87955 110 8 1 90.92063 264.00000 1149.71656 90.92063 110 8 1 91.96170 266.50000 1162.88125 91.96170 110 8 1 - 93.00278 269.00000 1176.04594 93.00278 110 0 1 + 93.00278 269.00000 1176.04594 93.00278 110 8 1 94.04385 271.50000 1189.21064 94.04385 110 8 1 - 95.08493 274.00000 1202.37533 95.08493 110 0 1 + 95.08493 274.00000 1202.37533 95.08493 110 8 1 95.08493 274.00000 1201.81956 95.08493 110 8 1 - 96.38049 276.80000 1218.19472 96.38049 110 0 1 + 96.38049 276.80000 1218.19472 96.38049 110 8 1 97.67605 279.60000 1234.56988 97.67605 110 8 1 - 98.97161 282.40000 1250.94503 98.97161 110 0 1 - 100.26717 285.20000 1267.32019 100.26717 110 0 1 + 98.97161 282.40000 1250.94503 98.97161 110 8 1 + 100.26717 285.20000 1267.32019 100.26717 110 8 1 101.56274 288.00000 1283.69535 101.56274 110 8 1 - 101.56274 288.00000 1283.24671 101.56274 110 0 1 - 102.85830 290.80000 1299.61615 102.85830 110 0 1 + 101.56274 288.00000 1283.24671 101.56274 110 8 1 + 102.85830 290.80000 1299.61615 102.85830 110 8 1 104.15386 293.60000 1315.98558 104.15386 110 8 1 - 105.44942 296.40000 1332.35502 105.44942 110 0 1 - 106.74498 299.20000 1348.72445 106.74498 110 0 1 + 105.44942 296.40000 1332.35502 105.44942 110 8 1 + 106.74498 299.20000 1348.72445 106.74498 110 8 1 108.04054 302.00000 1365.09389 108.04054 110 8 1 108.04054 302.00000 1364.74795 108.04054 110 8 1 109.33610 304.80000 1381.11324 109.33610 110 8 1 - 110.63166 307.60000 1397.47852 110.63166 110 0 1 - 111.92722 310.40000 1413.84381 111.92722 110 0 1 + 110.63166 307.60000 1397.47852 110.63166 110 8 1 + 111.92722 310.40000 1413.84381 111.92722 110 8 1 113.22279 313.20000 1430.20910 113.22279 110 8 1 114.51835 316.00000 1446.57438 114.51835 110 8 1 114.51835 316.00000 1446.30306 114.51835 110 8 1 115.81391 318.80000 1462.66528 115.81391 110 8 1 - 117.10947 321.60000 1479.02750 117.10947 110 0 1 + 117.10947 321.60000 1479.02750 117.10947 110 8 1 118.40503 324.40000 1495.38971 118.40503 110 8 1 - 119.70059 327.20000 1511.75193 119.70059 110 0 1 + 119.70059 327.20000 1511.75193 119.70059 110 8 1 120.99615 330.00000 1528.11415 120.99615 110 8 1 - 120.99615 330.00000 1527.89817 120.99615 110 0 1 - 122.29171 332.80000 1544.25807 122.29171 110 0 1 - 123.58727 335.60000 1560.61798 123.58727 110 0 1 - 124.88284 338.40000 1576.97788 124.88284 110 0 1 - 126.17840 341.20000 1593.33778 126.17840 110 0 1 + 120.99615 330.00000 1527.89817 120.99615 110 8 1 + 122.29171 332.80000 1544.25807 122.29171 110 8 1 + 123.58727 335.60000 1560.61798 123.58727 110 8 1 + 124.88284 338.40000 1576.97788 124.88284 110 8 1 + 126.17840 341.20000 1593.33778 126.17840 110 8 1 127.47396 344.00000 1609.69769 127.47396 110 8 1 - 170.07071 344.00000 948.32847 170.07071 110 0 1 + 170.07071 344.00000 948.32847 170.07071 110 18 1 170.99669 346.00000 953.49178 170.99669 110 18 1 171.92266 348.00000 958.65509 171.92266 110 18 1 172.84864 350.00000 963.81841 172.84864 110 18 1 - 173.77461 352.00000 968.98172 173.77461 110 0 1 + 173.77461 352.00000 968.98172 173.77461 110 18 1 174.70059 354.00000 974.14503 174.70059 110 18 1 - 130.94421 354.00000 1653.72148 130.94421 110 0 1 + 130.94421 354.00000 1653.72148 130.94421 110 8 1 131.86961 356.00000 1665.40856 131.86961 110 8 1 132.79501 358.00000 1677.09564 132.79501 110 8 1 133.72041 360.00000 1688.78272 133.72041 110 8 1 - 134.64581 362.00000 1700.46979 134.64581 110 0 1 + 134.64581 362.00000 1700.46979 134.64581 110 8 1 135.57121 364.00000 1712.15687 135.57121 110 8 1 [END OF DATA] [END OF TABLE] @@ -12885,43 +13019,43 @@ Status character 0.00000 0.00000 0.00001 0.00000 110 9 1 1.16667 2.33333 13.38671 1.16667 110 9 1 2.33333 4.66667 26.77341 2.33333 110 9 1 - 3.50000 7.00000 40.16012 3.50000 110 0 1 + 3.50000 7.00000 40.16012 3.50000 110 9 1 4.66667 9.33333 53.54682 4.66667 110 9 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 5.83333 11.66667 66.93353 5.83333 110 0 1 - 7.00000 14.00000 80.32024 7.00000 110 0 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 5.83333 11.66667 66.93353 5.83333 110 9 1 + 7.00000 14.00000 80.32024 7.00000 110 9 1 8.16667 16.33333 93.70694 8.16667 110 9 1 9.33333 18.66667 107.09365 9.33333 110 9 1 10.50000 21.00000 120.48035 10.50000 110 9 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 11.66667 23.33333 133.86706 11.66667 110 0 1 - 12.83333 25.66667 147.25376 12.83333 110 0 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 11.66667 23.33333 133.86706 11.66667 110 9 1 + 12.83333 25.66667 147.25376 12.83333 110 9 1 14.00000 28.00000 160.64047 14.00000 110 9 1 - 15.16667 30.33333 174.02718 15.16667 110 0 1 + 15.16667 30.33333 174.02718 15.16667 110 9 1 16.33333 32.66667 187.41388 16.33333 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 17.50000 35.00000 200.80059 17.50000 110 9 1 18.00000 36.00000 206.53775 18.00000 110 9 1 18.50000 37.00000 212.27491 18.50000 110 9 1 19.00000 38.00000 218.01207 19.00000 110 9 1 - 19.50000 39.00000 223.74923 19.50000 110 0 1 + 19.50000 39.00000 223.74923 19.50000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 20.00000 40.00000 229.48639 20.00000 110 9 1 21.25000 42.50000 243.82928 21.25000 110 9 1 - 22.50000 45.00000 258.17218 22.50000 110 0 1 + 22.50000 45.00000 258.17218 22.50000 110 9 1 23.75000 47.50000 272.51508 23.75000 110 9 1 25.00000 50.00000 286.85798 25.00000 110 9 1 - 26.25000 52.50000 301.20088 26.25000 110 0 1 26.25000 52.50000 301.20088 26.25000 110 9 1 - 27.50000 55.00000 315.54378 27.50000 110 0 1 + 26.25000 52.50000 301.20088 26.25000 110 9 1 + 27.50000 55.00000 315.54378 27.50000 110 9 1 28.75000 57.50000 329.88668 28.75000 110 9 1 - 30.00000 60.00000 344.22958 30.00000 110 0 1 - 31.25000 62.50000 358.57248 31.25000 110 0 1 + 30.00000 60.00000 344.22958 30.00000 110 9 1 + 31.25000 62.50000 358.57248 31.25000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 32.50000 65.00000 372.91538 32.50000 110 9 1 - 33.00000 66.00000 378.65254 33.00000 110 0 1 + 33.00000 66.00000 378.65254 33.00000 110 9 1 33.50000 67.00000 384.38970 33.50000 110 9 1 - 34.00000 68.00000 390.12686 34.00000 110 0 1 + 34.00000 68.00000 390.12686 34.00000 110 9 1 34.50000 69.00000 395.86402 34.50000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 35.00000 70.00000 401.60118 35.00000 110 9 1 @@ -12930,28 +13064,28 @@ Status character 36.50000 73.00000 418.81265 36.50000 110 9 1 37.00000 74.00000 424.54981 37.00000 110 9 1 37.50000 75.00000 430.28697 37.50000 110 9 1 - 37.50000 75.00000 430.28697 37.50000 110 0 1 - 38.40000 76.80000 440.61386 38.40000 110 0 1 + 37.50000 75.00000 430.28697 37.50000 110 9 1 + 38.40000 76.80000 440.61386 38.40000 110 9 1 39.30000 78.60000 450.94075 39.30000 110 9 1 40.20000 80.40000 461.26764 40.20000 110 9 1 - 41.10000 82.20000 471.59452 41.10000 110 0 1 - 42.00000 84.00000 481.92141 42.00000 110 0 1 + 41.10000 82.20000 471.59452 41.10000 110 9 1 42.00000 84.00000 481.92141 42.00000 110 9 1 - 42.90000 85.80000 492.24830 42.90000 110 0 1 - 43.80000 87.60000 502.57519 43.80000 110 0 1 + 42.00000 84.00000 481.92141 42.00000 110 9 1 + 42.90000 85.80000 492.24830 42.90000 110 9 1 + 43.80000 87.60000 502.57519 43.80000 110 9 1 44.70000 89.40000 512.90207 44.70000 110 9 1 45.60000 91.20000 523.22896 45.60000 110 9 1 - 46.50000 93.00000 533.55585 46.50000 110 0 1 46.50000 93.00000 533.55585 46.50000 110 9 1 - 46.70000 93.40000 535.85071 46.70000 110 0 1 - 46.90000 93.80000 538.14557 46.90000 110 0 1 - 47.10000 94.20000 540.44044 47.10000 110 0 1 + 46.50000 93.00000 533.55585 46.50000 110 9 1 + 46.70000 93.40000 535.85071 46.70000 110 9 1 + 46.90000 93.80000 538.14557 46.90000 110 9 1 + 47.10000 94.20000 540.44044 47.10000 110 9 1 47.30000 94.60000 542.73530 47.30000 110 9 1 - 47.50000 95.00000 545.03017 47.50000 110 0 1 47.50000 95.00000 545.03017 47.50000 110 9 1 - 48.00000 96.00000 550.76733 48.00000 110 0 1 - 48.50000 97.00000 556.50449 48.50000 110 0 1 - 49.00000 98.00000 562.24165 49.00000 110 0 1 + 47.50000 95.00000 545.03017 47.50000 110 9 1 + 48.00000 96.00000 550.76733 48.00000 110 9 1 + 48.50000 97.00000 556.50449 48.50000 110 9 1 + 49.00000 98.00000 562.24165 49.00000 110 9 1 49.50000 99.00000 567.97881 49.50000 110 9 1 50.00000 100.00000 573.71596 50.00000 110 9 1 69.09830 100.00000 285.40450 69.09830 110 24 1 @@ -12973,19 +13107,19 @@ Status character 74.34977 119.00000 303.52885 74.34977 110 24 1 74.62616 120.00000 304.65721 74.62616 110 24 1 60.65592 120.00000 461.49354 60.65592 110 13 1 - 61.82410 122.60000 470.38156 61.82410 110 0 1 - 62.99229 125.20000 479.26958 62.99229 110 0 1 + 61.82410 122.60000 470.38156 61.82410 110 13 1 + 62.99229 125.20000 479.26958 62.99229 110 13 1 64.16048 127.80000 488.15761 64.16048 110 13 1 - 65.32867 130.40000 497.04563 65.32867 110 0 1 + 65.32867 130.40000 497.04563 65.32867 110 13 1 66.49686 133.00000 505.93365 66.49686 110 13 1 66.49686 133.00000 504.73184 66.49686 110 13 1 67.66504 135.60000 513.59875 67.66504 110 13 1 68.83323 138.20000 522.46566 68.83323 110 13 1 70.00142 140.80000 531.33257 70.00142 110 13 1 - 71.16961 143.40000 540.19948 71.16961 110 0 1 + 71.16961 143.40000 540.19948 71.16961 110 13 1 72.33780 146.00000 549.06639 72.33780 110 13 1 72.33780 146.00000 548.05027 72.33780 110 13 1 - 73.50598 148.60000 556.90077 73.50598 110 0 1 + 73.50598 148.60000 556.90077 73.50598 110 13 1 74.67417 151.20000 565.75127 74.67417 110 13 1 75.84236 153.80000 574.60177 75.84236 110 13 1 77.01055 156.40000 583.45228 77.01055 110 13 1 @@ -12993,104 +13127,104 @@ Status character 78.17874 159.00000 591.43253 78.17874 110 13 1 79.34692 161.60000 600.27003 79.34692 110 13 1 80.51511 164.20000 609.10753 80.51511 110 13 1 - 81.68330 166.80000 617.94503 81.68330 110 0 1 + 81.68330 166.80000 617.94503 81.68330 110 13 1 82.85149 169.40000 626.78252 82.85149 110 13 1 84.01968 172.00000 635.62002 84.01968 110 13 1 - 84.01968 172.00000 634.86569 84.01968 110 0 1 + 84.01968 172.00000 634.86569 84.01968 110 13 1 85.18786 174.60000 643.69270 85.18786 110 13 1 86.35605 177.20000 652.51971 86.35605 110 13 1 - 87.52424 179.80000 661.34672 87.52424 110 0 1 + 87.52424 179.80000 661.34672 87.52424 110 13 1 88.69243 182.40000 670.17373 88.69243 110 13 1 - 89.86062 185.00000 679.00074 89.86062 110 0 1 - 98.77065 185.00000 559.56826 98.77065 110 0 1 + 89.86062 185.00000 679.00074 89.86062 110 13 1 + 98.77065 185.00000 559.56826 98.77065 110 18 1 97.78294 189.80000 553.97258 97.78294 110 18 1 96.79524 194.60000 548.37690 96.79524 110 18 1 95.80753 199.40000 542.78121 95.80753 110 18 1 94.81982 204.20000 537.18553 94.81982 110 18 1 - 93.83212 209.00000 531.58985 93.83212 110 0 1 - 85.36759 209.00000 644.40861 85.36759 110 0 1 - 86.26619 211.00000 651.19185 86.26619 110 0 1 + 93.83212 209.00000 531.58985 93.83212 110 18 1 + 85.36759 209.00000 644.40861 85.36759 110 13 1 + 86.26619 211.00000 651.19185 86.26619 110 13 1 87.16480 213.00000 657.97510 87.16480 110 13 1 88.06340 215.00000 664.75835 88.06340 110 13 1 88.96201 217.00000 671.54160 88.96201 110 13 1 - 89.86062 219.00000 678.32485 89.86062 110 0 1 + 89.86062 219.00000 678.32485 89.86062 110 13 1 89.86062 219.00000 677.92389 89.86062 110 13 1 90.75922 221.00000 684.70313 90.75922 110 13 1 91.65783 223.00000 691.48237 91.65783 110 13 1 - 92.55644 225.00000 698.26161 92.55644 110 0 1 - 93.45504 227.00000 705.04085 93.45504 110 0 1 - 94.35365 229.00000 711.82009 94.35365 110 0 1 + 92.55644 225.00000 698.26161 92.55644 110 13 1 + 93.45504 227.00000 705.04085 93.45504 110 13 1 + 94.35365 229.00000 711.82009 94.35365 110 13 1 103.70918 229.00000 583.81484 103.70918 110 18 1 104.44996 231.00000 587.98495 104.44996 110 18 1 - 105.19074 233.00000 592.15505 105.19074 110 0 1 + 105.19074 233.00000 592.15505 105.19074 110 18 1 105.93152 235.00000 596.32516 105.93152 110 18 1 106.67230 237.00000 600.49526 106.67230 110 18 1 107.41308 239.00000 604.66537 107.41308 110 18 1 80.50987 239.00000 1019.73819 80.50987 110 8 1 80.88466 239.90000 1024.48525 80.88466 110 8 1 - 81.25944 240.80000 1029.23230 81.25944 110 0 1 + 81.25944 240.80000 1029.23230 81.25944 110 8 1 81.63423 241.70000 1033.97936 81.63423 110 8 1 82.00902 242.60000 1038.72642 82.00902 110 8 1 - 82.38380 243.50000 1043.47347 82.38380 110 0 1 + 82.38380 243.50000 1043.47347 82.38380 110 8 1 82.38380 243.50000 1042.69337 82.38380 110 8 1 - 83.63310 246.50000 1058.50506 83.63310 110 0 1 + 83.63310 246.50000 1058.50506 83.63310 110 8 1 84.88239 249.50000 1074.31676 84.88239 110 8 1 86.13168 252.50000 1090.12845 86.13168 110 8 1 - 87.38097 255.50000 1105.94015 87.38097 110 0 1 + 87.38097 255.50000 1105.94015 87.38097 110 8 1 88.63026 258.50000 1121.75184 88.63026 110 8 1 88.63026 258.50000 1121.14810 88.63026 110 8 1 88.88012 259.10000 1124.30874 88.88012 110 8 1 89.12998 259.70000 1127.46937 89.12998 110 8 1 89.37983 260.30000 1130.63001 89.37983 110 8 1 89.62969 260.90000 1133.79065 89.62969 110 8 1 - 89.87955 261.50000 1136.95128 89.87955 110 0 1 - 89.87955 261.50000 1136.55186 89.87955 110 0 1 + 89.87955 261.50000 1136.95128 89.87955 110 8 1 + 89.87955 261.50000 1136.55186 89.87955 110 8 1 90.92063 264.00000 1149.71656 90.92063 110 8 1 91.96170 266.50000 1162.88125 91.96170 110 8 1 - 93.00278 269.00000 1176.04594 93.00278 110 0 1 + 93.00278 269.00000 1176.04594 93.00278 110 8 1 94.04385 271.50000 1189.21064 94.04385 110 8 1 - 95.08493 274.00000 1202.37533 95.08493 110 0 1 + 95.08493 274.00000 1202.37533 95.08493 110 8 1 95.08493 274.00000 1201.81956 95.08493 110 8 1 - 96.38049 276.80000 1218.19472 96.38049 110 0 1 + 96.38049 276.80000 1218.19472 96.38049 110 8 1 97.67605 279.60000 1234.56988 97.67605 110 8 1 - 98.97161 282.40000 1250.94503 98.97161 110 0 1 - 100.26717 285.20000 1267.32019 100.26717 110 0 1 + 98.97161 282.40000 1250.94503 98.97161 110 8 1 + 100.26717 285.20000 1267.32019 100.26717 110 8 1 101.56274 288.00000 1283.69535 101.56274 110 8 1 - 101.56274 288.00000 1283.24671 101.56274 110 0 1 - 102.85830 290.80000 1299.61615 102.85830 110 0 1 + 101.56274 288.00000 1283.24671 101.56274 110 8 1 + 102.85830 290.80000 1299.61615 102.85830 110 8 1 104.15386 293.60000 1315.98558 104.15386 110 8 1 - 105.44942 296.40000 1332.35502 105.44942 110 0 1 - 106.74498 299.20000 1348.72445 106.74498 110 0 1 + 105.44942 296.40000 1332.35502 105.44942 110 8 1 + 106.74498 299.20000 1348.72445 106.74498 110 8 1 108.04054 302.00000 1365.09389 108.04054 110 8 1 108.04054 302.00000 1364.74795 108.04054 110 8 1 109.33610 304.80000 1381.11324 109.33610 110 8 1 - 110.63166 307.60000 1397.47852 110.63166 110 0 1 - 111.92722 310.40000 1413.84381 111.92722 110 0 1 + 110.63166 307.60000 1397.47852 110.63166 110 8 1 + 111.92722 310.40000 1413.84381 111.92722 110 8 1 113.22279 313.20000 1430.20910 113.22279 110 8 1 114.51835 316.00000 1446.57438 114.51835 110 8 1 114.51835 316.00000 1446.30306 114.51835 110 8 1 115.81391 318.80000 1462.66528 115.81391 110 8 1 - 117.10947 321.60000 1479.02750 117.10947 110 0 1 + 117.10947 321.60000 1479.02750 117.10947 110 8 1 118.40503 324.40000 1495.38971 118.40503 110 8 1 - 119.70059 327.20000 1511.75193 119.70059 110 0 1 + 119.70059 327.20000 1511.75193 119.70059 110 8 1 120.99615 330.00000 1528.11415 120.99615 110 8 1 - 120.99615 330.00000 1527.89817 120.99615 110 0 1 - 122.29171 332.80000 1544.25807 122.29171 110 0 1 - 123.58727 335.60000 1560.61798 123.58727 110 0 1 - 124.88284 338.40000 1576.97788 124.88284 110 0 1 - 126.17840 341.20000 1593.33778 126.17840 110 0 1 + 120.99615 330.00000 1527.89817 120.99615 110 8 1 + 122.29171 332.80000 1544.25807 122.29171 110 8 1 + 123.58727 335.60000 1560.61798 123.58727 110 8 1 + 124.88284 338.40000 1576.97788 124.88284 110 8 1 + 126.17840 341.20000 1593.33778 126.17840 110 8 1 127.47396 344.00000 1609.69769 127.47396 110 8 1 - 170.07071 344.00000 948.32847 170.07071 110 0 1 + 170.07071 344.00000 948.32847 170.07071 110 18 1 170.99669 346.00000 953.49178 170.99669 110 18 1 171.92266 348.00000 958.65509 171.92266 110 18 1 172.84864 350.00000 963.81841 172.84864 110 18 1 - 173.77461 352.00000 968.98172 173.77461 110 0 1 + 173.77461 352.00000 968.98172 173.77461 110 18 1 174.70059 354.00000 974.14503 174.70059 110 18 1 - 130.94421 354.00000 1653.72148 130.94421 110 0 1 + 130.94421 354.00000 1653.72148 130.94421 110 8 1 131.86961 356.00000 1665.40856 131.86961 110 8 1 132.79501 358.00000 1677.09564 132.79501 110 8 1 133.72041 360.00000 1688.78272 133.72041 110 8 1 - 134.64581 362.00000 1700.46979 134.64581 110 0 1 + 134.64581 362.00000 1700.46979 134.64581 110 8 1 135.57121 364.00000 1712.15687 135.57121 110 8 1 [END OF DATA] [END OF TABLE] @@ -14867,7 +15001,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=5 +IterationCount=3 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -15472,7 +15606,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00001 0.00000 0.00001 0.00000 330 99 3 + 0.00001 0.00000 0.00001 0.00000 330 100 3 12.29281 0.00000 12.70805 2.74824 330 97 3 21.42373 0.00000 25.42190 5.49773 330 84 3 30.56260 0.00000 38.14723 8.24971 330 80 3 @@ -15517,47 +15651,47 @@ Status character 314.28369 70.00000 2406.92138 264.83171 110 13 1 223.49498 97.80000 1585.65340 174.46823 110 14 1 132.69223 125.60000 764.35498 84.10139 110 17 1 - 0.00003 153.40000 0.00003 0.00000 402 100 P - 0.00003 181.20000 0.00003 0.00000 402 100 P - 0.00003 209.00000 0.00003 0.00000 402 100 P - 0.00000 209.00000 0.00000 0.00000 402 0 P - 0.00000 211.00000 0.00000 0.00000 402 0 P - 0.00000 213.00000 0.00000 0.00000 402 0 P - 0.00000 215.00000 0.00000 0.00000 402 0 P - 0.00000 217.00000 0.00000 0.00000 402 0 P - 0.00000 219.00000 0.00000 0.00000 402 0 P - 0.00000 219.00000 0.00000 0.00000 402 0 P - 0.00000 221.00000 0.00000 0.00000 402 0 P - 0.00000 223.00000 0.00000 0.00000 402 0 P - 0.00000 225.00000 0.00000 0.00000 402 0 P - 0.00000 227.00000 0.00000 0.00000 402 0 P - 0.00000 229.00000 0.00000 0.00000 402 0 P - 0.00000 229.00000 0.00000 0.00000 402 0 P - 0.00000 231.00000 0.00000 0.00000 402 0 P - 0.00000 233.00000 0.00000 0.00000 402 0 P - 0.00000 235.00000 0.00000 0.00000 402 0 P - 0.00000 237.00000 0.00000 0.00000 402 0 P - 0.00000 239.00000 0.00000 0.00000 402 0 P - 0.00000 239.00000 0.00000 0.00000 402 0 P - 0.00000 239.90000 0.00000 0.00000 402 0 P - 0.00000 240.80000 0.00000 0.00000 402 0 P - 0.00000 241.70000 0.00000 0.00000 402 0 P - 0.00000 242.60000 0.00000 0.00000 402 0 P - 0.00000 243.50000 0.00000 0.00000 402 0 P - 0.00000 243.50000 0.00000 0.00000 402 0 P - 0.00000 246.50000 0.00000 0.00000 402 0 P - 0.00000 249.50000 0.00000 0.00000 402 0 P - 0.00000 252.50000 0.00000 0.00000 402 0 P - 0.00000 255.50000 0.00000 0.00000 402 0 P - 0.00000 258.50000 0.00000 0.00000 402 0 P - 0.00000 258.50000 0.00000 0.00000 402 0 P - 0.00000 259.10000 0.00000 0.00000 402 0 P - 0.00000 259.70000 0.00000 0.00000 402 0 P - 0.00000 260.30000 0.00000 0.00000 402 0 P - 0.00000 260.90000 0.00000 0.00000 402 0 P - 0.00000 261.50000 0.00000 0.00000 402 0 P - 0.00003 261.50000 0.00003 0.00001 402 100 P - 22.55451 264.00000 22.55451 5.82572 402 100 P + 0.00003 153.40000 0.00003 0.00000 330 100 3 + 0.00003 181.20000 0.00003 0.00000 330 100 3 + 0.00003 209.00000 0.00003 0.00000 330 100 3 + 0.00000 209.00000 0.00000 0.00000 1 0 A + 0.00000 211.00000 0.00000 0.00000 1 0 A + 0.00000 213.00000 0.00000 0.00000 1 0 A + 0.00000 215.00000 0.00000 0.00000 1 0 A + 0.00000 217.00000 0.00000 0.00000 1 0 A + 0.00000 219.00000 0.00000 0.00000 1 0 A + 0.00000 219.00000 0.00000 0.00000 1 0 A + 0.00000 221.00000 0.00000 0.00000 1 0 A + 0.00000 223.00000 0.00000 0.00000 1 0 A + 0.00000 225.00000 0.00000 0.00000 1 0 A + 0.00000 227.00000 0.00000 0.00000 1 0 A + 0.00000 229.00000 0.00000 0.00000 1 0 A + 0.00000 229.00000 0.00000 0.00000 1 0 A + 0.00000 231.00000 0.00000 0.00000 1 0 A + 0.00000 233.00000 0.00000 0.00000 1 0 A + 0.00000 235.00000 0.00000 0.00000 1 0 A + 0.00000 237.00000 0.00000 0.00000 1 0 A + 0.00000 239.00000 0.00000 0.00000 1 0 A + 0.00000 239.00000 0.00000 0.00000 1 0 A + 0.00000 239.90000 0.00000 0.00000 1 0 A + 0.00000 240.80000 0.00000 0.00000 1 0 A + 0.00000 241.70000 0.00000 0.00000 1 0 A + 0.00000 242.60000 0.00000 0.00000 1 0 A + 0.00000 243.50000 0.00000 0.00000 1 0 A + 0.00000 243.50000 0.00000 0.00000 1 0 A + 0.00000 246.50000 0.00000 0.00000 1 0 A + 0.00000 249.50000 0.00000 0.00000 1 0 A + 0.00000 252.50000 0.00000 0.00000 1 0 A + 0.00000 255.50000 0.00000 0.00000 1 0 A + 0.00000 258.50000 0.00000 0.00000 1 0 A + 0.00000 258.50000 0.00000 0.00000 1 0 A + 0.00000 259.10000 0.00000 0.00000 1 0 A + 0.00000 259.70000 0.00000 0.00000 1 0 A + 0.00000 260.30000 0.00000 0.00000 1 0 A + 0.00000 260.90000 0.00000 0.00000 1 0 A + 0.00000 261.50000 0.00000 0.00000 1 0 A + 0.00003 261.50000 0.00003 0.00001 330 100 3 + 22.55451 264.00000 22.55451 5.82572 330 100 3 78.57115 266.50000 104.55884 27.00704 220 75 2 112.87050 269.00000 186.42566 48.15285 220 61 2 147.11993 271.50000 268.15664 69.26356 220 55 2 @@ -15933,7 +16067,7 @@ Status character 0.00000 20.00000 0.00000 0.00000 -1 0 - 0.00000 22.50000 0.00000 0.00000 -1 0 - 0.00000 25.00000 0.00000 0.00000 -1 0 - - 0.00001 25.00000 0.00001 0.00000 330 99 3 + 0.00001 25.00000 0.00001 0.00000 330 100 3 2.87394 26.00000 5.73536 1.76559 220 50 2 4.42333 27.00000 11.47278 3.53181 110 39 1 5.92640 28.00000 17.21430 5.29929 110 34 1 @@ -15958,26 +16092,26 @@ Status character 31.30372 51.20000 159.70599 43.88673 110 0 1 33.19743 53.00000 171.36395 47.09030 110 0 1 31.34185 53.00000 200.34947 45.23472 110 0 1 - 7.92373 53.40000 203.39478 45.92229 110 0 1 - 8.04260 53.80000 206.44605 46.61120 110 0 1 - 8.16170 54.20000 209.50324 47.30145 110 0 1 - 8.28103 54.60000 212.56633 47.99303 110 0 1 - 8.40059 55.00000 215.63531 48.68594 110 0 1 - 8.33361 55.00000 257.25521 47.35168 110 0 1 - 8.63111 56.00000 266.43895 49.04209 110 0 1 - 8.93001 57.00000 275.66570 50.74041 110 0 1 - 9.23027 58.00000 284.93475 52.44652 110 0 1 - 9.53188 59.00000 294.24531 54.16026 110 0 1 - 9.83481 60.00000 303.59652 55.88150 110 0 1 - 9.77668 60.00000 274.43189 61.62255 110 0 1 - 9.99271 61.50000 280.49589 62.98420 110 0 1 + 7.92373 53.40000 203.39478 45.92229 1 0 A + 8.04260 53.80000 206.44605 46.61120 1 0 A + 8.16170 54.20000 209.50324 47.30145 1 0 A + 8.28103 54.60000 212.56633 47.99303 1 0 A + 8.40059 55.00000 215.63531 48.68594 1 0 A + 8.33361 55.00000 257.25521 47.35168 1 0 A + 8.63111 56.00000 266.43895 49.04209 1 0 A + 8.93001 57.00000 275.66570 50.74041 1 0 A + 9.23027 58.00000 284.93475 52.44652 1 0 A + 9.53188 59.00000 294.24531 54.16026 1 0 A + 9.83481 60.00000 303.59652 55.88150 1 0 A + 9.77668 60.00000 274.43189 61.62255 1 0 A + 9.99271 61.50000 280.49589 62.98420 1 0 A 10.31556 63.00000 286.63748 64.36327 110 0 1 11.78393 64.50000 292.85328 65.75900 110 0 1 13.27191 66.00000 299.13968 67.17058 110 0 1 14.77909 67.50000 305.49290 68.59717 110 0 1 - 52.26183 67.50000 623.79005 67.87991 110 0 1 - 53.35947 69.00000 636.89126 69.30556 110 0 1 - 54.46718 70.50000 650.11280 70.74431 110 0 1 + 52.26183 67.50000 623.79005 67.87991 1 0 A + 53.35947 69.00000 636.89126 69.30556 1 0 A + 54.46718 70.50000 650.11280 70.74431 1 0 A 55.58429 72.00000 663.44644 72.19526 1 0 A 56.71009 73.50000 676.88388 73.65750 1 0 A 57.84390 75.00000 690.41688 75.13014 1 0 A @@ -20671,28 +20805,34 @@ Layer name [VERIFY STEP 6.3 (LOW MODULUS OF SUBGRADE REACTION AND LOW PASSIVE WATER LEVEL)] [POINTS ON SHEETPILE] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -20906,9 +21046,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 0.00000 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 0.00000 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 0.00000 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -2.06047 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 -3.43413 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -8.14905 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -20918,261 +21058,267 @@ SupportName 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 13.57 : Percentage mobilized resistance right - 2950.54 : Effective left - 2950.54 : Effective right + 13.49 : Percentage mobilized resistance left + 13.65 : Percentage mobilized resistance right + 2934.02 : Effective left + 3007.56 : Effective right 6349.00 : Water pressure left - 6349.00 : Water pressure right + 6261.81 : Water pressure right 21746.57 : Max effective resistance left -21746.57 : Max effective resistance right +22029.67 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 880.16 : Vertical force left - 880.16 : Vertical force right + 875.03 : Vertical force left + 897.17 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --880.16 : Active force -880.16 : Passive force --880.16 : Plugged active force -880.16 : Plugged passive force +-875.03 : Active force +897.17 : Passive force +-875.03 : Plugged active force +897.17 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor -0.00 : Resulting Vertical Force Unplugged -0.00 : Resulting Vertical Force Plugged -0 : Vertical Balance Result Unplugged -0 : Vertical Balance Result Plugged +22.14 : Resulting Vertical Force Unplugged +22.14 : Resulting Vertical Force Plugged +2 : Vertical Balance Result Unplugged +2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 + 0.00000 2.06047 0.00000 + 0.10291 2.05358 0.00003 + 0.20513 2.03291 0.00005 + 0.30597 1.99846 0.00008 + 0.40474 1.95024 0.00011 + 0.50076 1.88824 0.00014 + 0.50076 1.88826 0.00014 + 0.87757 1.59010 0.00025 + 1.18985 1.29264 0.00035 + 1.43776 0.99580 0.00043 + 1.62140 0.69947 0.00050 + 1.74089 0.40354 0.00055 + 1.74089 0.40359 0.00055 + 1.79630 0.10791 0.00058 + 1.78766 -0.18767 0.00058 + 1.71497 -0.48330 0.00056 + 1.57821 -0.77911 0.00052 + 1.37733 -1.07524 0.00047 + 1.37733 -1.07520 0.00047 + 1.11225 -1.37177 0.00039 + 0.78286 -1.66890 0.00030 + 0.38902 -1.96665 0.00020 + -0.06940 -2.26506 0.00010 + -0.59256 -2.56416 0.00000 + -0.59256 0.86998 0.00000 + -0.51247 0.73171 -0.00005 + -0.44622 0.59330 -0.00009 + -0.39381 0.45476 -0.00013 + -0.35527 0.31609 -0.00017 + -0.33060 0.17729 -0.00021 + -0.33060 0.17728 -0.00021 + -0.32970 -0.17024 -0.00031 + -0.41578 -0.51851 -0.00041 + -0.58901 -0.86746 -0.00049 + -0.84956 -1.21703 -0.00057 + -1.19757 -1.56712 -0.00063 + -1.19756 -1.56719 -0.00063 + -1.63317 -1.91767 -0.00067 + -2.15642 -2.26838 -0.00069 + -2.76736 -2.61907 -0.00066 + -3.46593 -2.96942 -0.00060 + -4.25200 -3.31903 -0.00047 + -4.25202 -3.31912 -0.00047 + -4.59091 -3.45867 -0.00040 + -4.94375 -3.59799 -0.00032 + -5.31050 -3.73704 -0.00023 + -5.69114 -3.87578 -0.00012 + -6.08564 -4.01417 0.00000 + -6.08564 4.13487 0.00000 + -5.67906 3.99688 0.00014 + -5.28625 3.85934 0.00029 + -4.90718 3.72229 0.00046 + -4.54178 3.58577 0.00064 + -4.19000 3.44983 0.00083 + -4.19000 3.44979 0.00083 + -3.59095 3.20665 0.00120 + -3.03547 2.96566 0.00160 + -2.52317 2.72698 0.00203 + -2.05362 2.49073 0.00248 + -1.62636 2.25702 0.00295 + -1.62636 2.25699 0.00295 + -1.24094 2.02591 0.00343 + -0.89687 1.79753 0.00393 + -0.59366 1.57190 0.00443 + -0.33082 1.34905 0.00493 + -0.10784 1.12902 0.00544 + -0.10781 1.12729 0.00544 + -0.06362 1.08332 0.01294 + -0.02093 1.05488 0.03067 + 0.02109 1.05036 0.05182 + 0.06342 1.06979 0.06958 + 0.10688 1.10480 0.07714 + 0.10691 1.10651 0.07714 + 0.22254 1.20636 0.07760 + 0.34823 1.30763 0.07806 + 0.48411 1.41032 0.07852 + 0.63034 1.51441 0.07898 + 0.78704 1.61992 0.07943 + 0.78704 1.61992 0.07943 + 1.02392 1.53860 0.08011 + 1.24865 1.45790 0.08079 + 1.46132 1.37783 0.08146 + 1.66203 1.29836 0.08212 + 1.85086 1.21950 0.08277 + 1.85086 1.21951 0.08277 + 2.02791 1.14125 0.08341 + 2.19327 1.06357 0.08403 + 2.34701 0.98646 0.08465 + 2.48923 0.90992 0.08525 + 2.62002 0.83393 0.08584 + 2.62002 0.83393 0.08584 + 2.70089 0.78357 0.08622 + 2.77674 0.73344 0.08660 + 2.84758 0.68354 0.08697 + 2.91345 0.63387 0.08733 + 2.97437 0.58441 0.08769 + 2.97436 0.58445 0.08769 + 3.12010 0.53712 0.08857 + 3.25390 0.49253 0.08941 + 3.37644 0.45053 0.09019 + 3.48838 0.41093 0.09091 + 3.59032 0.37354 0.09157 + 3.59032 0.37362 0.09157 + 3.68282 0.33824 0.09217 + 3.76636 0.30468 0.09270 + 3.84139 0.27273 0.09317 + 3.90830 0.24218 0.09358 + 3.96743 0.21283 0.09392 + 3.96743 0.21292 0.09392 + 4.01908 0.18453 0.09419 + 4.06345 0.15690 0.09439 + 4.10071 0.12981 0.09452 + 4.13098 0.10302 0.09458 + 4.15429 0.07632 0.09457 + 4.15429 0.07641 0.09457 + 4.17067 0.04956 0.09449 + 4.18003 0.02234 0.09434 + 4.18224 -0.00549 0.09412 + 4.17711 -0.03414 0.09382 + 4.16439 -0.06386 0.09345 + 4.16439 -0.06377 0.09345 + 4.14381 -0.09477 0.09301 + 4.11498 -0.12730 0.09250 + 4.07746 -0.16157 0.09192 + 4.03079 -0.19782 0.09127 + 3.97441 -0.23625 0.09055 + 3.97442 -0.23619 0.09055 + 3.91639 -0.34421 0.08995 + 3.83667 -0.45310 0.08931 + 3.73509 -0.56289 0.08863 + 3.61145 -0.67365 0.08792 + 3.46556 -0.78543 0.08716 + 3.46556 -0.78540 0.08716 + 3.30454 -0.82516 0.08638 + 3.13537 -0.86690 0.08555 + 2.95764 -0.91071 0.08470 + 2.77094 -0.95666 0.08382 + 2.57483 -1.00481 0.08290 + 2.57483 -1.00479 0.08290 + 2.36887 -1.05522 0.08197 + 2.15259 -1.10799 0.08100 + 1.92551 -1.16316 0.08002 + 1.68716 -1.22077 0.07902 + 1.43704 -1.28087 0.07800 + 1.43704 -1.28086 0.07800 + 1.16832 -1.40657 0.07696 + 0.87432 -1.53372 0.07591 + 0.55474 -1.66233 0.07486 + 0.20929 -1.79240 0.07380 + -0.16232 -1.92395 0.07273 + -0.16232 -1.92395 0.07273 + -0.33232 -1.85399 0.07225 + -0.49608 -1.78536 0.07178 + -0.65372 -1.71805 0.07130 + -0.80537 -1.65205 0.07082 + -0.95113 -1.58737 0.07035 + -0.95111 -1.58744 0.07035 + -1.39606 -1.38124 0.06879 + -1.78128 -1.18931 0.06726 + -2.11104 -1.01132 0.06577 + -2.38943 -0.84688 0.06432 + -2.62047 -0.69550 0.06294 + -2.62049 -0.69560 0.06294 + -2.66136 -0.66686 0.06267 + -2.70052 -0.63861 0.06240 + -2.73801 -0.61086 0.06213 + -2.77384 -0.58360 0.06187 + -2.80805 -0.55682 0.06161 + -2.80803 -0.55689 0.06161 + -2.93377 -0.45038 0.06055 + -3.03388 -0.35182 0.05954 + -3.11031 -0.26086 0.05857 + -3.16492 -0.17712 0.05766 + -3.19945 -0.10022 0.05680 + -3.19943 -0.10042 0.05680 + -3.21638 -0.02193 0.05589 + -3.21242 0.04903 0.05505 + -3.18958 0.11299 0.05427 + -3.14974 0.17051 0.05355 + -3.09464 0.22212 0.05290 + -3.09465 0.22190 0.05290 + -3.02592 0.26815 0.05230 + -2.94493 0.30956 0.05177 + -2.85297 0.34665 0.05130 + -2.75117 0.37989 0.05088 + -2.64054 0.40979 0.05052 + -2.64054 0.40960 0.05052 + -2.52201 0.43661 0.05021 + -2.39627 0.46116 0.04995 + -2.26395 0.48370 0.04974 + -2.12555 0.50460 0.04957 + -1.98149 0.52426 0.04945 + -1.98149 0.52412 0.04945 + -1.83210 0.54287 0.04937 + -1.67754 0.56105 0.04932 + -1.51793 0.57897 0.04930 + -1.35332 0.59688 0.04932 + -1.18365 0.61505 0.04936 + -1.18366 0.61496 0.04936 + -1.00888 0.63359 0.04943 + -0.82879 0.65288 0.04951 + -0.64319 0.67298 0.04962 + -0.45183 0.69401 0.04973 + -0.25445 0.71607 0.04985 + -0.25445 0.71605 0.04985 + -0.12763 0.55216 0.04995 + -0.03358 0.38839 0.05004 + 0.02773 0.22476 0.05013 + 0.05633 0.06125 0.05023 + 0.05224 -0.10213 0.05032 + 0.05224 -0.10213 0.05032 + 0.03374 -0.08284 0.05041 + 0.01915 -0.06297 0.05050 + 0.00858 -0.04255 0.05060 + 0.00217 -0.02156 0.05069 + 0.00000 0.00000 0.05078 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -21182,7 +21328,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points @@ -21314,7 +21460,7 @@ Percentage [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=36 +DataCount=37 [COLUMN INDICATION] Slide plane position Theta min @@ -21324,47 +21470,48 @@ Q max [END OF COLUMN INDICATION] [DATA] 1.00000 0.00000 0.00000 0.00000 0.00000 - -0.16667 69.25300 36.29600 28.92791 2.23918 - -1.33333 69.25300 36.29600 115.71165 8.95673 - -2.50000 69.25300 36.29600 260.35122 20.15263 - -3.00000 69.25300 36.29600 340.05058 26.32181 - -4.25000 69.25300 36.29600 585.79025 45.34343 - -5.50000 69.25300 36.29600 897.94605 69.50602 - -6.00000 69.25300 36.29600 1041.40489 80.61054 - -6.50000 69.25300 36.29600 1195.49031 92.53760 - -7.40000 69.25300 36.29600 1499.62304 116.07917 - -8.30000 69.25300 36.29600 1838.18589 142.28582 - -8.50000 69.25300 36.29600 1918.09778 148.47144 - -9.00000 69.25300 36.29600 2125.31610 164.51130 - -9.75000 68.95400 36.94800 2306.36288 199.12322 - -10.50000 68.67600 37.47000 2491.83057 234.97551 - -11.00000 68.50200 37.76400 2617.95242 259.55492 - -12.30000 68.26800 37.85500 3110.64234 314.72090 - -13.60000 68.07600 37.92700 3647.74002 375.06954 - -14.90000 67.91800 37.98400 4229.30487 440.60042 - -16.20000 67.78600 38.03100 4855.38184 511.31328 - -17.50000 67.67500 38.07100 5526.00521 587.20791 - -18.50000 67.50100 38.21600 5968.99483 650.18531 - -19.50000 67.44700 38.22600 6488.57237 709.02830 - -20.50000 67.39800 38.23600 7034.55926 770.93703 - -21.50000 67.25900 38.35100 7517.85295 840.46585 - -21.95000 67.53400 38.22400 7928.02503 863.86844 - -23.45000 68.22000 37.84700 9354.83066 945.88812 - -23.75000 68.32700 37.77900 9651.54016 963.03094 - -25.00000 68.70200 37.51800 10929.61232 1037.10367 - -26.40000 69.02100 37.26500 12447.22424 1125.40920 - -27.80000 69.26900 37.04400 14061.67656 1219.62423 - -29.20000 69.46600 36.85200 15773.65437 1319.73924 - -30.60000 69.62700 36.68300 17583.60580 1425.74633 - -32.00000 69.76000 36.53400 19491.83726 1537.63894 - -33.00000 69.64000 36.71800 20284.50099 1653.77850 - -34.00000 69.73100 36.61400 21746.56946 1739.49144 + 0.75000 69.25300 36.29600 2.39098 0.18508 + -0.33333 69.25300 36.29600 48.05576 3.71978 + -1.41667 69.25300 36.29600 143.60643 11.11594 + -2.50000 69.25300 36.29600 289.04299 22.37354 + -3.00000 69.25300 36.29600 372.99298 28.87173 + -4.25000 69.25300 36.29600 629.35923 48.71591 + -5.50000 69.25300 36.29600 952.14161 73.70106 + -6.00000 69.25300 36.29600 1099.85108 85.13460 + -6.50000 69.25300 36.29600 1258.18713 97.39069 + -7.40000 69.25300 36.29600 1569.97100 121.52449 + -8.30000 69.25300 36.29600 1916.18500 148.32338 + -8.50000 69.25300 36.29600 1997.79713 154.64062 + -9.00000 69.25300 36.29600 2209.26609 171.00949 + -9.75000 68.96000 36.93800 2393.65796 206.38131 + -10.50000 68.68800 37.45400 2582.47278 242.99441 + -11.00000 68.51700 37.74600 2710.82665 268.08159 + -12.30000 68.28400 37.83900 3212.16515 324.24306 + -13.60000 68.09400 37.91300 3757.90578 385.58735 + -14.90000 67.93600 37.97200 4348.10826 452.11402 + -16.20000 67.80400 38.02100 4982.81799 523.82276 + -17.50000 67.69200 38.06100 5662.06973 600.71335 + -18.50000 67.52000 38.20600 6110.57121 664.56055 + -19.50000 67.46500 38.21700 6636.77815 724.16986 + -20.50000 67.41600 38.22800 7189.39288 786.84492 + -21.50000 67.27700 38.34300 7678.18987 857.24400 + -21.95000 67.54800 38.21800 8092.93675 880.91355 + -23.45000 68.22500 37.84400 9535.04264 963.82311 + -23.75000 68.33100 37.77600 9834.81595 981.14391 + -25.00000 68.70200 37.51800 11125.65526 1055.95831 + -26.40000 69.01900 37.26600 12657.56077 1145.09468 + -27.80000 69.26500 37.04700 14286.29640 1240.14075 + -29.20000 69.46200 36.85600 16012.54662 1341.08703 + -30.60000 69.62200 36.68800 17836.76018 1447.92563 + -32.00000 69.75500 36.54000 19759.24452 1560.65001 + -33.00000 69.63600 36.72200 20557.42539 1677.65858 + -34.00000 69.72700 36.61900 22029.67298 1763.96563 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=35 +DataCount=36 [COLUMN INDICATION] Position Vertical stress @@ -21375,47 +21522,48 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 0.41667 5.83333 24.79535 1.91930 0.55900 0.32902 4.25063 - -0.75000 17.50000 74.38606 5.75790 0.55900 0.32902 4.25063 - -1.91667 29.16667 123.97677 9.59649 0.55900 0.32902 4.25063 - -2.75000 37.50000 159.39871 12.33835 0.55900 0.32902 4.25063 - -3.62500 46.25000 196.59174 15.21729 0.55900 0.32902 4.25063 - -4.87500 58.75000 249.72464 19.33008 0.55900 0.32902 4.25063 - -5.75000 67.50000 286.91767 22.20902 0.55900 0.32902 4.25063 - -6.25000 72.50000 308.17083 23.85414 0.55900 0.32902 4.25063 - -6.95000 79.50000 337.92526 26.15730 0.55900 0.32902 4.25063 - -7.85000 88.50000 376.18095 29.11850 0.55900 0.32902 4.25063 - -8.40000 94.00000 399.55943 30.92812 0.55900 0.32902 4.25063 - -8.75000 97.50000 414.43664 32.07970 0.55900 0.32902 4.25063 - -9.37500 101.50000 241.39570 46.14923 0.73348 0.45467 2.37828 - -10.12500 104.50000 247.29026 47.80305 0.73348 0.45745 2.36641 - -10.75000 107.00000 252.24371 49.15884 0.73348 0.45943 2.35742 - -11.65000 113.20000 378.99224 42.43537 0.61662 0.37487 3.34799 - -12.95000 123.60000 413.15206 46.42203 0.61662 0.37558 3.34265 - -14.25000 134.00000 447.35758 50.40837 0.61662 0.37618 3.33849 - -15.55000 144.40000 481.59766 54.39450 0.61662 0.37669 3.33516 - -16.85000 154.80000 515.86413 58.38049 0.61662 0.37713 3.33246 - -18.00000 156.00000 442.98963 62.97740 0.66753 0.40370 2.83968 - -19.00000 156.00000 519.57753 58.84299 0.61662 0.37720 3.33063 - -20.00000 164.00000 545.98689 61.90873 0.61662 0.37749 3.32919 - -21.00000 171.00000 483.29370 69.52882 0.66753 0.40660 2.82628 - -21.72500 176.02500 911.49351 52.00575 0.52336 0.29545 5.17820 - -22.70000 184.80000 951.20375 54.67979 0.52336 0.29589 5.14721 - -23.60000 192.90000 989.03167 57.14273 0.52336 0.29623 5.12717 - -24.37500 199.87500 1022.45773 59.25818 0.52336 0.29648 5.11549 - -25.70000 212.50000 1084.00852 63.07538 0.52336 0.29683 5.10122 - -27.10000 226.50000 1153.18023 67.29645 0.52336 0.29711 5.09130 - -28.50000 240.50000 1222.84129 71.51072 0.52336 0.29734 5.08458 - -29.90000 254.50000 1292.82245 75.71935 0.52336 0.29752 5.07985 - -31.30000 268.50000 1363.02247 79.92330 0.52336 0.29767 5.07643 - -32.50000 279.25000 792.66373 116.13956 0.66753 0.41590 2.83855 - -33.50000 288.00000 1462.06847 85.71294 0.52336 0.29761 5.07663 + 0.87500 2.25000 9.56392 0.74030 0.55900 0.32902 4.25063 + 0.20833 9.91667 42.15210 3.26281 0.55900 0.32902 4.25063 + -0.87500 20.75000 88.20062 6.82722 0.55900 0.32902 4.25063 + -1.95833 31.58333 134.24913 10.39163 0.55900 0.32902 4.25063 + -2.75000 39.50000 167.89997 12.99639 0.55900 0.32902 4.25063 + -3.62500 48.25000 205.09300 15.87534 0.55900 0.32902 4.25063 + -4.87500 60.75000 258.22591 19.98812 0.55900 0.32902 4.25063 + -5.75000 69.50000 295.41894 22.86707 0.55900 0.32902 4.25063 + -6.25000 74.50000 316.67210 24.51218 0.55900 0.32902 4.25063 + -6.95000 81.50000 346.42652 26.81534 0.55900 0.32902 4.25063 + -7.85000 90.50000 384.68221 29.77654 0.55900 0.32902 4.25063 + -8.40000 96.00000 408.06069 31.58617 0.55900 0.32902 4.25063 + -8.75000 99.50000 422.93790 32.73775 0.55900 0.32902 4.25063 + -9.37500 103.50000 245.85584 47.16243 0.73348 0.45568 2.37542 + -10.12500 106.50000 251.75309 48.81746 0.73348 0.45838 2.36388 + -10.75000 109.00000 256.70775 50.17437 0.73348 0.46032 2.35512 + -11.65000 115.20000 385.64500 43.20113 0.61662 0.37501 3.34761 + -12.95000 125.60000 419.80048 47.18792 0.61662 0.37570 3.34236 + -14.25000 136.00000 454.00191 51.17436 0.61662 0.37628 3.33825 + -15.55000 146.40000 488.23825 55.16057 0.61662 0.37678 3.33496 + -16.85000 156.80000 522.50134 59.14661 0.61662 0.37721 3.33228 + -18.00000 158.00000 448.50147 63.84721 0.66753 0.40410 2.83862 + -19.00000 158.00000 526.20694 59.60931 0.61662 0.37727 3.33042 + -20.00000 166.00000 552.61473 62.67506 0.61662 0.37756 3.32900 + -21.00000 173.00000 488.79699 70.39908 0.66753 0.40693 2.82542 + -21.72500 178.02500 921.65972 52.59900 0.52336 0.29546 5.17714 + -22.70000 186.80000 961.40393 55.27304 0.52336 0.29589 5.14670 + -23.60000 194.90000 999.24435 57.73601 0.52336 0.29623 5.12696 + -24.37500 201.87500 1032.67145 59.85152 0.52336 0.29648 5.11540 + -25.70000 214.50000 1094.21822 63.66883 0.52336 0.29682 5.10125 + -27.10000 228.50000 1163.38260 67.89005 0.52336 0.29711 5.09139 + -28.50000 242.50000 1233.03587 72.10449 0.52336 0.29734 5.08468 + -29.90000 256.50000 1303.00969 76.31329 0.52336 0.29752 5.07996 + -31.30000 270.50000 1373.20310 80.51741 0.52336 0.29766 5.07654 + -32.50000 281.25000 798.18088 117.00857 0.66753 0.41603 2.83798 + -33.50000 290.00000 1472.24759 86.30705 0.52336 0.29761 5.07672 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -21426,216 +21574,222 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 110 0 1 - 1.30433 2.33333 9.91814 1.30433 110 13 1 - 2.60866 4.66667 19.83628 2.60866 110 13 1 - 3.91300 7.00000 29.75443 3.91300 110 13 1 - 5.21733 9.33333 39.67257 5.21733 110 13 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 7.82599 14.00000 59.50885 7.82599 110 13 1 - 9.13032 16.33333 69.42699 9.13032 110 13 1 - 10.43465 18.66667 79.34513 10.43465 110 13 1 - 11.73899 21.00000 89.26328 11.73899 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 0 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 14.34765 25.66667 109.09956 14.34765 110 13 1 - 15.65198 28.00000 119.01770 15.65198 110 13 1 - 16.95631 30.33333 128.93584 16.95631 110 13 1 - 18.26064 32.66667 138.85399 18.26064 110 13 1 - 19.56498 35.00000 148.77213 19.56498 110 13 1 - 19.56498 35.00000 148.77213 19.56498 110 0 1 - 20.12398 36.00000 153.02276 20.12398 110 13 1 - 20.68298 37.00000 157.27339 20.68298 110 13 1 - 21.24197 38.00000 161.52402 21.24197 110 0 1 - 21.80097 39.00000 165.77466 21.80097 110 0 1 - 22.35997 40.00000 170.02529 22.35997 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 0 1 - 23.75747 42.50000 180.65187 23.75747 110 0 1 - 25.15497 45.00000 191.27845 25.15497 110 13 1 - 26.55247 47.50000 201.90503 26.55247 110 13 1 - 27.94997 50.00000 212.53161 27.94997 110 13 1 - 29.34747 52.50000 223.15819 29.34747 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 13 1 - 30.74496 55.00000 233.78477 30.74496 110 0 1 - 32.14246 57.50000 244.41135 32.14246 110 13 1 - 33.53996 60.00000 255.03793 33.53996 110 13 1 - 34.93746 62.50000 265.66451 34.93746 110 13 1 - 36.33496 65.00000 276.29109 36.33496 110 0 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.89396 66.00000 280.54173 36.89396 110 13 1 - 37.45296 67.00000 284.79236 37.45296 110 13 1 - 38.01195 68.00000 289.04299 38.01195 110 13 1 - 38.57095 69.00000 293.29362 38.57095 110 13 1 - 39.12995 70.00000 297.54425 39.12995 110 0 1 - 39.12995 70.00000 297.54425 39.12995 110 13 1 - 39.68895 71.00000 301.79489 39.68895 110 13 1 - 40.24795 72.00000 306.04552 40.24795 110 0 1 - 40.80695 73.00000 310.29615 40.80695 110 13 1 - 41.36595 74.00000 314.54678 41.36595 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 13 1 - 42.93115 76.80000 326.44855 42.93115 110 13 1 - 43.93735 78.60000 334.09969 43.93735 110 13 1 - 44.94355 80.40000 341.75083 44.94355 110 13 1 - 45.94975 82.20000 349.40197 45.94975 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 47.96214 85.80000 364.70424 47.96214 110 0 1 - 48.96834 87.60000 372.35538 48.96834 110 13 1 - 49.97454 89.40000 380.00652 49.97454 110 13 1 - 50.98074 91.20000 387.65766 50.98074 110 0 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 52.21054 93.40000 397.00905 52.21054 110 13 1 - 52.43414 93.80000 398.70930 52.43414 110 13 1 - 52.65774 94.20000 400.40955 52.65774 110 0 1 - 52.88134 94.60000 402.10981 52.88134 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.66394 96.00000 408.06069 53.66394 110 0 1 - 54.22294 97.00000 412.31132 54.22294 110 13 1 - 54.78193 98.00000 416.56196 54.78193 110 13 1 - 55.34093 99.00000 420.81259 55.34093 110 0 1 - 55.89993 100.00000 425.06322 55.89993 110 0 1 - 73.34751 100.00000 237.82828 73.34751 110 31 1 - 73.78760 101.50000 239.25525 73.78760 110 31 1 - 74.22768 103.00000 240.68222 74.22768 110 31 1 - 74.66777 104.50000 242.10919 74.66777 110 31 1 - 75.10785 106.00000 243.53616 75.10785 110 31 1 - 75.54794 107.50000 244.96313 75.54794 110 31 1 - 75.54794 107.50000 243.74064 75.54794 110 31 1 - 75.98802 109.00000 245.16048 75.98802 110 31 1 - 76.42811 110.50000 246.58033 76.42811 110 31 1 - 76.86819 112.00000 248.00018 76.86819 110 31 1 - 77.30828 113.50000 249.42003 77.30828 110 31 1 - 77.74836 115.00000 250.83988 77.74836 110 31 1 - 77.74836 115.00000 249.88629 77.74836 110 31 1 - 78.04175 116.00000 250.82926 78.04175 110 31 1 - 78.33514 117.00000 251.77223 78.33514 110 31 1 - 78.62853 118.00000 252.71519 78.62853 110 31 1 - 78.92192 119.00000 253.65816 78.92192 110 31 1 - 79.21531 120.00000 254.60113 79.21531 110 31 1 - 66.59545 120.00000 361.58270 66.59545 110 18 1 - 67.87803 122.60000 368.54652 67.87803 110 18 1 - 69.16061 125.20000 375.51033 69.16061 110 18 1 - 70.44318 127.80000 382.47415 70.44318 110 18 1 - 71.72576 130.40000 389.43796 71.72576 110 18 1 - 73.00834 133.00000 396.40178 73.00834 110 0 1 - 73.00834 133.00000 395.77026 73.00834 110 0 1 - 74.29092 135.60000 402.72298 74.29092 110 18 1 - 75.57350 138.20000 409.67570 75.57350 110 18 1 - 76.85608 140.80000 416.62842 76.85608 110 18 1 - 78.13866 143.40000 423.58114 78.13866 110 0 1 - 79.42124 146.00000 430.53387 79.42124 110 18 1 - 79.42124 146.00000 429.99744 79.42124 110 18 1 - 80.70382 148.60000 436.94149 80.70382 110 18 1 - 81.98640 151.20000 443.88555 81.98640 110 18 1 - 83.26897 153.80000 450.82961 83.26897 110 18 1 - 84.55155 156.40000 457.77367 84.55155 110 18 1 - 85.83413 159.00000 464.71773 85.83413 110 18 1 - 85.83413 159.00000 464.25481 85.83413 110 0 1 - 87.11671 161.60000 471.19195 87.11671 110 18 1 - 88.39929 164.20000 478.12909 88.39929 110 18 1 - 89.68187 166.80000 485.06624 89.68187 110 0 1 - 90.96445 169.40000 492.00338 90.96445 110 18 1 - 92.24703 172.00000 498.94052 92.24703 110 18 1 - 92.24703 172.00000 498.53536 92.24703 110 19 1 - 93.52961 174.60000 505.46687 93.52961 110 0 1 - 94.81219 177.20000 512.39837 94.81219 110 19 1 - 96.09476 179.80000 519.32988 96.09476 110 0 1 - 97.37734 182.40000 526.26139 97.37734 110 19 1 - 98.65992 185.00000 533.19290 98.65992 110 19 1 - 106.80501 185.00000 454.34834 106.80501 110 24 1 - 105.73696 189.80000 449.80485 105.73696 110 24 1 - 104.66891 194.60000 445.26137 104.66891 110 24 1 - 103.60086 199.40000 440.71789 103.60086 110 24 1 - 102.53281 204.20000 436.17440 102.53281 110 24 1 - 101.46476 209.00000 431.63092 101.46476 110 24 1 - 93.72693 209.00000 506.25503 93.72693 110 19 1 - 94.71353 211.00000 511.58403 94.71353 110 19 1 - 95.70012 213.00000 516.91303 95.70012 110 19 1 - 96.68672 215.00000 522.24203 96.68672 110 19 1 - 97.67332 217.00000 527.57103 97.67332 110 19 1 - 98.65992 219.00000 532.90003 98.65992 110 19 1 - 98.65992 219.00000 532.67014 98.65992 110 19 1 - 99.64652 221.00000 537.99684 99.64652 110 19 1 - 100.63312 223.00000 543.32354 100.63312 110 19 1 - 101.61972 225.00000 548.65024 101.61972 110 19 1 - 102.60632 227.00000 553.97694 102.60632 110 19 1 - 103.59292 229.00000 559.30365 103.59292 110 0 1 - 112.14526 229.00000 474.81486 112.14526 110 24 1 - 112.94630 231.00000 478.20639 112.94630 110 24 1 - 113.74733 233.00000 481.59793 113.74733 110 24 1 - 114.54837 235.00000 484.98946 114.54837 110 24 1 - 115.34941 237.00000 488.38100 115.34941 110 0 1 - 116.15045 239.00000 491.77253 116.15045 110 24 1 - 91.06515 239.00000 901.00765 91.06515 110 0 1 - 91.48907 239.90000 905.20199 91.48907 110 10 1 - 91.91300 240.80000 909.39634 91.91300 110 10 1 - 92.33692 241.70000 913.59068 92.33692 110 10 1 - 92.76084 242.60000 917.78503 92.76084 110 10 1 - 93.18477 243.50000 921.97938 93.18477 110 10 1 - 93.18477 243.50000 916.46011 93.18477 110 10 1 - 94.59785 246.50000 930.35756 94.59785 110 10 1 - 96.01093 249.50000 944.25502 96.01093 110 10 1 - 97.42401 252.50000 958.15248 97.42401 110 10 1 - 98.83709 255.50000 972.04994 98.83709 110 10 1 - 100.25017 258.50000 985.94739 100.25017 110 0 1 - 100.25017 258.50000 982.10999 100.25017 110 10 1 - 100.53278 259.10000 984.87866 100.53278 110 10 1 - 100.81540 259.70000 987.64733 100.81540 110 10 1 - 101.09802 260.30000 990.41601 101.09802 110 0 1 - 101.38063 260.90000 993.18468 101.38063 110 10 1 - 101.66325 261.50000 995.95335 101.66325 110 10 1 - 101.66325 261.50000 993.68312 101.66325 110 10 1 - 102.84081 264.00000 1005.19296 102.84081 110 10 1 - 104.01838 266.50000 1016.70281 104.01838 110 0 1 - 105.19595 269.00000 1028.21265 105.19595 110 10 1 - 106.37351 271.50000 1039.72249 106.37351 110 10 1 - 107.55108 274.00000 1051.23234 107.55108 110 0 1 - 107.55108 274.00000 1048.30000 107.55108 110 10 1 - 109.01650 276.80000 1062.58341 109.01650 110 0 1 - 110.48191 279.60000 1076.86681 110.48191 110 10 1 - 111.94733 282.40000 1091.15022 111.94733 110 10 1 - 113.41274 285.20000 1105.43363 113.41274 110 10 1 - 114.87816 288.00000 1119.71703 114.87816 110 0 1 - 114.87816 288.00000 1117.54110 114.87816 110 10 1 - 116.34358 290.80000 1131.79675 116.34358 110 0 1 - 117.80899 293.60000 1146.05240 117.80899 110 10 1 - 119.27441 296.40000 1160.30805 119.27441 110 10 1 - 120.73983 299.20000 1174.56370 120.73983 110 0 1 - 122.20524 302.00000 1188.81935 122.20524 110 10 1 - 122.20524 302.00000 1187.24924 122.20524 110 0 1 - 123.67066 304.80000 1201.48606 123.67066 110 10 1 - 125.13607 307.60000 1215.72288 125.13607 110 0 1 - 126.60149 310.40000 1229.95970 126.60149 110 0 1 - 128.06691 313.20000 1244.19653 128.06691 110 10 1 - 129.53232 316.00000 1258.43335 129.53232 110 10 1 - 129.53232 316.00000 1257.26349 129.53232 110 10 1 - 130.99774 318.80000 1271.48707 130.99774 110 10 1 - 132.46316 321.60000 1285.71066 132.46316 110 10 1 - 133.92857 324.40000 1299.93425 133.92857 110 10 1 - 135.39399 327.20000 1314.15783 135.39399 110 10 1 - 136.85940 330.00000 1328.38142 136.85940 110 10 1 - 136.85940 330.00000 1327.48743 136.85940 110 10 1 - 138.32482 332.80000 1341.70145 138.32482 110 10 1 - 139.79024 335.60000 1355.91546 139.79024 110 10 1 - 141.25565 338.40000 1370.12948 141.25565 110 0 1 - 142.72107 341.20000 1384.34349 142.72107 110 10 1 - 144.18648 344.00000 1398.55751 144.18648 110 0 1 - 183.90487 344.00000 782.01919 183.90487 110 24 1 - 184.90617 346.00000 786.27700 184.90617 110 24 1 - 185.90747 348.00000 790.53482 185.90747 110 24 1 - 186.90876 350.00000 794.79264 186.90876 110 24 1 - 187.91006 352.00000 799.05046 187.91006 110 24 1 - 188.91136 354.00000 803.30828 188.91136 110 24 1 - 148.11171 354.00000 1436.68533 148.11171 110 0 1 - 149.15843 356.00000 1446.83859 149.15843 110 0 1 - 150.20516 358.00000 1456.99184 150.20516 110 0 1 - 151.25188 360.00000 1467.14509 151.25188 110 0 1 - 152.29861 362.00000 1477.29835 152.29861 110 10 1 - 153.34534 364.00000 1487.45160 153.34534 110 10 1 + 0.00000 0.00000 0.00000 0.00000 110 13 1 + 0.50352 0.00000 3.82557 0.50310 110 13 1 + 1.00704 0.00000 7.65114 1.00620 110 13 1 + 1.51056 0.00000 11.47671 1.50930 110 13 1 + 2.01407 0.00000 15.30228 2.01240 110 13 1 + 2.51758 0.00000 19.12784 2.51550 110 13 1 + 2.51758 0.00000 19.12784 2.51550 110 13 1 + 3.73045 2.16667 28.33755 3.72666 110 13 1 + 4.94315 4.33333 37.54725 4.93783 110 13 1 + 6.15564 6.50000 46.75695 6.14899 110 13 1 + 7.36786 8.66667 55.96666 7.36016 110 13 1 + 8.57978 10.83333 65.17636 8.57132 110 13 1 + 8.57978 10.83333 65.17636 8.57132 110 13 1 + 9.79134 13.00000 74.38606 9.78249 110 13 1 + 11.00257 15.16667 83.59577 10.99365 110 13 1 + 12.21347 17.33333 92.80547 12.20482 110 13 1 + 13.42405 19.50000 102.01517 13.41598 110 13 1 + 14.63433 21.66667 111.22488 14.62715 110 13 1 + 14.63433 21.66667 111.22488 14.62715 110 13 1 + 15.84433 23.83333 120.43458 15.83831 110 13 1 + 17.05413 26.00000 129.64428 17.04948 110 13 1 + 18.26378 28.16667 138.85399 18.26064 110 13 1 + 19.47337 30.33333 148.06369 19.47181 110 13 1 + 20.68298 32.50000 157.27339 20.68298 110 13 1 + 20.68298 32.50000 157.27339 20.68298 110 13 1 + 21.24128 33.50000 161.52402 21.24197 110 0 1 + 21.79960 34.50000 165.77466 21.80097 110 0 1 + 22.35795 35.50000 170.02529 22.35997 110 0 1 + 22.91631 36.50000 174.27592 22.91897 110 0 1 + 23.47468 37.50000 178.52655 23.47797 110 0 1 + 23.47468 37.50000 178.52655 23.47797 110 0 1 + 24.87066 40.00000 189.15313 24.87547 110 0 1 + 26.26672 42.50000 199.77971 26.27297 110 0 1 + 27.66290 45.00000 210.40629 27.67047 110 0 1 + 29.05926 47.50000 221.03287 29.06797 110 0 1 + 30.45582 50.00000 231.65945 30.46546 110 0 1 + 30.45582 50.00000 231.65945 30.46546 110 0 1 + 31.85267 52.50000 242.28604 31.86296 110 0 1 + 33.24992 55.00000 252.91262 33.26046 110 0 1 + 34.64774 57.50000 263.53920 34.65796 110 0 1 + 36.04628 60.00000 274.16578 36.05546 110 0 1 + 37.44570 62.50000 284.79236 37.45296 110 0 1 + 37.44570 62.50000 284.79236 37.45296 110 0 1 + 38.00575 63.50000 289.04299 38.01195 110 0 1 + 38.56598 64.50000 293.29362 38.57095 110 0 1 + 39.12642 65.50000 297.54425 39.12995 110 0 1 + 39.68707 66.50000 301.79489 39.68895 110 0 1 + 40.24795 67.50000 306.04552 40.24795 110 13 1 + 40.24795 67.50000 306.04552 40.24795 110 13 1 + 40.80907 68.50000 310.29615 40.80695 110 13 1 + 41.37043 69.50000 314.54678 41.36595 110 13 1 + 41.93199 70.50000 318.79741 41.92495 110 13 1 + 42.49376 71.50000 323.04805 42.48395 110 13 1 + 43.05571 72.50000 327.29868 43.04295 110 13 1 + 43.05571 72.50000 327.29868 43.04295 110 13 1 + 44.06763 74.30000 334.94982 44.04915 110 13 1 + 45.08003 76.10000 342.60096 45.05535 110 13 1 + 46.09282 77.90000 350.25209 46.06155 110 13 1 + 47.10596 79.70000 357.90323 47.06774 110 13 1 + 48.11936 81.50000 365.55437 48.07394 110 13 1 + 48.11936 81.50000 365.55437 48.07394 110 13 1 + 49.13297 83.30000 373.20551 49.08014 110 13 1 + 50.14674 85.10000 380.85665 50.08634 110 13 1 + 51.16064 86.90000 388.50778 51.09254 110 13 1 + 52.17461 88.70000 396.15892 52.09874 110 13 1 + 53.18863 90.50000 403.81006 53.10494 110 13 1 + 53.18863 90.50000 403.81006 53.10494 110 13 1 + 53.52761 90.90000 405.51031 53.32854 110 13 1 + 54.02399 91.30000 407.21056 53.55214 110 13 1 + 54.57298 91.70000 408.91082 53.77574 110 13 1 + 55.06980 92.10000 410.61107 53.99934 110 13 1 + 55.40965 92.50000 412.31132 54.22294 110 13 1 + 55.40965 92.50000 412.31132 54.22294 110 13 1 + 55.97574 93.50000 416.56196 54.78193 110 13 1 + 56.54182 94.50000 420.81259 55.34093 110 13 1 + 57.10789 95.50000 425.06322 55.89993 110 13 1 + 57.67394 96.50000 429.31385 56.45893 110 13 1 + 58.23996 97.50000 433.56448 57.01793 110 13 1 + 75.05887 97.50000 242.29271 74.81446 110 31 1 + 75.50105 99.00000 243.71796 75.25455 110 31 1 + 75.94321 100.50000 245.14321 75.69463 110 31 1 + 76.38535 102.00000 246.56846 76.13472 110 31 1 + 76.82747 103.50000 247.99372 76.57480 110 31 1 + 77.26955 105.00000 249.41897 77.01489 110 31 1 + 77.26955 105.00000 248.20727 77.01489 110 31 1 + 77.71161 106.50000 249.62560 77.45497 110 31 1 + 78.15362 108.00000 251.04392 77.89506 110 31 1 + 78.59560 109.50000 252.46225 78.33514 110 31 1 + 79.03754 111.00000 253.88058 78.77523 110 31 1 + 79.47944 112.50000 255.29890 79.21531 110 31 1 + 79.47944 112.50000 254.35263 79.21531 110 31 1 + 79.77401 113.50000 255.29468 79.50870 110 31 1 + 80.06856 114.50000 256.23672 79.80209 110 31 1 + 80.36308 115.50000 257.17877 80.09548 110 31 1 + 80.65759 116.50000 258.12082 80.38887 110 31 1 + 80.95207 117.50000 259.06286 80.68226 110 31 1 + 68.36831 117.50000 368.23741 67.82870 110 19 1 + 69.65635 120.10000 375.20044 69.11128 110 19 1 + 70.94406 122.70000 382.16348 70.39385 110 19 1 + 72.23143 125.30000 389.12651 71.67643 110 19 1 + 73.51845 127.90000 396.08955 72.95901 110 19 1 + 74.80509 130.50000 403.05258 74.24159 110 19 1 + 74.80509 130.50000 402.42021 74.24159 110 19 1 + 76.09136 133.10000 409.37232 75.52417 110 19 1 + 77.37723 135.70000 416.32443 76.80675 110 19 1 + 78.66271 138.30000 423.27654 78.08933 110 19 1 + 79.94779 140.90000 430.22865 79.37191 110 19 1 + 81.23245 143.50000 437.18076 80.65449 110 19 1 + 81.23245 143.50000 436.64302 80.65449 110 19 1 + 82.51669 146.10000 443.58657 81.93707 110 19 1 + 83.80051 148.70000 450.53013 83.21964 110 19 1 + 85.08390 151.30000 457.47369 84.50222 110 19 1 + 86.36685 153.90000 464.41725 85.78480 110 19 1 + 87.64937 156.50000 471.36081 87.06738 110 19 1 + 87.64937 156.50000 470.89645 87.06738 110 19 1 + 88.93145 159.10000 477.83317 88.34996 110 19 1 + 90.21309 161.70000 484.76989 89.63254 110 19 1 + 91.49429 164.30000 491.70661 90.91512 110 19 1 + 92.77505 166.90000 498.64333 92.19770 110 19 1 + 94.05537 169.50000 505.58005 93.48028 110 19 1 + 94.05537 169.50000 505.17349 93.48028 110 19 1 + 95.33525 172.10000 512.10463 94.76286 110 19 1 + 96.61469 174.70000 519.03577 96.04543 110 19 1 + 97.89369 177.30000 525.96691 97.32801 110 19 1 + 99.17227 179.90000 532.89805 98.61059 110 19 1 + 100.45042 182.50000 539.82919 99.89317 110 19 1 + 108.45352 182.50000 459.85594 108.14007 110 24 1 + 107.38339 187.30000 455.31416 107.07202 110 24 1 + 106.31313 192.10000 450.77237 106.00397 110 24 1 + 105.24273 196.90000 446.23058 104.93592 110 24 1 + 104.17220 201.70000 441.68879 103.86787 110 24 1 + 103.10154 206.50000 437.14701 102.79982 110 24 1 + 95.49657 206.50000 512.88525 94.96018 110 19 1 + 96.47832 208.50000 518.21392 95.94677 110 19 1 + 97.45986 210.50000 523.54260 96.93337 110 19 1 + 98.44120 212.50000 528.87128 97.91997 110 19 1 + 99.42236 214.50000 534.19996 98.90657 110 19 1 + 100.40335 216.50000 539.52863 99.89317 110 19 1 + 100.40335 216.50000 539.29871 99.89317 110 19 1 + 101.38418 218.50000 544.62512 100.87977 110 19 1 + 102.36486 220.50000 549.95152 101.86637 110 19 1 + 103.34540 222.50000 555.27793 102.85297 110 19 1 + 104.32582 224.50000 560.60434 103.83957 110 19 1 + 105.30614 226.50000 565.93074 104.82617 110 19 1 + 113.75031 226.50000 480.32075 113.48032 110 24 1 + 114.54776 228.50000 483.71125 114.28136 110 24 1 + 115.34517 230.50000 487.10175 115.08240 110 24 1 + 116.14255 232.50000 490.49224 115.88343 110 24 1 + 116.93992 234.50000 493.88274 116.68447 110 24 1 + 117.73727 236.50000 497.27324 117.48551 110 24 1 + 93.23084 236.50000 911.17602 92.11187 110 10 1 + 93.64740 237.40000 915.36950 92.53580 110 10 1 + 94.06398 238.30000 919.56298 92.95972 110 10 1 + 94.48057 239.20000 923.75647 93.38365 110 10 1 + 94.89718 240.10000 927.94995 93.80757 110 10 1 + 95.31382 241.00000 932.14343 94.23149 110 10 1 + 95.31382 241.00000 926.66369 94.23149 110 10 1 + 96.70287 244.00000 940.55979 95.64457 110 10 1 + 98.09240 247.00000 954.45588 97.05765 110 10 1 + 99.48255 250.00000 968.35198 98.47073 110 10 1 + 100.87342 253.00000 982.24807 99.88381 110 10 1 + 102.26513 256.00000 996.14417 101.29689 110 10 1 + 102.26513 256.00000 992.32296 101.29689 110 10 1 + 102.54359 256.60000 995.09151 101.57951 110 10 1 + 102.82208 257.20000 997.86007 101.86213 110 10 1 + 103.10061 257.80000 1000.62863 102.14474 110 10 1 + 103.37917 258.40000 1003.39719 102.42736 110 10 1 + 103.65778 259.00000 1006.16575 102.70997 110 10 1 + 103.65778 259.00000 1003.89732 102.70997 110 10 1 + 104.81907 261.50000 1015.40698 103.88754 110 10 1 + 105.98108 264.00000 1026.91663 105.06511 110 10 1 + 107.14382 266.50000 1038.42628 106.24267 110 10 1 + 108.30732 269.00000 1049.93593 107.42024 110 10 1 + 109.47159 271.50000 1061.44558 108.59781 110 10 1 + 109.47159 271.50000 1058.50946 108.59781 110 10 1 + 110.92305 274.30000 1072.79297 110.06322 110 10 1 + 112.37549 277.10000 1087.07647 111.52864 110 10 1 + 113.82891 279.90000 1101.35997 112.99405 110 10 1 + 115.28331 282.70000 1115.64347 114.45947 110 10 1 + 116.73866 285.50000 1129.92697 115.92489 110 10 1 + 116.73866 285.50000 1127.74287 115.92489 110 10 1 + 118.19498 288.30000 1141.99876 117.39030 110 10 1 + 119.65221 291.10000 1156.25465 118.85572 110 10 1 + 121.11035 293.90000 1170.51054 120.32114 110 10 1 + 122.56936 296.70000 1184.76643 121.78655 110 10 1 + 124.02921 299.50000 1199.02233 123.25197 110 10 1 + 124.02921 299.50000 1197.44308 123.25197 110 10 1 + 125.48987 302.30000 1211.68019 124.71738 110 10 1 + 126.95130 305.10000 1225.91731 126.18280 110 10 1 + 128.41346 307.90000 1240.15442 127.64822 110 10 1 + 129.87632 310.70000 1254.39154 129.11363 110 10 1 + 131.33983 313.50000 1268.62866 130.57905 110 10 1 + 131.33983 313.50000 1267.44997 130.57905 110 10 1 + 132.80394 316.30000 1281.67385 132.04446 110 10 1 + 134.26862 319.10000 1295.89774 133.50988 110 10 1 + 135.73381 321.90000 1310.12163 134.97530 110 10 1 + 137.19946 324.70000 1324.34552 136.44071 110 10 1 + 138.66553 327.50000 1338.56940 137.90613 110 10 1 + 138.66553 327.50000 1337.66734 137.90613 110 10 1 + 140.13196 330.30000 1351.88165 139.37155 110 10 1 + 141.59870 333.10000 1366.09595 140.83696 110 10 1 + 143.06569 335.90000 1380.31025 142.30238 110 10 1 + 144.53288 338.70000 1394.52455 143.76779 110 10 1 + 146.00020 341.50000 1408.73885 145.23321 110 10 1 + 185.41251 341.50000 787.53846 185.23993 110 24 1 + 186.41412 343.50000 791.79543 186.24123 110 24 1 + 187.41574 345.50000 796.05239 187.24253 110 24 1 + 188.41736 347.50000 800.30936 188.24383 110 24 1 + 189.41898 349.50000 804.56632 189.24512 110 24 1 + 190.42060 351.50000 808.82329 190.24642 110 24 1 + 149.93259 351.50000 1446.86401 149.15843 110 10 1 + 150.98074 353.50000 1457.01744 150.20516 110 10 1 + 152.02888 355.50000 1467.17087 151.25188 110 10 1 + 153.07702 357.50000 1477.32430 152.29861 110 10 1 + 154.12516 359.50000 1487.47774 153.34534 110 10 1 + 155.17330 361.50000 1497.63117 154.39206 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21648,16 +21802,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 279.500 '99_Aanvulzand' - -9.00 152.563 '5_Klei_siltig' - -11.00 537.080 '6_Siltig_zand' - -17.50 104.135 '7_Klei_met_zandlagen' - -18.50 197.320 '6_Siltig_zand' - -20.50 114.148 '7_Klei_met_zandlagen' - -21.50 347.578 '9A_Zand_Pleistoceen' - -25.00 881.081 '9B_Zand_Pleistoceen' - -32.00 186.408 '17_Klei_zandlagen' - -33.00 150.729 '9B_Zand_Pleistoceen' + 5.50 291.352 '99_Aanvulzand' + -9.00 156.012 '5_Klei_siltig' + -11.00 548.802 '6_Siltig_zand' + -17.50 105.778 '7_Klei_met_zandlagen' + -18.50 200.805 '6_Siltig_zand' + -20.50 115.744 '7_Klei_met_zandlagen' + -21.50 354.697 '9A_Zand_Pleistoceen' + -25.00 893.904 '9B_Zand_Pleistoceen' + -32.00 187.917 '17_Klei_zandlagen' + -33.00 152.553 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -21672,16 +21826,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 87.83 '99_Aanvulzand' - -9.00 27.74 '5_Klei_siltig' - -11.00 144.17 '6_Siltig_zand' - -17.50 23.94 '7_Klei_met_zandlagen' - -18.50 52.97 '6_Siltig_zand' - -20.50 26.24 '7_Klei_met_zandlagen' - -21.50 119.55 '9A_Zand_Pleistoceen' - -25.00 303.04 '9B_Zand_Pleistoceen' - -32.00 42.85 '17_Klei_zandlagen' - -33.00 51.84 '9B_Zand_Pleistoceen' + 5.50 91.56 '99_Aanvulzand' + -9.00 28.37 '5_Klei_siltig' + -11.00 147.32 '6_Siltig_zand' + -17.50 24.32 '7_Klei_met_zandlagen' + -18.50 53.90 '6_Siltig_zand' + -20.50 26.61 '7_Klei_met_zandlagen' + -21.50 122.00 '9A_Zand_Pleistoceen' + -25.00 307.45 '9B_Zand_Pleistoceen' + -32.00 43.20 '17_Klei_zandlagen' + -33.00 52.47 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -21826,7 +21980,7 @@ Percentage [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=36 +DataCount=37 [COLUMN INDICATION] Slide plane position Theta min @@ -21836,8 +21990,9 @@ Q max [END OF COLUMN INDICATION] [DATA] 1.00000 0.00000 0.00000 0.00000 0.00000 - -0.16667 69.25300 36.29600 28.92791 2.23918 - -1.33333 69.25300 36.29600 115.71165 8.95673 + 0.75000 69.25300 36.29600 1.32832 0.10282 + -0.33333 69.25300 36.29600 37.78340 2.92465 + -1.41667 69.25300 36.29600 124.12436 9.60792 -2.50000 69.25300 36.29600 260.35122 20.15263 -3.00000 69.25300 36.29600 340.05058 26.32181 -4.25000 69.25300 36.29600 585.79025 45.34343 @@ -21876,7 +22031,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=35 +DataCount=36 [COLUMN INDICATION] Position Vertical stress @@ -21887,9 +22042,10 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 0.41667 5.83333 24.79535 1.91930 0.55900 0.32902 4.25063 - -0.75000 17.50000 74.38606 5.75790 0.55900 0.32902 4.25063 - -1.91667 29.16667 123.97677 9.59649 0.55900 0.32902 4.25063 + 0.87500 1.25000 5.31329 0.41128 0.55900 0.32902 4.25063 + 0.20833 7.91667 33.65084 2.60476 0.55900 0.32902 4.25063 + -0.87500 18.75000 79.69935 6.16917 0.55900 0.32902 4.25063 + -1.95833 29.58333 125.74787 9.73359 0.55900 0.32902 4.25063 -2.75000 37.50000 159.39871 12.33835 0.55900 0.32902 4.25063 -3.62500 46.25000 196.59174 15.21729 0.55900 0.32902 4.25063 -4.87500 58.75000 249.72464 19.33008 0.55900 0.32902 4.25063 @@ -21927,7 +22083,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -21938,216 +22094,222 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 110 0 1 - 1.30433 2.33333 9.91814 1.30433 110 13 1 - 2.60866 4.66667 19.83628 2.60866 110 13 1 - 3.91300 7.00000 29.75443 3.91300 110 13 1 - 5.21733 9.33333 39.67257 5.21733 110 13 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 7.82599 14.00000 59.50885 7.82599 110 13 1 - 9.13032 16.33333 69.42699 9.13032 110 13 1 - 10.43465 18.66667 79.34513 10.43465 110 13 1 - 11.73899 21.00000 89.26328 11.73899 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 0 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 14.34765 25.66667 109.09956 14.34765 110 13 1 - 15.65198 28.00000 119.01770 15.65198 110 13 1 - 16.95631 30.33333 128.93584 16.95631 110 13 1 - 18.26064 32.66667 138.85399 18.26064 110 13 1 + 0.00000 0.00000 0.00000 0.00000 110 13 1 + 0.27908 0.50000 2.12532 0.27950 110 0 1 + 0.55816 1.00000 4.25063 0.55900 110 0 1 + 0.83724 1.50000 6.37595 0.83850 110 0 1 + 1.11632 2.00000 8.50126 1.11800 110 0 1 + 1.39541 2.50000 10.62658 1.39750 110 0 1 + 1.39541 2.50000 10.62658 1.39750 110 0 1 + 2.60487 4.66667 19.83628 2.60866 110 0 1 + 3.81450 6.83333 29.04599 3.81983 110 0 1 + 5.02435 9.00000 38.25569 5.03099 110 0 1 + 6.23446 11.16667 47.46539 6.24216 110 0 1 + 7.44487 13.33333 56.67510 7.45332 110 0 1 + 7.44487 13.33333 56.67510 7.45332 110 0 1 + 8.65563 15.50000 65.88480 8.66449 110 0 1 + 9.86674 17.66667 75.09450 9.87565 110 0 1 + 11.07817 19.83333 84.30421 11.08682 110 0 1 + 12.28992 22.00000 93.51391 12.29799 110 0 1 + 13.50197 24.16667 102.72361 13.50915 110 0 1 + 13.50197 24.16667 102.72361 13.50915 110 0 1 + 14.71430 26.33333 111.93331 14.72032 110 0 1 + 15.92684 28.50000 121.14302 15.93148 110 0 1 + 17.13951 30.66667 130.35272 17.14265 110 0 1 + 18.35225 32.83333 139.56242 18.35381 110 0 1 19.56498 35.00000 148.77213 19.56498 110 13 1 - 19.56498 35.00000 148.77213 19.56498 110 0 1 - 20.12398 36.00000 153.02276 20.12398 110 13 1 - 20.68298 37.00000 157.27339 20.68298 110 13 1 - 21.24197 38.00000 161.52402 21.24197 110 0 1 - 21.80097 39.00000 165.77466 21.80097 110 0 1 - 22.35997 40.00000 170.02529 22.35997 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 0 1 - 23.75747 42.50000 180.65187 23.75747 110 0 1 - 25.15497 45.00000 191.27845 25.15497 110 13 1 - 26.55247 47.50000 201.90503 26.55247 110 13 1 - 27.94997 50.00000 212.53161 27.94997 110 13 1 - 29.34747 52.50000 223.15819 29.34747 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 13 1 - 30.74496 55.00000 233.78477 30.74496 110 0 1 - 32.14246 57.50000 244.41135 32.14246 110 13 1 - 33.53996 60.00000 255.03793 33.53996 110 13 1 - 34.93746 62.50000 265.66451 34.93746 110 13 1 - 36.33496 65.00000 276.29109 36.33496 110 0 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.89396 66.00000 280.54173 36.89396 110 13 1 - 37.45296 67.00000 284.79236 37.45296 110 13 1 - 38.01195 68.00000 289.04299 38.01195 110 13 1 - 38.57095 69.00000 293.29362 38.57095 110 13 1 - 39.12995 70.00000 297.54425 39.12995 110 0 1 + 19.56498 35.00000 148.77213 19.56498 110 13 1 + 20.12467 36.00000 153.02276 20.12398 110 13 1 + 20.68435 37.00000 157.27339 20.68298 110 13 1 + 21.24400 38.00000 161.52402 21.24197 110 13 1 + 21.80364 39.00000 165.77466 21.80097 110 13 1 + 22.36326 40.00000 170.02529 22.35997 110 13 1 + 22.36326 40.00000 170.02529 22.35997 110 13 1 + 23.76228 42.50000 180.65187 23.75747 110 13 1 + 25.16122 45.00000 191.27845 25.15497 110 13 1 + 26.56003 47.50000 201.90503 26.55247 110 13 1 + 27.95868 50.00000 212.53161 27.94997 110 13 1 + 29.35710 52.50000 223.15819 29.34747 110 13 1 + 29.35710 52.50000 223.15819 29.34747 110 13 1 + 30.75526 55.00000 233.78477 30.74496 110 13 1 + 32.15300 57.50000 244.41135 32.14246 110 13 1 + 33.55018 60.00000 255.03793 33.53996 110 13 1 + 34.94663 62.50000 265.66451 34.93746 110 13 1 + 36.34222 65.00000 276.29109 36.33496 110 13 1 + 36.34222 65.00000 276.29109 36.33496 110 13 1 + 36.90016 66.00000 280.54173 36.89396 110 13 1 + 37.45793 67.00000 284.79236 37.45296 110 13 1 + 38.01549 68.00000 289.04299 38.01195 110 13 1 + 38.57284 69.00000 293.29362 38.57095 110 13 1 + 39.12995 70.00000 297.54425 39.12995 110 13 1 39.12995 70.00000 297.54425 39.12995 110 13 1 - 39.68895 71.00000 301.79489 39.68895 110 13 1 - 40.24795 72.00000 306.04552 40.24795 110 0 1 - 40.80695 73.00000 310.29615 40.80695 110 13 1 - 41.36595 74.00000 314.54678 41.36595 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 13 1 - 42.93115 76.80000 326.44855 42.93115 110 13 1 - 43.93735 78.60000 334.09969 43.93735 110 13 1 - 44.94355 80.40000 341.75083 44.94355 110 13 1 - 45.94975 82.20000 349.40197 45.94975 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 47.96214 85.80000 364.70424 47.96214 110 0 1 - 48.96834 87.60000 372.35538 48.96834 110 13 1 - 49.97454 89.40000 380.00652 49.97454 110 13 1 - 50.98074 91.20000 387.65766 50.98074 110 0 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 52.21054 93.40000 397.00905 52.21054 110 13 1 - 52.43414 93.80000 398.70930 52.43414 110 13 1 - 52.65774 94.20000 400.40955 52.65774 110 0 1 - 52.88134 94.60000 402.10981 52.88134 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.66394 96.00000 408.06069 53.66394 110 0 1 - 54.22294 97.00000 412.31132 54.22294 110 13 1 - 54.78193 98.00000 416.56196 54.78193 110 13 1 - 55.34093 99.00000 420.81259 55.34093 110 0 1 - 55.89993 100.00000 425.06322 55.89993 110 0 1 - 73.34751 100.00000 237.82828 73.34751 110 31 1 - 73.78760 101.50000 239.25525 73.78760 110 31 1 - 74.22768 103.00000 240.68222 74.22768 110 31 1 - 74.66777 104.50000 242.10919 74.66777 110 31 1 - 75.10785 106.00000 243.53616 75.10785 110 31 1 - 75.54794 107.50000 244.96313 75.54794 110 31 1 - 75.54794 107.50000 243.74064 75.54794 110 31 1 - 75.98802 109.00000 245.16048 75.98802 110 31 1 - 76.42811 110.50000 246.58033 76.42811 110 31 1 - 76.86819 112.00000 248.00018 76.86819 110 31 1 - 77.30828 113.50000 249.42003 77.30828 110 31 1 - 77.74836 115.00000 250.83988 77.74836 110 31 1 - 77.74836 115.00000 249.88629 77.74836 110 31 1 - 78.04175 116.00000 250.82926 78.04175 110 31 1 - 78.33514 117.00000 251.77223 78.33514 110 31 1 - 78.62853 118.00000 252.71519 78.62853 110 31 1 - 78.92192 119.00000 253.65816 78.92192 110 31 1 - 79.21531 120.00000 254.60113 79.21531 110 31 1 - 66.59545 120.00000 361.58270 66.59545 110 18 1 - 67.87803 122.60000 368.54652 67.87803 110 18 1 - 69.16061 125.20000 375.51033 69.16061 110 18 1 - 70.44318 127.80000 382.47415 70.44318 110 18 1 - 71.72576 130.40000 389.43796 71.72576 110 18 1 - 73.00834 133.00000 396.40178 73.00834 110 0 1 - 73.00834 133.00000 395.77026 73.00834 110 0 1 - 74.29092 135.60000 402.72298 74.29092 110 18 1 - 75.57350 138.20000 409.67570 75.57350 110 18 1 - 76.85608 140.80000 416.62842 76.85608 110 18 1 - 78.13866 143.40000 423.58114 78.13866 110 0 1 - 79.42124 146.00000 430.53387 79.42124 110 18 1 - 79.42124 146.00000 429.99744 79.42124 110 18 1 - 80.70382 148.60000 436.94149 80.70382 110 18 1 - 81.98640 151.20000 443.88555 81.98640 110 18 1 - 83.26897 153.80000 450.82961 83.26897 110 18 1 - 84.55155 156.40000 457.77367 84.55155 110 18 1 - 85.83413 159.00000 464.71773 85.83413 110 18 1 - 85.83413 159.00000 464.25481 85.83413 110 0 1 - 87.11671 161.60000 471.19195 87.11671 110 18 1 - 88.39929 164.20000 478.12909 88.39929 110 18 1 - 89.68187 166.80000 485.06624 89.68187 110 0 1 - 90.96445 169.40000 492.00338 90.96445 110 18 1 - 92.24703 172.00000 498.94052 92.24703 110 18 1 - 92.24703 172.00000 498.53536 92.24703 110 19 1 - 93.52961 174.60000 505.46687 93.52961 110 0 1 - 94.81219 177.20000 512.39837 94.81219 110 19 1 - 96.09476 179.80000 519.32988 96.09476 110 0 1 - 97.37734 182.40000 526.26139 97.37734 110 19 1 - 98.65992 185.00000 533.19290 98.65992 110 19 1 - 106.80501 185.00000 454.34834 106.80501 110 24 1 - 105.73696 189.80000 449.80485 105.73696 110 24 1 - 104.66891 194.60000 445.26137 104.66891 110 24 1 - 103.60086 199.40000 440.71789 103.60086 110 24 1 - 102.53281 204.20000 436.17440 102.53281 110 24 1 - 101.46476 209.00000 431.63092 101.46476 110 24 1 - 93.72693 209.00000 506.25503 93.72693 110 19 1 - 94.71353 211.00000 511.58403 94.71353 110 19 1 - 95.70012 213.00000 516.91303 95.70012 110 19 1 - 96.68672 215.00000 522.24203 96.68672 110 19 1 - 97.67332 217.00000 527.57103 97.67332 110 19 1 - 98.65992 219.00000 532.90003 98.65992 110 19 1 - 98.65992 219.00000 532.67014 98.65992 110 19 1 - 99.64652 221.00000 537.99684 99.64652 110 19 1 - 100.63312 223.00000 543.32354 100.63312 110 19 1 - 101.61972 225.00000 548.65024 101.61972 110 19 1 - 102.60632 227.00000 553.97694 102.60632 110 19 1 - 103.59292 229.00000 559.30365 103.59292 110 0 1 - 112.14526 229.00000 474.81486 112.14526 110 24 1 - 112.94630 231.00000 478.20639 112.94630 110 24 1 - 113.74733 233.00000 481.59793 113.74733 110 24 1 - 114.54837 235.00000 484.98946 114.54837 110 24 1 - 115.34941 237.00000 488.38100 115.34941 110 0 1 - 116.15045 239.00000 491.77253 116.15045 110 24 1 - 91.06515 239.00000 901.00765 91.06515 110 0 1 - 91.48907 239.90000 905.20199 91.48907 110 10 1 - 91.91300 240.80000 909.39634 91.91300 110 10 1 - 92.33692 241.70000 913.59068 92.33692 110 10 1 - 92.76084 242.60000 917.78503 92.76084 110 10 1 - 93.18477 243.50000 921.97938 93.18477 110 10 1 - 93.18477 243.50000 916.46011 93.18477 110 10 1 - 94.59785 246.50000 930.35756 94.59785 110 10 1 - 96.01093 249.50000 944.25502 96.01093 110 10 1 - 97.42401 252.50000 958.15248 97.42401 110 10 1 - 98.83709 255.50000 972.04994 98.83709 110 10 1 - 100.25017 258.50000 985.94739 100.25017 110 0 1 - 100.25017 258.50000 982.10999 100.25017 110 10 1 - 100.53278 259.10000 984.87866 100.53278 110 10 1 - 100.81540 259.70000 987.64733 100.81540 110 10 1 - 101.09802 260.30000 990.41601 101.09802 110 0 1 - 101.38063 260.90000 993.18468 101.38063 110 10 1 - 101.66325 261.50000 995.95335 101.66325 110 10 1 - 101.66325 261.50000 993.68312 101.66325 110 10 1 - 102.84081 264.00000 1005.19296 102.84081 110 10 1 - 104.01838 266.50000 1016.70281 104.01838 110 0 1 - 105.19595 269.00000 1028.21265 105.19595 110 10 1 - 106.37351 271.50000 1039.72249 106.37351 110 10 1 - 107.55108 274.00000 1051.23234 107.55108 110 0 1 - 107.55108 274.00000 1048.30000 107.55108 110 10 1 - 109.01650 276.80000 1062.58341 109.01650 110 0 1 - 110.48191 279.60000 1076.86681 110.48191 110 10 1 - 111.94733 282.40000 1091.15022 111.94733 110 10 1 - 113.41274 285.20000 1105.43363 113.41274 110 10 1 - 114.87816 288.00000 1119.71703 114.87816 110 0 1 - 114.87816 288.00000 1117.54110 114.87816 110 10 1 - 116.34358 290.80000 1131.79675 116.34358 110 0 1 - 117.80899 293.60000 1146.05240 117.80899 110 10 1 - 119.27441 296.40000 1160.30805 119.27441 110 10 1 - 120.73983 299.20000 1174.56370 120.73983 110 0 1 - 122.20524 302.00000 1188.81935 122.20524 110 10 1 - 122.20524 302.00000 1187.24924 122.20524 110 0 1 - 123.67066 304.80000 1201.48606 123.67066 110 10 1 - 125.13607 307.60000 1215.72288 125.13607 110 0 1 - 126.60149 310.40000 1229.95970 126.60149 110 0 1 - 128.06691 313.20000 1244.19653 128.06691 110 10 1 - 129.53232 316.00000 1258.43335 129.53232 110 10 1 - 129.53232 316.00000 1257.26349 129.53232 110 10 1 - 130.99774 318.80000 1271.48707 130.99774 110 10 1 - 132.46316 321.60000 1285.71066 132.46316 110 10 1 - 133.92857 324.40000 1299.93425 133.92857 110 10 1 - 135.39399 327.20000 1314.15783 135.39399 110 10 1 - 136.85940 330.00000 1328.38142 136.85940 110 10 1 - 136.85940 330.00000 1327.48743 136.85940 110 10 1 - 138.32482 332.80000 1341.70145 138.32482 110 10 1 - 139.79024 335.60000 1355.91546 139.79024 110 10 1 - 141.25565 338.40000 1370.12948 141.25565 110 0 1 - 142.72107 341.20000 1384.34349 142.72107 110 10 1 - 144.18648 344.00000 1398.55751 144.18648 110 0 1 - 183.90487 344.00000 782.01919 183.90487 110 24 1 - 184.90617 346.00000 786.27700 184.90617 110 24 1 - 185.90747 348.00000 790.53482 185.90747 110 24 1 - 186.90876 350.00000 794.79264 186.90876 110 24 1 - 187.91006 352.00000 799.05046 187.91006 110 24 1 - 188.91136 354.00000 803.30828 188.91136 110 24 1 - 148.11171 354.00000 1436.68533 148.11171 110 0 1 - 149.15843 356.00000 1446.83859 149.15843 110 0 1 - 150.20516 358.00000 1456.99184 150.20516 110 0 1 - 151.25188 360.00000 1467.14509 151.25188 110 0 1 - 152.29861 362.00000 1477.29835 152.29861 110 10 1 - 153.34534 364.00000 1487.45160 153.34534 110 10 1 + 39.68683 71.00000 301.79489 39.68895 110 0 1 + 40.24348 72.00000 306.04552 40.24795 110 0 1 + 40.79991 73.00000 310.29615 40.80695 110 0 1 + 41.35614 74.00000 314.54678 41.36595 110 0 1 + 41.91219 75.00000 318.79741 41.92495 110 0 1 + 41.91219 75.00000 318.79741 41.92495 110 0 1 + 42.91266 76.80000 326.44855 42.93115 110 0 1 + 43.91267 78.60000 334.09969 43.93735 110 0 1 + 44.91227 80.40000 341.75083 44.94355 110 0 1 + 45.91153 82.20000 349.40197 45.94975 110 0 1 + 46.91053 84.00000 357.05310 46.95594 110 0 1 + 46.91053 84.00000 357.05310 46.95594 110 0 1 + 47.90931 85.80000 364.70424 47.96214 110 0 1 + 48.90794 87.60000 372.35538 48.96834 110 0 1 + 49.90644 89.40000 380.00652 49.97454 110 0 1 + 50.90487 91.20000 387.65766 50.98074 110 0 1 + 51.90324 93.00000 395.30879 51.98694 110 0 1 + 51.90324 93.00000 395.30879 51.98694 110 0 1 + 52.01147 93.40000 397.00905 52.21054 110 0 1 + 51.96229 93.80000 398.70930 52.43414 110 0 1 + 51.86049 94.20000 400.40955 52.65774 110 0 1 + 51.81087 94.60000 402.10981 52.88134 110 0 1 + 51.91822 95.00000 403.81006 53.10494 110 0 1 + 51.91822 95.00000 403.81006 53.10494 110 0 1 + 52.47013 96.00000 408.06069 53.66394 110 0 1 + 53.02205 97.00000 412.31132 54.22294 110 0 1 + 53.57398 98.00000 416.56196 54.78193 110 0 1 + 54.12593 99.00000 420.81259 55.34093 110 0 1 + 54.67790 100.00000 425.06322 55.89993 110 0 1 + 73.10311 100.00000 237.82828 73.34751 110 0 1 + 73.54110 101.50000 239.25525 73.78760 110 0 1 + 73.97911 103.00000 240.68222 74.22768 110 0 1 + 74.41714 104.50000 242.10919 74.66777 110 0 1 + 74.85519 106.00000 243.53616 75.10785 110 0 1 + 75.29327 107.50000 244.96313 75.54794 110 0 1 + 75.29327 107.50000 243.74064 75.54794 110 0 1 + 75.73139 109.00000 245.16048 75.98802 110 0 1 + 76.16954 110.50000 246.58033 76.42811 110 0 1 + 76.60774 112.00000 248.00018 76.86819 110 0 1 + 77.04597 113.50000 249.42003 77.30828 110 0 1 + 77.48424 115.00000 250.83988 77.74836 110 0 1 + 77.48424 115.00000 249.88629 77.74836 110 0 1 + 77.77645 116.00000 250.82926 78.04175 110 0 1 + 78.06868 117.00000 251.77223 78.33514 110 0 1 + 78.36094 118.00000 252.71519 78.62853 110 0 1 + 78.65321 119.00000 253.65816 78.92192 110 0 1 + 78.94551 120.00000 254.60113 79.21531 110 0 1 + 66.05583 120.00000 361.58270 66.59545 110 0 1 + 67.33295 122.60000 368.54652 67.87803 110 0 1 + 68.61040 125.20000 375.51033 69.16061 110 0 1 + 69.88819 127.80000 382.47415 70.44318 110 0 1 + 71.16633 130.40000 389.43796 71.72576 110 0 1 + 72.44484 133.00000 396.40178 73.00834 110 0 1 + 72.44484 133.00000 395.77026 73.00834 110 0 1 + 73.72374 135.60000 402.72298 74.29092 110 0 1 + 75.00302 138.20000 409.67570 75.57350 110 0 1 + 76.28270 140.80000 416.62842 76.85608 110 0 1 + 77.56278 143.40000 423.58114 78.13866 110 0 1 + 78.84328 146.00000 430.53387 79.42124 110 0 1 + 78.84328 146.00000 429.99744 79.42124 110 0 1 + 80.12419 148.60000 436.94149 80.70382 110 0 1 + 81.40553 151.20000 443.88555 81.98640 110 0 1 + 82.68730 153.80000 450.82961 83.26897 110 0 1 + 83.96950 156.40000 457.77367 84.55155 110 0 1 + 85.25214 159.00000 464.71773 85.83413 110 0 1 + 85.25214 159.00000 464.25481 85.83413 110 0 1 + 86.53522 161.60000 471.19195 87.11671 110 0 1 + 87.81874 164.20000 478.12909 88.39929 110 0 1 + 89.10269 166.80000 485.06624 89.68187 110 0 1 + 90.38709 169.40000 492.00338 90.96445 110 0 1 + 91.67193 172.00000 498.94052 92.24703 110 0 1 + 91.67193 172.00000 498.53536 92.24703 110 0 1 + 92.95721 174.60000 505.46687 93.52961 110 0 1 + 94.24293 177.20000 512.39837 94.81219 110 0 1 + 95.52908 179.80000 519.32988 96.09476 110 0 1 + 96.81567 182.40000 526.26139 97.37734 110 0 1 + 98.10267 185.00000 533.19290 98.65992 110 0 1 + 106.49155 185.00000 454.34834 106.80501 110 0 1 + 105.42558 189.80000 449.80485 105.73696 110 0 1 + 104.35975 194.60000 445.26137 104.66891 110 0 1 + 103.29405 199.40000 440.71789 103.60086 110 0 1 + 102.22848 204.20000 436.17440 102.53281 110 0 1 + 101.16303 209.00000 431.63092 101.46476 110 0 1 + 93.19053 209.00000 506.25503 93.72693 110 0 1 + 94.18198 211.00000 511.58403 94.71353 110 0 1 + 95.17364 213.00000 516.91303 95.70012 110 0 1 + 96.16549 215.00000 522.24203 96.68672 110 0 1 + 97.15753 217.00000 527.57103 97.67332 110 0 1 + 98.14974 219.00000 532.90003 98.65992 110 0 1 + 98.14974 219.00000 532.67014 98.65992 110 0 1 + 99.14211 221.00000 537.99684 99.64652 110 0 1 + 100.13463 223.00000 543.32354 100.63312 110 0 1 + 101.12729 225.00000 548.65024 101.61972 110 0 1 + 102.12006 227.00000 553.97694 102.60632 110 0 1 + 103.11294 229.00000 559.30365 103.59292 110 0 1 + 111.87527 229.00000 474.81486 112.14526 110 0 1 + 112.67989 231.00000 478.20639 112.94630 110 0 1 + 113.48456 233.00000 481.59793 113.74733 110 0 1 + 114.28925 235.00000 484.98946 114.54837 110 0 1 + 115.09396 237.00000 488.38100 115.34941 110 0 1 + 115.89868 239.00000 491.77253 116.15045 110 0 1 + 89.94618 239.00000 901.00765 91.06515 110 0 1 + 90.37747 239.90000 905.20199 91.48907 110 0 1 + 90.80874 240.80000 909.39634 91.91300 110 0 1 + 91.24000 241.70000 913.59068 92.33692 110 0 1 + 91.67123 242.60000 917.78503 92.76084 110 0 1 + 92.10244 243.50000 921.97938 93.18477 110 0 1 + 92.10244 243.50000 916.46011 93.18477 110 0 1 + 93.53956 246.50000 930.35756 94.59785 110 0 1 + 94.97618 249.50000 944.25502 96.01093 110 0 1 + 96.41219 252.50000 958.15248 97.42401 110 0 1 + 97.84748 255.50000 972.04994 98.83709 110 0 1 + 99.28193 258.50000 985.94739 100.25017 110 0 1 + 99.28193 258.50000 982.10999 100.25017 110 0 1 + 99.56871 259.10000 984.87866 100.53278 110 0 1 + 99.85545 259.70000 987.64733 100.81540 110 0 1 + 100.14215 260.30000 990.41601 101.09802 110 0 1 + 100.42882 260.90000 993.18468 101.38063 110 0 1 + 100.71544 261.50000 995.95335 101.66325 110 0 1 + 100.71544 261.50000 993.68312 101.66325 110 0 1 + 101.90928 264.00000 1005.19296 102.84081 110 0 1 + 103.10241 266.50000 1016.70281 104.01838 110 0 1 + 104.29480 269.00000 1028.21265 105.19595 110 0 1 + 105.48643 271.50000 1039.72249 106.37351 110 0 1 + 106.67730 274.00000 1051.23234 107.55108 110 0 1 + 106.67730 274.00000 1048.30000 107.55108 110 0 1 + 108.15667 276.80000 1062.58341 109.01650 110 0 1 + 109.63506 279.60000 1076.86681 110.48191 110 0 1 + 111.11247 282.40000 1091.15022 111.94733 110 0 1 + 112.58891 285.20000 1105.43363 113.41274 110 0 1 + 114.06438 288.00000 1119.71703 114.87816 110 0 1 + 114.06438 288.00000 1117.54110 114.87816 110 0 1 + 115.53890 290.80000 1131.79675 116.34358 110 0 1 + 117.01250 293.60000 1146.05240 117.80899 110 0 1 + 118.48520 296.40000 1160.30805 119.27441 110 0 1 + 119.95702 299.20000 1174.56370 120.73983 110 0 1 + 121.42800 302.00000 1188.81935 122.20524 110 0 1 + 121.42800 302.00000 1187.24924 122.20524 110 0 1 + 122.89818 304.80000 1201.48606 123.67066 110 0 1 + 124.36757 307.60000 1215.72288 125.13607 110 0 1 + 125.83624 310.40000 1229.95970 126.60149 110 0 1 + 127.30422 313.20000 1244.19653 128.06691 110 0 1 + 128.77154 316.00000 1258.43335 129.53232 110 0 1 + 128.77154 316.00000 1257.26349 129.53232 110 0 1 + 130.23826 318.80000 1271.48707 130.99774 110 0 1 + 131.70442 321.60000 1285.71066 132.46316 110 0 1 + 133.17006 324.40000 1299.93425 133.92857 110 0 1 + 134.63524 327.20000 1314.15783 135.39399 110 0 1 + 136.10001 330.00000 1328.38142 136.85940 110 0 1 + 136.10001 330.00000 1327.48743 136.85940 110 0 1 + 137.56441 332.80000 1341.70145 138.32482 110 0 1 + 139.02850 335.60000 1355.91546 139.79024 110 0 1 + 140.49234 338.40000 1370.12948 141.25565 110 0 1 + 141.95598 341.20000 1384.34349 142.72107 110 0 1 + 143.41949 344.00000 1398.55751 144.18648 110 0 1 + 183.73230 344.00000 782.01919 183.90487 110 0 1 + 184.73328 346.00000 786.27700 184.90617 110 0 1 + 185.73425 348.00000 790.53482 185.90747 110 0 1 + 186.73522 350.00000 794.79264 186.90876 110 0 1 + 187.73620 352.00000 799.05046 187.91006 110 0 1 + 188.73717 354.00000 803.30828 188.91136 110 0 1 + 147.33755 354.00000 1436.68533 148.11171 110 0 1 + 148.38285 356.00000 1446.83859 149.15843 110 0 1 + 149.42816 358.00000 1456.99184 150.20516 110 0 1 + 150.47347 360.00000 1467.14509 151.25188 110 0 1 + 151.51879 362.00000 1477.29835 152.29861 110 0 1 + 152.56410 364.00000 1487.45160 153.34534 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -22160,16 +22322,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 279.500 '99_Aanvulzand' - -9.00 152.563 '5_Klei_siltig' - -11.00 537.080 '6_Siltig_zand' - -17.50 104.135 '7_Klei_met_zandlagen' - -18.50 197.320 '6_Siltig_zand' - -20.50 114.148 '7_Klei_met_zandlagen' - -21.50 347.578 '9A_Zand_Pleistoceen' - -25.00 881.081 '9B_Zand_Pleistoceen' - -32.00 186.408 '17_Klei_zandlagen' - -33.00 150.729 '9B_Zand_Pleistoceen' + 5.50 278.688 '99_Aanvulzand' + -9.00 152.048 '5_Klei_siltig' + -11.00 533.374 '6_Siltig_zand' + -17.50 103.827 '7_Klei_met_zandlagen' + -18.50 196.301 '6_Siltig_zand' + -20.50 113.887 '7_Klei_met_zandlagen' + -21.50 344.123 '9A_Zand_Pleistoceen' + -25.00 875.586 '9B_Zand_Pleistoceen' + -32.00 186.235 '17_Klei_zandlagen' + -33.00 149.951 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -22184,16 +22346,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -87.83 '99_Aanvulzand' - -9.00 -27.74 '5_Klei_siltig' - -11.00 -144.17 '6_Siltig_zand' - -17.50 -23.94 '7_Klei_met_zandlagen' - -18.50 -52.97 '6_Siltig_zand' - -20.50 -26.24 '7_Klei_met_zandlagen' - -21.50 -119.55 '9A_Zand_Pleistoceen' - -25.00 -303.04 '9B_Zand_Pleistoceen' - -32.00 -42.85 '17_Klei_zandlagen' - -33.00 -51.84 '9B_Zand_Pleistoceen' + 5.50 -87.58 '99_Aanvulzand' + -9.00 -27.65 '5_Klei_siltig' + -11.00 -143.17 '6_Siltig_zand' + -17.50 -23.87 '7_Klei_met_zandlagen' + -18.50 -52.69 '6_Siltig_zand' + -20.50 -26.18 '7_Klei_met_zandlagen' + -21.50 -118.36 '9A_Zand_Pleistoceen' + -25.00 -301.15 '9B_Zand_Pleistoceen' + -32.00 -42.81 '17_Klei_zandlagen' + -33.00 -51.57 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -25374,28 +25536,34 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -25601,7 +25769,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -25615,9 +25783,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 -24.45381 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 146.72212 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 -285.38504 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -28.61484 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 142.89370 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -304.40120 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -25644,267 +25812,273 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.12 : Percentage mobilized resistance left - 17.00 : Percentage mobilized resistance right - 2337.77 : Effective left - 2174.51 : Effective right + 10.94 : Percentage mobilized resistance left + 17.19 : Percentage mobilized resistance right + 2301.33 : Effective left + 2198.26 : Effective right 6349.00 : Water pressure left - 6349.00 : Water pressure right + 6261.81 : Water pressure right 21027.02 : Max effective resistance left 12789.08 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 697.60 : Vertical force left - 663.09 : Vertical force right + 686.55 : Vertical force left + 670.48 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --697.60 : Active force -663.09 : Passive force --697.60 : Plugged active force -663.09 : Plugged passive force +-686.55 : Active force +670.48 : Passive force +-686.55 : Plugged active force +670.48 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor --34.51 : Resulting Vertical Force Unplugged --34.51 : Resulting Vertical Force Plugged +-16.07 : Resulting Vertical Force Unplugged +-16.07 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 24.45381 0.00000 - 5.70589 24.45381 0.00305 - 11.41178 24.45381 0.00602 - 17.11766 24.45381 0.00883 - 22.82355 24.45381 0.01139 - 28.52944 24.45381 0.01363 - 28.52944 24.45381 0.01363 - 34.23533 24.45381 0.01545 - 39.94122 24.45381 0.01679 - 45.64710 24.45381 0.01755 - 51.35299 24.45381 0.01766 - 57.05888 24.45381 0.01703 - 57.05888 24.45381 0.01703 - 62.76477 24.45381 0.01559 - 68.47066 24.45381 0.01324 - 74.17654 24.45381 0.00992 - 79.88243 24.45381 0.00553 - 85.58832 24.45381 0.00000 - 85.58832 -122.26831 0.00000 - 73.36149 -122.26831 -0.00273 - 61.13466 -122.26831 -0.00566 - 48.90783 -122.26831 -0.00875 - 36.68100 -122.26831 -0.01197 - 24.45416 -122.26831 -0.01528 - 24.45416 -122.26831 -0.01528 - -6.11291 -122.26831 -0.02378 - -36.67999 -122.26831 -0.03218 - -67.24707 -122.26831 -0.03997 - -97.81415 -122.26831 -0.04666 - -128.38123 -122.26831 -0.05173 - -128.38123 -122.26831 -0.05173 - -158.94830 -122.26831 -0.05470 - -189.51538 -122.26831 -0.05505 - -220.08246 -122.26831 -0.05229 - -250.64954 -122.26831 -0.04590 - -281.21661 -122.26831 -0.03539 - -281.21643 -122.27054 -0.03539 - -293.44749 -122.39080 -0.02992 - -305.70023 -122.68030 -0.02368 - -317.98725 -123.08073 -0.01664 - -330.32048 -123.60408 -0.00875 - -342.71210 -124.24838 0.00000 - -342.71216 161.13541 0.00000 - -326.63554 160.37737 0.00964 - -310.64055 159.50327 0.02014 - -294.73870 158.51491 0.03146 - -278.94132 157.41401 0.04356 - -263.25959 156.20212 0.05639 - -263.25938 156.20003 0.05639 - -235.35435 153.79885 0.08119 - -207.91212 151.05896 0.10801 - -180.99309 147.98642 0.13660 - -154.65668 144.58603 0.16674 - -128.96157 140.86143 0.19819 - -128.96169 140.85945 0.19819 - -103.94850 137.01445 0.23074 - -79.65458 132.86786 0.26417 - -56.13414 128.42027 0.29829 - -33.44136 123.67137 0.33290 - -11.63059 118.61996 0.36779 - -11.63083 118.72511 0.36779 - -6.90270 117.71460 1.17163 - -2.21770 116.40118 3.07708 - 2.39785 114.22172 5.34837 - 6.91221 111.45494 7.24972 - 11.31181 108.50525 8.04534 - 11.30908 108.43817 8.04534 - 21.74821 100.31145 8.03906 - 31.36478 91.98696 8.03272 - 40.13899 83.46410 8.02631 - 48.05097 74.74224 8.01979 - 55.08079 65.82082 8.01316 - 55.08059 65.82221 8.01316 - 64.39807 58.39492 8.00293 - 72.59425 50.87128 7.99233 - 79.65460 43.25055 7.98133 - 85.56452 35.53207 7.96987 - 90.30930 27.71526 7.95793 - 90.30940 27.71571 7.95793 - 90.71796 26.75946 7.95671 - 91.11217 25.80188 7.95548 - 91.49201 24.84300 7.95425 - 91.85746 23.88279 7.95301 - 92.20849 22.92127 7.95177 - 92.20847 22.92139 7.95177 - 94.75318 14.88626 7.94033 - 96.26000 7.56745 7.92846 - 96.83167 1.03243 7.91615 - 96.57407 -4.71785 7.90339 - 95.58856 -9.78556 7.89018 - 95.58860 -9.78525 7.89018 - 94.43020 -13.35034 7.88011 - 92.92502 -16.72105 7.86981 - 91.09248 -19.89723 7.85926 - 88.95207 -22.87830 7.84849 - 86.52334 -25.66361 7.83749 - 86.52309 -25.66125 7.83749 - 78.28000 -37.38629 7.80785 - 67.25484 -47.11949 7.77687 - 53.93612 -55.02667 7.74477 - 38.80051 -61.09305 7.71178 - 22.32861 -65.30324 7.67811 - 22.32711 -65.28409 7.67811 - 5.88635 -60.72867 7.64407 - -9.01449 -53.43516 7.60993 - -21.66092 -43.38379 7.57591 - -31.35146 -30.76394 7.54222 - -37.54696 -16.86087 7.50906 - -37.54515 -16.86038 7.50906 - -40.53705 -6.12112 7.47661 - -40.71070 4.81935 7.44486 - -38.01311 15.96607 7.41377 - -32.43402 26.81646 7.38328 - -24.15412 36.67951 7.35335 - -24.15566 36.67209 7.35335 - -13.84171 42.69705 7.32388 - -1.93684 48.91068 7.29466 - 11.60860 55.31762 7.26544 - 26.84541 61.92177 7.23599 - 43.82529 68.72632 7.20609 - 43.82515 68.72620 7.20609 - 62.53073 75.14438 7.17547 - 82.90284 81.59276 7.14378 - 104.97381 88.21243 7.11065 - 128.78811 95.00285 7.07568 - 154.38996 101.96247 7.03851 - 154.39307 101.94189 7.03851 - 175.16862 105.79326 7.00815 - 196.70218 109.52181 6.97601 - 218.64910 108.32670 6.94187 - 239.68642 101.93489 6.90551 - 259.37521 94.82532 6.86673 - 259.37411 94.81418 6.86673 - 277.39145 85.37258 6.82530 - 293.52851 76.01157 6.78105 - 307.80150 66.73195 6.73384 - 320.23057 57.59155 6.68352 - 330.85436 48.69474 6.62994 - 330.85228 48.68343 6.62994 - 339.70348 39.87560 6.57299 - 346.82135 31.35034 6.51259 - 352.26250 23.10832 6.44868 - 356.08360 15.15004 6.38121 - 358.34145 7.47588 6.31012 - 358.33958 7.49751 6.31012 - 359.41585 3.29612 6.23538 - 359.67036 -0.72016 6.15699 - 359.13317 -4.65568 6.07496 - 357.80580 -8.62551 5.98928 - 355.67986 -12.64194 5.89998 - 355.68017 -12.64060 5.89998 - 354.29079 -18.22635 5.85861 - 352.40091 -23.76266 5.81651 - 350.01499 -29.24967 5.77369 - 347.13745 -34.68754 5.73015 - 343.77270 -40.07645 5.68589 - 343.77217 -40.07444 5.68589 - 329.05541 -57.95021 5.53324 - 309.05383 -75.30811 5.37306 - 283.92138 -92.15768 5.20593 - 253.80895 -108.50994 5.03242 - 218.86389 -124.37741 4.85310 - 218.86456 -124.37539 4.85310 - 211.30734 -127.52919 4.81660 - 203.56143 -130.66467 4.77990 - 195.62794 -133.78195 4.74301 - 187.50803 -136.87739 4.70595 - 179.20335 -139.93807 4.66872 - 179.19752 -139.94024 4.66872 - 142.80165 -150.42240 4.51190 - 104.57766 -153.80843 4.35283 - 66.45393 -150.51655 4.19210 - 29.65078 -143.24793 4.03030 - -4.84077 -132.02809 3.86802 - -4.83757 -132.00892 3.86802 - -41.27710 -127.87390 3.68642 - -76.22460 -121.35644 3.50566 - -109.01701 -112.48513 3.32636 - -138.99913 -101.28733 3.14919 - -165.52322 -87.78916 2.97479 - -165.52146 -87.78675 2.97479 - -187.99053 -72.80556 2.80376 - -206.34749 -58.41285 2.63647 - -220.75562 -44.59759 2.47322 - -231.37483 -31.34677 2.31429 - -238.36110 -18.64540 2.15997 - -238.36088 -18.65240 2.15997 - -241.99750 -7.41425 2.01048 - -242.56287 3.28815 1.86581 - -240.20444 13.47305 1.72591 - -235.06453 23.15895 1.59075 - -227.28025 32.36459 1.46026 - -227.29385 32.47973 1.46026 - -216.93547 41.32263 1.33435 - -204.27098 48.90335 1.21277 - -189.67865 55.10132 1.09521 - -173.53881 59.96467 0.98140 - -156.21885 63.53787 0.87104 - -156.21800 63.52586 0.87104 - -138.05851 65.97977 0.76382 - -119.38261 67.22005 0.65934 - -100.52562 67.27803 0.55723 - -81.81477 66.18038 0.45713 - -63.57041 63.94914 0.35865 - -63.57158 63.94436 0.35865 - -51.43018 57.44816 0.28910 - -40.60089 50.82336 0.22007 - -31.10934 44.07087 0.15146 - -22.98100 37.19143 0.08319 - -16.24120 30.18557 0.01514 - -16.24120 30.18531 0.01514 - -10.68832 25.25137 -0.05276 - -6.17746 19.76527 -0.12055 - -2.81898 13.72773 -0.18826 - -0.72310 7.13926 -0.25594 - 0.00001 0.00004 -0.32361 + 0.00000 28.61484 0.00000 + 1.43053 28.60234 0.00072 + 2.85982 28.56484 0.00143 + 4.28660 28.50234 0.00215 + 5.70963 28.41484 0.00286 + 7.12767 28.30234 0.00357 + 7.12767 28.30234 0.00357 + 13.20116 27.76067 0.00657 + 19.15729 27.21901 0.00941 + 24.99607 26.67734 0.01201 + 30.71748 26.13567 0.01431 + 36.32152 25.59401 0.01623 + 36.32152 25.59401 0.01623 + 41.80821 25.05234 0.01769 + 47.17754 24.51067 0.01864 + 52.42950 23.96901 0.01901 + 57.56411 23.42734 0.01873 + 62.58135 22.88567 0.01774 + 62.58135 22.88567 0.01774 + 67.48123 22.34401 0.01597 + 72.26376 21.80234 0.01338 + 76.92892 21.26067 0.00988 + 81.47671 20.71901 0.00545 + 85.90715 20.17734 0.00000 + 85.90715 -122.71635 0.00000 + 73.62302 -122.96635 -0.00286 + 61.31388 -123.21635 -0.00592 + 48.97975 -123.46635 -0.00914 + 36.62061 -123.71635 -0.01248 + 24.23647 -123.96635 -0.01592 + 24.23647 -123.96635 -0.01592 + -6.83324 -124.59135 -0.02474 + -38.05920 -125.21635 -0.03344 + -69.44142 -125.84135 -0.04152 + -100.97988 -126.46635 -0.04845 + -132.67459 -127.09135 -0.05372 + -132.67459 -127.09135 -0.05372 + -164.52556 -127.71635 -0.05681 + -196.53277 -128.34135 -0.05720 + -228.69623 -128.96635 -0.05435 + -261.01595 -129.59135 -0.04773 + -293.49191 -130.21635 -0.03683 + -293.49172 -130.21864 -0.03683 + -306.53011 -130.58915 -0.03115 + -319.61522 -131.12966 -0.02466 + -332.75974 -131.78137 -0.01732 + -345.97558 -132.55552 -0.00912 + -359.27486 -133.45011 0.00000 + -359.27492 170.94981 0.00000 + -342.22936 169.94208 0.01005 + -325.29035 168.81895 0.02100 + -308.46935 167.58229 0.03281 + -291.77762 166.23385 0.04542 + -275.22626 164.77525 0.05881 + -275.22604 164.77311 0.05881 + -245.81766 161.93013 0.08470 + -216.95133 158.75156 0.11268 + -188.68686 155.24368 0.14252 + -161.08306 151.41151 0.17397 + -134.19794 147.25883 0.20679 + -134.19806 147.25680 0.20679 + -108.07160 142.98756 0.24075 + -82.74040 138.42069 0.27563 + -58.25797 133.55688 0.31123 + -34.67776 128.39585 0.34732 + -12.05336 122.93647 0.38371 + -12.05514 123.07393 0.38371 + -7.15473 121.98230 1.21706 + -2.30019 120.61833 3.19238 + 2.48363 118.42163 5.54693 + 7.16554 115.62463 7.51797 + 11.73086 112.62242 8.34274 + 11.72808 112.53510 8.34274 + 22.57063 104.28311 8.33620 + 32.57810 95.83325 8.32961 + 41.73067 87.18489 8.32293 + 50.00844 78.33744 8.31615 + 57.39150 69.29031 8.30925 + 57.39130 69.29170 8.30925 + 67.21133 61.62597 8.29860 + 75.87426 53.86369 8.28757 + 83.36557 46.00412 8.27612 + 89.67060 38.04659 8.26419 + 94.77462 29.99051 8.25175 + 94.77471 29.99096 8.25175 + 95.21722 29.01076 8.25048 + 95.64502 28.02925 8.24920 + 96.05809 27.04641 8.24791 + 96.45641 26.06226 8.24662 + 96.83996 25.07679 8.24533 + 96.83994 25.07692 8.24533 + 99.66125 16.82971 8.23341 + 101.41635 9.30219 8.22104 + 102.20810 2.55824 8.20820 + 102.14237 -3.40121 8.19489 + 101.32048 -8.67834 8.18111 + 101.32052 -8.67803 8.18111 + 100.26508 -12.39841 8.17059 + 98.84731 -15.92456 8.15983 + 97.08665 -19.25633 8.14881 + 95.00255 -22.39315 8.13754 + 92.61454 -25.33437 8.12604 + 92.61429 -25.33211 8.12604 + 84.45588 -37.09565 8.09501 + 73.48886 -46.96330 8.06254 + 60.19297 -55.00770 8.02885 + 45.04413 -61.21429 7.99415 + 28.52214 -65.56785 7.95867 + 28.52065 -65.54862 7.95867 + 11.99210 -61.13992 7.92270 + -3.03512 -53.99669 7.88654 + -15.84748 -44.09933 7.85040 + -25.74451 -31.63741 7.81448 + -32.18808 -17.89636 7.77900 + -32.18630 -17.89572 7.77900 + -35.44627 -7.14885 7.74414 + -35.88679 3.79321 7.70989 + -33.45646 14.93530 7.67621 + -28.13819 25.87244 7.64305 + -20.08055 35.91239 7.61039 + -20.08202 35.90533 7.61039 + -9.94539 42.09834 7.57812 + 1.82467 48.47092 7.54602 + 15.27544 55.02752 7.51386 + 30.45525 61.77184 7.48142 + 47.41332 68.70684 7.44845 + 47.41318 68.70681 7.44845 + 66.12961 75.24554 7.41471 + 86.54261 81.80439 7.37984 + 108.68185 88.52423 7.34345 + 132.58910 95.40433 7.30517 + 158.30583 102.44292 7.26462 + 158.30895 102.42239 7.26462 + 179.16179 106.08501 7.23162 + 200.73452 109.62112 7.19679 + 222.68175 108.22983 7.15993 + 243.67975 101.63803 7.12081 + 263.28885 94.32462 7.07922 + 263.28855 94.30982 7.07922 + 281.18105 84.62799 7.03494 + 297.14488 75.02323 6.98781 + 311.20079 65.57524 6.93767 + 323.39226 56.38646 6.88440 + 333.77423 47.48045 6.82784 + 333.77254 47.47350 6.82784 + 342.38021 38.64907 6.76787 + 349.25051 30.09977 6.70442 + 354.43850 21.82617 6.63744 + 357.99939 13.82873 6.56688 + 359.98843 6.10779 6.49268 + 359.98655 6.12942 6.49268 + 360.76435 1.67865 6.41481 + 360.67006 -2.59137 6.33328 + 359.73289 -6.78497 6.24810 + 357.95350 -11.01725 6.15927 + 355.32260 -15.30051 6.06680 + 355.32291 -15.29917 6.06680 + 353.69449 -20.87991 6.02401 + 351.56595 -26.41318 5.98049 + 348.94154 -31.89911 5.93625 + 345.82552 -37.33787 5.89130 + 342.22213 -42.72962 5.84563 + 342.22252 -42.72954 5.84563 + 326.70624 -60.62886 5.68830 + 305.89484 -78.03180 5.52349 + 279.93587 -94.94761 5.35180 + 248.97392 -111.38694 5.17382 + 213.17503 -127.11308 4.99015 + 213.16754 -127.17527 4.99015 + 205.44271 -130.31171 4.95279 + 197.53100 -133.40487 4.91524 + 189.43499 -136.45497 4.87751 + 181.15726 -139.46225 4.83961 + 172.70037 -142.42695 4.80154 + 172.69004 -142.38247 4.80154 + 135.72395 -152.52997 4.64132 + 97.01833 -155.55819 4.47895 + 58.49928 -151.93339 4.31504 + 21.38103 -144.35581 4.15019 + -13.35128 -132.84998 3.98499 + -13.34753 -132.83004 3.98499 + -49.97514 -128.40068 3.80028 + -85.03198 -121.61493 3.61658 + -117.86209 -112.49986 3.43453 + -147.81691 -101.08135 3.25477 + -174.25495 -87.38400 3.07795 + -174.25320 -87.38220 3.07795 + -196.58347 -72.22185 2.90468 + -214.75409 -57.66851 2.73533 + -228.93332 -43.70970 2.57018 + -239.28566 -30.33099 2.40952 + -245.97129 -17.51601 2.25362 + -245.97109 -17.52354 2.25362 + -249.27725 -6.18474 2.10270 + -249.48564 4.60665 1.95675 + -246.74681 14.87009 1.81571 + -241.20584 24.62521 1.67952 + -233.00228 33.89186 1.54815 + -233.01590 34.00659 1.54815 + -222.22230 42.90331 1.42146 + -209.10843 50.53158 1.29920 + -194.05417 56.77172 1.18106 + -177.44126 61.67265 1.06676 + -159.63826 65.27953 0.95599 + -159.63744 65.26727 0.95599 + -140.98602 67.75160 0.84843 + -121.81007 69.01959 0.74366 + -102.44560 69.10301 0.64132 + -83.22041 68.02892 0.54101 + -64.45536 65.81964 0.44237 + -64.45654 65.81480 0.44237 + -51.97947 58.93443 0.37270 + -40.89135 51.92531 0.30357 + -31.21786 44.78836 0.23486 + -22.98448 37.52431 0.16648 + -16.21657 30.13371 0.09833 + -16.21657 30.13345 0.09833 + -10.67290 25.21114 0.03033 + -6.16897 19.73603 -0.03756 + -2.81529 13.70887 -0.10538 + -0.72220 7.13014 -0.17315 + 0.00001 0.00004 -0.24093 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -25914,7 +26088,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 3 : Number of surface points @@ -26123,7 +26297,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -26135,221 +26309,227 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 2.16667 0.00000 0.00000 -1 0 - + 0.00000 4.33333 0.00000 0.00000 -1 0 - + 0.00000 6.50000 0.00000 0.00000 -1 0 - + 0.00000 8.66667 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 13.00000 0.00000 0.00000 -1 0 - + 0.00000 15.16667 0.00000 0.00000 -1 0 - + 0.00000 17.33333 0.00000 0.00000 -1 0 - + 0.00000 19.50000 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 23.83333 0.00000 0.00000 -1 0 - + 0.00000 26.00000 0.00000 0.00000 -1 0 - + 0.00000 28.16667 0.00000 0.00000 -1 0 - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 36.00000 0.00000 0.00000 -1 0 - - 0.00000 37.00000 0.00000 0.00000 -1 0 - - 0.00000 38.00000 0.00000 0.00000 -1 0 - - 0.00000 39.00000 0.00000 0.00000 -1 0 - - 0.00000 40.00000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 33.50000 0.00000 0.00000 -1 0 - + 0.00000 34.50000 0.00000 0.00000 -1 0 - + 0.00000 35.50000 0.00000 0.00000 -1 0 - + 0.00000 36.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - 0.00000 40.00000 0.00000 0.00000 -1 0 - 0.00000 42.50000 0.00000 0.00000 -1 0 - 0.00000 45.00000 0.00000 0.00000 -1 0 - 0.00000 47.50000 0.00000 0.00000 -1 0 - 0.00000 50.00000 0.00000 0.00000 -1 0 - - 0.00000 52.50000 0.00000 0.00000 -1 0 - + 0.00000 50.00000 0.00000 0.00000 -1 0 - 0.00000 52.50000 0.00000 0.00000 -1 0 - 0.00000 55.00000 0.00000 0.00000 -1 0 - 0.00000 57.50000 0.00000 0.00000 -1 0 - 0.00000 60.00000 0.00000 0.00000 -1 0 - 0.00000 62.50000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 66.00000 0.00000 0.00000 -1 0 - - 0.00000 67.00000 0.00000 0.00000 -1 0 - - 0.00000 68.00000 0.00000 0.00000 -1 0 - - 0.00000 69.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 71.00000 0.00000 0.00000 -1 0 - - 0.00000 72.00000 0.00000 0.00000 -1 0 - - 0.00000 73.00000 0.00000 0.00000 -1 0 - - 0.00000 74.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 76.80000 0.00000 0.00000 -1 0 - - 0.00000 78.60000 0.00000 0.00000 -1 0 - - 0.00000 80.40000 0.00000 0.00000 -1 0 - - 0.00000 82.20000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 85.80000 0.00000 0.00000 -1 0 - - 0.00000 87.60000 0.00000 0.00000 -1 0 - - 0.00000 89.40000 0.00000 0.00000 -1 0 - - 0.00000 91.20000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.40000 0.00000 0.00000 -1 0 - - 0.00000 93.80000 0.00000 0.00000 -1 0 - - 0.00000 94.20000 0.00000 0.00000 -1 0 - - 0.00000 94.60000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 96.00000 0.00000 0.00000 -1 0 - - 0.00000 97.00000 0.00000 0.00000 -1 0 - - 0.00000 98.00000 0.00000 0.00000 -1 0 - + 0.00000 62.50000 0.00000 0.00000 -1 0 - + 0.00000 63.50000 0.00000 0.00000 -1 0 - + 0.00000 64.50000 0.00000 0.00000 -1 0 - + 0.00000 65.50000 0.00000 0.00000 -1 0 - + 0.00000 66.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 68.50000 0.00000 0.00000 -1 0 - + 0.00000 69.50000 0.00000 0.00000 -1 0 - + 0.00000 70.50000 0.00000 0.00000 -1 0 - + 0.00000 71.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 74.30000 0.00000 0.00000 -1 0 - + 0.00000 76.10000 0.00000 0.00000 -1 0 - + 0.00000 77.90000 0.00000 0.00000 -1 0 - + 0.00000 79.70000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 83.30000 0.00000 0.00000 -1 0 - + 0.00000 85.10000 0.00000 0.00000 -1 0 - + 0.00000 86.90000 0.00000 0.00000 -1 0 - + 0.00000 88.70000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.90000 0.00000 0.00000 -1 0 - + 0.00000 91.30000 0.00000 0.00000 -1 0 - + 0.00000 91.70000 0.00000 0.00000 -1 0 - + 0.00000 92.10000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 93.50000 0.00000 0.00000 -1 0 - + 0.00000 94.50000 0.00000 0.00000 -1 0 - + 0.00000 95.50000 0.00000 0.00000 -1 0 - + 0.00000 96.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - 0.00000 99.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 101.50000 0.00000 0.00000 -1 0 - - 0.00000 103.00000 0.00000 0.00000 -1 0 - - 0.00000 104.50000 0.00000 0.00000 -1 0 - - 0.00000 106.00000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.65000 0.00000 0.00000 -1 0 - - 0.00000 107.80000 0.00000 0.00000 -1 0 - - 0.00000 107.95000 0.00000 0.00000 -1 0 - - 0.00000 108.10000 0.00000 0.00000 -1 0 - - 0.00000 108.25000 0.00000 0.00000 -1 0 - - 0.00000 108.25000 0.00001 0.00000 1 0 A - 5.54626 109.60000 6.53803 0.95371 330 85 3 - 12.08948 110.95000 13.07961 1.90793 330 92 3 - 18.63986 112.30000 19.62824 2.86318 330 95 3 - 25.20081 113.65000 26.18734 3.81996 330 96 3 - 30.24057 115.00000 32.76019 4.77874 330 92 3 - 14.64020 115.00000 15.62475 4.72846 330 94 3 - 16.96900 116.00000 17.95199 5.43274 330 95 3 - 19.30285 117.00000 20.28423 6.13854 330 95 3 - 21.64231 118.00000 22.62200 6.84601 330 96 3 - 23.98790 119.00000 24.96582 7.55532 330 96 3 - 26.34007 120.00000 27.31617 8.26659 330 96 3 - 13.07691 120.00000 18.60693 6.27753 220 70 2 - 22.75599 122.60000 26.88277 9.06961 330 85 3 - 31.09192 125.20000 35.19498 11.87395 330 88 3 - 39.46951 127.80000 43.54678 14.69164 330 91 3 - 47.89080 130.40000 51.94019 17.52338 330 92 3 - 56.35679 133.00000 60.37619 20.36949 330 93 3 - 78.88807 133.00000 82.90747 17.58733 330 95 3 - 90.56287 135.60000 94.55017 20.05711 330 96 3 - 102.29729 138.20000 106.25037 22.53910 330 96 3 - 114.08943 140.80000 118.00616 25.03288 330 97 3 - 124.33116 143.40000 129.81494 27.53790 330 96 3 - 126.19985 146.00000 141.67361 30.05350 330 89 3 - 111.17476 146.00000 183.43596 27.44431 220 61 2 - 112.95803 148.60000 198.85044 29.75051 220 57 2 - 114.74252 151.20000 214.32029 32.06499 220 54 2 - 116.52757 153.80000 229.84061 34.38703 220 51 2 - 114.40958 156.40000 245.40647 36.71587 110 47 1 - 110.84329 159.00000 261.01298 39.05080 110 42 1 - 103.76551 159.00000 328.82248 36.28859 110 32 1 - 105.57907 161.60000 348.52869 38.46336 110 30 1 - 107.39489 164.20000 368.27436 40.64247 110 29 1 - 109.21071 166.80000 388.05399 42.82534 110 28 1 - 111.02427 169.40000 407.86237 45.01137 110 27 1 - 112.83339 172.00000 427.69460 47.20004 110 26 1 - 111.08093 172.00000 270.79757 44.36640 110 41 1 - 111.67050 174.60000 283.36669 46.42567 110 39 1 - 113.33123 177.20000 295.94534 48.48651 110 38 1 - 114.97874 179.80000 308.53104 50.54850 110 37 1 - 116.60988 182.40000 321.12150 52.61127 110 36 1 - 118.22151 185.00000 333.71464 54.67448 110 35 1 - 92.94840 185.00000 308.24459 57.20320 110 30 1 - 91.34529 189.80000 300.70593 55.80420 110 30 1 - 89.73348 194.60000 293.16695 54.40513 110 31 1 - 40.11383 199.40000 285.62696 53.00588 110 0 1 - 38.94514 204.20000 278.08535 51.60633 110 0 1 - 37.77784 209.00000 270.54153 50.20637 110 0 1 - 28.97654 209.00000 291.27234 47.51247 1 0 A - 29.93411 211.00000 300.89775 49.08257 1 0 A - 30.89132 213.00000 310.51968 50.65211 1 0 A - 31.84814 215.00000 320.13764 52.22099 1 0 A - 33.37527 217.00000 329.75119 53.78916 110 0 1 - 35.36838 219.00000 339.35992 55.35654 110 0 1 - 32.88184 219.00000 315.16699 52.87001 110 0 1 - 34.80539 221.00000 324.08591 54.36618 110 0 1 - 36.72945 223.00000 332.99972 55.86149 110 0 1 - 38.65369 225.00000 341.90814 57.35590 110 0 1 - 40.57776 227.00000 350.81094 58.84936 110 0 1 - 42.50133 229.00000 359.70787 60.34185 110 0 1 - 51.52419 229.00000 308.29721 61.55948 110 0 1 - 52.93571 231.00000 314.15129 62.72839 110 0 1 - 54.34603 233.00000 320.00003 63.89625 110 0 1 - 55.75482 235.00000 325.84332 65.06301 110 0 1 - 57.16175 237.00000 331.68104 66.22866 110 0 1 - 58.56650 239.00000 337.51309 67.39318 110 0 1 - 31.40249 239.00000 518.49407 55.78942 1 0 A - 31.75741 239.90000 524.35424 56.41997 1 0 A - 32.11222 240.80000 530.21261 57.05032 1 0 A - 32.46692 241.70000 536.06917 57.68048 1 0 A - 32.82152 242.60000 541.92392 58.31045 1 0 A - 33.17600 243.50000 547.77685 58.94022 1 0 A - 32.26389 243.50000 514.03604 56.86094 1 0 A - 33.41223 246.50000 532.33165 58.88474 1 0 A - 34.55936 249.50000 550.60801 60.90641 1 0 A - 35.70528 252.50000 568.86503 62.92594 1 0 A - 36.84998 255.50000 587.10265 64.94333 1 0 A - 37.99346 258.50000 605.32091 66.95857 1 0 A - 37.31066 258.50000 585.80700 65.08974 1 0 A - 37.53511 259.10000 589.33094 65.48129 1 0 A - 37.75950 259.70000 592.85414 65.87276 1 0 A - 37.98385 260.30000 596.37659 66.26414 1 0 A - 38.33346 260.90000 599.89830 66.65545 110 0 1 - 38.99287 261.50000 603.41926 67.04666 110 0 1 - 37.96892 261.50000 604.74101 65.63119 1 0 A - 56.99503 264.00000 619.43582 67.22599 110 0 1 - 94.22141 266.50000 634.11778 68.81939 110 15 1 - 109.98156 269.00000 648.78699 70.41141 110 17 1 - 125.68251 271.50000 663.44357 72.00205 110 19 1 - 141.32649 274.00000 678.08763 73.59134 110 21 1 - 102.36471 274.00000 688.05229 71.24759 110 15 1 - 111.04855 276.80000 706.43368 73.15098 110 16 1 - 119.68587 279.60000 724.79952 75.05275 110 17 1 - 128.28068 282.40000 743.15003 76.95294 110 17 1 - 136.83696 285.20000 761.48543 78.85157 110 18 1 - 145.35871 288.00000 779.80597 80.74865 110 19 1 - 143.55840 288.00000 785.03733 78.45683 110 18 1 - 141.77245 290.80000 803.46606 80.29861 110 18 1 - 140.07638 293.60000 821.88031 82.13893 110 17 1 - 138.47545 296.40000 840.28035 83.97784 110 16 1 - 136.97487 299.20000 858.66644 85.81535 110 16 1 - 135.57989 302.00000 877.03883 87.65149 110 15 1 - 133.54161 302.00000 853.34802 85.61321 110 16 1 - 132.21324 304.80000 871.21106 87.40534 110 15 1 - 130.99328 307.60000 889.06128 89.19619 110 15 1 - 129.88007 310.40000 906.89894 90.98577 110 14 1 - 128.87196 313.20000 924.72429 92.77412 110 14 1 - 127.96730 316.00000 942.53757 94.56126 110 14 1 - 126.14196 316.00000 921.91081 92.73592 110 14 1 - 125.30342 318.80000 939.32271 94.48740 110 13 1 - 124.55939 321.60000 956.72330 96.23775 110 13 1 - 123.90334 324.40000 974.11282 97.98697 110 13 1 - 123.32872 327.20000 991.49149 99.73511 110 12 1 - 122.82899 330.00000 1008.85956 101.48218 110 12 1 - 121.18467 330.00000 991.41492 99.83786 110 12 1 - 120.72412 332.80000 1008.47247 101.55560 110 12 1 - 120.32250 335.60000 1025.52003 103.27233 110 12 1 - 119.97156 338.40000 1042.55783 104.98808 110 12 1 - 119.66304 341.20000 1059.58608 106.70286 110 11 1 - 119.38869 344.00000 1076.60499 108.41671 110 11 1 - 134.50718 344.00000 679.44872 132.03849 110 20 1 - 135.31997 346.00000 685.25609 133.16704 110 20 1 - 136.13467 348.00000 691.06056 134.29504 110 20 1 - 136.95081 350.00000 696.86218 135.42247 110 20 1 - 137.76794 352.00000 702.66099 136.54937 110 20 1 - 138.58559 354.00000 708.45705 137.67573 110 20 1 - 114.90429 354.00000 1101.05282 110.86043 110 10 1 - 114.73300 356.00000 1112.94887 112.05819 110 10 1 - 114.56346 358.00000 1124.84075 113.25554 110 10 1 - 114.39499 360.00000 1136.72855 114.45247 110 0 1 - 114.22692 362.00000 1148.61232 115.64900 110 0 1 - 114.05860 364.00000 1160.49212 116.84513 110 0 1 + 0.00000 100.50000 0.00000 0.00000 -1 0 - + 0.00000 102.00000 0.00000 0.00000 -1 0 - + 0.00000 103.50000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.15000 0.00000 0.00000 -1 0 - + 0.00000 105.30000 0.00000 0.00000 -1 0 - + 0.00000 105.45000 0.00000 0.00000 -1 0 - + 0.00000 105.60000 0.00000 0.00000 -1 0 - + 0.00000 105.75000 0.00000 0.00000 -1 0 - + 0.00000 105.75000 0.00001 0.00000 1 0 A + 5.59931 107.10000 6.53803 0.95371 330 86 3 + 12.14243 108.45000 13.07961 1.90793 330 93 3 + 18.69272 109.80000 19.62824 2.86318 330 95 3 + 25.25358 111.15000 26.18734 3.81996 330 96 3 + 30.29322 112.50000 32.76019 4.77874 330 92 3 + 14.69286 112.50000 15.62475 4.72846 330 94 3 + 17.02157 113.50000 17.95199 5.43274 330 95 3 + 19.35534 114.50000 20.28423 6.13854 330 95 3 + 21.69472 115.50000 22.62200 6.84601 330 96 3 + 24.04021 116.50000 24.96582 7.55532 330 96 3 + 26.39230 117.50000 27.31617 8.26659 330 97 3 + 14.01699 117.50000 18.60693 6.27753 220 75 2 + 22.97689 120.10000 26.88277 9.06961 330 85 3 + 31.31167 122.70000 35.19498 11.87395 330 89 3 + 39.68803 125.30000 43.54678 14.69164 330 91 3 + 48.10801 127.90000 51.94019 17.52338 330 93 3 + 56.57260 130.50000 60.37619 20.36949 330 94 3 + 79.10388 130.50000 82.90747 17.58733 330 95 3 + 90.77721 133.10000 94.55017 20.05711 330 96 3 + 102.51007 135.70000 106.25037 22.53910 330 96 3 + 114.30058 138.30000 118.00616 25.03288 330 97 3 + 124.54059 140.90000 129.81494 27.53790 330 96 3 + 126.40750 143.50000 141.67361 30.05350 330 89 3 + 112.05420 143.50000 183.43596 27.44431 220 61 2 + 113.82960 146.10000 198.85044 29.75051 220 57 2 + 115.60595 148.70000 214.32029 32.06499 220 54 2 + 117.38258 151.30000 229.84061 34.38703 220 51 2 + 116.00821 153.90000 245.40647 36.71587 110 47 1 + 112.42508 156.50000 261.01298 39.05080 110 43 1 + 105.34731 156.50000 328.82248 36.28859 110 32 1 + 107.14360 159.10000 348.52869 38.46336 110 31 1 + 108.94175 161.70000 368.27436 40.64247 110 30 1 + 110.73948 164.30000 388.05399 42.82534 110 29 1 + 112.53458 166.90000 407.86237 45.01137 110 28 1 + 114.32484 169.50000 427.69460 47.20004 110 27 1 + 112.57239 169.50000 270.79757 44.36640 110 42 1 + 113.14273 172.10000 283.36669 46.42567 110 40 1 + 114.78386 174.70000 295.94534 48.48651 110 39 1 + 116.41138 177.30000 308.53104 50.54850 110 38 1 + 118.02213 179.90000 321.12150 52.61127 110 37 1 + 119.61298 182.50000 333.71464 54.67448 110 36 1 + 93.73110 182.50000 308.24459 57.20320 110 30 1 + 92.11884 187.30000 300.70593 55.80420 110 31 1 + 90.49774 192.10000 293.16695 54.40513 110 31 1 + 40.86866 196.90000 285.62696 53.00588 110 0 1 + 39.69040 201.70000 278.08535 51.60633 110 0 1 + 38.51338 206.50000 270.54153 50.20637 110 0 1 + 28.97654 206.50000 291.27234 47.51247 1 0 A + 29.93411 208.50000 300.89775 49.08257 1 0 A + 30.89132 210.50000 310.51968 50.65211 1 0 A + 32.63765 212.50000 320.13764 52.22099 110 0 1 + 34.61146 214.50000 329.75119 53.78916 110 0 1 + 36.58619 216.50000 339.35992 55.35654 110 0 1 + 34.09965 216.50000 315.16699 52.87001 110 0 1 + 36.00463 218.50000 324.08591 54.36618 110 0 1 + 37.90996 220.50000 332.99972 55.86149 110 0 1 + 39.81531 222.50000 341.90814 57.35590 110 0 1 + 41.72036 224.50000 350.81094 58.84936 110 0 1 + 43.62478 226.50000 359.70787 60.34185 110 0 1 + 52.15613 226.50000 308.29721 61.55948 110 0 1 + 53.55682 228.50000 314.15129 62.72839 110 0 1 + 54.95627 230.50000 320.00003 63.89625 110 0 1 + 56.35415 232.50000 325.84332 65.06301 110 0 1 + 57.75016 234.50000 331.68104 66.22866 110 0 1 + 59.14397 236.50000 337.51309 67.39318 110 0 1 + 31.40249 236.50000 518.49407 55.78942 1 0 A + 31.75741 237.40000 524.35424 56.41997 1 0 A + 32.11222 238.30000 530.21261 57.05032 1 0 A + 32.46692 239.20000 536.06917 57.68048 1 0 A + 32.82152 240.10000 541.92392 58.31045 1 0 A + 33.17600 241.00000 547.77685 58.94022 1 0 A + 32.26389 241.00000 514.03604 56.86094 1 0 A + 33.41223 244.00000 532.33165 58.88474 1 0 A + 34.55936 247.00000 550.60801 60.90641 1 0 A + 35.70528 250.00000 568.86503 62.92594 1 0 A + 36.84998 253.00000 587.10265 64.94333 1 0 A + 39.65180 256.00000 605.32091 66.95857 110 0 1 + 37.78297 256.00000 585.80700 65.08974 110 0 1 + 38.43764 256.60000 589.33094 65.48129 110 0 1 + 39.09034 257.20000 592.85414 65.87276 110 0 1 + 39.74104 257.80000 596.37659 66.26414 110 0 1 + 40.38970 258.40000 599.89830 66.65545 110 0 1 + 41.03628 259.00000 603.41926 67.04666 110 0 1 + 39.62084 259.00000 604.74101 65.63119 110 0 1 + 58.98601 261.50000 619.43582 67.22599 110 0 1 + 96.16168 264.00000 634.11778 68.81939 110 15 1 + 111.87297 266.50000 648.78699 70.41141 110 17 1 + 127.52696 269.00000 663.44357 72.00205 110 19 1 + 143.12600 271.50000 678.08763 73.59134 110 21 1 + 104.16423 271.50000 688.05229 71.24759 110 15 1 + 112.80023 274.30000 706.43368 73.15098 110 16 1 + 121.39239 277.10000 724.79952 75.05275 110 17 1 + 129.94471 279.90000 743.15003 76.95294 110 17 1 + 138.46119 282.70000 761.48543 78.85157 110 18 1 + 146.94584 285.50000 779.80597 80.74865 110 19 1 + 145.14553 285.50000 785.03733 78.45683 110 18 1 + 143.32517 288.30000 803.46606 80.29861 110 18 1 + 141.59734 291.10000 821.88031 82.13893 110 17 1 + 139.96719 293.90000 840.28035 83.97784 110 17 1 + 138.43989 296.70000 858.66644 85.81535 110 16 1 + 137.02061 299.50000 877.03883 87.65149 110 16 1 + 134.98234 299.50000 853.34802 85.61321 110 16 1 + 133.63201 302.30000 871.21106 87.40534 110 15 1 + 132.39232 305.10000 889.06128 89.19619 110 15 1 + 131.26150 307.90000 906.89894 90.98577 110 14 1 + 130.23778 310.70000 924.72429 92.77412 110 14 1 + 129.31938 313.50000 942.53757 94.56126 110 14 1 + 127.49404 313.50000 921.91081 92.73592 110 14 1 + 126.64352 316.30000 939.32271 94.48740 110 13 1 + 125.88914 319.10000 956.72330 96.23775 110 13 1 + 125.22421 321.90000 974.11282 97.98697 110 13 1 + 124.64204 324.70000 991.49149 99.73511 110 13 1 + 124.13596 327.50000 1008.85956 101.48218 110 12 1 + 122.49164 327.50000 991.41492 99.83786 110 12 1 + 122.02579 330.30000 1008.47247 101.55560 110 12 1 + 121.61977 333.10000 1025.52003 103.27233 110 12 1 + 121.26517 335.90000 1042.55783 104.98808 110 12 1 + 120.95358 338.70000 1059.58608 106.70286 110 11 1 + 120.67657 341.50000 1076.60499 108.41671 110 11 1 + 134.79696 341.50000 679.44872 132.03849 110 20 1 + 135.60936 343.50000 685.25609 133.16704 110 20 1 + 136.42369 345.50000 691.06056 134.29504 110 20 1 + 137.23948 347.50000 696.86218 135.42247 110 20 1 + 138.05626 349.50000 702.66099 136.54937 110 20 1 + 138.87356 351.50000 708.45705 137.67573 110 20 1 + 116.18413 351.50000 1101.05282 110.86043 110 11 1 + 116.01128 353.50000 1112.94887 112.05819 110 10 1 + 115.84017 355.50000 1124.84075 113.25554 110 10 1 + 115.67014 357.50000 1136.72855 114.45247 110 10 1 + 115.50050 359.50000 1148.61232 115.64900 110 0 1 + 115.33061 361.50000 1160.49212 116.84513 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -26363,15 +26543,15 @@ Layer name [END OF COLUMN INDICATION] [DATA] 5.50 0.000 '99_Aanvulzand' - -9.00 20.580 '5_Klei_siltig' - -11.00 621.958 '6_Siltig_zand' - -17.50 65.100 '7_Klei_met_zandlagen' - -18.50 69.336 '6_Siltig_zand' - -20.50 55.049 '7_Klei_met_zandlagen' - -21.50 197.745 '9A_Zand_Pleistoceen' - -25.00 893.716 '9B_Zand_Pleistoceen' - -32.00 136.544 '17_Klei_zandlagen' - -33.00 114.480 '9B_Zand_Pleistoceen' + -9.00 20.638 '5_Klei_siltig' + -11.00 627.894 '6_Siltig_zand' + -17.50 65.860 '7_Klei_met_zandlagen' + -18.50 71.034 '6_Siltig_zand' + -20.50 55.653 '7_Klei_met_zandlagen' + -21.50 200.780 '9A_Zand_Pleistoceen' + -25.00 903.813 '9B_Zand_Pleistoceen' + -32.00 136.833 '17_Klei_zandlagen' + -33.00 115.756 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -26387,15 +26567,15 @@ Layer name [END OF COLUMN INDICATION] [DATA] 5.50 0.00 '99_Aanvulzand' - -9.00 3.74 '5_Klei_siltig' - -11.00 166.95 '6_Siltig_zand' - -17.50 14.96 '7_Klei_met_zandlagen' - -18.50 18.61 '6_Siltig_zand' - -20.50 12.65 '7_Klei_met_zandlagen' - -21.50 68.01 '9A_Zand_Pleistoceen' - -25.00 307.39 '9B_Zand_Pleistoceen' - -32.00 31.39 '17_Klei_zandlagen' - -33.00 39.37 '9B_Zand_Pleistoceen' + -9.00 3.75 '5_Klei_siltig' + -11.00 168.55 '6_Siltig_zand' + -17.50 15.14 '7_Klei_met_zandlagen' + -18.50 19.07 '6_Siltig_zand' + -20.50 12.79 '7_Klei_met_zandlagen' + -21.50 69.06 '9A_Zand_Pleistoceen' + -25.00 310.86 '9B_Zand_Pleistoceen' + -32.00 31.45 '17_Klei_zandlagen' + -33.00 39.81 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -26634,7 +26814,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -26646,22 +26826,28 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - + 0.00000 0.50000 0.00000 0.00000 -1 0 - + 0.00000 1.00000 0.00000 0.00000 -1 0 - + 0.00000 1.50000 0.00000 0.00000 -1 0 - + 0.00000 2.00000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - + 0.00000 6.83333 0.00000 0.00000 -1 0 - + 0.00000 9.00000 0.00000 0.00000 -1 0 - + 0.00000 11.16667 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 15.50000 0.00000 0.00000 -1 0 - + 0.00000 17.66667 0.00000 0.00000 -1 0 - + 0.00000 19.83333 0.00000 0.00000 -1 0 - + 0.00000 22.00000 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 26.33333 0.00000 0.00000 -1 0 - + 0.00000 28.50000 0.00000 0.00000 -1 0 - + 0.00000 30.66667 0.00000 0.00000 -1 0 - + 0.00000 32.83333 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 36.00000 0.00000 0.00000 -1 0 - @@ -26682,185 +26868,185 @@ Status character 0.00000 62.50000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 1 0 A - 2.40512 66.00000 4.24974 1.40724 220 57 2 - 3.38489 67.00000 8.50050 2.81482 110 40 1 - 4.62372 68.00000 12.75330 4.22307 110 36 1 - 5.84323 69.00000 17.00914 5.63233 110 34 1 + 2.41024 66.00000 4.24974 1.40724 220 57 2 + 3.39986 67.00000 8.50050 2.81482 110 40 1 + 4.63431 68.00000 12.75330 4.22307 110 36 1 + 5.84884 69.00000 17.00914 5.63233 110 34 1 7.04293 70.00000 21.26903 7.04293 110 33 1 6.99530 70.00000 21.22709 6.99530 110 33 1 - 8.16546 71.00000 25.48357 8.39800 110 0 1 - 9.31669 72.00000 29.74601 9.80267 110 0 1 - 10.45033 73.00000 34.01531 11.20960 110 0 1 - 11.56772 74.00000 38.29236 12.61909 110 0 1 - 12.67020 75.00000 42.57802 14.03141 110 0 1 - 12.38987 75.00000 42.33319 13.75107 110 0 1 - 14.29001 76.80000 50.02711 16.25029 110 0 1 - 16.15316 78.60000 57.75567 18.76075 110 0 1 - 17.98621 80.40000 65.52272 21.28372 110 0 1 - 19.79585 82.20000 73.33157 23.82027 110 0 1 - 21.58862 84.00000 81.18498 26.37129 110 0 1 - 20.52198 84.00000 80.52920 25.30465 110 0 1 - 22.20033 85.80000 88.36554 27.76706 110 0 1 - 23.87290 87.60000 96.24987 30.24455 110 0 1 - 25.54475 89.40000 104.18324 32.73744 110 0 1 - 27.22083 91.20000 112.16618 35.24592 110 0 1 - 28.90588 93.00000 120.19873 37.76998 110 0 1 - 27.73262 93.00000 126.02812 36.59673 110 0 1 - 22.79286 93.40000 127.90672 37.14225 110 0 1 - 42.87803 93.80000 129.78787 37.68851 110 33 1 - 66.09482 94.20000 131.67154 38.23550 220 50 2 - 72.24448 94.60000 133.55774 38.78322 220 54 2 - 75.23958 95.00000 135.44645 39.33168 220 56 2 - 80.27997 95.00000 149.34777 38.48288 220 54 2 - 82.25445 96.00000 154.56616 39.82751 220 53 2 - 84.23524 97.00000 159.80151 41.17652 220 53 2 - 86.22214 98.00000 165.05356 42.52983 220 52 2 - 88.21494 99.00000 170.32198 43.88736 220 52 2 - 90.21344 100.00000 175.60645 45.24902 220 51 2 - 49.19533 100.00000 134.41913 50.84292 110 0 1 - 49.83516 101.50000 137.17769 51.88633 110 0 1 - 50.48010 103.00000 139.96218 52.93954 110 0 1 - 51.12967 104.50000 142.77145 54.00212 110 0 1 - 51.78337 106.00000 145.60431 55.07363 110 0 1 - 52.44070 107.50000 148.45950 56.15358 110 0 1 - 63.70662 107.50000 166.90149 56.09848 110 38 1 - 63.79429 107.65000 167.22380 56.20682 110 38 1 - 63.88201 107.80000 167.54634 56.31523 110 38 1 - 63.96977 107.95000 167.86912 56.42372 110 38 1 - 64.05757 108.10000 168.19213 56.53229 110 38 1 - 64.14543 108.25000 168.51538 56.64094 110 38 1 - 61.92382 108.25000 194.86133 56.36044 110 32 1 - 62.66135 109.60000 198.23702 57.33681 110 32 1 - 63.40126 110.95000 201.63288 58.31901 110 31 1 - 64.14320 112.30000 205.04762 59.30666 110 31 1 - 64.88679 113.65000 208.47996 60.29941 110 31 1 - 65.63170 115.00000 211.92862 61.29688 110 31 1 - 51.26360 115.00000 281.34409 60.46571 110 0 1 - 51.64728 116.00000 284.74835 61.19734 110 0 1 - 52.03872 117.00000 288.16290 61.93119 110 0 1 - 52.43015 118.00000 291.58706 62.66710 110 0 1 - 52.82147 119.00000 295.02018 63.40493 110 0 1 - 53.21261 120.00000 298.46161 64.14456 110 0 1 - 62.33630 120.00000 1301.56611 55.88747 110 5 1 - 63.68919 122.60000 1369.70818 58.81340 110 5 1 - 65.02955 125.20000 1438.02991 61.74704 110 5 1 - 66.35631 127.80000 1506.48749 64.68652 110 4 1 - 67.66850 130.40000 1575.04035 67.63009 110 4 1 - 68.96519 133.00000 1643.65132 70.57615 110 0 1 - 66.61354 133.00000 311.81167 64.61557 110 21 1 - 67.79565 135.60000 324.83224 67.31377 110 21 1 - 68.96062 138.20000 337.85165 70.01174 110 0 1 - 70.10789 140.80000 350.86473 72.70839 110 0 1 - 71.23695 143.40000 363.86693 75.40279 110 0 1 - 72.34734 146.00000 376.85421 78.09409 110 0 1 - 70.25185 146.00000 379.52282 72.33680 110 0 1 - 71.27120 148.60000 392.58353 74.82616 110 0 1 - 72.27189 151.20000 405.62267 77.31141 110 0 1 - 73.25419 153.80000 418.63763 79.79206 110 0 1 - 74.21841 156.40000 431.62621 82.26767 110 0 1 - 75.16491 159.00000 444.58660 84.73791 110 0 1 - 80.95058 159.00000 450.15834 79.37775 110 18 1 - 82.04814 161.60000 463.25107 81.68643 110 18 1 - 83.12869 164.20000 476.31249 83.98959 110 0 1 - 84.19279 166.80000 489.34166 86.28706 110 0 1 - 85.24101 169.40000 502.33784 88.57871 110 0 1 - 86.27397 172.00000 515.30052 90.86446 110 0 1 - 86.18245 172.00000 486.40297 85.97140 110 18 1 - 87.19841 174.60000 498.60678 88.12841 110 0 1 - 88.20035 177.20000 510.77849 90.27976 110 0 1 - 89.18910 179.80000 522.91807 92.42542 110 0 1 - 90.16548 182.40000 535.02560 94.56542 110 0 1 - 91.13035 185.00000 547.10126 96.69978 110 0 1 - 73.38569 185.00000 494.31073 99.55685 110 0 1 - 72.39434 189.80000 487.97713 98.28123 110 0 1 - 71.39891 194.60000 481.62677 97.00223 110 0 1 - 70.39951 199.40000 475.25980 95.71989 110 0 1 - 72.57762 204.20000 468.87638 94.43424 110 0 1 - 75.24102 209.00000 462.47671 93.14531 110 0 1 - 76.38497 209.00000 498.18537 87.41240 110 0 1 - 76.94168 211.00000 507.11661 88.97949 110 0 1 - 77.49385 213.00000 516.03079 90.54358 110 0 1 - 78.04177 215.00000 524.92813 92.10472 110 0 1 - 78.58572 217.00000 533.80887 93.66295 110 0 1 - 79.12599 219.00000 542.67328 95.21832 110 0 1 - 77.62659 219.00000 525.39916 92.05604 110 0 1 - 78.13901 221.00000 533.96583 93.55702 110 0 1 - 78.64838 223.00000 542.51717 95.05531 110 0 1 - 79.15501 225.00000 551.05345 96.55097 110 0 1 - 79.65925 227.00000 559.57492 98.04403 110 0 1 - 80.16140 229.00000 568.08184 99.53454 110 0 1 - 72.99381 229.00000 473.24590 102.08389 110 0 1 - 73.47994 231.00000 478.72357 103.26548 110 0 1 - 73.96464 233.00000 484.18956 104.44454 110 0 1 - 75.49138 235.00000 489.64407 105.62114 110 0 1 - 77.12345 237.00000 495.08732 106.79530 110 0 1 - 78.76918 239.00000 500.51952 107.96708 110 0 1 - 93.74138 239.00000 778.56963 90.43277 110 12 1 - 93.54622 239.90000 784.04359 91.06858 110 12 1 - 93.35246 240.80000 789.51417 91.70400 110 12 1 - 93.16027 241.70000 794.98139 92.33903 110 12 1 - 92.96980 242.60000 800.44528 92.97368 110 0 1 - 92.78122 243.50000 805.90589 93.60794 110 0 1 - 92.72030 243.50000 801.20158 91.00121 110 12 1 - 92.12769 246.50000 819.27405 93.05389 110 0 1 - 91.56323 249.50000 837.31150 95.10260 110 0 1 - 91.03185 252.50000 855.31497 97.14745 110 0 1 - 90.53850 255.50000 873.28547 99.18856 110 0 1 - 90.08808 258.50000 891.22399 101.22603 110 0 1 - 90.02711 258.50000 842.43540 98.91991 110 0 1 - 89.94525 259.10000 845.82315 99.31770 110 0 1 - 89.86532 259.70000 849.20974 99.71536 110 0 1 - 89.78737 260.30000 852.59517 100.11288 110 0 1 - 89.71142 260.90000 855.97945 100.51027 110 0 1 - 89.63752 261.50000 859.36259 100.90752 110 0 1 - 89.54945 261.50000 909.02927 99.12270 110 0 1 - 89.27177 264.00000 923.92751 100.74724 110 0 1 - 89.03294 266.50000 938.80539 102.36956 110 0 1 - 88.83502 269.00000 953.66343 103.98971 110 0 1 - 88.68009 271.50000 968.50214 105.60776 110 0 1 - 88.57021 274.00000 983.32200 107.22375 110 0 1 - 91.87715 274.00000 1056.14358 104.29240 110 0 1 - 92.00020 276.80000 1075.80444 106.23388 110 0 1 - 92.18098 279.60000 1095.44125 108.17298 110 0 1 - 92.41910 282.40000 1115.05470 110.10977 110 0 1 - 92.71422 285.20000 1134.64543 112.04432 110 0 1 - 93.06596 288.00000 1154.21410 113.97670 110 0 1 - 88.99434 288.00000 1120.89988 111.10728 110 0 1 - 89.32801 290.80000 1139.88290 112.98894 110 0 1 - 89.71574 293.60000 1158.84566 114.86859 110 0 1 - 90.15568 296.40000 1177.78873 116.74629 110 0 1 - 90.64595 299.20000 1196.71267 118.62209 110 0 1 - 91.18470 302.00000 1215.61798 120.49605 110 0 1 - 92.43255 302.00000 1188.08184 117.92124 110 0 1 - 93.04987 304.80000 1206.54123 119.75340 110 0 1 - 93.71091 307.60000 1224.98340 121.58385 110 0 1 - 94.41312 310.40000 1243.40883 123.41264 110 0 1 - 95.15393 313.20000 1261.81798 125.23981 110 0 1 - 95.93079 316.00000 1280.21128 127.06541 110 0 1 - 92.56615 316.00000 1256.58097 124.74093 110 0 1 - 95.71562 318.80000 1274.61962 126.53163 110 0 1 - 99.99922 321.60000 1292.64354 128.32087 110 0 1 - 104.19231 324.40000 1310.65311 130.10868 110 0 1 - 108.30150 327.20000 1328.64872 131.89511 110 0 1 - 112.33338 330.00000 1346.63072 133.68018 110 0 1 - 110.22348 330.00000 1325.86270 131.57029 110 0 1 - 114.15738 332.80000 1343.55434 133.32589 110 0 1 - 118.03007 335.60000 1361.23327 135.08024 110 0 1 - 121.84987 338.40000 1378.89982 136.83336 110 0 1 - 125.62510 341.20000 1396.55430 138.58528 110 0 1 - 129.36405 344.00000 1414.19702 140.33603 110 0 1 - 166.66539 344.00000 923.70105 169.13409 110 0 1 - 168.12373 346.00000 929.94108 170.27666 110 0 1 - 169.57892 348.00000 936.17736 171.41856 110 0 1 - 171.03144 350.00000 942.40995 172.55977 110 0 1 - 172.48176 352.00000 948.63892 173.70033 110 0 1 - 173.93037 354.00000 954.86434 174.84023 110 0 1 - 138.19245 354.00000 1436.99771 142.23631 110 0 1 - 140.78422 356.00000 1449.35077 143.45903 110 0 1 - 143.37332 358.00000 1461.69866 144.68125 110 0 1 - 145.96044 360.00000 1474.04149 145.90296 110 10 1 - 148.54625 362.00000 1486.37932 147.12418 110 10 1 - 151.13144 364.00000 1498.71226 148.34491 110 10 1 + 8.15920 71.00000 25.48357 8.39800 110 0 1 + 9.30353 72.00000 29.74601 9.80267 110 0 1 + 10.42967 73.00000 34.01531 11.20960 110 0 1 + 11.53902 74.00000 38.29236 12.61909 110 0 1 + 12.63292 75.00000 42.57802 14.03141 110 0 1 + 12.35259 75.00000 42.33319 13.75107 110 0 1 + 14.23612 76.80000 50.02711 16.25029 110 0 1 + 16.08129 78.60000 57.75567 18.76075 110 0 1 + 17.89515 80.40000 65.52272 21.28372 110 0 1 + 19.68459 82.20000 73.33157 23.82027 110 0 1 + 21.45632 84.00000 81.18498 26.37129 110 0 1 + 20.38968 84.00000 80.52920 25.30465 110 0 1 + 22.04632 85.80000 88.36554 27.76706 110 0 1 + 23.69662 87.60000 96.24987 30.24455 110 0 1 + 25.34581 89.40000 104.18324 32.73744 110 0 1 + 26.99893 91.20000 112.16618 35.24592 110 0 1 + 28.66086 93.00000 120.19873 37.76998 110 0 1 + 27.48761 93.00000 126.02812 36.59673 110 0 1 + 22.09394 93.40000 127.90672 37.14225 110 0 1 + 41.10426 93.80000 129.78787 37.68851 110 32 1 + 63.73093 94.20000 131.67154 38.23550 110 48 1 + 71.11897 94.60000 133.55774 38.78322 220 53 2 + 73.99175 95.00000 135.44645 39.33168 220 55 2 + 79.03214 95.00000 149.34777 38.48288 220 53 2 + 81.00770 96.00000 154.56616 39.82751 220 52 2 + 82.98956 97.00000 159.80151 41.17652 220 52 2 + 84.97756 98.00000 165.05356 42.52983 220 51 2 + 86.97148 99.00000 170.32198 43.88736 220 51 2 + 88.97111 100.00000 175.60645 45.24902 220 51 2 + 48.28429 100.00000 134.41913 50.84292 110 0 1 + 48.92540 101.50000 137.17769 51.88633 110 0 1 + 49.57167 103.00000 139.96218 52.93954 110 0 1 + 50.22263 104.50000 142.77145 54.00212 110 0 1 + 50.87779 106.00000 145.60431 55.07363 110 0 1 + 51.53664 107.50000 148.45950 56.15358 110 0 1 + 62.80256 107.50000 166.90149 56.09848 110 38 1 + 62.89039 107.65000 167.22380 56.20682 110 38 1 + 62.97826 107.80000 167.54634 56.31523 110 38 1 + 63.06618 107.95000 167.86912 56.42372 110 38 1 + 63.15414 108.10000 168.19213 56.53229 110 38 1 + 63.24216 108.25000 168.51538 56.64094 110 38 1 + 61.02055 108.25000 194.86133 56.36044 110 31 1 + 61.75956 109.60000 198.23702 57.33681 110 31 1 + 62.50102 110.95000 201.63288 58.31901 110 31 1 + 63.24457 112.30000 205.04762 59.30666 110 31 1 + 63.98987 113.65000 208.47996 60.29941 110 31 1 + 64.73654 115.00000 211.92862 61.29688 110 31 1 + 50.36844 115.00000 281.34409 60.46571 110 0 1 + 50.75350 116.00000 284.74835 61.19734 110 0 1 + 51.14635 117.00000 288.16290 61.93119 110 0 1 + 51.53924 118.00000 291.58706 62.66710 110 0 1 + 51.93207 119.00000 295.02018 63.40493 110 0 1 + 52.32476 120.00000 298.46161 64.14456 110 0 1 + 60.56060 120.00000 1301.56611 55.88747 110 5 1 + 61.92202 122.60000 1369.70818 58.81340 110 5 1 + 63.27156 125.20000 1438.02991 61.74704 110 4 1 + 64.60816 127.80000 1506.48749 64.68652 110 0 1 + 65.93084 130.40000 1575.04035 67.63009 110 0 1 + 67.23869 133.00000 1643.65132 70.57615 110 0 1 + 64.88704 133.00000 311.81167 64.61557 110 21 1 + 66.08096 135.60000 324.83224 67.31377 110 0 1 + 67.25839 138.20000 337.85165 70.01174 110 0 1 + 68.41874 140.80000 350.86473 72.70839 110 0 1 + 69.56149 143.40000 363.86693 75.40279 110 0 1 + 70.68618 146.00000 376.85421 78.09409 110 0 1 + 68.59068 146.00000 379.52282 72.33680 110 0 1 + 69.62489 148.60000 392.58353 74.82616 110 0 1 + 70.64097 151.20000 405.62267 77.31141 110 0 1 + 71.63917 153.80000 418.63763 79.79206 110 0 1 + 72.61978 156.40000 431.62621 82.26767 110 0 1 + 73.58311 159.00000 444.58660 84.73791 110 0 1 + 79.36879 159.00000 450.15834 79.37775 110 0 1 + 80.48361 161.60000 463.25107 81.68643 110 0 1 + 81.58184 164.20000 476.31249 83.98959 110 0 1 + 82.66401 166.80000 489.34166 86.28706 110 0 1 + 83.73071 169.40000 502.33784 88.57871 110 0 1 + 84.78251 172.00000 515.30052 90.86446 110 0 1 + 84.69100 172.00000 486.40297 85.97140 110 0 1 + 85.72618 174.60000 498.60678 88.12841 110 0 1 + 86.74772 177.20000 510.77849 90.27976 110 0 1 + 87.75646 179.80000 522.91807 92.42542 110 0 1 + 88.75322 182.40000 535.02560 94.56542 110 0 1 + 89.73888 185.00000 547.10126 96.69978 110 0 1 + 72.60299 185.00000 494.31073 99.55685 110 0 1 + 71.62079 189.80000 487.97713 98.28123 110 0 1 + 70.63465 194.60000 481.62677 97.00223 110 0 1 + 69.64468 199.40000 475.25980 95.71989 110 0 1 + 71.83236 204.20000 468.87638 94.43424 110 0 1 + 74.50548 209.00000 462.47671 93.14531 110 0 1 + 75.07735 209.00000 498.18537 87.41240 110 0 1 + 75.65157 211.00000 507.11661 88.97949 110 0 1 + 76.22149 213.00000 516.03079 90.54358 110 0 1 + 76.78738 215.00000 524.92813 92.10472 110 0 1 + 77.34952 217.00000 533.80887 93.66295 110 0 1 + 77.90818 219.00000 542.67328 95.21832 110 0 1 + 76.40878 219.00000 525.39916 92.05604 110 0 1 + 76.93977 221.00000 533.96583 93.55702 110 0 1 + 77.46787 223.00000 542.51717 95.05531 110 0 1 + 77.99340 225.00000 551.05345 96.55097 110 0 1 + 78.51665 227.00000 559.57492 98.04403 110 0 1 + 79.03795 229.00000 568.08184 99.53454 110 0 1 + 72.36187 229.00000 473.24590 102.08389 110 0 1 + 72.85882 231.00000 478.72357 103.26548 110 0 1 + 73.35440 233.00000 484.18956 104.44454 110 0 1 + 74.89204 235.00000 489.64407 105.62114 110 0 1 + 76.53505 237.00000 495.08732 106.79530 110 0 1 + 78.19171 239.00000 500.51952 107.96708 110 0 1 + 91.17484 239.00000 778.56963 90.43277 110 12 1 + 91.00153 239.90000 784.04359 91.06858 110 0 1 + 90.82961 240.80000 789.51417 91.70400 110 0 1 + 90.65922 241.70000 794.98139 92.33903 110 0 1 + 90.49053 242.60000 800.44528 92.97368 110 0 1 + 90.32369 243.50000 805.90589 93.60794 110 0 1 + 90.26277 243.50000 801.20158 91.00121 110 0 1 + 89.74221 246.50000 819.27405 93.05389 110 0 1 + 89.24898 249.50000 837.31150 95.10260 110 0 1 + 88.78772 252.50000 855.31497 97.14745 110 0 1 + 88.36307 255.50000 873.28547 99.18856 110 0 1 + 87.97966 258.50000 891.22399 101.22603 110 0 1 + 87.91868 258.50000 842.43540 98.91991 110 0 1 + 87.85000 259.10000 845.82315 99.31770 110 0 1 + 87.78316 259.70000 849.20974 99.71536 110 0 1 + 87.71821 260.30000 852.59517 100.11288 110 0 1 + 87.65518 260.90000 855.97945 100.51027 110 0 1 + 87.59411 261.50000 859.36259 100.90752 110 0 1 + 87.50604 261.50000 909.02927 99.12270 110 0 1 + 87.28079 264.00000 923.92751 100.74724 110 0 1 + 87.09266 266.50000 938.80539 102.36956 110 0 1 + 86.94362 269.00000 953.66343 103.98971 110 0 1 + 86.83564 271.50000 968.50214 105.60776 110 0 1 + 86.77069 274.00000 983.32200 107.22375 110 0 1 + 90.07763 274.00000 1056.14358 104.29240 110 0 1 + 90.24852 276.80000 1075.80444 106.23388 110 0 1 + 90.47446 279.60000 1095.44125 108.17298 110 0 1 + 90.75507 282.40000 1115.05470 110.10977 110 0 1 + 91.08999 285.20000 1134.64543 112.04432 110 0 1 + 91.47883 288.00000 1154.21410 113.97670 110 0 1 + 87.40721 288.00000 1120.89988 111.10728 110 0 1 + 87.77528 290.80000 1139.88290 112.98894 110 0 1 + 88.19479 293.60000 1158.84566 114.86859 110 0 1 + 88.66394 296.40000 1177.78873 116.74629 110 0 1 + 89.18093 299.20000 1196.71267 118.62209 110 0 1 + 89.74397 302.00000 1215.61798 120.49605 110 0 1 + 90.99183 302.00000 1188.08184 117.92124 110 0 1 + 91.63110 304.80000 1206.54123 119.75340 110 0 1 + 92.31187 307.60000 1224.98340 121.58385 110 0 1 + 93.03169 310.40000 1243.40883 123.41264 110 0 1 + 93.78812 313.20000 1261.81798 125.23981 110 0 1 + 94.57870 316.00000 1280.21128 127.06541 110 0 1 + 91.21407 316.00000 1256.58097 124.74093 110 0 1 + 94.37552 318.80000 1274.61962 126.53163 110 0 1 + 98.66948 321.60000 1292.64354 128.32087 110 0 1 + 102.87145 324.40000 1310.65311 130.10868 110 0 1 + 106.98818 327.20000 1328.64872 131.89511 110 0 1 + 111.02641 330.00000 1346.63072 133.68018 110 0 1 + 108.91651 330.00000 1325.86270 131.57029 110 0 1 + 112.85571 332.80000 1343.55434 133.32589 110 0 1 + 116.73280 335.60000 1361.23327 135.08024 110 0 1 + 120.55626 338.40000 1378.89982 136.83336 110 0 1 + 124.33456 341.20000 1396.55430 138.58528 110 0 1 + 128.07617 344.00000 1414.19702 140.33603 110 0 1 + 166.37562 344.00000 923.70105 169.13409 110 0 1 + 167.83435 346.00000 929.94108 170.27666 110 0 1 + 169.28990 348.00000 936.17736 171.41856 110 0 1 + 170.74277 350.00000 942.40995 172.55977 110 0 1 + 172.19344 352.00000 948.63892 173.70033 110 0 1 + 173.64240 354.00000 954.86434 174.84023 110 0 1 + 136.91260 354.00000 1436.99771 142.23631 110 0 1 + 139.50594 356.00000 1449.35077 143.45903 110 0 1 + 142.09661 358.00000 1461.69866 144.68125 110 0 1 + 144.68529 360.00000 1474.04149 145.90296 110 0 1 + 147.27267 362.00000 1486.37932 147.12418 110 10 1 + 149.85943 364.00000 1498.71226 148.34491 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -26873,16 +27059,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 97.326 '99_Aanvulzand' - -9.00 112.066 '5_Klei_siltig' - -11.00 494.346 '6_Siltig_zand' - -17.50 72.217 '7_Klei_met_zandlagen' - -18.50 156.663 '6_Siltig_zand' - -20.50 75.188 '7_Klei_met_zandlagen' - -21.50 317.134 '9A_Zand_Pleistoceen' - -25.00 697.857 '9B_Zand_Pleistoceen' - -32.00 170.303 '17_Klei_zandlagen' - -33.00 144.665 '9B_Zand_Pleistoceen' + 5.50 96.187 '99_Aanvulzand' + -9.00 110.265 '5_Klei_siltig' + -11.00 483.882 '6_Siltig_zand' + -17.50 71.457 '7_Klei_met_zandlagen' + -18.50 154.229 '6_Siltig_zand' + -20.50 74.583 '7_Klei_met_zandlagen' + -21.50 309.563 '9A_Zand_Pleistoceen' + -25.00 687.760 '9B_Zand_Pleistoceen' + -32.00 170.014 '17_Klei_zandlagen' + -33.00 143.389 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -26897,16 +27083,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -30.58 '99_Aanvulzand' - -9.00 -20.38 '5_Klei_siltig' - -11.00 -132.70 '6_Siltig_zand' - -17.50 -16.60 '7_Klei_met_zandlagen' - -18.50 -42.05 '6_Siltig_zand' - -20.50 -17.28 '7_Klei_met_zandlagen' - -21.50 -109.08 '9A_Zand_Pleistoceen' - -25.00 -240.02 '9B_Zand_Pleistoceen' - -32.00 -39.15 '17_Klei_zandlagen' - -33.00 -49.76 '9B_Zand_Pleistoceen' + 5.50 -30.23 '99_Aanvulzand' + -9.00 -20.05 '5_Klei_siltig' + -11.00 -129.89 '6_Siltig_zand' + -17.50 -16.43 '7_Klei_met_zandlagen' + -18.50 -41.40 '6_Siltig_zand' + -20.50 -17.14 '7_Klei_met_zandlagen' + -21.50 -106.47 '9A_Zand_Pleistoceen' + -25.00 -236.55 '9B_Zand_Pleistoceen' + -32.00 -39.08 '17_Klei_zandlagen' + -33.00 -49.32 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -26916,28 +27102,34 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -27157,9 +27349,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 -25.00115 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 150.00626 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 -291.63357 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -28.48036 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 142.08690 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -303.31291 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -27176,7 +27368,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -9.00000 411.61945 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + -9.00000 440.11284 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -27186,267 +27378,273 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 8.12 : Percentage mobilized resistance left - 55.27 : Percentage mobilized resistance right - 1789.04 : Effective left - 1209.38 : Effective right + 8.09 : Percentage mobilized resistance left + 56.60 : Percentage mobilized resistance right + 1782.64 : Effective left + 1238.57 : Effective right 6125.00 : Water pressure left - 6125.00 : Water pressure right + 6037.81 : Water pressure right 22036.78 : Max effective resistance left 2188.30 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 534.23 : Vertical force left - 407.15 : Vertical force right + 532.31 : Vertical force left + 416.95 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --534.23 : Active force -407.15 : Passive force --534.23 : Plugged active force -407.15 : Plugged passive force +-532.31 : Active force +416.95 : Passive force +-532.31 : Plugged active force +416.95 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor --127.08 : Resulting Vertical Force Unplugged --127.08 : Resulting Vertical Force Plugged +-115.36 : Resulting Vertical Force Unplugged +-115.36 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 25.00115 0.00000 - 5.83360 25.00115 0.00312 - 11.66720 25.00115 0.00616 - 17.50081 25.00115 0.00903 - 23.33441 25.00115 0.01165 - 29.16801 25.00115 0.01393 - 29.16801 25.00115 0.01393 - 35.00161 25.00115 0.01580 - 40.83521 25.00115 0.01716 - 46.66882 25.00115 0.01794 - 52.50242 25.00115 0.01805 - 58.33602 25.00115 0.01741 - 58.33602 25.00115 0.01741 - 64.16962 25.00115 0.01594 - 70.00322 25.00115 0.01354 - 75.83682 25.00115 0.01014 - 81.67043 25.00115 0.00566 - 87.50403 25.00115 0.00000 - 87.50403 -125.00511 0.00000 - 75.00352 -125.00511 -0.00280 - 62.50301 -125.00511 -0.00579 - 50.00250 -125.00511 -0.00895 - 37.50198 -125.00511 -0.01224 - 25.00147 -125.00511 -0.01563 - 25.00147 -125.00511 -0.01563 - -6.24980 -125.00511 -0.02431 - -37.50108 -125.00511 -0.03290 - -68.75236 -125.00511 -0.04086 - -100.00364 -125.00511 -0.04770 - -131.25491 -125.00511 -0.05289 - -131.25491 -125.00511 -0.05289 - -162.50619 -125.00511 -0.05592 - -193.75747 -125.00511 -0.05628 - -225.00874 -125.00511 -0.05346 - -256.26002 -125.00511 -0.04693 - -287.51130 -125.00511 -0.03619 - -287.51110 -125.00685 -0.03619 - -300.01512 -125.10692 -0.03059 - -312.53798 -125.37194 -0.02421 - -325.09378 -125.76505 -0.01701 - -337.69518 -126.28378 -0.00895 - -350.35467 -126.92650 0.00000 - -350.35475 164.70578 0.00000 - -333.92116 163.94598 0.00986 - -317.56955 163.06639 0.02059 - -301.31182 162.06854 0.03217 - -285.15974 160.95381 0.04453 - -269.12491 159.72347 0.05765 - -269.12473 159.72170 0.05765 - -240.58967 157.27478 0.08301 - -212.52716 154.47198 0.11042 - -185.00082 151.31815 0.13965 - -158.07347 147.81705 0.17046 - -131.80735 143.97144 0.20262 - -131.80745 143.96973 0.20262 - -106.24688 139.98271 0.23589 - -81.43306 135.67255 0.27007 - -57.42414 131.03940 0.30495 - -34.27830 126.08262 0.34033 - -12.05390 120.80084 0.37600 - -12.05698 120.97365 0.37600 - -7.24059 119.86318 1.20974 - -2.47381 118.31135 3.19818 - 2.20969 115.66284 5.59597 - 6.76461 111.91868 7.65777 - 11.15521 107.57665 8.63824 - 11.15357 107.47711 8.63824 - 21.32562 95.99468 9.11661 - 30.35866 84.69710 9.59493 - 38.27120 73.58437 10.07317 - 45.08170 62.65653 10.55132 - 50.80867 51.91365 11.02935 - 50.80844 463.53466 11.02935 - 119.97414 458.65823 11.74609 - 188.40093 453.68226 12.46214 - 256.07380 448.60587 13.17713 - 322.97762 443.42817 13.89065 - 389.09714 438.14834 14.60233 - 389.09389 438.20246 14.60233 - 454.35873 432.00733 15.31178 - 518.69494 425.78915 16.01864 - 582.08956 419.45274 16.72253 - 644.52481 412.99738 17.42311 - 705.98280 406.42240 18.12001 - 705.98318 406.42397 18.12001 - 746.45229 402.95122 18.58239 - 786.57203 399.43663 19.04287 - 826.33822 395.88009 19.50136 - 865.74665 392.28148 19.95775 - 904.79311 388.64070 20.41195 - 904.79321 388.63966 20.41195 - 1004.83710 380.86255 21.58183 - 1102.80731 372.68815 22.73447 - 1198.60042 364.11553 23.86822 - 1292.11281 355.14402 24.98145 - 1383.24070 345.77317 26.07250 - 1383.24078 345.78770 26.07250 - 1471.96468 336.64147 27.13977 - 1558.26193 327.12115 28.18178 - 1642.03527 317.22683 29.19709 - 1723.18749 306.95877 30.18428 - 1801.62146 296.31733 31.14189 - 1801.62096 296.31384 31.14189 - 1877.31041 285.85371 32.06853 - 1950.23424 275.03999 32.96296 - 2020.30061 263.87331 33.82398 - 2087.41783 252.35434 34.65037 - 2151.49441 240.48383 35.44095 - 2151.49432 240.48298 35.44095 - 2212.24127 226.73556 36.19454 - 2269.36270 212.59450 36.91017 - 2322.75638 198.06076 37.58693 - 2372.32034 183.13532 38.22389 - 2417.95288 167.81918 38.82014 - 2417.95274 167.81963 38.82014 - 2459.55563 152.13790 39.37482 - 2497.03081 136.06810 39.88730 - 2530.27750 119.61126 40.35699 - 2559.19521 102.76840 40.78335 - 2583.68370 85.54053 41.16579 - 2583.68697 85.51961 41.16579 - 2599.60663 73.65099 41.42978 - 2613.13699 61.62670 41.66737 - 2624.24696 49.44713 41.87846 - 2632.90551 37.11267 42.06293 - 2639.08173 24.62373 42.22066 - 2639.08077 24.61178 42.22066 - 2642.80518 12.60099 42.35158 - 2644.10868 0.40282 42.45566 - 2642.95384 -11.98236 42.53292 - 2639.30329 -24.55421 42.58337 - 2633.11973 -37.31237 42.60702 - 2633.11714 -37.32603 42.60702 - 2624.38658 -50.00991 42.60391 - 2613.10105 -62.87571 42.57415 - 2599.22420 -75.92308 42.51789 - 2582.71973 -89.15173 42.43526 - 2563.55144 -102.56134 42.32641 - 2563.54956 -102.53927 42.32641 - 2541.65515 -116.42863 42.19151 - 2516.96858 -130.46086 42.03079 - 2489.46130 -144.63569 41.84455 - 2459.10482 -158.95280 41.63306 - 2425.87072 -173.41191 41.39661 - 2425.87104 -173.41047 41.39661 - 2410.02985 -178.62141 41.28213 - 2393.71820 -183.86519 41.16271 - 2376.93313 -189.14179 41.03837 - 2359.67169 -194.45120 40.90913 - 2341.93093 -199.79338 40.77505 - 2341.93011 -199.79024 40.77505 - 2279.33930 -217.54145 40.29347 - 2211.36949 -235.65009 39.75980 - 2137.91357 -254.11546 39.17574 - 2058.86461 -272.93691 38.54296 - 1974.11588 -292.11380 37.86314 - 1974.11686 -292.11061 37.86314 - 1956.47553 -295.93608 37.72169 - 1938.60426 -299.77554 37.57845 - 1920.50219 -303.62899 37.43343 - 1902.16850 -307.49643 37.28666 - 1883.60234 -311.37785 37.13816 - 1883.60096 -311.37034 37.13816 - 1852.14109 -317.83337 36.88683 - 1820.03300 -324.33499 36.63080 - 1787.27281 -330.87516 36.37015 - 1753.85668 -337.45388 36.10497 - 1719.78075 -344.07111 35.83534 - 1719.78189 -344.03693 35.83534 - 1667.45956 -353.43744 35.42272 - 1613.79764 -361.89832 35.00059 - 1558.93705 -369.41951 34.56924 - 1503.01877 -376.00095 34.12900 - 1446.18376 -381.64256 33.68017 - 1446.18053 -381.62995 33.68017 - 1338.08396 -389.88269 32.82051 - 1228.18541 -394.50122 31.93423 - 1117.50251 -395.48512 31.02351 - 1007.05301 -392.83399 30.09056 - 897.85478 -386.54746 29.13757 - 897.86291 -386.36172 29.13757 - 791.14334 -375.31201 28.16676 - 687.94032 -361.56085 27.18021 - 588.83570 -346.02647 26.17991 - 494.34290 -328.59136 25.16780 - 405.00962 -309.17316 24.14586 - 405.00338 -309.13880 24.14586 - 321.37484 -287.87826 23.11600 - 243.97607 -264.64070 22.07976 - 173.36046 -239.42732 21.03855 - 110.00007 -213.10723 19.99375 - 54.02978 -186.68676 18.94677 - 54.04230 -186.47687 18.94677 - 5.73519 -158.57661 17.89890 - -34.76204 -130.69174 16.85094 - -67.45343 -102.82025 15.80352 - -92.34238 -74.95948 14.75730 - -109.43143 -47.10612 13.71293 - -109.43659 -47.10296 13.71293 - -118.58379 -18.23228 12.67093 - -119.64543 10.65165 11.63131 - -112.61727 39.55265 10.59393 - -97.49402 68.47424 9.55863 - -74.46823 95.29013 8.52529 - -74.41412 95.75880 8.52529 - -56.64426 81.76016 7.78818 - -41.78184 66.68470 7.05164 - -30.04210 50.53348 6.31556 - -21.64011 33.30734 5.57981 - -16.79078 15.00691 4.84427 - -16.84098 15.27436 4.84427 - -13.21759 20.58306 4.10889 - -8.83819 22.43516 3.37364 - -4.55486 19.61728 2.63847 - -1.30363 12.11420 1.90337 - -0.02150 -0.07371 1.16827 + 0.00000 28.48036 0.00000 + 1.42381 28.46786 0.00071 + 2.84637 28.43036 0.00143 + 4.26643 28.36786 0.00214 + 5.68274 28.28036 0.00285 + 7.09405 28.16786 0.00355 + 7.09405 28.16786 0.00355 + 13.13841 27.62620 0.00654 + 19.06540 27.08453 0.00936 + 24.87503 26.54286 0.01195 + 30.56731 26.00120 0.01424 + 36.14222 25.45953 0.01614 + 36.14222 25.45953 0.01614 + 41.59977 24.91786 0.01760 + 46.93996 24.37620 0.01854 + 52.16279 23.83453 0.01891 + 57.26826 23.29286 0.01863 + 62.25636 22.75120 0.01765 + 62.25636 22.75120 0.01765 + 67.12711 22.20953 0.01589 + 71.88049 21.66786 0.01331 + 76.51651 21.12620 0.00983 + 81.03518 20.58453 0.00542 + 85.43648 20.04286 0.00000 + 85.43648 -122.04403 0.00000 + 73.21957 -122.29403 -0.00285 + 60.97767 -122.54403 -0.00589 + 48.71077 -122.79403 -0.00909 + 36.41886 -123.04403 -0.01242 + 24.10196 -123.29403 -0.01584 + 24.10196 -123.29403 -0.01584 + -6.79967 -123.91903 -0.02461 + -37.85756 -124.54403 -0.03327 + -69.07169 -125.16903 -0.04130 + -100.44207 -125.79403 -0.04819 + -131.96871 -126.41903 -0.05344 + -131.96871 -126.41903 -0.05344 + -163.65159 -127.04403 -0.05651 + -195.49072 -127.66903 -0.05689 + -227.48611 -128.29403 -0.05406 + -259.63774 -128.91903 -0.04748 + -291.94563 -129.54403 -0.03663 + -291.94542 -129.54580 -0.03663 + -304.91585 -129.89616 -0.03098 + -317.93016 -130.41172 -0.02453 + -331.00246 -131.05525 -0.01723 + -344.14539 -131.82424 -0.00907 + -357.37143 -132.71705 0.00000 + -357.37152 170.59457 0.00000 + -340.36154 169.58487 0.01000 + -323.45853 168.45562 0.02089 + -306.67435 167.20835 0.03263 + -290.02075 165.84448 0.04518 + -273.50930 164.36529 0.05850 + -273.50912 164.36350 0.05850 + -244.17879 161.46945 0.08424 + -215.40140 158.22065 0.11207 + -187.24035 154.62199 0.14174 + -159.75825 150.67730 0.17301 + -133.01711 146.38940 0.20564 + -133.01721 146.38768 0.20564 + -107.06112 141.95970 0.23940 + -81.93103 137.20992 0.27407 + -57.68485 132.13851 0.30944 + -34.38050 126.74485 0.34532 + -12.07612 121.02757 0.38148 + -12.07920 121.20035 0.38148 + -7.25568 119.99365 1.21649 + -2.48558 118.34709 3.20855 + 2.19746 115.60315 5.61241 + 6.74805 111.76247 7.68280 + 11.13048 107.32348 8.67446 + 11.12884 107.22424 8.67446 + 21.26408 95.51357 9.18411 + 30.23816 84.00088 9.69371 + 38.07086 72.68617 10.20324 + 44.78199 61.56946 10.71267 + 50.39135 50.65084 11.22198 + 50.39112 490.76524 11.22198 + 123.61329 485.51380 11.98564 + 196.04029 480.16284 12.74860 + 267.65712 474.71145 13.51044 + 338.44866 469.15875 14.27076 + 408.39964 463.50392 15.02914 + 408.39974 463.50440 15.02914 + 477.44119 457.02869 15.78519 + 545.50247 450.43551 16.53850 + 612.56593 443.72410 17.28871 + 678.61376 436.89374 18.03543 + 743.62807 429.94376 18.77826 + 743.62808 429.94379 18.77826 + 786.43667 426.22103 19.27115 + 828.87089 422.45644 19.76204 + 870.92656 418.64990 20.25083 + 912.59947 414.80130 20.73741 + 953.88541 410.91052 21.22167 + 953.88552 410.90947 21.22167 + 1059.63505 402.48237 22.46913 + 1163.14192 393.65796 23.69841 + 1264.30268 384.43534 24.90777 + 1363.01372 374.81383 26.09547 + 1459.17127 364.79299 27.25979 + 1459.17134 364.80752 27.25979 + 1552.75589 355.01129 28.39901 + 1643.74479 344.84096 29.51159 + 1732.04078 334.29664 30.59601 + 1817.54665 323.37858 31.65076 + 1900.16528 312.08714 32.67432 + 1900.16478 312.08365 32.67432 + 1979.86988 300.97352 33.66521 + 2056.64036 289.50981 34.62213 + 2130.38438 277.69312 35.54381 + 2201.01026 265.52416 36.42899 + 2268.42648 253.00365 37.27640 + 2268.42640 253.00279 37.27640 + 2332.34400 238.60537 38.08482 + 2392.46707 223.81431 38.85321 + 2448.69340 208.63057 39.58062 + 2500.92102 193.05513 40.26607 + 2549.04821 177.08899 40.90861 + 2549.04807 177.08944 40.90861 + 2592.97662 160.75771 41.50733 + 2632.60845 144.03792 42.06155 + 2667.84279 126.93107 42.57067 + 2698.57915 109.43821 43.03409 + 2724.71729 91.56034 43.45120 + 2724.72056 91.53943 43.45120 + 2741.79418 79.17081 43.74022 + 2756.37850 66.64651 44.00139 + 2768.44243 53.96694 44.23461 + 2777.95495 41.13248 44.43974 + 2784.88513 28.14354 44.61667 + 2784.88417 28.13159 44.61667 + 2789.26254 15.62080 44.76529 + 2791.12000 2.92263 44.88559 + 2790.41912 -9.96255 44.97758 + 2787.12254 -23.03439 45.04127 + 2781.19294 -36.29256 45.07666 + 2781.19036 -36.30622 45.07666 + 2772.61376 -49.49010 45.08378 + 2761.38219 -62.85589 45.06274 + 2747.45930 -76.40327 45.01370 + 2730.80880 -90.13192 44.93679 + 2711.39446 -104.04153 44.83216 + 2711.39259 -104.01946 44.83216 + 2689.15214 -118.40881 44.69996 + 2664.01954 -132.94105 44.54046 + 2635.96622 -147.61588 44.35394 + 2604.96370 -162.43299 44.14069 + 2570.98355 -177.39210 43.90098 + 2570.98388 -177.39066 43.90098 + 2554.77435 -182.82660 43.78457 + 2538.07410 -188.29538 43.66291 + 2520.88019 -193.79698 43.53603 + 2503.18966 -199.33139 43.40396 + 2484.99956 -204.89857 43.26675 + 2484.99874 -204.89543 43.26675 + 2420.76387 -223.39664 42.77262 + 2350.92501 -242.25527 42.22318 + 2275.37503 -261.47065 41.62016 + 2194.00701 -281.04210 40.96529 + 2106.71423 -300.96899 40.26028 + 2106.71521 -300.96580 40.26028 + 2088.53807 -304.94126 40.11342 + 2070.12198 -308.93072 39.96466 + 2051.46610 -312.93418 39.81400 + 2032.56960 -316.95161 39.66147 + 2013.43163 -320.98303 39.50708 + 2013.43025 -320.97553 39.50708 + 1980.99737 -327.68856 39.24568 + 1947.89125 -334.44018 38.97926 + 1914.10805 -341.23035 38.70789 + 1879.64390 -348.05906 38.43167 + 1844.49495 -354.92629 38.15068 + 1844.49609 -354.89211 38.15068 + 1790.51736 -364.66762 37.72043 + 1735.14278 -373.50351 37.27996 + 1678.51329 -381.39970 36.82959 + 1620.76986 -388.35613 36.36964 + 1562.05344 -394.37274 35.90043 + 1562.05021 -394.36013 35.90043 + 1450.29119 -403.31288 35.00095 + 1336.53419 -408.63141 34.07262 + 1221.79684 -410.31530 33.11770 + 1107.09689 -408.36418 32.13848 + 993.45220 -402.77765 31.13723 + 993.45967 -402.58941 31.13723 + 882.09834 -392.23970 30.11625 + 774.08936 -378.84796 29.07773 + 670.14081 -363.34205 28.02373 + 570.79338 -345.95499 26.95632 + 476.58923 -326.60496 25.87755 + 476.58251 -326.56789 25.87755 + 388.06188 -305.39617 24.78944 + 305.74320 -282.26858 23.69362 + 230.17387 -257.18679 22.59159 + 161.87661 -230.41205 21.48486 + 101.20477 -202.97678 20.37491 + 101.21901 -202.75991 20.37491 + 48.48604 -173.91939 19.26313 + 3.81566 -145.16983 18.15040 + -32.81746 -116.51019 17.03745 + -61.43827 -87.93866 15.92501 + -82.07110 -59.45271 14.81380 + -82.07669 -59.44827 14.81380 + -94.60120 -30.02383 13.70443 + -98.89622 -0.66559 12.59695 + -94.97980 28.62976 11.49129 + -82.86913 57.86529 10.38737 + -62.66822 86.10455 9.28512 + -62.61001 86.60834 9.28512 + -46.61732 73.12759 8.49864 + -33.43532 58.50159 7.71263 + -23.29297 42.73128 6.92698 + -16.41905 25.81737 6.14161 + -13.04223 7.76042 5.35640 + -13.09617 8.04790 5.35640 + -10.81560 14.35588 4.57130 + -7.55214 17.68912 3.78630 + -4.02427 16.75763 3.00139 + -1.18184 10.83474 2.21651 + -0.02311 -0.07922 1.43166 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -27456,7 +27654,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points @@ -27635,7 +27833,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -27647,221 +27845,227 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 2.16667 0.00000 0.00000 -1 0 - + 0.00000 4.33333 0.00000 0.00000 -1 0 - + 0.00000 6.50000 0.00000 0.00000 -1 0 - + 0.00000 8.66667 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 13.00000 0.00000 0.00000 -1 0 - + 0.00000 15.16667 0.00000 0.00000 -1 0 - + 0.00000 17.33333 0.00000 0.00000 -1 0 - + 0.00000 19.50000 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 23.83333 0.00000 0.00000 -1 0 - + 0.00000 26.00000 0.00000 0.00000 -1 0 - + 0.00000 28.16667 0.00000 0.00000 -1 0 - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 36.00000 0.00000 0.00000 -1 0 - - 0.00000 37.00000 0.00000 0.00000 -1 0 - - 0.00000 38.00000 0.00000 0.00000 -1 0 - - 0.00000 39.00000 0.00000 0.00000 -1 0 - - 0.00000 40.00000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 33.50000 0.00000 0.00000 -1 0 - + 0.00000 34.50000 0.00000 0.00000 -1 0 - + 0.00000 35.50000 0.00000 0.00000 -1 0 - + 0.00000 36.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - 0.00000 40.00000 0.00000 0.00000 -1 0 - 0.00000 42.50000 0.00000 0.00000 -1 0 - 0.00000 45.00000 0.00000 0.00000 -1 0 - 0.00000 47.50000 0.00000 0.00000 -1 0 - 0.00000 50.00000 0.00000 0.00000 -1 0 - - 0.00000 52.50000 0.00000 0.00000 -1 0 - + 0.00000 50.00000 0.00000 0.00000 -1 0 - 0.00000 52.50000 0.00000 0.00000 -1 0 - 0.00000 55.00000 0.00000 0.00000 -1 0 - 0.00000 57.50000 0.00000 0.00000 -1 0 - 0.00000 60.00000 0.00000 0.00000 -1 0 - 0.00000 62.50000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 66.00000 0.00000 0.00000 -1 0 - - 0.00000 67.00000 0.00000 0.00000 -1 0 - - 0.00000 68.00000 0.00000 0.00000 -1 0 - - 0.00000 69.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 71.00000 0.00000 0.00000 -1 0 - - 0.00000 72.00000 0.00000 0.00000 -1 0 - - 0.00000 73.00000 0.00000 0.00000 -1 0 - - 0.00000 74.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 76.80000 0.00000 0.00000 -1 0 - - 0.00000 78.60000 0.00000 0.00000 -1 0 - - 0.00000 80.40000 0.00000 0.00000 -1 0 - - 0.00000 82.20000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 85.80000 0.00000 0.00000 -1 0 - - 0.00000 87.60000 0.00000 0.00000 -1 0 - - 0.00000 89.40000 0.00000 0.00000 -1 0 - - 0.00000 91.20000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.40000 0.00000 0.00000 -1 0 - - 0.00000 93.80000 0.00000 0.00000 -1 0 - - 0.00000 94.20000 0.00000 0.00000 -1 0 - - 0.00000 94.60000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 96.00000 0.00000 0.00000 -1 0 - - 0.00000 97.00000 0.00000 0.00000 -1 0 - - 0.00000 98.00000 0.00000 0.00000 -1 0 - + 0.00000 62.50000 0.00000 0.00000 -1 0 - + 0.00000 63.50000 0.00000 0.00000 -1 0 - + 0.00000 64.50000 0.00000 0.00000 -1 0 - + 0.00000 65.50000 0.00000 0.00000 -1 0 - + 0.00000 66.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 68.50000 0.00000 0.00000 -1 0 - + 0.00000 69.50000 0.00000 0.00000 -1 0 - + 0.00000 70.50000 0.00000 0.00000 -1 0 - + 0.00000 71.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 74.30000 0.00000 0.00000 -1 0 - + 0.00000 76.10000 0.00000 0.00000 -1 0 - + 0.00000 77.90000 0.00000 0.00000 -1 0 - + 0.00000 79.70000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 83.30000 0.00000 0.00000 -1 0 - + 0.00000 85.10000 0.00000 0.00000 -1 0 - + 0.00000 86.90000 0.00000 0.00000 -1 0 - + 0.00000 88.70000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.90000 0.00000 0.00000 -1 0 - + 0.00000 91.30000 0.00000 0.00000 -1 0 - + 0.00000 91.70000 0.00000 0.00000 -1 0 - + 0.00000 92.10000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 93.50000 0.00000 0.00000 -1 0 - + 0.00000 94.50000 0.00000 0.00000 -1 0 - + 0.00000 95.50000 0.00000 0.00000 -1 0 - + 0.00000 96.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - 0.00000 99.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 101.50000 0.00000 0.00000 -1 0 - - 0.00000 103.00000 0.00000 0.00000 -1 0 - - 0.00000 104.50000 0.00000 0.00000 -1 0 - - 0.00000 106.00000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 109.00000 0.00000 0.00000 -1 0 - - 0.00000 110.50000 0.00000 0.00000 -1 0 - - 0.00000 112.00000 0.00000 0.00000 -1 0 - + 0.00000 100.50000 0.00000 0.00000 -1 0 - + 0.00000 102.00000 0.00000 0.00000 -1 0 - + 0.00000 103.50000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 106.50000 0.00000 0.00000 -1 0 - + 0.00000 108.00000 0.00000 0.00000 -1 0 - + 0.00000 109.50000 0.00000 0.00000 -1 0 - + 0.00000 111.00000 0.00000 0.00000 -1 0 - + 0.00000 112.50000 0.00000 0.00000 -1 0 - + 0.00000 112.50000 0.00000 0.00000 -1 0 - 0.00000 113.50000 0.00000 0.00000 -1 0 - - 0.00000 115.00000 0.00000 0.00000 -1 0 - - 0.00000 115.00000 0.00000 0.00000 -1 0 - - 0.00000 116.00000 0.00000 0.00000 -1 0 - - 0.00000 117.00000 0.00000 0.00000 -1 0 - - 0.00000 118.00000 0.00000 0.00000 -1 0 - - 0.00000 119.00000 0.00000 0.00000 -1 0 - - 0.00000 120.00000 0.00000 0.00000 -1 0 - - 0.00000 120.00000 0.00000 0.00000 -1 0 - - 0.00000 122.60000 0.00000 0.00000 -1 0 - - 0.00000 125.20000 0.00000 0.00000 -1 0 - - 0.00000 127.80000 0.00000 0.00000 -1 0 - - 0.00000 130.40000 0.00000 0.00000 -1 0 - - 0.00000 133.00000 0.00000 0.00000 -1 0 - - 0.00000 133.00000 0.00000 0.00000 -1 0 - - 0.00000 135.60000 0.00000 0.00000 -1 0 - - 0.00000 138.20000 0.00000 0.00000 -1 0 - - 0.00000 140.80000 0.00000 0.00000 -1 0 - - 0.00000 143.40000 0.00000 0.00000 -1 0 - - 0.00000 146.00000 0.00000 0.00000 -1 0 - - 0.00000 146.00000 0.00000 0.00000 -1 0 - - 0.00000 148.60000 0.00000 0.00000 -1 0 - - 0.00000 151.20000 0.00000 0.00000 -1 0 - - 0.00000 153.80000 0.00000 0.00000 -1 0 - - 0.00000 156.40000 0.00000 0.00000 -1 0 - - 0.00000 159.00000 0.00000 0.00000 -1 0 - - 0.00000 159.00000 0.00000 0.00000 -1 0 - - 0.00000 161.60000 0.00000 0.00000 -1 0 - - 0.00000 164.20000 0.00000 0.00000 -1 0 - - 0.00000 166.80000 0.00000 0.00000 -1 0 - - 0.00000 169.40000 0.00000 0.00000 -1 0 - - 0.00000 172.00000 0.00000 0.00000 -1 0 - - 0.00000 172.00000 0.00000 0.00000 -1 0 - - 0.00000 174.60000 0.00000 0.00000 -1 0 - - 0.00000 177.20000 0.00000 0.00000 -1 0 - - 0.00000 179.80000 0.00000 0.00000 -1 0 - - 0.00000 182.40000 0.00000 0.00000 -1 0 - - 0.00000 185.00000 0.00000 0.00000 -1 0 - - 0.00000 185.00000 0.00000 0.00000 -1 0 - - 0.00000 187.00000 0.00000 0.00000 -1 0 - - 0.00000 189.00000 0.00000 0.00000 -1 0 - - 0.00000 191.00000 0.00000 0.00000 -1 0 - - 0.00000 193.00000 0.00000 0.00000 -1 0 - - 0.00000 195.00000 0.00000 0.00000 -1 0 - - 0.00000 195.00000 0.00000 0.00000 -1 0 - - 0.00000 197.00000 0.00000 0.00000 -1 0 - - 0.00000 199.00000 0.00000 0.00000 -1 0 - - 0.00000 201.00000 0.00000 0.00000 -1 0 - - 0.00000 203.00000 0.00000 0.00000 -1 0 - - 0.00000 205.00000 0.00000 0.00000 -1 0 - - 0.00000 205.00000 0.00000 0.00000 -1 0 - - 0.00000 207.00000 0.00000 0.00000 -1 0 - - 0.00000 209.00000 0.00000 0.00000 -1 0 - - 0.00000 211.00000 0.00000 0.00000 -1 0 - - 0.00000 213.00000 0.00000 0.00000 -1 0 - - 0.00000 215.00000 0.00000 0.00000 -1 0 - - 0.00000 215.00000 0.00000 0.00000 -1 0 - - 0.00000 217.00000 0.00000 0.00000 -1 0 - - 0.00000 219.00000 0.00000 0.00000 -1 0 - - 0.00000 221.00000 0.00000 0.00000 -1 0 - - 0.00000 223.00000 0.00000 0.00000 -1 0 - - 0.00000 225.00000 0.00000 0.00000 -1 0 - - 0.00000 225.00000 0.00000 0.00000 -1 0 - - 0.00000 225.90000 0.00000 0.00000 -1 0 - - 0.00000 226.80000 0.00000 0.00000 -1 0 - - 0.00000 227.70000 0.00000 0.00000 -1 0 - - 0.00000 228.60000 0.00000 0.00000 -1 0 - - 0.00000 229.50000 0.00000 0.00000 -1 0 - - 0.00000 229.50000 0.00000 0.00000 -1 0 - - 0.00000 232.50000 0.00000 0.00000 -1 0 - - 0.00000 235.50000 0.00000 0.00000 -1 0 - - 0.00000 238.50000 0.00000 0.00000 -1 0 - - 0.00000 241.50000 0.00000 0.00000 -1 0 - - 0.00000 244.50000 0.00000 0.00000 -1 0 - - 0.00000 244.50000 0.00000 0.00000 -1 0 - - 0.00000 245.10000 0.00000 0.00000 -1 0 - - 0.00000 245.70000 0.00000 0.00000 -1 0 - - 0.00000 246.30000 0.00000 0.00000 -1 0 - - 0.00000 246.90000 0.00000 0.00000 -1 0 - - 0.00000 247.50000 0.00000 0.00000 -1 0 - - 0.00000 247.50000 0.00000 0.00000 -1 0 - - 0.00000 248.50000 0.00000 0.00000 -1 0 - - 0.00000 249.50000 0.00000 0.00000 -1 0 - - 0.00000 250.50000 0.00000 0.00000 -1 0 - - 0.00000 251.50000 0.00000 0.00000 -1 0 - - 0.00000 252.50000 0.00000 0.00000 -1 0 - - 0.00001 252.50000 0.00001 0.00000 402 100 P - 6.83626 254.00000 6.83626 0.70654 402 100 P - 13.67253 255.50000 13.67253 1.41308 402 100 P - 20.50879 257.00000 20.50879 2.11962 402 100 P - 27.34506 258.50000 27.34506 2.82616 402 100 P - 34.18132 260.00000 34.18132 3.53270 402 100 P - 34.18132 260.00000 34.18132 3.53270 402 100 P - 48.36024 262.80000 48.36024 4.99812 402 100 P - 62.53916 265.60000 62.53916 6.46353 402 100 P - 76.71808 268.40000 76.71808 7.92895 402 100 P - 90.89700 271.20000 90.89700 9.39436 402 100 P - 105.07592 274.00000 105.07592 10.85978 402 100 P - 105.07592 274.00000 105.07592 10.85978 402 100 P - 119.25484 276.80000 119.25484 12.32520 402 100 P - 126.63230 279.60000 133.43376 13.79061 330 95 3 - 134.24997 282.40000 147.61267 15.25603 330 91 3 - 142.46446 285.20000 161.79159 16.72145 330 88 3 - 150.66819 288.00000 175.97051 18.18686 330 86 3 - 150.66819 288.00000 175.97051 18.18686 330 86 3 - 158.86370 290.80000 190.14943 19.65228 330 84 3 - 167.05296 293.60000 204.32835 21.11769 330 82 3 - 175.23773 296.40000 218.50727 22.58311 330 80 3 - 177.21715 299.20000 232.68619 24.04853 220 76 2 - 178.21186 302.00000 246.86511 25.51394 220 72 2 - 178.21186 302.00000 246.86511 25.51394 220 72 2 - 179.20875 304.80000 261.04403 26.97936 220 69 2 - 180.21078 307.60000 275.22294 28.44477 220 65 2 - 181.22031 310.40000 289.40186 29.91019 220 63 2 - 182.23968 313.20000 303.58078 31.37561 220 60 2 - 183.27125 316.00000 317.75970 32.84102 220 58 2 - 183.27125 316.00000 317.75970 32.84102 220 58 2 - 184.31680 318.80000 331.93862 34.30644 220 56 2 - 185.37582 321.60000 346.11754 35.77186 220 54 2 - 186.44725 324.40000 360.29646 37.23727 220 52 2 - 187.53003 327.20000 374.47538 38.70269 220 50 2 - 173.41232 330.00000 388.65430 40.16810 110 45 1 - 81.21297 330.00000 232.08445 51.23303 110 35 1 - 79.58881 332.00000 236.62030 52.23432 110 34 1 - 77.96719 334.00000 241.15616 53.23562 110 32 1 - 76.34759 336.00000 245.69201 54.23692 110 31 1 - 74.72950 338.00000 250.22786 55.23821 110 30 1 - 73.11242 340.00000 254.76371 56.23951 110 29 1 - 119.08405 340.00000 426.80806 44.09333 110 28 1 - 108.49654 342.00000 436.94000 45.14005 110 25 1 - 97.91156 344.00000 447.07194 46.18678 110 22 1 - 87.32835 346.00000 457.20388 47.23350 110 19 1 - 76.74617 348.00000 467.33583 48.28023 110 16 1 - 66.16427 350.00000 477.46777 49.32696 110 14 1 + 0.00000 114.50000 0.00000 0.00000 -1 0 - + 0.00000 115.50000 0.00000 0.00000 -1 0 - + 0.00000 116.50000 0.00000 0.00000 -1 0 - + 0.00000 117.50000 0.00000 0.00000 -1 0 - + 0.00000 117.50000 0.00000 0.00000 -1 0 - + 0.00000 120.10000 0.00000 0.00000 -1 0 - + 0.00000 122.70000 0.00000 0.00000 -1 0 - + 0.00000 125.30000 0.00000 0.00000 -1 0 - + 0.00000 127.90000 0.00000 0.00000 -1 0 - + 0.00000 130.50000 0.00000 0.00000 -1 0 - + 0.00000 130.50000 0.00000 0.00000 -1 0 - + 0.00000 133.10000 0.00000 0.00000 -1 0 - + 0.00000 135.70000 0.00000 0.00000 -1 0 - + 0.00000 138.30000 0.00000 0.00000 -1 0 - + 0.00000 140.90000 0.00000 0.00000 -1 0 - + 0.00000 143.50000 0.00000 0.00000 -1 0 - + 0.00000 143.50000 0.00000 0.00000 -1 0 - + 0.00000 146.10000 0.00000 0.00000 -1 0 - + 0.00000 148.70000 0.00000 0.00000 -1 0 - + 0.00000 151.30000 0.00000 0.00000 -1 0 - + 0.00000 153.90000 0.00000 0.00000 -1 0 - + 0.00000 156.50000 0.00000 0.00000 -1 0 - + 0.00000 156.50000 0.00000 0.00000 -1 0 - + 0.00000 159.10000 0.00000 0.00000 -1 0 - + 0.00000 161.70000 0.00000 0.00000 -1 0 - + 0.00000 164.30000 0.00000 0.00000 -1 0 - + 0.00000 166.90000 0.00000 0.00000 -1 0 - + 0.00000 169.50000 0.00000 0.00000 -1 0 - + 0.00000 169.50000 0.00000 0.00000 -1 0 - + 0.00000 172.10000 0.00000 0.00000 -1 0 - + 0.00000 174.70000 0.00000 0.00000 -1 0 - + 0.00000 177.30000 0.00000 0.00000 -1 0 - + 0.00000 179.90000 0.00000 0.00000 -1 0 - + 0.00000 182.50000 0.00000 0.00000 -1 0 - + 0.00000 182.50000 0.00000 0.00000 -1 0 - + 0.00000 184.50000 0.00000 0.00000 -1 0 - + 0.00000 186.50000 0.00000 0.00000 -1 0 - + 0.00000 188.50000 0.00000 0.00000 -1 0 - + 0.00000 190.50000 0.00000 0.00000 -1 0 - + 0.00000 192.50000 0.00000 0.00000 -1 0 - + 0.00000 192.50000 0.00000 0.00000 -1 0 - + 0.00000 194.50000 0.00000 0.00000 -1 0 - + 0.00000 196.50000 0.00000 0.00000 -1 0 - + 0.00000 198.50000 0.00000 0.00000 -1 0 - + 0.00000 200.50000 0.00000 0.00000 -1 0 - + 0.00000 202.50000 0.00000 0.00000 -1 0 - + 0.00000 202.50000 0.00000 0.00000 -1 0 - + 0.00000 204.50000 0.00000 0.00000 -1 0 - + 0.00000 206.50000 0.00000 0.00000 -1 0 - + 0.00000 208.50000 0.00000 0.00000 -1 0 - + 0.00000 210.50000 0.00000 0.00000 -1 0 - + 0.00000 212.50000 0.00000 0.00000 -1 0 - + 0.00000 212.50000 0.00000 0.00000 -1 0 - + 0.00000 214.50000 0.00000 0.00000 -1 0 - + 0.00000 216.50000 0.00000 0.00000 -1 0 - + 0.00000 218.50000 0.00000 0.00000 -1 0 - + 0.00000 220.50000 0.00000 0.00000 -1 0 - + 0.00000 222.50000 0.00000 0.00000 -1 0 - + 0.00000 222.50000 0.00000 0.00000 -1 0 - + 0.00000 223.40000 0.00000 0.00000 -1 0 - + 0.00000 224.30000 0.00000 0.00000 -1 0 - + 0.00000 225.20000 0.00000 0.00000 -1 0 - + 0.00000 226.10000 0.00000 0.00000 -1 0 - + 0.00000 227.00000 0.00000 0.00000 -1 0 - + 0.00000 227.00000 0.00000 0.00000 -1 0 - + 0.00000 230.00000 0.00000 0.00000 -1 0 - + 0.00000 233.00000 0.00000 0.00000 -1 0 - + 0.00000 236.00000 0.00000 0.00000 -1 0 - + 0.00000 239.00000 0.00000 0.00000 -1 0 - + 0.00000 242.00000 0.00000 0.00000 -1 0 - + 0.00000 242.00000 0.00000 0.00000 -1 0 - + 0.00000 242.60000 0.00000 0.00000 -1 0 - + 0.00000 243.20000 0.00000 0.00000 -1 0 - + 0.00000 243.80000 0.00000 0.00000 -1 0 - + 0.00000 244.40000 0.00000 0.00000 -1 0 - + 0.00000 245.00000 0.00000 0.00000 -1 0 - + 0.00000 245.00000 0.00000 0.00000 -1 0 - + 0.00000 246.00000 0.00000 0.00000 -1 0 - + 0.00000 247.00000 0.00000 0.00000 -1 0 - + 0.00000 248.00000 0.00000 0.00000 -1 0 - + 0.00000 249.00000 0.00000 0.00000 -1 0 - + 0.00000 250.00000 0.00000 0.00000 -1 0 - + 0.00001 250.00000 0.00001 0.00000 402 100 P + 6.83626 251.50000 6.83626 0.70654 402 100 P + 13.67253 253.00000 13.67253 1.41308 402 100 P + 20.50879 254.50000 20.50879 2.11962 402 100 P + 27.34506 256.00000 27.34506 2.82616 402 100 P + 34.18132 257.50000 34.18132 3.53270 402 100 P + 34.18132 257.50000 34.18132 3.53270 402 100 P + 48.36024 260.30000 48.36024 4.99812 402 100 P + 62.53916 263.10000 62.53916 6.46353 402 100 P + 76.71808 265.90000 76.71808 7.92895 402 100 P + 90.89700 268.70000 90.89700 9.39436 402 100 P + 105.07592 271.50000 105.07592 10.85978 402 100 P + 105.07592 271.50000 105.07592 10.85978 402 100 P + 119.25484 274.30000 119.25484 12.32520 402 100 P + 129.06501 277.10000 133.43376 13.79061 330 97 3 + 136.61385 279.90000 147.61267 15.25603 330 93 3 + 144.75743 282.70000 161.79159 16.72145 330 89 3 + 152.88830 285.50000 175.97051 18.18686 330 87 3 + 152.88830 285.50000 175.97051 18.18686 330 87 3 + 161.00913 288.30000 190.14943 19.65228 330 85 3 + 169.12200 291.10000 204.32835 21.11769 330 83 3 + 177.22882 293.90000 218.50727 22.58311 330 81 3 + 183.47354 296.70000 232.68619 24.04853 220 79 2 + 184.20403 299.50000 246.86511 25.51394 220 75 2 + 184.20403 299.50000 246.86511 25.51394 220 75 2 + 184.93278 302.30000 261.04403 26.97936 220 71 2 + 185.66309 305.10000 275.22294 28.44477 220 67 2 + 186.39766 307.90000 289.40186 29.91019 220 64 2 + 187.13917 310.70000 303.58078 31.37561 220 62 2 + 187.89030 313.50000 317.75970 32.84102 220 59 2 + 187.89030 313.50000 317.75970 32.84102 220 59 2 + 188.65314 316.30000 331.93862 34.30644 220 57 2 + 189.42745 319.10000 346.11754 35.77186 220 55 2 + 190.21243 321.90000 360.29646 37.23727 220 53 2 + 191.00727 324.70000 374.47538 38.70269 220 51 2 + 185.10199 327.50000 388.65430 40.16810 110 48 1 + 83.84315 327.50000 232.08445 51.23303 110 36 1 + 82.04809 329.50000 236.62030 52.23432 110 35 1 + 80.25522 331.50000 241.15616 53.23562 110 33 1 + 78.46407 333.50000 245.69201 54.23692 110 32 1 + 76.67420 335.50000 250.22786 55.23821 110 31 1 + 74.88515 337.50000 254.76371 56.23951 110 29 1 + 126.96285 337.50000 426.80806 44.09333 110 30 1 + 115.61049 339.50000 436.94000 45.14005 110 26 1 + 104.26029 341.50000 447.07194 46.18678 110 23 1 + 92.91161 343.50000 457.20388 47.23350 110 20 1 + 81.56383 345.50000 467.33583 48.28023 110 17 1 + 70.21632 347.50000 477.46777 49.32696 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -27881,9 +28085,9 @@ Layer name -18.50 0.000 '6_Siltig_zand' -20.50 0.000 '7_Klei_met_zandlagen' -21.50 12.818 '9A_Zand_Pleistoceen' - -25.00 1026.777 '9B_Zand_Pleistoceen' - -32.00 77.159 '17_Klei_zandlagen' - -33.00 92.621 '9B_Zand_Pleistoceen' + -25.00 1047.808 '9B_Zand_Pleistoceen' + -32.00 79.361 '17_Klei_zandlagen' + -33.00 98.587 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -27905,9 +28109,9 @@ Layer name -18.50 0.00 '6_Siltig_zand' -20.50 0.00 '7_Klei_met_zandlagen' -21.50 4.41 '9A_Zand_Pleistoceen' - -25.00 353.15 '9B_Zand_Pleistoceen' - -32.00 17.74 '17_Klei_zandlagen' - -33.00 31.86 '9B_Zand_Pleistoceen' + -25.00 360.39 '9B_Zand_Pleistoceen' + -32.00 18.24 '17_Klei_zandlagen' + -33.00 33.91 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -28146,7 +28350,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -28158,22 +28362,28 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - + 0.00000 0.50000 0.00000 0.00000 -1 0 - + 0.00000 1.00000 0.00000 0.00000 -1 0 - + 0.00000 1.50000 0.00000 0.00000 -1 0 - + 0.00000 2.00000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - + 0.00000 6.83333 0.00000 0.00000 -1 0 - + 0.00000 9.00000 0.00000 0.00000 -1 0 - + 0.00000 11.16667 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 15.50000 0.00000 0.00000 -1 0 - + 0.00000 17.66667 0.00000 0.00000 -1 0 - + 0.00000 19.83333 0.00000 0.00000 -1 0 - + 0.00000 22.00000 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 26.33333 0.00000 0.00000 -1 0 - + 0.00000 28.50000 0.00000 0.00000 -1 0 - + 0.00000 30.66667 0.00000 0.00000 -1 0 - + 0.00000 32.83333 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 36.00000 0.00000 0.00000 -1 0 - @@ -28193,49 +28403,49 @@ Status character 0.00000 60.00000 0.00000 0.00000 -1 0 - 0.00000 62.50000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 1 0 A - 2.00129 66.00000 4.24974 1.40724 110 47 1 - 3.29909 67.00000 8.50050 2.81482 110 39 1 - 4.56326 68.00000 12.75330 4.22307 110 36 1 - 5.81131 69.00000 17.00914 5.63233 110 34 1 + 0.00000 65.00000 0.00000 0.00000 402 100 P + 2.00724 66.00000 4.24974 1.40724 110 47 1 + 3.30390 67.00000 8.50050 2.81482 110 39 1 + 4.56671 68.00000 12.75330 4.22307 110 36 1 + 5.81317 69.00000 17.00914 5.63233 110 34 1 7.04293 70.00000 21.26903 7.04293 110 33 1 6.99530 70.00000 21.22709 6.99530 110 33 1 - 8.20084 71.00000 25.48357 8.39800 110 0 1 - 9.39078 72.00000 29.74601 9.80267 110 0 1 - 10.56625 73.00000 34.01531 11.20960 110 0 1 - 11.72841 74.00000 38.29236 12.61909 110 0 1 - 12.87839 75.00000 42.57802 14.03141 110 0 1 - 12.59806 75.00000 42.33319 13.75107 110 0 1 - 14.58999 76.80000 50.02711 16.25029 110 0 1 - 16.55214 78.60000 57.75567 18.76075 110 0 1 - 18.49044 80.40000 65.52272 21.28372 110 0 1 - 20.41066 82.20000 73.33157 23.82027 110 0 1 - 22.31838 84.00000 81.18498 26.37129 110 0 1 - 21.25174 84.00000 80.52920 25.30465 110 0 1 - 23.04849 85.80000 88.36554 27.76706 110 0 1 - 24.84220 87.60000 96.24987 30.24455 110 0 1 - 26.63728 89.40000 104.18324 32.73744 110 0 1 - 28.43801 91.20000 112.16618 35.24592 110 0 1 - 30.24848 93.00000 120.19873 37.76998 110 0 1 - 29.07523 93.00000 126.02812 36.59673 110 0 1 - 26.44843 93.40000 127.90672 37.14225 110 0 1 - 51.14268 93.80000 129.78787 37.68851 110 39 1 - 81.28293 94.20000 131.67154 38.23550 220 62 2 - 105.92518 94.60000 133.55774 38.78322 220 79 2 - 111.17610 95.00000 135.44645 39.33168 330 82 3 - 115.74867 95.00000 149.34777 38.48288 220 78 2 - 113.89994 96.00000 154.56616 39.82751 220 74 2 - 112.05155 97.00000 159.80151 41.17652 220 70 2 - 110.20303 98.00000 165.05356 42.52983 220 67 2 - 108.35389 99.00000 170.32198 43.88736 220 64 2 - 106.50365 100.00000 175.60645 45.24902 220 61 2 + 8.19871 71.00000 25.48357 8.39800 110 0 1 + 9.38625 72.00000 29.74601 9.80267 110 0 1 + 10.55909 73.00000 34.01531 11.20960 110 0 1 + 11.71841 74.00000 38.29236 12.61909 110 0 1 + 12.86534 75.00000 42.57802 14.03141 110 0 1 + 12.58501 75.00000 42.33319 13.75107 110 0 1 + 14.57103 76.80000 50.02711 16.25029 110 0 1 + 16.52680 78.60000 57.75567 18.76075 110 0 1 + 18.45833 80.40000 65.52272 21.28372 110 0 1 + 20.37148 82.20000 73.33157 23.82027 110 0 1 + 22.27191 84.00000 81.18498 26.37129 110 0 1 + 21.20527 84.00000 80.52920 25.30465 110 0 1 + 22.99458 85.80000 88.36554 27.76706 110 0 1 + 24.78075 87.60000 96.24987 30.24455 110 0 1 + 26.56822 89.40000 104.18324 32.73744 110 0 1 + 28.36128 91.20000 112.16618 35.24592 110 0 1 + 30.16408 93.00000 120.19873 37.76998 110 0 1 + 28.99083 93.00000 126.02812 36.59673 110 0 1 + 26.34457 93.40000 127.90672 37.14225 110 0 1 + 50.98302 93.80000 129.78787 37.68851 110 39 1 + 81.21393 94.20000 131.67154 38.23550 220 62 2 + 105.82015 94.60000 133.55774 38.78322 220 79 2 + 111.12966 95.00000 135.44645 39.33168 330 82 3 + 115.59670 95.00000 149.34777 38.48288 220 77 2 + 113.61671 96.00000 154.56616 39.82751 220 74 2 + 111.63707 97.00000 159.80151 41.17652 220 70 2 + 109.65730 98.00000 165.05356 42.52983 220 66 2 + 107.67691 99.00000 170.32198 43.88736 220 63 2 + 105.69541 100.00000 175.60645 45.24902 220 60 2 32.17940 100.00000 134.41913 50.84292 1 0 A 32.83978 101.50000 137.17769 51.88633 1 0 A 33.50638 103.00000 139.96218 52.93954 1 0 A 34.17891 104.50000 142.77145 54.00212 1 0 A 34.85708 106.00000 145.60431 55.07363 1 0 A 35.54060 107.50000 148.45950 56.15358 1 0 A - 41.54012 107.50000 190.50134 55.85674 110 0 1 + 40.28125 107.50000 190.50134 55.85674 1 0 A 41.06164 109.00000 194.19205 56.93889 1 0 A 41.84738 110.50000 197.90802 58.02844 1 0 A 42.63809 112.00000 201.64753 59.12490 1 0 A @@ -28361,18 +28571,18 @@ Status character 83.19563 324.40000 1449.46119 144.15362 1 0 A 84.19886 327.20000 1466.93966 145.89191 1 0 A 85.20141 330.00000 1484.40648 147.62904 1 0 A - 148.51273 330.00000 962.77123 178.49268 110 0 1 - 152.27550 332.00000 968.90579 179.62999 110 0 1 - 156.03506 334.00000 975.03667 180.76662 110 0 1 - 159.79192 336.00000 981.16392 181.90258 110 0 1 - 163.54660 338.00000 987.28762 183.03789 110 0 1 - 167.29963 340.00000 993.40782 184.17254 110 0 1 + 145.88255 330.00000 962.77123 178.49268 110 0 1 + 149.81622 332.00000 968.90579 179.62999 110 0 1 + 153.74703 334.00000 975.03667 180.76662 110 0 1 + 157.67543 336.00000 981.16392 181.90258 110 0 1 + 161.60190 338.00000 987.28762 183.03789 110 0 1 + 165.52690 340.00000 993.40782 184.17254 110 0 1 86.89388 340.00000 1507.97138 149.58246 1 0 A 87.59974 342.00000 1520.22101 150.79755 1 0 A - 100.28736 344.00000 1532.46551 152.01214 110 0 1 - 113.13138 346.00000 1544.70498 153.22623 110 0 1 - 125.97389 348.00000 1556.93951 154.43983 110 0 1 - 138.81563 350.00000 1569.16918 155.65294 110 0 1 + 93.93863 344.00000 1532.46551 152.01214 110 0 1 + 107.54812 346.00000 1544.70498 153.22623 110 0 1 + 121.15622 348.00000 1556.93951 154.43983 110 0 1 + 134.76357 350.00000 1569.16918 155.65294 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -28385,16 +28595,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 114.782 '99_Aanvulzand' - -9.00 74.950 '5_Klei_siltig' + 5.50 114.435 '99_Aanvulzand' + -9.00 74.855 '5_Klei_siltig' -11.00 303.110 '6_Siltig_zand' -17.50 60.896 '7_Klei_met_zandlagen' -18.50 127.159 '6_Siltig_zand' -20.50 70.873 '7_Klei_met_zandlagen' -21.50 221.098 '9A_Zand_Pleistoceen' -25.00 550.290 '9B_Zand_Pleistoceen' - -32.00 157.911 '17_Klei_zandlagen' - -33.00 107.969 '9B_Zand_Pleistoceen' + -32.00 155.709 '17_Klei_zandlagen' + -33.00 104.214 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -28409,16 +28619,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -36.07 '99_Aanvulzand' - -9.00 -13.63 '5_Klei_siltig' + 5.50 -35.96 '99_Aanvulzand' + -9.00 -13.61 '5_Klei_siltig' -11.00 -81.36 '6_Siltig_zand' -17.50 -14.00 '7_Klei_met_zandlagen' -18.50 -34.13 '6_Siltig_zand' -20.50 -16.29 '7_Klei_met_zandlagen' -21.50 -76.04 '9A_Zand_Pleistoceen' -25.00 -189.27 '9B_Zand_Pleistoceen' - -32.00 -36.30 '17_Klei_zandlagen' - -33.00 -37.14 '9B_Zand_Pleistoceen' + -32.00 -35.79 '17_Klei_zandlagen' + -33.00 -35.84 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -30011,28 +30221,34 @@ Layer name [VERIFY STEP 6.4 (HIGH MODULUS OF SUBGRADE REACTION AND LOW PASSIVE WATER LEVEL)] [POINTS ON SHEETPILE] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -30246,9 +30462,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 0.00000 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 0.00000 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 0.00000 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -1.89702 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 -4.23974 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -6.63320 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -30258,261 +30474,267 @@ SupportName 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.57 : Percentage mobilized resistance left - 13.57 : Percentage mobilized resistance right - 2950.54 : Effective left - 2950.54 : Effective right + 13.49 : Percentage mobilized resistance left + 13.65 : Percentage mobilized resistance right + 2933.58 : Effective left + 3008.00 : Effective right 6349.00 : Water pressure left - 6349.00 : Water pressure right + 6261.81 : Water pressure right 21746.57 : Max effective resistance left -21746.57 : Max effective resistance right +22029.67 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 880.16 : Vertical force left - 880.16 : Vertical force right + 874.93 : Vertical force left + 897.27 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --880.16 : Active force -880.16 : Passive force --880.16 : Plugged active force -880.16 : Plugged passive force +-874.93 : Active force +897.27 : Passive force +-874.93 : Plugged active force +897.27 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor -0.00 : Resulting Vertical Force Unplugged -0.00 : Resulting Vertical Force Plugged -0 : Vertical Balance Result Unplugged -0 : Vertical Balance Result Plugged +22.34 : Resulting Vertical Force Unplugged +22.34 : Resulting Vertical Force Plugged +2 : Vertical Balance Result Unplugged +2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 - 0.00000 0.00000 0.00000 + 0.00000 1.89702 0.00000 + 0.09474 1.89016 0.00002 + 0.18879 1.86959 0.00005 + 0.28147 1.83530 0.00007 + 0.37209 1.78730 0.00009 + 0.45997 1.72558 0.00012 + 0.45996 1.72562 0.00012 + 0.80171 1.42935 0.00021 + 1.07947 1.13481 0.00029 + 1.29357 0.84177 0.00036 + 1.44433 0.54997 0.00042 + 1.53196 0.25909 0.00046 + 1.53196 0.25923 0.00046 + 1.55667 -0.03111 0.00048 + 1.51849 -0.32129 0.00047 + 1.41743 -0.61167 0.00045 + 1.25340 -0.90259 0.00042 + 1.02624 -1.19436 0.00037 + 1.02625 -1.19427 0.00037 + 0.73579 -1.48719 0.00030 + 0.38171 -1.78147 0.00023 + -0.03629 -2.07725 0.00015 + -0.51854 -2.37454 0.00007 + -1.06537 -2.67329 0.00000 + -1.06537 1.56644 0.00000 + -0.91564 1.42811 -0.00003 + -0.77976 1.28952 -0.00006 + -0.65774 1.15071 -0.00008 + -0.54962 1.01168 -0.00010 + -0.45541 0.87245 -0.00013 + -0.45541 0.87243 -0.00013 + -0.28089 0.52355 -0.00018 + -0.19372 0.17360 -0.00022 + -0.19417 -0.17733 -0.00026 + -0.28246 -0.52912 -0.00030 + -0.45880 -0.88169 -0.00033 + -0.45878 -0.88178 -0.00033 + -0.72337 -1.23500 -0.00036 + -1.07632 -1.58868 -0.00037 + -1.51772 -1.94246 -0.00037 + -2.04752 -2.29585 -0.00033 + -2.66555 -2.64816 -0.00027 + -2.66558 -2.64831 -0.00027 + -2.93744 -2.78878 -0.00023 + -3.22332 -2.92888 -0.00019 + -3.52320 -3.06854 -0.00014 + -3.83701 -3.20768 -0.00007 + -4.16471 -3.34620 0.00000 + -4.16471 3.28696 0.00000 + -3.84291 3.14913 0.00008 + -3.53486 3.01210 0.00018 + -3.24046 2.87596 0.00028 + -2.95963 2.74077 0.00039 + -2.69227 2.60663 0.00051 + -2.69227 2.60655 0.00051 + -2.24462 2.36793 0.00074 + -1.83958 2.13322 0.00099 + -1.47641 1.90269 0.00126 + -1.15434 1.67659 0.00154 + -0.87256 1.45510 0.00183 + -0.87257 1.45504 0.00183 + -0.63024 1.23830 0.00212 + -0.42649 1.02640 0.00243 + -0.26044 0.81942 0.00273 + -0.13120 0.61741 0.00304 + -0.03787 0.42040 0.00335 + -0.03784 0.41865 0.00335 + -0.02190 0.38017 0.00599 + -0.00721 0.35761 0.01219 + 0.00704 0.35950 0.01957 + 0.02187 0.38585 0.02578 + 0.03812 0.42814 0.02843 + 0.03815 0.42989 0.02843 + 0.08706 0.54850 0.02864 + 0.14791 0.66899 0.02885 + 0.22091 0.79136 0.02906 + 0.30625 0.91561 0.02927 + 0.40410 1.04173 0.02947 + 0.40410 1.04173 0.02947 + 0.55472 0.96676 0.02978 + 0.69417 0.89263 0.03009 + 0.82256 0.81932 0.03039 + 0.94001 0.74682 0.03069 + 1.04664 0.67511 0.03098 + 1.04664 0.67511 0.03098 + 1.14258 0.60419 0.03127 + 1.22793 0.53402 0.03155 + 1.30282 0.46461 0.03182 + 1.36735 0.39591 0.03208 + 1.42163 0.32793 0.03234 + 1.42163 0.32793 0.03234 + 1.45218 0.28299 0.03251 + 1.47824 0.23835 0.03267 + 1.49986 0.19399 0.03283 + 1.51705 0.14992 0.03299 + 1.52985 0.10613 0.03314 + 1.52984 0.10618 0.03314 + 1.55510 0.08876 0.03351 + 1.57629 0.07474 0.03386 + 1.59424 0.06388 0.03419 + 1.60976 0.05591 0.03448 + 1.62355 0.05058 0.03475 + 1.62354 0.05069 0.03475 + 1.63629 0.04774 0.03499 + 1.64855 0.04691 0.03520 + 1.66084 0.04793 0.03539 + 1.67361 0.05054 0.03554 + 1.68724 0.05448 0.03567 + 1.68724 0.05459 0.03567 + 1.70206 0.05957 0.03577 + 1.71829 0.06534 0.03584 + 1.73608 0.07160 0.03588 + 1.75554 0.07810 0.03589 + 1.77669 0.08454 0.03587 + 1.77669 0.08466 0.03587 + 1.79950 0.09076 0.03581 + 1.82383 0.09624 0.03573 + 1.84947 0.10081 0.03562 + 1.87614 0.10416 0.03547 + 1.90350 0.10600 0.03530 + 1.90350 0.10613 0.03530 + 1.93114 0.10616 0.03509 + 1.95852 0.10407 0.03484 + 1.98505 0.09955 0.03457 + 2.01005 0.09228 0.03426 + 2.03276 0.08193 0.03391 + 2.03278 0.08202 0.03391 + 2.03957 -0.01422 0.03362 + 2.02701 -0.11167 0.03331 + 1.99482 -0.21042 0.03298 + 1.94274 -0.31055 0.03263 + 1.87050 -0.41214 0.03226 + 1.87050 -0.41210 0.03226 + 1.78588 -0.43459 0.03187 + 1.69647 -0.45995 0.03146 + 1.60170 -0.48831 0.03104 + 1.50094 -0.51978 0.03060 + 1.39357 -0.55449 0.03014 + 1.39357 -0.55444 0.03014 + 1.27893 -0.59248 0.02967 + 1.15635 -0.63396 0.02919 + 1.02512 -0.67896 0.02869 + 0.88452 -0.72756 0.02818 + 0.73385 -0.77983 0.02767 + 0.73385 -0.77981 0.02767 + 0.56572 -0.90179 0.02715 + 0.37299 -1.02590 0.02662 + 0.15522 -1.15215 0.02609 + -0.08802 -1.28056 0.02556 + -0.35715 -1.41112 0.02502 + -0.35715 -1.41113 0.02502 + -0.48094 -1.34019 0.02479 + -0.59844 -1.27119 0.02455 + -0.70981 -1.20410 0.02431 + -0.81524 -1.13892 0.02408 + -0.91488 -1.07563 0.02384 + -0.91483 -1.07580 0.02384 + -1.20743 -0.87828 0.02308 + -1.44382 -0.70094 0.02235 + -1.62993 -0.54299 0.02165 + -1.77146 -0.40351 0.02098 + -1.87378 -0.28145 0.02036 + -1.87383 -0.28166 0.02036 + -1.89006 -0.25926 0.02024 + -1.90496 -0.23750 0.02012 + -1.91857 -0.21638 0.02000 + -1.93094 -0.19588 0.01989 + -1.94209 -0.17599 0.01977 + -1.94206 -0.17614 0.01977 + -1.97631 -0.09961 0.01932 + -1.99268 -0.03287 0.01890 + -1.99351 0.02478 0.01852 + -1.98099 0.07406 0.01816 + -1.95712 0.11567 0.01783 + -1.95710 0.11532 0.01783 + -1.91924 0.15371 0.01751 + -1.87175 0.18433 0.01722 + -1.81666 0.20814 0.01697 + -1.75574 0.22606 0.01675 + -1.69053 0.23898 0.01657 + -1.69053 0.23863 0.01657 + -1.62240 0.24743 0.01642 + -1.55228 0.25292 0.01631 + -1.48100 0.25591 0.01622 + -1.40914 0.25716 0.01617 + -1.33708 0.25739 0.01614 + -1.33709 0.25711 0.01614 + -1.26511 0.25701 0.01614 + -1.19314 0.25723 0.01617 + -1.12098 0.25840 0.01622 + -1.04829 0.26108 0.01629 + -0.97458 0.26582 0.01638 + -0.97459 0.26562 0.01638 + -0.89925 0.27294 0.01649 + -0.82146 0.28329 0.01662 + -0.74028 0.29712 0.01677 + -0.65471 0.31482 0.01693 + -0.56359 0.33672 0.01710 + -0.56360 0.33660 0.01710 + -0.46577 0.36302 0.01729 + -0.35986 0.39422 0.01748 + -0.24453 0.43041 0.01768 + -0.11836 0.47172 0.01789 + 0.02012 0.51826 0.01810 + 0.02011 0.51824 0.01810 + 0.10781 0.35885 0.01825 + 0.16369 0.20006 0.01839 + 0.18788 0.04187 0.01854 + 0.18048 -0.11574 0.01868 + 0.14162 -0.27276 0.01883 + 0.14162 -0.27276 0.01883 + 0.09198 -0.22325 0.01897 + 0.05249 -0.17120 0.01911 + 0.02366 -0.11664 0.01925 + 0.00600 -0.05957 0.01939 + 0.00000 0.00000 0.01953 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -30522,7 +30744,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points @@ -30654,8 +30876,528 @@ Percentage [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] +DataCount=37 +[COLUMN INDICATION] +Slide plane position +Theta min +Theta max +Q min +Q max +[END OF COLUMN INDICATION] +[DATA] + 1.00000 0.00000 0.00000 0.00000 0.00000 + 0.75000 69.25300 36.29600 2.39098 0.18508 + -0.33333 69.25300 36.29600 48.05576 3.71978 + -1.41667 69.25300 36.29600 143.60643 11.11594 + -2.50000 69.25300 36.29600 289.04299 22.37354 + -3.00000 69.25300 36.29600 372.99298 28.87173 + -4.25000 69.25300 36.29600 629.35923 48.71591 + -5.50000 69.25300 36.29600 952.14161 73.70106 + -6.00000 69.25300 36.29600 1099.85108 85.13460 + -6.50000 69.25300 36.29600 1258.18713 97.39069 + -7.40000 69.25300 36.29600 1569.97100 121.52449 + -8.30000 69.25300 36.29600 1916.18500 148.32338 + -8.50000 69.25300 36.29600 1997.79713 154.64062 + -9.00000 69.25300 36.29600 2209.26609 171.00949 + -9.75000 68.96000 36.93800 2393.65796 206.38131 + -10.50000 68.68800 37.45400 2582.47278 242.99441 + -11.00000 68.51700 37.74600 2710.82665 268.08159 + -12.30000 68.28400 37.83900 3212.16515 324.24306 + -13.60000 68.09400 37.91300 3757.90578 385.58735 + -14.90000 67.93600 37.97200 4348.10826 452.11402 + -16.20000 67.80400 38.02100 4982.81799 523.82276 + -17.50000 67.69200 38.06100 5662.06973 600.71335 + -18.50000 67.52000 38.20600 6110.57121 664.56055 + -19.50000 67.46500 38.21700 6636.77815 724.16986 + -20.50000 67.41600 38.22800 7189.39288 786.84492 + -21.50000 67.27700 38.34300 7678.18987 857.24400 + -21.95000 67.54800 38.21800 8092.93675 880.91355 + -23.45000 68.22500 37.84400 9535.04264 963.82311 + -23.75000 68.33100 37.77600 9834.81595 981.14391 + -25.00000 68.70200 37.51800 11125.65526 1055.95831 + -26.40000 69.01900 37.26600 12657.56077 1145.09468 + -27.80000 69.26500 37.04700 14286.29640 1240.14075 + -29.20000 69.46200 36.85600 16012.54662 1341.08703 + -30.60000 69.62200 36.68800 17836.76018 1447.92563 + -32.00000 69.75500 36.54000 19759.24452 1560.65001 + -33.00000 69.63600 36.72200 20557.42539 1677.65858 + -34.00000 69.72700 36.61900 22029.67298 1763.96563 +[END OF DATA] +[END OF TABLE] +[END OF SLIDE PLANE] +[LAMBDAS] +[TABLE] +DataCount=36 +[COLUMN INDICATION] +Position +Vertical stress +Passive hor pressure +Active hor pressure +Lambda neutral +Lambda active +Lambda passive +[END OF COLUMN INDICATION] +[DATA] + 0.87500 2.25000 9.56392 0.74030 0.55900 0.32902 4.25063 + 0.20833 9.91667 42.15210 3.26281 0.55900 0.32902 4.25063 + -0.87500 20.75000 88.20062 6.82722 0.55900 0.32902 4.25063 + -1.95833 31.58333 134.24913 10.39163 0.55900 0.32902 4.25063 + -2.75000 39.50000 167.89997 12.99639 0.55900 0.32902 4.25063 + -3.62500 48.25000 205.09300 15.87534 0.55900 0.32902 4.25063 + -4.87500 60.75000 258.22591 19.98812 0.55900 0.32902 4.25063 + -5.75000 69.50000 295.41894 22.86707 0.55900 0.32902 4.25063 + -6.25000 74.50000 316.67210 24.51218 0.55900 0.32902 4.25063 + -6.95000 81.50000 346.42652 26.81534 0.55900 0.32902 4.25063 + -7.85000 90.50000 384.68221 29.77654 0.55900 0.32902 4.25063 + -8.40000 96.00000 408.06069 31.58617 0.55900 0.32902 4.25063 + -8.75000 99.50000 422.93790 32.73775 0.55900 0.32902 4.25063 + -9.37500 103.50000 245.85584 47.16243 0.73348 0.45568 2.37542 + -10.12500 106.50000 251.75309 48.81746 0.73348 0.45838 2.36388 + -10.75000 109.00000 256.70775 50.17437 0.73348 0.46032 2.35512 + -11.65000 115.20000 385.64500 43.20113 0.61662 0.37501 3.34761 + -12.95000 125.60000 419.80048 47.18792 0.61662 0.37570 3.34236 + -14.25000 136.00000 454.00191 51.17436 0.61662 0.37628 3.33825 + -15.55000 146.40000 488.23825 55.16057 0.61662 0.37678 3.33496 + -16.85000 156.80000 522.50134 59.14661 0.61662 0.37721 3.33228 + -18.00000 158.00000 448.50147 63.84721 0.66753 0.40410 2.83862 + -19.00000 158.00000 526.20694 59.60931 0.61662 0.37727 3.33042 + -20.00000 166.00000 552.61473 62.67506 0.61662 0.37756 3.32900 + -21.00000 173.00000 488.79699 70.39908 0.66753 0.40693 2.82542 + -21.72500 178.02500 921.65972 52.59900 0.52336 0.29546 5.17714 + -22.70000 186.80000 961.40393 55.27304 0.52336 0.29589 5.14670 + -23.60000 194.90000 999.24435 57.73601 0.52336 0.29623 5.12696 + -24.37500 201.87500 1032.67145 59.85152 0.52336 0.29648 5.11540 + -25.70000 214.50000 1094.21822 63.66883 0.52336 0.29682 5.10125 + -27.10000 228.50000 1163.38260 67.89005 0.52336 0.29711 5.09139 + -28.50000 242.50000 1233.03587 72.10449 0.52336 0.29734 5.08468 + -29.90000 256.50000 1303.00969 76.31329 0.52336 0.29752 5.07996 + -31.30000 270.50000 1373.20310 80.51741 0.52336 0.29766 5.07654 + -32.50000 281.25000 798.18088 117.00857 0.66753 0.41603 2.83798 + -33.50000 290.00000 1472.24759 86.30705 0.52336 0.29761 5.07672 +[END OF DATA] +[END OF TABLE] +[END OF LAMBDAS] +[PRESSURES] +[TABLE] +DataCount=216 +[COLUMN INDICATION] +Horizontal pressure +Pore pressure +Passive pressure +Neutral pressure +Status on branches +Percentage of mobilisation +Status character +[END OF COLUMN INDICATION] +[DATA] + 0.00000 0.00000 0.00000 0.00000 110 13 1 + 0.50415 0.00000 3.82557 0.50310 110 13 1 + 1.00829 0.00000 7.65114 1.00620 110 13 1 + 1.51243 0.00000 11.47671 1.50930 110 13 1 + 2.01657 0.00000 15.30228 2.01240 110 13 1 + 2.52069 0.00000 19.12784 2.51550 110 13 1 + 2.52069 0.00000 19.12784 2.51550 110 13 1 + 3.73607 2.16667 28.33755 3.72666 110 13 1 + 4.95100 4.33333 37.54725 4.93783 110 13 1 + 6.16536 6.50000 46.75695 6.14899 110 13 1 + 7.37903 8.66667 55.96666 7.36016 110 13 1 + 8.59190 10.83333 65.17636 8.57132 110 13 1 + 8.59190 10.83333 65.17636 8.57132 110 13 1 + 9.80388 13.00000 74.38606 9.78249 110 13 1 + 11.01498 15.16667 83.59577 10.99365 110 13 1 + 12.22528 17.33333 92.80547 12.20482 110 13 1 + 13.43482 19.50000 102.01517 13.41598 110 13 1 + 14.64365 21.66667 111.22488 14.62715 110 13 1 + 14.64365 21.66667 111.22488 14.62715 110 13 1 + 15.85188 23.83333 120.43458 15.83831 110 13 1 + 17.05969 26.00000 129.64428 17.04948 110 13 1 + 18.26732 28.16667 138.85399 18.26064 110 13 1 + 19.47501 30.33333 148.06369 19.47181 110 13 1 + 20.68298 32.50000 157.27339 20.68298 110 13 1 + 20.68298 32.50000 157.27339 20.68298 110 13 1 + 21.24066 33.50000 161.52402 21.24197 110 0 1 + 21.79845 34.50000 165.77466 21.80097 110 0 1 + 22.35634 35.50000 170.02529 22.35997 110 0 1 + 22.91431 36.50000 174.27592 22.91897 110 0 1 + 23.47234 37.50000 178.52655 23.47797 110 0 1 + 23.47234 37.50000 178.52655 23.47797 110 0 1 + 24.86759 40.00000 189.15313 24.87547 110 0 1 + 26.26304 42.50000 199.77971 26.27297 110 0 1 + 27.65870 45.00000 210.40629 27.67047 110 0 1 + 29.05455 47.50000 221.03287 29.06797 110 0 1 + 30.45062 50.00000 231.65945 30.46546 110 0 1 + 30.45062 50.00000 231.65945 30.46546 110 0 1 + 31.84694 52.50000 242.28604 31.86296 110 0 1 + 33.24379 55.00000 252.91262 33.26046 110 0 1 + 34.64149 57.50000 263.53920 34.65796 110 0 1 + 36.04038 60.00000 274.16578 36.05546 110 0 1 + 37.44078 62.50000 284.79236 37.45296 110 0 1 + 37.44078 62.50000 284.79236 37.45296 110 0 1 + 38.00145 63.50000 289.04299 38.01195 110 0 1 + 38.56247 64.50000 293.29362 38.57095 110 0 1 + 39.12386 65.50000 297.54425 39.12995 110 0 1 + 39.68568 66.50000 301.79489 39.68895 110 0 1 + 40.24795 67.50000 306.04552 40.24795 110 13 1 + 40.24795 67.50000 306.04552 40.24795 110 13 1 + 40.81070 68.50000 310.29615 40.80695 110 13 1 + 41.37391 69.50000 314.54678 41.36595 110 13 1 + 41.93753 70.50000 318.79741 41.92495 110 13 1 + 42.50154 71.50000 323.04805 42.48395 110 13 1 + 43.06590 72.50000 327.29868 43.04295 110 13 1 + 43.06590 72.50000 327.29868 43.04295 110 13 1 + 44.08252 74.30000 334.94982 44.04915 110 13 1 + 45.10000 76.10000 342.60096 45.05535 110 13 1 + 46.11820 77.90000 350.25209 46.06155 110 13 1 + 47.13698 79.70000 357.90323 47.06774 110 13 1 + 48.15620 81.50000 365.55437 48.07394 110 13 1 + 48.15620 81.50000 365.55437 48.07394 110 13 1 + 49.17574 83.30000 373.20551 49.08014 110 13 1 + 50.19552 85.10000 380.85665 50.08634 110 13 1 + 51.21547 86.90000 388.50778 51.09254 110 13 1 + 52.23554 88.70000 396.15892 52.09874 110 13 1 + 53.25566 90.50000 403.81006 53.10494 110 13 1 + 53.25566 90.50000 403.81006 53.10494 110 13 1 + 53.59801 90.90000 405.51031 53.32854 110 13 1 + 54.10054 91.30000 407.21056 53.55214 110 13 1 + 54.65656 91.70000 408.91082 53.77574 110 13 1 + 55.15936 92.10000 410.61107 53.99934 110 13 1 + 55.50225 92.50000 412.31132 54.22294 110 13 1 + 55.50225 92.50000 412.31132 54.22294 110 13 1 + 56.07068 93.50000 416.56196 54.78193 110 13 1 + 56.63909 94.50000 420.81259 55.34093 110 13 1 + 57.20749 95.50000 425.06322 55.89993 110 13 1 + 57.77586 96.50000 429.31385 56.45893 110 13 1 + 58.34420 97.50000 433.56448 57.01793 110 13 1 + 75.07972 97.50000 242.29271 74.81446 110 31 1 + 75.52258 99.00000 243.71796 75.25455 110 31 1 + 75.96542 100.50000 245.14321 75.69463 110 31 1 + 76.40823 102.00000 246.56846 76.13472 110 31 1 + 76.85099 103.50000 247.99372 76.57480 110 31 1 + 77.29370 105.00000 249.41897 77.01489 110 31 1 + 77.29370 105.00000 248.20727 77.01489 110 31 1 + 77.73636 106.50000 249.62560 77.45497 110 31 1 + 78.17896 108.00000 251.04392 77.89506 110 31 1 + 78.62150 109.50000 252.46225 78.33514 110 31 1 + 79.06397 111.00000 253.88058 78.77523 110 31 1 + 79.50638 112.50000 255.29890 79.21531 110 31 1 + 79.50638 112.50000 254.35263 79.21531 110 31 1 + 79.80127 113.50000 255.29468 79.50870 110 31 1 + 80.09613 114.50000 256.23672 79.80209 110 31 1 + 80.39096 115.50000 257.17877 80.09548 110 31 1 + 80.68575 116.50000 258.12082 80.38887 110 31 1 + 80.98051 117.50000 259.06286 80.68226 110 31 1 + 68.42518 117.50000 368.23741 67.82870 110 19 1 + 69.71454 120.10000 375.20044 69.11128 110 19 1 + 71.00342 122.70000 382.16348 70.39385 110 19 1 + 72.29182 125.30000 389.12651 71.67643 110 19 1 + 73.57972 127.90000 396.08955 72.95901 110 19 1 + 74.86713 130.50000 403.05258 74.24159 110 19 1 + 74.86713 130.50000 402.42021 74.24159 110 19 1 + 76.15404 133.10000 409.37232 75.52417 110 19 1 + 77.44044 135.70000 416.32443 76.80675 110 19 1 + 78.72633 138.30000 423.27654 78.08933 110 19 1 + 80.01171 140.90000 430.22865 79.37191 110 19 1 + 81.29657 143.50000 437.18076 80.65449 110 19 1 + 81.29657 143.50000 436.64302 80.65449 110 19 1 + 82.58091 146.10000 443.58657 81.93707 110 19 1 + 83.86472 148.70000 450.53013 83.21964 110 19 1 + 85.14800 151.30000 457.47369 84.50222 110 19 1 + 86.43075 153.90000 464.41725 85.78480 110 19 1 + 87.71296 156.50000 471.36081 87.06738 110 19 1 + 87.71296 156.50000 470.89645 87.06738 110 19 1 + 88.99461 159.10000 477.83317 88.34996 110 19 1 + 90.27571 161.70000 484.76989 89.63254 110 19 1 + 91.55625 164.30000 491.70661 90.91512 110 19 1 + 92.83622 166.90000 498.64333 92.19770 110 19 1 + 94.11560 169.50000 505.58005 93.48028 110 19 1 + 94.11560 169.50000 505.17349 93.48028 110 19 1 + 95.39440 172.10000 512.10463 94.76286 110 19 1 + 96.67260 174.70000 519.03577 96.04543 110 19 1 + 97.95020 177.30000 525.96691 97.32801 110 19 1 + 99.22718 179.90000 532.89805 98.61059 110 19 1 + 100.50355 182.50000 539.82919 99.89317 110 19 1 + 108.48341 182.50000 459.85594 108.14007 110 24 1 + 107.41243 187.30000 455.31416 107.07202 110 24 1 + 106.34124 192.10000 450.77237 106.00397 110 24 1 + 105.26984 196.90000 446.23058 104.93592 110 24 1 + 104.19824 201.70000 441.68879 103.86787 110 24 1 + 103.12644 206.50000 437.14701 102.79982 110 24 1 + 95.54083 206.50000 512.88525 94.96018 110 19 1 + 96.52042 208.50000 518.21392 95.94677 110 19 1 + 97.49968 210.50000 523.54260 96.93337 110 19 1 + 98.47863 212.50000 528.87128 97.91997 110 19 1 + 99.45729 214.50000 534.19996 98.90657 110 19 1 + 100.43568 216.50000 539.52863 99.89317 110 19 1 + 100.43568 216.50000 539.29871 99.89317 110 19 1 + 101.41381 218.50000 544.62512 100.87977 110 19 1 + 102.39171 220.50000 549.95152 101.86637 110 19 1 + 103.36939 222.50000 555.27793 102.85297 110 19 1 + 104.34689 224.50000 560.60434 103.83957 110 19 1 + 105.32423 226.50000 565.93074 104.82617 110 19 1 + 113.76048 226.50000 480.32075 113.48032 110 24 1 + 114.55623 228.50000 483.71125 114.28136 110 24 1 + 115.35192 230.50000 487.10175 115.08240 110 24 1 + 116.14758 232.50000 490.49224 115.88343 110 24 1 + 116.94322 234.50000 493.88274 116.68447 110 24 1 + 117.73887 236.50000 497.27324 117.48551 110 24 1 + 93.23795 236.50000 911.17602 92.11187 110 10 1 + 93.65114 237.40000 915.36950 92.53580 110 10 1 + 94.06438 238.30000 919.56298 92.95972 110 10 1 + 94.47768 239.20000 923.75647 93.38365 110 10 1 + 94.89104 240.10000 927.94995 93.80757 110 10 1 + 95.30447 241.00000 932.14343 94.23149 110 10 1 + 95.30447 241.00000 926.66369 94.23149 110 10 1 + 96.68328 244.00000 940.55979 95.64457 110 10 1 + 98.06334 247.00000 954.45588 97.05765 110 10 1 + 99.44483 250.00000 968.35198 98.47073 110 10 1 + 100.82795 253.00000 982.24807 99.88381 110 10 1 + 102.21290 256.00000 996.14417 101.29689 110 10 1 + 102.21290 256.00000 992.32296 101.29689 110 10 1 + 102.49013 256.60000 995.09151 101.57951 110 10 1 + 102.76743 257.20000 997.86007 101.86213 110 10 1 + 103.04481 257.80000 1000.62863 102.14474 110 10 1 + 103.32227 258.40000 1003.39719 102.42736 110 10 1 + 103.59981 259.00000 1006.16575 102.70997 110 10 1 + 103.59981 259.00000 1003.89732 102.70997 110 10 1 + 104.75709 261.50000 1015.40698 103.88754 110 10 1 + 105.91578 264.00000 1026.91663 105.06511 110 10 1 + 107.07589 266.50000 1038.42628 106.24267 110 10 1 + 108.23741 269.00000 1049.93593 107.42024 110 10 1 + 109.40034 271.50000 1061.44558 108.59781 110 10 1 + 109.40034 271.50000 1058.50946 108.59781 110 10 1 + 110.85104 274.30000 1072.79297 110.06322 110 10 1 + 112.30346 277.10000 1087.07647 111.52864 110 10 1 + 113.75755 279.90000 1101.35997 112.99405 110 10 1 + 115.21325 282.70000 1115.64347 114.45947 110 10 1 + 116.67053 285.50000 1129.92697 115.92489 110 10 1 + 116.67053 285.50000 1127.74287 115.92489 110 10 1 + 118.12933 288.30000 1141.99876 117.39030 110 10 1 + 119.58959 291.10000 1156.25465 118.85572 110 10 1 + 121.05123 293.90000 1170.51054 120.32114 110 10 1 + 122.51419 296.70000 1184.76643 121.78655 110 10 1 + 123.97842 299.50000 1199.02233 123.25197 110 10 1 + 123.97842 299.50000 1197.44308 123.25197 110 10 1 + 125.44385 302.30000 1211.68019 124.71738 110 10 1 + 126.91041 305.10000 1225.91731 126.18280 110 10 1 + 128.37804 307.90000 1240.15442 127.64822 110 10 1 + 129.84667 310.70000 1254.39154 129.11363 110 10 1 + 131.31624 313.50000 1268.62866 130.57905 110 10 1 + 131.31624 313.50000 1267.44997 130.57905 110 10 1 + 132.78668 316.30000 1281.67385 132.04446 110 10 1 + 134.25793 319.10000 1295.89774 133.50988 110 10 1 + 135.72991 321.90000 1310.12163 134.97530 110 10 1 + 137.20256 324.70000 1324.34552 136.44071 110 10 1 + 138.67578 327.50000 1338.56940 137.90613 110 10 1 + 138.67578 327.50000 1337.66734 137.90613 110 10 1 + 140.14953 330.30000 1351.88165 139.37155 110 10 1 + 141.62368 333.10000 1366.09595 140.83696 110 10 1 + 143.09816 335.90000 1380.31025 142.30238 110 10 1 + 144.57284 338.70000 1394.52455 143.76779 110 10 1 + 146.04763 341.50000 1408.73885 145.23321 110 10 1 + 185.42318 341.50000 787.53846 185.23993 110 24 1 + 186.42598 343.50000 791.79543 186.24123 110 24 1 + 187.42877 345.50000 796.05239 187.24253 110 24 1 + 188.43155 347.50000 800.30936 188.24383 110 24 1 + 189.43431 349.50000 804.56632 189.24512 110 24 1 + 190.43705 351.50000 808.82329 190.24642 110 24 1 + 150.00568 351.50000 1446.86401 149.15843 110 10 1 + 151.05875 353.50000 1457.01744 150.20516 110 10 1 + 152.11178 355.50000 1467.17087 151.25188 110 10 1 + 153.16479 357.50000 1477.32430 152.29861 110 10 1 + 154.21778 359.50000 1487.47774 153.34534 110 10 1 + 155.27076 361.50000 1497.63117 154.39206 110 10 1 +[END OF DATA] +[END OF TABLE] +[END OF PRESSURES] +[FORCE FROM LAYER] +[TABLE] +DataCount=12 +[COLUMN INDICATION] +Level top layer +Force +Layer name +[END OF COLUMN INDICATION] +[DATA] + 5.50 291.500 '99_Aanvulzand' + -9.00 156.062 '5_Klei_siltig' + -11.00 549.201 '6_Siltig_zand' + -17.50 105.805 '7_Klei_met_zandlagen' + -18.50 200.869 '6_Siltig_zand' + -20.50 115.750 '7_Klei_met_zandlagen' + -21.50 354.549 '9A_Zand_Pleistoceen' + -25.00 893.697 '9B_Zand_Pleistoceen' + -32.00 187.930 '17_Klei_zandlagen' + -33.00 152.638 '9B_Zand_Pleistoceen' + -34.50 0.000 '17_Klei_zandlagen' + -37.00 0.000 '9B_Zand_Pleistoceen' +[END OF DATA] +[END OF TABLE] +[END OF FORCE FROM LAYER] +[VERTICAL BALANCE PER LAYER] +[TABLE] +DataCount=12 +[COLUMN INDICATION] +Level top layer +Contribution +Layer name +[END OF COLUMN INDICATION] +[DATA] + 5.50 91.60 '99_Aanvulzand' + -9.00 28.38 '5_Klei_siltig' + -11.00 147.42 '6_Siltig_zand' + -17.50 24.32 '7_Klei_met_zandlagen' + -18.50 53.92 '6_Siltig_zand' + -20.50 26.61 '7_Klei_met_zandlagen' + -21.50 121.94 '9A_Zand_Pleistoceen' + -25.00 307.38 '9B_Zand_Pleistoceen' + -32.00 43.20 '17_Klei_zandlagen' + -33.00 52.50 '9B_Zand_Pleistoceen' + -34.50 0.00 '17_Klei_zandlagen' + -37.00 0.00 '9B_Zand_Pleistoceen' +[END OF DATA] +[END OF TABLE] +[END OF VERTICAL BALANCE PER LAYER] +[END OF SIDE] +[SIDE] +Leftside +[CALCULATION METHOD] +Method c,phi,delta +[END OF CALCULATION METHOD] +[WATER LEVEL] + 1.00 +[END OF WATER LEVEL] +[SURFACE] +1 : Number of surface points + 0.00 1.00 +[END OF SURFACE] +[SOIL PROFILE FOR SHEET PILING MODEL] +Initial GWS op NAP + 1 m +[TABLE] +DataCount=12 +[COLUMN INDICATION] +Level top layer +Excess pore top +Excess pore bottom +Unit weight dry +Unit weight saturated +Cohesion +Angle of wall friction (reduced) +Angle of wall friction (not reduced) +Angle of internal friction +Coeff. of active earth pressure +Coeff. of neutral earth pressure +Coeff. of passive earth pressure +Layer name +[END OF COLUMN INDICATION] +[DATA] + 5.50 0.00 0.00 18.00 20.00 0.00 17.45 17.45 26.17 0.33 0.56 4.25 '99_Aanvulzand' + -9.00 0.00 0.00 14.00 14.00 4.00 10.31 10.31 15.46 0.51 0.73 2.15 '5_Klei_siltig' + -11.00 0.00 0.00 17.00 18.00 0.80 15.03 15.03 22.54 0.38 0.62 3.30 '6_Siltig_zand' + -17.50 0.00 14.00 16.00 16.00 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '7_Klei_met_zandlagen' + -18.50 14.00 14.00 17.00 18.00 0.80 15.03 15.03 22.54 0.38 0.62 3.30 '6_Siltig_zand' + -20.50 14.00 14.00 16.00 16.00 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '7_Klei_met_zandlagen' + -21.50 14.00 14.00 17.00 19.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9A_Zand_Pleistoceen' + -25.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' + -32.00 14.00 14.00 17.50 17.50 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '17_Klei_zandlagen' + -33.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' + -34.50 14.00 14.00 17.50 17.50 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '17_Klei_zandlagen' + -37.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' +[END OF DATA] +[END OF TABLE] +[MULTILINEAR BRANCHES] +3 : Number of branches for spring characteristics +12 : Number of layers +[MODULUS OF SUBGRADE REACTION] +[TABLE] DataCount=36 [COLUMN INDICATION] +Layer +Branch +Modulus of subgrade reaction top +Modulus of subgrade reaction bottom +[END OF COLUMN INDICATION] +[DATA] + 1 1 45000.00000 45000.00000 + 1 2 12272.72727 12272.72727 + 1 3 3750.00000 3750.00000 + 2 1 9000.00000 9000.00000 + 2 2 2454.54545 2454.54545 + 2 3 529.41176 529.41176 + 3 1 18000.00000 18000.00000 + 3 2 9529.41176 9529.41176 + 3 3 2250.00000 2250.00000 + 4 1 10125.00000 10125.00000 + 4 2 2761.36364 2761.36364 + 4 3 645.55369 645.55369 + 5 1 18000.00000 18000.00000 + 5 2 9529.41176 9529.41176 + 5 3 2250.00000 2250.00000 + 6 1 10125.00000 10125.00000 + 6 2 2761.36364 2761.36364 + 6 3 645.55369 645.55369 + 7 1 45000.00000 45000.00000 + 7 2 12272.72727 12272.72727 + 7 3 3750.00000 3750.00000 + 8 1 45000.00000 45000.00000 + 8 2 12272.72727 12272.72727 + 8 3 3750.00000 3750.00000 + 9 1 10125.00000 10125.00000 + 9 2 2761.36364 2761.36364 + 9 3 645.55369 645.55369 + 10 1 45000.00000 45000.00000 + 10 2 12272.72727 12272.72727 + 10 3 3750.00000 3750.00000 + 11 1 10125.00000 10125.00000 + 11 2 2761.36364 2761.36364 + 11 3 645.55369 645.55369 + 12 1 45000.00000 45000.00000 + 12 2 12272.72727 12272.72727 + 12 3 3750.00000 3750.00000 +[END OF DATA] +[END OF TABLE] +[END OF MODULUS OF SUBGRADE REACTION] +[PERCENTAGE OF PASSIVE SOIL PRESSURE] +[TABLE] +DataCount=24 +[COLUMN INDICATION] +Layer +Index +Percentage +[END OF COLUMN INDICATION] +[DATA] + 1 1 50 + 1 2 80 + 2 1 50 + 2 2 80 + 3 1 50 + 3 2 80 + 4 1 50 + 4 2 80 + 5 1 50 + 5 2 80 + 6 1 50 + 6 2 80 + 7 1 50 + 7 2 80 + 8 1 50 + 8 2 80 + 9 1 50 + 9 2 80 + 10 1 50 + 10 2 80 + 11 1 50 + 11 2 80 + 12 1 50 + 12 2 80 +[END OF DATA] +[END OF TABLE] +[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] +[END OF MULTILINEAR BRANCHES] +[END OF SOIL PROFILE FOR SHEET PILING MODEL] +[SLIDE PLANE] +[TABLE] +DataCount=37 +[COLUMN INDICATION] Slide plane position Theta min Theta max @@ -30664,8 +31406,9 @@ Q max [END OF COLUMN INDICATION] [DATA] 1.00000 0.00000 0.00000 0.00000 0.00000 - -0.16667 69.25300 36.29600 28.92791 2.23918 - -1.33333 69.25300 36.29600 115.71165 8.95673 + 0.75000 69.25300 36.29600 1.32832 0.10282 + -0.33333 69.25300 36.29600 37.78340 2.92465 + -1.41667 69.25300 36.29600 124.12436 9.60792 -2.50000 69.25300 36.29600 260.35122 20.15263 -3.00000 69.25300 36.29600 340.05058 26.32181 -4.25000 69.25300 36.29600 585.79025 45.34343 @@ -30704,520 +31447,8 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=35 -[COLUMN INDICATION] -Position -Vertical stress -Passive hor pressure -Active hor pressure -Lambda neutral -Lambda active -Lambda passive -[END OF COLUMN INDICATION] -[DATA] - 0.41667 5.83333 24.79535 1.91930 0.55900 0.32902 4.25063 - -0.75000 17.50000 74.38606 5.75790 0.55900 0.32902 4.25063 - -1.91667 29.16667 123.97677 9.59649 0.55900 0.32902 4.25063 - -2.75000 37.50000 159.39871 12.33835 0.55900 0.32902 4.25063 - -3.62500 46.25000 196.59174 15.21729 0.55900 0.32902 4.25063 - -4.87500 58.75000 249.72464 19.33008 0.55900 0.32902 4.25063 - -5.75000 67.50000 286.91767 22.20902 0.55900 0.32902 4.25063 - -6.25000 72.50000 308.17083 23.85414 0.55900 0.32902 4.25063 - -6.95000 79.50000 337.92526 26.15730 0.55900 0.32902 4.25063 - -7.85000 88.50000 376.18095 29.11850 0.55900 0.32902 4.25063 - -8.40000 94.00000 399.55943 30.92812 0.55900 0.32902 4.25063 - -8.75000 97.50000 414.43664 32.07970 0.55900 0.32902 4.25063 - -9.37500 101.50000 241.39570 46.14923 0.73348 0.45467 2.37828 - -10.12500 104.50000 247.29026 47.80305 0.73348 0.45745 2.36641 - -10.75000 107.00000 252.24371 49.15884 0.73348 0.45943 2.35742 - -11.65000 113.20000 378.99224 42.43537 0.61662 0.37487 3.34799 - -12.95000 123.60000 413.15206 46.42203 0.61662 0.37558 3.34265 - -14.25000 134.00000 447.35758 50.40837 0.61662 0.37618 3.33849 - -15.55000 144.40000 481.59766 54.39450 0.61662 0.37669 3.33516 - -16.85000 154.80000 515.86413 58.38049 0.61662 0.37713 3.33246 - -18.00000 156.00000 442.98963 62.97740 0.66753 0.40370 2.83968 - -19.00000 156.00000 519.57753 58.84299 0.61662 0.37720 3.33063 - -20.00000 164.00000 545.98689 61.90873 0.61662 0.37749 3.32919 - -21.00000 171.00000 483.29370 69.52882 0.66753 0.40660 2.82628 - -21.72500 176.02500 911.49351 52.00575 0.52336 0.29545 5.17820 - -22.70000 184.80000 951.20375 54.67979 0.52336 0.29589 5.14721 - -23.60000 192.90000 989.03167 57.14273 0.52336 0.29623 5.12717 - -24.37500 199.87500 1022.45773 59.25818 0.52336 0.29648 5.11549 - -25.70000 212.50000 1084.00852 63.07538 0.52336 0.29683 5.10122 - -27.10000 226.50000 1153.18023 67.29645 0.52336 0.29711 5.09130 - -28.50000 240.50000 1222.84129 71.51072 0.52336 0.29734 5.08458 - -29.90000 254.50000 1292.82245 75.71935 0.52336 0.29752 5.07985 - -31.30000 268.50000 1363.02247 79.92330 0.52336 0.29767 5.07643 - -32.50000 279.25000 792.66373 116.13956 0.66753 0.41590 2.83855 - -33.50000 288.00000 1462.06847 85.71294 0.52336 0.29761 5.07663 -[END OF DATA] -[END OF TABLE] -[END OF LAMBDAS] -[PRESSURES] -[TABLE] -DataCount=210 -[COLUMN INDICATION] -Horizontal pressure -Pore pressure -Passive pressure -Neutral pressure -Status on branches -Percentage of mobilisation -Status character -[END OF COLUMN INDICATION] -[DATA] - 0.00000 0.00000 0.00000 0.00000 110 13 1 - 1.30433 2.33333 9.91814 1.30433 110 0 1 - 2.60866 4.66667 19.83628 2.60866 110 0 1 - 3.91300 7.00000 29.75443 3.91300 110 13 1 - 5.21733 9.33333 39.67257 5.21733 110 0 1 - 6.52166 11.66667 49.59071 6.52166 110 0 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 7.82599 14.00000 59.50885 7.82599 110 13 1 - 9.13032 16.33333 69.42699 9.13032 110 13 1 - 10.43465 18.66667 79.34513 10.43465 110 13 1 - 11.73899 21.00000 89.26328 11.73899 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 14.34765 25.66667 109.09956 14.34765 110 13 1 - 15.65198 28.00000 119.01770 15.65198 110 0 1 - 16.95631 30.33333 128.93584 16.95631 110 13 1 - 18.26064 32.66667 138.85399 18.26064 110 13 1 - 19.56498 35.00000 148.77213 19.56498 110 13 1 - 19.56498 35.00000 148.77213 19.56498 110 13 1 - 20.12398 36.00000 153.02276 20.12398 110 13 1 - 20.68298 37.00000 157.27339 20.68298 110 13 1 - 21.24197 38.00000 161.52402 21.24197 110 13 1 - 21.80097 39.00000 165.77466 21.80097 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 0 1 - 23.75747 42.50000 180.65187 23.75747 110 0 1 - 25.15497 45.00000 191.27845 25.15497 110 13 1 - 26.55247 47.50000 201.90503 26.55247 110 13 1 - 27.94997 50.00000 212.53161 27.94997 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 13 1 - 30.74496 55.00000 233.78477 30.74496 110 13 1 - 32.14246 57.50000 244.41135 32.14246 110 13 1 - 33.53996 60.00000 255.03793 33.53996 110 13 1 - 34.93746 62.50000 265.66451 34.93746 110 0 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.89396 66.00000 280.54173 36.89396 110 13 1 - 37.45296 67.00000 284.79236 37.45296 110 13 1 - 38.01195 68.00000 289.04299 38.01195 110 13 1 - 38.57095 69.00000 293.29362 38.57095 110 0 1 - 39.12995 70.00000 297.54425 39.12995 110 13 1 - 39.12995 70.00000 297.54425 39.12995 110 13 1 - 39.68895 71.00000 301.79489 39.68895 110 13 1 - 40.24795 72.00000 306.04552 40.24795 110 13 1 - 40.80695 73.00000 310.29615 40.80695 110 0 1 - 41.36595 74.00000 314.54678 41.36595 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 0 1 - 41.92495 75.00000 318.79741 41.92495 110 0 1 - 42.93115 76.80000 326.44855 42.93115 110 13 1 - 43.93735 78.60000 334.09969 43.93735 110 13 1 - 44.94355 80.40000 341.75083 44.94355 110 0 1 - 45.94975 82.20000 349.40197 45.94975 110 0 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 47.96214 85.80000 364.70424 47.96214 110 13 1 - 48.96834 87.60000 372.35538 48.96834 110 13 1 - 49.97454 89.40000 380.00652 49.97454 110 13 1 - 50.98074 91.20000 387.65766 50.98074 110 0 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 52.21054 93.40000 397.00905 52.21054 110 13 1 - 52.43414 93.80000 398.70930 52.43414 110 0 1 - 52.65774 94.20000 400.40955 52.65774 110 13 1 - 52.88134 94.60000 402.10981 52.88134 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 0 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.66394 96.00000 408.06069 53.66394 110 13 1 - 54.22294 97.00000 412.31132 54.22294 110 0 1 - 54.78193 98.00000 416.56196 54.78193 110 13 1 - 55.34093 99.00000 420.81259 55.34093 110 13 1 - 55.89993 100.00000 425.06322 55.89993 110 0 1 - 73.34751 100.00000 237.82828 73.34751 110 31 1 - 73.78760 101.50000 239.25525 73.78760 110 31 1 - 74.22768 103.00000 240.68222 74.22768 110 31 1 - 74.66777 104.50000 242.10919 74.66777 110 31 1 - 75.10785 106.00000 243.53616 75.10785 110 31 1 - 75.54794 107.50000 244.96313 75.54794 110 31 1 - 75.54794 107.50000 243.74064 75.54794 110 31 1 - 75.98802 109.00000 245.16048 75.98802 110 31 1 - 76.42811 110.50000 246.58033 76.42811 110 31 1 - 76.86819 112.00000 248.00018 76.86819 110 31 1 - 77.30828 113.50000 249.42003 77.30828 110 31 1 - 77.74836 115.00000 250.83988 77.74836 110 31 1 - 77.74836 115.00000 249.88629 77.74836 110 31 1 - 78.04175 116.00000 250.82926 78.04175 110 31 1 - 78.33514 117.00000 251.77223 78.33514 110 31 1 - 78.62853 118.00000 252.71519 78.62853 110 31 1 - 78.92192 119.00000 253.65816 78.92192 110 31 1 - 79.21531 120.00000 254.60113 79.21531 110 31 1 - 66.59545 120.00000 361.58270 66.59545 110 18 1 - 67.87803 122.60000 368.54652 67.87803 110 18 1 - 69.16061 125.20000 375.51033 69.16061 110 18 1 - 70.44318 127.80000 382.47415 70.44318 110 18 1 - 71.72576 130.40000 389.43796 71.72576 110 18 1 - 73.00834 133.00000 396.40178 73.00834 110 18 1 - 73.00834 133.00000 395.77026 73.00834 110 18 1 - 74.29092 135.60000 402.72298 74.29092 110 18 1 - 75.57350 138.20000 409.67570 75.57350 110 18 1 - 76.85608 140.80000 416.62842 76.85608 110 18 1 - 78.13866 143.40000 423.58114 78.13866 110 0 1 - 79.42124 146.00000 430.53387 79.42124 110 18 1 - 79.42124 146.00000 429.99744 79.42124 110 18 1 - 80.70382 148.60000 436.94149 80.70382 110 18 1 - 81.98640 151.20000 443.88555 81.98640 110 18 1 - 83.26897 153.80000 450.82961 83.26897 110 18 1 - 84.55155 156.40000 457.77367 84.55155 110 18 1 - 85.83413 159.00000 464.71773 85.83413 110 18 1 - 85.83413 159.00000 464.25481 85.83413 110 18 1 - 87.11671 161.60000 471.19195 87.11671 110 18 1 - 88.39929 164.20000 478.12909 88.39929 110 0 1 - 89.68187 166.80000 485.06624 89.68187 110 18 1 - 90.96445 169.40000 492.00338 90.96445 110 18 1 - 92.24703 172.00000 498.94052 92.24703 110 18 1 - 92.24703 172.00000 498.53536 92.24703 110 0 1 - 93.52961 174.60000 505.46687 93.52961 110 19 1 - 94.81219 177.20000 512.39837 94.81219 110 19 1 - 96.09476 179.80000 519.32988 96.09476 110 19 1 - 97.37734 182.40000 526.26139 97.37734 110 19 1 - 98.65992 185.00000 533.19290 98.65992 110 19 1 - 106.80501 185.00000 454.34834 106.80501 110 24 1 - 105.73696 189.80000 449.80485 105.73696 110 24 1 - 104.66891 194.60000 445.26137 104.66891 110 24 1 - 103.60086 199.40000 440.71789 103.60086 110 24 1 - 102.53281 204.20000 436.17440 102.53281 110 24 1 - 101.46476 209.00000 431.63092 101.46476 110 24 1 - 93.72693 209.00000 506.25503 93.72693 110 19 1 - 94.71353 211.00000 511.58403 94.71353 110 0 1 - 95.70012 213.00000 516.91303 95.70012 110 19 1 - 96.68672 215.00000 522.24203 96.68672 110 19 1 - 97.67332 217.00000 527.57103 97.67332 110 0 1 - 98.65992 219.00000 532.90003 98.65992 110 19 1 - 98.65992 219.00000 532.67014 98.65992 110 0 1 - 99.64652 221.00000 537.99684 99.64652 110 19 1 - 100.63312 223.00000 543.32354 100.63312 110 19 1 - 101.61972 225.00000 548.65024 101.61972 110 19 1 - 102.60632 227.00000 553.97694 102.60632 110 19 1 - 103.59292 229.00000 559.30365 103.59292 110 19 1 - 112.14526 229.00000 474.81486 112.14526 110 24 1 - 112.94630 231.00000 478.20639 112.94630 110 24 1 - 113.74733 233.00000 481.59793 113.74733 110 24 1 - 114.54837 235.00000 484.98946 114.54837 110 0 1 - 115.34941 237.00000 488.38100 115.34941 110 24 1 - 116.15045 239.00000 491.77253 116.15045 110 24 1 - 91.06515 239.00000 901.00765 91.06515 110 10 1 - 91.48907 239.90000 905.20199 91.48907 110 0 1 - 91.91300 240.80000 909.39634 91.91300 110 0 1 - 92.33692 241.70000 913.59068 92.33692 110 0 1 - 92.76084 242.60000 917.78503 92.76084 110 0 1 - 93.18477 243.50000 921.97938 93.18477 110 10 1 - 93.18477 243.50000 916.46011 93.18477 110 10 1 - 94.59785 246.50000 930.35756 94.59785 110 10 1 - 96.01093 249.50000 944.25502 96.01093 110 10 1 - 97.42401 252.50000 958.15248 97.42401 110 0 1 - 98.83709 255.50000 972.04994 98.83709 110 0 1 - 100.25017 258.50000 985.94739 100.25017 110 0 1 - 100.25017 258.50000 982.10999 100.25017 110 0 1 - 100.53278 259.10000 984.87866 100.53278 110 0 1 - 100.81540 259.70000 987.64733 100.81540 110 10 1 - 101.09802 260.30000 990.41601 101.09802 110 10 1 - 101.38063 260.90000 993.18468 101.38063 110 10 1 - 101.66325 261.50000 995.95335 101.66325 110 10 1 - 101.66325 261.50000 993.68312 101.66325 110 0 1 - 102.84081 264.00000 1005.19296 102.84081 110 10 1 - 104.01838 266.50000 1016.70281 104.01838 110 10 1 - 105.19595 269.00000 1028.21265 105.19595 110 0 1 - 106.37351 271.50000 1039.72249 106.37351 110 10 1 - 107.55108 274.00000 1051.23234 107.55108 110 0 1 - 107.55108 274.00000 1048.30000 107.55108 110 10 1 - 109.01650 276.80000 1062.58341 109.01650 110 0 1 - 110.48191 279.60000 1076.86681 110.48191 110 0 1 - 111.94733 282.40000 1091.15022 111.94733 110 10 1 - 113.41274 285.20000 1105.43363 113.41274 110 10 1 - 114.87816 288.00000 1119.71703 114.87816 110 10 1 - 114.87816 288.00000 1117.54110 114.87816 110 0 1 - 116.34358 290.80000 1131.79675 116.34358 110 10 1 - 117.80899 293.60000 1146.05240 117.80899 110 0 1 - 119.27441 296.40000 1160.30805 119.27441 110 0 1 - 120.73983 299.20000 1174.56370 120.73983 110 10 1 - 122.20524 302.00000 1188.81935 122.20524 110 10 1 - 122.20524 302.00000 1187.24924 122.20524 110 10 1 - 123.67066 304.80000 1201.48606 123.67066 110 10 1 - 125.13607 307.60000 1215.72288 125.13607 110 10 1 - 126.60149 310.40000 1229.95970 126.60149 110 10 1 - 128.06691 313.20000 1244.19653 128.06691 110 10 1 - 129.53232 316.00000 1258.43335 129.53232 110 0 1 - 129.53232 316.00000 1257.26349 129.53232 110 10 1 - 130.99774 318.80000 1271.48707 130.99774 110 10 1 - 132.46316 321.60000 1285.71066 132.46316 110 0 1 - 133.92857 324.40000 1299.93425 133.92857 110 0 1 - 135.39399 327.20000 1314.15783 135.39399 110 10 1 - 136.85940 330.00000 1328.38142 136.85940 110 10 1 - 136.85940 330.00000 1327.48743 136.85940 110 10 1 - 138.32482 332.80000 1341.70145 138.32482 110 0 1 - 139.79024 335.60000 1355.91546 139.79024 110 10 1 - 141.25565 338.40000 1370.12948 141.25565 110 10 1 - 142.72107 341.20000 1384.34349 142.72107 110 10 1 - 144.18648 344.00000 1398.55751 144.18648 110 0 1 - 183.90487 344.00000 782.01919 183.90487 110 24 1 - 184.90617 346.00000 786.27700 184.90617 110 24 1 - 185.90747 348.00000 790.53482 185.90747 110 24 1 - 186.90876 350.00000 794.79264 186.90876 110 24 1 - 187.91006 352.00000 799.05046 187.91006 110 0 1 - 188.91136 354.00000 803.30828 188.91136 110 24 1 - 148.11171 354.00000 1436.68533 148.11171 110 0 1 - 149.15843 356.00000 1446.83859 149.15843 110 10 1 - 150.20516 358.00000 1456.99184 150.20516 110 10 1 - 151.25188 360.00000 1467.14509 151.25188 110 10 1 - 152.29861 362.00000 1477.29835 152.29861 110 10 1 - 153.34534 364.00000 1487.45160 153.34534 110 0 1 -[END OF DATA] -[END OF TABLE] -[END OF PRESSURES] -[FORCE FROM LAYER] -[TABLE] -DataCount=12 -[COLUMN INDICATION] -Level top layer -Force -Layer name -[END OF COLUMN INDICATION] -[DATA] - 5.50 279.500 '99_Aanvulzand' - -9.00 152.563 '5_Klei_siltig' - -11.00 537.080 '6_Siltig_zand' - -17.50 104.135 '7_Klei_met_zandlagen' - -18.50 197.320 '6_Siltig_zand' - -20.50 114.148 '7_Klei_met_zandlagen' - -21.50 347.578 '9A_Zand_Pleistoceen' - -25.00 881.081 '9B_Zand_Pleistoceen' - -32.00 186.408 '17_Klei_zandlagen' - -33.00 150.729 '9B_Zand_Pleistoceen' - -34.50 0.000 '17_Klei_zandlagen' - -37.00 0.000 '9B_Zand_Pleistoceen' -[END OF DATA] -[END OF TABLE] -[END OF FORCE FROM LAYER] -[VERTICAL BALANCE PER LAYER] -[TABLE] -DataCount=12 -[COLUMN INDICATION] -Level top layer -Contribution -Layer name -[END OF COLUMN INDICATION] -[DATA] - 5.50 87.83 '99_Aanvulzand' - -9.00 27.74 '5_Klei_siltig' - -11.00 144.17 '6_Siltig_zand' - -17.50 23.94 '7_Klei_met_zandlagen' - -18.50 52.97 '6_Siltig_zand' - -20.50 26.24 '7_Klei_met_zandlagen' - -21.50 119.55 '9A_Zand_Pleistoceen' - -25.00 303.04 '9B_Zand_Pleistoceen' - -32.00 42.85 '17_Klei_zandlagen' - -33.00 51.84 '9B_Zand_Pleistoceen' - -34.50 0.00 '17_Klei_zandlagen' - -37.00 0.00 '9B_Zand_Pleistoceen' -[END OF DATA] -[END OF TABLE] -[END OF VERTICAL BALANCE PER LAYER] -[END OF SIDE] -[SIDE] -Leftside -[CALCULATION METHOD] -Method c,phi,delta -[END OF CALCULATION METHOD] -[WATER LEVEL] - 1.00 -[END OF WATER LEVEL] -[SURFACE] -1 : Number of surface points - 0.00 1.00 -[END OF SURFACE] -[SOIL PROFILE FOR SHEET PILING MODEL] -Initial GWS op NAP + 1 m -[TABLE] -DataCount=12 -[COLUMN INDICATION] -Level top layer -Excess pore top -Excess pore bottom -Unit weight dry -Unit weight saturated -Cohesion -Angle of wall friction (reduced) -Angle of wall friction (not reduced) -Angle of internal friction -Coeff. of active earth pressure -Coeff. of neutral earth pressure -Coeff. of passive earth pressure -Layer name -[END OF COLUMN INDICATION] -[DATA] - 5.50 0.00 0.00 18.00 20.00 0.00 17.45 17.45 26.17 0.33 0.56 4.25 '99_Aanvulzand' - -9.00 0.00 0.00 14.00 14.00 4.00 10.31 10.31 15.46 0.51 0.73 2.15 '5_Klei_siltig' - -11.00 0.00 0.00 17.00 18.00 0.80 15.03 15.03 22.54 0.38 0.62 3.30 '6_Siltig_zand' - -17.50 0.00 14.00 16.00 16.00 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '7_Klei_met_zandlagen' - -18.50 14.00 14.00 17.00 18.00 0.80 15.03 15.03 22.54 0.38 0.62 3.30 '6_Siltig_zand' - -20.50 14.00 14.00 16.00 16.00 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '7_Klei_met_zandlagen' - -21.50 14.00 14.00 17.00 19.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9A_Zand_Pleistoceen' - -25.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' - -32.00 14.00 14.00 17.50 17.50 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '17_Klei_zandlagen' - -33.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' - -34.50 14.00 14.00 17.50 17.50 4.00 12.95 12.95 19.42 0.44 0.67 2.71 '17_Klei_zandlagen' - -37.00 14.00 14.00 18.00 20.00 0.00 18.98 18.98 28.47 0.30 0.52 5.06 '9B_Zand_Pleistoceen' -[END OF DATA] -[END OF TABLE] -[MULTILINEAR BRANCHES] -3 : Number of branches for spring characteristics -12 : Number of layers -[MODULUS OF SUBGRADE REACTION] -[TABLE] DataCount=36 [COLUMN INDICATION] -Layer -Branch -Modulus of subgrade reaction top -Modulus of subgrade reaction bottom -[END OF COLUMN INDICATION] -[DATA] - 1 1 45000.00000 45000.00000 - 1 2 12272.72727 12272.72727 - 1 3 3750.00000 3750.00000 - 2 1 9000.00000 9000.00000 - 2 2 2454.54545 2454.54545 - 2 3 529.41176 529.41176 - 3 1 18000.00000 18000.00000 - 3 2 9529.41176 9529.41176 - 3 3 2250.00000 2250.00000 - 4 1 10125.00000 10125.00000 - 4 2 2761.36364 2761.36364 - 4 3 645.55369 645.55369 - 5 1 18000.00000 18000.00000 - 5 2 9529.41176 9529.41176 - 5 3 2250.00000 2250.00000 - 6 1 10125.00000 10125.00000 - 6 2 2761.36364 2761.36364 - 6 3 645.55369 645.55369 - 7 1 45000.00000 45000.00000 - 7 2 12272.72727 12272.72727 - 7 3 3750.00000 3750.00000 - 8 1 45000.00000 45000.00000 - 8 2 12272.72727 12272.72727 - 8 3 3750.00000 3750.00000 - 9 1 10125.00000 10125.00000 - 9 2 2761.36364 2761.36364 - 9 3 645.55369 645.55369 - 10 1 45000.00000 45000.00000 - 10 2 12272.72727 12272.72727 - 10 3 3750.00000 3750.00000 - 11 1 10125.00000 10125.00000 - 11 2 2761.36364 2761.36364 - 11 3 645.55369 645.55369 - 12 1 45000.00000 45000.00000 - 12 2 12272.72727 12272.72727 - 12 3 3750.00000 3750.00000 -[END OF DATA] -[END OF TABLE] -[END OF MODULUS OF SUBGRADE REACTION] -[PERCENTAGE OF PASSIVE SOIL PRESSURE] -[TABLE] -DataCount=24 -[COLUMN INDICATION] -Layer -Index -Percentage -[END OF COLUMN INDICATION] -[DATA] - 1 1 50 - 1 2 80 - 2 1 50 - 2 2 80 - 3 1 50 - 3 2 80 - 4 1 50 - 4 2 80 - 5 1 50 - 5 2 80 - 6 1 50 - 6 2 80 - 7 1 50 - 7 2 80 - 8 1 50 - 8 2 80 - 9 1 50 - 9 2 80 - 10 1 50 - 10 2 80 - 11 1 50 - 11 2 80 - 12 1 50 - 12 2 80 -[END OF DATA] -[END OF TABLE] -[END OF PERCENTAGE OF PASSIVE SOIL PRESSURE] -[END OF MULTILINEAR BRANCHES] -[END OF SOIL PROFILE FOR SHEET PILING MODEL] -[SLIDE PLANE] -[TABLE] -DataCount=36 -[COLUMN INDICATION] -Slide plane position -Theta min -Theta max -Q min -Q max -[END OF COLUMN INDICATION] -[DATA] - 1.00000 0.00000 0.00000 0.00000 0.00000 - -0.16667 69.25300 36.29600 28.92791 2.23918 - -1.33333 69.25300 36.29600 115.71165 8.95673 - -2.50000 69.25300 36.29600 260.35122 20.15263 - -3.00000 69.25300 36.29600 340.05058 26.32181 - -4.25000 69.25300 36.29600 585.79025 45.34343 - -5.50000 69.25300 36.29600 897.94605 69.50602 - -6.00000 69.25300 36.29600 1041.40489 80.61054 - -6.50000 69.25300 36.29600 1195.49031 92.53760 - -7.40000 69.25300 36.29600 1499.62304 116.07917 - -8.30000 69.25300 36.29600 1838.18589 142.28582 - -8.50000 69.25300 36.29600 1918.09778 148.47144 - -9.00000 69.25300 36.29600 2125.31610 164.51130 - -9.75000 68.95400 36.94800 2306.36288 199.12322 - -10.50000 68.67600 37.47000 2491.83057 234.97551 - -11.00000 68.50200 37.76400 2617.95242 259.55492 - -12.30000 68.26800 37.85500 3110.64234 314.72090 - -13.60000 68.07600 37.92700 3647.74002 375.06954 - -14.90000 67.91800 37.98400 4229.30487 440.60042 - -16.20000 67.78600 38.03100 4855.38184 511.31328 - -17.50000 67.67500 38.07100 5526.00521 587.20791 - -18.50000 67.50100 38.21600 5968.99483 650.18531 - -19.50000 67.44700 38.22600 6488.57237 709.02830 - -20.50000 67.39800 38.23600 7034.55926 770.93703 - -21.50000 67.25900 38.35100 7517.85295 840.46585 - -21.95000 67.53400 38.22400 7928.02503 863.86844 - -23.45000 68.22000 37.84700 9354.83066 945.88812 - -23.75000 68.32700 37.77900 9651.54016 963.03094 - -25.00000 68.70200 37.51800 10929.61232 1037.10367 - -26.40000 69.02100 37.26500 12447.22424 1125.40920 - -27.80000 69.26900 37.04400 14061.67656 1219.62423 - -29.20000 69.46600 36.85200 15773.65437 1319.73924 - -30.60000 69.62700 36.68300 17583.60580 1425.74633 - -32.00000 69.76000 36.53400 19491.83726 1537.63894 - -33.00000 69.64000 36.71800 20284.50099 1653.77850 - -34.00000 69.73100 36.61400 21746.56946 1739.49144 -[END OF DATA] -[END OF TABLE] -[END OF SLIDE PLANE] -[LAMBDAS] -[TABLE] -DataCount=35 -[COLUMN INDICATION] Position Vertical stress Passive hor pressure @@ -31227,9 +31458,10 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 0.41667 5.83333 24.79535 1.91930 0.55900 0.32902 4.25063 - -0.75000 17.50000 74.38606 5.75790 0.55900 0.32902 4.25063 - -1.91667 29.16667 123.97677 9.59649 0.55900 0.32902 4.25063 + 0.87500 1.25000 5.31329 0.41128 0.55900 0.32902 4.25063 + 0.20833 7.91667 33.65084 2.60476 0.55900 0.32902 4.25063 + -0.87500 18.75000 79.69935 6.16917 0.55900 0.32902 4.25063 + -1.95833 29.58333 125.74787 9.73359 0.55900 0.32902 4.25063 -2.75000 37.50000 159.39871 12.33835 0.55900 0.32902 4.25063 -3.62500 46.25000 196.59174 15.21729 0.55900 0.32902 4.25063 -4.87500 58.75000 249.72464 19.33008 0.55900 0.32902 4.25063 @@ -31267,7 +31499,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=210 +DataCount=216 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -31279,215 +31511,221 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 110 13 1 - 1.30433 2.33333 9.91814 1.30433 110 0 1 - 2.60866 4.66667 19.83628 2.60866 110 0 1 - 3.91300 7.00000 29.75443 3.91300 110 13 1 - 5.21733 9.33333 39.67257 5.21733 110 0 1 - 6.52166 11.66667 49.59071 6.52166 110 0 1 - 6.52166 11.66667 49.59071 6.52166 110 13 1 - 7.82599 14.00000 59.50885 7.82599 110 13 1 - 9.13032 16.33333 69.42699 9.13032 110 13 1 - 10.43465 18.66667 79.34513 10.43465 110 13 1 - 11.73899 21.00000 89.26328 11.73899 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 13.04332 23.33333 99.18142 13.04332 110 13 1 - 14.34765 25.66667 109.09956 14.34765 110 13 1 - 15.65198 28.00000 119.01770 15.65198 110 0 1 - 16.95631 30.33333 128.93584 16.95631 110 13 1 - 18.26064 32.66667 138.85399 18.26064 110 13 1 + 0.27845 0.50000 2.12532 0.27950 110 0 1 + 0.55690 1.00000 4.25063 0.55900 110 0 1 + 0.83536 1.50000 6.37595 0.83850 110 0 1 + 1.11383 2.00000 8.50126 1.11800 110 0 1 + 1.39231 2.50000 10.62658 1.39750 110 0 1 + 1.39231 2.50000 10.62658 1.39750 110 0 1 + 2.59926 4.66667 19.83628 2.60866 110 0 1 + 3.80666 6.83333 29.04599 3.81983 110 0 1 + 5.01463 9.00000 38.25569 5.03099 110 0 1 + 6.22328 11.16667 47.46539 6.24216 110 0 1 + 7.43274 13.33333 56.67510 7.45332 110 0 1 + 7.43274 13.33333 56.67510 7.45332 110 0 1 + 8.64310 15.50000 65.88480 8.66449 110 0 1 + 9.85432 17.66667 75.09450 9.87565 110 0 1 + 11.06636 19.83333 84.30421 11.08682 110 0 1 + 12.27915 22.00000 93.51391 12.29799 110 0 1 + 13.49265 24.16667 102.72361 13.50915 110 0 1 + 13.49265 24.16667 102.72361 13.50915 110 0 1 + 14.70675 26.33333 111.93331 14.72032 110 0 1 + 15.92127 28.50000 121.14302 15.93148 110 0 1 + 17.13597 30.66667 130.35272 17.14265 110 0 1 + 18.35062 32.83333 139.56242 18.35381 110 0 1 19.56498 35.00000 148.77213 19.56498 110 13 1 19.56498 35.00000 148.77213 19.56498 110 13 1 - 20.12398 36.00000 153.02276 20.12398 110 13 1 - 20.68298 37.00000 157.27339 20.68298 110 13 1 - 21.24197 38.00000 161.52402 21.24197 110 13 1 - 21.80097 39.00000 165.77466 21.80097 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 13 1 - 22.35997 40.00000 170.02529 22.35997 110 0 1 - 23.75747 42.50000 180.65187 23.75747 110 0 1 - 25.15497 45.00000 191.27845 25.15497 110 13 1 - 26.55247 47.50000 201.90503 26.55247 110 13 1 - 27.94997 50.00000 212.53161 27.94997 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 0 1 - 29.34747 52.50000 223.15819 29.34747 110 13 1 - 30.74496 55.00000 233.78477 30.74496 110 13 1 - 32.14246 57.50000 244.41135 32.14246 110 13 1 - 33.53996 60.00000 255.03793 33.53996 110 13 1 - 34.93746 62.50000 265.66451 34.93746 110 0 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.33496 65.00000 276.29109 36.33496 110 13 1 - 36.89396 66.00000 280.54173 36.89396 110 13 1 - 37.45296 67.00000 284.79236 37.45296 110 13 1 - 38.01195 68.00000 289.04299 38.01195 110 13 1 - 38.57095 69.00000 293.29362 38.57095 110 0 1 + 20.12529 36.00000 153.02276 20.12398 110 13 1 + 20.68550 37.00000 157.27339 20.68298 110 13 1 + 21.24561 38.00000 161.52402 21.24197 110 13 1 + 21.80564 39.00000 165.77466 21.80097 110 13 1 + 22.36561 40.00000 170.02529 22.35997 110 13 1 + 22.36561 40.00000 170.02529 22.35997 110 13 1 + 23.76535 42.50000 180.65187 23.75747 110 13 1 + 25.16490 45.00000 191.27845 25.15497 110 13 1 + 26.56424 47.50000 201.90503 26.55247 110 13 1 + 27.96338 50.00000 212.53161 27.94997 110 13 1 + 29.36231 52.50000 223.15819 29.34747 110 13 1 + 29.36231 52.50000 223.15819 29.34747 110 13 1 + 30.76099 55.00000 233.78477 30.74496 110 13 1 + 32.15914 57.50000 244.41135 32.14246 110 13 1 + 33.55643 60.00000 255.03793 33.53996 110 13 1 + 34.95253 62.50000 265.66451 34.93746 110 13 1 + 36.34713 65.00000 276.29109 36.33496 110 13 1 + 36.34713 65.00000 276.29109 36.33496 110 13 1 + 36.90446 66.00000 280.54173 36.89396 110 13 1 + 37.46144 67.00000 284.79236 37.45296 110 13 1 + 38.01804 68.00000 289.04299 38.01195 110 13 1 + 38.57423 69.00000 293.29362 38.57095 110 13 1 39.12995 70.00000 297.54425 39.12995 110 13 1 39.12995 70.00000 297.54425 39.12995 110 13 1 - 39.68895 71.00000 301.79489 39.68895 110 13 1 - 40.24795 72.00000 306.04552 40.24795 110 13 1 - 40.80695 73.00000 310.29615 40.80695 110 0 1 - 41.36595 74.00000 314.54678 41.36595 110 13 1 - 41.92495 75.00000 318.79741 41.92495 110 0 1 - 41.92495 75.00000 318.79741 41.92495 110 0 1 - 42.93115 76.80000 326.44855 42.93115 110 13 1 - 43.93735 78.60000 334.09969 43.93735 110 13 1 - 44.94355 80.40000 341.75083 44.94355 110 0 1 - 45.94975 82.20000 349.40197 45.94975 110 0 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 46.95594 84.00000 357.05310 46.95594 110 13 1 - 47.96214 85.80000 364.70424 47.96214 110 13 1 - 48.96834 87.60000 372.35538 48.96834 110 13 1 - 49.97454 89.40000 380.00652 49.97454 110 13 1 - 50.98074 91.20000 387.65766 50.98074 110 0 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 51.98694 93.00000 395.30879 51.98694 110 13 1 - 52.21054 93.40000 397.00905 52.21054 110 13 1 - 52.43414 93.80000 398.70930 52.43414 110 0 1 - 52.65774 94.20000 400.40955 52.65774 110 13 1 - 52.88134 94.60000 402.10981 52.88134 110 13 1 - 53.10494 95.00000 403.81006 53.10494 110 0 1 - 53.10494 95.00000 403.81006 53.10494 110 13 1 - 53.66394 96.00000 408.06069 53.66394 110 13 1 - 54.22294 97.00000 412.31132 54.22294 110 0 1 - 54.78193 98.00000 416.56196 54.78193 110 13 1 - 55.34093 99.00000 420.81259 55.34093 110 13 1 - 55.89993 100.00000 425.06322 55.89993 110 0 1 - 73.34751 100.00000 237.82828 73.34751 110 31 1 - 73.78760 101.50000 239.25525 73.78760 110 31 1 - 74.22768 103.00000 240.68222 74.22768 110 31 1 - 74.66777 104.50000 242.10919 74.66777 110 31 1 - 75.10785 106.00000 243.53616 75.10785 110 31 1 - 75.54794 107.50000 244.96313 75.54794 110 31 1 - 75.54794 107.50000 243.74064 75.54794 110 31 1 - 75.98802 109.00000 245.16048 75.98802 110 31 1 - 76.42811 110.50000 246.58033 76.42811 110 31 1 - 76.86819 112.00000 248.00018 76.86819 110 31 1 - 77.30828 113.50000 249.42003 77.30828 110 31 1 - 77.74836 115.00000 250.83988 77.74836 110 31 1 - 77.74836 115.00000 249.88629 77.74836 110 31 1 - 78.04175 116.00000 250.82926 78.04175 110 31 1 - 78.33514 117.00000 251.77223 78.33514 110 31 1 - 78.62853 118.00000 252.71519 78.62853 110 31 1 - 78.92192 119.00000 253.65816 78.92192 110 31 1 - 79.21531 120.00000 254.60113 79.21531 110 31 1 - 66.59545 120.00000 361.58270 66.59545 110 18 1 - 67.87803 122.60000 368.54652 67.87803 110 18 1 - 69.16061 125.20000 375.51033 69.16061 110 18 1 - 70.44318 127.80000 382.47415 70.44318 110 18 1 - 71.72576 130.40000 389.43796 71.72576 110 18 1 - 73.00834 133.00000 396.40178 73.00834 110 18 1 - 73.00834 133.00000 395.77026 73.00834 110 18 1 - 74.29092 135.60000 402.72298 74.29092 110 18 1 - 75.57350 138.20000 409.67570 75.57350 110 18 1 - 76.85608 140.80000 416.62842 76.85608 110 18 1 - 78.13866 143.40000 423.58114 78.13866 110 0 1 - 79.42124 146.00000 430.53387 79.42124 110 18 1 - 79.42124 146.00000 429.99744 79.42124 110 18 1 - 80.70382 148.60000 436.94149 80.70382 110 18 1 - 81.98640 151.20000 443.88555 81.98640 110 18 1 - 83.26897 153.80000 450.82961 83.26897 110 18 1 - 84.55155 156.40000 457.77367 84.55155 110 18 1 - 85.83413 159.00000 464.71773 85.83413 110 18 1 - 85.83413 159.00000 464.25481 85.83413 110 18 1 - 87.11671 161.60000 471.19195 87.11671 110 18 1 - 88.39929 164.20000 478.12909 88.39929 110 0 1 - 89.68187 166.80000 485.06624 89.68187 110 18 1 - 90.96445 169.40000 492.00338 90.96445 110 18 1 - 92.24703 172.00000 498.94052 92.24703 110 18 1 - 92.24703 172.00000 498.53536 92.24703 110 0 1 - 93.52961 174.60000 505.46687 93.52961 110 19 1 - 94.81219 177.20000 512.39837 94.81219 110 19 1 - 96.09476 179.80000 519.32988 96.09476 110 19 1 - 97.37734 182.40000 526.26139 97.37734 110 19 1 - 98.65992 185.00000 533.19290 98.65992 110 19 1 - 106.80501 185.00000 454.34834 106.80501 110 24 1 - 105.73696 189.80000 449.80485 105.73696 110 24 1 - 104.66891 194.60000 445.26137 104.66891 110 24 1 - 103.60086 199.40000 440.71789 103.60086 110 24 1 - 102.53281 204.20000 436.17440 102.53281 110 24 1 - 101.46476 209.00000 431.63092 101.46476 110 24 1 - 93.72693 209.00000 506.25503 93.72693 110 19 1 - 94.71353 211.00000 511.58403 94.71353 110 0 1 - 95.70012 213.00000 516.91303 95.70012 110 19 1 - 96.68672 215.00000 522.24203 96.68672 110 19 1 - 97.67332 217.00000 527.57103 97.67332 110 0 1 - 98.65992 219.00000 532.90003 98.65992 110 19 1 - 98.65992 219.00000 532.67014 98.65992 110 0 1 - 99.64652 221.00000 537.99684 99.64652 110 19 1 - 100.63312 223.00000 543.32354 100.63312 110 19 1 - 101.61972 225.00000 548.65024 101.61972 110 19 1 - 102.60632 227.00000 553.97694 102.60632 110 19 1 - 103.59292 229.00000 559.30365 103.59292 110 19 1 - 112.14526 229.00000 474.81486 112.14526 110 24 1 - 112.94630 231.00000 478.20639 112.94630 110 24 1 - 113.74733 233.00000 481.59793 113.74733 110 24 1 - 114.54837 235.00000 484.98946 114.54837 110 0 1 - 115.34941 237.00000 488.38100 115.34941 110 24 1 - 116.15045 239.00000 491.77253 116.15045 110 24 1 - 91.06515 239.00000 901.00765 91.06515 110 10 1 - 91.48907 239.90000 905.20199 91.48907 110 0 1 - 91.91300 240.80000 909.39634 91.91300 110 0 1 - 92.33692 241.70000 913.59068 92.33692 110 0 1 - 92.76084 242.60000 917.78503 92.76084 110 0 1 - 93.18477 243.50000 921.97938 93.18477 110 10 1 - 93.18477 243.50000 916.46011 93.18477 110 10 1 - 94.59785 246.50000 930.35756 94.59785 110 10 1 - 96.01093 249.50000 944.25502 96.01093 110 10 1 - 97.42401 252.50000 958.15248 97.42401 110 0 1 - 98.83709 255.50000 972.04994 98.83709 110 0 1 - 100.25017 258.50000 985.94739 100.25017 110 0 1 - 100.25017 258.50000 982.10999 100.25017 110 0 1 - 100.53278 259.10000 984.87866 100.53278 110 0 1 - 100.81540 259.70000 987.64733 100.81540 110 10 1 - 101.09802 260.30000 990.41601 101.09802 110 10 1 - 101.38063 260.90000 993.18468 101.38063 110 10 1 - 101.66325 261.50000 995.95335 101.66325 110 10 1 - 101.66325 261.50000 993.68312 101.66325 110 0 1 - 102.84081 264.00000 1005.19296 102.84081 110 10 1 - 104.01838 266.50000 1016.70281 104.01838 110 10 1 - 105.19595 269.00000 1028.21265 105.19595 110 0 1 - 106.37351 271.50000 1039.72249 106.37351 110 10 1 - 107.55108 274.00000 1051.23234 107.55108 110 0 1 - 107.55108 274.00000 1048.30000 107.55108 110 10 1 - 109.01650 276.80000 1062.58341 109.01650 110 0 1 - 110.48191 279.60000 1076.86681 110.48191 110 0 1 - 111.94733 282.40000 1091.15022 111.94733 110 10 1 - 113.41274 285.20000 1105.43363 113.41274 110 10 1 - 114.87816 288.00000 1119.71703 114.87816 110 10 1 - 114.87816 288.00000 1117.54110 114.87816 110 0 1 - 116.34358 290.80000 1131.79675 116.34358 110 10 1 - 117.80899 293.60000 1146.05240 117.80899 110 0 1 - 119.27441 296.40000 1160.30805 119.27441 110 0 1 - 120.73983 299.20000 1174.56370 120.73983 110 10 1 - 122.20524 302.00000 1188.81935 122.20524 110 10 1 - 122.20524 302.00000 1187.24924 122.20524 110 10 1 - 123.67066 304.80000 1201.48606 123.67066 110 10 1 - 125.13607 307.60000 1215.72288 125.13607 110 10 1 - 126.60149 310.40000 1229.95970 126.60149 110 10 1 - 128.06691 313.20000 1244.19653 128.06691 110 10 1 - 129.53232 316.00000 1258.43335 129.53232 110 0 1 - 129.53232 316.00000 1257.26349 129.53232 110 10 1 - 130.99774 318.80000 1271.48707 130.99774 110 10 1 - 132.46316 321.60000 1285.71066 132.46316 110 0 1 - 133.92857 324.40000 1299.93425 133.92857 110 0 1 - 135.39399 327.20000 1314.15783 135.39399 110 10 1 - 136.85940 330.00000 1328.38142 136.85940 110 10 1 - 136.85940 330.00000 1327.48743 136.85940 110 10 1 - 138.32482 332.80000 1341.70145 138.32482 110 0 1 - 139.79024 335.60000 1355.91546 139.79024 110 10 1 - 141.25565 338.40000 1370.12948 141.25565 110 10 1 - 142.72107 341.20000 1384.34349 142.72107 110 10 1 - 144.18648 344.00000 1398.55751 144.18648 110 0 1 - 183.90487 344.00000 782.01919 183.90487 110 24 1 - 184.90617 346.00000 786.27700 184.90617 110 24 1 - 185.90747 348.00000 790.53482 185.90747 110 24 1 - 186.90876 350.00000 794.79264 186.90876 110 24 1 - 187.91006 352.00000 799.05046 187.91006 110 0 1 - 188.91136 354.00000 803.30828 188.91136 110 24 1 - 148.11171 354.00000 1436.68533 148.11171 110 0 1 - 149.15843 356.00000 1446.83859 149.15843 110 10 1 - 150.20516 358.00000 1456.99184 150.20516 110 10 1 - 151.25188 360.00000 1467.14509 151.25188 110 10 1 - 152.29861 362.00000 1477.29835 152.29861 110 10 1 - 153.34534 364.00000 1487.45160 153.34534 110 0 1 + 39.68520 71.00000 301.79489 39.68895 110 0 1 + 40.24000 72.00000 306.04552 40.24795 110 0 1 + 40.79437 73.00000 310.29615 40.80695 110 0 1 + 41.34836 74.00000 314.54678 41.36595 110 0 1 + 41.90200 75.00000 318.79741 41.92495 110 0 1 + 41.90200 75.00000 318.79741 41.92495 110 0 1 + 42.89778 76.80000 326.44855 42.93115 110 0 1 + 43.89270 78.60000 334.09969 43.93735 110 0 1 + 44.88689 80.40000 341.75083 44.94355 110 0 1 + 45.88051 82.20000 349.40197 45.94975 110 0 1 + 46.87369 84.00000 357.05310 46.95594 110 0 1 + 46.87369 84.00000 357.05310 46.95594 110 0 1 + 47.86655 85.80000 364.70424 47.96214 110 0 1 + 48.85917 87.60000 372.35538 48.96834 110 0 1 + 49.85161 89.40000 380.00652 49.97454 110 0 1 + 50.84394 91.20000 387.65766 50.98074 110 0 1 + 51.83622 93.00000 395.30879 51.98694 110 0 1 + 51.83622 93.00000 395.30879 51.98694 110 0 1 + 51.94107 93.40000 397.00905 52.21054 110 0 1 + 51.88573 93.80000 398.70930 52.43414 110 0 1 + 51.77692 94.20000 400.40955 52.65774 110 0 1 + 51.72131 94.60000 402.10981 52.88134 110 0 1 + 51.82562 95.00000 403.81006 53.10494 110 0 1 + 51.82562 95.00000 403.81006 53.10494 110 0 1 + 52.37519 96.00000 408.06069 53.66394 110 0 1 + 52.92478 97.00000 412.31132 54.22294 110 0 1 + 53.47438 98.00000 416.56196 54.78193 110 0 1 + 54.02401 99.00000 420.81259 55.34093 110 0 1 + 54.57367 100.00000 425.06322 55.89993 110 0 1 + 73.08226 100.00000 237.82828 73.34751 110 0 1 + 73.51956 101.50000 239.25525 73.78760 110 0 1 + 73.95689 103.00000 240.68222 74.22768 110 0 1 + 74.39426 104.50000 242.10919 74.66777 110 0 1 + 74.83167 106.00000 243.53616 75.10785 110 0 1 + 75.26912 107.50000 244.96313 75.54794 110 0 1 + 75.26912 107.50000 243.74064 75.54794 110 0 1 + 75.70663 109.00000 245.16048 75.98802 110 0 1 + 76.14420 110.50000 246.58033 76.42811 110 0 1 + 76.58184 112.00000 248.00018 76.86819 110 0 1 + 77.01953 113.50000 249.42003 77.30828 110 0 1 + 77.45730 115.00000 250.83988 77.74836 110 0 1 + 77.45730 115.00000 249.88629 77.74836 110 0 1 + 77.74919 116.00000 250.82926 78.04175 110 0 1 + 78.04111 117.00000 251.77223 78.33514 110 0 1 + 78.33306 118.00000 252.71519 78.62853 110 0 1 + 78.62505 119.00000 253.65816 78.92192 110 0 1 + 78.91707 120.00000 254.60113 79.21531 110 0 1 + 65.99896 120.00000 361.58270 66.59545 110 0 1 + 67.27476 122.60000 368.54652 67.87803 110 0 1 + 68.55104 125.20000 375.51033 69.16061 110 0 1 + 69.82780 127.80000 382.47415 70.44318 110 0 1 + 71.10505 130.40000 389.43796 71.72576 110 0 1 + 72.38280 133.00000 396.40178 73.00834 110 0 1 + 72.38280 133.00000 395.77026 73.00834 110 0 1 + 73.66105 135.60000 402.72298 74.29092 110 0 1 + 74.93981 138.20000 409.67570 75.57350 110 0 1 + 76.21908 140.80000 416.62842 76.85608 110 0 1 + 77.49886 143.40000 423.58114 78.13866 110 0 1 + 78.77916 146.00000 430.53387 79.42124 110 0 1 + 78.77916 146.00000 429.99744 79.42124 110 0 1 + 80.05998 148.60000 436.94149 80.70382 110 0 1 + 81.34132 151.20000 443.88555 81.98640 110 0 1 + 82.62319 153.80000 450.82961 83.26897 110 0 1 + 83.90560 156.40000 457.77367 84.55155 110 0 1 + 85.18856 159.00000 464.71773 85.83413 110 0 1 + 85.18856 159.00000 464.25481 85.83413 110 0 1 + 86.47206 161.60000 471.19195 87.11671 110 0 1 + 87.75612 164.20000 478.12909 88.39929 110 0 1 + 89.04074 166.80000 485.06624 89.68187 110 0 1 + 90.32593 169.40000 492.00338 90.96445 110 0 1 + 91.61170 172.00000 498.94052 92.24703 110 0 1 + 91.61170 172.00000 498.53536 92.24703 110 0 1 + 92.89806 174.60000 505.46687 93.52961 110 0 1 + 94.18502 177.20000 512.39837 94.81219 110 0 1 + 95.47258 179.80000 519.32988 96.09476 110 0 1 + 96.76075 182.40000 526.26139 97.37734 110 0 1 + 98.04954 185.00000 533.19290 98.65992 110 0 1 + 106.46167 185.00000 454.34834 106.80501 110 0 1 + 105.39655 189.80000 449.80485 105.73696 110 0 1 + 104.33164 194.60000 445.26137 104.66891 110 0 1 + 103.26694 199.40000 440.71789 103.60086 110 0 1 + 102.20244 204.20000 436.17440 102.53281 110 0 1 + 101.13814 209.00000 431.63092 101.46476 110 0 1 + 93.14627 209.00000 506.25503 93.72693 110 0 1 + 94.13988 211.00000 511.58403 94.71353 110 0 1 + 95.13382 213.00000 516.91303 95.70012 110 0 1 + 96.12806 215.00000 522.24203 96.68672 110 0 1 + 97.12260 217.00000 527.57103 97.67332 110 0 1 + 98.11741 219.00000 532.90003 98.65992 110 0 1 + 98.11741 219.00000 532.67014 98.65992 110 0 1 + 99.11248 221.00000 537.99684 99.64652 110 0 1 + 100.10779 223.00000 543.32354 100.63312 110 0 1 + 101.10330 225.00000 548.65024 101.61972 110 0 1 + 102.09900 227.00000 553.97694 102.60632 110 0 1 + 103.09486 229.00000 559.30365 103.59292 110 0 1 + 111.86510 229.00000 474.81486 112.14526 110 0 1 + 112.67142 231.00000 478.20639 112.94630 110 0 1 + 113.47780 233.00000 481.59793 113.74733 110 0 1 + 114.28422 235.00000 484.98946 114.54837 110 0 1 + 115.09065 237.00000 488.38100 115.34941 110 0 1 + 115.89708 239.00000 491.77253 116.15045 110 0 1 + 89.93907 239.00000 901.00765 91.06515 110 0 1 + 90.37373 239.90000 905.20199 91.48907 110 0 1 + 90.80833 240.80000 909.39634 91.91300 110 0 1 + 91.24289 241.70000 913.59068 92.33692 110 0 1 + 91.67738 242.60000 917.78503 92.76084 110 0 1 + 92.11179 243.50000 921.97938 93.18477 110 0 1 + 92.11179 243.50000 916.46011 93.18477 110 0 1 + 93.55914 246.50000 930.35756 94.59785 110 0 1 + 95.00525 249.50000 944.25502 96.01093 110 0 1 + 96.44991 252.50000 958.15248 97.42401 110 0 1 + 97.89295 255.50000 972.04994 98.83709 110 0 1 + 99.33416 258.50000 985.94739 100.25017 110 0 1 + 99.33416 258.50000 982.10999 100.25017 110 0 1 + 99.62217 259.10000 984.87866 100.53278 110 0 1 + 99.91010 259.70000 987.64733 100.81540 110 0 1 + 100.19795 260.30000 990.41601 101.09802 110 0 1 + 100.48572 260.90000 993.18468 101.38063 110 0 1 + 100.77341 261.50000 995.95335 101.66325 110 0 1 + 100.77341 261.50000 993.68312 101.66325 110 0 1 + 101.97126 264.00000 1005.19296 102.84081 110 0 1 + 103.16770 266.50000 1016.70281 104.01838 110 0 1 + 104.36273 269.00000 1028.21265 105.19595 110 0 1 + 105.55634 271.50000 1039.72249 106.37351 110 0 1 + 106.74854 274.00000 1051.23234 107.55108 110 0 1 + 106.74854 274.00000 1048.30000 107.55108 110 0 1 + 108.22868 276.80000 1062.58341 109.01650 110 0 1 + 109.70709 279.60000 1076.86681 110.48191 110 0 1 + 111.18384 282.40000 1091.15022 111.94733 110 0 1 + 112.65896 285.20000 1105.43363 113.41274 110 0 1 + 114.13251 288.00000 1119.71703 114.87816 110 0 1 + 114.13251 288.00000 1117.54110 114.87816 110 0 1 + 115.60455 290.80000 1131.79675 116.34358 110 0 1 + 117.07513 293.60000 1146.05240 117.80899 110 0 1 + 118.54432 296.40000 1160.30805 119.27441 110 0 1 + 120.01218 299.20000 1174.56370 120.73983 110 0 1 + 121.47879 302.00000 1188.81935 122.20524 110 0 1 + 121.47879 302.00000 1187.24924 122.20524 110 0 1 + 122.94419 304.80000 1201.48606 123.67066 110 0 1 + 124.40847 307.60000 1215.72288 125.13607 110 0 1 + 125.87167 310.40000 1229.95970 126.60149 110 0 1 + 127.33387 313.20000 1244.19653 128.06691 110 0 1 + 128.79514 316.00000 1258.43335 129.53232 110 0 1 + 128.79514 316.00000 1257.26349 129.53232 110 0 1 + 130.25552 318.80000 1271.48707 130.99774 110 0 1 + 131.71511 321.60000 1285.71066 132.46316 110 0 1 + 133.17395 324.40000 1299.93425 133.92857 110 0 1 + 134.63214 327.20000 1314.15783 135.39399 110 0 1 + 136.08975 330.00000 1328.38142 136.85940 110 0 1 + 136.08975 330.00000 1327.48743 136.85940 110 0 1 + 137.54684 332.80000 1341.70145 138.32482 110 0 1 + 139.00351 335.60000 1355.91546 139.79024 110 0 1 + 140.45987 338.40000 1370.12948 141.25565 110 0 1 + 141.91602 341.20000 1384.34349 142.72107 110 0 1 + 143.37206 344.00000 1398.55751 144.18648 110 0 1 + 183.72163 344.00000 782.01919 183.90487 110 0 1 + 184.72142 346.00000 786.27700 184.90617 110 0 1 + 185.72122 348.00000 790.53482 185.90747 110 0 1 + 186.72104 350.00000 794.79264 186.90876 110 0 1 + 187.72087 352.00000 799.05046 187.91006 110 0 1 + 188.72073 354.00000 803.30828 188.91136 110 0 1 + 147.26446 354.00000 1436.68533 148.11171 110 0 1 + 148.30484 356.00000 1446.83859 149.15843 110 0 1 + 149.34526 358.00000 1456.99184 150.20516 110 0 1 + 150.38571 360.00000 1467.14509 151.25188 110 0 1 + 151.42617 362.00000 1477.29835 152.29861 110 0 1 + 152.46663 364.00000 1487.45160 153.34534 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -31500,16 +31738,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 279.500 '99_Aanvulzand' - -9.00 152.563 '5_Klei_siltig' - -11.00 537.080 '6_Siltig_zand' - -17.50 104.135 '7_Klei_met_zandlagen' - -18.50 197.320 '6_Siltig_zand' - -20.50 114.148 '7_Klei_met_zandlagen' - -21.50 347.578 '9A_Zand_Pleistoceen' - -25.00 881.081 '9B_Zand_Pleistoceen' - -32.00 186.408 '17_Klei_zandlagen' - -33.00 150.729 '9B_Zand_Pleistoceen' + 5.50 278.540 '99_Aanvulzand' + -9.00 151.998 '5_Klei_siltig' + -11.00 532.975 '6_Siltig_zand' + -17.50 103.799 '7_Klei_met_zandlagen' + -18.50 196.237 '6_Siltig_zand' + -20.50 113.881 '7_Klei_met_zandlagen' + -21.50 344.272 '9A_Zand_Pleistoceen' + -25.00 875.793 '9B_Zand_Pleistoceen' + -32.00 186.221 '17_Klei_zandlagen' + -33.00 149.866 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -31524,16 +31762,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -87.83 '99_Aanvulzand' - -9.00 -27.74 '5_Klei_siltig' - -11.00 -144.17 '6_Siltig_zand' - -17.50 -23.94 '7_Klei_met_zandlagen' - -18.50 -52.97 '6_Siltig_zand' - -20.50 -26.24 '7_Klei_met_zandlagen' - -21.50 -119.55 '9A_Zand_Pleistoceen' - -25.00 -303.04 '9B_Zand_Pleistoceen' - -32.00 -42.85 '17_Klei_zandlagen' - -33.00 -51.84 '9B_Zand_Pleistoceen' + 5.50 -87.53 '99_Aanvulzand' + -9.00 -27.64 '5_Klei_siltig' + -11.00 -143.07 '6_Siltig_zand' + -17.50 -23.86 '7_Klei_met_zandlagen' + -18.50 -52.68 '6_Siltig_zand' + -20.50 -26.18 '7_Klei_met_zandlagen' + -21.50 -118.41 '9A_Zand_Pleistoceen' + -25.00 -301.22 '9B_Zand_Pleistoceen' + -32.00 -42.81 '17_Klei_zandlagen' + -33.00 -51.55 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -34714,28 +34952,34 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -34955,9 +35199,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 -32.35585 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 194.13445 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 -372.45976 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -36.11300 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 187.88267 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -387.03518 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -34984,267 +35228,273 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.32 : Percentage mobilized resistance left - 16.96 : Percentage mobilized resistance right - 2379.31 : Effective left - 2168.49 : Effective right + 11.14 : Percentage mobilized resistance left + 17.15 : Percentage mobilized resistance right + 2341.41 : Effective left + 2193.19 : Effective right 6349.00 : Water pressure left - 6349.00 : Water pressure right + 6261.81 : Water pressure right 21027.02 : Max effective resistance left 12789.08 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 707.08 : Vertical force left - 662.38 : Vertical force right + 695.76 : Vertical force left + 670.03 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --707.08 : Active force -662.38 : Passive force --707.08 : Plugged active force -662.38 : Plugged passive force +-695.76 : Active force +670.03 : Passive force +-695.76 : Plugged active force +670.03 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor --44.71 : Resulting Vertical Force Unplugged --44.71 : Resulting Vertical Force Plugged +-25.73 : Resulting Vertical Force Unplugged +-25.73 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 32.35585 0.00000 - 7.54970 32.35585 0.00404 - 15.09940 32.35585 0.00797 - 22.64910 32.35585 0.01168 - 30.19880 32.35585 0.01507 - 37.74850 32.35585 0.01803 - 37.74850 32.35585 0.01803 - 45.29820 32.35585 0.02044 - 52.84790 32.35585 0.02221 - 60.39759 32.35585 0.02322 - 67.94729 32.35585 0.02336 - 75.49699 32.35585 0.02254 - 75.49699 32.35585 0.02254 - 83.04669 32.35585 0.02062 - 90.59639 32.35585 0.01752 - 98.14609 32.35585 0.01312 - 105.69579 32.35585 0.00732 - 113.24549 32.35585 0.00000 - 113.24549 -161.77859 0.00000 - 97.06763 -161.77859 -0.00362 - 80.88977 -161.77859 -0.00749 - 64.71191 -161.77859 -0.01158 - 48.53405 -161.77859 -0.01584 - 32.35619 -161.77859 -0.02022 - 32.35619 -161.77859 -0.02022 - -8.08845 -161.77859 -0.03146 - -48.53310 -161.77859 -0.04257 - -88.97775 -161.77859 -0.05288 - -129.42240 -161.77859 -0.06173 - -169.86705 -161.77859 -0.06845 - -169.86705 -161.77859 -0.06845 - -210.31170 -161.77859 -0.07238 - -250.75634 -161.77859 -0.07284 - -291.20099 -161.77859 -0.06918 - -331.64564 -161.77859 -0.06073 - -372.09029 -161.77859 -0.04683 - -372.09019 -161.77977 -0.04683 - -388.27202 -161.89533 -0.03959 - -404.47444 -162.16642 -0.03134 - -420.70884 -162.54343 -0.02201 - -436.98751 -163.05195 -0.01158 - -453.32358 -163.69112 0.00000 - -453.32361 208.76804 0.00000 - -432.48393 208.00427 0.01276 - -411.72703 207.11241 0.02665 - -391.06569 206.09321 0.04163 - -370.51261 204.94734 0.05764 - -350.08042 203.67543 0.07462 - -350.08030 203.67431 0.07462 - -313.64249 201.12431 0.10748 - -277.69921 198.17992 0.14300 - -242.32124 194.84351 0.18090 - -207.57896 191.11686 0.22087 - -173.54251 187.00119 0.26261 - -173.54257 186.99992 0.26261 - -140.26428 182.69725 0.30582 - -107.79373 178.02507 0.35022 - -76.19745 172.98298 0.39555 - -45.54211 167.57000 0.44154 - -15.89460 161.78455 0.48792 - -15.89433 161.89312 0.48792 - -9.44367 160.65362 1.58782 - -3.04867 158.91729 4.19565 - 3.25848 156.33828 7.30464 - 9.45220 153.29456 9.90798 - 15.51892 150.01641 10.99889 - 15.51520 149.92552 10.99889 - 30.06027 140.94432 10.99660 - 43.69775 131.77350 10.99424 - 56.40863 122.41245 10.99176 - 68.17387 112.86057 10.98915 - 78.97436 103.11730 10.98636 - 78.97417 103.11866 10.98636 - 93.81900 94.79863 10.98178 - 107.40962 86.39586 10.97667 - 119.73358 77.90971 10.97096 - 130.77834 69.33964 10.96456 - 140.53126 60.68522 10.95742 - 140.53135 60.68564 10.95742 - 141.43384 59.64640 10.95666 - 142.32073 58.60598 10.95590 - 143.19201 57.56438 10.95512 - 144.04766 56.52161 10.95434 - 144.88765 55.47767 10.95355 - 144.88762 55.47756 10.95355 - 151.77666 46.68509 10.94605 - 157.52440 38.59947 10.93785 - 162.23437 31.31061 10.92893 - 166.01415 24.81911 10.91926 - 168.96682 19.02295 10.90883 - 168.96688 19.02331 10.90883 - 170.66271 14.92693 10.90059 - 171.95898 11.03207 10.89192 - 172.87585 7.33893 10.88281 - 173.43351 3.84814 10.87327 - 173.65225 0.56040 10.86328 - 173.65021 0.57926 10.86328 - 171.76582 -14.48424 10.83523 - 166.35533 -26.81399 10.80423 - 157.99007 -37.21076 10.77042 - 147.17456 -45.65953 10.73394 - 134.41726 -52.14503 10.69493 - 134.41592 -52.12518 10.69493 - 121.11224 -49.73847 10.65360 - 108.79839 -44.50785 10.61020 - 98.21626 -36.41447 10.56491 - 90.09446 -25.64883 10.51790 - 84.99896 -13.49747 10.46934 - 85.00237 -13.50161 10.46934 - 82.58907 -5.00649 10.41937 - 82.42813 3.82472 10.36798 - 84.59786 12.88597 10.31515 - 89.09054 21.50545 10.26082 - 95.69326 29.11614 10.20498 - 95.69081 29.10974 10.20498 - 103.76306 33.04168 10.14752 - 112.90218 37.31624 10.08829 - 123.19713 41.93252 10.02711 - 134.73655 46.88871 9.96379 - 147.60848 52.18210 9.89816 - 147.60834 52.18443 9.89816 - 161.83085 57.22234 9.83003 - 177.37740 62.41544 9.75912 - 194.31205 67.89897 9.68515 - 212.70948 73.66652 9.60782 - 232.64261 79.71067 9.52684 - 232.64594 79.69160 9.52684 - 248.93519 83.18597 9.46186 - 265.91430 86.58982 9.39436 - 283.24494 85.10093 9.32415 - 299.61020 78.44497 9.25107 - 314.57697 71.09975 9.17496 - 314.57612 71.08824 9.17496 - 327.82936 61.46158 9.09563 - 339.16769 51.93907 9.01298 - 348.61193 42.52074 8.92690 - 356.18322 33.21084 8.83730 - 361.91112 24.12373 8.74408 - 361.90851 24.10994 8.74408 - 365.82948 15.15364 8.64716 - 367.99154 6.52086 8.54653 - 368.45938 -1.78856 8.44218 - 367.29766 -9.77475 8.33410 - 364.57102 -17.43783 8.22229 - 364.56916 -17.41607 8.22229 - 360.66516 -21.58951 8.10677 - 355.94713 -25.55630 7.98758 - 350.44944 -29.42095 7.86479 - 344.17788 -33.29872 7.73845 - 337.12824 -37.20216 7.60861 - 337.12856 -37.20075 7.60861 - 333.53446 -42.65846 7.54906 - 329.45180 -48.05750 7.48882 - 324.88586 -53.39811 7.42791 - 319.84189 -58.68054 7.36632 - 314.32510 -63.90507 7.30409 - 314.33220 -63.92001 7.30409 - 292.55095 -81.18537 7.09195 - 265.68203 -97.84019 6.87313 - 233.90634 -113.89996 6.64834 - 197.40421 -129.33816 6.41831 - 156.40125 -143.79830 6.18376 - 156.38382 -143.85861 6.18376 - 147.66669 -146.70410 6.13637 - 138.78032 -149.49973 6.08885 - 129.72771 -152.24587 6.04121 - 120.51180 -154.94292 5.99344 - 111.13553 -157.59127 5.94557 - 111.12459 -157.54396 5.94557 - 70.53852 -166.31221 5.74510 - 28.56931 -167.87060 5.54353 - -12.83594 -162.69885 5.34150 - -52.44548 -153.51152 5.13964 - -89.26038 -140.34835 4.93861 - -89.25699 -140.32090 4.93861 - -127.71770 -133.99859 4.71522 - -164.07457 -125.30169 4.49438 - -197.66949 -114.27815 4.27675 - -227.85747 -100.97390 4.06299 - -254.00610 -85.43281 3.85377 - -254.00414 -85.42367 3.85377 - -275.53473 -68.47991 3.64970 - -292.41678 -52.22066 3.45112 - -304.84252 -36.64946 3.25827 - -313.00474 -21.76683 3.07141 - -317.09597 -7.57026 2.89079 - -317.09557 -7.57265 2.89079 - -317.43768 5.01263 2.71657 - -314.35330 16.90365 2.54867 - -308.03563 28.10906 2.38697 - -298.67532 38.63855 2.23134 - -286.46013 48.50289 2.08166 - -286.47358 48.62090 2.08166 - -271.52578 57.93044 1.93775 - -254.16887 65.77923 1.79923 - -234.83754 72.04095 1.66574 - -213.97005 76.75862 1.53689 - -191.99308 79.97230 1.41231 - -191.99208 79.96162 1.41231 - -169.30625 81.83845 1.29156 - -146.29640 82.28116 1.17418 - -123.35991 81.31909 1.05972 - -100.88642 78.97798 0.94771 - -79.25889 75.27995 0.83772 - -79.26003 75.27510 0.83772 - -64.87869 68.51255 0.76013 - -51.86527 61.59609 0.68320 - -40.25044 54.52688 0.60680 - -30.06464 47.30589 0.53083 - -21.33814 39.93392 0.45517 - -21.33814 39.93351 0.45517 - -14.00736 33.26418 0.37970 - -8.07644 25.93518 0.30437 - -3.67719 17.94772 0.22914 - -0.94120 9.30258 0.15396 - 0.00002 0.00007 0.07879 + 0.00000 36.11300 0.00000 + 1.80544 36.10050 0.00092 + 3.60963 36.06300 0.00184 + 5.41132 36.00050 0.00275 + 7.20927 35.91300 0.00366 + 9.00221 35.80050 0.00457 + 9.00221 35.80050 0.00457 + 16.70030 35.25883 0.00842 + 24.28103 34.71716 0.01206 + 31.74441 34.17550 0.01540 + 39.09042 33.63383 0.01835 + 46.31907 33.09216 0.02082 + 46.31907 33.09216 0.02082 + 53.43035 32.55050 0.02271 + 60.42428 32.00883 0.02394 + 67.30085 31.46716 0.02443 + 74.06005 30.92550 0.02409 + 80.70189 30.38383 0.02283 + 80.70189 30.38383 0.02283 + 87.22638 29.84216 0.02058 + 93.63350 29.30050 0.01724 + 99.92326 28.75883 0.01275 + 106.09566 28.21716 0.00703 + 112.15070 27.67550 0.00000 + 112.15070 -160.20717 0.00000 + 96.11748 -160.45717 -0.00370 + 80.05926 -160.70717 -0.00765 + 63.97605 -160.95717 -0.01182 + 47.86783 -161.20717 -0.01615 + 31.73461 -161.45717 -0.02061 + 31.73461 -161.45717 -0.02061 + -8.70781 -162.08217 -0.03203 + -49.30647 -162.70717 -0.04331 + -90.06139 -163.33217 -0.05377 + -130.97256 -163.95717 -0.06276 + -172.03998 -164.58217 -0.06958 + -172.03998 -164.58217 -0.06958 + -213.26364 -165.20717 -0.07358 + -254.64356 -165.83217 -0.07408 + -296.17973 -166.45717 -0.07038 + -337.87215 -167.08217 -0.06181 + -379.72081 -167.70717 -0.04768 + -379.72071 -167.70845 -0.04768 + -396.50792 -168.07445 -0.04032 + -413.34083 -168.59729 -0.03192 + -430.23093 -169.22655 -0.02243 + -447.19049 -169.98649 -0.01180 + -464.23255 -170.87616 0.00000 + -464.23258 216.15836 0.00000 + -442.66635 215.14515 0.01301 + -421.20778 214.00503 0.02718 + -399.86954 212.73885 0.04245 + -378.66419 211.34741 0.05879 + -357.60421 209.83144 0.07611 + -357.60408 209.83020 0.07611 + -320.09746 206.84499 0.10963 + -283.16321 203.47102 0.14588 + -246.87105 199.71109 0.18455 + -211.29025 195.56731 0.22533 + -176.48975 191.04121 0.26791 + -176.48982 191.03986 0.26791 + -142.52076 186.33367 0.31199 + -109.43144 181.26507 0.35728 + -77.28710 175.83379 0.40351 + -46.15309 170.03895 0.45041 + -16.09498 163.87903 0.49770 + -16.09483 163.98682 0.49770 + -9.56190 162.67743 1.61148 + -3.08670 160.91323 4.25213 + 3.29996 158.30850 7.40017 + 9.57153 155.21968 10.03614 + 15.71456 151.90776 11.14058 + 15.71106 151.82204 11.14058 + 30.44196 142.76435 11.13767 + 44.25758 133.51628 11.13469 + 57.13885 124.07721 11.13159 + 69.06664 114.44656 11.12836 + 80.02176 104.62376 11.12495 + 80.02156 104.62512 11.12495 + 95.07823 96.11655 11.11943 + 108.85233 87.52396 11.11337 + 121.33119 78.84671 11.10670 + 132.50208 70.08425 11.09934 + 142.35218 61.23613 11.09123 + 142.35227 61.23655 11.09123 + 143.26288 60.17787 11.09037 + 144.15760 59.11799 11.08951 + 145.03641 58.05693 11.08864 + 145.89930 56.99468 11.08775 + 146.74625 55.93124 11.08687 + 146.74624 55.93123 11.08687 + 153.68489 46.96795 11.07848 + 159.45955 38.71512 11.06938 + 164.17375 31.25739 11.05955 + 167.93488 24.59584 11.04897 + 170.84586 18.62844 11.03760 + 170.84590 18.62870 11.03760 + 172.49590 14.40471 11.02868 + 173.73354 10.38158 11.01931 + 174.57891 6.55950 11.00950 + 175.05216 2.93910 10.99925 + 175.17348 -0.47892 10.98856 + 175.17157 -0.46126 10.98856 + 173.06193 -15.26356 10.95865 + 167.44836 -27.59848 10.92576 + 158.87738 -38.01038 10.89005 + 147.85092 -46.48432 10.85166 + 134.87481 -53.00512 10.81072 + 134.87345 -52.98528 10.81072 + 121.34045 -50.64405 10.76745 + 108.78414 -45.46910 10.72212 + 97.94374 -37.44161 10.67488 + 89.54521 -26.75205 10.62594 + 84.15188 -14.68695 10.57545 + 84.15409 -14.68692 10.57545 + 81.44625 -6.08912 10.52357 + 81.01570 2.83117 10.47029 + 82.94663 12.07643 10.41559 + 87.26542 20.97523 10.35943 + 93.76503 28.85040 10.30177 + 93.76229 28.84028 10.30177 + 101.79704 33.01993 10.24255 + 110.96092 37.52576 10.18158 + 121.33865 42.35716 10.11868 + 133.01473 47.51263 10.05369 + 146.07310 52.98975 9.98641 + 146.07295 52.99198 9.98641 + 160.52765 58.19833 9.91666 + 176.34823 63.54481 9.84415 + 193.59483 69.16684 9.76860 + 212.33832 75.05816 9.68970 + 232.64778 81.21143 9.60716 + 232.65111 81.19235 9.60716 + 249.22287 84.50958 9.54098 + 266.44858 87.73143 9.47227 + 283.98893 86.05564 9.40085 + 300.52604 79.20788 9.32656 + 315.62580 71.66591 9.24922 + 315.62595 71.64974 9.24922 + 328.96809 61.78820 9.16866 + 340.34788 52.02634 9.08476 + 349.78638 42.38083 8.99742 + 357.31544 32.96384 8.90654 + 362.99350 23.87067 8.81204 + 362.99137 23.86232 8.81204 + 366.86144 14.89070 8.71383 + 368.96860 6.23322 8.61189 + 369.37566 -2.11033 8.50622 + 368.14538 -10.14014 8.39682 + 365.34050 -17.85642 8.28368 + 365.33864 -17.83464 8.28368 + 361.32560 -22.26217 8.16682 + 356.44719 -26.48849 8.04628 + 350.73665 -30.61813 7.92214 + 344.19869 -34.76639 7.79444 + 336.82802 -38.94580 7.66325 + 336.82834 -38.94439 7.66325 + 333.07710 -44.40705 7.60309 + 328.83676 -49.81350 7.54224 + 324.11235 -55.16398 7.48072 + 318.90891 -60.45873 7.41853 + 313.23144 -65.69804 7.35569 + 313.23819 -65.71223 7.35569 + 290.90993 -83.04437 7.14157 + 263.46996 -99.79263 6.92079 + 231.09125 -115.97190 6.69409 + 193.97608 -131.25849 6.46222 + 152.45998 -145.30686 6.22591 + 152.44339 -145.36424 6.22591 + 143.63823 -148.13306 6.17818 + 134.66839 -150.85386 6.13032 + 125.53672 -153.52698 6.08234 + 116.24609 -156.15281 6.03424 + 106.79933 -158.73172 5.98604 + 106.78846 -158.68475 5.98604 + 65.95166 -167.18216 5.78426 + 23.79580 -168.49855 5.58144 + -17.73904 -163.11198 5.37823 + -57.42768 -153.73532 5.17529 + -94.27735 -140.40652 4.97324 + -94.27392 -140.37995 4.97324 + -132.72821 -133.89804 4.74881 + -169.03753 -125.06651 4.52703 + -202.55040 -113.93082 4.30856 + -232.62779 -100.53444 4.09405 + -258.64255 -84.91883 3.88418 + -258.64060 -84.91065 3.88418 + -280.01892 -67.90762 3.67955 + -296.73397 -51.60204 3.48050 + -308.98128 -35.99526 3.28727 + -316.95638 -21.08569 3.10011 + -320.85392 -6.86878 2.91926 + -320.85354 -6.87196 2.91926 + -320.99717 5.72899 2.74490 + -317.71037 17.63285 2.57692 + -311.18687 28.85000 2.41521 + -301.61740 39.39176 2.25963 + -289.18937 49.27043 2.11006 + -289.20285 49.38787 2.11006 + -274.03790 58.71522 1.96631 + -256.45822 66.58662 1.82801 + -236.89696 72.87694 1.69478 + -215.79058 77.63030 1.56624 + -193.56361 80.88774 1.44199 + -193.56263 80.87673 1.44199 + -170.61341 82.80623 1.32161 + -147.32410 83.31124 1.20463 + -124.08927 82.42170 1.09058 + -101.29566 80.16376 0.97901 + -79.32319 76.55984 0.86945 + -79.32435 76.55494 0.86945 + -64.72415 69.42152 0.79217 + -51.56592 62.13548 0.71555 + -39.88006 54.69794 0.63947 + -29.69677 47.10988 0.56381 + -21.04609 39.37206 0.48844 + -21.04608 39.37166 0.48844 + -13.81760 32.80400 0.41327 + -7.96811 25.58204 0.33824 + -3.62833 17.70697 0.26331 + -0.92881 9.17954 0.18842 + 0.00002 0.00006 0.11355 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -35254,7 +35504,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 3 : Number of surface points @@ -35463,7 +35713,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -35475,221 +35725,227 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 2.16667 0.00000 0.00000 -1 0 - + 0.00000 4.33333 0.00000 0.00000 -1 0 - + 0.00000 6.50000 0.00000 0.00000 -1 0 - + 0.00000 8.66667 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 13.00000 0.00000 0.00000 -1 0 - + 0.00000 15.16667 0.00000 0.00000 -1 0 - + 0.00000 17.33333 0.00000 0.00000 -1 0 - + 0.00000 19.50000 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 23.83333 0.00000 0.00000 -1 0 - + 0.00000 26.00000 0.00000 0.00000 -1 0 - + 0.00000 28.16667 0.00000 0.00000 -1 0 - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 36.00000 0.00000 0.00000 -1 0 - - 0.00000 37.00000 0.00000 0.00000 -1 0 - - 0.00000 38.00000 0.00000 0.00000 -1 0 - - 0.00000 39.00000 0.00000 0.00000 -1 0 - - 0.00000 40.00000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 33.50000 0.00000 0.00000 -1 0 - + 0.00000 34.50000 0.00000 0.00000 -1 0 - + 0.00000 35.50000 0.00000 0.00000 -1 0 - + 0.00000 36.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - 0.00000 40.00000 0.00000 0.00000 -1 0 - 0.00000 42.50000 0.00000 0.00000 -1 0 - 0.00000 45.00000 0.00000 0.00000 -1 0 - 0.00000 47.50000 0.00000 0.00000 -1 0 - 0.00000 50.00000 0.00000 0.00000 -1 0 - - 0.00000 52.50000 0.00000 0.00000 -1 0 - + 0.00000 50.00000 0.00000 0.00000 -1 0 - 0.00000 52.50000 0.00000 0.00000 -1 0 - 0.00000 55.00000 0.00000 0.00000 -1 0 - 0.00000 57.50000 0.00000 0.00000 -1 0 - 0.00000 60.00000 0.00000 0.00000 -1 0 - 0.00000 62.50000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 66.00000 0.00000 0.00000 -1 0 - - 0.00000 67.00000 0.00000 0.00000 -1 0 - - 0.00000 68.00000 0.00000 0.00000 -1 0 - - 0.00000 69.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 71.00000 0.00000 0.00000 -1 0 - - 0.00000 72.00000 0.00000 0.00000 -1 0 - - 0.00000 73.00000 0.00000 0.00000 -1 0 - - 0.00000 74.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 76.80000 0.00000 0.00000 -1 0 - - 0.00000 78.60000 0.00000 0.00000 -1 0 - - 0.00000 80.40000 0.00000 0.00000 -1 0 - - 0.00000 82.20000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 85.80000 0.00000 0.00000 -1 0 - - 0.00000 87.60000 0.00000 0.00000 -1 0 - - 0.00000 89.40000 0.00000 0.00000 -1 0 - - 0.00000 91.20000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.40000 0.00000 0.00000 -1 0 - - 0.00000 93.80000 0.00000 0.00000 -1 0 - - 0.00000 94.20000 0.00000 0.00000 -1 0 - - 0.00000 94.60000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 96.00000 0.00000 0.00000 -1 0 - - 0.00000 97.00000 0.00000 0.00000 -1 0 - - 0.00000 98.00000 0.00000 0.00000 -1 0 - + 0.00000 62.50000 0.00000 0.00000 -1 0 - + 0.00000 63.50000 0.00000 0.00000 -1 0 - + 0.00000 64.50000 0.00000 0.00000 -1 0 - + 0.00000 65.50000 0.00000 0.00000 -1 0 - + 0.00000 66.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 68.50000 0.00000 0.00000 -1 0 - + 0.00000 69.50000 0.00000 0.00000 -1 0 - + 0.00000 70.50000 0.00000 0.00000 -1 0 - + 0.00000 71.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 74.30000 0.00000 0.00000 -1 0 - + 0.00000 76.10000 0.00000 0.00000 -1 0 - + 0.00000 77.90000 0.00000 0.00000 -1 0 - + 0.00000 79.70000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 83.30000 0.00000 0.00000 -1 0 - + 0.00000 85.10000 0.00000 0.00000 -1 0 - + 0.00000 86.90000 0.00000 0.00000 -1 0 - + 0.00000 88.70000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.90000 0.00000 0.00000 -1 0 - + 0.00000 91.30000 0.00000 0.00000 -1 0 - + 0.00000 91.70000 0.00000 0.00000 -1 0 - + 0.00000 92.10000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 93.50000 0.00000 0.00000 -1 0 - + 0.00000 94.50000 0.00000 0.00000 -1 0 - + 0.00000 95.50000 0.00000 0.00000 -1 0 - + 0.00000 96.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - 0.00000 99.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 101.50000 0.00000 0.00000 -1 0 - - 0.00000 103.00000 0.00000 0.00000 -1 0 - - 0.00000 104.50000 0.00000 0.00000 -1 0 - - 0.00000 106.00000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.65000 0.00000 0.00000 -1 0 - - 0.00000 107.80000 0.00000 0.00000 -1 0 - - 0.00000 107.95000 0.00000 0.00000 -1 0 - - 0.00000 108.10000 0.00000 0.00000 -1 0 - - 0.00000 108.25000 0.00000 0.00000 -1 0 - - 0.00000 108.25000 0.00001 0.00000 1 0 A - 5.22083 109.60000 6.53803 0.95371 220 80 2 - 11.77668 110.95000 13.07961 1.90793 330 90 3 - 18.33222 112.30000 19.62824 2.86318 330 93 3 - 24.89840 113.65000 26.18734 3.81996 330 95 3 - 29.94343 115.00000 32.76019 4.77874 330 91 3 - 14.34307 115.00000 15.62475 4.72846 330 92 3 - 16.67581 116.00000 17.95199 5.43274 330 93 3 - 19.01365 117.00000 20.28423 6.13854 330 94 3 - 21.35712 118.00000 22.62200 6.84601 330 94 3 - 23.70674 119.00000 24.96582 7.55532 330 95 3 - 26.06297 120.00000 27.31617 8.26659 330 95 3 - 7.00973 120.00000 18.60693 6.27753 110 38 1 - 21.62356 122.60000 26.88277 9.06961 330 80 3 - 30.00509 125.20000 35.19498 11.87395 330 85 3 - 38.42848 127.80000 43.54678 14.69164 330 88 3 - 46.89561 130.40000 51.94019 17.52338 330 90 3 - 55.40728 133.00000 60.37619 20.36949 330 92 3 - 77.93856 133.00000 82.90747 17.58733 330 94 3 - 89.65877 135.60000 94.55017 20.05711 330 95 3 - 101.43824 138.20000 106.25037 22.53910 330 95 3 - 113.27499 140.80000 118.00616 25.03288 330 96 3 - 123.56081 143.40000 129.81494 27.53790 330 95 3 - 125.47300 146.00000 141.67361 30.05350 330 89 3 - 108.09634 146.00000 183.43596 27.44431 220 59 2 - 110.06090 148.60000 198.85044 29.75051 220 55 2 - 112.02329 151.20000 214.32029 32.06499 220 52 2 - 113.14861 153.80000 229.84061 34.38703 110 49 1 - 109.92243 156.40000 245.40647 36.71587 110 45 1 - 106.66755 159.00000 261.01298 39.05080 110 41 1 - 99.58977 159.00000 328.82248 36.28859 110 30 1 - 101.70471 161.60000 348.52869 38.46336 110 29 1 - 103.81134 164.20000 368.27436 40.64247 110 28 1 - 105.90712 166.80000 388.05399 42.82534 110 27 1 - 107.98951 169.40000 407.86237 45.01137 110 26 1 - 110.05604 172.00000 427.69460 47.20004 110 26 1 - 108.30358 172.00000 270.79757 44.36640 110 40 1 - 109.13914 174.60000 283.36669 46.42567 110 39 1 - 111.03460 177.20000 295.94534 48.48651 110 38 1 - 112.90558 179.80000 308.53104 50.54850 110 37 1 - 114.74891 182.40000 321.12150 52.61127 110 36 1 - 116.56145 185.00000 333.71464 54.67448 110 35 1 - 92.01462 185.00000 308.24459 57.20320 110 30 1 - 90.49408 189.80000 300.70593 55.80420 110 30 1 - 88.96121 194.60000 293.16695 54.40513 110 30 1 - 39.41717 199.40000 285.62696 53.00588 110 0 1 - 38.32108 204.20000 278.08535 51.60633 110 0 1 - 37.22365 209.00000 270.54153 50.20637 110 0 1 - 28.97654 209.00000 291.27234 47.51247 1 0 A - 29.93411 211.00000 300.89775 49.08257 1 0 A - 30.89132 213.00000 310.51968 50.65211 1 0 A - 31.84814 215.00000 320.13764 52.22099 1 0 A - 32.84655 217.00000 329.75119 53.78916 110 0 1 - 34.94555 219.00000 339.35992 55.35654 110 0 1 - 32.45901 219.00000 315.16699 52.87001 110 0 1 - 34.48594 221.00000 324.08591 54.36618 110 0 1 - 36.51125 223.00000 332.99972 55.86149 110 0 1 - 38.53493 225.00000 341.90814 57.35590 110 0 1 - 40.55700 227.00000 350.81094 58.84936 110 0 1 - 42.57745 229.00000 359.70787 60.34185 110 0 1 - 51.56700 229.00000 308.29721 61.55948 110 0 1 - 53.03260 231.00000 314.15129 62.72839 110 0 1 - 54.49660 233.00000 320.00003 63.89625 110 0 1 - 55.95861 235.00000 325.84332 65.06301 110 0 1 - 57.41822 237.00000 331.68104 66.22866 110 0 1 - 58.87501 239.00000 337.51309 67.39318 110 0 1 - 31.40249 239.00000 518.49407 55.78942 1 0 A - 31.75741 239.90000 524.35424 56.41997 1 0 A - 32.11222 240.80000 530.21261 57.05032 1 0 A - 32.46692 241.70000 536.06917 57.68048 1 0 A - 32.82152 242.60000 541.92392 58.31045 1 0 A - 33.17600 243.50000 547.77685 58.94022 1 0 A - 32.26389 243.50000 514.03604 56.86094 1 0 A - 33.41223 246.50000 532.33165 58.88474 1 0 A - 34.55936 249.50000 550.60801 60.90641 1 0 A - 35.70528 252.50000 568.86503 62.92594 1 0 A - 37.14503 255.50000 587.10265 64.94333 110 0 1 - 40.79861 258.50000 605.32091 66.95857 110 0 1 - 38.92979 258.50000 585.80700 65.08974 110 0 1 - 39.63994 259.10000 589.33094 65.48129 110 0 1 - 40.34686 259.70000 592.85414 65.87276 110 0 1 - 41.05049 260.30000 596.37659 66.26414 110 0 1 - 41.75077 260.90000 599.89830 66.65545 110 0 1 - 42.44765 261.50000 603.41926 67.04666 110 0 1 - 41.03220 261.50000 604.74101 65.63119 110 0 1 - 60.59161 264.00000 619.43582 67.22599 110 0 1 - 97.93542 266.50000 634.11778 68.81939 110 15 1 - 113.78704 269.00000 648.78699 70.41141 110 18 1 - 129.55186 271.50000 663.44357 72.00205 110 20 1 - 145.23049 274.00000 678.08763 73.59134 110 21 1 - 106.26872 274.00000 688.05229 71.24759 110 15 1 - 114.95625 276.80000 706.43368 73.15098 110 16 1 - 123.56192 279.60000 724.79952 75.05275 110 17 1 - 132.09118 282.40000 743.15003 76.95294 110 18 1 - 140.54949 285.20000 761.48543 78.85157 110 18 1 - 148.94231 288.00000 779.80597 80.74865 110 19 1 - 147.14200 288.00000 785.03733 78.45683 110 19 1 - 145.19804 290.80000 803.46606 80.29861 110 18 1 - 143.31702 293.60000 821.88031 82.13893 110 17 1 - 141.50604 296.40000 840.28035 83.97784 110 17 1 - 139.77219 299.20000 858.66644 85.81535 110 16 1 - 138.12255 302.00000 877.03883 87.65149 110 16 1 - 136.08428 302.00000 853.34802 85.61321 110 16 1 - 134.48178 304.80000 871.21106 87.40534 110 15 1 - 132.96981 307.60000 889.06128 89.19619 110 15 1 - 131.54819 310.40000 906.89894 90.98577 110 15 1 - 130.21669 313.20000 924.72429 92.77412 110 14 1 - 128.97511 316.00000 942.53757 94.56126 110 14 1 - 127.14976 316.00000 921.91081 92.73592 110 14 1 - 125.96214 318.80000 939.32271 94.48740 110 13 1 - 124.85809 321.60000 956.72330 96.23775 110 13 1 - 123.83230 324.40000 974.11282 97.98697 110 13 1 - 122.87946 327.20000 991.49149 99.73511 110 12 1 - 121.99426 330.00000 1008.85956 101.48218 110 12 1 - 120.34994 330.00000 991.41492 99.83786 110 12 1 - 119.49787 332.80000 1008.47247 101.55560 110 12 1 - 118.70028 335.60000 1025.52003 103.27233 110 12 1 - 117.95076 338.40000 1042.55783 104.98808 110 11 1 - 117.24290 341.20000 1059.58608 106.70286 110 11 1 - 116.57030 344.00000 1076.60499 108.41671 110 11 1 - 133.87304 344.00000 679.44872 132.03849 110 20 1 - 134.62230 346.00000 685.25609 133.16704 110 20 1 - 135.37405 348.00000 691.06056 134.29504 110 20 1 - 136.12783 350.00000 696.86218 135.42247 110 20 1 - 136.88322 352.00000 702.66099 136.54937 110 19 1 - 137.63974 354.00000 708.45705 137.67573 110 0 1 - 110.70051 354.00000 1101.05282 110.86043 110 0 1 - 110.25980 356.00000 1112.94887 112.05819 110 0 1 - 109.82220 358.00000 1124.84075 113.25554 110 0 1 - 109.38662 360.00000 1136.72855 114.45247 110 0 1 - 108.95195 362.00000 1148.61232 115.64900 110 0 1 - 108.51710 364.00000 1160.49212 116.84513 110 0 1 + 0.00000 100.50000 0.00000 0.00000 -1 0 - + 0.00000 102.00000 0.00000 0.00000 -1 0 - + 0.00000 103.50000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.15000 0.00000 0.00000 -1 0 - + 0.00000 105.30000 0.00000 0.00000 -1 0 - + 0.00000 105.45000 0.00000 0.00000 -1 0 - + 0.00000 105.60000 0.00000 0.00000 -1 0 - + 0.00000 105.75000 0.00000 0.00000 -1 0 - + 0.00000 105.75000 0.00001 0.00000 1 0 A + 5.29847 107.10000 6.53803 0.95371 330 81 3 + 11.84631 108.45000 13.07961 1.90793 330 91 3 + 18.40137 109.80000 19.62824 2.86318 330 94 3 + 24.96706 111.15000 26.18734 3.81996 330 95 3 + 30.01161 112.50000 32.76019 4.77874 330 92 3 + 14.41124 112.50000 15.62475 4.72846 330 92 3 + 16.74362 113.50000 17.95199 5.43274 330 93 3 + 19.08109 114.50000 20.28423 6.13854 330 94 3 + 21.42419 115.50000 22.62200 6.84601 330 95 3 + 23.77343 116.50000 24.96582 7.55532 330 95 3 + 26.12930 117.50000 27.31617 8.26659 330 96 3 + 9.26473 117.50000 18.60693 6.27753 110 50 1 + 21.90125 120.10000 26.88277 9.06961 330 81 3 + 30.27854 122.70000 35.19498 11.87395 330 86 3 + 38.69766 125.30000 43.54678 14.69164 330 89 3 + 47.16047 127.90000 51.94019 17.52338 330 91 3 + 55.66781 130.50000 60.37619 20.36949 330 92 3 + 78.19909 130.50000 82.90747 17.58733 330 94 3 + 89.91494 133.10000 94.55017 20.05711 330 95 3 + 101.69004 135.70000 106.25037 22.53910 330 96 3 + 113.52243 138.30000 118.00616 25.03288 330 96 3 + 123.80390 140.90000 129.81494 27.53790 330 95 3 + 125.71176 143.50000 141.67361 30.05350 330 89 3 + 109.10753 143.50000 183.43596 27.44431 220 59 2 + 111.05389 146.10000 198.85044 29.75051 220 56 2 + 112.99826 148.70000 214.32029 32.06499 220 53 2 + 114.93953 151.30000 229.84061 34.38703 220 50 2 + 111.69732 153.90000 245.40647 36.71587 110 46 1 + 108.40988 156.50000 261.01298 39.05080 110 42 1 + 101.33210 156.50000 328.82248 36.28859 110 31 1 + 103.41511 159.10000 348.52869 38.46336 110 30 1 + 105.49041 161.70000 368.27436 40.64247 110 29 1 + 107.55545 164.30000 388.05399 42.82534 110 28 1 + 109.60766 166.90000 407.86237 45.01137 110 27 1 + 111.64453 169.50000 427.69460 47.20004 110 26 1 + 109.89208 169.50000 270.79757 44.36640 110 41 1 + 110.69847 172.10000 283.36669 46.42567 110 39 1 + 112.56518 174.70000 295.94534 48.48651 110 38 1 + 114.40771 177.30000 308.53104 50.54850 110 37 1 + 116.22280 179.90000 321.12150 52.61127 110 36 1 + 118.00723 182.50000 333.71464 54.67448 110 35 1 + 92.82787 182.50000 308.24459 57.20320 110 30 1 + 91.29516 187.30000 300.70593 55.80420 110 30 1 + 89.75010 192.10000 293.16695 54.40513 110 31 1 + 40.19382 196.90000 285.62696 53.00588 110 0 1 + 39.08541 201.70000 278.08535 51.60633 110 0 1 + 37.97557 206.50000 270.54153 50.20637 110 0 1 + 28.97654 206.50000 291.27234 47.51247 1 0 A + 29.93411 208.50000 300.89775 49.08257 1 0 A + 30.89132 210.50000 310.51968 50.65211 1 0 A + 32.01507 212.50000 320.13764 52.22099 110 0 1 + 34.09297 214.50000 329.75119 53.78916 110 0 1 + 36.16886 216.50000 339.35992 55.35654 110 0 1 + 33.68233 216.50000 315.16699 52.87001 110 0 1 + 35.68595 218.50000 324.08591 54.36618 110 0 1 + 37.68776 220.50000 332.99972 55.86149 110 0 1 + 39.68778 222.50000 341.90814 57.35590 110 0 1 + 41.68601 224.50000 350.81094 58.84936 110 0 1 + 43.68246 226.50000 359.70787 60.34185 110 0 1 + 52.18858 226.50000 308.29721 61.55948 110 0 1 + 53.64059 228.50000 314.15129 62.72839 110 0 1 + 55.09095 230.50000 320.00003 63.89625 110 0 1 + 56.53927 232.50000 325.84332 65.06301 110 0 1 + 57.98515 234.50000 331.68104 66.22866 110 0 1 + 59.42823 236.50000 337.51309 67.39318 110 0 1 + 31.40249 236.50000 518.49407 55.78942 1 0 A + 31.75741 237.40000 524.35424 56.41997 1 0 A + 32.11222 238.30000 530.21261 57.05032 1 0 A + 32.46692 239.20000 536.06917 57.68048 1 0 A + 32.82152 240.10000 541.92392 58.31045 1 0 A + 33.17600 241.00000 547.77685 58.94022 1 0 A + 32.26389 241.00000 514.03604 56.86094 1 0 A + 33.41223 244.00000 532.33165 58.88474 1 0 A + 34.55936 247.00000 550.60801 60.90641 1 0 A + 35.70528 250.00000 568.86503 62.92594 1 0 A + 39.12100 253.00000 587.10265 64.94333 110 0 1 + 42.69525 256.00000 605.32091 66.95857 110 0 1 + 40.82642 256.00000 585.80700 65.08974 110 0 1 + 41.52118 256.60000 589.33094 65.48129 110 0 1 + 42.21287 257.20000 592.85414 65.87276 110 0 1 + 42.90144 257.80000 596.37659 66.26414 110 0 1 + 43.58683 258.40000 599.89830 66.65545 110 0 1 + 44.26899 259.00000 603.41926 67.04666 110 0 1 + 42.85355 259.00000 604.74101 65.63119 110 0 1 + 62.35364 261.50000 619.43582 67.22599 110 0 1 + 99.64140 264.00000 634.11778 68.81939 110 16 1 + 115.44033 266.50000 648.78699 70.41141 110 18 1 + 131.15593 269.00000 663.44357 72.00205 110 20 1 + 146.78891 271.50000 678.08763 73.59134 110 22 1 + 107.82714 271.50000 688.05229 71.24759 110 16 1 + 116.46784 274.30000 706.43368 73.15098 110 16 1 + 125.03116 277.10000 724.79952 75.05275 110 17 1 + 133.52249 279.90000 743.15003 76.95294 110 18 1 + 141.94721 282.70000 761.48543 78.85157 110 19 1 + 150.31072 285.50000 779.80597 80.74865 110 19 1 + 148.51041 285.50000 785.03733 78.45683 110 19 1 + 146.54132 288.30000 803.46606 80.29861 110 18 1 + 144.63918 291.10000 821.88031 82.13893 110 18 1 + 142.81094 293.90000 840.28035 83.97784 110 17 1 + 141.06352 296.70000 858.66644 85.81535 110 16 1 + 139.40386 299.50000 877.03883 87.65149 110 16 1 + 137.36559 299.50000 853.34802 85.61321 110 16 1 + 135.75643 302.30000 871.21106 87.40534 110 16 1 + 134.24101 305.10000 889.06128 89.19619 110 15 1 + 132.81892 307.90000 906.89894 90.98577 110 15 1 + 131.48978 310.70000 924.72429 92.77412 110 14 1 + 130.25319 313.50000 942.53757 94.56126 110 14 1 + 128.42784 313.50000 921.91081 92.73592 110 14 1 + 127.24767 316.30000 939.32271 94.48740 110 14 1 + 126.15331 319.10000 956.72330 96.23775 110 13 1 + 125.13926 321.90000 974.11282 97.98697 110 13 1 + 124.19999 324.70000 991.49149 99.73511 110 13 1 + 123.32999 327.50000 1008.85956 101.48218 110 12 1 + 121.68567 327.50000 991.41492 99.83786 110 12 1 + 120.85022 330.30000 1008.47247 101.55560 110 12 1 + 120.07043 333.10000 1025.52003 103.27233 110 12 1 + 119.33962 335.90000 1042.55783 104.98808 110 11 1 + 118.65110 338.70000 1059.58608 106.70286 110 11 1 + 117.99820 341.50000 1076.60499 108.41671 110 11 1 + 134.19432 341.50000 679.44872 132.03849 110 20 1 + 134.94676 343.50000 685.25609 133.16704 110 20 1 + 135.70166 345.50000 691.06056 134.29504 110 20 1 + 136.45858 347.50000 696.86218 135.42247 110 20 1 + 137.21707 349.50000 702.66099 136.54937 110 20 1 + 137.97667 351.50000 708.45705 137.67573 110 19 1 + 112.19794 351.50000 1101.05282 110.86043 110 10 1 + 111.77071 353.50000 1112.94887 112.05819 110 0 1 + 111.34650 355.50000 1124.84075 113.25554 110 0 1 + 110.92426 357.50000 1136.72855 114.45247 110 0 1 + 110.50289 359.50000 1148.61232 115.64900 110 0 1 + 110.08134 361.50000 1160.49212 116.84513 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -35703,15 +35959,15 @@ Layer name [END OF COLUMN INDICATION] [DATA] 5.50 0.000 '99_Aanvulzand' - -9.00 20.248 '5_Klei_siltig' - -11.00 607.057 '6_Siltig_zand' - -17.50 64.363 '7_Klei_met_zandlagen' - -18.50 69.018 '6_Siltig_zand' - -20.50 55.225 '7_Klei_met_zandlagen' - -21.50 203.694 '9A_Zand_Pleistoceen' - -25.00 903.530 '9B_Zand_Pleistoceen' - -32.00 135.753 '17_Klei_zandlagen' - -33.00 109.606 '9B_Zand_Pleistoceen' + -9.00 20.324 '5_Klei_siltig' + -11.00 613.922 '6_Siltig_zand' + -17.50 65.145 '7_Klei_met_zandlagen' + -18.50 70.587 '6_Siltig_zand' + -20.50 55.813 '7_Klei_met_zandlagen' + -21.50 207.233 '9A_Zand_Pleistoceen' + -25.00 912.951 '9B_Zand_Pleistoceen' + -32.00 136.082 '17_Klei_zandlagen' + -33.00 111.137 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -35727,15 +35983,15 @@ Layer name [END OF COLUMN INDICATION] [DATA] 5.50 0.00 '99_Aanvulzand' - -9.00 3.68 '5_Klei_siltig' - -11.00 162.95 '6_Siltig_zand' - -17.50 14.80 '7_Klei_met_zandlagen' - -18.50 18.53 '6_Siltig_zand' - -20.50 12.69 '7_Klei_met_zandlagen' - -21.50 70.06 '9A_Zand_Pleistoceen' - -25.00 310.76 '9B_Zand_Pleistoceen' - -32.00 31.21 '17_Klei_zandlagen' - -33.00 37.70 '9B_Zand_Pleistoceen' + -9.00 3.70 '5_Klei_siltig' + -11.00 164.80 '6_Siltig_zand' + -17.50 14.98 '7_Klei_met_zandlagen' + -18.50 18.95 '6_Siltig_zand' + -20.50 12.83 '7_Klei_met_zandlagen' + -21.50 71.28 '9A_Zand_Pleistoceen' + -25.00 314.00 '9B_Zand_Pleistoceen' + -32.00 31.28 '17_Klei_zandlagen' + -33.00 38.22 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -35974,7 +36230,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -35986,22 +36242,28 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - + 0.00000 0.50000 0.00000 0.00000 -1 0 - + 0.00000 1.00000 0.00000 0.00000 -1 0 - + 0.00000 1.50000 0.00000 0.00000 -1 0 - + 0.00000 2.00000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - + 0.00000 6.83333 0.00000 0.00000 -1 0 - + 0.00000 9.00000 0.00000 0.00000 -1 0 - + 0.00000 11.16667 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 15.50000 0.00000 0.00000 -1 0 - + 0.00000 17.66667 0.00000 0.00000 -1 0 - + 0.00000 19.83333 0.00000 0.00000 -1 0 - + 0.00000 22.00000 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 26.33333 0.00000 0.00000 -1 0 - + 0.00000 28.50000 0.00000 0.00000 -1 0 - + 0.00000 30.66667 0.00000 0.00000 -1 0 - + 0.00000 32.83333 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 36.00000 0.00000 0.00000 -1 0 - @@ -36022,185 +36284,185 @@ Status character 0.00000 62.50000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 1 0 A - 2.31118 66.00000 4.24974 1.40724 220 54 2 - 3.11057 67.00000 8.50050 2.81482 110 37 1 - 4.42977 68.00000 12.75330 4.22307 110 35 1 - 5.74052 69.00000 17.00914 5.63233 110 34 1 + 2.32010 66.00000 4.24974 1.40724 220 55 2 + 3.13674 67.00000 8.50050 2.81482 110 37 1 + 4.44837 68.00000 12.75330 4.22307 110 35 1 + 5.75042 69.00000 17.00914 5.63233 110 34 1 7.04293 70.00000 21.26903 7.04293 110 33 1 6.99530 70.00000 21.22709 6.99530 110 33 1 - 8.28003 71.00000 25.48357 8.39800 110 0 1 - 9.55709 72.00000 29.74601 9.80267 110 0 1 - 10.82703 73.00000 34.01531 11.20960 110 0 1 - 12.09039 74.00000 38.29236 12.61909 110 0 1 - 13.34770 75.00000 42.57802 14.03141 110 0 1 - 13.06736 75.00000 42.33319 13.75107 110 0 1 - 15.26591 76.80000 50.02711 16.25029 110 0 1 - 17.44955 78.60000 57.75567 18.76075 110 0 1 - 19.62169 80.40000 65.52272 21.28372 110 0 1 - 21.78554 82.20000 73.33157 23.82027 110 0 1 - 23.94412 84.00000 81.18498 26.37129 110 0 1 - 22.87748 84.00000 80.52920 25.30465 110 0 1 - 24.93001 85.80000 88.36554 27.76706 110 0 1 - 26.98308 87.60000 96.24987 30.24455 110 0 1 - 29.04007 89.40000 104.18324 32.73744 110 0 1 - 31.10420 91.20000 112.16618 35.24592 110 0 1 - 33.17854 93.00000 120.19873 37.76998 110 0 1 - 32.00529 93.00000 126.02812 36.59673 110 0 1 - 29.96952 93.40000 127.90672 37.14225 110 0 1 - 56.84716 93.80000 129.78787 37.68851 110 44 1 - 72.10309 94.20000 131.67154 38.23550 220 55 2 - 80.08278 94.60000 133.55774 38.78322 220 60 2 - 83.82498 95.00000 135.44645 39.33168 220 62 2 - 88.86537 95.00000 149.34777 38.48288 220 60 2 - 90.75850 96.00000 154.56616 39.82751 220 59 2 - 92.65787 97.00000 159.80151 41.17652 220 58 2 - 94.56324 98.00000 165.05356 42.52983 220 57 2 - 96.47437 99.00000 170.32198 43.88736 220 57 2 - 98.39097 100.00000 175.60645 45.24902 220 56 2 - 55.19219 100.00000 134.41913 50.84292 110 41 1 - 55.74155 101.50000 137.17769 51.88633 110 41 1 - 56.29544 103.00000 139.96218 52.93954 110 40 1 - 56.85323 104.50000 142.77145 54.00212 110 40 1 - 57.41430 106.00000 145.60431 55.07363 110 39 1 - 57.97800 107.50000 148.45950 56.15358 110 39 1 - 69.24392 107.50000 166.90149 56.09848 110 41 1 - 69.32217 107.65000 167.22380 56.20682 110 41 1 - 69.40045 107.80000 167.54634 56.31523 110 41 1 - 69.47876 107.95000 167.86912 56.42372 110 41 1 - 69.55712 108.10000 168.19213 56.53229 110 41 1 - 69.63550 108.25000 168.51538 56.64094 110 41 1 - 67.41389 108.25000 194.86133 56.36044 110 35 1 - 68.06568 109.60000 198.23702 57.33681 110 34 1 - 68.71886 110.95000 201.63288 58.31901 110 34 1 - 69.37306 112.30000 205.04762 59.30666 110 34 1 - 70.02791 113.65000 208.47996 60.29941 110 34 1 - 70.68303 115.00000 211.92862 61.29688 110 33 1 - 56.31493 115.00000 281.34409 60.46571 110 0 1 - 56.63145 116.00000 284.74835 61.19734 110 0 1 - 56.95520 117.00000 288.16290 61.93119 110 0 1 - 57.27847 118.00000 291.58706 62.66710 110 0 1 - 57.60118 119.00000 295.02018 63.40493 110 0 1 - 57.92329 120.00000 298.46161 64.14456 110 0 1 - 71.75766 120.00000 1301.56611 55.88747 110 6 1 - 72.74869 122.60000 1369.70818 58.81340 110 5 1 - 73.72421 125.20000 1438.02991 61.74704 110 5 1 - 74.68454 127.80000 1506.48749 64.68652 110 5 1 - 75.63007 130.40000 1575.04035 67.63009 110 5 1 - 76.56125 133.00000 1643.65132 70.57615 110 5 1 - 74.20960 133.00000 311.81167 64.61557 110 24 1 - 75.02846 135.60000 324.83224 67.31377 110 23 1 - 75.83304 138.20000 337.85165 70.01174 110 22 1 - 76.62342 140.80000 350.86473 72.70839 110 22 1 - 77.39972 143.40000 363.86693 75.40279 110 21 1 - 78.16214 146.00000 376.85421 78.09409 110 21 1 - 76.06665 146.00000 379.52282 72.33680 110 20 1 - 76.74354 148.60000 392.58353 74.82616 110 20 1 - 77.40822 151.20000 405.62267 77.31141 110 19 1 - 78.06182 153.80000 418.63763 79.79206 110 0 1 - 78.70555 156.40000 431.62621 82.26767 110 0 1 - 79.34065 159.00000 444.58660 84.73791 110 0 1 - 85.12632 159.00000 450.15834 79.37775 110 19 1 - 85.92251 161.60000 463.25107 81.68643 110 19 1 - 86.71224 164.20000 476.31249 83.98959 110 18 1 - 87.49638 166.80000 489.34166 86.28706 110 18 1 - 88.27577 169.40000 502.33784 88.57871 110 0 1 - 89.05132 172.00000 515.30052 90.86446 110 0 1 - 88.95980 172.00000 486.40297 85.97140 110 18 1 - 89.72977 174.60000 498.60678 88.12841 110 18 1 - 90.49698 177.20000 510.77849 90.27976 110 18 1 - 91.26226 179.80000 522.91807 92.42542 110 0 1 - 92.02645 182.40000 535.02560 94.56542 110 0 1 - 92.79041 185.00000 547.10126 96.69978 110 0 1 - 74.31947 185.00000 494.31073 99.55685 110 0 1 - 73.24555 189.80000 487.97713 98.28123 110 0 1 - 72.17118 194.60000 481.62677 97.00223 110 0 1 - 71.09616 199.40000 475.25980 95.71989 110 0 1 - 73.20168 204.20000 468.87638 94.43424 110 0 1 - 75.79521 209.00000 462.47671 93.14531 110 0 1 - 77.37019 209.00000 498.18537 87.41240 110 0 1 - 77.80706 211.00000 507.11661 88.97949 110 0 1 - 78.24345 213.00000 516.03079 90.54358 110 0 1 - 78.67928 215.00000 524.92813 92.10472 110 0 1 - 79.11443 217.00000 533.80887 93.66295 110 0 1 - 79.54882 219.00000 542.67328 95.21832 110 0 1 - 78.04942 219.00000 525.39916 92.05604 110 0 1 - 78.45846 221.00000 533.96583 93.55702 110 0 1 - 78.86658 223.00000 542.51717 95.05531 110 0 1 - 79.27377 225.00000 551.05345 96.55097 110 0 1 - 79.68001 227.00000 559.57492 98.04403 110 0 1 - 80.08529 229.00000 568.08184 99.53454 110 0 1 - 72.95100 229.00000 473.24590 102.08389 110 0 1 - 73.38305 231.00000 478.72357 103.26548 110 0 1 - 73.81407 233.00000 484.18956 104.44454 110 0 1 - 75.28759 235.00000 489.64407 105.62114 110 0 1 - 76.86699 237.00000 495.08732 106.79530 110 0 1 - 78.46067 239.00000 500.51952 107.96708 110 0 1 - 92.37022 239.00000 778.56963 90.43277 110 12 1 - 92.07206 239.90000 784.04359 91.06858 110 12 1 - 91.77624 240.80000 789.51417 91.70400 110 12 1 - 91.48303 241.70000 794.98139 92.33903 110 0 1 - 91.19270 242.60000 800.44528 92.97368 110 0 1 - 90.90552 243.50000 805.90589 93.60794 110 0 1 - 90.84460 243.50000 801.20158 91.00121 110 0 1 - 89.93391 246.50000 819.27405 93.05389 110 0 1 - 89.06983 249.50000 837.31150 95.10260 110 0 1 - 88.25992 252.50000 855.31497 97.14745 110 0 1 - 87.51174 255.50000 873.28547 99.18856 110 0 1 - 86.83285 258.50000 891.22399 101.22603 110 0 1 - 86.77187 258.50000 842.43540 98.91991 110 0 1 - 86.64770 259.10000 845.82315 99.31770 110 0 1 - 86.52665 259.70000 849.20974 99.71536 110 0 1 - 86.40876 260.30000 852.59517 100.11288 110 0 1 - 86.29411 260.90000 855.97945 100.51027 110 0 1 - 86.18275 261.50000 859.36259 100.90752 110 0 1 - 86.09467 261.50000 909.02927 99.12270 110 0 1 - 85.67519 264.00000 923.92751 100.74724 110 0 1 - 85.31892 266.50000 938.80539 102.36956 110 0 1 - 85.02955 269.00000 953.66343 103.98971 110 0 1 - 84.81075 271.50000 968.50214 105.60776 110 0 1 - 84.66620 274.00000 983.32200 107.22375 110 0 1 - 87.97314 274.00000 1056.14358 104.29240 110 0 1 - 88.09250 276.80000 1075.80444 106.23388 110 0 1 - 88.30493 279.60000 1095.44125 108.17298 110 0 1 - 88.60861 282.40000 1115.05470 110.10977 110 0 1 - 89.00169 285.20000 1134.64543 112.04432 110 0 1 - 89.48236 288.00000 1154.21410 113.97670 110 0 1 - 85.41074 288.00000 1120.89988 111.10728 110 0 1 - 85.90242 290.80000 1139.88290 112.98894 110 0 1 - 86.47511 293.60000 1158.84566 114.86859 110 0 1 - 87.12509 296.40000 1177.78873 116.74629 110 0 1 - 87.84863 299.20000 1196.71267 118.62209 110 0 1 - 88.64203 302.00000 1215.61798 120.49605 110 0 1 - 89.88989 302.00000 1188.08184 117.92124 110 0 1 - 90.78133 304.80000 1206.54123 119.75340 110 0 1 - 91.73438 307.60000 1224.98340 121.58385 110 0 1 - 92.74501 310.40000 1243.40883 123.41264 110 0 1 - 93.80921 313.20000 1261.81798 125.23981 110 0 1 - 94.92298 316.00000 1280.21128 127.06541 110 0 1 - 91.55834 316.00000 1256.58097 124.74093 110 0 1 - 95.05689 318.80000 1274.61962 126.53163 110 0 1 - 99.70052 321.60000 1292.64354 128.32087 110 0 1 - 104.26335 324.40000 1310.65311 130.10868 110 0 1 - 108.75076 327.20000 1328.64872 131.89511 110 0 1 - 113.16811 330.00000 1346.63072 133.68018 110 0 1 - 111.05821 330.00000 1325.86270 131.57029 110 0 1 - 115.38363 332.80000 1343.55434 133.32589 110 0 1 - 119.65229 335.60000 1361.23327 135.08024 110 0 1 - 123.87068 338.40000 1378.89982 136.83336 110 0 1 - 128.04524 341.20000 1396.55430 138.58528 110 0 1 - 132.18244 344.00000 1414.19702 140.33603 110 0 1 - 167.29953 344.00000 923.70105 169.13409 110 0 1 - 168.82140 346.00000 929.94108 170.27666 110 0 1 - 170.33954 348.00000 936.17736 171.41856 110 0 1 - 171.85441 350.00000 942.40995 172.55977 110 0 1 - 173.36648 352.00000 948.63892 173.70033 110 0 1 - 174.87622 354.00000 954.86434 174.84023 110 18 1 - 142.39622 354.00000 1436.99771 142.23631 110 10 1 - 145.25742 356.00000 1449.35077 143.45903 110 10 1 - 148.11458 358.00000 1461.69866 144.68125 110 10 1 - 150.96881 360.00000 1474.04149 145.90296 110 10 1 - 153.82122 362.00000 1486.37932 147.12418 110 10 1 - 156.67293 364.00000 1498.71226 148.34491 110 10 1 + 8.26886 71.00000 25.48357 8.39800 110 0 1 + 9.53355 72.00000 29.74601 9.80267 110 0 1 + 10.79000 73.00000 34.01531 11.20960 110 0 1 + 12.03882 74.00000 38.29236 12.61909 110 0 1 + 13.28061 75.00000 42.57802 14.03141 110 0 1 + 13.00028 75.00000 42.33319 13.75107 110 0 1 + 15.16873 76.80000 50.02711 16.25029 110 0 1 + 17.31981 78.60000 57.75567 18.76075 110 0 1 + 19.45727 80.40000 65.52272 21.28372 110 0 1 + 21.58465 82.20000 73.33157 23.82027 110 0 1 + 23.70536 84.00000 81.18498 26.37129 110 0 1 + 22.63872 84.00000 80.52920 25.30465 110 0 1 + 24.65227 85.80000 88.36554 27.76706 110 0 1 + 26.66550 87.60000 96.24987 30.24455 110 0 1 + 28.68200 89.40000 104.18324 32.73744 110 0 1 + 30.70519 91.20000 112.16618 35.24592 110 0 1 + 32.73837 93.00000 120.19873 37.76998 110 0 1 + 31.56511 93.00000 126.02812 36.59673 110 0 1 + 28.90442 93.40000 127.90672 37.14225 110 0 1 + 54.30576 93.80000 129.78787 37.68851 110 42 1 + 70.93070 94.20000 131.67154 38.23550 220 54 2 + 78.50997 94.60000 133.55774 38.78322 220 59 2 + 82.08616 95.00000 135.44645 39.33168 220 61 2 + 87.12654 95.00000 149.34777 38.48288 220 58 2 + 89.02724 96.00000 154.56616 39.82751 220 58 2 + 90.93418 97.00000 159.80151 41.17652 220 57 2 + 92.84715 98.00000 165.05356 42.52983 220 56 2 + 94.76589 99.00000 170.32198 43.88736 220 56 2 + 96.69014 100.00000 175.60645 45.24902 220 55 2 + 53.94491 100.00000 134.41913 50.84292 110 40 1 + 54.50273 101.50000 137.17769 51.88633 110 40 1 + 55.06514 103.00000 139.96218 52.93954 110 39 1 + 55.63152 104.50000 142.77145 54.00212 110 39 1 + 56.20126 106.00000 145.60431 55.07363 110 39 1 + 56.77372 107.50000 148.45950 56.15358 110 38 1 + 68.03964 107.50000 166.90149 56.09848 110 41 1 + 68.11877 107.65000 167.22380 56.20682 110 41 1 + 68.19794 107.80000 167.54634 56.31523 110 41 1 + 68.27714 107.95000 167.86912 56.42372 110 41 1 + 68.35637 108.10000 168.19213 56.53229 110 41 1 + 68.43564 108.25000 168.51538 56.64094 110 41 1 + 66.21404 108.25000 194.86133 56.36044 110 34 1 + 66.87383 109.60000 198.23702 57.33681 110 34 1 + 67.53510 110.95000 201.63288 58.31901 110 33 1 + 68.19747 112.30000 205.04762 59.30666 110 33 1 + 68.86057 113.65000 208.47996 60.29941 110 33 1 + 69.52402 115.00000 211.92862 61.29688 110 33 1 + 55.15592 115.00000 281.34409 60.46571 110 0 1 + 55.47866 116.00000 284.74835 61.19734 110 0 1 + 55.80868 117.00000 288.16290 61.93119 110 0 1 + 56.13825 118.00000 291.58706 62.66710 110 0 1 + 56.46730 119.00000 295.02018 63.40493 110 0 1 + 56.79579 120.00000 298.46161 64.14456 110 0 1 + 69.50266 120.00000 1301.56611 55.88747 110 5 1 + 70.52718 122.60000 1369.70818 58.81340 110 5 1 + 71.53659 125.20000 1438.02991 61.74704 110 5 1 + 72.53114 127.80000 1506.48749 64.68652 110 5 1 + 73.51117 130.40000 1575.04035 67.63009 110 5 1 + 74.47706 133.00000 1643.65132 70.57615 110 5 1 + 72.12541 133.00000 311.81167 64.61557 110 23 1 + 72.97911 135.60000 324.83224 67.31377 110 22 1 + 73.81862 138.20000 337.85165 70.01174 110 22 1 + 74.64391 140.80000 350.86473 72.70839 110 21 1 + 75.45504 143.40000 363.86693 75.40279 110 21 1 + 76.25212 146.00000 376.85421 78.09409 110 0 1 + 74.15662 146.00000 379.52282 72.33680 110 20 1 + 74.86791 148.60000 392.58353 74.82616 110 19 1 + 75.56661 151.20000 405.62267 77.31141 110 0 1 + 76.25382 153.80000 418.63763 79.79206 110 0 1 + 76.93067 156.40000 431.62621 82.26767 110 0 1 + 77.59832 159.00000 444.58660 84.73791 110 0 1 + 83.38399 159.00000 450.15834 79.37775 110 19 1 + 84.21211 161.60000 463.25107 81.68643 110 18 1 + 85.03317 164.20000 476.31249 83.98959 110 18 1 + 85.84805 166.80000 489.34166 86.28706 110 0 1 + 86.65763 169.40000 502.33784 88.57871 110 0 1 + 87.46282 172.00000 515.30052 90.86446 110 0 1 + 87.37131 172.00000 486.40297 85.97140 110 18 1 + 88.17043 174.60000 498.60678 88.12841 110 18 1 + 88.96640 177.20000 510.77849 90.27976 110 0 1 + 89.76012 179.80000 522.91807 92.42542 110 0 1 + 90.55255 182.40000 535.02560 94.56542 110 0 1 + 91.34463 185.00000 547.10126 96.69978 110 0 1 + 73.50622 185.00000 494.31073 99.55685 110 0 1 + 72.44447 189.80000 487.97713 98.28123 110 0 1 + 71.38229 194.60000 481.62677 97.00223 110 0 1 + 70.31952 199.40000 475.25980 95.71989 110 0 1 + 72.43735 204.20000 468.87638 94.43424 110 0 1 + 75.04329 209.00000 462.47671 93.14531 110 0 1 + 76.03345 209.00000 498.18537 87.41240 110 0 1 + 76.49259 211.00000 507.11661 88.97949 110 0 1 + 76.95146 213.00000 516.03079 90.54358 110 0 1 + 77.40997 215.00000 524.92813 92.10472 110 0 1 + 77.86801 217.00000 533.80887 93.66295 110 0 1 + 78.32550 219.00000 542.67328 95.21832 110 0 1 + 76.82610 219.00000 525.39916 92.05604 110 0 1 + 77.25845 221.00000 533.96583 93.55702 110 0 1 + 77.69007 223.00000 542.51717 95.05531 110 0 1 + 78.12092 225.00000 551.05345 96.55097 110 0 1 + 78.55100 227.00000 559.57492 98.04403 110 0 1 + 78.98027 229.00000 568.08184 99.53454 110 0 1 + 72.32943 229.00000 473.24590 102.08389 110 0 1 + 72.77505 231.00000 478.72357 103.26548 110 0 1 + 73.21972 233.00000 484.18956 104.44454 110 0 1 + 74.70693 235.00000 489.64407 105.62114 110 0 1 + 76.30005 237.00000 495.08732 106.79530 110 0 1 + 77.90745 239.00000 500.51952 107.96708 110 0 1 + 89.91148 239.00000 778.56963 90.43277 110 0 1 + 89.64074 239.90000 784.04359 91.06858 110 0 1 + 89.37229 240.80000 789.51417 91.70400 110 0 1 + 89.10638 241.70000 794.98139 92.33903 110 0 1 + 88.84329 242.60000 800.44528 92.97368 110 0 1 + 88.58327 243.50000 805.90589 93.60794 110 0 1 + 88.52235 243.50000 801.20158 91.00121 110 0 1 + 87.70137 246.50000 819.27405 93.05389 110 0 1 + 86.92531 249.50000 837.31150 95.10260 110 0 1 + 86.20112 252.50000 855.31497 97.14745 110 0 1 + 85.53577 255.50000 873.28547 99.18856 110 0 1 + 84.93621 258.50000 891.22399 101.22603 110 0 1 + 84.87523 258.50000 842.43540 98.91991 110 0 1 + 84.76646 259.10000 845.82315 99.31770 110 0 1 + 84.66064 259.70000 849.20974 99.71536 110 0 1 + 84.55781 260.30000 852.59517 100.11288 110 0 1 + 84.45805 260.90000 855.97945 100.51027 110 0 1 + 84.36140 261.50000 859.36259 100.90752 110 0 1 + 84.27332 261.50000 909.02927 99.12270 110 0 1 + 83.91317 264.00000 923.92751 100.74724 110 0 1 + 83.61295 266.50000 938.80539 102.36956 110 0 1 + 83.37626 269.00000 953.66343 103.98971 110 0 1 + 83.20667 271.50000 968.50214 105.60776 110 0 1 + 83.10778 274.00000 983.32200 107.22375 110 0 1 + 86.41472 274.00000 1056.14358 104.29240 110 0 1 + 86.58091 276.80000 1075.80444 106.23388 110 0 1 + 86.83569 279.60000 1095.44125 108.17298 110 0 1 + 87.17730 282.40000 1115.05470 110.10977 110 0 1 + 87.60397 285.20000 1134.64543 112.04432 110 0 1 + 88.11395 288.00000 1154.21410 113.97670 110 0 1 + 84.04232 288.00000 1120.89988 111.10728 110 0 1 + 84.55914 290.80000 1139.88290 112.98894 110 0 1 + 85.15295 293.60000 1158.84566 114.86859 110 0 1 + 85.82019 296.40000 1177.78873 116.74629 110 0 1 + 86.55730 299.20000 1196.71267 118.62209 110 0 1 + 87.36072 302.00000 1215.61798 120.49605 110 0 1 + 88.60858 302.00000 1188.08184 117.92124 110 0 1 + 89.50668 304.80000 1206.54123 119.75340 110 0 1 + 90.46318 307.60000 1224.98340 121.58385 110 0 1 + 91.47428 310.40000 1243.40883 123.41264 110 0 1 + 92.53612 313.20000 1261.81798 125.23981 110 0 1 + 93.64490 316.00000 1280.21128 127.06541 110 0 1 + 90.28026 316.00000 1256.58097 124.74093 110 0 1 + 93.77137 318.80000 1274.61962 126.53163 110 0 1 + 98.40531 321.60000 1292.64354 128.32087 110 0 1 + 102.95640 324.40000 1310.65311 130.10868 110 0 1 + 107.43023 327.20000 1328.64872 131.89511 110 0 1 + 111.83238 330.00000 1346.63072 133.68018 110 0 1 + 109.72248 330.00000 1325.86270 131.57029 110 0 1 + 114.03127 332.80000 1343.55434 133.32589 110 0 1 + 118.28214 335.60000 1361.23327 135.08024 110 0 1 + 122.48182 338.40000 1378.89982 136.83336 110 0 1 + 126.63704 341.20000 1396.55430 138.58528 110 0 1 + 130.75454 344.00000 1414.19702 140.33603 110 0 1 + 166.97825 344.00000 923.70105 169.13409 110 0 1 + 168.49695 346.00000 929.94108 170.27666 110 0 1 + 170.01193 348.00000 936.17736 171.41856 110 0 1 + 171.52366 350.00000 942.40995 172.55977 110 0 1 + 173.03263 352.00000 948.63892 173.70033 110 0 1 + 174.53929 354.00000 954.86434 174.84023 110 0 1 + 140.89880 354.00000 1436.99771 142.23631 110 0 1 + 143.74652 356.00000 1449.35077 143.45903 110 10 1 + 146.59028 358.00000 1461.69866 144.68125 110 10 1 + 149.43117 360.00000 1474.04149 145.90296 110 10 1 + 152.27028 362.00000 1486.37932 147.12418 110 10 1 + 155.10869 364.00000 1498.71226 148.34491 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -36213,16 +36475,16 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 107.577 '99_Aanvulzand' - -9.00 122.807 '5_Klei_siltig' - -11.00 527.937 '6_Siltig_zand' - -17.50 72.954 '7_Klei_met_zandlagen' - -18.50 157.530 '6_Siltig_zand' - -20.50 75.012 '7_Klei_met_zandlagen' - -21.50 306.814 '9A_Zand_Pleistoceen' - -25.00 688.043 '9B_Zand_Pleistoceen' - -32.00 171.094 '17_Klei_zandlagen' - -33.00 149.539 '9B_Zand_Pleistoceen' + 5.50 105.972 '99_Aanvulzand' + -9.00 120.429 '5_Klei_siltig' + -11.00 516.012 '6_Siltig_zand' + -17.50 72.172 '7_Klei_met_zandlagen' + -18.50 155.085 '6_Siltig_zand' + -20.50 74.424 '7_Klei_met_zandlagen' + -21.50 299.920 '9A_Zand_Pleistoceen' + -25.00 678.622 '9B_Zand_Pleistoceen' + -32.00 170.765 '17_Klei_zandlagen' + -33.00 148.008 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -36237,16 +36499,16 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -33.81 '99_Aanvulzand' - -9.00 -22.33 '5_Klei_siltig' - -11.00 -141.71 '6_Siltig_zand' - -17.50 -16.77 '7_Klei_met_zandlagen' - -18.50 -42.29 '6_Siltig_zand' - -20.50 -17.24 '7_Klei_met_zandlagen' - -21.50 -105.53 '9A_Zand_Pleistoceen' - -25.00 -236.65 '9B_Zand_Pleistoceen' - -32.00 -39.33 '17_Klei_zandlagen' - -33.00 -51.43 '9B_Zand_Pleistoceen' + 5.50 -33.30 '99_Aanvulzand' + -9.00 -21.90 '5_Klei_siltig' + -11.00 -138.51 '6_Siltig_zand' + -17.50 -16.59 '7_Klei_met_zandlagen' + -18.50 -41.63 '6_Siltig_zand' + -20.50 -17.11 '7_Klei_met_zandlagen' + -21.50 -103.16 '9A_Zand_Pleistoceen' + -25.00 -233.41 '9B_Zand_Pleistoceen' + -32.00 -39.25 '17_Klei_zandlagen' + -33.00 -50.91 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -36256,28 +36518,34 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 1.00000 - 0.76667 + 0.95000 + 0.90000 + 0.85000 + 0.80000 + 0.75000 + 0.75000 0.53333 - 0.30000 - 0.06667 - -0.16667 - -0.16667 - -0.40000 - -0.63333 - -0.86667 - -1.10000 - -1.33333 - -1.33333 - -1.56667 - -1.80000 - -2.03333 - -2.26667 + 0.31667 + 0.10000 + -0.11667 + -0.33333 + -0.33333 + -0.55000 + -0.76667 + -0.98333 + -1.20000 + -1.41667 + -1.41667 + -1.63333 + -1.85000 + -2.06667 + -2.28333 -2.50000 -2.50000 -2.60000 @@ -36497,9 +36765,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 1 1.00000 -25.41798 0.00000 0 'Dummy oplegging 1,0' - 4 -2.50000 152.50723 0.00000 0 'Dummy oplegging -2,5' - 8 -6.00000 -296.06854 0.00000 0 'Dummy oplegging -6,0' + 1 1.00000 -28.88797 0.00000 0 'Dummy oplegging 1,0' + 5 -2.50000 144.53255 0.00000 0 'Dummy oplegging -2,5' + 9 -6.00000 -307.59576 0.00000 0 'Dummy oplegging -6,0' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -36516,7 +36784,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -9.00000 379.56015 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + -9.00000 406.96563 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -36526,267 +36794,273 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 8.38 : Percentage mobilized resistance left - 59.37 : Percentage mobilized resistance right - 1847.55 : Effective left - 1299.22 : Effective right + 8.35 : Percentage mobilized resistance left + 60.75 : Percentage mobilized resistance right + 1840.83 : Effective left + 1329.36 : Effective right 6125.00 : Water pressure left - 6125.00 : Water pressure right + 6037.81 : Water pressure right 22036.78 : Max effective resistance left 2188.30 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 554.56 : Vertical force left - 438.08 : Vertical force right + 552.63 : Vertical force left + 448.10 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -6.00 : Level of single support - 8 : Node of single support + 9 : Node of single support 0 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --554.56 : Active force -438.08 : Passive force --554.56 : Plugged active force -438.08 : Plugged passive force +-552.63 : Active force +448.10 : Passive force +-552.63 : Plugged active force +448.10 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 96.52 : Factor on resistance 1279.98 : Plugged resistance 1.20 : Vertical balance load factor --116.48 : Resulting Vertical Force Unplugged --116.48 : Resulting Vertical Force Plugged +-104.53 : Resulting Vertical Force Unplugged +-104.53 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 25.41798 0.00000 - 5.93086 25.41798 0.00317 - 11.86172 25.41798 0.00626 - 17.79259 25.41798 0.00918 - 23.72345 25.41798 0.01184 - 29.65431 25.41798 0.01416 - 29.65431 25.41798 0.01416 - 35.58517 25.41798 0.01606 - 41.51603 25.41798 0.01745 - 47.44690 25.41798 0.01824 - 53.37776 25.41798 0.01835 - 59.30862 25.41798 0.01770 - 59.30862 25.41798 0.01770 - 65.23948 25.41798 0.01620 - 71.17034 25.41798 0.01377 - 77.10120 25.41798 0.01031 - 83.03207 25.41798 0.00575 - 88.96293 25.41798 0.00000 - 88.96293 -127.08925 0.00000 - 76.25400 -127.08925 -0.00284 - 63.54508 -127.08925 -0.00589 - 50.83615 -127.08925 -0.00910 - 38.12723 -127.08925 -0.01244 - 25.41831 -127.08925 -0.01589 - 25.41831 -127.08925 -0.01589 - -6.35401 -127.08925 -0.02472 - -38.12632 -127.08925 -0.03344 - -69.89863 -127.08925 -0.04154 - -101.67094 -127.08925 -0.04849 - -133.44325 -127.08925 -0.05377 - -133.44325 -127.08925 -0.05377 - -165.21557 -127.08925 -0.05686 - -196.98788 -127.08925 -0.05722 - -228.76019 -127.08925 -0.05435 - -260.53250 -127.08925 -0.04771 - -292.30481 -127.08925 -0.03679 - -292.30461 -127.09107 -0.03679 - -305.01709 -127.19227 -0.03110 - -317.74859 -127.45933 -0.02462 - -330.51321 -127.85398 -0.01729 - -343.32356 -128.37368 -0.00910 - -356.19206 -129.01672 0.00000 - -356.19214 167.05050 0.00000 - -339.52406 166.29106 0.01002 - -322.93790 165.41261 0.02094 - -306.44546 164.41673 0.03270 - -290.05842 163.30485 0.04527 - -273.78831 162.07831 0.05861 - -273.78812 162.07647 0.05861 - -244.82840 159.63896 0.08440 - -216.33923 156.84911 0.11227 - -188.38356 153.71200 0.14199 - -161.02351 150.23162 0.17333 - -134.32060 146.41092 0.20604 - -134.32070 146.40916 0.20604 - -108.31846 142.45140 0.23988 - -83.05731 138.17499 0.27465 - -58.59457 133.58017 0.31013 - -34.98759 128.66640 0.34612 - -12.29389 123.43234 0.38240 - -12.29715 123.60365 0.38240 - -7.37507 122.52450 1.23314 - -2.50009 121.07764 3.26021 - 2.29674 118.55079 5.70016 - 6.96919 114.91585 7.78955 - 11.48184 110.66863 8.76493 - 11.48164 110.57533 8.76493 - 21.99152 99.70390 9.17462 - 31.43873 89.32192 9.58426 - 39.87222 79.42937 9.99381 - 47.34092 70.02628 10.40327 - 53.89875 61.26152 10.81261 - 53.88940 440.60439 10.81261 - 119.61557 435.72795 11.42630 - 184.60281 430.75198 12.03931 - 248.83614 425.67559 12.65126 - 312.30042 420.49789 13.26180 - 374.98040 415.21806 13.87055 - 374.98050 415.21855 13.87055 - 436.80719 409.11783 14.47716 - 497.70998 402.89965 15.08127 - 557.67118 396.56324 15.68254 - 616.67300 390.10788 16.28064 - 674.69756 383.53290 16.87521 - 674.69757 383.53293 16.87521 - 712.87758 380.06017 17.26947 - 750.70821 376.54559 17.66192 - 788.18529 372.98905 18.05246 - 825.30462 369.39044 18.44101 - 862.06198 365.74966 18.82746 - 862.06208 365.74861 18.82746 - 956.15430 357.97151 19.82173 - 1048.17283 349.79710 20.79959 - 1138.01428 341.22448 21.75951 - 1225.57500 332.25297 22.69993 - 1310.75122 322.88213 23.61933 - 1310.75129 322.89666 23.61933 - 1393.52352 313.75043 24.51618 - 1473.86910 304.23010 25.38913 - 1551.69076 294.33578 26.23682 - 1626.89131 284.06772 27.05793 - 1699.37362 273.42629 27.85113 - 1699.37311 273.42279 27.85113 - 1769.11089 262.96266 28.61511 - 1836.08305 252.14895 29.34873 - 1900.19775 240.98227 30.05089 - 1961.36330 229.46330 30.72050 - 2019.48820 217.59279 31.35645 - 2019.48812 217.59193 31.35645 - 2074.28339 203.84451 31.95769 - 2125.45315 189.70345 32.52332 - 2172.89516 175.16971 33.05255 - 2216.50745 160.24427 33.54456 - 2256.18832 144.92814 33.99853 - 2256.18817 144.92858 33.99853 - 2291.83940 129.24685 34.41371 - 2323.36291 113.17706 34.78956 - 2350.65793 96.72022 35.12561 - 2373.62396 79.87735 35.42140 - 2392.16078 62.64948 35.67646 - 2392.16405 62.62857 35.67646 - 2403.50550 50.75995 35.84469 - 2412.45765 38.73565 35.98852 - 2418.98941 26.55608 36.10788 - 2423.06976 14.22163 36.20271 - 2424.66776 1.73268 36.27293 - 2424.66681 1.72074 36.27293 - 2423.81300 -10.29006 36.31851 - 2420.53829 -22.48823 36.33948 - 2414.80524 -34.87341 36.33589 - 2406.57648 -47.44525 36.30782 - 2395.81472 -60.20341 36.25531 - 2395.81213 -60.21708 36.25531 - 2382.50336 -72.90096 36.17844 - 2366.63962 -85.76675 36.07739 - 2348.18456 -98.81413 35.95233 - 2327.10189 -112.04278 35.80345 - 2303.35538 -125.45238 35.63095 - 2303.35350 -125.43032 35.63095 - 2276.88089 -139.31967 35.43503 - 2247.61611 -153.35191 35.21599 - 2215.53062 -167.52673 34.97416 - 2180.59593 -181.84385 34.70987 - 2142.78361 -196.30296 34.42343 - 2142.78394 -196.30152 34.42343 - 2124.88256 -201.51246 34.28740 - 2106.51071 -206.75624 34.14701 - 2087.66545 -212.03284 34.00229 - 2068.34382 -217.34224 33.85327 - 2048.54286 -222.68443 33.70000 - 2048.54204 -222.68129 33.70000 - 1979.08391 -240.43250 33.15884 - 1904.24680 -258.54113 32.57247 - 1823.92356 -277.00651 31.94271 - 1738.00729 -295.82796 31.27140 - 1646.39124 -315.00485 30.56038 - 1646.39223 -315.00165 30.56038 - 1627.37743 -318.82712 30.41358 - 1608.13269 -322.66658 30.26529 - 1588.65716 -326.52003 30.11553 - 1568.95001 -330.38747 29.96433 - 1549.01039 -334.26889 29.81168 - 1549.00901 -334.26138 29.81168 - 1515.26004 -340.72442 29.55414 - 1480.86284 -347.22603 29.29275 - 1445.81355 -353.76621 29.02761 - 1410.10831 -360.34492 28.75880 - 1373.74328 -366.96215 28.48640 - 1373.74441 -366.92797 28.48640 - 1317.98843 -376.32848 28.07130 - 1260.89285 -384.78937 27.64867 - 1202.59861 -392.31056 27.21885 - 1143.24667 -398.89199 26.78217 - 1082.97800 -404.53360 26.33895 - 1082.97477 -404.52099 26.33895 - 968.46871 -412.77374 25.49533 - 852.16067 -417.39227 24.63244 - 735.06828 -418.37616 23.75260 - 618.20929 -415.72504 22.85814 - 502.60156 -409.43851 21.95137 - 502.61991 -409.29157 21.95137 - 389.47998 -398.24187 21.03465 - 279.94548 -383.53850 20.11021 - 175.03946 -365.18113 19.18010 - 75.78511 -343.16945 18.24641 - -16.79433 -317.50313 17.31122 - -16.80963 -317.37458 17.31122 - -101.73682 -288.86314 16.37653 - -178.39651 -258.46088 15.44389 - -246.33754 -226.58679 14.51464 - -305.14758 -193.23918 13.59012 - -354.41366 -158.41492 12.67169 - -354.47836 -158.14735 12.67169 - -393.49962 -120.32524 11.76056 - -421.71985 -80.99619 10.85728 - -438.75331 -40.55103 9.96219 - -444.46768 -0.52642 9.07563 - -439.19291 37.94676 8.19792 - -439.13789 38.08267 8.19792 - -423.12431 76.04978 7.32922 - -396.68906 112.52714 6.46895 - -360.24601 147.53772 5.61640 - -314.20285 181.10273 4.77083 - -258.96159 213.24161 3.93154 - -258.96332 213.23238 3.93154 - -217.44751 201.54548 3.33533 - -178.49698 187.58083 2.74133 - -142.56654 171.34568 2.14917 - -110.10968 152.84599 1.55849 - -81.57880 132.08650 0.96893 - -81.48155 131.69511 0.96893 - -55.93989 122.06527 0.38014 - -33.31762 102.50271 -0.20810 - -15.51510 74.29570 -0.79595 - -4.01356 39.87537 -1.38358 - 0.09733 0.38928 -1.97118 + 0.00000 28.88797 0.00000 + 1.44419 28.87547 0.00072 + 2.88713 28.83797 0.00145 + 4.32757 28.77547 0.00217 + 5.76426 28.68797 0.00289 + 7.19595 28.57547 0.00361 + 7.19595 28.57547 0.00361 + 13.32862 28.03381 0.00664 + 19.34393 27.49214 0.00951 + 25.24188 26.95047 0.01214 + 31.02247 26.40881 0.01446 + 36.68570 25.86714 0.01639 + 36.68570 25.86714 0.01639 + 42.23157 25.32547 0.01787 + 47.66007 24.78381 0.01883 + 52.97121 24.24214 0.01921 + 58.16500 23.70047 0.01892 + 63.24142 23.15881 0.01792 + 63.24142 23.15881 0.01792 + 68.20048 22.61714 0.01614 + 73.04218 22.07547 0.01352 + 77.76652 21.53381 0.00999 + 82.37350 20.99214 0.00550 + 86.86311 20.45047 0.00000 + 86.86311 -124.08208 0.00000 + 74.44240 -124.33208 -0.00289 + 61.99670 -124.58208 -0.00598 + 49.52599 -124.83208 -0.00923 + 37.03028 -125.08208 -0.01262 + 24.50957 -125.33208 -0.01610 + 24.50957 -125.33208 -0.01610 + -6.90157 -125.95708 -0.02501 + -38.46896 -126.58208 -0.03380 + -70.19261 -127.20708 -0.04197 + -102.07250 -127.83208 -0.04897 + -134.10865 -128.45708 -0.05430 + -134.10865 -128.45708 -0.05430 + -166.30104 -129.08208 -0.05742 + -198.64968 -129.70708 -0.05781 + -231.15458 -130.33208 -0.05493 + -263.81572 -130.95708 -0.04825 + -296.63312 -131.58208 -0.03722 + -296.63291 -131.58395 -0.03722 + -309.80721 -131.93600 -0.03148 + -323.02566 -132.45459 -0.02492 + -336.30237 -133.10041 -0.01751 + -349.64990 -133.87086 -0.00922 + -363.08063 -134.76417 0.00000 + -363.08072 172.83024 0.00000 + -345.84716 171.82110 0.01016 + -328.72044 170.69360 0.02122 + -311.71233 169.44938 0.03316 + -294.83441 168.08995 0.04591 + -278.09813 166.61670 0.05944 + -278.09794 166.61480 0.05944 + -248.36113 163.73551 0.08560 + -219.17410 160.50705 0.11388 + -190.59923 156.93470 0.14403 + -162.69800 153.02265 0.17582 + -135.53127 148.77398 0.20899 + -135.53137 148.77218 0.20899 + -109.14203 144.39025 0.24330 + -83.56977 139.69352 0.27855 + -58.87123 134.68230 0.31452 + -35.10304 129.35607 0.35100 + -12.32202 123.71351 0.38777 + -12.32530 123.88471 0.38777 + -7.39377 122.71677 1.24023 + -2.51279 121.18687 3.27196 + 2.28676 118.57526 5.71911 + 6.95841 114.85190 7.81780 + 11.46672 110.51455 8.80416 + 11.46662 110.42189 8.80416 + 21.95167 99.36653 9.24306 + 31.35744 88.83646 9.68190 + 39.73647 78.83167 10.12067 + 47.14128 69.35219 10.55934 + 53.63949 60.85007 10.99789 + 53.62949 467.58293 10.99789 + 123.37431 462.33150 11.65539 + 192.32396 456.98053 12.31219 + 260.46345 451.52914 12.96789 + 327.77764 445.97644 13.62211 + 394.25128 440.32161 14.27445 + 394.25138 440.32209 14.27445 + 459.81548 433.84638 14.92454 + 524.39942 427.25320 15.57200 + 587.98553 420.54179 16.21648 + 650.55601 413.71143 16.85760 + 712.09297 406.76145 17.49500 + 712.09298 406.76148 17.49500 + 752.58334 403.03872 17.91770 + 792.69933 399.27413 18.33848 + 832.43677 395.46759 18.75726 + 871.79145 391.61899 19.17392 + 910.75916 387.72821 19.58837 + 910.75927 387.72716 19.58837 + 1010.48140 379.30006 20.65485 + 1107.96087 370.47565 21.70399 + 1203.09423 361.25303 22.73415 + 1295.77787 351.63152 23.74371 + 1385.90801 341.61068 24.73104 + 1385.90809 341.62521 24.73104 + 1473.46524 331.82898 25.69453 + 1558.42674 321.65865 26.63274 + 1640.69533 311.11433 27.54425 + 1720.17380 300.19627 28.42766 + 1796.76503 288.90483 29.28155 + 1796.76452 288.90134 29.28155 + 1870.44222 277.79121 30.10455 + 1941.18531 266.32750 30.89545 + 2008.90193 254.51082 31.65309 + 2073.50040 242.34185 32.37632 + 2134.88923 229.82134 33.06396 + 2134.88914 229.82048 33.06396 + 2192.77934 215.42306 33.71490 + 2246.87502 200.63200 34.32822 + 2297.07395 185.44826 34.90304 + 2343.27417 169.87282 35.43851 + 2385.37396 153.90669 35.93378 + 2385.37381 153.90713 35.93378 + 2423.27496 137.57540 36.38803 + 2456.87939 120.85561 36.80069 + 2486.08633 103.74876 37.17127 + 2510.79529 86.25590 37.49927 + 2530.90603 68.37803 37.78418 + 2530.90930 68.35712 37.78418 + 2543.34646 55.98850 37.97376 + 2553.29432 43.46420 38.13751 + 2560.72179 30.78463 38.27537 + 2565.59785 17.95018 38.38725 + 2567.89156 4.96123 38.47308 + 2567.89061 4.94928 38.47308 + 2567.63251 -7.56151 38.53282 + 2564.85351 -20.25968 38.56648 + 2559.51617 -33.14486 38.57412 + 2551.58312 -46.21670 38.55581 + 2541.01707 -59.47487 38.51159 + 2541.01448 -59.48853 38.51159 + 2527.80142 -72.67241 38.44154 + 2511.93339 -86.03820 38.34582 + 2493.37403 -99.58558 38.22463 + 2472.08707 -113.31423 38.07815 + 2448.03628 -127.22383 37.90656 + 2448.03440 -127.20177 37.90656 + 2421.15750 -141.59112 37.71009 + 2391.38843 -156.12336 37.48904 + 2358.69865 -170.79819 37.24374 + 2323.05967 -185.61530 36.97452 + 2284.44306 -200.57441 36.68171 + 2284.44338 -200.57297 36.68171 + 2266.14744 -206.00891 36.54234 + 2247.36079 -211.47769 36.39832 + 2228.08048 -216.97929 36.24968 + 2208.30354 -222.51369 36.09645 + 2188.02703 -228.08088 35.93869 + 2188.02620 -228.07774 35.93869 + 2116.83665 -246.57895 35.38049 + 2040.04309 -265.43758 34.77391 + 1957.53842 -284.65296 34.12086 + 1869.21571 -304.22441 33.42321 + 1774.96823 -324.15130 32.68286 + 1774.96922 -324.14811 32.68286 + 1755.40114 -328.12357 32.52983 + 1735.59411 -332.11303 32.37520 + 1715.54729 -336.11649 32.21899 + 1695.25985 -340.13392 32.06121 + 1674.73094 -344.16534 31.90188 + 1674.72956 -344.15784 31.90188 + 1639.97845 -350.87087 31.63294 + 1604.55410 -357.62249 31.35983 + 1568.45266 -364.41266 31.08266 + 1531.67028 -371.24137 30.80150 + 1494.20311 -378.10860 30.51646 + 1494.20424 -378.07442 30.51646 + 1436.74817 -387.84993 30.08181 + 1377.89624 -396.68582 29.63895 + 1317.78941 -404.58201 29.18823 + 1256.56863 -411.53844 28.73000 + 1194.37487 -417.55505 28.26458 + 1194.37163 -417.54244 28.26458 + 1076.12157 -426.49519 27.37782 + 955.87352 -431.81372 26.46965 + 834.64512 -433.49761 25.54248 + 713.45412 -431.54649 24.59870 + 593.31839 -425.95996 23.64071 + 593.33674 -425.81302 23.64071 + 475.47281 -415.46332 22.67098 + 361.01830 -401.45995 21.69180 + 250.99628 -383.80258 20.70535 + 146.42992 -362.49090 19.71381 + 48.34247 -337.52458 18.71936 + 48.31221 -337.41300 18.71936 + -42.26107 -308.93014 17.72412 + -124.44919 -277.88139 16.72974 + -197.74002 -245.39014 15.73768 + -261.73634 -211.49183 14.74938 + -316.04391 -176.18430 13.76630 + -316.07284 -175.97009 13.76630 + -360.02476 -137.73298 12.78976 + -393.06910 -98.05795 11.82041 + -414.80249 -56.93948 10.85868 + -424.90866 -15.32221 9.90499 + -423.48654 25.18495 8.95977 + -423.41673 25.42882 8.95977 + -410.68859 65.19737 8.02325 + -387.06704 103.24269 7.09491 + -353.03144 139.58699 6.17409 + -309.05516 174.25088 5.26011 + -255.60601 207.25335 4.35229 + -255.60773 207.24423 4.35229 + -215.17575 196.66220 3.70711 + -177.10792 183.60402 3.06411 + -141.89874 168.07683 2.42293 + -110.04140 150.08656 1.78322 + -82.02801 129.63793 1.14463 + -81.92156 129.20977 1.14463 + -56.64013 121.80134 0.50681 + -33.92203 103.57787 -0.13043 + -15.85269 75.69879 -0.76729 + -4.10944 40.81582 -1.40394 + 0.10652 0.42605 -2.04053 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -36796,7 +37070,7 @@ Rightside Method c,phi,delta [END OF CALCULATION METHOD] [WATER LEVEL] - 1.00 + 0.75 [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points @@ -36975,7 +37249,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -36987,221 +37261,227 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 2.16667 0.00000 0.00000 -1 0 - + 0.00000 4.33333 0.00000 0.00000 -1 0 - + 0.00000 6.50000 0.00000 0.00000 -1 0 - + 0.00000 8.66667 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 10.83333 0.00000 0.00000 -1 0 - + 0.00000 13.00000 0.00000 0.00000 -1 0 - + 0.00000 15.16667 0.00000 0.00000 -1 0 - + 0.00000 17.33333 0.00000 0.00000 -1 0 - + 0.00000 19.50000 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 21.66667 0.00000 0.00000 -1 0 - + 0.00000 23.83333 0.00000 0.00000 -1 0 - + 0.00000 26.00000 0.00000 0.00000 -1 0 - + 0.00000 28.16667 0.00000 0.00000 -1 0 - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 35.00000 0.00000 0.00000 -1 0 - - 0.00000 36.00000 0.00000 0.00000 -1 0 - - 0.00000 37.00000 0.00000 0.00000 -1 0 - - 0.00000 38.00000 0.00000 0.00000 -1 0 - - 0.00000 39.00000 0.00000 0.00000 -1 0 - - 0.00000 40.00000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 32.50000 0.00000 0.00000 -1 0 - + 0.00000 33.50000 0.00000 0.00000 -1 0 - + 0.00000 34.50000 0.00000 0.00000 -1 0 - + 0.00000 35.50000 0.00000 0.00000 -1 0 - + 0.00000 36.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - + 0.00000 37.50000 0.00000 0.00000 -1 0 - 0.00000 40.00000 0.00000 0.00000 -1 0 - 0.00000 42.50000 0.00000 0.00000 -1 0 - 0.00000 45.00000 0.00000 0.00000 -1 0 - 0.00000 47.50000 0.00000 0.00000 -1 0 - 0.00000 50.00000 0.00000 0.00000 -1 0 - - 0.00000 52.50000 0.00000 0.00000 -1 0 - + 0.00000 50.00000 0.00000 0.00000 -1 0 - 0.00000 52.50000 0.00000 0.00000 -1 0 - 0.00000 55.00000 0.00000 0.00000 -1 0 - 0.00000 57.50000 0.00000 0.00000 -1 0 - 0.00000 60.00000 0.00000 0.00000 -1 0 - 0.00000 62.50000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 65.00000 0.00000 0.00000 -1 0 - - 0.00000 66.00000 0.00000 0.00000 -1 0 - - 0.00000 67.00000 0.00000 0.00000 -1 0 - - 0.00000 68.00000 0.00000 0.00000 -1 0 - - 0.00000 69.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 70.00000 0.00000 0.00000 -1 0 - - 0.00000 71.00000 0.00000 0.00000 -1 0 - - 0.00000 72.00000 0.00000 0.00000 -1 0 - - 0.00000 73.00000 0.00000 0.00000 -1 0 - - 0.00000 74.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 75.00000 0.00000 0.00000 -1 0 - - 0.00000 76.80000 0.00000 0.00000 -1 0 - - 0.00000 78.60000 0.00000 0.00000 -1 0 - - 0.00000 80.40000 0.00000 0.00000 -1 0 - - 0.00000 82.20000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 84.00000 0.00000 0.00000 -1 0 - - 0.00000 85.80000 0.00000 0.00000 -1 0 - - 0.00000 87.60000 0.00000 0.00000 -1 0 - - 0.00000 89.40000 0.00000 0.00000 -1 0 - - 0.00000 91.20000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.00000 0.00000 0.00000 -1 0 - - 0.00000 93.40000 0.00000 0.00000 -1 0 - - 0.00000 93.80000 0.00000 0.00000 -1 0 - - 0.00000 94.20000 0.00000 0.00000 -1 0 - - 0.00000 94.60000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 95.00000 0.00000 0.00000 -1 0 - - 0.00000 96.00000 0.00000 0.00000 -1 0 - - 0.00000 97.00000 0.00000 0.00000 -1 0 - - 0.00000 98.00000 0.00000 0.00000 -1 0 - + 0.00000 62.50000 0.00000 0.00000 -1 0 - + 0.00000 63.50000 0.00000 0.00000 -1 0 - + 0.00000 64.50000 0.00000 0.00000 -1 0 - + 0.00000 65.50000 0.00000 0.00000 -1 0 - + 0.00000 66.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 67.50000 0.00000 0.00000 -1 0 - + 0.00000 68.50000 0.00000 0.00000 -1 0 - + 0.00000 69.50000 0.00000 0.00000 -1 0 - + 0.00000 70.50000 0.00000 0.00000 -1 0 - + 0.00000 71.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 72.50000 0.00000 0.00000 -1 0 - + 0.00000 74.30000 0.00000 0.00000 -1 0 - + 0.00000 76.10000 0.00000 0.00000 -1 0 - + 0.00000 77.90000 0.00000 0.00000 -1 0 - + 0.00000 79.70000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 81.50000 0.00000 0.00000 -1 0 - + 0.00000 83.30000 0.00000 0.00000 -1 0 - + 0.00000 85.10000 0.00000 0.00000 -1 0 - + 0.00000 86.90000 0.00000 0.00000 -1 0 - + 0.00000 88.70000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.50000 0.00000 0.00000 -1 0 - + 0.00000 90.90000 0.00000 0.00000 -1 0 - + 0.00000 91.30000 0.00000 0.00000 -1 0 - + 0.00000 91.70000 0.00000 0.00000 -1 0 - + 0.00000 92.10000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 92.50000 0.00000 0.00000 -1 0 - + 0.00000 93.50000 0.00000 0.00000 -1 0 - + 0.00000 94.50000 0.00000 0.00000 -1 0 - + 0.00000 95.50000 0.00000 0.00000 -1 0 - + 0.00000 96.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - + 0.00000 97.50000 0.00000 0.00000 -1 0 - 0.00000 99.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 100.00000 0.00000 0.00000 -1 0 - - 0.00000 101.50000 0.00000 0.00000 -1 0 - - 0.00000 103.00000 0.00000 0.00000 -1 0 - - 0.00000 104.50000 0.00000 0.00000 -1 0 - - 0.00000 106.00000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 107.50000 0.00000 0.00000 -1 0 - - 0.00000 109.00000 0.00000 0.00000 -1 0 - - 0.00000 110.50000 0.00000 0.00000 -1 0 - - 0.00000 112.00000 0.00000 0.00000 -1 0 - + 0.00000 100.50000 0.00000 0.00000 -1 0 - + 0.00000 102.00000 0.00000 0.00000 -1 0 - + 0.00000 103.50000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 105.00000 0.00000 0.00000 -1 0 - + 0.00000 106.50000 0.00000 0.00000 -1 0 - + 0.00000 108.00000 0.00000 0.00000 -1 0 - + 0.00000 109.50000 0.00000 0.00000 -1 0 - + 0.00000 111.00000 0.00000 0.00000 -1 0 - + 0.00000 112.50000 0.00000 0.00000 -1 0 - + 0.00000 112.50000 0.00000 0.00000 -1 0 - 0.00000 113.50000 0.00000 0.00000 -1 0 - - 0.00000 115.00000 0.00000 0.00000 -1 0 - - 0.00000 115.00000 0.00000 0.00000 -1 0 - - 0.00000 116.00000 0.00000 0.00000 -1 0 - - 0.00000 117.00000 0.00000 0.00000 -1 0 - - 0.00000 118.00000 0.00000 0.00000 -1 0 - - 0.00000 119.00000 0.00000 0.00000 -1 0 - - 0.00000 120.00000 0.00000 0.00000 -1 0 - - 0.00000 120.00000 0.00000 0.00000 -1 0 - - 0.00000 122.60000 0.00000 0.00000 -1 0 - - 0.00000 125.20000 0.00000 0.00000 -1 0 - - 0.00000 127.80000 0.00000 0.00000 -1 0 - - 0.00000 130.40000 0.00000 0.00000 -1 0 - - 0.00000 133.00000 0.00000 0.00000 -1 0 - - 0.00000 133.00000 0.00000 0.00000 -1 0 - - 0.00000 135.60000 0.00000 0.00000 -1 0 - - 0.00000 138.20000 0.00000 0.00000 -1 0 - - 0.00000 140.80000 0.00000 0.00000 -1 0 - - 0.00000 143.40000 0.00000 0.00000 -1 0 - - 0.00000 146.00000 0.00000 0.00000 -1 0 - - 0.00000 146.00000 0.00000 0.00000 -1 0 - - 0.00000 148.60000 0.00000 0.00000 -1 0 - - 0.00000 151.20000 0.00000 0.00000 -1 0 - - 0.00000 153.80000 0.00000 0.00000 -1 0 - - 0.00000 156.40000 0.00000 0.00000 -1 0 - - 0.00000 159.00000 0.00000 0.00000 -1 0 - - 0.00000 159.00000 0.00000 0.00000 -1 0 - - 0.00000 161.60000 0.00000 0.00000 -1 0 - - 0.00000 164.20000 0.00000 0.00000 -1 0 - - 0.00000 166.80000 0.00000 0.00000 -1 0 - - 0.00000 169.40000 0.00000 0.00000 -1 0 - - 0.00000 172.00000 0.00000 0.00000 -1 0 - - 0.00000 172.00000 0.00000 0.00000 -1 0 - - 0.00000 174.60000 0.00000 0.00000 -1 0 - - 0.00000 177.20000 0.00000 0.00000 -1 0 - - 0.00000 179.80000 0.00000 0.00000 -1 0 - - 0.00000 182.40000 0.00000 0.00000 -1 0 - - 0.00000 185.00000 0.00000 0.00000 -1 0 - - 0.00000 185.00000 0.00000 0.00000 -1 0 - - 0.00000 187.00000 0.00000 0.00000 -1 0 - - 0.00000 189.00000 0.00000 0.00000 -1 0 - - 0.00000 191.00000 0.00000 0.00000 -1 0 - - 0.00000 193.00000 0.00000 0.00000 -1 0 - - 0.00000 195.00000 0.00000 0.00000 -1 0 - - 0.00000 195.00000 0.00000 0.00000 -1 0 - - 0.00000 197.00000 0.00000 0.00000 -1 0 - - 0.00000 199.00000 0.00000 0.00000 -1 0 - - 0.00000 201.00000 0.00000 0.00000 -1 0 - - 0.00000 203.00000 0.00000 0.00000 -1 0 - - 0.00000 205.00000 0.00000 0.00000 -1 0 - - 0.00000 205.00000 0.00000 0.00000 -1 0 - - 0.00000 207.00000 0.00000 0.00000 -1 0 - - 0.00000 209.00000 0.00000 0.00000 -1 0 - - 0.00000 211.00000 0.00000 0.00000 -1 0 - - 0.00000 213.00000 0.00000 0.00000 -1 0 - - 0.00000 215.00000 0.00000 0.00000 -1 0 - - 0.00000 215.00000 0.00000 0.00000 -1 0 - - 0.00000 217.00000 0.00000 0.00000 -1 0 - - 0.00000 219.00000 0.00000 0.00000 -1 0 - - 0.00000 221.00000 0.00000 0.00000 -1 0 - - 0.00000 223.00000 0.00000 0.00000 -1 0 - - 0.00000 225.00000 0.00000 0.00000 -1 0 - - 0.00000 225.00000 0.00000 0.00000 -1 0 - - 0.00000 225.90000 0.00000 0.00000 -1 0 - - 0.00000 226.80000 0.00000 0.00000 -1 0 - - 0.00000 227.70000 0.00000 0.00000 -1 0 - - 0.00000 228.60000 0.00000 0.00000 -1 0 - - 0.00000 229.50000 0.00000 0.00000 -1 0 - - 0.00000 229.50000 0.00000 0.00000 -1 0 - - 0.00000 232.50000 0.00000 0.00000 -1 0 - - 0.00000 235.50000 0.00000 0.00000 -1 0 - - 0.00000 238.50000 0.00000 0.00000 -1 0 - - 0.00000 241.50000 0.00000 0.00000 -1 0 - - 0.00000 244.50000 0.00000 0.00000 -1 0 - - 0.00000 244.50000 0.00000 0.00000 -1 0 - - 0.00000 245.10000 0.00000 0.00000 -1 0 - - 0.00000 245.70000 0.00000 0.00000 -1 0 - - 0.00000 246.30000 0.00000 0.00000 -1 0 - - 0.00000 246.90000 0.00000 0.00000 -1 0 - - 0.00000 247.50000 0.00000 0.00000 -1 0 - - 0.00000 247.50000 0.00000 0.00000 -1 0 - - 0.00000 248.50000 0.00000 0.00000 -1 0 - - 0.00000 249.50000 0.00000 0.00000 -1 0 - - 0.00000 250.50000 0.00000 0.00000 -1 0 - - 0.00000 251.50000 0.00000 0.00000 -1 0 - - 0.00000 252.50000 0.00000 0.00000 -1 0 - - 0.00001 252.50000 0.00001 0.00000 402 100 P - 6.83626 254.00000 6.83626 0.70654 402 100 P - 13.67253 255.50000 13.67253 1.41308 402 100 P - 20.50879 257.00000 20.50879 2.11962 402 100 P - 27.34506 258.50000 27.34506 2.82616 402 100 P - 34.18132 260.00000 34.18132 3.53270 402 100 P - 34.18132 260.00000 34.18132 3.53270 402 100 P - 48.36024 262.80000 48.36024 4.99812 402 100 P - 62.53916 265.60000 62.53916 6.46353 402 100 P - 76.71808 268.40000 76.71808 7.92895 402 100 P - 90.89700 271.20000 90.89700 9.39436 402 100 P - 105.07592 274.00000 105.07592 10.85978 402 100 P - 105.07592 274.00000 105.07592 10.85978 402 100 P - 119.25484 276.80000 119.25484 12.32520 402 100 P - 133.43376 279.60000 133.43376 13.79061 402 100 P - 147.61267 282.40000 147.61267 15.25603 402 100 P - 161.79159 285.20000 161.79159 16.72145 402 100 P - 175.97051 288.00000 175.97051 18.18686 402 100 P - 175.97051 288.00000 175.97051 18.18686 402 100 P - 185.35359 290.80000 190.14943 19.65228 330 97 3 - 191.73947 293.60000 204.32835 21.11769 330 94 3 - 198.12777 296.40000 218.50727 22.58311 330 91 3 - 204.52366 299.20000 232.68619 24.04853 330 88 3 - 210.93234 302.00000 246.86511 25.51394 330 85 3 - 210.93234 302.00000 246.86511 25.51394 330 85 3 - 217.35861 304.80000 261.04403 26.97936 330 83 3 - 223.80511 307.60000 275.22294 28.44477 330 81 3 - 227.43791 310.40000 289.40186 29.91019 220 79 2 - 222.90665 313.20000 303.58078 31.37561 220 73 2 - 218.46013 316.00000 317.75970 32.84102 220 69 2 - 218.46013 316.00000 317.75970 32.84102 220 69 2 - 214.10236 318.80000 331.93862 34.30644 220 65 2 - 209.82904 321.60000 346.11754 35.77186 220 61 2 - 205.63390 324.40000 360.29646 37.23727 220 57 2 - 201.51067 327.20000 374.47538 38.70269 220 54 2 - 197.45306 330.00000 388.65430 40.16810 220 51 2 - 88.49769 330.00000 232.08445 51.23303 110 38 1 - 83.86282 332.00000 236.62030 52.23432 110 35 1 - 79.24725 334.00000 241.15616 53.23562 110 33 1 - 74.64785 336.00000 245.69201 54.23692 110 30 1 - 70.06150 338.00000 250.22786 55.23821 110 28 1 - 65.48510 340.00000 254.76371 56.23951 110 26 1 - 85.18484 340.00000 426.80806 44.09333 110 20 1 - 61.47268 342.00000 436.94000 45.14005 110 14 1 - 37.78278 344.00000 447.07194 46.18678 110 0 1 - 26.91469 346.00000 457.20388 47.23350 1 0 A - 27.51114 348.00000 467.33583 48.28023 1 0 A - 28.10759 350.00000 477.46777 49.32696 1 0 A + 0.00000 114.50000 0.00000 0.00000 -1 0 - + 0.00000 115.50000 0.00000 0.00000 -1 0 - + 0.00000 116.50000 0.00000 0.00000 -1 0 - + 0.00000 117.50000 0.00000 0.00000 -1 0 - + 0.00000 117.50000 0.00000 0.00000 -1 0 - + 0.00000 120.10000 0.00000 0.00000 -1 0 - + 0.00000 122.70000 0.00000 0.00000 -1 0 - + 0.00000 125.30000 0.00000 0.00000 -1 0 - + 0.00000 127.90000 0.00000 0.00000 -1 0 - + 0.00000 130.50000 0.00000 0.00000 -1 0 - + 0.00000 130.50000 0.00000 0.00000 -1 0 - + 0.00000 133.10000 0.00000 0.00000 -1 0 - + 0.00000 135.70000 0.00000 0.00000 -1 0 - + 0.00000 138.30000 0.00000 0.00000 -1 0 - + 0.00000 140.90000 0.00000 0.00000 -1 0 - + 0.00000 143.50000 0.00000 0.00000 -1 0 - + 0.00000 143.50000 0.00000 0.00000 -1 0 - + 0.00000 146.10000 0.00000 0.00000 -1 0 - + 0.00000 148.70000 0.00000 0.00000 -1 0 - + 0.00000 151.30000 0.00000 0.00000 -1 0 - + 0.00000 153.90000 0.00000 0.00000 -1 0 - + 0.00000 156.50000 0.00000 0.00000 -1 0 - + 0.00000 156.50000 0.00000 0.00000 -1 0 - + 0.00000 159.10000 0.00000 0.00000 -1 0 - + 0.00000 161.70000 0.00000 0.00000 -1 0 - + 0.00000 164.30000 0.00000 0.00000 -1 0 - + 0.00000 166.90000 0.00000 0.00000 -1 0 - + 0.00000 169.50000 0.00000 0.00000 -1 0 - + 0.00000 169.50000 0.00000 0.00000 -1 0 - + 0.00000 172.10000 0.00000 0.00000 -1 0 - + 0.00000 174.70000 0.00000 0.00000 -1 0 - + 0.00000 177.30000 0.00000 0.00000 -1 0 - + 0.00000 179.90000 0.00000 0.00000 -1 0 - + 0.00000 182.50000 0.00000 0.00000 -1 0 - + 0.00000 182.50000 0.00000 0.00000 -1 0 - + 0.00000 184.50000 0.00000 0.00000 -1 0 - + 0.00000 186.50000 0.00000 0.00000 -1 0 - + 0.00000 188.50000 0.00000 0.00000 -1 0 - + 0.00000 190.50000 0.00000 0.00000 -1 0 - + 0.00000 192.50000 0.00000 0.00000 -1 0 - + 0.00000 192.50000 0.00000 0.00000 -1 0 - + 0.00000 194.50000 0.00000 0.00000 -1 0 - + 0.00000 196.50000 0.00000 0.00000 -1 0 - + 0.00000 198.50000 0.00000 0.00000 -1 0 - + 0.00000 200.50000 0.00000 0.00000 -1 0 - + 0.00000 202.50000 0.00000 0.00000 -1 0 - + 0.00000 202.50000 0.00000 0.00000 -1 0 - + 0.00000 204.50000 0.00000 0.00000 -1 0 - + 0.00000 206.50000 0.00000 0.00000 -1 0 - + 0.00000 208.50000 0.00000 0.00000 -1 0 - + 0.00000 210.50000 0.00000 0.00000 -1 0 - + 0.00000 212.50000 0.00000 0.00000 -1 0 - + 0.00000 212.50000 0.00000 0.00000 -1 0 - + 0.00000 214.50000 0.00000 0.00000 -1 0 - + 0.00000 216.50000 0.00000 0.00000 -1 0 - + 0.00000 218.50000 0.00000 0.00000 -1 0 - + 0.00000 220.50000 0.00000 0.00000 -1 0 - + 0.00000 222.50000 0.00000 0.00000 -1 0 - + 0.00000 222.50000 0.00000 0.00000 -1 0 - + 0.00000 223.40000 0.00000 0.00000 -1 0 - + 0.00000 224.30000 0.00000 0.00000 -1 0 - + 0.00000 225.20000 0.00000 0.00000 -1 0 - + 0.00000 226.10000 0.00000 0.00000 -1 0 - + 0.00000 227.00000 0.00000 0.00000 -1 0 - + 0.00000 227.00000 0.00000 0.00000 -1 0 - + 0.00000 230.00000 0.00000 0.00000 -1 0 - + 0.00000 233.00000 0.00000 0.00000 -1 0 - + 0.00000 236.00000 0.00000 0.00000 -1 0 - + 0.00000 239.00000 0.00000 0.00000 -1 0 - + 0.00000 242.00000 0.00000 0.00000 -1 0 - + 0.00000 242.00000 0.00000 0.00000 -1 0 - + 0.00000 242.60000 0.00000 0.00000 -1 0 - + 0.00000 243.20000 0.00000 0.00000 -1 0 - + 0.00000 243.80000 0.00000 0.00000 -1 0 - + 0.00000 244.40000 0.00000 0.00000 -1 0 - + 0.00000 245.00000 0.00000 0.00000 -1 0 - + 0.00000 245.00000 0.00000 0.00000 -1 0 - + 0.00000 246.00000 0.00000 0.00000 -1 0 - + 0.00000 247.00000 0.00000 0.00000 -1 0 - + 0.00000 248.00000 0.00000 0.00000 -1 0 - + 0.00000 249.00000 0.00000 0.00000 -1 0 - + 0.00000 250.00000 0.00000 0.00000 -1 0 - + 0.00001 250.00000 0.00001 0.00000 402 100 P + 6.83626 251.50000 6.83626 0.70654 402 100 P + 13.67253 253.00000 13.67253 1.41308 402 100 P + 20.50879 254.50000 20.50879 2.11962 402 100 P + 27.34506 256.00000 27.34506 2.82616 402 100 P + 34.18132 257.50000 34.18132 3.53270 402 100 P + 34.18132 257.50000 34.18132 3.53270 402 100 P + 48.36024 260.30000 48.36024 4.99812 402 100 P + 62.53916 263.10000 62.53916 6.46353 402 100 P + 76.71808 265.90000 76.71808 7.92895 402 100 P + 90.89700 268.70000 90.89700 9.39436 402 100 P + 105.07592 271.50000 105.07592 10.85978 402 100 P + 105.07592 271.50000 105.07592 10.85978 402 100 P + 119.25484 274.30000 119.25484 12.32520 402 100 P + 133.43376 277.10000 133.43376 13.79061 402 100 P + 147.61267 279.90000 147.61267 15.25603 402 100 P + 161.79159 282.70000 161.79159 16.72145 402 100 P + 175.97051 285.50000 175.97051 18.18686 402 100 P + 175.97051 285.50000 175.97051 18.18686 402 100 P + 190.14943 288.30000 190.14943 19.65228 402 100 P + 196.56140 291.10000 204.32835 21.11769 330 96 3 + 202.71415 293.90000 218.50727 22.58311 330 93 3 + 208.87086 296.70000 232.68619 24.04853 330 90 3 + 215.03711 299.50000 246.86511 25.51394 330 87 3 + 215.03711 299.50000 246.86511 25.51394 330 87 3 + 221.21811 302.30000 261.04403 26.97936 330 85 3 + 227.41685 305.10000 275.22294 28.44477 330 83 3 + 233.63555 307.90000 289.40186 29.91019 330 81 3 + 233.08516 310.70000 303.58078 31.37561 220 77 2 + 227.81004 313.50000 317.75970 32.84102 220 72 2 + 227.81004 313.50000 317.75970 32.84102 220 72 2 + 222.61993 316.30000 331.93862 34.30644 220 67 2 + 217.51123 319.10000 346.11754 35.77186 220 63 2 + 212.47828 321.90000 360.29646 37.23727 220 59 2 + 207.51538 324.70000 374.47538 38.70269 220 55 2 + 202.61687 327.50000 388.65430 40.16810 220 52 2 + 92.75783 327.50000 232.08445 51.23303 110 40 1 + 87.62705 329.50000 236.62030 52.23432 110 37 1 + 82.51532 331.50000 241.15616 53.23562 110 34 1 + 77.41960 333.50000 245.69201 54.23692 110 32 1 + 72.33686 335.50000 250.22786 55.23821 110 29 1 + 67.26406 337.50000 254.76371 56.23951 110 26 1 + 93.09133 337.50000 426.80806 44.09333 110 22 1 + 67.17323 339.50000 436.94000 45.14005 110 15 1 + 41.27768 341.50000 447.07194 46.18678 110 0 1 + 26.91469 343.50000 457.20388 47.23350 1 0 A + 27.51114 345.50000 467.33583 48.28023 1 0 A + 28.10759 347.50000 477.46777 49.32696 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37221,9 +37501,9 @@ Layer name -18.50 0.000 '6_Siltig_zand' -20.50 0.000 '7_Klei_met_zandlagen' -21.50 12.818 '9A_Zand_Pleistoceen' - -25.00 1167.374 '9B_Zand_Pleistoceen' - -32.00 76.962 '17_Klei_zandlagen' - -33.00 42.066 '9B_Zand_Pleistoceen' + -25.00 1191.869 '9B_Zand_Pleistoceen' + -32.00 79.982 '17_Klei_zandlagen' + -33.00 44.695 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -37245,9 +37525,9 @@ Layer name -18.50 0.00 '6_Siltig_zand' -20.50 0.00 '7_Klei_met_zandlagen' -21.50 4.41 '9A_Zand_Pleistoceen' - -25.00 401.51 '9B_Zand_Pleistoceen' - -32.00 17.69 '17_Klei_zandlagen' - -33.00 14.47 '9B_Zand_Pleistoceen' + -25.00 409.93 '9B_Zand_Pleistoceen' + -32.00 18.39 '17_Klei_zandlagen' + -33.00 15.37 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -37486,7 +37766,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=216 +DataCount=222 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -37498,22 +37778,28 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 2.33333 0.00000 0.00000 -1 0 - + 0.00000 0.50000 0.00000 0.00000 -1 0 - + 0.00000 1.00000 0.00000 0.00000 -1 0 - + 0.00000 1.50000 0.00000 0.00000 -1 0 - + 0.00000 2.00000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - + 0.00000 2.50000 0.00000 0.00000 -1 0 - 0.00000 4.66667 0.00000 0.00000 -1 0 - - 0.00000 7.00000 0.00000 0.00000 -1 0 - - 0.00000 9.33333 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 11.66667 0.00000 0.00000 -1 0 - - 0.00000 14.00000 0.00000 0.00000 -1 0 - - 0.00000 16.33333 0.00000 0.00000 -1 0 - - 0.00000 18.66667 0.00000 0.00000 -1 0 - - 0.00000 21.00000 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 23.33333 0.00000 0.00000 -1 0 - - 0.00000 25.66667 0.00000 0.00000 -1 0 - - 0.00000 28.00000 0.00000 0.00000 -1 0 - - 0.00000 30.33333 0.00000 0.00000 -1 0 - - 0.00000 32.66667 0.00000 0.00000 -1 0 - + 0.00000 6.83333 0.00000 0.00000 -1 0 - + 0.00000 9.00000 0.00000 0.00000 -1 0 - + 0.00000 11.16667 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 13.33333 0.00000 0.00000 -1 0 - + 0.00000 15.50000 0.00000 0.00000 -1 0 - + 0.00000 17.66667 0.00000 0.00000 -1 0 - + 0.00000 19.83333 0.00000 0.00000 -1 0 - + 0.00000 22.00000 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 24.16667 0.00000 0.00000 -1 0 - + 0.00000 26.33333 0.00000 0.00000 -1 0 - + 0.00000 28.50000 0.00000 0.00000 -1 0 - + 0.00000 30.66667 0.00000 0.00000 -1 0 - + 0.00000 32.83333 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 35.00000 0.00000 0.00000 -1 0 - 0.00000 36.00000 0.00000 0.00000 -1 0 - @@ -37534,41 +37820,41 @@ Status character 0.00000 62.50000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 -1 0 - 0.00000 65.00000 0.00000 0.00000 402 100 P - 2.02407 66.00000 4.24974 1.40724 110 48 1 - 3.31712 67.00000 8.50050 2.81482 110 39 1 - 4.57592 68.00000 12.75330 4.22307 110 36 1 - 5.81797 69.00000 17.00914 5.63233 110 34 1 + 2.04095 66.00000 4.24974 1.40724 110 48 1 + 3.33078 67.00000 8.50050 2.81482 110 39 1 + 4.58573 68.00000 12.75330 4.22307 110 36 1 + 5.82326 69.00000 17.00914 5.63233 110 34 1 7.04293 70.00000 21.26903 7.04293 110 33 1 6.99530 70.00000 21.22709 6.99530 110 33 1 - 8.19351 71.00000 25.48357 8.39800 110 0 1 - 9.37545 72.00000 29.74601 9.80267 110 0 1 - 10.54231 73.00000 34.01531 11.20960 110 0 1 - 11.69527 74.00000 38.29236 12.61909 110 0 1 - 12.83551 75.00000 42.57802 14.03141 110 0 1 - 12.55518 75.00000 42.33319 13.75107 110 0 1 - 14.52827 76.80000 50.02711 16.25029 110 0 1 - 16.47008 78.60000 57.75567 18.76075 110 0 1 - 18.38673 80.40000 65.52272 21.28372 110 0 1 - 20.28414 82.20000 73.33157 23.82027 110 0 1 - 22.16808 84.00000 81.18498 26.37129 110 0 1 - 21.10144 84.00000 80.52920 25.30465 110 0 1 - 22.87361 85.80000 88.36554 27.76706 110 0 1 - 24.64209 87.60000 96.24987 30.24455 110 0 1 - 26.41143 89.40000 104.18324 32.73744 110 0 1 - 28.18604 91.20000 112.16618 35.24592 110 0 1 - 29.97016 93.00000 120.19873 37.76998 110 0 1 - 28.79691 93.00000 126.02812 36.59673 110 0 1 - 25.16086 93.40000 127.90672 37.14225 110 0 1 - 47.18203 93.80000 129.78787 37.68851 110 36 1 - 79.16024 94.20000 131.67154 38.23550 220 60 2 - 102.58676 94.60000 133.55774 38.78322 220 77 2 - 109.77450 95.00000 135.44645 39.33168 330 81 3 - 111.16160 95.00000 149.34777 38.48288 220 74 2 - 106.26698 96.00000 154.56616 39.82751 220 69 2 - 101.37271 97.00000 159.80151 41.17652 220 63 2 - 96.47834 98.00000 165.05356 42.52983 220 58 2 - 91.58338 99.00000 170.32198 43.88736 220 54 2 - 83.71180 100.00000 175.60645 45.24902 110 48 1 + 8.18743 71.00000 25.48357 8.39800 110 0 1 + 9.36255 72.00000 29.74601 9.80267 110 0 1 + 10.52191 73.00000 34.01531 11.20960 110 0 1 + 11.66674 74.00000 38.29236 12.61909 110 0 1 + 12.79827 75.00000 42.57802 14.03141 110 0 1 + 12.51794 75.00000 42.33319 13.75107 110 0 1 + 14.47415 76.80000 50.02711 16.25029 110 0 1 + 16.39772 78.60000 57.75567 18.76075 110 0 1 + 18.29501 80.40000 65.52272 21.28372 110 0 1 + 20.17219 82.20000 73.33157 23.82027 110 0 1 + 22.03525 84.00000 81.18498 26.37129 110 0 1 + 20.96862 84.00000 80.52920 25.30465 110 0 1 + 22.71949 85.80000 88.36554 27.76706 110 0 1 + 24.46635 87.60000 96.24987 30.24455 110 0 1 + 26.21386 89.40000 104.18324 32.73744 110 0 1 + 27.96649 91.20000 112.16618 35.24592 110 0 1 + 29.72860 93.00000 120.19873 37.76998 110 0 1 + 28.55535 93.00000 126.02812 36.59673 110 0 1 + 24.84184 93.40000 127.90672 37.14225 110 0 1 + 46.65298 93.80000 129.78787 37.68851 110 36 1 + 78.92768 94.20000 131.67154 38.23550 220 60 2 + 102.24010 94.60000 133.55774 38.78322 220 77 2 + 109.62739 95.00000 135.44645 39.33168 330 81 3 + 110.68017 95.00000 149.34777 38.48288 220 74 2 + 105.42707 96.00000 154.56616 39.82751 220 68 2 + 100.17433 97.00000 159.80151 41.17652 220 63 2 + 94.92147 98.00000 165.05356 42.52983 220 58 2 + 89.66803 99.00000 170.32198 43.88736 220 53 2 + 75.37438 100.00000 175.60645 45.24902 110 43 1 32.17940 100.00000 134.41913 50.84292 1 0 A 32.83978 101.50000 137.17769 51.88633 1 0 A 33.50638 103.00000 139.96218 52.93954 1 0 A @@ -37701,18 +37987,18 @@ Status character 83.19563 324.40000 1449.46119 144.15362 1 0 A 84.19886 327.20000 1466.93966 145.89191 1 0 A 85.20141 330.00000 1484.40648 147.62904 1 0 A - 141.22802 330.00000 962.77123 178.49268 110 0 1 - 148.00149 332.00000 968.90579 179.62999 110 0 1 - 154.75500 334.00000 975.03667 180.76662 110 0 1 - 161.49165 336.00000 981.16392 181.90258 110 0 1 - 168.21460 338.00000 987.28762 183.03789 110 0 1 - 174.92695 340.00000 993.40782 184.17254 110 0 1 - 108.49095 340.00000 1507.97138 149.58246 110 0 1 - 134.46492 342.00000 1520.22101 150.79755 110 0 1 - 160.41613 344.00000 1532.46551 152.01214 110 10 1 - 186.35144 346.00000 1544.70498 153.22623 110 12 1 - 212.27773 348.00000 1556.93951 154.43983 110 14 1 - 238.20185 350.00000 1569.16918 155.65294 110 15 1 + 136.96787 330.00000 962.77123 178.49268 110 0 1 + 144.23727 332.00000 968.90579 179.62999 110 0 1 + 151.48693 334.00000 975.03667 180.76662 110 0 1 + 158.71990 336.00000 981.16392 181.90258 110 0 1 + 165.93924 338.00000 987.28762 183.03789 110 0 1 + 173.14799 340.00000 993.40782 184.17254 110 0 1 + 100.58445 340.00000 1507.97138 149.58246 110 0 1 + 128.76438 342.00000 1520.22101 150.79755 110 0 1 + 156.92124 344.00000 1532.46551 152.01214 110 10 1 + 185.06198 346.00000 1544.70498 153.22623 110 12 1 + 213.19355 348.00000 1556.93951 154.43983 110 14 1 + 241.32288 350.00000 1569.16918 155.65294 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37725,7 +38011,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 107.789 '99_Aanvulzand' + 5.50 106.485 '99_Aanvulzand' -9.00 74.855 '5_Klei_siltig' -11.00 303.110 '6_Siltig_zand' -17.50 60.896 '7_Klei_met_zandlagen' @@ -37733,8 +38019,8 @@ Layer name -20.50 70.873 '7_Klei_met_zandlagen' -21.50 221.098 '9A_Zand_Pleistoceen' -25.00 550.290 '9B_Zand_Pleistoceen' - -32.00 158.108 '17_Klei_zandlagen' - -33.00 173.371 '9B_Zand_Pleistoceen' + -32.00 155.088 '17_Klei_zandlagen' + -33.00 170.979 '9B_Zand_Pleistoceen' -34.50 0.000 '17_Klei_zandlagen' -37.00 0.000 '9B_Zand_Pleistoceen' [END OF DATA] @@ -37749,7 +38035,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 5.50 -33.87 '99_Aanvulzand' + 5.50 -33.46 '99_Aanvulzand' -9.00 -13.61 '5_Klei_siltig' -11.00 -81.36 '6_Siltig_zand' -17.50 -14.00 '7_Klei_met_zandlagen' @@ -37757,8 +38043,8 @@ Layer name -20.50 -16.29 '7_Klei_met_zandlagen' -21.50 -76.04 '9A_Zand_Pleistoceen' -25.00 -189.27 '9B_Zand_Pleistoceen' - -32.00 -36.34 '17_Klei_zandlagen' - -33.00 -59.63 '9B_Zand_Pleistoceen' + -32.00 -35.65 '17_Klei_zandlagen' + -33.00 -58.81 '9B_Zand_Pleistoceen' -34.50 0.00 '17_Klei_zandlagen' -37.00 0.00 '9B_Zand_Pleistoceen' [END OF DATA] @@ -45657,8 +45943,8 @@ CalculationStatus [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 1 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 1 5 10 0.000 1 5 - 0.00000 0.00000 0.00000 0.00000 13.56785 1 0 10 1.000 0 0 - 0.00000 0.00000 0.00000 0.00000 13.56785 1 1 10 1.000 0 0 + -6.08564 4.13487 0.09458 0.00000 13.65233 1 0 10 1.000 2 0 + -4.16471 -3.34620 0.03589 0.00000 13.65431 1 1 10 1.000 2 0 0.00000 0.00000 0.00000 0.00000 10.20351 1 3 10 1.000 0 0 0.00000 0.00000 0.00000 0.00000 10.20351 1 14 10 1.200 0 0 -42904.06995 -8038.69226 -388.39588 0.00000 79.93752 2 4 10 1.000 1 0 @@ -45675,14 +45961,14 @@ CalculationStatus -799.83515 414.22497 13.59766 0.00000 21.21043 3 14 10 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 4 5 10 0.000 1 5 - 359.67036 161.13541 8.04534 0.00000 17.00284 4 0 10 1.000 0 0 - -453.32361 208.76804 10.99889 0.00000 16.95581 4 1 10 1.000 0 0 + 360.76435 170.94981 8.34274 0.00000 17.18857 4 0 10 1.000 0 0 + -464.23258 216.15836 11.14058 0.00000 17.14895 4 1 10 1.000 0 0 383.12105 163.59384 8.24183 0.00000 13.37012 4 3 10 1.000 0 0 459.74526 196.31261 8.24183 0.00000 13.37012 4 14 10 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 5 4 10 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 5 5 10 0.000 1 5 - 2644.10868 463.53466 42.60702 0.00000 55.26541 5 0 10 1.000 1 0 - 2424.66776 440.60439 36.33948 0.00000 59.37105 5 1 10 1.000 1 0 + 2791.12000 490.76524 45.08378 0.00000 56.59973 5 0 10 1.000 1 0 + 2567.89156 467.58293 38.57412 0.00000 60.74861 5 1 10 1.000 1 0 1841.93012 348.76695 27.56657 0.00000 40.84424 5 3 10 1.000 1 0 2210.31615 418.52034 27.56657 0.00000 40.84424 5 14 10 1.200 1 0 0.00000 0.00000 0.00000 0.00000 0.00000 6 4 10 0.000 1 5 @@ -45725,8 +46011,8 @@ AnchorName 4 14 7 10 1.200 0.00000 1 2 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 5 4 7 10 1.000 0.00000 1 1 0 5 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 5 5 7 10 1.000 0.00000 1 1 0 5 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' - 5 0 7 10 1.000 411.61945 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' - 5 1 7 10 1.000 379.56015 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + 5 0 7 10 1.000 440.11284 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + 5 1 7 10 1.000 406.96563 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 5 3 7 10 1.000 283.65380 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 5 14 7 10 1.200 340.38456 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 6 4 7 10 1.000 0.00000 1 1 0 5 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' @@ -45766,12 +46052,12 @@ SupportName 1 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging 1,0' 1 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -2,5' 1 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -6,0' - 1 0 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging 1,0' - 1 0 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -2,5' - 1 0 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -6,0' - 1 1 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging 1,0' - 1 1 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -2,5' - 1 1 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -6,0' + 1 0 7 10 1.000 -2.06047 0.00000 0 0 'Dummy oplegging 1,0' + 1 0 7 10 1.000 -3.43413 0.00000 0 0 'Dummy oplegging -2,5' + 1 0 7 10 1.000 -8.14905 0.00000 0 0 'Dummy oplegging -6,0' + 1 1 7 10 1.000 -1.89702 0.00000 0 0 'Dummy oplegging 1,0' + 1 1 7 10 1.000 -4.23974 0.00000 0 0 'Dummy oplegging -2,5' + 1 1 7 10 1.000 -6.63320 0.00000 0 0 'Dummy oplegging -6,0' 1 3 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging 1,0' 1 3 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -2,5' 1 3 7 10 1.000 0.00000 0.00000 0 0 'Dummy oplegging -6,0' @@ -45820,12 +46106,12 @@ SupportName 4 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging 1,0' 4 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -2,5' 4 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -6,0' - 4 0 7 10 1.000 -24.45381 0.00000 0 0 'Dummy oplegging 1,0' - 4 0 7 10 1.000 146.72212 0.00000 0 0 'Dummy oplegging -2,5' - 4 0 7 10 1.000 -285.38504 0.00000 0 0 'Dummy oplegging -6,0' - 4 1 7 10 1.000 -32.35585 0.00000 0 0 'Dummy oplegging 1,0' - 4 1 7 10 1.000 194.13445 0.00000 0 0 'Dummy oplegging -2,5' - 4 1 7 10 1.000 -372.45976 0.00000 0 0 'Dummy oplegging -6,0' + 4 0 7 10 1.000 -28.61484 0.00000 0 0 'Dummy oplegging 1,0' + 4 0 7 10 1.000 142.89370 0.00000 0 0 'Dummy oplegging -2,5' + 4 0 7 10 1.000 -304.40120 0.00000 0 0 'Dummy oplegging -6,0' + 4 1 7 10 1.000 -36.11300 0.00000 0 0 'Dummy oplegging 1,0' + 4 1 7 10 1.000 187.88267 0.00000 0 0 'Dummy oplegging -2,5' + 4 1 7 10 1.000 -387.03518 0.00000 0 0 'Dummy oplegging -6,0' 4 3 7 10 1.000 -24.95131 0.00000 0 0 'Dummy oplegging 1,0' 4 3 7 10 1.000 149.70726 0.00000 0 0 'Dummy oplegging -2,5' 4 3 7 10 1.000 -290.19848 0.00000 0 0 'Dummy oplegging -6,0' @@ -45838,12 +46124,12 @@ SupportName 5 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging 1,0' 5 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -2,5' 5 5 7 10 1.000 0.00000 0.00000 0 5 'Dummy oplegging -6,0' - 5 0 7 10 1.000 -25.00115 0.00000 0 0 'Dummy oplegging 1,0' - 5 0 7 10 1.000 150.00626 0.00000 0 0 'Dummy oplegging -2,5' - 5 0 7 10 1.000 -291.63357 0.00000 0 0 'Dummy oplegging -6,0' - 5 1 7 10 1.000 -25.41798 0.00000 0 0 'Dummy oplegging 1,0' - 5 1 7 10 1.000 152.50723 0.00000 0 0 'Dummy oplegging -2,5' - 5 1 7 10 1.000 -296.06854 0.00000 0 0 'Dummy oplegging -6,0' + 5 0 7 10 1.000 -28.48036 0.00000 0 0 'Dummy oplegging 1,0' + 5 0 7 10 1.000 142.08690 0.00000 0 0 'Dummy oplegging -2,5' + 5 0 7 10 1.000 -303.31291 0.00000 0 0 'Dummy oplegging -6,0' + 5 1 7 10 1.000 -28.88797 0.00000 0 0 'Dummy oplegging 1,0' + 5 1 7 10 1.000 144.53255 0.00000 0 0 'Dummy oplegging -2,5' + 5 1 7 10 1.000 -307.59576 0.00000 0 0 'Dummy oplegging -6,0' 5 3 7 10 1.000 -25.26310 0.00000 0 0 'Dummy oplegging 1,0' 5 3 7 10 1.000 151.57799 0.00000 0 0 'Dummy oplegging -2,5' 5 3 7 10 1.000 -293.48030 0.00000 0 0 'Dummy oplegging -6,0' @@ -46025,9 +46311,9 @@ Total settlement in point during sheet pile removal Total settlement in point due to vibration [END OF COLUMN INDICATION] [DATA] - -2.00000 0.90000 0.701830696 -0.117376044 0.584454652 0.140366139 0.117376044 0.257742184 0.842196835 - -2.00000 -5.00000 0.611607048 -0.112212372 0.499394676 0.122321410 0.112212372 0.234533782 0.733928458 - -3.00000 -10.00000 0.270813431 -0.106935325 0.163878105 0.054162686 0.106935325 0.161098011 0.324976117 + -2.00000 0.90000 0.519466626 -0.064999035 0.454467591 0.103893325 0.064999035 0.168892360 0.623359951 + -2.00000 -5.00000 0.410427320 -0.059835363 0.350591958 0.082085464 0.059835363 0.141920827 0.492512784 + -3.00000 -10.00000 0.262256366 -0.042134836 0.220121530 0.052451273 0.042134836 0.094586110 0.314707639 2.50000 0.90000 0.451932880 -0.058498637 0.393434243 0.090386576 0.058498637 0.148885213 0.542319456 2.50000 -6.00000 0.346468256 -0.052356433 0.294111823 0.069293651 0.052356433 0.121650084 0.415761908 20.00000 -20.00000 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000 @@ -46037,7 +46323,7 @@ Total settlement in point due to vibration [END OF SETTLEMENT BY VIBRATION] [WARNINGS] [TABLE] -DataCount=13 +DataCount=14 [COLUMN INDICATION] WarningType StageNumber @@ -46057,6 +46343,7 @@ Parameter01 7 3 5 '' '' '' 7 3 0 '' '' '' 7 3 1 '' '' '' + 6 1 -1 '' '' '' 6 2 -1 '' '' '' 6 3 -1 '' '' '' 8 -1 -1 '' '' '' diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shi index 4fda6923..e795a6f5 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects08.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 3:58:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects08.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:48:10 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects08.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2020,6 +2020,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2029,6 +2030,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2038,6 +2040,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2047,6 +2050,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2056,6 +2060,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2065,6 +2070,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2088,7 +2094,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2099,8 +2105,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2111,7 +2119,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2130,6 +2138,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2157,6 +2166,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2184,6 +2194,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2211,6 +2222,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2238,6 +2250,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2265,6 +2278,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2292,6 +2306,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2319,6 +2334,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2329,7 +2345,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2338,14 +2354,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2355,8 +2428,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2373,6 +2446,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2382,7 +2456,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2400,6 +2530,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2427,6 +2558,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2454,6 +2586,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shd index fbe7cdeb..d7fa0439 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects09.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:40 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects09.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -670,6 +670,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -693,7 +694,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -704,8 +705,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -716,7 +719,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -735,6 +738,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -762,6 +766,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -789,6 +794,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -816,6 +822,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -843,6 +850,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -870,6 +878,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -897,6 +906,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -924,6 +934,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -934,7 +945,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -943,14 +954,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -960,8 +1028,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -978,6 +1046,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -987,7 +1056,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1005,6 +1130,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1032,6 +1158,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1059,6 +1186,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shi index 3e4e0fcc..2910ad07 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects09.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:26 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects09.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:40 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects09.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -669,6 +669,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -692,7 +693,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -703,8 +704,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -715,7 +718,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -734,6 +737,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -761,6 +765,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -788,6 +793,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -815,6 +821,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -842,6 +849,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -869,6 +877,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -896,6 +905,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -923,6 +933,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -933,7 +944,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -942,14 +953,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -959,8 +1027,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -977,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -986,7 +1055,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1004,6 +1129,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1031,6 +1157,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1058,6 +1185,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shd index ca5394df..8dc27e5f 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects10.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects10.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -482,7 +483,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -493,8 +494,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -505,7 +508,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -524,6 +527,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -551,6 +555,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,6 +583,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,6 +611,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -632,6 +639,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -659,6 +667,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +695,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -713,6 +723,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -723,7 +734,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -732,14 +743,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,8 +817,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -767,6 +835,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -776,7 +845,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -794,6 +919,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -821,6 +947,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -848,6 +975,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shi index 1e0d6b0a..d22b1778 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects10.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects10.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:40 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects10.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -481,7 +482,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -492,8 +493,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -504,7 +507,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -523,6 +526,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -550,6 +554,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -577,6 +582,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -604,6 +610,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -631,6 +638,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -658,6 +666,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +694,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -712,6 +722,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -722,7 +733,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -731,14 +742,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -748,8 +816,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -766,6 +834,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -775,7 +844,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -793,6 +918,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -820,6 +946,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -847,6 +974,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shd index 8757a461..37f5cdb6 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects11.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects11.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -678,6 +678,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -701,7 +702,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -712,8 +713,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -724,7 +727,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -743,6 +746,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -770,6 +774,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -797,6 +802,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -824,6 +830,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -851,6 +858,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -878,6 +886,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -905,6 +914,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -932,6 +942,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -942,7 +953,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -951,14 +962,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -968,8 +1036,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -986,6 +1054,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -995,7 +1064,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1013,6 +1138,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1040,6 +1166,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1067,6 +1194,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shi index e3b93420..7c4f1cd7 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects11.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects11.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects11.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -677,6 +677,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -700,7 +701,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -711,8 +712,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -723,7 +726,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -742,6 +745,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -769,6 +773,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -796,6 +801,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,6 +829,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -850,6 +857,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -877,6 +885,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -904,6 +913,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -931,6 +941,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -941,7 +952,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -950,14 +961,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -967,8 +1035,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -985,6 +1053,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -994,7 +1063,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1012,6 +1137,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1039,6 +1165,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1066,6 +1193,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shd index 455cded5..96750fcf 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects12.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects12.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -622,6 +622,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -631,6 +632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -654,7 +656,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -665,8 +667,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -677,7 +681,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -696,6 +700,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -723,6 +728,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -750,6 +756,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -777,6 +784,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -804,6 +812,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -831,6 +840,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -858,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -885,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -895,7 +907,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -910,8 +978,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,8 +990,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -939,6 +1008,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -948,7 +1018,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -966,6 +1092,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -993,6 +1120,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1020,6 +1148,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shi index b1f7a78c..4c06d408 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects12.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects12.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects12.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -621,6 +621,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,6 +631,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -653,7 +655,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -664,8 +666,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -676,7 +680,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -695,6 +699,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,6 +727,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,6 +755,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -776,6 +783,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -803,6 +811,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -830,6 +839,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -857,6 +867,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -884,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -894,7 +906,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -909,8 +977,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -920,8 +989,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -938,6 +1007,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -947,7 +1017,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -965,6 +1091,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -992,6 +1119,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1019,6 +1147,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shd index 5c3fad86..d494d822 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:29 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects13.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:42 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects13.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -674,6 +674,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -683,6 +684,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -692,6 +694,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -715,7 +718,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -726,8 +729,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -738,7 +743,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -757,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -784,6 +790,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -811,6 +818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -838,6 +846,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -865,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -892,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -919,6 +930,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -946,6 +958,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -956,7 +969,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -971,8 +1040,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -982,8 +1052,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1000,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1009,7 +1080,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1027,6 +1154,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1054,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1081,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1112,7 +1242,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method A [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1153,6 +1283,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1171,15 +1302,15 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.000 0.000 0.000 1.100 1.000 1.000 - -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.100 1.000 1.000 + -1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.000 0.000 0.000 1.100 1.000 1.000 + -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] [VERIFY DEFORMATION (SERVICEABILITY LIMIT STATE)] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -1197,28 +1328,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -1364,10 +1483,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 15.73 : Percentage mobilized resistance left - 7.61 : Percentage mobilized resistance right - 111.00 : Effective left - 80.39 : Effective right + 15.72 : Percentage mobilized resistance left + 7.60 : Percentage mobilized resistance right + 110.92 : Effective left + 80.31 : Effective right 117.77 : Water pressure left 148.38 : Water pressure right 705.67 : Max effective resistance left @@ -1376,8 +1495,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 40.25 : Vertical force left - 29.88 : Vertical force right + 40.23 : Vertical force left + 29.86 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -1386,10 +1505,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.88 : Active force -40.25 : Passive force --29.88 : Plugged active force -40.25 : Plugged passive force +-29.86 : Active force +40.23 : Passive force +-29.86 : Plugged active force +40.23 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 59.95 : Factor on resistance @@ -1402,163 +1521,151 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -1.02942 - 0.00000 0.00000 -1.01722 - 0.00000 0.00000 -1.00502 - 0.00000 0.00000 -0.99282 - 0.00000 0.00000 -0.98062 - 0.00000 0.00000 -0.96842 - 0.00000 0.00000 -0.96842 - 0.00000 0.00000 -0.95622 - 0.00000 0.00000 -0.94402 - 0.00000 0.00000 -0.93182 - 0.00000 0.00000 -0.91962 - 0.00000 0.00000 -0.90742 - 0.00001 -0.00029 -0.90742 - 0.00004 0.00413 -0.90010 - 0.00035 0.01764 -0.89277 - 0.00123 0.04363 -0.88545 - 0.00312 0.08519 -0.87814 - 0.00649 0.14232 -0.87083 - 0.00649 0.14225 -0.87083 - 0.01181 0.21495 -0.86352 - 0.01954 0.30323 -0.85623 - 0.03016 0.40707 -0.84897 - 0.04412 0.52646 -0.84175 - 0.06190 0.66138 -0.83459 - 0.06191 0.66106 -0.83459 - 0.08266 0.68237 -0.82752 - 0.10167 0.58608 -0.82055 - 0.11790 0.49731 -0.81373 - 0.13158 0.41596 -0.80705 - 0.14294 0.34195 -0.80056 - 0.14293 0.34199 -0.80056 - 0.15217 0.27519 -0.79426 - 0.15952 0.21548 -0.78817 - 0.16517 0.16275 -0.78229 - 0.16935 0.11686 -0.77663 - 0.17225 0.07767 -0.77121 - 0.17224 0.07786 -0.77121 - 0.17478 0.01893 -0.76214 - 0.17443 -0.03074 -0.75382 - 0.17166 -0.07191 -0.74623 - 0.16689 -0.10539 -0.73937 - 0.16054 -0.13192 -0.73322 - 0.16054 -0.13162 -0.73322 - 0.15295 -0.15197 -0.72777 - 0.14443 -0.16684 -0.72296 - 0.13524 -0.17692 -0.71877 - 0.12563 -0.18284 -0.71516 - 0.11580 -0.18519 -0.71208 - 0.11580 -0.18497 -0.71208 - 0.10594 -0.18430 -0.70950 - 0.09619 -0.18111 -0.70737 - 0.08666 -0.17587 -0.70565 - 0.07746 -0.16899 -0.70430 - 0.06866 -0.16086 -0.70328 - 0.06866 -0.16072 -0.70328 - 0.06032 -0.15165 -0.70255 - 0.05249 -0.14194 -0.70208 - 0.04519 -0.13185 -0.70184 - 0.03843 -0.12161 -0.70179 - 0.03222 -0.11139 -0.70190 - 0.03222 -0.11133 -0.70190 - 0.02655 -0.10131 -0.70215 - 0.02141 -0.09162 -0.70251 - 0.01677 -0.08236 -0.70297 - 0.01261 -0.07363 -0.70350 - 0.00890 -0.06549 -0.70408 - 0.00891 -0.06547 -0.70408 - 0.00562 -0.05798 -0.70470 - 0.00271 -0.05115 -0.70534 - 0.00015 -0.04501 -0.70600 - -0.00210 -0.03958 -0.70665 - -0.00409 -0.03484 -0.70730 - -0.00409 -0.03485 -0.70730 - -0.00577 -0.03092 -0.70791 - -0.00728 -0.02761 -0.70849 - -0.00862 -0.02488 -0.70905 - -0.00985 -0.02271 -0.70957 - -0.01097 -0.02106 -0.71005 - -0.01097 -0.02108 -0.71005 - -0.01202 -0.01990 -0.71049 - -0.01302 -0.01914 -0.71088 - -0.01400 -0.01876 -0.71122 - -0.01496 -0.01871 -0.71151 - -0.01592 -0.01891 -0.71173 - -0.01592 -0.01894 -0.71173 - -0.01691 -0.01935 -0.71189 - -0.01792 -0.01988 -0.71199 - -0.01895 -0.02048 -0.71201 - -0.02002 -0.02106 -0.71196 - -0.02112 -0.02155 -0.71183 - -0.02112 -0.02159 -0.71183 - -0.02224 -0.02190 -0.71162 - -0.02337 -0.02194 -0.71131 - -0.02449 -0.02162 -0.71092 - -0.02558 -0.02085 -0.71042 - -0.02662 -0.01952 -0.70983 - -0.02662 -0.01956 -0.70983 - -0.02758 -0.01757 -0.70913 - -0.02842 -0.01479 -0.70832 - -0.02909 -0.01113 -0.70740 - -0.02954 -0.00645 -0.70636 - -0.02973 -0.00065 -0.70520 - -0.02973 -0.00070 -0.70520 - -0.02959 0.00635 -0.70393 - -0.02905 0.01477 -0.70254 - -0.02805 0.02467 -0.70103 - -0.02649 0.03619 -0.69942 - -0.02430 0.04941 -0.69770 - -0.02430 0.04938 -0.69770 - -0.02138 0.06442 -0.69588 - -0.01764 0.08139 -0.69398 - -0.01297 0.10034 -0.69201 - -0.00728 0.12135 -0.68999 - -0.00046 0.14445 -0.68794 - -0.00046 0.14445 -0.68794 - 0.00617 0.12074 -0.68595 - 0.01165 0.09902 -0.68398 - 0.01610 0.07925 -0.68205 - 0.01961 0.06138 -0.68017 - 0.02227 0.04534 -0.67837 - 0.02227 0.04538 -0.67837 - 0.02417 0.03110 -0.67666 - 0.02541 0.01848 -0.67504 - 0.02605 0.00744 -0.67351 - 0.02618 -0.00212 -0.67208 - 0.02586 -0.01029 -0.67075 - 0.02586 -0.01025 -0.67075 - 0.02517 -0.01715 -0.66951 - 0.02416 -0.02285 -0.66837 - 0.02290 -0.02746 -0.66732 - 0.02143 -0.03107 -0.66636 - 0.01981 -0.03374 -0.66547 - 0.01981 -0.03371 -0.66547 - 0.01808 -0.03554 -0.66466 - 0.01627 -0.03660 -0.66392 - 0.01443 -0.03694 -0.66324 - 0.01259 -0.03663 -0.66261 - 0.01078 -0.03572 -0.66203 - 0.01078 -0.03570 -0.66203 - 0.00902 -0.03423 -0.66149 - 0.00736 -0.03223 -0.66099 - 0.00581 -0.02974 -0.66051 - 0.00440 -0.02678 -0.66006 - 0.00314 -0.02338 -0.65962 - 0.00314 -0.02338 -0.65962 - 0.00206 -0.01954 -0.65919 - 0.00119 -0.01528 -0.65877 - 0.00054 -0.01060 -0.65835 - 0.00014 -0.00551 -0.65794 - 0.00000 0.00000 -0.65753 + 0.00000 0.00000 -1.05750 + 0.00000 0.00000 -1.04439 + 0.00000 0.00000 -1.03127 + 0.00000 0.00000 -1.01816 + 0.00000 0.00000 -1.00504 + 0.00000 0.00000 -0.99192 + 0.00000 0.00000 -0.99192 + 0.00000 0.00000 -0.97881 + 0.00000 0.00000 -0.96569 + 0.00000 0.00000 -0.95257 + 0.00000 0.00000 -0.93946 + 0.00000 0.00000 -0.92634 + 0.00007 -0.00123 -0.92634 + 0.00035 0.01643 -0.91058 + 0.00293 0.07843 -0.89481 + 0.01092 0.19860 -0.87908 + 0.02802 0.38170 -0.86346 + 0.05798 0.62763 -0.84799 + 0.05798 0.62598 -0.84799 + 0.09909 0.66476 -0.83284 + 0.13329 0.48052 -0.81824 + 0.15737 0.32691 -0.80430 + 0.17312 0.20306 -0.79117 + 0.18231 0.10791 -0.77899 + 0.18231 0.10826 -0.77899 + 0.18625 0.04151 -0.76902 + 0.18691 -0.01503 -0.75984 + 0.18481 -0.06220 -0.75145 + 0.18043 -0.10083 -0.74383 + 0.17420 -0.13176 -0.73699 + 0.17420 -0.13143 -0.73699 + 0.16652 -0.15546 -0.73090 + 0.15772 -0.17338 -0.72553 + 0.14812 -0.18591 -0.72082 + 0.13798 -0.19376 -0.71674 + 0.12752 -0.19757 -0.71325 + 0.12753 -0.19732 -0.71325 + 0.11698 -0.19770 -0.71030 + 0.10649 -0.19520 -0.70786 + 0.09620 -0.19034 -0.70587 + 0.08622 -0.18358 -0.70429 + 0.07664 -0.17532 -0.70308 + 0.07665 -0.17517 -0.70308 + 0.06755 -0.16580 -0.70219 + 0.05897 -0.15564 -0.70159 + 0.05096 -0.14497 -0.70125 + 0.04351 -0.13405 -0.70112 + 0.03666 -0.12310 -0.70118 + 0.03666 -0.12303 -0.70118 + 0.03039 -0.11222 -0.70140 + 0.02468 -0.10171 -0.70174 + 0.01953 -0.09163 -0.70219 + 0.01490 -0.08207 -0.70273 + 0.01076 -0.07312 -0.70333 + 0.01077 -0.07310 -0.70333 + 0.00709 -0.06481 -0.70397 + 0.00384 -0.05722 -0.70465 + 0.00097 -0.05037 -0.70534 + -0.00155 -0.04425 -0.70603 + -0.00376 -0.03887 -0.70672 + -0.00376 -0.03888 -0.70672 + -0.00564 -0.03438 -0.70737 + -0.00731 -0.03054 -0.70800 + -0.00879 -0.02733 -0.70860 + -0.01013 -0.02471 -0.70916 + -0.01134 -0.02266 -0.70969 + -0.01134 -0.02268 -0.70969 + -0.01247 -0.02114 -0.71016 + -0.01353 -0.02007 -0.71059 + -0.01454 -0.01941 -0.71097 + -0.01553 -0.01911 -0.71129 + -0.01651 -0.01910 -0.71154 + -0.01651 -0.01913 -0.71154 + -0.01750 -0.01935 -0.71173 + -0.01850 -0.01973 -0.71185 + -0.01953 -0.02020 -0.71190 + -0.02058 -0.02068 -0.71187 + -0.02166 -0.02109 -0.71176 + -0.02165 -0.02112 -0.71176 + -0.02275 -0.02137 -0.71156 + -0.02385 -0.02137 -0.71127 + -0.02494 -0.02102 -0.71089 + -0.02600 -0.02023 -0.71041 + -0.02701 -0.01889 -0.70983 + -0.02701 -0.01893 -0.70983 + -0.02794 -0.01694 -0.70913 + -0.02874 -0.01417 -0.70833 + -0.02938 -0.01052 -0.70742 + -0.02981 -0.00587 -0.70638 + -0.02996 -0.00010 -0.70523 + -0.02996 -0.00015 -0.70523 + -0.02980 0.00687 -0.70396 + -0.02923 0.01526 -0.70257 + -0.02820 0.02513 -0.70107 + -0.02662 0.03661 -0.69945 + -0.02441 0.04980 -0.69774 + -0.02441 0.04976 -0.69774 + -0.02147 0.06477 -0.69592 + -0.01771 0.08170 -0.69401 + -0.01303 0.10063 -0.69204 + -0.00733 0.12160 -0.69002 + -0.00049 0.14467 -0.68797 + -0.00049 0.14467 -0.68797 + 0.00614 0.12094 -0.68597 + 0.01164 0.09919 -0.68400 + 0.01609 0.07939 -0.68207 + 0.01961 0.06150 -0.68019 + 0.02227 0.04544 -0.67839 + 0.02227 0.04548 -0.67839 + 0.02418 0.03118 -0.67668 + 0.02542 0.01855 -0.67506 + 0.02606 0.00749 -0.67353 + 0.02619 -0.00208 -0.67210 + 0.02588 -0.01027 -0.67076 + 0.02588 -0.01023 -0.67076 + 0.02519 -0.01714 -0.66953 + 0.02418 -0.02285 -0.66838 + 0.02292 -0.02747 -0.66733 + 0.02145 -0.03108 -0.66637 + 0.01983 -0.03377 -0.66548 + 0.01983 -0.03373 -0.66548 + 0.01809 -0.03557 -0.66467 + 0.01629 -0.03663 -0.66393 + 0.01444 -0.03697 -0.66324 + 0.01260 -0.03667 -0.66262 + 0.01079 -0.03575 -0.66203 + 0.01079 -0.03573 -0.66203 + 0.00903 -0.03426 -0.66149 + 0.00737 -0.03226 -0.66099 + 0.00582 -0.02977 -0.66051 + 0.00440 -0.02681 -0.66005 + 0.00314 -0.02341 -0.65961 + 0.00314 -0.02340 -0.65961 + 0.00207 -0.01956 -0.65918 + 0.00119 -0.01530 -0.65876 + 0.00054 -0.01061 -0.65835 + 0.00014 -0.00551 -0.65793 + 0.00000 0.00000 -0.65752 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -1620,7 +1727,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -1632,9 +1739,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 65.04500 0.00000 11.71107 0.00000 0.00000 65.24700 0.00000 27.14095 0.00000 - -0.15000 65.33500 0.00000 37.81784 0.00000 -0.30000 65.40000 0.00000 49.10294 0.00000 - -0.45000 65.45300 0.00000 60.99625 0.00000 -0.60000 65.49800 0.00000 73.49771 0.00000 -0.86667 65.56600 0.00000 97.22404 0.00000 -1.13333 65.62400 33.91400 122.87205 0.54247 @@ -1660,7 +1765,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -1673,10 +1778,8 @@ Lambda passive [DATA] 0.37500 7.25000 46.84428 0.00000 0.61732 0.00000 6.46128 0.12500 11.75000 61.71952 0.00000 0.61732 0.00000 5.25273 - -0.07500 14.61425 71.17926 0.00000 0.61732 0.00000 4.87054 - -0.22500 15.84275 75.23400 0.00000 0.61732 0.00000 4.74880 - -0.37500 17.07125 79.28870 0.00000 0.61732 0.00000 4.64457 - -0.52500 18.29975 83.34313 0.00000 0.61732 0.00000 4.55433 + -0.15000 15.22850 73.20663 0.00000 0.61732 0.00000 4.80721 + -0.45000 17.68550 81.31592 0.00000 0.61732 0.00000 4.59789 -0.73333 20.00600 88.97373 0.00000 0.61732 0.00000 4.44735 -1.00000 22.19000 96.18003 2.03427 0.61732 0.09167 4.33439 -1.26667 24.37400 103.38543 3.56748 0.61732 0.14636 4.24163 @@ -1701,7 +1804,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -1724,144 +1827,132 @@ Status character 0.00000 0.00000 64.08325 7.53126 1 0 A 0.00000 0.00000 68.81070 8.08685 1 0 A 0.00000 0.00000 73.53816 8.64243 1 0 A - 0.00000 0.00000 68.18753 8.64243 1 0 A - 0.00000 0.29430 69.38422 8.79411 1 0 A - 0.01804 0.58860 70.58092 8.94578 110 0 - - 0.24291 0.88290 71.77761 9.09746 110 0 - - 0.46775 1.17720 72.97430 9.24913 110 0 - - 0.69255 1.47150 74.17099 9.40081 110 0 - - 0.69255 1.47150 72.31705 9.40081 110 0 - - 0.91730 1.76580 73.48383 9.55248 110 0 - - 1.14189 2.06010 74.65061 9.70415 110 0 - - 1.36618 2.35440 75.81739 9.85583 110 0 - - 1.59002 2.64870 76.98417 10.00750 110 0 - - 1.81327 2.94300 78.15095 10.15918 110 0 - - 1.81327 2.94300 76.43577 10.15918 110 0 - - 2.03568 3.23730 77.57694 10.31085 110 0 - - 2.25698 3.53160 78.71811 10.46253 110 0 - - 2.47694 3.82590 79.85928 10.61420 110 0 - - 2.69533 4.12020 81.00046 10.76588 110 0 - - 2.91195 4.41450 82.14163 10.91755 110 0 - - 2.91195 4.41450 80.54563 10.91755 110 0 - - 3.12660 4.70880 81.66463 11.06923 110 0 - - 3.33919 5.00310 82.78363 11.22090 110 0 - - 3.54966 5.29740 83.90263 11.37258 110 0 - - 3.75791 5.59170 85.02163 11.52425 110 0 - - 3.96387 5.88600 86.14063 11.67593 110 0 - - 3.96387 5.88600 84.11722 11.67593 110 0 - - 4.32418 6.40920 86.05982 11.94557 110 0 - - 4.67703 6.93240 88.00243 12.21521 110 0 - - 5.02253 7.45560 89.94503 12.48486 110 0 - - 5.36079 7.97880 91.88763 12.75450 110 0 - - 5.69191 8.50200 93.83024 13.02414 110 0 - - 5.69191 8.50200 91.44688 13.02414 110 0 - - 6.01611 9.02520 93.34014 13.29379 110 0 - - 6.33379 9.54840 95.23340 13.56343 110 0 - - 6.64533 10.07160 97.12666 13.83308 110 0 - - 6.95111 10.59480 99.01992 14.10272 110 0 - - 7.25154 11.11800 100.91318 14.37236 110 0 - - 7.25154 11.11800 98.75357 14.37236 110 0 - - 7.54701 11.64120 100.60631 14.64201 110 0 - - 7.83796 12.16440 102.45905 14.91165 110 0 - - 8.12481 12.68760 104.31180 15.18130 110 0 - - 8.40794 13.21080 106.16454 15.45094 110 0 - - 8.68777 13.73400 108.01728 15.72058 110 0 - - 8.68777 13.73400 106.04283 15.72058 110 0 - - 8.96469 14.25720 107.86171 15.99023 110 0 - - 9.23904 14.78040 109.68058 16.25987 110 0 - - 9.51113 15.30360 111.49946 16.52952 110 0 - - 9.78127 15.82680 113.31834 16.79916 110 0 - - 10.04977 16.35000 115.13721 17.06880 110 0 - - 10.04977 16.35000 113.31856 17.06880 110 0 - - 10.31692 16.87320 115.10870 17.33845 110 0 - - 10.58294 17.39640 116.89885 17.60809 110 0 - - 10.84803 17.91960 118.68900 17.87773 110 0 - - 11.11239 18.44280 120.47914 18.14738 110 0 - - 11.37621 18.96600 122.26929 18.41702 110 0 - - 11.37621 18.96600 120.58357 18.41702 110 0 - - 11.63967 19.48920 122.34903 18.68667 110 0 - - 11.90289 20.01240 124.11450 18.95631 110 0 - - 12.16598 20.53560 125.87996 19.22595 110 0 - - 12.42906 21.05880 127.64543 19.49560 110 0 - - 12.69222 21.58200 129.41089 19.76524 110 0 - - 12.69222 21.58200 127.86617 19.76524 110 0 - - 12.94617 22.08651 129.54826 20.02526 110 0 - - 13.20034 22.59103 131.23035 20.28527 110 0 - - 13.45480 23.09554 132.91245 20.54528 110 0 - - 13.70959 23.60006 134.59454 20.80530 110 0 - - 13.96477 24.10457 136.27663 21.06531 110 0 - - 13.96477 24.10457 134.85515 21.06531 110 0 - - 14.22040 24.60909 136.51970 21.32532 110 0 - - 14.47650 25.11360 138.18425 21.58534 110 0 - - 14.73311 25.61811 139.84879 21.84535 110 0 - - 14.99028 26.12263 141.51334 22.10537 110 0 - - 15.24805 26.62714 143.17789 22.36538 110 0 - - 15.24805 26.62714 141.83882 22.36538 110 0 - - 15.50645 27.13166 143.48780 22.62539 110 0 - - 15.76551 27.63617 145.13678 22.88541 110 0 - - 16.02529 28.14069 146.78576 23.14542 110 0 - - 16.28582 28.64520 148.43474 23.40543 110 0 - - 16.54715 29.14971 150.08372 23.66545 110 0 - - 16.54715 29.14971 148.81801 23.66545 110 0 - - 16.80931 29.65423 150.45309 23.92546 110 0 - - 17.07236 30.15874 152.08816 24.18548 110 0 - - 17.33633 30.66326 153.72323 24.44549 110 0 - - 17.60127 31.16777 155.35830 24.70550 110 0 - - 17.86723 31.67229 156.99338 24.96552 110 0 - - 17.86723 31.67229 155.79339 24.96552 110 0 - - 18.13425 32.17680 157.41597 25.22553 110 0 - - 18.40236 32.68131 159.03854 25.48554 110 0 - - 18.67160 33.18583 160.66112 25.74556 110 0 - - 18.94198 33.69034 162.28369 26.00557 110 0 - - 19.21354 34.19486 163.90627 26.26559 110 0 - - 19.21354 34.19486 162.76550 26.26559 110 0 - - 19.48629 34.69937 164.37678 26.52560 110 0 - - 19.76021 35.20389 165.98807 26.78561 110 0 - - 20.03528 35.70840 167.59935 27.04563 110 0 - - 20.31143 36.21291 169.21063 27.30564 110 0 - - 20.58864 36.71743 170.82191 27.56565 110 0 - - 20.58864 36.71743 169.73479 27.56565 110 0 - - 20.86685 37.22194 171.33581 27.82567 110 0 - - 21.14591 37.72646 172.93684 28.08568 110 0 - - 21.42564 38.23097 174.53787 28.34570 110 0 - - 21.70584 38.73549 176.13890 28.60571 110 0 - - 21.98634 39.24000 177.73992 28.86572 110 0 - - 18.65202 39.24000 331.75056 25.53140 110 0 - - 18.95014 39.73050 335.36534 25.80960 110 0 - - 19.24803 40.22100 338.98012 26.08779 110 0 - - 19.54552 40.71150 342.59489 26.36598 110 0 - - 19.84244 41.20200 346.20967 26.64417 110 0 - - 20.13862 41.69250 349.82444 26.92236 110 0 - - 20.13862 41.69250 331.22851 26.92236 110 0 - - 20.43393 42.18300 334.65113 27.20056 110 0 - - 20.72833 42.67350 338.07375 27.47875 110 0 - - 21.02180 43.16400 341.49637 27.75694 110 0 - - 21.31431 43.65450 344.91900 28.03513 110 0 - - 21.60583 44.14500 348.34162 28.31332 110 0 - - 21.60583 44.14500 339.55371 28.31332 110 0 - - 21.89637 44.63550 342.88999 28.59151 110 0 - - 22.18596 45.12600 346.22626 28.86971 110 0 - - 22.47466 45.61650 349.56254 29.14790 110 0 - - 22.76250 46.10700 352.89882 29.42609 110 0 - - 23.04954 46.59750 356.23509 29.70428 110 0 - - 23.04954 46.59750 350.94527 29.70428 110 0 - - 23.33583 47.08800 354.23200 29.98247 110 0 - - 23.62144 47.57850 357.51874 30.26067 110 0 - - 23.90645 48.06900 360.80547 30.53886 110 0 - - 24.19091 48.55950 364.09221 30.81705 110 0 - - 24.47490 49.05000 367.37894 31.09524 110 0 - - 24.47490 49.05000 363.82988 31.09524 110 0 - + 0.00000 0.00000 67.30097 8.64243 1 0 A + 0.00000 0.58860 69.66323 8.94578 1 0 A + 0.30106 1.17720 72.02550 9.24913 110 0 - + 0.76165 1.76580 74.38776 9.55248 110 0 - + 1.22124 2.35440 76.75003 9.85583 110 0 - + 1.67927 2.94300 79.11229 10.15918 110 0 - + 1.67927 2.94300 75.66741 10.15918 110 0 - + 2.13409 3.53160 77.92681 10.46253 110 0 - + 2.58352 4.12020 80.18621 10.76588 110 0 - + 3.02622 4.70880 82.44562 11.06923 110 0 - + 3.46084 5.29740 84.70502 11.37258 110 0 - + 3.88604 5.88600 86.96442 11.67593 110 0 - + 3.88604 5.88600 84.11722 11.67593 110 0 - + 4.25542 6.40920 86.05982 11.94557 110 0 - + 4.61684 6.93240 88.00243 12.21521 110 0 - + 4.97040 7.45560 89.94503 12.48486 110 0 - + 5.31617 7.97880 91.88763 12.75450 110 0 - + 5.65422 8.50200 93.83024 13.02414 110 0 - + 5.65422 8.50200 91.44688 13.02414 110 0 - + 5.98475 9.02520 93.34014 13.29379 110 0 - + 6.30818 9.54840 95.23340 13.56343 110 0 - + 6.62491 10.07160 97.12666 13.83308 110 0 - + 6.93535 10.59480 99.01992 14.10272 110 0 - + 7.23989 11.11800 100.91318 14.37236 110 0 - + 7.23989 11.11800 98.75357 14.37236 110 0 - + 7.53898 11.64120 100.60631 14.64201 110 0 - + 7.83308 12.16440 102.45905 14.91165 110 0 - + 8.12263 12.68760 104.31180 15.18130 110 0 - + 8.40806 13.21080 106.16454 15.45094 110 0 - + 8.68982 13.73400 108.01728 15.72058 110 0 - + 8.68982 13.73400 106.04283 15.72058 110 0 - + 8.96832 14.25720 107.86171 15.99023 110 0 - + 9.24395 14.78040 109.68058 16.25987 110 0 - + 9.51704 15.30360 111.49946 16.52952 110 0 - + 9.78793 15.82680 113.31834 16.79916 110 0 - + 10.05697 16.35000 115.13721 17.06880 110 0 - + 10.05697 16.35000 113.31856 17.06880 110 0 - + 10.32447 16.87320 115.10870 17.33845 110 0 - + 10.59068 17.39640 116.89885 17.60809 110 0 - + 10.85581 17.91960 118.68900 17.87773 110 0 - + 11.12009 18.44280 120.47914 18.14738 110 0 - + 11.38373 18.96600 122.26929 18.41702 110 0 - + 11.38373 18.96600 120.58357 18.41702 110 0 - + 11.64695 19.48920 122.34903 18.68667 110 0 - + 11.90985 20.01240 124.11450 18.95631 110 0 - + 12.17258 20.53560 125.87996 19.22595 110 0 - + 12.43526 21.05880 127.64543 19.49560 110 0 - + 12.69800 21.58200 129.41089 19.76524 110 0 - + 12.69800 21.58200 127.86617 19.76524 110 0 - + 12.95152 22.08651 129.54826 20.02526 110 0 - + 13.20527 22.59103 131.23035 20.28527 110 0 - + 13.45930 23.09554 132.91245 20.54528 110 0 - + 13.71368 23.60006 134.59454 20.80530 110 0 - + 13.96845 24.10457 136.27663 21.06531 110 0 - + 13.96845 24.10457 134.85515 21.06531 110 0 - + 14.22368 24.60909 136.51970 21.32532 110 0 - + 14.47941 25.11360 138.18425 21.58534 110 0 - + 14.73567 25.61811 139.84879 21.84535 110 0 - + 14.99251 26.12263 141.51334 22.10537 110 0 - + 15.24996 26.62714 143.17789 22.36538 110 0 - + 15.24996 26.62714 141.83882 22.36538 110 0 - + 15.50807 27.13166 143.48780 22.62539 110 0 - + 15.76687 27.63617 145.13678 22.88541 110 0 - + 16.02641 28.14069 146.78576 23.14542 110 0 - + 16.28672 28.64520 148.43474 23.40543 110 0 - + 16.54785 29.14971 150.08372 23.66545 110 0 - + 16.54785 29.14971 148.81801 23.66545 110 0 - + 16.80984 29.65423 150.45309 23.92546 110 0 - + 17.07273 30.15874 152.08816 24.18548 110 0 - + 17.33657 30.66326 153.72323 24.44549 110 0 - + 17.60140 31.16777 155.35830 24.70550 110 0 - + 17.86725 31.67229 156.99338 24.96552 110 0 - + 17.86725 31.67229 155.79339 24.96552 110 0 - + 18.13419 32.17680 157.41597 25.22553 110 0 - + 18.40223 32.68131 159.03854 25.48554 110 0 - + 18.67141 33.18583 160.66112 25.74556 110 0 - + 18.94174 33.69034 162.28369 26.00557 110 0 - + 19.21326 34.19486 163.90627 26.26559 110 0 - + 19.21326 34.19486 162.76550 26.26559 110 0 - + 19.48598 34.69937 164.37678 26.52560 110 0 - + 19.75989 35.20389 165.98807 26.78561 110 0 - + 20.03494 35.70840 167.59935 27.04563 110 0 - + 20.31110 36.21291 169.21063 27.30564 110 0 - + 20.58830 36.71743 170.82191 27.56565 110 0 - + 20.58830 36.71743 169.73479 27.56565 110 0 - + 20.86651 37.22194 171.33581 27.82567 110 0 - + 21.14558 37.72646 172.93684 28.08568 110 0 - + 21.42532 38.23097 174.53787 28.34570 110 0 - + 21.70554 38.73549 176.13890 28.60571 110 0 - + 21.98605 39.24000 177.73992 28.86572 110 0 - + 18.65173 39.24000 331.75056 25.53140 110 0 - + 18.94987 39.73050 335.36534 25.80960 110 0 - + 19.24778 40.22100 338.98012 26.08779 110 0 - + 19.54529 40.71150 342.59489 26.36598 110 0 - + 19.84222 41.20200 346.20967 26.64417 110 0 - + 20.13842 41.69250 349.82444 26.92236 110 0 - + 20.13842 41.69250 331.22851 26.92236 110 0 - + 20.43374 42.18300 334.65113 27.20056 110 0 - + 20.72816 42.67350 338.07375 27.47875 110 0 - + 21.02165 43.16400 341.49637 27.75694 110 0 - + 21.31417 43.65450 344.91900 28.03513 110 0 - + 21.60571 44.14500 348.34162 28.31332 110 0 - + 21.60571 44.14500 339.55371 28.31332 110 0 - + 21.89626 44.63550 342.88999 28.59151 110 0 - + 22.18587 45.12600 346.22626 28.86971 110 0 - + 22.47458 45.61650 349.56254 29.14790 110 0 - + 22.76244 46.10700 352.89882 29.42609 110 0 - + 23.04949 46.59750 356.23509 29.70428 110 0 - + 23.04949 46.59750 350.94527 29.70428 110 0 - + 23.33579 47.08800 354.23200 29.98247 110 0 - + 23.62141 47.57850 357.51874 30.26067 110 0 - + 23.90642 48.06900 360.80547 30.53886 110 0 - + 24.19090 48.55950 364.09221 30.81705 110 0 - + 24.47489 49.05000 367.37894 31.09524 110 0 - + 24.47489 49.05000 363.82988 31.09524 110 0 - 24.75849 49.54050 367.08486 31.37343 110 0 - - 25.04174 50.03100 370.33985 31.65162 110 0 - - 25.32471 50.52150 373.59483 31.92982 110 0 - - 25.60746 51.01200 376.84981 32.20801 110 0 - - 25.89004 51.50250 380.10480 32.48620 110 0 - - 25.89004 51.50250 377.56543 32.48620 110 0 - - 26.17252 51.99300 380.79867 32.76439 110 0 - - 26.45491 52.48350 384.03191 33.04258 110 0 - - 26.73726 52.97400 387.26515 33.32078 110 0 - - 27.01958 53.46450 390.49838 33.59897 110 0 - - 27.30189 53.95500 393.73162 33.87716 110 0 - + 25.04175 50.03100 370.33985 31.65162 110 0 - + 25.32473 50.52150 373.59483 31.92982 110 0 - + 25.60748 51.01200 376.84981 32.20801 110 0 - + 25.89008 51.50250 380.10480 32.48620 110 0 - + 25.89008 51.50250 377.56543 32.48620 110 0 - + 26.17256 51.99300 380.79867 32.76439 110 0 - + 26.45496 52.48350 384.03191 33.04258 110 0 - + 26.73731 52.97400 387.26515 33.32078 110 0 - + 27.01964 53.46450 390.49838 33.59897 110 0 - + 27.30196 53.95500 393.73162 33.87716 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1874,8 +1965,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 45.857 'Clay, sl san, moderate' - -4.00 34.536 'Sand, sl sil, moderate' + 4.00 45.777 'Clay, sl san, moderate' + -4.00 34.535 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -1888,7 +1979,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -12.29 'Clay, sl san, moderate' + 4.00 -12.27 'Clay, sl san, moderate' -4.00 -17.60 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -1952,7 +2043,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=22 +DataCount=21 [COLUMN INDICATION] Slide plane position Theta min @@ -1962,7 +2053,6 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.30000 0.00000 0.00000 0.00000 0.00000 - -0.45000 64.12100 0.00000 4.09484 0.00000 -0.60000 64.41100 0.00000 9.53386 0.00000 -0.86667 64.70800 0.00000 21.35938 0.00000 -1.13333 64.88600 0.00000 35.11086 0.00000 @@ -1988,7 +2078,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=21 +DataCount=20 [COLUMN INDICATION] Position Vertical stress @@ -1999,8 +2089,7 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.37500 1.35000 27.29892 0.00000 0.61732 0.00000 20.22142 - -0.52500 4.05000 36.26015 0.00000 0.61732 0.00000 8.95312 + -0.45000 2.70000 31.77953 0.00000 0.61732 0.00000 11.77020 -0.73333 6.49200 44.34571 0.00000 0.61732 0.00000 6.83082 -1.00000 8.67600 51.56802 0.00000 0.61732 0.00000 5.94376 -1.26667 10.86000 58.78656 0.00000 0.61732 0.00000 5.41313 @@ -2025,7 +2114,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2054,138 +2143,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00002 0.00000 0.00002 0.00000 202 100 P - 8.60852 0.00000 10.91957 0.33335 110 79 - - 8.87225 0.00000 21.83914 0.66670 110 41 - - 9.13732 0.00000 32.75870 1.00005 110 28 - - 9.40395 0.00000 43.67827 1.33340 110 22 - - 9.67236 0.00000 54.59784 1.66675 110 18 - - 9.67236 0.00000 24.17343 1.66675 110 40 - - 9.94274 0.00000 29.00812 2.00011 110 34 - - 10.21517 0.00000 33.84280 2.33346 110 30 - - 10.48973 0.00000 38.67749 2.66681 110 27 - - 10.76650 0.00000 43.51218 3.00016 110 25 - - 11.04557 0.00000 48.34686 3.33351 110 23 - - 11.04557 0.00000 36.88645 3.33351 110 30 - - 11.22454 0.52320 39.87015 3.60315 110 28 - - 11.41098 1.04640 42.85386 3.87280 110 27 - - 11.60477 1.56960 45.83756 4.14244 110 25 - - 11.80580 2.09280 48.82127 4.41208 110 24 - - 12.01396 2.61600 51.80497 4.68173 110 23 - - 12.01396 2.61600 45.07744 4.68173 110 27 - - 12.22905 3.13920 47.67368 4.95137 110 26 - - 12.45066 3.66240 50.26991 5.22102 110 25 - - 12.67841 4.18560 52.86614 5.49066 110 24 - - 12.91191 4.70880 55.46237 5.76030 110 23 - - 13.15078 5.23200 58.05861 6.02995 110 23 - - 13.15078 5.23200 52.87542 6.02995 110 25 - - 13.39459 5.75520 55.23988 6.29959 110 24 - - 13.64292 6.27840 57.60433 6.56924 110 24 - - 13.89537 6.80160 59.96879 6.83888 110 23 - - 14.15152 7.32480 62.33324 7.10852 110 23 - - 14.41098 7.84800 64.69769 7.37817 110 22 - - 14.41098 7.84800 60.47619 7.37817 110 24 - - 14.67335 8.37120 62.68636 7.64781 110 23 - - 14.93829 8.89440 64.89654 7.91746 110 23 - - 15.20549 9.41760 67.10671 8.18710 110 23 - - 15.47464 9.94080 69.31688 8.45674 110 22 - - 15.74542 10.46400 71.52706 8.72639 110 22 - - 15.74542 10.46400 67.96374 8.72639 110 23 - - 16.01756 10.98720 70.06380 8.99603 110 23 - - 16.29082 11.51040 72.16387 9.26567 110 23 - - 16.56502 12.03360 74.26394 9.53532 110 22 - - 16.83995 12.55680 76.36401 9.80496 110 22 - - 17.11542 13.08000 78.46408 10.07461 110 22 - - 17.11542 13.08000 75.38015 10.07461 110 23 - - 17.39125 13.60320 77.39768 10.34425 110 22 - - 17.66731 14.12640 79.41521 10.61389 110 22 - - 17.94351 14.64960 81.43273 10.88354 110 22 - - 18.21972 15.17280 83.45026 11.15318 110 22 - - 18.49584 15.69600 85.46779 11.42283 110 22 - - 18.49584 15.69600 82.79213 11.42283 110 22 - - 18.76193 16.20051 84.67670 11.68284 110 22 - - 19.02778 16.70503 86.56127 11.94285 110 22 - - 19.29335 17.20954 88.44583 12.20287 110 22 - - 19.55859 17.71406 90.33040 12.46288 110 22 - - 19.82343 18.21857 92.21497 12.72289 110 21 - - 19.82343 18.21857 89.86185 12.72289 110 22 - - 20.08783 18.72309 91.69833 12.98291 110 22 - - 20.35176 19.22760 93.53481 13.24292 110 22 - - 20.61517 19.73211 95.37129 13.50294 110 22 - - 20.87803 20.23663 97.20776 13.76295 110 21 - - 21.14029 20.74114 99.04424 14.02296 110 21 - - 21.14029 20.74114 96.90921 14.02296 110 22 - - 21.40192 21.24566 98.70610 14.28298 110 22 - - 21.66289 21.75017 100.50299 14.54299 110 22 - - 21.92313 22.25469 102.29988 14.80300 110 21 - - 22.18263 22.75920 104.09677 15.06302 110 21 - - 22.44133 23.26371 105.89366 15.32303 110 21 - - 22.44133 23.26371 103.93956 15.32303 110 22 - - 22.69920 23.76823 105.70329 15.58305 110 21 - - 22.95618 24.27274 107.46703 15.84306 110 21 - - 23.21223 24.77726 109.23076 16.10307 110 21 - - 23.46732 25.28177 110.99449 16.36309 110 21 - - 23.72139 25.78629 112.75822 16.62310 110 21 - - 23.72139 25.78629 110.95670 16.62310 110 21 - - 23.97439 26.29080 112.69225 16.88311 110 21 - - 24.22631 26.79531 114.42780 17.14313 110 21 - - 24.47710 27.29983 116.16336 17.40314 110 21 - - 24.72674 27.80434 117.89891 17.66316 110 21 - - 24.97522 28.30886 119.63446 17.92317 110 21 - - 24.97522 28.30886 117.96334 17.92317 110 21 - - 25.22249 28.81337 119.67465 18.18318 110 21 - - 25.46859 29.31789 121.38596 18.44320 110 21 - - 25.71356 29.82240 123.09727 18.70321 110 21 - - 25.95743 30.32691 124.80858 18.96322 110 21 - - 26.20025 30.83143 126.51989 19.22324 110 21 - - 26.20025 30.83143 124.96151 19.22324 110 21 - - 26.44207 31.33594 126.65174 19.48325 110 21 - - 26.68304 31.84046 128.34197 19.74327 110 21 - - 26.92334 32.34497 130.03221 20.00328 110 21 - - 27.16316 32.84949 131.72244 20.26329 110 21 - - 27.40269 33.35400 133.41267 20.52331 110 21 - - 25.03202 33.35400 236.45945 18.15263 110 11 - - 25.29028 33.84450 240.08322 18.43082 110 11 - - 25.54877 34.33500 243.70700 18.70902 110 10 - - 25.80766 34.82550 247.33078 18.98721 110 10 - - 26.06713 35.31600 250.95455 19.26540 110 10 - - 26.32733 35.80650 254.57833 19.54359 110 10 - - 26.32733 35.80650 239.45594 19.54359 110 11 - - 26.58841 36.29700 242.86445 19.82178 110 11 - - 26.85039 36.78750 246.27297 20.09997 110 11 - - 27.11331 37.27800 249.68149 20.37817 110 11 - - 27.37718 37.76850 253.09001 20.65636 110 11 - - 27.64204 38.25900 256.49853 20.93455 110 11 - - 27.64204 38.25900 249.78209 20.93455 110 11 - - 27.90789 38.74950 253.10135 21.21274 110 11 - - 28.17468 39.24000 256.42062 21.49093 110 11 - - 28.44237 39.73050 259.73988 21.76913 110 11 - - 28.71091 40.22100 263.05915 22.04732 110 11 - - 28.98025 40.71150 266.37842 22.32551 110 11 - - 28.98025 40.71150 262.44400 22.32551 110 11 - - 29.25035 41.20200 265.71424 22.60370 110 11 - - 29.52112 41.69250 268.98448 22.88189 110 11 - - 29.79250 42.18300 272.25473 23.16008 110 11 - - 30.06442 42.67350 275.52497 23.43828 110 11 - + 0.00001 0.00000 0.00001 0.00000 202 100 P + 8.99514 0.00000 12.71181 0.66670 110 71 - + 9.51576 0.00000 25.42363 1.33340 110 37 - + 10.04312 0.00000 38.13544 2.00011 110 26 - + 10.57855 0.00000 50.84725 2.66681 110 21 - + 11.12340 0.00000 63.55907 3.33351 110 18 - + 11.12340 0.00000 36.88645 3.33351 110 30 - + 11.29331 0.52320 39.87015 3.60315 110 28 - + 11.47117 1.04640 42.85386 3.87280 110 27 - + 11.65690 1.56960 45.83756 4.14244 110 25 - + 11.85042 2.09280 48.82127 4.41208 110 24 - + 12.05166 2.61600 51.80497 4.68173 110 23 - + 12.05166 2.61600 45.07744 4.68173 110 27 - + 12.26041 3.13920 47.67368 4.95137 110 26 - + 12.47627 3.66240 50.26991 5.22102 110 25 - + 12.69882 4.18560 52.86614 5.49066 110 24 - + 12.92768 4.70880 55.46237 5.76030 110 23 - + 13.16242 5.23200 58.05861 6.02995 110 23 - + 13.16242 5.23200 52.87542 6.02995 110 25 - + 13.40262 5.75520 55.23988 6.29959 110 24 - + 13.64781 6.27840 57.60433 6.56924 110 24 - + 13.89755 6.80160 59.96879 6.83888 110 23 - + 14.15140 7.32480 62.33324 7.10852 110 23 - + 14.40893 7.84800 64.69769 7.37817 110 22 - + 14.40893 7.84800 60.47619 7.37817 110 24 - + 14.66972 8.37120 62.68636 7.64781 110 23 - + 14.93338 8.89440 64.89654 7.91746 110 23 - + 15.19958 9.41760 67.10671 8.18710 110 23 - + 15.46797 9.94080 69.31688 8.45674 110 22 - + 15.73822 10.46400 71.52706 8.72639 110 22 - + 15.73822 10.46400 67.96374 8.72639 110 23 - + 16.01001 10.98720 70.06380 8.99603 110 23 - + 16.28309 11.51040 72.16387 9.26567 110 23 - + 16.55724 12.03360 74.26394 9.53532 110 22 - + 16.83225 12.55680 76.36401 9.80496 110 22 - + 17.10789 13.08000 78.46408 10.07461 110 22 - + 17.10789 13.08000 75.38015 10.07461 110 23 - + 17.38397 13.60320 77.39768 10.34425 110 22 - + 17.66035 14.12640 79.41521 10.61389 110 22 - + 17.93691 14.64960 81.43273 10.88354 110 22 - + 18.21352 15.17280 83.45026 11.15318 110 22 - + 18.49007 15.69600 85.46779 11.42283 110 22 - + 18.49007 15.69600 82.79213 11.42283 110 22 - + 18.75657 16.20051 84.67670 11.68284 110 22 - + 19.02285 16.70503 86.56127 11.94285 110 22 - + 19.28885 17.20954 88.44583 12.20287 110 22 - + 19.55450 17.71406 90.33040 12.46288 110 22 - + 19.81975 18.21857 92.21497 12.72289 110 21 - + 19.81975 18.21857 89.86185 12.72289 110 22 - + 20.08455 18.72309 91.69833 12.98291 110 22 - + 20.34885 19.22760 93.53481 13.24292 110 22 - + 20.61262 19.73211 95.37129 13.50294 110 22 - + 20.87581 20.23663 97.20776 13.76295 110 21 - + 21.13838 20.74114 99.04424 14.02296 110 21 - + 21.13838 20.74114 96.90921 14.02296 110 22 - + 21.40030 21.24566 98.70610 14.28298 110 22 - + 21.66152 21.75017 100.50299 14.54299 110 22 - + 21.92201 22.25469 102.29988 14.80300 110 21 - + 22.18173 22.75920 104.09677 15.06302 110 21 - + 22.44063 23.26371 105.89366 15.32303 110 21 - + 22.44063 23.26371 103.93956 15.32303 110 22 - + 22.69867 23.76823 105.70329 15.58305 110 21 - + 22.95580 24.27274 107.46703 15.84306 110 21 - + 23.21199 24.77726 109.23076 16.10307 110 21 - + 23.46719 25.28177 110.99449 16.36309 110 21 - + 23.72136 25.78629 112.75822 16.62310 110 21 - + 23.72136 25.78629 110.95670 16.62310 110 21 - + 23.97446 26.29080 112.69225 16.88311 110 21 - + 24.22644 26.79531 114.42780 17.14313 110 21 - + 24.47729 27.29983 116.16336 17.40314 110 21 - + 24.72698 27.80434 117.89891 17.66316 110 21 - + 24.97549 28.30886 119.63446 17.92317 110 21 - + 24.97549 28.30886 117.96334 17.92317 110 21 - + 25.22280 28.81337 119.67465 18.18318 110 21 - + 25.46892 29.31789 121.38596 18.44320 110 21 - + 25.71389 29.82240 123.09727 18.70321 110 21 - + 25.95777 30.32691 124.80858 18.96322 110 21 - + 26.20059 30.83143 126.51989 19.22324 110 21 - + 26.20059 30.83143 124.96151 19.22324 110 21 - + 26.44240 31.33594 126.65174 19.48325 110 21 - + 26.68336 31.84046 128.34197 19.74327 110 21 - + 26.92365 32.34497 130.03221 20.00328 110 21 - + 27.16346 32.84949 131.72244 20.26329 110 21 - + 27.40298 33.35400 133.41267 20.52331 110 21 - + 25.03231 33.35400 236.45945 18.15263 110 11 - + 25.29055 33.84450 240.08322 18.43082 110 11 - + 25.54902 34.33500 243.70700 18.70902 110 10 - + 25.80790 34.82550 247.33078 18.98721 110 10 - + 26.06735 35.31600 250.95455 19.26540 110 10 - + 26.32754 35.80650 254.57833 19.54359 110 10 - + 26.32754 35.80650 239.45594 19.54359 110 11 - + 26.58859 36.29700 242.86445 19.82178 110 11 - + 26.85056 36.78750 246.27297 20.09997 110 11 - + 27.11346 37.27800 249.68149 20.37817 110 11 - + 27.37732 37.76850 253.09001 20.65636 110 11 - + 27.64216 38.25900 256.49853 20.93455 110 11 - + 27.64216 38.25900 249.78209 20.93455 110 11 - + 27.90799 38.74950 253.10135 21.21274 110 11 - + 28.17477 39.24000 256.42062 21.49093 110 11 - + 28.44244 39.73050 259.73988 21.76913 110 11 - + 28.71097 40.22100 263.05915 22.04732 110 11 - + 28.98030 40.71150 266.37842 22.32551 110 11 - + 28.98030 40.71150 262.44400 22.32551 110 11 - + 29.25039 41.20200 265.71424 22.60370 110 11 - + 29.52115 41.69250 268.98448 22.88189 110 11 - + 29.79252 42.18300 272.25473 23.16008 110 11 - + 30.06443 42.67350 275.52497 23.43828 110 11 - 30.33681 43.16400 278.79521 23.71647 110 11 - 30.33681 43.16400 276.20581 23.71647 110 11 - - 30.60961 43.65450 279.44568 23.99466 110 11 - - 30.88274 44.14500 282.68554 24.27285 110 11 - - 31.15615 44.63550 285.92541 24.55104 110 11 - - 31.42979 45.12600 289.16528 24.82924 110 11 - - 31.70359 45.61650 292.40514 25.10743 110 11 - - 31.70359 45.61650 290.58211 25.10743 110 11 - - 31.97750 46.10700 293.80178 25.38562 110 11 - - 32.25148 46.59750 297.02145 25.66381 110 11 - - 32.52552 47.08800 300.24112 25.94200 110 11 - - 32.79959 47.57850 303.46078 26.22020 110 11 - - 33.07366 48.06900 306.68045 26.49839 110 11 - + 30.60960 43.65450 279.44568 23.99466 110 11 - + 30.88273 44.14500 282.68554 24.27285 110 11 - + 31.15613 44.63550 285.92541 24.55104 110 11 - + 31.42976 45.12600 289.16528 24.82924 110 11 - + 31.70355 45.61650 292.40514 25.10743 110 11 - + 31.70355 45.61650 290.58211 25.10743 110 11 - + 31.97745 46.10700 293.80178 25.38562 110 11 - + 32.25143 46.59750 297.02145 25.66381 110 11 - + 32.52546 47.08800 300.24112 25.94200 110 11 - + 32.79952 47.57850 303.46078 26.22020 110 11 - + 33.07359 48.06900 306.68045 26.49839 110 11 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2198,7 +2275,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 67.491 'Clay, sl san, moderate' + 4.00 67.409 'Clay, sl san, moderate' -4.00 43.509 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2212,7 +2289,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 18.08 'Clay, sl san, moderate' + 4.00 18.06 'Clay, sl san, moderate' -4.00 22.17 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2221,7 +2298,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -2239,28 +2316,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -2416,7 +2481,7 @@ Name 301.70 : Max effective resistance left 932.66 : Max effective resistance right -1397.06 : Max moment left --3552.45 : Max moment right +-3552.50 : Max moment right -230.60 : Max mobilized moment left -231.03 : Max mobilized moment right 21.41 : Vertical force left @@ -2445,163 +2510,151 @@ Name [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00036 0.00757 1.22839 - 0.00507 0.31044 1.12504 - 0.03913 1.11998 1.02169 - 0.11998 2.10438 0.91805 - 0.24860 3.03069 0.81379 - 0.42208 3.89855 0.70861 - 0.42223 -6.06123 0.70861 - 0.13964 -5.25233 0.60235 - -0.10399 -4.50279 0.49558 - -0.31163 -3.81267 0.38907 - -0.48624 -3.18164 0.28361 - -0.63076 -2.60898 0.18000 - -0.63076 -2.60948 0.18000 - -0.70425 -2.29351 0.11898 - -0.76857 -1.99789 0.05892 - -0.82433 -1.72233 -0.00011 - -0.87211 -1.46652 -0.05804 - -0.91251 -1.23010 -0.11479 - -0.91252 -1.23033 -0.11479 - -0.94612 -1.01294 -0.17030 - -0.97348 -0.81420 -0.22453 - -0.99515 -0.63372 -0.27745 - -1.01168 -0.47108 -0.32904 - -1.02359 -0.32588 -0.37926 - -1.02359 -0.32639 -0.37926 - -1.03141 -0.19817 -0.42809 - -1.03564 -0.08650 -0.47552 - -1.03676 0.00908 -0.52157 - -1.03525 0.08903 -0.56621 - -1.03157 0.15382 -0.60946 - -1.03157 0.15366 -0.60946 - -1.02617 0.20436 -0.65132 - -1.01942 0.24465 -0.69178 - -1.01157 0.27756 -0.73088 - -1.00283 0.30349 -0.76861 - -0.99342 0.32286 -0.80498 - -0.99319 0.31809 -0.80498 - -0.97563 0.33769 -0.86634 - -0.95743 0.34291 -0.92354 - -0.93914 0.34291 -0.97666 - -0.92085 0.34291 -1.02576 - -0.90256 0.34291 -1.07094 - -0.90266 0.34192 -1.07094 - -0.88443 0.34192 -1.11227 - -0.86619 0.34192 -1.14982 - -0.84796 0.34192 -1.18368 - -0.82972 0.34192 -1.21392 - -0.81149 0.34192 -1.24062 - -0.81148 0.34214 -1.24062 - -0.79324 0.34214 -1.26386 - -0.77499 0.34214 -1.28371 - -0.75674 0.34214 -1.30026 - -0.73849 0.34214 -1.31358 - -0.72025 0.34214 -1.32374 - -0.72025 0.34227 -1.32374 - -0.70199 0.34227 -1.33084 - -0.68374 0.34227 -1.33493 - -0.66544 0.34445 -1.33612 - -0.64682 0.35644 -1.33446 - -0.62714 0.38444 -1.33004 - -0.62713 0.38401 -1.33004 - -0.60552 0.42946 -1.32294 - -0.58099 0.49376 -1.31325 - -0.55249 0.57828 -1.30109 - -0.51892 0.68428 -1.28660 - -0.47910 0.81298 -1.26990 - -0.47910 0.81254 -1.26990 - -0.43181 0.96509 -1.25110 - -0.37572 1.14253 -1.23046 - -0.30948 1.34578 -1.20826 - -0.23169 1.57559 -1.18479 - -0.14093 1.83257 -1.16032 - -0.14086 1.83078 -1.16032 - -0.04441 1.83406 -1.13616 - 0.04310 1.56392 -1.11183 - 0.11639 1.29054 -1.08762 - 0.17626 1.04184 -1.06382 - 0.22397 0.81726 -1.04073 - 0.22393 0.81715 -1.04073 - 0.26068 0.61584 -1.01858 - 0.28765 0.43677 -0.99747 - 0.30596 0.27885 -0.97746 - 0.31668 0.14090 -0.95865 - 0.32078 0.02165 -0.94109 - 0.32078 0.02218 -0.94109 - 0.31923 -0.07967 -0.92483 - 0.31286 -0.16546 -0.90984 - 0.30246 -0.23646 -0.89608 - 0.28877 -0.29392 -0.88351 - 0.27244 -0.33904 -0.87208 - 0.27244 -0.33858 -0.87208 - 0.25411 -0.37250 -0.86175 - 0.23430 -0.39631 -0.85242 - 0.21351 -0.41101 -0.84402 - 0.19217 -0.41749 -0.83646 - 0.17069 -0.41660 -0.82967 - 0.17069 -0.41631 -0.82967 - 0.14945 -0.40878 -0.82355 - 0.12875 -0.39526 -0.81803 - 0.10889 -0.37633 -0.81302 - 0.09013 -0.35246 -0.80844 - 0.07271 -0.32408 -0.80423 - 0.07271 -0.32395 -0.80423 - 0.05687 -0.29137 -0.80029 - 0.04281 -0.25486 -0.79658 - 0.03072 -0.21463 -0.79305 - 0.02080 -0.17082 -0.78964 - 0.01321 -0.12356 -0.78632 - 0.01321 -0.12353 -0.78632 - 0.00815 -0.07287 -0.78304 - 0.00578 -0.01885 -0.77979 - 0.00627 0.03849 -0.77657 - 0.00979 0.09913 -0.77339 - 0.01652 0.16302 -0.77025 - 0.01652 0.16305 -0.77025 - 0.02388 0.13190 -0.76725 - 0.02976 0.10371 -0.76434 - 0.03430 0.07838 -0.76154 - 0.03764 0.05578 -0.75886 - 0.03992 0.03579 -0.75633 - 0.03992 0.03585 -0.75633 - 0.04126 0.01831 -0.75395 - 0.04179 0.00308 -0.75172 - 0.04161 -0.01000 -0.74965 - 0.04082 -0.02109 -0.74773 - 0.03953 -0.03033 -0.74597 - 0.03953 -0.03027 -0.74597 - 0.03782 -0.03783 -0.74435 - 0.03577 -0.04384 -0.74288 - 0.03346 -0.04845 -0.74154 - 0.03095 -0.05178 -0.74033 - 0.02830 -0.05396 -0.73923 - 0.02830 -0.05391 -0.73923 - 0.02557 -0.05504 -0.73824 - 0.02281 -0.05523 -0.73734 - 0.02006 -0.05456 -0.73653 - 0.01737 -0.05313 -0.73580 - 0.01476 -0.05099 -0.73513 + -0.00036 0.00757 1.20255 + 0.00507 0.31044 1.10006 + 0.03914 1.12052 0.99758 + 0.12005 2.10597 0.89480 + 0.24877 3.03332 0.79141 + 0.42240 3.90219 0.68709 + 0.42256 -6.05759 0.68709 + 0.14017 -5.24771 0.58170 + -0.10320 -4.49721 0.47578 + -0.31054 -3.80617 0.37013 + -0.48480 -3.17424 0.26553 + -0.62894 -2.60072 0.16277 + -0.62884 -2.60265 0.16277 + -0.76621 -1.98990 0.04279 + -0.86923 -1.45736 -0.07304 + -0.94265 -1.00241 -0.18432 + -0.99102 -0.62213 -0.29065 + -1.01873 -0.31337 -0.39159 + -1.01873 -0.31646 -0.39159 + -1.03016 -0.07576 -0.48692 + -1.02911 0.10048 -0.57670 + -1.01932 0.21594 -0.66095 + -1.00411 0.28561 -0.73973 + -0.98563 0.32603 -0.81308 + -0.98543 0.32071 -0.81308 + -0.96784 0.33616 -0.87379 + -0.94979 0.33939 -0.93037 + -0.93169 0.33939 -0.98290 + -0.91359 0.33939 -1.03145 + -0.89549 0.33939 -1.07610 + -0.89559 0.33842 -1.07610 + -0.87754 0.33842 -1.11694 + -0.85949 0.33842 -1.15402 + -0.84144 0.33842 -1.18745 + -0.82339 0.33842 -1.21728 + -0.80535 0.33842 -1.24360 + -0.80534 0.33867 -1.24360 + -0.78728 0.33867 -1.26648 + -0.76922 0.33867 -1.28600 + -0.75116 0.33867 -1.30224 + -0.73310 0.33867 -1.31528 + -0.71503 0.33867 -1.32519 + -0.71503 0.33881 -1.32519 + -0.69696 0.33881 -1.33204 + -0.67889 0.33881 -1.33593 + -0.66079 0.34077 -1.33691 + -0.64237 0.35239 -1.33508 + -0.62291 0.38009 -1.33051 + -0.62290 0.37967 -1.33051 + -0.60153 0.42490 -1.32327 + -0.57725 0.48907 -1.31346 + -0.54900 0.57350 -1.30120 + -0.51569 0.67946 -1.28662 + -0.47612 0.80817 -1.26984 + -0.47613 0.80775 -1.26984 + -0.42909 0.96034 -1.25098 + -0.37325 1.13786 -1.23029 + -0.30725 1.34121 -1.20805 + -0.22971 1.57115 -1.18454 + -0.13918 1.82826 -1.16005 + -0.13911 1.82647 -1.16005 + -0.04288 1.82989 -1.13587 + 0.04442 1.55997 -1.11153 + 0.11752 1.28689 -1.08732 + 0.17721 1.03850 -1.06353 + 0.22475 0.81422 -1.04044 + 0.22471 0.81411 -1.04044 + 0.26131 0.61309 -1.01830 + 0.28815 0.43431 -0.99720 + 0.30635 0.27666 -0.97720 + 0.31695 0.13897 -0.95840 + 0.32096 0.01996 -0.94086 + 0.32096 0.02049 -0.94086 + 0.31933 -0.08114 -0.92462 + 0.31289 -0.16671 -0.90965 + 0.30243 -0.23752 -0.89590 + 0.28869 -0.29480 -0.88334 + 0.27232 -0.33975 -0.87193 + 0.27233 -0.33929 -0.87193 + 0.25396 -0.37307 -0.86161 + 0.23413 -0.39675 -0.85230 + 0.21331 -0.41132 -0.84391 + 0.19196 -0.41771 -0.83637 + 0.17047 -0.41673 -0.82959 + 0.17048 -0.41644 -0.82959 + 0.14923 -0.40883 -0.82348 + 0.12853 -0.39524 -0.81797 + 0.10867 -0.37625 -0.81297 + 0.08991 -0.35234 -0.80841 + 0.07250 -0.32392 -0.80420 + 0.07251 -0.32380 -0.80420 + 0.05667 -0.29119 -0.80027 + 0.04262 -0.25466 -0.79656 + 0.03054 -0.21441 -0.79304 + 0.02063 -0.17059 -0.78964 + 0.01306 -0.12333 -0.78632 + 0.01306 -0.12330 -0.78632 + 0.00801 -0.07264 -0.78304 + 0.00564 -0.01862 -0.77979 + 0.00615 0.03872 -0.77658 + 0.00968 0.09935 -0.77340 + 0.01642 0.16323 -0.77026 + 0.01642 0.16326 -0.77026 + 0.02379 0.13211 -0.76726 + 0.02968 0.10390 -0.76435 + 0.03423 0.07855 -0.76155 + 0.03758 0.05595 -0.75888 + 0.03987 0.03594 -0.75634 + 0.03987 0.03600 -0.75634 + 0.04122 0.01845 -0.75396 + 0.04175 0.00321 -0.75173 + 0.04158 -0.00988 -0.74966 + 0.04080 -0.02098 -0.74774 + 0.03951 -0.03024 -0.74598 + 0.03951 -0.03018 -0.74598 + 0.03780 -0.03775 -0.74437 + 0.03576 -0.04377 -0.74289 + 0.03345 -0.04839 -0.74155 + 0.03094 -0.05173 -0.74034 + 0.02830 -0.05392 -0.73924 + 0.02830 -0.05387 -0.73924 + 0.02557 -0.05501 -0.73825 + 0.02281 -0.05521 -0.73735 + 0.02006 -0.05455 -0.73654 + 0.01737 -0.05312 -0.73580 + 0.01476 -0.05098 -0.73513 0.01476 -0.05096 -0.73513 0.01228 -0.04818 -0.73452 - 0.00995 -0.04481 -0.73395 + 0.00996 -0.04481 -0.73395 0.00781 -0.04089 -0.73342 - 0.00587 -0.03645 -0.73292 - 0.00417 -0.03152 -0.73244 + 0.00588 -0.03646 -0.73292 + 0.00417 -0.03153 -0.73244 0.00417 -0.03152 -0.73244 0.00273 -0.02612 -0.73197 0.00157 -0.02026 -0.73152 - 0.00071 -0.01395 -0.73107 + 0.00071 -0.01396 -0.73107 0.00018 -0.00720 -0.73063 - 0.00000 0.00000 -0.73019 + 0.00000 0.00000 -0.73018 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2663,7 +2716,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -2675,9 +2728,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 64.32200 0.00000 7.57169 0.00000 0.00000 64.71000 0.00000 18.87223 0.00000 - -0.15000 64.86900 0.00000 27.07340 0.00000 -0.30000 64.98100 0.00000 35.88312 0.00000 - -0.45000 65.07000 0.00000 45.30143 0.00000 -0.60000 65.14500 0.00000 55.32826 0.00000 -0.86667 65.25500 0.00000 74.65604 0.00000 -1.13333 65.34600 0.00000 95.90636 0.00000 @@ -2703,7 +2754,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -2716,10 +2767,8 @@ Lambda passive [DATA] 0.37500 2.25000 30.28678 0.00000 0.61732 0.00000 13.46079 0.12500 6.75000 45.20213 0.00000 0.61732 0.00000 6.69661 - -0.07500 9.61425 54.67450 0.00000 0.61732 0.00000 5.68682 - -0.22500 10.84275 58.73147 0.00000 0.61732 0.00000 5.41666 - -0.37500 12.07125 62.78870 0.00000 0.61732 0.00000 5.20151 - -0.52500 13.29975 66.84556 0.00000 0.61732 0.00000 5.02608 + -0.15000 10.22850 56.70299 0.00000 0.61732 0.00000 5.54363 + -0.45000 12.68550 64.81713 0.00000 0.61732 0.00000 5.10954 -0.73333 15.00600 72.47916 0.00000 0.61732 0.00000 4.83001 -1.00000 17.19000 79.68871 0.00000 0.61732 0.00000 4.63576 -1.26667 19.37400 86.89674 0.00000 0.61732 0.00000 4.48522 @@ -2744,7 +2793,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2757,42 +2806,30 @@ Status character [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P 12.11471 0.00000 12.11471 0.55558 202 100 P - 20.26710 0.00000 24.22942 1.11117 110 84 - - 19.10862 0.00000 36.34413 1.66675 110 53 - - 17.94404 0.00000 48.45885 2.22234 110 37 - - 16.77027 0.00000 60.57356 2.77792 110 28 - - 16.77027 0.00000 30.13475 2.77792 110 56 - - 15.58568 0.00000 36.16170 3.33351 110 43 - - 14.39592 0.00000 42.18865 3.88909 110 34 - - 13.20883 0.00000 48.21561 4.44468 110 27 - - 12.03228 0.00000 54.24256 5.00026 110 22 - - 10.87411 0.00000 60.26951 5.55585 110 18 - - 10.87411 0.00000 51.18137 5.55585 110 21 - - 10.19079 0.29430 52.57862 5.70752 110 19 - - 9.51699 0.58860 53.97587 5.85920 110 18 - - 8.85346 0.88290 55.37312 6.01087 110 16 - - 8.20100 1.17720 56.77038 6.16255 110 14 - - 7.56036 1.47150 58.16763 6.31422 110 13 - - 7.56036 1.47150 55.40429 6.31422 110 14 - - 6.93221 1.76580 56.73516 6.46590 110 12 - - 6.31700 2.06010 58.06604 6.61757 110 0 - - 5.71515 2.35440 59.39691 6.76925 110 0 - - 5.12712 2.64870 60.72778 6.92092 110 0 - - 4.55336 2.94300 62.05865 7.07260 110 0 - - 4.55336 2.94300 59.59367 7.07260 110 0 - - 3.99431 3.23730 60.87168 7.22427 110 0 - - 3.45031 3.53160 62.14969 7.37595 110 0 - - 2.92160 3.82590 63.42771 7.52762 110 0 - - 2.40840 4.12020 64.70572 7.67929 110 0 - - 1.91097 4.41450 65.98373 7.83097 110 0 - - 1.91097 4.41450 63.75829 7.83097 110 0 - - 1.46948 4.70880 64.99320 7.98264 110 0 - - 1.21647 5.00310 66.22811 8.13432 110 0 - - 0.97722 5.29740 67.46301 8.28599 110 0 - - 0.75160 5.59170 68.69792 8.43767 110 0 - - 0.53953 5.88600 69.93283 8.58934 110 0 - - 0.53953 5.88600 67.20478 8.58934 110 0 - - 0.19556 6.40920 69.31453 8.85899 110 0 - + 20.28853 0.00000 24.22942 1.11117 110 84 - + 19.12954 0.00000 36.34413 1.66675 110 53 - + 17.96445 0.00000 48.45885 2.22234 110 37 - + 16.79017 0.00000 60.57356 2.77792 110 28 - + 16.79017 0.00000 30.13475 2.77792 110 56 - + 15.60505 0.00000 36.16170 3.33351 110 43 - + 14.41474 0.00000 42.18865 3.88909 110 34 - + 13.22708 0.00000 48.21561 4.44468 110 27 - + 12.04991 0.00000 54.24256 5.00026 110 22 - + 10.89106 0.00000 60.26951 5.55585 110 18 - + 10.89106 0.00000 49.89264 5.55585 110 22 - + 9.53370 0.58860 52.61678 5.85920 110 18 - + 8.21765 1.17720 55.34092 6.16255 110 15 - + 6.94758 1.76580 58.06505 6.46590 110 12 - + 5.72814 2.35440 60.78919 6.76925 110 0 - + 4.56398 2.94300 63.51333 7.07260 110 0 - + 4.56398 2.94300 58.54005 7.07260 110 0 - + 3.45920 3.53160 61.05088 7.37595 110 0 - + 2.41541 4.12020 63.56171 7.67929 110 0 - + 1.43351 4.70880 66.07255 7.98264 110 0 - + 0.88868 5.29740 68.58338 8.28599 110 0 - + 0.45853 5.88600 71.09421 8.58934 110 0 - + 0.45853 5.88600 67.20478 8.58934 110 0 - + 0.12109 6.40920 69.31453 8.85899 110 0 - 0.00000 6.93240 71.42428 9.12863 1 0 A 0.00000 7.45560 73.53403 9.39827 1 0 A 0.00000 7.97880 75.64378 9.66792 1 0 A @@ -2812,99 +2849,99 @@ Status character 0.00000 13.73400 89.33675 12.63400 1 0 A 0.00000 14.25720 91.24344 12.90364 1 0 A 0.00000 14.78040 93.15013 13.17329 1 0 A - 0.08178 15.30360 95.05682 13.44293 110 0 - - 0.36799 15.82680 96.96351 13.71258 110 0 - - 0.68180 16.35000 98.87020 13.98222 110 0 - - 0.68180 16.35000 96.64945 13.98222 110 0 - - 1.02249 16.87320 98.51332 14.25186 110 0 - - 1.38904 17.39640 100.37718 14.52151 110 0 - - 1.78022 17.91960 102.24104 14.79115 110 0 - - 2.19479 18.44280 104.10490 15.06080 110 0 - - 2.63149 18.96600 105.96877 15.33044 110 0 - - 2.63149 18.96600 103.94324 15.33044 110 0 - - 3.08904 19.48920 105.77147 15.60008 110 0 - - 3.56508 20.01240 107.59971 15.86973 110 0 - - 4.05674 20.53560 109.42794 16.13937 110 0 - - 4.56116 21.05880 111.25618 16.40902 110 0 - - 5.07549 21.58200 113.08442 16.67866 110 0 - - 5.07549 21.58200 111.25315 16.67866 110 0 - - 5.57711 22.08651 112.98754 16.93867 110 0 - - 6.08044 22.59103 114.72193 17.19869 110 0 - - 6.58254 23.09554 116.45633 17.45870 110 0 - - 7.08051 23.60006 118.19072 17.71871 110 0 - - 7.57143 24.10457 119.92511 17.97873 110 0 - - 7.57143 24.10457 118.25941 17.97873 110 0 - - 8.05293 24.60909 119.96971 18.23874 110 0 - - 8.52409 25.11360 121.68001 18.49876 110 0 - - 8.98413 25.61811 123.39032 18.75877 110 0 - - 9.43233 26.12263 125.10062 19.01878 110 0 - - 9.86792 26.62714 126.81092 19.27880 110 0 - - 9.86792 26.62714 125.25730 19.27880 110 0 - - 10.29048 27.13166 126.94665 19.53881 110 0 - - 10.70039 27.63617 128.63600 19.79882 110 0 - - 11.09802 28.14069 130.32535 20.05884 110 0 - - 11.48378 28.64520 132.01469 20.31885 110 0 - - 11.85806 29.14971 133.70404 20.57887 110 0 - - 11.85806 29.14971 132.24833 20.57887 110 0 - - 12.22142 29.65423 133.91929 20.83888 110 0 - - 12.57471 30.15874 135.59024 21.09889 110 0 - - 12.91873 30.66326 137.26120 21.35891 110 0 - - 13.25430 31.16777 138.93215 21.61892 110 0 - - 13.58224 31.67229 140.60311 21.87893 110 0 - - 13.58224 31.67229 139.23367 21.87893 110 0 - - 13.90342 32.17680 140.88835 22.13895 110 0 - - 14.21867 32.68131 142.54303 22.39896 110 0 - - 14.52878 33.18583 144.19771 22.65898 110 0 - - 14.83454 33.69034 145.85239 22.91899 110 0 - - 15.13672 34.19486 147.50707 23.17900 110 0 - - 15.13672 34.19486 146.21423 23.17900 110 0 - - 15.43609 34.69937 147.85441 23.43902 110 0 - - 15.73321 35.20389 149.49459 23.69903 110 0 - - 16.02856 35.70840 151.13477 23.95904 110 0 - - 16.32261 36.21291 152.77495 24.21906 110 0 - - 16.61585 36.71743 154.41513 24.47907 110 0 - - 16.61585 36.71743 153.19075 24.47907 110 0 - + 0.07380 15.30360 95.05682 13.44293 110 0 - + 0.36176 15.82680 96.96351 13.71258 110 0 - + 0.67712 16.35000 98.87020 13.98222 110 0 - + 0.67712 16.35000 96.64945 13.98222 110 0 - + 1.01918 16.87320 98.51332 14.25186 110 0 - + 1.38694 17.39640 100.37718 14.52151 110 0 - + 1.77916 17.91960 102.24104 14.79115 110 0 - + 2.19462 18.44280 104.10490 15.06080 110 0 - + 2.63207 18.96600 105.96877 15.33044 110 0 - + 2.63207 18.96600 103.94324 15.33044 110 0 - + 3.09026 19.48920 105.77147 15.60008 110 0 - + 3.56681 20.01240 107.59971 15.86973 110 0 - + 4.05887 20.53560 109.42794 16.13937 110 0 - + 4.56361 21.05880 111.25618 16.40902 110 0 - + 5.07816 21.58200 113.08442 16.67866 110 0 - + 5.07816 21.58200 111.25315 16.67866 110 0 - + 5.57994 22.08651 112.98754 16.93867 110 0 - + 6.08335 22.59103 114.72193 17.19869 110 0 - + 6.58549 23.09554 116.45633 17.45870 110 0 - + 7.08344 23.60006 118.19072 17.71871 110 0 - + 7.57432 24.10457 119.92511 17.97873 110 0 - + 7.57432 24.10457 118.25941 17.97873 110 0 - + 8.05575 24.60909 119.96971 18.23874 110 0 - + 8.52680 25.11360 121.68001 18.49876 110 0 - + 8.98672 25.61811 123.39032 18.75877 110 0 - + 9.43478 26.12263 125.10062 19.01878 110 0 - + 9.87021 26.62714 126.81092 19.27880 110 0 - + 9.87021 26.62714 125.25730 19.27880 110 0 - + 10.29263 27.13166 126.94665 19.53881 110 0 - + 10.70237 27.63617 128.63600 19.79882 110 0 - + 11.09984 28.14069 130.32535 20.05884 110 0 - + 11.48544 28.64520 132.01469 20.31885 110 0 - + 11.85956 29.14971 133.70404 20.57887 110 0 - + 11.85956 29.14971 132.24833 20.57887 110 0 - + 12.22277 29.65423 133.91929 20.83888 110 0 - + 12.57591 30.15874 135.59024 21.09889 110 0 - + 12.91979 30.66326 137.26120 21.35891 110 0 - + 13.25523 31.16777 138.93215 21.61892 110 0 - + 13.58305 31.67229 140.60311 21.87893 110 0 - + 13.58305 31.67229 139.23367 21.87893 110 0 - + 13.90411 32.17680 140.88835 22.13895 110 0 - + 14.21926 32.68131 142.54303 22.39896 110 0 - + 14.52927 33.18583 144.19771 22.65898 110 0 - + 14.83494 33.69034 145.85239 22.91899 110 0 - + 15.13703 34.19486 147.50707 23.17900 110 0 - + 15.13703 34.19486 146.21423 23.17900 110 0 - + 15.43633 34.69937 147.85441 23.43902 110 0 - + 15.73339 35.20389 149.49459 23.69903 110 0 - + 16.02868 35.70840 151.13477 23.95904 110 0 - + 16.32269 36.21291 152.77495 24.21906 110 0 - + 16.61588 36.71743 154.41513 24.47907 110 0 - + 16.61588 36.71743 153.19075 24.47907 110 0 - 16.90868 37.22194 154.81792 24.73908 110 0 - - 17.20121 37.72646 156.44510 24.99910 110 0 - - 17.49339 38.23097 158.07227 25.25911 110 0 - - 17.78522 38.73549 159.69944 25.51913 110 0 - - 18.07667 39.24000 161.32662 25.77914 110 0 - - 15.09889 39.24000 297.07504 22.80136 110 0 - - 15.40706 39.73050 300.69955 23.07955 110 0 - - 15.71433 40.22100 304.32406 23.35774 110 0 - - 16.02054 40.71150 307.94858 23.63593 110 0 - - 16.32549 41.20200 311.57309 23.91412 110 0 - - 16.62904 41.69250 315.19761 24.19232 110 0 - - 16.62904 41.69250 297.77734 24.19232 110 0 - - 16.93103 42.18300 301.20153 24.47051 110 0 - - 17.23149 42.67350 304.62573 24.74870 110 0 - - 17.53039 43.16400 308.04993 25.02689 110 0 - - 17.82776 43.65450 311.47412 25.30508 110 0 - - 18.12360 44.14500 314.89832 25.58328 110 0 - - 18.12360 44.14500 306.75619 25.58328 110 0 - - 18.41793 44.63550 310.09185 25.86147 110 0 - - 18.71084 45.12600 313.42750 26.13966 110 0 - - 19.00242 45.61650 316.76316 26.41785 110 0 - - 19.29276 46.10700 320.09882 26.69604 110 0 - - 19.58193 46.59750 323.43448 26.97423 110 0 - - 19.58193 46.59750 318.55044 26.97423 110 0 - - 19.87003 47.08800 321.83572 27.25243 110 0 - - 20.15718 47.57850 325.12101 27.53062 110 0 - - 20.44347 48.06900 328.40630 27.80881 110 0 - - 20.72901 48.55950 331.69159 28.08700 110 0 - - 21.01389 49.05000 334.97688 28.36519 110 0 - - 21.01389 49.05000 331.70679 28.36519 110 0 - - 21.29823 49.54050 334.96001 28.64339 110 0 - - 21.58211 50.03100 338.21322 28.92158 110 0 - - 21.86560 50.52150 341.46644 29.19977 110 0 - - 22.14880 51.01200 344.71966 29.47796 110 0 - - 22.43178 51.50250 347.97287 29.75615 110 0 - - 22.43178 51.50250 345.63712 29.75615 110 0 - + 17.20117 37.72646 156.44510 24.99910 110 0 - + 17.49333 38.23097 158.07227 25.25911 110 0 - + 17.78514 38.73549 159.69944 25.51913 110 0 - + 18.07658 39.24000 161.32662 25.77914 110 0 - + 15.09879 39.24000 297.07504 22.80136 110 0 - + 15.40695 39.73050 300.69955 23.07955 110 0 - + 15.71421 40.22100 304.32406 23.35774 110 0 - + 16.02041 40.71150 307.94858 23.63593 110 0 - + 16.32536 41.20200 311.57309 23.91412 110 0 - + 16.62890 41.69250 315.19761 24.19232 110 0 - + 16.62890 41.69250 297.77734 24.19232 110 0 - + 16.93090 42.18300 301.20153 24.47051 110 0 - + 17.23136 42.67350 304.62573 24.74870 110 0 - + 17.53027 43.16400 308.04993 25.02689 110 0 - + 17.82764 43.65450 311.47412 25.30508 110 0 - + 18.12348 44.14500 314.89832 25.58328 110 0 - + 18.12348 44.14500 306.75619 25.58328 110 0 - + 18.41782 44.63550 310.09185 25.86147 110 0 - + 18.71074 45.12600 313.42750 26.13966 110 0 - + 19.00232 45.61650 316.76316 26.41785 110 0 - + 19.29266 46.10700 320.09882 26.69604 110 0 - + 19.58184 46.59750 323.43448 26.97423 110 0 - + 19.58184 46.59750 318.55044 26.97423 110 0 - + 19.86996 47.08800 321.83572 27.25243 110 0 - + 20.15711 47.57850 325.12101 27.53062 110 0 - + 20.44341 48.06900 328.40630 27.80881 110 0 - + 20.72895 48.55950 331.69159 28.08700 110 0 - + 21.01385 49.05000 334.97688 28.36519 110 0 - + 21.01385 49.05000 331.70679 28.36519 110 0 - + 21.29819 49.54050 334.96001 28.64339 110 0 - + 21.58208 50.03100 338.21322 28.92158 110 0 - + 21.86558 50.52150 341.46644 29.19977 110 0 - + 22.14879 51.01200 344.71966 29.47796 110 0 - + 22.43177 51.50250 347.97287 29.75615 110 0 - + 22.43177 51.50250 345.63712 29.75615 110 0 - 22.71461 51.99300 348.86850 30.03434 110 0 - - 22.99734 52.48350 352.09988 30.31254 110 0 - - 23.28001 52.97400 355.33126 30.59073 110 0 - - 23.56263 53.46450 358.56264 30.86892 110 0 - - 23.84525 53.95500 361.79402 31.14711 110 0 - + 22.99735 52.48350 352.09988 30.31254 110 0 - + 23.28002 52.97400 355.33126 30.59073 110 0 - + 23.56265 53.46450 358.56264 30.86892 110 0 - + 23.84528 53.95500 361.79402 31.14711 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2917,7 +2954,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 33.982 'Clay, sl san, moderate' + 4.00 33.984 'Clay, sl san, moderate' -4.00 29.316 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -3052,7 +3089,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3076,28 +3113,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -3137,82 +3162,82 @@ Status character 0.00000 21.58200 0.00000 0.00000 -1 0 - 0.00002 21.58200 0.00002 0.00000 202 100 P 10.52485 22.08651 10.52485 0.26001 202 100 P - 11.63828 22.59103 21.04970 0.52003 110 55 - - 11.65620 23.09554 31.57456 0.78004 110 37 - - 11.67826 23.60006 42.09941 1.04005 110 28 - - 11.70737 24.10457 52.62426 1.30007 110 22 - - 11.70737 24.10457 22.20384 1.30007 110 53 - - 11.74589 24.60909 26.64460 1.56008 110 44 - - 11.79476 25.11360 31.08537 1.82010 110 38 - - 11.85474 25.61811 35.52614 2.08011 110 33 - - 11.92658 26.12263 39.96691 2.34012 110 30 - - 12.01102 26.62714 44.40767 2.60014 110 27 - - 12.01102 26.62714 32.22917 2.60014 110 37 - - 12.10848 27.13166 35.45208 2.86015 110 34 - - 12.21860 27.63617 38.67500 3.12016 110 32 - - 12.34099 28.14069 41.89792 3.38018 110 29 - - 12.47526 28.64520 45.12083 3.64019 110 28 - - 12.62101 29.14971 48.34375 3.90021 110 26 - - 12.62101 29.14971 40.50701 3.90021 110 31 - - 12.77768 29.65423 43.20747 4.16022 110 30 - - 12.94442 30.15874 45.90794 4.42023 110 28 - - 13.12043 30.66326 48.60841 4.68025 110 27 - - 13.30488 31.16777 51.30887 4.94026 110 26 - - 13.49697 31.67229 54.00934 5.20027 110 25 - - 13.49697 31.67229 48.19862 5.20027 110 28 - - 13.69582 32.17680 50.60855 5.46029 110 27 - - 13.90059 32.68131 53.01848 5.72030 110 26 - - 14.11051 33.18583 55.42841 5.98032 110 25 - - 14.32478 33.69034 57.83834 6.24033 110 25 - - 14.54263 34.19486 60.24827 6.50034 110 24 - - 14.54263 34.19486 55.62179 6.50034 110 26 - - 14.76329 34.69937 57.84666 6.76036 110 26 - - 14.98619 35.20389 60.07153 7.02037 110 25 - - 15.21087 35.70840 62.29640 7.28038 110 24 - - 15.43684 36.21291 64.52127 7.54040 110 24 - - 15.66363 36.71743 66.74614 7.80041 110 23 - - 15.66363 36.71743 62.89930 7.80041 110 25 - + 11.63537 22.59103 21.04970 0.52003 110 55 - + 11.65326 23.09554 31.57456 0.78004 110 37 - + 11.67532 23.60006 42.09941 1.04005 110 28 - + 11.70448 24.10457 52.62426 1.30007 110 22 - + 11.70448 24.10457 22.20384 1.30007 110 53 - + 11.74308 24.60909 26.64460 1.56008 110 44 - + 11.79205 25.11360 31.08537 1.82010 110 38 - + 11.85216 25.61811 35.52614 2.08011 110 33 - + 11.92413 26.12263 39.96691 2.34012 110 30 - + 12.00872 26.62714 44.40767 2.60014 110 27 - + 12.00872 26.62714 32.22917 2.60014 110 37 - + 12.10633 27.13166 35.45208 2.86015 110 34 - + 12.21662 27.63617 38.67500 3.12016 110 32 - + 12.33917 28.14069 41.89792 3.38018 110 29 - + 12.47360 28.64520 45.12083 3.64019 110 28 - + 12.61951 29.14971 48.34375 3.90021 110 26 - + 12.61951 29.14971 40.50701 3.90021 110 31 - + 12.77633 29.65423 43.20747 4.16022 110 30 - + 12.94322 30.15874 45.90794 4.42023 110 28 - + 13.11936 30.66326 48.60841 4.68025 110 27 - + 13.30395 31.16777 51.30887 4.94026 110 26 - + 13.49616 31.67229 54.00934 5.20027 110 25 - + 13.49616 31.67229 48.19862 5.20027 110 28 - + 13.69513 32.17680 50.60855 5.46029 110 27 - + 13.90001 32.68131 53.01848 5.72030 110 26 - + 14.11002 33.18583 55.42841 5.98032 110 25 - + 14.32438 33.69034 57.83834 6.24033 110 25 - + 14.54231 34.19486 60.24827 6.50034 110 24 - + 14.54231 34.19486 55.62179 6.50034 110 26 - + 14.76304 34.69937 57.84666 6.76036 110 26 - + 14.98601 35.20389 60.07153 7.02037 110 25 - + 15.21074 35.70840 62.29640 7.28038 110 24 - + 15.43677 36.21291 64.52127 7.54040 110 24 - + 15.66360 36.71743 66.74614 7.80041 110 23 - + 15.66360 36.71743 62.89930 7.80041 110 25 - 15.89083 37.22194 64.99594 8.06043 110 24 - - 16.11833 37.72646 67.09259 8.32044 110 24 - - 16.34617 38.23097 69.18923 8.58045 110 24 - - 16.57437 38.73549 71.28587 8.84047 110 23 - - 16.80295 39.24000 73.38252 9.10048 110 23 - - 15.75174 39.24000 104.85934 8.04927 110 15 - - 15.99995 39.73050 108.48339 8.32746 110 15 - - 16.24906 40.22100 112.10745 8.60566 110 14 - - 16.49924 40.71150 115.73151 8.88385 110 14 - - 16.75067 41.20200 119.35556 9.16204 110 14 - - 17.00351 41.69250 122.97962 9.44023 110 14 - - 17.00351 41.69250 114.03422 9.44023 110 15 - - 17.25790 42.18300 117.39467 9.71842 110 15 - - 17.51383 42.67350 120.75512 9.99661 110 15 - - 17.77131 43.16400 124.11556 10.27481 110 14 - - 18.03032 43.65450 127.47601 10.55300 110 14 - - 18.29087 44.14500 130.83646 10.83119 110 14 - - 18.29087 44.14500 127.37671 10.83119 110 14 - - 18.55292 44.63550 130.64830 11.10938 110 14 - - 18.81639 45.12600 133.91988 11.38757 110 14 - - 19.08119 45.61650 137.19147 11.66577 110 14 - - 19.34725 46.10700 140.46305 11.94396 110 14 - - 19.61446 46.59750 143.73464 12.22215 110 14 - - 19.61446 46.59750 141.83737 12.22215 110 14 - - 19.88274 47.08800 145.06577 12.50034 110 14 - - 20.15197 47.57850 148.29417 12.77853 110 14 - - 20.42207 48.06900 151.52257 13.05673 110 13 - - 20.69291 48.55950 154.75097 13.33492 110 13 - - 20.96441 49.05000 157.97937 13.61311 110 13 - - 20.96441 49.05000 156.79923 13.61311 110 13 - - 21.23646 49.54050 160.00352 13.89130 110 13 - - 21.50896 50.03100 163.20780 14.16949 110 13 - - 21.78185 50.52150 166.41208 14.44768 110 13 - - 22.05504 51.01200 169.61637 14.72588 110 13 - - 22.32844 51.50250 172.82065 15.00407 110 13 - - 22.32844 51.50250 172.03314 15.00407 110 13 - + 16.11837 37.72646 67.09259 8.32044 110 24 - + 16.34623 38.23097 69.18923 8.58045 110 24 - + 16.57445 38.73549 71.28587 8.84047 110 23 - + 16.80305 39.24000 73.38252 9.10048 110 23 - + 15.75184 39.24000 104.85934 8.04927 110 15 - + 16.00006 39.73050 108.48339 8.32746 110 15 - + 16.24918 40.22100 112.10745 8.60566 110 14 - + 16.49937 40.71150 115.73151 8.88385 110 14 - + 16.75080 41.20200 119.35556 9.16204 110 14 - + 17.00364 41.69250 122.97962 9.44023 110 14 - + 17.00364 41.69250 114.03422 9.44023 110 15 - + 17.25803 42.18300 117.39467 9.71842 110 15 - + 17.51396 42.67350 120.75512 9.99661 110 15 - + 17.77143 43.16400 124.11556 10.27481 110 14 - + 18.03044 43.65450 127.47601 10.55300 110 14 - + 18.29099 44.14500 130.83646 10.83119 110 14 - + 18.29099 44.14500 127.37671 10.83119 110 14 - + 18.55303 44.63550 130.64830 11.10938 110 14 - + 18.81650 45.12600 133.91988 11.38757 110 14 - + 19.08129 45.61650 137.19147 11.66577 110 14 - + 19.34734 46.10700 140.46305 11.94396 110 14 - + 19.61454 46.59750 143.73464 12.22215 110 14 - + 19.61454 46.59750 141.83737 12.22215 110 14 - + 19.88281 47.08800 145.06577 12.50034 110 14 - + 20.15204 47.57850 148.29417 12.77853 110 14 - + 20.42213 48.06900 151.52257 13.05673 110 13 - + 20.69297 48.55950 154.75097 13.33492 110 13 - + 20.96446 49.05000 157.97937 13.61311 110 13 - + 20.96446 49.05000 156.79923 13.61311 110 13 - + 21.23650 49.54050 160.00352 13.89130 110 13 - + 21.50899 50.03100 163.20780 14.16949 110 13 - + 21.78187 50.52150 166.41208 14.44768 110 13 - + 22.05505 51.01200 169.61637 14.72588 110 13 - + 22.32845 51.50250 172.82065 15.00407 110 13 - + 22.32845 51.50250 172.03314 15.00407 110 13 - 22.60199 51.99300 175.22282 15.28226 110 13 - - 22.87565 52.48350 178.41251 15.56045 110 13 - - 23.14937 52.97400 181.60219 15.83864 110 13 - - 23.42313 53.46450 184.79187 16.11684 110 13 - - 23.69689 53.95500 187.98155 16.39503 110 13 - + 22.87564 52.48350 178.41251 15.56045 110 13 - + 23.14935 52.97400 181.60219 15.83864 110 13 - + 23.42310 53.46450 184.79187 16.11684 110 13 - + 23.69686 53.95500 187.98155 16.39503 110 13 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3225,7 +3250,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 23.858 'Clay, sl san, moderate' + 4.00 23.856 'Clay, sl san, moderate' -4.00 29.479 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -3248,7 +3273,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -3266,28 +3291,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -3424,7 +3437,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 12.73094 220000000.000 1 1 1 'Strut' + 0.25000 12.72222 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3452,17 +3465,17 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 22.26 : Percentage mobilized resistance left 6.77 : Percentage mobilized resistance right - 67.16 : Effective left + 67.15 : Effective left 79.86 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right 301.70 : Max effective resistance left 1179.77 : Max effective resistance right -1397.06 : Max moment left --4342.38 : Max moment right - -280.40 : Max mobilized moment left - -281.12 : Max mobilized moment right - 26.04 : Vertical force left +-4342.41 : Max moment right + -280.38 : Max mobilized moment left + -281.10 : Max mobilized moment right + 26.03 : Vertical force left 29.54 : Vertical force right 20.1 : Max mobilized moment percentage left 6.5 : Max mobilized moment percentage right @@ -3473,9 +3486,9 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] -29.54 : Active force -26.04 : Passive force +26.03 : Passive force -29.54 : Plugged active force -26.04 : Plugged passive force +26.03 : Plugged passive force 1.22 : Anchor force 0.00 : Normal force 59.95 : Factor on resistance @@ -3488,163 +3501,151 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00036 0.00758 1.59458 - 0.01676 0.76568 1.34513 - 0.08344 1.95740 1.09565 - 0.21419 3.25084 0.84565 - 0.40633 4.41293 0.59463 - 0.65328 5.44303 0.34212 - 0.65344 -7.23719 0.34212 - 0.31457 -6.33990 0.08776 - 0.01722 -5.57618 -0.16777 - -0.24528 -4.94638 -0.42348 - -0.47964 -4.45033 -0.67837 - -0.69253 -4.08736 -0.93145 - -0.69249 -4.08882 -0.93145 - -0.81272 -3.93452 -1.08205 - -0.92903 -3.82744 -1.23156 - -1.04283 -3.76721 -1.37981 - -1.15530 -3.73085 -1.52666 - -1.26669 -3.69480 -1.67195 - -1.26679 -3.69853 -1.67195 - -1.37677 -3.63327 -1.81552 - -1.48478 -3.56722 -1.95724 - -1.59079 -3.50039 -2.09696 - -1.69479 -3.43276 -2.23453 - -1.79675 -3.36435 -2.36981 - -1.79675 -3.36486 -2.36981 - -1.89651 -3.28580 -2.50266 - -1.99388 -3.20584 -2.63295 - -2.08885 -3.12498 -2.76055 - -2.18137 -3.04322 -2.88534 - -2.27143 -2.96056 -3.00718 - -2.27143 -2.96072 -3.00718 - -2.35887 -2.86783 -3.12595 - -2.44349 -2.77395 -3.24153 - -2.52529 -2.67906 -3.35382 - -2.60423 -2.58316 -3.46271 - -2.68027 -2.48627 -3.56808 - -2.68004 -2.49104 -3.56808 - -2.80768 -2.29480 -3.74637 - -2.92476 -2.09499 -3.91267 - -3.03108 -1.89164 -4.06654 - -3.12647 -1.68473 -4.20752 - -3.21073 -1.47428 -4.33516 - -3.21083 -1.47526 -4.33516 - -3.28313 -1.23547 -4.44903 - -3.34254 -0.99171 -4.54889 - -3.38884 -0.74396 -4.63454 - -3.42182 -0.49223 -4.70578 - -3.44127 -0.23652 -4.76242 - -3.44127 -0.23630 -4.76242 - -3.44634 0.04718 -4.80430 - -3.43616 0.33501 -4.83147 - -3.41052 0.62718 -4.84403 - -3.36919 0.92370 -4.84211 - -3.31192 1.22457 -4.82581 - -3.31192 1.22469 -4.82581 - -3.23789 1.55200 -4.79529 - -3.14629 1.88397 -4.75094 - -3.03685 2.22059 -4.69324 - -2.90934 2.56188 -4.62266 - -2.76350 2.90783 -4.53965 - -2.76349 2.90740 -4.53965 - -2.59856 3.27863 -4.44476 - -2.41369 3.65480 -4.33876 - -2.20862 4.03591 -4.22255 - -1.98310 4.42194 -4.09700 - -1.73686 4.81292 -3.96297 - -1.73686 4.81248 -3.96297 - -1.46915 5.22773 -3.82142 - -1.17915 5.64816 -3.67360 - -0.86658 6.07376 -3.52083 - -0.53119 6.50454 -3.36445 - -0.17268 6.94049 -3.20580 - -0.17226 6.93334 -3.20580 - 0.19103 7.10525 -3.05213 - 0.54937 6.74089 -2.89926 - 0.87665 5.92537 -2.74844 - 1.15628 4.96058 -2.60096 - 1.38801 4.06209 -2.45805 - 1.38782 4.04777 -2.45805 - 1.57791 3.32352 -2.32085 - 1.72909 2.56549 -2.18991 - 1.84277 1.86487 -2.06570 - 1.92182 1.21809 -1.94867 - 1.96892 0.62135 -1.83928 - 1.96908 0.62001 -1.83928 - 1.98701 0.08450 -1.73785 - 1.97849 -0.40891 -1.64430 - 1.94568 -0.85950 -1.55852 - 1.89117 -1.24713 -1.48038 - 1.81872 -1.55824 -1.40975 - 1.81852 -1.55842 -1.40975 - 1.73187 -1.80063 -1.34641 - 1.63437 -1.98124 -1.28994 - 1.52902 -2.10707 -1.23993 - 1.41847 -2.18458 -1.19596 - 1.30505 -2.21976 -1.15763 - 1.30506 -2.21754 -1.15763 - 1.19091 -2.21596 -1.12448 - 1.07768 -2.18271 -1.09605 - 0.96687 -2.12242 -1.07191 - 0.85976 -2.03928 -1.05162 - 0.75744 -1.93702 -1.03473 - 0.75746 -1.93572 -1.03473 - 0.66088 -1.81763 -1.02083 - 0.57072 -1.68659 -1.00955 - 0.48758 -1.54512 -1.00055 - 0.41194 -1.39541 -0.99352 - 0.34416 -1.23930 -0.98812 - 0.34417 -1.23870 -0.98812 - 0.28459 -1.07772 -0.98405 - 0.23338 -0.91313 -0.98110 - 0.19071 -0.74601 -0.97911 - 0.15668 -0.57724 -0.97791 - 0.13135 -0.40755 -0.97733 - 0.13136 -0.40732 -0.97733 - 0.11182 -0.37399 -0.97723 - 0.09396 -0.34078 -0.97756 - 0.07774 -0.30808 -0.97825 - 0.06314 -0.27621 -0.97923 - 0.05010 -0.24544 -0.98045 - 0.05010 -0.24535 -0.98045 - 0.03858 -0.21589 -0.98185 - 0.02849 -0.18790 -0.98339 - 0.01976 -0.16151 -0.98505 - 0.01231 -0.13682 -0.98678 - 0.00605 -0.11388 -0.98856 - 0.00605 -0.11387 -0.98856 - 0.00089 -0.09272 -0.99036 - -0.00325 -0.07337 -0.99216 - -0.00648 -0.05581 -0.99395 - -0.00886 -0.04004 -0.99572 - -0.01051 -0.02601 -0.99745 - -0.01051 -0.02603 -0.99745 - -0.01150 -0.01372 -0.99915 - -0.01191 -0.00309 -1.00080 - -0.01183 0.00592 -1.00241 - -0.01134 0.01334 -1.00397 - -0.01052 0.01922 -1.00549 - -0.01052 0.01920 -1.00549 - -0.00945 0.02358 -1.00697 - -0.00819 0.02649 -1.00842 - -0.00682 0.02797 -1.00984 - -0.00542 0.02805 -1.01122 - -0.00404 0.02675 -1.01259 - -0.00404 0.02674 -1.01259 - -0.00276 0.02408 -1.01395 - -0.00166 0.02007 -1.01529 - -0.00078 0.01471 -1.01663 - -0.00021 0.00802 -1.01797 - 0.00000 0.00000 -1.01930 + -0.00036 0.00759 1.56754 + 0.01674 0.76521 1.31944 + 0.08340 1.95722 1.07130 + 0.21417 3.25171 0.82263 + 0.40639 4.41507 0.57295 + 0.65348 5.44665 0.32177 + 0.65364 -7.22488 0.32177 + 0.31542 -6.32591 0.06876 + 0.01882 -5.56030 -0.18544 + -0.24284 -4.92839 -0.43983 + -0.47624 -4.43003 -0.69340 + -0.68805 -4.06457 -0.94517 + -0.68717 -4.08046 -0.94517 + -0.92311 -3.81567 -1.24372 + -1.14764 -3.68003 -1.53728 + -1.36539 -3.57803 -1.82468 + -1.57695 -3.47354 -2.10473 + -1.78217 -3.36658 -2.37627 + -1.78250 -3.37352 -2.37627 + -1.97988 -3.20538 -2.63813 + -2.16707 -3.03344 -2.88929 + -2.34382 -2.85769 -3.12879 + -2.50991 -2.67813 -3.35570 + -2.66512 -2.49477 -3.56904 + -2.66492 -2.50009 -3.56904 + -2.79304 -2.30384 -3.74657 + -2.91060 -2.10404 -3.91217 + -3.01741 -1.90068 -4.06540 + -3.11328 -1.69378 -4.20579 + -3.19802 -1.48332 -4.33290 + -3.19812 -1.48429 -4.33290 + -3.27090 -1.24450 -4.44630 + -3.33079 -1.00073 -4.54574 + -3.37757 -0.75298 -4.63102 + -3.41104 -0.50125 -4.70193 + -3.43097 -0.24554 -4.75830 + -3.43097 -0.24530 -4.75830 + -3.43651 0.03818 -4.79994 + -3.42682 0.32601 -4.82692 + -3.40166 0.61818 -4.83933 + -3.36080 0.91470 -4.83730 + -3.30401 1.21556 -4.82092 + -3.30401 1.21570 -4.82092 + -3.23047 1.54301 -4.79035 + -3.13934 1.87498 -4.74599 + -3.03039 2.21160 -4.68831 + -2.90335 2.55289 -4.61777 + -2.75800 2.89883 -4.53483 + -2.75799 2.89841 -4.53483 + -2.59353 3.26965 -4.44003 + -2.40914 3.64582 -4.33415 + -2.20455 4.02692 -4.21808 + -1.97951 4.41296 -4.09267 + -1.73375 4.80393 -3.95882 + -1.73375 4.80350 -3.95882 + -1.46652 5.21875 -3.81745 + -1.17699 5.63918 -3.66981 + -0.86491 6.06478 -3.51724 + -0.52999 6.49556 -3.36108 + -0.17196 6.93151 -3.20264 + -0.17154 6.92436 -3.20264 + 0.19129 7.09627 -3.04917 + 0.54917 6.73191 -2.89651 + 0.87599 5.91705 -2.74591 + 1.15523 4.95351 -2.59862 + 1.38663 4.05617 -2.45592 + 1.38643 4.04187 -2.45592 + 1.57623 3.31812 -2.31891 + 1.72715 2.56103 -2.18816 + 1.84063 1.86127 -2.06413 + 1.91952 1.21525 -1.94728 + 1.96648 0.61918 -1.83805 + 1.96664 0.61785 -1.83805 + 1.98448 0.08293 -1.73678 + 1.97589 -0.40997 -1.64338 + 1.94304 -0.85992 -1.55773 + 1.88853 -1.24679 -1.47971 + 1.81611 -1.55728 -1.40920 + 1.81591 -1.55745 -1.40920 + 1.72932 -1.79915 -1.34596 + 1.63191 -1.97934 -1.28958 + 1.52667 -2.10485 -1.23965 + 1.41624 -2.18211 -1.19576 + 1.30295 -2.21711 -1.15749 + 1.30297 -2.21490 -1.15749 + 1.18895 -2.21320 -1.12440 + 1.07586 -2.17989 -1.09602 + 0.96520 -2.11960 -1.07192 + 0.85824 -2.03649 -1.05166 + 0.75606 -1.93429 -1.03481 + 0.75607 -1.93299 -1.03481 + 0.65964 -1.81499 -1.02093 + 0.56961 -1.68406 -1.00966 + 0.48660 -1.54271 -1.00069 + 0.41107 -1.39314 -0.99366 + 0.34341 -1.23719 -0.98827 + 0.34342 -1.23658 -0.98827 + 0.28394 -1.07576 -0.98420 + 0.23283 -0.91133 -0.98126 + 0.19025 -0.74436 -0.97926 + 0.15630 -0.57574 -0.97806 + 0.13105 -0.40621 -0.97747 + 0.13105 -0.40598 -0.97747 + 0.11158 -0.37279 -0.97737 + 0.09377 -0.33972 -0.97770 + 0.07760 -0.30714 -0.97837 + 0.06304 -0.27540 -0.97935 + 0.05004 -0.24474 -0.98056 + 0.05005 -0.24466 -0.98056 + 0.03855 -0.21531 -0.98195 + 0.02849 -0.18742 -0.98349 + 0.01978 -0.16112 -0.98513 + 0.01235 -0.13651 -0.98686 + 0.00610 -0.11364 -0.98863 + 0.00610 -0.11363 -0.98863 + 0.00096 -0.09255 -0.99042 + -0.00318 -0.07326 -0.99221 + -0.00640 -0.05576 -0.99400 + -0.00879 -0.04003 -0.99576 + -0.01043 -0.02605 -0.99749 + -0.01043 -0.02606 -0.99749 + -0.01142 -0.01379 -0.99918 + -0.01184 -0.00318 -1.00082 + -0.01176 0.00580 -1.00243 + -0.01128 0.01321 -1.00398 + -0.01047 0.01907 -1.00550 + -0.01047 0.01906 -1.00550 + -0.00940 0.02343 -1.00698 + -0.00815 0.02634 -1.00842 + -0.00679 0.02782 -1.00983 + -0.00539 0.02791 -1.01121 + -0.00402 0.02662 -1.01258 + -0.00402 0.02662 -1.01258 + -0.00275 0.02397 -1.01393 + -0.00165 0.01998 -1.01527 + -0.00078 0.01465 -1.01660 + -0.00021 0.00799 -1.01793 + 0.00000 0.00000 -1.01926 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3706,7 +3707,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -3718,9 +3719,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 65.43700 0.00000 15.84156 0.00000 0.00000 65.56100 0.00000 35.39770 0.00000 - -0.15000 65.61700 33.88500 48.54937 0.17585 -0.30000 65.65900 34.05600 62.30901 0.51002 - -0.45000 65.69400 34.19700 76.67661 0.91432 -0.60000 65.72500 34.31900 91.65215 1.38877 -0.86667 65.77100 34.50700 119.77632 2.40554 -1.13333 65.81200 34.67000 149.82161 3.64428 @@ -3746,7 +3745,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -3759,10 +3758,8 @@ Lambda passive [DATA] 0.37500 12.25000 63.36625 0.00000 0.61732 0.00000 5.17275 0.12500 16.75000 78.22456 0.00000 0.61732 0.00000 4.67012 - -0.07500 19.61425 87.67776 1.17230 0.61732 0.05977 4.47011 - -0.22500 20.84275 91.73092 2.22784 0.61732 0.10689 4.40110 - -0.37500 22.07125 95.78402 2.69533 0.61732 0.12212 4.33976 - -0.52500 23.29975 99.83693 3.16300 0.61732 0.13575 4.28489 + -0.15000 20.22850 89.70434 1.70007 0.61732 0.08404 4.43455 + -0.45000 22.68550 97.81047 2.92916 0.61732 0.12912 4.31159 -0.73333 25.00600 105.46563 3.81289 0.61732 0.15248 4.21761 -1.00000 27.19000 112.66983 4.64528 0.61732 0.17085 4.14380 -1.26667 29.37400 119.87345 5.47825 0.61732 0.18650 4.08094 @@ -3787,7 +3784,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3798,42 +3795,30 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 9.83502 0.00000 51.72755 6.17317 110 19 - - 20.48883 0.00000 56.38303 6.72875 110 36 - - 27.17988 0.00000 61.03851 7.28434 110 45 - - 24.55784 0.00000 65.69399 7.83992 110 37 - - 21.92567 0.00000 70.34947 8.39551 110 31 - - 19.27850 0.00000 75.00495 8.95109 110 26 - - 19.27850 0.00000 67.71679 8.95109 110 28 - - 16.61298 0.00000 71.91990 9.50668 110 23 - - 13.93566 0.00000 76.12301 10.06226 110 18 - - 11.25654 0.00000 80.32612 10.61784 110 14 - - 8.58561 0.00000 84.52923 11.17343 110 0 - - 5.93285 0.00000 88.73234 11.72901 110 0 - - 5.93285 0.00000 84.93200 11.72901 110 0 - - 4.35362 0.29430 86.03031 11.88069 110 0 - - 2.78535 0.58860 87.12861 12.03236 110 0 - - 1.22960 0.88290 88.22692 12.18404 110 0 - - 1.19433 1.17720 89.32522 12.33571 1 0 A - 1.20901 1.47150 90.42353 12.48739 1 0 A - 2.16218 1.47150 89.02755 12.48739 1 0 A - 2.18844 1.76580 90.10890 12.63906 1 0 A - 2.21471 2.06010 91.19025 12.79074 1 0 A - 2.24097 2.35440 92.27160 12.94241 1 0 A - 2.26723 2.64870 93.35295 13.09409 1 0 A - 2.29349 2.94300 94.43430 13.24576 1 0 A - 2.62032 2.94300 93.11832 13.24576 1 0 A - 2.65032 3.23730 94.18460 13.39744 1 0 A - 2.68033 3.53160 95.25088 13.54911 1 0 A - 2.71033 3.82590 96.31716 13.70079 1 0 A - 2.74034 4.12020 97.38344 13.85246 1 0 A - 2.77034 4.41450 98.44972 14.00413 1 0 A - 3.07961 4.41450 97.20494 14.00413 1 0 A - 3.11296 4.70880 98.25774 14.15581 1 0 A - 3.14632 5.00310 99.31053 14.30748 1 0 A - 3.17967 5.29740 100.36333 14.45916 1 0 A - 3.21303 5.59170 101.41613 14.61083 1 0 A - 3.24638 5.88600 102.46893 14.76251 1 0 A + 9.82312 0.00000 51.72755 6.17317 110 19 - + 20.48164 0.00000 56.38303 6.72875 110 36 - + 27.19884 0.00000 61.03851 7.28434 110 45 - + 24.58102 0.00000 65.69399 7.83992 110 37 - + 21.95306 0.00000 70.34947 8.39551 110 31 - + 19.31010 0.00000 75.00495 8.95109 110 26 - + 19.31010 0.00000 67.71679 8.95109 110 29 - + 16.64878 0.00000 71.91990 9.50668 110 23 - + 13.97564 0.00000 76.12301 10.06226 110 18 - + 11.30063 0.00000 80.32612 10.61784 110 14 - + 8.63371 0.00000 84.52923 11.17343 110 0 - + 5.98484 0.00000 88.73234 11.72901 110 0 - + 5.98484 0.00000 84.25650 11.72901 110 0 - + 2.84178 0.58860 86.43564 12.03236 110 0 - + 1.67942 1.17720 88.61477 12.33571 1 0 A + 1.72072 1.76580 90.79391 12.63906 1 0 A + 1.76202 2.35440 92.97305 12.94241 1 0 A + 1.80332 2.94300 95.15219 13.24576 1 0 A + 2.77054 2.94300 92.51369 13.24576 1 0 A + 2.83399 3.53160 94.63240 13.54911 1 0 A + 2.89744 4.12020 96.75112 13.85246 1 0 A + 2.96089 4.70880 98.86983 14.15581 1 0 A + 3.02434 5.29740 100.98854 14.45916 1 0 A + 3.08779 5.88600 103.10726 14.76251 1 0 A 3.64638 5.88600 100.86000 14.76251 1 0 A 3.71298 6.40920 102.70225 15.03215 1 0 A 3.77958 6.93240 104.54451 15.30180 1 0 A @@ -3885,69 +3870,69 @@ Status character 10.15123 26.62714 158.39779 25.45196 1 0 A 10.25494 27.13166 160.01596 25.71198 1 0 A 10.35864 27.63617 161.63413 25.97199 1 0 A - 10.64680 28.14069 163.25230 26.23200 110 0 - - 11.68824 28.64520 164.87047 26.49202 110 0 - - 12.65453 29.14971 166.48864 26.75203 110 0 - - 12.65453 29.14971 165.36888 26.75203 110 0 - - 13.54793 29.65423 166.97616 27.01204 110 0 - - 14.37265 30.15874 168.58345 27.27206 110 0 - - 15.13280 30.66326 170.19074 27.53207 110 0 - - 15.83249 31.16777 171.79802 27.79209 110 0 - - 16.47585 31.67229 173.40531 28.05210 110 0 - - 16.47585 31.67229 172.33729 28.05210 110 0 - - 17.06734 32.17680 173.93468 28.31211 110 0 - - 17.61162 32.68131 175.53206 28.57213 110 0 - - 18.11306 33.18583 177.12945 28.83214 110 0 - - 18.57600 33.69034 178.72684 29.09215 110 0 - - 19.00483 34.19486 180.32422 29.35217 110 0 - - 19.00483 34.19486 179.30337 29.35217 110 0 - - 19.40386 34.69937 180.89171 29.61218 110 0 - - 19.77671 35.20389 182.48006 29.87220 110 0 - - 20.12666 35.70840 184.06840 30.13221 110 0 - - 20.45699 36.21291 185.65674 30.39222 110 0 - - 20.77100 36.71743 187.24509 30.65224 110 0 - - 20.77100 36.71743 186.26740 30.65224 110 0 - - 21.07175 37.22194 187.84745 30.91225 110 0 - - 21.36124 37.72646 189.42750 31.17226 110 0 - - 21.64116 38.23097 191.00755 31.43228 110 0 - - 21.91319 38.73549 192.58760 31.69229 110 0 - - 22.17904 39.24000 194.16765 31.95231 110 0 - - 18.48819 39.24000 366.46806 28.26145 110 0 - - 18.76730 39.73050 370.07539 28.53964 110 0 - - 19.04222 40.22100 373.68272 28.81784 110 0 - - 19.31355 40.71150 377.29006 29.09603 110 0 - - 19.58192 41.20200 380.89739 29.37422 110 0 - - 19.84793 41.69250 384.50472 29.65241 110 0 - - 19.84793 41.69250 364.68523 29.65241 110 0 - - 20.11212 42.18300 368.10662 29.93060 110 0 - - 20.37488 42.67350 371.52800 30.20879 110 0 - - 20.63651 43.16400 374.94939 30.48699 110 0 - - 20.89737 43.65450 378.37078 30.76518 110 0 - - 21.15776 44.14500 381.79217 31.04337 110 0 - - 21.15776 44.14500 372.34930 31.04337 110 0 - - 21.41799 44.63550 375.68607 31.32156 110 0 - - 21.67818 45.12600 379.02284 31.59975 110 0 - - 21.93846 45.61650 382.35961 31.87795 110 0 - - 22.19895 46.10700 385.69638 32.15614 110 0 - - 22.45978 46.59750 389.03315 32.43433 110 0 - - 22.45978 46.59750 383.33523 32.43433 110 0 - - 22.72104 47.08800 386.62313 32.71252 110 0 - - 22.98272 47.57850 389.91103 32.99071 110 0 - - 23.24484 48.06900 393.19892 33.26890 110 0 - - 23.50739 48.55950 396.48682 33.54710 110 0 - - 23.77036 49.05000 399.77472 33.82529 110 0 - - 23.77036 49.05000 395.94681 33.82529 110 0 - - 24.03374 49.54050 399.20323 34.10348 110 0 - - 24.29748 50.03100 402.45964 34.38167 110 0 - - 24.56151 50.52150 405.71606 34.65986 110 0 - - 24.82581 51.01200 408.97247 34.93806 110 0 - - 25.09030 51.50250 412.22889 35.21625 110 0 - - 25.09030 51.50250 409.48709 35.21625 110 0 - - 25.35495 51.99300 412.72185 35.49444 110 0 - - 25.61969 52.48350 415.95661 35.77263 110 0 - - 25.88451 52.97400 419.19136 36.05082 110 0 - - 26.14936 53.46450 422.42612 36.32902 110 0 - - 26.41423 53.95500 425.66087 36.60721 110 0 - + 10.65473 28.14069 163.25230 26.23200 110 0 - + 11.69493 28.64520 164.87047 26.49202 110 0 - + 12.66008 29.14971 166.48864 26.75203 110 0 - + 12.66008 29.14971 165.36888 26.75203 110 0 - + 13.55245 29.65423 166.97616 27.01204 110 0 - + 14.37624 30.15874 168.58345 27.27206 110 0 - + 15.13556 30.66326 170.19074 27.53207 110 0 - + 15.83451 31.16777 171.79802 27.79209 110 0 - + 16.47722 31.67229 173.40531 28.05210 110 0 - + 16.47722 31.67229 172.33729 28.05210 110 0 - + 17.06815 32.17680 173.93468 28.31211 110 0 - + 17.61194 32.68131 175.53206 28.57213 110 0 - + 18.11295 33.18583 177.12945 28.83214 110 0 - + 18.57555 33.69034 178.72684 29.09215 110 0 - + 19.00409 34.19486 180.32422 29.35217 110 0 - + 19.00409 34.19486 179.30337 29.35217 110 0 - + 19.40289 34.69937 180.89171 29.61218 110 0 - + 19.77555 35.20389 182.48006 29.87220 110 0 - + 20.12535 35.70840 184.06840 30.13221 110 0 - + 20.45559 36.21291 185.65674 30.39222 110 0 - + 20.76953 36.71743 187.24509 30.65224 110 0 - + 20.76953 36.71743 186.26740 30.65224 110 0 - + 21.07024 37.22194 187.84745 30.91225 110 0 - + 21.35971 37.72646 189.42750 31.17226 110 0 - + 21.63964 38.23097 191.00755 31.43228 110 0 - + 21.91170 38.73549 192.58760 31.69229 110 0 - + 22.17759 39.24000 194.16765 31.95231 110 0 - + 18.48674 39.24000 366.46806 28.26145 110 0 - + 18.76590 39.73050 370.07539 28.53964 110 0 - + 19.04088 40.22100 373.68272 28.81784 110 0 - + 19.31229 40.71150 377.29006 29.09603 110 0 - + 19.58073 41.20200 380.89739 29.37422 110 0 - + 19.84681 41.69250 384.50472 29.65241 110 0 - + 19.84681 41.69250 364.68523 29.65241 110 0 - + 20.11109 42.18300 368.10662 29.93060 110 0 - + 20.37392 42.67350 371.52800 30.20879 110 0 - + 20.63564 43.16400 374.94939 30.48699 110 0 - + 20.89657 43.65450 378.37078 30.76518 110 0 - + 21.15705 44.14500 381.79217 31.04337 110 0 - + 21.15705 44.14500 372.34930 31.04337 110 0 - + 21.41734 44.63550 375.68607 31.32156 110 0 - + 21.67761 45.12600 379.02284 31.59975 110 0 - + 21.93796 45.61650 382.35961 31.87795 110 0 - + 22.19852 46.10700 385.69638 32.15614 110 0 - + 22.45941 46.59750 389.03315 32.43433 110 0 - + 22.45941 46.59750 383.33523 32.43433 110 0 - + 22.72073 47.08800 386.62313 32.71252 110 0 - + 22.98248 47.57850 389.91103 32.99071 110 0 - + 23.24465 48.06900 393.19892 33.26890 110 0 - + 23.50725 48.55950 396.48682 33.54710 110 0 - + 23.77027 49.05000 399.77472 33.82529 110 0 - + 23.77027 49.05000 395.94681 33.82529 110 0 - + 24.03370 49.54050 399.20323 34.10348 110 0 - + 24.29749 50.03100 402.45964 34.38167 110 0 - + 24.56157 50.52150 405.71606 34.65986 110 0 - + 24.82591 51.01200 408.97247 34.93806 110 0 - + 25.09045 51.50250 412.22889 35.21625 110 0 - + 25.09045 51.50250 409.48709 35.21625 110 0 - + 25.35513 51.99300 412.72185 35.49444 110 0 - + 25.61992 52.48350 415.95661 35.77263 110 0 - + 25.88478 52.97400 419.19136 36.05082 110 0 - + 26.14968 53.46450 422.42612 36.32902 110 0 - + 26.41458 53.95500 425.66087 36.60721 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3960,8 +3945,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 46.165 'Clay, sl san, moderate' - -4.00 33.696 'Sand, sl sil, moderate' + 4.00 46.166 'Clay, sl san, moderate' + -4.00 33.695 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4095,7 +4080,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4119,28 +4104,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -4181,81 +4154,81 @@ Status character 0.00002 21.58200 0.00002 0.00000 202 100 P 10.52485 22.08651 10.52485 0.26001 202 100 P 21.04970 22.59103 21.04970 0.52003 202 100 P - 28.26449 23.09554 31.57456 0.78004 110 90 - - 27.04962 23.60006 42.09941 1.04005 110 64 - - 25.88061 24.10457 52.62426 1.30007 110 49 - + 28.23910 23.09554 31.57456 0.78004 110 89 - + 27.02630 23.60006 42.09941 1.04005 110 64 - + 25.85931 24.10457 52.62426 1.30007 110 49 - 22.20384 24.10457 22.20384 1.30007 202 100 P - 24.76856 24.60909 26.64460 1.56008 110 93 - - 23.71919 25.11360 31.08537 1.82010 110 76 - - 22.73707 25.61811 35.52614 2.08011 110 64 - - 21.82679 26.12263 39.96691 2.34012 110 55 - - 20.99292 26.62714 44.40767 2.60014 110 47 - - 20.99292 26.62714 32.22917 2.60014 110 65 - - 20.23861 27.13166 35.45208 2.86015 110 57 - - 19.56318 27.63617 38.67500 3.12016 110 51 - - 18.96538 28.14069 41.89792 3.38018 110 45 - - 18.44397 28.64520 45.12083 3.64019 110 41 - - 17.99771 29.14971 48.34375 3.90021 110 37 - - 17.99771 29.14971 40.50701 3.90021 110 44 - - 17.62433 29.65423 43.20747 4.16022 110 41 - - 17.31964 30.15874 45.90794 4.42023 110 38 - - 17.07952 30.66326 48.60841 4.68025 110 35 - - 16.89986 31.16777 51.30887 4.94026 110 33 - - 16.77653 31.67229 54.00934 5.20027 110 31 - - 16.77653 31.67229 48.19862 5.20027 110 35 - - 16.70506 32.17680 50.60855 5.46029 110 33 - - 16.68080 32.68131 53.01848 5.72030 110 31 - - 16.69940 33.18583 55.42841 5.98032 110 30 - - 16.75648 33.69034 57.83834 6.24033 110 29 - - 16.84768 34.19486 60.24827 6.50034 110 28 - - 16.84768 34.19486 55.62179 6.50034 110 30 - - 16.96867 34.69937 57.84666 6.76036 110 29 - - 17.11585 35.20389 60.07153 7.02037 110 28 - - 17.28593 35.70840 62.29640 7.28038 110 28 - - 17.47563 36.21291 64.52127 7.54040 110 27 - - 17.68165 36.71743 66.74614 7.80041 110 26 - - 17.68165 36.71743 62.89930 7.80041 110 28 - - 17.90093 37.22194 64.99594 8.06043 110 28 - - 18.13147 37.72646 67.09259 8.32044 110 27 - - 18.37158 38.23097 69.18923 8.58045 110 27 - - 18.61956 38.73549 71.28587 8.84047 110 26 - - 18.87374 39.24000 73.38252 9.10048 110 26 - - 17.82253 39.24000 104.85934 8.04927 110 17 - - 18.09981 39.73050 108.48339 8.32746 110 17 - - 18.38128 40.22100 112.10745 8.60566 110 16 - - 18.66632 40.71150 115.73151 8.88385 110 16 - - 18.95434 41.20200 119.35556 9.16204 110 16 - - 19.24471 41.69250 122.97962 9.44023 110 16 - - 19.24471 41.69250 114.03422 9.44023 110 17 - - 19.53690 42.18300 117.39467 9.71842 110 17 - - 19.83053 42.67350 120.75512 9.99661 110 16 - - 20.12528 43.16400 124.11556 10.27481 110 16 - - 20.42081 43.65450 127.47601 10.55300 110 16 - - 20.71680 44.14500 130.83646 10.83119 110 16 - - 20.71680 44.14500 127.37671 10.83119 110 16 - - 21.01296 44.63550 130.64830 11.10938 110 16 - - 21.30915 45.12600 133.91988 11.38757 110 16 - - 21.60526 45.61650 137.19147 11.66577 110 16 - - 21.90115 46.10700 140.46305 11.94396 110 16 - - 22.19670 46.59750 143.73464 12.22215 110 15 - - 22.19670 46.59750 141.83737 12.22215 110 16 - - 22.49183 47.08800 145.06577 12.50034 110 16 - - 22.78652 47.57850 148.29417 12.77853 110 15 - - 23.08079 48.06900 151.52257 13.05673 110 15 - - 23.37463 48.55950 154.75097 13.33492 110 15 - - 23.66804 49.05000 157.97937 13.61311 110 15 - - 23.66804 49.05000 156.79923 13.61311 110 15 - - 23.96104 49.54050 160.00352 13.89130 110 15 - - 24.25369 50.03100 163.20780 14.16949 110 15 - - 24.54603 50.52150 166.41208 14.44768 110 15 - - 24.83813 51.01200 169.61637 14.72588 110 15 - - 25.13001 51.50250 172.82065 15.00407 110 15 - - 25.13001 51.50250 172.03314 15.00407 110 15 - - 25.42175 51.99300 175.22282 15.28226 110 15 - - 25.71339 52.48350 178.41251 15.56045 110 14 - - 26.00496 52.97400 181.60219 15.83864 110 14 - - 26.29649 53.46450 184.79187 16.11684 110 14 - - 26.58801 53.95500 187.98155 16.39503 110 14 - + 24.74921 24.60909 26.64460 1.56008 110 93 - + 23.70173 25.11360 31.08537 1.82010 110 76 - + 22.72144 25.61811 35.52614 2.08011 110 64 - + 21.81289 26.12263 39.96691 2.34012 110 55 - + 20.98066 26.62714 44.40767 2.60014 110 47 - + 20.98066 26.62714 32.22917 2.60014 110 65 - + 20.22790 27.13166 35.45208 2.86015 110 57 - + 19.55392 27.63617 38.67500 3.12016 110 51 - + 18.95746 28.14069 41.89792 3.38018 110 45 - + 18.43728 28.64520 45.12083 3.64019 110 41 - + 17.99216 29.14971 48.34375 3.90021 110 37 - + 17.99216 29.14971 40.50701 3.90021 110 44 - + 17.61981 29.65423 43.20747 4.16022 110 41 - + 17.31605 30.15874 45.90794 4.42023 110 38 - + 17.07676 30.66326 48.60841 4.68025 110 35 - + 16.89784 31.16777 51.30887 4.94026 110 33 - + 16.77516 31.67229 54.00934 5.20027 110 31 - + 16.77516 31.67229 48.19862 5.20027 110 35 - + 16.70425 32.17680 50.60855 5.46029 110 33 - + 16.68049 32.68131 53.01848 5.72030 110 31 - + 16.69950 33.18583 55.42841 5.98032 110 30 - + 16.75693 33.69034 57.83834 6.24033 110 29 - + 16.84842 34.19486 60.24827 6.50034 110 28 - + 16.84842 34.19486 55.62179 6.50034 110 30 - + 16.96965 34.69937 57.84666 6.76036 110 29 - + 17.11702 35.20389 60.07153 7.02037 110 28 - + 17.28724 35.70840 62.29640 7.28038 110 28 - + 17.47704 36.21291 64.52127 7.54040 110 27 - + 17.68312 36.71743 66.74614 7.80041 110 26 - + 17.68312 36.71743 62.89930 7.80041 110 28 - + 17.90244 37.22194 64.99594 8.06043 110 28 - + 18.13299 37.72646 67.09259 8.32044 110 27 - + 18.37310 38.23097 69.18923 8.58045 110 27 - + 18.62106 38.73549 71.28587 8.84047 110 26 - + 18.87519 39.24000 73.38252 9.10048 110 26 - + 17.82398 39.24000 104.85934 8.04927 110 17 - + 18.10121 39.73050 108.48339 8.32746 110 17 - + 18.38261 40.22100 112.10745 8.60566 110 16 - + 18.66759 40.71150 115.73151 8.88385 110 16 - + 18.95553 41.20200 119.35556 9.16204 110 16 - + 19.24583 41.69250 122.97962 9.44023 110 16 - + 19.24583 41.69250 114.03422 9.44023 110 17 - + 19.53794 42.18300 117.39467 9.71842 110 17 - + 19.83149 42.67350 120.75512 9.99661 110 16 - + 20.12615 43.16400 124.11556 10.27481 110 16 - + 20.42161 43.65450 127.47601 10.55300 110 16 - + 20.71751 44.14500 130.83646 10.83119 110 16 - + 20.71751 44.14500 127.37671 10.83119 110 16 - + 21.01360 44.63550 130.64830 11.10938 110 16 - + 21.30972 45.12600 133.91988 11.38757 110 16 - + 21.60575 45.61650 137.19147 11.66577 110 16 - + 21.90158 46.10700 140.46305 11.94396 110 16 - + 22.19707 46.59750 143.73464 12.22215 110 15 - + 22.19707 46.59750 141.83737 12.22215 110 16 - + 22.49213 47.08800 145.06577 12.50034 110 16 - + 22.78677 47.57850 148.29417 12.77853 110 15 - + 23.08098 48.06900 151.52257 13.05673 110 15 - + 23.37476 48.55950 154.75097 13.33492 110 15 - + 23.66812 49.05000 157.97937 13.61311 110 15 - + 23.66812 49.05000 156.79923 13.61311 110 15 - + 23.96108 49.54050 160.00352 13.89130 110 15 - + 24.25368 50.03100 163.20780 14.16949 110 15 - + 24.54598 50.52150 166.41208 14.44768 110 15 - + 24.83802 51.01200 169.61637 14.72588 110 15 - + 25.12987 51.50250 172.82065 15.00407 110 15 - + 25.12987 51.50250 172.03314 15.00407 110 15 - + 25.42156 51.99300 175.22282 15.28226 110 15 - + 25.71316 52.48350 178.41251 15.56045 110 14 - + 26.00469 52.97400 181.60219 15.83864 110 14 - + 26.29617 53.46450 184.79187 16.11684 110 14 - + 26.58765 53.95500 187.98155 16.39503 110 14 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4268,7 +4241,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 33.869 'Clay, sl san, moderate' + 4.00 33.860 'Clay, sl san, moderate' -4.00 33.289 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -4282,7 +4255,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 9.08 'Clay, sl san, moderate' + 4.00 9.07 'Clay, sl san, moderate' -4.00 16.96 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -4293,7 +4266,7 @@ Layer name [EUROCODE BELGIUM SET 1] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4311,28 +4284,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -4371,46 +4332,46 @@ Depth -2.14667 -2.20000 -2.20000 - -2.24900 - -2.29800 - -2.34700 - -2.39600 - -2.44500 - -2.44500 - -2.49683 - -2.54867 - -2.60050 - -2.65233 - -2.70417 - -2.70417 - -2.75600 - -2.80783 - -2.85967 - -2.91150 - -2.96333 - -2.96333 - -3.01517 - -3.06700 - -3.11883 - -3.17067 - -3.22250 - -3.22250 - -3.27433 - -3.32617 - -3.37800 - -3.42983 - -3.48167 - -3.48167 - -3.53350 - -3.58533 - -3.63717 - -3.68900 - -3.74083 - -3.74083 - -3.79267 - -3.84450 - -3.89633 - -3.94817 + -2.25143 + -2.30286 + -2.35429 + -2.40571 + -2.45714 + -2.45714 + -2.50857 + -2.56000 + -2.61143 + -2.66286 + -2.71429 + -2.71429 + -2.76571 + -2.81714 + -2.86857 + -2.92000 + -2.97143 + -2.97143 + -3.02286 + -3.07429 + -3.12571 + -3.17714 + -3.22857 + -3.22857 + -3.28000 + -3.33143 + -3.38286 + -3.43429 + -3.48571 + -3.48571 + -3.53714 + -3.58857 + -3.64000 + -3.69143 + -3.74286 + -3.74286 + -3.79429 + -3.84571 + -3.89714 + -3.94857 -4.00000 -4.00000 -4.05000 @@ -4478,20 +4439,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 16.50 : Percentage mobilized resistance left - 7.32 : Percentage mobilized resistance right - 108.81 : Effective left - 78.20 : Effective right + 15.83 : Percentage mobilized resistance left + 7.59 : Percentage mobilized resistance right + 111.73 : Effective left + 81.13 : Effective right 117.77 : Water pressure left 148.38 : Water pressure right - 659.50 : Max effective resistance left + 705.67 : Max effective resistance left 1068.57 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 39.58 : Vertical force left - 29.20 : Vertical force right + 40.50 : Vertical force left + 30.13 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -4500,10 +4461,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.20 : Active force -39.58 : Passive force --29.20 : Plugged active force -39.58 : Plugged passive force +-30.13 : Active force +40.50 : Passive force +-30.13 : Plugged active force +40.50 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 71.94 : Factor on resistance @@ -4516,163 +4477,151 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -1.23815 - 0.00000 0.00000 -1.22295 - 0.00000 0.00000 -1.20774 - 0.00000 0.00000 -1.19254 - 0.00000 0.00000 -1.17733 - 0.00000 0.00000 -1.16213 - 0.00000 0.00000 -1.16213 - 0.00000 0.00000 -1.14692 - 0.00000 0.00000 -1.13171 - 0.00000 0.00000 -1.11651 - 0.00000 0.00000 -1.10130 - 0.00000 0.00000 -1.08610 - 0.00000 0.00000 -1.08610 - 0.00006 0.00596 -1.07698 - 0.00048 0.02384 -1.06785 - 0.00161 0.05364 -1.05873 - 0.00381 0.09535 -1.04961 - 0.00745 0.14899 -1.04049 - 0.00746 0.14868 -1.04049 - 0.01287 0.21424 -1.03137 - 0.02043 0.29171 -1.02226 - 0.03050 0.38177 -1.01316 - 0.04352 0.48933 -1.00408 - 0.06008 0.61862 -0.99502 - 0.06007 0.61831 -0.99502 - 0.07058 0.69615 -0.99020 - 0.08238 0.78017 -0.98538 - 0.09557 0.87036 -0.98058 - 0.11026 0.96673 -0.97580 - 0.12654 1.06927 -0.97103 - 0.12658 1.06868 -0.97103 - 0.17875 1.27482 -0.95801 - 0.23629 1.31226 -0.94519 - 0.29179 1.18315 -0.93262 - 0.33938 0.98407 -0.92036 - 0.37874 0.80914 -0.90846 - 0.37870 0.80880 -0.90846 - 0.41674 0.62126 -0.89460 - 0.44531 0.45321 -0.88140 - 0.46542 0.30367 -0.86890 - 0.47801 0.17161 -0.85711 - 0.48401 0.05599 -0.84608 - 0.48401 0.05644 -0.84608 - 0.48428 -0.04387 -0.83583 - 0.47959 -0.12997 -0.82635 - 0.47065 -0.20296 -0.81762 - 0.45815 -0.26389 -0.80962 - 0.44270 -0.31384 -0.80235 - 0.44270 -0.31343 -0.80235 - 0.42488 -0.35341 -0.79579 - 0.40516 -0.38443 -0.78989 - 0.38401 -0.40742 -0.78464 - 0.36183 -0.42327 -0.77999 - 0.33897 -0.43285 -0.77591 - 0.33898 -0.43253 -0.77591 - 0.31578 -0.43661 -0.77237 - 0.29249 -0.43595 -0.76932 - 0.26935 -0.43125 -0.76674 - 0.24655 -0.42314 -0.76459 - 0.22426 -0.41220 -0.76282 - 0.22426 -0.41199 -0.76282 - 0.20264 -0.39877 -0.76141 - 0.18176 -0.38374 -0.76032 - 0.16173 -0.36736 -0.75952 - 0.14259 -0.35000 -0.75897 - 0.12440 -0.33202 -0.75865 - 0.12441 -0.33190 -0.75865 - 0.10719 -0.31360 -0.75853 - 0.09096 -0.29523 -0.75857 - 0.07570 -0.27704 -0.75876 - 0.06140 -0.25920 -0.75907 - 0.04804 -0.24188 -0.75947 - 0.04804 -0.24110 -0.75947 - 0.03661 -0.22574 -0.75992 - 0.02591 -0.21100 -0.76040 - 0.01592 -0.19693 -0.76092 - 0.00660 -0.18356 -0.76146 - -0.00208 -0.17092 -0.76202 - -0.00208 -0.17022 -0.76202 - -0.01058 -0.15765 -0.76261 - -0.01844 -0.14588 -0.76317 - -0.02571 -0.13488 -0.76371 - -0.03243 -0.12461 -0.76421 - -0.03864 -0.11500 -0.76467 - -0.03864 -0.11504 -0.76467 - -0.04437 -0.10603 -0.76506 - -0.04964 -0.09752 -0.76539 - -0.05448 -0.08943 -0.76564 - -0.05892 -0.08163 -0.76582 - -0.06295 -0.07401 -0.76590 - -0.06295 -0.07407 -0.76590 - -0.06659 -0.06651 -0.76589 - -0.06984 -0.05886 -0.76578 - -0.07269 -0.05099 -0.76557 - -0.07512 -0.04275 -0.76525 - -0.07711 -0.03398 -0.76482 - -0.07711 -0.03405 -0.76482 - -0.07864 -0.02460 -0.76427 - -0.07965 -0.01429 -0.76361 - -0.08010 -0.00298 -0.76282 - -0.07994 0.00952 -0.76192 - -0.07909 0.02336 -0.76090 - -0.07909 0.02330 -0.76090 - -0.07749 0.03865 -0.75976 - -0.07506 0.05569 -0.75850 - -0.07169 0.07456 -0.75713 - -0.06729 0.09542 -0.75566 - -0.06176 0.11842 -0.75408 - -0.06176 0.11837 -0.75408 - -0.05498 0.14363 -0.75241 - -0.04683 0.17129 -0.75066 - -0.03718 0.20144 -0.74884 - -0.02590 0.23418 -0.74697 - -0.01286 0.26956 -0.74506 - -0.01286 0.26955 -0.74506 - -0.00033 0.23185 -0.74320 - 0.01037 0.19666 -0.74134 - 0.01937 0.16397 -0.73949 - 0.02681 0.13377 -0.73766 - 0.03279 0.10600 -0.73588 - 0.03279 0.10602 -0.73588 - 0.03745 0.08064 -0.73414 - 0.04089 0.05756 -0.73245 - 0.04324 0.03673 -0.73082 - 0.04460 0.01806 -0.72924 - 0.04508 0.00148 -0.72773 - 0.04508 0.00151 -0.72773 - 0.04479 -0.01308 -0.72629 - 0.04381 -0.02576 -0.72490 - 0.04224 -0.03661 -0.72358 - 0.04018 -0.04570 -0.72231 - 0.03770 -0.05313 -0.72110 - 0.03770 -0.05310 -0.72110 - 0.03489 -0.05893 -0.71994 - 0.03183 -0.06323 -0.71883 - 0.02859 -0.06606 -0.71776 - 0.02525 -0.06747 -0.71674 - 0.02187 -0.06753 -0.71575 - 0.02187 -0.06751 -0.71575 - 0.01852 -0.06625 -0.71479 - 0.01526 -0.06371 -0.71385 - 0.01217 -0.05992 -0.71294 - 0.00929 -0.05491 -0.71204 - 0.00670 -0.04870 -0.71116 - 0.00670 -0.04870 -0.71116 - 0.00444 -0.04130 -0.71028 - 0.00259 -0.03273 -0.70942 - 0.00119 -0.02298 -0.70855 - 0.00031 -0.01207 -0.70769 - 0.00000 0.00000 -0.70683 + 0.00000 0.00000 -1.01265 + 0.00000 0.00000 -1.00265 + 0.00000 0.00000 -0.99265 + 0.00000 0.00000 -0.98265 + 0.00000 0.00000 -0.97265 + 0.00000 0.00000 -0.96265 + 0.00000 0.00000 -0.96265 + 0.00000 0.00000 -0.95265 + 0.00000 0.00000 -0.94265 + 0.00000 0.00000 -0.93265 + 0.00000 0.00000 -0.92265 + 0.00000 0.00000 -0.91265 + 0.00004 -0.00157 -0.91265 + 0.00062 0.03231 -0.90064 + 0.00541 0.14107 -0.88862 + 0.01919 0.33180 -0.87663 + 0.04687 0.60447 -0.86471 + 0.09336 0.95900 -0.85287 + 0.09339 0.95755 -0.85287 + 0.15617 1.02614 -0.84123 + 0.21036 0.78617 -0.82990 + 0.25124 0.58246 -0.81897 + 0.28096 0.41433 -0.80853 + 0.30165 0.28090 -0.79864 + 0.30165 0.28118 -0.79864 + 0.31399 0.18375 -0.79038 + 0.32145 0.09787 -0.78261 + 0.32462 0.02280 -0.77535 + 0.32406 -0.04216 -0.76859 + 0.32029 -0.09777 -0.76235 + 0.32029 -0.09747 -0.76235 + 0.31381 -0.14445 -0.75662 + 0.30503 -0.18354 -0.75138 + 0.29436 -0.21543 -0.74662 + 0.28216 -0.24081 -0.74233 + 0.26877 -0.26032 -0.73848 + 0.26877 -0.26006 -0.73848 + 0.25450 -0.27434 -0.73506 + 0.23959 -0.28398 -0.73204 + 0.22428 -0.28955 -0.72940 + 0.20877 -0.29156 -0.72711 + 0.19324 -0.29053 -0.72515 + 0.19324 -0.29034 -0.72515 + 0.17784 -0.28671 -0.72350 + 0.16270 -0.28089 -0.72213 + 0.14791 -0.27329 -0.72102 + 0.13357 -0.26426 -0.72014 + 0.11974 -0.25411 -0.71947 + 0.11974 -0.25399 -0.71947 + 0.10649 -0.24302 -0.71899 + 0.09383 -0.23147 -0.71868 + 0.08180 -0.21959 -0.71852 + 0.07041 -0.20756 -0.71849 + 0.05966 -0.19557 -0.71857 + 0.05966 -0.19551 -0.71857 + 0.04955 -0.18370 -0.71874 + 0.04006 -0.17220 -0.71899 + 0.03118 -0.16110 -0.71930 + 0.02287 -0.15049 -0.71967 + 0.01511 -0.14043 -0.72007 + 0.01511 -0.14042 -0.72007 + 0.00813 -0.13128 -0.72048 + 0.00160 -0.12272 -0.72090 + -0.00450 -0.11474 -0.72132 + -0.01021 -0.10735 -0.72174 + -0.01555 -0.10053 -0.72214 + -0.01555 -0.10054 -0.72214 + -0.02056 -0.09426 -0.72252 + -0.02526 -0.08848 -0.72287 + -0.02967 -0.08316 -0.72318 + -0.03382 -0.07825 -0.72345 + -0.03772 -0.07367 -0.72367 + -0.03772 -0.07370 -0.72367 + -0.04140 -0.06939 -0.72383 + -0.04486 -0.06526 -0.72393 + -0.04811 -0.06122 -0.72397 + -0.05116 -0.05719 -0.72393 + -0.05400 -0.05306 -0.72382 + -0.05399 -0.05310 -0.72382 + -0.05662 -0.04877 -0.72363 + -0.05901 -0.04411 -0.72336 + -0.06114 -0.03901 -0.72300 + -0.06301 -0.03335 -0.72256 + -0.06456 -0.02701 -0.72201 + -0.06456 -0.02706 -0.72201 + -0.06577 -0.01990 -0.72138 + -0.06659 -0.01179 -0.72065 + -0.06697 -0.00259 -0.71981 + -0.06684 0.00783 -0.71889 + -0.06614 0.01960 -0.71786 + -0.06614 0.01955 -0.71786 + -0.06480 0.03282 -0.71674 + -0.06274 0.04771 -0.71552 + -0.05986 0.06437 -0.71420 + -0.05608 0.08290 -0.71281 + -0.05130 0.10344 -0.71133 + -0.05130 0.10339 -0.71133 + -0.04541 0.12604 -0.70977 + -0.03830 0.15089 -0.70814 + -0.02985 0.17803 -0.70646 + -0.01995 0.20754 -0.70474 + -0.00846 0.23946 -0.70299 + -0.00846 0.23945 -0.70299 + 0.00265 0.20537 -0.70128 + 0.01211 0.17359 -0.69957 + 0.02004 0.14412 -0.69787 + 0.02656 0.11692 -0.69620 + 0.03177 0.09194 -0.69457 + 0.03177 0.09197 -0.69457 + 0.03579 0.06917 -0.69299 + 0.03872 0.04847 -0.69145 + 0.04067 0.02982 -0.68997 + 0.04174 0.01313 -0.68854 + 0.04202 -0.00168 -0.68717 + 0.04202 -0.00164 -0.68717 + 0.04160 -0.01464 -0.68586 + 0.04058 -0.02590 -0.68460 + 0.03904 -0.03551 -0.68341 + 0.03706 -0.04353 -0.68226 + 0.03471 -0.05005 -0.68117 + 0.03471 -0.05003 -0.68117 + 0.03208 -0.05510 -0.68013 + 0.02923 -0.05880 -0.67913 + 0.02622 -0.06118 -0.67817 + 0.02313 -0.06229 -0.67725 + 0.02001 -0.06218 -0.67636 + 0.02001 -0.06216 -0.67636 + 0.01693 -0.06087 -0.67550 + 0.01394 -0.05843 -0.67466 + 0.01111 -0.05487 -0.67384 + 0.00848 -0.05021 -0.67304 + 0.00610 -0.04448 -0.67225 + 0.00610 -0.04447 -0.67225 + 0.00405 -0.03767 -0.67146 + 0.00235 -0.02982 -0.67068 + 0.00108 -0.02093 -0.66991 + 0.00028 -0.01098 -0.66914 + 0.00000 0.00000 -0.66837 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4734,7 +4683,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -4746,9 +4695,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 65.09400 0.00000 12.12439 0.00000 0.00000 65.28500 0.00000 27.96701 0.00000 - -0.15000 65.36900 0.00000 38.89142 0.00000 -0.30000 65.43100 0.00000 50.42401 0.00000 - -0.38000 65.45900 0.00000 56.82340 0.00000 -0.60000 65.52500 0.00000 75.31368 0.00000 -0.86667 65.59000 33.77700 99.47982 0.07152 -1.13333 65.64600 34.00300 125.56758 0.85208 @@ -4756,12 +4703,12 @@ Q max -1.66667 65.74000 34.38100 183.50704 3.07853 -1.93333 65.78000 34.54300 215.35836 4.52480 -2.20000 65.81700 34.69100 249.13053 6.19332 - -2.44500 65.84800 34.81600 281.85169 7.92227 - -2.70417 65.87900 34.94000 318.22939 9.95560 - -2.96333 65.90700 35.05500 356.42109 12.19917 - -3.22250 65.93400 35.16200 396.42671 14.65306 - -3.48167 65.95900 35.26300 438.24616 17.31734 - -3.74083 65.98200 35.35700 481.87939 20.19209 + -2.45714 65.84900 34.82200 283.51560 8.01284 + -2.71429 65.88000 34.94400 319.68654 10.03925 + -2.97143 65.90800 35.05800 357.64325 12.27263 + -3.22857 65.93500 35.16400 397.38565 14.71306 + -3.48571 65.95900 35.26400 438.91368 17.36062 + -3.74286 65.98300 35.35800 482.22726 20.21537 -4.00000 66.00500 35.44600 527.32634 23.27737 -4.25000 68.13300 35.58400 613.39023 26.83841 -4.50000 69.26200 35.71200 699.17278 30.58793 @@ -4774,7 +4721,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -4787,23 +4734,21 @@ Lambda passive [DATA] 0.37500 7.75000 48.49757 0.00000 0.61732 0.00000 6.25775 0.12500 12.25000 63.37049 0.00000 0.61732 0.00000 5.17310 - -0.07500 15.11425 72.82938 0.00000 0.61732 0.00000 4.81859 - -0.22500 16.34275 76.88393 0.00000 0.61732 0.00000 4.70447 - -0.34000 17.28460 79.99240 0.00000 0.61732 0.00000 4.62796 - -0.49000 18.51310 84.04670 0.00000 0.61732 0.00000 4.53985 + -0.15000 15.72850 74.85665 0.00000 0.61732 0.00000 4.75930 + -0.45000 18.18550 82.96555 0.00000 0.61732 0.00000 4.56218 -0.73333 20.50600 90.62304 0.26819 0.61732 0.01308 4.41934 -1.00000 22.69000 97.82909 2.92710 0.61732 0.12900 4.31155 -1.26667 24.87400 105.03428 3.75851 0.61732 0.15110 4.22265 -1.53333 27.05800 112.23870 4.59068 0.61732 0.16966 4.14808 -1.80000 29.24200 119.44246 5.42352 0.61732 0.18547 4.08462 -2.06667 31.42600 126.64564 6.25693 0.61732 0.19910 4.02996 - -2.32250 33.52127 133.55573 7.05695 0.61732 0.21052 3.98421 - -2.57458 35.58584 140.36413 7.84564 0.61732 0.22047 3.94438 - -2.83375 37.70841 147.36348 8.65685 0.61732 0.22957 3.90797 - -3.09292 39.83099 154.36251 9.46839 0.61732 0.23771 3.87544 - -3.35208 41.95356 161.36125 10.28021 0.61732 0.24504 3.84619 - -3.61125 44.07614 168.35974 11.09228 0.61732 0.25166 3.81975 - -3.87042 46.19871 175.35800 11.90459 0.61732 0.25768 3.79573 + -2.32857 33.57100 133.71971 7.07594 0.61732 0.21078 3.98319 + -2.58571 35.67700 140.66475 7.88047 0.61732 0.22088 3.94273 + -2.84286 37.78300 147.60943 8.68536 0.61732 0.22987 3.90677 + -3.10000 39.88900 154.55379 9.49057 0.61732 0.23792 3.87460 + -3.35714 41.99500 161.49788 10.29606 0.61732 0.24517 3.84565 + -3.61429 44.10100 168.44171 11.10180 0.61732 0.25174 3.81945 + -3.87143 46.20700 175.38532 11.90776 0.61732 0.25770 3.79564 -4.12500 48.53375 344.25556 14.24419 0.54601 0.29349 7.09312 -4.37500 51.08125 343.13018 14.99805 0.54601 0.29361 6.71734 -4.62500 53.62875 351.17417 15.75161 0.54601 0.29372 6.54824 @@ -4815,7 +4760,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4838,144 +4783,132 @@ Status character 0.00000 0.00000 65.69838 7.83992 1 0 A 0.00000 0.00000 70.35417 8.39551 1 0 A 0.00000 0.00000 75.00997 8.95109 1 0 A - 0.00000 0.00000 69.86956 8.95109 1 0 A - 0.00000 0.29430 71.05349 9.10276 1 0 A - 0.00000 0.58860 72.23741 9.25444 1 0 A - 0.00000 0.88290 73.42134 9.40611 1 0 A - 0.00000 1.17720 74.60527 9.55779 1 0 A - 0.00000 1.47150 75.78920 9.70946 1 0 A - 0.00000 1.47150 73.99421 9.70946 1 0 A - 0.00000 1.76580 75.15010 9.86114 1 0 A - 0.00000 2.06010 76.30598 10.01281 1 0 A - 0.03288 2.35440 77.46187 10.16449 110 0 - - 0.27538 2.64870 78.61776 10.31616 110 0 - - 0.51767 2.94300 79.77365 10.46784 110 0 - - 0.51767 2.94300 78.47629 10.46784 110 0 - - 0.64678 3.09996 79.08273 10.54873 110 0 - - 0.77579 3.25692 79.68918 10.62962 110 0 - - 0.90468 3.41388 80.29563 10.71052 110 0 - - 1.03343 3.57084 80.90208 10.79141 110 0 - - 1.16202 3.72780 81.50852 10.87230 110 0 - - 1.16202 3.72780 79.95675 10.87230 110 0 - - 1.51464 4.15944 81.59273 11.09476 110 0 - - 1.86530 4.59108 83.22871 11.31722 110 0 - - 2.21345 5.02272 84.86469 11.53967 110 0 - - 2.55852 5.45436 86.50067 11.76213 110 0 - - 2.89995 5.88600 88.13665 11.98458 110 0 - - 2.89995 5.88600 85.79712 11.98458 110 0 - - 3.30818 6.40920 87.72749 12.25423 110 0 - - 3.70983 6.93240 89.65786 12.52387 110 0 - - 4.10456 7.45560 91.58823 12.79352 110 0 - - 4.49204 7.97880 93.51860 13.06316 110 0 - - 4.87195 8.50200 95.44896 13.33280 110 0 - - 4.87195 8.50200 93.12088 13.33280 110 0 - - 5.24410 9.02520 95.00417 13.60245 110 0 - - 5.60860 9.54840 96.88745 13.87209 110 0 - - 5.96557 10.07160 98.77074 14.14173 110 0 - - 6.31516 10.59480 100.65402 14.41138 110 0 - - 6.65751 11.11800 102.53731 14.68102 110 0 - - 6.65751 11.11800 100.42314 14.68102 110 0 - - 6.99280 11.64120 102.26759 14.95067 110 0 - - 7.32139 12.16440 104.11205 15.22031 110 0 - - 7.64359 12.68760 105.95650 15.48995 110 0 - - 7.95973 13.21080 107.80096 15.75960 110 0 - - 8.27016 13.73400 109.64541 16.02924 110 0 - - 8.27016 13.73400 107.70900 16.02924 110 0 - - 8.57522 14.25720 109.52088 16.29889 110 0 - - 8.87529 14.78040 111.33276 16.56853 110 0 - - 9.17074 15.30360 113.14464 16.83817 110 0 - - 9.46193 15.82680 114.95652 17.10782 110 0 - - 9.74921 16.35000 116.76840 17.37746 110 0 - - 9.74921 16.35000 114.98205 17.37746 110 0 - - 10.03297 16.87320 116.76621 17.64711 110 0 - - 10.31353 17.39640 118.55038 17.91675 110 0 - - 10.59120 17.91960 120.33454 18.18639 110 0 - - 10.86630 18.44280 122.11870 18.45604 110 0 - - 11.13915 18.96600 123.90286 18.72568 110 0 - - 11.13915 18.96600 122.24492 18.72568 110 0 - - 11.41006 19.48920 124.00521 18.99532 110 0 - - 11.67927 20.01240 125.76550 19.26497 110 0 - - 11.94702 20.53560 127.52578 19.53461 110 0 - - 12.21357 21.05880 129.28607 19.80426 110 0 - - 12.47915 21.58200 131.04636 20.07390 110 0 - - 12.47915 21.58200 129.55847 20.07390 110 0 - - 12.72246 22.06269 131.15737 20.32164 110 0 - - 12.96534 22.54338 132.75628 20.56937 110 0 - - 13.20789 23.02407 134.35518 20.81711 110 0 - - 13.45019 23.50476 135.95408 21.06484 110 0 - - 13.69233 23.98545 137.55298 21.31258 110 0 - - 13.69233 23.98545 136.17800 21.31258 110 0 - - 13.94857 24.49394 137.85245 21.57464 110 0 - - 14.20498 25.00242 139.52690 21.83670 110 0 - - 14.46165 25.51091 141.20135 22.09876 110 0 - - 14.71869 26.01939 142.87580 22.36082 110 0 - - 14.97622 26.52788 144.55025 22.62288 110 0 - - 14.97622 26.52788 143.21599 22.62288 110 0 - - 15.23434 27.03636 144.87499 22.88494 110 0 - - 15.49312 27.54485 146.53398 23.14700 110 0 - - 15.75264 28.05333 148.19297 23.40906 110 0 - - 16.01296 28.56182 149.85197 23.67112 110 0 - - 16.27416 29.07030 151.51096 23.93318 110 0 - - 16.27416 29.07030 150.24955 23.93318 110 0 - - 16.53631 29.57878 151.89473 24.19524 110 0 - - 16.79946 30.08727 153.53992 24.45730 110 0 - - 17.06364 30.59576 155.18510 24.71936 110 0 - - 17.32890 31.10424 156.83028 24.98142 110 0 - - 17.59528 31.61273 158.47546 25.24348 110 0 - - 17.59528 31.61273 157.27934 25.24348 110 0 - - 17.86282 32.12121 158.91210 25.50554 110 0 - - 18.13154 32.62969 160.54487 25.76760 110 0 - - 18.40144 33.13818 162.17763 26.02966 110 0 - - 18.67253 33.64666 163.81039 26.29172 110 0 - - 18.94480 34.15515 165.44316 26.55378 110 0 - - 18.94480 34.15515 164.30589 26.55378 110 0 - - 19.21828 34.66363 165.92743 26.81584 110 0 - - 19.49291 35.17212 167.54897 27.07790 110 0 - - 19.76865 35.68060 169.17051 27.33996 110 0 - - 20.04545 36.18909 170.79205 27.60202 110 0 - - 20.32325 36.69758 172.41359 27.86408 110 0 - - 20.32325 36.69758 171.32964 27.86408 110 0 - - 20.60200 37.20606 172.94098 28.12614 110 0 - - 20.88157 37.71455 174.55233 28.38820 110 0 - - 21.16181 38.22303 176.16367 28.65026 110 0 - - 21.44260 38.73152 177.77502 28.91232 110 0 - - 21.72377 39.24000 179.38636 29.17438 110 0 - - 18.35379 39.24000 335.22070 25.80441 110 0 - - 18.65060 39.73050 338.83464 26.08260 110 0 - - 18.94741 40.22100 342.44859 26.36079 110 0 - - 19.24410 40.71150 346.06253 26.63898 110 0 - - 19.54054 41.20200 349.67647 26.91718 110 0 - - 19.83661 41.69250 353.29041 27.19537 110 0 - - 19.83661 41.69250 334.57396 27.19537 110 0 - - 20.13220 42.18300 337.99645 27.47356 110 0 - - 20.42726 42.67350 341.41893 27.75175 110 0 - - 20.72178 43.16400 344.84142 28.02994 110 0 - - 21.01570 43.65450 348.26390 28.30814 110 0 - - 21.30901 44.14500 351.68639 28.58633 110 0 - - 21.30901 44.14500 342.83335 28.58633 110 0 - - 21.60167 44.63550 346.16968 28.86452 110 0 - - 21.89371 45.12600 349.50601 29.14271 110 0 - - 22.18515 45.61650 352.84234 29.42090 110 0 - - 22.47601 46.10700 356.17867 29.69909 110 0 - - 22.76631 46.59750 359.51500 29.97729 110 0 - - 22.76631 46.59750 354.18445 29.97729 110 0 - - 23.05608 47.08800 357.47132 30.25548 110 0 - - 23.34537 47.57850 360.75818 30.53367 110 0 - - 23.63422 48.06900 364.04504 30.81186 110 0 - - 23.92267 48.55950 367.33190 31.09005 110 0 - - 24.21077 49.05000 370.61877 31.36825 110 0 - - 24.21077 49.05000 367.04182 31.36825 110 0 - - 24.49857 49.54050 370.29696 31.64644 110 0 - - 24.78611 50.03100 373.55210 31.92463 110 0 - - 25.07343 50.52150 376.80724 32.20282 110 0 - - 25.36059 51.01200 380.06238 32.48101 110 0 - - 25.64761 51.50250 383.31752 32.75920 110 0 - - 25.64761 51.50250 380.75786 32.75920 110 0 - - 25.93455 51.99300 383.99127 33.03740 110 0 - - 26.22143 52.48350 387.22467 33.31559 110 0 - - 26.50826 52.97400 390.45807 33.59378 110 0 - - 26.79508 53.46450 393.69148 33.87197 110 0 - - 27.08189 53.95500 396.92488 34.15016 110 0 - + 0.00000 0.00000 69.00985 8.95109 1 0 A + 0.24806 0.58860 71.34857 9.25444 110 0 - + 0.67158 1.17720 73.68729 9.55779 110 0 - + 1.09482 1.76580 76.02601 9.86114 110 0 - + 1.51743 2.35440 78.36473 10.16449 110 0 - + 1.93909 2.94300 80.70345 10.46784 110 0 - + 1.93909 2.94300 77.36091 10.46784 110 0 - + 2.35887 3.53160 79.60277 10.77119 110 0 - + 2.77550 4.12020 81.84463 11.07454 110 0 - + 3.18814 4.70880 84.08648 11.37789 110 0 - + 3.59598 5.29740 86.32834 11.68123 110 0 - + 3.99816 5.88600 88.57019 11.98458 110 0 - + 3.99816 5.88600 85.79712 11.98458 110 0 - + 4.35043 6.40920 87.72749 12.25423 110 0 - + 4.69774 6.93240 89.65786 12.52387 110 0 - + 5.04003 7.45560 91.58823 12.79352 110 0 - + 5.37724 7.97880 93.51860 13.06316 110 0 - + 5.70933 8.50200 95.44896 13.33280 110 0 - + 5.70933 8.50200 93.12088 13.33280 110 0 - + 6.03629 9.02520 95.00417 13.60245 110 0 - + 6.35830 9.54840 96.88745 13.87209 110 0 - + 6.67552 10.07160 98.77074 14.14173 110 0 - + 6.98810 10.59480 100.65402 14.41138 110 0 - + 7.29623 11.11800 102.53731 14.68102 110 0 - + 7.29623 11.11800 100.42314 14.68102 110 0 - + 7.60008 11.64120 102.26759 14.95067 110 0 - + 7.89992 12.16440 104.11205 15.22031 110 0 - + 8.19597 12.68760 105.95650 15.48995 110 0 - + 8.48849 13.21080 107.80096 15.75960 110 0 - + 8.77770 13.73400 109.64541 16.02924 110 0 - + 8.77770 13.73400 107.70900 16.02924 110 0 - + 9.06386 14.25720 109.52088 16.29889 110 0 - + 9.34721 14.78040 111.33276 16.56853 110 0 - + 9.62799 15.30360 113.14464 16.83817 110 0 - + 9.90642 15.82680 114.95652 17.10782 110 0 - + 10.18274 16.35000 116.76840 17.37746 110 0 - + 10.18274 16.35000 114.98205 17.37746 110 0 - + 10.45718 16.87320 116.76621 17.64711 110 0 - + 10.72994 17.39640 118.55038 17.91675 110 0 - + 11.00120 17.91960 120.33454 18.18639 110 0 - + 11.27117 18.44280 122.11870 18.45604 110 0 - + 11.54002 18.96600 123.90286 18.72568 110 0 - + 11.54002 18.96600 122.24492 18.72568 110 0 - + 11.80794 19.48920 124.00521 18.99532 110 0 - + 12.07508 20.01240 125.76550 19.26497 110 0 - + 12.34157 20.53560 127.52578 19.53461 110 0 - + 12.60757 21.05880 129.28607 19.80426 110 0 - + 12.87321 21.58200 131.04636 20.07390 110 0 - + 12.87321 21.58200 129.52541 20.07390 110 0 - + 13.12914 22.08651 131.20313 20.33391 110 0 - + 13.38495 22.59103 132.88085 20.59393 110 0 - + 13.64073 23.09554 134.55857 20.85394 110 0 - + 13.89657 23.60006 136.23629 21.11396 110 0 - + 14.15256 24.10457 137.91401 21.37397 110 0 - + 14.15256 24.10457 136.51306 21.37397 110 0 - + 14.40879 24.60909 138.17373 21.63398 110 0 - + 14.66532 25.11360 139.83441 21.89400 110 0 - + 14.92222 25.61811 141.49509 22.15401 110 0 - + 15.17955 26.12263 143.15577 22.41402 110 0 - + 15.43738 26.62714 144.81644 22.67404 110 0 - + 15.43738 26.62714 143.49560 22.67404 110 0 - + 15.69576 27.13166 145.14113 22.93405 110 0 - + 15.95476 27.63617 146.78666 23.19407 110 0 - + 16.21441 28.14069 148.43220 23.45408 110 0 - + 16.47476 28.64520 150.07773 23.71409 110 0 - + 16.73587 29.14971 151.72326 23.97411 110 0 - + 16.73587 29.14971 150.47384 23.97411 110 0 - + 16.99778 29.65423 152.10582 24.23412 110 0 - + 17.26051 30.15874 153.73780 24.49413 110 0 - + 17.52411 30.66326 155.36978 24.75415 110 0 - + 17.78861 31.16777 157.00176 25.01416 110 0 - + 18.05403 31.67229 158.63374 25.27417 110 0 - + 18.05403 31.67229 157.44841 25.27417 110 0 - + 18.32041 32.17680 159.06820 25.53419 110 0 - + 18.58775 32.68131 160.68798 25.79420 110 0 - + 18.85607 33.18583 162.30777 26.05422 110 0 - + 19.12536 33.69034 163.92756 26.31423 110 0 - + 19.39564 34.19486 165.54734 26.57424 110 0 - + 19.39564 34.19486 164.41983 26.57424 110 0 - + 19.66690 34.69937 166.02858 26.83426 110 0 - + 19.93911 35.20389 167.63734 27.09427 110 0 - + 20.21224 35.70840 169.24609 27.35428 110 0 - + 20.48623 36.21291 170.85484 27.61430 110 0 - + 20.76105 36.71743 172.46360 27.87431 110 0 - + 20.76105 36.71743 171.38851 27.87431 110 0 - + 21.03664 37.22194 172.98724 28.13433 110 0 - + 21.31290 37.72646 174.58596 28.39434 110 0 - + 21.58971 38.23097 176.18469 28.65435 110 0 - + 21.86693 38.73549 177.78341 28.91437 110 0 - + 22.14445 39.24000 179.38214 29.17438 110 0 - + 18.77448 39.24000 335.22070 25.80441 110 0 - + 19.06981 39.73050 338.83464 26.08260 110 0 - + 19.36511 40.22100 342.44859 26.36079 110 0 - + 19.66025 40.71150 346.06253 26.63898 110 0 - + 19.95514 41.20200 349.67647 26.91718 110 0 - + 20.24965 41.69250 353.29041 27.19537 110 0 - + 20.24965 41.69250 334.57396 27.19537 110 0 - + 20.54370 42.18300 337.99645 27.47356 110 0 - + 20.83725 42.67350 341.41893 27.75175 110 0 - + 21.13028 43.16400 344.84142 28.02994 110 0 - + 21.42276 43.65450 348.26390 28.30814 110 0 - + 21.71465 44.14500 351.68639 28.58633 110 0 - + 21.71465 44.14500 342.83335 28.58633 110 0 - + 22.00595 44.63550 346.16968 28.86452 110 0 - + 22.29667 45.12600 349.50601 29.14271 110 0 - + 22.58683 45.61650 352.84234 29.42090 110 0 - + 22.87646 46.10700 356.17867 29.69909 110 0 - + 23.16557 46.59750 359.51500 29.97729 110 0 - + 23.16557 46.59750 354.18445 29.97729 110 0 - + 23.45419 47.08800 357.47132 30.25548 110 0 - + 23.74237 47.57850 360.75818 30.53367 110 0 - + 24.03014 48.06900 364.04504 30.81186 110 0 - + 24.31755 48.55950 367.33190 31.09005 110 0 - + 24.60464 49.05000 370.61877 31.36825 110 0 - + 24.60464 49.05000 367.04182 31.36825 110 0 - + 24.89145 49.54050 370.29696 31.64644 110 0 - + 25.17803 50.03100 373.55210 31.92463 110 0 - + 25.46441 50.52150 376.80724 32.20282 110 0 - + 25.75063 51.01200 380.06238 32.48101 110 0 - + 26.03674 51.50250 383.31752 32.75920 110 0 - + 26.03674 51.50250 380.75786 32.75920 110 0 - + 26.32277 51.99300 383.99127 33.03740 110 0 - + 26.60874 52.48350 387.22467 33.31559 110 0 - + 26.89467 52.97400 390.45807 33.59378 110 0 - + 27.18059 53.46450 393.69148 33.87197 110 0 - + 27.46650 53.95500 396.92488 34.15016 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4988,8 +4921,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 44.078 'Clay, sl san, moderate' - -4.00 34.123 'Sand, sl sil, moderate' + 4.00 46.405 'Clay, sl san, moderate' + -4.00 34.724 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5002,8 +4935,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -11.81 'Clay, sl san, moderate' - -4.00 -17.39 'Sand, sl sil, moderate' + 4.00 -12.43 'Clay, sl san, moderate' + -4.00 -17.69 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -5018,7 +4951,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -0.38 + 0.00 -0.30 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Soil Profile @@ -5075,27 +5008,27 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.38000 0.00000 0.00000 0.00000 0.00000 - -0.60000 65.71300 34.27400 1.99281 0.02784 - -0.86667 65.58800 33.76700 8.60056 0.00397 - -1.13333 65.48600 0.00000 18.76115 0.00000 - -1.40000 65.42000 0.00000 32.46960 0.00000 - -1.66667 65.41200 0.00000 48.79833 0.00000 - -1.93333 65.44300 0.00000 67.05049 0.00000 - -2.20000 65.48500 0.00000 87.22570 0.00000 - -2.44500 65.52800 0.00000 107.45633 0.00000 - -2.70417 65.57300 0.00000 130.62279 0.00000 - -2.96333 65.61700 33.88500 155.60456 0.56333 - -3.22250 65.65900 34.05500 182.40139 1.48798 - -3.48167 65.69900 34.21600 211.01303 2.62206 - -3.74083 65.73700 34.36700 241.43929 3.96576 - -4.00000 65.77200 34.51000 273.67998 5.51926 - -4.25000 68.35300 34.76300 332.22789 7.93813 - -4.50000 69.60400 34.99200 391.54852 10.54603 - -4.75000 70.41300 35.19900 453.49522 13.34287 - -5.00000 70.99200 35.38600 518.64429 16.32852 - -5.25000 71.43000 35.55400 587.26347 19.50288 - -5.50000 71.77500 35.70600 659.50075 22.86582 + -0.30000 0.00000 0.00000 0.00000 0.00000 + -0.60000 64.41100 0.00000 9.53386 0.00000 + -0.86667 64.70800 0.00000 21.35938 0.00000 + -1.13333 64.88600 0.00000 35.11086 0.00000 + -1.40000 65.02400 0.00000 50.78727 0.00000 + -1.66667 65.13800 0.00000 68.38770 0.00000 + -1.93333 65.23600 0.00000 87.91141 0.00000 + -2.20000 65.32100 0.00000 109.35780 0.00000 + -2.45714 65.39500 0.00000 131.85872 0.00000 + -2.71429 65.46100 0.00000 156.14664 0.00000 + -2.97143 65.52100 0.00000 182.22130 0.00000 + -3.22857 65.57500 0.00000 210.08244 0.00000 + -3.48571 65.62500 33.91600 239.72988 1.06674 + -3.74286 65.67000 34.10000 271.16343 2.54114 + -4.00000 65.71300 34.27000 304.38297 4.22230 + -4.25000 68.20800 34.52600 365.76269 6.74360 + -4.50000 69.44600 34.76000 427.75700 9.45412 + -4.75000 70.25500 34.97300 492.27706 12.35377 + -5.00000 70.83900 35.16700 559.93196 15.44244 + -5.25000 71.28500 35.34300 631.00833 18.72000 + -5.50000 71.63800 35.50200 705.66615 22.18633 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5112,32 +5045,32 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.49000 1.98000 9.05823 0.12656 0.61732 0.06392 4.57486 - -0.73333 5.05200 24.77907 -0.08952 0.61732 0.00000 4.90480 - -1.00000 7.23600 38.10220 -0.01489 0.61732 0.00000 5.26564 - -1.26667 9.42000 51.40668 0.00000 0.61732 0.00000 5.45718 - -1.53333 11.60400 61.23276 0.00000 0.61732 0.00000 5.27687 - -1.80000 13.78800 68.44557 0.00000 0.61732 0.00000 4.96414 - -2.06667 15.97200 75.65704 0.00000 0.61732 0.00000 4.73685 - -2.32250 18.06727 82.57403 0.00000 0.61732 0.00000 4.57036 - -2.57458 20.13184 89.38824 0.00000 0.61732 0.00000 4.44014 - -2.83375 22.25441 96.39271 2.17363 0.61732 0.09767 4.33140 - -3.09292 24.37699 103.39612 3.56779 0.61732 0.14636 4.24155 - -3.35208 26.49956 110.39861 4.37585 0.61732 0.16513 4.16605 - -3.61125 28.62214 117.40034 5.18469 0.61732 0.18114 4.10173 - -3.87042 30.74471 124.40140 5.99420 0.61732 0.19497 4.04627 - -4.12500 33.07975 234.19162 9.67548 0.54601 0.29249 7.07961 - -4.37500 35.62725 237.28251 10.43161 0.54601 0.29280 6.66014 - -4.62500 38.17475 247.78681 11.18735 0.54601 0.29306 6.49086 - -4.87500 40.72225 260.59628 11.94263 0.54601 0.29327 6.39936 - -5.12500 43.26975 274.47671 12.69743 0.54601 0.29345 6.34339 - -5.37500 45.81725 288.94912 13.45176 0.54601 0.29360 6.30656 + -0.45000 2.70000 31.77953 0.00000 0.61732 0.00000 11.77020 + -0.73333 6.49200 44.34571 0.00000 0.61732 0.00000 6.83082 + -1.00000 8.67600 51.56802 0.00000 0.61732 0.00000 5.94376 + -1.26667 10.86000 58.78656 0.00000 0.61732 0.00000 5.41313 + -1.53333 13.04400 66.00162 0.00000 0.61732 0.00000 5.05992 + -1.80000 15.22800 73.21391 0.00000 0.61732 0.00000 4.80785 + -2.06667 17.41200 80.42397 0.00000 0.61732 0.00000 4.61888 + -2.32857 19.55700 87.50355 0.00000 0.61732 0.00000 4.47428 + -2.58571 21.66300 94.45305 0.00000 0.61732 0.00000 4.36011 + -2.84286 23.76900 101.40143 0.00000 0.61732 0.00000 4.26612 + -3.10000 25.87500 108.34889 0.00000 0.61732 0.00000 4.18740 + -3.35714 27.98100 115.29558 4.14844 0.61732 0.14826 4.12050 + -3.61429 30.08700 122.24161 5.73376 0.61732 0.19057 4.06294 + -3.87143 32.19300 129.18709 6.53785 0.61732 0.20308 4.01289 + -4.12500 34.51975 245.51889 10.08521 0.54601 0.29216 7.11242 + -4.37500 37.06725 247.97723 10.84208 0.54601 0.29250 6.68993 + -4.62500 39.61475 258.08025 11.59859 0.54601 0.29278 6.51475 + -4.87500 42.16225 270.61961 12.35466 0.54601 0.29303 6.41853 + -5.12500 44.70975 284.30548 13.11024 0.54601 0.29323 6.35891 + -5.37500 47.25725 298.63128 13.86533 0.54601 0.29340 6.31927 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5166,138 +5099,126 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P - 3.62329 0.00000 3.62329 0.48891 202 100 P - 7.24658 0.00000 7.24658 0.97783 202 100 P - 10.79297 0.00000 10.86988 1.46674 110 99 - - 11.15927 0.00000 14.49317 1.95566 110 77 - - 11.52921 0.00000 18.11646 2.44457 110 64 - - 11.52921 0.00000 19.42303 2.44457 110 59 - - 11.66026 0.52320 21.56544 2.71422 110 54 - - 11.79790 1.04640 23.70786 2.98386 110 50 - - 11.94246 1.56960 25.85028 3.25351 110 46 - - 12.09427 2.09280 27.99270 3.52315 110 43 - - 12.25364 2.61600 30.13512 3.79279 110 41 - - 12.25364 2.61600 32.35212 3.79279 110 38 - - 12.42078 3.13920 34.65215 4.06244 110 36 - - 12.59558 3.66240 36.95219 4.33208 110 34 - - 12.77789 4.18560 39.25222 4.60172 110 33 - - 12.96758 4.70880 41.55226 4.87137 110 31 - - 13.16453 5.23200 43.85229 5.14101 110 30 - - 13.16453 5.23200 45.44743 5.14101 110 29 - - 13.36852 5.75520 47.83113 5.41066 110 28 - - 13.57923 6.27840 50.21483 5.68030 110 27 - - 13.79631 6.80160 52.59853 5.94994 110 26 - - 14.01945 7.32480 54.98223 6.21959 110 25 - - 14.24831 7.84800 57.36592 6.48923 110 25 - - 14.24831 7.84800 55.47042 6.48923 110 26 - - 14.48254 8.37120 57.77536 6.75888 110 25 - - 14.72176 8.89440 60.08029 7.02852 110 25 - - 14.96560 9.41760 62.38523 7.29816 110 24 - - 15.21370 9.94080 64.69016 7.56781 110 24 - - 15.46570 10.46400 66.99510 7.83745 110 23 - - 15.46570 10.46400 63.02473 7.83745 110 25 - - 15.72123 10.98720 65.19306 8.10710 110 24 - - 15.97996 11.51040 67.36140 8.37674 110 24 - - 16.24158 12.03360 69.52973 8.64638 110 23 - - 16.50576 12.55680 71.69807 8.91603 110 23 - - 16.77220 13.08000 73.86641 9.18567 110 23 - - 16.77220 13.08000 70.48440 9.18567 110 24 - - 17.04058 13.60320 72.55346 9.45531 110 23 - - 17.31066 14.12640 74.62251 9.72496 110 23 - - 17.58219 14.64960 76.69157 9.99460 110 23 - - 17.85493 15.17280 78.76063 10.26425 110 23 - - 18.12864 15.69600 80.82969 10.53389 110 22 - - 18.12864 15.69600 77.98869 10.53389 110 23 - - 18.38080 16.17669 79.82283 10.78163 110 23 - - 18.63339 16.65738 81.65696 11.02936 110 23 - - 18.88631 17.13807 83.49109 11.27710 110 23 - - 19.13948 17.61876 85.32523 11.52483 110 22 - - 19.39281 18.09945 87.15936 11.77257 110 22 - - 19.39281 18.09945 84.67597 11.77257 110 23 - - 19.66069 18.60794 86.56088 12.03463 110 23 - - 19.92841 19.11642 88.44579 12.29669 110 23 - - 20.19586 19.62491 90.33070 12.55875 110 22 - - 20.46293 20.13339 92.21560 12.82081 110 22 - - 20.72952 20.64188 94.10051 13.08287 110 22 - - 20.72952 20.64188 91.79585 13.08287 110 23 - - 20.99552 21.15036 93.63460 13.34493 110 22 - - 21.26086 21.65884 95.47334 13.60699 110 22 - - 21.52547 22.16733 97.31208 13.86905 110 22 - - 21.78927 22.67582 99.15083 14.13111 110 22 - - 22.05218 23.18430 100.98957 14.39317 110 22 - - 22.05218 23.18430 98.89462 14.39317 110 22 - - 22.31415 23.69279 100.69522 14.65523 110 22 - - 22.57513 24.20127 102.49582 14.91729 110 22 - - 22.83507 24.70976 104.29642 15.17935 110 22 - - 23.09393 25.21824 106.09702 15.44141 110 22 - - 23.35167 25.72673 107.89762 15.70347 110 22 - - 23.35167 25.72673 105.97723 15.70347 110 22 - - 23.60824 26.23521 107.74579 15.96553 110 22 - - 23.86365 26.74369 109.51434 16.22759 110 22 - - 24.11787 27.25218 111.28289 16.48965 110 22 - - 24.37090 27.76066 113.05144 16.75171 110 22 - - 24.62274 28.26915 114.82000 17.01377 110 21 - - 24.62274 28.26915 113.04722 17.01377 110 22 - - 24.87339 28.77764 114.78847 17.27583 110 22 - - 25.12288 29.28612 116.52971 17.53789 110 22 - - 25.37126 29.79460 118.27096 17.79995 110 21 - - 25.61858 30.30309 120.01221 18.06201 110 21 - - 25.86490 30.81158 121.75345 18.32407 110 21 - - 25.86490 30.81158 120.10714 18.32407 110 22 - - 26.11027 31.32006 121.82484 18.58613 110 21 - - 26.35482 31.82855 123.54254 18.84819 110 21 - - 26.59870 32.33703 125.26025 19.11025 110 21 - - 26.84204 32.84551 126.97795 19.37231 110 21 - - 27.08499 33.35400 128.69565 19.63437 110 21 - - 24.81699 33.35400 225.17397 17.36638 110 11 - - 25.07657 33.84450 228.78103 17.64457 110 11 - - 25.33614 34.33500 232.38809 17.92276 110 11 - - 25.59583 34.82550 235.99515 18.20095 110 11 - - 25.85578 35.31600 239.60221 18.47915 110 11 - - 26.11609 35.80650 243.20927 18.75734 110 11 - - 26.11609 35.80650 228.79916 18.75734 110 11 - - 26.37689 36.29700 232.19250 19.03553 110 11 - - 26.63821 36.78750 235.58584 19.31372 110 11 - - 26.90008 37.27800 238.97918 19.59191 110 11 - - 27.16254 37.76850 242.37253 19.87010 110 11 - - 27.42562 38.25900 245.76587 20.14830 110 11 - - 27.42562 38.25900 239.51908 20.14830 110 11 - - 27.68934 38.74950 242.82617 20.42649 110 11 - - 27.95368 39.24000 246.13326 20.70468 110 11 - - 28.21862 39.73050 249.44035 20.98287 110 11 - - 28.48415 40.22100 252.74745 21.26106 110 11 - - 28.75023 40.71150 256.05454 21.53926 110 11 - - 28.75023 40.71150 252.44510 21.53926 110 11 - - 29.01684 41.20200 255.70557 21.81745 110 11 - - 29.28394 41.69250 258.96605 22.09564 110 11 - - 29.55148 42.18300 262.22652 22.37383 110 11 - - 29.81941 42.67350 265.48699 22.65202 110 11 - - 30.08769 43.16400 268.74747 22.93021 110 11 - - 30.08769 43.16400 266.39682 22.93021 110 11 - - 30.35628 43.65450 269.62878 23.20841 110 11 - - 30.62512 44.14500 272.86073 23.48660 110 11 - - 30.89418 44.63550 276.09269 23.76479 110 11 - - 31.16341 45.12600 279.32464 24.04298 110 11 - - 31.43277 45.61650 282.55660 24.32117 110 11 - - 31.43277 45.61650 280.91614 24.32117 110 11 - - 31.70221 46.10700 284.12933 24.59937 110 11 - - 31.97172 46.59750 287.34252 24.87756 110 11 - - 32.24127 47.08800 290.55572 25.15575 110 11 - - 32.51084 47.57850 293.76891 25.43394 110 11 - - 32.78041 48.06900 296.98210 25.71213 110 11 - + 0.00001 0.00000 0.00001 0.00000 202 100 P + 9.07902 0.00000 12.71181 0.66670 110 71 - + 9.63244 0.00000 25.42363 1.33340 110 38 - + 10.18985 0.00000 38.13544 2.00011 110 27 - + 10.75207 0.00000 50.84725 2.66681 110 21 - + 11.31994 0.00000 63.55907 3.33351 110 18 - + 11.31994 0.00000 36.88645 3.33351 110 31 - + 11.50695 0.52320 39.87015 3.60315 110 29 - + 11.69893 1.04640 42.85386 3.87280 110 27 - + 11.89593 1.56960 45.83756 4.14244 110 26 - + 12.09800 2.09280 48.82127 4.41208 110 25 - + 12.30521 2.61600 51.80497 4.68173 110 24 - + 12.30521 2.61600 45.07744 4.68173 110 27 - + 12.51753 3.13920 47.67368 4.95137 110 26 - + 12.73480 3.66240 50.26991 5.22102 110 25 - + 12.95688 4.18560 52.86614 5.49066 110 25 - + 13.18358 4.70880 55.46237 5.76030 110 24 - + 13.41474 5.23200 58.05861 6.02995 110 23 - + 13.41474 5.23200 52.87542 6.02995 110 25 - + 13.65017 5.75520 55.23988 6.29959 110 25 - + 13.88963 6.27840 57.60433 6.56924 110 24 - + 14.13286 6.80160 59.96879 6.83888 110 24 - + 14.37963 7.32480 62.33324 7.10852 110 23 - + 14.62971 7.84800 64.69769 7.37817 110 23 - + 14.62971 7.84800 60.47619 7.37817 110 24 - + 14.88283 8.37120 62.68636 7.64781 110 24 - + 15.13877 8.89440 64.89654 7.91746 110 23 - + 15.39728 9.41760 67.10671 8.18710 110 23 - + 15.65814 9.94080 69.31688 8.45674 110 23 - + 15.92111 10.46400 71.52706 8.72639 110 22 - + 15.92111 10.46400 67.96374 8.72639 110 23 - + 16.18595 10.98720 70.06380 8.99603 110 23 - + 16.45249 11.51040 72.16387 9.26567 110 23 - + 16.72051 12.03360 74.26394 9.53532 110 23 - + 16.98983 12.55680 76.36401 9.80496 110 22 - + 17.26027 13.08000 78.46408 10.07461 110 22 - + 17.26027 13.08000 75.38015 10.07461 110 23 - + 17.53164 13.60320 77.39768 10.34425 110 23 - + 17.80378 14.12640 79.41521 10.61389 110 22 - + 18.07658 14.64960 81.43273 10.88354 110 22 - + 18.34987 15.17280 83.45026 11.15318 110 22 - + 18.62352 15.69600 85.46779 11.42283 110 22 - + 18.62352 15.69600 82.79213 11.42283 110 22 - + 18.88762 16.20051 84.67670 11.68284 110 22 - + 19.15183 16.70503 86.56127 11.94285 110 22 - + 19.41608 17.20954 88.44583 12.20287 110 22 - + 19.68027 17.71406 90.33040 12.46288 110 22 - + 19.94430 18.21857 92.21497 12.72289 110 22 - + 19.94430 18.21857 89.86185 12.72289 110 22 - + 20.20810 18.72309 91.69833 12.98291 110 22 - + 20.47160 19.22760 93.53481 13.24292 110 22 - + 20.73473 19.73211 95.37129 13.50294 110 22 - + 20.99742 20.23663 97.20776 13.76295 110 22 - + 21.25962 20.74114 99.04424 14.02296 110 21 - + 21.25962 20.74114 96.90921 14.02296 110 22 - + 21.52127 21.24566 98.70610 14.28298 110 22 - + 21.78230 21.75017 100.50299 14.54299 110 22 - + 22.04267 22.25469 102.29988 14.80300 110 22 - + 22.30235 22.75920 104.09677 15.06302 110 21 - + 22.56127 23.26371 105.89366 15.32303 110 21 - + 22.56127 23.26371 103.93956 15.32303 110 22 - + 22.81939 23.76823 105.70329 15.58305 110 22 - + 23.07668 24.27274 107.46703 15.84306 110 21 - + 23.33311 24.77726 109.23076 16.10307 110 21 - + 23.58864 25.28177 110.99449 16.36309 110 21 - + 23.84324 25.78629 112.75822 16.62310 110 21 - + 23.84324 25.78629 110.95670 16.62310 110 21 - + 24.09690 26.29080 112.69225 16.88311 110 21 - + 24.34958 26.79531 114.42780 17.14313 110 21 - + 24.60129 27.29983 116.16336 17.40314 110 21 - + 24.85202 27.80434 117.89891 17.66316 110 21 - + 25.10177 28.30886 119.63446 17.92317 110 21 - + 25.10177 28.30886 117.96334 17.92317 110 21 - + 25.35054 28.81337 119.67465 18.18318 110 21 - + 25.59835 29.31789 121.38596 18.44320 110 21 - + 25.84526 29.82240 123.09727 18.70321 110 21 - + 26.09129 30.32691 124.80858 18.96322 110 21 - + 26.33650 30.83143 126.51989 19.22324 110 21 - + 26.33650 30.83143 124.96151 19.22324 110 21 - + 26.58094 31.33594 126.65174 19.48325 110 21 - + 26.82470 31.84046 128.34197 19.74327 110 21 - + 27.06792 32.34497 130.03221 20.00328 110 21 - + 27.31073 32.84949 131.72244 20.26329 110 21 - + 27.55324 33.35400 133.41267 20.52331 110 21 - + 25.18256 33.35400 236.45945 18.15263 110 11 - + 25.44361 33.84450 240.08322 18.43082 110 11 - + 25.70470 34.33500 243.70700 18.70902 110 11 - + 25.96594 34.82550 247.33078 18.98721 110 10 - + 26.22744 35.31600 250.95455 19.26540 110 10 - + 26.48931 35.80650 254.57833 19.54359 110 10 - + 26.48931 35.80650 239.45594 19.54359 110 11 - + 26.75164 36.29700 242.86445 19.82178 110 11 - + 27.01447 36.78750 246.27297 20.09997 110 11 - + 27.27783 37.27800 249.68149 20.37817 110 11 - + 27.54174 37.76850 253.09001 20.65636 110 11 - + 27.80623 38.25900 256.49853 20.93455 110 11 - + 27.80623 38.25900 249.78209 20.93455 110 11 - + 28.07131 38.74950 253.10135 21.21274 110 11 - + 28.33698 39.24000 256.42062 21.49093 110 11 - + 28.60320 39.73050 259.73988 21.76913 110 11 - + 28.86996 40.22100 263.05915 22.04732 110 11 - + 29.13723 40.71150 266.37842 22.32551 110 11 - + 29.13723 40.71150 262.44400 22.32551 110 11 - + 29.40499 41.20200 265.71424 22.60370 110 11 - + 29.67320 41.69250 268.98448 22.88189 110 11 - + 29.94181 42.18300 272.25473 23.16008 110 11 - + 30.21078 42.67350 275.52497 23.43828 110 11 - + 30.48007 43.16400 278.79521 23.71647 110 11 - + 30.48007 43.16400 276.20581 23.71647 110 11 - + 30.74965 43.65450 279.44568 23.99466 110 11 - + 31.01945 44.14500 282.68554 24.27285 110 11 - + 31.28946 44.63550 285.92541 24.55104 110 11 - + 31.55961 45.12600 289.16528 24.82924 110 11 - + 31.82989 45.61650 292.40514 25.10743 110 11 - + 31.82989 45.61650 290.58211 25.10743 110 11 - + 32.10025 46.10700 293.80178 25.38562 110 11 - + 32.37066 46.59750 297.02145 25.66381 110 11 - + 32.64111 47.08800 300.24112 25.94200 110 11 - + 32.91158 47.57850 303.46078 26.22020 110 11 - + 33.18206 48.06900 306.68045 26.49839 110 11 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5310,8 +5231,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 65.657 'Clay, sl san, moderate' - -4.00 43.152 'Sand, sl sil, moderate' + 4.00 68.004 'Clay, sl san, moderate' + -4.00 43.730 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5324,8 +5245,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 17.59 'Clay, sl san, moderate' - -4.00 21.99 'Sand, sl sil, moderate' + 4.00 18.22 'Clay, sl san, moderate' + -4.00 22.28 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -5333,7 +5254,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5351,28 +5272,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -5411,46 +5320,46 @@ Depth -2.14667 -2.20000 -2.20000 - -2.24900 - -2.29800 - -2.34700 - -2.39600 - -2.44500 - -2.44500 - -2.49683 - -2.54867 - -2.60050 - -2.65233 - -2.70417 - -2.70417 - -2.75600 - -2.80783 - -2.85967 - -2.91150 - -2.96333 - -2.96333 - -3.01517 - -3.06700 - -3.11883 - -3.17067 - -3.22250 - -3.22250 - -3.27433 - -3.32617 - -3.37800 - -3.42983 - -3.48167 - -3.48167 - -3.53350 - -3.58533 - -3.63717 - -3.68900 - -3.74083 - -3.74083 - -3.79267 - -3.84450 - -3.89633 - -3.94817 + -2.25143 + -2.30286 + -2.35429 + -2.40571 + -2.45714 + -2.45714 + -2.50857 + -2.56000 + -2.61143 + -2.66286 + -2.71429 + -2.71429 + -2.76571 + -2.81714 + -2.86857 + -2.92000 + -2.97143 + -2.97143 + -3.02286 + -3.07429 + -3.12571 + -3.17714 + -3.22857 + -3.22857 + -3.28000 + -3.33143 + -3.38286 + -3.43429 + -3.48571 + -3.48571 + -3.53714 + -3.58857 + -3.64000 + -3.69143 + -3.74286 + -3.74286 + -3.79429 + -3.84571 + -3.89714 + -3.94857 -4.00000 -4.00000 -4.05000 @@ -5494,7 +5403,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=12 [ANCHOR DATA] [TABLE] @@ -5519,201 +5428,189 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 19.36 : Percentage mobilized resistance left - 6.30 : Percentage mobilized resistance right - 48.79 : Effective left - 58.73 : Effective right + 17.77 : Percentage mobilized resistance left + 6.82 : Percentage mobilized resistance right + 53.61 : Effective left + 63.57 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right - 252.04 : Max effective resistance left + 301.70 : Max effective resistance left 932.66 : Max effective resistance right --1202.77 : Max moment left --3552.45 : Max moment right - -216.26 : Max mobilized moment left - -216.60 : Max mobilized moment right - 19.96 : Vertical force left - 22.65 : Vertical force right - 18.0 : Max mobilized moment percentage left - 6.1 : Max mobilized moment percentage right +-1397.06 : Max moment left +-3552.50 : Max moment right + -231.40 : Max mobilized moment left + -231.80 : Max mobilized moment right + 21.48 : Vertical force left + 24.13 : Vertical force right + 16.6 : Max mobilized moment percentage left + 6.5 : Max mobilized moment percentage right 0.25 : Level of single support 2 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --22.65 : Active force -19.96 : Passive force --22.65 : Plugged active force -19.96 : Plugged passive force +-24.13 : Active force +21.48 : Passive force +-24.13 : Plugged active force +21.48 : Plugged passive force 0.96 : Anchor force 0.00 : Normal force 71.94 : Factor on resistance 71.94 : Plugged resistance 1.00 : Vertical balance load factor --1.73 : Resulting Vertical Force Unplugged --1.73 : Resulting Vertical Force Plugged +-1.69 : Resulting Vertical Force Unplugged +-1.69 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00040 0.00856 0.80452 - 0.00684 0.41743 0.72284 - 0.05174 1.45030 0.64115 - 0.15491 2.66556 0.55933 - 0.31720 3.81523 0.47722 - 0.53534 4.89906 0.39467 - 0.53551 -8.54717 0.39467 - 0.13387 -7.52949 0.31163 - -0.21854 -6.57820 0.22840 - -0.52505 -5.69326 0.14541 - -0.78897 -4.87437 0.06310 - -1.01358 -4.12094 -0.01810 - -1.01359 -4.12111 -0.01810 - -1.13085 -3.70015 -0.06614 - -1.23582 -3.30222 -0.11362 - -1.32921 -2.92709 -0.16048 - -1.41168 -2.57450 -0.20668 - -1.48390 -2.24418 -0.25218 - -1.48389 -2.24461 -0.25218 - -1.54655 -1.93625 -0.29692 - -1.60028 -1.64955 -0.34090 - -1.64573 -1.38418 -0.38408 - -1.68354 -1.13982 -0.42643 - -1.71433 -0.91612 -0.46795 - -1.71434 -0.91651 -0.46795 - -1.72811 -0.80553 -0.48974 - -1.74015 -0.70028 -0.51129 - -1.75055 -0.60070 -0.53258 - -1.75940 -0.50672 -0.55363 - -1.76679 -0.41829 -0.57443 - -1.76675 -0.41915 -0.57443 - -1.78031 -0.20404 -0.63033 - -1.78530 -0.02924 -0.68431 - -1.78346 0.10653 -0.73637 - -1.77648 0.20457 -0.78652 - -1.76599 0.26621 -0.83476 - -1.76572 0.25906 -0.83476 - -1.75094 0.28700 -0.89069 - -1.73558 0.28841 -0.94385 - -1.72020 0.28841 -0.99426 - -1.70481 0.28841 -1.04196 - -1.68943 0.28841 -1.08696 - -1.68957 0.28712 -1.08696 - -1.67426 0.28712 -1.12929 - -1.65894 0.28712 -1.16898 - -1.64363 0.28712 -1.20604 - -1.62832 0.28712 -1.24051 - -1.61300 0.28712 -1.27240 - -1.61300 0.28753 -1.27240 - -1.59767 0.28753 -1.30175 - -1.58233 0.28753 -1.32857 - -1.56700 0.28753 -1.35289 - -1.55166 0.28753 -1.37473 - -1.53633 0.28753 -1.39413 - -1.53633 0.28785 -1.39413 - -1.52097 0.28785 -1.41109 - -1.50562 0.28785 -1.42565 - -1.49027 0.28785 -1.43783 - -1.47492 0.28785 -1.44766 - -1.45957 0.28785 -1.45515 - -1.45956 0.28808 -1.45515 - -1.44420 0.28808 -1.46034 - -1.42884 0.28808 -1.46325 - -1.41337 0.29356 -1.46390 - -1.39724 0.31479 -1.46231 - -1.37942 0.35737 -1.45852 - -1.37939 0.35694 -1.45852 - -1.35652 0.50137 -1.45254 - -1.32587 0.64831 -1.44442 - -1.28732 0.79778 -1.43421 - -1.24069 0.95195 -1.42198 - -1.18545 1.12439 -1.40779 - -1.18552 1.13963 -1.40779 - -1.12190 1.45762 -1.39296 - -1.04259 1.78030 -1.37686 - -0.94736 2.10767 -1.35944 - -0.83596 2.43972 -1.34066 - -0.70819 2.77647 -1.32049 - -0.70810 2.79192 -1.32049 - -0.55486 3.09142 -1.29835 - -0.39065 3.21540 -1.27538 - -0.22432 3.17816 -1.25183 - -0.06371 2.99437 -1.22794 - 0.08358 2.66449 -1.20395 - 0.08354 2.66042 -1.20395 - 0.21104 2.26007 -1.18011 - 0.31816 1.87874 -1.15658 - 0.40636 1.53003 -1.13350 - 0.47732 1.21320 -1.11100 - 0.53267 0.92736 -1.08922 - 0.53266 0.92772 -1.08922 - 0.57399 0.67179 -1.06826 - 0.60280 0.44458 -1.04816 - 0.62055 0.24489 -1.02895 - 0.62864 0.07146 -1.01064 - 0.62839 -0.07702 -0.99328 - 0.62839 -0.07648 -0.99328 - 0.62109 -0.20132 -0.97686 - 0.60790 -0.30384 -0.96138 - 0.58996 -0.38532 -0.94680 - 0.56830 -0.44700 -0.93309 - 0.54394 -0.49009 -0.92023 - 0.54394 -0.48962 -0.92023 - 0.51782 -0.51529 -0.90818 - 0.49080 -0.52464 -0.89691 - 0.46370 -0.51872 -0.88637 - 0.43728 -0.49854 -0.87653 - 0.41225 -0.46504 -0.86733 - 0.41225 -0.46468 -0.86733 - 0.38930 -0.41874 -0.85875 - 0.36904 -0.36120 -0.85075 - 0.35204 -0.29285 -0.84330 - 0.33885 -0.21445 -0.83639 - 0.32997 -0.12673 -0.82998 - 0.32997 -0.12645 -0.82998 - 0.32245 -0.17335 -0.82426 - 0.31276 -0.21283 -0.81899 - 0.30128 -0.24548 -0.81415 - 0.28832 -0.27189 -0.80973 - 0.27419 -0.29259 -0.80571 - 0.27419 -0.29238 -0.80571 - 0.25916 -0.30792 -0.80208 - 0.24347 -0.31879 -0.79880 - 0.22735 -0.32546 -0.79586 - 0.21099 -0.32838 -0.79323 - 0.19457 -0.32795 -0.79090 - 0.19457 -0.32780 -0.79090 - 0.17825 -0.32440 -0.78884 - 0.16217 -0.31839 -0.78702 - 0.14645 -0.31008 -0.78544 - 0.13120 -0.29977 -0.78405 - 0.11650 -0.28771 -0.78285 - 0.11650 -0.28761 -0.78285 - 0.10246 -0.27404 -0.78181 - 0.08912 -0.25915 -0.78091 - 0.07656 -0.24314 -0.78013 - 0.06482 -0.22615 -0.77947 - 0.05396 -0.20832 -0.77889 - 0.05396 -0.20828 -0.77889 - 0.04401 -0.18972 -0.77838 - 0.03500 -0.17052 -0.77794 - 0.02696 -0.15076 -0.77755 - 0.01993 -0.13049 -0.77719 - 0.01392 -0.10977 -0.77687 - 0.01392 -0.10975 -0.77687 - 0.00896 -0.08860 -0.77656 - 0.00507 -0.06703 -0.77626 - 0.00227 -0.04507 -0.77597 - 0.00057 -0.02273 -0.77569 - 0.00000 0.00000 -0.77541 + -0.00039 0.00829 0.97186 + 0.00684 0.41716 0.88798 + 0.05143 1.43244 0.80411 + 0.15285 2.61352 0.72009 + 0.31173 3.73105 0.63579 + 0.52489 4.78477 0.55106 + 0.52506 -8.66153 0.55106 + 0.11699 -7.67191 0.46584 + -0.24320 -6.74662 0.38047 + -0.55874 -5.88560 0.29538 + -0.83283 -5.08854 0.21100 + -1.06865 -4.35478 0.12780 + -1.06859 -4.35695 0.12780 + -1.30561 -3.55865 0.03003 + -1.49739 -2.84822 -0.06513 + -1.64911 -2.22340 -0.15737 + -1.76586 -1.68167 -0.24637 + -1.85252 -1.22022 -0.33183 + -1.85248 -1.22296 -0.33183 + -1.91396 -0.83872 -0.41352 + -1.95461 -0.52839 -0.49138 + -1.97877 -0.28858 -0.56536 + -1.99041 -0.10763 -0.63541 + -1.99247 0.03438 -0.70148 + -1.99248 0.03337 -0.70148 + -1.98786 0.13651 -0.75684 + -1.97826 0.22035 -0.80905 + -1.96466 0.28712 -0.85815 + -1.94790 0.33908 -0.90415 + -1.92872 0.37844 -0.94707 + -1.92872 0.37767 -0.94707 + -1.90776 0.40664 -0.98693 + -1.88549 0.42741 -1.02378 + -1.86228 0.44214 -1.05766 + -1.83840 0.45294 -1.08859 + -1.81400 0.46194 -1.11661 + -1.81400 0.46121 -1.11661 + -1.78916 0.47047 -1.14177 + -1.76377 0.48205 -1.16410 + -1.73766 0.49798 -1.18365 + -1.71054 0.52023 -1.20044 + -1.68202 0.55078 -1.21454 + -1.68202 0.55007 -1.21454 + -1.65165 0.59084 -1.22598 + -1.61878 0.64373 -1.23480 + -1.58274 0.71061 -1.24107 + -1.54271 0.79328 -1.24484 + -1.49781 0.89352 -1.24618 + -1.49781 0.89287 -1.24618 + -1.44709 1.01242 -1.24514 + -1.38944 1.15297 -1.24181 + -1.32371 1.31611 -1.23629 + -1.24863 1.50338 -1.22870 + -1.16289 1.71624 -1.21913 + -1.16289 1.71573 -1.21913 + -1.06511 1.95557 -1.20770 + -0.95380 2.22366 -1.19459 + -0.82740 2.52114 -1.17999 + -0.68434 2.84901 -1.16411 + -0.52295 3.20811 -1.14714 + -0.52288 3.20623 -1.14714 + -0.35470 3.21737 -1.13000 + -0.19836 2.85446 -1.11234 + -0.06129 2.48036 -1.09436 + 0.05719 2.13131 -1.07627 + 0.15836 1.80731 -1.05826 + 0.15832 1.80697 -1.05826 + 0.24345 1.50780 -1.04052 + 0.31383 1.23301 -1.02313 + 0.37069 0.98206 -1.00619 + 0.41524 0.75426 -0.98978 + 0.44865 0.54884 -0.97397 + 0.44865 0.54920 -0.97397 + 0.47207 0.36525 -0.95885 + 0.48657 0.20181 -0.94442 + 0.49317 0.05792 -0.93069 + 0.49284 -0.06741 -0.91768 + 0.48653 -0.17517 -0.90540 + 0.48653 -0.17476 -0.90540 + 0.47513 -0.26597 -0.89384 + 0.45944 -0.34162 -0.88298 + 0.44024 -0.40264 -0.87278 + 0.41826 -0.44996 -0.86324 + 0.39418 -0.48445 -0.85430 + 0.39418 -0.48411 -0.85430 + 0.36866 -0.50660 -0.84595 + 0.34227 -0.51787 -0.83814 + 0.31557 -0.51864 -0.83084 + 0.28909 -0.50959 -0.82399 + 0.26332 -0.49133 -0.81757 + 0.26332 -0.49110 -0.81757 + 0.23872 -0.46420 -0.81154 + 0.21571 -0.42916 -0.80586 + 0.19471 -0.38645 -0.80049 + 0.17609 -0.33650 -0.79542 + 0.16021 -0.27968 -0.79061 + 0.16021 -0.27954 -0.79061 + 0.14744 -0.21619 -0.78602 + 0.13808 -0.14663 -0.78165 + 0.13246 -0.07114 -0.77749 + 0.13086 0.00999 -0.77353 + 0.13358 0.09648 -0.76976 + 0.13358 0.09659 -0.76976 + 0.13736 0.05553 -0.76628 + 0.13921 0.01904 -0.76299 + 0.13934 -0.01315 -0.75990 + 0.13796 -0.04128 -0.75699 + 0.13527 -0.06562 -0.75428 + 0.13527 -0.06551 -0.75428 + 0.13146 -0.08632 -0.75175 + 0.12670 -0.10384 -0.74941 + 0.12113 -0.11832 -0.74725 + 0.11491 -0.12999 -0.74525 + 0.10817 -0.13907 -0.74341 + 0.10817 -0.13899 -0.74341 + 0.10105 -0.14569 -0.74172 + 0.09364 -0.15020 -0.74018 + 0.08606 -0.15272 -0.73876 + 0.07840 -0.15340 -0.73746 + 0.07075 -0.15240 -0.73627 + 0.07075 -0.15234 -0.73627 + 0.06319 -0.14981 -0.73518 + 0.05579 -0.14586 -0.73418 + 0.04863 -0.14061 -0.73325 + 0.04175 -0.13415 -0.73239 + 0.03523 -0.12658 -0.73159 + 0.03523 -0.12655 -0.73159 + 0.02911 -0.11793 -0.73084 + 0.02345 -0.10832 -0.73013 + 0.01830 -0.09777 -0.72945 + 0.01369 -0.08633 -0.72880 + 0.00968 -0.07402 -0.72817 + 0.00968 -0.07401 -0.72817 + 0.00630 -0.06086 -0.72755 + 0.00361 -0.04687 -0.72694 + 0.00163 -0.03206 -0.72633 + 0.00041 -0.01644 -0.72573 + 0.00000 0.00000 -0.72513 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5775,7 +5672,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -5787,9 +5684,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 64.32200 0.00000 7.57169 0.00000 0.00000 64.71000 0.00000 18.87223 0.00000 - -0.15000 64.86900 0.00000 27.07340 0.00000 -0.30000 64.98100 0.00000 35.88312 0.00000 - -0.38000 65.03100 0.00000 40.83049 0.00000 -0.60000 65.14500 0.00000 55.32826 0.00000 -0.86667 65.25500 0.00000 74.65604 0.00000 -1.13333 65.34600 0.00000 95.90636 0.00000 @@ -5797,12 +5692,12 @@ Q max -1.66667 65.49300 0.00000 144.17308 0.00000 -1.93333 65.55400 0.00000 171.18885 0.00000 -2.20000 65.60900 33.85300 200.12587 0.55356 - -2.44500 65.65500 34.03900 228.40502 1.76604 - -2.70417 65.70000 34.21900 260.08413 3.25277 - -2.96333 65.74100 34.38400 293.57746 4.94953 - -3.22250 65.77800 34.53600 328.88487 6.85643 - -3.48167 65.81300 34.67700 366.00628 8.97357 - -3.74083 65.84600 34.80800 404.94159 11.30106 + -2.45714 65.65700 34.04700 229.84879 1.83101 + -2.71429 65.70100 34.22500 261.35783 3.31508 + -2.97143 65.74200 34.38900 294.65286 5.00591 + -3.22857 65.77900 34.54000 329.73376 6.90362 + -3.48571 65.81400 34.67900 366.60042 9.00831 + -3.74286 65.84600 34.80900 405.25277 11.32006 -4.00000 65.87600 34.93100 445.69072 13.83896 -4.25000 68.09800 35.10900 522.22480 16.99084 -4.50000 69.26000 35.27400 598.80925 20.33151 @@ -5815,7 +5710,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -5828,23 +5723,21 @@ Lambda passive [DATA] 0.37500 2.25000 30.28678 0.00000 0.61732 0.00000 13.46079 0.12500 6.75000 45.20213 0.00000 0.61732 0.00000 6.69661 - -0.07500 9.61425 54.67450 0.00000 0.61732 0.00000 5.68682 - -0.22500 10.84275 58.73147 0.00000 0.61732 0.00000 5.41666 - -0.34000 11.78460 61.84205 0.00000 0.61732 0.00000 5.24770 - -0.49000 13.01310 65.89898 0.00000 0.61732 0.00000 5.06405 + -0.15000 10.22850 56.70299 0.00000 0.61732 0.00000 5.54363 + -0.45000 12.68550 64.81713 0.00000 0.61732 0.00000 5.10954 -0.73333 15.00600 72.47916 0.00000 0.61732 0.00000 4.83001 -1.00000 17.19000 79.68871 0.00000 0.61732 0.00000 4.63576 -1.26667 19.37400 86.89674 0.00000 0.61732 0.00000 4.48522 -1.53333 21.55800 94.10347 0.00000 0.61732 0.00000 4.36513 -1.80000 23.74200 101.30911 0.00000 0.61732 0.00000 4.26708 -2.06667 25.92600 108.51383 2.07587 0.61732 0.08007 4.18552 - -2.32250 28.02127 115.42512 4.94888 0.61732 0.17661 4.11920 - -2.57458 30.08584 122.23450 5.73659 0.61732 0.19067 4.06286 - -2.83375 32.20841 129.23469 6.54697 0.61732 0.20327 4.01245 - -3.09292 34.33099 136.23441 7.35781 0.61732 0.21432 3.96826 - -3.35208 36.45356 143.23373 8.16905 0.61732 0.22409 3.92921 - -3.61125 38.57614 150.23270 8.98065 0.61732 0.23280 3.89445 - -3.87042 40.69871 157.23136 9.79256 0.61732 0.24061 3.86330 + -2.32857 28.07100 115.58913 4.96785 0.61732 0.17697 4.11774 + -2.58571 30.17700 122.53516 5.77138 0.61732 0.19125 4.06055 + -2.84286 32.28300 129.48067 6.57545 0.61732 0.20368 4.01080 + -3.10000 34.38900 136.42572 7.37997 0.61732 0.21460 3.96713 + -3.35714 36.49500 143.37037 8.18489 0.61732 0.22427 3.92849 + -3.61429 38.60100 150.31468 8.99016 0.61732 0.23290 3.89406 + -3.87143 40.70700 157.25868 9.79573 0.61732 0.24064 3.86319 -4.12500 43.03375 306.13632 12.60752 0.54601 0.29297 7.11387 -4.37500 45.58125 306.33783 13.36268 0.54601 0.29316 6.72070 -4.62500 48.12875 315.09533 14.11750 0.54601 0.29333 6.54693 @@ -5856,7 +5749,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5869,154 +5762,142 @@ Status character [DATA] 0.00001 0.00000 0.00001 0.00000 202 100 P 12.11471 0.00000 12.11471 0.55558 202 100 P - 18.48896 0.00000 24.22942 1.11117 110 76 - - 17.51867 0.00000 36.34413 1.66675 110 48 - - 16.54550 0.00000 48.45885 2.22234 110 34 - - 15.56798 0.00000 60.57356 2.77792 110 26 - - 15.56798 0.00000 30.13475 2.77792 110 52 - - 14.58546 0.00000 36.16170 3.33351 110 40 - - 13.60111 0.00000 42.18865 3.88909 110 32 - - 12.61923 0.00000 48.21561 4.44468 110 26 - - 11.64409 0.00000 54.24256 5.00026 110 21 - - 10.67997 0.00000 60.26951 5.55585 110 18 - - 10.67997 0.00000 51.18137 5.55585 110 21 - - 10.10834 0.29430 52.57862 5.70752 110 19 - - 9.54236 0.58860 53.97587 5.85920 110 18 - - 8.98251 0.88290 55.37312 6.01087 110 16 - - 8.42927 1.17720 56.77038 6.16255 110 15 - - 7.88312 1.47150 58.16763 6.31422 110 14 - - 7.88312 1.47150 55.40429 6.31422 110 14 - - 7.34447 1.76580 56.73516 6.46590 110 13 - - 6.81362 2.06010 58.06604 6.61757 110 12 - - 6.29085 2.35440 59.39691 6.76925 110 0 - - 5.77643 2.64870 60.72778 6.92092 110 0 - - 5.27066 2.94300 62.05865 7.07260 110 0 - - 5.27066 2.94300 60.12290 7.07260 110 0 - - 5.00453 3.09996 60.81056 7.15349 110 0 - - 4.74097 3.25692 61.49822 7.23438 110 0 - - 4.47999 3.41388 62.18587 7.31528 110 0 - - 4.22164 3.57084 62.87353 7.39617 110 0 - - 3.96595 3.72780 63.56119 7.47706 110 0 - - 3.96595 3.72780 61.33678 7.47706 110 0 - - 3.27686 4.15944 63.16166 7.69952 110 0 - - 2.60886 4.59108 64.98654 7.92197 110 0 - - 1.96251 5.02272 66.81142 8.14443 110 0 - - 1.33837 5.45436 68.63630 8.36689 110 0 - - 0.73699 5.88600 70.46118 8.58934 110 0 - - 0.73699 5.88600 67.20478 8.58934 110 0 - - 0.03916 6.40920 69.31453 8.85899 110 0 - - 0.00000 6.93240 71.42428 9.12863 1 0 A - 0.00000 7.45560 73.53403 9.39827 1 0 A - 0.00000 7.97880 75.64378 9.66792 1 0 A - 0.00000 8.50200 77.75353 9.93756 1 0 A - 0.00000 8.50200 74.62646 9.93756 1 0 A - 0.00000 9.02520 76.65136 10.20721 1 0 A - 0.00000 9.54840 78.67626 10.47685 1 0 A - 0.00000 10.07160 80.70116 10.74649 1 0 A - 0.00000 10.59480 82.72606 11.01614 1 0 A - 0.00000 11.11800 84.75096 11.28578 1 0 A - 0.00000 11.11800 81.99888 11.28578 1 0 A - 0.00000 11.64120 83.95802 11.55543 1 0 A - 0.00000 12.16440 85.91717 11.82507 1 0 A - 0.00000 12.68760 87.87632 12.09471 1 0 A - 0.00000 13.21080 89.83546 12.36436 1 0 A - 0.00000 13.73400 91.79461 12.63400 1 0 A - 0.00000 13.73400 89.33675 12.63400 1 0 A - 0.00000 14.25720 91.24344 12.90364 1 0 A - 0.00000 14.78040 93.15013 13.17329 1 0 A - 0.00000 15.30360 95.05682 13.44293 1 0 A - 0.00000 15.82680 96.96351 13.71258 1 0 A - 0.00000 16.35000 98.87020 13.98222 1 0 A - 0.00000 16.35000 96.64945 13.98222 1 0 A - 0.00000 16.87320 98.51332 14.25186 1 0 A - 0.00000 17.39640 100.37718 14.52151 1 0 A - 0.15217 17.91960 102.24104 14.79115 110 0 - - 0.43765 18.44280 104.10490 15.06080 110 0 - - 0.74520 18.96600 105.96877 15.33044 110 0 - - 1.98843 18.96600 103.94324 15.33044 1 0 A - 2.02340 19.48920 105.77147 15.60008 1 0 A - 2.05838 20.01240 107.59971 15.86973 1 0 A - 2.09335 20.53560 109.42794 16.13937 1 0 A - 2.18920 21.05880 111.25618 16.40902 110 0 - - 2.60077 21.58200 113.08442 16.67866 110 0 - - 4.77169 21.58200 111.29243 16.67866 1 0 A - 4.84257 22.06269 112.94551 16.92639 1 0 A - 4.91344 22.54338 114.59858 17.17413 1 0 A - 4.98432 23.02407 116.25166 17.42186 1 0 A - 5.05519 23.50476 117.90473 17.66960 1 0 A - 5.12607 23.98545 119.55781 17.91734 1 0 A - 5.53423 23.98545 117.92264 17.91734 1 0 A - 5.61517 24.49394 119.64739 18.17940 1 0 A - 5.69612 25.00242 121.37213 18.44146 1 0 A - 6.18522 25.51091 123.09687 18.70352 110 0 - - 6.68618 26.01939 124.82162 18.96558 110 0 - - 7.18813 26.52788 126.54636 19.22764 110 0 - - 7.18813 26.52788 124.97633 19.22764 110 0 - - 7.68863 27.03636 126.67967 19.48970 110 0 - - 8.18598 27.54485 128.38302 19.75176 110 0 - - 8.67882 28.05333 130.08636 20.01382 110 0 - - 9.16584 28.56182 131.78971 20.27588 110 0 - - 9.64571 29.07030 133.49306 20.53794 110 0 - - 9.64571 29.07030 132.02295 20.53794 110 0 - - 10.11736 29.57878 133.70753 20.80000 110 0 - - 10.58044 30.08727 135.39212 21.06206 110 0 - - 11.03467 30.59576 137.07671 21.32412 110 0 - - 11.47977 31.10424 138.76130 21.58618 110 0 - - 11.91547 31.61273 140.44588 21.84824 110 0 - - 11.91547 31.61273 139.06371 21.84824 110 0 - - 12.34165 32.12121 140.73172 22.11030 110 0 - - 12.75856 32.62969 142.39973 22.37236 110 0 - - 13.16647 33.13818 144.06774 22.63442 110 0 - - 13.56562 33.64666 145.73575 22.89648 110 0 - - 13.95627 34.15515 147.40375 23.15854 110 0 - - 13.95627 34.15515 146.09957 23.15854 110 0 - - 14.33877 34.66363 147.75282 23.42060 110 0 - - 14.71355 35.17212 149.40607 23.68266 110 0 - - 15.08100 35.68060 151.05932 23.94472 110 0 - - 15.44152 36.18909 152.71257 24.20678 110 0 - - 15.79551 36.69758 154.36582 24.46884 110 0 - - 15.79551 36.69758 153.13128 24.46884 110 0 - - 16.14339 37.20606 154.77131 24.73090 110 0 - - 16.48546 37.71455 156.41134 24.99296 110 0 - - 16.82197 38.22303 158.05137 25.25502 110 0 - - 17.15319 38.73152 159.69140 25.51708 110 0 - - 17.47934 39.24000 161.33143 25.77914 110 0 - - 14.50156 39.24000 297.07504 22.80136 110 0 - - 14.83693 39.73050 300.69955 23.07955 110 0 - - 15.16782 40.22100 304.32406 23.35774 110 0 - - 15.49439 40.71150 307.94858 23.63593 110 0 - - 15.81679 41.20200 311.57309 23.91412 110 0 - - 16.13519 41.69250 315.19761 24.19232 110 0 - - 16.13519 41.69250 297.77734 24.19232 110 0 - - 16.44976 42.18300 301.20153 24.47051 110 0 - - 16.76073 42.67350 304.62573 24.74870 110 0 - - 17.06833 43.16400 308.04993 25.02689 110 0 - - 17.37277 43.65450 311.47412 25.30508 110 0 - - 17.67428 44.14500 314.89832 25.58328 110 0 - - 17.67428 44.14500 306.75619 25.58328 110 0 - - 17.97309 44.63550 310.09185 25.86147 110 0 - - 18.26942 45.12600 313.42750 26.13966 110 0 - - 18.56350 45.61650 316.76316 26.41785 110 0 - - 18.85553 46.10700 320.09882 26.69604 110 0 - - 19.14575 46.59750 323.43448 26.97423 110 0 - - 19.14575 46.59750 318.55044 26.97423 110 0 - - 19.43435 47.08800 321.83572 27.25243 110 0 - - 19.72154 47.57850 325.12101 27.53062 110 0 - - 20.00748 48.06900 328.40630 27.80881 110 0 - - 20.29234 48.55950 331.69159 28.08700 110 0 - - 20.57631 49.05000 334.97688 28.36519 110 0 - - 20.57631 49.05000 331.70679 28.36519 110 0 - - 20.85954 49.54050 334.96001 28.64339 110 0 - - 21.14216 50.03100 338.21322 28.92158 110 0 - - 21.42428 50.52150 341.46644 29.19977 110 0 - - 21.70601 51.01200 344.71966 29.47796 110 0 - - 21.98747 51.50250 347.97287 29.75615 110 0 - - 21.98747 51.50250 345.63712 29.75615 110 0 - - 22.26875 51.99300 348.86850 30.03434 110 0 - - 22.54992 52.48350 352.09988 30.31254 110 0 - - 22.83099 52.97400 355.33126 30.59073 110 0 - - 23.11202 53.46450 358.56264 30.86892 110 0 - - 23.39305 53.95500 361.79402 31.14711 110 0 - + 17.96760 0.00000 24.22942 1.11117 110 74 - + 17.02742 0.00000 36.34413 1.66675 110 47 - + 16.08441 0.00000 48.45885 2.22234 110 33 - + 15.13712 0.00000 60.57356 2.77792 110 25 - + 15.13712 0.00000 30.13475 2.77792 110 50 - + 14.18496 0.00000 36.16170 3.33351 110 39 - + 13.23121 0.00000 42.18865 3.88909 110 31 - + 12.28027 0.00000 48.21561 4.44468 110 25 - + 11.33656 0.00000 54.24256 5.00026 110 21 - + 10.40449 0.00000 60.26951 5.55585 110 17 - + 10.40449 0.00000 49.89264 5.55585 110 21 - + 9.30664 0.58860 52.61678 5.85920 110 18 - + 8.23489 1.17720 55.34092 6.16255 110 15 - + 7.19266 1.76580 58.06505 6.46590 110 12 - + 6.18338 2.35440 60.78919 6.76925 110 0 - + 5.21047 2.94300 63.51333 7.07260 110 0 - + 5.21047 2.94300 58.54005 7.07260 110 0 - + 4.27714 3.53160 61.05088 7.37595 110 0 - + 3.38523 4.12020 63.56171 7.67929 110 0 - + 2.53610 4.70880 66.07255 7.98264 110 0 - + 1.93185 5.29740 68.58338 8.28599 110 0 - + 1.57456 5.88600 71.09421 8.58934 110 0 - + 1.57456 5.88600 67.20478 8.58934 110 0 - + 1.29062 6.40920 69.31453 8.85899 110 0 - + 1.03809 6.93240 71.42428 9.12863 110 0 - + 0.81676 7.45560 73.53403 9.39827 110 0 - + 0.62644 7.97880 75.64378 9.66792 110 0 - + 0.46690 8.50200 77.75353 9.93756 110 0 - + 0.46690 8.50200 74.62646 9.93756 110 0 - + 0.33788 9.02520 76.65136 10.20721 110 0 - + 0.23902 9.54840 78.67626 10.47685 110 0 - + 0.16993 10.07160 80.70116 10.74649 110 0 - + 0.13026 10.59480 82.72606 11.01614 110 0 - + 0.11965 11.11800 84.75096 11.28578 110 0 - + 0.11965 11.11800 81.99888 11.28578 110 0 - + 0.13771 11.64120 83.95802 11.55543 110 0 - + 0.18406 12.16440 85.91717 11.82507 110 0 - + 0.25826 12.68760 87.87632 12.09471 110 0 - + 0.35991 13.21080 89.83546 12.36436 110 0 - + 0.48859 13.73400 91.79461 12.63400 110 0 - + 0.48859 13.73400 89.33675 12.63400 110 0 - + 0.64389 14.25720 91.24344 12.90364 110 0 - + 0.82530 14.78040 93.15013 13.17329 110 0 - + 1.03224 15.30360 95.05682 13.44293 110 0 - + 1.26414 15.82680 96.96351 13.71258 110 0 - + 1.52042 16.35000 98.87020 13.98222 110 0 - + 1.52042 16.35000 96.64945 13.98222 110 0 - + 1.80049 16.87320 98.51332 14.25186 110 0 - + 2.10344 17.39640 100.37718 14.52151 110 0 - + 2.42823 17.91960 102.24104 14.79115 110 0 - + 2.77381 18.44280 104.10490 15.06080 110 0 - + 3.13912 18.96600 105.96877 15.33044 110 0 - + 3.13912 18.96600 103.94324 15.33044 110 0 - + 3.52305 19.48920 105.77147 15.60008 110 0 - + 3.92384 20.01240 107.59971 15.86973 110 0 - + 4.33948 20.53560 109.42794 16.13937 110 0 - + 4.76796 21.05880 111.25618 16.40902 110 0 - + 5.20727 21.58200 113.08442 16.67866 110 0 - + 5.20727 21.58200 111.25315 16.67866 110 0 - + 5.63871 22.08651 112.98754 16.93867 110 0 - + 6.07533 22.59103 114.72193 17.19869 110 0 - + 6.51512 23.09554 116.45633 17.45870 110 0 - + 6.95605 23.60006 118.19072 17.71871 110 0 - + 7.39612 24.10457 119.92511 17.97873 110 0 - + 7.39612 24.10457 118.25941 17.97873 110 0 - + 7.83357 24.60909 119.96971 18.23874 110 0 - + 8.26744 25.11360 121.68001 18.49876 110 0 - + 8.69687 25.61811 123.39032 18.75877 110 0 - + 9.12103 26.12263 125.10062 19.01878 110 0 - + 9.53906 26.62714 126.81092 19.27880 110 0 - + 9.53906 26.62714 125.25730 19.27880 110 0 - + 9.95032 27.13166 126.94665 19.53881 110 0 - + 10.35463 27.63617 128.63600 19.79882 110 0 - + 10.75190 28.14069 130.32535 20.05884 110 0 - + 11.14202 28.64520 132.01469 20.31885 110 0 - + 11.52488 29.14971 133.70404 20.57887 110 0 - + 11.52488 29.14971 132.24833 20.57887 110 0 - + 11.90049 29.65423 133.91929 20.83888 110 0 - + 12.26913 30.15874 135.59024 21.09889 110 0 - + 12.63106 30.66326 137.26120 21.35891 110 0 - + 12.98656 31.16777 138.93215 21.61892 110 0 - + 13.33590 31.67229 140.60311 21.87893 110 0 - + 13.33590 31.67229 139.23367 21.87893 110 0 - + 13.67943 32.17680 140.88835 22.13895 110 0 - + 14.01754 32.68131 142.54303 22.39896 110 0 - + 14.35062 33.18583 144.19771 22.65898 110 0 - + 14.67907 33.69034 145.85239 22.91899 110 0 - + 15.00326 34.19486 147.50707 23.17900 110 0 - + 15.00326 34.19486 146.21423 23.17900 110 0 - + 15.32361 34.69937 147.85441 23.43902 110 0 - + 15.64045 35.20389 149.49459 23.69903 110 0 - + 15.95410 35.70840 151.13477 23.95904 110 0 - + 16.26485 36.21291 152.77495 24.21906 110 0 - + 16.57301 36.71743 154.41513 24.47907 110 0 - + 16.57301 36.71743 153.19075 24.47907 110 0 - + 16.87888 37.22194 154.81792 24.73908 110 0 - + 17.18259 37.72646 156.44510 24.99910 110 0 - + 17.48422 38.23097 158.07227 25.25911 110 0 - + 17.78385 38.73549 159.69944 25.51913 110 0 - + 18.08155 39.24000 161.32662 25.77914 110 0 - + 15.10377 39.24000 297.07504 22.80136 110 0 - + 15.41675 39.73050 300.69955 23.07955 110 0 - + 15.72782 40.22100 304.32406 23.35774 110 0 - + 16.03698 40.71150 307.94858 23.63593 110 0 - + 16.34422 41.20200 311.57309 23.91412 110 0 - + 16.64955 41.69250 315.19761 24.19232 110 0 - + 16.64955 41.69250 297.77734 24.19232 110 0 - + 16.95297 42.18300 301.20153 24.47051 110 0 - + 17.25457 42.67350 304.62573 24.74870 110 0 - + 17.55442 43.16400 308.04993 25.02689 110 0 - + 17.85259 43.65450 311.47412 25.30508 110 0 - + 18.14917 44.14500 314.89832 25.58328 110 0 - + 18.14917 44.14500 306.75619 25.58328 110 0 - + 18.44424 44.63550 310.09185 25.86147 110 0 - + 18.73790 45.12600 313.42750 26.13966 110 0 - + 19.03027 45.61650 316.76316 26.41785 110 0 - + 19.32144 46.10700 320.09882 26.69604 110 0 - + 19.61153 46.59750 323.43448 26.97423 110 0 - + 19.61153 46.59750 318.55044 26.97423 110 0 - + 19.90063 47.08800 321.83572 27.25243 110 0 - + 20.18885 47.57850 325.12101 27.53062 110 0 - + 20.47630 48.06900 328.40630 27.80881 110 0 - + 20.76307 48.55950 331.69159 28.08700 110 0 - + 21.04925 49.05000 334.97688 28.36519 110 0 - + 21.04925 49.05000 331.70679 28.36519 110 0 - + 21.33496 49.54050 334.96001 28.64339 110 0 - + 21.62026 50.03100 338.21322 28.92158 110 0 - + 21.90523 50.52150 341.46644 29.19977 110 0 - + 22.18994 51.01200 344.71966 29.47796 110 0 - + 22.47446 51.50250 347.97287 29.75615 110 0 - + 22.47446 51.50250 345.63712 29.75615 110 0 - + 22.75885 51.99300 348.86850 30.03434 110 0 - + 23.04316 52.48350 352.09988 30.31254 110 0 - + 23.32741 52.97400 355.33126 30.59073 110 0 - + 23.61163 53.46450 358.56264 30.86892 110 0 - + 23.89584 53.95500 361.79402 31.14711 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6029,8 +5910,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 30.103 'Clay, sl san, moderate' - -4.00 28.622 'Sand, sl sil, moderate' + 4.00 34.212 'Clay, sl san, moderate' + -4.00 29.361 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6043,8 +5924,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -8.07 'Clay, sl san, moderate' - -4.00 -14.58 'Sand, sl sil, moderate' + 4.00 -9.17 'Clay, sl san, moderate' + -4.00 -14.96 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -6059,7 +5940,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.45 + 0.00 -2.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Soil Profile @@ -6107,7 +5988,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=13 +DataCount=14 [COLUMN INDICATION] Slide plane position Theta min @@ -6116,25 +5997,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.44500 0.00000 0.00000 0.00000 0.00000 - -2.70417 65.13500 0.00000 1.67758 0.00000 - -2.96333 65.13500 0.00000 6.71032 0.00000 - -3.22250 65.13500 0.00000 15.09821 0.00000 - -3.48167 65.13600 0.00000 26.82589 0.00000 - -3.74083 65.17500 0.00000 40.93829 0.00000 - -4.00000 65.23800 0.00000 56.86859 0.00000 - -4.25000 69.20400 0.00000 81.30015 0.00000 - -4.50000 70.69500 0.00000 108.17141 0.00000 - -4.75000 71.55400 34.34000 138.49862 1.38826 - -5.00000 72.11400 34.80100 172.52574 2.97105 - -5.25000 72.50600 35.18000 210.35504 4.74328 - -5.50000 72.79200 35.49300 252.03892 6.70461 + -2.20000 0.00000 0.00000 0.00000 0.00000 + -2.45714 64.04800 0.00000 6.76598 0.00000 + -2.71429 64.29200 0.00000 15.33031 0.00000 + -2.97143 64.49500 0.00000 25.68969 0.00000 + -3.22857 64.66800 0.00000 37.84179 0.00000 + -3.48571 64.81600 0.00000 51.78496 0.00000 + -3.74286 64.94400 0.00000 67.51798 0.00000 + -4.00000 65.05700 0.00000 85.03993 0.00000 + -4.25000 68.57100 0.00000 113.51980 0.00000 + -4.50000 70.05500 0.00000 144.12863 0.00000 + -4.75000 70.96200 0.00000 178.01755 0.00000 + -5.00000 71.58100 33.95000 215.49464 0.59873 + -5.25000 72.03000 34.36700 256.69713 2.51047 + -5.50000 72.36700 34.72600 301.69897 4.61213 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Position Vertical stress @@ -6145,24 +6027,25 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.57458 1.06129 6.47298 0.00000 0.61732 0.00000 6.09917 - -2.83375 3.18386 19.41893 0.00000 0.61732 0.00000 6.09917 - -3.09292 5.30644 32.36488 0.00000 0.61732 0.00000 6.09917 - -3.35208 7.42901 45.25149 0.00000 0.61732 0.00000 6.09118 - -3.61125 9.55159 54.45299 0.00000 0.61732 0.00000 5.70094 - -3.87042 11.67416 61.46740 0.00000 0.61732 0.00000 5.26525 - -4.12500 14.00920 97.72623 0.00000 0.54601 0.00000 6.97586 - -4.37500 16.55670 107.48506 0.00000 0.54601 0.00000 6.49194 - -4.62500 19.10420 121.30885 5.55306 0.54601 0.29067 6.34985 - -4.87500 21.65170 136.10844 6.33114 0.54601 0.29241 6.28627 - -5.12500 24.19920 151.31722 7.08892 0.54601 0.29294 6.25298 - -5.37500 26.74670 166.73553 7.84533 0.54601 0.29332 6.23387 + -2.32857 1.05300 26.31213 0.00000 0.61732 0.00000 24.98778 + -2.58571 3.15900 33.30576 0.00000 0.61732 0.00000 10.54313 + -2.84286 5.26500 40.28646 0.00000 0.61732 0.00000 7.65175 + -3.10000 7.37100 47.25817 0.00000 0.61732 0.00000 6.41137 + -3.35714 9.47700 54.22344 0.00000 0.61732 0.00000 5.72158 + -3.61429 11.58300 61.18397 0.00000 0.61732 0.00000 5.28222 + -3.87143 13.68900 68.14091 0.00000 0.61732 0.00000 4.97779 + -4.12500 16.01575 113.91948 0.00000 0.54601 0.00000 7.11297 + -4.37500 18.56325 122.43534 0.00000 0.54601 0.00000 6.59558 + -4.62500 21.11075 135.55568 0.00000 0.54601 0.00000 6.42117 + -4.87500 23.65825 149.90837 2.39490 0.54601 0.10123 6.33641 + -5.12500 26.20575 164.80994 7.64699 0.54601 0.29181 6.28908 + -5.37500 28.75325 180.00735 8.40662 0.54601 0.29237 6.26042 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6186,28 +6069,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.09996 0.00000 0.00000 -1 0 - - 0.00000 3.25692 0.00000 0.00000 -1 0 - - 0.00000 3.41388 0.00000 0.00000 -1 0 - - 0.00000 3.57084 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 4.15944 0.00000 0.00000 -1 0 - - 0.00000 4.59108 0.00000 0.00000 -1 0 - - 0.00000 5.02272 0.00000 0.00000 -1 0 - - 0.00000 5.45436 0.00000 0.00000 -1 0 - + 0.00000 3.53160 0.00000 0.00000 -1 0 - + 0.00000 4.12020 0.00000 0.00000 -1 0 - + 0.00000 4.70880 0.00000 0.00000 -1 0 - + 0.00000 5.29740 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -6245,84 +6116,84 @@ Status character 0.00000 20.53560 0.00000 0.00000 -1 0 - 0.00000 21.05880 0.00000 0.00000 -1 0 - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 0.00000 22.06269 0.00000 0.00000 -1 0 - - 0.00000 22.54338 0.00000 0.00000 -1 0 - - 0.00000 23.02407 0.00000 0.00000 -1 0 - - 0.00000 23.50476 0.00000 0.00000 -1 0 - - 0.00000 23.98545 0.00000 0.00000 -1 0 - - 0.00001 23.98545 0.00001 0.00000 202 100 P - 2.58919 24.49394 2.58919 0.26206 202 100 P - 5.17838 25.00242 5.17838 0.52412 202 100 P - 7.76757 25.51091 7.76757 0.78618 202 100 P - 10.35676 26.01939 10.35676 1.04824 202 100 P - 12.94595 26.52788 12.94595 1.31030 202 100 P - 12.94595 26.52788 12.94595 1.31030 202 100 P - 13.37342 27.03636 15.53514 1.57236 110 86 - - 13.40020 27.54485 18.12433 1.83442 110 74 - - 13.43147 28.05333 20.71352 2.09648 110 65 - - 13.46857 28.56182 23.30271 2.35854 110 58 - - 13.51283 29.07030 25.89190 2.62060 110 52 - - 13.51283 29.07030 25.89190 2.62060 110 52 - - 13.56530 29.57878 28.48109 2.88266 110 48 - - 13.62634 30.08727 31.07028 3.14472 110 44 - - 13.69623 30.59576 33.65947 3.40678 110 41 - - 13.77525 31.10424 36.24866 3.66884 110 38 - - 13.86367 31.61273 38.83785 3.93090 110 36 - - 13.86367 31.61273 38.78699 3.93090 110 36 - - 13.96161 32.12121 41.37279 4.19296 110 34 - - 14.06882 32.62969 43.95859 4.45502 110 32 - - 14.18504 33.13818 46.54439 4.71708 110 30 - - 14.31001 33.64666 49.13019 4.97914 110 29 - - 14.44347 34.15515 51.71598 5.24120 110 28 - - 14.44347 34.15515 48.40265 5.24120 110 30 - - 14.58509 34.66363 50.82279 5.50326 110 29 - - 14.73443 35.17212 53.24292 5.76532 110 28 - - 14.89110 35.68060 55.66305 6.02738 110 27 - - 15.05470 36.18909 58.08319 6.28944 110 26 - - 15.22483 36.69758 60.50332 6.55150 110 25 - - 15.22483 36.69758 55.87945 6.55150 110 27 - - 15.40108 37.20606 58.11463 6.81356 110 27 - - 15.58313 37.71455 60.34981 7.07562 110 26 - - 15.77073 38.22303 62.58499 7.33768 110 25 - - 15.96364 38.73152 64.82017 7.59974 110 25 - - 16.16160 39.24000 67.05534 7.86180 110 24 - - 15.25348 39.24000 88.84073 6.95368 110 17 - - 15.47449 39.73050 92.39493 7.23187 110 17 - - 15.69998 40.22100 95.94913 7.51006 110 16 - - 15.92980 40.71150 99.50333 7.78825 110 16 - - 16.16378 41.20200 103.05753 8.06644 110 16 - - 16.40177 41.69250 106.61173 8.34464 110 15 - - 16.40177 41.69250 99.21595 8.34464 110 17 - - 16.64358 42.18300 102.52359 8.62283 110 16 - - 16.88899 42.67350 105.83123 8.90102 110 16 - - 17.13778 43.16400 109.13888 9.17921 110 16 - - 17.38972 43.65450 112.44652 9.45740 110 15 - - 17.64459 44.14500 115.75416 9.73560 110 15 - - 17.64459 44.14500 113.22072 9.73560 110 16 - - 17.90217 44.63550 116.45597 10.01379 110 15 - - 18.16222 45.12600 119.69122 10.29198 110 15 - - 18.42453 45.61650 122.92647 10.57017 110 15 - - 18.68887 46.10700 126.16172 10.84836 110 15 - - 18.95504 46.59750 129.39697 11.12655 110 15 - - 18.95504 46.59750 128.10131 11.12655 110 15 - - 19.22282 47.08800 131.30416 11.40475 110 15 - - 19.49202 47.57850 134.50702 11.68294 110 14 - - 19.76246 48.06900 137.70987 11.96113 110 14 - - 20.03398 48.55950 140.91273 12.23932 110 14 - - 20.30640 49.05000 144.11558 12.51751 110 14 - - 20.30640 49.05000 143.35248 12.51751 110 14 - - 20.57955 49.54050 146.53837 12.79571 110 14 - - 20.85332 50.03100 149.72427 13.07390 110 14 - - 21.12758 50.52150 152.91016 13.35209 110 14 - - 21.40223 51.01200 156.09606 13.63028 110 14 - - 21.67715 51.50250 159.28195 13.90847 110 14 - - 21.67715 51.50250 158.79514 13.90847 110 14 - - 21.95225 51.99300 161.97130 14.18666 110 14 - - 22.22748 52.48350 165.14745 14.46486 110 13 - - 22.50279 52.97400 168.32361 14.74305 110 13 - - 22.77814 53.46450 171.49977 15.02124 110 13 - - 23.05350 53.95500 174.67593 15.29943 110 13 - + 0.00002 21.58200 0.00002 0.00000 202 100 P + 10.52485 22.08651 10.52485 0.26001 202 100 P + 11.64338 22.59103 21.04970 0.52003 110 55 - + 11.72362 23.09554 31.57456 0.78004 110 37 - + 11.80272 23.60006 42.09941 1.04005 110 28 - + 11.88268 24.10457 52.62426 1.30007 110 23 - + 11.88268 24.10457 22.20384 1.30007 110 54 - + 11.96525 24.60909 26.64460 1.56008 110 45 - + 12.05141 25.11360 31.08537 1.82010 110 39 - + 12.14201 25.61811 35.52614 2.08011 110 34 - + 12.23788 26.12263 39.96691 2.34012 110 31 - + 12.33987 26.62714 44.40767 2.60014 110 28 - + 12.33987 26.62714 32.22917 2.60014 110 38 - + 12.44864 27.13166 35.45208 2.86015 110 35 - + 12.56436 27.63617 38.67500 3.12016 110 32 - + 12.68712 28.14069 41.89792 3.38018 110 30 - + 12.81703 28.64520 45.12083 3.64019 110 28 - + 12.95419 29.14971 48.34375 3.90021 110 27 - + 12.95419 29.14971 40.50701 3.90021 110 32 - + 13.09860 29.65423 43.20747 4.16022 110 30 - + 13.25000 30.15874 45.90794 4.42023 110 29 - + 13.40810 30.66326 48.60841 4.68025 110 28 - + 13.57262 31.16777 51.30887 4.94026 110 26 - + 13.74331 31.67229 54.00934 5.20027 110 25 - + 13.74331 31.67229 48.19862 5.20027 110 29 - + 13.91981 32.17680 50.60855 5.46029 110 28 - + 14.10173 32.68131 53.01848 5.72030 110 27 - + 14.28867 33.18583 55.42841 5.98032 110 26 - + 14.48025 33.69034 57.83834 6.24033 110 25 - + 14.67608 34.19486 60.24827 6.50034 110 24 - + 14.67608 34.19486 55.62179 6.50034 110 26 - + 14.87577 34.69937 57.84666 6.76036 110 26 - + 15.07895 35.20389 60.07153 7.02037 110 25 - + 15.28533 35.70840 62.29640 7.28038 110 25 - + 15.49461 36.21291 64.52127 7.54040 110 24 - + 15.70647 36.71743 66.74614 7.80041 110 24 - + 15.70647 36.71743 62.89930 7.80041 110 25 - + 15.92063 37.22194 64.99594 8.06043 110 24 - + 16.13695 37.72646 67.09259 8.32044 110 24 - + 16.35535 38.23097 69.18923 8.58045 110 24 - + 16.57575 38.73549 71.28587 8.84047 110 23 - + 16.79807 39.24000 73.38252 9.10048 110 23 - + 15.74686 39.24000 104.85934 8.04927 110 15 - + 15.99026 39.73050 108.48339 8.32746 110 15 - + 16.23558 40.22100 112.10745 8.60566 110 14 - + 16.48280 40.71150 115.73151 8.88385 110 14 - + 16.73194 41.20200 119.35556 9.16204 110 14 - + 16.98300 41.69250 122.97962 9.44023 110 14 - + 16.98300 41.69250 114.03422 9.44023 110 15 - + 17.23596 42.18300 117.39467 9.71842 110 15 - + 17.49075 42.67350 120.75512 9.99661 110 14 - + 17.74728 43.16400 124.11556 10.27481 110 14 - + 18.00549 43.65450 127.47601 10.55300 110 14 - + 18.26529 44.14500 130.83646 10.83119 110 14 - + 18.26529 44.14500 127.37671 10.83119 110 14 - + 18.52661 44.63550 130.64830 11.10938 110 14 - + 18.78933 45.12600 133.91988 11.38757 110 14 - + 19.05335 45.61650 137.19147 11.66577 110 14 - + 19.31856 46.10700 140.46305 11.94396 110 14 - + 19.58486 46.59750 143.73464 12.22215 110 14 - + 19.58486 46.59750 141.83737 12.22215 110 14 - + 19.85214 47.08800 145.06577 12.50034 110 14 - + 20.12030 47.57850 148.29417 12.77853 110 14 - + 20.38924 48.06900 151.52257 13.05673 110 13 - + 20.65885 48.55950 154.75097 13.33492 110 13 - + 20.92905 49.05000 157.97937 13.61311 110 13 - + 20.92905 49.05000 156.79923 13.61311 110 13 - + 21.19973 49.54050 160.00352 13.89130 110 13 - + 21.47081 50.03100 163.20780 14.16949 110 13 - + 21.74222 50.52150 166.41208 14.44768 110 13 - + 22.01390 51.01200 169.61637 14.72588 110 13 - + 22.28576 51.50250 172.82065 15.00407 110 13 - + 22.28576 51.50250 172.03314 15.00407 110 13 - + 22.55775 51.99300 175.22282 15.28226 110 13 - + 22.82983 52.48350 178.41251 15.56045 110 13 - + 23.10196 52.97400 181.60219 15.83864 110 13 - + 23.37413 53.46450 184.79187 16.11684 110 13 - + 23.64630 53.95500 187.98155 16.39503 110 13 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6335,8 +6206,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 20.257 'Clay, sl san, moderate' - -4.00 28.529 'Sand, sl sil, moderate' + 4.00 24.179 'Clay, sl san, moderate' + -4.00 29.433 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6349,8 +6220,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 5.43 'Clay, sl san, moderate' - -4.00 14.54 'Sand, sl sil, moderate' + 4.00 6.48 'Clay, sl san, moderate' + -4.00 15.00 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -6358,7 +6229,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -6376,28 +6247,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -6436,46 +6295,46 @@ Depth -2.14667 -2.20000 -2.20000 - -2.24900 - -2.29800 - -2.34700 - -2.39600 - -2.44500 - -2.44500 - -2.49683 - -2.54867 - -2.60050 - -2.65233 - -2.70417 - -2.70417 - -2.75600 - -2.80783 - -2.85967 - -2.91150 - -2.96333 - -2.96333 - -3.01517 - -3.06700 - -3.11883 - -3.17067 - -3.22250 - -3.22250 - -3.27433 - -3.32617 - -3.37800 - -3.42983 - -3.48167 - -3.48167 - -3.53350 - -3.58533 - -3.63717 - -3.68900 - -3.74083 - -3.74083 - -3.79267 - -3.84450 - -3.89633 - -3.94817 + -2.25143 + -2.30286 + -2.35429 + -2.40571 + -2.45714 + -2.45714 + -2.50857 + -2.56000 + -2.61143 + -2.66286 + -2.71429 + -2.71429 + -2.76571 + -2.81714 + -2.86857 + -2.92000 + -2.97143 + -2.97143 + -3.02286 + -3.07429 + -3.12571 + -3.17714 + -3.22857 + -3.22857 + -3.28000 + -3.33143 + -3.38286 + -3.43429 + -3.48571 + -3.48571 + -3.53714 + -3.58857 + -3.64000 + -3.69143 + -3.74286 + -3.74286 + -3.79429 + -3.84571 + -3.89714 + -3.94857 -4.00000 -4.00000 -4.05000 @@ -6534,7 +6393,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 17.90899 220000000.000 1 1 1 'Strut' + 0.25000 17.24015 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6560,201 +6419,189 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 24.49 : Percentage mobilized resistance left - 6.35 : Percentage mobilized resistance right - 61.73 : Effective left - 74.92 : Effective right + 22.06 : Percentage mobilized resistance left + 6.72 : Percentage mobilized resistance right + 66.55 : Effective left + 79.29 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right - 252.04 : Max effective resistance left + 301.70 : Max effective resistance left 1179.77 : Max effective resistance right --1202.77 : Max moment left --4342.38 : Max moment right - -266.09 : Max mobilized moment left - -266.63 : Max mobilized moment right - 24.13 : Vertical force left - 28.27 : Vertical force right - 22.1 : Max mobilized moment percentage left - 6.1 : Max mobilized moment percentage right +-1397.06 : Max moment left +-4342.41 : Max moment right + -279.01 : Max mobilized moment left + -279.59 : Max mobilized moment right + 25.84 : Vertical force left + 29.41 : Vertical force right + 20.0 : Max mobilized moment percentage left + 6.4 : Max mobilized moment percentage right 0.25 : Level of single support 2 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --28.27 : Active force -24.13 : Passive force --28.27 : Plugged active force -24.13 : Plugged passive force -1.27 : Anchor force +-29.41 : Active force +25.84 : Passive force +-29.41 : Plugged active force +25.84 : Plugged passive force +1.22 : Anchor force 0.00 : Normal force 71.94 : Factor on resistance 71.94 : Plugged resistance 1.00 : Vertical balance load factor --2.87 : Resulting Vertical Force Unplugged --2.87 : Resulting Vertical Force Plugged +-2.35 : Resulting Vertical Force Unplugged +-2.35 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00040 0.00857 1.16893 - 0.02251 1.02600 0.92693 - 0.11079 2.55920 0.68490 - 0.27966 4.16653 0.44262 - 0.52455 5.59988 0.19986 - 0.83674 6.85887 -0.04362 - 0.83692 -10.97951 -0.04362 - 0.31578 -9.89543 -0.28795 - -0.15555 -8.98668 -0.53273 - -0.58582 -8.25336 -0.77734 - -0.98380 -7.69515 -1.02117 - -1.35824 -7.31134 -1.26364 - -1.35812 -7.31480 -1.26364 - -1.57520 -7.16781 -1.40822 - -1.78881 -7.08292 -1.55202 - -2.00052 -7.03207 -1.69493 - -2.21076 -6.98400 -1.83683 - -2.41955 -6.93533 -1.97763 - -2.41966 -6.93901 -1.97763 - -2.62651 -6.85091 -2.11722 - -2.83071 -6.76174 -2.25550 - -3.03221 -6.67152 -2.39236 - -3.23099 -6.58023 -2.52770 - -3.42701 -6.48787 -2.66144 - -3.42702 -6.48826 -2.66144 - -3.53040 -6.43307 -2.73206 - -3.63288 -6.37754 -2.80219 - -3.73447 -6.32168 -2.87180 - -3.83517 -6.26548 -2.94088 - -3.93497 -6.20895 -3.00941 - -3.93493 -6.20981 -3.00941 - -4.20430 -6.03409 -3.19494 - -4.46588 -5.85553 -3.37595 - -4.71955 -5.67413 -3.55217 - -4.96517 -5.48989 -3.72331 - -5.20262 -5.30281 -3.88912 - -5.20235 -5.30996 -3.88912 - -5.47850 -5.04502 -4.08254 - -5.74040 -4.77529 -4.26731 - -5.98778 -4.50076 -4.44303 - -6.22039 -4.22144 -4.60931 - -6.43798 -3.93732 -4.76576 - -6.43812 -3.93862 -4.76576 - -6.63957 -3.61490 -4.91200 - -6.82361 -3.28581 -5.04775 - -6.98996 -2.95135 -5.17273 - -7.13833 -2.61152 -5.28670 - -7.26843 -2.26632 -5.38939 - -7.26843 -2.26590 -5.38939 - -7.37909 -1.88320 -5.48055 - -7.46920 -1.49463 -5.56005 - -7.53842 -1.10019 -5.62778 - -7.58644 -0.69989 -5.68362 - -7.61297 -0.29373 -5.72747 - -7.61297 -0.29341 -5.72747 - -7.61686 0.14846 -5.75925 - -7.59702 0.59661 -5.77899 - -7.55311 1.05106 -5.78676 - -7.48479 1.51179 -5.78262 - -7.39174 1.97882 -5.76666 - -7.39174 1.97905 -5.76666 - -7.27285 2.48022 -5.73896 - -7.12706 2.98805 -5.69977 - -6.95401 3.50253 -5.64936 - -6.75334 4.02368 -5.58799 - -6.52470 4.55149 -5.51595 - -6.52468 4.55107 -5.51595 - -6.26703 5.11166 -5.43354 - -5.97931 5.67923 -5.34123 - -5.66113 6.25380 -5.23951 - -5.31211 6.83535 -5.12889 - -4.93190 7.42388 -5.00987 - -4.93196 7.45200 -5.00987 - -4.55291 8.02059 -4.89256 - -4.14584 8.59532 -4.77091 - -3.71047 9.17617 -4.64428 - -3.24648 9.76315 -4.51201 - -2.75358 10.35626 -4.37345 - -2.75348 10.38469 -4.37345 - -2.19982 10.94959 -4.22438 - -1.62138 11.34041 -4.07203 - -1.02720 11.55713 -3.91728 - -0.42630 11.59977 -3.76100 - 0.17230 11.46833 -3.60409 - 0.17226 11.46425 -3.60409 - 0.75986 11.17964 -3.44745 - 1.32821 10.72115 -3.29196 - 1.86829 10.08879 -3.13840 - 2.37108 9.28255 -2.98759 - 2.82757 8.30245 -2.84032 - 2.82807 8.29232 -2.84032 - 3.22925 7.15824 -2.69735 - 3.56855 5.93212 -2.55921 - 3.84483 4.74189 -2.42632 - 4.06151 3.63184 -2.29908 - 4.22264 2.59786 -2.17791 - 4.22243 2.59667 -2.17791 - 4.33228 1.65339 -2.06314 - 4.39500 0.77748 -1.95484 - 4.41396 -0.03557 -1.85304 - 4.39232 -0.79034 -1.75778 - 4.33318 -1.47879 -1.66907 - 4.33296 -1.48433 -1.66907 - 4.24017 -2.07696 -1.58689 - 4.11956 -2.55901 -1.51105 - 3.97665 -2.93919 -1.44132 - 3.81648 -3.22592 -1.37750 - 3.64370 -3.42733 -1.31938 - 3.64371 -3.42417 -1.31938 - 3.46270 -3.54806 -1.26672 - 3.27711 -3.60187 -1.21922 - 3.09039 -3.59262 -1.17662 - 2.90565 -3.52699 -1.13863 - 2.72563 -3.41122 -1.10498 - 2.72565 -3.40895 -1.10498 - 2.55418 -3.44309 -1.07638 - 2.38194 -3.44101 -1.05132 - 2.21061 -3.40734 -1.02957 - 2.04166 -3.34638 -1.01090 - 1.87636 -3.26212 -0.99506 - 1.87637 -3.26065 -0.99506 - 1.71586 -3.15676 -0.98182 - 1.56097 -3.03661 -0.97096 - 1.41242 -2.90327 -0.96228 - 1.27081 -2.75954 -0.95556 - 1.13660 -2.60793 -0.95062 - 1.13661 -2.60704 -0.95062 - 1.01017 -2.44981 -0.94724 - 0.89168 -2.28897 -0.94526 - 0.78130 -2.12630 -0.94453 - 0.67906 -1.96338 -0.94489 - 0.58494 -1.80159 -0.94620 - 0.58495 -1.80113 -0.94620 - 0.49889 -1.64164 -0.94830 - 0.42073 -1.48547 -0.95110 - 0.35027 -1.33347 -0.95450 - 0.28730 -1.18639 -0.95838 - 0.23154 -1.04483 -0.96267 - 0.23155 -1.04464 -0.96267 - 0.18273 -0.90907 -0.96727 - 0.14053 -0.77987 -0.97211 - 0.10463 -0.65736 -0.97717 - 0.07468 -0.54178 -0.98237 - 0.05033 -0.43329 -0.98768 - 0.05034 -0.43324 -0.98768 - 0.03124 -0.33196 -0.99305 - 0.01702 -0.23796 -0.99846 - 0.00732 -0.15128 -1.00390 - 0.00177 -0.07196 -1.00936 - 0.00000 0.00000 -1.01482 + -0.00039 0.00830 0.98643 + 0.01707 0.81766 0.82543 + 0.09062 2.18137 0.66441 + 0.23710 3.65879 0.50318 + 0.45457 5.02048 0.34153 + 0.73721 6.26610 0.17926 + 0.73739 -10.90609 0.17926 + 0.22079 -9.77700 0.01626 + -0.24226 -8.76478 -0.14704 + -0.65763 -7.86945 -0.31006 + -1.03115 -7.09062 -0.47223 + -1.36862 -6.42751 -0.63295 + -1.36833 -6.43247 -0.63295 + -1.73412 -5.78780 -0.82320 + -2.06611 -5.30557 -1.00999 + -2.37397 -4.98269 -1.19268 + -2.66663 -4.78931 -1.37066 + -2.94967 -4.64492 -1.54329 + -2.95017 -4.65718 -1.54329 + -3.22282 -4.43020 -1.70999 + -3.48169 -4.19808 -1.87023 + -3.72648 -3.96081 -2.02354 + -3.95689 -3.71841 -2.16942 + -4.17259 -3.47087 -2.30739 + -4.17261 -3.47189 -2.30739 + -4.35073 -3.20695 -2.42300 + -4.51460 -2.93722 -2.53174 + -4.66395 -2.66269 -2.63336 + -4.79853 -2.38337 -2.72763 + -4.91809 -2.09925 -2.81432 + -4.91809 -2.10002 -2.81432 + -5.02148 -1.77630 -2.89321 + -5.10747 -1.44721 -2.96416 + -5.17576 -1.11275 -3.02706 + -5.22607 -0.77292 -3.08181 + -5.25811 -0.42772 -3.12830 + -5.25811 -0.42845 -3.12830 + -5.27078 -0.04574 -3.16644 + -5.26288 0.34282 -3.19625 + -5.23411 0.73726 -3.21777 + -5.18414 1.13756 -3.23105 + -5.11266 1.54372 -3.23614 + -5.11266 1.54302 -3.23614 + -5.01861 1.98488 -3.23310 + -4.90083 2.43304 -3.22213 + -4.75898 2.88749 -3.20345 + -4.59272 3.34822 -3.17729 + -4.40172 3.81525 -3.14386 + -4.40172 3.81460 -3.14386 + -4.18494 4.31577 -3.10343 + -3.94126 4.82360 -3.05638 + -3.67031 5.33809 -3.00314 + -3.37174 5.85924 -2.94414 + -3.04520 6.38705 -2.87981 + -3.04521 6.38653 -2.87981 + -2.68967 6.94712 -2.81061 + -2.30406 7.51470 -2.73716 + -1.88798 8.08927 -2.66011 + -1.44108 8.67081 -2.58012 + -0.96297 9.25935 -2.49785 + -0.96266 9.25381 -2.49785 + -0.47768 9.48588 -2.41707 + 0.00062 8.99400 -2.33561 + 0.43992 8.06466 -2.25410 + 0.82922 7.08230 -2.17317 + 1.16914 6.14441 -2.09347 + 1.16900 6.13398 -2.09347 + 1.46187 5.26223 -2.01556 + 1.71097 4.43169 -1.93980 + 1.91840 3.64183 -1.86649 + 2.08622 2.89085 -1.79596 + 2.21638 2.17671 -1.72849 + 2.21651 2.17517 -1.72849 + 2.31129 1.51621 -1.66435 + 2.37302 0.88974 -1.60360 + 2.40350 0.30405 -1.54630 + 2.40537 -0.21917 -1.49250 + 2.38220 -0.67014 -1.44223 + 2.38203 -0.67075 -1.44223 + 2.33740 -1.05438 -1.39550 + 2.27466 -1.37550 -1.35221 + 2.19691 -1.63883 -1.31224 + 2.10700 -1.84888 -1.27548 + 2.00757 -2.01003 -1.24182 + 2.00758 -2.00834 -1.24182 + 1.90112 -2.12482 -1.21113 + 1.78973 -2.20061 -1.18323 + 1.67540 -2.23949 -1.15795 + 1.55995 -2.24497 -1.13513 + 1.44501 -2.22036 -1.11461 + 1.44501 -2.21913 -1.11461 + 1.33211 -2.16750 -1.09621 + 1.22249 -2.09168 -1.07976 + 1.11733 -1.99426 -1.06512 + 1.01769 -1.87766 -1.05212 + 0.92449 -1.74405 -1.04062 + 0.92450 -1.74326 -1.04062 + 0.83861 -1.59462 -1.03047 + 0.76071 -1.43273 -1.02155 + 0.69144 -1.25924 -1.01375 + 0.63136 -1.07564 -1.00699 + 0.58095 -0.88329 -1.00115 + 0.58096 -0.88280 -1.00115 + 0.53719 -0.86674 -0.99628 + 0.49438 -0.84462 -0.99216 + 0.45281 -0.81740 -0.98873 + 0.41271 -0.78597 -0.98593 + 0.37427 -0.75114 -0.98370 + 0.37428 -0.75085 -0.98370 + 0.33766 -0.71336 -0.98199 + 0.30297 -0.67388 -0.98074 + 0.27030 -0.63301 -0.97992 + 0.23969 -0.59129 -0.97948 + 0.21117 -0.54920 -0.97937 + 0.21118 -0.54903 -0.97937 + 0.18478 -0.50698 -0.97955 + 0.16047 -0.46536 -0.97999 + 0.13823 -0.42447 -0.98066 + 0.11801 -0.38461 -0.98151 + 0.09975 -0.34602 -0.98253 + 0.09975 -0.34594 -0.98253 + 0.08338 -0.30882 -0.98369 + 0.06884 -0.27334 -0.98496 + 0.05602 -0.23964 -0.98633 + 0.04484 -0.20784 -0.98778 + 0.03520 -0.17805 -0.98929 + 0.03520 -0.17802 -0.98929 + 0.02701 -0.15029 -0.99085 + 0.02014 -0.12470 -0.99245 + 0.01450 -0.10127 -0.99407 + 0.00998 -0.08006 -0.99572 + 0.00646 -0.06108 -0.99738 + 0.00646 -0.06107 -0.99738 + 0.00383 -0.04434 -0.99905 + 0.00198 -0.02986 -1.00072 + 0.00081 -0.01764 -1.00240 + 0.00018 -0.00769 -1.00408 + 0.00000 0.00000 -1.00575 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6816,7 +6663,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -6828,9 +6675,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 65.43700 0.00000 15.84156 0.00000 0.00000 65.56100 0.00000 35.39770 0.00000 - -0.15000 65.61700 33.88500 48.54937 0.17585 -0.30000 65.65900 34.05600 62.30901 0.51002 - -0.38000 65.67900 34.13400 69.89607 0.71692 -0.60000 65.72500 34.31900 91.65215 1.38877 -0.86667 65.77100 34.50700 119.77632 2.40554 -1.13333 65.81200 34.67000 149.82161 3.64428 @@ -6838,12 +6683,12 @@ Q max -1.66667 65.88000 34.94700 215.67494 6.78828 -1.93333 65.91100 35.06800 251.48273 8.69380 -2.20000 65.93800 35.18000 289.21111 10.82181 - -2.44500 65.96200 35.27600 325.56685 12.97311 - -2.70417 65.98600 35.37100 365.78913 15.45338 - -2.96333 66.00800 35.46000 407.82526 18.14404 - -3.22250 66.02900 35.54300 451.67517 21.04515 - -3.48167 66.04900 35.62300 497.33882 24.15676 - -3.74083 66.06700 35.69700 544.81615 27.47894 + -2.45714 65.96300 35.28000 327.41090 13.08462 + -2.71429 65.98700 35.37400 367.39638 15.55449 + -2.97143 66.00900 35.46200 409.16749 18.23147 + -3.22857 66.02900 35.54500 452.72418 21.11563 + -3.48571 66.04900 35.62400 498.06637 24.20703 + -3.74286 66.06700 35.69800 545.19403 27.50571 -4.00000 66.08500 35.76800 594.10711 31.01172 -4.25000 68.15500 35.88300 687.97870 34.90653 -4.50000 69.26300 35.98800 781.28838 38.98960 @@ -6856,7 +6701,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -6869,23 +6714,21 @@ Lambda passive [DATA] 0.37500 12.25000 63.36625 0.00000 0.61732 0.00000 5.17275 0.12500 16.75000 78.22456 0.00000 0.61732 0.00000 4.67012 - -0.07500 19.61425 87.67776 1.17230 0.61732 0.05977 4.47011 - -0.22500 20.84275 91.73092 2.22784 0.61732 0.10689 4.40110 - -0.34000 21.78460 94.83831 2.58623 0.61732 0.11872 4.35346 - -0.49000 23.01310 98.89126 3.05387 0.61732 0.13270 4.29717 + -0.15000 20.22850 89.70434 1.70007 0.61732 0.08404 4.43455 + -0.45000 22.68550 97.81047 2.92916 0.61732 0.12912 4.31159 -0.73333 25.00600 105.46563 3.81289 0.61732 0.15248 4.21761 -1.00000 27.19000 112.66983 4.64528 0.61732 0.17085 4.14380 -1.26667 29.37400 119.87345 5.47825 0.61732 0.18650 4.08094 -1.53333 31.55800 127.07655 6.31174 0.61732 0.20000 4.02676 -1.80000 33.74200 134.27920 7.14569 0.61732 0.21177 3.97959 -2.06667 35.92600 141.48144 7.98004 0.61732 0.22212 3.93814 - -2.32250 38.02127 148.39076 8.78083 0.61732 0.23095 3.90283 - -2.57458 40.08584 155.19851 9.57017 0.61732 0.23874 3.87165 - -2.83375 42.20841 162.19728 10.38196 0.61732 0.24597 3.84277 - -3.09292 44.33099 169.19582 11.19399 0.61732 0.25251 3.81665 - -3.35208 46.45356 176.19414 12.00624 0.61732 0.25846 3.79291 - -3.61125 48.57614 183.19226 12.81868 0.61732 0.26389 3.77124 - -3.87042 50.69871 190.19020 13.63130 0.61732 0.26887 3.75138 + -2.32857 38.07100 148.55473 8.79984 0.61732 0.23114 3.90204 + -2.58571 40.17700 155.49910 9.60503 0.61732 0.23907 3.87035 + -2.84286 42.28300 162.44322 10.41049 0.61732 0.24621 3.84181 + -3.10000 44.38900 169.38709 11.21619 0.61732 0.25268 3.81597 + -3.35714 46.49500 176.33076 12.02210 0.61732 0.25857 3.79247 + -3.61429 48.60100 183.27423 12.82820 0.61732 0.26395 3.77100 + -3.87143 50.70700 190.21752 13.63447 0.61732 0.26889 3.75131 -4.12500 53.03375 375.48639 15.57923 0.54601 0.29376 7.08014 -4.37500 55.58125 373.23870 16.33232 0.54601 0.29385 6.71519 -4.62500 58.12875 380.69122 17.08514 0.54601 0.29392 6.54910 @@ -6897,7 +6740,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6908,42 +6751,30 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 9.81729 0.00000 51.72755 6.17317 110 19 - - 20.32878 0.00000 56.38303 6.72875 110 36 - - 25.09959 0.00000 61.03851 7.28434 110 41 - - 22.52477 0.00000 65.69399 7.83992 110 34 - - 19.94510 0.00000 70.34947 8.39551 110 28 - - 17.35826 0.00000 75.00495 8.95109 110 23 - - 17.35826 0.00000 67.71679 8.95109 110 26 - - 14.76285 0.00000 71.91990 9.50668 110 21 - - 12.16305 0.00000 76.12301 10.06226 110 16 - - 9.56491 0.00000 80.32612 10.61784 110 0 - - 6.97447 0.00000 84.52923 11.17343 110 0 - - 4.39778 0.00000 88.73234 11.72901 110 0 - - 4.39778 0.00000 84.93200 11.72901 110 0 - - 2.86069 0.29430 86.03031 11.88069 110 0 - - 1.33147 0.58860 87.12861 12.03236 110 0 - - 1.17964 0.88290 88.22692 12.18404 1 0 A - 1.19433 1.17720 89.32522 12.33571 1 0 A - 1.20901 1.47150 90.42353 12.48739 1 0 A - 2.16218 1.47150 89.02755 12.48739 1 0 A - 2.18844 1.76580 90.10890 12.63906 1 0 A - 2.21471 2.06010 91.19025 12.79074 1 0 A - 2.24097 2.35440 92.27160 12.94241 1 0 A - 2.26723 2.64870 93.35295 13.09409 1 0 A - 2.29349 2.94300 94.43430 13.24576 1 0 A - 2.54734 2.94300 93.41212 13.24576 1 0 A - 2.56289 3.09996 93.98260 13.32665 1 0 A - 2.57845 3.25692 94.55307 13.40755 1 0 A - 2.59401 3.41388 95.12355 13.48844 1 0 A - 2.60956 3.57084 95.69403 13.56933 1 0 A - 2.62512 3.72780 96.26451 13.65023 1 0 A - 2.93432 3.72780 95.01994 13.65023 1 0 A - 2.98214 4.15944 96.56847 13.87268 1 0 A - 3.02996 4.59108 98.11700 14.09514 1 0 A - 3.07778 5.02272 99.66553 14.31760 1 0 A - 3.12560 5.45436 101.21405 14.54005 1 0 A - 3.17342 5.88600 102.76258 14.76251 1 0 A + 6.31885 0.00000 51.72755 6.17317 110 12 - + 17.66230 0.00000 56.38303 6.72875 110 31 - + 22.74380 0.00000 61.03851 7.28434 110 37 - + 21.03149 0.00000 65.69399 7.83992 110 32 - + 19.31500 0.00000 70.34947 8.39551 110 27 - + 17.59228 0.00000 75.00495 8.95109 110 23 - + 17.59228 0.00000 67.71679 8.95109 110 26 - + 15.86232 0.00000 71.91990 9.50668 110 22 - + 14.12931 0.00000 76.12301 10.06226 110 19 - + 12.39907 0.00000 80.32612 10.61784 110 15 - + 10.67741 0.00000 84.52923 11.17343 110 0 - + 8.97016 0.00000 88.73234 11.72901 110 0 - + 8.97016 0.00000 84.25650 11.72901 110 0 - + 6.94754 0.58860 86.43564 12.03236 110 0 - + 4.95952 1.17720 88.61477 12.33571 110 0 - + 3.01270 1.76580 90.79391 12.63906 110 0 - + 1.76202 2.35440 92.97305 12.94241 1 0 A + 1.80332 2.94300 95.15219 13.24576 1 0 A + 2.77054 2.94300 92.51369 13.24576 1 0 A + 2.83399 3.53160 94.63240 13.54911 1 0 A + 2.89744 4.12020 96.75112 13.85246 1 0 A + 2.96089 4.70880 98.86983 14.15581 1 0 A + 3.02434 5.29740 100.98854 14.45916 1 0 A + 3.08779 5.88600 103.10726 14.76251 1 0 A 3.64638 5.88600 100.86000 14.76251 1 0 A 3.71298 6.40920 102.70225 15.03215 1 0 A 3.77958 6.93240 104.54451 15.30180 1 0 A @@ -6980,84 +6811,84 @@ Status character 8.02855 20.53560 142.34153 22.31254 1 0 A 8.12558 21.05880 144.06171 22.58218 1 0 A 8.22260 21.58200 145.78189 22.85182 1 0 A - 8.54913 21.58200 144.47514 22.85182 1 0 A - 8.64181 22.06269 146.04139 23.09956 1 0 A - 8.73449 22.54338 147.60764 23.34730 1 0 A - 8.82717 23.02407 149.17388 23.59503 1 0 A - 8.91985 23.50476 150.74013 23.84277 1 0 A - 9.01253 23.98545 152.30638 24.09050 1 0 A - 9.31680 23.98545 151.08957 24.09050 1 0 A - 9.41815 24.49394 152.73314 24.35256 1 0 A - 9.51950 25.00242 154.37672 24.61462 1 0 A - 9.62085 25.51091 156.02030 24.87668 1 0 A - 9.72220 26.01939 157.66387 25.13874 1 0 A - 9.82355 26.52788 159.30745 25.40080 1 0 A - 10.12092 26.52788 158.11900 25.40080 1 0 A - 10.22533 27.03636 159.75031 25.66286 1 0 A - 10.32975 27.54485 161.38163 25.92492 1 0 A - 10.43417 28.05333 163.01294 26.18698 1 0 A - 10.53859 28.56182 164.64425 26.44904 1 0 A - 10.64301 29.07030 166.27557 26.71110 1 0 A - 10.92601 29.07030 165.14526 26.71110 1 0 A - 11.03320 29.57878 166.76548 26.97316 1 0 A - 11.14039 30.08727 168.38571 27.23522 1 0 A - 11.24759 30.59576 170.00593 27.49728 1 0 A - 11.35478 31.10424 171.62616 27.75934 1 0 A - 11.46198 31.61273 173.24638 28.02140 1 0 A - 11.73194 31.61273 172.16877 28.02140 1 0 A - 11.84166 32.12121 173.77892 28.28346 1 0 A - 11.95138 32.62969 175.38906 28.54552 1 0 A - 12.06110 33.13818 176.99921 28.80758 1 0 A - 12.17082 33.64666 178.60936 29.06964 1 0 A - 12.64098 34.15515 180.21950 29.33170 110 0 - - 12.64098 34.15515 179.18989 29.33170 110 0 - - 13.72482 34.66363 180.79084 29.59376 110 0 - - 14.74537 35.17212 182.39178 29.85582 110 0 - - 15.70473 35.68060 183.99273 30.11788 110 0 - - 16.60498 36.18909 185.59368 30.37994 110 0 - - 17.44822 36.69758 187.19463 30.64200 110 0 - - 17.44822 36.69758 186.20891 30.64200 110 0 - - 18.23688 37.20606 187.80143 30.90406 110 0 - - 18.97389 37.71455 189.39394 31.16613 110 0 - - 19.66198 38.22303 190.98646 31.42819 110 0 - - 20.30394 38.73152 192.57898 31.69025 110 0 - - 20.90250 39.24000 194.17150 31.95231 110 0 - - 17.21165 39.24000 366.46806 28.26145 110 0 - - 17.77588 39.73050 370.07539 28.53964 110 0 - - 18.30465 40.22100 373.68272 28.81784 110 0 - - 18.80032 40.71150 377.29006 29.09603 110 0 - - 19.26527 41.20200 380.89739 29.37422 110 0 - - 19.70185 41.69250 384.50472 29.65241 110 0 - - 19.70185 41.69250 364.68523 29.65241 110 0 - - 20.11244 42.18300 368.10662 29.93060 110 0 - - 20.49921 42.67350 371.52800 30.20879 110 0 - - 20.86422 43.16400 374.94939 30.48699 110 0 - - 21.20953 43.65450 378.37078 30.76518 110 0 - - 21.53719 44.14500 381.79217 31.04337 110 0 - - 21.53719 44.14500 372.34930 31.04337 110 0 - - 21.84920 44.63550 375.68607 31.32156 110 0 - - 22.14718 45.12600 379.02284 31.59975 110 0 - - 22.43268 45.61650 382.35961 31.87795 110 0 - - 22.70722 46.10700 385.69638 32.15614 110 0 - - 22.97234 46.59750 389.03315 32.43433 110 0 - - 22.97234 46.59750 383.33523 32.43433 110 0 - - 23.22947 47.08800 386.62313 32.71252 110 0 - - 23.47968 47.57850 389.91103 32.99071 110 0 - - 23.72395 48.06900 393.19892 33.26890 110 0 - - 23.96326 48.55950 396.48682 33.54710 110 0 - - 24.19859 49.05000 399.77472 33.82529 110 0 - - 24.19859 49.05000 395.94681 33.82529 110 0 - - 24.43082 49.54050 399.20323 34.10348 110 0 - - 24.66052 50.03100 402.45964 34.38167 110 0 - - 24.88819 50.52150 405.71606 34.65986 110 0 - - 25.11433 51.01200 408.97247 34.93806 110 0 - - 25.33944 51.50250 412.22889 35.21625 110 0 - - 25.33944 51.50250 409.48709 35.21625 110 0 - - 25.56394 51.99300 412.72185 35.49444 110 0 - - 25.78801 52.48350 415.95661 35.77263 110 0 - - 26.01179 52.97400 419.19136 36.05082 110 0 - - 26.23541 53.46450 422.42612 36.32902 110 0 - - 26.45902 53.95500 425.66087 36.60721 110 0 - + 8.55645 21.58200 144.44587 22.85182 1 0 A + 8.65380 22.08651 146.08941 23.11184 1 0 A + 8.75116 22.59103 147.73296 23.37185 1 0 A + 8.84852 23.09554 149.37650 23.63187 1 0 A + 8.94588 23.60006 151.02004 23.89188 1 0 A + 9.04323 24.10457 152.66358 24.15189 1 0 A + 9.35329 24.10457 151.42362 24.15189 1 0 A + 9.45399 24.60909 153.05382 24.41191 1 0 A + 9.55469 25.11360 154.68401 24.67192 1 0 A + 9.65538 25.61811 156.31420 24.93193 1 0 A + 9.75608 26.12263 157.94439 25.19195 1 0 A + 9.85677 26.62714 159.57458 25.45196 1 0 A + 10.15123 26.62714 158.39779 25.45196 1 0 A + 10.25494 27.13166 160.01596 25.71198 1 0 A + 10.35864 27.63617 161.63413 25.97199 1 0 A + 10.76897 28.14069 163.25230 26.23200 110 0 - + 11.56705 28.64520 164.87047 26.49202 110 0 - + 12.32973 29.14971 166.48864 26.75203 110 0 - + 12.32973 29.14971 165.36888 26.75203 110 0 - + 13.05702 29.65423 166.97616 27.01204 110 0 - + 13.74995 30.15874 168.58345 27.27206 110 0 - + 14.40966 30.66326 170.19074 27.53207 110 0 - + 15.03726 31.16777 171.79802 27.79209 110 0 - + 15.63387 31.67229 173.40531 28.05210 110 0 - + 15.63387 31.67229 172.33729 28.05210 110 0 - + 16.20084 32.17680 173.93468 28.31211 110 0 - + 16.73988 32.68131 175.53206 28.57213 110 0 - + 17.25265 33.18583 177.12945 28.83214 110 0 - + 17.74083 33.69034 178.72684 29.09215 110 0 - + 18.20607 34.19486 180.32422 29.35217 110 0 - + 18.20607 34.19486 179.30337 29.35217 110 0 - + 18.65011 34.69937 180.89171 29.61218 110 0 - + 19.07459 35.20389 182.48006 29.87220 110 0 - + 19.48104 35.70840 184.06840 30.13221 110 0 - + 19.87101 36.21291 185.65674 30.39222 110 0 - + 20.24602 36.71743 187.24509 30.65224 110 0 - + 20.24602 36.71743 186.26740 30.65224 110 0 - + 20.60757 37.22194 187.84745 30.91225 110 0 - + 20.95681 37.72646 189.42750 31.17226 110 0 - + 21.29476 38.23097 191.00755 31.43228 110 0 - + 21.62243 38.73549 192.58760 31.69229 110 0 - + 21.94083 39.24000 194.16765 31.95231 110 0 - + 18.24998 39.24000 366.46806 28.26145 110 0 - + 18.57683 39.73050 370.07539 28.53964 110 0 - + 18.89623 40.22100 373.68272 28.81784 110 0 - + 19.20874 40.71150 377.29006 29.09603 110 0 - + 19.51495 41.20200 380.89739 29.37422 110 0 - + 19.81543 41.69250 384.50472 29.65241 110 0 - + 19.81543 41.69250 364.68523 29.65241 110 0 - + 20.11074 42.18300 368.10662 29.93060 110 0 - + 20.40136 42.67350 371.52800 30.20879 110 0 - + 20.68774 43.16400 374.94939 30.48699 110 0 - + 20.97035 43.65450 378.37078 30.76518 110 0 - + 21.24963 44.14500 381.79217 31.04337 110 0 - + 21.24963 44.14500 372.34930 31.04337 110 0 - + 21.52601 44.63550 375.68607 31.32156 110 0 - + 21.79983 45.12600 379.02284 31.59975 110 0 - + 22.07139 45.61650 382.35961 31.87795 110 0 - + 22.34101 46.10700 385.69638 32.15614 110 0 - + 22.60899 46.59750 389.03315 32.43433 110 0 - + 22.60899 46.59750 383.33523 32.43433 110 0 - + 22.87562 47.08800 386.62313 32.71252 110 0 - + 23.14109 47.57850 389.91103 32.99071 110 0 - + 23.40559 48.06900 393.19892 33.26890 110 0 - + 23.66928 48.55950 396.48682 33.54710 110 0 - + 23.93236 49.05000 399.77472 33.82529 110 0 - + 23.93236 49.05000 395.94681 33.82529 110 0 - + 24.19497 49.54050 399.20323 34.10348 110 0 - + 24.45720 50.03100 402.45964 34.38167 110 0 - + 24.71914 50.52150 405.71606 34.65986 110 0 - + 24.98087 51.01200 408.97247 34.93806 110 0 - + 25.24246 51.50250 412.22889 35.21625 110 0 - + 25.24246 51.50250 409.48709 35.21625 110 0 - + 25.50397 51.99300 412.72185 35.49444 110 0 - + 25.76543 52.48350 415.95661 35.77263 110 0 - + 26.02686 52.97400 419.19136 36.05082 110 0 - + 26.28826 53.46450 422.42612 36.32902 110 0 - + 26.54967 53.95500 425.66087 36.60721 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7070,8 +6901,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 40.987 'Clay, sl san, moderate' - -4.00 33.932 'Sand, sl sil, moderate' + 4.00 45.467 'Clay, sl san, moderate' + -4.00 33.819 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7084,8 +6915,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -10.98 'Clay, sl san, moderate' - -4.00 -17.29 'Sand, sl sil, moderate' + 4.00 -12.18 'Clay, sl san, moderate' + -4.00 -17.23 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -7100,7 +6931,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -2.45 + 0.00 -2.20 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Soil Profile @@ -7148,7 +6979,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=13 +DataCount=14 [COLUMN INDICATION] Slide plane position Theta min @@ -7157,25 +6988,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -2.44500 0.00000 0.00000 0.00000 0.00000 - -2.70417 65.13500 0.00000 1.67758 0.00000 - -2.96333 65.13500 0.00000 6.71032 0.00000 - -3.22250 65.13500 0.00000 15.09821 0.00000 - -3.48167 65.13600 0.00000 26.82589 0.00000 - -3.74083 65.17500 0.00000 40.93829 0.00000 - -4.00000 65.23800 0.00000 56.86859 0.00000 - -4.25000 69.20400 0.00000 81.30015 0.00000 - -4.50000 70.69500 0.00000 108.17141 0.00000 - -4.75000 71.55400 34.34000 138.49862 1.38826 - -5.00000 72.11400 34.80100 172.52574 2.97105 - -5.25000 72.50600 35.18000 210.35504 4.74328 - -5.50000 72.79200 35.49300 252.03892 6.70461 + -2.20000 0.00000 0.00000 0.00000 0.00000 + -2.45714 64.04800 0.00000 6.76598 0.00000 + -2.71429 64.29200 0.00000 15.33031 0.00000 + -2.97143 64.49500 0.00000 25.68969 0.00000 + -3.22857 64.66800 0.00000 37.84179 0.00000 + -3.48571 64.81600 0.00000 51.78496 0.00000 + -3.74286 64.94400 0.00000 67.51798 0.00000 + -4.00000 65.05700 0.00000 85.03993 0.00000 + -4.25000 68.57100 0.00000 113.51980 0.00000 + -4.50000 70.05500 0.00000 144.12863 0.00000 + -4.75000 70.96200 0.00000 178.01755 0.00000 + -5.00000 71.58100 33.95000 215.49464 0.59873 + -5.25000 72.03000 34.36700 256.69713 2.51047 + -5.50000 72.36700 34.72600 301.69897 4.61213 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=12 +DataCount=13 [COLUMN INDICATION] Position Vertical stress @@ -7186,24 +7018,25 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.57458 1.06129 6.47298 0.00000 0.61732 0.00000 6.09917 - -2.83375 3.18386 19.41893 0.00000 0.61732 0.00000 6.09917 - -3.09292 5.30644 32.36488 0.00000 0.61732 0.00000 6.09917 - -3.35208 7.42901 45.25149 0.00000 0.61732 0.00000 6.09118 - -3.61125 9.55159 54.45299 0.00000 0.61732 0.00000 5.70094 - -3.87042 11.67416 61.46740 0.00000 0.61732 0.00000 5.26525 - -4.12500 14.00920 97.72623 0.00000 0.54601 0.00000 6.97586 - -4.37500 16.55670 107.48506 0.00000 0.54601 0.00000 6.49194 - -4.62500 19.10420 121.30885 5.55306 0.54601 0.29067 6.34985 - -4.87500 21.65170 136.10844 6.33114 0.54601 0.29241 6.28627 - -5.12500 24.19920 151.31722 7.08892 0.54601 0.29294 6.25298 - -5.37500 26.74670 166.73553 7.84533 0.54601 0.29332 6.23387 + -2.32857 1.05300 26.31213 0.00000 0.61732 0.00000 24.98778 + -2.58571 3.15900 33.30576 0.00000 0.61732 0.00000 10.54313 + -2.84286 5.26500 40.28646 0.00000 0.61732 0.00000 7.65175 + -3.10000 7.37100 47.25817 0.00000 0.61732 0.00000 6.41137 + -3.35714 9.47700 54.22344 0.00000 0.61732 0.00000 5.72158 + -3.61429 11.58300 61.18397 0.00000 0.61732 0.00000 5.28222 + -3.87143 13.68900 68.14091 0.00000 0.61732 0.00000 4.97779 + -4.12500 16.01575 113.91948 0.00000 0.54601 0.00000 7.11297 + -4.37500 18.56325 122.43534 0.00000 0.54601 0.00000 6.59558 + -4.62500 21.11075 135.55568 0.00000 0.54601 0.00000 6.42117 + -4.87500 23.65825 149.90837 2.39490 0.54601 0.10123 6.33641 + -5.12500 26.20575 164.80994 7.64699 0.54601 0.29181 6.28908 + -5.37500 28.75325 180.00735 8.40662 0.54601 0.29237 6.26042 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -7227,28 +7060,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.09996 0.00000 0.00000 -1 0 - - 0.00000 3.25692 0.00000 0.00000 -1 0 - - 0.00000 3.41388 0.00000 0.00000 -1 0 - - 0.00000 3.57084 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 4.15944 0.00000 0.00000 -1 0 - - 0.00000 4.59108 0.00000 0.00000 -1 0 - - 0.00000 5.02272 0.00000 0.00000 -1 0 - - 0.00000 5.45436 0.00000 0.00000 -1 0 - + 0.00000 3.53160 0.00000 0.00000 -1 0 - + 0.00000 4.12020 0.00000 0.00000 -1 0 - + 0.00000 4.70880 0.00000 0.00000 -1 0 - + 0.00000 5.29740 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -7286,84 +7107,84 @@ Status character 0.00000 20.53560 0.00000 0.00000 -1 0 - 0.00000 21.05880 0.00000 0.00000 -1 0 - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 0.00000 22.06269 0.00000 0.00000 -1 0 - - 0.00000 22.54338 0.00000 0.00000 -1 0 - - 0.00000 23.02407 0.00000 0.00000 -1 0 - - 0.00000 23.50476 0.00000 0.00000 -1 0 - - 0.00000 23.98545 0.00000 0.00000 -1 0 - - 0.00001 23.98545 0.00001 0.00000 202 100 P - 2.58919 24.49394 2.58919 0.26206 202 100 P - 5.17838 25.00242 5.17838 0.52412 202 100 P - 7.76757 25.51091 7.76757 0.78618 202 100 P - 10.35676 26.01939 10.35676 1.04824 202 100 P - 12.94595 26.52788 12.94595 1.31030 202 100 P - 12.94595 26.52788 12.94595 1.31030 202 100 P - 15.53514 27.03636 15.53514 1.57236 202 100 P - 18.12433 27.54485 18.12433 1.83442 202 100 P - 20.71352 28.05333 20.71352 2.09648 202 100 P - 23.30271 28.56182 23.30271 2.35854 202 100 P - 25.89190 29.07030 25.89190 2.62060 202 100 P - 25.89190 29.07030 25.89190 2.62060 202 100 P - 28.48109 29.57878 28.48109 2.88266 202 100 P - 28.73685 30.08727 31.07028 3.14472 110 92 - - 27.66994 30.59576 33.65947 3.40678 110 82 - - 26.65961 31.10424 36.24866 3.66884 110 74 - - 25.70999 31.61273 38.83785 3.93090 110 66 - - 25.70999 31.61273 38.78699 3.93090 110 66 - - 24.82436 32.12121 41.37279 4.19296 110 60 - - 24.00343 32.62969 43.95859 4.45502 110 55 - - 23.24750 33.13818 46.54439 4.71708 110 50 - - 22.55690 33.64666 49.13019 4.97914 110 46 - - 21.93193 34.15515 51.71598 5.24120 110 42 - - 21.93193 34.15515 48.40265 5.24120 110 45 - - 21.37221 34.66363 50.82279 5.50326 110 42 - - 20.87578 35.17212 53.24292 5.76532 110 39 - - 20.44054 35.68060 55.66305 6.02738 110 37 - - 20.06441 36.18909 58.08319 6.28944 110 35 - - 19.74529 36.69758 60.50332 6.55150 110 33 - - 19.74529 36.69758 55.87945 6.55150 110 35 - - 19.48074 37.20606 58.11463 6.81356 110 34 - - 19.26786 37.71455 60.34981 7.07562 110 32 - - 19.10389 38.22303 62.58499 7.33768 110 31 - - 18.98605 38.73152 64.82017 7.59974 110 29 - - 18.91161 39.24000 67.05534 7.86180 110 28 - - 18.00348 39.24000 88.84073 6.95368 110 20 - - 17.99563 39.73050 92.39493 7.23187 110 19 - - 18.02325 40.22100 95.94913 7.51006 110 19 - - 18.08396 40.71150 99.50333 7.78825 110 18 - - 18.17540 41.20200 103.05753 8.06644 110 18 - - 18.29520 41.69250 106.61173 8.34464 110 17 - - 18.29520 41.69250 99.21595 8.34464 110 18 - - 18.44099 42.18300 102.52359 8.62283 110 18 - - 18.61060 42.67350 105.83123 8.90102 110 18 - - 18.80197 43.16400 109.13888 9.17921 110 17 - - 19.01305 43.65450 112.44652 9.45740 110 17 - - 19.24177 44.14500 115.75416 9.73560 110 17 - - 19.24177 44.14500 113.22072 9.73560 110 17 - - 19.48615 44.63550 116.45597 10.01379 110 17 - - 19.74455 45.12600 119.69122 10.29198 110 16 - - 20.01544 45.61650 122.92647 10.57017 110 16 - - 20.29728 46.10700 126.16172 10.84836 110 16 - - 20.58854 46.59750 129.39697 11.12655 110 16 - - 20.58854 46.59750 128.10131 11.12655 110 16 - - 20.88779 47.08800 131.30416 11.40475 110 16 - - 21.19397 47.57850 134.50702 11.68294 110 16 - - 21.50608 48.06900 137.70987 11.96113 110 16 - - 21.82316 48.55950 140.91273 12.23932 110 15 - - 22.14421 49.05000 144.11558 12.51751 110 15 - - 22.14421 49.05000 143.35248 12.51751 110 15 - - 22.46836 49.54050 146.53837 12.79571 110 15 - - 22.79505 50.03100 149.72427 13.07390 110 15 - - 23.12376 50.52150 152.91016 13.35209 110 15 - - 23.45401 51.01200 156.09606 13.63028 110 15 - - 23.78528 51.50250 159.28195 13.90847 110 15 - - 23.78528 51.50250 158.79514 13.90847 110 15 - - 24.11716 51.99300 161.97130 14.18666 110 15 - - 24.44947 52.48350 165.14745 14.46486 110 15 - - 24.78208 52.97400 168.32361 14.74305 110 15 - - 25.11484 53.46450 171.49977 15.02124 110 15 - - 25.44762 53.95500 174.67593 15.29943 110 15 - + 0.00002 21.58200 0.00002 0.00000 202 100 P + 10.52485 22.08651 10.52485 0.26001 202 100 P + 21.04970 22.59103 21.04970 0.52003 202 100 P + 23.32106 23.09554 31.57456 0.78004 110 74 - + 22.77180 23.60006 42.09941 1.04005 110 54 - + 22.23475 24.10457 52.62426 1.30007 110 42 - + 22.20384 24.10457 22.20384 1.30007 202 100 P + 21.71564 24.60909 26.64460 1.56008 110 82 - + 21.21805 25.11360 31.08537 1.82010 110 68 - + 20.74505 25.61811 35.52614 2.08011 110 58 - + 20.29969 26.12263 39.96691 2.34012 110 51 - + 19.88505 26.62714 44.40767 2.60014 110 45 - + 19.88505 26.62714 32.22917 2.60014 110 62 - + 19.50363 27.13166 35.45208 2.86015 110 55 - + 19.15619 27.63617 38.67500 3.12016 110 50 - + 18.84321 28.14069 41.89792 3.38018 110 45 - + 18.56516 28.64520 45.12083 3.64019 110 41 - + 18.32250 29.14971 48.34375 3.90021 110 38 - + 18.32250 29.14971 40.50701 3.90021 110 45 - + 18.11525 29.65423 43.20747 4.16022 110 42 - + 17.94234 30.15874 45.90794 4.42023 110 39 - + 17.80266 30.66326 48.60841 4.68025 110 37 - + 17.69508 31.16777 51.30887 4.94026 110 34 - + 17.61850 31.67229 54.00934 5.20027 110 33 - + 17.61850 31.67229 48.19862 5.20027 110 37 - + 17.57156 32.17680 50.60855 5.46029 110 35 - + 17.55255 32.68131 53.01848 5.72030 110 33 - + 17.55980 33.18583 55.42841 5.98032 110 32 - + 17.59165 33.69034 57.83834 6.24033 110 30 - + 17.64644 34.19486 60.24827 6.50034 110 29 - + 17.64644 34.19486 55.62179 6.50034 110 32 - + 17.72242 34.69937 57.84666 6.76036 110 31 - + 17.81797 35.20389 60.07153 7.02037 110 30 - + 17.93155 35.70840 62.29640 7.28038 110 29 - + 18.06161 36.21291 64.52127 7.54040 110 28 - + 18.20663 36.71743 66.74614 7.80041 110 27 - + 18.20663 36.71743 62.89930 7.80041 110 29 - + 18.36511 37.22194 64.99594 8.06043 110 28 - + 18.53589 37.72646 67.09259 8.32044 110 28 - + 18.71797 38.23097 69.18923 8.58045 110 27 - + 18.91033 38.73549 71.28587 8.84047 110 27 - + 19.11196 39.24000 73.38252 9.10048 110 26 - + 18.06075 39.24000 104.85934 8.04927 110 17 - + 18.29028 39.73050 108.48339 8.32746 110 17 - + 18.52726 40.22100 112.10745 8.60566 110 17 - + 18.77113 40.71150 115.73151 8.88385 110 16 - + 19.02131 41.20200 119.35556 9.16204 110 16 - + 19.27721 41.69250 122.97962 9.44023 110 16 - + 19.27721 41.69250 114.03422 9.44023 110 17 - + 19.53829 42.18300 117.39467 9.71842 110 17 - + 19.80405 42.67350 120.75512 9.99661 110 16 - + 20.07405 43.16400 124.11556 10.27481 110 16 - + 20.34783 43.65450 127.47601 10.55300 110 16 - + 20.62493 44.14500 130.83646 10.83119 110 16 - + 20.62493 44.14500 127.37671 10.83119 110 16 - + 20.90493 44.63550 130.64830 11.10938 110 16 - + 21.18750 45.12600 133.91988 11.38757 110 16 - + 21.47232 45.61650 137.19147 11.66577 110 16 - + 21.75908 46.10700 140.46305 11.94396 110 15 - + 22.04749 46.59750 143.73464 12.22215 110 15 - + 22.04749 46.59750 141.83737 12.22215 110 16 - + 22.33724 47.08800 145.06577 12.50034 110 15 - + 22.62815 47.57850 148.29417 12.77853 110 15 - + 22.92004 48.06900 151.52257 13.05673 110 15 - + 23.21273 48.55950 154.75097 13.33492 110 15 - + 23.50604 49.05000 157.97937 13.61311 110 15 - + 23.50604 49.05000 156.79923 13.61311 110 15 - + 23.79981 49.54050 160.00352 13.89130 110 15 - + 24.09396 50.03100 163.20780 14.16949 110 15 - + 24.38841 50.52150 166.41208 14.44768 110 15 - + 24.68306 51.01200 169.61637 14.72588 110 15 - + 24.97786 51.50250 172.82065 15.00407 110 14 - + 24.97786 51.50250 172.03314 15.00407 110 15 - + 25.27273 51.99300 175.22282 15.28226 110 14 - + 25.56765 52.48350 178.41251 15.56045 110 14 - + 25.86261 52.97400 181.60219 15.83864 110 14 - + 26.15759 53.46450 184.79187 16.11684 110 14 - + 26.45257 53.95500 187.98155 16.39503 110 14 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7376,8 +7197,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 30.324 'Clay, sl san, moderate' - -4.00 31.409 'Sand, sl sil, moderate' + 4.00 33.380 'Clay, sl san, moderate' + -4.00 33.166 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7390,8 +7211,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 8.13 'Clay, sl san, moderate' - -4.00 16.00 'Sand, sl sil, moderate' + 4.00 8.94 'Clay, sl san, moderate' + -4.00 16.90 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -7401,7 +7222,7 @@ Layer name [EUROCODE BELGIUM SET 2] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -7419,28 +7240,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -7562,7 +7371,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=13 [UNIFORM LOAD DATA] [TABLE] @@ -7586,20 +7395,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 27.17 : Percentage mobilized resistance left - 12.30 : Percentage mobilized resistance right - 120.65 : Effective left - 90.04 : Effective right + 29.47 : Percentage mobilized resistance left + 11.49 : Percentage mobilized resistance right + 114.70 : Effective left + 84.10 : Effective right 117.77 : Water pressure left 148.38 : Water pressure right - 444.12 : Max effective resistance left + 389.22 : Max effective resistance left 731.79 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 35.41 : Vertical force left - 27.06 : Vertical force right + 33.78 : Vertical force left + 25.41 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -7608,179 +7417,167 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --27.06 : Active force -35.41 : Passive force --27.06 : Plugged active force -35.41 : Plugged passive force +-25.41 : Active force +33.78 : Passive force +-25.41 : Plugged active force +33.78 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 55.34 : Factor on resistance 55.34 : Plugged resistance 1.30 : Vertical balance load factor -8.35 : Resulting Vertical Force Unplugged -8.35 : Resulting Vertical Force Plugged +8.37 : Resulting Vertical Force Unplugged +8.37 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -1.99818 - 0.00000 0.00000 -1.96169 - 0.00000 0.00000 -1.92521 - 0.00000 0.00000 -1.88872 - 0.00000 0.00000 -1.85223 - 0.00000 0.00000 -1.81575 - 0.00000 0.00000 -1.81575 - 0.00000 0.00000 -1.77926 - 0.00000 0.00000 -1.74277 - 0.00000 0.00000 -1.70629 - 0.00000 0.00000 -1.66980 - 0.00000 0.00000 -1.63332 - 0.00000 0.00000 -1.63332 - 0.00013 0.01017 -1.61142 - 0.00070 0.02926 -1.58953 - 0.00198 0.05728 -1.56764 - 0.00423 0.09423 -1.54575 - 0.00772 0.14010 -1.52386 - 0.00772 0.14010 -1.52386 - 0.01366 0.25777 -1.50198 - 0.02328 0.38534 -1.48011 - 0.03688 0.52282 -1.45825 - 0.05475 0.67019 -1.43642 - 0.07719 0.82746 -1.41463 - 0.07719 0.82746 -1.41463 - 0.09117 0.91996 -1.40303 - 0.10665 1.01531 -1.39144 - 0.12367 1.11350 -1.37988 - 0.14229 1.21455 -1.36834 - 0.16255 1.31846 -1.35682 - 0.16255 1.31846 -1.35682 - 0.22656 1.57496 -1.32533 - 0.29974 1.73523 -1.29417 - 0.37785 1.79927 -1.26345 - 0.45666 1.76707 -1.23327 - 0.53194 1.63864 -1.20376 - 0.53200 1.63576 -1.20376 - 0.61288 1.39426 -1.16905 - 0.68063 1.14738 -1.13565 - 0.73538 0.90681 -1.10368 - 0.77745 0.67175 -1.07325 - 0.80711 0.44135 -1.04448 - 0.80719 0.43997 -1.04448 - 0.82533 0.24088 -1.01746 - 0.83307 0.05255 -0.99221 - 0.83131 -0.11439 -0.96871 - 0.82130 -0.25722 -0.94697 - 0.80427 -0.37778 -0.92699 - 0.80423 -0.37752 -0.92699 - 0.78134 -0.47770 -0.90873 - 0.75361 -0.55929 -0.89215 - 0.72198 -0.62404 -0.87716 - 0.68732 -0.67363 -0.86371 - 0.65037 -0.70965 -0.85172 - 0.65038 -0.70903 -0.85172 - 0.61187 -0.73301 -0.84113 - 0.57238 -0.74638 -0.83184 - 0.53242 -0.75050 -0.82378 - 0.49246 -0.74662 -0.81684 - 0.45290 -0.73591 -0.81096 - 0.45291 -0.73548 -0.81096 - 0.41410 -0.71901 -0.80605 - 0.37630 -0.69777 -0.80201 - 0.33974 -0.67265 -0.79879 - 0.30460 -0.64448 -0.79629 - 0.27103 -0.61399 -0.79444 - 0.27104 -0.61373 -0.79444 - 0.23916 -0.58157 -0.79316 - 0.20902 -0.54832 -0.79239 - 0.18068 -0.51450 -0.79208 - 0.15414 -0.48054 -0.79215 - 0.12942 -0.44684 -0.79255 - 0.12942 -0.44522 -0.79255 - 0.10835 -0.41475 -0.79316 - 0.08876 -0.38497 -0.79396 - 0.07061 -0.35605 -0.79491 - 0.05385 -0.32813 -0.79601 - 0.03843 -0.30134 -0.79721 - 0.03844 -0.29987 -0.79721 - 0.02360 -0.27285 -0.79854 - 0.01013 -0.24723 -0.79992 - -0.00206 -0.22305 -0.80132 - -0.01302 -0.20032 -0.80272 - -0.02285 -0.17903 -0.80410 - -0.02285 -0.17905 -0.80410 - -0.03161 -0.15916 -0.80542 - -0.03937 -0.14060 -0.80668 - -0.04620 -0.12332 -0.80786 - -0.05217 -0.10721 -0.80896 - -0.05734 -0.09218 -0.80994 - -0.05734 -0.09223 -0.80994 - -0.06175 -0.07816 -0.81081 - -0.06545 -0.06493 -0.81155 - -0.06849 -0.05240 -0.81217 - -0.07089 -0.04044 -0.81264 - -0.07269 -0.02889 -0.81298 - -0.07269 -0.02895 -0.81298 - -0.07390 -0.01768 -0.81316 - -0.07452 -0.00652 -0.81320 - -0.07457 0.00468 -0.81309 - -0.07404 0.01607 -0.81283 - -0.07290 0.02781 -0.81242 - -0.07290 0.02775 -0.81242 - -0.07115 0.03999 -0.81186 - -0.06874 0.05289 -0.81115 - -0.06565 0.06659 -0.81031 - -0.06182 0.08123 -0.80934 - -0.05721 0.09694 -0.80825 - -0.05721 0.09689 -0.80825 - -0.05176 0.11379 -0.80703 - -0.04539 0.13201 -0.80571 - -0.03805 0.15164 -0.80431 - -0.02965 0.17277 -0.80283 - -0.02011 0.19546 -0.80128 - -0.02011 0.19545 -0.80128 - -0.01097 0.17026 -0.79976 - -0.00306 0.14661 -0.79821 - 0.00371 0.12451 -0.79666 - 0.00942 0.10396 -0.79511 - 0.01413 0.08495 -0.79358 - 0.01413 0.08496 -0.79358 - 0.01794 0.06746 -0.79207 - 0.02090 0.05146 -0.79060 - 0.02311 0.03690 -0.78917 - 0.02462 0.02375 -0.78779 - 0.02550 0.01197 -0.78644 - 0.02550 0.01199 -0.78644 - 0.02584 0.00152 -0.78515 - 0.02568 -0.00767 -0.78390 - 0.02509 -0.01564 -0.78271 - 0.02413 -0.02244 -0.78156 - 0.02286 -0.02811 -0.78045 - 0.02286 -0.02810 -0.78045 - 0.02134 -0.03268 -0.77939 - 0.01961 -0.03623 -0.77837 - 0.01774 -0.03877 -0.77738 - 0.01575 -0.04034 -0.77643 - 0.01372 -0.04097 -0.77550 - 0.01372 -0.04096 -0.77550 - 0.01167 -0.04069 -0.77461 - 0.00966 -0.03952 -0.77373 - 0.00773 -0.03749 -0.77287 - 0.00593 -0.03461 -0.77203 - 0.00429 -0.03090 -0.77120 - 0.00429 -0.03089 -0.77120 - 0.00285 -0.02635 -0.77038 - 0.00167 -0.02099 -0.76956 - 0.00077 -0.01480 -0.76874 - 0.00020 -0.00781 -0.76793 - 0.00000 0.00000 -0.76712 + 0.00000 0.00000 -4.06371 + 0.00000 0.00000 -3.97711 + 0.00000 0.00000 -3.89051 + 0.00000 0.00000 -3.80391 + 0.00000 0.00000 -3.71731 + 0.00000 0.00000 -3.63071 + 0.00000 0.00000 -3.63071 + 0.00000 0.00000 -3.54411 + 0.00000 0.00000 -3.45751 + 0.00000 0.00000 -3.37091 + 0.00000 0.00000 -3.28431 + 0.00000 0.00000 -3.19771 + 0.00000 0.00000 -3.19771 + 0.00251 0.09004 -3.09377 + 0.01156 0.21780 -2.98984 + 0.02940 0.38329 -2.88596 + 0.05831 0.58651 -2.78219 + 0.10054 0.82746 -2.67857 + 0.10054 0.82746 -2.67857 + 0.16128 1.20392 -2.57516 + 0.24582 1.62089 -2.47218 + 0.35660 2.07838 -2.36993 + 0.49604 2.57640 -2.26871 + 0.66657 3.11493 -2.16883 + 0.66682 3.11128 -2.16883 + 0.84351 3.45196 -2.08151 + 1.02832 3.41564 -1.99602 + 1.20183 3.04109 -1.91269 + 1.35033 2.53276 -1.83188 + 1.47255 2.05564 -1.75395 + 1.47244 2.04604 -1.75395 + 1.57343 1.71608 -1.67922 + 1.65439 1.32448 -1.60784 + 1.71518 0.95945 -1.53996 + 1.75717 0.61909 -1.47569 + 1.78162 0.30142 -1.41518 + 1.78161 0.30206 -1.41518 + 1.79037 0.03010 -1.35851 + 1.78515 -0.22279 -1.30567 + 1.76691 -0.45861 -1.25660 + 1.73650 -0.67938 -1.21128 + 1.69468 -0.88709 -1.16967 + 1.69479 -0.88853 -1.16967 + 1.64272 -1.06222 -1.13170 + 1.58177 -1.21980 -1.09724 + 1.51310 -1.34996 -1.06614 + 1.43834 -1.44865 -1.03825 + 1.35907 -1.51923 -1.01343 + 1.35903 -1.51863 -1.01343 + 1.27671 -1.56429 -0.99152 + 1.19256 -1.58804 -0.97233 + 1.10766 -1.59267 -0.95569 + 1.02297 -1.58081 -0.94141 + 0.93929 -1.55489 -0.92931 + 0.93930 -1.55399 -0.92931 + 0.85738 -1.51623 -0.91921 + 0.77774 -1.46867 -0.91094 + 0.70086 -1.41318 -0.90434 + 0.62711 -1.35144 -0.89924 + 0.55679 -1.28497 -0.89547 + 0.55680 -1.28449 -0.89547 + 0.49542 -1.22039 -0.89305 + 0.43723 -1.15436 -0.89153 + 0.38231 -1.08723 -0.89080 + 0.33069 -1.01972 -0.89076 + 0.28237 -0.95247 -0.89132 + 0.28238 -0.95224 -0.89132 + 0.23485 -0.88197 -0.89245 + 0.19092 -0.81312 -0.89405 + 0.15052 -0.74614 -0.89605 + 0.11353 -0.68138 -0.89835 + 0.07984 -0.61914 -0.90089 + 0.07984 -0.61906 -0.90089 + 0.04931 -0.55952 -0.90358 + 0.02179 -0.50282 -0.90636 + -0.00287 -0.44903 -0.90920 + -0.02481 -0.39818 -0.91203 + -0.04420 -0.35024 -0.91481 + -0.04419 -0.35028 -0.91481 + -0.06117 -0.30518 -0.91750 + -0.07588 -0.26280 -0.92007 + -0.08846 -0.22300 -0.92248 + -0.09904 -0.18562 -0.92473 + -0.10774 -0.15046 -0.92677 + -0.10774 -0.15055 -0.92677 + -0.11467 -0.11739 -0.92859 + -0.11994 -0.08599 -0.93018 + -0.12361 -0.05612 -0.93153 + -0.12578 -0.02752 -0.93263 + -0.12648 0.00006 -0.93348 + -0.12648 -0.00004 -0.93348 + -0.12579 0.02680 -0.93407 + -0.12372 0.05315 -0.93441 + -0.12028 0.07929 -0.93450 + -0.11549 0.10546 -0.93435 + -0.10935 0.13190 -0.93397 + -0.10935 0.13180 -0.93397 + -0.10182 0.15876 -0.93336 + -0.09288 0.18644 -0.93255 + -0.08247 0.21507 -0.93156 + -0.07056 0.24481 -0.93040 + -0.05707 0.27583 -0.92910 + -0.05707 0.27578 -0.92910 + -0.04404 0.24596 -0.92773 + -0.03246 0.21754 -0.92628 + -0.02226 0.19061 -0.92477 + -0.01337 0.16521 -0.92322 + -0.00571 0.14137 -0.92164 + -0.00571 0.14137 -0.92164 + 0.00079 0.11912 -0.92005 + 0.00623 0.09845 -0.91847 + 0.01067 0.07937 -0.91689 + 0.01419 0.06185 -0.91533 + 0.01688 0.04588 -0.91380 + 0.01688 0.04589 -0.91380 + 0.01880 0.03143 -0.91230 + 0.02005 0.01845 -0.91084 + 0.02067 0.00692 -0.90942 + 0.02076 -0.00321 -0.90803 + 0.02038 -0.01197 -0.90668 + 0.02038 -0.01196 -0.90668 + 0.01959 -0.01939 -0.90537 + 0.01846 -0.02553 -0.90410 + 0.01705 -0.03042 -0.90286 + 0.01544 -0.03408 -0.90165 + 0.01367 -0.03655 -0.90048 + 0.01367 -0.03654 -0.90048 + 0.01180 -0.03785 -0.89932 + 0.00990 -0.03801 -0.89819 + 0.00802 -0.03706 -0.89708 + 0.00621 -0.03500 -0.89599 + 0.00454 -0.03185 -0.89490 + 0.00454 -0.03185 -0.89490 + 0.00305 -0.02762 -0.89383 + 0.00179 -0.02231 -0.89276 + 0.00083 -0.01594 -0.89169 + 0.00022 -0.00850 -0.89062 + 0.00000 0.00000 -0.88956 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7842,7 +7639,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -7854,9 +7651,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 61.94600 0.00000 8.72642 0.00000 0.00000 62.18200 0.00000 20.31968 0.00000 - -0.15000 62.28500 35.85900 28.36955 0.02974 -0.30000 62.36100 36.09000 36.88832 0.38601 - -0.38000 62.39600 36.19400 41.62338 0.61017 -0.60000 62.47600 36.43900 55.33248 1.34913 -0.86667 62.55700 36.68300 73.30162 2.48589 -1.13333 62.62500 36.89000 92.75226 3.88700 @@ -7882,7 +7677,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -7895,10 +7690,8 @@ Lambda passive [DATA] 0.37500 7.75000 34.90568 0.00000 0.68545 0.00000 4.50396 0.12500 12.25000 46.37304 0.00000 0.68545 0.00000 3.78555 - -0.07500 15.11425 53.66580 0.19825 0.68545 0.01312 3.55068 - -0.22500 16.34275 56.79177 2.37518 0.68545 0.14534 3.47504 - -0.34000 17.28460 59.18833 2.80199 0.68545 0.16211 3.42434 - -0.49000 18.51310 62.31409 3.35891 0.68545 0.18143 3.36595 + -0.15000 15.72850 55.22878 1.28671 0.68545 0.08181 3.51138 + -0.45000 18.18550 61.48055 3.21040 0.68545 0.17654 3.38075 -0.73333 20.50600 67.38427 4.26284 0.68545 0.20788 3.28608 -1.00000 22.69000 72.93991 5.25417 0.68545 0.23156 3.21463 -1.26667 24.87400 78.49486 6.24619 0.68545 0.25111 3.15570 @@ -7923,7 +7716,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -7946,30 +7739,18 @@ Status character 0.00000 0.00000 48.07654 8.70521 1 0 A 0.00000 0.00000 51.48354 9.32211 1 0 A 0.00000 0.00000 54.89054 9.93901 1 0 A - 0.19019 0.00000 51.48480 9.93901 1 0 A - 0.19341 0.29430 52.35720 10.10743 1 0 A - 0.19664 0.58860 53.22960 10.27584 1 0 A - 0.19986 0.88290 54.10200 10.44426 1 0 A - 0.20308 1.17720 54.97441 10.61267 1 0 A - 0.20631 1.47150 55.84681 10.78109 1 0 A - 2.28590 1.47150 54.65722 10.78109 1 0 A - 2.32161 1.76580 55.51104 10.94950 1 0 A - 2.35732 2.06010 56.36486 11.11792 1 0 A - 2.39303 2.35440 57.21867 11.28633 1 0 A - 2.42874 2.64870 58.07249 11.45475 1 0 A - 2.46445 2.94300 58.92631 11.62316 1 0 A - 2.74889 2.94300 58.06652 11.62316 1 0 A - 2.77013 3.09996 58.51524 11.71299 1 0 A - 2.79137 3.25692 58.96397 11.80281 1 0 A - 2.81262 3.41388 59.41269 11.89263 1 0 A - 2.83386 3.57084 59.86142 11.98245 1 0 A - 2.85510 3.72780 60.31014 12.07227 1 0 A - 3.19545 3.72780 59.28171 12.07227 1 0 A - 3.26083 4.15944 60.49466 12.31928 1 0 A - 3.32622 4.59108 61.70761 12.56629 1 0 A - 3.39160 5.02272 62.92056 12.81330 1 0 A - 3.45698 5.45436 64.13352 13.06030 1 0 A - 3.52236 5.88600 65.34647 13.30731 1 0 A + 1.18621 0.00000 50.91505 9.93901 1 0 A + 1.22641 0.58860 52.64054 10.27584 1 0 A + 1.26661 1.17720 54.36604 10.61267 1 0 A + 1.30681 1.76580 56.09153 10.94950 1 0 A + 1.34701 2.35440 57.81703 11.28633 1 0 A + 1.38721 2.94300 59.54252 11.62316 1 0 A + 2.99352 2.94300 57.32731 11.62316 1 0 A + 3.08027 3.53160 58.98860 11.95999 1 0 A + 3.16702 4.12020 60.64990 12.29682 1 0 A + 3.25377 4.70880 62.31120 12.63365 1 0 A + 3.34052 5.29740 63.97250 12.97048 1 0 A + 3.42727 5.88600 65.63380 13.30731 1 0 A 4.03583 5.88600 63.79587 13.30731 1 0 A 4.12663 6.40920 65.23123 13.60672 1 0 A 4.21744 6.93240 66.66659 13.90612 1 0 A @@ -7978,112 +7759,112 @@ Status character 4.48985 8.50200 70.97266 14.80433 1 0 A 5.00130 8.50200 69.42954 14.80433 1 0 A 5.10245 9.02520 70.83368 15.10374 1 0 A - 5.48106 9.54840 72.23783 15.40314 110 0 - - 6.01544 10.07160 73.64198 15.70255 110 0 - - 6.53224 10.59480 75.04613 16.00195 110 0 - - 7.03150 11.11800 76.45028 16.30136 110 0 - - 7.03150 11.11800 75.04883 16.30136 110 0 - - 7.51344 11.64120 76.42724 16.60076 110 0 - - 7.97871 12.16440 77.80565 16.90016 110 0 - - 8.42798 12.68760 79.18406 17.19957 110 0 - - 8.86191 13.21080 80.56247 17.49897 110 0 - - 9.28116 13.73400 81.94088 17.79838 110 0 - - 9.28116 13.73400 80.65716 17.79838 110 0 - - 9.68649 14.25720 82.01397 18.09778 110 0 - - 10.07876 14.78040 83.37079 18.39719 110 0 - - 10.45884 15.30360 84.72760 18.69659 110 0 - - 10.82756 15.82680 86.08442 18.99599 110 0 - - 11.18577 16.35000 87.44123 19.29540 110 0 - - 11.18577 16.35000 86.25691 19.29540 110 0 - - 11.53433 16.87320 87.59535 19.59480 110 0 - - 11.87406 17.39640 88.93378 19.89421 110 0 - - 12.20574 17.91960 90.27222 20.19361 110 0 - - 12.53015 18.44280 91.61066 20.49302 110 0 - - 12.84805 18.96600 92.94910 20.79242 110 0 - - 12.84805 18.96600 91.84983 20.79242 110 0 - - 13.16022 19.48920 93.17244 21.09182 110 0 - - 13.46729 20.01240 94.49505 21.39123 110 0 - - 13.76986 20.53560 95.81766 21.69063 110 0 - - 14.06855 21.05880 97.14027 21.99004 110 0 - - 14.36395 21.58200 98.46288 22.28944 110 0 - - 14.36395 21.58200 97.47630 22.28944 110 0 - - 14.63292 22.06269 98.67927 22.56452 110 0 - - 14.90003 22.54338 99.88224 22.83960 110 0 - - 15.16554 23.02407 101.08521 23.11467 110 0 - - 15.42969 23.50476 102.28819 23.38975 110 0 - - 15.69271 23.98545 103.49116 23.66483 110 0 - - 15.69271 23.98545 102.57940 23.66483 110 0 - - 15.97038 24.49394 103.84072 23.95581 110 0 - - 16.24758 25.00242 105.10204 24.24680 110 0 - - 16.52455 25.51091 106.36336 24.53778 110 0 - - 16.80153 26.01939 107.62468 24.82876 110 0 - - 17.07879 26.52788 108.88600 25.11975 110 0 - - 17.07879 26.52788 108.00119 25.11975 110 0 - - 17.35653 27.03636 109.25226 25.41073 110 0 - - 17.63490 27.54485 110.50333 25.70171 110 0 - - 17.91406 28.05333 111.75440 25.99270 110 0 - - 18.19413 28.56182 113.00547 26.28368 110 0 - - 18.47525 29.07030 114.25654 26.57466 110 0 - - 18.47525 29.07030 113.42001 26.57466 110 0 - - 18.75755 29.57878 114.66192 26.86565 110 0 - - 19.04109 30.08727 115.90383 27.15663 110 0 - - 19.32594 30.59576 117.14574 27.44761 110 0 - - 19.61215 31.10424 118.38765 27.73860 110 0 - - 19.89980 31.61273 119.62956 28.02958 110 0 - - 19.89980 31.61273 118.83629 28.02958 110 0 - - 20.18893 32.12121 120.06996 28.32057 110 0 - - 20.47955 32.62969 121.30364 28.61155 110 0 - - 20.77165 33.13818 122.53731 28.90253 110 0 - - 21.06525 33.64666 123.77099 29.19352 110 0 - - 21.36035 34.15515 125.00466 29.48450 110 0 - - 21.36035 34.15515 124.25038 29.48450 110 0 - - 21.65692 34.66363 125.47661 29.77548 110 0 - - 21.95494 35.17212 126.70285 30.06647 110 0 - - 22.25432 35.68060 127.92908 30.35745 110 0 - - 22.55502 36.18909 129.15531 30.64843 110 0 - - 22.85696 36.69758 130.38154 30.93942 110 0 - - 22.85696 36.69758 129.66259 30.93942 110 0 - - 23.16008 37.20606 130.88206 31.23040 110 0 - - 23.46424 37.71455 132.10153 31.52138 110 0 - - 23.76929 38.22303 133.32100 31.81237 110 0 - - 24.07510 38.73152 134.54047 32.10335 110 0 - - 24.38150 39.24000 135.75994 32.39433 110 0 - - 21.40813 39.24000 199.74291 29.42096 110 0 - - 21.74057 39.73050 201.89630 29.73814 110 0 - - 22.07321 40.22100 204.04968 30.05532 110 0 - - 22.40594 40.71150 206.20307 30.37250 110 0 - - 22.73861 41.20200 208.35645 30.68968 110 0 - - 23.07110 41.69250 210.50984 31.00686 110 0 - - 23.07110 41.69250 206.07602 31.00686 110 0 - - 23.40331 42.18300 208.18406 31.32404 110 0 - - 23.73518 42.67350 210.29209 31.64122 110 0 - - 24.06667 43.16400 212.40012 31.95841 110 0 - - 24.39774 43.65450 214.50815 32.27559 110 0 - - 24.72834 44.14500 216.61618 32.59277 110 0 - - 24.72834 44.14500 213.90794 32.59277 110 0 - - 25.05846 44.63550 215.98961 32.90995 110 0 - - 25.38809 45.12600 218.07129 33.22713 110 0 - - 25.71724 45.61650 220.15296 33.54431 110 0 - - 26.04593 46.10700 222.23464 33.86149 110 0 - - 26.37417 46.59750 224.31631 34.17867 110 0 - - 26.37417 46.59750 222.47631 34.17867 110 0 - - 26.70198 47.08800 224.54091 34.49585 110 0 - - 27.02938 47.57850 226.60551 34.81303 110 0 - - 27.35642 48.06900 228.67011 35.13022 110 0 - - 27.68313 48.55950 230.73471 35.44740 110 0 - - 28.00954 49.05000 232.79931 35.76458 110 0 - - 28.00954 49.05000 231.46905 35.76458 110 0 - - 28.33569 49.54050 233.52185 36.08176 110 0 - - 28.66163 50.03100 235.57466 36.39894 110 0 - - 28.98738 50.52150 237.62746 36.71612 110 0 - - 29.31299 51.01200 239.68026 37.03330 110 0 - - 29.63848 51.50250 241.73306 37.35048 110 0 - - 29.63848 51.50250 240.73052 37.35048 110 0 - - 29.96390 51.99300 242.77481 37.66766 110 0 - - 30.28927 52.48350 244.81910 37.98485 110 0 - - 30.61460 52.97400 246.86338 38.30203 110 0 - - 30.93991 53.46450 248.90767 38.61921 110 0 - - 31.26521 53.95500 250.95196 38.93639 110 0 - + 5.20360 9.54840 72.23783 15.40314 1 0 A + 5.30474 10.07160 73.64198 15.70255 1 0 A + 5.40589 10.59480 75.04613 16.00195 1 0 A + 5.50704 11.11800 76.45028 16.30136 1 0 A + 5.97198 11.11800 75.04883 16.30136 1 0 A + 6.08166 11.64120 76.42724 16.60076 1 0 A + 6.19135 12.16440 77.80565 16.90016 1 0 A + 6.30104 12.68760 79.18406 17.19957 1 0 A + 6.41072 13.21080 80.56247 17.49897 1 0 A + 6.52041 13.73400 81.94088 17.79838 1 0 A + 6.94668 13.73400 80.65716 17.79838 1 0 A + 7.06354 14.25720 82.01397 18.09778 1 0 A + 7.42479 14.78040 83.37079 18.39719 110 0 - + 8.03524 15.30360 84.72760 18.69659 110 0 - + 8.61353 15.82680 86.08442 18.99599 110 0 - + 9.16112 16.35000 87.44123 19.29540 110 0 - + 9.16112 16.35000 86.25691 19.29540 110 0 - + 9.67962 16.87320 87.59535 19.59480 110 0 - + 10.17089 17.39640 88.93378 19.89421 110 0 - + 10.63673 17.91960 90.27222 20.19361 110 0 - + 11.07894 18.44280 91.61066 20.49302 110 0 - + 11.49932 18.96600 92.94910 20.79242 110 0 - + 11.49932 18.96600 91.84983 20.79242 110 0 - + 11.89969 19.48920 93.17244 21.09182 110 0 - + 12.28179 20.01240 94.49505 21.39123 110 0 - + 12.64724 20.53560 95.81766 21.69063 110 0 - + 12.99767 21.05880 97.14027 21.99004 110 0 - + 13.33473 21.58200 98.46288 22.28944 110 0 - + 13.33473 21.58200 97.47630 22.28944 110 0 - + 13.63398 22.06269 98.67927 22.56452 110 0 - + 13.92430 22.54338 99.88224 22.83960 110 0 - + 14.20670 23.02407 101.08521 23.11467 110 0 - + 14.48216 23.50476 102.28819 23.38975 110 0 - + 14.75167 23.98545 103.49116 23.66483 110 0 - + 14.75167 23.98545 102.57940 23.66483 110 0 - + 15.03133 24.49394 103.84072 23.95581 110 0 - + 15.30627 25.00242 105.10204 24.24680 110 0 - + 15.57729 25.51091 106.36336 24.53778 110 0 - + 15.84522 26.01939 107.62468 24.82876 110 0 - + 16.11086 26.52788 108.88600 25.11975 110 0 - + 16.11086 26.52788 108.00119 25.11975 110 0 - + 16.37497 27.03636 109.25226 25.41073 110 0 - + 16.63810 27.54485 110.50333 25.70171 110 0 - + 16.90073 28.05333 111.75440 25.99270 110 0 - + 17.16337 28.56182 113.00547 26.28368 110 0 - + 17.42652 29.07030 114.25654 26.57466 110 0 - + 17.42652 29.07030 113.42001 26.57466 110 0 - + 17.69061 29.57878 114.66192 26.86565 110 0 - + 17.95595 30.08727 115.90383 27.15663 110 0 - + 18.22277 30.59576 117.14574 27.44761 110 0 - + 18.49134 31.10424 118.38765 27.73860 110 0 - + 18.76190 31.61273 119.62956 28.02958 110 0 - + 18.76190 31.61273 118.83629 28.02958 110 0 - + 19.03469 32.12121 120.06996 28.32057 110 0 - + 19.30979 32.62969 121.30364 28.61155 110 0 - + 19.58727 33.13818 122.53731 28.90253 110 0 - + 19.86722 33.64666 123.77099 29.19352 110 0 - + 20.14970 34.15515 125.00466 29.48450 110 0 - + 20.14970 34.15515 124.25038 29.48450 110 0 - + 20.43477 34.66363 125.47661 29.77548 110 0 - + 20.72238 35.17212 126.70285 30.06647 110 0 - + 21.01245 35.68060 127.92908 30.35745 110 0 - + 21.30493 36.18909 129.15531 30.64843 110 0 - + 21.59973 36.69758 130.38154 30.93942 110 0 - + 21.59973 36.69758 129.66259 30.93942 110 0 - + 21.89677 37.20606 130.88206 31.23040 110 0 - + 22.19587 37.71455 132.10153 31.52138 110 0 - + 22.49681 38.22303 133.32100 31.81237 110 0 - + 22.79938 38.73152 134.54047 32.10335 110 0 - + 23.10338 39.24000 135.75994 32.39433 110 0 - + 20.13000 39.24000 199.74291 29.42096 110 0 - + 20.46083 39.73050 201.89630 29.73814 110 0 - + 20.79249 40.22100 204.04968 30.05532 110 0 - + 21.12477 40.71150 206.20307 30.37250 110 0 - + 21.45750 41.20200 208.35645 30.68968 110 0 - + 21.79048 41.69250 210.50984 31.00686 110 0 - + 21.79048 41.69250 206.07602 31.00686 110 0 - + 22.12353 42.18300 208.18406 31.32404 110 0 - + 22.45657 42.67350 210.29209 31.64122 110 0 - + 22.78951 43.16400 212.40012 31.95841 110 0 - + 23.12227 43.65450 214.50815 32.27559 110 0 - + 23.45475 44.14500 216.61618 32.59277 110 0 - + 23.45475 44.14500 213.90794 32.59277 110 0 - + 23.78691 44.63550 215.98961 32.90995 110 0 - + 24.11871 45.12600 218.07129 33.22713 110 0 - + 24.45014 45.61650 220.15296 33.54431 110 0 - + 24.78120 46.10700 222.23464 33.86149 110 0 - + 25.11186 46.59750 224.31631 34.17867 110 0 - + 25.11186 46.59750 222.47631 34.17867 110 0 - + 25.44214 47.08800 224.54091 34.49585 110 0 - + 25.77204 47.57850 226.60551 34.81303 110 0 - + 26.10161 48.06900 228.67011 35.13022 110 0 - + 26.43086 48.55950 230.73471 35.44740 110 0 - + 26.75982 49.05000 232.79931 35.76458 110 0 - + 26.75982 49.05000 231.46905 35.76458 110 0 - + 27.08852 49.54050 233.52185 36.08176 110 0 - + 27.41700 50.03100 235.57466 36.39894 110 0 - + 27.74529 50.52150 237.62746 36.71612 110 0 - + 28.07344 51.01200 239.68026 37.03330 110 0 - + 28.40146 51.50250 241.73306 37.35048 110 0 - + 28.40146 51.50250 240.73052 37.35048 110 0 - + 28.72941 51.99300 242.77481 37.66766 110 0 - + 29.05729 52.48350 244.81910 37.98485 110 0 - + 29.38514 52.97400 246.86338 38.30203 110 0 - + 29.71297 53.46450 248.90767 38.61921 110 0 - + 30.04080 53.95500 250.95196 38.93639 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8096,8 +7877,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 50.502 'Clay, sl san, moderate' - -4.00 39.540 'Sand, sl sil, moderate' + 4.00 46.452 'Clay, sl san, moderate' + -4.00 37.651 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8110,8 +7891,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -10.94 'Clay, sl san, moderate' - -4.00 -16.12 'Sand, sl sil, moderate' + 4.00 -10.06 'Clay, sl san, moderate' + -4.00 -15.35 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -8126,7 +7907,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 -0.38 + 0.00 -0.60 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Soil Profile @@ -8174,7 +7955,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=21 +DataCount=20 [COLUMN INDICATION] Slide plane position Theta min @@ -8183,33 +7964,32 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.38000 0.00000 0.00000 0.00000 0.00000 - -0.60000 62.70800 37.13900 1.47629 0.07577 - -0.86667 62.55400 36.67400 6.33666 0.21274 - -1.13333 62.42900 36.29400 13.75950 0.25674 - -1.40000 62.34800 36.04900 23.74147 0.20908 - -1.66667 62.33800 36.02000 35.66806 0.27225 - -1.93333 62.37500 36.13300 49.07760 0.59833 - -2.20000 62.42800 36.29200 63.96981 1.18761 - -2.44500 62.48000 36.45000 78.95858 1.96129 - -2.70417 62.53600 36.61800 96.17561 3.02212 - -2.96333 62.58900 36.78200 114.79220 4.33241 - -3.22250 62.64100 36.93800 134.80815 5.89239 - -3.48167 62.69000 37.08500 156.22325 7.70225 - -3.74083 62.73600 37.22400 179.03735 9.76214 - -4.00000 62.77900 37.35500 203.25031 12.07221 - -4.25000 64.50100 37.62900 238.26170 15.06922 - -4.50000 65.57500 37.87600 275.01198 18.30008 - -4.75000 66.33600 38.09700 313.85004 21.76467 - -5.00000 66.90900 38.29600 354.93067 25.46285 - -5.25000 67.35800 38.47400 398.33813 29.39446 - -5.50000 67.72000 38.63400 444.12370 33.55938 + -0.60000 0.00000 0.00000 0.00000 0.00000 + -0.86667 60.66200 0.00000 4.77284 0.00000 + -1.13333 60.97400 0.00000 11.03712 0.00000 + -1.40000 61.23200 0.00000 18.78988 0.00000 + -1.66667 61.44900 0.00000 28.02909 0.00000 + -1.93333 61.63400 0.00000 38.75331 0.00000 + -2.20000 61.79400 0.00000 50.96148 0.00000 + -2.44500 61.92300 0.00000 63.48508 0.00000 + -2.70417 62.04400 0.00000 78.09494 0.00000 + -2.96333 62.15200 0.00000 94.10477 0.00000 + -3.22250 62.24800 0.00000 111.51423 0.00000 + -3.48167 62.33500 36.00900 130.32303 0.93811 + -3.74083 62.41300 36.24700 150.53096 2.52764 + -4.00000 62.48500 36.46400 172.13783 4.36727 + -4.25000 64.29000 36.81500 203.12335 6.99580 + -4.50000 65.41600 37.13500 235.89057 9.85873 + -4.75000 66.21300 37.42400 270.76840 12.95597 + -5.00000 66.81400 37.68500 307.90214 16.28739 + -5.25000 67.28500 37.91900 347.37113 19.85282 + -5.50000 67.66400 38.13000 389.22390 23.65207 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=20 +DataCount=19 [COLUMN INDICATION] Position Vertical stress @@ -8220,32 +8000,31 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -0.49000 1.98000 6.71043 0.34441 0.68545 0.17394 3.38911 - -0.73333 5.05200 18.22635 0.51365 0.68545 0.10167 3.60775 - -1.00000 7.23600 27.83566 0.16499 0.68545 0.02280 3.84683 - -1.26667 9.42000 37.43241 -0.17872 0.68545 0.00000 3.97372 - -1.53333 11.60400 44.72472 0.23689 0.68545 0.02041 3.85425 - -1.80000 13.78800 50.28577 1.22280 0.68545 0.08869 3.64707 - -2.06667 15.97200 55.84576 2.20978 0.68545 0.13835 3.49648 - -2.32250 18.06727 61.17865 3.15789 0.68545 0.17479 3.38616 - -2.57458 20.13184 66.43227 4.09321 0.68545 0.20332 3.29986 - -2.83375 22.25441 71.83253 5.05579 0.68545 0.22718 3.22779 - -3.09292 24.37699 77.23194 6.01922 0.68545 0.24692 3.16823 - -3.35208 26.49956 82.63062 6.98338 0.68545 0.26353 3.11819 - -3.61125 28.62214 88.02868 7.94815 0.68545 0.27769 3.07555 - -3.87042 30.74471 93.42622 8.91346 0.68545 0.28992 3.03877 - -4.12500 33.07975 140.04556 11.98801 0.62253 0.36240 4.23357 - -4.37500 35.62725 147.00113 12.92346 0.62253 0.36274 4.12609 - -4.62500 38.17475 155.35223 13.85837 0.62253 0.36302 4.06950 - -4.87500 40.72225 164.32254 14.79270 0.62253 0.36326 4.03520 - -5.12500 43.26975 173.62983 15.72646 0.62253 0.36345 4.01273 - -5.37500 45.81725 183.14229 16.65966 0.62253 0.36361 3.99723 + -0.73333 1.09200 17.89814 0.00000 0.68545 0.00000 16.39024 + -1.00000 3.27600 23.49106 0.00000 0.68545 0.00000 7.17065 + -1.26667 5.46000 29.07285 0.00000 0.68545 0.00000 5.32470 + -1.53333 7.64400 34.64703 0.00000 0.68545 0.00000 4.53258 + -1.80000 9.82800 40.21581 0.00000 0.68545 0.00000 4.09196 + -2.06667 12.01200 45.78067 0.00000 0.68545 0.00000 3.81124 + -2.32250 14.10728 51.11670 0.00000 0.68545 0.00000 3.62343 + -2.57458 16.17184 56.37246 0.00000 0.68545 0.00000 3.48584 + -2.83375 18.29441 61.77427 0.00000 0.68545 0.00000 3.37667 + -3.09292 20.41699 67.17475 0.00000 0.68545 0.00000 3.29014 + -3.35208 22.53956 72.57416 3.61972 0.68545 0.16059 3.21986 + -3.61125 24.66214 77.97271 6.13324 0.68545 0.24869 3.16164 + -3.87042 26.78471 83.37056 7.09823 0.68545 0.26501 3.11262 + -4.12500 29.11975 123.94207 10.51412 0.62253 0.36107 4.25629 + -4.37500 31.66725 131.06890 11.45173 0.62253 0.36163 4.13894 + -4.62500 34.21475 139.51130 12.38898 0.62253 0.36209 4.07752 + -4.87500 36.76225 148.53499 13.32567 0.62253 0.36248 4.04042 + -5.12500 39.30975 157.87596 14.26170 0.62253 0.36280 4.01620 + -5.37500 41.85725 167.41108 15.19703 0.62253 0.36307 3.99957 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -8280,132 +8059,120 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P - 2.68417 0.00000 2.68417 0.54288 202 100 P - 5.36834 0.00000 5.36834 1.08575 202 100 P - 8.05252 0.00000 8.05252 1.62863 202 100 P - 10.73669 0.00000 10.73669 2.17150 202 100 P - 13.42086 0.00000 13.42086 2.71438 202 100 P - 14.28669 0.00000 14.28669 2.71438 202 100 P - 14.70432 0.52320 15.86255 3.01378 110 93 - - 14.66972 1.04640 17.43842 3.31319 110 84 - - 14.64939 1.56960 19.01428 3.61259 110 77 - - 14.64450 2.09280 20.59015 3.91200 110 71 - - 14.65622 2.61600 22.16601 4.21140 110 66 - - 14.65622 2.61600 23.63492 4.21140 110 62 - - 14.68545 3.13920 25.31522 4.51080 110 58 - - 14.73229 3.66240 26.99552 4.81021 110 55 - - 14.79672 4.18560 28.67581 5.10961 110 52 - - 14.87872 4.70880 30.35611 5.40902 110 49 - - 14.97827 5.23200 32.03640 5.70842 110 47 - - 14.97827 5.23200 33.09311 5.70842 110 45 - - 15.09514 5.75520 34.82883 6.00783 110 43 - - 15.22868 6.27840 36.56455 6.30723 110 42 - - 15.37822 6.80160 38.30027 6.60663 110 40 - - 15.54311 7.32480 40.03599 6.90604 110 39 - - 15.72266 7.84800 41.77170 7.20544 110 38 - - 15.72266 7.84800 40.51587 7.20544 110 39 - - 15.91614 8.37120 42.19941 7.50485 110 38 - - 16.12267 8.89440 43.88295 7.80425 110 37 - - 16.34141 9.41760 45.56648 8.10366 110 36 - - 16.57150 9.94080 47.25002 8.40306 110 35 - - 16.81210 10.46400 48.93356 8.70246 110 34 - - 16.81210 10.46400 46.30317 8.70246 110 36 - - 17.06234 10.98720 47.89621 9.00187 110 36 - - 17.32142 11.51040 49.48925 9.30127 110 35 - - 17.58855 12.03360 51.08229 9.60068 110 34 - - 17.86295 12.55680 52.67533 9.90008 110 34 - - 18.14385 13.08000 54.26837 10.19949 110 33 - - 18.14385 13.08000 52.02761 10.19949 110 35 - - 18.43049 13.60320 53.55487 10.49889 110 34 - - 18.72223 14.12640 55.08213 10.79829 110 34 - - 19.01847 14.64960 56.60939 11.09770 110 34 - - 19.31859 15.17280 58.13666 11.39710 110 33 - - 19.62200 15.69600 59.66392 11.69651 110 33 - - 19.62200 15.69600 57.78140 11.69651 110 34 - - 19.90319 16.17669 59.14030 11.97158 110 34 - - 20.18623 16.65738 60.49920 12.24666 110 33 - - 20.47087 17.13807 61.85810 12.52174 110 33 - - 20.75688 17.61876 63.21700 12.79682 110 33 - - 21.04401 18.09945 64.57590 13.07190 110 33 - - 21.04401 18.09945 62.93017 13.07190 110 33 - - 21.34831 18.60794 64.33101 13.36288 110 33 - - 21.65308 19.11642 65.73185 13.65386 110 33 - - 21.95808 19.62491 67.13269 13.94485 110 33 - - 22.26306 20.13339 68.53353 14.23583 110 32 - - 22.56777 20.64188 69.93437 14.52681 110 32 - - 22.56777 20.64188 68.40692 14.52681 110 33 - - 22.87200 21.15036 69.77716 14.81780 110 33 - - 23.17559 21.65884 71.14741 15.10878 110 33 - - 23.47840 22.16733 72.51765 15.39976 110 32 - - 23.78030 22.67582 73.88789 15.69075 110 32 - - 24.08114 23.18430 75.25814 15.98173 110 32 - - 24.08114 23.18430 73.86953 15.98173 110 33 - - 24.38081 23.69279 75.21449 16.27271 110 32 - - 24.67924 24.20127 76.55946 16.56370 110 32 - - 24.97636 24.70976 77.90442 16.85468 110 32 - - 25.27211 25.21824 79.24938 17.14566 110 32 - - 25.56643 25.72673 80.59434 17.43665 110 32 - - 25.56643 25.72673 79.32132 17.43665 110 32 - - 25.85927 26.23521 80.64504 17.72763 110 32 - - 26.15062 26.74369 81.96876 18.01862 110 32 - - 26.44048 27.25218 83.29248 18.30960 110 32 - - 26.72884 27.76066 84.61620 18.60058 110 32 - - 27.01572 28.26915 85.93991 18.89157 110 31 - - 27.01572 28.26915 84.76464 18.89157 110 32 - - 27.30111 28.77764 86.07026 19.18255 110 32 - - 27.58506 29.28612 87.37587 19.47353 110 32 - - 27.86764 29.79460 88.68149 19.76452 110 31 - - 28.14891 30.30309 89.98710 20.05550 110 31 - - 28.42894 30.81158 91.29272 20.34648 110 31 - - 28.42894 30.81158 90.20120 20.34648 110 32 - - 28.70779 31.32006 91.49121 20.63747 110 31 - - 28.98560 31.82855 92.78121 20.92845 110 31 - - 29.26251 32.33703 94.07122 21.21943 110 31 - - 29.53867 32.84551 95.36122 21.51042 110 31 - - 29.81423 33.35400 96.65123 21.80140 110 31 - - 27.81315 33.35400 134.65304 19.80032 110 21 - - 28.11507 33.84450 136.81005 20.11750 110 21 - - 28.41678 34.33500 138.96705 20.43468 110 20 - - 28.71842 34.82550 141.12406 20.75186 110 20 - - 29.02011 35.31600 143.28107 21.06904 110 20 - - 29.32198 35.80650 145.43807 21.38622 110 20 - - 29.32198 35.80650 141.74552 21.38622 110 21 - - 29.62414 36.29700 143.84777 21.70340 110 21 - - 29.92663 36.78750 145.95001 22.02058 110 21 - - 30.22950 37.27800 148.05225 22.33776 110 20 - - 30.53280 37.76850 150.15449 22.65495 110 20 - - 30.83655 38.25900 152.25673 22.97213 110 20 - - 30.83655 38.25900 150.16870 22.97213 110 21 - - 31.14080 38.74950 152.24211 23.28931 110 20 - - 31.44553 39.24000 154.31552 23.60649 110 20 - - 31.75074 39.73050 156.38894 23.92367 110 20 - - 32.05641 40.22100 158.46235 24.24085 110 20 - - 32.36253 40.71150 160.53576 24.55803 110 20 - - 32.36253 40.71150 159.18270 24.55803 110 20 - - 32.66909 41.20200 161.23864 24.87521 110 20 - - 32.97605 41.69250 163.29458 25.19239 110 20 - - 33.28337 42.18300 165.35051 25.50958 110 20 - - 33.59103 42.67350 167.40645 25.82676 110 20 - - 33.89898 43.16400 169.46238 26.14394 110 20 - - 33.89898 43.16400 168.51861 26.14394 110 20 - - 34.20719 43.65450 170.56310 26.46112 110 20 - - 34.51561 44.14500 172.60759 26.77830 110 20 - - 34.82422 44.63550 174.65207 27.09548 110 20 - - 35.13298 45.12600 176.69656 27.41266 110 20 - - 35.44184 45.61650 178.74104 27.72984 110 20 - - 35.44184 45.61650 178.05081 27.72984 110 20 - - 35.75079 46.10700 180.08740 28.04702 110 20 - - 36.05978 46.59750 182.12400 28.36421 110 20 - - 36.36882 47.08800 184.16059 28.68139 110 20 - - 36.67787 47.57850 186.19718 28.99857 110 20 - - 36.98692 48.06900 188.23377 29.31575 110 20 - + 0.00002 0.00000 0.00002 0.00000 202 100 P + 7.15926 0.52320 7.15926 0.29940 202 100 P + 14.31851 1.04640 14.31851 0.59881 202 100 P + 20.02509 1.56960 21.47777 0.89821 110 93 - + 19.51644 2.09280 28.63703 1.19762 110 68 - + 19.03656 2.61600 35.79629 1.49702 110 53 - + 15.66071 2.61600 15.66071 1.49702 202 100 P + 18.58860 3.13920 18.79285 1.79643 110 99 - + 18.17424 3.66240 21.92499 2.09583 110 83 - + 17.79478 4.18560 25.05713 2.39523 110 71 - + 17.45155 4.70880 28.18927 2.69464 110 62 - + 17.14584 5.23200 31.32141 2.99404 110 55 - + 17.14584 5.23200 23.25828 2.99404 110 74 - + 16.87857 5.75520 25.58411 3.29345 110 66 - + 16.64951 6.27840 27.90994 3.59285 110 60 - + 16.45828 6.80160 30.23577 3.89226 110 54 - + 16.30450 7.32480 32.56159 4.19166 110 50 - + 16.18780 7.84800 34.88742 4.49106 110 46 - + 16.18780 7.84800 29.69745 4.49106 110 55 - + 16.10751 8.37120 31.67728 4.79047 110 51 - + 16.06227 8.89440 33.65711 5.08987 110 48 - + 16.05063 9.41760 35.63694 5.38928 110 45 - + 16.07114 9.94080 37.61677 5.68868 110 43 - + 16.12236 10.46400 39.59660 5.98809 110 41 - + 16.12236 10.46400 35.74739 5.98809 110 45 - + 16.20267 10.98720 37.53476 6.28749 110 43 - + 16.31021 11.51040 39.32213 6.58689 110 41 - + 16.44318 12.03360 41.10950 6.88630 110 40 - + 16.59978 12.55680 42.89687 7.18570 110 39 - + 16.77821 13.08000 44.68424 7.48511 110 38 - + 16.77821 13.08000 41.61879 7.48511 110 40 - + 16.97664 13.60320 43.28354 7.78451 110 39 - + 17.19335 14.12640 44.94829 8.08391 110 38 - + 17.42671 14.64960 46.61305 8.38332 110 37 - + 17.67509 15.17280 48.27780 8.68272 110 37 - + 17.93683 15.69600 49.94255 8.98213 110 36 - + 17.93683 15.69600 47.48141 8.98213 110 38 - + 18.18775 16.17669 48.93553 9.25721 110 37 - + 18.44758 16.65738 50.38965 9.53228 110 37 - + 18.71533 17.13807 51.84376 9.80736 110 36 - + 18.99003 17.61876 53.29788 10.08244 110 36 - + 19.27067 18.09945 54.75200 10.35752 110 35 - + 19.27067 18.09945 52.67298 10.35752 110 37 - + 19.57298 18.60794 54.15278 10.64850 110 36 - + 19.88001 19.11642 55.63257 10.93948 110 36 - + 20.19096 19.62491 57.11236 11.23047 110 35 - + 20.50500 20.13339 58.59215 11.52145 110 35 - + 20.82132 20.64188 60.07194 11.81243 110 35 - + 20.82132 20.64188 58.19065 11.81243 110 36 - + 21.13917 21.15036 59.62409 12.10342 110 35 - + 21.45802 21.65884 61.05754 12.39440 110 35 - + 21.77735 22.16733 62.49099 12.68538 110 35 - + 22.09668 22.67582 63.92444 12.97637 110 35 - + 22.41550 23.18430 65.35789 13.26735 110 34 - + 22.41550 23.18430 63.68296 13.26735 110 35 - + 22.73337 23.69279 65.07968 13.55833 110 35 - + 23.05000 24.20127 66.47639 13.84932 110 35 - + 23.36515 24.70976 67.87310 14.14030 110 34 - + 23.67855 25.21824 69.26982 14.43129 110 34 - + 23.98995 25.72673 70.66653 14.72227 110 34 - + 23.98995 25.72673 69.15697 14.72227 110 35 - + 24.29913 26.23521 70.52385 15.01325 110 34 - + 24.60600 26.74369 71.89072 15.30424 110 34 - + 24.91048 27.25218 73.25760 15.59522 110 34 - + 25.21250 27.76066 74.62448 15.88620 110 34 - + 25.51198 28.26915 75.99136 16.17719 110 34 - + 25.51198 28.26915 74.61731 16.17719 110 34 - + 25.80888 28.77764 75.95947 16.46817 110 34 - + 26.10324 29.28612 77.30163 16.75915 110 34 - + 26.39513 29.79460 78.64379 17.05014 110 34 - + 26.68463 30.30309 79.98596 17.34112 110 33 - + 26.97179 30.81158 81.32812 17.63210 110 33 - + 26.97179 30.81158 80.06718 17.63210 110 34 - + 27.25672 31.32006 81.38853 17.92309 110 33 - + 27.53959 31.82855 82.70988 18.21407 110 33 - + 27.82062 32.33703 84.03123 18.50505 110 33 - + 28.10001 32.84551 85.35259 18.79604 110 33 - + 28.37798 33.35400 86.67394 19.08702 110 33 - + 26.62604 33.35400 118.52063 17.33508 110 22 - + 26.92957 33.84450 120.68921 17.65226 110 22 - + 27.23228 34.33500 122.85778 17.96944 110 22 - + 27.53435 34.82550 125.02636 18.28662 110 22 - + 27.83599 35.31600 127.19494 18.60381 110 22 - + 28.13737 35.80650 129.36352 18.92099 110 22 - + 28.13737 35.80650 125.79692 18.92099 110 22 - + 28.43868 36.29700 127.90571 19.23817 110 22 - + 28.74000 36.78750 130.01450 19.55535 110 22 - + 29.04142 37.27800 132.12329 19.87253 110 22 - + 29.34303 37.76850 134.23208 20.18971 110 22 - + 29.64491 38.25900 136.34087 20.50689 110 22 - + 29.64491 38.25900 134.31756 20.50689 110 22 - + 29.94711 38.74950 136.39506 20.82407 110 22 - + 30.24968 39.24000 138.47255 21.14125 110 22 - + 30.55260 39.73050 140.55005 21.45844 110 22 - + 30.85591 40.22100 142.62755 21.77562 110 22 - + 31.15961 40.71150 144.70504 22.09280 110 22 - + 31.15961 40.71150 143.38850 22.09280 110 22 - + 31.46369 41.20200 145.44710 22.40998 110 22 - + 31.76815 41.69250 147.50569 22.72716 110 22 - + 32.07295 42.18300 149.56429 23.04434 110 21 - + 32.37806 42.67350 151.62288 23.36152 110 21 - + 32.68346 43.16400 153.68148 23.67870 110 21 - + 32.68346 43.16400 152.76032 23.67870 110 21 - + 32.98912 43.65450 154.80658 23.99588 110 21 - + 33.29501 44.14500 156.85284 24.31307 110 21 - + 33.60107 44.63550 158.89909 24.63025 110 21 - + 33.90729 45.12600 160.94535 24.94743 110 21 - + 34.21363 45.61650 162.99160 25.26461 110 21 - + 34.21363 45.61650 162.31663 25.26461 110 21 - + 34.52005 46.10700 164.35441 25.58179 110 21 - + 34.82652 46.59750 166.39219 25.89897 110 21 - + 35.13303 47.08800 168.42997 26.21615 110 21 - + 35.43957 47.57850 170.46775 26.53333 110 21 - + 35.74611 48.06900 172.50554 26.85051 110 21 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8418,8 +8185,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 72.085 'Clay, sl san, moderate' - -4.00 48.565 'Sand, sl sil, moderate' + 4.00 67.942 'Clay, sl san, moderate' + -4.00 46.756 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8432,8 +8199,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 15.61 'Clay, sl san, moderate' - -4.00 19.80 'Sand, sl sil, moderate' + 4.00 14.72 'Clay, sl san, moderate' + -4.00 19.06 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -8441,7 +8208,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -8459,28 +8226,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -8627,201 +8382,189 @@ Name 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 34.87 : Percentage mobilized resistance left - 10.58 : Percentage mobilized resistance right - 57.28 : Effective left - 67.20 : Effective right + 34.14 : Percentage mobilized resistance left + 10.84 : Percentage mobilized resistance right + 58.89 : Effective left + 68.89 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right - 164.25 : Max effective resistance left + 172.51 : Max effective resistance left 635.28 : Max effective resistance right - -778.85 : Max moment left --2354.02 : Max moment right - -251.84 : Max mobilized moment left - -252.15 : Max mobilized moment right - 18.46 : Vertical force left - 20.95 : Vertical force right - 32.3 : Max mobilized moment percentage left - 10.7 : Max mobilized moment percentage right + -805.38 : Max moment left +-2354.05 : Max moment right + -255.30 : Max mobilized moment left + -255.76 : Max mobilized moment right + 18.86 : Vertical force left + 21.27 : Vertical force right + 31.7 : Max mobilized moment percentage left + 10.9 : Max mobilized moment percentage right 0.25 : Level of single support 2 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --20.95 : Active force -18.46 : Passive force --20.95 : Plugged active force -18.46 : Plugged passive force +-21.27 : Active force +18.86 : Passive force +-21.27 : Plugged active force +18.86 : Plugged passive force 0.96 : Anchor force 0.00 : Normal force 55.34 : Factor on resistance 55.34 : Plugged resistance 1.30 : Vertical balance load factor --1.53 : Resulting Vertical Force Unplugged --1.53 : Resulting Vertical Force Plugged +-1.45 : Resulting Vertical Force Unplugged +-1.45 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00051 0.00814 0.76001 - 0.00338 0.21678 0.60128 - 0.02812 0.84268 0.44256 - 0.09322 1.80306 0.28373 - 0.20971 2.84039 0.12463 - 0.37563 3.77983 -0.03486 - 0.37614 -6.17395 -0.03486 - 0.08888 -5.33261 -0.19480 - -0.15876 -4.58953 -0.35491 - -0.37171 -3.94469 -0.51477 - -0.55486 -3.39786 -0.67400 - -0.71312 -2.94862 -0.83217 - -0.71312 -2.94874 -0.83217 - -0.79815 -2.72582 -0.92643 - -0.87702 -2.53766 -1.02015 - -0.95076 -2.38410 -1.11328 - -1.02041 -2.26495 -1.20577 - -1.08700 -2.18001 -1.29757 - -1.08689 -2.18287 -1.29757 - -1.15153 -2.13193 -1.38863 - -1.21515 -2.11475 -1.47892 - -1.27859 -2.11457 -1.56839 - -1.34202 -2.11457 -1.65699 - -1.40546 -2.11457 -1.74469 - -1.40557 -2.11736 -1.74469 - -1.43944 -2.11736 -1.79108 - -1.47332 -2.11736 -1.83719 - -1.50720 -2.11736 -1.88302 - -1.54108 -2.11736 -1.92856 - -1.57495 -2.11736 -1.97380 - -1.57495 -2.11736 -1.97380 - -1.66812 -2.11736 -2.09664 - -1.76128 -2.11736 -2.21706 - -1.85445 -2.11736 -2.33492 - -1.94761 -2.11736 -2.45009 - -2.04077 -2.11736 -2.56242 - -2.04071 -2.12024 -2.56242 - -2.15379 -2.12024 -2.69461 - -2.26687 -2.12024 -2.82220 - -2.37995 -2.12024 -2.94495 - -2.49303 -2.12024 -3.06262 - -2.60611 -2.12024 -3.17498 - -2.60604 -2.12162 -3.17498 - -2.71919 -2.12162 -3.28178 - -2.83234 -2.12162 -3.38278 - -2.94550 -2.12162 -3.47773 - -3.05865 -2.12162 -3.56640 - -3.17180 -2.12162 -3.64855 - -3.17184 -2.12136 -3.64855 - -3.28080 -1.96398 -3.72391 - -3.38126 -1.80288 -3.79228 - -3.47304 -1.63806 -3.85345 - -3.55592 -1.46953 -3.90723 - -3.62972 -1.29729 -3.95342 - -3.62972 -1.29667 -3.95342 - -3.69244 -1.05448 -3.99183 - -3.74211 -0.80718 -4.02237 - -3.77845 -0.55476 -4.04495 - -3.80119 -0.29723 -4.05950 - -3.81006 -0.03459 -4.06594 - -3.81006 -0.03416 -4.06594 - -3.80406 0.25992 -4.06420 - -3.78224 0.55961 -4.05435 - -3.74427 0.86491 -4.03646 - -3.68988 1.17583 -4.01062 - -3.61875 1.49237 -3.97690 - -3.61875 1.49263 -3.97690 - -3.52994 1.83880 -3.93542 - -3.42250 2.19100 -3.88640 - -3.29612 2.54923 -3.83011 - -3.15048 2.91350 -3.76684 - -2.98524 3.28381 -3.69683 - -2.98524 3.30291 -3.69683 - -2.81448 3.66796 -3.62627 - -2.62569 4.03838 -3.55169 - -2.41863 4.41419 -3.47270 - -2.19301 4.79538 -3.38891 - -1.94859 5.18196 -3.29991 - -1.94859 5.20134 -3.29991 - -1.66861 5.58658 -3.20294 - -1.37101 5.88131 -3.10260 - -1.06048 6.08554 -2.99952 - -0.74171 6.19928 -2.89433 - -0.41939 6.22252 -2.78763 - -0.41938 6.22250 -2.78763 - -0.09774 6.17334 -2.68009 - 0.21903 6.03393 -2.57236 - 0.52622 5.80426 -2.46505 - 0.81917 5.48434 -2.35877 - 1.09321 5.07417 -2.25415 - 1.09347 5.07000 -2.25415 - 1.34413 4.58653 -2.15178 - 1.56739 4.01302 -2.05213 - 1.75901 3.37378 -1.95558 - 1.91712 2.73378 -1.86251 - 2.04308 2.13269 -1.77331 - 2.04280 2.12926 -1.77331 - 2.13880 1.58094 -1.68830 - 2.20729 1.06743 -1.60761 - 2.25002 0.58647 -1.53131 - 2.26861 0.13576 -1.45950 - 2.26458 -0.28706 -1.39227 - 2.26467 -0.29093 -1.39227 - 2.23978 -0.66178 -1.32965 - 2.19700 -0.97885 -1.27155 - 2.13930 -1.23797 -1.21784 - 2.06958 -1.44363 -1.16843 - 1.99049 -1.60023 -1.12318 - 1.99049 -1.59866 -1.12318 - 1.90454 -1.71045 -1.08197 - 1.81387 -1.78150 -1.04459 - 1.72050 -1.81570 -1.01087 - 1.62622 -1.81673 -0.98061 - 1.53267 -1.78809 -0.95362 - 1.53269 -1.78681 -0.95362 - 1.44228 -1.82545 -0.93052 - 1.35050 -1.84234 -0.91013 - 1.25837 -1.84010 -0.89227 - 1.16677 -1.82117 -0.87676 - 1.07649 -1.78784 -0.86345 - 1.07650 -1.78700 -0.86345 - 0.98824 -1.74136 -0.85215 - 0.90253 -1.68535 -0.84270 - 0.81985 -1.62074 -0.83495 - 0.74058 -1.54915 -0.82875 - 0.66502 -1.47205 -0.82393 - 0.66503 -1.47153 -0.82393 - 0.59347 -1.39022 -0.82035 - 0.52606 -1.30590 -0.81788 - 0.46291 -1.21960 -0.81640 - 0.40411 -1.13226 -0.81580 - 0.34969 -1.04471 -0.81596 - 0.34969 -1.04443 -0.81596 - 0.29965 -0.95735 -0.81676 - 0.25394 -0.87136 -0.81813 - 0.21249 -0.78697 -0.81998 - 0.17521 -0.70464 -0.82223 - 0.14199 -0.62472 -0.82481 - 0.14199 -0.62460 -0.82481 - 0.11270 -0.54740 -0.82765 - 0.08720 -0.47313 -0.83070 - 0.06533 -0.40200 -0.83392 - 0.04695 -0.33415 -0.83726 - 0.03186 -0.26970 -0.84070 - 0.03186 -0.26967 -0.84070 - 0.01992 -0.20867 -0.84419 - 0.01094 -0.15118 -0.84771 - 0.00474 -0.09723 -0.85126 - 0.00116 -0.04683 -0.85482 - 0.00000 0.00000 -0.85839 + -0.00046 0.00734 -1.36418 + 0.00339 0.21597 -1.45340 + 0.02809 0.84188 -1.54261 + 0.09315 1.80214 -1.63194 + 0.20967 2.84407 -1.72153 + 0.37608 3.79782 -1.81151 + 0.37654 -6.15677 -1.81151 + 0.09071 -5.29143 -1.90194 + -0.15408 -4.51464 -1.99254 + -0.36223 -3.82641 -2.08292 + -0.53819 -3.22650 -2.17267 + -0.68635 -2.71451 -2.26141 + -0.68628 -2.71545 -2.26141 + -0.83361 -2.21625 -2.36609 + -0.95472 -1.84156 -2.46853 + -1.05705 -1.58990 -2.56843 + -1.14794 -1.45964 -2.66551 + -1.23412 -1.42464 -2.75949 + -1.23461 -1.44415 -2.75949 + -1.32126 -1.44415 -2.85010 + -1.40791 -1.44415 -2.93715 + -1.49456 -1.44415 -3.02040 + -1.58121 -1.44415 -3.09961 + -1.66786 -1.44415 -3.17455 + -1.66762 -1.44780 -3.17455 + -1.74483 -1.44780 -3.23739 + -1.82205 -1.44780 -3.29651 + -1.89926 -1.44780 -3.35174 + -1.97648 -1.44780 -3.40292 + -2.05370 -1.44780 -3.44989 + -2.05381 -1.45740 -3.44989 + -2.13153 -1.45740 -3.49247 + -2.20926 -1.45740 -3.53050 + -2.28699 -1.45740 -3.56383 + -2.36472 -1.45740 -3.59227 + -2.44245 -1.45740 -3.61567 + -2.44246 -1.45675 -3.61567 + -2.51598 -1.29937 -3.63384 + -2.58100 -1.13827 -3.64665 + -2.63732 -0.97346 -3.65397 + -2.68476 -0.80492 -3.65568 + -2.72312 -0.63268 -3.65166 + -2.72301 -0.63412 -3.65166 + -2.75039 -0.39193 -3.64180 + -2.76472 -0.14463 -3.62607 + -2.76573 0.10779 -3.60447 + -2.75313 0.36532 -3.57700 + -2.72667 0.62797 -3.54365 + -2.72671 0.62857 -3.54365 + -2.68537 0.92264 -3.50444 + -2.62820 1.22233 -3.45950 + -2.55489 1.52764 -3.40899 + -2.46515 1.83856 -3.35306 + -2.35868 2.15510 -3.29186 + -2.35867 2.15599 -3.29186 + -2.23448 2.50216 -3.22559 + -2.09167 2.85436 -3.15455 + -1.92991 3.21259 -3.07908 + -1.74888 3.57686 -2.99953 + -1.54827 3.94716 -2.91625 + -1.54826 3.94765 -2.91625 + -1.34590 4.31270 -2.83677 + -1.12553 4.68312 -2.75486 + -0.88687 5.05893 -2.67096 + -0.62967 5.44012 -2.58549 + -0.35365 5.82669 -2.49888 + -0.35352 5.82519 -2.49888 + -0.04356 6.07409 -2.40658 + 0.26989 5.95983 -2.31422 + 0.56800 5.48241 -2.22236 + 0.83466 4.79814 -2.13160 + 1.06529 4.10728 -2.04252 + 1.06527 4.09539 -2.04252 + 1.26783 3.69464 -1.95565 + 1.44604 3.16445 -1.87134 + 1.59526 2.59875 -1.78989 + 1.71602 2.06591 -1.71161 + 1.80997 1.56421 -1.63678 + 1.80985 1.56318 -1.63678 + 1.87895 1.10772 -1.56567 + 1.92516 0.67980 -1.49835 + 1.94986 0.27746 -1.43486 + 1.95433 -0.10131 -1.37527 + 1.93982 -0.45344 -1.31962 + 1.93980 -0.46156 -1.31962 + 1.90771 -0.76871 -1.26791 + 1.86095 -1.02709 -1.22006 + 1.80206 -1.23779 -1.17593 + 1.73339 -1.40462 -1.13541 + 1.65714 -1.53125 -1.09839 + 1.65713 -1.52995 -1.09839 + 1.57535 -1.61994 -1.06472 + 1.48977 -1.67668 -1.03423 + 1.40205 -1.70336 -1.00673 + 1.31366 -1.70300 -0.98206 + 1.22593 -1.67844 -0.96004 + 1.22593 -1.67737 -0.96004 + 1.14010 -1.63125 -0.94048 + 1.05716 -1.56606 -0.92322 + 0.97804 -1.48407 -0.90810 + 0.90356 -1.38744 -0.89495 + 0.83443 -1.27812 -0.88363 + 0.83443 -1.27742 -0.88363 + 0.77113 -1.25295 -0.87430 + 0.70928 -1.21986 -0.86641 + 0.64927 -1.17955 -0.85985 + 0.59143 -1.13329 -0.85451 + 0.53602 -1.08225 -0.85028 + 0.53602 -1.08183 -0.85028 + 0.48329 -1.02706 -0.84706 + 0.43336 -0.96952 -0.84473 + 0.38637 -0.91006 -0.84323 + 0.34238 -0.84946 -0.84245 + 0.30143 -0.78841 -0.84232 + 0.30143 -0.78817 -0.84232 + 0.26355 -0.72727 -0.84274 + 0.22869 -0.66703 -0.84366 + 0.19683 -0.60793 -0.84502 + 0.16788 -0.55037 -0.84674 + 0.14176 -0.49469 -0.84878 + 0.14176 -0.49458 -0.84878 + 0.11838 -0.44107 -0.85108 + 0.09761 -0.38998 -0.85360 + 0.07934 -0.34150 -0.85631 + 0.06342 -0.29580 -0.85917 + 0.04971 -0.25303 -0.86215 + 0.04971 -0.25299 -0.86215 + 0.03807 -0.21324 -0.86522 + 0.02833 -0.17659 -0.86836 + 0.02035 -0.14311 -0.87156 + 0.01397 -0.11285 -0.87480 + 0.00901 -0.08584 -0.87806 + 0.00901 -0.08583 -0.87806 + 0.00533 -0.06209 -0.88133 + 0.00275 -0.04163 -0.88462 + 0.00111 -0.02446 -0.88791 + 0.00025 -0.01058 -0.89121 + 0.00000 0.00000 -0.89451 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8883,7 +8626,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -8895,9 +8638,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 60.99100 0.00000 5.21587 0.00000 0.00000 61.47300 0.00000 13.30718 0.00000 - -0.15000 61.66800 0.00000 19.25750 0.00000 -0.30000 61.80700 0.00000 25.67700 0.00000 - -0.38000 61.86900 0.00000 29.29260 0.00000 -0.60000 62.00900 0.00000 39.92361 0.00000 -0.86667 62.14500 0.00000 54.16255 0.00000 -1.13333 62.25700 0.00000 69.88374 0.00000 @@ -8923,7 +8664,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -8936,10 +8677,8 @@ Lambda passive [DATA] 0.37500 2.25000 20.86349 0.00000 0.68545 0.00000 9.27266 0.12500 6.75000 32.36522 0.00000 0.68545 0.00000 4.79485 - -0.07500 9.61425 39.66881 0.00000 0.68545 0.00000 4.12604 - -0.22500 10.84275 42.79669 0.00000 0.68545 0.00000 3.94703 - -0.34000 11.78460 45.19493 0.00000 0.68545 0.00000 3.83508 - -0.49000 13.01310 48.32279 0.00000 0.68545 0.00000 3.71340 + -0.15000 10.22850 41.23275 0.00000 0.68545 0.00000 4.03116 + -0.45000 12.68550 47.48869 0.00000 0.68545 0.00000 3.74354 -0.73333 15.00600 53.39603 0.00000 0.68545 0.00000 3.55831 -1.00000 17.19000 58.95447 0.00000 0.68545 0.00000 3.42958 -1.26667 19.37400 64.51169 3.09029 0.68545 0.15951 3.32981 @@ -8964,7 +8703,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -8978,39 +8717,27 @@ Status character 0.00001 0.00000 0.00001 0.00000 202 100 P 8.34540 0.00000 8.34540 0.61690 202 100 P 16.69079 0.00000 16.69079 1.23381 202 100 P - 21.72445 0.00000 25.03619 1.85071 110 87 - - 19.76863 0.00000 33.38158 2.46762 110 59 - - 17.80891 0.00000 41.72698 3.08452 110 43 - - 17.80891 0.00000 21.57681 3.08452 110 83 - - 15.84462 0.00000 25.89217 3.70143 110 61 - - 13.87868 0.00000 30.20754 4.31833 110 46 - - 11.91514 0.00000 34.52290 4.93524 110 35 - - 9.95804 0.00000 38.83826 5.55214 110 26 - - 8.01142 0.00000 43.15362 6.16904 110 19 - - 8.01142 0.00000 37.13439 6.16904 110 22 - - 6.84994 0.29430 38.14816 6.33746 110 18 - - 5.69383 0.58860 39.16192 6.50587 110 0 - - 4.54363 0.88290 40.17569 6.67429 110 0 - - 3.39984 1.17720 41.18946 6.84270 110 0 - - 2.26297 1.47150 42.20323 7.01112 110 0 - - 2.26297 1.47150 40.37223 7.01112 110 0 - - 1.13348 1.76580 41.34201 7.17953 110 0 - - 0.01186 2.06010 42.31180 7.34795 110 0 - - 0.00000 2.35440 43.28158 7.51636 1 0 A - 0.00000 2.64870 44.25137 7.68478 1 0 A - 0.00000 2.94300 45.22116 7.85319 1 0 A - 0.00000 2.94300 43.93855 7.85319 1 0 A - 0.00000 3.09996 44.44110 7.94301 1 0 A - 0.00000 3.25692 44.94365 8.03284 1 0 A - 0.00000 3.41388 45.44620 8.12266 1 0 A - 0.00000 3.57084 45.94875 8.21248 1 0 A - 0.00000 3.72780 46.45130 8.30230 1 0 A - 0.00000 3.72780 44.97739 8.30230 1 0 A - 0.00000 4.15944 46.31555 8.54931 1 0 A - 0.00000 4.59108 47.65371 8.79632 1 0 A - 0.00000 5.02272 48.99187 9.04332 1 0 A - 0.00000 5.45436 50.33003 9.29033 1 0 A - 0.00000 5.88600 51.66819 9.53734 1 0 A + 21.71968 0.00000 25.03619 1.85071 110 87 - + 19.95779 0.00000 33.38158 2.46762 110 60 - + 18.19201 0.00000 41.72698 3.08452 110 44 - + 18.19201 0.00000 21.57681 3.08452 110 84 - + 16.42167 0.00000 25.89217 3.70143 110 63 - + 14.64965 0.00000 30.20754 4.31833 110 48 - + 12.87991 0.00000 34.52290 4.93524 110 37 - + 11.11639 0.00000 38.83826 5.55214 110 29 - + 9.36305 0.00000 43.15362 6.16904 110 22 - + 9.36305 0.00000 36.28047 6.16904 110 26 - + 7.27684 0.58860 38.26138 6.50587 110 19 - + 5.21311 1.17720 40.24229 6.84270 110 0 - + 3.17528 1.76580 42.22321 7.17953 110 0 - + 1.16672 2.35440 44.20412 7.51636 110 0 - + 0.00000 2.94300 46.18503 7.85319 1 0 A + 0.00000 2.94300 42.88975 7.85319 1 0 A + 0.00000 3.53160 44.72933 8.19002 1 0 A + 0.00000 4.12020 46.56891 8.52685 1 0 A + 0.00000 4.70880 48.40848 8.86368 1 0 A + 0.00000 5.29740 50.24806 9.20051 1 0 A + 0.00000 5.88600 52.08764 9.53734 1 0 A 0.00000 5.88600 49.51036 9.53734 1 0 A 0.00000 6.40920 51.06463 9.83675 1 0 A 0.00000 6.93240 52.61890 10.13615 1 0 A @@ -9070,61 +8797,61 @@ Status character 10.47595 30.08727 101.91509 23.38666 1 0 A 10.60630 30.59576 103.18314 23.67764 1 0 A 10.73664 31.10424 104.45120 23.96863 1 0 A - 10.86699 31.61273 105.71926 24.25961 1 0 A + 11.06346 31.61273 105.71926 24.25961 110 0 - 11.17279 31.61273 104.80260 24.25961 1 0 A - 11.30680 32.12121 106.05967 24.55059 1 0 A - 11.44081 32.62969 107.31673 24.84158 1 0 A - 11.57482 33.13818 108.57379 25.13256 1 0 A - 11.70884 33.64666 109.83085 25.42354 1 0 A - 11.84285 34.15515 111.08791 25.71453 1 0 A - 12.13159 34.15515 110.22294 25.71453 1 0 A - 12.70897 34.66363 111.47021 26.00551 110 0 - - 13.58101 35.17212 112.71748 26.29650 110 0 - - 14.40905 35.68060 113.96476 26.58748 110 0 - - 15.19421 36.18909 115.21203 26.87846 110 0 - - 15.93762 36.69758 116.45931 27.16945 110 0 - - 15.93762 36.69758 115.64048 27.16945 110 0 - - 16.64074 37.20606 116.87898 27.46043 110 0 - - 17.30548 37.71455 118.11749 27.75141 110 0 - - 17.93373 38.22303 119.35599 28.04240 110 0 - - 18.52732 38.73152 120.59450 28.33338 110 0 - - 19.08814 39.24000 121.83300 28.62436 110 0 - - 16.46079 39.24000 176.92871 25.99702 110 0 - - 17.00895 39.73050 179.08736 26.31420 110 0 - - 17.53008 40.22100 181.24601 26.63138 110 0 - - 18.02589 40.71150 183.40465 26.94856 110 0 - - 18.49809 41.20200 185.56330 27.26574 110 0 - - 18.94842 41.69250 187.72195 27.58292 110 0 - - 18.94842 41.69250 183.51539 27.58292 110 0 - - 19.37860 42.18300 185.62567 27.90011 110 0 - - 19.79025 42.67350 187.73594 28.21729 110 0 - - 20.18494 43.16400 189.84622 28.53447 110 0 - - 20.56419 43.65450 191.95650 28.85165 110 0 - - 20.92956 44.14500 194.06677 29.16883 110 0 - - 20.92956 44.14500 191.51976 29.16883 110 0 - - 21.28255 44.63550 193.60234 29.48601 110 0 - - 21.62441 45.12600 195.68492 29.80319 110 0 - - 21.95634 45.61650 197.76750 30.12037 110 0 - - 22.27952 46.10700 199.85008 30.43755 110 0 - - 22.59513 46.59750 201.93266 30.75474 110 0 - - 22.59513 46.59750 200.20986 30.75474 110 0 - - 22.90428 47.08800 202.27468 31.07192 110 0 - - 23.20781 47.57850 204.33949 31.38910 110 0 - - 23.50652 48.06900 206.40430 31.70628 110 0 - - 23.80116 48.55950 208.46912 32.02346 110 0 - - 24.09253 49.05000 210.53393 32.34064 110 0 - - 24.09253 49.05000 209.29224 32.34064 110 0 - - 24.38133 49.54050 211.34487 32.65782 110 0 - - 24.66802 50.03100 213.39751 32.97500 110 0 - - 24.95301 50.52150 215.45014 33.29218 110 0 - - 25.23672 51.01200 217.50278 33.60937 110 0 - - 25.51955 51.50250 219.55541 33.92655 110 0 - - 25.51955 51.50250 218.62206 33.92655 110 0 - - 25.80186 51.99300 220.66597 34.24373 110 0 - - 26.08380 52.48350 222.70988 34.56091 110 0 - - 26.36548 52.97400 224.75379 34.87809 110 0 - - 26.64704 53.46450 226.79770 35.19527 110 0 - - 26.92857 53.95500 228.84160 35.51245 110 0 - + 11.87146 32.12121 106.05967 24.55059 110 0 - + 12.64103 32.62969 107.31673 24.84158 110 0 - + 13.37331 33.13818 108.57379 25.13256 110 0 - + 14.06947 33.64666 109.83085 25.42354 110 0 - + 14.73066 34.15515 111.08791 25.71453 110 0 - + 14.73066 34.15515 110.22294 25.71453 110 0 - + 15.35831 34.66363 111.47021 26.00551 110 0 - + 15.95423 35.17212 112.71748 26.29650 110 0 - + 16.52016 35.68060 113.96476 26.58748 110 0 - + 17.05786 36.18909 115.21203 26.87846 110 0 - + 17.56907 36.69758 116.45931 27.16945 110 0 - + 17.56907 36.69758 115.64048 27.16945 110 0 - + 18.05562 37.20606 116.87898 27.46043 110 0 - + 18.51920 37.71455 118.11749 27.75141 110 0 - + 18.96141 38.22303 119.35599 28.04240 110 0 - + 19.38384 38.73152 120.59450 28.33338 110 0 - + 19.78805 39.24000 121.83300 28.62436 110 0 - + 17.16071 39.24000 176.92871 25.99702 110 0 - + 17.57125 39.73050 179.08736 26.31420 110 0 - + 17.96733 40.22100 181.24601 26.63138 110 0 - + 18.35008 40.71150 183.40465 26.94856 110 0 - + 18.72062 41.20200 185.56330 27.26574 110 0 - + 19.08008 41.69250 187.72195 27.58292 110 0 - + 19.08008 41.69250 183.51539 27.58292 110 0 - + 19.42954 42.18300 185.62567 27.90011 110 0 - + 19.76995 42.67350 187.73594 28.21729 110 0 - + 20.10217 43.16400 189.84622 28.53447 110 0 - + 20.42711 43.65450 191.95650 28.85165 110 0 - + 20.74563 44.14500 194.06677 29.16883 110 0 - + 20.74563 44.14500 191.51976 29.16883 110 0 - + 21.05856 44.63550 193.60234 29.48601 110 0 - + 21.36656 45.12600 195.68492 29.80319 110 0 - + 21.67022 45.61650 197.76750 30.12037 110 0 - + 21.97014 46.10700 199.85008 30.43755 110 0 - + 22.26692 46.59750 201.93266 30.75474 110 0 - + 22.26692 46.59750 200.20986 30.75474 110 0 - + 22.56110 47.08800 202.27468 31.07192 110 0 - + 22.85306 47.57850 204.33949 31.38910 110 0 - + 23.14316 48.06900 206.40430 31.70628 110 0 - + 23.43172 48.55950 208.46912 32.02346 110 0 - + 23.71910 49.05000 210.53393 32.34064 110 0 - + 23.71910 49.05000 209.29224 32.34064 110 0 - + 24.00559 49.54050 211.34487 32.65782 110 0 - + 24.29138 50.03100 213.39751 32.97500 110 0 - + 24.57660 50.52150 215.45014 33.29218 110 0 - + 24.86141 51.01200 217.50278 33.60937 110 0 - + 25.14597 51.50250 219.55541 33.92655 110 0 - + 25.14597 51.50250 218.62206 33.92655 110 0 - + 25.43038 51.99300 220.66597 34.24373 110 0 - + 25.71470 52.48350 222.70988 34.56091 110 0 - + 25.99895 52.97400 224.75379 34.87809 110 0 - + 26.28316 53.46450 226.79770 35.19527 110 0 - + 26.56737 53.95500 228.84160 35.51245 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9137,8 +8864,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 33.726 'Clay, sl san, moderate' - -4.00 33.473 'Sand, sl sil, moderate' + 4.00 35.672 'Clay, sl san, moderate' + -4.00 33.219 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9151,8 +8878,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -7.31 'Clay, sl san, moderate' - -4.00 -13.64 'Sand, sl sil, moderate' + 4.00 -7.73 'Clay, sl san, moderate' + -4.00 -13.54 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -9225,18 +8952,18 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.44500 0.00000 0.00000 0.00000 0.00000 - -2.70417 61.99700 0.00000 1.20993 0.00000 - -2.96333 61.99700 0.00000 4.83971 0.00000 - -3.22250 61.99700 0.00000 10.88935 0.00000 - -3.48167 61.99800 0.00000 19.34866 0.00000 - -3.74083 62.04700 0.00000 29.58509 0.00000 - -4.00000 62.12300 0.00000 41.22316 0.00000 - -4.25000 65.05700 36.16100 56.02590 0.45422 - -4.50000 66.51400 36.83600 72.89966 1.94777 - -4.75000 67.41900 37.39600 92.09343 3.67603 - -5.00000 68.03300 37.85500 113.69284 5.63868 - -5.25000 68.47300 38.23200 137.73881 7.83533 - -5.50000 68.80000 38.54000 164.25394 10.26564 + -2.70417 60.65200 0.00000 4.61820 0.00000 + -2.96333 60.95800 0.00000 10.64522 0.00000 + -3.22250 61.21200 0.00000 18.07830 0.00000 + -3.48167 61.42600 0.00000 26.91552 0.00000 + -3.74083 61.61000 0.00000 37.15552 0.00000 + -4.00000 61.76900 0.00000 48.79731 0.00000 + -4.25000 64.46600 0.00000 63.76574 0.00000 + -4.50000 65.93300 0.00000 80.79157 0.00000 + -4.75000 66.89100 36.42700 100.10845 1.16390 + -5.00000 67.56600 36.96400 121.80605 3.11890 + -5.25000 68.06200 37.41900 145.93047 5.30874 + -5.50000 68.44000 37.80400 172.50873 7.73308 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9253,24 +8980,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.57458 1.06129 4.66853 0.00000 0.68545 0.00000 4.39893 - -2.83375 3.18386 14.00560 0.00000 0.68545 0.00000 4.39893 - -3.09292 5.30644 23.34266 0.00000 0.68545 0.00000 4.39893 - -3.35208 7.42901 32.64043 0.00000 0.68545 0.00000 4.39364 - -3.61125 9.55159 39.49748 0.00000 0.68545 0.00000 4.13517 - -3.87042 11.67416 44.90572 0.00000 0.68545 0.00000 3.84659 - -4.12500 14.00920 59.21095 1.81688 0.62253 0.12969 4.22658 - -4.37500 16.55670 67.49507 5.97419 0.62253 0.36083 4.07660 - -4.62500 19.10420 76.77505 6.91305 0.62253 0.36186 4.01875 - -4.87500 21.65170 86.39763 7.85059 0.62253 0.36259 3.99034 - -5.12500 24.19920 96.18389 8.78662 0.62253 0.36310 3.97467 - -5.37500 26.74670 106.06052 9.72124 0.62253 0.36346 3.96537 + -2.57458 1.06129 17.81943 0.00000 0.68545 0.00000 16.79039 + -2.83375 3.18386 23.25539 0.00000 0.68545 0.00000 7.30414 + -3.09292 5.30644 28.68068 0.00000 0.68545 0.00000 5.40488 + -3.35208 7.42901 34.09860 0.00000 0.68545 0.00000 4.58992 + -3.61125 9.55159 39.51127 0.00000 0.68545 0.00000 4.13662 + -3.87042 11.67416 44.92008 0.00000 0.68545 0.00000 3.84782 + -4.12500 14.00920 59.87372 0.00000 0.62253 0.00000 4.27389 + -4.37500 16.55670 68.10334 0.00000 0.62253 0.00000 4.11334 + -4.62500 19.10420 77.26753 4.65562 0.62253 0.24370 4.04453 + -4.87500 21.65170 86.79036 7.81997 0.62253 0.36117 4.00848 + -5.12500 24.19920 96.49769 8.75938 0.62253 0.36197 3.98764 + -5.37500 26.74670 106.31305 9.69736 0.62253 0.36256 3.97481 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -9294,28 +9021,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.09996 0.00000 0.00000 -1 0 - - 0.00000 3.25692 0.00000 0.00000 -1 0 - - 0.00000 3.41388 0.00000 0.00000 -1 0 - - 0.00000 3.57084 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 4.15944 0.00000 0.00000 -1 0 - - 0.00000 4.59108 0.00000 0.00000 -1 0 - - 0.00000 5.02272 0.00000 0.00000 -1 0 - - 0.00000 5.45436 0.00000 0.00000 -1 0 - + 0.00000 3.53160 0.00000 0.00000 -1 0 - + 0.00000 4.12020 0.00000 0.00000 -1 0 - + 0.00000 4.70880 0.00000 0.00000 -1 0 - + 0.00000 5.29740 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -9359,78 +9074,78 @@ Status character 0.00000 23.02407 0.00000 0.00000 -1 0 - 0.00000 23.50476 0.00000 0.00000 -1 0 - 0.00000 23.98545 0.00000 0.00000 -1 0 - - 0.00000 23.98545 0.00000 0.00000 202 100 P - 1.86741 24.49394 1.86741 0.29098 202 100 P - 3.73483 25.00242 3.73483 0.58197 202 100 P - 5.60224 25.51091 5.60224 0.87295 202 100 P - 7.46965 26.01939 7.46965 1.16393 202 100 P - 9.33707 26.52788 9.33707 1.45492 202 100 P - 9.33707 26.52788 9.33707 1.45492 202 100 P - 11.20448 27.03636 11.20448 1.74590 202 100 P - 13.07189 27.54485 13.07189 2.03688 202 100 P - 14.93930 28.05333 14.93930 2.32787 202 100 P - 16.80672 28.56182 16.80672 2.61885 202 100 P - 18.67413 29.07030 18.67413 2.90984 202 100 P - 18.67413 29.07030 18.67413 2.90984 202 100 P - 20.54154 29.57878 20.54154 3.20082 202 100 P - 22.40896 30.08727 22.40896 3.49180 202 100 P - 23.33857 30.59576 24.27637 3.78279 110 96 - - 22.69889 31.10424 26.14378 4.07377 110 87 - - 22.09788 31.61273 28.01120 4.36475 110 79 - - 22.09788 31.61273 27.97751 4.36475 110 79 - - 21.53877 32.12121 29.84268 4.65574 110 72 - - 21.02279 32.62969 31.70784 4.94672 110 66 - - 20.55081 33.13818 33.57301 5.23770 110 61 - - 20.12372 33.64666 35.43818 5.52869 110 57 - - 19.74240 34.15515 37.30335 5.81967 110 53 - - 19.74240 34.15515 35.10887 5.81967 110 56 - - 19.40719 34.66363 36.86431 6.11065 110 53 - - 19.11712 35.17212 38.61975 6.40164 110 50 - - 18.87105 35.68060 40.37520 6.69262 110 47 - - 18.66786 36.18909 42.13064 6.98360 110 44 - - 18.50641 36.69758 43.88608 7.27459 110 42 - - 18.50641 36.69758 40.82338 7.27459 110 45 - - 18.38527 37.20606 42.45632 7.56557 110 43 - - 18.30248 37.71455 44.08925 7.85655 110 42 - - 18.25621 38.22303 45.72219 8.14754 110 40 - - 18.24458 38.73152 47.35512 8.43852 110 39 - - 18.26573 39.24000 48.98806 8.72951 110 37 - - 17.46448 39.24000 53.82735 7.92825 110 32 - - 17.55068 39.73050 55.98079 8.24543 110 31 - - 17.66391 40.22100 58.13423 8.56261 110 30 - - 17.80247 40.71150 60.28767 8.87979 110 30 - - 17.96462 41.20200 62.44112 9.19697 110 29 - - 18.14866 41.69250 64.59456 9.51416 110 28 - - 18.14866 41.69250 62.30250 9.51416 110 29 - - 18.35285 42.18300 64.37953 9.83134 110 29 - - 18.57555 42.67350 66.45656 10.14852 110 28 - - 18.81523 43.16400 68.53359 10.46570 110 27 - - 19.07034 43.65450 70.61062 10.78288 110 27 - - 19.33933 44.14500 72.68764 11.10006 110 27 - - 19.33933 44.14500 71.65616 11.10006 110 27 - - 19.62071 44.63550 73.70372 11.41724 110 27 - - 19.91320 45.12600 75.75127 11.73442 110 26 - - 20.21563 45.61650 77.79883 12.05160 110 26 - - 20.52682 46.10700 79.84638 12.36879 110 26 - - 20.84557 46.59750 81.89394 12.68597 110 25 - - 20.84557 46.59750 81.31494 12.68597 110 26 - - 21.17079 47.08800 83.34802 13.00315 110 25 - - 21.50161 47.57850 85.38110 13.32033 110 25 - - 21.83727 48.06900 87.41417 13.63751 110 25 - - 22.17699 48.55950 89.44725 13.95469 110 25 - - 22.51998 49.05000 91.48033 14.27187 110 25 - - 22.51998 49.05000 91.12115 14.27187 110 25 - - 22.86555 49.54050 93.14625 14.58905 110 25 - - 23.21322 50.03100 95.17134 14.90623 110 24 - - 23.56259 50.52150 97.19644 15.22342 110 24 - - 23.91324 51.01200 99.22153 15.54060 110 24 - - 24.26477 51.50250 101.24663 15.85778 110 24 - - 24.26477 51.50250 101.00964 15.85778 110 24 - - 24.61683 51.99300 103.02999 16.17496 110 24 - - 24.96925 52.48350 105.05035 16.49214 110 24 - - 25.32193 52.97400 107.07070 16.80932 110 24 - - 25.67474 53.46450 109.09106 17.12650 110 24 - - 26.02756 53.95500 111.11141 17.44368 110 23 - + 0.00002 23.98545 0.00002 0.00000 202 100 P + 7.12777 24.49394 7.12777 0.29098 202 100 P + 14.25554 25.00242 14.25554 0.58197 202 100 P + 21.38331 25.51091 21.38331 0.87295 202 100 P + 22.47995 26.01939 28.51108 1.16393 110 79 - + 21.88010 26.52788 35.63885 1.45492 110 61 - + 15.50359 26.52788 15.50359 1.45492 202 100 P + 18.60431 27.03636 18.60431 1.74590 202 100 P + 20.75027 27.54485 21.70503 2.03688 110 96 - + 20.22678 28.05333 24.80575 2.32787 110 82 - + 19.73491 28.56182 27.90647 2.61885 110 71 - + 19.27767 29.07030 31.00719 2.90984 110 62 - + 19.27767 29.07030 22.94454 2.90984 110 84 - + 18.85752 29.57878 25.23900 3.20082 110 75 - + 18.47525 30.08727 27.53345 3.49180 110 67 - + 18.13139 30.59576 29.82791 3.78279 110 61 - + 17.82643 31.10424 32.12236 4.07377 110 55 - + 17.56091 31.61273 34.41682 4.36475 110 51 - + 17.56091 31.61273 29.22737 4.36475 110 60 - + 17.33487 32.12121 31.17586 4.65574 110 56 - + 17.14727 32.62969 33.12436 4.94672 110 52 - + 16.99696 33.13818 35.07285 5.23770 110 48 - + 16.88276 33.64666 37.02134 5.52869 110 46 - + 16.80353 34.15515 38.96983 5.81967 110 43 - + 16.80353 34.15515 35.12113 5.81967 110 48 - + 16.75785 34.66363 36.87718 6.11065 110 45 - + 16.74390 35.17212 38.63324 6.40164 110 43 - + 16.75994 35.68060 40.38929 6.69262 110 41 - + 16.80421 36.18909 42.14535 6.98360 110 40 - + 16.87497 36.69758 43.90141 7.27459 110 38 - + 16.87497 36.69758 40.83643 7.27459 110 41 - + 16.97039 37.20606 42.46989 7.56557 110 40 - + 17.08877 37.71455 44.10335 7.85655 110 39 - + 17.22852 38.22303 45.73681 8.14754 110 38 - + 17.38807 38.73152 47.37026 8.43852 110 37 - + 17.56582 39.24000 49.00372 8.72951 110 36 - + 16.76456 39.24000 54.42985 7.92825 110 31 - + 16.98839 39.73050 56.60740 8.24543 110 30 - + 17.22667 40.22100 58.78494 8.56261 110 29 - + 17.47828 40.71150 60.96249 8.87979 110 29 - + 17.74210 41.20200 63.14003 9.19697 110 28 - + 18.01700 41.69250 65.31758 9.51416 110 28 - + 18.01700 41.69250 62.86397 9.51416 110 29 - + 18.30190 42.18300 64.95972 9.83134 110 28 - + 18.59586 42.67350 67.05546 10.14852 110 28 - + 18.89799 43.16400 69.15121 10.46570 110 27 - + 19.20742 43.65450 71.24696 10.78288 110 27 - + 19.52326 44.14500 73.34270 11.10006 110 27 - + 19.52326 44.14500 72.11581 11.10006 110 27 - + 19.84469 44.63550 74.17649 11.41724 110 27 - + 20.17105 45.12600 76.23718 11.73442 110 26 - + 20.50176 45.61650 78.29787 12.05160 110 26 - + 20.83620 46.10700 80.35856 12.36879 110 26 - + 21.17378 46.59750 82.41925 12.68597 110 26 - + 21.17378 46.59750 81.68456 12.68597 110 26 - + 21.51397 47.08800 83.72688 13.00315 110 26 - + 21.85636 47.57850 85.76920 13.32033 110 25 - + 22.20063 48.06900 87.81152 13.63751 110 25 - + 22.54643 48.55950 89.85384 13.95469 110 25 - + 22.89341 49.05000 91.89616 14.27187 110 25 - + 22.89341 49.05000 91.41843 14.27187 110 25 - + 23.24128 49.54050 93.45014 14.58905 110 25 - + 23.58986 50.03100 95.48184 14.90623 110 25 - + 23.93900 50.52150 97.51354 15.22342 110 25 - + 24.28855 51.01200 99.54524 15.54060 110 24 - + 24.63836 51.50250 101.57695 15.85778 110 24 - + 24.63836 51.50250 101.25014 15.85778 110 24 - + 24.98830 51.99300 103.27530 16.17496 110 24 - + 25.33835 52.48350 105.30047 16.49214 110 24 - + 25.68846 52.97400 107.32563 16.80932 110 24 - + 26.03861 53.46450 109.35080 17.12650 110 24 - + 26.38876 53.95500 111.37597 17.44368 110 24 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9443,8 +9158,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 25.588 'Clay, sl san, moderate' - -4.00 31.688 'Sand, sl sil, moderate' + 4.00 26.951 'Clay, sl san, moderate' + -4.00 31.942 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9457,8 +9172,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 5.54 'Clay, sl san, moderate' - -4.00 12.92 'Sand, sl sil, moderate' + 4.00 5.84 'Clay, sl san, moderate' + -4.00 13.02 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -9466,7 +9181,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -9484,28 +9199,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.31600 - -0.33200 - -0.34800 - -0.36400 - -0.38000 - -0.38000 - -0.42400 - -0.46800 - -0.51200 - -0.55600 + -0.36000 + -0.42000 + -0.48000 + -0.54000 -0.60000 -0.60000 -0.65333 @@ -9642,7 +9345,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 16.60170 220000000.000 1 1 1 'Strut' + 0.25000 15.64551 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -9668,201 +9371,189 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 44.98 : Percentage mobilized resistance left - 11.15 : Percentage mobilized resistance right - 73.87 : Effective left - 90.39 : Effective right + 43.55 : Percentage mobilized resistance left + 11.20 : Percentage mobilized resistance right + 75.12 : Effective left + 90.78 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right - 164.25 : Max effective resistance left + 172.51 : Max effective resistance left 810.76 : Max effective resistance right - -778.85 : Max moment left --2888.48 : Max moment right - -319.11 : Max mobilized moment left - -319.67 : Max mobilized moment right - 22.90 : Vertical force left - 27.12 : Vertical force right - 41.0 : Max mobilized moment percentage left - 11.1 : Max mobilized moment percentage right + -805.38 : Max moment left +-2888.49 : Max moment right + -318.08 : Max mobilized moment left + -318.83 : Max mobilized moment right + 23.01 : Vertical force left + 27.16 : Vertical force right + 39.5 : Max mobilized moment percentage left + 11.0 : Max mobilized moment percentage right 0.25 : Level of single support 2 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --27.12 : Active force -22.90 : Passive force --27.12 : Plugged active force -22.90 : Plugged passive force -1.59 : Anchor force +-27.16 : Active force +23.01 : Passive force +-27.16 : Plugged active force +23.01 : Plugged passive force +1.50 : Anchor force 0.00 : Normal force 55.34 : Factor on resistance 55.34 : Plugged resistance 1.30 : Vertical balance load factor --2.63 : Resulting Vertical Force Unplugged --2.63 : Resulting Vertical Force Plugged +-2.65 : Resulting Vertical Force Unplugged +-2.65 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.00051 0.00815 1.46295 - 0.01941 0.83161 0.98672 - 0.08696 1.91358 0.51047 - 0.21369 3.17122 0.03396 - 0.40272 4.34691 -0.44305 - 0.64410 5.26567 -0.92081 - 0.64544 -11.27792 -0.92081 - 0.09915 -10.61651 -1.39943 - -0.42050 -10.21269 -1.87824 - -0.92546 -10.00941 -2.35629 - -1.42258 -9.87440 -2.83263 - -1.91278 -9.73251 -3.30628 - -1.91361 -9.74590 -3.30628 - -2.20430 -9.63299 -3.58881 - -2.49158 -9.51863 -3.86984 - -2.77540 -9.40281 -4.14920 - -3.05573 -9.28555 -4.42668 - -3.33252 -9.16683 -4.70210 - -3.33242 -9.16970 -4.70210 - -3.60557 -9.04027 -4.97527 - -3.87482 -8.90929 -5.24600 - -4.14011 -8.77674 -5.51413 - -4.40141 -8.64263 -5.77945 - -4.65865 -8.50696 -6.04181 - -4.65876 -8.50975 -6.04181 - -4.79430 -8.43315 -6.18046 - -4.92862 -8.35608 -6.31819 - -5.06170 -8.27854 -6.45497 - -5.19353 -8.20054 -6.59078 - -5.32411 -8.12207 -6.72559 - -5.32411 -8.12207 -6.72559 - -5.67643 -7.89175 -7.09097 - -6.01853 -7.65770 -7.44811 - -6.35025 -7.41992 -7.79652 - -6.67143 -7.17843 -8.13573 - -6.98190 -6.93321 -8.46524 - -6.98184 -6.93608 -8.46524 - -7.34313 -6.61133 -8.85099 - -7.68694 -6.28071 -9.22106 - -8.01297 -5.94420 -9.57478 - -8.32089 -5.60182 -9.91143 - -8.61039 -5.25356 -10.23033 - -8.61031 -5.25494 -10.23033 - -8.88055 -4.87800 -10.53081 - -9.13052 -4.49481 -10.81234 - -9.35989 -4.10535 -11.07443 - -9.56832 -3.70964 -11.31660 - -9.75547 -3.30768 -11.53834 - -9.75551 -3.30742 -11.53834 - -9.92049 -2.87815 -11.73922 - -10.06240 -2.44230 -11.91893 - -10.18088 -1.99987 -12.07722 - -10.27560 -1.55086 -12.21384 - -10.34619 -1.09528 -12.32853 - -10.34619 -1.09466 -12.32853 - -10.39175 -0.61295 -12.42108 - -10.41145 -0.12439 -12.49146 - -10.40490 0.37104 -12.53968 - -10.37175 0.87332 -12.56576 - -10.31162 1.38246 -12.56970 - -10.31162 1.38289 -12.56970 - -10.22365 1.91713 -12.55157 - -10.10700 2.45847 -12.51162 - -9.96129 3.00691 -12.45017 - -9.78614 3.56245 -12.36753 - -9.58117 4.12509 -12.26401 - -9.58116 4.12535 -12.26401 - -9.34553 4.71220 -12.13996 - -9.07840 5.30636 -11.99597 - -8.77939 5.90784 -11.83268 - -8.44810 6.51662 -11.65071 - -8.08415 7.13272 -11.45073 - -8.08415 7.16320 -11.45073 - -7.71880 7.74991 -11.25002 - -7.32455 8.34295 -11.03843 - -6.90109 8.94231 -10.81454 - -6.44810 9.54800 -10.57690 - -5.96528 10.16001 -10.32409 - -5.96528 10.19084 -10.32409 - -5.42060 10.81075 -10.04780 - -4.84612 11.34109 -9.76058 - -4.24646 11.78187 -9.46365 - -3.62628 12.13309 -9.15819 - -2.99021 12.39474 -8.84543 - -2.99021 12.39473 -8.84543 - -2.34255 12.58051 -8.52660 - -1.68757 12.67687 -8.20307 - -1.02992 12.68381 -7.87613 - -0.37423 12.60133 -7.54712 - 0.27487 12.42942 -7.21734 - 0.27514 12.42525 -7.21734 - 0.91313 12.17695 -6.88815 - 1.53594 11.83936 -6.56081 - 2.13893 11.41246 -6.23653 - 2.71749 10.89627 -5.91651 - 3.26697 10.29079 -5.60196 - 3.26669 10.28736 -5.60196 - 3.78266 9.60681 -5.29409 - 4.26106 8.83719 -4.99384 - 4.69725 7.97851 -4.70210 - 5.08662 7.03077 -4.41975 - 5.42457 5.99397 -4.14764 - 5.42490 5.98685 -4.14764 - 5.70973 4.98945 -3.88660 - 5.94070 3.90877 -3.63708 - 6.11350 2.74483 -3.39942 - 6.22534 1.58592 -3.17396 - 6.27961 0.52518 -2.96106 - 6.27899 0.51628 -2.96106 - 6.28072 -0.43341 -2.76094 - 6.23567 -1.28992 -2.57348 - 6.14850 -2.05977 -2.39851 - 6.02353 -2.74938 -2.23586 - 5.86476 -3.36509 -2.08535 - 5.86477 -3.36205 -2.08535 - 5.68473 -3.82988 -1.95144 - 5.48275 -4.24002 -1.82818 - 5.26160 -4.59769 -1.71518 - 5.02377 -4.90791 -1.61201 - 4.77152 -5.17550 -1.51827 - 4.77172 -5.17730 -1.51827 - 4.50697 -5.40655 -1.43350 - 4.23193 -5.58346 -1.35718 - 3.94977 -5.69173 -1.28878 - 3.66384 -5.73531 -1.22778 - 3.37720 -5.72132 -1.17365 - 3.37713 -5.71992 -1.17365 - 3.09255 -5.65497 -1.12586 - 2.81238 -5.54512 -1.08386 - 2.53870 -5.39591 -1.04714 - 2.27336 -5.21237 -1.01520 - 2.01796 -4.99903 -0.98752 - 2.01797 -4.99743 -0.98752 - 1.77398 -4.75829 -0.96360 - 1.54252 -4.49688 -0.94300 - 1.32461 -4.21634 -0.92532 - 1.12116 -3.91936 -0.91015 - 0.93291 -3.60827 -0.89707 - 0.93292 -3.60752 -0.89707 - 0.76058 -3.28420 -0.88571 - 0.60468 -2.95024 -0.87578 - 0.46571 -2.60693 -0.86700 - 0.34413 -2.25529 -0.85913 - 0.24031 -1.89610 -0.85190 - 0.24032 -1.89589 -0.85190 - 0.15465 -1.52967 -0.84508 - 0.08746 -1.15678 -0.83855 - 0.03908 -0.77746 -0.83221 - 0.00982 -0.39185 -0.82598 - 0.00000 -0.00001 -0.81977 + -0.00046 0.00734 -0.90955 + 0.01663 0.72547 -1.24098 + 0.07702 1.73975 -1.57243 + 0.19416 2.96723 -1.90413 + 0.37309 4.15515 -2.23629 + 0.60618 5.13353 -2.56914 + 0.60696 -10.44943 -2.56914 + 0.10457 -9.68098 -2.90279 + -0.36464 -9.12271 -3.23664 + -0.81120 -8.77450 -3.56985 + -1.24472 -8.58365 -3.90156 + -1.67038 -8.44176 -4.23093 + -1.67106 -8.45854 -4.23093 + -2.17151 -8.22224 -4.62192 + -2.65760 -7.97991 -5.00704 + -3.12898 -7.73155 -5.38502 + -3.58527 -7.47716 -5.75459 + -4.02612 -7.21673 -6.11448 + -4.02661 -7.23624 -6.11448 + -4.45177 -6.93459 -6.46344 + -4.85863 -6.62611 -6.80038 + -5.24677 -6.31080 -7.12424 + -5.61579 -5.98866 -7.43398 + -5.96527 -5.65969 -7.72856 + -5.96503 -5.66334 -7.72856 + -6.25844 -5.33859 -7.97686 + -6.53437 -5.00797 -8.21181 + -6.79252 -4.67146 -8.43285 + -7.03256 -4.32908 -8.63944 + -7.25418 -3.98082 -8.83102 + -7.25429 -3.99042 -8.83102 + -7.45709 -3.61348 -9.00707 + -7.63962 -3.23028 -9.16721 + -7.80154 -2.84083 -9.31110 + -7.94253 -2.44512 -9.43838 + -8.06224 -2.04315 -9.54871 + -8.06226 -2.04251 -9.54871 + -8.15978 -1.61324 -9.64179 + -8.23422 -1.17739 -9.71745 + -8.28525 -0.73496 -9.77559 + -8.31250 -0.28595 -9.81611 + -8.31563 0.16963 -9.83888 + -8.31552 0.16820 -9.83888 + -8.29374 0.64991 -9.84385 + -8.24608 1.13847 -9.83113 + -8.17218 1.63390 -9.80086 + -8.07167 2.13618 -9.75321 + -7.94420 2.64532 -9.68833 + -7.94424 2.64592 -9.68833 + -7.78891 3.18016 -9.60643 + -7.60490 3.72150 -9.50792 + -7.39183 4.26994 -9.39323 + -7.14931 4.82548 -9.26283 + -6.87698 5.38812 -9.11718 + -6.87697 5.38902 -9.11718 + -6.57394 5.97586 -8.95677 + -6.23942 6.57002 -8.78234 + -5.87301 7.17150 -8.59465 + -5.47433 7.78028 -8.39450 + -5.04298 8.39638 -8.18267 + -5.04298 8.39687 -8.18267 + -4.61718 8.98358 -7.97846 + -4.16248 9.57662 -7.76594 + -3.67857 10.17598 -7.54598 + -3.16513 10.78166 -7.31943 + -2.62186 11.39368 -7.08719 + -2.62173 11.39217 -7.08719 + -2.01714 11.87575 -6.83637 + -1.39687 11.99710 -6.58150 + -0.77970 11.75623 -6.32381 + -0.18440 11.15313 -6.06452 + 0.37025 10.18781 -5.80483 + 0.37023 10.17592 -5.80483 + 0.89405 10.01011 -5.54595 + 1.40529 9.69095 -5.28887 + 1.89603 9.21844 -5.03459 + 2.35829 8.59258 -4.78408 + 2.78414 7.81338 -4.53831 + 2.78402 7.81235 -4.53831 + 3.17699 7.33163 -4.29824 + 3.54215 6.73948 -4.06458 + 3.87372 6.03590 -3.83799 + 4.16594 5.22089 -3.61913 + 4.41303 4.29445 -3.40867 + 4.41339 4.28048 -3.40867 + 4.61629 3.53299 -3.20721 + 4.77803 2.69211 -3.01506 + 4.89443 1.79700 -2.83245 + 4.96489 0.93540 -2.65962 + 4.99278 0.15333 -2.49681 + 4.99237 0.14995 -2.49681 + 4.98180 -0.54596 -2.34415 + 4.93697 -1.17270 -2.20153 + 4.86134 -1.73545 -2.06880 + 4.75808 -2.23928 -1.94581 + 4.63013 -2.68922 -1.83242 + 4.63037 -2.69164 -1.83242 + 4.48056 -3.08123 -1.72842 + 4.31187 -3.41777 -1.63344 + 4.12753 -3.67986 -1.54713 + 3.93186 -3.85676 -1.46910 + 3.72904 -3.95689 -1.39901 + 3.72904 -3.95954 -1.39901 + 3.52745 -4.09888 -1.33854 + 3.31986 -4.19579 -1.28468 + 3.10872 -4.24194 -1.23704 + 2.89641 -4.24337 -1.19523 + 2.68503 -4.20571 -1.15885 + 2.68504 -4.20373 -1.15885 + 2.47651 -4.13219 -1.12750 + 2.27230 -4.03163 -1.10079 + 2.07376 -3.90650 -1.07835 + 1.88199 -3.76087 -1.05981 + 1.69795 -3.59848 -1.04480 + 1.69796 -3.59714 -1.04480 + 1.52245 -3.42131 -1.03296 + 1.35600 -3.23507 -1.02397 + 1.19907 -3.04111 -1.01753 + 1.05198 -2.84185 -1.01336 + 0.91494 -2.63941 -1.01117 + 0.91495 -2.63868 -1.01117 + 0.78810 -2.43489 -1.01066 + 0.67145 -2.23133 -1.01163 + 0.56494 -2.02939 -1.01388 + 0.46847 -1.83022 -1.01720 + 0.38186 -1.63482 -1.02141 + 0.38187 -1.63451 -1.02141 + 0.30493 -1.44366 -1.02630 + 0.23741 -1.25798 -1.03176 + 0.17904 -1.07801 -1.03769 + 0.12951 -0.90413 -1.04397 + 0.08852 -0.73665 -1.05049 + 0.08852 -0.73657 -1.05049 + 0.05574 -0.57568 -1.05715 + 0.03084 -0.42151 -1.06392 + 0.01348 -0.27414 -1.07076 + 0.00331 -0.13363 -1.07763 + 0.00000 0.00000 -1.08452 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9924,7 +9615,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=26 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -9936,9 +9627,7 @@ Q max 0.50000 0.00000 0.00000 0.00000 0.00000 0.25000 62.36900 36.11300 11.59241 0.13212 0.00000 62.52100 36.57300 26.04872 0.77275 - -0.15000 62.58900 36.78200 35.81574 1.35181 -0.30000 62.64100 36.93900 46.05149 2.01455 - -0.38000 62.66500 37.01000 51.70221 2.40223 -0.60000 62.72100 37.18000 67.92912 3.59110 -0.86667 62.77800 37.35300 88.94973 5.27362 -1.13333 62.82800 37.50200 111.45145 7.22089 @@ -9964,7 +9653,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=25 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -9977,10 +9666,8 @@ Lambda passive [DATA] 0.37500 12.25000 46.36963 0.52848 0.68545 0.04314 3.78528 0.12500 16.75000 57.82526 2.56250 0.68545 0.15298 3.45225 - -0.07500 19.61425 65.11346 3.86045 0.68545 0.19682 3.31970 - -0.22500 20.84275 68.23831 4.41827 0.68545 0.21198 3.27396 - -0.34000 21.78460 70.63401 4.84596 0.68545 0.22245 3.24238 - -0.49000 23.01310 73.75869 5.40394 0.68545 0.23482 3.20507 + -0.15000 20.22850 66.67589 4.13936 0.68545 0.20463 3.29614 + -0.45000 22.68550 72.92544 5.25515 0.68545 0.23165 3.21463 -0.73333 25.00600 78.82729 6.30945 0.68545 0.25232 3.15234 -1.00000 27.19000 84.38146 7.30226 0.68545 0.26856 3.10340 -1.26667 29.37400 89.93516 8.29553 0.68545 0.28241 3.06173 @@ -10005,7 +9692,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -10016,42 +9703,30 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 13.88390 0.00000 37.85276 6.85449 110 37 - - 19.05431 0.00000 41.25951 7.47140 110 46 - - 24.22439 0.00000 44.66626 8.08830 110 54 - - 26.08134 0.00000 48.07300 8.70521 110 54 - - 20.94633 0.00000 51.47975 9.32211 110 41 - - 15.80389 0.00000 54.88650 9.93901 110 29 - - 15.80389 0.00000 50.05768 9.93901 110 32 - - 10.65280 0.00000 53.16471 10.55592 110 20 - - 5.49980 0.00000 56.27174 11.17282 110 0 - - 2.63134 0.00000 59.37877 11.78973 1 0 A + 11.40087 0.00000 37.85276 6.85449 110 30 - + 17.32408 0.00000 41.25951 7.47140 110 42 - + 23.24703 0.00000 44.66626 8.08830 110 52 - + 25.85230 0.00000 48.07300 8.70521 110 54 - + 21.66470 0.00000 51.47975 9.32211 110 42 - + 17.47020 0.00000 54.88650 9.93901 110 32 - + 17.47020 0.00000 50.05768 9.93901 110 35 - + 13.26768 0.00000 53.16471 10.55592 110 25 - + 9.06316 0.00000 56.27174 11.17282 110 0 - + 4.86511 0.00000 59.37877 11.78973 110 0 - 2.76903 0.00000 62.48580 12.40663 1 0 A 2.90671 0.00000 65.59283 13.02354 1 0 A - 3.73956 0.00000 63.07433 13.02354 1 0 A - 3.78791 0.29430 63.88998 13.19195 1 0 A - 3.83627 0.58860 64.70563 13.36037 1 0 A - 3.88463 0.88290 65.52128 13.52878 1 0 A - 3.93299 1.17720 66.33693 13.69720 1 0 A - 3.98135 1.47150 67.15259 13.86561 1 0 A - 4.28806 1.47150 66.22728 13.86561 1 0 A - 4.34014 1.76580 67.03169 14.03403 1 0 A - 4.39223 2.06010 67.83611 14.20244 1 0 A - 4.44431 2.35440 68.64052 14.37086 1 0 A - 4.49639 2.64870 69.44493 14.53927 1 0 A - 4.54848 2.94300 70.24934 14.70769 1 0 A - 4.77308 2.94300 69.57180 14.70769 1 0 A - 4.80223 3.09996 69.99668 14.79751 1 0 A - 4.83138 3.25692 70.42157 14.88733 1 0 A - 4.86053 3.41388 70.84645 14.97715 1 0 A - 4.88968 3.57084 71.27133 15.06697 1 0 A - 4.91883 3.72780 71.69621 15.15679 1 0 A - 5.19239 3.72780 70.87124 15.15679 1 0 A - 5.27701 4.15944 72.02622 15.40380 1 0 A - 5.36163 4.59108 73.18120 15.65081 1 0 A - 5.44625 5.02272 74.33618 15.89782 1 0 A - 5.53087 5.45436 75.49116 16.14483 1 0 A - 5.61549 5.88600 76.64614 16.39183 1 0 A + 3.88797 0.00000 62.62658 13.02354 1 0 A + 3.98853 0.58860 64.24630 13.36037 1 0 A + 4.08908 1.17720 65.86602 13.69720 1 0 A + 4.18964 1.76580 67.48575 14.03403 1 0 A + 4.29019 2.35440 69.10547 14.37086 1 0 A + 4.39075 2.94300 70.72519 14.70769 1 0 A + 4.97056 2.94300 68.97627 14.70769 1 0 A + 5.08440 3.53160 70.55594 15.04452 1 0 A + 5.19823 4.12020 72.13561 15.38135 1 0 A + 5.31206 4.70880 73.71528 15.71818 1 0 A + 5.42590 5.29740 75.29494 16.05501 1 0 A + 5.53973 5.88600 76.87461 16.39183 1 0 A 6.03392 5.88600 75.38494 16.39183 1 0 A 6.14413 6.40920 76.76188 16.69124 1 0 A 6.25434 6.93240 78.13882 16.99064 1 0 A @@ -10126,46 +9801,46 @@ Status character 17.41425 36.69758 141.78239 34.02394 1 0 A 17.63270 36.69758 141.12859 34.02394 1 0 A 17.78350 37.20606 142.33557 34.31492 1 0 A - 17.93430 37.71455 143.54254 34.60591 1 0 A - 18.08510 38.22303 144.74952 34.89689 1 0 A - 18.23590 38.73152 145.95649 35.18787 1 0 A - 18.38670 39.24000 147.16347 35.47886 1 0 A + 18.27149 37.71455 143.54254 34.60591 110 0 - + 19.42564 38.22303 144.74952 34.89689 110 0 - + 20.49684 38.73152 145.95649 35.18787 110 0 - + 21.48876 39.24000 147.16347 35.47886 110 0 - 18.82148 39.24000 218.43046 32.22236 1 0 A - 19.00674 39.73050 220.58058 32.53954 1 0 A - 19.19201 40.22100 222.73071 32.85672 1 0 A - 19.37728 40.71150 224.88083 33.17390 1 0 A - 19.56255 41.20200 227.03095 33.49108 1 0 A - 19.74782 41.69250 229.18107 33.80826 1 0 A - 19.75391 41.69250 224.54324 33.80826 1 0 A - 19.93924 42.18300 226.64985 34.12545 1 0 A - 20.87087 42.67350 228.75647 34.44263 110 0 - - 21.87202 43.16400 230.86308 34.75981 110 0 - - 22.79920 43.65450 232.96969 35.07699 110 0 - - 23.65764 44.14500 235.07630 35.39417 110 0 - - 23.65764 44.14500 232.22898 35.39417 110 0 - - 24.45279 44.63550 234.31008 35.71135 110 0 - - 25.18997 45.12600 236.39117 36.02853 110 0 - - 25.87431 45.61650 238.47227 36.34571 110 0 - - 26.51091 46.10700 240.55336 36.66289 110 0 - - 27.10488 46.59750 242.63446 36.98008 110 0 - - 27.10488 46.59750 240.69516 36.98008 110 0 - - 27.66127 47.08800 242.75962 37.29726 110 0 - - 28.18443 47.57850 244.82408 37.61444 110 0 - - 28.67843 48.06900 246.88854 37.93162 110 0 - - 29.14734 48.55950 248.95300 38.24880 110 0 - - 29.59525 49.05000 251.01747 38.56598 110 0 - - 29.59525 49.05000 249.61309 38.56598 110 0 - - 30.02604 49.54050 251.66600 38.88316 110 0 - - 30.44259 50.03100 253.71891 39.20034 110 0 - - 30.84751 50.52150 255.77182 39.51752 110 0 - - 31.24340 51.01200 257.82473 39.83471 110 0 - - 31.63287 51.50250 259.87764 40.15189 110 0 - - 31.63287 51.50250 258.81776 40.15189 110 0 - - 32.01825 51.99300 260.86230 40.46907 110 0 - - 32.40077 52.48350 262.90684 40.78625 110 0 - - 32.78132 52.97400 264.95138 41.10343 110 0 - - 33.16081 53.46450 266.99592 41.42061 110 0 - - 33.54014 53.95500 269.04046 41.73779 110 0 - + 19.15415 39.73050 220.58058 32.53954 110 0 - + 20.00992 40.22100 222.73071 32.85672 110 0 - + 20.80349 40.71150 224.88083 33.17390 110 0 - + 21.53880 41.20200 227.03095 33.49108 110 0 - + 22.21978 41.69250 229.18107 33.80826 110 0 - + 22.21978 41.69250 224.54324 33.80826 110 0 - + 22.85046 42.18300 226.64985 34.12545 110 0 - + 23.43473 42.67350 228.75647 34.44263 110 0 - + 23.97630 43.16400 230.86308 34.75981 110 0 - + 24.47886 43.65450 232.96969 35.07699 110 0 - + 24.94614 44.14500 235.07630 35.39417 110 0 - + 24.94614 44.14500 232.22898 35.39417 110 0 - + 25.38178 44.63550 234.31008 35.71135 110 0 - + 25.78888 45.12600 236.39117 36.02853 110 0 - + 26.17040 45.61650 238.47227 36.34571 110 0 - + 26.52926 46.10700 240.55336 36.66289 110 0 - + 26.86841 46.59750 242.63446 36.98008 110 0 - + 26.86841 46.59750 240.69516 36.98008 110 0 - + 27.19064 47.08800 242.75962 37.29726 110 0 - + 27.49811 47.57850 244.82408 37.61444 110 0 - + 27.79282 48.06900 246.88854 37.93162 110 0 - + 28.07676 48.55950 248.95300 38.24880 110 0 - + 28.35193 49.05000 251.01747 38.56598 110 0 - + 28.35193 49.05000 249.61309 38.56598 110 0 - + 28.62017 49.54050 251.66600 38.88316 110 0 - + 28.88270 50.03100 253.71891 39.20034 110 0 - + 29.14062 50.52150 255.77182 39.51752 110 0 - + 29.39503 51.01200 257.82473 39.83471 110 0 - + 29.64703 51.50250 259.87764 40.15189 110 0 - + 29.64703 51.50250 258.81776 40.15189 110 0 - + 29.89757 51.99300 260.86230 40.46907 110 0 - + 30.14706 52.48350 262.90684 40.78625 110 0 - + 30.39585 52.97400 264.95138 41.10343 110 0 - + 30.64427 53.46450 266.99592 41.42061 110 0 - + 30.89263 53.95500 269.04046 41.73779 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10178,8 +9853,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 50.930 'Clay, sl san, moderate' - -4.00 39.458 'Sand, sl sil, moderate' + 4.00 51.546 'Clay, sl san, moderate' + -4.00 39.234 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -10192,8 +9867,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 -11.03 'Clay, sl san, moderate' - -4.00 -16.08 'Sand, sl sil, moderate' + 4.00 -11.17 'Clay, sl san, moderate' + -4.00 -15.99 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -10266,18 +9941,18 @@ Q max [END OF COLUMN INDICATION] [DATA] -2.44500 0.00000 0.00000 0.00000 0.00000 - -2.70417 61.99700 0.00000 1.20993 0.00000 - -2.96333 61.99700 0.00000 4.83971 0.00000 - -3.22250 61.99700 0.00000 10.88935 0.00000 - -3.48167 61.99800 0.00000 19.34866 0.00000 - -3.74083 62.04700 0.00000 29.58509 0.00000 - -4.00000 62.12300 0.00000 41.22316 0.00000 - -4.25000 65.05700 36.16100 56.02590 0.45422 - -4.50000 66.51400 36.83600 72.89966 1.94777 - -4.75000 67.41900 37.39600 92.09343 3.67603 - -5.00000 68.03300 37.85500 113.69284 5.63868 - -5.25000 68.47300 38.23200 137.73881 7.83533 - -5.50000 68.80000 38.54000 164.25394 10.26564 + -2.70417 60.65200 0.00000 4.61820 0.00000 + -2.96333 60.95800 0.00000 10.64522 0.00000 + -3.22250 61.21200 0.00000 18.07830 0.00000 + -3.48167 61.42600 0.00000 26.91552 0.00000 + -3.74083 61.61000 0.00000 37.15552 0.00000 + -4.00000 61.76900 0.00000 48.79731 0.00000 + -4.25000 64.46600 0.00000 63.76574 0.00000 + -4.50000 65.93300 0.00000 80.79157 0.00000 + -4.75000 66.89100 36.42700 100.10845 1.16390 + -5.00000 67.56600 36.96400 121.80605 3.11890 + -5.25000 68.06200 37.41900 145.93047 5.30874 + -5.50000 68.44000 37.80400 172.50873 7.73308 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -10294,24 +9969,24 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -2.57458 1.06129 4.66853 0.00000 0.68545 0.00000 4.39893 - -2.83375 3.18386 14.00560 0.00000 0.68545 0.00000 4.39893 - -3.09292 5.30644 23.34266 0.00000 0.68545 0.00000 4.39893 - -3.35208 7.42901 32.64043 0.00000 0.68545 0.00000 4.39364 - -3.61125 9.55159 39.49748 0.00000 0.68545 0.00000 4.13517 - -3.87042 11.67416 44.90572 0.00000 0.68545 0.00000 3.84659 - -4.12500 14.00920 59.21095 1.81688 0.62253 0.12969 4.22658 - -4.37500 16.55670 67.49507 5.97419 0.62253 0.36083 4.07660 - -4.62500 19.10420 76.77505 6.91305 0.62253 0.36186 4.01875 - -4.87500 21.65170 86.39763 7.85059 0.62253 0.36259 3.99034 - -5.12500 24.19920 96.18389 8.78662 0.62253 0.36310 3.97467 - -5.37500 26.74670 106.06052 9.72124 0.62253 0.36346 3.96537 + -2.57458 1.06129 17.81943 0.00000 0.68545 0.00000 16.79039 + -2.83375 3.18386 23.25539 0.00000 0.68545 0.00000 7.30414 + -3.09292 5.30644 28.68068 0.00000 0.68545 0.00000 5.40488 + -3.35208 7.42901 34.09860 0.00000 0.68545 0.00000 4.58992 + -3.61125 9.55159 39.51127 0.00000 0.68545 0.00000 4.13662 + -3.87042 11.67416 44.92008 0.00000 0.68545 0.00000 3.84782 + -4.12500 14.00920 59.87372 0.00000 0.62253 0.00000 4.27389 + -4.37500 16.55670 68.10334 0.00000 0.62253 0.00000 4.11334 + -4.62500 19.10420 77.26753 4.65562 0.62253 0.24370 4.04453 + -4.87500 21.65170 86.79036 7.81997 0.62253 0.36117 4.00848 + -5.12500 24.19920 96.49769 8.75938 0.62253 0.36197 3.98764 + -5.37500 26.74670 106.31305 9.69736 0.62253 0.36256 3.97481 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -10335,28 +10010,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.09996 0.00000 0.00000 -1 0 - - 0.00000 3.25692 0.00000 0.00000 -1 0 - - 0.00000 3.41388 0.00000 0.00000 -1 0 - - 0.00000 3.57084 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 3.72780 0.00000 0.00000 -1 0 - - 0.00000 4.15944 0.00000 0.00000 -1 0 - - 0.00000 4.59108 0.00000 0.00000 -1 0 - - 0.00000 5.02272 0.00000 0.00000 -1 0 - - 0.00000 5.45436 0.00000 0.00000 -1 0 - + 0.00000 3.53160 0.00000 0.00000 -1 0 - + 0.00000 4.12020 0.00000 0.00000 -1 0 - + 0.00000 4.70880 0.00000 0.00000 -1 0 - + 0.00000 5.29740 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -10400,78 +10063,78 @@ Status character 0.00000 23.02407 0.00000 0.00000 -1 0 - 0.00000 23.50476 0.00000 0.00000 -1 0 - 0.00000 23.98545 0.00000 0.00000 -1 0 - - 0.00000 23.98545 0.00000 0.00000 202 100 P - 1.86741 24.49394 1.86741 0.29098 202 100 P - 3.73483 25.00242 3.73483 0.58197 202 100 P - 5.60224 25.51091 5.60224 0.87295 202 100 P - 7.46965 26.01939 7.46965 1.16393 202 100 P - 9.33707 26.52788 9.33707 1.45492 202 100 P - 9.33707 26.52788 9.33707 1.45492 202 100 P - 11.20448 27.03636 11.20448 1.74590 202 100 P - 13.07189 27.54485 13.07189 2.03688 202 100 P - 14.93930 28.05333 14.93930 2.32787 202 100 P - 16.80672 28.56182 16.80672 2.61885 202 100 P - 18.67413 29.07030 18.67413 2.90984 202 100 P - 18.67413 29.07030 18.67413 2.90984 202 100 P - 20.54154 29.57878 20.54154 3.20082 202 100 P - 22.40896 30.08727 22.40896 3.49180 202 100 P - 24.27637 30.59576 24.27637 3.78279 202 100 P - 26.14378 31.10424 26.14378 4.07377 202 100 P - 28.01120 31.61273 28.01120 4.36475 202 100 P - 27.97751 31.61273 27.97751 4.36475 202 100 P - 29.84268 32.12121 29.84268 4.65574 202 100 P - 31.70784 32.62969 31.70784 4.94672 202 100 P - 33.57301 33.13818 33.57301 5.23770 202 100 P - 35.43818 33.64666 35.43818 5.52869 202 100 P - 37.30335 34.15515 37.30335 5.81967 202 100 P - 35.10887 34.15515 35.10887 5.81967 202 100 P - 36.86431 34.66363 36.86431 6.11065 202 100 P - 38.61975 35.17212 38.61975 6.40164 202 100 P - 40.37520 35.68060 40.37520 6.69262 202 100 P - 38.72323 36.18909 42.13064 6.98360 110 92 - - 36.88523 36.69758 43.88608 7.27459 110 84 - - 36.88523 36.69758 40.82338 7.27459 110 90 - - 35.17501 37.20606 42.45632 7.56557 110 83 - - 33.59138 37.71455 44.08925 7.85655 110 76 - - 32.13264 38.22303 45.72219 8.14754 110 70 - - 30.79708 38.73152 47.35512 8.43852 110 65 - - 29.58300 39.24000 48.98806 8.72951 110 60 - - 28.78174 39.24000 53.82735 7.92825 110 53 - - 27.75980 39.73050 55.98079 8.24543 110 50 - - 26.84446 40.22100 58.13423 8.56261 110 46 - - 26.03159 40.71150 60.28767 8.87979 110 43 - - 25.31709 41.20200 62.44112 9.19697 110 41 - - 24.69682 41.69250 64.59456 9.51416 110 38 - - 24.69682 41.69250 62.30250 9.51416 110 40 - - 24.16630 42.18300 64.37953 9.83134 110 38 - - 23.72027 42.67350 66.45656 10.14852 110 36 - - 23.35348 43.16400 68.53359 10.46570 110 34 - - 23.06067 43.65450 70.61062 10.78288 110 33 - - 22.83659 44.14500 72.68764 11.10006 110 31 - - 22.83659 44.14500 71.65616 11.10006 110 32 - - 22.67581 44.63550 73.70372 11.41724 110 31 - - 22.57298 45.12600 75.75127 11.73442 110 30 - - 22.52301 45.61650 77.79883 12.05160 110 29 - - 22.52077 46.10700 79.84638 12.36879 110 28 - - 22.56116 46.59750 81.89394 12.68597 110 28 - - 22.56116 46.59750 81.31494 12.68597 110 28 - - 22.63913 47.08800 83.34802 13.00315 110 27 - - 22.75034 47.57850 85.38110 13.32033 110 27 - - 22.89070 48.06900 87.41417 13.63751 110 26 - - 23.05615 48.55950 89.44725 13.95469 110 26 - - 23.24260 49.05000 91.48033 14.27187 110 25 - - 23.24260 49.05000 91.12115 14.27187 110 26 - - 23.44618 49.54050 93.14625 14.58905 110 25 - - 23.66399 50.03100 95.17134 14.90623 110 25 - - 23.89343 50.52150 97.19644 15.22342 110 25 - - 24.13190 51.01200 99.22153 15.54060 110 24 - - 24.37679 51.50250 101.24663 15.85778 110 24 - - 24.37679 51.50250 101.00964 15.85778 110 24 - - 24.62577 51.99300 103.02999 16.17496 110 24 - - 24.87762 52.48350 105.05035 16.49214 110 24 - - 25.13143 52.97400 107.07070 16.80932 110 23 - - 25.38631 53.46450 109.09106 17.12650 110 23 - - 25.64134 53.95500 111.11141 17.44368 110 23 - + 0.00002 23.98545 0.00002 0.00000 202 100 P + 7.12777 24.49394 7.12777 0.29098 202 100 P + 14.25554 25.00242 14.25554 0.58197 202 100 P + 21.38331 25.51091 21.38331 0.87295 202 100 P + 28.51108 26.01939 28.51108 1.16393 202 100 P + 35.63885 26.52788 35.63885 1.45492 202 100 P + 15.50359 26.52788 15.50359 1.45492 202 100 P + 18.60431 27.03636 18.60431 1.74590 202 100 P + 21.70503 27.54485 21.70503 2.03688 202 100 P + 24.80575 28.05333 24.80575 2.32787 202 100 P + 27.90647 28.56182 27.90647 2.61885 202 100 P + 31.00719 29.07030 31.00719 2.90984 202 100 P + 22.94454 29.07030 22.94454 2.90984 202 100 P + 25.23900 29.57878 25.23900 3.20082 202 100 P + 27.53345 30.08727 27.53345 3.49180 202 100 P + 29.82791 30.59576 29.82791 3.78279 202 100 P + 32.12236 31.10424 32.12236 4.07377 202 100 P + 34.41682 31.61273 34.41682 4.36475 202 100 P + 29.22737 31.61273 29.22737 4.36475 202 100 P + 31.17586 32.12121 31.17586 4.65574 202 100 P + 33.12436 32.62969 33.12436 4.94672 202 100 P + 33.56221 33.13818 35.07285 5.23770 110 96 - + 32.12492 33.64666 37.02134 5.52869 110 87 - + 30.78775 34.15515 38.96983 5.81967 110 79 - + 30.78775 34.15515 35.12113 5.81967 110 88 - + 29.55212 34.66363 36.87718 6.11065 110 80 - + 28.41690 35.17212 38.63324 6.40164 110 74 - + 27.38061 35.68060 40.38929 6.69262 110 68 - + 26.44175 36.18909 42.14535 6.98360 110 63 - + 25.59884 36.69758 43.90141 7.27459 110 58 - + 25.59884 36.69758 40.83643 7.27459 110 63 - + 24.84976 37.20606 42.46989 7.56557 110 59 - + 24.19097 37.71455 44.10335 7.85655 110 55 - + 23.61879 38.22303 45.73681 8.14754 110 52 - + 23.12955 38.73152 47.37026 8.43852 110 49 - + 22.71960 39.24000 49.00372 8.72951 110 46 - + 21.91835 39.24000 54.42985 7.92825 110 40 - + 21.63082 39.73050 56.60740 8.24543 110 38 - + 21.40942 40.22100 58.78494 8.56261 110 36 - + 21.25021 40.71150 60.96249 8.87979 110 35 - + 21.14926 41.20200 63.14003 9.19697 110 33 - + 21.10264 41.69250 65.31758 9.51416 110 32 - + 21.10264 41.69250 62.86397 9.51416 110 34 - + 21.10632 42.18300 64.95972 9.83134 110 32 - + 21.15641 42.67350 67.05546 10.14852 110 32 - + 21.24921 43.16400 69.15121 10.46570 110 31 - + 21.38101 43.65450 71.24696 10.78288 110 30 - + 21.54809 44.14500 73.34270 11.10006 110 29 - + 21.54809 44.14500 72.11581 11.10006 110 30 - + 21.74682 44.63550 74.17649 11.41724 110 29 - + 21.97407 45.12600 76.23718 11.73442 110 29 - + 22.22692 45.61650 78.29787 12.05160 110 28 - + 22.50242 46.10700 80.35856 12.36879 110 28 - + 22.79763 46.59750 82.41925 12.68597 110 28 - + 22.79763 46.59750 81.68456 12.68597 110 28 - + 23.10976 47.08800 83.72688 13.00315 110 28 - + 23.43665 47.57850 85.76920 13.32033 110 27 - + 23.77631 48.06900 87.81152 13.63751 110 27 - + 24.12673 48.55950 89.85384 13.95469 110 27 - + 24.48592 49.05000 91.89616 14.27187 110 27 - + 24.48592 49.05000 91.41843 14.27187 110 27 - + 24.85205 49.54050 93.45014 14.58905 110 27 - + 25.22388 50.03100 95.48184 14.90623 110 26 - + 25.60032 50.52150 97.51354 15.22342 110 26 - + 25.98027 51.01200 99.54524 15.54060 110 26 - + 26.36263 51.50250 101.57695 15.85778 110 26 - + 26.36263 51.50250 101.25014 15.85778 110 26 - + 26.74646 51.99300 103.27530 16.17496 110 26 - + 27.13133 52.48350 105.30047 16.49214 110 26 - + 27.51690 52.97400 107.32563 16.80932 110 26 - + 27.90285 53.46450 109.35080 17.12650 110 26 - + 28.28884 53.95500 111.37597 17.44368 110 25 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10484,8 +10147,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 37.776 'Clay, sl san, moderate' - -4.00 36.098 'Sand, sl sil, moderate' + 4.00 39.845 'Clay, sl san, moderate' + -4.00 35.279 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -10498,8 +10161,8 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 8.18 'Clay, sl san, moderate' - -4.00 14.71 'Sand, sl sil, moderate' + 4.00 8.63 'Clay, sl san, moderate' + -4.00 14.38 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF VERTICAL BALANCE PER LAYER] @@ -10523,15 +10186,15 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 0.17478 0.68237 -1.02942 0.00000 15.72981 1 3 0 1.000 2 0 - 0.48428 1.31226 -1.23815 0.00000 16.49865 1 10 12 1.000 2 0 - 0.83307 1.79927 -1.99818 0.00000 27.16582 1 11 13 1.000 2 0 - -1.03676 -6.06123 -1.33612 16.50641 17.67898 2 3 0 1.000 0 0 - -1.78530 -8.54717 -1.46390 17.97976 19.35650 2 10 12 1.000 0 0 - -3.81006 6.22252 -4.06594 32.33529 34.87053 2 11 13 1.000 0 0 - -3.44634 -7.23719 -4.84403 20.07108 22.25981 3 3 0 1.000 0 0 - -7.61686 11.59977 -5.78676 22.12261 24.49334 3 10 12 1.000 0 0 - -10.41145 12.68381 -12.56970 40.97194 44.97558 3 11 13 1.000 0 0 + 0.18691 0.66476 -1.05750 0.00000 15.71818 1 3 0 1.000 2 0 + 0.32462 1.02614 -1.01265 0.00000 15.83390 1 10 12 1.000 2 0 + 1.79037 3.45196 -4.06371 0.00000 29.46843 1 11 13 1.000 2 0 + -1.03016 -6.05759 -1.33691 16.50599 17.67830 2 3 0 1.000 0 0 + -1.99248 -8.66153 -1.24618 16.56350 17.77018 2 10 12 1.000 0 0 + -2.76573 -6.15677 -3.65568 31.69959 34.13909 2 11 13 1.000 0 0 + -3.43651 -7.22488 -4.83933 20.06946 22.25698 3 3 0 1.000 0 0 + -5.27078 -10.90609 -3.23614 19.97096 22.05707 3 10 12 1.000 0 0 + -8.31563 11.99710 -9.84385 39.49441 43.54789 3 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -10555,9 +10218,9 @@ AnchorName 2 3 7 0 1.000 10.00000 1 1 0 0 'Strut' 2 10 7 12 1.000 13.50000 1 1 0 0 'Strut' 2 11 7 13 1.000 10.00000 1 1 0 0 'Strut' - 3 3 7 0 1.000 12.73094 1 1 0 0 'Strut' - 3 10 7 12 1.000 17.90899 1 1 0 0 'Strut' - 3 11 7 13 1.000 16.60170 1 1 0 0 'Strut' + 3 3 7 0 1.000 12.72222 1 1 0 0 'Strut' + 3 10 7 12 1.000 17.24015 1 1 0 0 'Strut' + 3 11 7 13 1.000 15.64551 1 1 0 0 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -10569,19 +10232,40 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Strut' 17.90899 +'Strut' 17.24015 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] +[MAXIMUM ANCHOR FORCE BE SET 1] +[TABLE] +DataCount=1 +[COLUMN INDICATION] +AnchorName +Force +[END OF COLUMN INDICATION] +[DATA] +'Strut' 17.24015 +[END OF DATA] +[END OF TABLE] +[END OF MAXIMUM ANCHOR FORCE BE SET 1] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-10.41145 -MaximumShearForce=12.68381 -MaximumDisplacement=-4.84403 -MaximumPercentageMobilisedMoment=40.97194 -MaximumPercentageMobilisedResistance=44.97558 +MaximumMoment=-8.31563 +MaximumShearForce=11.99710 +MaximumDisplacement=-4.83933 +MaximumPercentageMobilisedMoment=39.49441 +MaximumPercentageMobilisedResistance=43.54789 VerticalBalanceSummary=2 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-5.27078 +MaximumShearForce=-10.90609 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=19.97096 +MaximumPercentageMobilisedResistance=22.05707 +VerticalBalanceSummary=2 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [FACTORS FOR OVERALL STABILITY] [TABLE] DataCount=6 @@ -10595,12 +10279,12 @@ Factor on driving moment Factor on unit weight stability [END OF COLUMN INDICATION] [DATA] - 1 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 2 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 3 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 1 13 'EC7-BE-Set2' 1.250 1.250 1.000 1.000 - 2 13 'EC7-BE-Set2' 1.250 1.250 1.000 1.000 - 3 13 'EC7-BE-Set2' 1.250 1.250 1.000 1.000 + 1 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 2 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 3 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 1 13 'EC7-BE-RC2-Set2' 1.250 1.250 1.000 1.000 + 2 13 'EC7-BE-RC2-Set2' 1.250 1.250 1.000 1.000 + 3 13 'EC7-BE-RC2-Set2' 1.250 1.250 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR OVERALL STABILITY] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shi index 441af47b..f085fb95 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects13.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:28 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects13.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:41 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects13.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -673,6 +673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -682,6 +683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -691,6 +693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -714,7 +717,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -725,8 +728,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -737,7 +742,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -756,6 +761,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -783,6 +789,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -810,6 +817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -837,6 +845,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,6 +873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -891,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -918,6 +929,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -945,6 +957,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -955,7 +968,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -970,8 +1039,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -981,8 +1051,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -999,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1008,7 +1079,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1026,6 +1153,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1053,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1080,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shd index edf2b865..06c619e0 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:38 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects14.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:49 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects14.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1317,6 +1317,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1326,6 +1327,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1335,6 +1337,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1344,6 +1347,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1353,6 +1357,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1376,7 +1381,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1387,8 +1392,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1399,7 +1406,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1418,6 +1425,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1445,6 +1453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1472,6 +1481,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1499,6 +1509,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1526,6 +1537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1553,6 +1565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1580,6 +1593,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1607,6 +1621,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1617,7 +1632,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1632,8 +1703,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1643,8 +1715,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1661,6 +1733,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1670,7 +1743,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1688,6 +1817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1715,6 +1845,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1742,6 +1873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1773,7 +1905,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1805,7 +1937,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=8 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -1815,6 +1947,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1833,8 +1966,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 100.00 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 - -1 13 1.400 1.250 0.000 0.00 100.00 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 1 13 1.400 1.250 0.000 0.00 100.00 0.30 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 2 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 2 13 1.400 1.250 0.000 0.00 100.00 0.30 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 3 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 3 13 1.400 1.250 0.000 0.00 100.00 0.30 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 4 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.200 0.000 0.000 1.100 1.000 1.000 + 4 13 1.400 1.250 0.000 0.00 100.00 0.30 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.200 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1953,8 +2092,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 23.89 : Percentage mobilized resistance left 25.30 : Percentage mobilized resistance right -12611.42 : Effective left -12610.56 : Effective right +12612.27 : Effective left +12609.48 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 52788.61 : Max effective resistance left @@ -1963,8 +2102,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 858.63 : Vertical force left - 854.55 : Vertical force right + 858.72 : Vertical force left + 854.45 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -1981,58 +2120,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.90696 -3.15465 -0.38011 - -5.39980 -10.14313 -0.02471 - -6.38126 -12.70176 -0.02471 - -13.32448 -13.67874 0.13050 - -13.23300 -13.13303 0.13050 - -3.88888 38.20688 0.55628 - -3.91574 38.19609 0.55628 - 73.33298 122.21944 0.87211 - 73.33946 122.27439 0.87211 - 150.81205 52.85975 1.12852 - 150.81013 52.89934 1.12852 - 225.02926 115.95385 1.34184 - 225.03455 115.97832 1.34184 - 243.05462 33.70428 1.38990 - 243.00020 33.97683 1.38990 - 259.41698 4.97044 1.51200 - 259.00954 6.59866 1.51200 - 240.25945 -42.71864 1.57972 - 240.33946 -40.24155 1.57972 - 176.24866 -64.28205 1.48483 - 176.38161 -62.43013 1.48483 - 98.50909 -63.43177 1.26952 - 98.64584 -62.37160 1.26952 - 27.16225 -54.35043 0.98609 - 27.27480 -54.02204 0.98609 - -19.29463 -21.01175 0.65197 - -19.26531 -21.09186 0.65197 - 28.93976 62.26242 0.32680 - 28.87431 62.35365 0.32680 - 84.61733 57.03409 0.12974 - 84.12746 59.16607 0.12974 - 77.42529 -81.35424 -0.08977 - 77.94372 -79.36349 -0.08977 - -85.38050 -182.45260 -0.43998 - -85.17035 -183.07943 -0.43998 - -392.16824 -313.18400 -0.72583 - -392.07103 -315.82251 -0.72583 - -409.55696 295.92602 -0.78975 - -409.54677 293.27171 -0.78975 - -108.22407 152.75044 -0.58881 - -108.49565 152.17316 -0.58881 - 24.66163 49.79183 -0.30307 - 24.56842 50.13508 -0.30307 - 47.08728 -10.20057 -0.02795 - 47.13695 -9.92776 -0.02795 - 32.66284 -12.57426 0.19569 - 32.66468 -12.54937 0.19569 - 17.18202 -11.61753 0.39919 - 17.18372 -11.60395 0.39919 - 4.96029 -7.37689 0.59191 - 4.96135 -7.37216 0.59191 - -0.00020 -0.00066 0.78118 + 0.90700 -3.15478 -0.38015 + -5.40035 -10.14438 -0.02473 + -6.38185 -12.70313 -0.02473 + -13.32613 -13.68140 0.13048 + -13.23464 -13.13568 0.13048 + -3.89476 38.20367 0.55628 + -3.92162 38.19285 0.55628 + 73.32437 122.21747 0.87213 + 73.33085 122.27241 0.87213 + 150.80182 52.85810 1.12856 + 150.79990 52.89769 1.12856 + 225.01780 115.95275 1.34190 + 225.02310 115.97721 1.34190 + 243.04292 33.70327 1.38996 + 242.98849 33.97581 1.38996 + 259.40765 4.97780 1.51208 + 259.00021 6.60601 1.51208 + 240.27298 -42.69117 1.57985 + 240.35291 -40.21387 1.57985 + 176.31741 -64.22763 1.48499 + 176.45022 -62.37491 1.48499 + 98.67222 -63.34885 1.26966 + 98.80876 -62.28689 1.26966 + 27.45260 -54.25224 0.98610 + 27.56459 -53.92009 0.98610 + -18.87053 -20.94762 0.65160 + -18.84249 -21.01921 0.65160 + 29.28257 62.03391 0.32570 + 29.21983 62.12208 0.32570 + 84.62639 56.47450 0.12809 + 84.14113 59.01554 0.12809 + 77.17304 -81.86631 -0.09197 + 77.68676 -79.46527 -0.09197 + -85.95799 -182.86503 -0.44283 + -85.74741 -183.49568 -0.44283 + -393.48677 -313.95975 -0.72897 + -393.38600 -315.50249 -0.72897 + -410.56604 296.05999 -0.79229 + -410.55642 294.25040 -0.79229 + -108.08305 153.48358 -0.59002 + -108.35851 152.45162 -0.59002 + 25.10820 49.99306 -0.30303 + 25.01389 50.04271 -0.30303 + 47.43725 -10.22747 -0.02699 + 47.48805 -10.04921 -0.02699 + 32.87306 -12.67669 0.19728 + 32.87491 -12.65163 0.19728 + 17.28076 -11.69243 0.40128 + 17.28247 -11.67877 0.40128 + 4.98626 -7.41745 0.59442 + 4.98733 -7.41270 0.59442 + -0.00021 -0.00066 0.78411 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2193,57 +2332,57 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 1 0 A - 10.11805 0.00000 67.10829 10.67449 110 0 - - 10.11805 0.00000 67.10829 10.67449 110 0 - - 18.25483 0.00000 96.28581 15.31557 110 19 - - 18.25483 0.00000 96.28581 15.31557 110 19 - - 40.37558 0.00000 175.06511 27.84648 110 23 - - 40.37558 0.00000 175.06511 27.84648 110 23 - - 52.40332 10.00000 205.95896 32.76057 110 25 - - 61.33163 10.00000 108.28286 60.00000 110 57 - - 67.00314 18.80000 117.81176 65.28000 110 57 - - 67.00314 18.80000 112.35674 65.28000 110 60 - - 72.60885 27.60000 121.44442 70.56000 110 60 - - 72.60885 27.60000 118.33139 70.56000 110 61 - - 74.12223 30.00000 120.74631 72.00000 110 61 - - 78.89263 30.00000 362.35409 32.78599 110 22 - - 86.58589 38.00000 402.61565 36.42888 110 22 - - 86.58589 38.00000 393.87776 36.42888 110 22 - - 95.03670 51.62500 460.96007 42.63317 110 21 - - 95.03670 51.62500 458.09116 42.63317 110 21 - - 98.09329 65.25000 524.75596 48.83746 110 19 - - 98.09329 65.25000 523.76154 48.83746 110 19 - - 97.15524 78.87500 590.30001 55.04176 110 16 - - 97.15524 78.87500 589.83653 55.04176 110 16 - - 93.95747 92.50000 656.32275 61.24605 110 14 - - 93.95747 92.50000 656.06217 61.24605 110 14 - - 89.70410 107.50000 729.22896 68.07646 110 12 - - 89.70410 107.50000 729.06908 68.07646 110 12 - - 85.74759 122.50000 802.21983 74.90688 110 11 - - 85.74759 122.50000 802.13653 74.90688 110 11 - - 83.19523 131.25000 844.80337 78.89129 110 10 - - 83.19523 131.25000 844.75901 78.89129 110 10 - - 79.89779 140.00000 887.42360 82.87570 110 0 - - 180.95303 140.00000 505.58052 182.00000 110 0 - - 187.10866 152.80000 534.02637 192.24000 110 0 - - 187.10866 152.80000 510.00423 192.24000 110 0 - - 193.77483 165.30000 536.53379 202.24000 110 0 - - 193.77483 165.30000 514.04920 202.24000 110 0 - - 203.96927 178.97500 541.85625 213.18000 110 0 - - 203.96927 178.97500 520.38773 213.18000 110 0 - - 217.25282 192.65000 547.09306 224.12000 110 0 - - 217.25282 192.65000 527.37325 224.12000 110 0 - - 231.52541 206.32500 553.11599 235.06000 110 0 - - 231.52541 206.32500 534.86965 235.06000 110 0 - - 245.67398 220.00000 559.76319 246.00000 110 0 - - 245.67398 220.00000 543.46621 246.00000 110 0 - - 258.28231 232.50000 565.55833 256.00000 110 46 - - 258.28231 232.50000 550.95235 256.00000 110 47 - - 270.65572 245.00000 572.47392 266.00000 110 47 - - 270.65572 245.00000 558.68012 266.00000 110 48 - - 282.90327 257.50000 579.68313 276.00000 110 49 - - 282.90327 257.50000 566.61384 276.00000 110 50 - - 295.11069 270.00000 587.14333 286.00000 110 50 - + 10.11757 0.00000 67.10829 10.67449 110 0 - + 10.11757 0.00000 67.10829 10.67449 110 0 - + 18.25451 0.00000 96.28581 15.31557 110 19 - + 18.25451 0.00000 96.28581 15.31557 110 19 - + 40.37570 0.00000 175.06511 27.84648 110 23 - + 40.37570 0.00000 175.06511 27.84648 110 23 - + 52.40382 10.00000 205.95896 32.76057 110 25 - + 61.33166 10.00000 108.28286 60.00000 110 57 - + 67.00320 18.80000 117.81176 65.28000 110 57 - + 67.00320 18.80000 112.35674 65.28000 110 60 - + 72.60894 27.60000 121.44442 70.56000 110 60 - + 72.60894 27.60000 118.33139 70.56000 110 61 - + 74.12233 30.00000 120.74631 72.00000 110 61 - + 78.89481 30.00000 362.35409 32.78599 110 22 - + 86.58880 38.00000 402.61565 36.42888 110 22 - + 86.58880 38.00000 393.87776 36.42888 110 22 - + 95.04098 51.62500 460.96007 42.63317 110 21 - + 95.04098 51.62500 458.09116 42.63317 110 21 - + 98.09856 65.25000 524.75596 48.83746 110 19 - + 98.09856 65.25000 523.76154 48.83746 110 19 - + 97.15986 78.87500 590.30001 55.04176 110 16 - + 97.15986 78.87500 589.83653 55.04176 110 16 - + 93.95766 92.50000 656.32275 61.24605 110 14 - + 93.95766 92.50000 656.06217 61.24605 110 14 - + 89.69164 107.50000 729.22896 68.07646 110 12 - + 89.69164 107.50000 729.06908 68.07646 110 12 - + 85.71119 122.50000 802.21983 74.90688 110 11 - + 85.71119 122.50000 802.13653 74.90688 110 11 - + 83.14041 131.25000 844.80337 78.89129 110 10 - + 83.14041 131.25000 844.75901 78.89129 110 10 - + 79.82466 140.00000 887.42360 82.87570 110 0 - + 180.92732 140.00000 505.58052 182.00000 110 0 - + 187.07532 152.80000 534.02637 192.24000 110 0 - + 187.07532 152.80000 510.00423 192.24000 110 0 - + 193.73819 165.30000 536.53379 202.24000 110 0 - + 193.73819 165.30000 514.04920 202.24000 110 0 - + 203.93970 178.97500 541.85625 213.18000 110 0 - + 203.93970 178.97500 520.38773 213.18000 110 0 - + 217.23870 192.65000 547.09306 224.12000 110 0 - + 217.23870 192.65000 527.37325 224.12000 110 0 - + 231.52578 206.32500 553.11599 235.06000 110 0 - + 231.52578 206.32500 534.86965 235.06000 110 0 - + 245.68525 220.00000 559.76319 246.00000 110 0 - + 245.68525 220.00000 543.46621 246.00000 110 0 - + 258.30088 232.50000 565.55833 256.00000 110 46 - + 258.30088 232.50000 550.95235 256.00000 110 47 - + 270.68006 245.00000 572.47392 266.00000 110 47 - + 270.68006 245.00000 558.68012 266.00000 110 48 - + 282.93266 257.50000 579.68313 276.00000 110 49 - + 282.93266 257.50000 566.61384 276.00000 110 50 - + 295.14490 270.00000 587.14333 286.00000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2258,8 +2397,8 @@ Layer name [DATA] 20.00 98.876 'Remblais CT' 16.00 135.504 'Argile et limon CT' - 14.00 999.301 'Sable et gravier CT' - 3.00 3019.509 'Argile Yprésienne CT' + 14.00 999.183 'Sable et gravier CT' + 3.00 3019.470 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2426,16 +2565,16 @@ Status character [DATA] 0.00000 0.00000 0.00000 0.00000 202 100 P 13.07519 0.00000 13.07519 13.07519 202 100 P - 12.62610 0.00000 42.08294 12.06966 110 30 - + 12.62658 0.00000 42.08294 12.06966 110 30 - 16.69760 0.00000 58.21902 16.69760 1 29 A 15.07419 0.00000 64.19781 15.07419 1 23 A 25.05034 0.00000 106.68412 25.05034 1 23 A 24.25171 0.00000 129.19894 29.68166 1 0 A 27.63991 10.00000 147.24928 33.82848 1 0 A - 79.74429 10.00000 92.49415 81.07592 110 0 - - 86.97503 18.80000 101.18987 88.69817 110 0 - - 49.71315 18.80000 51.43629 51.43629 110 0 - - 55.03127 27.60000 57.08013 57.08013 110 0 - + 79.74426 10.00000 92.49415 81.07592 110 0 - + 86.97497 18.80000 101.18987 88.69817 110 0 - + 49.71309 18.80000 51.43629 51.43629 110 0 - + 55.03118 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A 159.00473 30.00000 159.00473 159.00473 1 100 A 85.80331 30.00000 399.63391 85.80331 1 21 A @@ -2450,32 +2589,32 @@ Status character 98.84237 92.50000 1199.20859 98.84237 1 8 A 82.30557 92.50000 751.13934 82.83083 1 0 A 90.64706 107.50000 827.26562 91.22555 1 0 A - 64.94126 107.50000 766.44256 86.56889 110 0 - - 83.46930 122.50000 834.97891 94.31000 110 0 - - 80.53241 122.50000 837.18084 91.37312 110 0 - - 91.36880 131.25000 876.57495 95.67274 110 0 - + 64.95372 107.50000 766.44256 86.56889 110 0 - + 83.50569 122.50000 834.97891 94.31000 110 0 - + 80.56880 122.50000 837.18084 91.37312 110 0 - + 91.42362 131.25000 876.57495 95.67274 110 0 - 116.53928 131.25000 878.87729 116.53928 1 13 A - 124.70197 140.00000 917.97817 121.72407 110 14 - - 196.77252 140.00000 465.64209 195.72555 110 42 - - 210.48059 152.80000 488.53741 205.34925 110 43 - - 209.47442 152.80000 300.83047 204.34308 110 70 - - 222.05804 165.30000 314.44786 213.59287 110 71 - + 124.77510 140.00000 917.97817 121.72407 110 14 - + 196.79823 140.00000 465.64209 195.72555 110 42 - + 210.51393 152.80000 488.53741 205.34925 110 43 - + 209.50776 152.80000 300.83047 204.34308 110 70 - + 222.09468 165.30000 314.44786 213.59287 110 71 - 87.96125 165.30000 87.96125 87.96125 202 100 P 92.09521 178.97500 92.09521 92.09521 202 100 P - 231.81658 178.97500 529.13588 222.60584 110 44 - - 239.40930 192.65000 552.75447 232.54211 110 43 - - 239.32224 192.65000 397.32709 232.45506 110 60 - - 245.88786 206.32500 414.24575 242.35327 110 59 - - 245.99693 206.32500 535.39686 242.46233 110 46 - - 252.67259 220.00000 557.22289 252.34657 110 45 - - 252.91499 220.00000 543.13200 252.58897 110 47 - - 259.34405 232.50000 562.56474 261.62636 110 0 - - 259.66936 232.50000 553.92238 261.95166 110 0 - - 266.34526 245.00000 573.05805 271.00098 110 0 - - 266.73869 245.00000 565.91694 271.39441 110 0 - - 273.55893 257.50000 584.82528 280.46220 110 0 - - 274.00216 257.50000 567.54672 280.90543 110 0 - - 280.88553 270.00000 585.91393 289.99622 110 0 - + 231.84615 178.97500 529.13588 222.60584 110 44 - + 239.42342 192.65000 552.75447 232.54211 110 43 - + 239.33636 192.65000 397.32709 232.45506 110 60 - + 245.88748 206.32500 414.24575 242.35327 110 59 - + 245.99655 206.32500 535.39686 242.46233 110 46 - + 252.66132 220.00000 557.22289 252.34657 110 45 - + 252.90372 220.00000 543.13200 252.58897 110 47 - + 259.32548 232.50000 562.56474 261.62636 110 0 - + 259.65078 232.50000 553.92238 261.95166 110 0 - + 266.32091 245.00000 573.05805 271.00098 110 0 - + 266.71434 245.00000 565.91694 271.39441 110 0 - + 273.52955 257.50000 584.82528 280.46220 110 0 - + 273.97277 257.50000 567.54672 280.90543 110 0 - + 280.85133 270.00000 585.91393 289.99622 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2490,8 +2629,8 @@ Layer name [DATA] 20.00 67.879 'Remblais CT' 16.00 157.070 'Argile et limon CT' - 14.00 1029.671 'Sable et gravier CT' - 3.00 2981.804 'Argile Yprésienne CT' + 14.00 1029.779 'Sable et gravier CT' + 3.00 2981.798 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -2611,8 +2750,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 22.78 : Percentage mobilized resistance left 29.31 : Percentage mobilized resistance right -12025.94 : Effective left -12023.71 : Effective right +12026.52 : Effective left +12022.85 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 52788.61 : Max effective resistance left @@ -2621,8 +2760,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 835.09 : Vertical force left - 884.93 : Vertical force right + 835.14 : Vertical force left + 884.87 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -2639,58 +2778,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.90696 -3.15465 2.67869 - -14.56587 -34.05460 2.60345 - -15.54733 -36.61323 2.60345 - -40.84727 -66.17159 2.57247 - -42.40508 -60.73910 2.57247 - -106.88755 20.00338 2.51731 - -105.23321 24.75173 2.51731 - 12.95749 212.64075 2.51510 - 12.93301 212.56371 2.51510 - 132.78390 58.40487 2.51081 - 132.78185 58.43637 2.51081 - 173.54163 33.90578 2.47040 - 173.54611 33.92643 2.47040 - 168.75342 -74.36701 2.45121 - 168.72232 -74.21121 2.45121 - 125.03698 -40.91741 2.36314 - 124.87647 -40.19928 2.36314 - 89.37934 -29.28912 2.14709 - 89.43705 -28.33343 2.14709 - 56.93757 -35.47477 1.86948 - 57.00657 -34.89109 1.86948 - 12.35869 -45.31850 1.55347 - 12.45472 -45.21933 1.55347 - -50.14021 -59.69405 1.23003 - -49.93449 -60.41704 1.23003 - -126.70620 -54.19734 0.91612 - -126.25650 -56.65974 0.91612 - -98.25244 78.34701 0.70025 - -98.90315 76.50974 0.70025 - -8.00424 127.67113 0.61477 - -8.54720 129.62728 0.61477 - 55.56765 14.56036 0.53223 - 56.04211 16.63211 0.53223 - -24.59276 -145.02138 0.38860 - -24.42570 -145.34928 0.38860 - -308.04566 -310.12993 0.27196 - -307.98387 -312.20525 0.27196 - -334.95866 281.29699 0.33919 - -334.92549 279.22501 0.33919 - -57.00974 134.31834 0.62043 - -57.25071 134.12634 0.62043 - 53.16556 35.55765 0.95094 - 53.09633 36.10321 0.95094 - 61.77241 -15.87864 1.25056 - 61.84710 -15.54022 1.25056 - 41.10296 -16.96228 1.48695 - 41.10545 -16.93070 1.48695 - 20.99363 -14.62442 1.69788 - 20.99578 -14.60769 1.69788 - 5.92671 -8.91381 1.89558 - 5.92801 -8.90810 1.89558 - -0.00024 -0.00078 2.08915 + 0.90700 -3.15478 2.67860 + -14.56598 -34.05474 2.60338 + -15.54749 -36.61348 2.60338 + -40.84755 -66.17184 2.57241 + -42.40533 -60.73941 2.57241 + -106.88906 20.00122 2.51728 + -105.23474 24.74948 2.51728 + 12.95266 212.63673 2.51509 + 12.92819 212.55969 2.51509 + 132.77553 58.40086 2.51082 + 132.77348 58.43237 2.51082 + 173.52982 33.90202 2.47043 + 173.53430 33.92267 2.47043 + 168.74072 -74.37072 2.45125 + 168.70962 -74.21493 2.45125 + 125.02339 -40.91546 2.36320 + 124.86290 -40.19739 2.36320 + 89.37845 -29.27091 2.14720 + 89.43611 -28.31518 2.14720 + 56.97758 -35.43147 1.86964 + 57.04648 -34.84729 1.86964 + 12.47898 -45.24377 1.55365 + 12.57483 -45.14324 1.55365 + -49.89718 -59.59182 1.23013 + -49.69199 -60.31156 1.23013 + -126.30315 -54.09808 0.91596 + -125.85499 -56.55181 0.91596 + -97.80207 78.26308 0.69948 + -98.45122 76.27863 0.69948 + -7.85314 127.19389 0.61348 + -8.39053 129.33049 0.61348 + 55.38744 14.07598 0.53038 + 55.85749 16.47368 0.53038 + -25.14409 -145.45035 0.38604 + -24.97658 -145.78186 0.38604 + -309.33747 -310.88980 0.26905 + -309.27329 -311.90552 0.26905 + -335.95155 281.43553 0.33680 + -335.91867 280.17306 0.33680 + -56.88443 135.03275 0.61925 + -57.12890 134.38917 0.61925 + 53.57594 35.74193 0.95092 + 53.50589 36.01833 0.95092 + 62.08940 -15.91029 1.25140 + 62.16546 -15.64977 1.25140 + 41.29398 -17.05504 1.48837 + 41.29648 -17.02332 1.48837 + 21.08352 -14.69247 1.69977 + 21.08568 -14.67567 1.69977 + 5.95039 -8.95077 1.89787 + 5.95169 -8.94504 1.89787 + -0.00024 -0.00078 2.09182 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2851,53 +2990,53 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 202 100 P - 69.22878 0.00000 78.77930 12.53092 110 88 - - 69.22878 0.00000 78.77930 12.53092 110 88 - - 74.09302 10.00000 109.67314 17.44500 110 68 - - 35.79030 10.00000 77.26575 31.95000 110 46 - - 41.06375 18.80000 90.03455 37.23000 110 46 - - 41.06375 18.80000 80.53901 37.23000 110 51 - - 46.28205 27.60000 91.96114 42.51000 110 50 - - 46.28205 27.60000 87.11000 42.51000 110 53 - - 47.69275 30.00000 90.06080 43.95000 110 53 - - 101.32630 30.00000 227.24060 20.01311 110 45 - - 102.04771 38.00000 268.60408 23.65600 110 38 - - 102.04771 38.00000 256.81333 23.65600 110 40 - - 101.08517 51.62500 324.16813 29.86030 110 31 - - 101.08517 51.62500 321.08582 29.86030 110 31 - - 98.08037 65.25000 387.80018 36.06459 110 25 - - 98.08037 65.25000 386.83456 36.06459 110 25 - - 93.80174 78.87500 453.38280 42.26888 110 21 - - 93.80174 78.87500 452.96009 42.26888 110 21 - - 89.27654 92.50000 519.44629 48.47317 110 17 - - 89.27654 92.50000 519.22040 48.47317 110 17 - - 85.69384 107.50000 592.38438 55.30359 110 14 - - 85.69384 107.50000 592.25165 55.30359 110 14 - - 85.36331 122.50000 665.39924 62.13400 110 13 - - 85.36331 122.50000 665.33242 62.13400 110 13 - - 86.51214 131.25000 707.99756 66.11841 110 12 - - 86.51214 131.25000 707.96294 66.11841 110 12 - - 87.75848 140.00000 750.62600 70.10282 110 12 - - 160.15735 140.00000 475.22628 153.95000 110 34 - - 168.72213 152.80000 506.83600 164.19000 110 33 - - 168.72213 152.80000 478.24994 164.19000 110 35 - - 177.36176 165.30000 507.37777 174.19000 110 35 - - 177.36176 165.30000 481.24054 174.19000 110 37 - - 189.08591 178.97500 511.46484 185.13000 110 37 - - 189.08591 178.97500 486.95265 185.13000 110 39 - - 203.30591 192.65000 515.72844 196.07000 110 39 - - 203.30591 192.65000 493.53978 196.07000 110 41 - - 218.10067 206.32500 521.07752 207.01000 110 42 - - 218.10067 206.32500 500.78650 207.01000 110 44 - - 232.53504 220.00000 527.25191 217.95000 110 44 - - 232.53504 220.00000 509.29731 217.95000 110 46 - - 245.29194 232.50000 532.66494 227.95000 110 46 - - 245.29194 232.50000 516.69844 227.95000 110 47 - - 257.75208 245.00000 539.36563 237.95000 110 48 - - 257.75208 245.00000 524.38354 237.95000 110 49 - - 270.05780 257.50000 546.42109 247.95000 110 49 - - 270.05780 257.50000 532.30537 247.95000 110 51 - - 282.31529 270.00000 553.77362 257.95000 110 51 - + 69.22812 0.00000 78.77930 12.53092 110 88 - + 69.22812 0.00000 78.77930 12.53092 110 88 - + 74.09283 10.00000 109.67314 17.44500 110 68 - + 35.79029 10.00000 77.26575 31.95000 110 46 - + 41.06377 18.80000 90.03455 37.23000 110 46 - + 41.06377 18.80000 80.53901 37.23000 110 51 - + 46.28210 27.60000 91.96114 42.51000 110 50 - + 46.28210 27.60000 87.11000 42.51000 110 53 - + 47.69281 30.00000 90.06080 43.95000 110 53 - + 101.32763 30.00000 227.24060 20.01311 110 45 - + 102.04983 38.00000 268.60408 23.65600 110 38 - + 102.04983 38.00000 256.81333 23.65600 110 40 - + 101.08887 51.62500 324.16813 29.86030 110 31 - + 101.08887 51.62500 321.08582 29.86030 110 31 - + 98.08561 65.25000 387.80018 36.06459 110 25 - + 98.08561 65.25000 386.83456 36.06459 110 25 - + 93.80754 78.87500 453.38280 42.26888 110 21 - + 93.80754 78.87500 452.96009 42.26888 110 21 - + 89.28007 92.50000 519.44629 48.47317 110 17 - + 89.28007 92.50000 519.22040 48.47317 110 17 - + 85.68829 107.50000 592.38438 55.30359 110 14 - + 85.68829 107.50000 592.25165 55.30359 110 14 - + 85.33774 122.50000 665.39924 62.13400 110 13 - + 85.33774 122.50000 665.33242 62.13400 110 13 - + 86.46927 131.25000 707.99756 66.11841 110 12 - + 86.46927 131.25000 707.96294 66.11841 110 12 - + 87.69702 140.00000 750.62600 70.10282 110 12 - + 160.13574 140.00000 475.22628 153.95000 110 34 - + 168.69231 152.80000 506.83600 164.19000 110 33 - + 168.69231 152.80000 478.24994 164.19000 110 35 - + 177.32787 165.30000 507.37777 174.19000 110 35 - + 177.32787 165.30000 481.24054 174.19000 110 37 - + 189.05802 178.97500 511.46484 185.13000 110 37 - + 189.05802 178.97500 486.95265 185.13000 110 39 - + 203.29223 192.65000 515.72844 196.07000 110 39 - + 203.29223 192.65000 493.53978 196.07000 110 41 - + 218.10037 206.32500 521.07752 207.01000 110 42 - + 218.10037 206.32500 500.78650 207.01000 110 44 - + 232.54481 220.00000 527.25191 217.95000 110 44 - + 232.54481 220.00000 509.29731 217.95000 110 46 - + 245.30851 232.50000 532.66494 227.95000 110 46 - + 245.30851 232.50000 516.69844 227.95000 110 47 - + 257.77405 245.00000 539.36563 237.95000 110 48 - + 257.77405 245.00000 524.38354 237.95000 110 49 - + 270.08450 257.50000 546.42109 247.95000 110 49 - + 270.08450 257.50000 532.30537 247.95000 110 51 - + 282.34653 270.00000 553.77362 257.95000 110 51 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2910,10 +3049,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 118.390 'Remblais CT' + 20.00 118.389 'Remblais CT' 16.00 83.525 'Argile et limon CT' - 14.00 1021.817 'Sable et gravier CT' - 3.00 2830.059 'Argile Yprésienne CT' + 14.00 1021.742 'Sable et gravier CT' + 3.00 2830.020 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3086,10 +3225,10 @@ Status character 25.05034 0.00000 106.68412 25.05034 1 23 A 24.25171 0.00000 129.19894 29.68166 1 0 A 27.63991 10.00000 147.24928 33.82848 1 0 A - 77.23562 10.00000 92.49415 81.07592 110 0 - - 84.86442 18.80000 101.18987 88.69817 110 0 - - 47.60254 18.80000 51.43629 51.43629 110 0 - - 53.30807 27.60000 57.08013 57.08013 110 0 - + 77.23563 10.00000 92.49415 81.07592 110 0 - + 84.86440 18.80000 101.18987 88.69817 110 0 - + 47.60252 18.80000 51.43629 51.43629 110 0 - + 53.30802 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A 159.00473 30.00000 159.00473 159.00473 1 100 A 85.80331 30.00000 399.63391 85.80331 1 21 A @@ -3104,32 +3243,32 @@ Status character 98.84237 92.50000 1199.20859 98.84237 1 8 A 82.30557 92.50000 751.13934 82.83083 1 0 A 90.64706 107.50000 827.26562 91.22555 1 0 A - 56.17864 107.50000 766.44256 86.56889 110 0 - - 71.08070 122.50000 834.97891 94.31000 110 0 - - 68.14381 122.50000 837.18084 91.37312 110 0 - - 75.27901 131.25000 876.57495 95.67274 110 0 - + 56.18419 107.50000 766.44256 86.56889 110 0 - + 71.10627 122.50000 834.97891 94.31000 110 0 - + 68.16938 122.50000 837.18084 91.37312 110 0 - + 75.32188 131.25000 876.57495 95.67274 110 0 - 116.53928 131.25000 878.87729 116.53928 1 13 A 121.72407 140.00000 917.97817 121.72407 1 13 A - 189.51820 140.00000 465.64209 195.72555 110 0 - - 200.81712 152.80000 488.53741 205.34925 110 0 - - 199.81095 152.80000 300.83047 204.34308 110 0 - - 210.42111 165.30000 314.44786 213.59287 110 0 - - 76.32432 165.30000 87.96125 87.96125 110 0 - - 78.92856 178.97500 92.09521 92.09521 110 0 - - 218.64993 178.97500 529.13588 222.60584 110 0 - - 225.30620 192.65000 552.75447 232.54211 110 0 - - 225.21915 192.65000 397.32709 232.45506 110 0 - - 231.26260 206.32500 414.24575 242.35327 110 0 - - 231.37167 206.32500 535.39686 242.46233 110 0 - - 237.76153 220.00000 557.22289 252.34657 110 0 - - 238.00393 220.00000 543.13200 252.58897 110 0 - - 244.28442 232.50000 562.56474 261.62636 110 0 - - 244.60972 232.50000 553.92238 261.95166 110 0 - - 251.19890 245.00000 573.05805 271.00098 110 0 - - 251.59233 245.00000 565.91694 271.39441 110 0 - - 258.35440 257.50000 584.82528 280.46220 110 0 - - 258.79763 257.50000 567.54672 280.90543 110 0 - - 265.63093 270.00000 585.91393 289.99622 110 0 - + 189.53981 140.00000 465.64209 195.72555 110 0 - + 200.84694 152.80000 488.53741 205.34925 110 0 - + 199.84077 152.80000 300.83047 204.34308 110 0 - + 210.45500 165.30000 314.44786 213.59287 110 0 - + 76.32157 165.30000 87.96125 87.96125 110 0 - + 78.92689 178.97500 92.09521 92.09521 110 0 - + 218.67782 178.97500 529.13588 222.60584 110 0 - + 225.31988 192.65000 552.75447 232.54211 110 0 - + 225.23282 192.65000 397.32709 232.45506 110 0 - + 231.26290 206.32500 414.24575 242.35327 110 0 - + 231.37196 206.32500 535.39686 242.46233 110 0 - + 237.75176 220.00000 557.22289 252.34657 110 0 - + 237.99416 220.00000 543.13200 252.58897 110 0 - + 244.26785 232.50000 562.56474 261.62636 110 0 - + 244.59315 232.50000 553.92238 261.95166 110 0 - + 251.17693 245.00000 573.05805 271.00098 110 0 - + 251.57036 245.00000 565.91694 271.39441 110 0 - + 258.32770 257.50000 584.82528 280.46220 110 0 - + 258.77093 257.50000 567.54672 280.90543 110 0 - + 265.59970 270.00000 585.91393 289.99622 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3144,8 +3283,8 @@ Layer name [DATA] 20.00 67.740 'Remblais CT' 16.00 153.350 'Argile et limon CT' - 14.00 1000.045 'Sable et gravier CT' - 3.00 2806.603 'Argile Yprésienne CT' + 14.00 1000.098 'Sable et gravier CT' + 3.00 2806.597 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3216,7 +3355,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=0 [SUPPORT DATA] [TABLE] @@ -3281,18 +3420,18 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 22.78 : Percentage mobilized resistance left 29.31 : Percentage mobilized resistance right -12025.94 : Effective left -12023.71 : Effective right +12026.52 : Effective left +12022.85 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 52788.61 : Max effective resistance left 41024.08 : Max effective resistance right -695222.60 : Max moment left -615229.45 : Max moment right --189546.22 : Max mobilized moment left --189582.59 : Max mobilized moment right - 835.09 : Vertical force left - 884.93 : Vertical force right +-189555.35 : Max mobilized moment left +-189567.81 : Max mobilized moment right + 835.14 : Vertical force left + 884.87 : Vertical force right 27.3 : Max mobilized moment percentage left 30.8 : Max mobilized moment percentage right 18.85 : Level of single support @@ -3309,58 +3448,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.90696 -3.15465 2.67869 - -14.56587 -34.05460 2.60345 - -15.54733 -36.61323 2.60345 - -40.84727 -66.17159 2.57247 - -42.40508 -60.73910 2.57247 - -106.88755 20.00338 2.51731 - -105.23321 24.75173 2.51731 - 12.95749 212.64075 2.51510 - 12.93301 212.56371 2.51510 - 132.78390 58.40487 2.51081 - 132.78185 58.43637 2.51081 - 173.54163 33.90578 2.47040 - 173.54611 33.92643 2.47040 - 168.75342 -74.36701 2.45121 - 168.72232 -74.21121 2.45121 - 125.03698 -40.91741 2.36314 - 124.87647 -40.19928 2.36314 - 89.37934 -29.28912 2.14709 - 89.43705 -28.33343 2.14709 - 56.93757 -35.47477 1.86948 - 57.00657 -34.89109 1.86948 - 12.35869 -45.31850 1.55347 - 12.45472 -45.21933 1.55347 - -50.14021 -59.69405 1.23003 - -49.93449 -60.41704 1.23003 - -126.70620 -54.19734 0.91612 - -126.25650 -56.65974 0.91612 - -98.25244 78.34701 0.70025 - -98.90315 76.50974 0.70025 - -8.00424 127.67113 0.61477 - -8.54720 129.62728 0.61477 - 55.56765 14.56036 0.53223 - 56.04211 16.63211 0.53223 - -24.59276 -145.02138 0.38860 - -24.42570 -145.34928 0.38860 - -308.04566 -310.12993 0.27196 - -307.98387 -312.20525 0.27196 - -334.95866 281.29699 0.33919 - -334.92549 279.22501 0.33919 - -57.00974 134.31834 0.62043 - -57.25071 134.12634 0.62043 - 53.16556 35.55765 0.95094 - 53.09633 36.10321 0.95094 - 61.77241 -15.87864 1.25056 - 61.84710 -15.54022 1.25056 - 41.10296 -16.96228 1.48695 - 41.10545 -16.93070 1.48695 - 20.99363 -14.62442 1.69788 - 20.99578 -14.60769 1.69788 - 5.92671 -8.91381 1.89558 - 5.92801 -8.90810 1.89558 - -0.00024 -0.00078 2.08915 + 0.90700 -3.15478 2.67860 + -14.56598 -34.05474 2.60338 + -15.54749 -36.61348 2.60338 + -40.84755 -66.17184 2.57241 + -42.40533 -60.73941 2.57241 + -106.88906 20.00122 2.51728 + -105.23474 24.74948 2.51728 + 12.95266 212.63673 2.51509 + 12.92819 212.55969 2.51509 + 132.77553 58.40086 2.51082 + 132.77348 58.43237 2.51082 + 173.52982 33.90202 2.47043 + 173.53430 33.92267 2.47043 + 168.74072 -74.37072 2.45125 + 168.70962 -74.21493 2.45125 + 125.02339 -40.91546 2.36320 + 124.86290 -40.19739 2.36320 + 89.37845 -29.27091 2.14720 + 89.43611 -28.31518 2.14720 + 56.97758 -35.43147 1.86964 + 57.04648 -34.84729 1.86964 + 12.47898 -45.24377 1.55365 + 12.57483 -45.14324 1.55365 + -49.89718 -59.59182 1.23013 + -49.69199 -60.31156 1.23013 + -126.30315 -54.09808 0.91596 + -125.85499 -56.55181 0.91596 + -97.80207 78.26308 0.69948 + -98.45122 76.27863 0.69948 + -7.85314 127.19389 0.61348 + -8.39053 129.33049 0.61348 + 55.38744 14.07598 0.53038 + 55.85749 16.47368 0.53038 + -25.14409 -145.45035 0.38604 + -24.97658 -145.78186 0.38604 + -309.33747 -310.88980 0.26905 + -309.27329 -311.90552 0.26905 + -335.95155 281.43553 0.33680 + -335.91867 280.17306 0.33680 + -56.88443 135.03275 0.61925 + -57.12890 134.38917 0.61925 + 53.57594 35.74193 0.95092 + 53.50589 36.01833 0.95092 + 62.08940 -15.91029 1.25140 + 62.16546 -15.64977 1.25140 + 41.29398 -17.05504 1.48837 + 41.29648 -17.02332 1.48837 + 21.08352 -14.69247 1.69977 + 21.08568 -14.67567 1.69977 + 5.95039 -8.95077 1.89787 + 5.95169 -8.94504 1.89787 + -0.00024 -0.00078 2.09182 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3520,54 +3659,54 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P - 69.22878 0.00000 78.77930 12.53092 110 88 - - 69.22878 0.00000 78.77930 12.53092 110 88 - - 74.09302 10.00000 109.67314 17.44500 110 68 - - 35.79030 10.00000 77.26575 31.95000 110 46 - - 41.06375 18.80000 90.03455 37.23000 110 46 - - 41.06375 18.80000 80.53901 37.23000 110 51 - - 46.28205 27.60000 91.96114 42.51000 110 50 - - 46.28205 27.60000 87.11000 42.51000 110 53 - - 47.69275 30.00000 90.06080 43.95000 110 53 - - 101.32630 30.00000 227.24060 20.01311 110 45 - - 102.04771 38.00000 268.60408 23.65600 110 38 - - 102.04771 38.00000 256.81333 23.65600 110 40 - - 101.08517 51.62500 324.16813 29.86030 110 31 - - 101.08517 51.62500 321.08582 29.86030 110 31 - - 98.08037 65.25000 387.80018 36.06459 110 25 - - 98.08037 65.25000 386.83456 36.06459 110 25 - - 93.80174 78.87500 453.38280 42.26888 110 21 - - 93.80174 78.87500 452.96009 42.26888 110 21 - - 89.27654 92.50000 519.44629 48.47317 110 17 - - 89.27654 92.50000 519.22040 48.47317 110 17 - - 85.69384 107.50000 592.38438 55.30359 110 14 - - 85.69384 107.50000 592.25165 55.30359 110 14 - - 85.36331 122.50000 665.39924 62.13400 110 13 - - 85.36331 122.50000 665.33242 62.13400 110 13 - - 86.51214 131.25000 707.99756 66.11841 110 12 - - 86.51214 131.25000 707.96294 66.11841 110 12 - - 87.75848 140.00000 750.62600 70.10282 110 12 - - 160.15735 140.00000 475.22628 153.95000 110 34 - - 168.72213 152.80000 506.83600 164.19000 110 33 - - 168.72213 152.80000 478.24994 164.19000 110 35 - - 177.36176 165.30000 507.37777 174.19000 110 35 - - 177.36176 165.30000 481.24054 174.19000 110 37 - - 189.08591 178.97500 511.46484 185.13000 110 37 - - 189.08591 178.97500 486.95265 185.13000 110 39 - - 203.30591 192.65000 515.72844 196.07000 110 39 - - 203.30591 192.65000 493.53978 196.07000 110 41 - - 218.10067 206.32500 521.07752 207.01000 110 42 - - 218.10067 206.32500 500.78650 207.01000 110 44 - - 232.53504 220.00000 527.25191 217.95000 110 44 - - 232.53504 220.00000 509.29731 217.95000 110 46 - - 245.29194 232.50000 532.66494 227.95000 110 46 - - 245.29194 232.50000 516.69844 227.95000 110 47 - - 257.75208 245.00000 539.36563 237.95000 110 48 - - 257.75208 245.00000 524.38354 237.95000 110 49 - - 270.05780 257.50000 546.42109 247.95000 110 49 - - 270.05780 257.50000 532.30537 247.95000 110 51 - - 282.31529 270.00000 553.77362 257.95000 110 51 - + 0.00000 0.00000 0.00000 0.00000 110 100 - + 69.22812 0.00000 78.77930 12.53092 110 88 - + 69.22812 0.00000 78.77930 12.53092 110 88 - + 74.09283 10.00000 109.67314 17.44500 110 68 - + 35.79029 10.00000 77.26575 31.95000 110 46 - + 41.06377 18.80000 90.03455 37.23000 110 46 - + 41.06377 18.80000 80.53901 37.23000 110 51 - + 46.28210 27.60000 91.96114 42.51000 110 50 - + 46.28210 27.60000 87.11000 42.51000 110 53 - + 47.69281 30.00000 90.06080 43.95000 110 53 - + 101.32763 30.00000 227.24060 20.01311 110 45 - + 102.04983 38.00000 268.60408 23.65600 110 38 - + 102.04983 38.00000 256.81333 23.65600 110 40 - + 101.08887 51.62500 324.16813 29.86030 110 31 - + 101.08887 51.62500 321.08582 29.86030 110 31 - + 98.08561 65.25000 387.80018 36.06459 110 25 - + 98.08561 65.25000 386.83456 36.06459 110 25 - + 93.80754 78.87500 453.38280 42.26888 110 21 - + 93.80754 78.87500 452.96009 42.26888 110 21 - + 89.28007 92.50000 519.44629 48.47317 110 17 - + 89.28007 92.50000 519.22040 48.47317 110 17 - + 85.68829 107.50000 592.38438 55.30359 110 14 - + 85.68829 107.50000 592.25165 55.30359 110 14 - + 85.33774 122.50000 665.39924 62.13400 110 13 - + 85.33774 122.50000 665.33242 62.13400 110 13 - + 86.46927 131.25000 707.99756 66.11841 110 12 - + 86.46927 131.25000 707.96294 66.11841 110 12 - + 87.69702 140.00000 750.62600 70.10282 110 12 - + 160.13574 140.00000 475.22628 153.95000 110 34 - + 168.69231 152.80000 506.83600 164.19000 110 33 - + 168.69231 152.80000 478.24994 164.19000 110 35 - + 177.32787 165.30000 507.37777 174.19000 110 35 - + 177.32787 165.30000 481.24054 174.19000 110 37 - + 189.05802 178.97500 511.46484 185.13000 110 37 - + 189.05802 178.97500 486.95265 185.13000 110 39 - + 203.29223 192.65000 515.72844 196.07000 110 39 - + 203.29223 192.65000 493.53978 196.07000 110 41 - + 218.10037 206.32500 521.07752 207.01000 110 42 - + 218.10037 206.32500 500.78650 207.01000 110 44 - + 232.54481 220.00000 527.25191 217.95000 110 44 - + 232.54481 220.00000 509.29731 217.95000 110 46 - + 245.30851 232.50000 532.66494 227.95000 110 46 - + 245.30851 232.50000 516.69844 227.95000 110 47 - + 257.77405 245.00000 539.36563 237.95000 110 48 - + 257.77405 245.00000 524.38354 237.95000 110 49 - + 270.08450 257.50000 546.42109 247.95000 110 49 - + 270.08450 257.50000 532.30537 247.95000 110 51 - + 282.34653 270.00000 553.77362 257.95000 110 51 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3580,10 +3719,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 118.390 'Remblais CT' + 20.00 118.389 'Remblais CT' 16.00 83.525 'Argile et limon CT' - 14.00 1021.817 'Sable et gravier CT' - 3.00 2830.059 'Argile Yprésienne CT' + 14.00 1021.742 'Sable et gravier CT' + 3.00 2830.020 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3748,7 +3887,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -3756,10 +3895,10 @@ Status character 25.05034 0.00000 106.68412 25.05034 1 23 A 24.25171 0.00000 129.19894 29.68166 1 0 A 27.63991 10.00000 147.24928 33.82848 1 0 A - 77.23562 10.00000 92.49415 81.07592 110 0 - - 84.86442 18.80000 101.18987 88.69817 110 0 - - 47.60254 18.80000 51.43629 51.43629 110 0 - - 53.30807 27.60000 57.08013 57.08013 110 0 - + 77.23563 10.00000 92.49415 81.07592 110 0 - + 84.86440 18.80000 101.18987 88.69817 110 0 - + 47.60252 18.80000 51.43629 51.43629 110 0 - + 53.30802 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A 159.00473 30.00000 159.00473 159.00473 1 100 A 85.80331 30.00000 399.63391 85.80331 1 21 A @@ -3773,33 +3912,33 @@ Status character 89.40557 78.87500 1084.71625 89.40557 1 8 A 98.84237 92.50000 1199.20859 98.84237 1 8 A 82.30557 92.50000 751.13934 82.83083 1 0 A - 90.64706 107.50000 827.26562 91.22555 110 0 - - 56.17864 107.50000 766.44256 86.56889 110 0 - - 71.08070 122.50000 834.97891 94.31000 110 0 - - 68.14381 122.50000 837.18084 91.37312 110 0 - - 75.27901 131.25000 876.57495 95.67274 110 0 - - 116.53928 131.25000 878.87729 116.53928 110 0 - - 121.72407 140.00000 917.97817 121.72407 110 0 - - 189.51820 140.00000 465.64209 195.72555 110 0 - - 200.81712 152.80000 488.53741 205.34925 110 0 - - 199.81095 152.80000 300.83047 204.34308 110 0 - - 210.42111 165.30000 314.44786 213.59287 110 0 - - 76.32432 165.30000 87.96125 87.96125 110 0 - - 78.92856 178.97500 92.09521 92.09521 110 0 - - 218.64993 178.97500 529.13588 222.60584 110 0 - - 225.30620 192.65000 552.75447 232.54211 110 0 - - 225.21915 192.65000 397.32709 232.45506 110 0 - - 231.26260 206.32500 414.24575 242.35327 110 0 - - 231.37167 206.32500 535.39686 242.46233 110 0 - - 237.76153 220.00000 557.22289 252.34657 110 0 - - 238.00393 220.00000 543.13200 252.58897 110 0 - - 244.28442 232.50000 562.56474 261.62636 110 0 - - 244.60972 232.50000 553.92238 261.95166 110 0 - - 251.19890 245.00000 573.05805 271.00098 110 0 - - 251.59233 245.00000 565.91694 271.39441 110 0 - - 258.35440 257.50000 584.82528 280.46220 110 0 - - 258.79763 257.50000 567.54672 280.90543 110 0 - - 265.63093 270.00000 585.91393 289.99622 110 0 - + 90.64706 107.50000 827.26562 91.22555 1 0 A + 56.18419 107.50000 766.44256 86.56889 110 0 - + 71.10627 122.50000 834.97891 94.31000 110 0 - + 68.16938 122.50000 837.18084 91.37312 110 0 - + 75.32188 131.25000 876.57495 95.67274 110 0 - + 116.53928 131.25000 878.87729 116.53928 1 13 A + 121.72407 140.00000 917.97817 121.72407 1 13 A + 189.53981 140.00000 465.64209 195.72555 110 0 - + 200.84694 152.80000 488.53741 205.34925 110 0 - + 199.84077 152.80000 300.83047 204.34308 110 0 - + 210.45500 165.30000 314.44786 213.59287 110 0 - + 76.32157 165.30000 87.96125 87.96125 110 0 - + 78.92689 178.97500 92.09521 92.09521 110 0 - + 218.67782 178.97500 529.13588 222.60584 110 0 - + 225.31988 192.65000 552.75447 232.54211 110 0 - + 225.23282 192.65000 397.32709 232.45506 110 0 - + 231.26290 206.32500 414.24575 242.35327 110 0 - + 231.37196 206.32500 535.39686 242.46233 110 0 - + 237.75176 220.00000 557.22289 252.34657 110 0 - + 237.99416 220.00000 543.13200 252.58897 110 0 - + 244.26785 232.50000 562.56474 261.62636 110 0 - + 244.59315 232.50000 553.92238 261.95166 110 0 - + 251.17693 245.00000 573.05805 271.00098 110 0 - + 251.57036 245.00000 565.91694 271.39441 110 0 - + 258.32770 257.50000 584.82528 280.46220 110 0 - + 258.77093 257.50000 567.54672 280.90543 110 0 - + 265.59970 270.00000 585.91393 289.99622 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3814,8 +3953,8 @@ Layer name [DATA] 20.00 67.740 'Remblais CT' 16.00 153.350 'Argile et limon CT' - 14.00 1000.045 'Sable et gravier CT' - 3.00 2806.603 'Argile Yprésienne CT' + 14.00 1000.098 'Sable et gravier CT' + 3.00 2806.597 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3900,7 +4039,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -8222.77702 0.00000 0 'Dalle toiture 18.85' + 2 18.85000 -8222.88715 0.00000 0 'Dalle toiture 18.85' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -3928,18 +4067,18 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 20.11 : Percentage mobilized resistance left 32.45 : Percentage mobilized resistance right -12926.55 : Effective left -20208.18 : Effective right +12926.39 : Effective left +20208.65 : Effective right 10570.95 : Water pressure left 818.11 : Water pressure right 64289.14 : Max effective resistance left 62275.97 : Max effective resistance right -845656.58 : Max moment left -903600.36 : Max moment right --192008.26 : Max mobilized moment left --346573.70 : Max mobilized moment right - 792.86 : Vertical force left - 1260.45 : Vertical force right +-192004.89 : Max mobilized moment left +-346579.83 : Max mobilized moment right + 792.87 : Vertical force left + 1260.54 : Vertical force right 22.7 : Max mobilized moment percentage left 38.4 : Max mobilized moment percentage right 18.85 : Level of single support @@ -3956,58 +4095,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -11.61582 -5807.27434 8.00000 - -6749.51244 -5926.31183 2.60345 - -6737.83442 2336.37051 2.60345 - -5594.39519 2223.88411 1.02821 - -5591.20971 2213.76382 1.02821 - -2940.31655 1669.88702 -0.91437 - -2942.78150 1657.13337 -0.91437 - -1530.80298 1160.38865 -0.96485 - -1531.55488 1157.11762 -0.96485 - -636.05194 878.94113 -0.51679 - -636.07437 878.76285 -0.51679 - 16.95824 606.57289 0.11918 - 16.94984 606.53473 0.11918 - 153.30142 529.82350 0.29900 - 153.19480 530.35658 0.29900 - 445.86911 220.62752 0.86242 - 444.30171 226.07517 0.86242 - 518.35284 -74.64949 1.57497 - 518.55825 -65.42340 1.57497 - 343.73890 -167.80435 1.94442 - 344.43740 -161.23193 1.94442 - 116.53992 -163.22000 2.07970 - 117.22127 -160.69851 2.07970 - -75.41944 -116.88669 2.13235 - -77.62424 -110.50991 2.13235 - -191.06674 -40.17179 2.24810 - -187.90752 -36.36403 2.24810 - -185.62735 41.54830 2.51315 - -186.42444 39.08053 2.51315 - -128.90531 94.54832 2.73960 - -129.44671 96.74348 2.73960 - -15.25175 167.12937 3.00126 - -14.84468 169.69340 3.00126 - 122.64884 52.94731 3.38299 - 122.58932 53.55377 3.38299 - 140.23698 -19.18437 3.69007 - 139.89948 -17.42526 3.69007 - 116.25168 -11.09329 3.93577 - 116.58009 -9.32621 3.93577 - 90.13832 -25.73736 4.10090 - 90.18003 -25.04546 4.10090 - 55.19350 -23.86862 4.20408 - 55.23318 -23.46696 4.20408 - 30.49402 -11.30865 4.26843 - 30.54414 -11.16871 4.26843 - 17.86483 -9.02167 4.30737 - 17.86617 -9.00760 4.30737 - 8.21548 -6.36474 4.33512 - 8.21643 -6.35799 4.33512 - 2.11930 -3.34171 4.35760 - 2.11980 -3.33958 4.35760 - -0.00009 -0.00027 4.37856 + -11.61600 -5807.35620 8.00000 + -6749.60675 -5926.39369 2.60338 + -6737.92856 2336.39940 2.60338 + -5594.47499 2223.91235 1.02812 + -5591.28941 2213.79177 1.02812 + -2940.36212 1669.90873 -0.91447 + -2942.82716 1657.15473 -0.91447 + -1530.83077 1160.40286 -0.96494 + -1531.58268 1157.13178 -0.96494 + -636.06770 878.95438 -0.51687 + -636.09013 878.77609 -0.51687 + 16.95380 606.58542 0.11912 + 16.94541 606.54726 0.11912 + 153.29997 529.83583 0.29895 + 153.19335 530.36893 0.29895 + 445.87200 220.62634 0.86239 + 444.30459 226.07403 0.86239 + 518.34054 -74.66995 1.57498 + 518.54609 -65.44424 1.57498 + 343.68843 -167.83841 1.94447 + 344.38720 -161.26759 1.94447 + 116.44091 -163.25154 2.07983 + 117.12259 -160.73341 2.07983 + -75.53849 -116.87048 2.13263 + -77.74661 -110.48899 2.13263 + -191.08401 -40.05007 2.24863 + -187.92370 -36.23144 2.24863 + -185.35078 41.81452 2.51393 + -186.14776 39.20302 2.51393 + -128.47995 94.76675 2.74043 + -129.01595 96.60293 2.74043 + -14.90181 167.08380 3.00202 + -14.49893 169.43319 3.00202 + 122.71438 52.76429 3.38349 + 122.65509 53.37125 3.38349 + 140.10428 -19.32544 3.69027 + 139.76080 -17.55354 3.69027 + 116.07944 -11.02610 3.93572 + 116.41245 -9.25805 3.93572 + 90.05516 -25.68498 4.10071 + 90.09728 -25.01423 4.10071 + 55.13407 -23.86748 4.20381 + 55.17417 -23.43723 4.20381 + 30.45041 -11.31668 4.26812 + 30.50104 -11.15103 4.26812 + 17.84097 -9.00859 4.30706 + 17.84231 -8.99453 4.30706 + 8.20509 -6.35624 4.33482 + 8.20603 -6.34950 4.33482 + 2.11676 -3.33759 4.35731 + 2.11725 -3.33546 4.35731 + -0.00009 -0.00027 4.37830 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4171,50 +4310,50 @@ Status character 7.89549 0.00000 78.77930 12.53092 1 0 A 7.89549 0.00000 78.77930 12.53092 1 0 A 13.74400 0.00000 137.13434 21.81308 1 0 A - 38.47677 0.00000 81.78259 39.95000 110 0 - - 53.24091 0.00000 110.60609 54.03000 110 0 - - 53.24091 0.00000 95.27545 54.03000 110 0 - - 68.29197 0.00000 120.10385 68.11000 110 57 - - 68.29197 0.00000 112.46376 68.11000 110 61 - - 72.40654 0.00000 118.80439 71.95000 110 61 - - 42.68185 0.00000 366.14752 32.76322 110 12 - - 67.92911 0.00000 439.42791 39.32042 110 15 - - 67.92911 0.00000 424.02688 39.32042 110 16 - - 102.73405 0.00000 544.45837 50.48815 110 19 - - 102.73405 0.00000 541.56966 50.48815 110 19 - - 126.15748 0.00000 661.36218 61.65587 110 19 - - 126.15748 0.00000 660.58800 61.65587 110 19 - - 141.81277 0.00000 780.24030 72.82360 110 18 - - 141.81277 0.00000 779.92629 72.82360 110 18 - - 154.72703 0.00000 899.53043 83.99133 110 17 - - 154.72703 0.00000 899.37039 83.99133 110 17 - - 170.86155 0.00000 1031.02124 96.28608 110 17 - - 170.86155 0.00000 1030.93023 96.28608 110 17 - - 191.94876 0.00000 1162.56946 108.58082 110 17 - - 191.94876 0.00000 1162.52465 108.58082 110 17 - - 206.63277 0.00000 1239.31124 115.75276 110 17 - - 206.63277 0.00000 1239.28836 115.75276 110 17 - - 222.48470 0.00000 1316.07354 122.92469 110 17 - - 304.95313 0.00000 591.53990 269.95000 110 52 - - 332.44517 0.00000 642.02732 292.99000 110 52 - - 332.44517 0.00000 610.59655 292.99000 110 54 - - 358.52656 0.00000 657.48697 315.49000 110 55 - - 358.52656 0.00000 634.80366 315.49000 110 56 - - 372.33209 13.67500 656.81625 326.43000 110 57 - - 372.33209 13.67500 641.46829 326.43000 110 58 - - 385.19800 27.35000 662.96651 337.37000 110 58 - - 385.19800 27.35000 648.64405 337.37000 110 59 - - 397.34139 41.02500 669.67783 348.31000 110 59 - - 397.34139 41.02500 656.23872 348.31000 110 61 - - 409.03185 54.70000 676.85039 359.25000 110 60 - - 409.03185 54.70000 664.70153 359.25000 110 62 - - 419.48605 67.20000 683.20401 369.25000 110 61 - - 419.48605 67.20000 672.19505 369.25000 110 62 - - 429.80962 79.70000 690.39938 379.25000 110 62 - - 429.80962 79.70000 679.90196 379.25000 110 63 - - 440.07180 92.20000 697.82950 389.25000 110 63 - - 440.07180 92.20000 687.79432 389.25000 110 64 - - 450.31632 104.70000 705.46405 399.25000 110 64 - + 38.47663 0.00000 81.78259 39.95000 110 0 - + 53.24079 0.00000 110.60609 54.03000 110 0 - + 53.24079 0.00000 95.27545 54.03000 110 0 - + 68.29189 0.00000 120.10385 68.11000 110 57 - + 68.29189 0.00000 112.46376 68.11000 110 61 - + 72.40647 0.00000 118.80439 71.95000 110 61 - + 42.68031 0.00000 366.14752 32.76322 110 12 - + 67.92826 0.00000 439.42791 39.32042 110 15 - + 67.92826 0.00000 424.02688 39.32042 110 16 - + 102.73437 0.00000 544.45837 50.48815 110 19 - + 102.73437 0.00000 541.56966 50.48815 110 19 - + 126.15928 0.00000 661.36218 61.65587 110 19 - + 126.15928 0.00000 660.58800 61.65587 110 19 - + 141.81723 0.00000 780.24030 72.82360 110 18 - + 141.81723 0.00000 779.92629 72.82360 110 18 - + 154.73636 0.00000 899.53043 83.99133 110 17 - + 154.73636 0.00000 899.37039 83.99133 110 17 - + 170.87911 0.00000 1031.02124 96.28608 110 17 - + 170.87911 0.00000 1030.93023 96.28608 110 17 - + 191.97455 0.00000 1162.56946 108.58082 110 17 - + 191.97455 0.00000 1162.52465 108.58082 110 17 - + 206.66034 0.00000 1239.31124 115.75276 110 17 - + 206.66034 0.00000 1239.28836 115.75276 110 17 - + 222.50996 0.00000 1316.07354 122.92469 110 17 - + 304.96201 0.00000 591.53990 269.95000 110 52 - + 332.45096 0.00000 642.02732 292.99000 110 52 - + 332.45096 0.00000 610.59655 292.99000 110 54 - + 358.52883 0.00000 657.48697 315.49000 110 55 - + 358.52883 0.00000 634.80366 315.49000 110 56 - + 372.33149 13.67500 656.81625 326.43000 110 57 - + 372.33149 13.67500 641.46829 326.43000 110 58 - + 385.19579 27.35000 662.96651 337.37000 110 58 - + 385.19579 27.35000 648.64405 337.37000 110 59 - + 397.33825 41.02500 669.67783 348.31000 110 59 - + 397.33825 41.02500 656.23872 348.31000 110 61 - + 409.02827 54.70000 676.85039 359.25000 110 60 - + 409.02827 54.70000 664.70153 359.25000 110 62 - + 419.48241 67.20000 683.20401 369.25000 110 61 - + 419.48241 67.20000 672.19505 369.25000 110 62 - + 429.80609 79.70000 690.39938 379.25000 110 62 - + 429.80609 79.70000 679.90196 379.25000 110 63 - + 440.06847 92.20000 697.82950 389.25000 110 63 - + 440.06847 92.20000 687.79432 389.25000 110 64 - + 450.31320 104.70000 705.46405 399.25000 110 64 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4229,8 +4368,8 @@ Layer name [DATA] 20.00 16.149 'Remblais CT' 16.00 110.714 'Argile et limon CT' - 14.00 1579.431 'Sable et gravier CT' - 3.00 5092.699 'Argile Yprésienne CT' + 14.00 1579.544 'Sable et gravier CT' + 3.00 5092.687 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4394,28 +4533,28 @@ Status character 15.34374 0.00000 153.09616 24.35202 1 0 A 35.02651 0.00000 220.20445 35.02651 110 16 - 35.02651 0.00000 220.20445 35.02651 110 16 - - 74.44931 0.00000 249.38197 39.66759 110 30 - - 74.44931 0.00000 249.38197 39.66759 110 30 - - 129.49081 0.00000 328.16127 52.19851 110 39 - - 124.06086 0.00000 328.16127 52.19851 110 38 - - 129.30355 10.00000 359.05511 57.11259 110 36 - - 106.07323 10.00000 154.23711 104.60000 110 69 - - 110.66909 18.80000 162.02269 109.88000 110 68 - - 110.66909 18.80000 158.86708 109.88000 110 70 - - 114.97803 27.60000 166.50103 115.16000 110 0 - - 118.75008 27.60000 164.60137 115.16000 110 72 - - 119.88621 30.00000 166.65961 116.60000 110 72 - - 124.48965 30.00000 581.27253 53.09509 110 21 - - 106.52099 38.00000 621.15400 56.73798 110 17 - - 106.52099 38.00000 612.56439 56.73798 110 17 - - 81.92124 51.62500 679.54826 62.94227 110 12 - - 81.92124 51.62500 676.23911 62.94227 110 12 - - 66.66074 65.25000 742.89679 69.14656 110 0 - - 66.66074 65.25000 741.64651 69.14656 110 0 - - 57.89455 78.87500 808.19200 75.35086 110 0 - - 57.89455 78.87500 807.57880 75.35086 110 0 - - 51.62281 92.50000 874.07381 81.55515 110 0 - - 51.09756 92.50000 873.71503 81.55515 110 0 - + 74.44994 0.00000 249.38197 39.66759 110 30 - + 74.44994 0.00000 249.38197 39.66759 110 30 - + 129.49242 0.00000 328.16127 52.19851 110 39 - + 124.06247 0.00000 328.16127 52.19851 110 38 - + 129.30542 10.00000 359.05511 57.11259 110 36 - + 106.07337 10.00000 154.23711 104.60000 110 69 - + 110.66921 18.80000 162.02269 109.88000 110 68 - + 110.66921 18.80000 158.86708 109.88000 110 70 - + 114.97811 27.60000 166.50103 115.16000 110 0 - + 118.75021 27.60000 164.60137 115.16000 110 72 - + 119.88634 30.00000 166.65961 116.60000 110 72 - + 124.49251 30.00000 581.27253 53.09509 110 21 - + 106.52396 38.00000 621.15400 56.73798 110 17 - + 106.52396 38.00000 612.56439 56.73798 110 17 - + 81.92463 51.62500 679.54826 62.94227 110 12 - + 81.92463 51.62500 676.23911 62.94227 110 12 - + 66.66418 65.25000 742.89679 69.14656 110 0 - + 66.66418 65.25000 741.64651 69.14656 110 0 - + 57.89589 78.87500 808.19200 75.35086 110 0 - + 57.89589 78.87500 807.57880 75.35086 110 0 - + 51.61701 92.50000 874.07381 81.55515 110 0 - + 51.09175 92.50000 873.71503 81.55515 110 0 - 51.67249 107.50000 946.89049 88.38556 1 0 A 51.76703 107.50000 946.66285 88.38556 1 0 A 55.76758 122.50000 1019.82072 95.21598 1 0 A @@ -4423,26 +4562,26 @@ Status character 58.15998 131.25000 1062.36923 99.20039 1 0 A 58.19304 131.25000 1062.30289 99.20039 1 0 A 60.53038 140.00000 1104.97055 103.18479 1 0 A - 191.59687 140.00000 552.28473 226.60000 110 0 - - 197.38483 152.80000 577.24235 236.84000 110 0 - - 197.38483 152.80000 558.13120 236.84000 110 0 - - 203.80344 165.30000 581.69694 246.84000 110 0 - - 195.33827 165.30000 563.38337 246.84000 110 0 - - 202.66718 178.97500 588.35264 257.78000 110 0 - - 211.87791 178.97500 570.52675 257.78000 110 0 - - 220.89200 192.65000 594.73950 268.72000 110 0 - - 220.89200 192.65000 578.09224 268.72000 110 0 - - 230.62861 206.32500 601.62726 279.66000 110 0 - - 230.62861 206.32500 586.00832 279.66000 110 0 - - 240.81815 220.00000 608.93234 290.60000 110 0 - - 240.81815 220.00000 594.82123 290.60000 110 0 - - 250.36395 232.50000 615.28996 300.60000 110 0 - - 250.36395 232.50000 602.51798 300.60000 110 0 - - 260.04038 245.00000 622.56182 310.60000 110 0 - - 260.04038 245.00000 610.39946 310.60000 110 0 - - 269.77820 257.50000 630.05173 320.60000 110 0 - - 269.77820 257.50000 618.44270 320.60000 110 0 - - 279.53368 270.00000 637.73286 330.60000 110 0 - + 191.58799 140.00000 552.28473 226.60000 110 0 - + 197.37904 152.80000 577.24235 236.84000 110 0 - + 197.37904 152.80000 558.13120 236.84000 110 0 - + 203.80117 165.30000 581.69694 246.84000 110 0 - + 195.29936 165.30000 563.38337 246.84000 110 0 - + 202.63821 178.97500 588.35264 257.78000 110 0 - + 211.87851 178.97500 570.52675 257.78000 110 0 - + 220.89421 192.65000 594.73950 268.72000 110 0 - + 220.89421 192.65000 578.09224 268.72000 110 0 - + 230.63175 206.32500 601.62726 279.66000 110 0 - + 230.63175 206.32500 586.00832 279.66000 110 0 - + 240.82173 220.00000 608.93234 290.60000 110 0 - + 240.82173 220.00000 594.82123 290.60000 110 0 - + 250.36759 232.50000 615.28996 300.60000 110 0 - + 250.36759 232.50000 602.51798 300.60000 110 0 - + 260.04391 245.00000 622.56182 310.60000 110 0 - + 260.04391 245.00000 610.39946 310.60000 110 0 - + 269.78153 257.50000 630.05173 320.60000 110 0 - + 269.78153 257.50000 618.44270 320.60000 110 0 - + 279.53680 270.00000 637.73286 330.60000 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4455,10 +4594,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 320.674 'Remblais CT' + 20.00 320.677 'Remblais CT' 16.00 223.288 'Argile et limon CT' - 14.00 741.002 'Sable et gravier CT' - 3.00 2999.261 'Argile Yprésienne CT' + 14.00 741.009 'Sable et gravier CT' + 3.00 2999.227 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -4580,8 +4719,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 23.87 : Percentage mobilized resistance left 25.36 : Percentage mobilized resistance right -12639.43 : Effective left -12638.21 : Effective right +12640.32 : Effective left +12637.08 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 52957.69 : Max effective resistance left @@ -4590,8 +4729,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 869.12 : Vertical force left - 862.20 : Vertical force right + 869.21 : Vertical force left + 862.10 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -4608,58 +4747,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 1.21845 -4.23808 -0.35636 - -7.49936 -14.26595 -0.00269 - -8.81790 -17.70333 -0.00269 - -18.40116 -18.96659 0.15178 - -18.27702 -18.23717 0.15178 - -7.06954 49.69280 0.57578 - -7.10588 49.67061 0.57578 - 94.63331 161.74175 0.89087 - 94.64118 161.81083 0.89087 - 194.40378 63.64272 1.14763 - 194.40130 63.69398 1.14763 - 295.11977 165.76520 1.36316 - 295.12662 165.79689 1.36316 - 321.61658 54.30134 1.41218 - 321.54382 54.66566 1.41218 - 349.61957 12.70386 1.53804 - 349.06375 14.91321 1.53804 - 329.87936 -54.59640 1.61207 - 329.97958 -51.19971 1.61207 - 246.07789 -86.06244 1.52083 - 246.25489 -83.47959 1.52083 - 141.53272 -85.96615 1.30511 - 141.71753 -84.44552 1.30511 - 44.72628 -74.11967 1.01696 - 44.87357 -73.57919 1.01696 - -19.53970 -30.29838 0.67294 - -19.51538 -30.26037 0.67294 - 46.70467 86.07455 0.33369 - 46.64600 86.31271 0.33369 - 123.36571 77.66359 0.12635 - 122.66971 80.72004 0.12635 - 110.99462 -117.44107 -0.10531 - 111.73405 -114.59664 -0.10531 - -122.26641 -260.46824 -0.47511 - -121.96634 -261.36394 -0.47511 - -559.65837 -446.17023 -0.77675 - -559.52009 -449.93381 -0.77675 - -584.22983 421.82463 -0.84375 - -584.21512 418.03894 -0.84375 - -154.60504 217.86946 -0.63086 - -154.99236 217.04392 -0.63086 - 34.98888 71.09479 -0.32825 - 34.85582 71.58293 -0.32825 - 67.06117 -14.50753 -0.03678 - 67.13184 -14.11889 -0.03678 - 46.53306 -17.90375 0.20029 - 46.53567 -17.86828 0.20029 - 24.48437 -16.55135 0.41611 - 24.48679 -16.53200 0.41611 - 7.06955 -10.51403 0.62053 - 7.07107 -10.50729 0.62053 - -0.00029 -0.00093 0.82132 + 1.21850 -4.23828 -0.35640 + -7.50014 -14.26773 -0.00271 + -8.81873 -17.70527 -0.00271 + -18.40351 -18.97038 0.15176 + -18.27935 -18.24094 0.15176 + -7.07790 49.68823 0.57578 + -7.11423 49.66601 0.57578 + 94.62107 161.73894 0.89089 + 94.62894 161.80801 0.89089 + 194.38924 63.64038 1.14767 + 194.38676 63.69163 1.14767 + 295.10349 165.76364 1.36322 + 295.11034 165.79532 1.36322 + 321.59993 54.29991 1.41225 + 321.52718 54.66421 1.41225 + 349.60630 12.71431 1.53813 + 349.05047 14.92364 1.53813 + 329.89857 -54.55735 1.61221 + 329.99868 -51.16037 1.61221 + 246.17558 -85.98511 1.52099 + 246.35239 -83.40112 1.52099 + 141.76454 -85.84831 1.30526 + 141.94906 -84.32512 1.30526 + 45.13891 -73.98012 1.01696 + 45.28541 -73.43430 1.01696 + -18.93696 -30.20721 0.67255 + -18.91445 -30.15708 0.67255 + 47.19198 85.74987 0.33254 + 47.13723 85.98673 0.33254 + 123.38149 76.87146 0.12461 + 122.69203 80.50691 0.12461 + 110.63970 -118.16811 -0.10763 + 111.37240 -114.74427 -0.10763 + -123.08754 -261.05763 -0.47812 + -122.78684 -261.95876 -0.47812 + -561.53703 -447.27653 -0.78006 + -561.39367 -449.47851 -0.78006 + -585.66827 422.01515 -0.84643 + -585.65438 419.43322 -0.84643 + -154.40474 218.91428 -0.63213 + -154.79758 217.44082 -0.63213 + 35.62492 71.38193 -0.32821 + 35.49029 71.45136 -0.32821 + 67.55976 -14.54562 -0.03576 + 67.63205 -14.29193 -0.03576 + 46.83253 -18.04967 0.20197 + 46.83517 -18.01397 0.20197 + 24.62503 -16.65805 0.41831 + 24.62747 -16.63859 0.41831 + 7.10655 -10.57182 0.62319 + 7.10808 -10.56504 0.62319 + -0.00029 -0.00094 0.82442 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4820,57 +4959,57 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 1 0 A - 10.61393 0.00000 67.10829 10.67449 110 0 - - 10.61393 0.00000 67.10829 10.67449 110 0 - - 18.73411 0.00000 96.28581 15.31557 110 19 - - 18.73411 0.00000 96.28581 15.31557 110 19 - - 40.81484 0.00000 175.06511 27.84648 110 23 - - 40.81484 0.00000 175.06511 27.84648 110 23 - - 52.82580 10.00000 205.95896 32.76057 110 26 - - 61.36027 10.00000 108.28286 60.00000 110 57 - - 67.03232 18.80000 117.81176 65.28000 110 57 - - 67.03232 18.80000 112.35674 65.28000 110 60 - - 72.64141 27.60000 121.44442 70.56000 110 60 - - 72.64141 27.60000 118.33139 70.56000 110 61 - - 74.15625 30.00000 120.74631 72.00000 110 61 - - 79.63169 30.00000 362.35409 32.78599 110 22 - - 87.44976 38.00000 402.61565 36.42888 110 22 - - 87.44976 38.00000 393.87776 36.42888 110 22 - - 96.10992 51.62500 460.96007 42.63317 110 21 - - 96.10992 51.62500 458.09116 42.63317 110 21 - - 99.28741 65.25000 524.75596 48.83746 110 19 - - 99.28741 65.25000 523.76154 48.83746 110 19 - - 98.33579 78.87500 590.30001 55.04176 110 17 - - 98.33579 78.87500 589.83653 55.04176 110 17 - - 94.98128 92.50000 656.32275 61.24605 110 14 - - 94.98128 92.50000 656.06217 61.24605 110 14 - - 90.39981 107.50000 729.22896 68.07646 110 12 - - 90.39981 107.50000 729.06908 68.07646 110 12 - - 85.97638 122.50000 802.21983 74.90688 110 11 - - 85.97638 122.50000 802.13653 74.90688 110 11 - - 83.08250 131.25000 844.80337 78.89129 110 10 - - 83.08250 131.25000 844.75901 78.89129 110 10 - - 79.38233 140.00000 887.42360 82.87570 110 0 - - 180.77181 140.00000 505.58052 182.00000 110 0 - - 186.69893 152.80000 534.02637 192.24000 110 0 - - 186.69893 152.80000 510.00423 192.24000 110 0 - - 193.18091 165.30000 536.53379 202.24000 110 0 - - 193.18091 165.30000 514.04920 202.24000 110 0 - - 203.33948 178.97500 541.85625 213.18000 110 0 - - 203.33948 178.97500 520.38773 213.18000 110 0 - - 216.76244 192.65000 547.09306 224.12000 110 0 - - 216.76244 192.65000 527.37325 224.12000 110 0 - - 231.23170 206.32500 553.11599 235.06000 110 0 - - 231.23170 206.32500 534.86965 235.06000 110 0 - - 245.57103 220.00000 559.76319 246.00000 110 0 - - 245.57103 220.00000 543.46621 246.00000 110 0 - - 258.33594 232.50000 565.55833 256.00000 110 46 - - 258.33594 232.50000 550.95235 256.00000 110 47 - - 270.85295 245.00000 572.47392 266.00000 110 47 - - 270.85295 245.00000 558.68012 266.00000 110 48 - - 283.23712 257.50000 579.68313 276.00000 110 49 - - 283.23712 257.50000 566.61384 276.00000 110 50 - - 295.57893 270.00000 587.14333 286.00000 110 50 - + 10.61343 0.00000 67.10829 10.67449 110 0 - + 10.61343 0.00000 67.10829 10.67449 110 0 - + 18.73377 0.00000 96.28581 15.31557 110 19 - + 18.73377 0.00000 96.28581 15.31557 110 19 - + 40.81496 0.00000 175.06511 27.84648 110 23 - + 40.81496 0.00000 175.06511 27.84648 110 23 - + 52.82632 10.00000 205.95896 32.76057 110 26 - + 61.36030 10.00000 108.28286 60.00000 110 57 - + 67.03238 18.80000 117.81176 65.28000 110 57 - + 67.03238 18.80000 112.35674 65.28000 110 60 - + 72.64150 27.60000 121.44442 70.56000 110 60 - + 72.64150 27.60000 118.33139 70.56000 110 61 - + 74.15636 30.00000 120.74631 72.00000 110 61 - + 79.63399 30.00000 362.35409 32.78599 110 22 - + 87.45282 38.00000 402.61565 36.42888 110 22 - + 87.45282 38.00000 393.87776 36.42888 110 22 - + 96.11442 51.62500 460.96007 42.63317 110 21 - + 96.11442 51.62500 458.09116 42.63317 110 21 - + 99.29296 65.25000 524.75596 48.83746 110 19 - + 99.29296 65.25000 523.76154 48.83746 110 19 - + 98.34066 78.87500 590.30001 55.04176 110 17 - + 98.34066 78.87500 589.83653 55.04176 110 17 - + 94.98148 92.50000 656.32275 61.24605 110 14 - + 94.98148 92.50000 656.06217 61.24605 110 14 - + 90.38669 107.50000 729.22896 68.07646 110 12 - + 90.38669 107.50000 729.06908 68.07646 110 12 - + 85.93808 122.50000 802.21983 74.90688 110 11 - + 85.93808 122.50000 802.13653 74.90688 110 11 - + 83.02479 131.25000 844.80337 78.89129 110 10 - + 83.02479 131.25000 844.75901 78.89129 110 10 - + 79.30534 140.00000 887.42360 82.87570 110 0 - + 180.74474 140.00000 505.58052 182.00000 110 0 - + 186.66380 152.80000 534.02637 192.24000 110 0 - + 186.66380 152.80000 510.00423 192.24000 110 0 - + 193.14229 165.30000 536.53379 202.24000 110 0 - + 193.14229 165.30000 514.04920 202.24000 110 0 - + 203.30830 178.97500 541.85625 213.18000 110 0 - + 203.30830 178.97500 520.38773 213.18000 110 0 - + 216.74756 192.65000 547.09306 224.12000 110 0 - + 216.74756 192.65000 527.37325 224.12000 110 0 - + 231.23211 206.32500 553.11599 235.06000 110 0 - + 231.23211 206.32500 534.86965 235.06000 110 0 - + 245.58293 220.00000 559.76319 246.00000 110 0 - + 245.58293 220.00000 543.46621 246.00000 110 0 - + 258.35555 232.50000 565.55833 256.00000 110 46 - + 258.35555 232.50000 550.95235 256.00000 110 47 - + 270.87865 245.00000 572.47392 266.00000 110 47 - + 270.87865 245.00000 558.68012 266.00000 110 48 - + 283.26813 257.50000 579.68313 276.00000 110 49 - + 283.26813 257.50000 566.61384 276.00000 110 50 - + 295.61501 270.00000 587.14333 286.00000 110 50 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4885,8 +5024,8 @@ Layer name [DATA] 20.00 100.456 'Remblais CT' 16.00 135.565 'Argile et limon CT' - 14.00 1007.685 'Sable et gravier CT' - 3.00 3017.053 'Argile Yprésienne CT' + 14.00 1007.560 'Sable et gravier CT' + 3.00 3017.012 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5053,16 +5192,16 @@ Status character [DATA] 0.00000 0.00000 0.00000 0.00000 202 100 P 13.75708 0.00000 13.75708 13.75708 202 100 P - 12.86777 0.00000 43.40650 12.80721 110 30 - + 12.86826 0.00000 43.40650 12.80721 110 30 - 17.39097 0.00000 59.90412 17.67488 1 0 A 15.61360 0.00000 65.95931 15.61360 1 24 A 25.79765 0.00000 108.98162 25.79765 1 24 A 24.90618 0.00000 132.14608 30.41084 1 0 A 28.33754 10.00000 150.35202 34.60058 1 0 A - 80.67942 10.00000 93.98896 82.03969 110 0 - - 87.92392 18.80000 102.73779 89.67623 110 0 - - 46.46769 18.80000 48.22001 48.22001 110 0 - - 51.39653 27.60000 53.47794 53.47794 110 0 - + 80.67939 10.00000 93.98896 82.03969 110 0 - + 87.92385 18.80000 102.73779 89.67623 110 0 - + 46.46763 18.80000 48.22001 48.22001 110 0 - + 51.39643 27.60000 53.47794 53.47794 110 0 - 154.90191 27.60000 154.90191 154.90191 1 100 A 159.35173 30.00000 159.35173 159.35173 1 100 A 87.17929 30.00000 406.58671 87.17929 1 21 A @@ -5077,32 +5216,32 @@ Status character 100.04122 92.50000 1268.81740 100.04122 1 8 A 83.29518 92.50000 698.33424 83.37016 1 0 A 91.68530 107.50000 768.67571 91.76783 1 0 A - 64.71448 107.50000 769.31965 87.03782 110 0 - - 83.70583 122.50000 837.71080 94.77533 110 0 - - 80.72401 122.50000 839.97760 91.79351 110 0 - - 91.89789 131.25000 879.28540 96.08911 110 0 - + 64.72759 107.50000 769.31965 87.03782 110 0 - + 83.74414 122.50000 837.71080 94.77533 110 0 - + 80.76232 122.50000 839.97760 91.79351 110 0 - + 91.95560 131.25000 879.28540 96.08911 110 0 - 117.69793 131.25000 881.64175 117.69793 1 13 A - 126.39972 140.00000 920.65656 122.90636 110 14 - - 197.32388 140.00000 454.36031 196.09569 110 43 - - 211.22542 152.80000 476.57758 205.68436 110 44 - - 210.21888 152.80000 303.52746 204.67781 110 69 - - 222.95285 165.30000 317.19426 213.89375 110 70 - + 126.47672 140.00000 920.65656 122.90636 110 14 - + 197.35095 140.00000 454.36031 196.09569 110 43 - + 211.26055 152.80000 476.57758 205.68436 110 44 - + 210.25401 152.80000 303.52746 204.67781 110 69 - + 222.99147 165.30000 317.19426 213.89375 110 70 - 81.46268 165.30000 81.46268 81.46268 202 100 P 85.27188 178.97500 85.27188 85.27188 202 100 P - 232.72318 178.97500 523.46804 222.88266 110 44 - - 240.14119 192.65000 546.72174 232.78363 110 44 - - 240.06496 192.65000 401.44202 232.70740 110 60 - - 246.39975 206.32500 418.45843 242.57145 110 59 - - 246.52163 206.32500 534.95583 242.69333 110 46 - - 252.97359 220.00000 556.67049 252.54461 110 45 - - 253.22957 220.00000 542.64735 252.80060 110 47 - - 259.47300 232.50000 561.98415 261.80894 110 0 - - 259.81211 232.50000 554.36591 262.14805 110 0 - - 266.31639 245.00000 573.44329 271.16935 110 0 - - 266.72417 245.00000 566.24120 271.57713 110 0 - - 273.38079 257.50000 585.09133 280.61791 110 0 - - 273.83872 257.50000 566.18221 281.07584 110 0 - - 280.56168 270.00000 584.44172 290.14061 110 0 - + 232.75435 178.97500 523.46804 222.88266 110 44 - + 240.15607 192.65000 546.72174 232.78363 110 44 - + 240.07983 192.65000 401.44202 232.70740 110 60 - + 246.39934 206.32500 418.45843 242.57145 110 59 - + 246.52121 206.32500 534.95583 242.69333 110 46 - + 252.96168 220.00000 556.67049 252.54461 110 45 - + 253.21767 220.00000 542.64735 252.80060 110 47 - + 259.45339 232.50000 561.98415 261.80894 110 0 - + 259.79250 232.50000 554.36591 262.14805 110 0 - + 266.29069 245.00000 573.44329 271.16935 110 0 - + 266.69848 245.00000 566.24120 271.57713 110 0 - + 273.34978 257.50000 585.09133 280.61791 110 0 - + 273.80771 257.50000 566.18221 281.07584 110 0 - + 280.52559 270.00000 584.44172 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5115,10 +5254,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 70.049 'Remblais CT' + 20.00 70.050 'Remblais CT' 16.00 154.956 'Argile et limon CT' - 14.00 1041.151 'Sable et gravier CT' - 3.00 2977.015 'Argile Yprésienne CT' + 14.00 1041.266 'Sable et gravier CT' + 3.00 2977.008 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5126,7 +5265,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5136,8 +5275,6 @@ Depth 18.85000 18.35000 18.35000 - 18.05000 - 18.05000 17.00000 17.00000 16.00000 @@ -5191,7 +5328,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=12 [SURCHARGE DATA] [TABLE] @@ -5238,20 +5375,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 22.56 : Percentage mobilized resistance left - 30.29 : Percentage mobilized resistance right -11945.27 : Effective left -11960.15 : Effective right + 22.77 : Percentage mobilized resistance left + 29.38 : Percentage mobilized resistance right +12055.86 : Effective left +12051.85 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right -52960.14 : Max effective resistance left -39486.12 : Max effective resistance right +52957.69 : Max effective resistance left +41024.08 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 842.99 : Vertical force left - 900.24 : Vertical force right + 845.49 : Vertical force left + 892.47 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -5261,67 +5398,65 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 1.22218 -4.25106 6.68601 - -20.49119 -48.14147 5.95543 - -21.81377 -51.58935 5.95543 - -57.45564 -93.19264 5.63959 - -57.35518 -92.39024 5.63959 - -89.37561 -121.77984 5.45181 - -89.36729 -121.81253 5.45181 - -217.28418 -69.82978 4.81859 - -217.30572 -69.80902 4.81859 - -160.82875 208.15890 4.27163 - -160.81268 208.19839 4.27163 - -70.80157 -6.65048 3.82695 - -70.80224 -6.67382 3.82695 - -87.05478 -31.30887 3.39918 - -87.05701 -31.31916 3.39918 - -112.68862 -182.98412 3.28556 - -112.65303 -183.16223 3.28556 - -200.89706 -52.26189 2.92268 - -200.56228 -53.52723 2.92268 - -189.07033 33.26722 2.38407 - -189.15498 31.34102 2.38407 - -126.54984 31.69734 1.93980 - -126.64450 30.29756 1.93980 - -91.77685 -1.64317 1.56134 - -91.79113 -2.72312 1.56134 - -113.74095 -47.40500 1.23214 - -113.52337 -48.97565 1.23214 - -187.11833 -64.75644 0.94001 - -186.52516 -68.44149 0.94001 - -139.62946 112.86969 0.75702 - -140.56671 110.23969 0.75702 - -8.58744 187.73724 0.69297 - -9.32499 190.39956 0.69297 - 89.29805 32.38001 0.63135 - 89.92346 35.23819 0.63135 - -15.98454 -203.22163 0.51280 - -15.74950 -203.58255 0.51280 - -418.18822 -442.07754 0.41398 - -418.08402 -444.95885 0.41398 - -460.78544 395.05179 0.50159 - -460.75233 392.16165 0.50159 - -71.98558 186.73394 0.80675 - -72.32097 186.52705 0.80675 - 79.92152 47.88472 1.15909 - 79.82769 48.68970 1.15909 - 89.78021 -23.39265 1.47655 - 89.88996 -22.90329 1.47655 - 59.51980 -24.71118 1.72629 - 59.52343 -24.66543 1.72629 - 30.31842 -21.17799 1.94872 - 30.32154 -21.15381 1.94872 - 8.54117 -12.86037 2.15699 - 8.54305 -12.85214 2.15699 - -0.00035 -0.00112 2.36083 + 1.22445 -4.25896 2.76488 + -20.49801 -48.14936 2.67390 + -21.82304 -51.60367 2.67390 + -57.47206 -93.20696 2.63615 + -59.65277 -85.64293 2.63615 + -152.93172 22.47594 2.56396 + -150.61698 29.10150 2.56396 + 5.47703 284.20180 2.55168 + 5.44069 284.08113 2.55168 + 162.85090 71.72571 2.54125 + 162.84822 71.76416 2.54125 + 218.98380 55.72739 2.49808 + 218.98935 55.75299 2.49808 + 214.85783 -90.85693 2.47874 + 214.81787 -90.65676 2.47874 + 162.59211 -47.95817 2.39147 + 162.37677 -47.00875 2.39147 + 122.51906 -35.00262 2.17882 + 122.58573 -33.69924 2.17882 + 83.10864 -46.03260 1.90383 + 83.19657 -45.18307 1.90383 + 24.56850 -60.81210 1.58738 + 24.69662 -60.59686 1.58738 + -59.61961 -81.02171 1.25953 + -59.34746 -81.90096 1.25953 + -164.32215 -75.11123 0.93611 + -163.73036 -78.28694 0.93611 + -125.16976 107.30536 0.70642 + -126.01851 104.73372 0.70642 + -2.53562 172.12935 0.61083 + -3.25869 175.04537 0.61083 + 80.30674 12.43927 0.51652 + 80.94341 15.68689 0.51652 + -40.52990 -209.19891 0.35422 + -40.28892 -209.69299 0.35422 + -445.38971 -441.10437 0.22284 + -445.27511 -442.64729 0.22284 + -482.21834 400.48765 0.28790 + -482.19449 398.59399 0.28790 + -84.50026 193.01557 0.58145 + -84.84950 192.07368 0.58145 + 73.96519 51.79881 0.92865 + 73.86396 52.17456 0.92865 + 87.07678 -22.16681 1.24417 + 87.18291 -21.80299 1.24417 + 58.01385 -23.89121 1.49346 + 58.01736 -23.84666 1.49346 + 29.65886 -20.64150 1.71614 + 29.66189 -20.61788 1.71614 + 8.37899 -12.59846 1.92498 + 8.38082 -12.59040 1.92498 + -0.00034 -0.00110 2.12948 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5335,7 +5470,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 18.05 + 0.00 18.35 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Théorique CT @@ -5396,31 +5531,31 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 18.05000 0.00000 0.00000 0.00000 0.00000 - 17.00000 64.73000 33.84800 32.16821 3.22399 - 16.00000 64.73000 33.84800 108.88793 10.91306 - 15.12000 60.92000 41.72900 177.53692 1.25582 - 14.24000 58.81400 0.00000 248.21672 0.00000 - 14.00000 58.37800 0.00000 268.05224 0.00000 - 13.20000 63.83600 41.31800 447.28352 4.30470 - 11.83750 66.10100 38.87700 809.34504 22.01678 - 10.47500 66.94700 37.13800 1258.42174 45.16620 - 9.11250 67.37500 35.86300 1796.94408 73.63122 - 7.75000 67.62500 34.90700 2425.51411 107.32038 - 6.25000 67.79900 34.10900 3221.91541 150.37260 - 4.75000 67.91300 33.50200 4127.85188 199.61472 - 3.87500 67.96200 33.21300 4706.92491 231.18004 - 3.00000 68.00300 32.96200 5323.29911 264.83027 - 1.72000 67.15000 37.05900 5944.97044 144.23116 - 0.47000 66.43900 38.90100 6553.83307 48.00969 - -0.89750 65.76500 0.00000 7224.44431 0.00000 - -2.26500 65.17500 0.00000 7901.66522 0.00000 - -3.63250 64.65100 0.00000 8586.91619 0.00000 - -5.00000 64.18200 0.00000 9281.26282 0.00000 - -6.25000 63.79200 0.00000 9924.60855 0.00000 - -7.50000 63.43400 0.00000 10576.74467 0.00000 - -8.75000 63.10300 0.00000 11238.08235 0.00000 - -10.00000 62.79500 0.00000 11908.96371 0.00000 + 18.35000 0.00000 0.00000 0.00000 0.00000 + 17.00000 64.73000 33.84800 53.17603 5.32945 + 16.00000 64.73000 33.84800 147.40225 14.77308 + 15.12000 61.67200 41.03200 221.01438 9.43294 + 14.24000 59.79300 42.51800 296.91445 9.46064 + 14.00000 59.39000 42.74600 318.17494 10.29937 + 13.20000 64.12700 40.84500 516.51282 19.16912 + 11.83750 66.20500 38.47900 912.30644 38.75665 + 10.47500 66.99400 36.82200 1395.23503 63.80701 + 9.11250 67.39800 35.61500 1967.63310 94.17387 + 7.75000 67.63700 34.71100 2630.08495 129.75923 + 6.25000 67.80300 33.95800 3463.78853 174.89139 + 4.75000 67.91400 33.38400 4407.02670 226.20647 + 3.87500 67.96200 33.11000 5007.85857 258.97837 + 3.00000 68.00200 32.87300 5645.99123 293.83359 + 1.72000 67.19200 36.87800 6274.51109 179.17641 + 0.47000 66.51200 38.71800 6890.52841 88.84463 + -0.89750 65.86300 39.92900 7569.29072 8.22659 + -2.26500 65.29200 0.00000 8254.87390 0.00000 + -3.63250 64.78300 0.00000 8948.61849 0.00000 + -5.00000 64.32500 0.00000 9651.53975 0.00000 + -6.25000 63.94400 0.00000 10302.76616 0.00000 + -7.50000 63.59300 0.00000 10962.80620 0.00000 + -8.75000 63.26800 0.00000 11632.05909 0.00000 + -10.00000 62.96500 0.00000 12310.85846 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -5437,36 +5572,36 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 17.52500 8.92500 30.63639 3.07047 0.54601 0.34403 3.43265 - 16.50000 22.35000 76.71971 7.68907 0.54601 0.34403 3.43265 - 15.56000 29.49000 78.01022 -10.97414 1.00000 0.00000 2.64531 - 14.68000 34.77000 80.31795 -1.42706 1.00000 0.00000 2.30998 - 14.12000 38.13000 82.64800 0.00000 1.00000 0.00000 2.16753 - 13.60000 42.85000 224.03910 5.38087 0.45536 0.12557 5.22845 - 12.51875 53.66250 265.73323 12.99970 0.45536 0.24225 4.95194 - 11.15625 67.28750 329.59758 16.99040 0.45536 0.25250 4.89835 - 9.79375 80.91250 395.24576 20.89175 0.45536 0.25820 4.88485 - 8.43125 94.53750 461.33580 24.72599 0.45536 0.26155 4.87992 - 7.00000 108.85000 530.93420 28.70148 0.45536 0.26368 4.87767 - 5.50000 123.85000 603.95765 32.82808 0.45536 0.26506 4.87653 - 4.31250 135.72500 661.79775 36.07464 0.45536 0.26579 4.87602 - 3.43750 144.47500 704.42766 38.45741 0.45536 0.26619 4.87578 - 2.36000 153.97000 485.68073 -94.21806 1.00000 0.00000 3.15439 - 1.09500 164.09000 487.09010 -76.97717 1.00000 0.00000 2.96843 - -0.21375 174.56000 490.39213 -35.10764 1.00000 0.00000 2.80930 - -1.58125 185.50000 495.22552 0.00000 1.00000 0.00000 2.66968 - -2.94875 196.44000 501.09761 0.00000 1.00000 0.00000 2.55089 - -4.31625 207.38000 507.74891 0.00000 1.00000 0.00000 2.44840 - -5.62500 217.85000 514.67658 0.00000 1.00000 0.00000 2.36253 - -6.87500 227.85000 521.70890 0.00000 1.00000 0.00000 2.28970 - -8.12500 237.85000 529.07014 0.00000 1.00000 0.00000 2.22439 - -9.37500 247.85000 536.70508 0.00000 1.00000 0.00000 2.16544 + 17.67500 11.47500 39.38965 3.94774 0.54601 0.34403 3.43265 + 16.50000 27.45000 94.22622 9.44362 0.54601 0.34403 3.43265 + 15.56000 34.59000 83.65015 -6.06833 1.00000 0.00000 2.41833 + 14.68000 39.87000 86.25007 0.03148 1.00000 0.00079 2.16328 + 14.12000 43.23000 88.58540 3.49468 1.00000 0.08084 2.04916 + 13.60000 47.95000 247.92234 11.08720 0.45536 0.23122 5.17043 + 12.51875 58.76250 290.49073 14.37617 0.45536 0.24465 4.94347 + 11.15625 72.38750 354.44300 18.38558 0.45536 0.25399 4.89647 + 9.79375 86.01250 420.10868 22.28761 0.45536 0.25912 4.88427 + 8.43125 99.63750 486.20319 26.11770 0.45536 0.26213 4.87972 + 7.00000 113.95000 555.80239 30.08810 0.45536 0.26405 4.87760 + 5.50000 128.95000 628.82545 34.21005 0.45536 0.26530 4.87651 + 4.31250 140.82500 686.66499 37.45360 0.45536 0.26596 4.87602 + 3.43750 149.57500 729.29447 39.83454 0.45536 0.26632 4.87578 + 2.36000 159.07000 491.03114 -89.57592 1.00000 0.00000 3.08689 + 1.09500 169.19000 492.81386 -72.26543 1.00000 0.00000 2.91278 + -0.21375 179.66000 496.35269 -58.95287 1.00000 0.00000 2.76273 + -1.58125 190.60000 501.34054 -6.01579 1.00000 0.00000 2.63033 + -2.94875 201.54000 507.30865 0.00000 1.00000 0.00000 2.51716 + -4.31625 212.48000 514.01921 0.00000 1.00000 0.00000 2.41914 + -5.62500 222.95000 520.98112 0.00000 1.00000 0.00000 2.33676 + -6.87500 232.95000 528.03203 0.00000 1.00000 0.00000 2.26672 + -8.12500 242.95000 535.40231 0.00000 1.00000 0.00000 2.20376 + -9.37500 252.95000 543.03949 0.00000 1.00000 0.00000 2.14683 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5481,56 +5616,54 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 202 100 P - 61.27279 0.00000 61.27279 9.74627 202 100 P - 61.27279 0.00000 61.27279 9.74627 202 100 P - 92.16663 10.00000 92.16663 14.66036 202 100 P - 33.37235 10.00000 71.02660 26.85000 110 47 - - 37.97337 18.80000 84.99384 32.13000 110 45 - - 37.97337 18.80000 74.21961 32.13000 110 51 - - 42.60021 27.60000 86.41630 37.41000 110 49 - - 42.60021 27.60000 81.08738 37.41000 110 53 - - 43.86671 30.00000 84.20863 38.85000 110 52 - - 126.68151 30.00000 203.12529 17.69077 110 62 - - 118.28681 38.00000 244.95290 21.33366 110 48 - - 118.28681 38.00000 231.99817 21.33366 110 51 - - 106.62406 51.62500 299.46829 27.53795 110 36 - - 106.62406 51.62500 296.22758 27.53795 110 36 - - 98.09068 65.25000 362.96757 33.74225 110 27 - - 98.09068 65.25000 361.96769 33.74225 110 27 - - 91.74024 78.87500 428.52382 39.94654 110 21 - - 91.74024 78.87500 428.09132 39.94654 110 21 - - 87.02419 92.50000 494.58029 46.15083 110 18 - - 87.02419 92.50000 494.35169 46.15083 110 18 - - 84.16408 107.50000 567.51671 52.98125 110 15 - - 84.16408 107.50000 567.38371 52.98125 110 15 - - 84.92397 122.50000 640.53159 59.81166 110 13 - - 84.92397 122.50000 640.46516 59.81166 110 13 - - 86.78384 131.25000 683.13033 63.79607 110 13 - - 86.78384 131.25000 683.09614 63.79607 110 13 - - 88.72402 140.00000 725.75917 67.78048 110 12 - - 156.21329 140.00000 469.53027 148.85000 110 33 - - 165.07067 152.80000 501.83118 159.09000 110 33 - - 165.07067 152.80000 472.24794 159.09000 110 35 - - 173.91816 165.30000 501.93227 169.09000 110 35 - - 173.91816 165.30000 475.02524 169.09000 110 37 - - 185.87996 178.97500 505.75902 180.03000 110 37 - - 185.87996 178.97500 480.62238 180.03000 110 39 - - 200.37896 192.65000 509.82867 190.97000 110 39 - - 200.37896 192.65000 487.14422 190.97000 110 41 - - 215.42818 206.32500 515.05100 201.91000 110 42 - - 215.42818 206.32500 494.35617 201.91000 110 44 - - 230.07074 220.00000 521.14165 212.85000 110 44 - - 230.07074 220.00000 502.86394 212.85000 110 46 - - 242.98336 232.50000 526.48922 222.85000 110 46 - - 242.98336 232.50000 510.26039 222.85000 110 48 - - 255.57755 245.00000 533.15742 232.85000 110 48 - - 255.57755 245.00000 517.94821 232.85000 110 49 - - 268.00650 257.50000 540.19207 242.85000 110 50 - - 268.00650 257.50000 525.87787 242.85000 110 51 - - 280.38392 270.00000 547.53230 252.85000 110 51 - + 70.27961 0.00000 78.77930 12.53092 110 89 - + 70.27961 0.00000 78.77930 12.53092 110 89 - + 74.91700 10.00000 109.67314 17.44500 110 68 - + 35.84616 10.00000 77.26575 31.95000 110 46 - + 41.11023 18.80000 90.03455 37.23000 110 46 - + 41.11023 18.80000 80.53901 37.23000 110 51 - + 46.32432 27.60000 91.96114 42.51000 110 50 - + 46.32432 27.60000 87.11000 42.51000 110 53 - + 47.73479 30.00000 90.06080 43.95000 110 53 - + 102.23969 30.00000 227.24060 20.01311 110 45 - + 102.98738 38.00000 268.60408 23.65600 110 38 - + 102.98738 38.00000 256.81333 23.65600 110 40 - + 102.13779 51.62500 324.16813 29.86030 110 32 - + 102.13779 51.62500 321.08582 29.86030 110 32 - + 99.21983 65.25000 387.80018 36.06459 110 26 - + 99.21983 65.25000 386.83456 36.06459 110 26 - + 94.92646 78.87500 453.38280 42.26888 110 21 - + 94.92646 78.87500 452.96009 42.26888 110 21 - + 90.25533 92.50000 519.44629 48.47317 110 17 - + 90.25533 92.50000 519.22040 48.47317 110 17 - + 86.35676 107.50000 592.38438 55.30359 110 15 - + 86.35676 107.50000 592.25165 55.30359 110 15 - + 85.56801 122.50000 665.39924 62.13400 110 13 - + 85.56801 122.50000 665.33242 62.13400 110 13 - + 86.38138 131.25000 707.99756 66.11841 110 12 - + 86.38138 131.25000 707.96294 66.11841 110 12 - + 87.23704 140.00000 750.62600 70.10282 110 12 - + 159.97402 140.00000 475.22628 153.95000 110 34 - + 168.32122 152.80000 506.83600 164.19000 110 33 - + 168.32122 152.80000 478.24994 164.19000 110 35 - + 176.78895 165.30000 507.37777 174.19000 110 35 - + 176.78895 165.30000 481.24054 174.19000 110 37 - + 188.48777 178.97500 511.46484 185.13000 110 37 - + 188.48777 178.97500 486.95265 185.13000 110 39 - + 202.85128 192.65000 515.72844 196.07000 110 39 - + 202.85128 192.65000 493.53978 196.07000 110 41 - + 217.84069 206.32500 521.07752 207.01000 110 42 - + 217.84069 206.32500 500.78650 207.01000 110 43 - + 232.46050 220.00000 527.25191 217.95000 110 44 - + 232.46050 220.00000 509.29731 217.95000 110 46 - + 245.36788 232.50000 532.66494 227.95000 110 46 - + 245.36788 232.50000 516.69844 227.95000 110 47 - + 257.96503 245.00000 539.36563 237.95000 110 48 - + 257.96503 245.00000 524.38354 237.95000 110 49 - + 270.40061 257.50000 546.42109 247.95000 110 49 - + 270.40061 257.50000 532.30537 247.95000 110 51 - + 282.78569 270.00000 553.77362 257.95000 110 51 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5543,10 +5676,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 108.888 'Remblais CT' - 16.00 77.221 'Argile et limon CT' - 14.00 1048.889 'Sable et gravier CT' - 3.00 2793.768 'Argile Yprésienne CT' + 20.00 120.037 'Remblais CT' + 16.00 83.619 'Argile et limon CT' + 14.00 1030.013 'Sable et gravier CT' + 3.00 2827.876 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5617,7 +5750,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=28 +DataCount=27 [COLUMN INDICATION] Slide plane position Theta min @@ -5629,7 +5762,6 @@ Q max 20.00000 0.00000 0.00000 0.00000 0.00000 18.85000 115.19800 43.09000 6.37113 7.94593 18.35000 108.75000 39.98900 32.30128 15.47381 - 18.05000 104.60200 38.83500 51.77332 20.77490 17.00000 89.00000 36.61700 151.45183 43.67860 16.00000 75.10600 35.67800 292.37829 70.23966 15.12000 63.43500 37.54000 378.60580 99.01052 @@ -5659,7 +5791,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=27 +DataCount=26 [COLUMN INDICATION] Position Vertical stress @@ -5672,8 +5804,7 @@ Lambda passive [DATA] 19.42500 12.57240 5.54011 6.90951 0.54958 0.54958 0.54958 18.60000 29.90732 51.86032 15.05574 0.51163 0.50341 1.73403 - 18.20000 37.23661 64.90679 17.67030 0.47454 0.47454 1.74309 - 17.52500 48.69500 94.93191 21.81305 0.44795 0.44795 1.94952 + 17.67500 46.22589 88.25966 20.89244 0.45196 0.45196 1.90931 16.50000 60.87157 140.92646 26.56106 0.53279 0.43635 2.31514 15.56000 67.70450 97.98580 32.69415 1.26326 0.48289 1.44726 14.68000 74.71076 50.74881 42.28979 0.67927 0.56605 0.67927 @@ -5702,7 +5833,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5717,16 +5848,14 @@ Status character 13.75708 0.00000 13.75708 13.75708 1 100 A 12.60149 0.00000 43.40650 12.80721 1 0 A 17.39097 0.00000 59.90412 17.67488 1 0 A - 16.39355 0.00000 60.21700 16.39355 1 27 A - 18.91881 0.00000 69.49285 18.91881 1 27 A - 17.85879 0.00000 77.72270 17.85879 1 23 A - 25.56868 0.00000 111.27665 25.56868 1 23 A + 15.61360 0.00000 65.95931 15.61360 1 24 A + 25.79765 0.00000 108.98162 25.79765 1 24 A 24.90618 0.00000 132.14608 30.41084 1 0 A 28.33754 10.00000 150.35202 34.60058 1 0 A - 75.51734 10.00000 93.98896 82.03969 110 0 - - 83.83287 18.80000 102.73779 89.67623 110 0 - - 42.37664 18.80000 48.22001 48.22001 110 0 - - 48.28773 27.60000 53.47794 53.47794 110 0 - + 78.14353 10.00000 93.98896 82.03969 110 0 - + 85.79600 18.80000 102.73779 89.67623 110 0 - + 44.33978 18.80000 48.22001 48.22001 110 0 - + 49.66362 27.60000 53.47794 53.47794 110 0 - 154.90191 27.60000 154.90191 154.90191 1 100 A 159.35173 30.00000 159.35173 159.35173 1 100 A 87.17929 30.00000 406.58671 87.17929 1 21 A @@ -5741,32 +5870,32 @@ Status character 100.04122 92.50000 1268.81740 100.04122 1 8 A 83.29518 92.50000 698.33424 83.37016 1 0 A 91.68530 107.50000 768.67571 91.76783 1 0 A - 55.85499 107.50000 769.31965 87.03782 110 0 - - 69.66303 122.50000 837.71080 94.77533 110 0 - - 66.68121 122.50000 839.97760 91.79351 110 0 - - 73.10134 131.25000 879.28540 96.08911 110 0 - + 55.98465 107.50000 769.31965 87.03782 110 0 - + 71.34133 122.50000 837.71080 94.77533 110 0 - + 68.35951 122.50000 839.97760 91.79351 110 0 - + 75.82614 131.25000 879.28540 96.08911 110 0 - 117.69793 131.25000 881.64175 117.69793 1 13 A 122.90636 140.00000 920.65656 122.90636 1 13 A - 188.73239 140.00000 454.36031 196.09569 110 0 - - 199.70368 152.80000 476.57758 205.68436 110 0 - - 198.69714 152.80000 303.52746 204.67781 110 0 - - 209.06559 165.30000 317.19426 213.89375 110 0 - - 68.16942 165.30000 81.46268 81.46268 110 0 - - 70.21124 178.97500 85.27188 85.27188 110 0 - - 217.03270 178.97500 523.46804 222.88266 110 0 - - 223.37467 192.65000 546.72174 232.78363 110 0 - - 223.29844 192.65000 401.44202 232.70740 110 0 - - 229.05327 206.32500 418.45843 242.57145 110 0 - - 229.17515 206.32500 534.95583 242.69333 110 0 - - 235.32387 220.00000 556.67049 252.54461 110 0 - - 235.57986 220.00000 542.64735 252.80060 110 0 - - 241.67558 232.50000 561.98415 261.80894 110 0 - - 242.01469 232.50000 554.36591 262.14805 110 0 - - 248.44179 245.00000 573.44329 271.16935 110 0 - - 248.84958 245.00000 566.24120 271.57713 110 0 - - 255.46142 257.50000 585.09133 280.61791 110 0 - - 255.91935 257.50000 566.18221 281.07584 110 0 - - 262.60669 270.00000 584.44172 290.14061 110 0 - + 190.07167 140.00000 454.36031 196.09569 110 0 - + 201.55313 152.80000 476.57758 205.68436 110 0 - + 200.54659 152.80000 303.52746 204.67781 110 0 - + 211.29480 165.30000 317.19426 213.89375 110 0 - + 70.36193 165.30000 81.46268 81.46268 110 0 - + 72.67381 178.97500 85.27188 85.27188 110 0 - + 219.52489 178.97500 523.46804 222.88266 110 0 - + 226.00235 192.65000 546.72174 232.78363 110 0 - + 225.92612 192.65000 401.44202 232.70740 110 0 - + 231.74076 206.32500 418.45843 242.57145 110 0 - + 231.86263 206.32500 534.95583 242.69333 110 0 - + 238.03412 220.00000 556.67049 252.54461 110 0 - + 238.29010 220.00000 542.64735 252.80060 110 0 - + 244.39106 232.50000 561.98415 261.80894 110 0 - + 244.73017 232.50000 554.36591 262.14805 110 0 - + 251.15431 245.00000 573.44329 271.16935 110 0 - + 251.56210 245.00000 566.24120 271.57713 110 0 - + 258.16730 257.50000 585.09133 280.61791 110 0 - + 258.62523 257.50000 566.18221 281.07584 110 0 - + 265.30491 270.00000 584.44172 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5779,10 +5908,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 70.127 'Remblais CT' - 16.00 147.717 'Argile et limon CT' - 14.00 1008.079 'Sable et gravier CT' - 3.00 2770.187 'Argile Yprésienne CT' + 20.00 69.983 'Remblais CT' + 16.00 151.205 'Argile et limon CT' + 14.00 1011.361 'Sable et gravier CT' + 3.00 2802.333 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -5790,7 +5919,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5800,8 +5929,6 @@ Depth 18.85000 18.35000 18.35000 - 18.05000 - 18.05000 17.00000 17.00000 16.00000 @@ -5869,7 +5996,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -106.21016 0.00000 0 'Dalle toiture 18.85' + 2 18.85000 -7.48897 0.00000 0 'Dalle toiture 18.85' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -5918,22 +6045,22 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 22.57 : Percentage mobilized resistance left - 30.07 : Percentage mobilized resistance right -11951.00 : Effective left -11875.29 : Effective right + 22.77 : Percentage mobilized resistance left + 29.37 : Percentage mobilized resistance right +12056.93 : Effective left +12047.69 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right -52960.14 : Max effective resistance left -39486.12 : Max effective resistance right --695174.99 : Max moment left --598851.00 : Max moment right --187633.63 : Max mobilized moment left --187702.42 : Max mobilized moment right - 841.41 : Vertical force left - 887.94 : Vertical force right - 27.0 : Max mobilized moment percentage left - 31.3 : Max mobilized moment percentage right +52957.69 : Max effective resistance left +41024.08 : Max effective resistance right +-695152.92 : Max moment left +-615229.45 : Max moment right +-189643.45 : Max mobilized moment left +-189657.48 : Max mobilized moment right + 845.67 : Vertical force left + 891.88 : Vertical force right + 27.3 : Max mobilized moment percentage left + 30.8 : Max mobilized moment percentage right 18.85 : Level of single support 2 : Node of single support 1 : Moment present @@ -5941,67 +6068,65 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 1.22218 -4.25106 2.53951 - -20.49119 -48.14147 2.59033 - -21.84859 54.89937 2.59033 - -4.34121 13.01072 2.61362 - -4.20594 14.09169 2.61362 - -4.28179 -15.29791 2.62782 - -5.30522 -11.40012 2.62782 - -17.28908 40.58262 2.67974 - -16.12914 43.93491 2.67974 - 139.26944 277.43586 2.72953 - 139.12629 276.91949 2.72953 - 280.49790 42.49684 2.74358 - 280.49597 42.56545 2.74358 - 301.30712 4.64297 2.70028 - 301.31561 4.68207 2.70028 - 284.16115 -148.31156 2.67753 - 284.11071 -148.05884 2.67753 - 193.19108 -87.73688 2.57207 - 192.96945 -86.68574 2.57207 - 115.59889 -52.11345 2.31820 - 115.70976 -50.84131 2.31820 - 62.52317 -50.63299 2.00449 - 62.62441 -49.98354 2.00449 - 1.05815 -61.52377 1.65934 - 1.18950 -61.55713 1.65934 - -85.05450 -83.59138 1.31475 - -84.75013 -84.80280 1.31475 - -197.35615 -82.52801 0.98820 - -196.64877 -86.41822 0.98820 - -160.85025 113.32510 0.77559 - -161.87023 110.39543 0.77559 - -27.67825 192.02062 0.70003 - -28.42327 194.61231 0.70003 - 74.20575 37.12129 0.63086 - 74.83785 39.91836 0.63086 - -25.32831 -199.08392 0.50674 - -25.09899 -199.50273 0.50674 - -423.09518 -439.08501 0.40660 - -422.99325 -441.99617 0.40660 - -462.49760 396.79347 0.49518 - -462.46755 393.89259 0.49518 - -72.03279 187.49895 0.80225 - -72.36957 187.29324 0.80225 - 80.45607 48.02994 1.15657 - 80.36193 48.83982 1.15657 - 90.28530 -23.53416 1.47577 - 90.39571 -23.04213 1.47577 - 59.84789 -24.85204 1.72687 - 59.85154 -24.80604 1.72687 - 30.48306 -21.29490 1.95051 - 30.48619 -21.27059 1.95051 - 8.58697 -12.93000 2.15990 - 8.58885 -12.92172 2.15990 - -0.00035 -0.00113 2.36485 + 1.22445 -4.25896 2.67316 + -20.49801 -48.14936 2.60338 + -21.82305 -44.11464 2.60338 + -53.87585 -86.32234 2.57480 + -55.95242 -79.06678 2.57480 + -141.81235 25.81036 2.52554 + -139.60594 32.14422 2.52554 + 17.41512 283.29880 2.52696 + 17.38266 283.19648 2.52696 + 173.87274 70.54252 2.52592 + 173.87009 70.58386 2.52592 + 228.88189 54.37116 2.48981 + 228.88774 54.39816 2.48981 + 224.42916 -92.22701 2.47202 + 224.38729 -92.01724 2.47202 + 170.75793 -50.00582 2.38885 + 170.53239 -49.01123 2.38885 + 127.72070 -37.17429 2.18009 + 127.79251 -35.81484 2.18009 + 85.71745 -47.68006 1.90630 + 85.80937 -46.80129 1.90630 + 25.38960 -61.83049 1.58969 + 25.52023 -61.60511 1.58969 + -59.80926 -81.52628 1.26124 + -59.53542 -82.40742 1.26124 + -164.95690 -75.22708 0.93723 + -164.36325 -78.41429 0.93723 + -125.55793 107.73860 0.70733 + -126.40967 105.15827 0.70733 + -2.42814 172.84421 0.61173 + -3.15377 175.77101 0.61173 + 80.72173 12.11976 0.51739 + 81.36061 15.37940 0.51739 + -40.41996 -209.37612 0.35492 + -40.17875 -209.86937 0.35492 + -445.43629 -441.18467 0.22333 + -445.32157 -442.72784 0.22333 + -482.32505 400.47367 0.28817 + -482.30117 398.57928 0.28817 + -84.60142 193.03346 0.58155 + -84.95068 192.09084 0.58155 + 73.89507 51.82367 0.92864 + 73.79379 52.19889 0.92864 + 87.03500 -22.15196 1.24408 + 87.14106 -21.78836 1.24408 + 57.98891 -23.87897 1.49331 + 57.99241 -23.83444 1.49331 + 29.64719 -20.63262 1.71596 + 29.65022 -20.60900 1.71596 + 8.37593 -12.59368 1.92475 + 8.37776 -12.58561 1.92475 + -0.00034 -0.00110 2.12922 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6015,7 +6140,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 18.05 + 0.00 18.35 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Théorique CT @@ -6076,31 +6201,31 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 18.05000 0.00000 0.00000 0.00000 0.00000 - 17.00000 64.73000 33.84800 32.16821 3.22399 - 16.00000 64.73000 33.84800 108.88793 10.91306 - 15.12000 60.92000 41.72900 177.53692 1.25582 - 14.24000 58.81400 0.00000 248.21672 0.00000 - 14.00000 58.37800 0.00000 268.05224 0.00000 - 13.20000 63.83600 41.31800 447.28352 4.30470 - 11.83750 66.10100 38.87700 809.34504 22.01678 - 10.47500 66.94700 37.13800 1258.42174 45.16620 - 9.11250 67.37500 35.86300 1796.94408 73.63122 - 7.75000 67.62500 34.90700 2425.51411 107.32038 - 6.25000 67.79900 34.10900 3221.91541 150.37260 - 4.75000 67.91300 33.50200 4127.85188 199.61472 - 3.87500 67.96200 33.21300 4706.92491 231.18004 - 3.00000 68.00300 32.96200 5323.29911 264.83027 - 1.72000 67.15000 37.05900 5944.97044 144.23116 - 0.47000 66.43900 38.90100 6553.83307 48.00969 - -0.89750 65.76500 0.00000 7224.44431 0.00000 - -2.26500 65.17500 0.00000 7901.66522 0.00000 - -3.63250 64.65100 0.00000 8586.91619 0.00000 - -5.00000 64.18200 0.00000 9281.26282 0.00000 - -6.25000 63.79200 0.00000 9924.60855 0.00000 - -7.50000 63.43400 0.00000 10576.74467 0.00000 - -8.75000 63.10300 0.00000 11238.08235 0.00000 - -10.00000 62.79500 0.00000 11908.96371 0.00000 + 18.35000 0.00000 0.00000 0.00000 0.00000 + 17.00000 64.73000 33.84800 53.17603 5.32945 + 16.00000 64.73000 33.84800 147.40225 14.77308 + 15.12000 61.67200 41.03200 221.01438 9.43294 + 14.24000 59.79300 42.51800 296.91445 9.46064 + 14.00000 59.39000 42.74600 318.17494 10.29937 + 13.20000 64.12700 40.84500 516.51282 19.16912 + 11.83750 66.20500 38.47900 912.30644 38.75665 + 10.47500 66.99400 36.82200 1395.23503 63.80701 + 9.11250 67.39800 35.61500 1967.63310 94.17387 + 7.75000 67.63700 34.71100 2630.08495 129.75923 + 6.25000 67.80300 33.95800 3463.78853 174.89139 + 4.75000 67.91400 33.38400 4407.02670 226.20647 + 3.87500 67.96200 33.11000 5007.85857 258.97837 + 3.00000 68.00200 32.87300 5645.99123 293.83359 + 1.72000 67.19200 36.87800 6274.51109 179.17641 + 0.47000 66.51200 38.71800 6890.52841 88.84463 + -0.89750 65.86300 39.92900 7569.29072 8.22659 + -2.26500 65.29200 0.00000 8254.87390 0.00000 + -3.63250 64.78300 0.00000 8948.61849 0.00000 + -5.00000 64.32500 0.00000 9651.53975 0.00000 + -6.25000 63.94400 0.00000 10302.76616 0.00000 + -7.50000 63.59300 0.00000 10962.80620 0.00000 + -8.75000 63.26800 0.00000 11632.05909 0.00000 + -10.00000 62.96500 0.00000 12310.85846 0.00000 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -6117,36 +6242,36 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 17.52500 8.92500 30.63639 3.07047 0.54601 0.34403 3.43265 - 16.50000 22.35000 76.71971 7.68907 0.54601 0.34403 3.43265 - 15.56000 29.49000 78.01022 -10.97414 1.00000 0.00000 2.64531 - 14.68000 34.77000 80.31795 -1.42706 1.00000 0.00000 2.30998 - 14.12000 38.13000 82.64800 0.00000 1.00000 0.00000 2.16753 - 13.60000 42.85000 224.03910 5.38087 0.45536 0.12557 5.22845 - 12.51875 53.66250 265.73323 12.99970 0.45536 0.24225 4.95194 - 11.15625 67.28750 329.59758 16.99040 0.45536 0.25250 4.89835 - 9.79375 80.91250 395.24576 20.89175 0.45536 0.25820 4.88485 - 8.43125 94.53750 461.33580 24.72599 0.45536 0.26155 4.87992 - 7.00000 108.85000 530.93420 28.70148 0.45536 0.26368 4.87767 - 5.50000 123.85000 603.95765 32.82808 0.45536 0.26506 4.87653 - 4.31250 135.72500 661.79775 36.07464 0.45536 0.26579 4.87602 - 3.43750 144.47500 704.42766 38.45741 0.45536 0.26619 4.87578 - 2.36000 153.97000 485.68073 -94.21806 1.00000 0.00000 3.15439 - 1.09500 164.09000 487.09010 -76.97717 1.00000 0.00000 2.96843 - -0.21375 174.56000 490.39213 -35.10764 1.00000 0.00000 2.80930 - -1.58125 185.50000 495.22552 0.00000 1.00000 0.00000 2.66968 - -2.94875 196.44000 501.09761 0.00000 1.00000 0.00000 2.55089 - -4.31625 207.38000 507.74891 0.00000 1.00000 0.00000 2.44840 - -5.62500 217.85000 514.67658 0.00000 1.00000 0.00000 2.36253 - -6.87500 227.85000 521.70890 0.00000 1.00000 0.00000 2.28970 - -8.12500 237.85000 529.07014 0.00000 1.00000 0.00000 2.22439 - -9.37500 247.85000 536.70508 0.00000 1.00000 0.00000 2.16544 + 17.67500 11.47500 39.38965 3.94774 0.54601 0.34403 3.43265 + 16.50000 27.45000 94.22622 9.44362 0.54601 0.34403 3.43265 + 15.56000 34.59000 83.65015 -6.06833 1.00000 0.00000 2.41833 + 14.68000 39.87000 86.25007 0.03148 1.00000 0.00079 2.16328 + 14.12000 43.23000 88.58540 3.49468 1.00000 0.08084 2.04916 + 13.60000 47.95000 247.92234 11.08720 0.45536 0.23122 5.17043 + 12.51875 58.76250 290.49073 14.37617 0.45536 0.24465 4.94347 + 11.15625 72.38750 354.44300 18.38558 0.45536 0.25399 4.89647 + 9.79375 86.01250 420.10868 22.28761 0.45536 0.25912 4.88427 + 8.43125 99.63750 486.20319 26.11770 0.45536 0.26213 4.87972 + 7.00000 113.95000 555.80239 30.08810 0.45536 0.26405 4.87760 + 5.50000 128.95000 628.82545 34.21005 0.45536 0.26530 4.87651 + 4.31250 140.82500 686.66499 37.45360 0.45536 0.26596 4.87602 + 3.43750 149.57500 729.29447 39.83454 0.45536 0.26632 4.87578 + 2.36000 159.07000 491.03114 -89.57592 1.00000 0.00000 3.08689 + 1.09500 169.19000 492.81386 -72.26543 1.00000 0.00000 2.91278 + -0.21375 179.66000 496.35269 -58.95287 1.00000 0.00000 2.76273 + -1.58125 190.60000 501.34054 -6.01579 1.00000 0.00000 2.63033 + -2.94875 201.54000 507.30865 0.00000 1.00000 0.00000 2.51716 + -4.31625 212.48000 514.01921 0.00000 1.00000 0.00000 2.41914 + -5.62500 222.95000 520.98112 0.00000 1.00000 0.00000 2.33676 + -6.87500 232.95000 528.03203 0.00000 1.00000 0.00000 2.26672 + -8.12500 242.95000 535.40231 0.00000 1.00000 0.00000 2.20376 + -9.37500 252.95000 543.03949 0.00000 1.00000 0.00000 2.14683 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6161,56 +6286,54 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 202 100 P - 61.27279 0.00000 61.27279 9.74627 202 100 P - 61.27279 0.00000 61.27279 9.74627 202 100 P - 76.13817 10.00000 92.16663 14.66036 110 83 - - 31.01772 10.00000 71.02660 26.85000 110 44 - - 36.31918 18.80000 84.99384 32.13000 110 43 - - 36.31918 18.80000 74.21961 32.13000 110 49 - - 41.53306 27.60000 86.41630 37.41000 110 48 - - 41.53306 27.60000 81.08738 37.41000 110 51 - - 42.93831 30.00000 84.20863 38.85000 110 51 - - 106.51151 30.00000 203.12529 17.69077 110 52 - - 106.65616 38.00000 244.95290 21.33366 110 44 - - 106.65616 38.00000 231.99817 21.33366 110 46 - - 104.43902 51.62500 299.46829 27.53795 110 35 - - 104.43902 51.62500 296.22758 27.53795 110 35 - - 100.23657 65.25000 362.96757 33.74225 110 28 - - 100.23657 65.25000 361.96769 33.74225 110 28 - - 94.99144 78.87500 428.52382 39.94654 110 22 - - 94.99144 78.87500 428.09132 39.94654 110 22 - - 89.76457 92.50000 494.58029 46.15083 110 18 - - 89.76457 92.50000 494.35169 46.15083 110 18 - - 85.76255 107.50000 567.51671 52.98125 110 15 - - 85.76255 107.50000 567.38371 52.98125 110 15 - - 85.54016 122.50000 640.53159 59.81166 110 13 - - 85.54016 122.50000 640.46516 59.81166 110 13 - - 87.01783 131.25000 683.13033 63.79607 110 13 - - 87.01783 131.25000 683.09614 63.79607 110 13 - - 88.70776 140.00000 725.75917 67.78048 110 12 - - 156.20758 140.00000 469.53027 148.85000 110 33 - - 165.00001 152.80000 501.83118 159.09000 110 33 - - 165.00001 152.80000 472.24794 159.09000 110 35 - - 173.83205 165.30000 501.93227 169.09000 110 35 - - 173.83205 165.30000 475.02524 169.09000 110 37 - - 185.80515 178.97500 505.75902 180.03000 110 37 - - 185.80515 178.97500 480.62238 180.03000 110 39 - - 200.32646 192.65000 509.82867 190.97000 110 39 - - 200.32646 192.65000 487.14422 190.97000 110 41 - - 215.39883 206.32500 515.05100 201.91000 110 42 - - 215.39883 206.32500 494.35617 201.91000 110 44 - - 230.06165 220.00000 521.14165 212.85000 110 44 - - 230.06165 220.00000 502.86394 212.85000 110 46 - - 242.99010 232.50000 526.48922 222.85000 110 46 - - 242.99010 232.50000 510.26039 222.85000 110 48 - - 255.59836 245.00000 533.15742 232.85000 110 48 - - 255.59836 245.00000 517.94821 232.85000 110 49 - - 268.04047 257.50000 540.19207 242.85000 110 50 - - 268.04047 257.50000 525.87787 242.85000 110 51 - - 280.43079 270.00000 547.53230 252.85000 110 51 - + 69.41405 0.00000 78.77930 12.53092 110 88 - + 69.41405 0.00000 78.77930 12.53092 110 88 - + 74.36029 10.00000 109.67314 17.44500 110 68 - + 35.80842 10.00000 77.26575 31.95000 110 46 - + 41.08683 18.80000 90.03455 37.23000 110 46 - + 41.08683 18.80000 80.53901 37.23000 110 51 - + 46.31169 27.60000 91.96114 42.51000 110 50 - + 46.31169 27.60000 87.11000 42.51000 110 53 - + 47.72453 30.00000 90.06080 43.95000 110 53 - + 102.01673 30.00000 227.24060 20.01311 110 45 - + 102.90072 38.00000 268.60408 23.65600 110 38 - + 102.90072 38.00000 256.81333 23.65600 110 40 - + 102.17968 51.62500 324.16813 29.86030 110 32 - + 102.17968 51.62500 321.08582 29.86030 110 32 - + 99.30178 65.25000 387.80018 36.06459 110 26 - + 99.30178 65.25000 386.83456 36.06459 110 26 - + 95.00320 78.87500 453.38280 42.26888 110 21 - + 95.00320 78.87500 452.96009 42.26888 110 21 - + 90.31184 92.50000 519.44629 48.47317 110 17 - + 90.31184 92.50000 519.22040 48.47317 110 17 - + 86.39411 107.50000 592.38438 55.30359 110 15 - + 86.39411 107.50000 592.25165 55.30359 110 15 - + 85.59801 122.50000 665.39924 62.13400 110 13 - + 85.59801 122.50000 665.33242 62.13400 110 13 - + 86.41118 131.25000 707.99756 66.11841 110 12 - + 86.41118 131.25000 707.96294 66.11841 110 12 - + 87.26591 140.00000 750.62600 70.10282 110 12 - + 159.98417 140.00000 475.22628 153.95000 110 34 - + 168.32942 152.80000 506.83600 164.19000 110 33 - + 168.32942 152.80000 478.24994 164.19000 110 35 - + 176.79461 165.30000 507.37777 174.19000 110 35 - + 176.79461 165.30000 481.24054 174.19000 110 37 - + 188.49089 178.97500 511.46484 185.13000 110 37 - + 188.49089 178.97500 486.95265 185.13000 110 39 - + 202.85246 192.65000 515.72844 196.07000 110 39 - + 202.85246 192.65000 493.53978 196.07000 110 41 - + 217.84053 206.32500 521.07752 207.01000 110 42 - + 217.84053 206.32500 500.78650 207.01000 110 43 - + 232.45941 220.00000 527.25191 217.95000 110 44 - + 232.45941 220.00000 509.29731 217.95000 110 46 - + 245.36618 232.50000 532.66494 227.95000 110 46 - + 245.36618 232.50000 516.69844 227.95000 110 47 - + 257.96286 245.00000 539.36563 237.95000 110 48 - + 257.96286 245.00000 524.38354 237.95000 110 49 - + 270.39803 257.50000 546.42109 247.95000 110 49 - + 270.39803 257.50000 532.30537 247.95000 110 51 - + 282.78272 270.00000 553.77362 257.95000 110 51 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6223,10 +6346,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 100.874 'Remblais CT' - 16.00 74.020 'Argile et limon CT' - 14.00 1039.871 'Sable et gravier CT' - 3.00 2793.442 'Argile Yprésienne CT' + 20.00 118.742 'Remblais CT' + 16.00 83.574 'Argile et limon CT' + 14.00 1030.315 'Sable et gravier CT' + 3.00 2827.895 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6297,7 +6420,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=28 +DataCount=27 [COLUMN INDICATION] Slide plane position Theta min @@ -6309,7 +6432,6 @@ Q max 20.00000 0.00000 0.00000 0.00000 0.00000 18.85000 115.19800 43.09000 6.37113 7.94593 18.35000 108.75000 39.98900 32.30128 15.47381 - 18.05000 104.60200 38.83500 51.77332 20.77490 17.00000 89.00000 36.61700 151.45183 43.67860 16.00000 75.10600 35.67800 292.37829 70.23966 15.12000 63.43500 37.54000 378.60580 99.01052 @@ -6339,7 +6461,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=27 +DataCount=26 [COLUMN INDICATION] Position Vertical stress @@ -6352,8 +6474,7 @@ Lambda passive [DATA] 19.42500 12.57240 5.54011 6.90951 0.54958 0.54958 0.54958 18.60000 29.90732 51.86032 15.05574 0.51163 0.50341 1.73403 - 18.20000 37.23661 64.90679 17.67030 0.47454 0.47454 1.74309 - 17.52500 48.69500 94.93191 21.81305 0.44795 0.44795 1.94952 + 17.67500 46.22589 88.25966 20.89244 0.45196 0.45196 1.90931 16.50000 60.87157 140.92646 26.56106 0.53279 0.43635 2.31514 15.56000 67.70450 97.98580 32.69415 1.26326 0.48289 1.44726 14.68000 74.71076 50.74881 42.28979 0.67927 0.56605 0.67927 @@ -6382,7 +6503,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=54 +DataCount=52 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6396,17 +6517,15 @@ Status character 0.00000 0.00000 0.00000 0.00000 202 100 P 13.75708 0.00000 13.75708 13.75708 1 100 A 12.80721 0.00000 43.40650 12.80721 110 30 - - 17.39097 0.00000 59.90412 17.67488 1 0 A - 16.39355 0.00000 60.21700 16.39355 1 27 A - 18.91881 0.00000 69.49285 18.91881 1 27 A - 17.85879 0.00000 77.72270 17.85879 1 23 A - 25.56868 0.00000 111.27665 25.56868 1 23 A + 17.62098 0.00000 59.90412 17.67488 110 0 - + 15.61360 0.00000 65.95931 15.61360 1 24 A + 25.79765 0.00000 108.98162 25.79765 1 24 A 24.90618 0.00000 132.14608 30.41084 1 0 A 28.33754 10.00000 150.35202 34.60058 1 0 A - 77.87197 10.00000 93.98896 82.03969 110 0 - - 85.48706 18.80000 102.73779 89.67623 110 0 - - 44.03083 18.80000 48.22001 48.22001 110 0 - - 49.35487 27.60000 53.47794 53.47794 110 0 - + 78.18127 10.00000 93.98896 82.03969 110 0 - + 85.81941 18.80000 102.73779 89.67623 110 0 - + 44.36318 18.80000 48.22001 48.22001 110 0 - + 49.67625 27.60000 53.47794 53.47794 110 0 - 154.90191 27.60000 154.90191 154.90191 1 100 A 159.35173 30.00000 159.35173 159.35173 1 100 A 87.17929 30.00000 406.58671 87.17929 1 21 A @@ -6421,32 +6540,32 @@ Status character 100.04122 92.50000 1268.81740 100.04122 1 8 A 83.29518 92.50000 698.33424 83.37016 1 0 A 91.68530 107.50000 768.67571 91.76783 1 0 A - 54.25652 107.50000 769.31965 87.03782 110 0 - - 69.04683 122.50000 837.71080 94.77533 110 0 - - 66.06501 122.50000 839.97760 91.79351 110 0 - - 72.86734 131.25000 879.28540 96.08911 110 0 - - 117.69793 131.25000 881.64175 117.69793 1 13 A - 122.90636 140.00000 920.65656 122.90636 1 13 A - 188.73811 140.00000 454.36031 196.09569 110 0 - - 199.77434 152.80000 476.57758 205.68436 110 0 - - 198.76780 152.80000 303.52746 204.67781 110 0 - - 209.15170 165.30000 317.19426 213.89375 110 0 - - 68.25553 165.30000 81.46268 81.46268 110 0 - - 70.28605 178.97500 85.27188 85.27188 110 0 - - 217.10751 178.97500 523.46804 222.88266 110 0 - - 223.42717 192.65000 546.72174 232.78363 110 0 - - 223.35093 192.65000 401.44202 232.70740 110 0 - - 229.08262 206.32500 418.45843 242.57145 110 0 - - 229.20449 206.32500 534.95583 242.69333 110 0 - - 235.33296 220.00000 556.67049 252.54461 110 0 - - 235.58895 220.00000 542.64735 252.80060 110 0 - - 241.66884 232.50000 561.98415 261.80894 110 0 - - 242.00795 232.50000 554.36591 262.14805 110 0 - - 248.42099 245.00000 573.44329 271.16935 110 0 - - 248.82877 245.00000 566.24120 271.57713 110 0 - - 255.42744 257.50000 585.09133 280.61791 110 0 - - 255.88537 257.50000 566.18221 281.07584 110 0 - - 262.55982 270.00000 584.44172 290.14061 110 0 - + 55.94730 107.50000 769.31965 87.03782 110 0 - + 71.31132 122.50000 837.71080 94.77533 110 0 - + 68.32950 122.50000 839.97760 91.79351 110 0 - + 75.79634 131.25000 879.28540 96.08911 110 0 - + 117.75603 131.25000 881.64175 117.69793 110 13 - + 123.33747 140.00000 920.65656 122.90636 110 13 - + 190.06152 140.00000 454.36031 196.09569 110 0 - + 201.54494 152.80000 476.57758 205.68436 110 0 - + 200.53840 152.80000 303.52746 204.67781 110 0 - + 211.28915 165.30000 317.19426 213.89375 110 0 - + 70.35627 165.30000 81.46268 81.46268 110 0 - + 72.67069 178.97500 85.27188 85.27188 110 0 - + 219.52177 178.97500 523.46804 222.88266 110 0 - + 226.00117 192.65000 546.72174 232.78363 110 0 - + 225.92494 192.65000 401.44202 232.70740 110 0 - + 231.74092 206.32500 418.45843 242.57145 110 0 - + 231.86279 206.32500 534.95583 242.69333 110 0 - + 238.03520 220.00000 556.67049 252.54461 110 0 - + 238.29119 220.00000 542.64735 252.80060 110 0 - + 244.39276 232.50000 561.98415 261.80894 110 0 - + 244.73187 232.50000 554.36591 262.14805 110 0 - + 251.15649 245.00000 573.44329 271.16935 110 0 - + 251.56427 245.00000 566.24120 271.57713 110 0 - + 258.16988 257.50000 585.09133 280.61791 110 0 - + 258.62781 257.50000 566.18221 281.07584 110 0 - + 265.30789 270.00000 584.44172 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6459,10 +6578,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 70.178 'Remblais CT' - 16.00 150.678 'Argile et limon CT' - 14.00 1006.046 'Sable et gravier CT' - 3.00 2770.513 'Argile Yprésienne CT' + 20.00 70.092 'Remblais CT' + 16.00 151.248 'Argile et limon CT' + 14.00 1011.499 'Sable et gravier CT' + 3.00 2802.314 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6547,7 +6666,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -11100.74897 0.00000 0 'Dalle toiture 18.85' + 2 18.85000 -11100.89765 0.00000 0 'Dalle toiture 18.85' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -6575,18 +6694,18 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 20.11 : Percentage mobilized resistance left 32.45 : Percentage mobilized resistance right -12926.55 : Effective left -20208.18 : Effective right +12926.39 : Effective left +20208.65 : Effective right 10570.95 : Water pressure left 818.11 : Water pressure right 64289.14 : Max effective resistance left 62275.97 : Max effective resistance right -845656.58 : Max moment left -903600.36 : Max moment right --192008.26 : Max mobilized moment left --346573.70 : Max mobilized moment right - 792.86 : Vertical force left - 1260.45 : Vertical force right +-192004.89 : Max mobilized moment left +-346579.83 : Max mobilized moment right + 792.87 : Vertical force left + 1260.54 : Vertical force right 22.7 : Max mobilized moment percentage left 38.4 : Max mobilized moment percentage right 18.85 : Level of single support @@ -6603,58 +6722,58 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -15.68136 -7839.82037 8.00000 - -9111.84179 -8000.52097 2.60345 - -9096.07647 3154.10019 2.60345 - -7552.43350 3002.24355 1.02821 - -7548.13311 2988.58116 1.02821 - -3969.42735 2254.34747 -0.91437 - -3972.75503 2237.13005 -0.91437 - -2066.58403 1566.52468 -0.96485 - -2067.59909 1562.10878 -0.96485 - -858.67012 1186.57053 -0.51679 - -858.70040 1186.32984 -0.51679 - 22.89362 818.87340 0.11918 - 22.88229 818.82188 0.11918 - 206.95691 715.26172 0.29900 - 206.81298 715.98139 0.29900 - 601.92330 297.84715 0.86242 - 599.80730 305.20148 0.86242 - 699.77634 -100.77681 1.57497 - 700.05364 -88.32159 1.57497 - 464.04751 -226.53588 1.94442 - 464.99049 -217.66310 1.94442 - 157.32889 -220.34700 2.07970 - 158.24871 -216.94298 2.07970 - -101.81624 -157.79703 2.13235 - -104.79272 -149.18838 2.13235 - -257.94010 -54.23191 2.24810 - -253.67515 -49.09144 2.24810 - -250.59692 56.09020 2.51315 - -251.67300 52.75872 2.51315 - -174.02217 127.64023 2.73960 - -174.75306 130.60370 2.73960 - -20.58986 225.62464 3.00126 - -20.04032 229.08609 3.00126 - 165.57593 71.47887 3.38299 - 165.49558 72.29759 3.38299 - 189.31992 -25.89890 3.69007 - 188.86430 -23.52410 3.69007 - 156.93976 -14.97594 3.93577 - 157.38313 -12.59038 3.93577 - 121.68673 -34.74543 4.10090 - 121.74304 -33.81136 4.10090 - 74.51123 -32.22263 4.20408 - 74.56479 -31.68040 4.20408 - 41.16693 -15.26668 4.26843 - 41.23459 -15.07776 4.26843 - 24.11752 -12.17926 4.30737 - 24.11933 -12.16026 4.30737 - 11.09090 -8.59239 4.33512 - 11.09218 -8.58328 4.33512 - 2.86105 -4.51131 4.35760 - 2.86172 -4.50843 4.35760 - -0.00012 -0.00037 4.37856 + -15.68160 -7839.93088 8.00000 + -9111.96911 -8000.63148 2.60338 + -9096.20356 3154.13919 2.60338 + -7552.54124 3002.28167 1.02812 + -7548.24070 2988.61889 1.02812 + -3969.48887 2254.37679 -0.91447 + -3972.81667 2237.15889 -0.91447 + -2066.62154 1566.54386 -0.96494 + -2067.63662 1562.12790 -0.96494 + -858.69139 1186.58841 -0.51687 + -858.72167 1186.34772 -0.51687 + 22.88764 818.89032 0.11912 + 22.87630 818.83881 0.11912 + 206.95496 715.27837 0.29895 + 206.81102 715.99806 0.29895 + 601.92720 297.84556 0.86239 + 599.81119 305.19993 0.86239 + 699.75972 -100.80443 1.57498 + 700.03722 -88.34972 1.57498 + 463.97938 -226.58185 1.94447 + 464.92272 -217.71125 1.94447 + 157.19523 -220.38958 2.07983 + 158.11549 -216.99011 2.07983 + -101.97697 -157.77514 2.13263 + -104.95792 -149.16014 2.13263 + -257.96341 -54.06759 2.24863 + -253.69700 -48.91245 2.24863 + -250.22355 56.44960 2.51393 + -251.29948 52.92407 2.51393 + -173.44793 127.93512 2.74043 + -174.17154 130.41395 2.74043 + -20.11744 225.56313 3.00202 + -19.57356 228.73481 3.00202 + 165.66442 71.23179 3.38349 + 165.58437 72.05119 3.38349 + 189.14078 -26.08934 3.69027 + 188.67708 -23.69728 3.69027 + 156.70724 -14.88524 3.93572 + 157.15681 -12.49836 3.93572 + 121.57447 -34.67473 4.10071 + 121.63133 -33.76921 4.10071 + 74.43100 -32.22110 4.20381 + 74.48513 -31.64026 4.20381 + 41.10805 -15.27752 4.26812 + 41.17640 -15.05389 4.26812 + 24.08530 -12.16159 4.30706 + 24.08711 -12.14262 4.30706 + 11.07687 -8.58092 4.33482 + 11.07814 -8.57182 4.33482 + 2.85762 -4.50575 4.35731 + 2.85829 -4.50287 4.35731 + -0.00011 -0.00037 4.37830 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6818,50 +6937,50 @@ Status character 7.89549 0.00000 78.77930 12.53092 1 0 A 7.89549 0.00000 78.77930 12.53092 1 0 A 13.74400 0.00000 137.13434 21.81308 1 0 A - 38.47677 0.00000 81.78259 39.95000 110 0 - - 53.24091 0.00000 110.60609 54.03000 110 0 - - 53.24091 0.00000 95.27545 54.03000 110 0 - - 68.29197 0.00000 120.10385 68.11000 110 57 - - 68.29197 0.00000 112.46376 68.11000 110 61 - - 72.40654 0.00000 118.80439 71.95000 110 61 - - 42.68185 0.00000 366.14752 32.76322 110 12 - - 67.92911 0.00000 439.42791 39.32042 110 15 - - 67.92911 0.00000 424.02688 39.32042 110 16 - - 102.73405 0.00000 544.45837 50.48815 110 19 - - 102.73405 0.00000 541.56966 50.48815 110 19 - - 126.15748 0.00000 661.36218 61.65587 110 19 - - 126.15748 0.00000 660.58800 61.65587 110 19 - - 141.81277 0.00000 780.24030 72.82360 110 18 - - 141.81277 0.00000 779.92629 72.82360 110 18 - - 154.72703 0.00000 899.53043 83.99133 110 17 - - 154.72703 0.00000 899.37039 83.99133 110 17 - - 170.86155 0.00000 1031.02124 96.28608 110 17 - - 170.86155 0.00000 1030.93023 96.28608 110 17 - - 191.94876 0.00000 1162.56946 108.58082 110 17 - - 191.94876 0.00000 1162.52465 108.58082 110 17 - - 206.63277 0.00000 1239.31124 115.75276 110 17 - - 206.63277 0.00000 1239.28836 115.75276 110 17 - - 222.48470 0.00000 1316.07354 122.92469 110 17 - - 304.95313 0.00000 591.53990 269.95000 110 52 - - 332.44517 0.00000 642.02732 292.99000 110 52 - - 332.44517 0.00000 610.59655 292.99000 110 54 - - 358.52656 0.00000 657.48697 315.49000 110 55 - - 358.52656 0.00000 634.80366 315.49000 110 56 - - 372.33209 13.67500 656.81625 326.43000 110 57 - - 372.33209 13.67500 641.46829 326.43000 110 58 - - 385.19800 27.35000 662.96651 337.37000 110 58 - - 385.19800 27.35000 648.64405 337.37000 110 59 - - 397.34139 41.02500 669.67783 348.31000 110 59 - - 397.34139 41.02500 656.23872 348.31000 110 61 - - 409.03185 54.70000 676.85039 359.25000 110 60 - - 409.03185 54.70000 664.70153 359.25000 110 62 - - 419.48605 67.20000 683.20401 369.25000 110 61 - - 419.48605 67.20000 672.19505 369.25000 110 62 - - 429.80962 79.70000 690.39938 379.25000 110 62 - - 429.80962 79.70000 679.90196 379.25000 110 63 - - 440.07180 92.20000 697.82950 389.25000 110 63 - - 440.07180 92.20000 687.79432 389.25000 110 64 - - 450.31632 104.70000 705.46405 399.25000 110 64 - + 38.47663 0.00000 81.78259 39.95000 110 0 - + 53.24079 0.00000 110.60609 54.03000 110 0 - + 53.24079 0.00000 95.27545 54.03000 110 0 - + 68.29189 0.00000 120.10385 68.11000 110 57 - + 68.29189 0.00000 112.46376 68.11000 110 61 - + 72.40647 0.00000 118.80439 71.95000 110 61 - + 42.68031 0.00000 366.14752 32.76322 110 12 - + 67.92826 0.00000 439.42791 39.32042 110 15 - + 67.92826 0.00000 424.02688 39.32042 110 16 - + 102.73437 0.00000 544.45837 50.48815 110 19 - + 102.73437 0.00000 541.56966 50.48815 110 19 - + 126.15928 0.00000 661.36218 61.65587 110 19 - + 126.15928 0.00000 660.58800 61.65587 110 19 - + 141.81723 0.00000 780.24030 72.82360 110 18 - + 141.81723 0.00000 779.92629 72.82360 110 18 - + 154.73636 0.00000 899.53043 83.99133 110 17 - + 154.73636 0.00000 899.37039 83.99133 110 17 - + 170.87911 0.00000 1031.02124 96.28608 110 17 - + 170.87911 0.00000 1030.93023 96.28608 110 17 - + 191.97455 0.00000 1162.56946 108.58082 110 17 - + 191.97455 0.00000 1162.52465 108.58082 110 17 - + 206.66034 0.00000 1239.31124 115.75276 110 17 - + 206.66034 0.00000 1239.28836 115.75276 110 17 - + 222.50996 0.00000 1316.07354 122.92469 110 17 - + 304.96201 0.00000 591.53990 269.95000 110 52 - + 332.45096 0.00000 642.02732 292.99000 110 52 - + 332.45096 0.00000 610.59655 292.99000 110 54 - + 358.52883 0.00000 657.48697 315.49000 110 55 - + 358.52883 0.00000 634.80366 315.49000 110 56 - + 372.33149 13.67500 656.81625 326.43000 110 57 - + 372.33149 13.67500 641.46829 326.43000 110 58 - + 385.19579 27.35000 662.96651 337.37000 110 58 - + 385.19579 27.35000 648.64405 337.37000 110 59 - + 397.33825 41.02500 669.67783 348.31000 110 59 - + 397.33825 41.02500 656.23872 348.31000 110 61 - + 409.02827 54.70000 676.85039 359.25000 110 60 - + 409.02827 54.70000 664.70153 359.25000 110 62 - + 419.48241 67.20000 683.20401 369.25000 110 61 - + 419.48241 67.20000 672.19505 369.25000 110 62 - + 429.80609 79.70000 690.39938 379.25000 110 62 - + 429.80609 79.70000 679.90196 379.25000 110 63 - + 440.06847 92.20000 697.82950 389.25000 110 63 - + 440.06847 92.20000 687.79432 389.25000 110 64 - + 450.31320 104.70000 705.46405 399.25000 110 64 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6876,8 +6995,8 @@ Layer name [DATA] 20.00 16.149 'Remblais CT' 16.00 110.714 'Argile et limon CT' - 14.00 1579.431 'Sable et gravier CT' - 3.00 5092.699 'Argile Yprésienne CT' + 14.00 1579.544 'Sable et gravier CT' + 3.00 5092.687 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7041,28 +7160,28 @@ Status character 15.34374 0.00000 153.09616 24.35202 1 0 A 35.02651 0.00000 220.20445 35.02651 110 16 - 35.02651 0.00000 220.20445 35.02651 110 16 - - 74.44931 0.00000 249.38197 39.66759 110 30 - - 74.44931 0.00000 249.38197 39.66759 110 30 - - 129.49081 0.00000 328.16127 52.19851 110 39 - - 124.06086 0.00000 328.16127 52.19851 110 38 - - 129.30355 10.00000 359.05511 57.11259 110 36 - - 106.07323 10.00000 154.23711 104.60000 110 69 - - 110.66909 18.80000 162.02269 109.88000 110 68 - - 110.66909 18.80000 158.86708 109.88000 110 70 - - 114.97803 27.60000 166.50103 115.16000 110 0 - - 118.75008 27.60000 164.60137 115.16000 110 72 - - 119.88621 30.00000 166.65961 116.60000 110 72 - - 124.48965 30.00000 581.27253 53.09509 110 21 - - 106.52099 38.00000 621.15400 56.73798 110 17 - - 106.52099 38.00000 612.56439 56.73798 110 17 - - 81.92124 51.62500 679.54826 62.94227 110 12 - - 81.92124 51.62500 676.23911 62.94227 110 12 - - 66.66074 65.25000 742.89679 69.14656 110 0 - - 66.66074 65.25000 741.64651 69.14656 110 0 - - 57.89455 78.87500 808.19200 75.35086 110 0 - - 57.89455 78.87500 807.57880 75.35086 110 0 - - 51.62281 92.50000 874.07381 81.55515 110 0 - - 51.09756 92.50000 873.71503 81.55515 110 0 - + 74.44994 0.00000 249.38197 39.66759 110 30 - + 74.44994 0.00000 249.38197 39.66759 110 30 - + 129.49242 0.00000 328.16127 52.19851 110 39 - + 124.06247 0.00000 328.16127 52.19851 110 38 - + 129.30542 10.00000 359.05511 57.11259 110 36 - + 106.07337 10.00000 154.23711 104.60000 110 69 - + 110.66921 18.80000 162.02269 109.88000 110 68 - + 110.66921 18.80000 158.86708 109.88000 110 70 - + 114.97811 27.60000 166.50103 115.16000 110 0 - + 118.75021 27.60000 164.60137 115.16000 110 72 - + 119.88634 30.00000 166.65961 116.60000 110 72 - + 124.49251 30.00000 581.27253 53.09509 110 21 - + 106.52396 38.00000 621.15400 56.73798 110 17 - + 106.52396 38.00000 612.56439 56.73798 110 17 - + 81.92463 51.62500 679.54826 62.94227 110 12 - + 81.92463 51.62500 676.23911 62.94227 110 12 - + 66.66418 65.25000 742.89679 69.14656 110 0 - + 66.66418 65.25000 741.64651 69.14656 110 0 - + 57.89589 78.87500 808.19200 75.35086 110 0 - + 57.89589 78.87500 807.57880 75.35086 110 0 - + 51.61701 92.50000 874.07381 81.55515 110 0 - + 51.09175 92.50000 873.71503 81.55515 110 0 - 51.67249 107.50000 946.89049 88.38556 1 0 A 51.76703 107.50000 946.66285 88.38556 1 0 A 55.76758 122.50000 1019.82072 95.21598 1 0 A @@ -7070,26 +7189,26 @@ Status character 58.15998 131.25000 1062.36923 99.20039 1 0 A 58.19304 131.25000 1062.30289 99.20039 1 0 A 60.53038 140.00000 1104.97055 103.18479 1 0 A - 191.59687 140.00000 552.28473 226.60000 110 0 - - 197.38483 152.80000 577.24235 236.84000 110 0 - - 197.38483 152.80000 558.13120 236.84000 110 0 - - 203.80344 165.30000 581.69694 246.84000 110 0 - - 195.33827 165.30000 563.38337 246.84000 110 0 - - 202.66718 178.97500 588.35264 257.78000 110 0 - - 211.87791 178.97500 570.52675 257.78000 110 0 - - 220.89200 192.65000 594.73950 268.72000 110 0 - - 220.89200 192.65000 578.09224 268.72000 110 0 - - 230.62861 206.32500 601.62726 279.66000 110 0 - - 230.62861 206.32500 586.00832 279.66000 110 0 - - 240.81815 220.00000 608.93234 290.60000 110 0 - - 240.81815 220.00000 594.82123 290.60000 110 0 - - 250.36395 232.50000 615.28996 300.60000 110 0 - - 250.36395 232.50000 602.51798 300.60000 110 0 - - 260.04038 245.00000 622.56182 310.60000 110 0 - - 260.04038 245.00000 610.39946 310.60000 110 0 - - 269.77820 257.50000 630.05173 320.60000 110 0 - - 269.77820 257.50000 618.44270 320.60000 110 0 - - 279.53368 270.00000 637.73286 330.60000 110 0 - + 191.58799 140.00000 552.28473 226.60000 110 0 - + 197.37904 152.80000 577.24235 236.84000 110 0 - + 197.37904 152.80000 558.13120 236.84000 110 0 - + 203.80117 165.30000 581.69694 246.84000 110 0 - + 195.29936 165.30000 563.38337 246.84000 110 0 - + 202.63821 178.97500 588.35264 257.78000 110 0 - + 211.87851 178.97500 570.52675 257.78000 110 0 - + 220.89421 192.65000 594.73950 268.72000 110 0 - + 220.89421 192.65000 578.09224 268.72000 110 0 - + 230.63175 206.32500 601.62726 279.66000 110 0 - + 230.63175 206.32500 586.00832 279.66000 110 0 - + 240.82173 220.00000 608.93234 290.60000 110 0 - + 240.82173 220.00000 594.82123 290.60000 110 0 - + 250.36759 232.50000 615.28996 300.60000 110 0 - + 250.36759 232.50000 602.51798 300.60000 110 0 - + 260.04391 245.00000 622.56182 310.60000 110 0 - + 260.04391 245.00000 610.39946 310.60000 110 0 - + 269.78153 257.50000 630.05173 320.60000 110 0 - + 269.78153 257.50000 618.44270 320.60000 110 0 - + 279.53680 270.00000 637.73286 330.60000 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7102,10 +7221,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 320.674 'Remblais CT' + 20.00 320.677 'Remblais CT' 16.00 223.288 'Argile et limon CT' - 14.00 741.002 'Sable et gravier CT' - 3.00 2999.261 'Argile Yprésienne CT' + 14.00 741.009 'Sable et gravier CT' + 3.00 2999.227 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7115,12 +7234,14 @@ Layer name [EUROCODE BELGIUM SET 2] [POINTS ON SHEETPILE] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 20.00000 + 19.70000 + 19.70000 18.85000 18.85000 18.35000 @@ -7178,7 +7299,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=1 CalculationStatus=0 -IterationCount=2 +IterationCount=3 PartialFactorSet=13 [SURCHARGE DATA] [TABLE] @@ -7225,20 +7346,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 33.12 : Percentage mobilized resistance left - 35.94 : Percentage mobilized resistance right -13480.86 : Effective left -13487.42 : Effective right + 32.87 : Percentage mobilized resistance left + 36.91 : Percentage mobilized resistance right +13379.09 : Effective left +13382.92 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right -40708.00 : Max effective resistance left -37524.47 : Max effective resistance right +40707.14 : Max effective resistance left +36262.58 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 793.49 : Vertical force left - 809.06 : Vertical force right + 790.84 : Vertical force left + 813.92 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -7248,65 +7369,67 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.94390 -3.28312 -0.22892 - -4.96725 -8.85414 0.14098 - -5.91095 -12.13883 0.14098 - -11.45860 -8.99347 0.30243 - -11.45025 -9.02039 0.30243 - 11.01267 53.24937 0.74327 - 10.98571 53.29763 0.74327 - 107.71168 146.08816 1.06412 - 107.72534 146.18333 1.06412 - 210.82676 87.35653 1.31448 - 210.82434 87.41066 1.31448 - 281.38570 71.71769 1.50526 - 281.39285 71.75066 1.50526 - 288.90640 -9.61800 1.54413 - 288.84548 -9.31292 1.54413 - 275.45549 -27.02770 1.62971 - 275.05708 -25.37447 1.62971 - 225.00501 -58.84884 1.62884 - 225.12667 -56.50894 1.62884 - 143.90172 -74.90537 1.47502 - 144.06222 -73.39383 1.47502 - 51.34625 -75.21917 1.22291 - 51.51186 -74.66501 1.22291 - -36.93637 -66.82049 0.93524 - -36.72927 -67.30789 0.93524 - -100.83579 -29.17553 0.64785 - -100.53917 -31.00930 0.64785 - -59.05075 71.15369 0.43687 - -59.53323 69.75821 0.43687 - -4.49534 53.98010 0.34024 - -4.50719 53.65617 0.34024 - 5.84009 -32.41123 0.24594 - 5.86723 -32.73199 0.24594 - -66.99820 -83.32689 0.11012 - -66.92404 -83.72200 0.11012 - -143.80738 -39.76718 0.01658 - -143.72499 -40.85517 0.01658 - -110.58202 91.40901 0.00408 - -110.68642 90.49450 0.00408 - -20.70914 43.40063 0.06486 - -20.78710 43.32144 0.06486 - 14.98574 11.71574 0.14316 - 14.96305 11.87503 0.14316 - 18.18044 -4.62433 0.21297 - 18.20217 -4.52387 0.21297 - 12.11226 -4.98377 0.26577 - 12.11299 -4.97447 0.26577 - 6.18562 -4.29306 0.31107 - 6.18625 -4.28813 0.31107 - 1.75066 -2.60429 0.35248 - 1.75105 -2.60260 0.35248 - -0.00007 -0.00023 0.39266 + 0.00000 0.00000 -0.00646 + -0.14505 -1.45052 0.08857 + 0.23071 -3.21879 0.08857 + -7.44187 -12.93953 0.35805 + -7.81738 -14.70978 0.35805 + -13.77803 -8.09102 0.51737 + -13.77011 -8.11718 0.51737 + 16.00616 63.07266 0.95301 + 15.97569 63.13771 0.95301 + 125.63498 162.02434 1.26800 + 125.65189 162.13810 1.26800 + 235.65149 87.06038 1.50802 + 235.64908 87.12043 1.50802 + 298.75174 55.02482 1.68167 + 298.75953 55.06075 1.68167 + 301.69537 -31.07711 1.71489 + 301.63329 -30.76619 1.71489 + 274.62026 -40.00084 1.78018 + 274.23601 -38.37993 1.78018 + 213.61348 -62.39148 1.74598 + 213.74512 -60.15717 1.74598 + 130.79043 -74.60117 1.56616 + 130.95117 -73.22522 1.56616 + 38.79058 -75.10228 1.29694 + 38.95656 -74.68549 1.29694 + -50.98984 -69.25779 1.00092 + -50.76153 -69.93386 1.00092 + -121.32136 -35.07278 0.71591 + -120.95282 -37.33721 0.71591 + -78.84395 79.60493 0.52394 + -79.43832 77.91513 0.52394 + -16.71530 63.76428 0.44618 + -16.72966 63.69753 0.44618 + 3.99547 -18.28905 0.37414 + 4.01514 -18.35145 0.37414 + -56.68751 -78.03246 0.27112 + -56.61934 -78.37577 0.27112 + -130.47719 -39.74422 0.20403 + -130.39800 -40.51460 0.20403 + -98.97609 88.99696 0.21193 + -99.07811 88.31754 0.21193 + -12.67313 40.62561 0.28518 + -12.74715 40.46110 0.28518 + 19.47040 9.52704 0.37037 + 19.45128 9.63498 0.37037 + 20.48428 -5.49812 0.44388 + 20.51026 -5.40968 0.44388 + 13.43291 -5.67322 0.49855 + 13.43375 -5.66288 0.49855 + 6.78046 -4.76355 0.54489 + 6.78116 -4.75813 0.54489 + 1.90109 -2.84382 0.58695 + 1.90151 -2.84199 0.58695 + -0.00008 -0.00025 0.62767 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7320,7 +7443,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 20.00 + 0.00 19.70 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Théorique CT @@ -7381,33 +7504,33 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 20.00000 0.00000 0.00000 0.00000 0.00000 - 18.85000 61.88900 36.54000 29.96367 4.69552 - 18.35000 61.88900 36.54000 61.68324 9.66621 - 17.00000 61.88900 36.54000 203.91153 31.95441 - 16.00000 61.88900 36.54000 351.84735 55.13701 - 15.12000 60.72300 39.28700 436.51079 84.62184 - 14.24000 59.76900 40.62400 525.16020 119.11650 - 14.00000 59.53700 40.88200 550.05214 129.35993 - 13.20000 61.78600 39.50900 768.26514 149.19067 - 11.83750 63.18300 37.96900 1187.42577 188.32533 - 10.47500 63.78800 36.97700 1670.45650 234.00634 - 9.11250 64.12100 36.29300 2218.33090 286.11630 - 7.75000 64.32800 35.79900 2831.32940 344.59543 - 6.25000 64.48000 35.39700 3581.63537 416.30185 - 4.75000 64.58400 35.09600 4411.07639 495.66004 - 3.87500 64.63100 34.95400 4931.47665 545.47907 - 3.00000 64.67000 34.83100 5478.82118 597.89380 - 1.72000 64.02400 37.22700 5992.41074 612.77399 - 0.47000 63.46100 38.60100 6502.23089 643.90753 - -0.89750 62.90800 39.60900 7070.10673 694.49604 - -2.26500 62.40900 40.33000 7649.20719 761.38147 - -3.63250 61.95500 40.87500 8240.04735 844.06911 - -5.00000 61.53900 41.30300 8843.03791 942.28584 - -6.25000 61.18800 41.62100 9405.13125 1045.50721 - -7.50000 60.86000 41.88800 9977.86725 1161.48339 - -8.75000 60.55400 42.11600 10561.42503 1290.15732 - -10.00000 60.26700 42.31200 11155.95785 1431.48793 + 19.70000 0.00000 0.00000 0.00000 0.00000 + 18.85000 61.88900 36.54000 16.36956 2.56523 + 18.35000 61.88900 36.54000 41.29209 6.47077 + 17.00000 61.88900 36.54000 165.16834 25.88307 + 16.00000 61.88900 36.54000 299.51006 46.93538 + 15.12000 60.54300 39.58100 379.62305 71.97238 + 14.24000 59.47300 40.94900 463.64344 102.02634 + 14.00000 59.21700 41.20700 487.26517 111.05692 + 13.20000 61.68200 39.76100 691.19221 129.49697 + 11.83750 63.15700 38.14000 1085.84507 166.26799 + 10.47500 63.78300 37.09700 1544.36824 209.59077 + 9.11250 64.12400 36.37900 2067.74588 259.34642 + 7.75000 64.33500 35.86200 2656.25538 315.47394 + 6.25000 64.48700 35.44300 3379.60700 384.59346 + 4.75000 64.59200 35.12900 4182.09791 461.36617 + 3.87500 64.63900 34.98200 4686.77870 509.67744 + 3.00000 64.67800 34.85500 5218.40458 560.58464 + 1.72000 64.00300 37.32300 5725.41059 569.10155 + 0.47000 63.41700 38.71600 6228.62499 594.06014 + -0.89750 62.84500 39.72800 6789.13574 637.87135 + -2.26500 62.33000 40.44700 7360.76995 697.95009 + -3.63250 61.86300 40.98800 7944.07316 773.80513 + -5.00000 61.43700 41.41100 8539.47719 865.16800 + -6.25000 61.07700 41.72500 9094.60529 962.10932 + -7.50000 60.74300 41.98700 9660.35554 1071.79361 + -8.75000 60.43100 42.21000 10236.91337 1194.16580 + -10.00000 60.13900 42.40200 10824.43683 1329.18646 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -7424,38 +7547,38 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 19.42500 9.77500 26.05536 4.08306 0.62253 0.41770 2.66551 - 18.60000 23.80000 63.43914 9.94137 0.62253 0.41770 2.66551 - 17.67500 39.52500 105.35429 16.50978 0.62253 0.41770 2.66551 - 16.50000 55.50000 147.93582 23.18261 0.62253 0.41770 2.66551 - 15.56000 62.64000 96.20846 33.50548 1.00000 0.53489 1.53589 - 14.68000 67.92000 100.73797 39.19848 1.00000 0.57713 1.48319 - 14.12000 71.28000 103.71641 42.68092 1.00000 0.59878 1.45506 - 13.60000 76.00000 272.76624 24.78843 0.53898 0.32616 3.58903 - 12.51875 86.81250 307.64083 28.72269 0.53898 0.33086 3.54374 - 11.15625 100.43750 354.51796 33.52734 0.53898 0.33381 3.52974 - 9.79375 114.06250 402.10965 38.24584 0.53898 0.33531 3.52534 - 8.43125 127.68750 449.90715 42.92047 0.53898 0.33614 3.52350 - 7.00000 142.00000 500.20398 47.80428 0.53898 0.33665 3.52256 - 5.50000 157.00000 552.96068 52.90546 0.53898 0.33698 3.52204 - 4.31250 168.87500 594.74316 56.93603 0.53898 0.33715 3.52180 - 3.43750 177.62500 625.53661 59.90255 0.53898 0.33724 3.52167 - 2.36000 187.12000 401.24184 11.62515 1.00000 0.06213 2.14430 - 1.09500 197.24000 407.85612 24.90683 1.00000 0.12628 2.06782 - -0.21375 207.71000 415.26570 36.99342 1.00000 0.17810 1.99926 - -1.58125 218.65000 423.47383 48.91074 1.00000 0.22369 1.93677 - -2.94875 229.59000 432.05862 60.46628 1.00000 0.26337 1.88187 - -4.31625 240.53000 440.94374 71.82210 1.00000 0.29860 1.83322 - -5.62500 251.00000 449.67467 82.57710 1.00000 0.32899 1.79153 - -6.87500 261.00000 458.18880 92.78095 1.00000 0.35548 1.75551 - -8.12500 271.00000 466.84622 102.93914 1.00000 0.37985 1.72268 - -9.37500 281.00000 475.62626 113.06449 1.00000 0.40236 1.69262 + 19.27500 7.22500 19.25831 3.01792 0.62253 0.41770 2.66551 + 18.60000 18.70000 49.84504 7.81108 0.62253 0.41770 2.66551 + 17.67500 34.42500 91.76019 14.37948 0.62253 0.41770 2.66551 + 16.50000 50.40000 134.34172 21.05231 0.62253 0.41770 2.66551 + 15.56000 57.54000 91.03750 28.45113 1.00000 0.49446 1.58216 + 14.68000 62.82000 95.47771 34.15223 1.00000 0.54365 1.51986 + 14.12000 66.18000 98.42388 37.62742 1.00000 0.56856 1.48721 + 13.60000 70.90000 254.90879 23.05006 0.53898 0.32511 3.59533 + 12.51875 81.71250 289.65347 26.98791 0.53898 0.33028 3.54479 + 11.15625 95.33750 336.53077 31.79653 0.53898 0.33352 3.52989 + 9.79375 108.96250 384.13038 36.51791 0.53898 0.33514 3.52534 + 8.43125 122.58750 431.93358 41.19451 0.53898 0.33604 3.52347 + 7.00000 136.90000 482.23441 46.07969 0.53898 0.33659 3.52253 + 5.50000 151.90000 534.99394 51.18180 0.53898 0.33694 3.52201 + 4.31250 163.77500 576.77805 55.21288 0.53898 0.33713 3.52177 + 3.43750 172.52500 607.57243 58.17966 0.53898 0.33722 3.52165 + 2.36000 182.02000 396.09844 6.65384 1.00000 0.03656 2.17613 + 1.09500 192.14000 402.57152 19.96687 1.00000 0.10392 2.09520 + -0.21375 202.61000 409.87989 32.03745 1.00000 0.15812 2.02300 + -1.58125 213.55000 418.01405 43.93327 1.00000 0.20573 1.95745 + -2.94875 224.49000 426.54714 55.46986 1.00000 0.24709 1.90007 + -4.31625 235.43000 435.39600 66.81015 1.00000 0.28378 1.84936 + -5.62500 245.90000 444.10248 77.55305 1.00000 0.31538 1.80603 + -6.87500 255.90000 452.60021 87.74743 1.00000 0.34290 1.76866 + -8.12500 265.90000 461.24626 97.89776 1.00000 0.36818 1.73466 + -9.37500 275.90000 470.01877 108.01653 1.00000 0.39151 1.70358 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -7466,58 +7589,60 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 1 0 A - 15.34581 0.00000 52.11072 12.17054 110 29 - - 15.34581 0.00000 52.11072 12.17054 110 29 - - 24.27379 0.00000 74.76756 17.46208 110 32 - - 24.27379 0.00000 74.76756 17.46208 110 32 - - 48.48995 0.00000 135.94102 31.74923 110 36 - - 48.48995 0.00000 135.94102 31.74923 110 36 - - 61.31934 10.00000 159.93061 37.35204 110 38 - - 61.62480 10.00000 92.15370 60.00000 110 67 - - 67.28709 18.80000 100.26322 65.28000 110 67 - - 67.28709 18.80000 96.82236 65.28000 110 69 - - 72.85838 27.60000 104.65358 70.56000 110 70 - - 72.85838 27.60000 102.66877 70.56000 110 71 - - 74.35774 30.00000 104.76405 72.00000 110 71 - - 90.02956 30.00000 258.41013 38.80644 110 35 - - 97.18015 38.00000 287.12236 43.11827 110 34 - - 97.18015 38.00000 283.49911 43.11827 110 34 - - 104.49471 51.62500 331.78255 50.46185 110 31 - - 104.49471 51.62500 330.47163 50.46185 110 32 - - 106.73592 65.25000 378.56430 57.80543 110 28 - - 106.73592 65.25000 378.09324 57.80543 110 28 - - 105.71623 78.87500 426.12606 65.14901 110 25 - - 105.71623 78.87500 425.90330 65.14901 110 25 - - 103.51711 92.50000 473.91101 72.49259 110 22 - - 103.51711 92.50000 473.78476 72.49259 110 22 - - 102.06809 107.50000 526.62321 80.57726 110 19 - - 102.06809 107.50000 526.54536 80.57726 110 19 - - 103.15402 122.50000 579.37599 88.66194 110 18 - - 103.15402 122.50000 579.33531 88.66194 110 18 - - 104.66481 131.25000 610.15101 93.37800 110 17 - - 104.66481 131.25000 610.12930 93.37800 110 17 - - 106.25255 140.00000 640.94391 98.09406 110 17 - - 184.86835 140.00000 390.26301 182.00000 110 47 - - 193.52433 152.80000 412.22067 192.24000 110 47 - - 193.52433 152.80000 397.51703 192.24000 110 49 - - 202.43339 165.30000 418.19520 202.24000 110 48 - - 202.43339 165.30000 404.32976 202.24000 110 50 - - 213.22762 178.97500 426.20164 213.18000 110 50 - - 213.22762 178.97500 412.87972 213.18000 110 52 - - 224.87647 192.65000 434.06794 224.12000 110 52 - - 224.87647 192.65000 421.76479 224.12000 110 53 - - 236.72959 206.32500 442.35245 235.06000 110 54 - - 236.72959 206.32500 430.91604 235.06000 110 55 - - 248.48377 220.00000 450.97143 246.00000 110 55 - - 248.48377 220.00000 440.71701 246.00000 110 56 - - 259.09959 232.50000 458.63233 256.00000 110 56 - - 259.09959 232.50000 449.41124 256.00000 110 58 - - 269.62798 245.00000 466.96637 266.00000 110 58 - - 269.62798 245.00000 458.23282 266.00000 110 59 - - 280.11086 257.50000 475.45962 276.00000 110 59 - - 280.11086 257.50000 467.16316 276.00000 110 60 - - 290.57951 270.00000 484.08936 286.00000 110 60 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 202 100 P + 17.06013 0.00000 38.51662 8.99562 110 44 - + 17.06013 0.00000 38.51662 8.99562 110 44 - + 25.93990 0.00000 61.17346 14.28716 110 42 - + 25.93990 0.00000 61.17346 14.28716 110 42 - + 50.03915 0.00000 122.34692 28.57431 110 41 - + 50.03915 0.00000 122.34692 28.57431 110 41 - + 62.73661 10.00000 146.33651 34.17712 110 43 - + 56.83611 10.00000 86.86060 54.90000 110 65 - + 62.48259 18.80000 95.21440 60.18000 110 66 - + 62.48259 18.80000 91.46528 60.18000 110 68 - + 68.02775 27.60000 99.49015 65.46000 110 68 - + 68.02775 27.60000 97.35309 65.46000 110 70 - + 69.51847 30.00000 99.49468 66.90000 110 70 - + 92.94519 30.00000 240.52748 36.05765 110 39 - + 99.42275 38.00000 269.29011 40.36948 110 37 - + 99.42275 38.00000 265.50461 40.36948 110 37 - + 105.63176 51.62500 313.80234 47.71306 110 34 - + 105.63176 51.62500 312.48340 47.71306 110 34 - + 107.01048 65.25000 360.57814 55.05664 110 30 - + 107.01048 65.25000 360.11397 55.05664 110 30 - + 105.42320 78.87500 408.14679 62.40022 110 26 - + 105.42320 78.87500 407.92993 62.40022 110 26 - + 102.94697 92.50000 455.93723 69.74380 110 23 - + 102.94697 92.50000 455.81543 69.74380 110 23 - + 101.57698 107.50000 508.65339 77.82847 110 20 - + 101.57698 107.50000 508.57884 77.82847 110 20 - + 103.29360 122.50000 561.40905 85.91315 110 18 - + 103.29360 122.50000 561.37030 85.91315 110 18 - + 105.43020 131.25000 592.18580 90.62921 110 18 - + 105.43020 131.25000 592.16522 90.62921 110 18 - + 107.75665 140.00000 622.97965 95.34527 110 17 - + 181.26357 140.00000 384.95668 176.90000 110 47 - + 190.30198 152.80000 407.24020 187.14000 110 47 - + 190.30198 152.80000 392.09553 187.14000 110 49 - + 199.51958 165.30000 413.04752 197.14000 110 48 - + 199.51958 165.30000 398.81408 197.14000 110 50 - + 210.55167 178.97500 420.94570 208.08000 110 50 - + 210.55167 178.97500 407.30678 208.08000 110 52 - + 222.34601 192.65000 428.72131 219.02000 110 52 - + 222.34601 192.65000 416.15375 219.02000 110 53 - + 234.27955 206.32500 436.94053 229.96000 110 54 - + 234.27955 206.32500 425.27997 229.96000 110 55 - + 246.07690 220.00000 445.51203 240.90000 110 55 - + 246.07690 220.00000 435.07233 240.90000 110 57 - + 256.71447 232.50000 453.13262 250.90000 110 57 - + 256.71447 232.50000 443.75690 250.90000 110 58 - + 267.25493 245.00000 461.44351 260.90000 110 58 - + 267.25493 245.00000 452.57296 260.90000 110 59 - + 277.74543 257.50000 469.91957 270.90000 110 59 - + 277.74543 257.50000 461.50085 270.90000 110 60 - + 288.22042 270.00000 478.53669 280.90000 110 60 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7530,10 +7655,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 122.749 'Remblais CT' - 16.00 136.051 'Argile et limon CT' - 14.00 1134.752 'Sable et gravier CT' - 3.00 3068.757 'Argile Yprésienne CT' + 20.00 125.674 'Remblais CT' + 16.00 126.430 'Argile et limon CT' + 14.00 1139.808 'Sable et gravier CT' + 3.00 3034.561 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7604,7 +7729,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=27 +DataCount=28 [COLUMN INDICATION] Slide plane position Theta min @@ -7614,6 +7739,7 @@ Q max [END OF COLUMN INDICATION] [DATA] 20.00000 0.00000 0.00000 0.00000 0.00000 + 19.70000 112.17600 36.54000 0.00197 0.31954 18.85000 112.17600 46.44800 0.00274 10.22515 18.35000 108.75000 43.22000 13.13810 19.40103 17.00000 89.00000 39.60400 118.28876 53.67221 @@ -7645,7 +7771,7 @@ Q max [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=26 +DataCount=27 [COLUMN INDICATION] Position Vertical stress @@ -7656,7 +7782,8 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 19.42500 12.57240 0.00238 8.89144 0.70722 0.70722 0.70722 + 19.85000 2.74334 0.00657 1.06515 0.38827 0.38827 0.38827 + 19.27500 16.01466 0.00090 11.65366 0.72769 0.72769 0.72769 18.60000 29.90732 26.27072 18.35175 0.61362 0.61362 0.87840 17.67500 46.22589 77.88937 25.38606 0.54917 0.54917 1.68497 16.50000 60.87157 116.07197 32.25404 0.60256 0.52987 1.90683 @@ -7687,7 +7814,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -7699,17 +7826,19 @@ Status character [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 202 100 P - 17.70317 0.00000 17.70317 17.70317 1 100 A + 2.35282 0.00000 2.35282 2.35282 1 100 A + 4.40965 0.00000 4.40965 4.40965 1 100 A + 18.21553 0.00000 18.21553 18.21553 1 100 A 15.36021 0.00000 21.98830 15.36021 1 70 A 21.19821 0.00000 30.34545 21.19821 1 70 A 18.97183 0.00000 58.20926 18.97183 1 33 A 31.34630 0.00000 96.17655 31.34630 1 33 A 30.24446 0.00000 108.84015 34.39333 1 0 A 34.41128 10.00000 123.83520 39.13174 1 0 A - 77.24139 10.00000 78.86619 78.86619 110 0 - - 84.20025 18.80000 86.20733 86.20733 110 0 - - 70.59880 18.80000 72.60589 72.60589 110 0 - - 78.22448 27.60000 80.52286 80.52286 110 0 - + 76.93007 10.00000 78.86619 78.86619 110 0 - + 83.90474 18.80000 86.20733 86.20733 110 0 - + 70.30330 18.80000 72.60589 72.60589 110 0 - + 77.95511 27.60000 80.52286 80.52286 110 0 - 153.88824 27.60000 153.88824 153.88824 1 100 A 158.30894 30.00000 158.30894 158.30894 1 100 A 92.80264 30.00000 295.26011 92.80264 1 31 A @@ -7724,32 +7853,32 @@ Status character 108.35922 92.50000 868.38684 108.35922 1 12 A 91.97509 92.50000 728.07313 94.66997 1 0 A 101.23951 107.50000 801.41013 104.20584 1 0 A - 78.11293 107.50000 559.89081 99.60376 110 0 - - 93.96627 122.50000 609.66411 108.45835 110 0 - + 75.85525 107.50000 559.89081 99.60376 110 0 - + 91.07790 122.50000 609.66411 108.45835 110 0 - 105.82078 122.50000 610.43620 105.82078 1 17 A 110.77280 131.25000 639.00233 110.77280 1 17 A 126.59026 131.25000 640.17041 126.59026 1 20 A 132.19219 140.00000 668.49952 132.19219 1 20 A - 193.22734 140.00000 391.73504 196.09569 110 0 - - 204.40002 152.80000 410.89006 205.68436 110 0 - - 184.69079 152.80000 185.97513 185.97513 110 0 - - 194.15556 165.30000 194.34895 194.34895 110 0 - - 180.01164 165.30000 180.20503 180.20503 110 0 - - 188.58381 178.97500 188.63143 188.63143 110 0 - - 222.83504 178.97500 392.34260 222.88266 110 0 - - 232.02716 192.65000 409.77139 232.78363 110 0 - - 231.95093 192.65000 336.17447 232.70740 110 0 - - 240.90186 206.32500 350.42432 242.57145 110 0 - - 241.02374 206.32500 416.95943 242.69333 110 0 - - 250.06084 220.00000 433.88444 252.54461 110 0 - - 250.31683 220.00000 445.75844 252.80060 110 0 - - 258.70935 232.50000 461.64268 261.80894 110 0 - - 259.04846 232.50000 451.35062 262.14805 110 0 - - 267.54137 245.00000 466.88294 271.16935 110 0 - - 267.94915 245.00000 459.59654 271.57713 110 0 - - 276.50705 257.50000 474.89648 280.61791 110 0 - - 276.96498 257.50000 467.99867 281.07584 110 0 - - 285.56110 270.00000 483.09174 290.14061 110 0 - + 191.73212 140.00000 391.73504 196.09569 110 0 - + 202.52238 152.80000 410.89006 205.68436 110 0 - + 182.81315 152.80000 185.97513 185.97513 110 0 - + 191.96936 165.30000 194.34895 194.34895 110 0 - + 177.82545 165.30000 180.20503 180.20503 110 0 - + 186.15976 178.97500 188.63143 188.63143 110 0 - + 220.41099 178.97500 392.34260 222.88266 110 0 - + 229.45762 192.65000 409.77139 232.78363 110 0 - + 229.38139 192.65000 336.17447 232.70740 110 0 - + 238.25190 206.32500 350.42432 242.57145 110 0 - + 238.37378 206.32500 416.95943 242.69333 110 0 - + 247.36771 220.00000 433.88444 252.54461 110 0 - + 247.62370 220.00000 445.75844 252.80060 110 0 - + 255.99447 232.50000 461.64268 261.80894 110 0 - + 256.33358 232.50000 451.35062 262.14805 110 0 - + 264.81442 245.00000 466.88294 271.16935 110 0 - + 265.22220 245.00000 459.59654 271.57713 110 0 - + 273.77249 257.50000 474.89648 280.61791 110 0 - + 274.23042 257.50000 467.99867 281.07584 110 0 - + 282.82018 270.00000 483.09174 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7762,10 +7891,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 85.612 'Remblais CT' - 16.00 173.980 'Argile et limon CT' - 14.00 1140.863 'Sable et gravier CT' - 3.00 3052.516 'Argile Yprésienne CT' + 20.00 85.401 'Remblais CT' + 16.00 173.465 'Argile et limon CT' + 14.00 1137.003 'Sable et gravier CT' + 3.00 3020.412 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7887,8 +8016,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 31.33 : Percentage mobilized resistance left 43.11 : Percentage mobilized resistance right -12755.52 : Effective left -12764.24 : Effective right +12755.54 : Effective left +12763.60 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 40710.17 : Max effective resistance left @@ -7897,8 +8026,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 782.25 : Vertical force left - 837.51 : Vertical force right + 782.27 : Vertical force left + 837.46 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 20.00 : Level of single support @@ -7915,60 +8044,60 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.90532 -3.14893 15.38938 - -18.75348 -44.98595 13.29688 - -19.73316 -47.53994 13.29688 - -52.39420 -85.10371 12.38931 - -52.31979 -84.50934 12.38931 - -81.54922 -110.98464 11.84689 - -81.54306 -111.00886 11.84689 - -218.39769 -122.18188 9.97831 - -218.41365 -122.16650 9.97831 - -291.37835 -10.18429 8.27865 - -291.35959 -10.18623 8.27865 - -346.24257 -118.38131 6.87111 - -346.23971 -118.47625 6.87111 - -485.03472 -200.96139 5.56471 - -485.04655 -201.01605 5.56471 - -546.20969 -309.25061 5.23068 - -548.24701 -299.06490 5.23068 - -717.22907 -118.24789 4.20877 - -713.88475 -111.89867 4.20877 - -680.72929 107.88865 2.85371 - -680.96661 100.91102 2.85371 - -492.14235 141.11695 1.95830 - -492.48526 135.84275 1.95830 - -319.92221 95.54744 1.40267 - -320.16523 91.99342 1.40267 - -228.76958 29.17997 1.07197 - -228.68316 26.23915 1.07197 - -208.52729 -6.65071 0.89377 - -208.12888 -10.75421 0.89377 - -122.74232 123.22050 0.88510 - -123.70573 120.56042 0.88510 - -26.40946 102.65245 0.93352 - -26.91442 104.64848 0.93352 - 33.53312 34.11544 0.99031 - 34.00241 36.28258 0.99031 - 1.66462 -84.84294 1.05859 - 1.73694 -84.88158 1.05859 - -87.91740 -52.95495 1.12685 - -88.14206 -52.81631 1.12685 - -61.56137 97.52697 1.25421 - -61.36533 97.86225 1.25421 - 26.50435 35.25449 1.42043 - 26.43856 35.54870 1.42043 - 47.89530 0.15573 1.57218 - 47.89137 0.56169 1.57218 - 37.85178 -11.59430 1.69257 - 37.90460 -11.40105 1.69257 - 23.86512 -10.74274 1.77893 - 23.86671 -10.72422 1.77893 - 11.68808 -8.48040 1.85043 - 11.68934 -8.47097 1.85043 - 3.19368 -4.86133 1.91451 - 3.19440 -4.85821 1.91451 - -0.00013 -0.00042 1.97635 + 0.90536 -3.14907 15.38941 + -18.75360 -44.98609 13.29692 + -19.73332 -47.54019 13.29692 + -52.39448 -85.10396 12.38935 + -52.32007 -84.50957 12.38935 + -81.54957 -110.98487 11.84693 + -81.54340 -111.00909 11.84693 + -218.39828 -122.18211 9.97835 + -218.41424 -122.16675 9.97835 + -291.37919 -10.18454 8.27870 + -291.36042 -10.18649 8.27870 + -346.24337 -118.38096 6.87117 + -346.24050 -118.47589 6.87117 + -485.03492 -200.96037 5.56478 + -485.04675 -201.01503 5.56478 + -546.20963 -309.24950 5.23074 + -548.24698 -299.06364 5.23074 + -717.22702 -118.24283 4.20884 + -713.88269 -111.89342 4.20884 + -680.71102 107.90737 2.85379 + -680.94839 100.92996 2.85379 + -492.08908 141.14922 1.95837 + -492.43207 135.87562 1.95837 + -319.81754 95.58874 1.40269 + -320.06066 92.03584 1.40269 + -228.60928 29.21572 1.07188 + -228.52310 26.27689 1.07188 + -208.33821 -6.65848 0.89342 + -207.94006 -10.75873 0.89342 + -122.70890 122.99043 0.88435 + -123.67171 120.38628 0.88435 + -26.57152 102.37327 0.93252 + -27.07170 104.61344 0.93252 + 33.28892 33.94765 0.98909 + 33.75381 36.30541 0.98909 + 1.34514 -84.98004 1.05720 + 1.41757 -85.02067 1.05720 + -88.40358 -53.07949 1.12548 + -88.63103 -52.67268 1.12548 + -61.83430 97.70034 1.25319 + -61.63568 98.20307 1.25319 + 26.62501 35.49732 1.41996 + 26.55824 35.61439 1.41996 + 48.07581 0.18910 1.57216 + 48.07187 0.51301 1.57216 + 37.97433 -11.62301 1.69290 + 38.02797 -11.44345 1.69290 + 23.93918 -10.77868 1.77947 + 23.94078 -10.76010 1.77947 + 11.72295 -8.50679 1.85116 + 11.72421 -8.49733 1.85116 + 3.20287 -4.87567 1.91540 + 3.20359 -4.87254 1.91540 + -0.00013 -0.00042 1.97739 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8134,50 +8263,50 @@ Status character 47.57936 0.00000 47.57936 11.11223 202 100 P 47.57936 0.00000 47.57936 11.11223 202 100 P 71.56895 10.00000 71.56895 16.71504 202 100 P - 39.49067 10.00000 56.50721 26.85000 110 70 - - 42.62150 18.80000 67.61924 32.13000 110 63 - - 42.62150 18.80000 60.77924 32.13000 110 70 - - 45.90676 27.60000 70.76724 37.41000 110 65 - - 45.90676 27.60000 67.29892 37.41000 110 68 - - 46.83672 30.00000 69.88942 38.85000 110 67 - + 39.49075 10.00000 56.50721 26.85000 110 70 - + 42.62159 18.80000 67.61924 32.13000 110 63 - + 42.62159 18.80000 60.77924 32.13000 110 70 - + 45.90686 27.60000 70.76724 37.41000 110 65 - + 45.90686 27.60000 67.29892 37.41000 110 68 - + 46.83682 30.00000 69.88942 38.85000 110 67 - 143.10371 30.00000 143.10371 20.93931 202 100 P - 164.86743 38.00000 172.57166 25.25114 110 96 - - 164.86743 38.00000 166.77225 25.25114 110 99 - - 127.26006 51.62500 215.27325 32.59471 110 59 - - 127.26006 51.62500 213.66257 32.59471 110 60 - - 104.90046 65.25000 261.80069 39.93829 110 40 - - 104.90046 65.25000 261.29383 39.93829 110 40 - - 93.81211 78.87500 309.33875 47.28187 110 30 - - 93.81211 78.87500 309.11832 47.28187 110 30 - - 90.18568 92.50000 357.12900 54.62545 110 25 - - 90.18568 92.50000 357.01223 54.62545 110 25 - - 92.35906 107.50000 409.85075 62.71013 110 23 - - 92.35906 107.50000 409.78273 62.71013 110 23 - - 100.15597 122.50000 462.61247 70.79480 110 22 - - 100.15597 122.50000 462.57848 70.79480 110 22 - - 106.47837 131.25000 493.39357 75.51087 110 22 - - 106.47837 131.25000 493.37606 75.51087 110 22 - - 113.07819 140.00000 524.19006 80.22693 110 22 - - 160.39979 140.00000 355.30861 148.85000 110 45 - - 171.43607 152.80000 379.75175 159.09000 110 45 - - 171.43607 152.80000 361.68310 159.09000 110 47 - - 182.23221 165.30000 384.41760 169.09000 110 47 - - 182.23221 165.30000 367.82092 169.09000 110 50 - - 194.65758 178.97500 391.61867 180.03000 110 50 - - 194.65758 178.97500 375.99210 180.03000 110 52 - - 207.53624 192.65000 398.84025 190.97000 110 52 - - 207.53624 192.65000 384.64608 190.97000 110 54 - - 220.24598 206.32500 406.68111 201.91000 110 54 - - 220.24598 206.32500 393.66214 201.91000 110 56 - - 232.59016 220.00000 414.99176 212.85000 110 56 - - 232.59016 220.00000 403.44227 212.85000 110 58 - - 243.59726 232.50000 422.39657 222.85000 110 58 - - 243.59726 232.50000 412.10341 222.85000 110 59 - - 254.43115 245.00000 430.59582 232.85000 110 59 - - 254.43115 245.00000 420.91856 232.85000 110 60 - - 265.17855 257.50000 438.99537 242.85000 110 60 - - 265.17855 257.50000 429.86154 242.85000 110 62 - - 275.89973 270.00000 447.56225 252.85000 110 62 - + 164.86974 38.00000 172.57166 25.25114 110 96 - + 164.86974 38.00000 166.77225 25.25114 110 99 - + 127.26256 51.62500 215.27325 32.59471 110 59 - + 127.26256 51.62500 213.66257 32.59471 110 60 - + 104.90271 65.25000 261.80069 39.93829 110 40 - + 104.90271 65.25000 261.29383 39.93829 110 40 - + 93.81286 78.87500 309.33875 47.28187 110 30 - + 93.81286 78.87500 309.11832 47.28187 110 30 - + 90.18254 92.50000 357.12900 54.62545 110 25 - + 90.18254 92.50000 357.01223 54.62545 110 25 - + 92.34743 107.50000 409.85075 62.71013 110 23 - + 92.34743 107.50000 409.78273 62.71013 110 23 - + 100.13101 122.50000 462.61247 70.79480 110 22 - + 100.13101 122.50000 462.57848 70.79480 110 22 - + 106.44491 131.25000 493.39357 75.51087 110 22 - + 106.44491 131.25000 493.37606 75.51087 110 22 - + 113.03782 140.00000 524.19006 80.22693 110 22 - + 160.38560 140.00000 355.30861 148.85000 110 45 - + 171.41986 152.80000 379.75175 159.09000 110 45 - + 171.41986 152.80000 361.68310 159.09000 110 47 - + 182.21627 165.30000 384.41760 169.09000 110 47 - + 182.21627 165.30000 367.82092 169.09000 110 50 - + 194.64571 178.97500 391.61867 180.03000 110 50 - + 194.64571 178.97500 375.99210 180.03000 110 52 - + 207.53067 192.65000 398.84025 190.97000 110 52 - + 207.53067 192.65000 384.64608 190.97000 110 54 - + 220.24580 206.32500 406.68111 201.91000 110 54 - + 220.24580 206.32500 393.66214 201.91000 110 56 - + 232.59390 220.00000 414.99176 212.85000 110 56 - + 232.59390 220.00000 403.44227 212.85000 110 58 - + 243.60365 232.50000 422.39657 222.85000 110 58 - + 243.60365 232.50000 412.10341 222.85000 110 59 - + 254.43965 245.00000 430.59582 232.85000 110 59 - + 254.43965 245.00000 420.91856 232.85000 110 60 - + 265.18890 257.50000 438.99537 242.85000 110 60 - + 265.18890 257.50000 429.86154 242.85000 110 62 - + 275.91186 270.00000 447.56225 252.85000 110 62 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8192,8 +8321,8 @@ Layer name [DATA] 20.00 84.553 'Remblais CT' 16.00 86.211 'Argile et limon CT' - 14.00 1208.834 'Sable et gravier CT' - 3.00 2840.054 'Argile Yprésienne CT' + 14.00 1208.746 'Sable et gravier CT' + 3.00 2840.023 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8370,10 +8499,10 @@ Status character 31.06186 0.00000 97.70640 31.06186 1 32 A 30.24446 0.00000 108.84015 34.39333 1 0 A 34.41128 10.00000 123.83520 39.13174 1 0 A - 66.22552 10.00000 78.86619 78.86619 110 0 - - 75.71583 18.80000 86.20733 86.20733 110 0 - - 62.11439 18.80000 72.60589 72.60589 110 0 - - 72.02610 27.60000 80.52286 80.52286 110 0 - + 66.22544 10.00000 78.86619 78.86619 110 0 - + 75.71574 18.80000 86.20733 86.20733 110 0 - + 62.11430 18.80000 72.60589 72.60589 110 0 - + 72.02600 27.60000 80.52286 80.52286 110 0 - 153.88824 27.60000 153.88824 153.88824 1 100 A 158.30894 30.00000 158.30894 158.30894 1 100 A 92.80264 30.00000 295.26011 92.80264 1 31 A @@ -8388,32 +8517,32 @@ Status character 108.35922 92.50000 868.38684 108.35922 1 12 A 91.97509 92.50000 728.07313 94.66997 1 0 A 101.23951 107.50000 801.41013 104.20584 1 0 A - 69.95483 107.50000 559.89081 99.60376 110 0 - - 79.09719 122.50000 609.66411 108.45835 110 0 - + 69.96646 107.50000 559.89081 99.60376 110 0 - + 79.12215 122.50000 609.66411 108.45835 110 0 - 105.82078 122.50000 610.43620 105.82078 1 17 A 110.77280 131.25000 639.00233 110.77280 1 17 A 126.59026 131.25000 640.17041 126.59026 1 20 A 132.19219 140.00000 668.49952 132.19219 1 20 A - 184.54590 140.00000 391.73504 196.09569 110 0 - - 193.33829 152.80000 410.89006 205.68436 110 0 - - 168.49779 152.80000 185.97513 185.97513 110 0 - - 172.74163 165.30000 194.34895 194.34895 110 0 - - 158.59772 165.30000 180.20503 180.20503 110 0 - - 164.79317 178.97500 188.63143 188.63143 110 0 - - 208.25508 178.97500 392.34260 222.88266 110 0 - - 216.21740 192.65000 409.77139 232.78363 110 0 - - 216.14116 192.65000 336.17447 232.70740 110 0 - - 224.23547 206.32500 350.42432 242.57145 110 0 - - 224.35734 206.32500 416.95943 242.69333 110 0 - - 232.80445 220.00000 433.88444 252.54461 110 0 - - 233.06044 220.00000 445.75844 252.80060 110 0 - - 241.06168 232.50000 461.64268 261.80894 110 0 - - 241.40079 232.50000 451.35062 262.14805 110 0 - - 249.58819 245.00000 466.88294 271.16935 110 0 - - 249.99597 245.00000 459.59654 271.57713 110 0 - - 258.28936 257.50000 474.89648 280.61791 110 0 - - 258.74729 257.50000 467.99867 281.07584 110 0 - - 267.09087 270.00000 483.09174 290.14061 110 0 - + 184.56009 140.00000 391.73504 196.09569 110 0 - + 193.35450 152.80000 410.89006 205.68436 110 0 - + 168.48066 152.80000 185.97513 185.97513 110 0 - + 172.72094 165.30000 194.34895 194.34895 110 0 - + 158.57703 165.30000 180.20503 180.20503 110 0 - + 164.77547 178.97500 188.63143 188.63143 110 0 - + 208.26694 178.97500 392.34260 222.88266 110 0 - + 216.22296 192.65000 409.77139 232.78363 110 0 - + 216.14673 192.65000 336.17447 232.70740 110 0 - + 224.23565 206.32500 350.42432 242.57145 110 0 - + 224.35753 206.32500 416.95943 242.69333 110 0 - + 232.80071 220.00000 433.88444 252.54461 110 0 - + 233.05670 220.00000 445.75844 252.80060 110 0 - + 241.05529 232.50000 461.64268 261.80894 110 0 - + 241.39440 232.50000 451.35062 262.14805 110 0 - + 249.57969 245.00000 466.88294 271.16935 110 0 - + 249.98747 245.00000 459.59654 271.57713 110 0 - + 258.27901 257.50000 474.89648 280.61791 110 0 - + 258.73694 257.50000 467.99867 281.07584 110 0 - + 267.07874 270.00000 483.09174 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8428,8 +8557,8 @@ Layer name [DATA] 20.00 85.786 'Remblais CT' 16.00 158.940 'Argile et limon CT' - 14.00 1123.592 'Sable et gravier CT' - 3.00 2829.686 'Argile Yprésienne CT' + 14.00 1123.620 'Sable et gravier CT' + 3.00 2829.627 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8516,7 +8645,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -192.47097 0.00000 0 'Dalle toiture 18.85' + 2 18.85000 -192.47259 0.00000 0 'Dalle toiture 18.85' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -8566,19 +8695,19 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 31.43 : Percentage mobilized resistance left - 42.59 : Percentage mobilized resistance right -12797.11 : Effective left -12607.74 : Effective right + 42.58 : Percentage mobilized resistance right +12797.22 : Effective left +12607.25 : Effective right 10570.95 : Water pressure left 10570.95 : Water pressure right 40710.17 : Max effective resistance left 29605.93 : Max effective resistance right -543982.08 : Max moment left -454355.15 : Max moment right --198189.15 : Max mobilized moment left --198228.07 : Max mobilized moment right - 777.94 : Vertical force left - 818.47 : Vertical force right +-198190.44 : Max mobilized moment left +-198220.22 : Max mobilized moment right + 777.96 : Vertical force left + 818.43 : Vertical force right 36.4 : Max mobilized moment percentage left 43.6 : Max mobilized moment percentage right 18.85 : Level of single support @@ -8595,60 +8724,60 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.90532 -3.14893 2.35008 - -18.75348 -44.98595 2.59033 - -19.73316 144.93103 2.59033 - 43.84128 107.36725 2.69551 - 43.91569 107.96162 2.69551 - 72.42755 81.48632 2.75705 - 71.66946 84.37357 2.75705 - 139.96637 73.20055 2.94929 - 140.74631 76.00084 2.94929 - 265.94895 187.98305 3.07743 - 265.91763 187.93844 3.07743 - 362.44183 30.25389 3.11090 - 362.44086 30.34412 3.11090 - 338.34093 -86.83039 3.04346 - 338.35131 -86.78266 3.04346 - 304.16648 -198.58994 3.00770 - 304.11584 -198.33620 3.00770 - 176.27821 -128.60336 2.84685 - 176.12987 -127.76582 2.84685 - 57.21783 -68.70694 2.48517 - 57.37741 -68.00697 2.48517 - -9.85643 -50.61392 2.08123 - -9.74621 -50.70603 2.08123 - -69.12984 -53.48121 1.68369 - -69.01217 -54.24236 1.68369 - -142.07714 -66.56582 1.33454 - -141.77029 -68.43997 1.33454 - -227.99771 -56.90797 1.06563 - -227.30308 -61.40201 1.06563 - -173.34147 126.52033 0.97704 - -174.47529 123.06666 0.97704 - -70.67953 114.44007 0.99719 - -71.22345 116.19502 0.99719 - 2.37387 52.30979 1.03809 - 2.84940 54.38369 1.03809 - -2.79809 -61.42161 1.09751 - -2.74820 -61.50366 1.09751 - -80.44154 -60.15586 1.16047 - -80.66646 -59.99788 1.16047 - -61.17773 94.12807 1.27829 - -60.97557 94.46014 1.27829 - 24.10052 34.35130 1.43447 - 24.03650 34.62378 1.43447 - 45.23161 0.51155 1.57768 - 45.22722 0.89599 1.57768 - 35.93644 -10.98087 1.69133 - 35.98648 -10.79716 1.69133 - 22.67495 -10.19420 1.77273 - 22.67646 -10.17661 1.77273 - 11.11165 -8.05634 1.84001 - 11.11284 -8.04738 1.84001 - 3.03796 -4.62124 1.90025 - 3.03864 -4.61827 1.90025 - -0.00012 -0.00040 1.95834 + 0.90536 -3.14907 2.34998 + -18.75360 -44.98609 2.59025 + -19.73332 144.93240 2.59025 + 43.84181 107.36863 2.69545 + 43.91623 107.96303 2.69545 + 72.42850 81.48773 2.75700 + 71.67043 84.37491 2.75700 + 139.96875 73.20189 2.94926 + 140.74867 76.00212 2.94926 + 265.95259 187.98433 3.07742 + 265.92127 187.93972 3.07742 + 362.44656 30.25513 3.11090 + 362.44559 30.34536 3.11090 + 338.34681 -86.82900 3.04348 + 338.35719 -86.78127 3.04348 + 304.17269 -198.58852 3.00773 + 304.12205 -198.33476 3.00773 + 176.28684 -128.59851 2.84688 + 176.13848 -127.76089 2.84688 + 57.23856 -68.69360 2.48522 + 57.39810 -67.99339 2.48522 + -9.81051 -50.59046 2.08129 + -9.70035 -50.68206 2.08129 + -69.04590 -53.45028 1.68372 + -68.92831 -54.21052 1.68372 + -141.95096 -66.53833 1.33447 + -141.64430 -68.41091 1.33447 + -227.84876 -56.91319 1.06536 + -227.15435 -61.40465 1.06536 + -173.31072 126.34426 0.97645 + -174.44500 122.92089 0.97645 + -70.81062 114.21295 0.99641 + -71.34905 116.17080 0.99641 + 2.18338 52.18243 1.03715 + 2.65466 54.42979 1.03715 + -3.01174 -61.50006 1.09643 + -2.96177 -61.58355 1.09643 + -80.83620 -60.36574 1.15938 + -81.06391 -59.93172 1.15938 + -61.44229 94.25552 1.27748 + -61.23740 94.76672 1.27748 + 24.19811 34.58022 1.43410 + 24.13315 34.68215 1.43410 + 45.38673 0.54716 1.57770 + 45.38232 0.85201 1.57770 + 36.04149 -11.00398 1.69163 + 36.09229 -10.83387 1.69163 + 22.73822 -10.22509 1.77321 + 22.73974 -10.20744 1.77321 + 11.14134 -8.07888 1.84064 + 11.14254 -8.06990 1.84064 + 3.04576 -4.63343 1.90100 + 3.04644 -4.63045 1.90100 + -0.00012 -0.00040 1.95922 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8814,50 +8943,50 @@ Status character 47.57936 0.00000 47.57936 11.11223 202 100 P 47.57936 0.00000 47.57936 11.11223 202 100 P 71.56895 10.00000 71.56895 16.71504 202 100 P - 31.54892 10.00000 56.50721 26.85000 110 56 - - 36.88003 18.80000 67.61924 32.13000 110 55 - - 36.88003 18.80000 60.77924 32.13000 110 61 - - 42.05706 27.60000 70.76724 37.41000 110 59 - - 42.05706 27.60000 67.29892 37.41000 110 62 - - 43.44246 30.00000 69.88942 38.85000 110 62 - - 120.71299 30.00000 143.10371 20.93931 110 84 - - 119.68870 38.00000 172.57166 25.25114 110 69 - - 119.68870 38.00000 166.77225 25.25114 110 72 - - 115.03450 51.62500 215.27325 32.59471 110 53 - - 115.03450 51.62500 213.66257 32.59471 110 54 - - 108.97838 65.25000 261.80069 39.93829 110 42 - - 108.97838 65.25000 261.29383 39.93829 110 42 - - 103.13453 78.87500 309.33875 47.28187 110 33 - - 103.13453 78.87500 309.11832 47.28187 110 33 - - 98.89579 92.50000 357.12900 54.62545 110 28 - - 98.89579 92.50000 357.01223 54.62545 110 28 - - 98.05993 107.50000 409.85075 62.71013 110 24 - - 98.05993 107.50000 409.78273 62.71013 110 24 - - 103.20572 122.50000 462.61247 70.79480 110 22 - - 103.20572 122.50000 462.57848 70.79480 110 22 - - 108.59031 131.25000 493.39357 75.51087 110 22 - - 108.59031 131.25000 493.37606 75.51087 110 22 - - 114.66333 140.00000 524.19006 80.22693 110 22 - - 160.95709 140.00000 355.30861 148.85000 110 45 - - 171.89006 152.80000 379.75175 159.09000 110 45 - - 171.89006 152.80000 361.68310 159.09000 110 48 - - 182.62432 165.30000 384.41760 169.09000 110 48 - - 182.62432 165.30000 367.82092 169.09000 110 50 - - 194.93850 178.97500 391.61867 180.03000 110 50 - - 194.93850 178.97500 375.99210 180.03000 110 52 - - 207.69993 192.65000 398.84025 190.97000 110 52 - - 207.69993 192.65000 384.64608 190.97000 110 54 - - 220.31016 206.32500 406.68111 201.91000 110 54 - - 220.31016 206.32500 393.66214 201.91000 110 56 - - 232.57565 220.00000 414.99176 212.85000 110 56 - - 232.57565 220.00000 403.44227 212.85000 110 58 - - 243.52494 232.50000 422.39657 222.85000 110 58 - - 243.52494 232.50000 412.10341 222.85000 110 59 - - 254.30967 245.00000 430.59582 232.85000 110 59 - - 254.30967 245.00000 420.91856 232.85000 110 60 - - 265.01218 257.50000 438.99537 242.85000 110 60 - - 265.01218 257.50000 429.86154 242.85000 110 62 - - 275.68976 270.00000 447.56225 252.85000 110 62 - + 31.54891 10.00000 56.50721 26.85000 110 56 - + 36.88004 18.80000 67.61924 32.13000 110 55 - + 36.88004 18.80000 60.77924 32.13000 110 61 - + 42.05709 27.60000 70.76724 37.41000 110 59 - + 42.05709 27.60000 67.29892 37.41000 110 62 - + 43.44250 30.00000 69.88942 38.85000 110 62 - + 120.71383 30.00000 143.10371 20.93931 110 84 - + 119.68994 38.00000 172.57166 25.25114 110 69 - + 119.68994 38.00000 166.77225 25.25114 110 72 - + 115.03625 51.62500 215.27325 32.59471 110 53 - + 115.03625 51.62500 213.66257 32.59471 110 54 - + 108.98015 65.25000 261.80069 39.93829 110 42 - + 108.98015 65.25000 261.29383 39.93829 110 42 - + 103.13525 78.87500 309.33875 47.28187 110 33 - + 103.13525 78.87500 309.11832 47.28187 110 33 - + 98.89353 92.50000 357.12900 54.62545 110 28 - + 98.89353 92.50000 357.01223 54.62545 110 28 - + 98.05107 107.50000 409.85075 62.71013 110 24 - + 98.05107 107.50000 409.78273 62.71013 110 24 - + 103.18645 122.50000 462.61247 70.79480 110 22 - + 103.18645 122.50000 462.57848 70.79480 110 22 - + 108.56434 131.25000 493.39357 75.51087 110 22 - + 108.56434 131.25000 493.37606 75.51087 110 22 - + 114.63194 140.00000 524.19006 80.22693 110 22 - + 160.94605 140.00000 355.30861 148.85000 110 45 - + 171.87742 152.80000 379.75175 159.09000 110 45 - + 171.87742 152.80000 361.68310 159.09000 110 48 - + 182.61166 165.30000 384.41760 169.09000 110 48 - + 182.61166 165.30000 367.82092 169.09000 110 50 - + 194.92896 178.97500 391.61867 180.03000 110 50 - + 194.92896 178.97500 375.99210 180.03000 110 52 - + 207.69565 192.65000 398.84025 190.97000 110 52 - + 207.69565 192.65000 384.64608 190.97000 110 54 - + 220.31039 206.32500 406.68111 201.91000 110 54 - + 220.31039 206.32500 393.66214 201.91000 110 56 - + 232.57913 220.00000 414.99176 212.85000 110 56 - + 232.57913 220.00000 403.44227 212.85000 110 58 - + 243.53059 232.50000 422.39657 222.85000 110 58 - + 243.53059 232.50000 412.10341 222.85000 110 59 - + 254.31703 245.00000 430.59582 232.85000 110 59 - + 254.31703 245.00000 420.91856 232.85000 110 60 - + 265.02103 257.50000 438.99537 242.85000 110 60 - + 265.02103 257.50000 429.86154 242.85000 110 62 - + 275.70002 270.00000 447.56225 252.85000 110 62 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8872,8 +9001,8 @@ Layer name [DATA] 20.00 84.553 'Remblais CT' 16.00 75.101 'Argile et limon CT' - 14.00 1179.810 'Sable et gravier CT' - 3.00 2841.593 'Argile Yprésienne CT' + 14.00 1179.742 'Sable et gravier CT' + 3.00 2841.573 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9050,10 +9179,10 @@ Status character 31.06186 0.00000 97.70640 31.06186 1 32 A 30.24446 0.00000 108.84015 34.39333 1 0 A 34.41128 10.00000 123.83520 39.13174 1 0 A - 74.16726 10.00000 78.86619 78.86619 110 0 - + 74.16728 10.00000 78.86619 78.86619 110 0 - 81.45730 18.80000 86.20733 86.20733 110 0 - - 67.85586 18.80000 72.60589 72.60589 110 0 - - 75.87580 27.60000 80.52286 80.52286 110 0 - + 67.85585 18.80000 72.60589 72.60589 110 0 - + 75.87577 27.60000 80.52286 80.52286 110 0 - 153.88824 27.60000 153.88824 153.88824 1 100 A 158.30894 30.00000 158.30894 158.30894 1 100 A 92.80264 30.00000 295.26011 92.80264 1 31 A @@ -9068,32 +9197,32 @@ Status character 108.35922 92.50000 868.38684 108.35922 1 12 A 91.97509 92.50000 728.07313 94.66997 1 0 A 101.23951 107.50000 801.41013 104.20584 1 0 A - 64.25396 107.50000 559.89081 99.60376 110 0 - - 76.04743 122.50000 609.66411 108.45835 110 0 - + 64.26282 107.50000 559.89081 99.60376 110 0 - + 76.06670 122.50000 609.66411 108.45835 110 0 - 105.82078 122.50000 610.43620 105.82078 1 17 A 110.77280 131.25000 639.00233 110.77280 1 17 A 126.59026 131.25000 640.17041 126.59026 1 20 A 132.19219 140.00000 668.49952 132.19219 1 20 A - 183.98860 140.00000 391.73504 196.09569 110 0 - - 192.88429 152.80000 410.89006 205.68436 110 0 - - 173.17506 152.80000 185.97513 185.97513 110 0 - - 180.81463 165.30000 194.34895 194.34895 110 0 - - 158.20561 165.30000 180.20503 180.20503 110 0 - - 164.51226 178.97500 188.63143 188.63143 110 0 - - 207.97416 178.97500 392.34260 222.88266 110 0 - - 216.05370 192.65000 409.77139 232.78363 110 0 - - 215.97746 192.65000 336.17447 232.70740 110 0 - - 224.17129 206.32500 350.42432 242.57145 110 0 - - 224.29317 206.32500 416.95943 242.69333 110 0 - - 232.81896 220.00000 433.88444 252.54461 110 0 - - 233.07495 220.00000 445.75844 252.80060 110 0 - - 241.13401 232.50000 461.64268 261.80894 110 0 - - 241.47311 232.50000 451.35062 262.14805 110 0 - - 249.70967 245.00000 466.88294 271.16935 110 0 - - 250.11746 245.00000 459.59654 271.57713 110 0 - - 258.45573 257.50000 474.89648 280.61791 110 0 - - 258.91366 257.50000 467.99867 281.07584 110 0 - - 267.30085 270.00000 483.09174 290.14061 110 0 - + 183.99963 140.00000 391.73504 196.09569 110 0 - + 192.89693 152.80000 410.89006 205.68436 110 0 - + 173.18770 152.80000 185.97513 185.97513 110 0 - + 180.82729 165.30000 194.34895 194.34895 110 0 - + 158.18164 165.30000 180.20503 180.20503 110 0 - + 164.49222 178.97500 188.63143 188.63143 110 0 - + 207.98370 178.97500 392.34260 222.88266 110 0 - + 216.05798 192.65000 409.77139 232.78363 110 0 - + 215.98175 192.65000 336.17447 232.70740 110 0 - + 224.17106 206.32500 350.42432 242.57145 110 0 - + 224.29294 206.32500 416.95943 242.69333 110 0 - + 232.81548 220.00000 433.88444 252.54461 110 0 - + 233.07147 220.00000 445.75844 252.80060 110 0 - + 241.12835 232.50000 461.64268 261.80894 110 0 - + 241.46746 232.50000 451.35062 262.14805 110 0 - + 249.70231 245.00000 466.88294 271.16935 110 0 - + 250.11010 245.00000 459.59654 271.57713 110 0 - + 258.44688 257.50000 474.89648 280.61791 110 0 - + 258.90482 257.50000 467.99867 281.07584 110 0 - + 267.29058 270.00000 483.09174 290.14061 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9108,8 +9237,8 @@ Layer name [DATA] 20.00 85.786 'Remblais CT' 16.00 169.180 'Argile et limon CT' - 14.00 1117.029 'Sable et gravier CT' - 3.00 2836.644 'Argile Yprésienne CT' + 14.00 1117.050 'Sable et gravier CT' + 3.00 2836.619 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9117,12 +9246,14 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 20.00000 + 19.70000 + 19.70000 18.85000 18.85000 18.35000 @@ -9194,7 +9325,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -8334.65359 0.00000 0 'Dalle toiture 18.85' + 3 18.85000 -8333.06623 0.00000 0 'Dalle toiture 18.85' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -9220,88 +9351,90 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 28.02 : Percentage mobilized resistance left - 43.87 : Percentage mobilized resistance right -13618.49 : Effective left -20826.20 : Effective right + 28.32 : Percentage mobilized resistance left + 43.48 : Percentage mobilized resistance right +13370.88 : Effective left +20642.05 : Effective right 10570.95 : Water pressure left 818.11 : Water pressure right -48609.59 : Max effective resistance left +47205.44 : Max effective resistance left 47470.01 : Max effective resistance right --647861.08 : Max moment left +-635254.26 : Max moment left -702003.18 : Max moment right --198697.25 : Max mobilized moment left --353216.41 : Max mobilized moment right - 761.28 : Vertical force left - 1144.15 : Vertical force right - 30.7 : Max mobilized moment percentage left - 50.3 : Max mobilized moment percentage right +-195952.48 : Max mobilized moment left +-350458.19 : Max mobilized moment right + 745.70 : Vertical force left + 1128.25 : Vertical force right + 30.8 : Max mobilized moment percentage left + 49.9 : Max mobilized moment percentage right 18.85 : Level of single support - 2 : Node of single support + 3 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -11.60811 -5844.47678 8.00000 - -6802.68815 -5982.88095 2.60345 - -6791.01695 2391.64397 2.60345 - -5622.55271 2268.53126 1.03383 - -5619.36260 2258.38742 1.03383 - -2927.99505 1685.65503 -0.88522 - -2930.47157 1672.90917 -0.88522 - -1512.32559 1157.54944 -0.92173 - -1513.07195 1154.30485 -0.92173 - -619.82363 876.64233 -0.46684 - -619.84601 876.46834 -0.46684 - 31.41371 604.84209 0.17130 - 31.40575 604.80598 0.17130 - 167.36125 528.25155 0.35098 - 167.24890 528.81339 0.35098 - 458.47313 218.74440 0.91180 - 456.86969 224.34341 0.91180 - 529.07930 -75.45937 1.61322 - 529.28828 -65.99849 1.61322 - 354.23154 -167.88010 1.96405 - 354.93116 -161.08666 1.96405 - 125.93541 -165.72485 2.07352 - 126.63093 -163.02724 2.07352 - -74.04745 -127.48064 2.09428 - -75.97226 -121.72216 2.09428 - -210.27519 -53.06191 2.17515 - -207.30111 -50.13153 2.17515 - -217.48121 39.27216 2.42072 - -218.34028 36.59210 2.42072 - -159.20673 101.15239 2.64742 - -159.75001 103.32603 2.64742 - -34.71067 185.92627 2.91769 - -34.30227 188.46079 2.91769 - 121.20893 62.76905 3.32076 - 121.13706 63.35550 3.32076 - 146.93076 -15.50877 3.65006 - 146.58575 -13.70159 3.65006 - 125.04484 -11.29561 3.91589 - 125.37322 -9.45704 3.91589 - 97.39657 -27.53981 4.09528 - 97.44116 -26.79164 4.09528 - 59.84032 -25.74292 4.20775 - 59.88309 -25.30708 4.20775 - 33.13672 -12.27224 4.27813 - 33.19112 -12.12004 4.27813 - 19.42461 -9.80044 4.32088 - 19.42606 -9.78514 4.32088 - 8.93772 -6.92045 4.35145 - 8.93875 -6.91311 4.35145 - 2.30680 -3.63644 4.37629 - 2.30734 -3.63412 4.37629 - -0.00009 -0.00030 4.39948 + 0.00000 -5908.67725 8.00000 + -1772.60317 -5908.67725 6.44218 + -1777.20750 -5887.00982 6.44218 + -6817.79922 -5983.76276 2.54495 + -6813.13196 2370.46747 2.54495 + -5653.74592 2253.15287 0.95239 + -5650.44805 2242.69152 0.95239 + -2972.88885 1679.51474 -1.01269 + -2975.45596 1666.38209 -1.01269 + -1562.24218 1153.80050 -1.06432 + -1563.00412 1150.48144 -1.06432 + -665.69445 889.69927 -0.60770 + -665.71715 889.51384 -0.60770 + 4.47764 634.85757 0.04495 + 4.46860 634.81643 0.04495 + 148.18613 562.92716 0.23019 + 148.07814 563.46705 0.23019 + 460.82541 238.59225 0.81163 + 459.18262 244.27209 0.81163 + 546.43206 -71.36613 1.54581 + 546.61300 -61.61752 1.54581 + 372.50988 -169.54224 1.91826 + 373.21223 -162.38680 1.91826 + 141.81692 -167.36500 2.03694 + 142.51791 -164.32945 2.03694 + -59.09895 -127.64562 2.05586 + -60.94587 -121.78770 2.05586 + -194.89739 -52.70603 2.12272 + -191.98725 -49.72816 2.12272 + -203.01495 36.82740 2.34156 + -203.83849 34.10159 2.34156 + -148.67720 94.14230 2.54707 + -149.21314 95.92316 2.54707 + -33.59962 171.30633 2.79330 + -33.18711 173.57875 2.79330 + 109.76234 57.30873 3.16143 + 109.69660 57.83689 3.16143 + 132.33733 -15.59230 3.46281 + 131.99170 -13.87092 3.46281 + 112.53463 -8.54750 3.70750 + 112.86329 -6.80840 3.70750 + 89.05066 -24.37402 3.87427 + 89.09043 -23.71263 3.87427 + 55.28508 -23.41974 3.97994 + 55.32434 -22.98953 3.97994 + 30.81880 -11.39037 4.04676 + 30.86980 -11.22339 4.04676 + 18.10041 -9.10597 4.08778 + 18.10177 -9.09172 4.08778 + 8.34305 -6.44869 4.11745 + 8.34401 -6.44185 4.11745 + 2.15685 -3.39731 4.14178 + 2.15735 -3.39514 4.14178 + -0.00009 -0.00028 4.16457 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9446,7 +9579,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -9461,54 +9594,56 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 1 0 A 9.58632 0.00000 61.17346 14.28716 1 0 A 9.58632 0.00000 61.17346 14.28716 1 0 A 16.68730 0.00000 106.48713 24.87023 1 0 A - 38.54261 0.00000 67.95058 39.95000 110 0 - - 53.31718 0.00000 91.89912 54.03000 110 0 - - 53.31718 0.00000 81.95925 54.03000 110 0 - - 68.37156 0.00000 103.31749 68.11000 110 66 - - 68.37156 0.00000 98.29129 68.11000 110 70 - - 72.48591 0.00000 103.83289 71.95000 110 70 - - 50.42245 0.00000 260.41432 38.77949 110 19 - - 76.78770 0.00000 312.53338 46.54078 110 25 - - 76.78770 0.00000 305.58444 46.54078 110 25 - - 113.27418 0.00000 392.37608 59.75922 110 29 - - 113.27418 0.00000 390.94503 59.75922 110 29 - - 138.13062 0.00000 477.42013 72.97767 110 29 - - 138.13062 0.00000 477.03049 72.97767 110 29 - - 154.98048 0.00000 563.43502 86.19611 110 28 - - 154.98048 0.00000 563.27626 86.19611 110 28 - - 168.88745 0.00000 649.65644 99.41455 110 26 - - 168.88745 0.00000 649.57535 99.41455 110 26 - - 186.12258 0.00000 744.66093 113.96697 110 25 - - 186.12258 0.00000 744.61476 113.96697 110 25 - - 208.82134 0.00000 839.69444 128.51938 110 25 - - 208.82134 0.00000 839.67169 128.51938 110 25 - - 224.83042 0.00000 895.13334 137.00829 110 25 - - 224.83042 0.00000 895.12172 137.00829 110 25 - - 242.28491 0.00000 950.58264 145.49720 110 25 - - 303.97845 0.00000 476.58383 269.95000 110 64 - - 331.71941 0.00000 517.25985 292.99000 110 64 - - 331.71941 0.00000 497.68095 292.99000 110 67 - - 358.05988 0.00000 535.90007 315.49000 110 67 - - 358.05988 0.00000 521.84687 315.49000 110 69 - - 372.10025 13.67500 539.94255 326.43000 110 69 - - 372.10025 13.67500 530.54397 326.43000 110 70 - - 385.13242 27.35000 548.32466 337.37000 110 70 - - 385.13242 27.35000 539.50677 337.37000 110 71 - - 397.38417 41.02500 557.00152 348.31000 110 71 - - 397.38417 41.02500 548.68864 348.31000 110 72 - - 409.14502 54.70000 565.92229 359.25000 110 72 - - 409.14502 54.70000 558.37721 359.25000 110 73 - - 419.64356 67.20000 573.92007 369.25000 110 73 - - 419.64356 67.20000 567.05901 369.25000 110 74 - - 430.00007 79.70000 582.41606 379.25000 110 74 - - 430.00007 79.70000 575.85378 379.25000 110 75 - - 440.28981 92.20000 591.03779 389.25000 110 74 - - 440.28981 92.20000 584.74694 389.25000 110 75 - - 450.56031 104.70000 599.76934 399.25000 110 75 - + 38.32489 0.00000 67.95058 39.95000 110 0 - + 53.10210 0.00000 91.89912 54.03000 110 0 - + 53.10210 0.00000 81.95925 54.03000 110 0 - + 68.17863 0.00000 103.31749 68.11000 110 66 - + 68.17863 0.00000 98.29129 68.11000 110 69 - + 72.30147 0.00000 103.83289 71.95000 110 70 - + 46.41539 0.00000 260.41432 38.77949 110 18 - + 73.46468 0.00000 312.53338 46.54078 110 24 - + 73.46468 0.00000 305.58444 46.54078 110 24 - + 111.03794 0.00000 392.37608 59.75922 110 28 - + 111.03794 0.00000 390.94503 59.75922 110 28 - + 136.61154 0.00000 477.42013 72.97767 110 29 - + 136.61154 0.00000 477.03049 72.97767 110 29 - + 153.76682 0.00000 563.43502 86.19611 110 27 - + 153.76682 0.00000 563.27626 86.19611 110 27 - + 167.61302 0.00000 649.65644 99.41455 110 26 - + 167.61302 0.00000 649.57535 99.41455 110 26 - + 184.38335 0.00000 744.66093 113.96697 110 25 - + 184.38335 0.00000 744.61476 113.96697 110 25 - + 206.19515 0.00000 839.69444 128.51938 110 25 - + 206.19515 0.00000 839.67169 128.51938 110 25 - + 221.50159 0.00000 895.13334 137.00829 110 25 - + 221.50159 0.00000 895.12172 137.00829 110 25 - + 238.15846 0.00000 950.58264 145.49720 110 25 - + 302.52768 0.00000 476.58383 269.95000 110 63 - + 329.86111 0.00000 517.25985 292.99000 110 64 - + 329.86111 0.00000 497.68095 292.99000 110 66 - + 355.87610 0.00000 535.90007 315.49000 110 66 - + 355.87610 0.00000 521.84687 315.49000 110 68 - + 369.66979 13.67500 539.94255 326.43000 110 68 - + 369.66979 13.67500 530.54397 326.43000 110 70 - + 382.55489 27.35000 548.32466 337.37000 110 70 - + 382.55489 27.35000 539.50677 337.37000 110 71 - + 394.72722 41.02500 557.00152 348.31000 110 71 - + 394.72722 41.02500 548.68864 348.31000 110 72 - + 406.44653 54.70000 565.92229 359.25000 110 72 - + 406.44653 54.70000 558.37721 359.25000 110 73 - + 416.92492 67.20000 573.92007 369.25000 110 73 - + 416.92492 67.20000 567.05901 369.25000 110 74 - + 427.27099 79.70000 582.41606 379.25000 110 73 - + 427.27099 79.70000 575.85378 379.25000 110 74 - + 437.55475 92.20000 591.03779 389.25000 110 74 - + 437.55475 92.20000 584.74694 389.25000 110 75 - + 447.82053 104.70000 599.76934 399.25000 110 75 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9522,9 +9657,9 @@ Layer name [END OF COLUMN INDICATION] [DATA] 20.00 19.608 'Remblais CT' - 16.00 110.864 'Argile et limon CT' - 14.00 1728.501 'Sable et gravier CT' - 3.00 5091.206 'Argile Yprésienne CT' + 16.00 110.449 'Argile et limon CT' + 14.00 1704.266 'Sable et gravier CT' + 3.00 5059.115 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9539,7 +9674,7 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 1 : Number of surface points - 0.00 20.00 + 0.00 19.70 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] Théorique CT @@ -9600,33 +9735,33 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 20.00000 0.00000 0.00000 0.00000 0.00000 - 18.85000 61.88900 36.54000 166.67769 26.11959 - 18.35000 61.88900 36.54000 257.83814 40.40509 - 17.00000 61.88900 36.54000 560.55680 87.84329 - 16.00000 61.88900 36.54000 827.37437 129.65553 - 15.12000 61.36200 38.01300 951.50821 198.21284 - 14.24000 60.88200 39.00700 1079.95412 271.69072 - 14.00000 60.75800 39.22700 1115.73908 292.56771 - 13.20000 62.22700 38.20700 1459.84513 324.48561 - 11.83750 63.29400 37.06600 2093.58649 384.19690 - 10.47500 63.80000 36.33100 2790.99205 450.43858 - 9.11250 64.09400 35.82000 3553.11027 523.09582 - 7.75000 64.28500 35.44700 4380.27473 602.11250 - 6.25000 64.43000 35.13900 5366.30356 696.42133 - 4.75000 64.53200 34.90500 6431.42889 798.37655 - 3.87500 64.57900 34.79300 7089.29901 861.37546 - 3.00000 64.61900 34.69500 7774.10618 926.96917 - 1.72000 64.15100 36.59600 8345.09141 997.85129 - 0.47000 63.73000 37.81000 8912.07858 1083.29509 - -0.89750 63.30400 38.76100 9543.42235 1193.37259 - -2.26500 62.91200 39.47600 10186.70698 1319.91572 - -3.63250 62.54700 40.03600 10842.26120 1462.43038 - -5.00000 62.20600 40.48800 11510.36025 1620.62310 - -6.25000 61.91400 40.83300 12132.22704 1778.77825 - -7.50000 61.63900 41.12700 12764.92369 1949.77829 - -8.75000 61.37800 41.38100 13408.58386 2133.55293 - -10.00000 61.13000 41.60400 14063.32504 2330.05008 + 19.70000 0.00000 0.00000 0.00000 0.00000 + 18.85000 61.88900 36.54000 117.41906 18.40041 + 18.35000 61.88900 36.54000 201.78246 31.62076 + 17.00000 61.88900 36.54000 486.14908 76.18306 + 16.00000 61.88900 36.54000 739.37255 115.86501 + 15.12000 61.30300 38.15000 858.99766 179.95332 + 14.24000 60.77400 39.20000 982.90112 248.97713 + 14.00000 60.63800 39.42900 1017.44262 268.63989 + 13.20000 62.20600 38.34400 1347.14745 299.16500 + 11.83750 63.30700 37.14500 1956.29187 356.52019 + 10.47500 63.82000 36.37900 2629.13771 420.41329 + 9.11250 64.11400 35.85100 3366.72510 490.72460 + 7.75000 64.30400 35.46600 4169.37674 567.39638 + 6.25000 64.44700 35.15100 5128.43223 659.12406 + 4.75000 64.54800 34.91100 6166.59333 758.49819 + 3.87500 64.59400 34.79700 6808.73731 819.99145 + 3.00000 64.63300 34.69800 7477.82004 884.07944 + 1.72000 64.14700 36.65400 8042.31500 948.52298 + 0.47000 63.71200 37.88900 8602.84984 1027.73781 + -0.89750 63.27400 38.85000 9227.03542 1131.00484 + -2.26500 62.87000 39.56700 9863.08162 1250.72574 + -3.63250 62.49500 40.12800 10511.33533 1386.40299 + -5.00000 62.14700 40.57900 11172.08551 1537.74357 + -6.25000 61.84800 40.92100 11787.20157 1689.62369 + -7.50000 61.56700 41.21300 12413.12223 1854.33891 + -8.75000 61.30000 41.46500 13049.98619 2031.82014 + -10.00000 61.04800 41.68500 13697.91505 2222.01634 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] @@ -9643,38 +9778,38 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 19.42500 54.37500 144.93712 22.71269 0.62253 0.41770 2.66551 - 18.60000 68.40000 182.32090 28.57100 0.62253 0.41770 2.66551 - 17.67500 84.12500 224.23605 35.13940 0.62253 0.41770 2.66551 - 16.50000 100.10000 266.81757 41.81224 0.62253 0.41770 2.66551 - 15.56000 107.24000 141.06118 77.90604 1.00000 0.72646 1.31538 - 14.68000 112.52000 145.96127 83.49759 1.00000 0.74207 1.29720 - 14.12000 115.88000 149.10401 86.98748 1.00000 0.75067 1.28671 - 13.60000 120.60000 430.13256 39.89737 0.53898 0.33082 3.56660 - 12.51875 131.41250 465.13127 43.82480 0.53898 0.33349 3.53948 - 11.15625 145.03750 511.85729 48.61775 0.53898 0.33521 3.52914 - 9.79375 158.66250 559.35283 53.32641 0.53898 0.33610 3.52543 - 8.43125 172.28750 607.09318 57.99389 0.53898 0.33661 3.52372 - 7.00000 186.60000 657.35255 62.87255 0.53898 0.33694 3.52279 - 5.50000 201.60000 710.08356 67.97014 0.53898 0.33715 3.52224 - 4.31250 213.47500 751.85156 71.99876 0.53898 0.33727 3.52197 - 3.43750 222.22500 782.63677 74.96423 0.53898 0.33733 3.52182 - 2.36000 231.72000 446.08221 55.37666 1.00000 0.23898 1.92509 - 1.09500 241.84000 453.58973 68.35503 1.00000 0.28265 1.87558 - -0.21375 252.31000 461.67735 80.49543 1.00000 0.31903 1.82980 - -1.58125 263.25000 470.40923 92.53611 1.00000 0.35151 1.78693 - -2.94875 274.19000 479.38151 104.21547 1.00000 0.38008 1.74836 - -4.31625 285.13000 488.55506 115.68024 1.00000 0.40571 1.71345 - -5.62500 295.60000 497.49344 126.52412 1.00000 0.42802 1.68300 - -6.87500 305.60000 506.15732 136.80003 1.00000 0.44764 1.65627 - -8.12500 315.60000 514.92814 147.01972 1.00000 0.46584 1.63158 - -9.37500 325.60000 523.79295 157.19772 1.00000 0.48279 1.60870 + 19.27500 51.82500 138.14007 21.64754 0.62253 0.41770 2.66551 + 18.60000 63.30000 168.72680 26.44070 0.62253 0.41770 2.66551 + 17.67500 79.02500 210.64195 33.00911 0.62253 0.41770 2.66551 + 16.50000 95.00000 253.22347 39.68194 0.62253 0.41770 2.66551 + 15.56000 102.14000 135.93762 72.82763 1.00000 0.71302 1.33090 + 14.68000 107.42000 140.79939 78.43615 1.00000 0.73018 1.31074 + 14.12000 110.78000 143.92293 81.92817 1.00000 0.73956 1.29918 + 13.60000 115.50000 412.13103 38.15638 0.53898 0.33036 3.56823 + 12.51875 126.31250 447.07848 42.09556 0.53898 0.33327 3.53946 + 11.15625 139.93750 493.83181 46.89401 0.53898 0.33511 3.52895 + 9.79375 153.56250 541.34854 51.60464 0.53898 0.33605 3.52527 + 8.43125 167.18750 589.10212 56.27286 0.53898 0.33659 3.52360 + 7.00000 181.50000 639.37032 61.15179 0.53898 0.33692 3.52270 + 5.50000 196.50000 692.10740 66.24942 0.53898 0.33715 3.52218 + 4.31250 208.37500 733.87883 70.27801 0.53898 0.33727 3.52191 + 3.43750 217.12500 764.66598 73.24342 0.53898 0.33733 3.52178 + 2.36000 226.62000 441.01169 50.34652 1.00000 0.22216 1.94604 + 1.09500 236.74000 448.42787 63.37186 1.00000 0.26769 1.89418 + -0.21375 247.21000 456.44284 75.51520 1.00000 0.30547 1.84638 + -1.58125 258.15000 465.11605 87.54727 1.00000 0.33913 1.80173 + -2.94875 269.09000 474.04293 99.21554 1.00000 0.36871 1.76165 + -4.31625 280.03000 483.18112 110.66953 1.00000 0.39521 1.72546 + -5.62500 290.50000 492.09285 121.50410 1.00000 0.41826 1.69395 + -6.87500 300.50000 500.73652 131.77218 1.00000 0.43851 1.66634 + -8.12500 310.50000 509.49117 141.98498 1.00000 0.45728 1.64087 + -9.37500 320.50000 518.34309 152.15696 1.00000 0.47475 1.61730 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=52 +DataCount=54 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -9685,58 +9820,60 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] + 0.00000 0.00000 0.00000 0.00000 -1 0 - + 0.00000 0.00000 0.00000 0.00000 -1 0 - 18.62963 0.00000 118.88176 27.76502 1 0 A - 39.93556 0.00000 170.99248 39.93556 110 0 - - 39.93556 0.00000 170.99248 39.93556 110 23 - - 79.88217 0.00000 193.64932 45.22709 110 41 - - 79.88217 0.00000 193.64932 45.22709 110 41 - - 136.15000 0.00000 254.82278 59.51425 110 53 - - 130.72005 0.00000 254.82278 59.51425 110 51 - - 136.33689 10.00000 278.81237 65.11706 110 49 - - 106.00739 10.00000 137.58858 104.60000 110 77 - - 110.59282 18.80000 144.53378 109.88000 110 77 - - 110.59282 18.80000 142.53665 109.88000 110 78 - - 114.89844 27.60000 149.38588 115.16000 110 0 - - 118.67049 27.60000 148.17758 115.16000 110 80 - - 119.80684 30.00000 150.03044 116.60000 110 80 - - 132.51510 30.00000 415.86614 62.84487 110 32 - - 115.30149 38.00000 444.39898 67.15670 110 26 - - 115.30149 38.00000 441.01859 67.15670 110 26 - - 92.21020 51.62500 489.24394 74.50028 110 19 - - 92.21020 51.62500 487.81504 74.50028 110 19 - - 78.70669 65.25000 535.89954 81.84386 110 0 - - 78.70669 65.25000 535.33586 81.84386 110 0 - - 71.93593 78.87500 583.36979 89.18744 110 0 - - 71.93593 78.87500 583.08782 89.18744 110 0 - - 67.86149 92.50000 631.09853 96.53102 110 0 - - 67.33623 92.50000 630.93163 96.53102 110 0 - - 65.39958 107.50000 683.77347 104.61570 1 0 A - 65.44149 107.50000 683.66676 104.61570 1 0 A - 70.49879 122.50000 736.50035 112.70037 1 0 A - 70.52321 122.50000 736.44296 112.70037 1 0 A - 73.47432 131.25000 767.26016 117.41643 1 0 A - 73.48839 131.25000 767.22880 117.41643 1 0 A - 76.44007 140.00000 798.04474 122.13249 1 0 A - 192.57155 140.00000 436.22574 226.60000 110 0 - - 198.11059 152.80000 455.93868 236.84000 110 0 - - 198.11059 152.80000 444.21185 236.84000 110 0 - - 204.27012 165.30000 462.96762 246.84000 110 0 - - 195.80495 165.30000 451.66833 246.84000 110 0 - - 202.89902 178.97500 471.68636 257.78000 110 0 - - 212.10975 178.97500 460.63473 257.78000 110 0 - - 220.95758 192.65000 480.18374 268.72000 110 0 - - 220.95758 192.65000 469.81801 268.72000 110 0 - - 230.58583 206.32500 488.94502 279.66000 110 0 - - 230.58583 206.32500 479.18251 279.66000 110 0 - - 240.70498 220.00000 497.92762 290.60000 110 0 - - 240.70498 220.00000 489.07846 290.60000 110 0 - - 250.20644 232.50000 505.90841 300.60000 110 0 - - 250.20644 232.50000 497.87595 300.60000 110 0 - - 259.84993 245.00000 514.43869 310.60000 110 0 - - 259.84993 245.00000 506.77021 310.60000 110 0 - - 269.56019 257.50000 523.08606 320.60000 110 0 - - 269.56019 257.50000 515.74944 320.60000 110 0 - - 279.28969 270.00000 531.83645 330.60000 110 0 - + 36.76063 0.00000 157.39838 36.76063 110 23 - + 36.76063 0.00000 157.39838 36.76063 110 23 - + 77.41416 0.00000 180.05522 42.05217 110 43 - + 77.41416 0.00000 180.05522 42.05217 110 43 - + 135.17361 0.00000 241.22867 56.33933 110 56 - + 129.74366 0.00000 241.22867 56.33933 110 54 - + 135.96139 10.00000 265.21827 61.94213 110 51 - + 101.12511 10.00000 132.42406 99.50000 110 76 - + 105.70790 18.80000 139.45119 104.78000 110 76 - + 105.70790 18.80000 137.33904 104.78000 110 77 - + 109.99137 27.60000 144.25973 110.06000 110 0 - + 113.75566 27.60000 142.98752 110.06000 110 80 - + 114.88533 30.00000 144.85834 111.50000 110 79 - + 133.64415 30.00000 397.85809 60.09608 110 34 - + 115.84833 38.00000 426.40397 64.40791 110 27 - + 115.84833 38.00000 422.96588 64.40791 110 27 - + 91.75974 51.62500 471.19107 71.75149 110 19 - + 91.75974 51.62500 469.79087 71.75149 110 20 - + 77.56014 65.25000 517.87275 79.09507 110 0 - + 77.56014 65.25000 517.33267 79.09507 110 0 - + 70.47118 78.87500 565.36441 86.43865 110 0 - + 70.47118 78.87500 565.09759 86.43865 110 0 - + 66.43199 92.50000 613.10666 93.78223 110 0 - + 65.90673 92.50000 612.95006 93.78223 110 0 - + 63.67872 107.50000 665.79058 101.86691 1 0 A + 63.72082 107.50000 665.69109 101.86691 1 0 A + 68.77803 122.50000 718.52372 109.95158 1 0 A + 68.80246 122.50000 718.47046 109.95158 1 0 A + 71.75355 131.25000 749.28720 114.66764 1 0 A + 71.76759 131.25000 749.25820 114.66764 1 0 A + 74.71926 140.00000 780.07376 119.38370 1 0 A + 188.92232 140.00000 431.04796 221.50000 110 0 - + 194.86889 152.80000 450.97542 231.74000 110 0 - + 194.86889 152.80000 438.95697 231.74000 110 0 - + 201.35390 165.30000 457.89876 241.74000 110 0 - + 192.85184 165.30000 446.34316 241.74000 110 0 - + 200.19974 178.97500 466.54252 252.68000 110 0 - + 209.44021 178.97500 455.26060 252.68000 110 0 - + 218.43511 192.65000 474.97150 263.62000 110 0 - + 218.43511 192.65000 464.40670 263.62000 110 0 - + 228.14278 206.32500 483.67917 274.56000 110 0 - + 228.14278 206.32500 473.74284 274.56000 110 0 - + 238.30347 220.00000 492.61940 285.50000 110 0 - + 238.30347 220.00000 483.62309 285.50000 110 0 - + 247.82508 232.50000 500.56261 295.50000 110 0 - + 247.82508 232.50000 492.40480 295.50000 110 0 - + 257.47901 245.00000 509.06824 305.50000 110 0 - + 257.47901 245.00000 501.28681 305.50000 110 0 - + 267.19525 257.50000 517.69554 315.50000 110 0 - + 267.19525 257.50000 510.25661 315.50000 110 0 - + 276.92947 270.00000 526.42956 325.50000 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9749,10 +9886,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 342.980 'Remblais CT' - 16.00 223.138 'Argile et limon CT' - 14.00 884.893 'Sable et gravier CT' - 3.00 3000.753 'Argile Yprésienne CT' + 20.00 328.434 'Remblais CT' + 16.00 213.351 'Argile et limon CT' + 14.00 872.835 'Sable et gravier CT' + 3.00 2966.499 'Argile Yprésienne CT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -9776,18 +9913,18 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - -409.55696 -315.82251 1.57972 0.00000 25.30483 1 3 0 1.000 0 0 - -584.22983 -449.93381 1.61207 0.00000 25.36031 1 10 12 1.000 0 0 - 288.90640 146.18333 1.62971 0.00000 35.94300 1 11 13 1.000 0 0 - -334.95866 -312.20525 2.67869 0.00000 29.30891 2 3 0 1.000 0 0 - -460.78544 -444.95885 6.68601 0.00000 30.28951 2 10 12 1.000 0 0 - -717.22907 -309.25061 15.38938 0.00000 43.11379 2 11 13 1.000 0 0 - -334.95866 -312.20525 2.67869 30.81494 29.30891 3 3 0 1.000 0 0 - -462.49760 -441.99617 2.74358 31.34376 30.07460 3 10 12 1.000 0 0 - 362.44183 -198.58994 3.11090 43.62844 42.58518 3 11 13 1.000 0 0 - -6749.51244 -5926.31183 8.00000 38.35475 32.44940 4 3 0 1.000 0 0 - -9111.84179 -8000.52097 8.00000 38.35475 32.44940 4 10 12 1.000 0 0 - -6802.68815 -5982.88095 8.00000 50.31550 43.87233 4 11 13 1.000 0 0 + -410.56604 -315.50249 1.57985 0.00000 25.30267 1 3 0 1.000 0 0 + -585.66827 -449.47851 1.61221 0.00000 25.35804 1 10 12 1.000 0 0 + 301.69537 162.13810 1.78018 0.00000 36.90559 1 11 13 1.000 0 0 + -335.95155 -311.90552 2.67860 0.00000 29.30682 2 3 0 1.000 0 0 + -482.21834 -442.64729 2.76488 0.00000 29.37749 2 10 12 1.000 0 0 + -717.22702 -309.24950 15.38941 0.00000 43.11163 2 11 13 1.000 0 0 + -335.95155 -311.90552 2.67860 30.81254 29.30682 3 3 0 1.000 0 0 + -482.32505 -442.72784 2.67316 30.82711 29.36736 3 10 12 1.000 0 0 + 362.44656 -198.58852 3.11090 43.62671 42.58351 3 11 13 1.000 0 0 + -6749.60675 -5926.39369 8.00000 38.35543 32.45016 4 3 0 1.000 0 0 + -9111.96911 -8000.63148 8.00000 38.35543 32.45016 4 10 12 1.000 0 0 + -6817.79922 -5983.76276 8.00000 49.92259 43.48439 4 11 13 1.000 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 5 12 4 0.000 1 6 [END OF DATA] [END OF TABLE] @@ -9809,24 +9946,33 @@ SupportName [END OF COLUMN INDICATION] [DATA] 3 3 7 0 1.000 0.00000 0.00000 0 0 'Dalle toiture 18.85' - 3 10 7 12 1.000 -106.21016 0.00000 0 0 'Dalle toiture 18.85' - 3 11 7 13 1.000 -192.47097 0.00000 0 0 'Dalle toiture 18.85' - 4 3 7 0 1.000 -8222.77702 0.00000 0 0 'Dalle toiture 18.85' - 4 10 7 12 1.000 -11100.74897 0.00000 0 0 'Dalle toiture 18.85' - 4 11 7 13 1.000 -8334.65359 0.00000 0 0 'Dalle toiture 18.85' + 3 10 7 12 1.000 -7.48897 0.00000 0 0 'Dalle toiture 18.85' + 3 11 7 13 1.000 -192.47259 0.00000 0 0 'Dalle toiture 18.85' + 4 3 7 0 1.000 -8222.88715 0.00000 0 0 'Dalle toiture 18.85' + 4 10 7 12 1.000 -11100.89765 0.00000 0 0 'Dalle toiture 18.85' + 4 11 7 13 1.000 -8333.06623 0.00000 0 0 'Dalle toiture 18.85' 5 12 7 4 1.000 0.00000 0.00000 0 6 '---' [END OF DATA] [END OF TABLE] [END OF SUPPORTS RESUME] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-9111.84179 -MaximumShearForce=-8000.52097 +MaximumMoment=-9111.96911 +MaximumShearForce=-8000.63148 MaximumDisplacement=8.00000 -MaximumPercentageMobilisedMoment=50.31550 -MaximumPercentageMobilisedResistance=43.87233 +MaximumPercentageMobilisedMoment=49.92259 +MaximumPercentageMobilisedResistance=43.48439 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=-9111.96911 +MaximumShearForce=-8000.63148 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=38.35543 +MaximumPercentageMobilisedResistance=32.45016 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [FACTORS FOR OVERALL STABILITY] [TABLE] DataCount=8 @@ -9840,14 +9986,14 @@ Factor on driving moment Factor on unit weight stability [END OF COLUMN INDICATION] [DATA] - 1 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 2 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 3 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 4 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 1 13 'EC7-BE-Set2' 1.400 1.250 1.000 1.000 - 2 13 'EC7-BE-Set2' 1.400 1.250 1.000 1.000 - 3 13 'EC7-BE-Set2' 1.400 1.250 1.000 1.000 - 4 13 'EC7-BE-Set2' 1.400 1.250 1.000 1.000 + 1 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 2 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 3 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 4 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 1 13 'EC7-BE-RC2-Set2' 1.400 1.250 1.000 1.000 + 2 13 'EC7-BE-RC2-Set2' 1.400 1.250 1.000 1.000 + 3 13 'EC7-BE-RC2-Set2' 1.400 1.250 1.000 1.000 + 4 13 'EC7-BE-RC2-Set2' 1.400 1.250 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR OVERALL STABILITY] @@ -9865,13 +10011,13 @@ X surface left X surface right [END OF COLUMN INDICATION] [DATA] - 1 12 18.419 11.000 21.000 33.392 -22.377 44.377 - 2 12 10.117 11.000 21.000 33.392 -22.377 44.287 - 3 12 10.117 11.000 21.000 33.392 -22.377 44.287 + 1 12 18.462 11.000 21.000 33.392 -22.377 44.377 + 2 12 10.131 11.000 21.000 33.392 -22.377 44.287 + 3 12 10.131 11.000 21.000 33.392 -22.377 44.287 4 12 6.413 0.000 32.000 42.100 -40.354 39.826 - 1 13 13.482 11.000 21.000 33.392 -22.377 44.377 - 2 13 7.380 11.000 21.000 33.392 -22.377 44.287 - 3 13 7.380 11.000 21.000 33.392 -22.377 44.287 + 1 13 13.514 11.000 21.000 33.392 -22.377 44.377 + 2 13 7.390 11.000 21.000 33.392 -22.377 44.287 + 3 13 7.390 11.000 21.000 33.392 -22.377 44.287 4 13 4.732 0.000 32.000 43.246 -41.548 41.035 [END OF DATA] [END OF TABLE] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shi index 5130cb44..64995af3 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects14.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects14.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:42 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects14.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1316,6 +1316,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1325,6 +1326,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1334,6 +1336,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1343,6 +1346,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -1352,6 +1356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1375,7 +1380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1386,8 +1391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1398,7 +1405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1417,6 +1424,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1444,6 +1452,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1471,6 +1480,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1498,6 +1508,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1525,6 +1536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1552,6 +1564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1579,6 +1592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1606,6 +1620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1616,7 +1631,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1631,8 +1702,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1642,8 +1714,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1660,6 +1732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1669,7 +1742,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1687,6 +1816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1714,6 +1844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1741,6 +1872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shd index e1ec1a06..9a5a25ab 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects15.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:49 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects15.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -674,6 +674,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -683,6 +684,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -692,6 +694,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -715,7 +718,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -726,8 +729,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.111 @@ -738,7 +743,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -757,6 +762,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -784,6 +790,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -811,6 +818,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -838,6 +846,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -865,6 +874,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -892,6 +902,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -919,6 +930,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -946,6 +958,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -956,7 +969,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -971,8 +1040,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -982,8 +1052,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1000,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1009,7 +1080,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1027,6 +1154,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1054,6 +1182,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1081,6 +1210,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1153,6 +1283,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1171,14 +1302,14 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 1 1.000 1.050 1.300 0.20 0.00 0.00 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] [VERIFY STEP 6.5 (SERVICEABILITY LIMIT STATE)] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -1196,28 +1327,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -1365,7 +1484,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 22.16 : Percentage mobilized resistance left 10.17 : Percentage mobilized resistance right - 113.67 : Effective left + 113.65 : Effective left 80.05 : Effective right 117.77 : Water pressure left 148.38 : Water pressure right @@ -1401,148 +1520,136 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 3.01747 -6.00000 - 0.15087 3.01747 -5.74522 - 0.30175 3.01747 -5.49100 - 0.45262 3.01747 -5.23791 - 0.60349 3.01747 -4.98652 - 0.75437 3.01747 -4.73739 - 0.75437 3.01747 -4.73739 - 0.90524 3.01747 -4.49110 - 1.05612 3.01747 -4.24819 - 1.20699 3.01747 -4.00925 - 1.35786 3.01747 -3.77483 - 1.50874 3.01747 -3.54551 - 1.50874 3.01747 -3.54551 - 1.59931 3.02189 -3.41059 - 1.69014 3.03513 -3.27784 - 1.78150 3.05721 -3.14736 - 1.87366 3.08811 -3.01929 - 1.96688 3.12784 -2.89376 - 1.96688 3.12784 -2.89376 - 2.06142 3.17640 -2.77087 - 2.15755 3.23379 -2.65077 - 2.25553 3.30000 -2.53358 - 2.35565 3.37640 -2.41944 - 2.45823 3.46442 -2.30848 - 2.45833 3.46195 -2.30848 - 2.55567 3.02157 -2.20085 - 2.63926 2.54495 -2.09667 - 2.70816 2.04769 -1.99603 - 2.76225 1.56331 -1.89904 - 2.80226 1.10918 -1.80577 - 2.80216 1.10709 -1.80577 - 2.82893 0.68209 -1.71631 - 2.84337 0.28507 -1.63067 - 2.84630 -0.08512 -1.54885 - 2.83852 -0.42963 -1.47086 - 2.82077 -0.74960 -1.39671 - 2.82100 -0.75224 -1.39671 - 2.76681 -1.26977 -1.27434 - 2.68656 -1.73045 -1.16377 - 2.58321 -2.13571 -1.06459 - 2.46010 -2.46536 -0.97634 - 2.32182 -2.70648 -0.89860 - 2.32153 -2.70677 -0.89860 - 2.17248 -2.87029 -0.83084 - 2.01656 -2.96647 -0.77233 - 1.85709 -3.00482 -0.72242 - 1.69692 -2.99416 -0.68043 - 1.53844 -2.94258 -0.64569 - 1.53846 -2.93965 -0.64569 - 1.38382 -2.85449 -0.61749 - 1.23446 -2.74241 -0.59519 - 1.09167 -2.60937 -0.57819 - 0.95641 -2.46068 -0.56587 - 0.82939 -2.30104 -0.55764 - 0.82941 -2.29944 -0.55764 - 0.71119 -2.13288 -0.55290 - 0.60197 -1.96287 -0.55119 - 0.50183 -1.79243 -0.55208 - 0.41074 -1.62410 -0.55515 - 0.32852 -1.45999 -0.55997 - 0.32853 -1.45933 -0.55997 - 0.25495 -1.30108 -0.56615 - 0.18962 -1.14999 -0.57341 - 0.13214 -1.00710 -0.58151 - 0.08204 -0.87317 -0.59020 - 0.03883 -0.74869 -0.59925 - 0.03884 -0.74860 -0.59925 - 0.00202 -0.63383 -0.60842 - -0.02895 -0.52886 -0.61760 - -0.05457 -0.43363 -0.62668 - -0.07537 -0.34796 -0.63554 - -0.09185 -0.27158 -0.64408 - -0.09185 -0.27173 -0.64408 - -0.10411 -0.20650 -0.65193 - -0.11322 -0.14912 -0.65936 - -0.11958 -0.09917 -0.66635 - -0.12354 -0.05617 -0.67288 - -0.12546 -0.01962 -0.67891 - -0.12546 -0.01983 -0.67891 - -0.12567 0.01076 -0.68444 - -0.12445 0.03593 -0.68947 - -0.12206 0.05617 -0.69401 - -0.11875 0.07199 -0.69807 - -0.11472 0.08388 -0.70166 - -0.11472 0.08368 -0.70166 - -0.11019 0.09211 -0.70479 - -0.10530 0.09755 -0.70748 - -0.10020 0.10043 -0.70976 - -0.09501 0.10118 -0.71164 - -0.08982 0.10019 -0.71314 - -0.08982 0.10003 -0.71314 - -0.08473 0.09768 -0.71428 - -0.07979 0.09432 -0.71509 - -0.07504 0.09029 -0.71558 - -0.07051 0.08591 -0.71578 - -0.06621 0.08148 -0.71569 - -0.06621 0.08136 -0.71569 - -0.06213 0.07715 -0.71534 - -0.05827 0.07342 -0.71475 - -0.05457 0.07043 -0.71392 - -0.05100 0.06839 -0.71288 - -0.04751 0.06753 -0.71163 - -0.04752 0.06745 -0.71163 - -0.04404 0.06797 -0.71020 - -0.04050 0.07006 -0.70859 - -0.03680 0.07388 -0.70682 - -0.03287 0.07960 -0.70491 - -0.02858 0.08735 -0.70286 - -0.02858 0.08730 -0.70286 - -0.02385 0.09722 -0.70070 - -0.01854 0.10941 -0.69845 - -0.01255 0.12395 -0.69612 - -0.00575 0.14091 -0.69375 - 0.00198 0.16032 -0.69135 - 0.00198 0.16032 -0.69135 - 0.00931 0.13337 -0.68903 + 0.00000 3.01658 -6.00000 + 0.15083 3.01658 -5.74524 + 0.30166 3.01658 -5.49104 + 0.45249 3.01658 -5.23798 + 0.60332 3.01658 -4.98661 + 0.75415 3.01658 -4.73750 + 0.75415 3.01658 -4.73750 + 0.90497 3.01658 -4.49123 + 1.05580 3.01658 -4.24834 + 1.20663 3.01658 -4.00942 + 1.35746 3.01658 -3.77502 + 1.50829 3.01658 -3.54571 + 1.50829 3.01658 -3.54571 + 1.68964 3.03424 -3.27804 + 1.87311 3.08721 -3.01948 + 2.06081 3.17550 -2.77107 + 2.25487 3.29911 -2.53381 + 2.45752 3.46362 -2.30873 + 2.45833 3.44898 -2.30873 + 2.63849 2.53198 -2.09708 + 2.76123 1.56807 -1.89970 + 2.82833 0.68798 -1.71696 + 2.84603 -0.08012 -1.54924 + 2.82077 -0.74535 -1.39693 + 2.82071 -0.75069 -1.39693 + 2.76660 -1.26833 -1.27454 + 2.68643 -1.72911 -1.16397 + 2.58314 -2.13453 -1.06476 + 2.46009 -2.46435 -0.97650 + 2.32185 -2.70564 -0.89875 + 2.32157 -2.70593 -0.89875 + 2.17256 -2.86961 -0.83097 + 2.01667 -2.96592 -0.77246 + 1.85723 -3.00440 -0.72253 + 1.69707 -2.99385 -0.68053 + 1.53861 -2.94236 -0.64577 + 1.53864 -2.93943 -0.64577 + 1.38400 -2.85436 -0.61756 + 1.23465 -2.74234 -0.59526 + 1.09186 -2.60936 -0.57824 + 0.95660 -2.46073 -0.56592 + 0.82958 -2.30113 -0.55767 + 0.82960 -2.29953 -0.55767 + 0.71137 -2.13300 -0.55292 + 0.60214 -1.96302 -0.55121 + 0.50199 -1.79260 -0.55210 + 0.41089 -1.62429 -0.55516 + 0.32866 -1.46018 -0.55998 + 0.32867 -1.45953 -0.55998 + 0.25508 -1.30128 -0.56615 + 0.18974 -1.15020 -0.57341 + 0.13225 -1.00730 -0.58151 + 0.08214 -0.87336 -0.59020 + 0.03892 -0.74888 -0.59924 + 0.03893 -0.74879 -0.59924 + 0.00210 -0.63402 -0.60841 + -0.02887 -0.52903 -0.61759 + -0.05451 -0.43379 -0.62667 + -0.07532 -0.34811 -0.63553 + -0.09180 -0.27172 -0.64407 + -0.09180 -0.27187 -0.64407 + -0.10407 -0.20663 -0.65191 + -0.11319 -0.14924 -0.65935 + -0.11955 -0.09928 -0.66634 + -0.12352 -0.05626 -0.67287 + -0.12545 -0.01971 -0.67890 + -0.12545 -0.01992 -0.67890 + -0.12566 0.01069 -0.68443 + -0.12444 0.03586 -0.68946 + -0.12206 0.05611 -0.69400 + -0.11875 0.07194 -0.69806 + -0.11472 0.08383 -0.70165 + -0.11472 0.08364 -0.70165 + -0.11019 0.09208 -0.70478 + -0.10530 0.09752 -0.70747 + -0.10020 0.10041 -0.70975 + -0.09501 0.10116 -0.71163 + -0.08983 0.10017 -0.71313 + -0.08983 0.10002 -0.71313 + -0.08474 0.09767 -0.71428 + -0.07980 0.09431 -0.71509 + -0.07505 0.09029 -0.71558 + -0.07052 0.08591 -0.71577 + -0.06622 0.08148 -0.71569 + -0.06622 0.08137 -0.71569 + -0.06214 0.07716 -0.71534 + -0.05827 0.07343 -0.71475 + -0.05458 0.07043 -0.71392 + -0.05101 0.06840 -0.71288 + -0.04752 0.06754 -0.71163 + -0.04752 0.06746 -0.71163 + -0.04405 0.06798 -0.71020 + -0.04050 0.07007 -0.70859 + -0.03681 0.07389 -0.70682 + -0.03287 0.07961 -0.70491 + -0.02859 0.08736 -0.70286 + -0.02859 0.08731 -0.70286 + -0.02385 0.09723 -0.70070 + -0.01855 0.10941 -0.69845 + -0.01256 0.12396 -0.69612 + -0.00576 0.14092 -0.69375 + 0.00198 0.16033 -0.69135 + 0.00198 0.16033 -0.69135 + 0.00931 0.13338 -0.68903 0.01536 0.10873 -0.68674 - 0.02023 0.08634 -0.68451 - 0.02403 0.06615 -0.68235 - 0.02688 0.04808 -0.68028 - 0.02688 0.04812 -0.68028 - 0.02887 0.03206 -0.67831 + 0.02022 0.08635 -0.68451 + 0.02403 0.06616 -0.68235 + 0.02687 0.04808 -0.68028 + 0.02687 0.04812 -0.68028 + 0.02887 0.03207 -0.67831 0.03011 0.01792 -0.67646 - 0.03069 0.00557 -0.67471 + 0.03069 0.00558 -0.67471 0.03070 -0.00508 -0.67308 0.03021 -0.01416 -0.67156 0.03021 -0.01411 -0.67156 0.02931 -0.02173 -0.67016 0.02806 -0.02800 -0.66886 - 0.02653 -0.03303 -0.66767 + 0.02653 -0.03303 -0.66768 0.02478 -0.03692 -0.66659 0.02286 -0.03977 -0.66559 - 0.02286 -0.03974 -0.66559 + 0.02286 -0.03973 -0.66559 0.02082 -0.04163 -0.66468 - 0.01871 -0.04266 -0.66385 + 0.01871 -0.04265 -0.66385 0.01657 -0.04288 -0.66308 0.01443 -0.04238 -0.66238 0.01234 -0.04120 -0.66174 @@ -1552,7 +1659,7 @@ Displacements 0.00663 -0.03408 -0.66005 0.00501 -0.03064 -0.65955 0.00358 -0.02670 -0.65906 - 0.00358 -0.02669 -0.65906 + 0.00358 -0.02670 -0.65906 0.00235 -0.02228 -0.65859 0.00136 -0.01740 -0.65812 0.00062 -0.01205 -0.65767 @@ -1619,7 +1726,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -1643,124 +1750,112 @@ Status character 0.00000 0.00000 55.98116 8.08685 1 0 A 0.00000 0.00000 58.64518 8.64243 1 0 A 0.00000 0.00000 58.64518 8.64243 1 0 A - 0.00000 0.29430 59.37246 8.79411 1 0 A 0.00000 0.58860 60.09974 8.94578 1 0 A - 0.00000 0.88290 60.82702 9.09746 1 0 A 0.00000 1.17720 61.55430 9.24913 1 0 A - 0.00000 1.47150 62.28158 9.40081 1 0 A - 0.00000 1.47150 62.28158 9.40081 1 0 A 0.00000 1.76580 63.00886 9.55248 1 0 A - 0.00000 2.06010 63.73614 9.70415 1 0 A 0.00000 2.35440 64.46342 9.85583 1 0 A - 0.09010 2.64870 65.19070 10.00750 1 0 A 0.18630 2.94300 65.91798 10.15918 1 0 A 0.18630 2.94300 65.91798 10.15918 1 0 A - 0.28250 3.23730 66.64526 10.31085 1 0 A 0.37871 3.53160 67.37254 10.46253 1 0 A - 0.47491 3.82590 68.09982 10.61420 1 0 A 0.57111 4.12020 68.82710 10.76588 1 0 A - 0.66731 4.41450 69.55438 10.91755 1 0 A - 0.66731 4.41450 69.55438 10.91755 1 0 A 0.76352 4.70880 70.28166 11.06923 1 0 A - 0.85972 5.00310 71.00894 11.22090 1 0 A 0.95592 5.29740 71.73622 11.37258 1 0 A - 1.05212 5.59170 72.46350 11.52425 1 0 A 1.14833 5.88600 73.19078 11.67593 1 0 A 1.14833 5.88600 73.19078 11.67593 1 0 A 1.31935 6.40920 74.48372 11.94557 1 0 A 1.49038 6.93240 75.77666 12.21521 1 0 A - 1.83900 7.45560 77.06960 12.48486 110 0 - - 2.99110 7.97880 78.36255 12.75450 110 0 - - 4.03810 8.50200 79.65549 13.02414 110 0 - - 4.03810 8.50200 79.65549 13.02414 110 0 - - 4.98542 9.02520 80.94843 13.29379 110 0 - - 5.84009 9.54840 82.24137 13.56343 110 0 - - 6.60883 10.07160 83.53431 13.83308 110 0 - - 7.29840 10.59480 84.82726 14.10272 110 0 - - 7.91551 11.11800 86.12020 14.37236 110 0 - - 7.91551 11.11800 86.12020 14.37236 110 0 - - 8.46711 11.64120 87.41314 14.64201 110 0 - - 8.95972 12.16440 88.70608 14.91165 110 0 - - 9.39939 12.68760 89.99902 15.18130 110 0 - - 9.79220 13.21080 91.29196 15.45094 110 0 - - 10.14421 13.73400 92.58491 15.72058 110 0 - - 10.14421 13.73400 92.58491 15.72058 110 0 - - 10.46127 14.25720 93.87785 15.99023 110 0 - - 10.74801 14.78040 95.17079 16.25987 110 0 - - 11.00872 15.30360 96.46373 16.52952 110 0 - - 11.24766 15.82680 97.75667 16.79916 110 0 - - 11.46911 16.35000 99.04961 17.06880 110 0 - - 11.46911 16.35000 99.04961 17.06880 110 0 - - 11.67699 16.87320 100.34256 17.33845 110 0 - + 1.83722 7.45560 77.06960 12.48486 110 0 - + 2.98947 7.97880 78.36255 12.75450 110 0 - + 4.03661 8.50200 79.65549 13.02414 110 0 - + 4.03661 8.50200 79.65549 13.02414 110 0 - + 4.98407 9.02520 80.94843 13.29379 110 0 - + 5.83887 9.54840 82.24137 13.56343 110 0 - + 6.60775 10.07160 83.53431 13.83308 110 0 - + 7.29744 10.59480 84.82726 14.10272 110 0 - + 7.91467 11.11800 86.12020 14.37236 110 0 - + 7.91467 11.11800 86.12020 14.37236 110 0 - + 8.46639 11.64120 87.41314 14.64201 110 0 - + 8.95910 12.16440 88.70608 14.91165 110 0 - + 9.39886 12.68760 89.99902 15.18130 110 0 - + 9.79176 13.21080 91.29196 15.45094 110 0 - + 10.14385 13.73400 92.58491 15.72058 110 0 - + 10.14385 13.73400 92.58491 15.72058 110 0 - + 10.46098 14.25720 93.87785 15.99023 110 0 - + 10.74779 14.78040 95.17079 16.25987 110 0 - + 11.00855 15.30360 96.46373 16.52952 110 0 - + 11.24755 15.82680 97.75667 16.79916 110 0 - + 11.46904 16.35000 99.04961 17.06880 110 0 - + 11.46904 16.35000 99.04961 17.06880 110 0 - + 11.67696 16.87320 100.34256 17.33845 110 0 - 11.87401 17.39640 101.63550 17.60809 110 0 - - 12.06264 17.91960 102.92844 17.87773 110 0 - - 12.24534 18.44280 104.22138 18.14738 110 0 - - 12.42457 18.96600 105.51432 18.41702 110 0 - - 12.42457 18.96600 105.51432 18.41702 110 0 - - 12.60248 19.48920 106.80727 18.68667 110 0 - - 12.78032 20.01240 108.10021 18.95631 110 0 - - 12.95919 20.53560 109.39315 19.22595 110 0 - - 13.14019 21.05880 110.68609 19.49560 110 0 - - 13.32444 21.58200 111.97903 19.76524 110 0 - - 13.32444 21.58200 111.97903 19.76524 110 0 - - 13.50600 22.08651 113.22580 20.02526 110 0 - - 13.69170 22.59103 114.47256 20.28527 110 0 - - 13.88179 23.09554 115.71933 20.54528 110 0 - - 14.07653 23.60006 116.96609 20.80530 110 0 - - 14.27619 24.10457 118.21286 21.06531 110 0 - - 14.27619 24.10457 118.21286 21.06531 110 0 - - 14.48092 24.60909 119.45962 21.32532 110 0 - - 14.69064 25.11360 120.70639 21.58534 110 0 - - 14.90524 25.61811 121.95315 21.84535 110 0 - - 15.12466 26.12263 123.19992 22.10537 110 0 - - 15.34880 26.62714 124.44669 22.36538 110 0 - - 15.34880 26.62714 124.44669 22.36538 110 0 - - 15.57751 27.13166 125.69345 22.62539 110 0 - - 15.81060 27.63617 126.94022 22.88541 110 0 - - 16.04786 28.14069 128.18698 23.14542 110 0 - - 16.28908 28.64520 129.43375 23.40543 110 0 - - 16.53408 29.14971 130.68051 23.66545 110 0 - - 16.53408 29.14971 130.68051 23.66545 110 0 - - 16.78264 29.65423 131.92728 23.92546 110 0 - - 17.03457 30.15874 133.17404 24.18548 110 0 - - 17.28966 30.66326 134.42081 24.44549 110 0 - - 17.54774 31.16777 135.66757 24.70550 110 0 - - 17.80862 31.67229 136.91434 24.96552 110 0 - - 17.80862 31.67229 136.91434 24.96552 110 0 - - 18.07211 32.17680 138.16110 25.22553 110 0 - - 18.33807 32.68131 139.40787 25.48554 110 0 - - 18.60635 33.18583 140.65463 25.74556 110 0 - - 18.87679 33.69034 141.90140 26.00557 110 0 - - 19.14926 34.19486 143.14816 26.26559 110 0 - - 19.14926 34.19486 143.14816 26.26559 110 0 - + 12.06267 17.91960 102.92844 17.87773 110 0 - + 12.24539 18.44280 104.22138 18.14738 110 0 - + 12.42464 18.96600 105.51432 18.41702 110 0 - + 12.42464 18.96600 105.51432 18.41702 110 0 - + 12.60256 19.48920 106.80727 18.68667 110 0 - + 12.78041 20.01240 108.10021 18.95631 110 0 - + 12.95929 20.53560 109.39315 19.22595 110 0 - + 13.14030 21.05880 110.68609 19.49560 110 0 - + 13.32454 21.58200 111.97903 19.76524 110 0 - + 13.32454 21.58200 111.97903 19.76524 110 0 - + 13.50611 22.08651 113.22580 20.02526 110 0 - + 13.69180 22.59103 114.47256 20.28527 110 0 - + 13.88189 23.09554 115.71933 20.54528 110 0 - + 14.07664 23.60006 116.96609 20.80530 110 0 - + 14.27629 24.10457 118.21286 21.06531 110 0 - + 14.27629 24.10457 118.21286 21.06531 110 0 - + 14.48101 24.60909 119.45962 21.32532 110 0 - + 14.69072 25.11360 120.70639 21.58534 110 0 - + 14.90533 25.61811 121.95315 21.84535 110 0 - + 15.12474 26.12263 123.19992 22.10537 110 0 - + 15.34887 26.62714 124.44669 22.36538 110 0 - + 15.34887 26.62714 124.44669 22.36538 110 0 - + 15.57758 27.13166 125.69345 22.62539 110 0 - + 15.81066 27.63617 126.94022 22.88541 110 0 - + 16.04791 28.14069 128.18698 23.14542 110 0 - + 16.28913 28.64520 129.43375 23.40543 110 0 - + 16.53412 29.14971 130.68051 23.66545 110 0 - + 16.53412 29.14971 130.68051 23.66545 110 0 - + 16.78268 29.65423 131.92728 23.92546 110 0 - + 17.03460 30.15874 133.17404 24.18548 110 0 - + 17.28969 30.66326 134.42081 24.44549 110 0 - + 17.54776 31.16777 135.66757 24.70550 110 0 - + 17.80864 31.67229 136.91434 24.96552 110 0 - + 17.80864 31.67229 136.91434 24.96552 110 0 - + 18.07213 32.17680 138.16110 25.22553 110 0 - + 18.33808 32.68131 139.40787 25.48554 110 0 - + 18.60636 33.18583 140.65463 25.74556 110 0 - + 18.87680 33.69034 141.90140 26.00557 110 0 - + 19.14927 34.19486 143.14816 26.26559 110 0 - + 19.14927 34.19486 143.14816 26.26559 110 0 - 19.42362 34.69937 144.39493 26.52560 110 0 - - 19.69972 35.20389 145.64170 26.78561 110 0 - + 19.69973 35.20389 145.64170 26.78561 110 0 - 19.97743 35.70840 146.88846 27.04563 110 0 - 20.25659 36.21291 148.13523 27.30564 110 0 - - 20.53705 36.71743 149.38199 27.56565 110 0 - - 20.53705 36.71743 149.38199 27.56565 110 0 - + 20.53704 36.71743 149.38199 27.56565 110 0 - + 20.53704 36.71743 149.38199 27.56565 110 0 - 20.81866 37.22194 150.62876 27.82567 110 0 - 21.10123 37.72646 151.87552 28.08568 110 0 - - 21.38451 38.23097 153.12229 28.34570 110 0 - - 21.66826 38.73549 154.36905 28.60571 110 0 - + 21.38450 38.23097 153.12229 28.34570 110 0 - + 21.66825 38.73549 154.36905 28.60571 110 0 - 21.95223 39.24000 155.61582 28.86572 110 0 - 18.61791 39.24000 192.44471 25.53140 110 0 - 18.91932 39.73050 194.54160 25.80960 110 0 - - 19.22038 40.22100 196.63849 26.08779 110 0 - - 19.52090 40.71150 198.73538 26.36598 110 0 - - 19.82070 41.20200 200.83227 26.64417 110 0 - - 20.11959 41.69250 202.92916 26.92236 110 0 - - 20.11959 41.69250 202.92916 26.92236 110 0 - + 19.22037 40.22100 196.63849 26.08779 110 0 - + 19.52089 40.71150 198.73538 26.36598 110 0 - + 19.82069 41.20200 200.83227 26.64417 110 0 - + 20.11958 41.69250 202.92916 26.92236 110 0 - + 20.11958 41.69250 202.92916 26.92236 110 0 - 20.41743 42.18300 205.02605 27.20056 110 0 - - 20.71420 42.67350 207.12294 27.47875 110 0 - + 20.71419 42.67350 207.12294 27.47875 110 0 - 21.00985 43.16400 209.21983 27.75694 110 0 - 21.30437 43.65450 211.31672 28.03513 110 0 - 21.59774 44.14500 213.41361 28.31332 110 0 - 21.59774 44.14500 213.41361 28.31332 110 0 - - 21.88996 44.63550 215.51050 28.59151 110 0 - + 21.88995 44.63550 215.51050 28.59151 110 0 - 22.18107 45.12600 217.60739 28.86971 110 0 - 22.47115 45.61650 219.70428 29.14790 110 0 - - 22.76024 46.10700 221.80117 29.42609 110 0 - + 22.76023 46.10700 221.80117 29.42609 110 0 - 23.04839 46.59750 223.89806 29.70428 110 0 - 23.04839 46.59750 223.89806 29.70428 110 0 - 23.33568 47.08800 225.99495 29.98247 110 0 - @@ -1779,7 +1874,7 @@ Status character 26.46134 52.48350 249.06074 33.04258 110 0 - 26.74411 52.97400 251.15763 33.32078 110 0 - 27.02685 53.46450 253.25452 33.59897 110 0 - - 27.30958 53.95500 255.35141 33.87716 110 0 - + 27.30959 53.95500 255.35141 33.87716 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -1870,7 +1965,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -1899,93 +1994,81 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 17.20475 0.00000 17.20475 0.00000 202 100 P - 18.80316 0.00000 18.80316 0.33335 202 100 P 20.40158 0.00000 20.40158 0.66670 202 100 P - 20.96037 0.00000 21.99999 1.00005 110 95 - - 20.32375 0.00000 23.59841 1.33340 110 86 - - 19.72445 0.00000 25.19683 1.66675 110 78 - - 19.72445 0.00000 25.19683 1.66675 110 78 - - 19.16319 0.00000 26.79524 2.00011 110 72 - - 18.64013 0.00000 28.39366 2.33346 110 66 - - 18.15531 0.00000 29.99208 2.66681 110 61 - - 17.70879 0.00000 31.59050 3.00016 110 56 - - 17.30060 0.00000 33.18891 3.33351 110 52 - - 17.30060 0.00000 33.18891 3.33351 110 52 - - 16.34653 0.52320 34.48185 3.60315 110 47 - - 15.51054 1.04640 35.77480 3.87280 110 43 - - 14.78830 1.56960 37.06774 4.14244 110 40 - - 14.17549 2.09280 38.36068 4.41208 110 37 - - 13.66777 2.61600 39.65362 4.68173 110 34 - - 13.66777 2.61600 39.65362 4.68173 110 34 - - 13.25974 3.13920 40.94656 4.95137 110 32 - - 12.94436 3.66240 42.23951 5.22102 110 31 - - 12.71490 4.18560 43.53245 5.49066 110 29 - - 12.56463 4.70880 44.82539 5.76030 110 28 - - 12.48680 5.23200 46.11833 6.02995 110 27 - - 12.48680 5.23200 46.11833 6.02995 110 27 - - 12.47449 5.75520 47.41127 6.29959 110 26 - - 12.52117 6.27840 48.70421 6.56924 110 26 - - 12.62079 6.80160 49.99716 6.83888 110 25 - - 12.76726 7.32480 51.29010 7.10852 110 25 - - 12.95454 7.84800 52.58304 7.37817 110 25 - - 12.95454 7.84800 52.58304 7.37817 110 25 - - 13.17677 8.37120 53.87598 7.64781 110 24 - - 13.42931 8.89440 55.16892 7.91746 110 24 - - 13.70790 9.41760 56.46186 8.18710 110 24 - - 14.00824 9.94080 57.75481 8.45674 110 24 - - 14.32608 10.46400 59.04775 8.72639 110 24 - - 14.32608 10.46400 59.04775 8.72639 110 24 - - 14.65749 10.98720 60.34069 8.99603 110 24 - + 20.33038 0.00000 23.59841 1.33340 110 86 - + 19.16967 0.00000 26.79524 2.00011 110 72 - + 18.15920 0.00000 29.99208 2.66681 110 61 - + 17.30277 0.00000 33.18891 3.33351 110 52 - + 17.30277 0.00000 33.18891 3.33351 110 52 - + 16.34858 0.52320 34.48185 3.60315 110 47 - + 15.51246 1.04640 35.77480 3.87280 110 43 - + 14.79008 1.56960 37.06774 4.14244 110 40 - + 14.17712 2.09280 38.36068 4.41208 110 37 - + 13.66927 2.61600 39.65362 4.68173 110 34 - + 13.66927 2.61600 39.65362 4.68173 110 34 - + 13.26109 3.13920 40.94656 4.95137 110 32 - + 12.94558 3.66240 42.23951 5.22102 110 31 - + 12.71599 4.18560 43.53245 5.49066 110 29 - + 12.56559 4.70880 44.82539 5.76030 110 28 - + 12.48764 5.23200 46.11833 6.02995 110 27 - + 12.48764 5.23200 46.11833 6.02995 110 27 - + 12.47521 5.75520 47.41127 6.29959 110 26 - + 12.52179 6.27840 48.70421 6.56924 110 26 - + 12.62131 6.80160 49.99716 6.83888 110 25 - + 12.76770 7.32480 51.29010 7.10852 110 25 - + 12.95490 7.84800 52.58304 7.37817 110 25 - + 12.95490 7.84800 52.58304 7.37817 110 25 - + 13.17706 8.37120 53.87598 7.64781 110 24 - + 13.42954 8.89440 55.16892 7.91746 110 24 - + 13.70806 9.41760 56.46186 8.18710 110 24 - + 14.00836 9.94080 57.75481 8.45674 110 24 - + 14.32615 10.46400 59.04775 8.72639 110 24 - + 14.32615 10.46400 59.04775 8.72639 110 24 - + 14.65752 10.98720 60.34069 8.99603 110 24 - 14.99975 11.51040 61.63363 9.26567 110 24 - - 15.35041 12.03360 62.92657 9.53532 110 24 - - 15.70700 12.55680 64.21952 9.80496 110 24 - - 16.06706 13.08000 65.51246 10.07461 110 25 - - 16.06706 13.08000 65.51246 10.07461 110 25 - - 16.42843 13.60320 66.80540 10.34425 110 25 - - 16.78988 14.12640 68.09834 10.61389 110 25 - - 17.15030 14.64960 69.39128 10.88354 110 25 - - 17.50859 15.17280 70.68422 11.15318 110 25 - - 17.86363 15.69600 71.97717 11.42283 110 25 - - 17.86363 15.69600 71.97717 11.42283 110 25 - - 18.20209 16.20051 73.22393 11.68284 110 25 - - 18.53643 16.70503 74.47070 11.94285 110 25 - - 18.86636 17.20954 75.71746 12.20287 110 25 - - 19.19164 17.71406 76.96423 12.46288 110 25 - - 19.51201 18.21857 78.21099 12.72289 110 25 - - 19.51201 18.21857 78.21099 12.72289 110 25 - - 19.82731 18.72309 79.45776 12.98291 110 25 - - 20.13762 19.22760 80.70452 13.24292 110 25 - - 20.44304 19.73211 81.95129 13.50294 110 25 - - 20.74365 20.23663 83.19805 13.76295 110 25 - - 21.03955 20.74114 84.44482 14.02296 110 25 - - 21.03955 20.74114 84.44482 14.02296 110 25 - - 21.33086 21.24566 85.69158 14.28298 110 25 - - 21.61780 21.75017 86.93835 14.54299 110 25 - - 21.90057 22.25469 88.18511 14.80300 110 25 - - 22.17937 22.75920 89.43188 15.06302 110 25 - - 22.45440 23.26371 90.67865 15.32303 110 25 - - 22.45440 23.26371 90.67865 15.32303 110 25 - - 22.72586 23.76823 91.92541 15.58305 110 25 - - 22.99397 24.27274 93.17218 15.84306 110 25 - - 23.25890 24.77726 94.41894 16.10307 110 25 - - 23.52085 25.28177 95.66571 16.36309 110 25 - - 23.78000 25.78629 96.91247 16.62310 110 25 - - 23.78000 25.78629 96.91247 16.62310 110 25 - - 24.03653 26.29080 98.15924 16.88311 110 24 - - 24.29060 26.79531 99.40600 17.14313 110 24 - - 24.54235 27.29983 100.65277 17.40314 110 24 - - 24.79193 27.80434 101.89953 17.66316 110 24 - + 15.35039 12.03360 62.92657 9.53532 110 24 - + 15.70696 12.55680 64.21952 9.80496 110 24 - + 16.06699 13.08000 65.51246 10.07461 110 25 - + 16.06699 13.08000 65.51246 10.07461 110 25 - + 16.42835 13.60320 66.80540 10.34425 110 25 - + 16.78979 14.12640 68.09834 10.61389 110 25 - + 17.15020 14.64960 69.39128 10.88354 110 25 - + 17.50848 15.17280 70.68422 11.15318 110 25 - + 17.86352 15.69600 71.97717 11.42283 110 25 - + 17.86352 15.69600 71.97717 11.42283 110 25 - + 18.20199 16.20051 73.22393 11.68284 110 25 - + 18.53632 16.70503 74.47070 11.94285 110 25 - + 18.86626 17.20954 75.71746 12.20287 110 25 - + 19.19154 17.71406 76.96423 12.46288 110 25 - + 19.51191 18.21857 78.21099 12.72289 110 25 - + 19.51191 18.21857 78.21099 12.72289 110 25 - + 19.82722 18.72309 79.45776 12.98291 110 25 - + 20.13754 19.22760 80.70452 13.24292 110 25 - + 20.44296 19.73211 81.95129 13.50294 110 25 - + 20.74358 20.23663 83.19805 13.76295 110 25 - + 21.03948 20.74114 84.44482 14.02296 110 25 - + 21.03948 20.74114 84.44482 14.02296 110 25 - + 21.33079 21.24566 85.69158 14.28298 110 25 - + 21.61774 21.75017 86.93835 14.54299 110 25 - + 21.90052 22.25469 88.18511 14.80300 110 25 - + 22.17932 22.75920 89.43188 15.06302 110 25 - + 22.45436 23.26371 90.67865 15.32303 110 25 - + 22.45436 23.26371 90.67865 15.32303 110 25 - + 22.72583 23.76823 91.92541 15.58305 110 25 - + 22.99394 24.27274 93.17218 15.84306 110 25 - + 23.25887 24.77726 94.41894 16.10307 110 25 - + 23.52083 25.28177 95.66571 16.36309 110 25 - + 23.77998 25.78629 96.91247 16.62310 110 25 - + 23.77998 25.78629 96.91247 16.62310 110 25 - + 24.03652 26.29080 98.15924 16.88311 110 24 - + 24.29059 26.79531 99.40600 17.14313 110 24 - + 24.54234 27.29983 100.65277 17.40314 110 24 - + 24.79192 27.80434 101.89953 17.66316 110 24 - 25.03949 28.30886 103.14630 17.92317 110 24 - 25.03949 28.30886 103.14630 17.92317 110 24 - 25.28516 28.81337 104.39306 18.18318 110 24 - - 25.52909 29.31789 105.63983 18.44320 110 24 - + 25.52908 29.31789 105.63983 18.44320 110 24 - 25.77141 29.82240 106.88659 18.70321 110 24 - 26.01228 30.32691 108.13336 18.96322 110 24 - 26.25185 30.83143 109.38012 19.22324 110 24 - @@ -1995,14 +2078,14 @@ Status character 26.96447 32.34497 113.12042 20.00328 110 24 - 27.20075 32.84949 114.36719 20.26329 110 24 - 27.43680 33.35400 115.61395 20.52331 110 24 - - 25.06612 33.35400 136.82671 18.15263 110 18 - + 25.06613 33.35400 136.82671 18.15263 110 18 - 25.32110 33.84450 138.92360 18.43082 110 18 - 25.57643 34.33500 141.02049 18.70902 110 18 - 25.83229 34.82550 143.11738 18.98721 110 18 - - 26.08887 35.31600 145.21427 19.26540 110 18 - - 26.34636 35.80650 147.31116 19.54359 110 18 - - 26.34636 35.80650 147.31116 19.54359 110 18 - - 26.60490 36.29700 149.40805 19.82178 110 18 - + 26.08888 35.31600 145.21427 19.26540 110 18 - + 26.34637 35.80650 147.31116 19.54359 110 18 - + 26.34637 35.80650 147.31116 19.54359 110 18 - + 26.60491 36.29700 149.40805 19.82178 110 18 - 26.86453 36.78750 151.50494 20.09997 110 18 - 27.12526 37.27800 153.60183 20.37817 110 18 - 27.38712 37.76850 155.69872 20.65636 110 18 - @@ -2022,13 +2105,13 @@ Status character 30.33386 43.16400 178.76451 23.71647 110 17 - 30.60605 43.65450 180.86140 23.99466 110 17 - 30.87863 44.14500 182.95829 24.27285 110 17 - - 31.15153 44.63550 185.05518 24.55104 110 17 - + 31.15154 44.63550 185.05518 24.55104 110 17 - 31.42469 45.12600 187.15207 24.82924 110 17 - 31.69803 45.61650 189.24896 25.10743 110 17 - 31.69803 45.61650 189.24896 25.10743 110 17 - 31.97150 46.10700 191.34585 25.38562 110 17 - 32.24505 46.59750 193.44274 25.66381 110 17 - - 32.51867 47.08800 195.53963 25.94200 110 17 - + 32.51866 47.08800 195.53963 25.94200 110 17 - 32.79231 47.57850 197.63652 26.22020 110 17 - 33.06596 48.06900 199.73341 26.49839 110 17 - [END OF DATA] @@ -2043,7 +2126,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 70.151 'Clay, sl san, moderate' + 4.00 70.137 'Clay, sl san, moderate' -4.00 43.517 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2057,7 +2140,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 18.80 'Clay, sl san, moderate' + 4.00 18.79 'Clay, sl san, moderate' -4.00 22.17 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2066,7 +2149,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -2084,28 +2167,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -2255,15 +2326,15 @@ Name 25.63 : Percentage mobilized resistance left 7.93 : Percentage mobilized resistance right 53.42 : Effective left - 54.69 : Effective right + 54.70 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right 208.43 : Max effective resistance left 689.56 : Max effective resistance right -949.80 : Max moment left -2498.16 : Max moment right - -230.57 : Max mobilized moment left - -232.73 : Max mobilized moment right + -230.56 : Max mobilized moment left + -232.74 : Max mobilized moment right 21.44 : Vertical force left 21.74 : Vertical force right 24.3 : Max mobilized moment percentage left @@ -2290,163 +2361,151 @@ Name [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00008 8.69316 -6.00000 - 0.43474 8.69316 -5.79453 - 0.86940 8.69316 -5.59069 - 1.30406 8.69316 -5.39012 - 1.73871 8.69316 -5.19443 - 2.17337 8.69316 -5.00526 - 2.17336 -1.26890 -5.00526 - 2.10992 -1.26890 -4.82394 - 2.04647 -1.26890 -4.65052 - 1.98303 -1.26890 -4.48478 - 1.91958 -1.26890 -4.32647 - 1.85614 -1.26890 -4.17537 - 1.85614 -1.26890 -4.17537 - 1.81807 -1.26890 -4.08806 - 1.78000 -1.26890 -4.00321 - 1.74194 -1.26890 -3.92076 - 1.70387 -1.26890 -3.84066 - 1.66580 -1.26890 -3.76286 - 1.66580 -1.26890 -3.76286 - 1.62774 -1.26890 -3.68731 - 1.58967 -1.26890 -3.61396 - 1.55160 -1.26890 -3.54275 - 1.51353 -1.26890 -3.47364 - 1.47547 -1.26890 -3.40657 - 1.47556 -1.27137 -3.40657 - 1.43742 -1.27137 -3.34149 - 1.39928 -1.27137 -3.27836 - 1.36114 -1.27137 -3.21711 - 1.32299 -1.27137 -3.15770 - 1.28485 -1.27137 -3.10008 - 1.28476 -1.27346 -3.10008 - 1.24655 -1.27346 -3.04419 - 1.20835 -1.27346 -2.98998 - 1.17015 -1.27346 -2.93741 - 1.13194 -1.27346 -2.88641 - 1.09374 -1.27346 -2.83695 - 1.09396 -1.27611 -2.83695 - 1.02590 -1.27611 -2.75262 - 0.95784 -1.27611 -2.67267 - 0.88979 -1.27611 -2.59680 - 0.82173 -1.27611 -2.52474 - 0.75369 -1.27489 -2.45618 - 0.75340 -1.27518 -2.45618 - 0.68554 -1.26818 -2.39083 - 0.61829 -1.25206 -2.32840 - 0.55215 -1.22681 -2.26862 - 0.48759 -1.19245 -2.21120 - 0.42511 -1.14896 -2.15585 - 0.42514 -1.14604 -2.15585 - 0.36538 -1.09343 -2.10231 - 0.30867 -1.03170 -2.05033 - 0.25549 -0.96085 -1.99968 - 0.20634 -0.88088 -1.95013 - 0.16170 -0.79179 -1.90146 - 0.16172 -0.79018 -1.90146 - 0.12215 -0.69197 -1.85346 - 0.08807 -0.58463 -1.80597 - 0.05995 -0.46818 -1.75889 - 0.03829 -0.34260 -1.71208 - 0.02357 -0.20790 -1.66544 - 0.02358 -0.20725 -1.66544 - 0.01633 -0.06343 -1.61886 - 0.01698 0.08952 -1.57234 - 0.02604 0.25158 -1.52593 - 0.04398 0.42277 -1.47966 - 0.07129 0.60307 -1.43358 - 0.07131 0.60304 -1.43358 - 0.10848 0.79247 -1.38775 - 0.15600 0.99102 -1.34238 - 0.21436 1.19869 -1.29772 - 0.28403 1.41549 -1.25402 - 0.36562 1.64785 -1.21152 - 0.36550 1.64382 -1.21152 - 0.44040 1.27575 -1.17203 - 0.49740 0.94741 -1.13428 - 0.53850 0.65690 -1.09845 - 0.56558 0.40218 -1.06471 - 0.58044 0.18101 -1.03321 - 0.58044 0.18197 -1.03321 - 0.58478 -0.00802 -1.00408 - 0.58011 -0.16924 -0.97726 - 0.56783 -0.30404 -0.95272 - 0.54925 -0.41475 -0.93041 - 0.52554 -0.50363 -0.91028 - 0.52555 -0.50274 -0.91028 - 0.49783 -0.57200 -0.89226 - 0.46701 -0.62374 -0.87621 - 0.43394 -0.65992 -0.86200 - 0.39937 -0.68237 -0.84952 - 0.36396 -0.69279 -0.83862 - 0.36397 -0.69217 -0.83862 - 0.32833 -0.69213 -0.82916 - 0.29293 -0.68303 -0.82101 - 0.25821 -0.66614 -0.81402 - 0.22453 -0.64259 -0.80806 - 0.19221 -0.61338 -0.80299 - 0.19221 -0.61304 -0.80299 - 0.16154 -0.57900 -0.79868 - 0.13273 -0.54085 -0.79500 - 0.10597 -0.49919 -0.79186 - 0.08144 -0.45452 -0.78915 - 0.05927 -0.40723 -0.78676 - 0.05927 -0.40712 -0.78676 - 0.03960 -0.35749 -0.78459 - 0.02254 -0.30571 -0.78258 - 0.00819 -0.25191 -0.78067 - -0.00334 -0.19617 -0.77881 - -0.01196 -0.13850 -0.77692 - -0.01195 -0.13851 -0.77692 - -0.01755 -0.07887 -0.77498 - -0.02003 -0.01719 -0.77296 - -0.01929 0.04659 -0.77088 - -0.01520 0.11255 -0.76873 - -0.00767 0.18075 -0.76652 - -0.00767 0.18073 -0.76652 - 0.00066 0.15291 -0.76434 - 0.00766 0.12726 -0.76216 - 0.01342 0.10378 -0.76001 - 0.01807 0.08243 -0.75790 - 0.02170 0.06315 -0.75586 - 0.02170 0.06319 -0.75586 - 0.02442 0.04591 -0.75390 - 0.02632 0.03054 -0.75204 - 0.02750 0.01699 -0.75027 - 0.02805 0.00515 -0.74861 - 0.02804 -0.00508 -0.74705 - 0.02804 -0.00503 -0.74705 - 0.02757 -0.01375 -0.74560 - 0.02669 -0.02107 -0.74425 - 0.02548 -0.02709 -0.74300 - 0.02400 -0.03190 -0.74184 - 0.02231 -0.03561 -0.74078 - 0.02231 -0.03557 -0.74078 - 0.02046 -0.03825 -0.73979 - 0.01850 -0.03999 -0.73889 - 0.01648 -0.04086 -0.73805 - 0.01443 -0.04092 -0.73728 - 0.01240 -0.04024 -0.73656 - 0.01240 -0.04022 -0.73656 - 0.01042 -0.03884 -0.73589 - 0.00852 -0.03681 -0.73525 - 0.00675 -0.03416 -0.73465 - 0.00512 -0.03092 -0.73408 - 0.00366 -0.02712 -0.73352 - 0.00367 -0.02711 -0.73352 - 0.00242 -0.02275 -0.73298 - 0.00140 -0.01786 -0.73244 - 0.00064 -0.01243 -0.73191 - 0.00016 -0.00648 -0.73139 - 0.00000 0.00000 -0.73086 + 0.00000 8.70088 -6.00000 + 0.43504 8.70088 -5.79416 + 0.87009 8.70088 -5.58995 + 1.30513 8.70088 -5.38900 + 1.74018 8.70088 -5.19295 + 2.17522 8.70088 -5.00343 + 2.17522 -1.26107 -5.00343 + 2.11217 -1.26107 -4.82175 + 2.04911 -1.26107 -4.64799 + 1.98606 -1.26107 -4.48191 + 1.92301 -1.26107 -4.32328 + 1.85995 -1.26107 -4.17187 + 1.85995 -1.26107 -4.17187 + 1.78429 -1.26107 -3.99935 + 1.70862 -1.26107 -3.83647 + 1.63296 -1.26107 -3.68282 + 1.55730 -1.26107 -3.53799 + 1.48163 -1.26107 -3.40156 + 1.48244 -1.27570 -3.40156 + 1.40590 -1.27570 -3.27314 + 1.32936 -1.27570 -3.15231 + 1.25281 -1.27570 -3.03865 + 1.17627 -1.27570 -2.93177 + 1.09973 -1.27570 -2.83123 + 1.09966 -1.28105 -2.83123 + 1.03134 -1.28105 -2.74687 + 0.96302 -1.28105 -2.66690 + 0.89470 -1.28105 -2.59104 + 0.82637 -1.28105 -2.51900 + 0.75807 -1.27983 -2.45049 + 0.75778 -1.28012 -2.45049 + 0.68966 -1.27312 -2.38520 + 0.62215 -1.25700 -2.32286 + 0.55574 -1.23176 -2.26318 + 0.49092 -1.19739 -2.20587 + 0.42818 -1.15391 -2.15066 + 0.42821 -1.15098 -2.15066 + 0.36818 -1.09837 -2.09726 + 0.31121 -1.03664 -2.04543 + 0.25777 -0.96579 -1.99494 + 0.20835 -0.88582 -1.94557 + 0.16344 -0.79673 -1.89709 + 0.16346 -0.79512 -1.89709 + 0.12364 -0.69691 -1.84928 + 0.08929 -0.58957 -1.80199 + 0.06091 -0.47312 -1.75510 + 0.03899 -0.34754 -1.70850 + 0.02400 -0.21284 -1.66207 + 0.02402 -0.21219 -1.66207 + 0.01649 -0.06837 -1.61570 + 0.01689 0.08458 -1.56939 + 0.02568 0.24664 -1.52320 + 0.04336 0.41783 -1.47714 + 0.07041 0.59813 -1.43127 + 0.07043 0.59810 -1.43127 + 0.10733 0.78753 -1.38564 + 0.15459 0.98608 -1.34047 + 0.21268 1.19375 -1.29600 + 0.28209 1.41055 -1.25248 + 0.36342 1.64328 -1.21017 + 0.36330 1.63925 -1.21017 + 0.43800 1.27250 -1.17083 + 0.49487 0.94531 -1.13324 + 0.53588 0.65580 -1.09755 + 0.56293 0.40194 -1.06394 + 0.57780 0.18149 -1.03257 + 0.57779 0.18244 -1.03257 + 0.58218 -0.00694 -1.00354 + 0.57757 -0.16766 -0.97683 + 0.56539 -0.30206 -0.95238 + 0.54691 -0.41246 -0.93015 + 0.52333 -0.50111 -0.91009 + 0.52334 -0.50023 -0.91009 + 0.49576 -0.56933 -0.89213 + 0.46508 -0.62096 -0.87614 + 0.43215 -0.65709 -0.86198 + 0.39773 -0.67954 -0.84953 + 0.36246 -0.69000 -0.83867 + 0.36247 -0.68938 -0.83867 + 0.32697 -0.68941 -0.82924 + 0.29171 -0.68040 -0.82111 + 0.25712 -0.66362 -0.81414 + 0.22357 -0.64021 -0.80819 + 0.19137 -0.61113 -0.80313 + 0.19137 -0.61080 -0.80313 + 0.16081 -0.57690 -0.79882 + 0.13210 -0.53890 -0.79515 + 0.10544 -0.49740 -0.79201 + 0.08099 -0.45288 -0.78930 + 0.05890 -0.40575 -0.78691 + 0.05891 -0.40564 -0.78691 + 0.03931 -0.35615 -0.78474 + 0.02231 -0.30452 -0.78272 + 0.00802 -0.25085 -0.78080 + -0.00346 -0.19524 -0.77893 + -0.01203 -0.13769 -0.77704 + -0.01203 -0.13771 -0.77704 + -0.01759 -0.07818 -0.77509 + -0.02003 -0.01661 -0.77306 + -0.01926 0.04708 -0.77097 + -0.01515 0.11295 -0.76881 + -0.00760 0.18106 -0.76660 + -0.00760 0.18105 -0.76660 + 0.00074 0.15316 -0.76441 + 0.00775 0.12744 -0.76222 + 0.01352 0.10391 -0.76006 + 0.01817 0.08251 -0.75795 + 0.02181 0.06319 -0.75590 + 0.02181 0.06322 -0.75590 + 0.02453 0.04591 -0.75394 + 0.02643 0.03051 -0.75207 + 0.02761 0.01693 -0.75030 + 0.02815 0.00507 -0.74863 + 0.02814 -0.00518 -0.74707 + 0.02814 -0.00513 -0.74707 + 0.02766 -0.01387 -0.74561 + 0.02678 -0.02119 -0.74426 + 0.02556 -0.02722 -0.74300 + 0.02408 -0.03204 -0.74184 + 0.02238 -0.03575 -0.74078 + 0.02238 -0.03571 -0.74078 + 0.02052 -0.03839 -0.73979 + 0.01856 -0.04013 -0.73889 + 0.01652 -0.04099 -0.73805 + 0.01447 -0.04105 -0.73728 + 0.01243 -0.04036 -0.73655 + 0.01243 -0.04034 -0.73655 + 0.01045 -0.03896 -0.73588 + 0.00855 -0.03692 -0.73525 + 0.00677 -0.03426 -0.73464 + 0.00513 -0.03101 -0.73407 + 0.00367 -0.02719 -0.73351 + 0.00367 -0.02718 -0.73351 + 0.00242 -0.02281 -0.73296 + 0.00140 -0.01791 -0.73243 + 0.00064 -0.01246 -0.73190 + 0.00016 -0.00650 -0.73137 + 0.00000 0.00000 -0.73085 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2508,7 +2567,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2519,7 +2578,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 17.20475 0.00000 110 0 - + 0.00000 0.00000 17.20475 0.00000 1 0 A 0.00000 0.00000 19.86877 0.55558 1 0 A 0.00000 0.00000 22.53280 1.11117 1 0 A 0.00000 0.00000 25.19683 1.66675 1 0 A @@ -2532,28 +2591,16 @@ Status character 0.00000 0.00000 41.18100 5.00026 1 0 A 0.00000 0.00000 43.84503 5.55585 1 0 A 0.00000 0.00000 43.84503 5.55585 1 0 A - 0.00000 0.29430 44.57231 5.70752 1 0 A 0.00000 0.58860 45.29959 5.85920 1 0 A - 0.00000 0.88290 46.02687 6.01087 1 0 A 0.00000 1.17720 46.75415 6.16255 1 0 A - 0.00000 1.47150 47.48142 6.31422 1 0 A - 0.00000 1.47150 47.48142 6.31422 1 0 A 0.00000 1.76580 48.20870 6.46590 1 0 A - 0.00000 2.06010 48.93598 6.61757 1 0 A 0.00000 2.35440 49.66326 6.76925 1 0 A - 0.00000 2.64870 50.39054 6.92092 1 0 A 0.00000 2.94300 51.11782 7.07260 1 0 A 0.00000 2.94300 51.11782 7.07260 1 0 A - 0.00000 3.23730 51.84510 7.22427 1 0 A 0.00000 3.53160 52.57238 7.37595 1 0 A - 0.00000 3.82590 53.29966 7.52762 1 0 A 0.00000 4.12020 54.02694 7.67929 1 0 A - 0.00000 4.41450 54.75422 7.83097 1 0 A - 0.00000 4.41450 54.75422 7.83097 1 0 A 0.00000 4.70880 55.48150 7.98264 1 0 A - 0.00000 5.00310 56.20878 8.13432 1 0 A 0.00000 5.29740 56.93606 8.28599 1 0 A - 0.00000 5.59170 57.66334 8.43767 1 0 A 0.00000 5.88600 58.39062 8.58934 1 0 A 0.00000 5.88600 58.39062 8.58934 1 0 A 0.00000 6.40920 59.68356 8.85899 1 0 A @@ -2590,85 +2637,85 @@ Status character 3.80833 20.01240 93.30005 15.86973 1 0 A 3.97935 20.53560 94.59299 16.13937 1 0 A 4.15038 21.05880 95.88593 16.40902 1 0 A - 4.56343 21.58200 97.17887 16.67866 110 0 - - 4.56343 21.58200 97.17887 16.67866 110 0 - - 5.21840 22.08651 98.42564 16.93867 110 0 - - 5.85587 22.59103 99.67241 17.19869 110 0 - - 6.47418 23.09554 100.91917 17.45870 110 0 - - 7.07164 23.60006 102.16594 17.71871 110 0 - - 7.64659 24.10457 103.41270 17.97873 110 0 - - 7.64659 24.10457 103.41270 17.97873 110 0 - - 8.19797 24.60909 104.65947 18.23874 110 0 - - 8.72614 25.11360 105.90623 18.49876 110 0 - - 9.23157 25.61811 107.15300 18.75877 110 0 - - 9.71471 26.12263 108.39976 19.01878 110 0 - - 10.17601 26.62714 109.64653 19.27880 110 0 - - 10.17601 26.62714 109.64653 19.27880 110 0 - - 10.61625 27.13166 110.89329 19.53881 110 0 - - 11.03674 27.63617 112.14006 19.79882 110 0 - - 11.43879 28.14069 113.38682 20.05884 110 0 - - 11.82367 28.64520 114.63359 20.31885 110 0 - - 12.19270 29.14971 115.88035 20.57887 110 0 - - 12.19270 29.14971 115.88035 20.57887 110 0 - - 12.54726 29.65423 117.12712 20.83888 110 0 - - 12.88881 30.15874 118.37388 21.09889 110 0 - - 13.21870 30.66326 119.62065 21.35891 110 0 - - 13.53832 31.16777 120.86742 21.61892 110 0 - - 13.84903 31.67229 122.11418 21.87893 110 0 - - 13.84903 31.67229 122.11418 21.87893 110 0 - - 14.15218 32.17680 123.36095 22.13895 110 0 - - 14.44894 32.68131 124.60771 22.39896 110 0 - - 14.74035 33.18583 125.85448 22.65898 110 0 - - 15.02749 33.69034 127.10124 22.91899 110 0 - - 15.31139 34.19486 128.34801 23.17900 110 0 - - 15.31139 34.19486 128.34801 23.17900 110 0 - - 15.59307 34.69937 129.59477 23.43902 110 0 - - 15.87318 35.20389 130.84154 23.69903 110 0 - - 16.15230 35.70840 132.08830 23.95904 110 0 - - 16.43100 36.21291 133.33507 24.21906 110 0 - - 16.70983 36.71743 134.58183 24.47907 110 0 - - 16.70983 36.71743 134.58183 24.47907 110 0 - - 16.98929 37.22194 135.82860 24.73908 110 0 - - 17.26946 37.72646 137.07536 24.99910 110 0 - - 17.55031 38.23097 138.32213 25.25911 110 0 - - 17.83180 38.73549 139.56889 25.51913 110 0 - - 18.11390 39.24000 140.81566 25.77914 110 0 - - 15.13612 39.24000 171.86679 22.80136 110 0 - - 15.43613 39.73050 173.96368 23.07955 110 0 - - 15.73612 40.22100 176.06057 23.35774 110 0 - - 16.03586 40.71150 178.15746 23.63593 110 0 - - 16.33513 41.20200 180.25435 23.91412 110 0 - - 16.63373 41.69250 182.35124 24.19232 110 0 - - 16.63373 41.69250 182.35124 24.19232 110 0 - - 16.93146 42.18300 184.44813 24.47051 110 0 - - 17.22829 42.67350 186.54502 24.74870 110 0 - - 17.52414 43.16400 188.64191 25.02689 110 0 - - 17.81899 43.65450 190.73880 25.30508 110 0 - - 18.11278 44.14500 192.83569 25.58328 110 0 - - 18.11278 44.14500 192.83569 25.58328 110 0 - - 18.40550 44.63550 194.93258 25.86147 110 0 - - 18.69719 45.12600 197.02947 26.13966 110 0 - - 18.98788 45.61650 199.12636 26.41785 110 0 - - 19.27763 46.10700 201.22325 26.69604 110 0 - - 19.56648 46.59750 203.32014 26.97423 110 0 - - 19.56648 46.59750 203.32014 26.97423 110 0 - - 19.85448 47.08800 205.41703 27.25243 110 0 - - 20.14172 47.57850 207.51392 27.53062 110 0 - - 20.42826 48.06900 209.61081 27.80881 110 0 - - 20.71419 48.55950 211.70770 28.08700 110 0 - - 20.99957 49.05000 213.80459 28.36519 110 0 - - 20.99957 49.05000 213.80459 28.36519 110 0 - - 21.28450 49.54050 215.90148 28.64339 110 0 - - 21.56903 50.03100 217.99837 28.92158 110 0 - - 21.85324 50.52150 220.09526 29.19977 110 0 - - 22.13719 51.01200 222.19215 29.47796 110 0 - - 22.42095 51.50250 224.28904 29.75615 110 0 - - 22.42095 51.50250 224.28904 29.75615 110 0 - - 22.70458 51.99300 226.38593 30.03434 110 0 - - 22.98812 52.48350 228.48282 30.31254 110 0 - - 23.27160 52.97400 230.57971 30.59073 110 0 - - 23.55504 53.46450 232.67660 30.86892 110 0 - - 23.83848 53.95500 234.77349 31.14711 110 0 - + 4.57700 21.58200 97.17887 16.67866 110 0 - + 4.57700 21.58200 97.17887 16.67866 110 0 - + 5.23035 22.08651 98.42564 16.93867 110 0 - + 5.86629 22.59103 99.67241 17.19869 110 0 - + 6.48317 23.09554 100.91917 17.45870 110 0 - + 7.07931 23.60006 102.16594 17.71871 110 0 - + 7.65304 24.10457 103.41270 17.97873 110 0 - + 7.65304 24.10457 103.41270 17.97873 110 0 - + 8.20330 24.60909 104.65947 18.23874 110 0 - + 8.73047 25.11360 105.90623 18.49876 110 0 - + 9.23499 25.61811 107.15300 18.75877 110 0 - + 9.71731 26.12263 108.39976 19.01878 110 0 - + 10.17790 26.62714 109.64653 19.27880 110 0 - + 10.17790 26.62714 109.64653 19.27880 110 0 - + 10.61751 27.13166 110.89329 19.53881 110 0 - + 11.03745 27.63617 112.14006 19.79882 110 0 - + 11.43902 28.14069 113.38682 20.05884 110 0 - + 11.82350 28.64520 114.63359 20.31885 110 0 - + 12.19219 29.14971 115.88035 20.57887 110 0 - + 12.19219 29.14971 115.88035 20.57887 110 0 - + 12.54647 29.65423 117.12712 20.83888 110 0 - + 12.88779 30.15874 118.37388 21.09889 110 0 - + 13.21752 30.66326 119.62065 21.35891 110 0 - + 13.53700 31.16777 120.86742 21.61892 110 0 - + 13.84761 31.67229 122.11418 21.87893 110 0 - + 13.84761 31.67229 122.11418 21.87893 110 0 - + 14.15071 32.17680 123.36095 22.13895 110 0 - + 14.44743 32.68131 124.60771 22.39896 110 0 - + 14.73884 33.18583 125.85448 22.65898 110 0 - + 15.02599 33.69034 127.10124 22.91899 110 0 - + 15.30993 34.19486 128.34801 23.17900 110 0 - + 15.30993 34.19486 128.34801 23.17900 110 0 - + 15.59165 34.69937 129.59477 23.43902 110 0 - + 15.87182 35.20389 130.84154 23.69903 110 0 - + 16.15101 35.70840 132.08830 23.95904 110 0 - + 16.42978 36.21291 133.33507 24.21906 110 0 - + 16.70869 36.71743 134.58183 24.47907 110 0 - + 16.70869 36.71743 134.58183 24.47907 110 0 - + 16.98823 37.22194 135.82860 24.73908 110 0 - + 17.26848 37.72646 137.07536 24.99910 110 0 - + 17.54941 38.23097 138.32213 25.25911 110 0 - + 17.83098 38.73549 139.56889 25.51913 110 0 - + 18.11316 39.24000 140.81566 25.77914 110 0 - + 15.13538 39.24000 171.86679 22.80136 110 0 - + 15.43547 39.73050 173.96368 23.07955 110 0 - + 15.73552 40.22100 176.06057 23.35774 110 0 - + 16.03533 40.71150 178.15746 23.63593 110 0 - + 16.33467 41.20200 180.25435 23.91412 110 0 - + 16.63333 41.69250 182.35124 24.19232 110 0 - + 16.63333 41.69250 182.35124 24.19232 110 0 - + 16.93112 42.18300 184.44813 24.47051 110 0 - + 17.22799 42.67350 186.54502 24.74870 110 0 - + 17.52390 43.16400 188.64191 25.02689 110 0 - + 17.81879 43.65450 190.73880 25.30508 110 0 - + 18.11262 44.14500 192.83569 25.58328 110 0 - + 18.11262 44.14500 192.83569 25.58328 110 0 - + 18.40538 44.63550 194.93258 25.86147 110 0 - + 18.69710 45.12600 197.02947 26.13966 110 0 - + 18.98782 45.61650 199.12636 26.41785 110 0 - + 19.27760 46.10700 201.22325 26.69604 110 0 - + 19.56647 46.59750 203.32014 26.97423 110 0 - + 19.56647 46.59750 203.32014 26.97423 110 0 - + 19.85449 47.08800 205.41703 27.25243 110 0 - + 20.14174 47.57850 207.51392 27.53062 110 0 - + 20.42830 48.06900 209.61081 27.80881 110 0 - + 20.71425 48.55950 211.70770 28.08700 110 0 - + 20.99964 49.05000 213.80459 28.36519 110 0 - + 20.99964 49.05000 213.80459 28.36519 110 0 - + 21.28458 49.54050 215.90148 28.64339 110 0 - + 21.56912 50.03100 217.99837 28.92158 110 0 - + 21.85334 50.52150 220.09526 29.19977 110 0 - + 22.13730 51.01200 222.19215 29.47796 110 0 - + 22.42107 51.50250 224.28904 29.75615 110 0 - + 22.42107 51.50250 224.28904 29.75615 110 0 - + 22.70471 51.99300 226.38593 30.03434 110 0 - + 22.98826 52.48350 228.48282 30.31254 110 0 - + 23.27175 52.97400 230.57971 30.59073 110 0 - + 23.55520 53.46450 232.67660 30.86892 110 0 - + 23.83865 53.95500 234.77349 31.14711 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2681,7 +2728,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 25.387 'Clay, sl san, moderate' + 4.00 25.390 'Clay, sl san, moderate' -4.00 29.307 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2759,7 +2806,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -2783,28 +2830,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -2842,84 +2877,84 @@ Status character 0.00000 20.53560 0.00000 0.00000 -1 0 - 0.00000 21.05880 0.00000 0.00000 -1 0 - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 12.11523 21.58200 17.20475 0.00000 110 70 - - 11.98029 22.08651 18.45151 0.26001 110 65 - - 11.86284 22.59103 19.69827 0.52003 110 60 - - 11.76456 23.09554 20.94504 0.78004 110 56 - - 11.68713 23.60006 22.19180 1.04005 110 53 - - 11.63221 24.10457 23.43857 1.30007 110 50 - - 11.63221 24.10457 23.43857 1.30007 110 50 - - 11.60086 24.60909 24.68533 1.56008 110 47 - - 11.59271 25.11360 25.93210 1.82010 110 45 - - 11.60731 25.61811 27.17886 2.08011 110 43 - - 11.64420 26.12263 28.42563 2.34012 110 41 - - 11.70292 26.62714 29.67240 2.60014 110 39 - - 11.70292 26.62714 29.67240 2.60014 110 39 - - 11.78271 27.13166 30.91916 2.86015 110 38 - - 11.88224 27.63617 32.16593 3.12016 110 37 - - 12.00023 28.14069 33.41269 3.38018 110 36 - - 12.13537 28.64520 34.65946 3.64019 110 35 - - 12.28637 29.14971 35.90622 3.90021 110 34 - - 12.28637 29.14971 35.90622 3.90021 110 34 - - 12.45184 29.65423 37.15299 4.16022 110 34 - - 12.63032 30.15874 38.39975 4.42023 110 33 - - 12.82045 30.66326 39.64652 4.68025 110 32 - - 13.02086 31.16777 40.89328 4.94026 110 32 - - 13.23018 31.67229 42.14005 5.20027 110 31 - - 13.23018 31.67229 42.14005 5.20027 110 31 - - 13.44705 32.17680 43.38681 5.46029 110 31 - - 13.67032 32.68131 44.63358 5.72030 110 31 - - 13.89894 33.18583 45.88034 5.98032 110 30 - - 14.13183 33.69034 47.12711 6.24033 110 30 - - 14.36795 34.19486 48.37387 6.50034 110 30 - - 14.36795 34.19486 48.37387 6.50034 110 30 - - 14.60631 34.69937 49.62064 6.76036 110 29 - - 14.84622 35.20389 50.86741 7.02037 110 29 - - 15.08712 35.70840 52.11417 7.28038 110 29 - - 15.32846 36.21291 53.36094 7.54040 110 29 - - 15.56965 36.71743 54.60770 7.80041 110 29 - - 15.56965 36.71743 54.60770 7.80041 110 29 - - 15.81022 37.22194 55.85447 8.06043 110 28 - - 16.05008 37.72646 57.10123 8.32044 110 28 - - 16.28926 38.23097 58.34800 8.58045 110 28 - - 16.52780 38.73549 59.59476 8.84047 110 28 - - 16.76572 39.24000 60.84153 9.10048 110 28 - - 15.71451 39.24000 60.67194 8.04927 110 26 - - 15.97088 39.73050 62.76883 8.32746 110 25 - - 16.22728 40.22100 64.86572 8.60566 110 25 - - 16.48392 40.71150 66.96261 8.88385 110 25 - - 16.74103 41.20200 69.05950 9.16204 110 24 - - 16.99882 41.69250 71.15639 9.44023 110 24 - - 16.99882 41.69250 71.15639 9.44023 110 24 - - 17.25747 42.18300 73.25328 9.71842 110 24 - - 17.51703 42.67350 75.35017 9.99661 110 23 - - 17.77756 43.16400 77.44706 10.27481 110 23 - - 18.03909 43.65450 79.54395 10.55300 110 23 - - 18.30168 44.14500 81.64084 10.83119 110 22 - - 18.30168 44.14500 81.64084 10.83119 110 22 - - 18.56535 44.63550 83.73773 11.10938 110 22 - - 18.83004 45.12600 85.83462 11.38757 110 22 - - 19.09573 45.61650 87.93151 11.66577 110 22 - - 19.36237 46.10700 90.02840 11.94396 110 22 - - 19.62990 46.59750 92.12529 12.22215 110 21 - - 19.62990 46.59750 92.12529 12.22215 110 21 - - 19.89829 47.08800 94.22218 12.50034 110 21 - - 20.16743 47.57850 96.31907 12.77853 110 21 - - 20.43727 48.06900 98.41596 13.05673 110 21 - - 20.70773 48.55950 100.51285 13.33492 110 21 - - 20.97873 49.05000 102.60974 13.61311 110 20 - - 20.97873 49.05000 102.60974 13.61311 110 20 - - 21.25019 49.54050 104.70663 13.89130 110 20 - - 21.52204 50.03100 106.80352 14.16949 110 20 - - 21.79422 50.52150 108.90041 14.44768 110 20 - - 22.06665 51.01200 110.99730 14.72588 110 20 - - 22.33928 51.50250 113.09419 15.00407 110 20 - - 22.33928 51.50250 113.09419 15.00407 110 20 - - 22.61203 51.99300 115.19108 15.28226 110 20 - - 22.88487 52.48350 117.28797 15.56045 110 20 - - 23.15778 52.97400 119.38486 15.83864 110 19 - - 23.43071 53.46450 121.48175 16.11684 110 19 - - 23.70366 53.95500 123.57864 16.39503 110 19 - + 12.10166 21.58200 17.20475 0.00000 110 70 - + 11.96834 22.08651 18.45151 0.26001 110 65 - + 11.85242 22.59103 19.69827 0.52003 110 60 - + 11.75557 23.09554 20.94504 0.78004 110 56 - + 11.67946 23.60006 22.19180 1.04005 110 53 - + 11.62576 24.10457 23.43857 1.30007 110 50 - + 11.62576 24.10457 23.43857 1.30007 110 50 - + 11.59552 24.60909 24.68533 1.56008 110 47 - + 11.58838 25.11360 25.93210 1.82010 110 45 - + 11.60389 25.61811 27.17886 2.08011 110 43 - + 11.64159 26.12263 28.42563 2.34012 110 41 - + 11.70103 26.62714 29.67240 2.60014 110 39 - + 11.70103 26.62714 29.67240 2.60014 110 39 - + 11.78146 27.13166 30.91916 2.86015 110 38 - + 11.88154 27.63617 32.16593 3.12016 110 37 - + 12.00000 28.14069 33.41269 3.38018 110 36 - + 12.13554 28.64520 34.65946 3.64019 110 35 - + 12.28688 29.14971 35.90622 3.90021 110 34 - + 12.28688 29.14971 35.90622 3.90021 110 34 - + 12.45262 29.65423 37.15299 4.16022 110 34 - + 12.63133 30.15874 38.39975 4.42023 110 33 - + 12.82164 30.66326 39.64652 4.68025 110 32 - + 13.02218 31.16777 40.89328 4.94026 110 32 - + 13.23160 31.67229 42.14005 5.20027 110 31 - + 13.23160 31.67229 42.14005 5.20027 110 31 - + 13.44853 32.17680 43.38681 5.46029 110 31 - + 13.67183 32.68131 44.63358 5.72030 110 31 - + 13.90045 33.18583 45.88034 5.98032 110 30 - + 14.13333 33.69034 47.12711 6.24033 110 30 - + 14.36942 34.19486 48.37387 6.50034 110 30 - + 14.36942 34.19486 48.37387 6.50034 110 30 - + 14.60773 34.69937 49.62064 6.76036 110 29 - + 14.84758 35.20389 50.86741 7.02037 110 29 - + 15.08842 35.70840 52.11417 7.28038 110 29 - + 15.32968 36.21291 53.36094 7.54040 110 29 - + 15.57079 36.71743 54.60770 7.80041 110 29 - + 15.57079 36.71743 54.60770 7.80041 110 29 - + 15.81128 37.22194 55.85447 8.06043 110 28 - + 16.05106 37.72646 57.10123 8.32044 110 28 - + 16.29016 38.23097 58.34800 8.58045 110 28 - + 16.52861 38.73549 59.59476 8.84047 110 28 - + 16.76646 39.24000 60.84153 9.10048 110 28 - + 15.71525 39.24000 60.67194 8.04927 110 26 - + 15.97155 39.73050 62.76883 8.32746 110 25 - + 16.22787 40.22100 64.86572 8.60566 110 25 - + 16.48445 40.71150 66.96261 8.88385 110 25 - + 16.74149 41.20200 69.05950 9.16204 110 24 - + 16.99922 41.69250 71.15639 9.44023 110 24 - + 16.99922 41.69250 71.15639 9.44023 110 24 - + 17.25781 42.18300 73.25328 9.71842 110 24 - + 17.51732 42.67350 75.35017 9.99661 110 23 - + 17.77780 43.16400 77.44706 10.27481 110 23 - + 18.03929 43.65450 79.54395 10.55300 110 23 - + 18.30184 44.14500 81.64084 10.83119 110 22 - + 18.30184 44.14500 81.64084 10.83119 110 22 - + 18.56547 44.63550 83.73773 11.10938 110 22 - + 18.83014 45.12600 85.83462 11.38757 110 22 - + 19.09580 45.61650 87.93151 11.66577 110 22 - + 19.36240 46.10700 90.02840 11.94396 110 22 - + 19.62992 46.59750 92.12529 12.22215 110 21 - + 19.62992 46.59750 92.12529 12.22215 110 21 - + 19.89828 47.08800 94.22218 12.50034 110 21 - + 20.16741 47.57850 96.31907 12.77853 110 21 - + 20.43723 48.06900 98.41596 13.05673 110 21 - + 20.70767 48.55950 100.51285 13.33492 110 21 - + 20.97866 49.05000 102.60974 13.61311 110 20 - + 20.97866 49.05000 102.60974 13.61311 110 20 - + 21.25011 49.54050 104.70663 13.89130 110 20 - + 21.52195 50.03100 106.80352 14.16949 110 20 - + 21.79411 50.52150 108.90041 14.44768 110 20 - + 22.06654 51.01200 110.99730 14.72588 110 20 - + 22.33915 51.50250 113.09419 15.00407 110 20 - + 22.33915 51.50250 113.09419 15.00407 110 20 - + 22.61190 51.99300 115.19108 15.28226 110 20 - + 22.88473 52.48350 117.28797 15.56045 110 20 - + 23.15763 52.97400 119.38486 15.83864 110 19 - + 23.43056 53.46450 121.48175 16.11684 110 19 - + 23.70349 53.95500 123.57864 16.39503 110 19 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2932,7 +2967,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 23.934 'Clay, sl san, moderate' + 4.00 23.932 'Clay, sl san, moderate' -4.00 29.488 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -2955,7 +2990,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -2973,28 +3008,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -3131,7 +3154,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 15.14938 220000000.000 1 1 1 'Strut' + 0.25000 15.14760 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3159,15 +3182,15 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 31.89 : Percentage mobilized resistance left 8.10 : Percentage mobilized resistance right - 66.48 : Effective left + 66.47 : Effective left 71.63 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right 208.43 : Max effective resistance left 884.50 : Max effective resistance right -949.80 : Max moment left --3074.16 : Max moment right - -278.24 : Max mobilized moment left +-3074.15 : Max moment right + -278.23 : Max mobilized moment left -280.86 : Max mobilized moment right 25.87 : Vertical force left 27.32 : Vertical force right @@ -3195,163 +3218,151 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00011 9.96149 -6.00000 - 0.50533 10.23589 -5.93154 - 1.02255 10.44173 -5.86498 - 1.54835 10.57878 -5.80227 - 2.07928 10.64665 -5.74540 - 2.61216 10.66324 -5.69631 - 2.61192 -4.43987 -5.69631 - 2.38993 -4.43987 -5.65654 - 2.16799 -4.43675 -5.62572 - 1.94645 -4.42170 -5.60303 - 1.72611 -4.38903 -5.58765 - 1.50784 -4.33874 -5.57874 - 1.50784 -4.33874 -5.57874 - 1.37823 -4.30183 -5.57616 - 1.24976 -4.26204 -5.57544 - 1.12253 -4.21937 -5.57641 - 0.99663 -4.17381 -5.57889 - 0.87213 -4.12536 -5.58273 - 0.87213 -4.12536 -5.58273 - 0.74914 -4.07403 -5.58773 - 0.62772 -4.01981 -5.59375 - 0.50798 -3.96270 -5.60061 - 0.38999 -3.90271 -5.60817 - 0.27384 -3.83983 -5.61625 - 0.27394 -3.84230 -5.61625 - 0.15965 -3.77654 -5.62469 - 0.04737 -3.70789 -5.63335 - -0.06280 -3.63635 -5.64208 - -0.17078 -3.56193 -5.65073 - -0.27649 -3.48462 -5.65914 - -0.27658 -3.48671 -5.65914 - -0.37999 -3.40652 -5.66718 - -0.48095 -3.32344 -5.67471 - -0.57937 -3.23747 -5.68159 - -0.67516 -3.14862 -5.68769 - -0.76825 -3.05688 -5.69287 - -0.76803 -3.05952 -5.69287 - -0.92671 -2.88931 -5.69943 - -1.07606 -2.70997 -5.70202 - -1.21561 -2.52151 -5.70006 - -1.34486 -2.32393 -5.69296 - -1.46333 -2.11723 -5.68012 - -1.46362 -2.11752 -5.68012 - -1.57084 -1.90169 -5.66097 - -1.66630 -1.67675 -5.63511 - -1.74953 -1.44268 -5.60219 - -1.82003 -1.19949 -5.56186 - -1.87731 -0.94718 -5.51375 - -1.87729 -0.94425 -5.51375 - -1.92072 -0.68282 -5.45757 - -1.94996 -0.41227 -5.39318 - -1.96453 -0.13260 -5.32053 - -1.96394 0.15620 -5.23956 - -1.94771 0.45412 -5.15021 - -1.94769 0.45572 -5.15021 - -1.91523 0.76276 -5.05246 - -1.86616 1.07891 -4.94653 - -1.79999 1.40420 -4.83270 - -1.71622 1.73860 -4.71126 - -1.61437 2.08212 -4.58250 - -1.61436 2.08277 -4.58250 - -1.49392 2.43542 -4.44675 - -1.35442 2.79719 -4.30461 - -1.19539 3.16807 -4.15678 - -1.01633 3.54808 -4.00392 - -0.81676 3.93722 -3.84672 - -0.81675 3.93718 -3.84672 - -0.59618 4.33544 -3.68592 - -0.35414 4.74281 -3.52257 - -0.09012 5.15931 -3.35780 - 0.19635 5.58492 -3.19272 - 0.50577 6.01966 -3.02848 - 0.50565 6.01562 -3.02848 - 0.80269 5.52660 -2.87215 - 1.07315 4.98194 -2.71902 - 1.31416 4.38164 -2.57004 - 1.52287 3.72570 -2.42616 - 1.69642 3.01412 -2.28832 - 1.69658 3.00705 -2.28832 - 1.83242 2.27973 -2.15738 - 1.93178 1.59384 -2.03371 - 1.99733 0.96473 -1.91758 - 2.03191 0.38844 -1.80926 - 2.03812 -0.13912 -1.70902 - 2.03831 -0.14151 -1.70902 - 2.01843 -0.62451 -1.61699 - 1.97495 -1.05617 -1.53297 - 1.91098 -1.41849 -1.45672 - 1.83033 -1.70624 -1.38798 - 1.73663 -1.92703 -1.32652 - 1.73655 -1.92540 -1.32652 - 1.63314 -2.08654 -1.27199 - 1.52284 -2.19493 -1.22395 - 1.40817 -2.25701 -1.18193 - 1.29138 -2.27873 -1.14549 - 1.17438 -2.26561 -1.11418 - 1.17440 -2.26361 -1.11418 - 1.05897 -2.22068 -1.08752 - 0.94642 -2.15249 -1.06507 - 0.83794 -2.06314 -1.04638 - 0.73451 -1.95628 -1.03103 - 0.63696 -1.83514 -1.01860 - 0.63698 -1.83404 -1.01860 - 0.54602 -1.70140 -1.00866 - 0.46213 -1.55964 -1.00089 - 0.38572 -1.41085 -0.99498 - 0.31711 -1.25679 -0.99063 - 0.25652 -1.09889 -0.98753 - 0.25653 -1.09843 -0.98753 - 0.20416 -0.93784 -0.98541 - 0.16009 -0.77549 -0.98410 - 0.12441 -0.61214 -0.98345 - 0.09714 -0.44839 -0.98333 - 0.07829 -0.28471 -0.98359 - 0.07829 -0.28456 -0.98359 - 0.06473 -0.25781 -0.98412 - 0.05250 -0.23170 -0.98489 - 0.04155 -0.20646 -0.98586 - 0.03184 -0.18228 -0.98699 - 0.02330 -0.15928 -0.98824 - 0.02330 -0.15924 -0.98824 - 0.01589 -0.13754 -0.98957 - 0.00953 -0.11720 -0.99097 - 0.00414 -0.09828 -0.99240 - -0.00033 -0.08079 -0.99385 - -0.00396 -0.06475 -0.99530 - -0.00396 -0.06476 -0.99530 - -0.00682 -0.05016 -0.99673 - -0.00900 -0.03698 -0.99813 - -0.01055 -0.02518 -0.99950 - -0.01154 -0.01474 -1.00084 - -0.01204 -0.00562 -1.00213 - -0.01204 -0.00564 -1.00213 - -0.01212 0.00222 -1.00337 - -0.01184 0.00886 -1.00457 - -0.01126 0.01432 -1.00573 - -0.01043 0.01864 -1.00684 - -0.00941 0.02187 -1.00792 - -0.00941 0.02186 -1.00792 - -0.00826 0.02403 -1.00896 - -0.00702 0.02518 -1.00996 - -0.00576 0.02533 -1.01095 - -0.00451 0.02452 -1.01191 - -0.00332 0.02275 -1.01285 - -0.00332 0.02274 -1.01285 - -0.00225 0.02004 -1.01378 - -0.00133 0.01640 -1.01470 - -0.00062 0.01185 -1.01562 - -0.00016 0.00638 -1.01653 - 0.00000 0.00000 -1.01745 + 0.00002 9.96788 -6.00000 + 0.50556 10.24230 -5.93112 + 1.02311 10.44817 -5.86414 + 1.54923 10.58528 -5.80102 + 2.08049 10.65324 -5.74373 + 2.61370 10.66987 -5.69424 + 2.61347 -4.43134 -5.69424 + 2.39190 -4.43134 -5.65406 + 2.17039 -4.42822 -5.62284 + 1.94928 -4.41317 -5.59977 + 1.72936 -4.38050 -5.58401 + 1.51152 -4.33021 -5.57474 + 1.51152 -4.33021 -5.57474 + 1.25395 -4.25352 -5.57100 + 1.00133 -4.16528 -5.57403 + 0.75435 -4.06550 -5.58250 + 0.51370 -3.95418 -5.59507 + 0.28008 -3.83131 -5.61041 + 0.28089 -3.84594 -5.61041 + 0.05411 -3.71153 -5.62721 + -0.16426 -3.56557 -5.64430 + -0.37353 -3.40807 -5.66055 + -0.57300 -3.23902 -5.67483 + -0.76198 -3.05843 -5.68601 + -0.76205 -3.06377 -5.68601 + -0.92095 -2.89355 -5.69247 + -1.07053 -2.71422 -5.69500 + -1.21030 -2.52576 -5.69300 + -1.33978 -2.32818 -5.68587 + -1.45848 -2.12147 -5.67303 + -1.45877 -2.12176 -5.67303 + -1.56621 -1.90594 -5.65390 + -1.66191 -1.68100 -5.62808 + -1.74536 -1.44693 -5.59522 + -1.81608 -1.20374 -5.55497 + -1.87360 -0.95143 -5.50696 + -1.87357 -0.94850 -5.50696 + -1.91723 -0.68707 -5.45088 + -1.94669 -0.41652 -5.38662 + -1.96149 -0.13684 -5.31411 + -1.96113 0.15195 -5.23329 + -1.94512 0.44987 -5.14410 + -1.94510 0.45147 -5.14410 + -1.91288 0.75851 -5.04652 + -1.86403 1.07467 -4.94077 + -1.79808 1.39995 -4.82714 + -1.71454 1.73435 -4.70591 + -1.61292 2.07788 -4.57735 + -1.61291 2.07853 -4.57735 + -1.49269 2.43117 -4.44181 + -1.35342 2.79294 -4.29990 + -1.19461 3.16383 -4.15229 + -1.01578 3.54384 -3.99966 + -0.81644 3.93297 -3.84269 + -0.81643 3.93294 -3.84269 + -0.59609 4.33119 -3.68212 + -0.35427 4.73856 -3.51901 + -0.09048 5.15506 -3.35446 + 0.19577 5.58068 -3.18962 + 0.50495 6.01542 -3.02561 + 0.50484 6.01139 -3.02561 + 0.80166 5.52237 -2.86949 + 1.07190 4.97770 -2.71658 + 1.31270 4.37740 -2.56780 + 1.52119 3.72147 -2.42412 + 1.69452 3.00989 -2.28648 + 1.69468 3.00281 -2.28648 + 1.83031 2.27592 -2.15572 + 1.92949 1.59084 -2.03223 + 1.99491 0.96245 -1.91627 + 2.02939 0.38679 -1.80811 + 2.03553 -0.14021 -1.70802 + 2.03571 -0.14260 -1.70802 + 2.01579 -0.62513 -1.61613 + 1.97230 -1.05619 -1.53224 + 1.90835 -1.41782 -1.45611 + 1.82774 -1.70500 -1.38748 + 1.73412 -1.92532 -1.32611 + 1.73404 -1.92369 -1.32611 + 1.63073 -2.08446 -1.27168 + 1.52054 -2.19257 -1.22371 + 1.40600 -2.25443 -1.18176 + 1.28934 -2.27602 -1.14539 + 1.17249 -2.26281 -1.11413 + 1.17251 -2.26082 -1.11413 + 1.05723 -2.21785 -1.08751 + 0.94482 -2.14967 -1.06509 + 0.83648 -2.06036 -1.04644 + 0.73320 -1.95358 -1.03112 + 0.63578 -1.83254 -1.01871 + 0.63580 -1.83144 -1.01871 + 0.54497 -1.69892 -1.00879 + 0.46121 -1.55730 -1.00103 + 0.38491 -1.40865 -0.99512 + 0.31641 -1.25474 -0.99078 + 0.25592 -1.09699 -0.98768 + 0.25593 -1.09653 -0.98768 + 0.20365 -0.93611 -0.98556 + 0.15968 -0.77391 -0.98425 + 0.12407 -0.61071 -0.98360 + 0.09687 -0.44711 -0.98347 + 0.07808 -0.28357 -0.98372 + 0.07808 -0.28343 -0.98372 + 0.06458 -0.25681 -0.98425 + 0.05239 -0.23082 -0.98501 + 0.04148 -0.20571 -0.98597 + 0.03180 -0.18163 -0.98710 + 0.02330 -0.15874 -0.98834 + 0.02330 -0.15870 -0.98834 + 0.01591 -0.13710 -0.98966 + 0.00957 -0.11684 -0.99105 + 0.00420 -0.09799 -0.99247 + -0.00026 -0.08058 -0.99391 + -0.00388 -0.06461 -0.99536 + -0.00388 -0.06461 -0.99536 + -0.00674 -0.05007 -0.99678 + -0.00891 -0.03694 -0.99818 + -0.01046 -0.02519 -0.99954 + -0.01145 -0.01478 -1.00087 + -0.01196 -0.00569 -1.00216 + -0.01196 -0.00571 -1.00216 + -0.01204 0.00212 -1.00340 + -0.01177 0.00874 -1.00459 + -0.01119 0.01418 -1.00574 + -0.01037 0.01850 -1.00685 + -0.00936 0.02172 -1.00792 + -0.00936 0.02171 -1.00792 + -0.00821 0.02388 -1.00896 + -0.00699 0.02503 -1.00996 + -0.00573 0.02519 -1.01094 + -0.00448 0.02438 -1.01189 + -0.00330 0.02263 -1.01283 + -0.00330 0.02262 -1.01283 + -0.00224 0.01993 -1.01376 + -0.00133 0.01632 -1.01468 + -0.00062 0.01179 -1.01559 + -0.00016 0.00635 -1.01650 + 0.00000 0.00000 -1.01741 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3413,7 +3424,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3425,10 +3436,10 @@ Status character [END OF COLUMN INDICATION] [DATA] 6.17317 0.00000 46.80506 6.17317 110 0 - - 4.80310 0.00000 49.46909 6.72875 110 0 - - 3.43036 0.00000 52.13311 7.28434 110 0 - - 2.05160 0.00000 54.79714 7.83992 110 0 - - 0.66349 0.00000 57.46117 8.39551 110 0 - + 4.80357 0.00000 49.46909 6.72875 110 0 - + 3.43130 0.00000 52.13311 7.28434 110 0 - + 2.05302 0.00000 54.79714 7.83992 110 0 - + 0.66539 0.00000 57.46117 8.39551 110 0 - 0.00000 0.00000 60.12520 8.95109 1 0 A 0.00000 0.00000 60.12520 8.95109 1 0 A 0.00000 0.00000 62.78923 9.50668 1 0 A @@ -3437,28 +3448,16 @@ Status character 0.82961 0.00000 70.78131 11.17343 1 0 A 1.18200 0.00000 73.44534 11.72901 1 0 A 1.18200 0.00000 73.44534 11.72901 1 0 A - 1.27820 0.29430 74.17262 11.88069 1 0 A 1.37441 0.58860 74.89990 12.03236 1 0 A - 1.47061 0.88290 75.62718 12.18404 1 0 A 1.56681 1.17720 76.35446 12.33571 1 0 A - 1.66301 1.47150 77.08174 12.48739 1 0 A - 1.66301 1.47150 77.08174 12.48739 1 0 A 1.75922 1.76580 77.80902 12.63906 1 0 A - 1.85542 2.06010 78.53630 12.79074 1 0 A 1.95162 2.35440 79.26358 12.94241 1 0 A - 2.04782 2.64870 79.99086 13.09409 1 0 A 2.14403 2.94300 80.71814 13.24576 1 0 A 2.14403 2.94300 80.71814 13.24576 1 0 A - 2.24023 3.23730 81.44542 13.39744 1 0 A 2.33643 3.53160 82.17270 13.54911 1 0 A - 2.43263 3.82590 82.89998 13.70079 1 0 A 2.52884 4.12020 83.62726 13.85246 1 0 A - 2.62504 4.41450 84.35454 14.00413 1 0 A - 2.62504 4.41450 84.35454 14.00413 1 0 A 2.72124 4.70880 85.08182 14.15581 1 0 A - 2.81744 5.00310 85.80910 14.30748 1 0 A 2.91365 5.29740 86.53638 14.45916 1 0 A - 3.00985 5.59170 87.26366 14.61083 1 0 A 3.10605 5.88600 87.99094 14.76251 1 0 A 3.10605 5.88600 87.99094 14.76251 1 0 A 3.27708 6.40920 89.28388 15.03215 1 0 A @@ -3510,70 +3509,70 @@ Status character 9.88605 26.62714 139.24684 25.45196 1 0 A 9.88605 26.62714 139.24684 25.45196 1 0 A 10.05097 27.13166 140.49361 25.71198 1 0 A - 10.64225 27.63617 141.74037 25.97199 110 0 - - 11.66483 28.14069 142.98714 26.23200 110 0 - - 12.61221 28.64520 144.23390 26.49202 110 0 - - 13.48687 29.14971 145.48067 26.75203 110 0 - - 13.48687 29.14971 145.48067 26.75203 110 0 - - 14.29210 29.65423 146.72743 27.01204 110 0 - - 15.03255 30.15874 147.97420 27.27206 110 0 - - 15.71274 30.66326 149.22097 27.53207 110 0 - - 16.33715 31.16777 150.46773 27.79209 110 0 - - 16.91029 31.67229 151.71450 28.05210 110 0 - - 16.91029 31.67229 151.71450 28.05210 110 0 - - 17.43687 32.17680 152.96126 28.31211 110 0 - - 17.92147 32.68131 154.20803 28.57213 110 0 - - 18.36837 33.18583 155.45479 28.83214 110 0 - - 18.78184 33.69034 156.70156 29.09215 110 0 - - 19.16618 34.19486 157.94832 29.35217 110 0 - - 19.16618 34.19486 157.94832 29.35217 110 0 - - 19.52555 34.69937 159.19509 29.61218 110 0 - - 19.86329 35.20389 160.44185 29.87220 110 0 - - 20.18242 35.70840 161.68862 30.13221 110 0 - - 20.48597 36.21291 162.93538 30.39222 110 0 - - 20.77695 36.71743 164.18215 30.65224 110 0 - - 20.77695 36.71743 164.18215 30.65224 110 0 - - 21.05816 37.22194 165.42891 30.91225 110 0 - - 21.33130 37.72646 166.67568 31.17226 110 0 - - 21.59778 38.23097 167.92244 31.43228 110 0 - - 21.85901 38.73549 169.16921 31.69229 110 0 - - 22.11643 39.24000 170.41598 31.95231 110 0 - - 18.42557 39.24000 213.02263 28.26145 110 0 - - 18.69848 39.73050 215.11952 28.53964 110 0 - - 18.96897 40.22100 217.21641 28.81784 110 0 - - 19.23745 40.71150 219.31330 29.09603 110 0 - - 19.50432 41.20200 221.41019 29.37422 110 0 - - 19.77001 41.69250 223.50708 29.65241 110 0 - - 19.77001 41.69250 223.50708 29.65241 110 0 - - 20.03487 42.18300 225.60397 29.93060 110 0 - - 20.29914 42.67350 227.70086 30.20879 110 0 - - 20.56302 43.16400 229.79775 30.48699 110 0 - - 20.82671 43.65450 231.89464 30.76518 110 0 - - 21.09042 44.14500 233.99153 31.04337 110 0 - - 21.09042 44.14500 233.99153 31.04337 110 0 - - 21.35431 44.63550 236.08842 31.32156 110 0 - - 21.61846 45.12600 238.18531 31.59975 110 0 - - 21.88292 45.61650 240.28220 31.87795 110 0 - - 22.14776 46.10700 242.37909 32.15614 110 0 - - 22.41304 46.59750 244.47598 32.43433 110 0 - - 22.41304 46.59750 244.47598 32.43433 110 0 - - 22.67879 47.08800 246.57287 32.71252 110 0 - - 22.94499 47.57850 248.66976 32.99071 110 0 - - 23.21163 48.06900 250.76665 33.26890 110 0 - - 23.47868 48.55950 252.86354 33.54710 110 0 - - 23.74612 49.05000 254.96043 33.82529 110 0 - - 23.74612 49.05000 254.96043 33.82529 110 0 - + 10.64956 27.63617 141.74037 25.97199 110 0 - + 11.67094 28.14069 142.98714 26.23200 110 0 - + 12.61725 28.64520 144.23390 26.49202 110 0 - + 13.49092 29.14971 145.48067 26.75203 110 0 - + 13.49092 29.14971 145.48067 26.75203 110 0 - + 14.29527 29.65423 146.72743 27.01204 110 0 - + 15.03494 30.15874 147.97420 27.27206 110 0 - + 15.71443 30.66326 149.22097 27.53207 110 0 - + 16.33823 31.16777 150.46773 27.79209 110 0 - + 16.91084 31.67229 151.71450 28.05210 110 0 - + 16.91084 31.67229 151.71450 28.05210 110 0 - + 17.43697 32.17680 152.96126 28.31211 110 0 - + 17.92119 32.68131 154.20803 28.57213 110 0 - + 18.36776 33.18583 155.45479 28.83214 110 0 - + 18.78098 33.69034 156.70156 29.09215 110 0 - + 19.16510 34.19486 157.94832 29.35217 110 0 - + 19.16510 34.19486 157.94832 29.35217 110 0 - + 19.52431 34.69937 159.19509 29.61218 110 0 - + 19.86193 35.20389 160.44185 29.87220 110 0 - + 20.18097 35.70840 161.68862 30.13221 110 0 - + 20.48447 36.21291 162.93538 30.39222 110 0 - + 20.77543 36.71743 164.18215 30.65224 110 0 - + 20.77543 36.71743 164.18215 30.65224 110 0 - + 21.05663 37.22194 165.42891 30.91225 110 0 - + 21.32979 37.72646 166.67568 31.17226 110 0 - + 21.59630 38.23097 167.92244 31.43228 110 0 - + 21.85759 38.73549 169.16921 31.69229 110 0 - + 22.11506 39.24000 170.41598 31.95231 110 0 - + 18.42421 39.24000 213.02263 28.26145 110 0 - + 18.69719 39.73050 215.11952 28.53964 110 0 - + 18.96775 40.22100 217.21641 28.81784 110 0 - + 19.23630 40.71150 219.31330 29.09603 110 0 - + 19.50325 41.20200 221.41019 29.37422 110 0 - + 19.76902 41.69250 223.50708 29.65241 110 0 - + 19.76902 41.69250 223.50708 29.65241 110 0 - + 20.03396 42.18300 225.60397 29.93060 110 0 - + 20.29831 42.67350 227.70086 30.20879 110 0 - + 20.56226 43.16400 229.79775 30.48699 110 0 - + 20.82603 43.65450 231.89464 30.76518 110 0 - + 21.08981 44.14500 233.99153 31.04337 110 0 - + 21.08981 44.14500 233.99153 31.04337 110 0 - + 21.35377 44.63550 236.08842 31.32156 110 0 - + 21.61799 45.12600 238.18531 31.59975 110 0 - + 21.88252 45.61650 240.28220 31.87795 110 0 - + 22.14742 46.10700 242.37909 32.15614 110 0 - + 22.41275 46.59750 244.47598 32.43433 110 0 - + 22.41275 46.59750 244.47598 32.43433 110 0 - + 22.67856 47.08800 246.57287 32.71252 110 0 - + 22.94481 47.57850 248.66976 32.99071 110 0 - + 23.21150 48.06900 250.76665 33.26890 110 0 - + 23.47859 48.55950 252.86354 33.54710 110 0 - + 23.74608 49.05000 254.96043 33.82529 110 0 - + 23.74608 49.05000 254.96043 33.82529 110 0 - 24.01392 49.54050 257.05732 34.10348 110 0 - - 24.28203 50.03100 259.15421 34.38167 110 0 - - 24.55041 50.52150 261.25110 34.65986 110 0 - - 24.81900 51.01200 263.34799 34.93806 110 0 - - 25.08776 51.50250 265.44488 35.21625 110 0 - - 25.08776 51.50250 265.44488 35.21625 110 0 - - 25.35664 51.99300 267.54177 35.49444 110 0 - - 25.62560 52.48350 269.63866 35.77263 110 0 - - 25.89462 52.97400 271.73555 36.05082 110 0 - - 26.16367 53.46450 273.83244 36.32902 110 0 - - 26.43273 53.95500 275.92933 36.60721 110 0 - + 24.28208 50.03100 259.15421 34.38167 110 0 - + 24.55049 50.52150 261.25110 34.65986 110 0 - + 24.81912 51.01200 263.34799 34.93806 110 0 - + 25.08791 51.50250 265.44488 35.21625 110 0 - + 25.08791 51.50250 265.44488 35.21625 110 0 - + 25.35683 51.99300 267.54177 35.49444 110 0 - + 25.62582 52.48350 269.63866 35.77263 110 0 - + 25.89488 52.97400 271.73555 36.05082 110 0 - + 26.16397 53.46450 273.83244 36.32902 110 0 - + 26.43306 53.95500 275.92933 36.60721 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3586,8 +3585,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 37.995 'Clay, sl san, moderate' - -4.00 33.635 'Sand, sl sil, moderate' + 4.00 37.996 'Clay, sl san, moderate' + -4.00 33.634 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3664,7 +3663,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -3688,28 +3687,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -3754,77 +3741,77 @@ Status character 22.19180 23.60006 22.19180 1.04005 202 100 P 23.43857 24.10457 23.43857 1.30007 202 100 P 23.43857 24.10457 23.43857 1.30007 202 100 P - 23.13384 24.60909 24.68533 1.56008 110 94 - - 22.15716 25.11360 25.93210 1.82010 110 85 - - 21.25591 25.61811 27.17886 2.08011 110 78 - - 20.43275 26.12263 28.42563 2.34012 110 72 - - 19.69035 26.62714 29.67240 2.60014 110 66 - - 19.69035 26.62714 29.67240 2.60014 110 66 - - 19.03008 27.13166 30.91916 2.86015 110 62 - - 18.44990 27.63617 32.16593 3.12016 110 57 - - 17.94736 28.14069 33.41269 3.38018 110 54 - - 17.51999 28.64520 34.65946 3.64019 110 51 - - 17.16537 29.14971 35.90622 3.90021 110 48 - - 17.16537 29.14971 35.90622 3.90021 110 48 - - 16.88017 29.65423 37.15299 4.16022 110 45 - - 16.65974 30.15874 38.39975 4.42023 110 43 - - 16.49958 30.66326 39.64652 4.68025 110 42 - - 16.39519 31.16777 40.89328 4.94026 110 40 - - 16.34208 31.67229 42.14005 5.20027 110 39 - - 16.34208 31.67229 42.14005 5.20027 110 39 - - 16.33553 32.17680 43.38681 5.46029 110 38 - - 16.37096 32.68131 44.63358 5.72030 110 37 - - 16.44409 33.18583 45.88034 5.98032 110 36 - - 16.55064 33.69034 47.12711 6.24033 110 35 - - 16.68633 34.19486 48.37387 6.50034 110 34 - - 16.68633 34.19486 48.37387 6.50034 110 34 - - 16.84699 34.69937 49.62064 6.76036 110 34 - - 17.02928 35.20389 50.86741 7.02037 110 33 - - 17.23017 35.70840 52.11417 7.28038 110 33 - - 17.44666 36.21291 53.36094 7.54040 110 33 - - 17.67570 36.71743 54.60770 7.80041 110 32 - - 17.67570 36.71743 54.60770 7.80041 110 32 - - 17.91452 37.22194 55.85447 8.06043 110 32 - - 18.16141 37.72646 57.10123 8.32044 110 32 - - 18.41496 38.23097 58.34800 8.58045 110 32 - - 18.67374 38.73549 59.59476 8.84047 110 31 - - 18.93636 39.24000 60.84153 9.10048 110 31 - - 17.88515 39.24000 60.67194 8.04927 110 29 - - 18.16862 39.73050 62.76883 8.32746 110 29 - - 18.45452 40.22100 64.86572 8.60566 110 28 - - 18.74243 40.71150 66.96261 8.88385 110 28 - - 19.03194 41.20200 69.05950 9.16204 110 28 - - 19.32264 41.69250 71.15639 9.44023 110 27 - - 19.32264 41.69250 71.15639 9.44023 110 27 - - 19.61416 42.18300 73.25328 9.71842 110 27 - - 19.90627 42.67350 75.35017 9.99661 110 26 - - 20.19878 43.16400 77.44706 10.27481 110 26 - - 20.49147 43.65450 79.54395 10.55300 110 26 - - 20.78415 44.14500 81.64084 10.83119 110 25 - - 20.78415 44.14500 81.64084 10.83119 110 25 - - 21.07664 44.63550 83.73773 11.10938 110 25 - - 21.36887 45.12600 85.83462 11.38757 110 25 - - 21.66079 45.61650 87.93151 11.66577 110 25 - - 21.95233 46.10700 90.02840 11.94396 110 24 - - 22.24344 46.59750 92.12529 12.22215 110 24 - - 22.24344 46.59750 92.12529 12.22215 110 24 - - 22.53408 47.08800 94.22218 12.50034 110 24 - - 22.82426 47.57850 96.31907 12.77853 110 24 - - 23.11400 48.06900 98.41596 13.05673 110 23 - - 23.40334 48.55950 100.51285 13.33492 110 23 - - 23.69228 49.05000 102.60974 13.61311 110 23 - - 23.69228 49.05000 102.60974 13.61311 110 23 - + 23.11727 24.60909 24.68533 1.56008 110 94 - + 22.14237 25.11360 25.93210 1.82010 110 85 - + 21.24281 25.61811 27.17886 2.08011 110 78 - + 20.42125 26.12263 28.42563 2.34012 110 72 - + 19.68036 26.62714 29.67240 2.60014 110 66 - + 19.68036 26.62714 29.67240 2.60014 110 66 - + 19.02148 27.13166 30.91916 2.86015 110 62 - + 18.44260 27.63617 32.16593 3.12016 110 57 - + 17.94124 28.14069 33.41269 3.38018 110 54 - + 17.51496 28.64520 34.65946 3.64019 110 51 - + 17.16131 29.14971 35.90622 3.90021 110 48 - + 17.16131 29.14971 35.90622 3.90021 110 48 - + 16.87700 29.65423 37.15299 4.16022 110 45 - + 16.65735 30.15874 38.39975 4.42023 110 43 - + 16.49789 30.66326 39.64652 4.68025 110 42 - + 16.39411 31.16777 40.89328 4.94026 110 40 - + 16.34153 31.67229 42.14005 5.20027 110 39 - + 16.34153 31.67229 42.14005 5.20027 110 39 - + 16.33543 32.17680 43.38681 5.46029 110 38 - + 16.37124 32.68131 44.63358 5.72030 110 37 - + 16.44469 33.18583 45.88034 5.98032 110 36 - + 16.55151 33.69034 47.12711 6.24033 110 35 - + 16.68741 34.19486 48.37387 6.50034 110 34 - + 16.68741 34.19486 48.37387 6.50034 110 34 - + 16.84823 34.69937 49.62064 6.76036 110 34 - + 17.03064 35.20389 50.86741 7.02037 110 33 - + 17.23162 35.70840 52.11417 7.28038 110 33 - + 17.44815 36.21291 53.36094 7.54040 110 33 - + 17.67722 36.71743 54.60770 7.80041 110 32 - + 17.67722 36.71743 54.60770 7.80041 110 32 - + 17.91604 37.22194 55.85447 8.06043 110 32 - + 18.16292 37.72646 57.10123 8.32044 110 32 - + 18.41643 38.23097 58.34800 8.58045 110 32 - + 18.67517 38.73549 59.59476 8.84047 110 31 - + 18.93772 39.24000 60.84153 9.10048 110 31 - + 17.88651 39.24000 60.67194 8.04927 110 29 - + 18.16992 39.73050 62.76883 8.32746 110 29 - + 18.45574 40.22100 64.86572 8.60566 110 28 - + 18.74358 40.71150 66.96261 8.88385 110 28 - + 19.03301 41.20200 69.05950 9.16204 110 28 - + 19.32363 41.69250 71.15639 9.44023 110 27 - + 19.32363 41.69250 71.15639 9.44023 110 27 - + 19.61507 42.18300 73.25328 9.71842 110 27 - + 19.90710 42.67350 75.35017 9.99661 110 26 - + 20.19953 43.16400 77.44706 10.27481 110 26 - + 20.49215 43.65450 79.54395 10.55300 110 26 - + 20.78475 44.14500 81.64084 10.83119 110 25 - + 20.78475 44.14500 81.64084 10.83119 110 25 - + 21.07717 44.63550 83.73773 11.10938 110 25 - + 21.36934 45.12600 85.83462 11.38757 110 25 - + 21.66119 45.61650 87.93151 11.66577 110 25 - + 21.95267 46.10700 90.02840 11.94396 110 24 - + 22.24372 46.59750 92.12529 12.22215 110 24 - + 22.24372 46.59750 92.12529 12.22215 110 24 - + 22.53431 47.08800 94.22218 12.50034 110 24 - + 22.82443 47.57850 96.31907 12.77853 110 24 - + 23.11413 48.06900 98.41596 13.05673 110 23 - + 23.40342 48.55950 100.51285 13.33492 110 23 - + 23.69232 49.05000 102.60974 13.61311 110 23 - + 23.69232 49.05000 102.60974 13.61311 110 23 - 23.98086 49.54050 104.70663 13.89130 110 23 - - 24.26913 50.03100 106.80352 14.16949 110 23 - - 24.55714 50.52150 108.90041 14.44768 110 23 - - 24.84493 51.01200 110.99730 14.72588 110 22 - - 25.13256 51.50250 113.09419 15.00407 110 22 - - 25.13256 51.50250 113.09419 15.00407 110 22 - - 25.42006 51.99300 115.19108 15.28226 110 22 - - 25.70748 52.48350 117.28797 15.56045 110 22 - - 25.99485 52.97400 119.38486 15.83864 110 22 - - 26.28218 53.46450 121.48175 16.11684 110 22 - - 26.56951 53.95500 123.57864 16.39503 110 22 - + 24.26909 50.03100 106.80352 14.16949 110 23 - + 24.55706 50.52150 108.90041 14.44768 110 23 - + 24.84482 51.01200 110.99730 14.72588 110 22 - + 25.13240 51.50250 113.09419 15.00407 110 22 - + 25.13240 51.50250 113.09419 15.00407 110 22 - + 25.41987 51.99300 115.19108 15.28226 110 22 - + 25.70726 52.48350 117.28797 15.56045 110 22 - + 25.99459 52.97400 119.38486 15.83864 110 22 - + 26.28188 53.46450 121.48175 16.11684 110 22 - + 26.56918 53.95500 123.57864 16.39503 110 21 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3837,8 +3824,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 33.127 'Clay, sl san, moderate' - -4.00 33.350 'Sand, sl sil, moderate' + 4.00 33.122 'Clay, sl san, moderate' + -4.00 33.351 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -3862,7 +3849,7 @@ Layer name [VERIFY STEP 6.5 MULTIPLIED BY FACTOR] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -3880,28 +3867,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -4049,7 +4024,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 22.16 : Percentage mobilized resistance left 10.17 : Percentage mobilized resistance right - 113.67 : Effective left + 113.65 : Effective left 80.05 : Effective right 117.77 : Water pressure left 148.38 : Water pressure right @@ -4085,145 +4060,133 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 3.62097 -6.00000 - 0.18105 3.62097 -5.74522 - 0.36210 3.62097 -5.49100 - 0.54315 3.62097 -5.23791 - 0.72419 3.62097 -4.98652 - 0.90524 3.62097 -4.73739 - 0.90524 3.62097 -4.73739 - 1.08629 3.62097 -4.49110 - 1.26734 3.62097 -4.24819 - 1.44839 3.62097 -4.00925 - 1.62944 3.62097 -3.77483 - 1.81048 3.62097 -3.54551 - 1.81048 3.62097 -3.54551 - 1.91917 3.62627 -3.41059 - 2.02817 3.64216 -3.27784 - 2.13780 3.66865 -3.14736 - 2.24839 3.70573 -3.01929 - 2.36025 3.75340 -2.89376 - 2.36025 3.75340 -2.89376 - 2.47370 3.81168 -2.77087 - 2.58906 3.88054 -2.65077 - 2.70664 3.96000 -2.53358 - 2.82678 4.05168 -2.41944 - 2.94988 4.15731 -2.30848 - 2.94999 4.15434 -2.30848 - 3.06680 3.62588 -2.20085 - 3.16711 3.05394 -2.09667 - 3.24979 2.45722 -1.99603 - 3.31470 1.87597 -1.89904 - 3.36271 1.33102 -1.80577 - 3.36260 1.32851 -1.80577 - 3.39472 0.81851 -1.71631 - 3.41204 0.34208 -1.63067 - 3.41556 -0.10215 -1.54885 - 3.40622 -0.51555 -1.47086 - 3.38493 -0.89952 -1.39671 - 3.38520 -0.90269 -1.39671 - 3.32017 -1.52373 -1.27434 - 3.22388 -2.07654 -1.16377 - 3.09986 -2.56286 -1.06459 - 2.95212 -2.95843 -0.97634 - 2.78618 -3.24777 -0.89860 - 2.78583 -3.24813 -0.89860 - 2.60698 -3.44435 -0.83084 - 2.41987 -3.55976 -0.77233 - 2.22851 -3.60579 -0.72242 - 2.03630 -3.59300 -0.68043 - 1.84613 -3.53109 -0.64569 - 1.84616 -3.52758 -0.64569 - 1.66058 -3.42539 -0.61749 - 1.48136 -3.29089 -0.59519 - 1.31000 -3.13124 -0.57819 - 1.14769 -2.95282 -0.56587 - 0.99527 -2.76125 -0.55764 - 0.99529 -2.75933 -0.55764 - 0.85343 -2.55945 -0.55290 - 0.72236 -2.35544 -0.55119 - 0.60220 -2.15092 -0.55208 - 0.49288 -1.94892 -0.55515 - 0.39422 -1.75198 -0.55997 - 0.39424 -1.75120 -0.55997 - 0.30594 -1.56130 -0.56615 - 0.22754 -1.37999 -0.57341 - 0.15856 -1.20852 -0.58151 - 0.09844 -1.04780 -0.59020 - 0.04660 -0.89843 -0.59925 - 0.04661 -0.89831 -0.59925 - 0.00242 -0.76060 -0.60842 - -0.03473 -0.63463 -0.61760 - -0.06548 -0.52035 -0.62668 - -0.09044 -0.41755 -0.63554 - -0.11022 -0.32589 -0.64408 - -0.11022 -0.32607 -0.64408 - -0.12493 -0.24780 -0.65193 - -0.13587 -0.17895 -0.65936 - -0.14349 -0.11900 -0.66635 - -0.14825 -0.06740 -0.67288 - -0.15056 -0.02355 -0.67891 - -0.15056 -0.02380 -0.67891 - -0.15081 0.01291 -0.68444 - -0.14934 0.04311 -0.68947 - -0.14647 0.06740 -0.69401 - -0.14250 0.08639 -0.69807 - -0.13767 0.10065 -0.70166 - -0.13767 0.10042 -0.70166 - -0.13223 0.11054 -0.70479 - -0.12636 0.11706 -0.70748 - -0.12024 0.12052 -0.70976 - -0.11401 0.12142 -0.71164 - -0.10779 0.12022 -0.71314 - -0.10779 0.12004 -0.71314 - -0.10168 0.11722 -0.71428 - -0.09575 0.11319 -0.71509 - -0.09005 0.10835 -0.71558 - -0.08461 0.10310 -0.71578 - -0.07945 0.09777 -0.71569 - -0.07945 0.09764 -0.71569 - -0.07456 0.09258 -0.71534 - -0.06992 0.08811 -0.71475 - -0.06548 0.08451 -0.71392 - -0.06121 0.08207 -0.71288 - -0.05702 0.08104 -0.71163 - -0.05702 0.08094 -0.71163 - -0.05285 0.08157 -0.71020 - -0.04860 0.08407 -0.70859 - -0.04416 0.08866 -0.70682 - -0.03944 0.09552 -0.70491 - -0.03430 0.10482 -0.70286 - -0.03430 0.10477 -0.70286 - -0.02862 0.11666 -0.70070 - -0.02225 0.13129 -0.69845 - -0.01506 0.14874 -0.69612 - -0.00690 0.16909 -0.69375 + 0.00000 3.61990 -6.00000 + 0.18099 3.61990 -5.74524 + 0.36199 3.61990 -5.49104 + 0.54298 3.61990 -5.23798 + 0.72398 3.61990 -4.98661 + 0.90497 3.61990 -4.73750 + 0.90497 3.61990 -4.73750 + 1.08597 3.61990 -4.49123 + 1.26696 3.61990 -4.24834 + 1.44796 3.61990 -4.00942 + 1.62895 3.61990 -3.77502 + 1.80995 3.61990 -3.54571 + 1.80995 3.61990 -3.54571 + 2.02757 3.64109 -3.27804 + 2.24773 3.70465 -3.01948 + 2.47297 3.81060 -2.77107 + 2.70585 3.95893 -2.53381 + 2.94903 4.15634 -2.30873 + 2.95000 4.13878 -2.30873 + 3.16618 3.03838 -2.09708 + 3.31348 1.88169 -1.89970 + 3.39400 0.82558 -1.71696 + 3.41523 -0.09614 -1.54924 + 3.38493 -0.89442 -1.39693 + 3.38485 -0.90083 -1.39693 + 3.31992 -1.52200 -1.27454 + 3.22371 -2.07494 -1.16397 + 3.09977 -2.56143 -1.06476 + 2.95211 -2.95722 -0.97650 + 2.78623 -3.24677 -0.89875 + 2.78588 -3.24712 -0.89875 + 2.60708 -3.44353 -0.83097 + 2.42001 -3.55910 -0.77246 + 2.22867 -3.60528 -0.72253 + 2.03649 -3.59262 -0.68053 + 1.84633 -3.53083 -0.64577 + 1.84636 -3.52731 -0.64577 + 1.66080 -3.42523 -0.61756 + 1.48158 -3.29081 -0.59526 + 1.31023 -3.13123 -0.57824 + 1.14792 -2.95288 -0.56592 + 0.99549 -2.76136 -0.55767 + 0.99552 -2.75943 -0.55767 + 0.85365 -2.55960 -0.55292 + 0.72257 -2.35563 -0.55121 + 0.60239 -2.15112 -0.55210 + 0.49307 -1.94915 -0.55516 + 0.39439 -1.75222 -0.55998 + 0.39441 -1.75144 -0.55998 + 0.30610 -1.56154 -0.56615 + 0.22769 -1.38023 -0.57341 + 0.15870 -1.20876 -0.58151 + 0.09857 -1.04803 -0.59020 + 0.04671 -0.89866 -0.59924 + 0.04671 -0.89854 -0.59924 + 0.00252 -0.76082 -0.60841 + -0.03465 -0.63484 -0.61759 + -0.06541 -0.52055 -0.62667 + -0.09038 -0.41773 -0.63553 + -0.11016 -0.32606 -0.64407 + -0.11016 -0.32624 -0.64407 + -0.12489 -0.24795 -0.65191 + -0.13583 -0.17909 -0.65935 + -0.14346 -0.11913 -0.66634 + -0.14822 -0.06752 -0.67287 + -0.15054 -0.02365 -0.67890 + -0.15054 -0.02390 -0.67890 + -0.15079 0.01282 -0.68443 + -0.14933 0.04303 -0.68946 + -0.14647 0.06733 -0.69400 + -0.14249 0.08633 -0.69806 + -0.13767 0.10060 -0.70165 + -0.13767 0.10037 -0.70165 + -0.13223 0.11049 -0.70478 + -0.12637 0.11703 -0.70747 + -0.12025 0.12049 -0.70975 + -0.11402 0.12139 -0.71163 + -0.10780 0.12021 -0.71313 + -0.10780 0.12002 -0.71313 + -0.10169 0.11720 -0.71428 + -0.09576 0.11318 -0.71509 + -0.09006 0.10835 -0.71558 + -0.08462 0.10309 -0.71577 + -0.07946 0.09777 -0.71569 + -0.07946 0.09764 -0.71569 + -0.07457 0.09259 -0.71534 + -0.06993 0.08812 -0.71475 + -0.06549 0.08452 -0.71392 + -0.06121 0.08208 -0.71288 + -0.05703 0.08105 -0.71163 + -0.05703 0.08095 -0.71163 + -0.05285 0.08158 -0.71020 + -0.04860 0.08408 -0.70859 + -0.04417 0.08867 -0.70682 + -0.03944 0.09553 -0.70491 + -0.03430 0.10483 -0.70286 + -0.03430 0.10478 -0.70286 + -0.02862 0.11667 -0.70070 + -0.02226 0.13130 -0.69845 + -0.01507 0.14875 -0.69612 + -0.00691 0.16910 -0.69375 0.00238 0.19239 -0.69135 - 0.00238 0.19239 -0.69135 - 0.01118 0.16005 -0.68903 - 0.01843 0.13047 -0.68674 - 0.02427 0.10361 -0.68451 - 0.02883 0.07938 -0.68235 + 0.00237 0.19240 -0.69135 + 0.01117 0.16006 -0.68903 + 0.01843 0.13048 -0.68674 + 0.02427 0.10362 -0.68451 + 0.02883 0.07939 -0.68235 0.03225 0.05770 -0.68028 - 0.03225 0.05774 -0.68028 - 0.03465 0.03848 -0.67831 - 0.03614 0.02150 -0.67646 + 0.03225 0.05775 -0.68028 + 0.03464 0.03848 -0.67831 + 0.03614 0.02151 -0.67646 0.03683 0.00669 -0.67471 - 0.03684 -0.00610 -0.67308 + 0.03684 -0.00609 -0.67308 0.03625 -0.01699 -0.67156 0.03625 -0.01693 -0.67156 - 0.03517 -0.02608 -0.67016 + 0.03517 -0.02607 -0.67016 0.03367 -0.03360 -0.66886 - 0.03184 -0.03964 -0.66767 + 0.03184 -0.03964 -0.66768 0.02973 -0.04431 -0.66659 - 0.02743 -0.04773 -0.66559 + 0.02743 -0.04772 -0.66559 0.02743 -0.04768 -0.66559 0.02498 -0.04996 -0.66468 0.02245 -0.05119 -0.66385 @@ -4303,7 +4266,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4327,124 +4290,112 @@ Status character 0.00000 0.00000 55.98116 8.08685 1 0 A 0.00000 0.00000 58.64518 8.64243 1 0 A 0.00000 0.00000 58.64518 8.64243 1 0 A - 0.00000 0.29430 59.37246 8.79411 1 0 A 0.00000 0.58860 60.09974 8.94578 1 0 A - 0.00000 0.88290 60.82702 9.09746 1 0 A 0.00000 1.17720 61.55430 9.24913 1 0 A - 0.00000 1.47150 62.28158 9.40081 1 0 A - 0.00000 1.47150 62.28158 9.40081 1 0 A 0.00000 1.76580 63.00886 9.55248 1 0 A - 0.00000 2.06010 63.73614 9.70415 1 0 A 0.00000 2.35440 64.46342 9.85583 1 0 A - 0.09010 2.64870 65.19070 10.00750 1 0 A 0.18630 2.94300 65.91798 10.15918 1 0 A 0.18630 2.94300 65.91798 10.15918 1 0 A - 0.28250 3.23730 66.64526 10.31085 1 0 A 0.37871 3.53160 67.37254 10.46253 1 0 A - 0.47491 3.82590 68.09982 10.61420 1 0 A 0.57111 4.12020 68.82710 10.76588 1 0 A - 0.66731 4.41450 69.55438 10.91755 1 0 A - 0.66731 4.41450 69.55438 10.91755 1 0 A 0.76352 4.70880 70.28166 11.06923 1 0 A - 0.85972 5.00310 71.00894 11.22090 1 0 A 0.95592 5.29740 71.73622 11.37258 1 0 A - 1.05212 5.59170 72.46350 11.52425 1 0 A 1.14833 5.88600 73.19078 11.67593 1 0 A 1.14833 5.88600 73.19078 11.67593 1 0 A 1.31935 6.40920 74.48372 11.94557 1 0 A 1.49038 6.93240 75.77666 12.21521 1 0 A - 1.83900 7.45560 77.06960 12.48486 110 0 - - 2.99110 7.97880 78.36255 12.75450 110 0 - - 4.03810 8.50200 79.65549 13.02414 110 0 - - 4.03810 8.50200 79.65549 13.02414 110 0 - - 4.98542 9.02520 80.94843 13.29379 110 0 - - 5.84009 9.54840 82.24137 13.56343 110 0 - - 6.60883 10.07160 83.53431 13.83308 110 0 - - 7.29840 10.59480 84.82726 14.10272 110 0 - - 7.91551 11.11800 86.12020 14.37236 110 0 - - 7.91551 11.11800 86.12020 14.37236 110 0 - - 8.46711 11.64120 87.41314 14.64201 110 0 - - 8.95972 12.16440 88.70608 14.91165 110 0 - - 9.39939 12.68760 89.99902 15.18130 110 0 - - 9.79220 13.21080 91.29196 15.45094 110 0 - - 10.14421 13.73400 92.58491 15.72058 110 0 - - 10.14421 13.73400 92.58491 15.72058 110 0 - - 10.46127 14.25720 93.87785 15.99023 110 0 - - 10.74801 14.78040 95.17079 16.25987 110 0 - - 11.00872 15.30360 96.46373 16.52952 110 0 - - 11.24766 15.82680 97.75667 16.79916 110 0 - - 11.46911 16.35000 99.04961 17.06880 110 0 - - 11.46911 16.35000 99.04961 17.06880 110 0 - - 11.67699 16.87320 100.34256 17.33845 110 0 - + 1.83722 7.45560 77.06960 12.48486 110 0 - + 2.98947 7.97880 78.36255 12.75450 110 0 - + 4.03661 8.50200 79.65549 13.02414 110 0 - + 4.03661 8.50200 79.65549 13.02414 110 0 - + 4.98407 9.02520 80.94843 13.29379 110 0 - + 5.83887 9.54840 82.24137 13.56343 110 0 - + 6.60775 10.07160 83.53431 13.83308 110 0 - + 7.29744 10.59480 84.82726 14.10272 110 0 - + 7.91467 11.11800 86.12020 14.37236 110 0 - + 7.91467 11.11800 86.12020 14.37236 110 0 - + 8.46639 11.64120 87.41314 14.64201 110 0 - + 8.95910 12.16440 88.70608 14.91165 110 0 - + 9.39886 12.68760 89.99902 15.18130 110 0 - + 9.79176 13.21080 91.29196 15.45094 110 0 - + 10.14385 13.73400 92.58491 15.72058 110 0 - + 10.14385 13.73400 92.58491 15.72058 110 0 - + 10.46098 14.25720 93.87785 15.99023 110 0 - + 10.74779 14.78040 95.17079 16.25987 110 0 - + 11.00855 15.30360 96.46373 16.52952 110 0 - + 11.24755 15.82680 97.75667 16.79916 110 0 - + 11.46904 16.35000 99.04961 17.06880 110 0 - + 11.46904 16.35000 99.04961 17.06880 110 0 - + 11.67696 16.87320 100.34256 17.33845 110 0 - 11.87401 17.39640 101.63550 17.60809 110 0 - - 12.06264 17.91960 102.92844 17.87773 110 0 - - 12.24534 18.44280 104.22138 18.14738 110 0 - - 12.42457 18.96600 105.51432 18.41702 110 0 - - 12.42457 18.96600 105.51432 18.41702 110 0 - - 12.60248 19.48920 106.80727 18.68667 110 0 - - 12.78032 20.01240 108.10021 18.95631 110 0 - - 12.95919 20.53560 109.39315 19.22595 110 0 - - 13.14019 21.05880 110.68609 19.49560 110 0 - - 13.32444 21.58200 111.97903 19.76524 110 0 - - 13.32444 21.58200 111.97903 19.76524 110 0 - - 13.50600 22.08651 113.22580 20.02526 110 0 - - 13.69170 22.59103 114.47256 20.28527 110 0 - - 13.88179 23.09554 115.71933 20.54528 110 0 - - 14.07653 23.60006 116.96609 20.80530 110 0 - - 14.27619 24.10457 118.21286 21.06531 110 0 - - 14.27619 24.10457 118.21286 21.06531 110 0 - - 14.48092 24.60909 119.45962 21.32532 110 0 - - 14.69064 25.11360 120.70639 21.58534 110 0 - - 14.90524 25.61811 121.95315 21.84535 110 0 - - 15.12466 26.12263 123.19992 22.10537 110 0 - - 15.34880 26.62714 124.44669 22.36538 110 0 - - 15.34880 26.62714 124.44669 22.36538 110 0 - - 15.57751 27.13166 125.69345 22.62539 110 0 - - 15.81060 27.63617 126.94022 22.88541 110 0 - - 16.04786 28.14069 128.18698 23.14542 110 0 - - 16.28908 28.64520 129.43375 23.40543 110 0 - - 16.53408 29.14971 130.68051 23.66545 110 0 - - 16.53408 29.14971 130.68051 23.66545 110 0 - - 16.78264 29.65423 131.92728 23.92546 110 0 - - 17.03457 30.15874 133.17404 24.18548 110 0 - - 17.28966 30.66326 134.42081 24.44549 110 0 - - 17.54774 31.16777 135.66757 24.70550 110 0 - - 17.80862 31.67229 136.91434 24.96552 110 0 - - 17.80862 31.67229 136.91434 24.96552 110 0 - - 18.07211 32.17680 138.16110 25.22553 110 0 - - 18.33807 32.68131 139.40787 25.48554 110 0 - - 18.60635 33.18583 140.65463 25.74556 110 0 - - 18.87679 33.69034 141.90140 26.00557 110 0 - - 19.14926 34.19486 143.14816 26.26559 110 0 - - 19.14926 34.19486 143.14816 26.26559 110 0 - + 12.06267 17.91960 102.92844 17.87773 110 0 - + 12.24539 18.44280 104.22138 18.14738 110 0 - + 12.42464 18.96600 105.51432 18.41702 110 0 - + 12.42464 18.96600 105.51432 18.41702 110 0 - + 12.60256 19.48920 106.80727 18.68667 110 0 - + 12.78041 20.01240 108.10021 18.95631 110 0 - + 12.95929 20.53560 109.39315 19.22595 110 0 - + 13.14030 21.05880 110.68609 19.49560 110 0 - + 13.32454 21.58200 111.97903 19.76524 110 0 - + 13.32454 21.58200 111.97903 19.76524 110 0 - + 13.50611 22.08651 113.22580 20.02526 110 0 - + 13.69180 22.59103 114.47256 20.28527 110 0 - + 13.88189 23.09554 115.71933 20.54528 110 0 - + 14.07664 23.60006 116.96609 20.80530 110 0 - + 14.27629 24.10457 118.21286 21.06531 110 0 - + 14.27629 24.10457 118.21286 21.06531 110 0 - + 14.48101 24.60909 119.45962 21.32532 110 0 - + 14.69072 25.11360 120.70639 21.58534 110 0 - + 14.90533 25.61811 121.95315 21.84535 110 0 - + 15.12474 26.12263 123.19992 22.10537 110 0 - + 15.34887 26.62714 124.44669 22.36538 110 0 - + 15.34887 26.62714 124.44669 22.36538 110 0 - + 15.57758 27.13166 125.69345 22.62539 110 0 - + 15.81066 27.63617 126.94022 22.88541 110 0 - + 16.04791 28.14069 128.18698 23.14542 110 0 - + 16.28913 28.64520 129.43375 23.40543 110 0 - + 16.53412 29.14971 130.68051 23.66545 110 0 - + 16.53412 29.14971 130.68051 23.66545 110 0 - + 16.78268 29.65423 131.92728 23.92546 110 0 - + 17.03460 30.15874 133.17404 24.18548 110 0 - + 17.28969 30.66326 134.42081 24.44549 110 0 - + 17.54776 31.16777 135.66757 24.70550 110 0 - + 17.80864 31.67229 136.91434 24.96552 110 0 - + 17.80864 31.67229 136.91434 24.96552 110 0 - + 18.07213 32.17680 138.16110 25.22553 110 0 - + 18.33808 32.68131 139.40787 25.48554 110 0 - + 18.60636 33.18583 140.65463 25.74556 110 0 - + 18.87680 33.69034 141.90140 26.00557 110 0 - + 19.14927 34.19486 143.14816 26.26559 110 0 - + 19.14927 34.19486 143.14816 26.26559 110 0 - 19.42362 34.69937 144.39493 26.52560 110 0 - - 19.69972 35.20389 145.64170 26.78561 110 0 - + 19.69973 35.20389 145.64170 26.78561 110 0 - 19.97743 35.70840 146.88846 27.04563 110 0 - 20.25659 36.21291 148.13523 27.30564 110 0 - - 20.53705 36.71743 149.38199 27.56565 110 0 - - 20.53705 36.71743 149.38199 27.56565 110 0 - + 20.53704 36.71743 149.38199 27.56565 110 0 - + 20.53704 36.71743 149.38199 27.56565 110 0 - 20.81866 37.22194 150.62876 27.82567 110 0 - 21.10123 37.72646 151.87552 28.08568 110 0 - - 21.38451 38.23097 153.12229 28.34570 110 0 - - 21.66826 38.73549 154.36905 28.60571 110 0 - + 21.38450 38.23097 153.12229 28.34570 110 0 - + 21.66825 38.73549 154.36905 28.60571 110 0 - 21.95223 39.24000 155.61582 28.86572 110 0 - 18.61791 39.24000 192.44471 25.53140 110 0 - 18.91932 39.73050 194.54160 25.80960 110 0 - - 19.22038 40.22100 196.63849 26.08779 110 0 - - 19.52090 40.71150 198.73538 26.36598 110 0 - - 19.82070 41.20200 200.83227 26.64417 110 0 - - 20.11959 41.69250 202.92916 26.92236 110 0 - - 20.11959 41.69250 202.92916 26.92236 110 0 - + 19.22037 40.22100 196.63849 26.08779 110 0 - + 19.52089 40.71150 198.73538 26.36598 110 0 - + 19.82069 41.20200 200.83227 26.64417 110 0 - + 20.11958 41.69250 202.92916 26.92236 110 0 - + 20.11958 41.69250 202.92916 26.92236 110 0 - 20.41743 42.18300 205.02605 27.20056 110 0 - - 20.71420 42.67350 207.12294 27.47875 110 0 - + 20.71419 42.67350 207.12294 27.47875 110 0 - 21.00985 43.16400 209.21983 27.75694 110 0 - 21.30437 43.65450 211.31672 28.03513 110 0 - 21.59774 44.14500 213.41361 28.31332 110 0 - 21.59774 44.14500 213.41361 28.31332 110 0 - - 21.88996 44.63550 215.51050 28.59151 110 0 - + 21.88995 44.63550 215.51050 28.59151 110 0 - 22.18107 45.12600 217.60739 28.86971 110 0 - 22.47115 45.61650 219.70428 29.14790 110 0 - - 22.76024 46.10700 221.80117 29.42609 110 0 - + 22.76023 46.10700 221.80117 29.42609 110 0 - 23.04839 46.59750 223.89806 29.70428 110 0 - 23.04839 46.59750 223.89806 29.70428 110 0 - 23.33568 47.08800 225.99495 29.98247 110 0 - @@ -4463,7 +4414,7 @@ Status character 26.46134 52.48350 249.06074 33.04258 110 0 - 26.74411 52.97400 251.15763 33.32078 110 0 - 27.02685 53.46450 253.25452 33.59897 110 0 - - 27.30958 53.95500 255.35141 33.87716 110 0 - + 27.30959 53.95500 255.35141 33.87716 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4554,7 +4505,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4583,93 +4534,81 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 17.20475 0.00000 17.20475 0.00000 202 100 P - 18.80316 0.00000 18.80316 0.33335 202 100 P 20.40158 0.00000 20.40158 0.66670 202 100 P - 20.96037 0.00000 21.99999 1.00005 110 95 - - 20.32375 0.00000 23.59841 1.33340 110 86 - - 19.72445 0.00000 25.19683 1.66675 110 78 - - 19.72445 0.00000 25.19683 1.66675 110 78 - - 19.16319 0.00000 26.79524 2.00011 110 72 - - 18.64013 0.00000 28.39366 2.33346 110 66 - - 18.15531 0.00000 29.99208 2.66681 110 61 - - 17.70879 0.00000 31.59050 3.00016 110 56 - - 17.30060 0.00000 33.18891 3.33351 110 52 - - 17.30060 0.00000 33.18891 3.33351 110 52 - - 16.34653 0.52320 34.48185 3.60315 110 47 - - 15.51054 1.04640 35.77480 3.87280 110 43 - - 14.78830 1.56960 37.06774 4.14244 110 40 - - 14.17549 2.09280 38.36068 4.41208 110 37 - - 13.66777 2.61600 39.65362 4.68173 110 34 - - 13.66777 2.61600 39.65362 4.68173 110 34 - - 13.25974 3.13920 40.94656 4.95137 110 32 - - 12.94436 3.66240 42.23951 5.22102 110 31 - - 12.71490 4.18560 43.53245 5.49066 110 29 - - 12.56463 4.70880 44.82539 5.76030 110 28 - - 12.48680 5.23200 46.11833 6.02995 110 27 - - 12.48680 5.23200 46.11833 6.02995 110 27 - - 12.47449 5.75520 47.41127 6.29959 110 26 - - 12.52117 6.27840 48.70421 6.56924 110 26 - - 12.62079 6.80160 49.99716 6.83888 110 25 - - 12.76726 7.32480 51.29010 7.10852 110 25 - - 12.95454 7.84800 52.58304 7.37817 110 25 - - 12.95454 7.84800 52.58304 7.37817 110 25 - - 13.17677 8.37120 53.87598 7.64781 110 24 - - 13.42931 8.89440 55.16892 7.91746 110 24 - - 13.70790 9.41760 56.46186 8.18710 110 24 - - 14.00824 9.94080 57.75481 8.45674 110 24 - - 14.32608 10.46400 59.04775 8.72639 110 24 - - 14.32608 10.46400 59.04775 8.72639 110 24 - - 14.65749 10.98720 60.34069 8.99603 110 24 - + 20.33038 0.00000 23.59841 1.33340 110 86 - + 19.16967 0.00000 26.79524 2.00011 110 72 - + 18.15920 0.00000 29.99208 2.66681 110 61 - + 17.30277 0.00000 33.18891 3.33351 110 52 - + 17.30277 0.00000 33.18891 3.33351 110 52 - + 16.34858 0.52320 34.48185 3.60315 110 47 - + 15.51246 1.04640 35.77480 3.87280 110 43 - + 14.79008 1.56960 37.06774 4.14244 110 40 - + 14.17712 2.09280 38.36068 4.41208 110 37 - + 13.66927 2.61600 39.65362 4.68173 110 34 - + 13.66927 2.61600 39.65362 4.68173 110 34 - + 13.26109 3.13920 40.94656 4.95137 110 32 - + 12.94558 3.66240 42.23951 5.22102 110 31 - + 12.71599 4.18560 43.53245 5.49066 110 29 - + 12.56559 4.70880 44.82539 5.76030 110 28 - + 12.48764 5.23200 46.11833 6.02995 110 27 - + 12.48764 5.23200 46.11833 6.02995 110 27 - + 12.47521 5.75520 47.41127 6.29959 110 26 - + 12.52179 6.27840 48.70421 6.56924 110 26 - + 12.62131 6.80160 49.99716 6.83888 110 25 - + 12.76770 7.32480 51.29010 7.10852 110 25 - + 12.95490 7.84800 52.58304 7.37817 110 25 - + 12.95490 7.84800 52.58304 7.37817 110 25 - + 13.17706 8.37120 53.87598 7.64781 110 24 - + 13.42954 8.89440 55.16892 7.91746 110 24 - + 13.70806 9.41760 56.46186 8.18710 110 24 - + 14.00836 9.94080 57.75481 8.45674 110 24 - + 14.32615 10.46400 59.04775 8.72639 110 24 - + 14.32615 10.46400 59.04775 8.72639 110 24 - + 14.65752 10.98720 60.34069 8.99603 110 24 - 14.99975 11.51040 61.63363 9.26567 110 24 - - 15.35041 12.03360 62.92657 9.53532 110 24 - - 15.70700 12.55680 64.21952 9.80496 110 24 - - 16.06706 13.08000 65.51246 10.07461 110 25 - - 16.06706 13.08000 65.51246 10.07461 110 25 - - 16.42843 13.60320 66.80540 10.34425 110 25 - - 16.78988 14.12640 68.09834 10.61389 110 25 - - 17.15030 14.64960 69.39128 10.88354 110 25 - - 17.50859 15.17280 70.68422 11.15318 110 25 - - 17.86363 15.69600 71.97717 11.42283 110 25 - - 17.86363 15.69600 71.97717 11.42283 110 25 - - 18.20209 16.20051 73.22393 11.68284 110 25 - - 18.53643 16.70503 74.47070 11.94285 110 25 - - 18.86636 17.20954 75.71746 12.20287 110 25 - - 19.19164 17.71406 76.96423 12.46288 110 25 - - 19.51201 18.21857 78.21099 12.72289 110 25 - - 19.51201 18.21857 78.21099 12.72289 110 25 - - 19.82731 18.72309 79.45776 12.98291 110 25 - - 20.13762 19.22760 80.70452 13.24292 110 25 - - 20.44304 19.73211 81.95129 13.50294 110 25 - - 20.74365 20.23663 83.19805 13.76295 110 25 - - 21.03955 20.74114 84.44482 14.02296 110 25 - - 21.03955 20.74114 84.44482 14.02296 110 25 - - 21.33086 21.24566 85.69158 14.28298 110 25 - - 21.61780 21.75017 86.93835 14.54299 110 25 - - 21.90057 22.25469 88.18511 14.80300 110 25 - - 22.17937 22.75920 89.43188 15.06302 110 25 - - 22.45440 23.26371 90.67865 15.32303 110 25 - - 22.45440 23.26371 90.67865 15.32303 110 25 - - 22.72586 23.76823 91.92541 15.58305 110 25 - - 22.99397 24.27274 93.17218 15.84306 110 25 - - 23.25890 24.77726 94.41894 16.10307 110 25 - - 23.52085 25.28177 95.66571 16.36309 110 25 - - 23.78000 25.78629 96.91247 16.62310 110 25 - - 23.78000 25.78629 96.91247 16.62310 110 25 - - 24.03653 26.29080 98.15924 16.88311 110 24 - - 24.29060 26.79531 99.40600 17.14313 110 24 - - 24.54235 27.29983 100.65277 17.40314 110 24 - - 24.79193 27.80434 101.89953 17.66316 110 24 - + 15.35039 12.03360 62.92657 9.53532 110 24 - + 15.70696 12.55680 64.21952 9.80496 110 24 - + 16.06699 13.08000 65.51246 10.07461 110 25 - + 16.06699 13.08000 65.51246 10.07461 110 25 - + 16.42835 13.60320 66.80540 10.34425 110 25 - + 16.78979 14.12640 68.09834 10.61389 110 25 - + 17.15020 14.64960 69.39128 10.88354 110 25 - + 17.50848 15.17280 70.68422 11.15318 110 25 - + 17.86352 15.69600 71.97717 11.42283 110 25 - + 17.86352 15.69600 71.97717 11.42283 110 25 - + 18.20199 16.20051 73.22393 11.68284 110 25 - + 18.53632 16.70503 74.47070 11.94285 110 25 - + 18.86626 17.20954 75.71746 12.20287 110 25 - + 19.19154 17.71406 76.96423 12.46288 110 25 - + 19.51191 18.21857 78.21099 12.72289 110 25 - + 19.51191 18.21857 78.21099 12.72289 110 25 - + 19.82722 18.72309 79.45776 12.98291 110 25 - + 20.13754 19.22760 80.70452 13.24292 110 25 - + 20.44296 19.73211 81.95129 13.50294 110 25 - + 20.74358 20.23663 83.19805 13.76295 110 25 - + 21.03948 20.74114 84.44482 14.02296 110 25 - + 21.03948 20.74114 84.44482 14.02296 110 25 - + 21.33079 21.24566 85.69158 14.28298 110 25 - + 21.61774 21.75017 86.93835 14.54299 110 25 - + 21.90052 22.25469 88.18511 14.80300 110 25 - + 22.17932 22.75920 89.43188 15.06302 110 25 - + 22.45436 23.26371 90.67865 15.32303 110 25 - + 22.45436 23.26371 90.67865 15.32303 110 25 - + 22.72583 23.76823 91.92541 15.58305 110 25 - + 22.99394 24.27274 93.17218 15.84306 110 25 - + 23.25887 24.77726 94.41894 16.10307 110 25 - + 23.52083 25.28177 95.66571 16.36309 110 25 - + 23.77998 25.78629 96.91247 16.62310 110 25 - + 23.77998 25.78629 96.91247 16.62310 110 25 - + 24.03652 26.29080 98.15924 16.88311 110 24 - + 24.29059 26.79531 99.40600 17.14313 110 24 - + 24.54234 27.29983 100.65277 17.40314 110 24 - + 24.79192 27.80434 101.89953 17.66316 110 24 - 25.03949 28.30886 103.14630 17.92317 110 24 - 25.03949 28.30886 103.14630 17.92317 110 24 - 25.28516 28.81337 104.39306 18.18318 110 24 - - 25.52909 29.31789 105.63983 18.44320 110 24 - + 25.52908 29.31789 105.63983 18.44320 110 24 - 25.77141 29.82240 106.88659 18.70321 110 24 - 26.01228 30.32691 108.13336 18.96322 110 24 - 26.25185 30.83143 109.38012 19.22324 110 24 - @@ -4679,14 +4618,14 @@ Status character 26.96447 32.34497 113.12042 20.00328 110 24 - 27.20075 32.84949 114.36719 20.26329 110 24 - 27.43680 33.35400 115.61395 20.52331 110 24 - - 25.06612 33.35400 136.82671 18.15263 110 18 - + 25.06613 33.35400 136.82671 18.15263 110 18 - 25.32110 33.84450 138.92360 18.43082 110 18 - 25.57643 34.33500 141.02049 18.70902 110 18 - 25.83229 34.82550 143.11738 18.98721 110 18 - - 26.08887 35.31600 145.21427 19.26540 110 18 - - 26.34636 35.80650 147.31116 19.54359 110 18 - - 26.34636 35.80650 147.31116 19.54359 110 18 - - 26.60490 36.29700 149.40805 19.82178 110 18 - + 26.08888 35.31600 145.21427 19.26540 110 18 - + 26.34637 35.80650 147.31116 19.54359 110 18 - + 26.34637 35.80650 147.31116 19.54359 110 18 - + 26.60491 36.29700 149.40805 19.82178 110 18 - 26.86453 36.78750 151.50494 20.09997 110 18 - 27.12526 37.27800 153.60183 20.37817 110 18 - 27.38712 37.76850 155.69872 20.65636 110 18 - @@ -4706,13 +4645,13 @@ Status character 30.33386 43.16400 178.76451 23.71647 110 17 - 30.60605 43.65450 180.86140 23.99466 110 17 - 30.87863 44.14500 182.95829 24.27285 110 17 - - 31.15153 44.63550 185.05518 24.55104 110 17 - + 31.15154 44.63550 185.05518 24.55104 110 17 - 31.42469 45.12600 187.15207 24.82924 110 17 - 31.69803 45.61650 189.24896 25.10743 110 17 - 31.69803 45.61650 189.24896 25.10743 110 17 - 31.97150 46.10700 191.34585 25.38562 110 17 - 32.24505 46.59750 193.44274 25.66381 110 17 - - 32.51867 47.08800 195.53963 25.94200 110 17 - + 32.51866 47.08800 195.53963 25.94200 110 17 - 32.79231 47.57850 197.63652 26.22020 110 17 - 33.06596 48.06900 199.73341 26.49839 110 17 - [END OF DATA] @@ -4727,7 +4666,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 70.151 'Clay, sl san, moderate' + 4.00 70.137 'Clay, sl san, moderate' -4.00 43.517 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -4741,7 +4680,7 @@ Contribution Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 18.80 'Clay, sl san, moderate' + 4.00 18.79 'Clay, sl san, moderate' -4.00 22.17 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -4750,7 +4689,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -4768,28 +4707,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -4939,15 +4866,15 @@ Name 25.63 : Percentage mobilized resistance left 7.93 : Percentage mobilized resistance right 53.42 : Effective left - 54.69 : Effective right + 54.70 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right 208.43 : Max effective resistance left 689.56 : Max effective resistance right -949.80 : Max moment left -2498.16 : Max moment right - -230.57 : Max mobilized moment left - -232.73 : Max mobilized moment right + -230.56 : Max mobilized moment left + -232.74 : Max mobilized moment right 21.44 : Vertical force left 21.74 : Vertical force right 24.3 : Max mobilized moment percentage left @@ -4974,163 +4901,151 @@ Name [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00010 10.43179 -6.00000 - 0.52169 10.43179 -5.79453 - 1.04328 10.43179 -5.59069 - 1.56487 10.43179 -5.39012 - 2.08646 10.43179 -5.19443 - 2.60805 10.43179 -5.00526 - 2.60804 -1.52268 -5.00526 - 2.53190 -1.52268 -4.82394 - 2.45577 -1.52268 -4.65052 - 2.37963 -1.52268 -4.48478 - 2.30350 -1.52268 -4.32647 - 2.22737 -1.52268 -4.17537 - 2.22737 -1.52268 -4.17537 - 2.18168 -1.52268 -4.08806 - 2.13600 -1.52268 -4.00321 - 2.09032 -1.52268 -3.92076 - 2.04464 -1.52268 -3.84066 - 1.99896 -1.52268 -3.76286 - 1.99896 -1.52268 -3.76286 - 1.95328 -1.52268 -3.68731 - 1.90760 -1.52268 -3.61396 - 1.86192 -1.52268 -3.54275 - 1.81624 -1.52268 -3.47364 - 1.77056 -1.52268 -3.40657 - 1.77067 -1.52565 -3.40657 - 1.72490 -1.52565 -3.34149 - 1.67913 -1.52565 -3.27836 - 1.63336 -1.52565 -3.21711 - 1.58759 -1.52565 -3.15770 - 1.54182 -1.52565 -3.10008 - 1.54171 -1.52816 -3.10008 - 1.49586 -1.52816 -3.04419 - 1.45002 -1.52816 -2.98998 - 1.40417 -1.52816 -2.93741 - 1.35833 -1.52816 -2.88641 - 1.31248 -1.52816 -2.83695 - 1.31275 -1.53133 -2.83695 - 1.23108 -1.53133 -2.75262 - 1.14941 -1.53133 -2.67267 - 1.06774 -1.53133 -2.59680 - 0.98607 -1.53133 -2.52474 - 0.90443 -1.52986 -2.45618 - 0.90408 -1.53021 -2.45618 - 0.82264 -1.52181 -2.39083 - 0.74195 -1.50247 -2.32840 - 0.66258 -1.47218 -2.26862 - 0.58511 -1.43094 -2.21120 - 0.51014 -1.37876 -2.15585 - 0.51017 -1.37524 -2.15585 - 0.43846 -1.31211 -2.10231 - 0.37040 -1.23804 -2.05033 - 0.30659 -1.15302 -1.99968 - 0.24761 -1.05705 -1.95013 - 0.19404 -0.95014 -1.90146 - 0.19406 -0.94822 -1.90146 - 0.14658 -0.83036 -1.85346 - 0.10568 -0.70156 -1.80597 - 0.07194 -0.56181 -1.75889 - 0.04595 -0.41112 -1.71208 - 0.02829 -0.24948 -1.66544 - 0.02830 -0.24870 -1.66544 - 0.01959 -0.07611 -1.61886 - 0.02038 0.10742 -1.57234 - 0.03124 0.30190 -1.52593 - 0.05277 0.50732 -1.47966 - 0.08555 0.72369 -1.43358 - 0.08557 0.72365 -1.43358 - 0.13018 0.95097 -1.38775 - 0.18721 1.18923 -1.34238 - 0.25723 1.43843 -1.29772 - 0.34083 1.69858 -1.25402 - 0.43874 1.97742 -1.21152 - 0.43860 1.97258 -1.21152 - 0.52848 1.53090 -1.17203 - 0.59688 1.13689 -1.13428 - 0.64620 0.78828 -1.09845 - 0.67870 0.48262 -1.06471 - 0.69653 0.21721 -1.03321 - 0.69653 0.21836 -1.03321 - 0.70174 -0.00963 -1.00408 - 0.69613 -0.20309 -0.97726 - 0.68139 -0.36485 -0.95272 - 0.65910 -0.49770 -0.93041 - 0.63065 -0.60435 -0.91028 - 0.63066 -0.60329 -0.91028 - 0.59740 -0.68640 -0.89226 - 0.56041 -0.74849 -0.87621 - 0.52073 -0.79190 -0.86200 - 0.47924 -0.81884 -0.84952 - 0.43675 -0.83135 -0.83862 - 0.43676 -0.83061 -0.83862 - 0.39399 -0.83056 -0.82916 - 0.35152 -0.81964 -0.82101 - 0.30985 -0.79937 -0.81402 - 0.26943 -0.77111 -0.80806 - 0.23065 -0.73605 -0.80299 - 0.23066 -0.73565 -0.80299 - 0.19385 -0.69480 -0.79868 - 0.15927 -0.64901 -0.79500 - 0.12717 -0.59903 -0.79186 - 0.09772 -0.54542 -0.78915 - 0.07112 -0.48867 -0.78676 - 0.07112 -0.48855 -0.78676 - 0.04752 -0.42898 -0.78459 - 0.02704 -0.36685 -0.78258 - 0.00983 -0.30229 -0.78067 - -0.00401 -0.23540 -0.77881 - -0.01435 -0.16620 -0.77692 - -0.01435 -0.16621 -0.77692 - -0.02106 -0.09464 -0.77498 - -0.02404 -0.02063 -0.77296 - -0.02314 0.05591 -0.77088 - -0.01824 0.13506 -0.76873 - -0.00920 0.21689 -0.76652 - -0.00921 0.21688 -0.76652 - 0.00079 0.18349 -0.76434 - 0.00919 0.15271 -0.76216 - 0.01611 0.12453 -0.76001 - 0.02168 0.09891 -0.75790 - 0.02604 0.07578 -0.75586 - 0.02604 0.07582 -0.75586 - 0.02930 0.05509 -0.75390 - 0.03159 0.03665 -0.75204 - 0.03300 0.02038 -0.75027 - 0.03366 0.00618 -0.74861 - 0.03365 -0.00609 -0.74705 - 0.03365 -0.00604 -0.74705 - 0.03308 -0.01650 -0.74560 - 0.03203 -0.02528 -0.74425 - 0.03058 -0.03251 -0.74300 - 0.02880 -0.03828 -0.74184 - 0.02677 -0.04273 -0.74078 - 0.02677 -0.04269 -0.74078 - 0.02455 -0.04590 -0.73979 - 0.02220 -0.04799 -0.73889 - 0.01977 -0.04903 -0.73805 - 0.01732 -0.04911 -0.73728 - 0.01488 -0.04829 -0.73656 - 0.01488 -0.04827 -0.73656 - 0.01250 -0.04661 -0.73589 - 0.01023 -0.04417 -0.73525 - 0.00810 -0.04099 -0.73465 - 0.00614 -0.03711 -0.73408 - 0.00440 -0.03254 -0.73352 - 0.00440 -0.03253 -0.73352 - 0.00290 -0.02731 -0.73298 - 0.00168 -0.02143 -0.73244 - 0.00077 -0.01492 -0.73191 - 0.00020 -0.00778 -0.73139 - 0.00000 0.00000 -0.73086 + 0.00000 10.44105 -6.00000 + 0.52205 10.44105 -5.79416 + 1.04411 10.44105 -5.58995 + 1.56616 10.44105 -5.38900 + 2.08821 10.44105 -5.19295 + 2.61026 10.44105 -5.00343 + 2.61026 -1.51328 -5.00343 + 2.53460 -1.51328 -4.82175 + 2.45893 -1.51328 -4.64799 + 2.38327 -1.51328 -4.48191 + 2.30761 -1.51328 -4.32328 + 2.23194 -1.51328 -4.17187 + 2.23194 -1.51328 -4.17187 + 2.14115 -1.51328 -3.99935 + 2.05035 -1.51328 -3.83647 + 1.95955 -1.51328 -3.68282 + 1.86875 -1.51328 -3.53799 + 1.77796 -1.51328 -3.40156 + 1.77893 -1.53085 -3.40156 + 1.68708 -1.53085 -3.27314 + 1.59523 -1.53085 -3.15231 + 1.50338 -1.53085 -3.03865 + 1.41153 -1.53085 -2.93177 + 1.31968 -1.53085 -2.83123 + 1.31960 -1.53726 -2.83123 + 1.23761 -1.53726 -2.74687 + 1.15562 -1.53726 -2.66690 + 1.07363 -1.53726 -2.59104 + 0.99165 -1.53726 -2.51900 + 0.90969 -1.53579 -2.45049 + 0.90934 -1.53614 -2.45049 + 0.82759 -1.52774 -2.38520 + 0.74658 -1.50840 -2.32286 + 0.66689 -1.47811 -2.26318 + 0.58911 -1.43687 -2.20587 + 0.51382 -1.38469 -2.15066 + 0.51385 -1.38117 -2.15066 + 0.44182 -1.31804 -2.09726 + 0.37345 -1.24397 -2.04543 + 0.30932 -1.15895 -1.99494 + 0.25002 -1.06298 -1.94557 + 0.19613 -0.95607 -1.89709 + 0.19616 -0.95415 -1.89709 + 0.14836 -0.83629 -1.84928 + 0.10715 -0.70749 -1.80199 + 0.07309 -0.56774 -1.75510 + 0.04678 -0.41705 -1.70850 + 0.02880 -0.25541 -1.66207 + 0.02882 -0.25463 -1.66207 + 0.01979 -0.08204 -1.61570 + 0.02026 0.10149 -1.56939 + 0.03081 0.29597 -1.52320 + 0.05203 0.50139 -1.47714 + 0.08449 0.71776 -1.43127 + 0.08451 0.71772 -1.43127 + 0.12880 0.94504 -1.38564 + 0.18551 1.18330 -1.34047 + 0.25521 1.43250 -1.29600 + 0.33850 1.69266 -1.25248 + 0.43610 1.97193 -1.21017 + 0.43596 1.96710 -1.21017 + 0.52560 1.52700 -1.17083 + 0.59384 1.13437 -1.13324 + 0.64306 0.78696 -1.09755 + 0.67552 0.48232 -1.06394 + 0.69336 0.21779 -1.03257 + 0.69335 0.21893 -1.03257 + 0.69862 -0.00833 -1.00354 + 0.69309 -0.20119 -0.97683 + 0.67846 -0.36248 -0.95238 + 0.65630 -0.49495 -0.93015 + 0.62800 -0.60133 -0.91009 + 0.62800 -0.60028 -0.91009 + 0.59491 -0.68319 -0.89213 + 0.55809 -0.74515 -0.87614 + 0.51858 -0.78851 -0.86198 + 0.47727 -0.81545 -0.84953 + 0.43495 -0.82800 -0.83867 + 0.43496 -0.82726 -0.83867 + 0.39236 -0.82729 -0.82924 + 0.35005 -0.81648 -0.82111 + 0.30854 -0.79635 -0.81414 + 0.26828 -0.76825 -0.80819 + 0.22964 -0.73335 -0.80313 + 0.22964 -0.73296 -0.80313 + 0.19297 -0.69228 -0.79882 + 0.15852 -0.64668 -0.79515 + 0.12653 -0.59688 -0.79201 + 0.09719 -0.54346 -0.78930 + 0.07068 -0.48690 -0.78691 + 0.07069 -0.48677 -0.78691 + 0.04717 -0.42738 -0.78474 + 0.02677 -0.36542 -0.78272 + 0.00963 -0.30102 -0.78080 + -0.00415 -0.23429 -0.77893 + -0.01443 -0.16523 -0.77704 + -0.01443 -0.16525 -0.77704 + -0.02110 -0.09382 -0.77509 + -0.02404 -0.01993 -0.77306 + -0.02311 0.05649 -0.77097 + -0.01818 0.13553 -0.76881 + -0.00912 0.21728 -0.76660 + -0.00912 0.21726 -0.76660 + 0.00089 0.18379 -0.76441 + 0.00930 0.15293 -0.76222 + 0.01623 0.12469 -0.76006 + 0.02181 0.09901 -0.75795 + 0.02617 0.07583 -0.75590 + 0.02617 0.07587 -0.75590 + 0.02943 0.05509 -0.75394 + 0.03172 0.03661 -0.75207 + 0.03313 0.02031 -0.75030 + 0.03378 0.00608 -0.74863 + 0.03377 -0.00621 -0.74707 + 0.03377 -0.00616 -0.74707 + 0.03319 -0.01664 -0.74561 + 0.03214 -0.02543 -0.74426 + 0.03068 -0.03266 -0.74300 + 0.02889 -0.03845 -0.74184 + 0.02686 -0.04289 -0.74078 + 0.02686 -0.04285 -0.74078 + 0.02463 -0.04607 -0.73979 + 0.02227 -0.04815 -0.73889 + 0.01983 -0.04919 -0.73805 + 0.01736 -0.04926 -0.73728 + 0.01492 -0.04844 -0.73655 + 0.01492 -0.04841 -0.73655 + 0.01254 -0.04675 -0.73588 + 0.01026 -0.04430 -0.73525 + 0.00812 -0.04111 -0.73464 + 0.00616 -0.03721 -0.73407 + 0.00441 -0.03263 -0.73351 + 0.00441 -0.03262 -0.73351 + 0.00291 -0.02738 -0.73296 + 0.00168 -0.02149 -0.73243 + 0.00077 -0.01496 -0.73190 + 0.00020 -0.00779 -0.73137 + 0.00000 0.00000 -0.73085 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5192,7 +5107,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5203,7 +5118,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 17.20475 0.00000 110 0 - + 0.00000 0.00000 17.20475 0.00000 1 0 A 0.00000 0.00000 19.86877 0.55558 1 0 A 0.00000 0.00000 22.53280 1.11117 1 0 A 0.00000 0.00000 25.19683 1.66675 1 0 A @@ -5216,28 +5131,16 @@ Status character 0.00000 0.00000 41.18100 5.00026 1 0 A 0.00000 0.00000 43.84503 5.55585 1 0 A 0.00000 0.00000 43.84503 5.55585 1 0 A - 0.00000 0.29430 44.57231 5.70752 1 0 A 0.00000 0.58860 45.29959 5.85920 1 0 A - 0.00000 0.88290 46.02687 6.01087 1 0 A 0.00000 1.17720 46.75415 6.16255 1 0 A - 0.00000 1.47150 47.48142 6.31422 1 0 A - 0.00000 1.47150 47.48142 6.31422 1 0 A 0.00000 1.76580 48.20870 6.46590 1 0 A - 0.00000 2.06010 48.93598 6.61757 1 0 A 0.00000 2.35440 49.66326 6.76925 1 0 A - 0.00000 2.64870 50.39054 6.92092 1 0 A 0.00000 2.94300 51.11782 7.07260 1 0 A 0.00000 2.94300 51.11782 7.07260 1 0 A - 0.00000 3.23730 51.84510 7.22427 1 0 A 0.00000 3.53160 52.57238 7.37595 1 0 A - 0.00000 3.82590 53.29966 7.52762 1 0 A 0.00000 4.12020 54.02694 7.67929 1 0 A - 0.00000 4.41450 54.75422 7.83097 1 0 A - 0.00000 4.41450 54.75422 7.83097 1 0 A 0.00000 4.70880 55.48150 7.98264 1 0 A - 0.00000 5.00310 56.20878 8.13432 1 0 A 0.00000 5.29740 56.93606 8.28599 1 0 A - 0.00000 5.59170 57.66334 8.43767 1 0 A 0.00000 5.88600 58.39062 8.58934 1 0 A 0.00000 5.88600 58.39062 8.58934 1 0 A 0.00000 6.40920 59.68356 8.85899 1 0 A @@ -5274,85 +5177,85 @@ Status character 3.80833 20.01240 93.30005 15.86973 1 0 A 3.97935 20.53560 94.59299 16.13937 1 0 A 4.15038 21.05880 95.88593 16.40902 1 0 A - 4.56343 21.58200 97.17887 16.67866 110 0 - - 4.56343 21.58200 97.17887 16.67866 110 0 - - 5.21840 22.08651 98.42564 16.93867 110 0 - - 5.85587 22.59103 99.67241 17.19869 110 0 - - 6.47418 23.09554 100.91917 17.45870 110 0 - - 7.07164 23.60006 102.16594 17.71871 110 0 - - 7.64659 24.10457 103.41270 17.97873 110 0 - - 7.64659 24.10457 103.41270 17.97873 110 0 - - 8.19797 24.60909 104.65947 18.23874 110 0 - - 8.72614 25.11360 105.90623 18.49876 110 0 - - 9.23157 25.61811 107.15300 18.75877 110 0 - - 9.71471 26.12263 108.39976 19.01878 110 0 - - 10.17601 26.62714 109.64653 19.27880 110 0 - - 10.17601 26.62714 109.64653 19.27880 110 0 - - 10.61625 27.13166 110.89329 19.53881 110 0 - - 11.03674 27.63617 112.14006 19.79882 110 0 - - 11.43879 28.14069 113.38682 20.05884 110 0 - - 11.82367 28.64520 114.63359 20.31885 110 0 - - 12.19270 29.14971 115.88035 20.57887 110 0 - - 12.19270 29.14971 115.88035 20.57887 110 0 - - 12.54726 29.65423 117.12712 20.83888 110 0 - - 12.88881 30.15874 118.37388 21.09889 110 0 - - 13.21870 30.66326 119.62065 21.35891 110 0 - - 13.53832 31.16777 120.86742 21.61892 110 0 - - 13.84903 31.67229 122.11418 21.87893 110 0 - - 13.84903 31.67229 122.11418 21.87893 110 0 - - 14.15218 32.17680 123.36095 22.13895 110 0 - - 14.44894 32.68131 124.60771 22.39896 110 0 - - 14.74035 33.18583 125.85448 22.65898 110 0 - - 15.02749 33.69034 127.10124 22.91899 110 0 - - 15.31139 34.19486 128.34801 23.17900 110 0 - - 15.31139 34.19486 128.34801 23.17900 110 0 - - 15.59307 34.69937 129.59477 23.43902 110 0 - - 15.87318 35.20389 130.84154 23.69903 110 0 - - 16.15230 35.70840 132.08830 23.95904 110 0 - - 16.43100 36.21291 133.33507 24.21906 110 0 - - 16.70983 36.71743 134.58183 24.47907 110 0 - - 16.70983 36.71743 134.58183 24.47907 110 0 - - 16.98929 37.22194 135.82860 24.73908 110 0 - - 17.26946 37.72646 137.07536 24.99910 110 0 - - 17.55031 38.23097 138.32213 25.25911 110 0 - - 17.83180 38.73549 139.56889 25.51913 110 0 - - 18.11390 39.24000 140.81566 25.77914 110 0 - - 15.13612 39.24000 171.86679 22.80136 110 0 - - 15.43613 39.73050 173.96368 23.07955 110 0 - - 15.73612 40.22100 176.06057 23.35774 110 0 - - 16.03586 40.71150 178.15746 23.63593 110 0 - - 16.33513 41.20200 180.25435 23.91412 110 0 - - 16.63373 41.69250 182.35124 24.19232 110 0 - - 16.63373 41.69250 182.35124 24.19232 110 0 - - 16.93146 42.18300 184.44813 24.47051 110 0 - - 17.22829 42.67350 186.54502 24.74870 110 0 - - 17.52414 43.16400 188.64191 25.02689 110 0 - - 17.81899 43.65450 190.73880 25.30508 110 0 - - 18.11278 44.14500 192.83569 25.58328 110 0 - - 18.11278 44.14500 192.83569 25.58328 110 0 - - 18.40550 44.63550 194.93258 25.86147 110 0 - - 18.69719 45.12600 197.02947 26.13966 110 0 - - 18.98788 45.61650 199.12636 26.41785 110 0 - - 19.27763 46.10700 201.22325 26.69604 110 0 - - 19.56648 46.59750 203.32014 26.97423 110 0 - - 19.56648 46.59750 203.32014 26.97423 110 0 - - 19.85448 47.08800 205.41703 27.25243 110 0 - - 20.14172 47.57850 207.51392 27.53062 110 0 - - 20.42826 48.06900 209.61081 27.80881 110 0 - - 20.71419 48.55950 211.70770 28.08700 110 0 - - 20.99957 49.05000 213.80459 28.36519 110 0 - - 20.99957 49.05000 213.80459 28.36519 110 0 - - 21.28450 49.54050 215.90148 28.64339 110 0 - - 21.56903 50.03100 217.99837 28.92158 110 0 - - 21.85324 50.52150 220.09526 29.19977 110 0 - - 22.13719 51.01200 222.19215 29.47796 110 0 - - 22.42095 51.50250 224.28904 29.75615 110 0 - - 22.42095 51.50250 224.28904 29.75615 110 0 - - 22.70458 51.99300 226.38593 30.03434 110 0 - - 22.98812 52.48350 228.48282 30.31254 110 0 - - 23.27160 52.97400 230.57971 30.59073 110 0 - - 23.55504 53.46450 232.67660 30.86892 110 0 - - 23.83848 53.95500 234.77349 31.14711 110 0 - + 4.57700 21.58200 97.17887 16.67866 110 0 - + 4.57700 21.58200 97.17887 16.67866 110 0 - + 5.23035 22.08651 98.42564 16.93867 110 0 - + 5.86629 22.59103 99.67241 17.19869 110 0 - + 6.48317 23.09554 100.91917 17.45870 110 0 - + 7.07931 23.60006 102.16594 17.71871 110 0 - + 7.65304 24.10457 103.41270 17.97873 110 0 - + 7.65304 24.10457 103.41270 17.97873 110 0 - + 8.20330 24.60909 104.65947 18.23874 110 0 - + 8.73047 25.11360 105.90623 18.49876 110 0 - + 9.23499 25.61811 107.15300 18.75877 110 0 - + 9.71731 26.12263 108.39976 19.01878 110 0 - + 10.17790 26.62714 109.64653 19.27880 110 0 - + 10.17790 26.62714 109.64653 19.27880 110 0 - + 10.61751 27.13166 110.89329 19.53881 110 0 - + 11.03745 27.63617 112.14006 19.79882 110 0 - + 11.43902 28.14069 113.38682 20.05884 110 0 - + 11.82350 28.64520 114.63359 20.31885 110 0 - + 12.19219 29.14971 115.88035 20.57887 110 0 - + 12.19219 29.14971 115.88035 20.57887 110 0 - + 12.54647 29.65423 117.12712 20.83888 110 0 - + 12.88779 30.15874 118.37388 21.09889 110 0 - + 13.21752 30.66326 119.62065 21.35891 110 0 - + 13.53700 31.16777 120.86742 21.61892 110 0 - + 13.84761 31.67229 122.11418 21.87893 110 0 - + 13.84761 31.67229 122.11418 21.87893 110 0 - + 14.15071 32.17680 123.36095 22.13895 110 0 - + 14.44743 32.68131 124.60771 22.39896 110 0 - + 14.73884 33.18583 125.85448 22.65898 110 0 - + 15.02599 33.69034 127.10124 22.91899 110 0 - + 15.30993 34.19486 128.34801 23.17900 110 0 - + 15.30993 34.19486 128.34801 23.17900 110 0 - + 15.59165 34.69937 129.59477 23.43902 110 0 - + 15.87182 35.20389 130.84154 23.69903 110 0 - + 16.15101 35.70840 132.08830 23.95904 110 0 - + 16.42978 36.21291 133.33507 24.21906 110 0 - + 16.70869 36.71743 134.58183 24.47907 110 0 - + 16.70869 36.71743 134.58183 24.47907 110 0 - + 16.98823 37.22194 135.82860 24.73908 110 0 - + 17.26848 37.72646 137.07536 24.99910 110 0 - + 17.54941 38.23097 138.32213 25.25911 110 0 - + 17.83098 38.73549 139.56889 25.51913 110 0 - + 18.11316 39.24000 140.81566 25.77914 110 0 - + 15.13538 39.24000 171.86679 22.80136 110 0 - + 15.43547 39.73050 173.96368 23.07955 110 0 - + 15.73552 40.22100 176.06057 23.35774 110 0 - + 16.03533 40.71150 178.15746 23.63593 110 0 - + 16.33467 41.20200 180.25435 23.91412 110 0 - + 16.63333 41.69250 182.35124 24.19232 110 0 - + 16.63333 41.69250 182.35124 24.19232 110 0 - + 16.93112 42.18300 184.44813 24.47051 110 0 - + 17.22799 42.67350 186.54502 24.74870 110 0 - + 17.52390 43.16400 188.64191 25.02689 110 0 - + 17.81879 43.65450 190.73880 25.30508 110 0 - + 18.11262 44.14500 192.83569 25.58328 110 0 - + 18.11262 44.14500 192.83569 25.58328 110 0 - + 18.40538 44.63550 194.93258 25.86147 110 0 - + 18.69710 45.12600 197.02947 26.13966 110 0 - + 18.98782 45.61650 199.12636 26.41785 110 0 - + 19.27760 46.10700 201.22325 26.69604 110 0 - + 19.56647 46.59750 203.32014 26.97423 110 0 - + 19.56647 46.59750 203.32014 26.97423 110 0 - + 19.85449 47.08800 205.41703 27.25243 110 0 - + 20.14174 47.57850 207.51392 27.53062 110 0 - + 20.42830 48.06900 209.61081 27.80881 110 0 - + 20.71425 48.55950 211.70770 28.08700 110 0 - + 20.99964 49.05000 213.80459 28.36519 110 0 - + 20.99964 49.05000 213.80459 28.36519 110 0 - + 21.28458 49.54050 215.90148 28.64339 110 0 - + 21.56912 50.03100 217.99837 28.92158 110 0 - + 21.85334 50.52150 220.09526 29.19977 110 0 - + 22.13730 51.01200 222.19215 29.47796 110 0 - + 22.42107 51.50250 224.28904 29.75615 110 0 - + 22.42107 51.50250 224.28904 29.75615 110 0 - + 22.70471 51.99300 226.38593 30.03434 110 0 - + 22.98826 52.48350 228.48282 30.31254 110 0 - + 23.27175 52.97400 230.57971 30.59073 110 0 - + 23.55520 53.46450 232.67660 30.86892 110 0 - + 23.83865 53.95500 234.77349 31.14711 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5365,7 +5268,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 25.387 'Clay, sl san, moderate' + 4.00 25.390 'Clay, sl san, moderate' -4.00 29.307 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -5443,7 +5346,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5467,28 +5370,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -5526,84 +5417,84 @@ Status character 0.00000 20.53560 0.00000 0.00000 -1 0 - 0.00000 21.05880 0.00000 0.00000 -1 0 - 0.00000 21.58200 0.00000 0.00000 -1 0 - - 12.11523 21.58200 17.20475 0.00000 110 70 - - 11.98029 22.08651 18.45151 0.26001 110 65 - - 11.86284 22.59103 19.69827 0.52003 110 60 - - 11.76456 23.09554 20.94504 0.78004 110 56 - - 11.68713 23.60006 22.19180 1.04005 110 53 - - 11.63221 24.10457 23.43857 1.30007 110 50 - - 11.63221 24.10457 23.43857 1.30007 110 50 - - 11.60086 24.60909 24.68533 1.56008 110 47 - - 11.59271 25.11360 25.93210 1.82010 110 45 - - 11.60731 25.61811 27.17886 2.08011 110 43 - - 11.64420 26.12263 28.42563 2.34012 110 41 - - 11.70292 26.62714 29.67240 2.60014 110 39 - - 11.70292 26.62714 29.67240 2.60014 110 39 - - 11.78271 27.13166 30.91916 2.86015 110 38 - - 11.88224 27.63617 32.16593 3.12016 110 37 - - 12.00023 28.14069 33.41269 3.38018 110 36 - - 12.13537 28.64520 34.65946 3.64019 110 35 - - 12.28637 29.14971 35.90622 3.90021 110 34 - - 12.28637 29.14971 35.90622 3.90021 110 34 - - 12.45184 29.65423 37.15299 4.16022 110 34 - - 12.63032 30.15874 38.39975 4.42023 110 33 - - 12.82045 30.66326 39.64652 4.68025 110 32 - - 13.02086 31.16777 40.89328 4.94026 110 32 - - 13.23018 31.67229 42.14005 5.20027 110 31 - - 13.23018 31.67229 42.14005 5.20027 110 31 - - 13.44705 32.17680 43.38681 5.46029 110 31 - - 13.67032 32.68131 44.63358 5.72030 110 31 - - 13.89894 33.18583 45.88034 5.98032 110 30 - - 14.13183 33.69034 47.12711 6.24033 110 30 - - 14.36795 34.19486 48.37387 6.50034 110 30 - - 14.36795 34.19486 48.37387 6.50034 110 30 - - 14.60631 34.69937 49.62064 6.76036 110 29 - - 14.84622 35.20389 50.86741 7.02037 110 29 - - 15.08712 35.70840 52.11417 7.28038 110 29 - - 15.32846 36.21291 53.36094 7.54040 110 29 - - 15.56965 36.71743 54.60770 7.80041 110 29 - - 15.56965 36.71743 54.60770 7.80041 110 29 - - 15.81022 37.22194 55.85447 8.06043 110 28 - - 16.05008 37.72646 57.10123 8.32044 110 28 - - 16.28926 38.23097 58.34800 8.58045 110 28 - - 16.52780 38.73549 59.59476 8.84047 110 28 - - 16.76572 39.24000 60.84153 9.10048 110 28 - - 15.71451 39.24000 60.67194 8.04927 110 26 - - 15.97088 39.73050 62.76883 8.32746 110 25 - - 16.22728 40.22100 64.86572 8.60566 110 25 - - 16.48392 40.71150 66.96261 8.88385 110 25 - - 16.74103 41.20200 69.05950 9.16204 110 24 - - 16.99882 41.69250 71.15639 9.44023 110 24 - - 16.99882 41.69250 71.15639 9.44023 110 24 - - 17.25747 42.18300 73.25328 9.71842 110 24 - - 17.51703 42.67350 75.35017 9.99661 110 23 - - 17.77756 43.16400 77.44706 10.27481 110 23 - - 18.03909 43.65450 79.54395 10.55300 110 23 - - 18.30168 44.14500 81.64084 10.83119 110 22 - - 18.30168 44.14500 81.64084 10.83119 110 22 - - 18.56535 44.63550 83.73773 11.10938 110 22 - - 18.83004 45.12600 85.83462 11.38757 110 22 - - 19.09573 45.61650 87.93151 11.66577 110 22 - - 19.36237 46.10700 90.02840 11.94396 110 22 - - 19.62990 46.59750 92.12529 12.22215 110 21 - - 19.62990 46.59750 92.12529 12.22215 110 21 - - 19.89829 47.08800 94.22218 12.50034 110 21 - - 20.16743 47.57850 96.31907 12.77853 110 21 - - 20.43727 48.06900 98.41596 13.05673 110 21 - - 20.70773 48.55950 100.51285 13.33492 110 21 - - 20.97873 49.05000 102.60974 13.61311 110 20 - - 20.97873 49.05000 102.60974 13.61311 110 20 - - 21.25019 49.54050 104.70663 13.89130 110 20 - - 21.52204 50.03100 106.80352 14.16949 110 20 - - 21.79422 50.52150 108.90041 14.44768 110 20 - - 22.06665 51.01200 110.99730 14.72588 110 20 - - 22.33928 51.50250 113.09419 15.00407 110 20 - - 22.33928 51.50250 113.09419 15.00407 110 20 - - 22.61203 51.99300 115.19108 15.28226 110 20 - - 22.88487 52.48350 117.28797 15.56045 110 20 - - 23.15778 52.97400 119.38486 15.83864 110 19 - - 23.43071 53.46450 121.48175 16.11684 110 19 - - 23.70366 53.95500 123.57864 16.39503 110 19 - + 12.10166 21.58200 17.20475 0.00000 110 70 - + 11.96834 22.08651 18.45151 0.26001 110 65 - + 11.85242 22.59103 19.69827 0.52003 110 60 - + 11.75557 23.09554 20.94504 0.78004 110 56 - + 11.67946 23.60006 22.19180 1.04005 110 53 - + 11.62576 24.10457 23.43857 1.30007 110 50 - + 11.62576 24.10457 23.43857 1.30007 110 50 - + 11.59552 24.60909 24.68533 1.56008 110 47 - + 11.58838 25.11360 25.93210 1.82010 110 45 - + 11.60389 25.61811 27.17886 2.08011 110 43 - + 11.64159 26.12263 28.42563 2.34012 110 41 - + 11.70103 26.62714 29.67240 2.60014 110 39 - + 11.70103 26.62714 29.67240 2.60014 110 39 - + 11.78146 27.13166 30.91916 2.86015 110 38 - + 11.88154 27.63617 32.16593 3.12016 110 37 - + 12.00000 28.14069 33.41269 3.38018 110 36 - + 12.13554 28.64520 34.65946 3.64019 110 35 - + 12.28688 29.14971 35.90622 3.90021 110 34 - + 12.28688 29.14971 35.90622 3.90021 110 34 - + 12.45262 29.65423 37.15299 4.16022 110 34 - + 12.63133 30.15874 38.39975 4.42023 110 33 - + 12.82164 30.66326 39.64652 4.68025 110 32 - + 13.02218 31.16777 40.89328 4.94026 110 32 - + 13.23160 31.67229 42.14005 5.20027 110 31 - + 13.23160 31.67229 42.14005 5.20027 110 31 - + 13.44853 32.17680 43.38681 5.46029 110 31 - + 13.67183 32.68131 44.63358 5.72030 110 31 - + 13.90045 33.18583 45.88034 5.98032 110 30 - + 14.13333 33.69034 47.12711 6.24033 110 30 - + 14.36942 34.19486 48.37387 6.50034 110 30 - + 14.36942 34.19486 48.37387 6.50034 110 30 - + 14.60773 34.69937 49.62064 6.76036 110 29 - + 14.84758 35.20389 50.86741 7.02037 110 29 - + 15.08842 35.70840 52.11417 7.28038 110 29 - + 15.32968 36.21291 53.36094 7.54040 110 29 - + 15.57079 36.71743 54.60770 7.80041 110 29 - + 15.57079 36.71743 54.60770 7.80041 110 29 - + 15.81128 37.22194 55.85447 8.06043 110 28 - + 16.05106 37.72646 57.10123 8.32044 110 28 - + 16.29016 38.23097 58.34800 8.58045 110 28 - + 16.52861 38.73549 59.59476 8.84047 110 28 - + 16.76646 39.24000 60.84153 9.10048 110 28 - + 15.71525 39.24000 60.67194 8.04927 110 26 - + 15.97155 39.73050 62.76883 8.32746 110 25 - + 16.22787 40.22100 64.86572 8.60566 110 25 - + 16.48445 40.71150 66.96261 8.88385 110 25 - + 16.74149 41.20200 69.05950 9.16204 110 24 - + 16.99922 41.69250 71.15639 9.44023 110 24 - + 16.99922 41.69250 71.15639 9.44023 110 24 - + 17.25781 42.18300 73.25328 9.71842 110 24 - + 17.51732 42.67350 75.35017 9.99661 110 23 - + 17.77780 43.16400 77.44706 10.27481 110 23 - + 18.03929 43.65450 79.54395 10.55300 110 23 - + 18.30184 44.14500 81.64084 10.83119 110 22 - + 18.30184 44.14500 81.64084 10.83119 110 22 - + 18.56547 44.63550 83.73773 11.10938 110 22 - + 18.83014 45.12600 85.83462 11.38757 110 22 - + 19.09580 45.61650 87.93151 11.66577 110 22 - + 19.36240 46.10700 90.02840 11.94396 110 22 - + 19.62992 46.59750 92.12529 12.22215 110 21 - + 19.62992 46.59750 92.12529 12.22215 110 21 - + 19.89828 47.08800 94.22218 12.50034 110 21 - + 20.16741 47.57850 96.31907 12.77853 110 21 - + 20.43723 48.06900 98.41596 13.05673 110 21 - + 20.70767 48.55950 100.51285 13.33492 110 21 - + 20.97866 49.05000 102.60974 13.61311 110 20 - + 20.97866 49.05000 102.60974 13.61311 110 20 - + 21.25011 49.54050 104.70663 13.89130 110 20 - + 21.52195 50.03100 106.80352 14.16949 110 20 - + 21.79411 50.52150 108.90041 14.44768 110 20 - + 22.06654 51.01200 110.99730 14.72588 110 20 - + 22.33915 51.50250 113.09419 15.00407 110 20 - + 22.33915 51.50250 113.09419 15.00407 110 20 - + 22.61190 51.99300 115.19108 15.28226 110 20 - + 22.88473 52.48350 117.28797 15.56045 110 20 - + 23.15763 52.97400 119.38486 15.83864 110 19 - + 23.43056 53.46450 121.48175 16.11684 110 19 - + 23.70349 53.95500 123.57864 16.39503 110 19 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5616,7 +5507,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 23.934 'Clay, sl san, moderate' + 4.00 23.932 'Clay, sl san, moderate' -4.00 29.488 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -5639,7 +5530,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -5657,28 +5548,16 @@ Depth 0.05000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 - -0.33000 -0.36000 - -0.39000 -0.42000 - -0.45000 - -0.45000 -0.48000 - -0.51000 -0.54000 - -0.57000 -0.60000 -0.60000 -0.65333 @@ -5815,7 +5694,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 18.17926 220000000.000 1 1 1 'Strut' + 0.25000 18.17712 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5843,15 +5722,15 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 31.89 : Percentage mobilized resistance left 8.10 : Percentage mobilized resistance right - 66.48 : Effective left + 66.47 : Effective left 71.63 : Effective right 148.38 : Water pressure left 148.38 : Water pressure right 208.43 : Max effective resistance left 884.50 : Max effective resistance right -949.80 : Max moment left --3074.16 : Max moment right - -278.24 : Max mobilized moment left +-3074.15 : Max moment right + -278.23 : Max mobilized moment left -280.86 : Max mobilized moment right 25.87 : Vertical force left 27.32 : Vertical force right @@ -5879,163 +5758,151 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00013 11.95378 -6.00000 - 0.60639 12.28307 -5.93154 - 1.22706 12.53007 -5.86498 - 1.85802 12.69453 -5.80227 - 2.49513 12.77599 -5.74540 - 3.13460 12.79589 -5.69631 - 3.13431 -5.32784 -5.69631 - 2.86791 -5.32784 -5.65654 - 2.60158 -5.32410 -5.62572 - 2.33574 -5.30604 -5.60303 - 2.07133 -5.26683 -5.58765 - 1.80941 -5.20648 -5.57874 - 1.80941 -5.20648 -5.57874 - 1.65387 -5.16220 -5.57616 - 1.49971 -5.11445 -5.57544 - 1.34704 -5.06324 -5.57641 - 1.19595 -5.00857 -5.57889 - 1.04656 -4.95043 -5.58273 - 1.04656 -4.95043 -5.58273 - 0.89896 -4.88883 -5.58773 - 0.75327 -4.82377 -5.59375 - 0.60957 -4.75524 -5.60061 - 0.46799 -4.68325 -5.60817 - 0.32861 -4.60780 -5.61625 - 0.32872 -4.61076 -5.61625 - 0.19157 -4.53185 -5.62469 - 0.05685 -4.44947 -5.63335 - -0.07536 -4.36362 -5.64208 - -0.20494 -4.27432 -5.65073 - -0.33178 -4.18155 -5.65914 - -0.33190 -4.18406 -5.65914 - -0.45599 -4.08782 -5.66718 - -0.57713 -3.98813 -5.67471 - -0.69524 -3.88497 -5.68159 - -0.81020 -3.77834 -5.68769 - -0.92191 -3.66826 -5.69287 - -0.92164 -3.67143 -5.69287 - -1.11205 -3.46717 -5.69943 - -1.29127 -3.25196 -5.70202 - -1.45873 -3.02581 -5.70006 - -1.61383 -2.78871 -5.69296 - -1.75600 -2.54067 -5.68012 - -1.75634 -2.54102 -5.68012 - -1.88501 -2.28203 -5.66097 - -1.99956 -2.01210 -5.63511 - -2.09944 -1.73122 -5.60219 - -2.18403 -1.43939 -5.56186 - -2.25278 -1.13662 -5.51375 - -2.25274 -1.13311 -5.51375 - -2.30486 -0.81939 -5.45757 - -2.33995 -0.49472 -5.39318 - -2.35744 -0.15912 -5.32053 - -2.35673 0.18744 -5.23956 - -2.33725 0.54494 -5.15021 - -2.33722 0.54686 -5.15021 - -2.29828 0.91531 -5.05246 - -2.23940 1.29470 -4.94653 - -2.15998 1.68504 -4.83270 - -2.05946 2.08632 -4.71126 - -1.93725 2.49855 -4.58250 - -1.93723 2.49933 -4.58250 - -1.79270 2.92250 -4.44675 - -1.62531 3.35662 -4.30461 - -1.43447 3.80169 -4.15678 - -1.21960 4.25770 -4.00392 - -0.98012 4.72466 -3.84672 - -0.98010 4.72462 -3.84672 - -0.71542 5.20252 -3.68592 - -0.42496 5.69137 -3.52257 - -0.10815 6.19117 -3.35780 - 0.23562 6.70191 -3.19272 - 0.60692 7.22359 -3.02848 - 0.60678 7.21875 -3.02848 - 0.96322 6.63192 -2.87215 - 1.28777 5.97832 -2.71902 - 1.57699 5.25796 -2.57004 - 1.82745 4.47084 -2.42616 - 2.03571 3.61695 -2.28832 - 2.03590 3.60845 -2.28832 - 2.19891 2.73567 -2.15738 - 2.31813 1.91261 -2.03371 - 2.39680 1.15767 -1.91758 - 2.43829 0.46612 -1.80926 - 2.44575 -0.16694 -1.70902 - 2.44597 -0.16981 -1.70902 - 2.42211 -0.74941 -1.61699 - 2.36994 -1.26741 -1.53297 - 2.29318 -1.70219 -1.45672 - 2.19639 -2.04749 -1.38798 - 2.08396 -2.31244 -1.32652 - 2.08386 -2.31048 -1.32652 - 1.95977 -2.50385 -1.27199 - 1.82740 -2.63392 -1.22395 - 1.68981 -2.70841 -1.18193 - 1.54965 -2.73448 -1.14549 - 1.40926 -2.71874 -1.11418 - 1.40928 -2.71634 -1.11418 - 1.27077 -2.66482 -1.08752 - 1.13571 -2.58299 -1.06507 - 1.00552 -2.47577 -1.04638 - 0.88142 -2.34754 -1.03103 - 0.76436 -2.20217 -1.01860 - 0.76437 -2.20085 -1.01860 - 0.65523 -2.04168 -1.00866 - 0.55456 -1.87157 -1.00089 - 0.46287 -1.69303 -0.99498 - 0.38053 -1.50814 -0.99063 - 0.30782 -1.31866 -0.98753 - 0.30783 -1.31811 -0.98753 - 0.24499 -1.12541 -0.98541 - 0.19211 -0.93059 -0.98410 - 0.14929 -0.73457 -0.98345 - 0.11657 -0.53807 -0.98333 - 0.09395 -0.34165 -0.98359 - 0.09395 -0.34148 -0.98359 - 0.07768 -0.30937 -0.98412 - 0.06300 -0.27804 -0.98489 - 0.04986 -0.24776 -0.98586 - 0.03820 -0.21873 -0.98699 - 0.02796 -0.19114 -0.98824 - 0.02796 -0.19109 -0.98824 - 0.01907 -0.16505 -0.98957 - 0.01143 -0.14064 -0.99097 - 0.00497 -0.11793 -0.99240 - -0.00039 -0.09695 -0.99385 - -0.00475 -0.07770 -0.99530 - -0.00475 -0.07771 -0.99530 - -0.00819 -0.06019 -0.99673 - -0.01080 -0.04437 -0.99813 - -0.01265 -0.03022 -0.99950 - -0.01385 -0.01769 -1.00084 - -0.01445 -0.00674 -1.00213 - -0.01445 -0.00676 -1.00213 - -0.01455 0.00267 -1.00337 - -0.01421 0.01063 -1.00457 - -0.01351 0.01718 -1.00573 - -0.01251 0.02237 -1.00684 - -0.01129 0.02625 -1.00792 - -0.01129 0.02623 -1.00792 - -0.00991 0.02884 -1.00896 - -0.00843 0.03021 -1.00996 - -0.00691 0.03040 -1.01095 - -0.00541 0.02942 -1.01191 - -0.00399 0.02730 -1.01285 - -0.00399 0.02729 -1.01285 - -0.00270 0.02404 -1.01378 - -0.00160 0.01968 -1.01470 - -0.00075 0.01422 -1.01562 - -0.00020 0.00766 -1.01653 - 0.00000 0.00000 -1.01745 + 0.00003 11.96145 -6.00000 + 0.60668 12.29076 -5.93112 + 1.22773 12.53780 -5.86414 + 1.85908 12.70233 -5.80102 + 2.49658 12.78388 -5.74373 + 3.13644 12.80385 -5.69424 + 3.13616 -5.31761 -5.69424 + 2.87028 -5.31761 -5.65406 + 2.60447 -5.31387 -5.62284 + 2.33914 -5.29580 -5.59977 + 2.07524 -5.25660 -5.58401 + 1.81383 -5.19625 -5.57474 + 1.81383 -5.19625 -5.57474 + 1.50474 -5.10422 -5.57100 + 1.20160 -4.99834 -5.57403 + 0.90522 -4.87860 -5.58250 + 0.61644 -4.74501 -5.59507 + 0.33610 -4.59757 -5.61041 + 0.33707 -4.61513 -5.61041 + 0.06493 -4.45383 -5.62721 + -0.19711 -4.27868 -5.64430 + -0.44823 -4.08968 -5.66055 + -0.68760 -3.88682 -5.67483 + -0.91438 -3.67011 -5.68601 + -0.91446 -3.67653 -5.68601 + -1.10514 -3.47227 -5.69247 + -1.28464 -3.25706 -5.69500 + -1.45236 -3.03091 -5.69300 + -1.60774 -2.79381 -5.68587 + -1.75018 -2.54577 -5.67303 + -1.75052 -2.54612 -5.67303 + -1.87946 -2.28713 -5.65390 + -1.99429 -2.01719 -5.62808 + -2.09443 -1.73631 -5.59522 + -2.17930 -1.44449 -5.55497 + -2.24831 -1.14172 -5.50696 + -2.24828 -1.13820 -5.50696 + -2.30067 -0.82448 -5.45088 + -2.33603 -0.49982 -5.38662 + -2.35379 -0.16421 -5.31411 + -2.35336 0.18234 -5.23329 + -2.33415 0.53984 -5.14410 + -2.33412 0.54176 -5.14410 + -2.29545 0.91021 -5.04652 + -2.23684 1.28960 -4.94077 + -2.15770 1.67994 -4.82714 + -2.05745 2.08122 -4.70591 + -1.93551 2.49345 -4.57735 + -1.93549 2.49423 -4.57735 + -1.79123 2.91741 -4.44181 + -1.62411 3.35153 -4.29990 + -1.43354 3.79659 -4.15229 + -1.21894 4.25261 -3.99966 + -0.97973 4.71956 -3.84269 + -0.97971 4.71953 -3.84269 + -0.71531 5.19743 -3.68212 + -0.42512 5.68628 -3.51901 + -0.10858 6.18607 -3.35446 + 0.23492 6.69681 -3.18962 + 0.60594 7.21850 -3.02561 + 0.60580 7.21367 -3.02561 + 0.96199 6.62684 -2.86949 + 1.28628 5.97324 -2.71658 + 1.57524 5.25288 -2.56780 + 1.82543 4.46576 -2.42412 + 2.03343 3.61187 -2.28648 + 2.03362 3.60338 -2.28648 + 2.19637 2.73111 -2.15572 + 2.31539 1.90901 -2.03223 + 2.39390 1.15494 -1.91627 + 2.43527 0.46415 -1.80811 + 2.44264 -0.16825 -1.70802 + 2.44286 -0.17112 -1.70802 + 2.41895 -0.75015 -1.61613 + 2.36676 -1.26743 -1.53224 + 2.29001 -1.70138 -1.45611 + 2.19329 -2.04600 -1.38748 + 2.08094 -2.31038 -1.32611 + 2.08084 -2.30843 -1.32611 + 1.95688 -2.50135 -1.27168 + 1.82465 -2.63108 -1.22371 + 1.68720 -2.70532 -1.18176 + 1.54721 -2.73122 -1.14539 + 1.40699 -2.71538 -1.11413 + 1.40701 -2.71298 -1.11413 + 1.26867 -2.66142 -1.08751 + 1.13378 -2.57960 -1.06509 + 1.00378 -2.47244 -1.04644 + 0.87984 -2.34430 -1.03112 + 0.76294 -2.19905 -1.01871 + 0.76296 -2.19773 -1.01871 + 0.65397 -2.03870 -1.00879 + 0.55345 -1.86876 -1.00103 + 0.46190 -1.69038 -0.99512 + 0.37969 -1.50568 -0.99078 + 0.30711 -1.31639 -0.98768 + 0.30712 -1.31584 -0.98768 + 0.24438 -1.12333 -0.98556 + 0.19161 -0.92870 -0.98425 + 0.14888 -0.73286 -0.98360 + 0.11624 -0.53653 -0.98347 + 0.09369 -0.34029 -0.98372 + 0.09370 -0.34012 -0.98372 + 0.07749 -0.30817 -0.98425 + 0.06287 -0.27699 -0.98501 + 0.04978 -0.24685 -0.98597 + 0.03816 -0.21796 -0.98710 + 0.02796 -0.19049 -0.98834 + 0.02796 -0.19044 -0.98834 + 0.01909 -0.16451 -0.98966 + 0.01148 -0.14021 -0.99105 + 0.00504 -0.11759 -0.99247 + -0.00031 -0.09669 -0.99391 + -0.00466 -0.07753 -0.99536 + -0.00466 -0.07753 -0.99536 + -0.00809 -0.06008 -0.99678 + -0.01069 -0.04432 -0.99818 + -0.01255 -0.03022 -0.99954 + -0.01374 -0.01774 -1.00087 + -0.01435 -0.00683 -1.00216 + -0.01435 -0.00685 -1.00216 + -0.01445 0.00255 -1.00340 + -0.01412 0.01049 -1.00459 + -0.01343 0.01702 -1.00574 + -0.01244 0.02220 -1.00685 + -0.01123 0.02606 -1.00792 + -0.01123 0.02605 -1.00792 + -0.00986 0.02865 -1.00896 + -0.00838 0.03003 -1.00996 + -0.00687 0.03023 -1.01094 + -0.00538 0.02926 -1.01189 + -0.00397 0.02715 -1.01283 + -0.00397 0.02715 -1.01283 + -0.00268 0.02392 -1.01376 + -0.00159 0.01958 -1.01468 + -0.00074 0.01415 -1.01559 + -0.00020 0.00762 -1.01650 + 0.00000 0.00000 -1.01741 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6097,7 +5964,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6109,10 +5976,10 @@ Status character [END OF COLUMN INDICATION] [DATA] 6.17317 0.00000 46.80506 6.17317 110 0 - - 4.80310 0.00000 49.46909 6.72875 110 0 - - 3.43036 0.00000 52.13311 7.28434 110 0 - - 2.05160 0.00000 54.79714 7.83992 110 0 - - 0.66349 0.00000 57.46117 8.39551 110 0 - + 4.80357 0.00000 49.46909 6.72875 110 0 - + 3.43130 0.00000 52.13311 7.28434 110 0 - + 2.05302 0.00000 54.79714 7.83992 110 0 - + 0.66539 0.00000 57.46117 8.39551 110 0 - 0.00000 0.00000 60.12520 8.95109 1 0 A 0.00000 0.00000 60.12520 8.95109 1 0 A 0.00000 0.00000 62.78923 9.50668 1 0 A @@ -6121,28 +5988,16 @@ Status character 0.82961 0.00000 70.78131 11.17343 1 0 A 1.18200 0.00000 73.44534 11.72901 1 0 A 1.18200 0.00000 73.44534 11.72901 1 0 A - 1.27820 0.29430 74.17262 11.88069 1 0 A 1.37441 0.58860 74.89990 12.03236 1 0 A - 1.47061 0.88290 75.62718 12.18404 1 0 A 1.56681 1.17720 76.35446 12.33571 1 0 A - 1.66301 1.47150 77.08174 12.48739 1 0 A - 1.66301 1.47150 77.08174 12.48739 1 0 A 1.75922 1.76580 77.80902 12.63906 1 0 A - 1.85542 2.06010 78.53630 12.79074 1 0 A 1.95162 2.35440 79.26358 12.94241 1 0 A - 2.04782 2.64870 79.99086 13.09409 1 0 A 2.14403 2.94300 80.71814 13.24576 1 0 A 2.14403 2.94300 80.71814 13.24576 1 0 A - 2.24023 3.23730 81.44542 13.39744 1 0 A 2.33643 3.53160 82.17270 13.54911 1 0 A - 2.43263 3.82590 82.89998 13.70079 1 0 A 2.52884 4.12020 83.62726 13.85246 1 0 A - 2.62504 4.41450 84.35454 14.00413 1 0 A - 2.62504 4.41450 84.35454 14.00413 1 0 A 2.72124 4.70880 85.08182 14.15581 1 0 A - 2.81744 5.00310 85.80910 14.30748 1 0 A 2.91365 5.29740 86.53638 14.45916 1 0 A - 3.00985 5.59170 87.26366 14.61083 1 0 A 3.10605 5.88600 87.99094 14.76251 1 0 A 3.10605 5.88600 87.99094 14.76251 1 0 A 3.27708 6.40920 89.28388 15.03215 1 0 A @@ -6194,70 +6049,70 @@ Status character 9.88605 26.62714 139.24684 25.45196 1 0 A 9.88605 26.62714 139.24684 25.45196 1 0 A 10.05097 27.13166 140.49361 25.71198 1 0 A - 10.64225 27.63617 141.74037 25.97199 110 0 - - 11.66483 28.14069 142.98714 26.23200 110 0 - - 12.61221 28.64520 144.23390 26.49202 110 0 - - 13.48687 29.14971 145.48067 26.75203 110 0 - - 13.48687 29.14971 145.48067 26.75203 110 0 - - 14.29210 29.65423 146.72743 27.01204 110 0 - - 15.03255 30.15874 147.97420 27.27206 110 0 - - 15.71274 30.66326 149.22097 27.53207 110 0 - - 16.33715 31.16777 150.46773 27.79209 110 0 - - 16.91029 31.67229 151.71450 28.05210 110 0 - - 16.91029 31.67229 151.71450 28.05210 110 0 - - 17.43687 32.17680 152.96126 28.31211 110 0 - - 17.92147 32.68131 154.20803 28.57213 110 0 - - 18.36837 33.18583 155.45479 28.83214 110 0 - - 18.78184 33.69034 156.70156 29.09215 110 0 - - 19.16618 34.19486 157.94832 29.35217 110 0 - - 19.16618 34.19486 157.94832 29.35217 110 0 - - 19.52555 34.69937 159.19509 29.61218 110 0 - - 19.86329 35.20389 160.44185 29.87220 110 0 - - 20.18242 35.70840 161.68862 30.13221 110 0 - - 20.48597 36.21291 162.93538 30.39222 110 0 - - 20.77695 36.71743 164.18215 30.65224 110 0 - - 20.77695 36.71743 164.18215 30.65224 110 0 - - 21.05816 37.22194 165.42891 30.91225 110 0 - - 21.33130 37.72646 166.67568 31.17226 110 0 - - 21.59778 38.23097 167.92244 31.43228 110 0 - - 21.85901 38.73549 169.16921 31.69229 110 0 - - 22.11643 39.24000 170.41598 31.95231 110 0 - - 18.42557 39.24000 213.02263 28.26145 110 0 - - 18.69848 39.73050 215.11952 28.53964 110 0 - - 18.96897 40.22100 217.21641 28.81784 110 0 - - 19.23745 40.71150 219.31330 29.09603 110 0 - - 19.50432 41.20200 221.41019 29.37422 110 0 - - 19.77001 41.69250 223.50708 29.65241 110 0 - - 19.77001 41.69250 223.50708 29.65241 110 0 - - 20.03487 42.18300 225.60397 29.93060 110 0 - - 20.29914 42.67350 227.70086 30.20879 110 0 - - 20.56302 43.16400 229.79775 30.48699 110 0 - - 20.82671 43.65450 231.89464 30.76518 110 0 - - 21.09042 44.14500 233.99153 31.04337 110 0 - - 21.09042 44.14500 233.99153 31.04337 110 0 - - 21.35431 44.63550 236.08842 31.32156 110 0 - - 21.61846 45.12600 238.18531 31.59975 110 0 - - 21.88292 45.61650 240.28220 31.87795 110 0 - - 22.14776 46.10700 242.37909 32.15614 110 0 - - 22.41304 46.59750 244.47598 32.43433 110 0 - - 22.41304 46.59750 244.47598 32.43433 110 0 - - 22.67879 47.08800 246.57287 32.71252 110 0 - - 22.94499 47.57850 248.66976 32.99071 110 0 - - 23.21163 48.06900 250.76665 33.26890 110 0 - - 23.47868 48.55950 252.86354 33.54710 110 0 - - 23.74612 49.05000 254.96043 33.82529 110 0 - - 23.74612 49.05000 254.96043 33.82529 110 0 - + 10.64956 27.63617 141.74037 25.97199 110 0 - + 11.67094 28.14069 142.98714 26.23200 110 0 - + 12.61725 28.64520 144.23390 26.49202 110 0 - + 13.49092 29.14971 145.48067 26.75203 110 0 - + 13.49092 29.14971 145.48067 26.75203 110 0 - + 14.29527 29.65423 146.72743 27.01204 110 0 - + 15.03494 30.15874 147.97420 27.27206 110 0 - + 15.71443 30.66326 149.22097 27.53207 110 0 - + 16.33823 31.16777 150.46773 27.79209 110 0 - + 16.91084 31.67229 151.71450 28.05210 110 0 - + 16.91084 31.67229 151.71450 28.05210 110 0 - + 17.43697 32.17680 152.96126 28.31211 110 0 - + 17.92119 32.68131 154.20803 28.57213 110 0 - + 18.36776 33.18583 155.45479 28.83214 110 0 - + 18.78098 33.69034 156.70156 29.09215 110 0 - + 19.16510 34.19486 157.94832 29.35217 110 0 - + 19.16510 34.19486 157.94832 29.35217 110 0 - + 19.52431 34.69937 159.19509 29.61218 110 0 - + 19.86193 35.20389 160.44185 29.87220 110 0 - + 20.18097 35.70840 161.68862 30.13221 110 0 - + 20.48447 36.21291 162.93538 30.39222 110 0 - + 20.77543 36.71743 164.18215 30.65224 110 0 - + 20.77543 36.71743 164.18215 30.65224 110 0 - + 21.05663 37.22194 165.42891 30.91225 110 0 - + 21.32979 37.72646 166.67568 31.17226 110 0 - + 21.59630 38.23097 167.92244 31.43228 110 0 - + 21.85759 38.73549 169.16921 31.69229 110 0 - + 22.11506 39.24000 170.41598 31.95231 110 0 - + 18.42421 39.24000 213.02263 28.26145 110 0 - + 18.69719 39.73050 215.11952 28.53964 110 0 - + 18.96775 40.22100 217.21641 28.81784 110 0 - + 19.23630 40.71150 219.31330 29.09603 110 0 - + 19.50325 41.20200 221.41019 29.37422 110 0 - + 19.76902 41.69250 223.50708 29.65241 110 0 - + 19.76902 41.69250 223.50708 29.65241 110 0 - + 20.03396 42.18300 225.60397 29.93060 110 0 - + 20.29831 42.67350 227.70086 30.20879 110 0 - + 20.56226 43.16400 229.79775 30.48699 110 0 - + 20.82603 43.65450 231.89464 30.76518 110 0 - + 21.08981 44.14500 233.99153 31.04337 110 0 - + 21.08981 44.14500 233.99153 31.04337 110 0 - + 21.35377 44.63550 236.08842 31.32156 110 0 - + 21.61799 45.12600 238.18531 31.59975 110 0 - + 21.88252 45.61650 240.28220 31.87795 110 0 - + 22.14742 46.10700 242.37909 32.15614 110 0 - + 22.41275 46.59750 244.47598 32.43433 110 0 - + 22.41275 46.59750 244.47598 32.43433 110 0 - + 22.67856 47.08800 246.57287 32.71252 110 0 - + 22.94481 47.57850 248.66976 32.99071 110 0 - + 23.21150 48.06900 250.76665 33.26890 110 0 - + 23.47859 48.55950 252.86354 33.54710 110 0 - + 23.74608 49.05000 254.96043 33.82529 110 0 - + 23.74608 49.05000 254.96043 33.82529 110 0 - 24.01392 49.54050 257.05732 34.10348 110 0 - - 24.28203 50.03100 259.15421 34.38167 110 0 - - 24.55041 50.52150 261.25110 34.65986 110 0 - - 24.81900 51.01200 263.34799 34.93806 110 0 - - 25.08776 51.50250 265.44488 35.21625 110 0 - - 25.08776 51.50250 265.44488 35.21625 110 0 - - 25.35664 51.99300 267.54177 35.49444 110 0 - - 25.62560 52.48350 269.63866 35.77263 110 0 - - 25.89462 52.97400 271.73555 36.05082 110 0 - - 26.16367 53.46450 273.83244 36.32902 110 0 - - 26.43273 53.95500 275.92933 36.60721 110 0 - + 24.28208 50.03100 259.15421 34.38167 110 0 - + 24.55049 50.52150 261.25110 34.65986 110 0 - + 24.81912 51.01200 263.34799 34.93806 110 0 - + 25.08791 51.50250 265.44488 35.21625 110 0 - + 25.08791 51.50250 265.44488 35.21625 110 0 - + 25.35683 51.99300 267.54177 35.49444 110 0 - + 25.62582 52.48350 269.63866 35.77263 110 0 - + 25.89488 52.97400 271.73555 36.05082 110 0 - + 26.16397 53.46450 273.83244 36.32902 110 0 - + 26.43306 53.95500 275.92933 36.60721 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6270,8 +6125,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 37.995 'Clay, sl san, moderate' - -4.00 33.635 'Sand, sl sil, moderate' + 4.00 37.996 'Clay, sl san, moderate' + -4.00 33.634 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6348,7 +6203,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=150 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -6372,28 +6227,16 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - - 0.00000 3.23730 0.00000 0.00000 -1 0 - 0.00000 3.53160 0.00000 0.00000 -1 0 - - 0.00000 3.82590 0.00000 0.00000 -1 0 - 0.00000 4.12020 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - - 0.00000 4.41450 0.00000 0.00000 -1 0 - 0.00000 4.70880 0.00000 0.00000 -1 0 - - 0.00000 5.00310 0.00000 0.00000 -1 0 - 0.00000 5.29740 0.00000 0.00000 -1 0 - - 0.00000 5.59170 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 5.88600 0.00000 0.00000 -1 0 - 0.00000 6.40920 0.00000 0.00000 -1 0 - @@ -6438,77 +6281,77 @@ Status character 22.19180 23.60006 22.19180 1.04005 202 100 P 23.43857 24.10457 23.43857 1.30007 202 100 P 23.43857 24.10457 23.43857 1.30007 202 100 P - 23.13384 24.60909 24.68533 1.56008 110 94 - - 22.15716 25.11360 25.93210 1.82010 110 85 - - 21.25591 25.61811 27.17886 2.08011 110 78 - - 20.43275 26.12263 28.42563 2.34012 110 72 - - 19.69035 26.62714 29.67240 2.60014 110 66 - - 19.69035 26.62714 29.67240 2.60014 110 66 - - 19.03008 27.13166 30.91916 2.86015 110 62 - - 18.44990 27.63617 32.16593 3.12016 110 57 - - 17.94736 28.14069 33.41269 3.38018 110 54 - - 17.51999 28.64520 34.65946 3.64019 110 51 - - 17.16537 29.14971 35.90622 3.90021 110 48 - - 17.16537 29.14971 35.90622 3.90021 110 48 - - 16.88017 29.65423 37.15299 4.16022 110 45 - - 16.65974 30.15874 38.39975 4.42023 110 43 - - 16.49958 30.66326 39.64652 4.68025 110 42 - - 16.39519 31.16777 40.89328 4.94026 110 40 - - 16.34208 31.67229 42.14005 5.20027 110 39 - - 16.34208 31.67229 42.14005 5.20027 110 39 - - 16.33553 32.17680 43.38681 5.46029 110 38 - - 16.37096 32.68131 44.63358 5.72030 110 37 - - 16.44409 33.18583 45.88034 5.98032 110 36 - - 16.55064 33.69034 47.12711 6.24033 110 35 - - 16.68633 34.19486 48.37387 6.50034 110 34 - - 16.68633 34.19486 48.37387 6.50034 110 34 - - 16.84699 34.69937 49.62064 6.76036 110 34 - - 17.02928 35.20389 50.86741 7.02037 110 33 - - 17.23017 35.70840 52.11417 7.28038 110 33 - - 17.44666 36.21291 53.36094 7.54040 110 33 - - 17.67570 36.71743 54.60770 7.80041 110 32 - - 17.67570 36.71743 54.60770 7.80041 110 32 - - 17.91452 37.22194 55.85447 8.06043 110 32 - - 18.16141 37.72646 57.10123 8.32044 110 32 - - 18.41496 38.23097 58.34800 8.58045 110 32 - - 18.67374 38.73549 59.59476 8.84047 110 31 - - 18.93636 39.24000 60.84153 9.10048 110 31 - - 17.88515 39.24000 60.67194 8.04927 110 29 - - 18.16862 39.73050 62.76883 8.32746 110 29 - - 18.45452 40.22100 64.86572 8.60566 110 28 - - 18.74243 40.71150 66.96261 8.88385 110 28 - - 19.03194 41.20200 69.05950 9.16204 110 28 - - 19.32264 41.69250 71.15639 9.44023 110 27 - - 19.32264 41.69250 71.15639 9.44023 110 27 - - 19.61416 42.18300 73.25328 9.71842 110 27 - - 19.90627 42.67350 75.35017 9.99661 110 26 - - 20.19878 43.16400 77.44706 10.27481 110 26 - - 20.49147 43.65450 79.54395 10.55300 110 26 - - 20.78415 44.14500 81.64084 10.83119 110 25 - - 20.78415 44.14500 81.64084 10.83119 110 25 - - 21.07664 44.63550 83.73773 11.10938 110 25 - - 21.36887 45.12600 85.83462 11.38757 110 25 - - 21.66079 45.61650 87.93151 11.66577 110 25 - - 21.95233 46.10700 90.02840 11.94396 110 24 - - 22.24344 46.59750 92.12529 12.22215 110 24 - - 22.24344 46.59750 92.12529 12.22215 110 24 - - 22.53408 47.08800 94.22218 12.50034 110 24 - - 22.82426 47.57850 96.31907 12.77853 110 24 - - 23.11400 48.06900 98.41596 13.05673 110 23 - - 23.40334 48.55950 100.51285 13.33492 110 23 - - 23.69228 49.05000 102.60974 13.61311 110 23 - - 23.69228 49.05000 102.60974 13.61311 110 23 - + 23.11727 24.60909 24.68533 1.56008 110 94 - + 22.14237 25.11360 25.93210 1.82010 110 85 - + 21.24281 25.61811 27.17886 2.08011 110 78 - + 20.42125 26.12263 28.42563 2.34012 110 72 - + 19.68036 26.62714 29.67240 2.60014 110 66 - + 19.68036 26.62714 29.67240 2.60014 110 66 - + 19.02148 27.13166 30.91916 2.86015 110 62 - + 18.44260 27.63617 32.16593 3.12016 110 57 - + 17.94124 28.14069 33.41269 3.38018 110 54 - + 17.51496 28.64520 34.65946 3.64019 110 51 - + 17.16131 29.14971 35.90622 3.90021 110 48 - + 17.16131 29.14971 35.90622 3.90021 110 48 - + 16.87700 29.65423 37.15299 4.16022 110 45 - + 16.65735 30.15874 38.39975 4.42023 110 43 - + 16.49789 30.66326 39.64652 4.68025 110 42 - + 16.39411 31.16777 40.89328 4.94026 110 40 - + 16.34153 31.67229 42.14005 5.20027 110 39 - + 16.34153 31.67229 42.14005 5.20027 110 39 - + 16.33543 32.17680 43.38681 5.46029 110 38 - + 16.37124 32.68131 44.63358 5.72030 110 37 - + 16.44469 33.18583 45.88034 5.98032 110 36 - + 16.55151 33.69034 47.12711 6.24033 110 35 - + 16.68741 34.19486 48.37387 6.50034 110 34 - + 16.68741 34.19486 48.37387 6.50034 110 34 - + 16.84823 34.69937 49.62064 6.76036 110 34 - + 17.03064 35.20389 50.86741 7.02037 110 33 - + 17.23162 35.70840 52.11417 7.28038 110 33 - + 17.44815 36.21291 53.36094 7.54040 110 33 - + 17.67722 36.71743 54.60770 7.80041 110 32 - + 17.67722 36.71743 54.60770 7.80041 110 32 - + 17.91604 37.22194 55.85447 8.06043 110 32 - + 18.16292 37.72646 57.10123 8.32044 110 32 - + 18.41643 38.23097 58.34800 8.58045 110 32 - + 18.67517 38.73549 59.59476 8.84047 110 31 - + 18.93772 39.24000 60.84153 9.10048 110 31 - + 17.88651 39.24000 60.67194 8.04927 110 29 - + 18.16992 39.73050 62.76883 8.32746 110 29 - + 18.45574 40.22100 64.86572 8.60566 110 28 - + 18.74358 40.71150 66.96261 8.88385 110 28 - + 19.03301 41.20200 69.05950 9.16204 110 28 - + 19.32363 41.69250 71.15639 9.44023 110 27 - + 19.32363 41.69250 71.15639 9.44023 110 27 - + 19.61507 42.18300 73.25328 9.71842 110 27 - + 19.90710 42.67350 75.35017 9.99661 110 26 - + 20.19953 43.16400 77.44706 10.27481 110 26 - + 20.49215 43.65450 79.54395 10.55300 110 26 - + 20.78475 44.14500 81.64084 10.83119 110 25 - + 20.78475 44.14500 81.64084 10.83119 110 25 - + 21.07717 44.63550 83.73773 11.10938 110 25 - + 21.36934 45.12600 85.83462 11.38757 110 25 - + 21.66119 45.61650 87.93151 11.66577 110 25 - + 21.95267 46.10700 90.02840 11.94396 110 24 - + 22.24372 46.59750 92.12529 12.22215 110 24 - + 22.24372 46.59750 92.12529 12.22215 110 24 - + 22.53431 47.08800 94.22218 12.50034 110 24 - + 22.82443 47.57850 96.31907 12.77853 110 24 - + 23.11413 48.06900 98.41596 13.05673 110 23 - + 23.40342 48.55950 100.51285 13.33492 110 23 - + 23.69232 49.05000 102.60974 13.61311 110 23 - + 23.69232 49.05000 102.60974 13.61311 110 23 - 23.98086 49.54050 104.70663 13.89130 110 23 - - 24.26913 50.03100 106.80352 14.16949 110 23 - - 24.55714 50.52150 108.90041 14.44768 110 23 - - 24.84493 51.01200 110.99730 14.72588 110 22 - - 25.13256 51.50250 113.09419 15.00407 110 22 - - 25.13256 51.50250 113.09419 15.00407 110 22 - - 25.42006 51.99300 115.19108 15.28226 110 22 - - 25.70748 52.48350 117.28797 15.56045 110 22 - - 25.99485 52.97400 119.38486 15.83864 110 22 - - 26.28218 53.46450 121.48175 16.11684 110 22 - - 26.56951 53.95500 123.57864 16.39503 110 22 - + 24.26909 50.03100 106.80352 14.16949 110 23 - + 24.55706 50.52150 108.90041 14.44768 110 23 - + 24.84482 51.01200 110.99730 14.72588 110 22 - + 25.13240 51.50250 113.09419 15.00407 110 22 - + 25.13240 51.50250 113.09419 15.00407 110 22 - + 25.41987 51.99300 115.19108 15.28226 110 22 - + 25.70726 52.48350 117.28797 15.56045 110 22 - + 25.99459 52.97400 119.38486 15.83864 110 22 - + 26.28188 53.46450 121.48175 16.11684 110 22 - + 26.56918 53.95500 123.57864 16.39503 110 21 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6521,8 +6364,8 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 33.127 'Clay, sl san, moderate' - -4.00 33.350 'Sand, sl sil, moderate' + 4.00 33.122 'Clay, sl san, moderate' + -4.00 33.351 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -7695,150 +7538,150 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00016 6.82010 -6.00000 - 0.34117 6.82010 -5.94887 - 0.68218 6.82010 -5.89837 - 1.02318 6.82010 -5.84916 - 1.36419 6.82010 -5.80186 - 1.70519 6.82010 -5.75713 - 1.70517 -3.14207 -5.75713 - 1.57949 -3.14207 -5.72353 - 1.45381 -3.14207 -5.69182 - 1.32812 -3.14207 -5.66186 - 1.20244 -3.14207 -5.63350 - 1.07676 -3.14207 -5.60658 - 1.07676 -3.14207 -5.60658 - 1.04534 -3.14158 -5.60005 - 1.01393 -3.14011 -5.59361 - 0.98254 -3.13766 -5.58724 - 0.95118 -3.13422 -5.58095 - 0.91986 -3.12981 -5.57472 - 0.91986 -3.12981 -5.57472 - 0.82623 -3.11068 -5.55646 - 0.73331 -3.08272 -5.53875 - 0.64135 -3.04593 -5.52154 - 0.55064 -3.00032 -5.50476 - 0.46142 -2.94587 -5.48835 - 0.46142 -2.94587 -5.48835 - 0.37393 -2.88701 -5.47225 - 0.28820 -2.82815 -5.45641 - 0.20424 -2.76929 -5.44076 - 0.12205 -2.71043 -5.42525 - 0.04162 -2.65157 -5.40982 - 0.04162 -2.65157 -5.40982 - -0.06288 -2.57309 -5.38928 - -0.16423 -2.49461 -5.36867 - -0.26245 -2.41613 -5.34786 - -0.35752 -2.33765 -5.32674 - -0.44946 -2.25917 -5.30519 - -0.44945 -2.25945 -5.30519 - -0.49425 -2.22021 -5.29422 - -0.53826 -2.18097 -5.28310 - -0.58149 -2.14173 -5.27182 - -0.62393 -2.10249 -5.26036 - -0.66558 -2.06325 -5.24872 - -0.66561 -2.06417 -5.24872 - -0.72665 -2.00531 -5.23088 - -0.78592 -1.94645 -5.21254 - -0.84344 -1.88759 -5.19368 - -0.89918 -1.82873 -5.17425 - -0.95316 -1.76987 -5.15421 - -0.95319 -1.76903 -5.15421 - -1.05250 -1.65523 -5.11360 - -1.14520 -1.54144 -5.07033 - -1.23121 -1.42273 -5.02419 - -1.31003 -1.29351 -4.97496 - -1.38104 -1.15305 -4.92243 - -1.38082 -1.15564 -4.92243 - -1.44350 -1.00395 -4.86638 - -1.49706 -0.84103 -4.80669 - -1.54085 -0.66688 -4.74324 - -1.57420 -0.48149 -4.67593 - -1.59648 -0.28488 -4.60465 - -1.59657 -0.28380 -4.60465 - -1.60706 -0.07595 -4.52930 - -1.60517 0.14313 -4.44990 - -1.59024 0.37344 -4.36647 - -1.56163 0.61498 -4.27907 - -1.51869 0.86776 -4.18772 - -1.51867 0.86936 -4.18772 - -1.46065 1.13337 -4.09249 - -1.38698 1.40861 -3.99357 - -1.29703 1.69508 -3.89120 - -1.19014 1.99278 -3.78558 - -1.06565 2.30172 -3.67697 - -1.06564 2.30268 -3.67697 - -0.92285 2.62284 -3.56560 - -0.76117 2.95424 -3.45191 - -0.57994 3.29687 -3.33634 - -0.37852 3.65073 -3.21935 - -0.15624 4.01583 -3.10140 - -0.15623 4.01618 -3.10140 - 0.00957 4.27452 -3.01976 - 0.18580 4.53819 -2.93814 - 0.37269 4.80721 -2.85675 - 0.57045 5.08157 -2.77581 - 0.77929 5.36127 -2.69556 - 0.77953 5.35778 -2.69556 - 1.05100 4.81306 -2.59010 - 1.29193 4.21248 -2.48688 - 1.49993 3.58910 -2.38635 - 1.67517 2.98818 -2.28896 - 1.81927 2.42124 -2.19515 - 1.81902 2.41820 -2.19515 - 1.93360 1.88368 -2.10530 - 2.02049 1.37992 -2.01957 - 2.08130 0.90521 -1.93811 - 2.11753 0.45777 -1.86104 - 2.13059 0.03577 -1.78849 - 2.13068 0.03196 -1.78849 - 2.12193 -0.35100 -1.72054 - 2.09418 -0.68115 -1.65712 - 2.05017 -0.96108 -1.59813 - 1.99249 -1.19439 -1.54349 - 1.92353 -1.38461 -1.49310 - 1.92353 -1.38336 -1.49310 - 1.84556 -1.53394 -1.44685 - 1.76055 -1.64818 -1.40453 - 1.67035 -1.72924 -1.36596 - 1.57664 -1.78010 -1.33094 - 1.48095 -1.80361 -1.29929 - 1.48096 -1.80253 -1.29929 - 1.38475 -1.80137 -1.27080 - 1.28921 -1.77804 -1.24526 - 1.19545 -1.73490 -1.22248 - 1.10447 -1.67410 -1.20225 - 1.01715 -1.59768 -1.18438 - 1.01716 -1.59693 -1.18438 - 0.93434 -1.50673 -1.16867 - 0.85666 -1.40446 -1.15495 - 0.78472 -1.29168 -1.14307 - 0.71904 -1.16985 -1.13288 - 0.66007 -1.04028 -1.12422 - 0.66008 -1.03983 -1.12422 - 0.60880 -1.01042 -1.11737 - 0.55911 -0.97618 -1.11166 - 0.51125 -0.93795 -1.10700 - 0.46537 -0.89652 -1.10331 - 0.42164 -0.85257 -1.10049 - 0.42164 -0.85232 -1.10049 - 0.38016 -0.80650 -1.09845 - 0.34101 -0.75940 -1.09713 - 0.30423 -0.71153 -1.09645 - 0.26986 -0.66335 -1.09634 - 0.23790 -0.61528 -1.09674 - 0.23790 -0.61514 -1.09674 - 0.20833 -0.56755 -1.09758 - 0.18113 -0.52076 -1.09881 - 0.15624 -0.47505 -1.10039 - 0.13360 -0.43066 -1.10226 - 0.11315 -0.38781 -1.10438 - 0.11315 -0.38774 -1.10438 - 0.09480 -0.34660 -1.10671 - 0.07846 -0.30732 -1.10921 + 0.00000 6.81995 -6.00000 + 0.34100 6.81995 -5.94887 + 0.68200 6.81995 -5.89839 + 1.02299 6.81995 -5.84918 + 1.36399 6.81995 -5.80189 + 1.70499 6.81995 -5.75716 + 1.70499 -3.14199 -5.75716 + 1.57931 -3.14199 -5.72356 + 1.45363 -3.14199 -5.69187 + 1.32795 -3.14199 -5.66191 + 1.20227 -3.14199 -5.63355 + 1.07659 -3.14199 -5.60663 + 1.07659 -3.14199 -5.60663 + 1.04517 -3.14150 -5.60011 + 1.01376 -3.14003 -5.59367 + 0.98237 -3.13758 -5.58730 + 0.95101 -3.13415 -5.58100 + 0.91969 -3.12973 -5.57478 + 0.91969 -3.12973 -5.57478 + 0.82607 -3.11060 -5.55652 + 0.73315 -3.08264 -5.53881 + 0.64120 -3.04586 -5.52160 + 0.55048 -3.00024 -5.50483 + 0.46127 -2.94579 -5.48842 + 0.46127 -2.94579 -5.48842 + 0.37378 -2.88693 -5.47232 + 0.28806 -2.82807 -5.45648 + 0.20410 -2.76921 -5.44083 + 0.12190 -2.71035 -5.42533 + 0.04147 -2.65149 -5.40990 + 0.04147 -2.65149 -5.40990 + -0.06302 -2.57301 -5.38936 + -0.16437 -2.49453 -5.36875 + -0.26258 -2.41605 -5.34794 + -0.35765 -2.33757 -5.32682 + -0.44958 -2.25909 -5.30527 + -0.44958 -2.25937 -5.30527 + -0.49437 -2.22013 -5.29430 + -0.53838 -2.18089 -5.28318 + -0.58161 -2.14165 -5.27190 + -0.62405 -2.10241 -5.26045 + -0.66570 -2.06317 -5.24881 + -0.66572 -2.06409 -5.24881 + -0.72676 -2.00523 -5.23096 + -0.78604 -1.94637 -5.21263 + -0.84355 -1.88751 -5.19377 + -0.89929 -1.82865 -5.17434 + -0.95327 -1.76979 -5.15430 + -0.95330 -1.76895 -5.15430 + -1.05260 -1.65516 -5.11369 + -1.14530 -1.54136 -5.07042 + -1.23130 -1.42266 -5.02428 + -1.31012 -1.29343 -4.97505 + -1.38112 -1.15297 -4.92252 + -1.38091 -1.15557 -4.92252 + -1.44358 -1.00388 -4.86647 + -1.49714 -0.84096 -4.80678 + -1.54092 -0.66680 -4.74333 + -1.57427 -0.48142 -4.67602 + -1.59654 -0.28480 -4.60473 + -1.59663 -0.28373 -4.60473 + -1.60712 -0.07588 -4.52938 + -1.60522 0.14320 -4.44997 + -1.59029 0.37352 -4.36655 + -1.56167 0.61506 -4.27914 + -1.51872 0.86784 -4.18779 + -1.51871 0.86944 -4.18779 + -1.46068 1.13345 -4.09256 + -1.38701 1.40869 -3.99364 + -1.29706 1.69516 -3.89126 + -1.19016 1.99286 -3.78565 + -1.06567 2.30179 -3.67703 + -1.06566 2.30276 -3.67703 + -0.92287 2.62292 -3.56566 + -0.76118 2.95432 -3.45196 + -0.57995 3.29695 -3.33639 + -0.37852 3.65081 -3.21940 + -0.15624 4.01590 -3.10145 + -0.15622 4.01626 -3.10145 + 0.00958 4.27459 -3.01981 + 0.18582 4.53827 -2.93818 + 0.37271 4.80728 -2.85678 + 0.57047 5.08164 -2.77585 + 0.77931 5.36134 -2.69560 + 0.77955 5.35786 -2.69560 + 1.05102 4.81314 -2.59013 + 1.29196 4.21256 -2.48691 + 1.49996 3.58917 -2.38638 + 1.67520 2.98824 -2.28898 + 1.81931 2.42129 -2.19517 + 1.81906 2.41825 -2.19517 + 1.93364 1.88372 -2.10532 + 2.02054 1.37996 -2.01959 + 2.08135 0.90524 -1.93813 + 2.11758 0.45779 -1.86105 + 2.13063 0.03578 -1.78850 + 2.13073 0.03197 -1.78850 + 2.12198 -0.35099 -1.72055 + 2.09422 -0.68115 -1.65713 + 2.05022 -0.96109 -1.59814 + 1.99254 -1.19441 -1.54350 + 1.92358 -1.38464 -1.49311 + 1.92357 -1.38339 -1.49311 + 1.84561 -1.53397 -1.44685 + 1.76059 -1.64821 -1.40453 + 1.67039 -1.72927 -1.36596 + 1.57668 -1.78014 -1.33094 + 1.48099 -1.80365 -1.29929 + 1.48100 -1.80257 -1.29929 + 1.38479 -1.80141 -1.27080 + 1.28924 -1.77808 -1.24526 + 1.19548 -1.73494 -1.22248 + 1.10450 -1.67414 -1.20225 + 1.01718 -1.59772 -1.18438 + 1.01719 -1.59697 -1.18438 + 0.93436 -1.50677 -1.16867 + 0.85668 -1.40450 -1.15495 + 0.78474 -1.29172 -1.14307 + 0.71906 -1.16988 -1.13288 + 0.66009 -1.04031 -1.12421 + 0.66009 -1.03986 -1.12421 + 0.60881 -1.01045 -1.11737 + 0.55913 -0.97621 -1.11166 + 0.51126 -0.93798 -1.10700 + 0.46538 -0.89654 -1.10331 + 0.42165 -0.85260 -1.10049 + 0.42165 -0.85234 -1.10049 + 0.38017 -0.80653 -1.09845 + 0.34102 -0.75942 -1.09713 + 0.30424 -0.71155 -1.09644 + 0.26987 -0.66337 -1.09634 + 0.23790 -0.61530 -1.09674 + 0.23790 -0.61516 -1.09674 + 0.20834 -0.56757 -1.09758 + 0.18113 -0.52077 -1.09881 + 0.15624 -0.47506 -1.10038 + 0.13361 -0.43067 -1.10226 + 0.11315 -0.38782 -1.10438 + 0.11315 -0.38775 -1.10438 + 0.09480 -0.34661 -1.10671 + 0.07846 -0.30733 -1.10921 0.06403 -0.27003 -1.11187 - 0.05142 -0.23482 -1.11465 - 0.04051 -0.20179 -1.11752 + 0.05142 -0.23483 -1.11465 + 0.04052 -0.20180 -1.11752 0.04052 -0.20177 -1.11752 0.03121 -0.17098 -1.12047 0.02338 -0.14248 -1.12348 @@ -7923,7 +7766,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 16.74912 0.00000 110 0 - + 0.00000 0.00000 16.74912 0.00000 1 0 A 0.00000 0.00000 19.27392 0.56973 1 0 A 0.00000 0.00000 21.79871 1.13946 1 0 A 0.00000 0.00000 24.32351 1.70919 1 0 A @@ -8020,65 +7863,65 @@ Status character 6.69993 28.74330 106.79096 20.31827 1 0 A 6.87800 29.26650 108.01633 20.59477 1 0 A 6.87800 29.26650 108.01633 20.59477 1 0 A - 7.63638 29.78970 109.24169 20.87128 110 0 - - 8.40075 30.31290 110.46706 21.14779 110 0 - - 9.13100 30.83610 111.69243 21.42430 110 0 - - 9.82782 31.35930 112.91780 21.70081 110 0 - - 10.49190 31.88250 114.14317 21.97732 110 0 - - 10.49190 31.88250 114.14317 21.97732 110 0 - - 11.12422 32.40570 115.36853 22.25383 110 0 - - 11.72626 32.92890 116.59390 22.53034 110 0 - - 12.29948 33.45210 117.81927 22.80684 110 0 - - 12.84535 33.97530 119.04464 23.08335 110 0 - - 13.36533 34.49850 120.27001 23.35986 110 0 - - 13.36533 34.49850 120.27001 23.35986 110 0 - - 13.86099 35.02170 121.49538 23.63637 110 0 - + 7.63629 29.78970 109.24169 20.87128 110 0 - + 8.40067 30.31290 110.46706 21.14779 110 0 - + 9.13093 30.83610 111.69243 21.42430 110 0 - + 9.82776 31.35930 112.91780 21.70081 110 0 - + 10.49185 31.88250 114.14317 21.97732 110 0 - + 10.49185 31.88250 114.14317 21.97732 110 0 - + 11.12418 32.40570 115.36853 22.25383 110 0 - + 11.72623 32.92890 116.59390 22.53034 110 0 - + 12.29946 33.45210 117.81927 22.80684 110 0 - + 12.84533 33.97530 119.04464 23.08335 110 0 - + 13.36532 34.49850 120.27001 23.35986 110 0 - + 13.36532 34.49850 120.27001 23.35986 110 0 - + 13.86098 35.02170 121.49538 23.63637 110 0 - 14.33393 35.54490 122.72074 23.91288 110 0 - 14.78569 36.06810 123.94611 24.18939 110 0 - 15.21779 36.59130 125.17148 24.46590 110 0 - - 15.63176 37.11450 126.39685 24.74241 110 0 - - 15.63176 37.11450 126.39685 24.74241 110 0 - - 16.02912 37.63770 127.62222 25.01891 110 0 - - 16.41117 38.16090 128.84758 25.29542 110 0 - - 16.77907 38.68410 130.07295 25.57193 110 0 - - 17.13400 39.20730 131.29832 25.84844 110 0 - - 17.47713 39.73050 132.52369 26.12495 110 0 - - 14.60445 39.73050 158.20150 23.25227 110 0 - - 14.94420 40.22100 160.15461 23.53934 110 0 - - 15.27517 40.71150 162.10771 23.82640 110 0 - - 15.59805 41.20200 164.06082 24.11347 110 0 - - 15.91353 41.69250 166.01392 24.40053 110 0 - - 16.22231 42.18300 167.96703 24.68760 110 0 - - 16.22231 42.18300 167.96703 24.68760 110 0 - - 16.52503 42.67350 169.92013 24.97466 110 0 - - 16.82228 43.16400 171.87324 25.26173 110 0 - - 17.11458 43.65450 173.82634 25.54879 110 0 - - 17.40246 44.14500 175.77945 25.83586 110 0 - - 17.68645 44.63550 177.73255 26.12292 110 0 - - 17.68645 44.63550 177.73255 26.12292 110 0 - - 17.96705 45.12600 179.68565 26.40999 110 0 - - 18.24465 45.61650 181.63876 26.69705 110 0 - - 18.51961 46.10700 183.59186 26.98412 110 0 - - 18.79228 46.59750 185.54497 27.27118 110 0 - - 19.06303 47.08800 187.49807 27.55825 110 0 - - 19.06303 47.08800 187.49807 27.55825 110 0 - - 19.33218 47.57850 189.45118 27.84531 110 0 - - 19.59997 48.06900 191.40428 28.13238 110 0 - - 19.86660 48.55950 193.35739 28.41944 110 0 - - 20.13228 49.05000 195.31049 28.70651 110 0 - + 15.63177 37.11450 126.39685 24.74241 110 0 - + 15.63177 37.11450 126.39685 24.74241 110 0 - + 16.02913 37.63770 127.62222 25.01891 110 0 - + 16.41118 38.16090 128.84758 25.29542 110 0 - + 16.77908 38.68410 130.07295 25.57193 110 0 - + 17.13401 39.20730 131.29832 25.84844 110 0 - + 17.47715 39.73050 132.52369 26.12495 110 0 - + 14.60447 39.73050 158.20150 23.25227 110 0 - + 14.94422 40.22100 160.15461 23.53934 110 0 - + 15.27519 40.71150 162.10771 23.82640 110 0 - + 15.59807 41.20200 164.06082 24.11347 110 0 - + 15.91355 41.69250 166.01392 24.40053 110 0 - + 16.22232 42.18300 167.96703 24.68760 110 0 - + 16.22232 42.18300 167.96703 24.68760 110 0 - + 16.52505 42.67350 169.92013 24.97466 110 0 - + 16.82230 43.16400 171.87324 25.26173 110 0 - + 17.11460 43.65450 173.82634 25.54879 110 0 - + 17.40248 44.14500 175.77945 25.83586 110 0 - + 17.68647 44.63550 177.73255 26.12292 110 0 - + 17.68647 44.63550 177.73255 26.12292 110 0 - + 17.96707 45.12600 179.68565 26.40999 110 0 - + 18.24466 45.61650 181.63876 26.69705 110 0 - + 18.51962 46.10700 183.59186 26.98412 110 0 - + 18.79229 46.59750 185.54497 27.27118 110 0 - + 19.06304 47.08800 187.49807 27.55825 110 0 - + 19.06304 47.08800 187.49807 27.55825 110 0 - + 19.33219 47.57850 189.45118 27.84531 110 0 - + 19.59998 48.06900 191.40428 28.13238 110 0 - + 19.86661 48.55950 193.35739 28.41944 110 0 - + 20.13229 49.05000 195.31049 28.70651 110 0 - 20.39723 49.54050 197.26360 28.99357 110 0 - 20.39723 49.54050 197.26360 28.99357 110 0 - 20.66162 50.03100 199.21670 29.28064 110 0 - 20.92556 50.52150 201.16981 29.56770 110 0 - - 21.18914 51.01200 203.12291 29.85477 110 0 - - 21.45246 51.50250 205.07602 30.14183 110 0 - + 21.18915 51.01200 203.12291 29.85477 110 0 - + 21.45247 51.50250 205.07602 30.14183 110 0 - 21.71562 51.99300 207.02912 30.42890 110 0 - 21.71562 51.99300 207.02912 30.42890 110 0 - 21.97869 52.48350 208.98223 30.71596 110 0 - 22.24169 52.97400 210.93533 31.00303 110 0 - 22.50464 53.46450 212.88844 31.29009 110 0 - - 22.76758 53.95500 214.84154 31.57716 110 0 - - 23.03051 54.44550 216.79465 31.86422 110 0 - + 22.76757 53.95500 214.84154 31.57716 110 0 - + 23.03050 54.44550 216.79465 31.86422 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8091,7 +7934,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 20.910 'Clay, sl san, moderate' + 4.00 20.909 'Clay, sl san, moderate' -4.00 28.484 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -8267,67 +8110,67 @@ Status character 16.74912 22.07250 16.74912 0.00000 202 100 P 17.97449 22.59570 17.97449 0.27651 202 100 P 19.19986 23.11890 19.19986 0.55302 202 100 P - 19.18606 23.64210 20.42522 0.82953 110 94 - - 18.71342 24.16530 21.65059 1.10604 110 86 - - 18.26831 24.68850 22.87596 1.38254 110 80 - - 18.26831 24.68850 22.87596 1.38254 110 80 - - 17.85365 25.21170 24.10133 1.65905 110 74 - - 17.47074 25.73490 25.32670 1.93556 110 69 - - 17.12061 26.25810 26.55207 2.21207 110 64 - - 16.80425 26.78130 27.77743 2.48858 110 60 - - 16.52269 27.30450 29.00280 2.76509 110 57 - - 16.52269 27.30450 29.00280 2.76509 110 57 - - 16.27650 27.82770 30.22817 3.04160 110 54 - - 16.06514 28.35090 31.45354 3.31811 110 51 - - 15.88791 28.87410 32.67891 3.59461 110 49 - - 15.74412 29.39730 33.90427 3.87112 110 46 - - 15.63305 29.92050 35.12964 4.14763 110 45 - - 15.63305 29.92050 35.12964 4.14763 110 45 - - 15.55375 30.44370 36.35501 4.42414 110 43 - - 15.50472 30.96690 37.58038 4.70065 110 41 - - 15.48452 31.49010 38.80575 4.97716 110 40 - - 15.49167 32.01330 40.03111 5.25367 110 39 - - 15.52471 32.53650 41.25648 5.53018 110 38 - - 15.52471 32.53650 41.25648 5.53018 110 38 - - 15.58207 33.05970 42.48185 5.80668 110 37 - - 15.66214 33.58290 43.70722 6.08319 110 36 - + 19.18627 23.64210 20.42522 0.82953 110 94 - + 18.71361 24.16530 21.65059 1.10604 110 86 - + 18.26848 24.68850 22.87596 1.38254 110 80 - + 18.26848 24.68850 22.87596 1.38254 110 80 - + 17.85381 25.21170 24.10133 1.65905 110 74 - + 17.47089 25.73490 25.32670 1.93556 110 69 - + 17.12074 26.25810 26.55207 2.21207 110 64 - + 16.80437 26.78130 27.77743 2.48858 110 60 - + 16.52279 27.30450 29.00280 2.76509 110 57 - + 16.52279 27.30450 29.00280 2.76509 110 57 - + 16.27659 27.82770 30.22817 3.04160 110 54 - + 16.06522 28.35090 31.45354 3.31811 110 51 - + 15.88798 28.87410 32.67891 3.59461 110 49 - + 15.74417 29.39730 33.90427 3.87112 110 46 - + 15.63310 29.92050 35.12964 4.14763 110 45 - + 15.63310 29.92050 35.12964 4.14763 110 45 - + 15.55379 30.44370 36.35501 4.42414 110 43 - + 15.50476 30.96690 37.58038 4.70065 110 41 - + 15.48455 31.49010 38.80575 4.97716 110 40 - + 15.49169 32.01330 40.03111 5.25367 110 39 - + 15.52472 32.53650 41.25648 5.53018 110 38 - + 15.52472 32.53650 41.25648 5.53018 110 38 - + 15.58208 33.05970 42.48185 5.80668 110 37 - + 15.66215 33.58290 43.70722 6.08319 110 36 - 15.76340 34.10610 44.93259 6.35970 110 35 - 15.88432 34.62930 46.15796 6.63621 110 34 - - 16.02337 35.15250 47.38332 6.91272 110 34 - - 16.02337 35.15250 47.38332 6.91272 110 34 - - 16.17902 35.67570 48.60869 7.18923 110 33 - - 16.34999 36.19890 49.83406 7.46574 110 33 - - 16.53511 36.72210 51.05943 7.74225 110 32 - - 16.73320 37.24530 52.28480 8.01875 110 32 - - 16.94308 37.76850 53.51016 8.29526 110 32 - - 16.03094 37.76850 50.23256 7.38312 110 32 - - 16.26532 38.25900 52.18566 7.67019 110 31 - - 16.50848 38.74950 54.13877 7.95725 110 30 - - 16.75973 39.24000 56.09187 8.24432 110 30 - - 17.01838 39.73050 58.04498 8.53138 110 29 - - 17.28374 40.22100 59.99808 8.81845 110 29 - - 17.28374 40.22100 59.99808 8.81845 110 29 - - 17.55514 40.71150 61.95119 9.10551 110 28 - - 17.83202 41.20200 63.90429 9.39258 110 28 - - 18.11385 41.69250 65.85740 9.67964 110 28 - - 18.40010 42.18300 67.81050 9.96671 110 27 - - 18.69024 42.67350 69.76361 10.25377 110 27 - - 18.69024 42.67350 69.76361 10.25377 110 27 - - 18.98377 43.16400 71.71671 10.54084 110 26 - - 19.28030 43.65450 73.66982 10.82790 110 26 - - 19.57948 44.14500 75.62292 11.11497 110 26 - - 19.88094 44.63550 77.57603 11.40203 110 26 - - 20.18432 45.12600 79.52913 11.68910 110 25 - - 20.18432 45.12600 79.52913 11.68910 110 25 - - 20.48930 45.61650 81.48223 11.97616 110 25 - - 20.79564 46.10700 83.43534 12.26323 110 25 - - 21.10314 46.59750 85.38844 12.55029 110 25 - - 21.41158 47.08800 87.34155 12.83736 110 25 - - 21.72077 47.57850 89.29465 13.12442 110 24 - - 21.72077 47.57850 89.29465 13.12442 110 24 - - 22.03051 48.06900 91.24776 13.41149 110 24 - - 22.34070 48.55950 93.20086 13.69855 110 24 - - 22.65125 49.05000 95.15397 13.98562 110 24 - + 16.02336 35.15250 47.38332 6.91272 110 34 - + 16.02336 35.15250 47.38332 6.91272 110 34 - + 16.17901 35.67570 48.60869 7.18923 110 33 - + 16.34998 36.19890 49.83406 7.46574 110 33 - + 16.53510 36.72210 51.05943 7.74225 110 32 - + 16.73318 37.24530 52.28480 8.01875 110 32 - + 16.94306 37.76850 53.51016 8.29526 110 32 - + 16.03092 37.76850 50.23256 7.38312 110 32 - + 16.26530 38.25900 52.18566 7.67019 110 31 - + 16.50846 38.74950 54.13877 7.95725 110 30 - + 16.75971 39.24000 56.09187 8.24432 110 30 - + 17.01836 39.73050 58.04498 8.53138 110 29 - + 17.28372 40.22100 59.99808 8.81845 110 29 - + 17.28372 40.22100 59.99808 8.81845 110 29 - + 17.55512 40.71150 61.95119 9.10551 110 28 - + 17.83200 41.20200 63.90429 9.39258 110 28 - + 18.11383 41.69250 65.85740 9.67964 110 28 - + 18.40009 42.18300 67.81050 9.96671 110 27 - + 18.69023 42.67350 69.76361 10.25377 110 27 - + 18.69023 42.67350 69.76361 10.25377 110 27 - + 18.98376 43.16400 71.71671 10.54084 110 26 - + 19.28029 43.65450 73.66982 10.82790 110 26 - + 19.57947 44.14500 75.62292 11.11497 110 26 - + 19.88092 44.63550 77.57603 11.40203 110 26 - + 20.18431 45.12600 79.52913 11.68910 110 25 - + 20.18431 45.12600 79.52913 11.68910 110 25 - + 20.48928 45.61650 81.48223 11.97616 110 25 - + 20.79563 46.10700 83.43534 12.26323 110 25 - + 21.10313 46.59750 85.38844 12.55029 110 25 - + 21.41157 47.08800 87.34155 12.83736 110 25 - + 21.72076 47.57850 89.29465 13.12442 110 24 - + 21.72076 47.57850 89.29465 13.12442 110 24 - + 22.03050 48.06900 91.24776 13.41149 110 24 - + 22.34069 48.55950 93.20086 13.69855 110 24 - + 22.65124 49.05000 95.15397 13.98562 110 24 - 22.96205 49.54050 97.10707 14.27268 110 24 - 23.27302 50.03100 99.06018 14.55975 110 23 - 23.27302 50.03100 99.06018 14.55975 110 23 - @@ -8553,7 +8396,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 15.63454 220000000.000 1 1 1 'Strut' + 0.25000 15.63457 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -8624,157 +8467,157 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00016 7.44341 -6.00000 - 0.37976 7.73091 -6.09973 - 0.77229 7.96038 -6.20017 - 1.17483 8.13176 -6.30207 - 1.58449 8.24496 -6.40620 - 1.99836 8.29984 -6.51328 - 1.99844 -7.28148 -6.51328 - 1.70746 -7.27120 -6.60148 - 1.41664 -7.26894 -6.69173 - 1.12605 -7.25853 -6.78368 - 0.83611 -7.23639 -6.87698 - 0.54730 -7.20250 -6.97128 - 0.54728 -7.20268 -6.97128 - 0.47531 -7.19208 -6.99497 - 0.40345 -7.18017 -7.01870 - 0.33171 -7.16694 -7.04246 - 0.26011 -7.15240 -7.06624 - 0.18867 -7.13654 -7.09004 - 0.18867 -7.13654 -7.09004 - -0.02463 -7.08109 -7.16151 - -0.23608 -7.01380 -7.23297 - -0.44534 -6.93467 -7.30426 - -0.65204 -6.84371 -7.37525 - -0.85584 -6.74092 -7.44581 - -0.85584 -6.74092 -7.44581 - -1.05642 -6.63070 -7.51578 - -1.25365 -6.51749 -7.58505 - -1.44744 -6.40126 -7.65346 - -1.63770 -6.28204 -7.72091 - -1.82433 -6.15981 -7.78724 - -1.82433 -6.15981 -7.78724 - -2.06739 -5.99215 -7.87375 - -2.30364 -5.81916 -7.95777 - -2.53285 -5.64083 -8.03904 - -2.75483 -5.45715 -8.11727 - -2.96935 -5.26813 -8.19220 - -2.96935 -5.26841 -8.19220 - -3.07375 -5.17190 -8.22834 - -3.17621 -5.07405 -8.26356 - -3.27670 -4.97487 -8.29783 - -3.37520 -4.87435 -8.33111 - -3.47167 -4.77249 -8.36338 - -3.47169 -4.77341 -8.36338 - -3.61257 -4.61812 -8.40983 - -3.74875 -4.45983 -8.45383 - -3.88013 -4.29853 -8.49531 - -4.00663 -4.13423 -8.53417 - -4.12815 -3.96693 -8.57032 - -4.12819 -3.96609 -8.57032 - -4.34865 -3.63411 -8.63221 - -4.54953 -3.29090 -8.68313 - -4.73018 -2.93646 -8.72261 - -4.88994 -2.57078 -8.75021 - -5.02817 -2.19387 -8.76547 - -5.02795 -2.19647 -8.76547 - -5.14415 -1.80833 -8.76797 - -5.23750 -1.40896 -8.75749 - -5.30737 -0.99836 -8.73385 - -5.35309 -0.57653 -8.69687 - -5.37403 -0.14346 -8.64638 - -5.37412 -0.14239 -8.64638 - -5.36955 0.30191 -8.58225 - -5.33888 0.75744 -8.50457 - -5.28147 1.22420 -8.41349 - -5.19666 1.70219 -8.30913 - -5.08380 2.19141 -8.19167 - -5.08378 2.19301 -8.19167 - -4.94213 2.69347 -8.06128 - -4.77112 3.20516 -7.91843 - -4.57011 3.72808 -7.76360 - -4.33845 4.26223 -7.59731 - -4.07548 4.80761 -7.42007 - -4.07547 4.80857 -7.42007 - -3.78048 5.36518 -7.23245 - -3.45289 5.93303 -7.03528 - -3.09203 6.51211 -6.82948 - -2.69727 7.10242 -6.61596 - -2.26794 7.70396 -6.39562 - -2.26792 7.70431 -6.39562 - -1.95134 8.12571 -6.24021 - -1.61780 8.55246 -6.08246 - -1.26707 8.98454 -5.92279 - -0.89896 9.42197 -5.76161 - -0.51324 9.86473 -5.59935 - -0.51301 9.86125 -5.59935 - 0.00445 9.53395 -5.38215 - 0.50296 9.15080 -5.16496 - 0.97954 8.71179 -4.94881 - 1.43122 8.21693 -4.73469 - 1.85502 7.66621 -4.52363 - 1.85477 7.66318 -4.52363 - 2.24755 7.05660 -4.31661 - 2.60648 6.39417 -4.11439 - 2.92860 5.67589 -3.91766 - 3.21092 4.90174 -3.72710 - 3.45046 4.07174 -3.54339 - 3.45070 4.06098 -3.54339 - 3.64452 3.20940 -3.36715 - 3.79371 2.39610 -3.19870 - 3.90121 1.64502 -3.03825 - 3.97023 0.95282 -2.88605 - 4.00383 0.31608 -2.74233 - 4.00381 0.31773 -2.74233 - 4.00494 -0.26708 -2.60724 - 3.97618 -0.80346 -2.48070 - 3.92003 -1.29491 -2.36258 - 3.83880 -1.74486 -2.25278 - 3.73479 -2.14583 -2.15118 - 3.73467 -2.14811 -2.15118 - 3.61087 -2.48161 -2.05759 - 3.47128 -2.74148 -1.97170 - 3.31965 -2.93390 -1.89320 - 3.15942 -3.06481 -1.82176 - 2.99373 -3.13987 -1.75706 - 2.99374 -3.13769 -1.75706 - 2.82552 -3.16229 -1.69876 - 2.65723 -3.14153 -1.64649 - 2.49115 -3.08021 -1.59989 - 2.32932 -2.98283 -1.55861 - 2.17355 -2.85362 -1.52230 - 2.17356 -2.85215 -1.52230 - 2.03120 -2.83841 -1.49248 - 1.89008 -2.80319 -1.46645 - 1.75120 -2.74932 -1.44398 - 1.61542 -2.67942 -1.42480 - 1.48348 -2.59594 -1.40864 - 1.48349 -2.59504 -1.40864 - 1.35606 -2.50019 -1.39526 - 1.23362 -2.39603 -1.38442 - 1.11658 -2.28442 -1.37590 - 1.00528 -2.16706 -1.36948 - 0.89995 -2.04549 -1.36495 - 0.89995 -2.04495 -1.36495 - 0.80081 -1.92054 -1.36209 - 0.70793 -1.79451 -1.36073 - 0.62137 -1.66794 -1.36071 - 0.54113 -1.54182 -1.36187 - 0.46716 -1.41697 -1.36404 - 0.46717 -1.41668 -1.36404 - 0.39941 -1.29384 -1.36707 - 0.33774 -1.17361 -1.37085 - 0.28200 -1.05654 -1.37527 - 0.23202 -0.94308 -1.38023 - 0.18762 -0.83360 -1.38563 - 0.18763 -0.83348 -1.38563 - 0.14860 -0.72828 -1.39136 - 0.11472 -0.62760 -1.39737 - 0.08576 -0.53163 -1.40361 + 0.00000 7.44327 -6.00000 + 0.37959 7.73078 -6.09974 + 0.77211 7.96024 -6.20018 + 1.17465 8.13162 -6.30210 + 1.58430 8.24482 -6.40622 + 1.99816 8.29970 -6.51332 + 1.99826 -7.28141 -6.51332 + 1.70728 -7.27113 -6.60152 + 1.41646 -7.26887 -6.69178 + 1.12588 -7.25846 -6.78373 + 0.83594 -7.23632 -6.87703 + 0.54713 -7.20243 -6.97134 + 0.54712 -7.20261 -6.97134 + 0.47514 -7.19201 -6.99503 + 0.40328 -7.18010 -7.01876 + 0.33155 -7.16687 -7.04252 + 0.25995 -7.15233 -7.06630 + 0.18850 -7.13648 -7.09011 + 0.18850 -7.13648 -7.09011 + -0.02479 -7.08102 -7.16158 + -0.23624 -7.01373 -7.23303 + -0.44549 -6.93460 -7.30433 + -0.65220 -6.84364 -7.37533 + -0.85599 -6.74085 -7.44589 + -0.85599 -6.74085 -7.44589 + -1.05657 -6.63064 -7.51586 + -1.25380 -6.51742 -7.58513 + -1.44759 -6.40120 -7.65355 + -1.63784 -6.28197 -7.72099 + -1.82448 -6.15974 -7.78733 + -1.82448 -6.15974 -7.78733 + -2.06753 -5.99209 -7.87384 + -2.30377 -5.81909 -7.95786 + -2.53299 -5.64076 -8.03913 + -2.75496 -5.45708 -8.11737 + -2.96948 -5.26806 -8.19230 + -2.96948 -5.26834 -8.19230 + -3.07388 -5.17183 -8.22844 + -3.17634 -5.07398 -8.26366 + -3.27683 -4.97480 -8.29793 + -3.37532 -4.87428 -8.33121 + -3.47179 -4.77242 -8.36348 + -3.47181 -4.77334 -8.36348 + -3.61269 -4.61805 -8.40993 + -3.74887 -4.45976 -8.45393 + -3.88025 -4.29847 -8.49541 + -4.00674 -4.13416 -8.53427 + -4.12827 -3.96686 -8.57043 + -4.12830 -3.96602 -8.57043 + -4.34876 -3.63404 -8.63232 + -4.54963 -3.29083 -8.68324 + -4.73028 -2.93639 -8.72272 + -4.89004 -2.57071 -8.75032 + -5.02826 -2.19381 -8.76558 + -5.02805 -2.19640 -8.76558 + -5.14423 -1.80827 -8.76808 + -5.23759 -1.40890 -8.75759 + -5.30745 -0.99829 -8.73395 + -5.35317 -0.57646 -8.69697 + -5.37410 -0.14340 -8.64648 + -5.37419 -0.14232 -8.64648 + -5.36962 0.30197 -8.58235 + -5.33895 0.75750 -8.50467 + -5.28153 1.22426 -8.41358 + -5.19671 1.70226 -8.30923 + -5.08385 2.19148 -8.19176 + -5.08384 2.19308 -8.19176 + -4.94218 2.69354 -8.06138 + -4.77117 3.20522 -7.91851 + -4.57016 3.72814 -7.76368 + -4.33849 4.26229 -7.59740 + -4.07551 4.80768 -7.42015 + -4.07550 4.80864 -7.42015 + -3.78051 5.36525 -7.23253 + -3.45292 5.93310 -7.03536 + -3.09206 6.51217 -6.82955 + -2.69729 7.10248 -6.61603 + -2.26795 7.70403 -6.39569 + -2.26794 7.70438 -6.39569 + -1.95135 8.12578 -6.24028 + -1.61780 8.55252 -6.08252 + -1.26708 8.98461 -5.92285 + -0.89896 9.42203 -5.76167 + -0.51325 9.86480 -5.59941 + -0.51301 9.86131 -5.59941 + 0.00445 9.53402 -5.38221 + 0.50296 9.15087 -5.16502 + 0.97955 8.71186 -4.94885 + 1.43123 8.21700 -4.73473 + 1.85504 7.66628 -4.52367 + 1.85479 7.66325 -4.52367 + 2.24757 7.05667 -4.31665 + 2.60651 6.39424 -4.11443 + 2.92863 5.67595 -3.91769 + 3.21095 4.90181 -3.72713 + 3.45049 4.07181 -3.54342 + 3.45073 4.06104 -3.54342 + 3.64456 3.20946 -3.36718 + 3.79376 2.39615 -3.19872 + 3.90125 1.64506 -3.03827 + 3.97028 0.95285 -2.88607 + 4.00388 0.31610 -2.74235 + 4.00386 0.31775 -2.74235 + 4.00499 -0.26706 -2.60726 + 3.97623 -0.80345 -2.48071 + 3.92008 -1.29491 -2.36260 + 3.83885 -1.74486 -2.25279 + 3.73484 -2.14584 -2.15119 + 3.73472 -2.14812 -2.15119 + 3.61092 -2.48163 -2.05760 + 3.47133 -2.74150 -1.97171 + 3.31969 -2.93393 -1.89320 + 3.15947 -3.06484 -1.82176 + 2.99377 -3.13991 -1.75707 + 2.99378 -3.13773 -1.75707 + 2.82557 -3.16233 -1.69877 + 2.65727 -3.14157 -1.64649 + 2.49119 -3.08025 -1.59989 + 2.32935 -2.98287 -1.55861 + 2.17358 -2.85366 -1.52230 + 2.17360 -2.85219 -1.52230 + 2.03124 -2.83845 -1.49248 + 1.89011 -2.80323 -1.46645 + 1.75122 -2.74936 -1.44398 + 1.61544 -2.67946 -1.42480 + 1.48350 -2.59598 -1.40864 + 1.48351 -2.59508 -1.40864 + 1.35608 -2.50023 -1.39526 + 1.23364 -2.39607 -1.38441 + 1.11660 -2.28445 -1.37589 + 1.00529 -2.16709 -1.36948 + 0.89996 -2.04553 -1.36494 + 0.89997 -2.04498 -1.36494 + 0.80082 -1.92057 -1.36209 + 0.70794 -1.79453 -1.36073 + 0.62138 -1.66797 -1.36071 + 0.54113 -1.54184 -1.36186 + 0.46717 -1.41699 -1.36403 + 0.46717 -1.41671 -1.36403 + 0.39942 -1.29386 -1.36706 + 0.33774 -1.17363 -1.37084 + 0.28200 -1.05656 -1.37527 + 0.23203 -0.94309 -1.38023 + 0.18763 -0.83361 -1.38562 + 0.18763 -0.83349 -1.38562 + 0.14860 -0.72829 -1.39136 + 0.11472 -0.62761 -1.39737 + 0.08576 -0.53164 -1.40361 0.06148 -0.44053 -1.41001 - 0.04163 -0.35439 -1.41653 - 0.04163 -0.35436 -1.41653 + 0.04163 -0.35440 -1.41653 + 0.04163 -0.35437 -1.41653 0.02596 -0.27327 -1.42312 0.01422 -0.19726 -1.42976 0.00615 -0.12637 -1.43643 @@ -8853,12 +8696,12 @@ Status character [END OF COLUMN INDICATION] [DATA] 6.33033 0.00000 44.80242 6.33033 110 0 - - 5.16986 0.00000 47.32722 6.90006 110 0 - - 4.00883 0.00000 49.85201 7.46979 110 0 - - 2.84637 0.00000 52.37681 8.03952 110 0 - - 1.68162 0.00000 54.90161 8.60925 110 0 - - 0.51372 0.00000 57.42641 9.17898 110 0 - - 0.51372 0.00000 57.42641 9.17898 110 0 - + 5.16985 0.00000 47.32722 6.90006 110 0 - + 4.00882 0.00000 49.85201 7.46979 110 0 - + 2.84635 0.00000 52.37681 8.03952 110 0 - + 1.68160 0.00000 54.90161 8.60925 110 0 - + 0.51370 0.00000 57.42641 9.17898 110 0 - + 0.51370 0.00000 57.42641 9.17898 110 0 - 0.00000 0.00000 59.44624 9.63476 1 0 A 0.11334 0.00000 61.46608 10.09054 1 0 A 0.40687 0.00000 63.48592 10.54633 1 0 A @@ -8959,55 +8802,55 @@ Status character 12.20117 32.92890 144.64720 28.86066 1 0 A 12.37924 33.45210 145.87257 29.13717 1 0 A 12.55731 33.97530 147.09794 29.41368 1 0 A - 13.14268 34.49850 148.32331 29.69019 110 0 - - 13.14268 34.49850 148.32331 29.69019 110 0 - - 14.13910 35.02170 149.54868 29.96670 110 0 - - 15.07628 35.54490 150.77404 30.24321 110 0 - - 15.95666 36.06810 151.99941 30.51972 110 0 - - 16.78270 36.59130 153.22478 30.79623 110 0 - - 17.55687 37.11450 154.45015 31.07273 110 0 - - 17.55687 37.11450 154.45015 31.07273 110 0 - - 18.28183 37.63770 155.67552 31.34924 110 0 - - 18.96045 38.16090 156.90089 31.62575 110 0 - - 19.59542 38.68410 158.12625 31.90226 110 0 - - 20.18945 39.20730 159.35162 32.17877 110 0 - + 13.14260 34.49850 148.32331 29.69019 110 0 - + 13.14260 34.49850 148.32331 29.69019 110 0 - + 14.13904 35.02170 149.54868 29.96670 110 0 - + 15.07622 35.54490 150.77404 30.24321 110 0 - + 15.95661 36.06810 151.99941 30.51972 110 0 - + 16.78267 36.59130 153.22478 30.79623 110 0 - + 17.55684 37.11450 154.45015 31.07273 110 0 - + 17.55684 37.11450 154.45015 31.07273 110 0 - + 18.28181 37.63770 155.67552 31.34924 110 0 - + 18.96043 38.16090 156.90089 31.62575 110 0 - + 19.59541 38.68410 158.12625 31.90226 110 0 - + 20.18944 39.20730 159.35162 32.17877 110 0 - 20.74525 39.73050 160.57699 32.45528 110 0 - 17.17649 39.73050 196.53526 28.88652 110 0 - 17.69301 40.22100 198.48836 29.17359 110 0 - - 18.18023 40.71150 200.44147 29.46065 110 0 - - 18.64017 41.20200 202.39457 29.74772 110 0 - - 19.07481 41.69250 204.34768 30.03478 110 0 - - 19.48614 42.18300 206.30078 30.32185 110 0 - - 19.48614 42.18300 206.30078 30.32185 110 0 - - 19.87616 42.67350 208.25389 30.60891 110 0 - - 20.24663 43.16400 210.20699 30.89598 110 0 - - 20.59923 43.65450 212.16010 31.18304 110 0 - - 20.93565 44.14500 214.11320 31.47011 110 0 - - 21.25758 44.63550 216.06631 31.75717 110 0 - - 21.25758 44.63550 216.06631 31.75717 110 0 - - 21.56663 45.12600 218.01941 32.04424 110 0 - - 21.86415 45.61650 219.97252 32.33130 110 0 - - 22.15136 46.10700 221.92562 32.61837 110 0 - - 22.42954 46.59750 223.87873 32.90543 110 0 - - 22.69991 47.08800 225.83183 33.19250 110 0 - - 22.69991 47.08800 225.83183 33.19250 110 0 - - 22.96366 47.57850 227.78494 33.47956 110 0 - - 23.22166 48.06900 229.73804 33.76663 110 0 - - 23.47470 48.55950 231.69115 34.05369 110 0 - - 23.72360 49.05000 233.64425 34.34076 110 0 - - 23.96916 49.54050 235.59736 34.62782 110 0 - - 23.96916 49.54050 235.59736 34.62782 110 0 - - 24.21212 50.03100 237.55046 34.91489 110 0 - - 24.45293 50.52150 239.50357 35.20195 110 0 - - 24.69202 51.01200 241.45667 35.48902 110 0 - - 24.92982 51.50250 243.40978 35.77608 110 0 - - 25.16673 51.99300 245.36288 36.06315 110 0 - - 25.16673 51.99300 245.36288 36.06315 110 0 - - 25.40312 52.48350 247.31599 36.35021 110 0 - - 25.63914 52.97400 249.26909 36.63728 110 0 - - 25.87491 53.46450 251.22220 36.92434 110 0 - - 26.11054 53.95500 253.17530 37.21141 110 0 - - 26.34615 54.44550 255.12841 37.49847 110 0 - + 18.18024 40.71150 200.44147 29.46065 110 0 - + 18.64018 41.20200 202.39457 29.74772 110 0 - + 19.07482 41.69250 204.34768 30.03478 110 0 - + 19.48616 42.18300 206.30078 30.32185 110 0 - + 19.48616 42.18300 206.30078 30.32185 110 0 - + 19.87617 42.67350 208.25389 30.60891 110 0 - + 20.24664 43.16400 210.20699 30.89598 110 0 - + 20.59924 43.65450 212.16010 31.18304 110 0 - + 20.93567 44.14500 214.11320 31.47011 110 0 - + 21.25760 44.63550 216.06631 31.75717 110 0 - + 21.25760 44.63550 216.06631 31.75717 110 0 - + 21.56665 45.12600 218.01941 32.04424 110 0 - + 21.86416 45.61650 219.97252 32.33130 110 0 - + 22.15138 46.10700 221.92562 32.61837 110 0 - + 22.42956 46.59750 223.87873 32.90543 110 0 - + 22.69993 47.08800 225.83183 33.19250 110 0 - + 22.69993 47.08800 225.83183 33.19250 110 0 - + 22.96368 47.57850 227.78494 33.47956 110 0 - + 23.22167 48.06900 229.73804 33.76663 110 0 - + 23.47472 48.55950 231.69115 34.05369 110 0 - + 23.72362 49.05000 233.64425 34.34076 110 0 - + 23.96918 49.54050 235.59736 34.62782 110 0 - + 23.96918 49.54050 235.59736 34.62782 110 0 - + 24.21213 50.03100 237.55046 34.91489 110 0 - + 24.45294 50.52150 239.50357 35.20195 110 0 - + 24.69204 51.01200 241.45667 35.48902 110 0 - + 24.92983 51.50250 243.40978 35.77608 110 0 - + 25.16675 51.99300 245.36288 36.06315 110 0 - + 25.16675 51.99300 245.36288 36.06315 110 0 - + 25.40314 52.48350 247.31599 36.35021 110 0 - + 25.63915 52.97400 249.26909 36.63728 110 0 - + 25.87492 53.46450 251.22220 36.92434 110 0 - + 26.11055 53.95500 253.17530 37.21141 110 0 - + 26.34616 54.44550 255.12841 37.49847 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9206,65 +9049,65 @@ Status character 27.77743 26.78130 27.77743 2.48858 202 100 P 29.00280 27.30450 29.00280 2.76509 202 100 P 29.00280 27.30450 29.00280 2.76509 202 100 P - 28.94279 27.82770 30.22817 3.04160 110 96 - - 27.92346 28.35090 31.45354 3.31811 110 89 - - 26.96577 28.87410 32.67891 3.59461 110 83 - - 26.07151 29.39730 33.90427 3.87112 110 77 - - 25.24248 29.92050 35.12964 4.14763 110 72 - - 25.24248 29.92050 35.12964 4.14763 110 72 - - 24.47983 30.44370 36.35501 4.42414 110 67 - - 23.78293 30.96690 37.58038 4.70065 110 63 - - 23.15087 31.49010 38.80575 4.97716 110 60 - - 22.58275 32.01330 40.03111 5.25367 110 56 - - 22.07768 32.53650 41.25648 5.53018 110 54 - - 22.07768 32.53650 41.25648 5.53018 110 54 - - 21.63428 33.05970 42.48185 5.80668 110 51 - - 21.25012 33.58290 43.70722 6.08319 110 49 - - 20.92276 34.10610 44.93259 6.35970 110 47 - - 20.64973 34.62930 46.15796 6.63621 110 45 - - 20.42859 35.15250 47.38332 6.91272 110 43 - - 20.42859 35.15250 47.38332 6.91272 110 43 - - 20.25664 35.67570 48.60869 7.18923 110 42 - - 20.13104 36.19890 49.83406 7.46574 110 40 - - 20.04909 36.72210 51.05943 7.74225 110 39 - - 20.00807 37.24530 52.28480 8.01875 110 38 - + 28.94300 27.82770 30.22817 3.04160 110 96 - + 27.92365 28.35090 31.45354 3.31811 110 89 - + 26.96595 28.87410 32.67891 3.59461 110 83 - + 26.07167 29.39730 33.90427 3.87112 110 77 - + 25.24263 29.92050 35.12964 4.14763 110 72 - + 25.24263 29.92050 35.12964 4.14763 110 72 - + 24.47996 30.44370 36.35501 4.42414 110 67 - + 23.78304 30.96690 37.58038 4.70065 110 63 - + 23.15097 31.49010 38.80575 4.97716 110 60 - + 22.58284 32.01330 40.03111 5.25367 110 56 - + 22.07776 32.53650 41.25648 5.53018 110 54 - + 22.07776 32.53650 41.25648 5.53018 110 54 - + 21.63435 33.05970 42.48185 5.80668 110 51 - + 21.25018 33.58290 43.70722 6.08319 110 49 - + 20.92281 34.10610 44.93259 6.35970 110 47 - + 20.64977 34.62930 46.15796 6.63621 110 45 - + 20.42862 35.15250 47.38332 6.91272 110 43 - + 20.42862 35.15250 47.38332 6.91272 110 43 - + 20.25666 35.67570 48.60869 7.18923 110 42 - + 20.13106 36.19890 49.83406 7.46574 110 40 - + 20.04910 36.72210 51.05943 7.74225 110 39 - + 20.00808 37.24530 52.28480 8.01875 110 38 - 20.00529 37.76850 53.51016 8.29526 110 37 - 19.09315 37.76850 50.23256 7.38312 110 38 - 19.15077 38.25900 52.18566 7.67019 110 37 - 19.23767 38.74950 54.13877 7.95725 110 36 - - 19.35187 39.24000 56.09187 8.24432 110 35 - - 19.49136 39.73050 58.04498 8.53138 110 34 - - 19.65415 40.22100 59.99808 8.81845 110 33 - - 19.65415 40.22100 59.99808 8.81845 110 33 - - 19.83826 40.71150 61.95119 9.10551 110 32 - - 20.04193 41.20200 63.90429 9.39258 110 31 - - 20.26346 41.69250 65.85740 9.67964 110 31 - - 20.50116 42.18300 67.81050 9.96671 110 30 - - 20.75337 42.67350 69.76361 10.25377 110 30 - - 20.75337 42.67350 69.76361 10.25377 110 30 - - 21.01844 43.16400 71.71671 10.54084 110 29 - - 21.29506 43.65450 73.66982 10.82790 110 29 - - 21.58197 44.14500 75.62292 11.11497 110 29 - - 21.87793 44.63550 77.57603 11.40203 110 28 - - 22.18168 45.12600 79.52913 11.68910 110 28 - - 22.18168 45.12600 79.52913 11.68910 110 28 - - 22.49206 45.61650 81.48223 11.97616 110 28 - - 22.80820 46.10700 83.43534 12.26323 110 27 - - 23.12928 46.59750 85.38844 12.55029 110 27 - - 23.45451 47.08800 87.34155 12.83736 110 27 - - 23.78308 47.57850 89.29465 13.12442 110 27 - - 23.78308 47.57850 89.29465 13.12442 110 27 - - 24.11426 48.06900 91.24776 13.41149 110 26 - - 24.44758 48.55950 93.20086 13.69855 110 26 - - 24.78261 49.05000 95.15397 13.98562 110 26 - - 25.11895 49.54050 97.10707 14.27268 110 26 - - 25.45616 50.03100 99.06018 14.55975 110 26 - - 25.45616 50.03100 99.06018 14.55975 110 26 - - 25.79390 50.52150 101.01328 14.84681 110 26 - - 26.13202 51.01200 102.96639 15.13388 110 25 - - 26.47038 51.50250 104.91949 15.42094 110 25 - - 26.80888 51.99300 106.87260 15.70801 110 25 - - 27.14739 52.48350 108.82570 15.99507 110 25 - + 19.35186 39.24000 56.09187 8.24432 110 35 - + 19.49135 39.73050 58.04498 8.53138 110 34 - + 19.65414 40.22100 59.99808 8.81845 110 33 - + 19.65414 40.22100 59.99808 8.81845 110 33 - + 19.83825 40.71150 61.95119 9.10551 110 32 - + 20.04191 41.20200 63.90429 9.39258 110 31 - + 20.26344 41.69250 65.85740 9.67964 110 31 - + 20.50115 42.18300 67.81050 9.96671 110 30 - + 20.75335 42.67350 69.76361 10.25377 110 30 - + 20.75335 42.67350 69.76361 10.25377 110 30 - + 21.01842 43.16400 71.71671 10.54084 110 29 - + 21.29504 43.65450 73.66982 10.82790 110 29 - + 21.58195 44.14500 75.62292 11.11497 110 29 - + 21.87791 44.63550 77.57603 11.40203 110 28 - + 22.18166 45.12600 79.52913 11.68910 110 28 - + 22.18166 45.12600 79.52913 11.68910 110 28 - + 22.49204 45.61650 81.48223 11.97616 110 28 - + 22.80818 46.10700 83.43534 12.26323 110 27 - + 23.12927 46.59750 85.38844 12.55029 110 27 - + 23.45450 47.08800 87.34155 12.83736 110 27 - + 23.78307 47.57850 89.29465 13.12442 110 27 - + 23.78307 47.57850 89.29465 13.12442 110 27 - + 24.11424 48.06900 91.24776 13.41149 110 26 - + 24.44756 48.55950 93.20086 13.69855 110 26 - + 24.78260 49.05000 95.15397 13.98562 110 26 - + 25.11893 49.54050 97.10707 14.27268 110 26 - + 25.45615 50.03100 99.06018 14.55975 110 26 - + 25.45615 50.03100 99.06018 14.55975 110 26 - + 25.79389 50.52150 101.01328 14.84681 110 26 - + 26.13200 51.01200 102.96639 15.13388 110 25 - + 26.47037 51.50250 104.91949 15.42094 110 25 - + 26.80887 51.99300 106.87260 15.70801 110 25 - + 27.14738 52.48350 108.82570 15.99507 110 25 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10416,7 +10259,7 @@ Name 642.19 : Max effective resistance right -809.19 : Max moment left -2320.05 : Max moment right - -246.84 : Max mobilized moment left + -246.85 : Max mobilized moment left -216.31 : Max mobilized moment right 21.77 : Vertical force left 19.32 : Vertical force right @@ -10451,160 +10294,160 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00053 7.04641 -6.00000 - 0.35285 7.04641 -5.91683 - 0.70517 7.04641 -5.83432 - 1.05750 7.04641 -5.75314 - 1.40982 7.04641 -5.67393 - 1.76214 7.04641 -5.59738 - 1.76208 -2.91628 -5.59738 - 1.64543 -2.91628 -5.53840 - 1.52877 -2.91628 -5.48139 - 1.41212 -2.91628 -5.42622 - 1.29547 -2.91628 -5.37274 - 1.17882 -2.91628 -5.32082 - 1.17882 -2.91628 -5.32082 - 1.14966 -2.91579 -5.30807 - 1.12051 -2.91431 -5.29540 - 1.09138 -2.91186 -5.28282 - 1.06228 -2.90843 -5.27031 - 1.03321 -2.90401 -5.25789 - 1.03321 -2.90401 -5.25789 - 0.94636 -2.88488 -5.22108 - 0.86021 -2.85693 -5.18491 - 0.77503 -2.82014 -5.14932 - 0.69109 -2.77452 -5.11425 - 0.60865 -2.72008 -5.07965 - 0.60865 -2.72008 -5.07965 - 0.52793 -2.66122 -5.04546 - 0.44897 -2.60236 -5.01163 - 0.37179 -2.54350 -4.97809 - 0.29636 -2.48464 -4.94482 - 0.22271 -2.42578 -4.91174 - 0.22271 -2.42578 -4.91174 - 0.12725 -2.34730 -4.86786 - 0.03492 -2.26882 -4.82413 - -0.05426 -2.19034 -4.78044 - -0.14030 -2.11186 -4.73669 - -0.22321 -2.03338 -4.69278 - -0.22321 -2.03338 -4.69278 - -0.26348 -1.99414 -4.67073 - -0.30297 -1.95490 -4.64859 - -0.34168 -1.91566 -4.62637 - -0.37960 -1.87642 -4.60405 - -0.41674 -1.83718 -4.58161 - -0.41674 -1.83718 -4.58161 - -0.47097 -1.77832 -4.54771 - -0.52343 -1.71946 -4.51349 - -0.57413 -1.66060 -4.47892 - -0.62307 -1.60174 -4.44397 - -0.67024 -1.54288 -4.40860 - -0.66969 -1.56853 -4.40860 - -0.75737 -1.45474 -4.33888 - -0.83844 -1.34094 -4.26725 - -0.91282 -1.22224 -4.19353 - -0.98002 -1.09301 -4.11752 - -1.03940 -0.95255 -4.03903 - -1.03902 -0.95375 -4.03903 - -1.09000 -0.80206 -3.95789 - -1.13184 -0.63914 -3.87401 - -1.16392 -0.46499 -3.78728 - -1.18557 -0.27960 -3.69765 - -1.19613 -0.08298 -3.60502 - -1.19657 -0.08193 -3.60502 - -1.19535 0.12591 -3.50934 - -1.18174 0.34500 -3.41064 - -1.15511 0.57531 -3.30899 - -1.11479 0.81685 -3.20445 - -1.06014 1.06963 -3.09710 - -1.06008 1.07406 -3.09710 - -0.99018 1.33807 -2.98703 - -0.90464 1.61331 -2.87446 - -0.80282 1.89978 -2.75964 - -0.68405 2.19748 -2.64283 - -0.54769 2.50642 -2.52430 - -0.54765 2.50822 -2.52430 - -0.39295 2.82839 -2.40433 - -0.21934 3.15979 -2.28336 - -0.02619 3.50242 -2.16188 - 0.18715 3.85628 -2.04038 - 0.42135 4.22137 -1.91936 - 0.42137 4.22168 -1.91936 - 0.59539 4.48001 -1.83644 - 0.77984 4.74368 -1.75424 - 0.97495 5.01270 -1.67298 - 1.18093 5.28706 -1.59291 - 1.39799 5.56676 -1.51425 - 1.39799 5.56658 -1.51425 - 1.68060 5.02187 -1.41207 - 1.93267 4.42129 -1.31348 - 2.15121 3.76486 -1.21895 - 2.33326 3.05257 -1.12893 - 2.47583 2.28443 -1.04390 - 2.47613 2.26884 -1.04390 - 2.57577 1.46476 -0.96424 - 2.63298 0.69453 -0.89009 - 2.65128 0.00471 -0.82147 - 2.63479 -0.61137 -0.75845 - 2.58726 -1.16044 -0.70105 - 2.58756 -1.16544 -0.70105 - 2.51212 -1.65425 -0.64925 - 2.41223 -2.08001 -0.60280 - 2.29175 -2.42157 -0.56147 - 2.15559 -2.66976 -0.52499 - 2.00843 -2.83592 -0.49311 - 2.00829 -2.83384 -0.49311 - 1.85433 -2.92867 -0.46554 - 1.69699 -2.96208 -0.44193 - 1.53931 -2.94316 -0.42194 - 1.38384 -2.88021 -0.40523 - 1.23273 -2.78070 -0.39148 - 1.23276 -2.77805 -0.39148 - 1.08793 -2.64868 -0.38034 - 0.95066 -2.49536 -0.37152 - 0.82209 -2.32334 -0.36475 - 0.70309 -2.13718 -0.35975 - 0.59431 -1.94083 -0.35625 - 0.59432 -1.93952 -0.35625 - 0.49628 -1.73626 -0.35399 - 0.40920 -1.52883 -0.35279 - 0.33324 -1.31959 -0.35248 - 0.26844 -1.11049 -0.35290 - 0.21475 -0.90309 -0.35390 - 0.21477 -0.90263 -0.35390 - 0.17199 -0.80883 -0.35523 - 0.13383 -0.71840 -0.35688 - 0.10008 -0.63197 -0.35879 - 0.07055 -0.55006 -0.36090 - 0.04500 -0.47304 -0.36314 - 0.04500 -0.47295 -0.36314 - 0.02317 -0.40105 -0.36545 - 0.00481 -0.33441 -0.36781 - -0.01036 -0.27309 -0.37018 - -0.02259 -0.21708 -0.37254 - -0.03215 -0.16633 -0.37485 - -0.03215 -0.16638 -0.37485 - -0.03931 -0.12076 -0.37710 - -0.04431 -0.08012 -0.37927 - -0.04740 -0.04428 -0.38137 - -0.04882 -0.01305 -0.38337 - -0.04878 0.01376 -0.38529 - -0.04878 0.01367 -0.38529 - -0.04751 0.03628 -0.38711 - -0.04522 0.05488 -0.38885 - -0.04209 0.06968 -0.39050 - -0.03831 0.08086 -0.39207 - -0.03406 0.08858 -0.39357 - -0.03406 0.08852 -0.39357 - -0.02951 0.09294 -0.39500 - -0.02482 0.09419 -0.39638 - -0.02015 0.09239 -0.39771 - -0.01563 0.08763 -0.39901 - -0.01143 0.07999 -0.40028 - -0.01143 0.07997 -0.40028 - -0.00768 0.06950 -0.40152 - -0.00453 0.05625 -0.40275 - -0.00210 0.04024 -0.40397 + 0.00000 7.04593 -6.00000 + 0.35230 7.04593 -5.91685 + 0.70459 7.04593 -5.83437 + 1.05689 7.04593 -5.75320 + 1.40919 7.04593 -5.67402 + 1.76148 7.04593 -5.59748 + 1.76148 -2.91602 -5.59748 + 1.64484 -2.91602 -5.53852 + 1.52820 -2.91602 -5.48152 + 1.41156 -2.91602 -5.42637 + 1.29492 -2.91602 -5.37290 + 1.17828 -2.91602 -5.32099 + 1.17828 -2.91602 -5.32099 + 1.14912 -2.91553 -5.30824 + 1.11997 -2.91406 -5.29557 + 1.09084 -2.91161 -5.28299 + 1.06174 -2.90817 -5.27049 + 1.03268 -2.90376 -5.25807 + 1.03268 -2.90376 -5.25807 + 0.94583 -2.88463 -5.22127 + 0.85969 -2.85667 -5.18511 + 0.77452 -2.81988 -5.14952 + 0.69059 -2.77427 -5.11446 + 0.60815 -2.71982 -5.07987 + 0.60815 -2.71982 -5.07987 + 0.52744 -2.66096 -5.04568 + 0.44850 -2.60210 -5.01185 + 0.37132 -2.54324 -4.97833 + 0.29590 -2.48438 -4.94506 + 0.22225 -2.42552 -4.91198 + 0.22225 -2.42552 -4.91198 + 0.12680 -2.34704 -4.86810 + 0.03449 -2.26856 -4.82438 + -0.05468 -2.19008 -4.78070 + -0.14072 -2.11160 -4.73696 + -0.22361 -2.03312 -4.69305 + -0.22361 -2.03312 -4.69305 + -0.26388 -1.99388 -4.67099 + -0.30337 -1.95464 -4.64886 + -0.34207 -1.91540 -4.62664 + -0.37998 -1.87616 -4.60432 + -0.41711 -1.83692 -4.58188 + -0.41711 -1.83692 -4.58188 + -0.47134 -1.77806 -4.54798 + -0.52380 -1.71920 -4.51377 + -0.57449 -1.66034 -4.47920 + -0.62342 -1.60148 -4.44425 + -0.67058 -1.54262 -4.40887 + -0.67004 -1.56828 -4.40887 + -0.75770 -1.45448 -4.33916 + -0.83876 -1.34069 -4.26753 + -0.91312 -1.22198 -4.19380 + -0.98030 -1.09276 -4.11779 + -1.03966 -0.95230 -4.03930 + -1.03929 -0.95350 -4.03930 + -1.09025 -0.80181 -3.95816 + -1.13208 -0.63888 -3.87427 + -1.16414 -0.46473 -3.78754 + -1.18577 -0.27935 -3.69791 + -1.19633 -0.08273 -3.60527 + -1.19676 -0.08168 -3.60527 + -1.19552 0.12617 -3.50959 + -1.18191 0.34525 -3.41088 + -1.15526 0.57556 -3.30922 + -1.11493 0.81711 -3.20468 + -1.06026 1.06988 -3.09732 + -1.06020 1.07432 -3.09732 + -0.99028 1.33833 -2.98724 + -0.90473 1.61356 -2.87466 + -0.80289 1.90004 -2.75983 + -0.68411 2.19774 -2.64301 + -0.54774 2.50667 -2.52447 + -0.54770 2.50848 -2.52447 + -0.39298 2.82864 -2.40449 + -0.21936 3.16004 -2.28351 + -0.02619 3.50267 -2.16202 + 0.18717 3.85653 -2.04052 + 0.42138 4.22163 -1.91948 + 0.42140 4.22193 -1.91948 + 0.59543 4.48026 -1.83656 + 0.77989 4.74394 -1.75435 + 0.97501 5.01296 -1.67309 + 1.18100 5.28731 -1.59301 + 1.39807 5.56701 -1.51435 + 1.39807 5.56684 -1.51435 + 1.68070 5.02212 -1.41216 + 1.93277 4.42155 -1.31356 + 2.15133 3.76512 -1.21902 + 2.33339 3.05283 -1.12900 + 2.47598 2.28469 -1.04396 + 2.47628 2.26909 -1.04396 + 2.57593 1.46498 -0.96429 + 2.63315 0.69469 -0.89013 + 2.65146 0.00483 -0.82151 + 2.63497 -0.61130 -0.75848 + 2.58744 -1.16042 -0.70108 + 2.58775 -1.16541 -0.70108 + 2.51231 -1.65425 -0.64927 + 2.41242 -2.08005 -0.60282 + 2.29193 -2.42166 -0.56148 + 2.15577 -2.66988 -0.52500 + 2.00860 -2.83607 -0.49312 + 2.00846 -2.83399 -0.49312 + 1.85449 -2.92884 -0.46555 + 1.69714 -2.96227 -0.44194 + 1.53945 -2.94336 -0.42194 + 1.38397 -2.88041 -0.40523 + 1.23285 -2.78091 -0.39148 + 1.23288 -2.77825 -0.39148 + 1.08804 -2.64888 -0.38034 + 0.95076 -2.49556 -0.37152 + 0.82218 -2.32353 -0.36475 + 0.70317 -2.13737 -0.35975 + 0.59437 -1.94100 -0.35625 + 0.59439 -1.93970 -0.35625 + 0.49634 -1.73642 -0.35399 + 0.40925 -1.52898 -0.35278 + 0.33328 -1.31973 -0.35247 + 0.26847 -1.11062 -0.35290 + 0.21478 -0.90320 -0.35389 + 0.21479 -0.90274 -0.35389 + 0.17201 -0.80893 -0.35522 + 0.13384 -0.71849 -0.35688 + 0.10010 -0.63205 -0.35879 + 0.07056 -0.55013 -0.36089 + 0.04500 -0.47310 -0.36313 + 0.04501 -0.47301 -0.36313 + 0.02318 -0.40111 -0.36545 + 0.00481 -0.33445 -0.36780 + -0.01036 -0.27312 -0.37017 + -0.02259 -0.21711 -0.37253 + -0.03216 -0.16635 -0.37485 + -0.03215 -0.16640 -0.37485 + -0.03931 -0.12078 -0.37709 + -0.04432 -0.08013 -0.37927 + -0.04741 -0.04429 -0.38136 + -0.04882 -0.01306 -0.38337 + -0.04879 0.01376 -0.38529 + -0.04879 0.01367 -0.38529 + -0.04752 0.03628 -0.38711 + -0.04522 0.05489 -0.38884 + -0.04209 0.06969 -0.39049 + -0.03832 0.08087 -0.39207 + -0.03407 0.08859 -0.39357 + -0.03407 0.08853 -0.39357 + -0.02952 0.09295 -0.39500 + -0.02482 0.09420 -0.39638 + -0.02015 0.09240 -0.39771 + -0.01563 0.08764 -0.39901 + -0.01143 0.08000 -0.40028 + -0.01143 0.07998 -0.40028 + -0.00768 0.06951 -0.40152 + -0.00453 0.05626 -0.40275 + -0.00210 0.04025 -0.40398 -0.00055 0.02149 -0.40519 0.00000 0.00000 -0.40641 [END OF DATA] @@ -10679,7 +10522,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 16.74912 0.00000 110 0 - + 0.00000 0.00000 16.74912 0.00000 1 0 A 0.00000 0.00000 19.27392 0.56973 1 0 A 0.00000 0.00000 21.79871 1.13946 1 0 A 0.00000 0.00000 24.32351 1.70919 1 0 A @@ -10777,64 +10620,64 @@ Status character 6.87800 29.26650 108.01633 20.59477 1 0 A 6.87800 29.26650 108.01633 20.59477 1 0 A 7.05606 29.78970 109.24169 20.87128 1 0 A - 7.58474 30.31290 110.46706 21.14779 110 0 - - 8.79132 30.83610 111.69243 21.42430 110 0 - - 9.88863 31.35930 112.91780 21.70081 110 0 - - 10.88231 31.88250 114.14317 21.97732 110 0 - - 10.88231 31.88250 114.14317 21.97732 110 0 - - 11.77909 32.40570 115.36853 22.25383 110 0 - - 12.58691 32.92890 116.59390 22.53034 110 0 - - 13.31327 33.45210 117.81927 22.80684 110 0 - - 13.96567 33.97530 119.04464 23.08335 110 0 - - 14.55160 34.49850 120.27001 23.35986 110 0 - - 14.55160 34.49850 120.27001 23.35986 110 0 - - 15.07868 35.02170 121.49538 23.63637 110 0 - - 15.55358 35.54490 122.72074 23.91288 110 0 - - 15.98246 36.06810 123.94611 24.18939 110 0 - - 16.37148 36.59130 125.17148 24.46590 110 0 - - 16.72676 37.11450 126.39685 24.74241 110 0 - - 16.72676 37.11450 126.39685 24.74241 110 0 - - 17.05413 37.63770 127.62222 25.01891 110 0 - - 17.35772 38.16090 128.84758 25.29542 110 0 - - 17.64119 38.68410 130.07295 25.57193 110 0 - - 17.90816 39.20730 131.29832 25.84844 110 0 - - 18.16230 39.73050 132.52369 26.12495 110 0 - - 15.28962 39.73050 158.20150 23.25227 110 0 - - 15.54673 40.22100 160.15461 23.53934 110 0 - - 15.79660 40.71150 162.10771 23.82640 110 0 - - 16.04066 41.20200 164.06082 24.11347 110 0 - - 16.28032 41.69250 166.01392 24.40053 110 0 - - 16.51703 42.18300 167.96703 24.68760 110 0 - - 16.51703 42.18300 167.96703 24.68760 110 0 - - 16.75204 42.67350 169.92013 24.97466 110 0 - - 16.98607 43.16400 171.87324 25.26173 110 0 - - 17.21978 43.65450 173.82634 25.54879 110 0 - - 17.45382 44.14500 175.77945 25.83586 110 0 - - 17.68882 44.63550 177.73255 26.12292 110 0 - - 17.68882 44.63550 177.73255 26.12292 110 0 - - 17.92530 45.12600 179.68565 26.40999 110 0 - - 18.16345 45.61650 181.63876 26.69705 110 0 - - 18.40339 46.10700 183.59186 26.98412 110 0 - - 18.64526 46.59750 185.54497 27.27118 110 0 - - 18.88921 47.08800 187.49807 27.55825 110 0 - - 18.88921 47.08800 187.49807 27.55825 110 0 - - 19.13528 47.57850 189.45118 27.84531 110 0 - - 19.38335 48.06900 191.40428 28.13238 110 0 - - 19.63330 48.55950 193.35739 28.41944 110 0 - - 19.88500 49.05000 195.31049 28.70651 110 0 - - 20.13832 49.54050 197.26360 28.99357 110 0 - - 20.13832 49.54050 197.26360 28.99357 110 0 - + 7.58428 30.31290 110.46706 21.14779 110 0 - + 8.79095 30.83610 111.69243 21.42430 110 0 - + 9.88833 31.35930 112.91780 21.70081 110 0 - + 10.88208 31.88250 114.14317 21.97732 110 0 - + 10.88208 31.88250 114.14317 21.97732 110 0 - + 11.77892 32.40570 115.36853 22.25383 110 0 - + 12.58679 32.92890 116.59390 22.53034 110 0 - + 13.31320 33.45210 117.81927 22.80684 110 0 - + 13.96564 33.97530 119.04464 23.08335 110 0 - + 14.55161 34.49850 120.27001 23.35986 110 0 - + 14.55161 34.49850 120.27001 23.35986 110 0 - + 15.07871 35.02170 121.49538 23.63637 110 0 - + 15.55364 35.54490 122.72074 23.91288 110 0 - + 15.98254 36.06810 123.94611 24.18939 110 0 - + 16.37157 36.59130 125.17148 24.46590 110 0 - + 16.72686 37.11450 126.39685 24.74241 110 0 - + 16.72686 37.11450 126.39685 24.74241 110 0 - + 17.05424 37.63770 127.62222 25.01891 110 0 - + 17.35784 38.16090 128.84758 25.29542 110 0 - + 17.64130 38.68410 130.07295 25.57193 110 0 - + 17.90828 39.20730 131.29832 25.84844 110 0 - + 18.16241 39.73050 132.52369 26.12495 110 0 - + 15.28973 39.73050 158.20150 23.25227 110 0 - + 15.54684 40.22100 160.15461 23.53934 110 0 - + 15.79671 40.71150 162.10771 23.82640 110 0 - + 16.04076 41.20200 164.06082 24.11347 110 0 - + 16.28042 41.69250 166.01392 24.40053 110 0 - + 16.51712 42.18300 167.96703 24.68760 110 0 - + 16.51712 42.18300 167.96703 24.68760 110 0 - + 16.75212 42.67350 169.92013 24.97466 110 0 - + 16.98615 43.16400 171.87324 25.26173 110 0 - + 17.21986 43.65450 173.82634 25.54879 110 0 - + 17.45388 44.14500 175.77945 25.83586 110 0 - + 17.68888 44.63550 177.73255 26.12292 110 0 - + 17.68888 44.63550 177.73255 26.12292 110 0 - + 17.92535 45.12600 179.68565 26.40999 110 0 - + 18.16349 45.61650 181.63876 26.69705 110 0 - + 18.40343 46.10700 183.59186 26.98412 110 0 - + 18.64530 46.59750 185.54497 27.27118 110 0 - + 18.88924 47.08800 187.49807 27.55825 110 0 - + 18.88924 47.08800 187.49807 27.55825 110 0 - + 19.13531 47.57850 189.45118 27.84531 110 0 - + 19.38337 48.06900 191.40428 28.13238 110 0 - + 19.63332 48.55950 193.35739 28.41944 110 0 - + 19.88502 49.05000 195.31049 28.70651 110 0 - + 20.13833 49.54050 197.26360 28.99357 110 0 - + 20.13833 49.54050 197.26360 28.99357 110 0 - 20.39310 50.03100 199.21670 29.28064 110 0 - 20.64912 50.52150 201.16981 29.56770 110 0 - 20.90618 51.01200 203.12291 29.85477 110 0 - - 21.16411 51.50250 205.07602 30.14183 110 0 - - 21.42269 51.99300 207.02912 30.42890 110 0 - - 21.42269 51.99300 207.02912 30.42890 110 0 - - 21.68173 52.48350 208.98223 30.71596 110 0 - - 21.94109 52.97400 210.93533 31.00303 110 0 - - 22.20067 53.46450 212.88844 31.29009 110 0 - - 22.46038 53.95500 214.84154 31.57716 110 0 - - 22.72010 54.44550 216.79465 31.86422 110 0 - + 21.16410 51.50250 205.07602 30.14183 110 0 - + 21.42268 51.99300 207.02912 30.42890 110 0 - + 21.42268 51.99300 207.02912 30.42890 110 0 - + 21.68172 52.48350 208.98223 30.71596 110 0 - + 21.94108 52.97400 210.93533 31.00303 110 0 - + 22.20065 53.46450 212.88844 31.29009 110 0 - + 22.46035 53.95500 214.84154 31.57716 110 0 - + 22.72008 54.44550 216.79465 31.86422 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11027,71 +10870,71 @@ Status character 21.65059 24.16530 21.65059 1.10604 202 100 P 22.87596 24.68850 22.87596 1.38254 202 100 P 22.87596 24.68850 22.87596 1.38254 202 100 P - 23.35451 25.21170 24.10133 1.65905 110 97 - - 21.96251 25.73490 25.32670 1.93556 110 87 - - 20.69521 26.25810 26.55207 2.21207 110 78 - - 19.55362 26.78130 27.77743 2.48858 110 70 - - 18.53871 27.30450 29.00280 2.76509 110 64 - - 18.53871 27.30450 29.00280 2.76509 110 64 - - 17.64964 27.82770 30.22817 3.04160 110 58 - - 16.88115 28.35090 31.45354 3.31811 110 54 - - 16.22759 28.87410 32.67891 3.59461 110 50 - - 15.68330 29.39730 33.90427 3.87112 110 46 - - 15.24264 29.92050 35.12964 4.14763 110 43 - - 15.24264 29.92050 35.12964 4.14763 110 43 - - 14.89888 30.44370 36.35501 4.42414 110 41 - - 14.64408 30.96690 37.58038 4.70065 110 39 - - 14.47073 31.49010 38.80575 4.97716 110 37 - - 14.37135 32.01330 40.03111 5.25367 110 36 - + 23.35568 25.21170 24.10133 1.65905 110 97 - + 21.96354 25.73490 25.32670 1.93556 110 87 - + 20.69611 26.25810 26.55207 2.21207 110 78 - + 19.55439 26.78130 27.77743 2.48858 110 70 - + 18.53937 27.30450 29.00280 2.76509 110 64 - + 18.53937 27.30450 29.00280 2.76509 110 64 - + 17.65020 27.82770 30.22817 3.04160 110 58 - + 16.88162 28.35090 31.45354 3.31811 110 54 - + 16.22797 28.87410 32.67891 3.59461 110 50 - + 15.68360 29.39730 33.90427 3.87112 110 46 - + 15.24287 29.92050 35.12964 4.14763 110 43 - + 15.24287 29.92050 35.12964 4.14763 110 43 - + 14.89905 30.44370 36.35501 4.42414 110 41 - + 14.64419 30.96690 37.58038 4.70065 110 39 - + 14.47080 31.49010 38.80575 4.97716 110 37 - + 14.37138 32.01330 40.03111 5.25367 110 36 - 14.33843 32.53650 41.25648 5.53018 110 35 - 14.33843 32.53650 41.25648 5.53018 110 35 - - 14.36438 33.05970 42.48185 5.80668 110 34 - - 14.44249 33.58290 43.70722 6.08319 110 33 - - 14.56663 34.10610 44.93259 6.35970 110 32 - - 14.73063 34.62930 46.15796 6.63621 110 32 - - 14.92836 35.15250 47.38332 6.91272 110 32 - - 14.92836 35.15250 47.38332 6.91272 110 32 - - 15.15401 35.67570 48.60869 7.18923 110 31 - - 15.40344 36.19890 49.83406 7.46574 110 31 - - 15.67299 36.72210 51.05943 7.74225 110 31 - - 15.95903 37.24530 52.28480 8.01875 110 31 - - 16.25791 37.76850 53.51016 8.29526 110 30 - - 15.34577 37.76850 50.23256 7.38312 110 31 - - 15.66279 38.25900 52.18566 7.67019 110 30 - - 15.98705 38.74950 54.13877 7.95725 110 30 - - 16.31713 39.24000 56.09187 8.24432 110 29 - - 16.65159 39.73050 58.04498 8.53138 110 29 - - 16.98901 40.22100 59.99808 8.81845 110 28 - - 16.98901 40.22100 59.99808 8.81845 110 28 - - 17.32813 40.71150 61.95119 9.10551 110 28 - - 17.66823 41.20200 63.90429 9.39258 110 28 - - 18.00865 41.69250 65.85740 9.67964 110 27 - - 18.34875 42.18300 67.81050 9.96671 110 27 - - 18.68788 42.67350 69.76361 10.25377 110 27 - - 18.68788 42.67350 69.76361 10.25377 110 27 - - 19.02552 43.16400 71.71671 10.54084 110 27 - - 19.36151 43.65450 73.66982 10.82790 110 26 - - 19.69570 44.14500 75.62292 11.11497 110 26 - - 20.02795 44.63550 77.57603 11.40203 110 26 - - 20.35814 45.12600 79.52913 11.68910 110 26 - - 20.35814 45.12600 79.52913 11.68910 110 26 - - 20.68620 45.61650 81.48223 11.97616 110 25 - - 21.01225 46.10700 83.43534 12.26323 110 25 - - 21.33643 46.59750 85.38844 12.55029 110 25 - - 21.65886 47.08800 87.34155 12.83736 110 25 - - 21.97967 47.57850 89.29465 13.12442 110 25 - - 21.97967 47.57850 89.29465 13.12442 110 25 - - 22.29903 48.06900 91.24776 13.41149 110 24 - + 14.36434 33.05970 42.48185 5.80668 110 34 - + 14.44244 33.58290 43.70722 6.08319 110 33 - + 14.56655 34.10610 44.93259 6.35970 110 32 - + 14.73054 34.62930 46.15796 6.63621 110 32 - + 14.92826 35.15250 47.38332 6.91272 110 32 - + 14.92826 35.15250 47.38332 6.91272 110 32 - + 15.15390 35.67570 48.60869 7.18923 110 31 - + 15.40332 36.19890 49.83406 7.46574 110 31 - + 15.67288 36.72210 51.05943 7.74225 110 31 - + 15.95892 37.24530 52.28480 8.01875 110 31 - + 16.25780 37.76850 53.51016 8.29526 110 30 - + 15.34566 37.76850 50.23256 7.38312 110 31 - + 15.66268 38.25900 52.18566 7.67019 110 30 - + 15.98694 38.74950 54.13877 7.95725 110 30 - + 16.31702 39.24000 56.09187 8.24432 110 29 - + 16.65149 39.73050 58.04498 8.53138 110 29 - + 16.98892 40.22100 59.99808 8.81845 110 28 - + 16.98892 40.22100 59.99808 8.81845 110 28 - + 17.32805 40.71150 61.95119 9.10551 110 28 - + 17.66815 41.20200 63.90429 9.39258 110 28 - + 18.00858 41.69250 65.85740 9.67964 110 27 - + 18.34868 42.18300 67.81050 9.96671 110 27 - + 18.68782 42.67350 69.76361 10.25377 110 27 - + 18.68782 42.67350 69.76361 10.25377 110 27 - + 19.02547 43.16400 71.71671 10.54084 110 27 - + 19.36146 43.65450 73.66982 10.82790 110 26 - + 19.69565 44.14500 75.62292 11.11497 110 26 - + 20.02791 44.63550 77.57603 11.40203 110 26 - + 20.35810 45.12600 79.52913 11.68910 110 26 - + 20.35810 45.12600 79.52913 11.68910 110 26 - + 20.68617 45.61650 81.48223 11.97616 110 25 - + 21.01223 46.10700 83.43534 12.26323 110 25 - + 21.33641 46.59750 85.38844 12.55029 110 25 - + 21.65885 47.08800 87.34155 12.83736 110 25 - + 21.97966 47.57850 89.29465 13.12442 110 25 - + 21.97966 47.57850 89.29465 13.12442 110 25 - + 22.29902 48.06900 91.24776 13.41149 110 24 - 22.61714 48.55950 93.20086 13.69855 110 24 - 22.93420 49.05000 95.15397 13.98562 110 24 - - 23.25041 49.54050 97.10707 14.27268 110 24 - - 23.56596 50.03100 99.06018 14.55975 110 24 - - 23.56596 50.03100 99.06018 14.55975 110 24 - - 23.88104 50.52150 101.01328 14.84681 110 24 - - 24.19581 51.01200 102.96639 15.13388 110 23 - - 24.51036 51.50250 104.91949 15.42094 110 23 - - 24.82479 51.99300 106.87260 15.70801 110 23 - - 25.13919 52.48350 108.82570 15.99507 110 23 - + 23.25042 49.54050 97.10707 14.27268 110 24 - + 23.56597 50.03100 99.06018 14.55975 110 24 - + 23.56597 50.03100 99.06018 14.55975 110 24 - + 23.88106 50.52150 101.01328 14.84681 110 24 - + 24.19583 51.01200 102.96639 15.13388 110 23 - + 24.51038 51.50250 104.91949 15.42094 110 23 - + 24.82481 51.99300 106.87260 15.70801 110 23 - + 25.13922 52.48350 108.82570 15.99507 110 23 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11309,7 +11152,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 15.32372 220000000.000 1 1 1 'Strut' + 0.25000 15.32380 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11380,160 +11223,160 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00152 7.93557 -6.00000 - 0.40487 8.17195 -6.05930 - 0.81607 8.25007 -6.11936 - 1.22858 8.25007 -6.18095 - 1.64108 8.25007 -6.24485 - 2.05358 8.25007 -6.31182 - 2.05310 -7.02185 -6.31182 - 1.77223 -7.02185 -6.36801 - 1.49139 -7.01958 -6.42633 - 1.21077 -7.00917 -6.48644 - 0.93081 -6.98703 -6.54800 - 0.65197 -6.95314 -6.61067 - 0.65197 -6.95314 -6.61067 - 0.58249 -6.94255 -6.62648 - 0.51312 -6.93064 -6.64233 - 0.44388 -6.91741 -6.65821 - 0.37478 -6.90287 -6.67413 - 0.30583 -6.88701 -6.69008 - 0.30583 -6.88701 -6.69008 - 0.10002 -6.83156 -6.73804 - -0.10395 -6.76426 -6.78607 - -0.30572 -6.68514 -6.83403 - -0.50494 -6.59418 -6.88178 - -0.70125 -6.49139 -6.92920 - -0.70125 -6.49139 -6.92920 - -0.89435 -6.38117 -6.97613 - -1.08409 -6.26796 -7.02247 - -1.27040 -6.15173 -7.06807 - -1.45317 -6.03251 -7.11282 - -1.63232 -5.91027 -7.15659 - -1.63232 -5.91027 -7.15659 - -1.86539 -5.74262 -7.21320 - -2.09165 -5.56963 -7.26758 - -2.31089 -5.39130 -7.31945 - -2.52289 -5.20762 -7.36856 - -2.72743 -5.01860 -7.41464 - -2.72743 -5.01860 -7.41464 - -2.82684 -4.92209 -7.43646 - -2.92430 -4.82424 -7.45744 - -3.01980 -4.72505 -7.47754 - -3.11330 -4.62453 -7.49673 - -3.20477 -4.52268 -7.51499 - -3.20477 -4.52268 -7.51499 - -3.33813 -4.36739 -7.54057 - -3.46678 -4.20910 -7.56389 - -3.59065 -4.04781 -7.58488 - -3.70962 -3.88350 -7.60344 - -3.82363 -3.71620 -7.61951 - -3.82308 -3.74186 -7.61951 - -4.03054 -3.40988 -7.64314 - -4.21841 -3.06667 -7.65659 - -4.38605 -2.71222 -7.65945 - -4.53281 -2.34655 -7.65130 - -4.65804 -1.96964 -7.63170 - -4.65766 -1.97084 -7.63170 - -4.76077 -1.58270 -7.60028 - -4.84104 -1.18333 -7.55684 - -4.89782 -0.77273 -7.50125 - -4.93046 -0.35090 -7.43335 - -4.93831 0.08217 -7.35301 - -4.93874 0.08322 -7.35301 - -4.92108 0.52751 -7.26013 - -4.87733 0.98304 -7.15483 - -4.80683 1.44980 -7.03728 - -4.70894 1.92779 -6.90767 - -4.58299 2.41702 -6.76617 - -4.58293 2.42145 -6.76617 - -4.42803 2.92191 -6.61302 - -4.24377 3.43359 -6.44869 - -4.02951 3.95651 -6.27373 - -3.78460 4.49066 -6.08866 - -3.50838 5.03605 -5.89405 - -3.50834 5.03785 -5.89405 - -3.20005 5.59447 -5.69048 - -2.85916 6.16231 -5.47883 - -2.48501 6.74139 -5.26004 - -2.07694 7.33170 -5.03506 - -1.63432 7.93324 -4.80484 - -1.63430 7.93354 -4.80484 - -1.30855 8.35494 -4.64354 - -0.96583 8.78169 -4.48067 - -0.60594 9.21377 -4.31666 - -0.22866 9.65120 -4.15194 - 0.16623 10.09396 -3.98695 - 0.16623 10.09379 -3.98695 - 0.69609 9.76649 -3.76736 - 1.20700 9.38334 -3.54927 - 1.69599 8.94433 -3.33371 - 2.16007 8.44947 -3.12172 - 2.59627 7.89875 -2.91434 - 2.59657 7.88316 -2.91434 - 3.00108 7.27659 -2.71257 - 3.37175 6.61415 -2.51723 - 3.70560 5.89587 -2.32900 - 3.99965 5.12173 -2.14860 - 4.25092 4.29173 -1.97673 - 4.25127 4.28623 -1.97673 - 4.45650 3.40038 -1.81406 - 4.61299 2.45867 -1.66091 - 4.71776 1.46110 -1.51749 - 4.76785 0.40768 -1.38403 - 4.76150 -0.63187 -1.26076 - 4.76090 -0.64575 -1.26076 - 4.70101 -1.57832 -1.14776 - 4.59475 -2.38656 -1.04479 - 4.44844 -3.08232 -0.95155 - 4.26777 -3.67710 -0.86773 - 4.05781 -4.18201 -0.79303 - 4.05803 -4.18593 -0.79303 - 3.82343 -4.59315 -0.72704 - 3.57031 -4.87547 -0.66921 - 3.30568 -5.02810 -0.61897 - 3.03598 -5.06861 -0.57577 - 2.76673 -5.01323 -0.53905 - 2.76676 -5.00762 -0.53905 - 2.50299 -4.87119 -0.50823 - 2.24836 -4.66720 -0.48275 - 2.00614 -4.40782 -0.46208 - 1.77899 -4.10402 -0.44573 - 1.56900 -3.76553 -0.43317 - 1.56905 -3.76235 -0.43317 - 1.38606 -3.55385 -0.42441 - 1.21394 -3.32857 -0.41825 - 1.05339 -3.09200 -0.41438 - 0.90485 -2.84898 -0.41251 - 0.76853 -2.60366 -0.41233 - 0.76855 -2.60227 -0.41233 - 0.64455 -2.35814 -0.41357 - 0.53267 -2.11816 -0.41601 - 0.43263 -1.88482 -0.41948 - 0.34404 -1.66020 -0.42377 - 0.26643 -1.44598 -0.42871 - 0.26644 -1.44548 -0.42871 - 0.19929 -1.24290 -0.43412 - 0.14194 -1.05291 -0.43991 - 0.09377 -0.87627 -0.44598 - 0.05409 -0.71348 -0.45223 - 0.02219 -0.56490 -0.45859 - 0.02219 -0.56484 -0.45859 - -0.00263 -0.43058 -0.46498 - -0.02111 -0.31068 -0.47135 - -0.03394 -0.20509 -0.47770 - -0.04185 -0.11373 -0.48399 - -0.04555 -0.03643 -0.49020 - -0.04555 -0.03650 -0.49020 - -0.04573 0.02693 -0.49632 + 0.00098 7.93514 -6.00000 + 0.40432 8.17152 -6.05932 + 0.81550 8.24964 -6.11941 + 1.22798 8.24964 -6.18102 + 1.64046 8.24964 -6.24494 + 2.05294 8.24964 -6.31194 + 2.05252 -7.02163 -6.31194 + 1.77166 -7.02163 -6.36814 + 1.49082 -7.01936 -6.42648 + 1.21022 -7.00896 -6.48660 + 0.93026 -6.98681 -6.54817 + 0.65143 -6.95292 -6.61086 + 0.65143 -6.95292 -6.61086 + 0.58195 -6.94233 -6.62667 + 0.51259 -6.93042 -6.64252 + 0.44335 -6.91719 -6.65841 + 0.37425 -6.90265 -6.67434 + 0.30530 -6.88679 -6.69029 + 0.30530 -6.88679 -6.69029 + 0.09950 -6.83134 -6.73826 + -0.10446 -6.76404 -6.78629 + -0.30623 -6.68492 -6.83426 + -0.50544 -6.59396 -6.88202 + -0.70175 -6.49117 -6.92944 + -0.70175 -6.49117 -6.92944 + -0.89484 -6.38095 -6.97639 + -1.08457 -6.26774 -7.02273 + -1.27087 -6.15151 -7.06834 + -1.45364 -6.03229 -7.11309 + -1.63278 -5.91005 -7.15687 + -1.63278 -5.91005 -7.15687 + -1.86585 -5.74240 -7.21349 + -2.09210 -5.56941 -7.26787 + -2.31133 -5.39108 -7.31975 + -2.52331 -5.20740 -7.36886 + -2.72785 -5.01838 -7.41495 + -2.72785 -5.01838 -7.41495 + -2.82725 -4.92187 -7.43678 + -2.92471 -4.82402 -7.45775 + -3.02020 -4.72483 -7.47786 + -3.11370 -4.62432 -7.49705 + -3.20517 -4.52246 -7.51531 + -3.20517 -4.52246 -7.51531 + -3.33852 -4.36717 -7.54089 + -3.46717 -4.20888 -7.56422 + -3.59102 -4.04759 -7.58521 + -3.70999 -3.88328 -7.60378 + -3.82399 -3.71598 -7.61984 + -3.82345 -3.74164 -7.61984 + -4.03089 -3.40966 -7.64347 + -4.21875 -3.06645 -7.65693 + -4.38638 -2.71200 -7.65979 + -4.53312 -2.34633 -7.65163 + -4.65834 -1.96942 -7.63204 + -4.65796 -1.97062 -7.63204 + -4.76106 -1.58248 -7.60062 + -4.84131 -1.18311 -7.55718 + -4.89808 -0.77251 -7.50158 + -4.93071 -0.35068 -7.43368 + -4.93854 0.08239 -7.35333 + -4.93897 0.08344 -7.35333 + -4.92130 0.52773 -7.26045 + -4.87754 0.98326 -7.15514 + -4.80703 1.45002 -7.03759 + -4.70912 1.92801 -6.90797 + -4.58316 2.41724 -6.76647 + -4.58310 2.42167 -6.76647 + -4.42819 2.92213 -6.61331 + -4.24392 3.43381 -6.44897 + -4.02965 3.95673 -6.27400 + -3.78472 4.49088 -6.08893 + -3.50849 5.03627 -5.89430 + -3.50845 5.03807 -5.89430 + -3.20015 5.59469 -5.69072 + -2.85925 6.16253 -5.47906 + -2.48508 6.74161 -5.26027 + -2.07700 7.33192 -5.03528 + -1.63436 7.93346 -4.80505 + -1.63434 7.93376 -4.80505 + -1.30858 8.35516 -4.64374 + -0.96586 8.78191 -4.48086 + -0.60596 9.21399 -4.31685 + -0.22867 9.65142 -4.15212 + 0.16623 10.09418 -3.98712 + 0.16623 10.09401 -3.98712 + 0.69610 9.76671 -3.76753 + 1.20702 9.38356 -3.54943 + 1.69602 8.94455 -3.33386 + 2.16012 8.44969 -3.12185 + 2.59633 7.89897 -2.91446 + 2.59663 7.88338 -2.91446 + 3.00115 7.27680 -2.71269 + 3.37183 6.61437 -2.51734 + 3.70569 5.89609 -2.32910 + 3.99976 5.12194 -2.14869 + 4.25104 4.29195 -1.97682 + 4.25139 4.28645 -1.97682 + 4.45663 3.40059 -1.81414 + 4.61313 2.45888 -1.66098 + 4.71791 1.46132 -1.51755 + 4.76801 0.40790 -1.38409 + 4.76167 -0.63168 -1.26081 + 4.76107 -0.64557 -1.26081 + 4.70119 -1.57819 -1.14780 + 4.59494 -2.38648 -1.04483 + 4.44863 -3.08229 -0.95158 + 4.26796 -3.67710 -0.86776 + 4.05801 -4.18204 -0.79305 + 4.05822 -4.18596 -0.79305 + 3.82362 -4.59322 -0.72706 + 3.57050 -4.87558 -0.66922 + 3.30586 -5.02825 -0.61898 + 3.03614 -5.06878 -0.57578 + 2.76689 -5.01341 -0.53906 + 2.76692 -5.00781 -0.53906 + 2.50314 -4.87139 -0.50824 + 2.24850 -4.66740 -0.48275 + 2.00627 -4.40803 -0.46208 + 1.77910 -4.10423 -0.44573 + 1.56910 -3.76573 -0.43317 + 1.56915 -3.76256 -0.43317 + 1.38616 -3.55405 -0.42441 + 1.21403 -3.32876 -0.41824 + 1.05347 -3.09219 -0.41438 + 0.90492 -2.84915 -0.41250 + 0.76859 -2.60382 -0.41233 + 0.76861 -2.60243 -0.41233 + 0.64460 -2.35829 -0.41357 + 0.53271 -2.11829 -0.41601 + 0.43266 -1.88494 -0.41947 + 0.34407 -1.66032 -0.42377 + 0.26646 -1.44608 -0.42871 + 0.26647 -1.44558 -0.42871 + 0.19931 -1.24299 -0.43412 + 0.14196 -1.05299 -0.43990 + 0.09379 -0.87633 -0.44597 + 0.05410 -0.71354 -0.45223 + 0.02219 -0.56494 -0.45859 + 0.02220 -0.56488 -0.45859 + -0.00263 -0.43062 -0.46497 + -0.02110 -0.31071 -0.47135 + -0.03394 -0.20512 -0.47770 + -0.04185 -0.11375 -0.48399 + -0.04555 -0.03644 -0.49020 + -0.04555 -0.03651 -0.49020 + -0.04573 0.02692 -0.49632 -0.04308 0.07668 -0.50236 -0.03829 0.11295 -0.50831 -0.03201 0.13589 -0.51420 -0.02492 0.14566 -0.52003 - -0.02492 0.14561 -0.52003 - -0.01766 0.14232 -0.52581 + -0.02492 0.14562 -0.52003 + -0.01767 0.14233 -0.52581 -0.01090 0.12607 -0.53155 - -0.00527 0.09690 -0.53728 + -0.00527 0.09691 -0.53728 -0.00143 0.05488 -0.54299 0.00000 0.00000 -0.54870 [END OF DATA] @@ -11609,7 +11452,7 @@ Status character [END OF COLUMN INDICATION] [DATA] 6.33033 0.00000 44.80242 6.33033 110 0 - - 3.12481 0.00000 47.32722 6.90006 110 0 - + 3.12476 0.00000 47.32722 6.90006 110 0 - 0.00000 0.00000 49.85201 7.46979 1 0 A 0.00000 0.00000 52.37681 8.03952 1 0 A 0.00000 0.00000 54.90161 8.60925 1 0 A @@ -11717,53 +11560,53 @@ Status character 12.55731 33.97530 147.09794 29.41368 1 0 A 12.73538 34.49850 148.32331 29.69019 1 0 A 12.73538 34.49850 148.32331 29.69019 1 0 A - 13.60831 35.02170 149.54868 29.96670 110 0 - - 15.18609 35.54490 150.77404 30.24321 110 0 - - 16.59295 36.06810 151.99941 30.51972 110 0 - - 17.84142 36.59130 153.22478 30.79623 110 0 - - 18.94402 37.11450 154.45015 31.07273 110 0 - - 18.94402 37.11450 154.45015 31.07273 110 0 - - 19.91398 37.63770 155.67552 31.34924 110 0 - - 20.76392 38.16090 156.90089 31.62575 110 0 - - 21.50536 38.68410 158.12625 31.90226 110 0 - - 22.14988 39.20730 159.35162 32.17877 110 0 - - 22.70901 39.73050 160.57699 32.45528 110 0 - - 19.14025 39.73050 196.53526 28.88652 110 0 - - 19.62440 40.22100 198.48836 29.17359 110 0 - - 20.05012 40.71150 200.44147 29.46065 110 0 - - 20.42418 41.20200 202.39457 29.74772 110 0 - - 20.75334 41.69250 204.34768 30.03478 110 0 - - 21.04436 42.18300 206.30078 30.32185 110 0 - - 21.04436 42.18300 206.30078 30.32185 110 0 - - 21.30358 42.67350 208.25389 30.60891 110 0 - - 21.53564 43.16400 210.20699 30.89598 110 0 - - 21.74477 43.65450 212.16010 31.18304 110 0 - - 21.93521 44.14500 214.11320 31.47011 110 0 - - 22.11119 44.63550 216.06631 31.75717 110 0 - - 22.11119 44.63550 216.06631 31.75717 110 0 - - 22.27646 45.12600 218.01941 32.04424 110 0 - - 22.43334 45.61650 219.97252 32.33130 110 0 - - 22.58389 46.10700 221.92562 32.61837 110 0 - - 22.73015 46.59750 223.87873 32.90543 110 0 - - 22.87417 47.08800 225.83183 33.19250 110 0 - - 22.87417 47.08800 225.83183 33.19250 110 0 - - 23.01762 47.57850 227.78494 33.47956 110 0 - - 23.16119 48.06900 229.73804 33.76663 110 0 - - 23.30544 48.55950 231.69115 34.05369 110 0 - - 23.45093 49.05000 233.64425 34.34076 110 0 - - 23.59821 49.54050 235.59736 34.62782 110 0 - - 23.59821 49.54050 235.59736 34.62782 110 0 - - 23.74760 50.03100 237.55046 34.91489 110 0 - - 23.89892 50.52150 239.50357 35.20195 110 0 - - 24.05197 51.01200 241.45667 35.48902 110 0 - - 24.20658 51.50250 243.40978 35.77608 110 0 - - 24.36256 51.99300 245.36288 36.06315 110 0 - - 24.36256 51.99300 245.36288 36.06315 110 0 - - 24.51959 52.48350 247.31599 36.35021 110 0 - + 13.60788 35.02170 149.54868 29.96670 110 0 - + 15.18574 35.54490 150.77404 30.24321 110 0 - + 16.59268 36.06810 151.99941 30.51972 110 0 - + 17.84121 36.59130 153.22478 30.79623 110 0 - + 18.94387 37.11450 154.45015 31.07273 110 0 - + 18.94387 37.11450 154.45015 31.07273 110 0 - + 19.91389 37.63770 155.67552 31.34924 110 0 - + 20.76387 38.16090 156.90089 31.62575 110 0 - + 21.50535 38.68410 158.12625 31.90226 110 0 - + 22.14990 39.20730 159.35162 32.17877 110 0 - + 22.70906 39.73050 160.57699 32.45528 110 0 - + 19.14030 39.73050 196.53526 28.88652 110 0 - + 19.62447 40.22100 198.48836 29.17359 110 0 - + 20.05020 40.71150 200.44147 29.46065 110 0 - + 20.42428 41.20200 202.39457 29.74772 110 0 - + 20.75345 41.69250 204.34768 30.03478 110 0 - + 21.04447 42.18300 206.30078 30.32185 110 0 - + 21.04447 42.18300 206.30078 30.32185 110 0 - + 21.30370 42.67350 208.25389 30.60891 110 0 - + 21.53576 43.16400 210.20699 30.89598 110 0 - + 21.74489 43.65450 212.16010 31.18304 110 0 - + 21.93533 44.14500 214.11320 31.47011 110 0 - + 22.11130 44.63550 216.06631 31.75717 110 0 - + 22.11130 44.63550 216.06631 31.75717 110 0 - + 22.27657 45.12600 218.01941 32.04424 110 0 - + 22.43345 45.61650 219.97252 32.33130 110 0 - + 22.58399 46.10700 221.92562 32.61837 110 0 - + 22.73024 46.59750 223.87873 32.90543 110 0 - + 22.87425 47.08800 225.83183 33.19250 110 0 - + 22.87425 47.08800 225.83183 33.19250 110 0 - + 23.01770 47.57850 227.78494 33.47956 110 0 - + 23.16127 48.06900 229.73804 33.76663 110 0 - + 23.30551 48.55950 231.69115 34.05369 110 0 - + 23.45099 49.05000 233.64425 34.34076 110 0 - + 23.59826 49.54050 235.59736 34.62782 110 0 - + 23.59826 49.54050 235.59736 34.62782 110 0 - + 23.74765 50.03100 237.55046 34.91489 110 0 - + 23.89896 50.52150 239.50357 35.20195 110 0 - + 24.05200 51.01200 241.45667 35.48902 110 0 - + 24.20660 51.50250 243.40978 35.77608 110 0 - + 24.36257 51.99300 245.36288 36.06315 110 0 - + 24.36257 51.99300 245.36288 36.06315 110 0 - + 24.51960 52.48350 247.31599 36.35021 110 0 - 24.67736 52.97400 249.26909 36.63728 110 0 - - 24.83563 53.46450 251.22220 36.92434 110 0 - - 24.99419 53.95500 253.17530 37.21141 110 0 - - 25.15282 54.44550 255.12841 37.49847 110 0 - + 24.83562 53.46450 251.22220 36.92434 110 0 - + 24.99418 53.95500 253.17530 37.21141 110 0 - + 25.15280 54.44550 255.12841 37.49847 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11966,61 +11809,61 @@ Status character 31.45354 28.35090 31.45354 3.31811 202 100 P 32.67891 28.87410 32.67891 3.59461 202 100 P 33.90427 29.39730 33.90427 3.87112 202 100 P - 32.51467 29.92050 35.12964 4.14763 110 93 - - 32.51467 29.92050 35.12964 4.14763 110 93 - - 30.24873 30.44370 36.35501 4.42414 110 83 - - 28.20849 30.96690 37.58038 4.70065 110 75 - - 26.38707 31.49010 38.80575 4.97716 110 68 - - 24.77762 32.01330 40.03111 5.25367 110 62 - - 23.37327 32.53650 41.25648 5.53018 110 57 - - 23.37327 32.53650 41.25648 5.53018 110 57 - - 22.16507 33.05970 42.48185 5.80668 110 52 - - 21.14031 33.58290 43.70722 6.08319 110 48 - - 20.28647 34.10610 44.93259 6.35970 110 45 - - 19.59102 34.62930 46.15796 6.63621 110 42 - - 19.04144 35.15250 47.38332 6.91272 110 40 - - 19.04144 35.15250 47.38332 6.91272 110 40 - - 18.62449 35.67570 48.60869 7.18923 110 38 - - 18.32757 36.19890 49.83406 7.46574 110 37 - - 18.13914 36.72210 51.05943 7.74225 110 36 - - 18.04765 37.24530 52.28480 8.01875 110 35 - - 18.04153 37.76850 53.51016 8.29526 110 34 - - 17.12939 37.76850 50.23256 7.38312 110 34 - - 17.21938 38.25900 52.18566 7.67019 110 33 - - 17.36778 38.74950 54.13877 7.95725 110 32 - - 17.56785 39.24000 56.09187 8.24432 110 31 - - 17.81283 39.73050 58.04498 8.53138 110 31 - - 18.09593 40.22100 59.99808 8.81845 110 30 - - 18.09593 40.22100 59.99808 8.81845 110 30 - - 18.41085 40.71150 61.95119 9.10551 110 30 - - 18.75291 41.20200 63.90429 9.39258 110 29 - - 19.11791 41.69250 65.85740 9.67964 110 29 - - 19.50160 42.18300 67.81050 9.96671 110 29 - - 19.89976 42.67350 69.76361 10.25377 110 29 - - 19.89976 42.67350 69.76361 10.25377 110 29 - - 20.30862 43.16400 71.71671 10.54084 110 28 - - 20.72586 43.65450 73.66982 10.82790 110 28 - - 21.14945 44.14500 75.62292 11.11497 110 28 - - 21.57732 44.63550 77.57603 11.40203 110 28 - - 22.00743 45.12600 79.52913 11.68910 110 28 - - 22.00743 45.12600 79.52913 11.68910 110 28 - - 22.43810 45.61650 81.48223 11.97616 110 28 - - 22.86866 46.10700 83.43534 12.26323 110 27 - - 23.29854 46.59750 85.38844 12.55029 110 27 - - 23.72719 47.08800 87.34155 12.83736 110 27 - - 24.15403 47.57850 89.29465 13.12442 110 27 - - 24.15403 47.57850 89.29465 13.12442 110 27 - - 24.57877 48.06900 91.24776 13.41149 110 27 - - 25.00159 48.55950 93.20086 13.69855 110 27 - - 25.42266 49.05000 95.15397 13.98562 110 27 - - 25.84219 49.54050 97.10707 14.27268 110 27 - - 26.26034 50.03100 99.06018 14.55975 110 27 - - 26.26034 50.03100 99.06018 14.55975 110 27 - + 32.51580 29.92050 35.12964 4.14763 110 93 - + 32.51580 29.92050 35.12964 4.14763 110 93 - + 30.24973 30.44370 36.35501 4.42414 110 83 - + 28.20935 30.96690 37.58038 4.70065 110 75 - + 26.38782 31.49010 38.80575 4.97716 110 68 - + 24.77825 32.01330 40.03111 5.25367 110 62 - + 23.37379 32.53650 41.25648 5.53018 110 57 - + 23.37379 32.53650 41.25648 5.53018 110 57 - + 22.16550 33.05970 42.48185 5.80668 110 52 - + 21.14066 33.58290 43.70722 6.08319 110 48 - + 20.28674 34.10610 44.93259 6.35970 110 45 - + 19.59122 34.62930 46.15796 6.63621 110 42 - + 19.04158 35.15250 47.38332 6.91272 110 40 - + 19.04158 35.15250 47.38332 6.91272 110 40 - + 18.62458 35.67570 48.60869 7.18923 110 38 - + 18.32762 36.19890 49.83406 7.46574 110 37 - + 18.13915 36.72210 51.05943 7.74225 110 36 - + 18.04762 37.24530 52.28480 8.01875 110 35 - + 18.04148 37.76850 53.51016 8.29526 110 34 - + 17.12934 37.76850 50.23256 7.38312 110 34 - + 17.21931 38.25900 52.18566 7.67019 110 33 - + 17.36770 38.74950 54.13877 7.95725 110 32 - + 17.56776 39.24000 56.09187 8.24432 110 31 - + 17.81272 39.73050 58.04498 8.53138 110 31 - + 18.09582 40.22100 59.99808 8.81845 110 30 - + 18.09582 40.22100 59.99808 8.81845 110 30 - + 18.41073 40.71150 61.95119 9.10551 110 30 - + 18.75279 41.20200 63.90429 9.39258 110 29 - + 19.11779 41.69250 65.85740 9.67964 110 29 - + 19.50148 42.18300 67.81050 9.96671 110 29 - + 19.89964 42.67350 69.76361 10.25377 110 29 - + 19.89964 42.67350 69.76361 10.25377 110 29 - + 20.30851 43.16400 71.71671 10.54084 110 28 - + 20.72576 43.65450 73.66982 10.82790 110 28 - + 21.14934 44.14500 75.62292 11.11497 110 28 - + 21.57722 44.63550 77.57603 11.40203 110 28 - + 22.00734 45.12600 79.52913 11.68910 110 28 - + 22.00734 45.12600 79.52913 11.68910 110 28 - + 22.43802 45.61650 81.48223 11.97616 110 28 - + 22.86859 46.10700 83.43534 12.26323 110 27 - + 23.29848 46.59750 85.38844 12.55029 110 27 - + 23.72713 47.08800 87.34155 12.83736 110 27 - + 24.15398 47.57850 89.29465 13.12442 110 27 - + 24.15398 47.57850 89.29465 13.12442 110 27 - + 24.57873 48.06900 91.24776 13.41149 110 27 - + 25.00155 48.55950 93.20086 13.69855 110 27 - + 25.42263 49.05000 95.15397 13.98562 110 27 - + 25.84216 49.54050 97.10707 14.27268 110 27 - + 26.26033 50.03100 99.06018 14.55975 110 27 - + 26.26033 50.03100 99.06018 14.55975 110 27 - 26.67743 50.52150 101.01328 14.84681 110 26 - 27.09380 51.01200 102.96639 15.13388 110 26 - 27.50966 51.50250 104.91949 15.42094 110 26 - - 27.92522 51.99300 106.87260 15.70801 110 26 - - 28.34073 52.48350 108.82570 15.99507 110 26 - + 27.92524 51.99300 106.87260 15.70801 110 26 - + 28.34075 52.48350 108.82570 15.99507 110 26 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12058,7 +11901,7 @@ Layer name [VERIFY STEP 6.1 (LOW MODULUS OF SUBGRADE REACTION AND HIGH PASSIVE WATER LEVEL)] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -12082,16 +11925,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -12287,156 +12124,150 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 2.29303 -6.00000 - 0.11465 2.29303 -5.81926 - 0.22930 2.29303 -5.63874 - 0.34395 2.29303 -5.45865 - 0.45861 2.29303 -5.27920 - 0.57326 2.29303 -5.10061 - 0.57326 2.29303 -5.10061 - 0.66498 2.29303 -4.95850 - 0.75670 2.29303 -4.81719 - 0.84842 2.29303 -4.67679 - 0.94014 2.29303 -4.53741 - 1.03186 2.29303 -4.39915 - 1.03186 2.29303 -4.39915 - 1.05480 2.29352 -4.36478 - 1.07774 2.29499 -4.33048 - 1.10070 2.29745 -4.29627 - 1.12369 2.30088 -4.26214 - 1.14672 2.30529 -4.22809 - 1.14672 2.30529 -4.22809 - 1.21614 2.32442 -4.12647 - 1.28627 2.35238 -4.02567 - 1.35737 2.38917 -3.92574 - 1.42971 2.43479 -3.82672 - 1.50355 2.48923 -3.72867 - 1.50355 2.48923 -3.72867 - 1.57915 2.55251 -3.63164 - 1.65679 2.62461 -3.53567 - 1.73672 2.70554 -3.44082 - 1.81921 2.79566 -3.34714 - 1.90457 2.89648 -3.25469 - 1.90457 2.89648 -3.25469 - 2.02341 3.04930 -3.13343 - 2.14879 3.22316 -3.01460 - 2.28154 3.41806 -2.89835 - 2.42252 3.63400 -2.78485 - 2.57255 3.87098 -2.67425 - 2.57255 3.87098 -2.67425 - 2.64783 3.65582 -2.62010 - 2.71873 3.43280 -2.56674 - 2.78509 3.20193 -2.51419 - 2.84675 2.96321 -2.46248 - 2.90356 2.71663 -2.41163 - 2.90373 2.70835 -2.41163 - 3.03079 2.06403 -2.28036 - 3.12473 1.46638 -2.15555 - 3.18799 0.91332 -2.03736 - 3.22289 0.40212 -1.92591 - 3.23158 -0.07002 -1.82134 - 3.23164 -0.07023 -1.82134 - 3.21612 -0.50614 -1.72373 - 3.17825 -0.90867 -1.63298 - 3.11974 -1.28061 -1.54898 - 3.04219 -1.62194 -1.47159 - 2.94753 -1.91820 -1.40070 - 2.94731 -1.92047 -1.40070 - 2.83824 -2.16116 -1.33613 - 2.71769 -2.35135 -1.27762 - 2.58824 -2.49590 -1.22489 - 2.45219 -2.59944 -1.17766 - 2.31161 -2.66638 -1.13567 - 2.31162 -2.66470 -1.13567 - 2.16845 -2.69921 -1.09862 - 2.02421 -2.70522 -1.06620 - 1.88034 -2.68640 -1.03809 - 1.73805 -2.64617 -1.01400 - 1.59840 -2.58769 -0.99362 - 1.59841 -2.58652 -0.99362 - 1.46237 -2.51271 -0.97664 - 1.33061 -2.42625 -0.96277 - 1.20375 -2.32958 -0.95176 - 1.08227 -2.22493 -0.94332 - 0.96653 -2.11431 -0.93720 - 0.96654 -2.11359 -0.93720 - 0.85686 -1.99878 -0.93312 - 0.75338 -1.88137 -0.93086 - 0.65620 -1.76278 -0.93023 - 0.56535 -1.64424 -0.93100 - 0.48080 -1.52684 -0.93299 - 0.48081 -1.52655 -0.93299 - 0.42148 -1.43977 -0.93515 - 0.36560 -1.35448 -0.93781 - 0.31310 -1.27096 -0.94092 - 0.26390 -1.18948 -0.94441 - 0.21791 -1.11024 -0.94822 - 0.21791 -1.11014 -0.94822 - 0.16144 -1.00828 -0.95368 - 0.11028 -0.91105 -0.95948 - 0.06418 -0.81868 -0.96553 - 0.02287 -0.73133 -0.97172 - -0.01392 -0.64908 -0.97797 - -0.01392 -0.64909 -0.97797 - -0.04646 -0.57194 -0.98417 - -0.07502 -0.49985 -0.99027 - -0.09986 -0.43270 -0.99622 - -0.12126 -0.37035 -1.00196 - -0.13945 -0.31260 -1.00745 - -0.13945 -0.31270 -1.00745 - -0.15468 -0.25933 -1.01262 - -0.16718 -0.21007 -1.01747 - -0.17716 -0.16465 -1.02197 - -0.18481 -0.12276 -1.02609 - -0.19031 -0.08409 -1.02982 - -0.19031 -0.08422 -1.02982 - -0.19384 -0.04845 -1.03314 - -0.19552 -0.01522 -1.03604 - -0.19550 0.01580 -1.03853 - -0.19387 0.04494 -1.04060 - -0.19073 0.07255 -1.04226 - -0.19073 0.07241 -1.04226 - -0.18616 0.09883 -1.04351 - -0.18021 0.12438 -1.04437 - -0.17291 0.14939 -1.04484 - -0.16428 0.17416 -1.04494 - -0.15433 0.19899 -1.04470 - -0.15433 0.19888 -1.04470 - -0.14305 0.22405 -1.04412 - -0.13042 0.24982 -1.04323 + 0.00000 2.29249 -6.00000 + 0.11462 2.29249 -5.81927 + 0.22925 2.29249 -5.63875 + 0.34387 2.29249 -5.45867 + 0.45850 2.29249 -5.27923 + 0.57312 2.29249 -5.10065 + 0.57312 2.29249 -5.10065 + 0.66482 2.29249 -4.95855 + 0.75652 2.29249 -4.81724 + 0.84822 2.29249 -4.67685 + 0.93992 2.29249 -4.53747 + 1.03162 2.29249 -4.39922 + 1.03162 2.29249 -4.39922 + 1.05455 2.29298 -4.36484 + 1.07748 2.29445 -4.33055 + 1.10044 2.29690 -4.29634 + 1.12342 2.30034 -4.26221 + 1.14645 2.30475 -4.22816 + 1.14645 2.30475 -4.22816 + 1.28597 2.35184 -4.02573 + 1.42938 2.43424 -3.82678 + 1.57879 2.55196 -3.63169 + 1.73632 2.70500 -3.44089 + 1.90417 2.89708 -3.25478 + 1.90417 2.89708 -3.25478 + 2.02304 3.04990 -3.13352 + 2.14844 3.22376 -3.01469 + 2.28122 3.41866 -2.89844 + 2.42221 3.63460 -2.78494 + 2.57227 3.87158 -2.67434 + 2.57227 3.87158 -2.67434 + 2.64756 3.65642 -2.62019 + 2.71847 3.43340 -2.56683 + 2.78484 3.20253 -2.51428 + 2.84652 2.96381 -2.46257 + 2.90334 2.71723 -2.41172 + 2.90351 2.70895 -2.41172 + 3.03060 2.06461 -2.28044 + 3.12457 1.46692 -2.15564 + 3.18786 0.91383 -2.03744 + 3.22279 0.40260 -1.92598 + 3.23150 -0.06957 -1.82141 + 3.23157 -0.06978 -1.82141 + 3.21606 -0.50572 -1.72380 + 3.17822 -0.90828 -1.63305 + 3.11972 -1.28024 -1.54904 + 3.04220 -1.62161 -1.47165 + 2.94755 -1.91791 -1.40075 + 2.94734 -1.92019 -1.40075 + 2.83827 -2.16091 -1.33618 + 2.71774 -2.35114 -1.27766 + 2.58829 -2.49573 -1.22493 + 2.45226 -2.59930 -1.17770 + 2.31169 -2.66627 -1.13571 + 2.31170 -2.66459 -1.13571 + 2.16853 -2.69913 -1.09865 + 2.02430 -2.70517 -1.06622 + 1.88042 -2.68637 -1.03812 + 1.73813 -2.64615 -1.01402 + 1.59849 -2.58769 -0.99364 + 1.59850 -2.58652 -0.99364 + 1.46245 -2.51272 -0.97665 + 1.33070 -2.42627 -0.96279 + 1.20383 -2.32961 -0.95177 + 1.08235 -2.22498 -0.94333 + 0.96661 -2.11436 -0.93720 + 0.96662 -2.11365 -0.93720 + 0.85694 -1.99884 -0.93312 + 0.75345 -1.88144 -0.93087 + 0.65627 -1.76285 -0.93023 + 0.56541 -1.64431 -0.93101 + 0.48086 -1.52691 -0.93299 + 0.48087 -1.52662 -0.93299 + 0.42154 -1.43985 -0.93515 + 0.36566 -1.35455 -0.93781 + 0.31315 -1.27104 -0.94092 + 0.26395 -1.18955 -0.94441 + 0.21796 -1.11031 -0.94821 + 0.21796 -1.11021 -0.94821 + 0.16148 -1.00835 -0.95367 + 0.11032 -0.91112 -0.95948 + 0.06421 -0.81874 -0.96552 + 0.02290 -0.73139 -0.97172 + -0.01389 -0.64914 -0.97796 + -0.01389 -0.64914 -0.97796 + -0.04643 -0.57200 -0.98416 + -0.07500 -0.49990 -0.99027 + -0.09984 -0.43275 -0.99622 + -0.12124 -0.37040 -1.00196 + -0.13944 -0.31265 -1.00744 + -0.13943 -0.31274 -1.00744 + -0.15467 -0.25937 -1.01262 + -0.16717 -0.21011 -1.01747 + -0.17715 -0.16468 -1.02196 + -0.18480 -0.12279 -1.02609 + -0.19031 -0.08412 -1.02982 + -0.19031 -0.08425 -1.02982 + -0.19383 -0.04847 -1.03313 + -0.19552 -0.01524 -1.03604 + -0.19550 0.01578 -1.03852 + -0.19387 0.04492 -1.04060 + -0.19073 0.07253 -1.04226 + -0.19073 0.07239 -1.04226 + -0.18616 0.09881 -1.04351 + -0.18021 0.12437 -1.04436 + -0.17291 0.14938 -1.04484 + -0.16428 0.17415 -1.04494 + -0.15433 0.19898 -1.04470 + -0.15433 0.19887 -1.04470 + -0.14306 0.22404 -1.04412 + -0.13042 0.24981 -1.04323 -0.11639 0.27642 -1.04207 -0.10092 0.30408 -1.04067 - -0.08393 0.33299 -1.03905 - -0.08393 0.33293 -1.03905 - -0.06812 0.30002 -1.03737 - -0.05391 0.26846 -1.03556 + -0.08394 0.33299 -1.03905 + -0.08394 0.33293 -1.03905 + -0.06812 0.30002 -1.03736 + -0.05391 0.26846 -1.03555 -0.04125 0.23833 -1.03364 -0.03005 0.20971 -1.03165 -0.02025 0.18264 -1.02960 -0.02025 0.18262 -1.02960 - -0.01176 0.15714 -1.02751 - -0.00451 0.13327 -1.02541 + -0.01177 0.15714 -1.02751 + -0.00451 0.13328 -1.02541 0.00159 0.11103 -1.02329 - 0.00662 0.09041 -1.02117 - 0.01066 0.07142 -1.01907 + 0.00662 0.09042 -1.02117 + 0.01066 0.07143 -1.01907 0.01066 0.07143 -1.01907 - 0.01379 0.05404 -1.01699 - 0.01609 0.03825 -1.01493 + 0.01379 0.05405 -1.01699 + 0.01609 0.03826 -1.01493 0.01764 0.02403 -1.01291 - 0.01852 0.01135 -1.01091 + 0.01852 0.01136 -1.01091 0.01880 0.00020 -1.00895 0.01880 0.00021 -1.00895 - 0.01857 -0.00945 -1.00703 - 0.01788 -0.01765 -1.00514 - 0.01683 -0.02440 -1.00328 - 0.01547 -0.02974 -1.00146 + 0.01856 -0.00945 -1.00703 + 0.01788 -0.01764 -1.00514 + 0.01682 -0.02440 -1.00329 + 0.01546 -0.02974 -1.00146 0.01387 -0.03369 -0.99967 0.01387 -0.03368 -0.99967 0.01212 -0.03626 -0.99790 @@ -12446,7 +12277,7 @@ Displacements 0.00482 -0.03319 -0.99101 0.00482 -0.03319 -0.99101 0.00326 -0.02914 -0.98932 - 0.00193 -0.02380 -0.98764 + 0.00193 -0.02379 -0.98764 0.00090 -0.01715 -0.98596 0.00024 -0.00922 -0.98428 0.00000 0.00000 -0.98260 @@ -12511,7 +12342,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -12541,16 +12372,10 @@ Status character 0.00000 0.39240 54.41797 8.50011 1 0 A 0.00000 0.49050 54.64773 8.55196 1 0 A 0.00000 0.49050 54.64773 8.55196 1 0 A - 0.00000 0.78480 55.33700 8.70749 1 0 A 0.00000 1.07910 56.02627 8.86303 1 0 A - 0.00000 1.37340 56.71554 9.01857 1 0 A 0.00000 1.66770 57.40480 9.17410 1 0 A - 0.00000 1.96200 58.09407 9.32964 1 0 A - 0.00000 1.96200 58.09407 9.32964 1 0 A 0.00000 2.25630 58.78334 9.48517 1 0 A - 0.00000 2.55060 59.47261 9.64071 1 0 A 0.00000 2.84490 60.16188 9.79625 1 0 A - 0.02398 3.13920 60.85115 9.95178 1 0 A 0.12415 3.43350 61.54042 10.10732 1 0 A 0.12415 3.43350 61.54042 10.10732 1 0 A 0.25770 3.82590 62.45945 10.31470 1 0 A @@ -12574,84 +12399,84 @@ Status character 2.19421 9.51570 75.78533 13.32173 1 0 A 2.37228 10.03890 77.01070 13.59824 1 0 A 2.55035 10.56210 78.23606 13.87475 1 0 A - 2.83133 11.08530 79.46143 14.15126 110 0 - - 3.65316 11.60850 80.68680 14.42777 110 0 - - 3.65316 11.60850 80.68680 14.42777 110 0 - - 4.42635 12.13170 81.91217 14.70428 110 0 - - 5.15296 12.65490 83.13754 14.98079 110 0 - - 5.83510 13.17810 84.36290 15.25729 110 0 - - 6.47487 13.70130 85.58827 15.53380 110 0 - - 7.07438 14.22450 86.81364 15.81031 110 0 - - 7.07438 14.22450 86.81364 15.81031 110 0 - - 7.63588 14.74770 88.03901 16.08682 110 0 - - 8.16181 15.27090 89.26438 16.36333 110 0 - - 8.65451 15.79410 90.48975 16.63984 110 0 - - 9.11634 16.31730 91.71511 16.91635 110 0 - - 9.54964 16.84050 92.94048 17.19286 110 0 - - 9.54964 16.84050 92.94048 17.19286 110 0 - - 9.95677 17.36370 94.16585 17.46936 110 0 - - 10.33991 17.88690 95.39122 17.74587 110 0 - - 10.70115 18.41010 96.61659 18.02238 110 0 - - 11.04255 18.93330 97.84195 18.29889 110 0 - - 11.36619 19.45650 99.06732 18.57540 110 0 - - 11.36619 19.45650 99.06732 18.57540 110 0 - - 11.67409 19.97970 100.29269 18.85191 110 0 - - 11.96794 20.50290 101.51806 19.12842 110 0 - - 12.24933 21.02610 102.74343 19.40493 110 0 - - 12.51986 21.54930 103.96880 19.68143 110 0 - - 12.78112 22.07250 105.19416 19.95794 110 0 - - 12.78112 22.07250 105.19416 19.95794 110 0 - + 2.83089 11.08530 79.46143 14.15126 110 0 - + 3.65275 11.60850 80.68680 14.42777 110 0 - + 3.65275 11.60850 80.68680 14.42777 110 0 - + 4.42597 12.13170 81.91217 14.70428 110 0 - + 5.15261 12.65490 83.13754 14.98079 110 0 - + 5.83478 13.17810 84.36290 15.25729 110 0 - + 6.47458 13.70130 85.58827 15.53380 110 0 - + 7.07411 14.22450 86.81364 15.81031 110 0 - + 7.07411 14.22450 86.81364 15.81031 110 0 - + 7.63565 14.74770 88.03901 16.08682 110 0 - + 8.16160 15.27090 89.26438 16.36333 110 0 - + 8.65433 15.79410 90.48975 16.63984 110 0 - + 9.11617 16.31730 91.71511 16.91635 110 0 - + 9.54949 16.84050 92.94048 17.19286 110 0 - + 9.54949 16.84050 92.94048 17.19286 110 0 - + 9.95664 17.36370 94.16585 17.46936 110 0 - + 10.33981 17.88690 95.39122 17.74587 110 0 - + 10.70106 18.41010 96.61659 18.02238 110 0 - + 11.04247 18.93330 97.84195 18.29889 110 0 - + 11.36613 19.45650 99.06732 18.57540 110 0 - + 11.36613 19.45650 99.06732 18.57540 110 0 - + 11.67404 19.97970 100.29269 18.85191 110 0 - + 11.96790 20.50290 101.51806 19.12842 110 0 - + 12.24931 21.02610 102.74343 19.40493 110 0 - + 12.51984 21.54930 103.96880 19.68143 110 0 - + 12.78111 22.07250 105.19416 19.95794 110 0 - + 12.78111 22.07250 105.19416 19.95794 110 0 - 12.97188 22.46490 106.11319 20.16532 110 0 - 13.15875 22.85730 107.03222 20.37271 110 0 - - 13.34222 23.24970 107.95124 20.58009 110 0 - - 13.52277 23.64210 108.87027 20.78747 110 0 - - 13.70089 24.03450 109.78929 20.99485 110 0 - - 13.70089 24.03450 109.78929 20.99485 110 0 - - 13.93540 24.55770 111.01466 21.27136 110 0 - - 14.16726 25.08090 112.24003 21.54787 110 0 - - 14.39724 25.60410 113.46540 21.82438 110 0 - - 14.62610 26.12730 114.69077 22.10089 110 0 - - 14.85458 26.65050 115.91613 22.37740 110 0 - - 14.85458 26.65050 115.91613 22.37740 110 0 - - 15.08339 27.17370 117.14150 22.65390 110 0 - - 15.31295 27.69690 118.36687 22.93041 110 0 - - 15.54370 28.22010 119.59224 23.20692 110 0 - - 15.77603 28.74330 120.81761 23.48343 110 0 - - 16.01035 29.26650 122.04298 23.75994 110 0 - - 16.01035 29.26650 122.04298 23.75994 110 0 - - 16.24703 29.78970 123.26834 24.03645 110 0 - - 16.48625 30.31290 124.49371 24.31296 110 0 - - 16.72817 30.83610 125.71908 24.58947 110 0 - - 16.97297 31.35930 126.94445 24.86597 110 0 - - 17.22080 31.88250 128.16982 25.14248 110 0 - - 17.22080 31.88250 128.16982 25.14248 110 0 - - 17.47179 32.40570 129.39518 25.41899 110 0 - - 17.72597 32.92890 130.62055 25.69550 110 0 - - 17.98334 33.45210 131.84592 25.97201 110 0 - - 18.24388 33.97530 133.07129 26.24852 110 0 - - 18.50761 34.49850 134.29666 26.52503 110 0 - - 18.50761 34.49850 134.29666 26.52503 110 0 - - 18.77450 35.02170 135.52203 26.80154 110 0 - - 19.04445 35.54490 136.74739 27.07804 110 0 - - 19.31734 36.06810 137.97276 27.35455 110 0 - - 19.59304 36.59130 139.19813 27.63106 110 0 - - 19.87144 37.11450 140.42350 27.90757 110 0 - - 19.87144 37.11450 140.42350 27.90757 110 0 - - 20.15240 37.63770 141.64887 28.18408 110 0 - - 20.43571 38.16090 142.87423 28.46059 110 0 - - 20.72114 38.68410 144.09960 28.73710 110 0 - - 21.00846 39.20730 145.32497 29.01361 110 0 - - 21.29743 39.73050 146.55034 29.29011 110 0 - + 13.34223 23.24970 107.95124 20.58009 110 0 - + 13.52278 23.64210 108.87027 20.78747 110 0 - + 13.70090 24.03450 109.78929 20.99485 110 0 - + 13.70090 24.03450 109.78929 20.99485 110 0 - + 13.93542 24.55770 111.01466 21.27136 110 0 - + 14.16728 25.08090 112.24003 21.54787 110 0 - + 14.39727 25.60410 113.46540 21.82438 110 0 - + 14.62612 26.12730 114.69077 22.10089 110 0 - + 14.85461 26.65050 115.91613 22.37740 110 0 - + 14.85461 26.65050 115.91613 22.37740 110 0 - + 15.08341 27.17370 117.14150 22.65390 110 0 - + 15.31298 27.69690 118.36687 22.93041 110 0 - + 15.54373 28.22010 119.59224 23.20692 110 0 - + 15.77606 28.74330 120.81761 23.48343 110 0 - + 16.01038 29.26650 122.04298 23.75994 110 0 - + 16.01038 29.26650 122.04298 23.75994 110 0 - + 16.24706 29.78970 123.26834 24.03645 110 0 - + 16.48628 30.31290 124.49371 24.31296 110 0 - + 16.72820 30.83610 125.71908 24.58947 110 0 - + 16.97299 31.35930 126.94445 24.86597 110 0 - + 17.22082 31.88250 128.16982 25.14248 110 0 - + 17.22082 31.88250 128.16982 25.14248 110 0 - + 17.47182 32.40570 129.39518 25.41899 110 0 - + 17.72600 32.92890 130.62055 25.69550 110 0 - + 17.98336 33.45210 131.84592 25.97201 110 0 - + 18.24390 33.97530 133.07129 26.24852 110 0 - + 18.50763 34.49850 134.29666 26.52503 110 0 - + 18.50763 34.49850 134.29666 26.52503 110 0 - + 18.77452 35.02170 135.52203 26.80154 110 0 - + 19.04447 35.54490 136.74739 27.07804 110 0 - + 19.31735 36.06810 137.97276 27.35455 110 0 - + 19.59305 36.59130 139.19813 27.63106 110 0 - + 19.87145 37.11450 140.42350 27.90757 110 0 - + 19.87145 37.11450 140.42350 27.90757 110 0 - + 20.15241 37.63770 141.64887 28.18408 110 0 - + 20.43572 38.16090 142.87423 28.46059 110 0 - + 20.72115 38.68410 144.09960 28.73710 110 0 - + 21.00847 39.20730 145.32497 29.01361 110 0 - + 21.29744 39.73050 146.55034 29.29011 110 0 - 18.07672 39.73050 177.36838 26.06940 110 0 - 18.37673 40.22100 179.32148 26.35646 110 0 - 18.67772 40.71150 181.27459 26.64353 110 0 - - 18.97950 41.20200 183.22769 26.93059 110 0 - + 18.97951 41.20200 183.22769 26.93059 110 0 - 19.28191 41.69250 185.18080 27.21766 110 0 - 19.58474 42.18300 187.13390 27.50472 110 0 - 19.58474 42.18300 187.13390 27.50472 110 0 - - 19.88784 42.67350 189.08701 27.79179 110 0 - - 20.19111 43.16400 191.04011 28.07885 110 0 - - 20.49446 43.65450 192.99322 28.36592 110 0 - + 19.88785 42.67350 189.08701 27.79179 110 0 - + 20.19112 43.16400 191.04011 28.07885 110 0 - + 20.49447 43.65450 192.99322 28.36592 110 0 - 20.79781 44.14500 194.94632 28.65298 110 0 - 21.10105 44.63550 196.89943 28.94005 110 0 - 21.10105 44.63550 196.89943 28.94005 110 0 - @@ -12665,19 +12490,19 @@ Status character 23.21765 48.06900 210.57116 30.94950 110 0 - 23.51899 48.55950 212.52427 31.23657 110 0 - 23.82009 49.05000 214.47737 31.52363 110 0 - - 24.12097 49.54050 216.43048 31.81070 110 0 - - 24.12097 49.54050 216.43048 31.81070 110 0 - + 24.12096 49.54050 216.43048 31.81070 110 0 - + 24.12096 49.54050 216.43048 31.81070 110 0 - 24.42164 50.03100 218.38358 32.09776 110 0 - - 24.72214 50.52150 220.33669 32.38483 110 0 - - 25.02249 51.01200 222.28979 32.67189 110 0 - - 25.32272 51.50250 224.24290 32.95896 110 0 - + 24.72213 50.52150 220.33669 32.38483 110 0 - + 25.02248 51.01200 222.28979 32.67189 110 0 - + 25.32271 51.50250 224.24290 32.95896 110 0 - 25.62285 51.99300 226.19600 33.24602 110 0 - 25.62285 51.99300 226.19600 33.24602 110 0 - - 25.92292 52.48350 228.14911 33.53309 110 0 - - 26.22294 52.97400 230.10221 33.82015 110 0 - - 26.52293 53.46450 232.05532 34.10722 110 0 - - 26.82290 53.95500 234.00842 34.39428 110 0 - - 27.12287 54.44550 235.96153 34.68135 110 0 - + 25.92291 52.48350 228.14911 33.53309 110 0 - + 26.22293 52.97400 230.10221 33.82015 110 0 - + 26.52292 53.46450 232.05532 34.10722 110 0 - + 26.82289 53.95500 234.00842 34.39428 110 0 - + 27.12286 54.44550 235.96153 34.68135 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12690,7 +12515,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 41.371 'Clay, sl san, moderate' + 4.00 41.372 'Clay, sl san, moderate' -4.00 33.911 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -12768,7 +12593,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -12809,12 +12634,6 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 16.74912 0.00000 16.74912 0.00000 202 100 P 17.20863 0.19620 17.20863 0.10369 202 100 P 17.66815 0.39240 17.66815 0.20738 202 100 P @@ -12822,90 +12641,90 @@ Status character 18.58717 0.78480 18.58717 0.41476 202 100 P 19.04668 0.98100 19.04668 0.51845 202 100 P 19.04668 0.98100 19.04668 0.51845 202 100 P - 18.33616 1.50420 20.27205 0.79496 110 90 - - 17.65265 2.02740 21.49742 1.07147 110 82 - - 17.01996 2.55060 22.72279 1.34798 110 75 - - 16.43915 3.07380 23.94816 1.62449 110 69 - - 15.91129 3.59700 25.17353 1.90100 110 63 - - 15.91129 3.59700 25.17353 1.90100 110 63 - - 15.43696 4.12020 26.39889 2.17751 110 58 - - 15.01542 4.64340 27.62426 2.45402 110 54 - - 14.64574 5.16660 28.84963 2.73052 110 51 - - 14.32696 5.68980 30.07500 3.00703 110 48 - - 14.05815 6.21300 31.30037 3.28354 110 45 - - 14.05815 6.21300 31.30037 3.28354 110 45 - - 13.83798 6.73620 32.52573 3.56005 110 43 - - 13.66439 7.25940 33.75110 3.83656 110 40 - - 13.53527 7.78260 34.97647 4.11307 110 39 - - 13.44851 8.30580 36.20184 4.38958 110 37 - - 13.40202 8.82900 37.42721 4.66609 110 36 - - 13.40202 8.82900 37.42721 4.66609 110 36 - - 13.39353 9.35220 38.65258 4.94259 110 35 - - 13.42062 9.87540 39.87794 5.21910 110 34 - - 13.48094 10.39860 41.10331 5.49561 110 33 - - 13.57213 10.92180 42.32868 5.77212 110 32 - - 13.69185 11.44500 43.55405 6.04863 110 31 - - 13.69185 11.44500 43.55405 6.04863 110 31 - - 13.83773 11.96820 44.77942 6.32514 110 31 - - 14.00761 12.49140 46.00478 6.60165 110 30 - - 14.19939 13.01460 47.23015 6.87816 110 30 - - 14.41101 13.53780 48.45552 7.15466 110 30 - - 14.64038 14.06100 49.68089 7.43117 110 29 - - 14.64038 14.06100 49.68089 7.43117 110 29 - - 14.88550 14.58420 50.90626 7.70768 110 29 - - 15.14467 15.10740 52.13163 7.98419 110 29 - - 15.41629 15.63060 53.35699 8.26070 110 29 - - 15.69878 16.15380 54.58236 8.53721 110 29 - - 15.99054 16.67700 55.80773 8.81372 110 29 - - 15.99054 16.67700 55.80773 8.81372 110 29 - - 16.21454 17.06940 56.72676 9.02110 110 29 - + 18.33682 1.50420 20.27205 0.79496 110 90 - + 17.65329 2.02740 21.49742 1.07147 110 82 - + 17.02057 2.55060 22.72279 1.34798 110 75 - + 16.43974 3.07380 23.94816 1.62449 110 69 - + 15.91185 3.59700 25.17353 1.90100 110 63 - + 15.91185 3.59700 25.17353 1.90100 110 63 - + 15.43749 4.12020 26.39889 2.17751 110 58 - + 15.01593 4.64340 27.62426 2.45402 110 54 - + 14.64621 5.16660 28.84963 2.73052 110 51 - + 14.32740 5.68980 30.07500 3.00703 110 48 - + 14.05855 6.21300 31.30037 3.28354 110 45 - + 14.05855 6.21300 31.30037 3.28354 110 45 - + 13.83836 6.73620 32.52573 3.56005 110 43 - + 13.66474 7.25940 33.75110 3.83656 110 40 - + 13.53558 7.78260 34.97647 4.11307 110 39 - + 13.44880 8.30580 36.20184 4.38958 110 37 - + 13.40228 8.82900 37.42721 4.66609 110 36 - + 13.40228 8.82900 37.42721 4.66609 110 36 - + 13.39377 9.35220 38.65258 4.94259 110 35 - + 13.42083 9.87540 39.87794 5.21910 110 34 - + 13.48112 10.39860 41.10331 5.49561 110 33 - + 13.57229 10.92180 42.32868 5.77212 110 32 - + 13.69199 11.44500 43.55405 6.04863 110 31 - + 13.69199 11.44500 43.55405 6.04863 110 31 - + 13.83786 11.96820 44.77942 6.32514 110 31 - + 14.00771 12.49140 46.00478 6.60165 110 30 - + 14.19948 13.01460 47.23015 6.87816 110 30 - + 14.41108 13.53780 48.45552 7.15466 110 30 - + 14.64044 14.06100 49.68089 7.43117 110 29 - + 14.64044 14.06100 49.68089 7.43117 110 29 - + 14.88555 14.58420 50.90626 7.70768 110 29 - + 15.14470 15.10740 52.13163 7.98419 110 29 - + 15.41632 15.63060 53.35699 8.26070 110 29 - + 15.69880 16.15380 54.58236 8.53721 110 29 - + 15.99055 16.67700 55.80773 8.81372 110 29 - + 15.99055 16.67700 55.80773 8.81372 110 29 - + 16.21455 17.06940 56.72676 9.02110 110 29 - 16.44243 17.46180 57.64578 9.22848 110 29 - - 16.67373 17.85420 58.56481 9.43586 110 28 - - 16.90794 18.24660 59.48383 9.64324 110 28 - - 17.14459 18.63900 60.40286 9.85062 110 28 - - 17.14459 18.63900 60.40286 9.85062 110 28 - - 17.46309 19.16220 61.62823 10.12713 110 28 - - 17.78425 19.68540 62.85360 10.40364 110 28 - - 18.10729 20.20860 64.07897 10.68015 110 28 - - 18.43145 20.73180 65.30433 10.95666 110 28 - - 18.75598 21.25500 66.52970 11.23317 110 28 - - 18.75598 21.25500 66.52970 11.23317 110 28 - - 19.08020 21.77820 67.75507 11.50968 110 28 - - 19.40364 22.30140 68.98044 11.78619 110 28 - - 19.72592 22.82460 70.20581 12.06269 110 28 - - 20.04661 23.34780 71.43117 12.33920 110 28 - - 20.36530 23.87100 72.65654 12.61571 110 28 - - 20.36530 23.87100 72.65654 12.61571 110 28 - - 20.68164 24.39420 73.88191 12.89222 110 28 - - 20.99544 24.91740 75.10728 13.16873 110 28 - - 21.30653 25.44060 76.33265 13.44524 110 28 - - 21.61476 25.96380 77.55802 13.72175 110 28 - - 21.91994 26.48700 78.78338 13.99826 110 28 - - 21.91994 26.48700 78.78338 13.99826 110 28 - - 22.22196 27.01020 80.00875 14.27476 110 28 - - 22.52080 27.53340 81.23412 14.55127 110 28 - - 22.81645 28.05660 82.45949 14.82778 110 28 - - 23.10893 28.57980 83.68486 15.10429 110 28 - - 23.39821 29.10300 84.91022 15.38080 110 28 - - 23.39821 29.10300 84.91022 15.38080 110 28 - - 23.68434 29.62620 86.13559 15.65731 110 27 - - 23.96741 30.14940 87.36096 15.93382 110 27 - - 24.24754 30.67260 88.58633 16.21033 110 27 - - 24.52486 31.19580 89.81170 16.48683 110 27 - - 24.79947 31.71900 91.03707 16.76334 110 27 - - 24.79947 31.71900 91.03707 16.76334 110 27 - - 25.07153 32.24220 92.26243 17.03985 110 27 - - 25.34124 32.76540 93.48780 17.31636 110 27 - - 25.60883 33.28860 94.71317 17.59287 110 27 - + 16.67372 17.85420 58.56481 9.43586 110 28 - + 16.90793 18.24660 59.48383 9.64324 110 28 - + 17.14457 18.63900 60.40286 9.85062 110 28 - + 17.14457 18.63900 60.40286 9.85062 110 28 - + 17.46308 19.16220 61.62823 10.12713 110 28 - + 17.78423 19.68540 62.85360 10.40364 110 28 - + 18.10726 20.20860 64.07897 10.68015 110 28 - + 18.43142 20.73180 65.30433 10.95666 110 28 - + 18.75595 21.25500 66.52970 11.23317 110 28 - + 18.75595 21.25500 66.52970 11.23317 110 28 - + 19.08017 21.77820 67.75507 11.50968 110 28 - + 19.40362 22.30140 68.98044 11.78619 110 28 - + 19.72589 22.82460 70.20581 12.06269 110 28 - + 20.04658 23.34780 71.43117 12.33920 110 28 - + 20.36527 23.87100 72.65654 12.61571 110 28 - + 20.36527 23.87100 72.65654 12.61571 110 28 - + 20.68161 24.39420 73.88191 12.89222 110 28 - + 20.99541 24.91740 75.10728 13.16873 110 28 - + 21.30650 25.44060 76.33265 13.44524 110 28 - + 21.61473 25.96380 77.55802 13.72175 110 28 - + 21.91991 26.48700 78.78338 13.99826 110 28 - + 21.91991 26.48700 78.78338 13.99826 110 28 - + 22.22194 27.01020 80.00875 14.27476 110 28 - + 22.52078 27.53340 81.23412 14.55127 110 28 - + 22.81643 28.05660 82.45949 14.82778 110 28 - + 23.10890 28.57980 83.68486 15.10429 110 28 - + 23.39819 29.10300 84.91022 15.38080 110 28 - + 23.39819 29.10300 84.91022 15.38080 110 28 - + 23.68432 29.62620 86.13559 15.65731 110 27 - + 23.96739 30.14940 87.36096 15.93382 110 27 - + 24.24753 30.67260 88.58633 16.21033 110 27 - + 24.52484 31.19580 89.81170 16.48683 110 27 - + 24.79946 31.71900 91.03707 16.76334 110 27 - + 24.79946 31.71900 91.03707 16.76334 110 27 - + 25.07152 32.24220 92.26243 17.03985 110 27 - + 25.34123 32.76540 93.48780 17.31636 110 27 - + 25.60882 33.28860 94.71317 17.59287 110 27 - 25.87452 33.81180 95.93854 17.86938 110 27 - - 26.13857 34.33500 97.16391 18.14589 110 27 - - 24.14326 34.33500 109.88372 16.15058 110 22 - - 24.41738 34.82550 111.83682 16.43764 110 22 - - 24.69052 35.31600 113.78993 16.72471 110 22 - + 26.13856 34.33500 97.16391 18.14589 110 27 - + 24.14325 34.33500 109.88372 16.15058 110 22 - + 24.41737 34.82550 111.83682 16.43764 110 22 - + 24.69051 35.31600 113.78993 16.72471 110 22 - 24.96286 35.80650 115.74303 17.01177 110 22 - - 25.23459 36.29700 117.69614 17.29884 110 21 - - 25.50589 36.78750 119.64924 17.58590 110 21 - - 25.50589 36.78750 119.64924 17.58590 110 21 - + 25.23458 36.29700 117.69614 17.29884 110 21 - + 25.50588 36.78750 119.64924 17.58590 110 21 - + 25.50588 36.78750 119.64924 17.58590 110 21 - 25.77691 37.27800 121.60235 17.87297 110 21 - 26.04777 37.76850 123.55545 18.16003 110 21 - 26.31855 38.25900 125.50856 18.44710 110 21 - @@ -12918,8 +12737,8 @@ Status character 27.94573 41.20200 137.22719 20.16949 110 20 - 28.21772 41.69250 139.18029 20.45656 110 20 - 28.21772 41.69250 139.18029 20.45656 110 20 - - 28.48999 42.18300 141.13340 20.74362 110 20 - - 28.76253 42.67350 143.08650 21.03069 110 20 - + 28.49000 42.18300 141.13340 20.74362 110 20 - + 28.76254 42.67350 143.08650 21.03069 110 20 - 29.03533 43.16400 145.03960 21.31775 110 20 - 29.30836 43.65450 146.99271 21.60482 110 20 - 29.58161 44.14500 148.94581 21.89188 110 20 - @@ -12927,14 +12746,14 @@ Status character 29.85507 44.63550 150.89892 22.17895 110 20 - 30.12870 45.12600 152.85202 22.46601 110 20 - 30.40248 45.61650 154.80513 22.75308 110 20 - - 30.67638 46.10700 156.75823 23.04014 110 20 - + 30.67639 46.10700 156.75823 23.04014 110 20 - 30.95038 46.59750 158.71134 23.32721 110 20 - 30.95038 46.59750 158.71134 23.32721 110 20 - - 31.22444 47.08800 160.66444 23.61427 110 19 - + 31.22445 47.08800 160.66444 23.61427 110 19 - 31.49855 47.57850 162.61755 23.90134 110 19 - - 31.77269 48.06900 164.57065 24.18840 110 19 - + 31.77270 48.06900 164.57065 24.18840 110 19 - 32.04685 48.55950 166.52376 24.47547 110 19 - - 32.32101 49.05000 168.47686 24.76253 110 19 - + 32.32102 49.05000 168.47686 24.76253 110 19 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12970,7 +12789,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -12994,16 +12813,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -13200,153 +13013,147 @@ Name [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00009 8.18219 -6.00000 - 0.40920 8.18219 -5.88819 - 0.81831 8.18219 -5.77714 - 1.22742 8.18219 -5.66763 - 1.63653 8.18219 -5.56042 - 2.04564 8.18219 -5.45628 - 2.04563 -1.77988 -5.45628 - 1.97443 -1.77988 -5.37561 - 1.90324 -1.77988 -5.29732 - 1.83204 -1.77988 -5.22130 - 1.76085 -1.77988 -5.14749 - 1.68965 -1.77988 -5.07578 - 1.68965 -1.77988 -5.07578 - 1.67186 -1.77939 -5.05818 - 1.65407 -1.77791 -5.04070 - 1.63630 -1.77546 -5.02334 - 1.61856 -1.77203 -5.00611 - 1.60086 -1.76761 -4.98900 - 1.60086 -1.76761 -4.98900 - 1.54806 -1.75290 -4.93837 - 1.49569 -1.73818 -4.88880 - 1.44377 -1.72347 -4.84023 - 1.39228 -1.70875 -4.79264 - 1.34124 -1.69404 -4.74599 - 1.34124 -1.69404 -4.74599 - 1.29064 -1.67932 -4.70024 - 1.24048 -1.66461 -4.65537 - 1.19076 -1.64989 -4.61133 - 1.14149 -1.63518 -4.56809 - 1.09265 -1.62046 -4.52563 - 1.09265 -1.62046 -4.52563 - 1.02823 -1.60084 -4.47015 - 0.96458 -1.58122 -4.41591 - 0.90173 -1.56160 -4.36282 - 0.83966 -1.54198 -4.31082 - 0.77837 -1.52236 -4.25983 - 0.77837 -1.52236 -4.25983 - 0.74802 -1.51255 -4.23469 - 0.71787 -1.50274 -4.20977 - 0.68791 -1.49293 -4.18506 - 0.65815 -1.48312 -4.16057 - 0.62859 -1.47331 -4.13627 - 0.62876 -1.48158 -4.13627 - 0.55044 -1.45542 -4.07237 - 0.47351 -1.42926 -4.00964 - 0.39798 -1.40310 -3.94792 - 0.32385 -1.37694 -3.88706 - 0.25111 -1.35078 -3.82689 - 0.25117 -1.35099 -3.82689 - 0.17989 -1.32067 -3.76725 - 0.11046 -1.28145 -3.70799 - 0.04337 -1.23273 -3.64897 - -0.02086 -1.17452 -3.59005 - -0.08174 -1.10680 -3.53108 - -0.08196 -1.10908 -3.53108 - -0.13909 -1.03187 -3.47193 - -0.19186 -0.94516 -3.41248 - -0.23974 -0.84896 -3.35264 - -0.28224 -0.74326 -3.29229 - -0.31885 -0.62806 -3.23134 - -0.31885 -0.62638 -3.23134 - -0.34897 -0.50168 -3.16969 - -0.37219 -0.36749 -3.10729 - -0.38800 -0.22380 -3.04412 - -0.39589 -0.07062 -2.98013 - -0.39536 0.09206 -2.91530 - -0.39535 0.09323 -2.91530 - -0.38583 0.26541 -2.84960 - -0.36687 0.44709 -2.78307 - -0.33797 0.63827 -2.71579 - -0.29862 0.83894 -2.64780 - -0.24832 1.04911 -2.57917 - -0.24831 1.04982 -2.57917 - -0.18651 1.26948 -2.50998 - -0.11273 1.49865 -2.44039 - -0.02648 1.73730 -2.37059 - 0.07275 1.98546 -2.30076 - 0.18547 2.24311 -2.23107 - 0.18548 2.24340 -2.23107 - 0.27919 2.44287 -2.17904 - 0.38098 2.64769 -2.12734 - 0.49107 2.85784 -2.07610 - 0.60968 3.07334 -2.02547 - 0.73701 3.29418 -1.97556 - 0.73701 3.29431 -1.97556 - 0.89924 2.79257 -1.91045 - 1.03526 2.31190 -1.84726 - 1.14620 1.85146 -1.78623 - 1.23309 1.41031 -1.72760 - 1.29713 0.99719 -1.67160 - 1.29703 0.99382 -1.67160 - 1.33990 0.62114 -1.61843 - 1.36404 0.29092 -1.56811 - 1.37164 0.00080 -1.52067 - 1.36479 -0.25158 -1.47613 - 1.34544 -0.46861 -1.43450 - 1.34544 -0.46764 -1.43450 - 1.31545 -0.65170 -1.39578 - 1.27647 -0.80515 -1.35986 - 1.23007 -0.93023 -1.32665 - 1.17771 -1.02913 -1.29605 - 1.12072 -1.10396 -1.26797 - 1.12073 -1.10315 -1.26797 - 1.06039 -1.15592 -1.24229 - 0.99779 -1.18854 -1.21887 - 0.93394 -1.20283 -1.19757 - 0.86978 -1.20045 -1.17827 - 0.80616 -1.18300 -1.16082 - 0.80616 -1.18241 -1.16082 - 0.74387 -1.15135 -1.14509 - 0.68357 -1.10803 -1.13095 - 0.62588 -1.05371 -1.11827 - 0.57135 -0.98954 -1.10693 - 0.52048 -0.91656 -1.09681 - 0.52049 -0.91617 -1.09681 - 0.47375 -0.83534 -1.08779 - 0.43151 -0.74752 -1.07978 - 0.39412 -0.65351 -1.07270 - 0.36190 -0.55404 -1.06647 - 0.33511 -0.44977 -1.06101 - 0.33511 -0.44954 -1.06101 - 0.31271 -0.44600 -1.05653 - 0.29057 -0.43924 -1.05265 - 0.26883 -0.42970 -1.04930 - 0.24763 -0.41778 -1.04647 - 0.22709 -0.40386 -1.04409 - 0.22709 -0.40372 -1.04409 - 0.20728 -0.38814 -1.04214 - 0.18830 -0.37120 -1.04058 + 0.00000 8.18212 -6.00000 + 0.40911 8.18212 -5.88819 + 0.81821 8.18212 -5.77715 + 1.22732 8.18212 -5.66764 + 1.63642 8.18212 -5.56044 + 2.04553 8.18212 -5.45630 + 2.04553 -1.77983 -5.45630 + 1.97434 -1.77983 -5.37563 + 1.90314 -1.77983 -5.29734 + 1.83195 -1.77983 -5.22133 + 1.76076 -1.77983 -5.14751 + 1.68956 -1.77983 -5.07581 + 1.68956 -1.77983 -5.07581 + 1.67177 -1.77934 -5.05821 + 1.65398 -1.77787 -5.04073 + 1.63621 -1.77542 -5.02337 + 1.61847 -1.77198 -5.00614 + 1.60078 -1.76757 -4.98903 + 1.60078 -1.76757 -4.98903 + 1.49560 -1.73814 -4.88883 + 1.39220 -1.70871 -4.79267 + 1.29056 -1.67928 -4.70027 + 1.19069 -1.64985 -4.61136 + 1.09258 -1.62042 -4.52567 + 1.09258 -1.62042 -4.52567 + 1.02815 -1.60080 -4.47019 + 0.96451 -1.58118 -4.41595 + 0.90166 -1.56156 -4.36287 + 0.83959 -1.54194 -4.31087 + 0.77830 -1.52232 -4.25987 + 0.77830 -1.52232 -4.25987 + 0.74796 -1.51251 -4.23473 + 0.71780 -1.50270 -4.20981 + 0.68785 -1.49289 -4.18511 + 0.65809 -1.48308 -4.16061 + 0.62852 -1.47327 -4.13631 + 0.62869 -1.48154 -4.13631 + 0.55038 -1.45538 -4.07241 + 0.47345 -1.42922 -4.00968 + 0.39793 -1.40306 -3.94797 + 0.32379 -1.37690 -3.88711 + 0.25106 -1.35074 -3.82693 + 0.25112 -1.35094 -3.82693 + 0.17984 -1.32063 -3.76729 + 0.11041 -1.28141 -3.70803 + 0.04333 -1.23269 -3.64901 + -0.02091 -1.17447 -3.59009 + -0.08178 -1.10676 -3.53112 + -0.08200 -1.10904 -3.53112 + -0.13913 -1.03183 -3.47197 + -0.19189 -0.94512 -3.41252 + -0.23977 -0.84892 -3.35268 + -0.28227 -0.74322 -3.29233 + -0.31888 -0.62802 -3.23137 + -0.31887 -0.62634 -3.23137 + -0.34899 -0.50164 -3.16972 + -0.37221 -0.36745 -3.10733 + -0.38802 -0.22376 -3.04415 + -0.39591 -0.07057 -2.98016 + -0.39538 0.09211 -2.91533 + -0.39537 0.09328 -2.91533 + -0.38585 0.26546 -2.84963 + -0.36689 0.44714 -2.78310 + -0.33798 0.63831 -2.71581 + -0.29863 0.83898 -2.64782 + -0.24832 1.04915 -2.57920 + -0.24831 1.04986 -2.57920 + -0.18651 1.26953 -2.51001 + -0.11273 1.49869 -2.44042 + -0.02648 1.73735 -2.37061 + 0.07276 1.98550 -2.30078 + 0.18548 2.24316 -2.23109 + 0.18549 2.24344 -2.23109 + 0.27920 2.44292 -2.17906 + 0.38099 2.64773 -2.12736 + 0.49109 2.85789 -2.07612 + 0.60969 3.07339 -2.02548 + 0.73703 3.29423 -1.97558 + 0.73703 3.29435 -1.97558 + 0.89925 2.79261 -1.91046 + 1.03528 2.31193 -1.84727 + 1.14622 1.85148 -1.78624 + 1.23312 1.41034 -1.72761 + 1.29715 0.99721 -1.67161 + 1.29705 0.99383 -1.67161 + 1.33992 0.62115 -1.61843 + 1.36406 0.29092 -1.56812 + 1.37167 0.00080 -1.52068 + 1.36482 -0.25158 -1.47613 + 1.34546 -0.46861 -1.43451 + 1.34546 -0.46765 -1.43451 + 1.31547 -0.65171 -1.39578 + 1.27649 -0.80516 -1.35986 + 1.23009 -0.93024 -1.32665 + 1.17773 -1.02915 -1.29605 + 1.12074 -1.10398 -1.26797 + 1.12075 -1.10317 -1.26797 + 1.06041 -1.15594 -1.24229 + 0.99781 -1.18857 -1.21887 + 0.93396 -1.20285 -1.19757 + 0.86980 -1.20047 -1.17827 + 0.80617 -1.18302 -1.16082 + 0.80618 -1.18243 -1.16082 + 0.74389 -1.15137 -1.14509 + 0.68358 -1.10806 -1.13095 + 0.62589 -1.05373 -1.11827 + 0.57136 -0.98956 -1.10693 + 0.52049 -0.91658 -1.09681 + 0.52050 -0.91619 -1.09681 + 0.47376 -0.83536 -1.08779 + 0.43152 -0.74754 -1.07978 + 0.39413 -0.65353 -1.07269 + 0.36190 -0.55405 -1.06646 + 0.33511 -0.44979 -1.06101 + 0.33512 -0.44956 -1.06101 + 0.31271 -0.44601 -1.05653 + 0.29057 -0.43925 -1.05264 + 0.26884 -0.42971 -1.04930 + 0.24764 -0.41779 -1.04646 + 0.22709 -0.40387 -1.04409 + 0.22709 -0.40373 -1.04409 + 0.20729 -0.38815 -1.04214 + 0.18830 -0.37121 -1.04058 0.17018 -0.35321 -1.03938 0.15299 -0.33441 -1.03849 - 0.13675 -0.31503 -1.03789 - 0.13675 -0.31495 -1.03789 - 0.12150 -0.29521 -1.03755 - 0.10723 -0.27530 -1.03743 + 0.13675 -0.31504 -1.03789 + 0.13675 -0.31496 -1.03789 + 0.12150 -0.29522 -1.03755 + 0.10723 -0.27531 -1.03743 0.09397 -0.25538 -1.03752 0.08169 -0.23559 -1.03778 - 0.07040 -0.21606 -1.03820 + 0.07040 -0.21607 -1.03820 0.07040 -0.21602 -1.03820 - 0.06008 -0.19686 -1.03875 + 0.06008 -0.19687 -1.03875 0.05071 -0.17817 -1.03941 0.04226 -0.16002 -1.04016 0.03470 -0.14249 -1.04100 @@ -13424,7 +13231,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -13435,7 +13242,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 16.74912 0.00000 110 0 - + 0.00000 0.00000 16.74912 0.00000 1 0 A 0.00000 0.00000 19.27392 0.56973 1 0 A 0.00000 0.00000 21.79871 1.13946 1 0 A 0.00000 0.00000 24.32351 1.70919 1 0 A @@ -13454,16 +13261,10 @@ Status character 0.00000 0.39240 40.39132 5.33495 1 0 A 0.00000 0.49050 40.62108 5.38679 1 0 A 0.00000 0.49050 40.62108 5.38679 1 0 A - 0.00000 0.78480 41.31035 5.54233 1 0 A 0.00000 1.07910 41.99962 5.69787 1 0 A - 0.00000 1.37340 42.68888 5.85340 1 0 A 0.00000 1.66770 43.37815 6.00894 1 0 A - 0.00000 1.96200 44.06742 6.16447 1 0 A - 0.00000 1.96200 44.06742 6.16447 1 0 A 0.00000 2.25630 44.75669 6.32001 1 0 A - 0.00000 2.55060 45.44596 6.47555 1 0 A 0.00000 2.84490 46.13523 6.63108 1 0 A - 0.00000 3.13920 46.82450 6.78662 1 0 A 0.00000 3.43350 47.51377 6.94215 1 0 A 0.00000 3.43350 47.51377 6.94215 1 0 A 0.00000 3.82590 48.43280 7.14954 1 0 A @@ -13524,54 +13325,54 @@ Status character 5.45344 25.08090 98.21338 18.38270 1 0 A 5.63151 25.60410 99.43875 18.65921 1 0 A 5.80958 26.12730 100.66412 18.93572 1 0 A - 6.35376 26.65050 101.88948 19.21223 110 0 - - 6.35376 26.65050 101.88948 19.21223 110 0 - - 7.03931 27.17370 103.11485 19.48874 110 0 - - 7.70287 27.69690 104.34022 19.76525 110 0 - - 8.34429 28.22010 105.56559 20.04176 110 0 - - 8.96342 28.74330 106.79096 20.31827 110 0 - - 9.56012 29.26650 108.01633 20.59477 110 0 - - 9.56012 29.26650 108.01633 20.59477 110 0 - - 10.13452 29.78970 109.24169 20.87128 110 0 - - 10.68733 30.31290 110.46706 21.14779 110 0 - - 11.21930 30.83610 111.69243 21.42430 110 0 - - 11.73118 31.35930 112.91780 21.70081 110 0 - - 12.22371 31.88250 114.14317 21.97732 110 0 - - 12.22371 31.88250 114.14317 21.97732 110 0 - - 12.69778 32.40570 115.36853 22.25383 110 0 - - 13.15445 32.92890 116.59390 22.53034 110 0 - + 6.35369 26.65050 101.88948 19.21223 110 0 - + 6.35369 26.65050 101.88948 19.21223 110 0 - + 7.03925 27.17370 103.11485 19.48874 110 0 - + 7.70282 27.69690 104.34022 19.76525 110 0 - + 8.34424 28.22010 105.56559 20.04176 110 0 - + 8.96338 28.74330 106.79096 20.31827 110 0 - + 9.56009 29.26650 108.01633 20.59477 110 0 - + 9.56009 29.26650 108.01633 20.59477 110 0 - + 10.13449 29.78970 109.24169 20.87128 110 0 - + 10.68731 30.31290 110.46706 21.14779 110 0 - + 11.21928 30.83610 111.69243 21.42430 110 0 - + 11.73116 31.35930 112.91780 21.70081 110 0 - + 12.22370 31.88250 114.14317 21.97732 110 0 - + 12.22370 31.88250 114.14317 21.97732 110 0 - + 12.69777 32.40570 115.36853 22.25383 110 0 - + 13.15444 32.92890 116.59390 22.53034 110 0 - 13.59476 33.45210 117.81927 22.80684 110 0 - - 14.01976 33.97530 119.04464 23.08335 110 0 - + 14.01975 33.97530 119.04464 23.08335 110 0 - 14.43047 34.49850 120.27001 23.35986 110 0 - 14.43047 34.49850 120.27001 23.35986 110 0 - 14.82798 35.02170 121.49538 23.63637 110 0 - - 15.21328 35.54490 122.72074 23.91288 110 0 - - 15.58733 36.06810 123.94611 24.18939 110 0 - - 15.95106 36.59130 125.17148 24.46590 110 0 - - 16.30542 37.11450 126.39685 24.74241 110 0 - - 16.30542 37.11450 126.39685 24.74241 110 0 - - 16.65132 37.63770 127.62222 25.01891 110 0 - - 16.98945 38.16090 128.84758 25.29542 110 0 - - 17.32042 38.68410 130.07295 25.57193 110 0 - - 17.64486 39.20730 131.29832 25.84844 110 0 - - 17.96335 39.73050 132.52369 26.12495 110 0 - - 15.09067 39.73050 158.20150 23.25227 110 0 - - 15.41216 40.22100 160.15461 23.53934 110 0 - - 15.72913 40.71150 162.10771 23.82640 110 0 - - 16.04190 41.20200 164.06082 24.11347 110 0 - - 16.35079 41.69250 166.01392 24.40053 110 0 - - 16.65611 42.18300 167.96703 24.68760 110 0 - - 16.65611 42.18300 167.96703 24.68760 110 0 - - 16.95817 42.67350 169.92013 24.97466 110 0 - - 17.25724 43.16400 171.87324 25.26173 110 0 - - 17.55358 43.65450 173.82634 25.54879 110 0 - - 17.84745 44.14500 175.77945 25.83586 110 0 - - 18.13912 44.63550 177.73255 26.12292 110 0 - - 18.13912 44.63550 177.73255 26.12292 110 0 - - 18.42883 45.12600 179.68565 26.40999 110 0 - + 15.21329 35.54490 122.72074 23.91288 110 0 - + 15.58734 36.06810 123.94611 24.18939 110 0 - + 15.95107 36.59130 125.17148 24.46590 110 0 - + 16.30543 37.11450 126.39685 24.74241 110 0 - + 16.30543 37.11450 126.39685 24.74241 110 0 - + 16.65133 37.63770 127.62222 25.01891 110 0 - + 16.98946 38.16090 128.84758 25.29542 110 0 - + 17.32043 38.68410 130.07295 25.57193 110 0 - + 17.64487 39.20730 131.29832 25.84844 110 0 - + 17.96336 39.73050 132.52369 26.12495 110 0 - + 15.09068 39.73050 158.20150 23.25227 110 0 - + 15.41217 40.22100 160.15461 23.53934 110 0 - + 15.72914 40.71150 162.10771 23.82640 110 0 - + 16.04191 41.20200 164.06082 24.11347 110 0 - + 16.35080 41.69250 166.01392 24.40053 110 0 - + 16.65612 42.18300 167.96703 24.68760 110 0 - + 16.65612 42.18300 167.96703 24.68760 110 0 - + 16.95818 42.67350 169.92013 24.97466 110 0 - + 17.25725 43.16400 171.87324 25.26173 110 0 - + 17.55359 43.65450 173.82634 25.54879 110 0 - + 17.84746 44.14500 175.77945 25.83586 110 0 - + 18.13913 44.63550 177.73255 26.12292 110 0 - + 18.13913 44.63550 177.73255 26.12292 110 0 - + 18.42884 45.12600 179.68565 26.40999 110 0 - 18.71680 45.61650 181.63876 26.69705 110 0 - 19.00320 46.10700 183.59186 26.98412 110 0 - - 19.28823 46.59750 185.54497 27.27118 110 0 - + 19.28824 46.59750 185.54497 27.27118 110 0 - 19.57209 47.08800 187.49807 27.55825 110 0 - 19.57209 47.08800 187.49807 27.55825 110 0 - 19.85495 47.57850 189.45118 27.84531 110 0 - @@ -13582,14 +13383,14 @@ Status character 20.97895 49.54050 197.26360 28.99357 110 0 - 21.25869 50.03100 199.21670 29.28064 110 0 - 21.53811 50.52150 201.16981 29.56770 110 0 - - 21.81727 51.01200 203.12291 29.85477 110 0 - + 21.81728 51.01200 203.12291 29.85477 110 0 - 22.09625 51.50250 205.07602 30.14183 110 0 - 22.37509 51.99300 207.02912 30.42890 110 0 - 22.37509 51.99300 207.02912 30.42890 110 0 - 22.65386 52.48350 208.98223 30.71596 110 0 - 22.93257 52.97400 210.93533 31.00303 110 0 - 23.21124 53.46450 212.88844 31.29009 110 0 - - 23.48990 53.95500 214.84154 31.57716 110 0 - + 23.48989 53.95500 214.84154 31.57716 110 0 - 23.76855 54.44550 216.79465 31.86422 110 0 - [END OF DATA] [END OF TABLE] @@ -13681,7 +13482,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -13711,16 +13512,10 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.33540 0.00000 0.00000 -1 0 - @@ -13776,65 +13571,65 @@ Status character 0.00000 22.75920 0.00000 0.00000 -1 0 - 0.00000 23.15160 0.00000 0.00000 -1 0 - 0.00000 23.54400 0.00000 0.00000 -1 0 - - 15.19664 23.54400 16.74912 0.00000 110 91 - - 14.97229 24.06720 17.97449 0.27651 110 83 - - 14.76272 24.59040 19.19986 0.55302 110 77 - - 14.56976 25.11360 20.42522 0.82953 110 71 - - 14.39525 25.63680 21.65059 1.10604 110 66 - - 14.24102 26.16000 22.87596 1.38254 110 62 - - 14.24102 26.16000 22.87596 1.38254 110 62 - - 14.10848 26.68320 24.10133 1.65905 110 59 - - 13.99794 27.20640 25.32670 1.93556 110 55 - - 13.90954 27.72960 26.55207 2.21207 110 52 - - 13.84342 28.25280 27.77743 2.48858 110 50 - - 13.79974 28.77600 29.00280 2.76509 110 48 - - 13.79974 28.77600 29.00280 2.76509 110 48 - - 13.77836 29.29920 30.22817 3.04160 110 46 - - 13.77857 29.82240 31.45354 3.31811 110 44 - - 13.79961 30.34560 32.67891 3.59461 110 42 - - 13.84075 30.86880 33.90427 3.87112 110 41 - - 13.90124 31.39200 35.12964 4.14763 110 40 - - 13.90124 31.39200 35.12964 4.14763 110 40 - - 13.98019 31.91520 36.35501 4.42414 110 38 - + 15.19675 23.54400 16.74912 0.00000 110 91 - + 14.97239 24.06720 17.97449 0.27651 110 83 - + 14.76281 24.59040 19.19986 0.55302 110 77 - + 14.56985 25.11360 20.42522 0.82953 110 71 - + 14.39533 25.63680 21.65059 1.10604 110 66 - + 14.24108 26.16000 22.87596 1.38254 110 62 - + 14.24108 26.16000 22.87596 1.38254 110 62 - + 14.10854 26.68320 24.10133 1.65905 110 59 - + 13.99799 27.20640 25.32670 1.93556 110 55 - + 13.90958 27.72960 26.55207 2.21207 110 52 - + 13.84346 28.25280 27.77743 2.48858 110 50 - + 13.79977 28.77600 29.00280 2.76509 110 48 - + 13.79977 28.77600 29.00280 2.76509 110 48 - + 13.77839 29.29920 30.22817 3.04160 110 46 - + 13.77859 29.82240 31.45354 3.31811 110 44 - + 13.79963 30.34560 32.67891 3.59461 110 42 - + 13.84077 30.86880 33.90427 3.87112 110 41 - + 13.90125 31.39200 35.12964 4.14763 110 40 - + 13.90125 31.39200 35.12964 4.14763 110 40 - + 13.98020 31.91520 36.35501 4.42414 110 38 - 14.07654 32.43840 37.58038 4.70065 110 37 - 14.18924 32.96160 38.80575 4.97716 110 37 - 14.31726 33.48480 40.03111 5.25367 110 36 - 14.45957 34.00800 41.25648 5.53018 110 35 - 14.45957 34.00800 41.25648 5.53018 110 35 - 14.61508 34.53120 42.48185 5.80668 110 34 - - 14.78279 35.05440 43.70722 6.08319 110 34 - - 14.96176 35.57760 44.93259 6.35970 110 33 - + 14.78278 35.05440 43.70722 6.08319 110 34 - + 14.96175 35.57760 44.93259 6.35970 110 33 - 15.15104 36.10080 46.15796 6.63621 110 33 - 15.34970 36.62400 47.38332 6.91272 110 32 - 15.34970 36.62400 47.38332 6.91272 110 32 - - 15.55683 37.14720 48.60869 7.18923 110 32 - - 15.77171 37.67040 49.83406 7.46574 110 32 - - 15.99375 38.19360 51.05943 7.74225 110 31 - - 16.22234 38.71680 52.28480 8.01875 110 31 - - 16.45686 39.24000 53.51016 8.29526 110 31 - - 15.54472 39.24000 50.23256 7.38312 110 31 - - 15.79737 39.73050 52.18566 7.67019 110 30 - - 16.05453 40.22100 54.13877 7.95725 110 30 - - 16.31588 40.71150 56.09187 8.24432 110 29 - - 16.58112 41.20200 58.04498 8.53138 110 29 - - 16.84993 41.69250 59.99808 8.81845 110 28 - - 16.84993 41.69250 59.99808 8.81845 110 28 - - 17.12200 42.18300 61.95119 9.10551 110 28 - - 17.39707 42.67350 63.90429 9.39258 110 27 - + 15.55682 37.14720 48.60869 7.18923 110 32 - + 15.77170 37.67040 49.83406 7.46574 110 32 - + 15.99374 38.19360 51.05943 7.74225 110 31 - + 16.22233 38.71680 52.28480 8.01875 110 31 - + 16.45685 39.24000 53.51016 8.29526 110 31 - + 15.54471 39.24000 50.23256 7.38312 110 31 - + 15.79736 39.73050 52.18566 7.67019 110 30 - + 16.05452 40.22100 54.13877 7.95725 110 30 - + 16.31587 40.71150 56.09187 8.24432 110 29 - + 16.58111 41.20200 58.04498 8.53138 110 29 - + 16.84992 41.69250 59.99808 8.81845 110 28 - + 16.84992 41.69250 59.99808 8.81845 110 28 - + 17.12199 42.18300 61.95119 9.10551 110 28 - + 17.39706 42.67350 63.90429 9.39258 110 27 - 17.67485 43.16400 65.85740 9.67964 110 27 - - 17.95511 43.65450 67.81050 9.96671 110 26 - + 17.95510 43.65450 67.81050 9.96671 110 26 - 18.23757 44.14500 69.76361 10.25377 110 26 - 18.23757 44.14500 69.76361 10.25377 110 26 - - 18.52199 44.63550 71.71671 10.54084 110 26 - - 18.80816 45.12600 73.66982 10.82790 110 26 - - 19.09589 45.61650 75.62292 11.11497 110 25 - + 18.52198 44.63550 71.71671 10.54084 110 26 - + 18.80815 45.12600 73.66982 10.82790 110 26 - + 19.09588 45.61650 75.62292 11.11497 110 25 - 19.38498 46.10700 77.57603 11.40203 110 25 - - 19.67526 46.59750 79.52913 11.68910 110 25 - - 19.67526 46.59750 79.52913 11.68910 110 25 - - 19.96653 47.08800 81.48223 11.97616 110 25 - + 19.67525 46.59750 79.52913 11.68910 110 25 - + 19.67525 46.59750 79.52913 11.68910 110 25 - + 19.96652 47.08800 81.48223 11.97616 110 25 - 20.25866 47.57850 83.43534 12.26323 110 24 - 20.55154 48.06900 85.38844 12.55029 110 24 - - 20.84505 48.55950 87.34155 12.83736 110 24 - + 20.84504 48.55950 87.34155 12.83736 110 24 - 21.13905 49.05000 89.29465 13.12442 110 24 - 21.13905 49.05000 89.29465 13.12442 110 24 - 21.43344 49.54050 91.24776 13.41149 110 23 - @@ -13883,7 +13678,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -13907,16 +13702,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -14065,7 +13854,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 14.96448 220000000.000 1 1 1 'Strut' + 0.25000 14.96449 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -14129,159 +13918,153 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00009 8.32630 -6.00000 - 0.42389 8.61723 -6.02124 - 0.86096 8.85698 -6.04327 - 1.30873 9.04552 -6.06694 - 1.76466 9.18282 -6.09308 - 2.22616 9.26878 -6.12252 - 2.22631 -5.64316 -6.12252 - 2.00133 -5.61142 -6.14891 - 1.77711 -5.60151 -6.17770 - 1.55322 -5.59111 -6.20862 - 1.32998 -5.56896 -6.24141 - 1.10786 -5.53508 -6.27579 - 1.10779 -5.53626 -6.27579 - 1.05248 -5.52567 -6.28460 - 0.99728 -5.51375 -6.29350 - 0.94221 -5.50053 -6.30246 - 0.88727 -5.48599 -6.31150 - 0.83249 -5.47013 -6.32061 - 0.83249 -5.47013 -6.32061 - 0.66914 -5.41909 -6.34828 - 0.50737 -5.36504 -6.37640 - 0.34727 -5.30799 -6.40487 - 0.18893 -5.24793 -6.43357 - 0.03243 -5.18487 -6.46240 - 0.03243 -5.18487 -6.46240 - -0.12214 -5.11880 -6.49125 - -0.27467 -5.04973 -6.52002 - -0.42509 -4.97765 -6.54860 - -0.57330 -4.90257 -6.57690 - -0.71921 -4.82448 -6.60481 - -0.71921 -4.82448 -6.60481 - -0.91003 -4.71569 -6.64125 - -1.09640 -4.60156 -6.67659 - -1.27809 -4.48208 -6.71063 - -1.45489 -4.35726 -6.74313 - -1.62660 -4.22711 -6.77389 - -1.62660 -4.22711 -6.77389 - -1.71047 -4.16002 -6.78855 - -1.79299 -4.09160 -6.80270 - -1.87413 -4.02185 -6.81630 - -1.95386 -3.95076 -6.82935 - -2.03215 -3.87834 -6.84181 - -2.03198 -3.88661 -6.84181 - -2.23398 -3.68695 -6.87198 - -2.42508 -3.47779 -6.89738 - -2.60478 -3.25913 -6.91762 - -2.77255 -3.03098 -6.93234 - -2.92791 -2.79333 -6.94113 - -2.92785 -2.79353 -6.94113 - -3.07029 -2.54638 -6.94365 - -3.19929 -2.28974 -6.93961 - -3.31436 -2.02360 -6.92878 - -3.41497 -1.74796 -6.91090 - -3.50064 -1.46282 -6.88574 - -3.50085 -1.46510 -6.88574 - -3.57118 -1.17046 -6.85306 - -3.62553 -0.86633 -6.81277 - -3.66342 -0.55271 -6.76477 - -3.68432 -0.22958 -6.70899 - -3.68774 0.10304 -6.64535 - -3.68773 0.10472 -6.64535 - -3.67306 0.44684 -6.57379 - -3.63990 0.79845 -6.49439 - -3.58773 1.15957 -6.40727 - -3.51604 1.53017 -6.31253 - -3.42434 1.91028 -6.21028 - -3.42433 1.91145 -6.21028 - -3.31204 2.30105 -6.10068 - -3.17871 2.70015 -5.98400 - -3.02385 3.10875 -5.86059 - -2.84695 3.52685 -5.73077 - -2.64749 3.95444 -5.59487 - -2.64748 3.95515 -5.59487 - -2.42492 4.39224 -5.45326 - -2.17881 4.83882 -5.30647 - -1.90861 5.29491 -5.15509 - -1.61385 5.76049 -4.99968 - -1.29399 6.23556 -4.84082 - -1.29398 6.23585 -4.84082 - -1.03732 6.59839 -4.71979 - -0.76604 6.96627 -4.59751 - -0.47994 7.33950 -4.47434 - -0.17881 7.71806 -4.35060 - 0.13757 8.10197 -4.22664 - 0.13757 8.10210 -4.22664 - 0.55911 7.69632 -4.06172 - 0.95752 7.23469 -3.89799 - 1.32982 6.71720 -3.73626 - 1.67303 6.14386 -3.57730 - 1.98417 5.51466 -3.42192 - 1.98428 5.50813 -3.42192 - 2.26003 4.82308 -3.27086 - 2.49775 4.08217 -3.12463 - 2.69512 3.32244 -2.98365 - 2.85275 2.59695 -2.84834 - 2.97300 1.92047 -2.71913 - 2.97278 1.91877 -2.71913 - 3.05812 1.28874 -2.59635 - 3.11103 0.70248 -2.48009 - 3.13378 0.15731 -2.37042 - 3.12849 -0.34946 -2.26737 - 3.09714 -0.82059 -2.17101 - 3.09722 -0.82304 -2.17101 - 3.04176 -1.24655 -2.08132 - 2.96540 -1.60547 -1.99811 - 2.87168 -1.89870 -1.92120 - 2.76395 -2.13131 -1.85038 - 2.64533 -2.30825 -1.78547 - 2.64532 -2.30646 -1.78547 - 2.51874 -2.43245 -1.72622 - 2.38669 -2.51204 -1.67234 - 2.25153 -2.54951 -1.62356 - 2.11542 -2.54892 -1.57957 - 1.98026 -2.51408 -1.54009 - 1.98027 -2.51264 -1.54009 - 1.84788 -2.44715 -1.50484 - 1.71972 -2.35434 -1.47352 - 1.59718 -2.23736 -1.44589 - 1.48145 -2.09910 -1.42168 - 1.37360 -1.94227 -1.40062 - 1.37361 -1.94134 -1.40062 - 1.27721 -1.91247 -1.38354 - 1.18257 -1.87139 -1.36885 - 1.09025 -1.81986 -1.35638 - 1.00073 -1.75953 -1.34596 - 0.91442 -1.69190 -1.33742 - 0.91442 -1.69135 -1.33742 - 0.83167 -1.61781 -1.33058 - 0.75272 -1.53961 -1.32530 - 0.67777 -1.45789 -1.32145 - 0.60697 -1.37370 -1.31886 - 0.54043 -1.28796 -1.31742 - 0.54043 -1.28763 -1.31742 - 0.47821 -1.20117 -1.31698 - 0.42031 -1.11471 -1.31744 - 0.36672 -1.02891 -1.31869 - 0.31740 -0.94434 -1.32063 - 0.27226 -0.86149 -1.32317 - 0.27226 -0.86132 -1.32317 - 0.23123 -0.78062 -1.32621 - 0.19416 -0.70243 -1.32969 - 0.16094 -0.62705 -1.33353 - 0.13140 -0.55475 -1.33769 + 0.00000 8.32623 -6.00000 + 0.42380 8.61715 -6.02124 + 0.86086 8.85690 -6.04328 + 1.30863 9.04545 -6.06695 + 1.76455 9.18274 -6.09309 + 2.22605 9.26870 -6.12254 + 2.22622 -5.64313 -6.12254 + 2.00124 -5.61138 -6.14893 + 1.77701 -5.60147 -6.17772 + 1.55312 -5.59107 -6.20864 + 1.32988 -5.56892 -6.24143 + 1.10777 -5.53504 -6.27582 + 1.10770 -5.53622 -6.27582 + 1.05239 -5.52563 -6.28463 + 0.99719 -5.51372 -6.29353 + 0.94212 -5.50049 -6.30249 + 0.88718 -5.48595 -6.31153 + 0.83240 -5.47009 -6.32064 + 0.83240 -5.47009 -6.32064 + 0.50729 -5.36500 -6.37643 + 0.18884 -5.24789 -6.43358 + -0.12222 -5.11876 -6.49126 + -0.42517 -4.97761 -6.54863 + -0.71929 -4.82444 -6.60485 + -0.71929 -4.82444 -6.60485 + -0.91011 -4.71565 -6.64129 + -1.09647 -4.60152 -6.67664 + -1.27816 -4.48204 -6.71067 + -1.45496 -4.35723 -6.74318 + -1.62667 -4.22707 -6.77394 + -1.62667 -4.22707 -6.77394 + -1.71054 -4.15998 -6.78860 + -1.79306 -4.09157 -6.80275 + -1.87419 -4.02181 -6.81636 + -1.95392 -3.95072 -6.82940 + -2.03221 -3.87830 -6.84186 + -2.03204 -3.88657 -6.84186 + -2.23404 -3.68691 -6.87203 + -2.42514 -3.47775 -6.89743 + -2.60484 -3.25909 -6.91767 + -2.77261 -3.03094 -6.93239 + -2.92797 -2.79329 -6.94119 + -2.92790 -2.79349 -6.94119 + -3.07034 -2.54634 -6.94370 + -3.19934 -2.28970 -6.93967 + -3.31441 -2.02356 -6.92883 + -3.41502 -1.74792 -6.91095 + -3.50068 -1.46278 -6.88579 + -3.50090 -1.46506 -6.88579 + -3.57122 -1.17043 -6.85311 + -3.62558 -0.86630 -6.81282 + -3.66346 -0.55267 -6.76482 + -3.68436 -0.22955 -6.70904 + -3.68777 0.10308 -6.64540 + -3.68776 0.10476 -6.64540 + -3.67310 0.44688 -6.57384 + -3.63993 0.79849 -6.49444 + -3.58775 1.15960 -6.40731 + -3.51607 1.53021 -6.31257 + -3.42436 1.91032 -6.21032 + -3.42435 1.91149 -6.21032 + -3.31206 2.30109 -6.10072 + -3.17873 2.70019 -5.98404 + -3.02387 3.10879 -5.86063 + -2.84696 3.52688 -5.73080 + -2.64750 3.95448 -5.59491 + -2.64749 3.95519 -5.59491 + -2.42494 4.39228 -5.45330 + -2.17882 4.83886 -5.30651 + -1.90862 5.29495 -5.15512 + -1.61385 5.76053 -4.99971 + -1.29400 6.23560 -4.84085 + -1.29399 6.23589 -4.84085 + -1.03732 6.59843 -4.71982 + -0.76604 6.96631 -4.59754 + -0.47994 7.33953 -4.47436 + -0.17881 7.71810 -4.35062 + 0.13757 8.10201 -4.22667 + 0.13758 8.10213 -4.22667 + 0.55912 7.69636 -4.06174 + 0.95753 7.23473 -3.89801 + 1.32983 6.71724 -3.73628 + 1.67304 6.14390 -3.57732 + 1.98419 5.51470 -3.42194 + 1.98429 5.50817 -3.42194 + 2.26004 4.82312 -3.27087 + 2.49777 4.08221 -3.12464 + 2.69514 3.32247 -2.98366 + 2.85277 2.59698 -2.84835 + 2.97302 1.92049 -2.71914 + 2.97281 1.91880 -2.71914 + 3.05814 1.28875 -2.59636 + 3.11105 0.70249 -2.48010 + 3.13380 0.15733 -2.37043 + 3.12852 -0.34946 -2.26738 + 3.09716 -0.82059 -2.17102 + 3.09724 -0.82303 -2.17102 + 3.04179 -1.24655 -2.08132 + 2.96543 -1.60547 -1.99811 + 2.87170 -1.89870 -1.92120 + 2.76398 -2.13133 -1.85038 + 2.64535 -2.30826 -1.78547 + 2.64535 -2.30647 -1.78547 + 2.51876 -2.43247 -1.72622 + 2.38671 -2.51206 -1.67235 + 2.25156 -2.54953 -1.62356 + 2.11544 -2.54894 -1.57957 + 1.98028 -2.51411 -1.54009 + 1.98029 -2.51266 -1.54009 + 1.84790 -2.44717 -1.50484 + 1.71974 -2.35437 -1.47352 + 1.59719 -2.23738 -1.44589 + 1.48147 -2.09912 -1.42168 + 1.37362 -1.94229 -1.40062 + 1.37363 -1.94136 -1.40062 + 1.27723 -1.91250 -1.38354 + 1.18258 -1.87141 -1.36885 + 1.09026 -1.81988 -1.35638 + 1.00074 -1.75955 -1.34596 + 0.91443 -1.69192 -1.33742 + 0.91443 -1.69137 -1.33742 + 0.83168 -1.61782 -1.33058 + 0.75273 -1.53962 -1.32530 + 0.67778 -1.45791 -1.32144 + 0.60698 -1.37372 -1.31886 + 0.54043 -1.28798 -1.31742 + 0.54043 -1.28765 -1.31742 + 0.47821 -1.20118 -1.31698 + 0.42032 -1.11472 -1.31743 + 0.36673 -1.02892 -1.31869 + 0.31740 -0.94435 -1.32063 + 0.27227 -0.86150 -1.32317 + 0.27227 -0.86133 -1.32317 + 0.23123 -0.78063 -1.32621 + 0.19416 -0.70244 -1.32969 + 0.16094 -0.62706 -1.33353 + 0.13141 -0.55475 -1.33769 0.10541 -0.48574 -1.34209 0.10541 -0.48567 -1.34209 - 0.08278 -0.42011 -1.34668 + 0.08278 -0.42012 -1.34667 0.06334 -0.35815 -1.35142 0.04690 -0.29988 -1.35629 0.03329 -0.24539 -1.36125 @@ -14291,7 +14074,7 @@ Displacements 0.00744 -0.10508 -1.37641 0.00318 -0.06612 -1.38151 0.00076 -0.03110 -1.38662 - 0.00000 0.00000 -1.39174 + 0.00000 0.00000 -1.39173 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -14353,7 +14136,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -14367,11 +14150,11 @@ Status character 6.33033 0.00000 44.80242 6.33033 110 0 - 5.30685 0.00000 47.32722 6.90006 110 0 - 4.28316 0.00000 49.85201 7.46979 110 0 - - 3.25872 0.00000 52.37681 8.03952 110 0 - - 2.23299 0.00000 54.90161 8.60925 110 0 - - 1.20544 0.00000 57.42641 9.17898 110 0 - - 1.20544 0.00000 57.42641 9.17898 110 0 - - 0.38194 0.00000 59.44624 9.63476 110 0 - + 3.25871 0.00000 52.37681 8.03952 110 0 - + 2.23298 0.00000 54.90161 8.60925 110 0 - + 1.20543 0.00000 57.42641 9.17898 110 0 - + 1.20543 0.00000 57.42641 9.17898 110 0 - + 0.38192 0.00000 59.44624 9.63476 110 0 - 0.11334 0.00000 61.46608 10.09054 1 0 A 0.40687 0.00000 63.48592 10.54633 1 0 A 0.70039 0.00000 65.50576 11.00211 1 0 A @@ -14383,16 +14166,10 @@ Status character 1.12746 0.39240 68.44462 11.66528 1 0 A 1.16085 0.49050 68.67438 11.71712 1 0 A 1.16085 0.49050 68.67438 11.71712 1 0 A - 1.26101 0.78480 69.36365 11.87266 1 0 A 1.36118 1.07910 70.05292 12.02819 1 0 A - 1.46134 1.37340 70.74219 12.18373 1 0 A 1.56151 1.66770 71.43145 12.33927 1 0 A - 1.66167 1.96200 72.12072 12.49480 1 0 A - 1.66167 1.96200 72.12072 12.49480 1 0 A 1.76183 2.25630 72.80999 12.65034 1 0 A - 1.86200 2.55060 73.49926 12.80587 1 0 A 1.96216 2.84490 74.18853 12.96141 1 0 A - 2.06233 3.13920 74.87780 13.11695 1 0 A 2.16249 3.43350 75.56707 13.27248 1 0 A 2.16249 3.43350 75.56707 13.27248 1 0 A 2.29604 3.82590 76.48610 13.47986 1 0 A @@ -14467,58 +14244,58 @@ Status character 11.66696 31.35930 140.97110 28.03114 1 0 A 11.84503 31.88250 142.19647 28.30765 1 0 A 11.84503 31.88250 142.19647 28.30765 1 0 A - 12.57403 32.40570 143.42184 28.58416 110 0 - - 13.49059 32.92890 144.64720 28.86066 110 0 - - 14.35874 33.45210 145.87257 29.13717 110 0 - - 15.17999 33.97530 147.09794 29.41368 110 0 - - 15.95583 34.49850 148.32331 29.69019 110 0 - - 15.95583 34.49850 148.32331 29.69019 110 0 - - 16.68809 35.02170 149.54868 29.96670 110 0 - - 17.37902 35.54490 150.77404 30.24321 110 0 - - 18.03083 36.06810 151.99941 30.51972 110 0 - - 18.64571 36.59130 153.22478 30.79623 110 0 - + 12.57399 32.40570 143.42184 28.58416 110 0 - + 13.49055 32.92890 144.64720 28.86066 110 0 - + 14.35871 33.45210 145.87257 29.13717 110 0 - + 15.17996 33.97530 147.09794 29.41368 110 0 - + 15.95581 34.49850 148.32331 29.69019 110 0 - + 15.95581 34.49850 148.32331 29.69019 110 0 - + 16.68807 35.02170 149.54868 29.96670 110 0 - + 17.37901 35.54490 150.77404 30.24321 110 0 - + 18.03082 36.06810 151.99941 30.51972 110 0 - + 18.64570 36.59130 153.22478 30.79623 110 0 - 19.22586 37.11450 154.45015 31.07273 110 0 - 19.22586 37.11450 154.45015 31.07273 110 0 - 19.77356 37.63770 155.67552 31.34924 110 0 - 20.29095 38.16090 156.90089 31.62575 110 0 - 20.78003 38.68410 158.12625 31.90226 110 0 - - 21.24280 39.20730 159.35162 32.17877 110 0 - + 21.24281 39.20730 159.35162 32.17877 110 0 - 21.68127 39.73050 160.57699 32.45528 110 0 - 18.11251 39.73050 196.53526 28.88652 110 0 - 18.53099 40.22100 198.48836 29.17359 110 0 - 18.93105 40.71150 200.44147 29.46065 110 0 - - 19.31402 41.20200 202.39457 29.74772 110 0 - - 19.68123 41.69250 204.34768 30.03478 110 0 - - 20.03401 42.18300 206.30078 30.32185 110 0 - - 20.03401 42.18300 206.30078 30.32185 110 0 - - 20.37366 42.67350 208.25389 30.60891 110 0 - - 20.70132 43.16400 210.20699 30.89598 110 0 - - 21.01808 43.65450 212.16010 31.18304 110 0 - - 21.32500 44.14500 214.11320 31.47011 110 0 - - 21.62317 44.63550 216.06631 31.75717 110 0 - - 21.62317 44.63550 216.06631 31.75717 110 0 - - 21.91362 45.12600 218.01941 32.04424 110 0 - - 22.19718 45.61650 219.97252 32.33130 110 0 - - 22.47462 46.10700 221.92562 32.61837 110 0 - - 22.74672 46.59750 223.87873 32.90543 110 0 - - 23.01424 47.08800 225.83183 33.19250 110 0 - - 23.01424 47.08800 225.83183 33.19250 110 0 - - 23.27791 47.57850 227.78494 33.47956 110 0 - - 23.53825 48.06900 229.73804 33.76663 110 0 - + 19.31403 41.20200 202.39457 29.74772 110 0 - + 19.68124 41.69250 204.34768 30.03478 110 0 - + 20.03402 42.18300 206.30078 30.32185 110 0 - + 20.03402 42.18300 206.30078 30.32185 110 0 - + 20.37367 42.67350 208.25389 30.60891 110 0 - + 20.70133 43.16400 210.20699 30.89598 110 0 - + 21.01809 43.65450 212.16010 31.18304 110 0 - + 21.32501 44.14500 214.11320 31.47011 110 0 - + 21.62318 44.63550 216.06631 31.75717 110 0 - + 21.62318 44.63550 216.06631 31.75717 110 0 - + 21.91363 45.12600 218.01941 32.04424 110 0 - + 22.19719 45.61650 219.97252 32.33130 110 0 - + 22.47463 46.10700 221.92562 32.61837 110 0 - + 22.74673 46.59750 223.87873 32.90543 110 0 - + 23.01425 47.08800 225.83183 33.19250 110 0 - + 23.01425 47.08800 225.83183 33.19250 110 0 - + 23.27792 47.57850 227.78494 33.47956 110 0 - + 23.53826 48.06900 229.73804 33.76663 110 0 - 23.79574 48.55950 231.69115 34.05369 110 0 - - 24.05085 49.05000 233.64425 34.34076 110 0 - - 24.30408 49.54050 235.59736 34.62782 110 0 - - 24.30408 49.54050 235.59736 34.62782 110 0 - - 24.55584 50.03100 237.55046 34.91489 110 0 - - 24.80642 50.52150 239.50357 35.20195 110 0 - - 25.05604 51.01200 241.45667 35.48902 110 0 - - 25.30495 51.50250 243.40978 35.77608 110 0 - - 25.55338 51.99300 245.36288 36.06315 110 0 - - 25.55338 51.99300 245.36288 36.06315 110 0 - + 24.05086 49.05000 233.64425 34.34076 110 0 - + 24.30409 49.54050 235.59736 34.62782 110 0 - + 24.30409 49.54050 235.59736 34.62782 110 0 - + 24.55585 50.03100 237.55046 34.91489 110 0 - + 24.80643 50.52150 239.50357 35.20195 110 0 - + 25.05605 51.01200 241.45667 35.48902 110 0 - + 25.30496 51.50250 243.40978 35.77608 110 0 - + 25.55339 51.99300 245.36288 36.06315 110 0 - + 25.55339 51.99300 245.36288 36.06315 110 0 - 25.80154 52.48350 247.31599 36.35021 110 0 - 26.04950 52.97400 249.26909 36.63728 110 0 - 26.29732 53.46450 251.22220 36.92434 110 0 - - 26.54507 53.95500 253.17530 37.21141 110 0 - + 26.54508 53.95500 253.17530 37.21141 110 0 - 26.79282 54.44550 255.12841 37.49847 110 0 - [END OF DATA] [END OF TABLE] @@ -14610,7 +14387,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -14640,16 +14417,10 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.33540 0.00000 0.00000 -1 0 - @@ -14714,67 +14485,67 @@ Status character 22.87596 26.16000 22.87596 1.38254 202 100 P 24.10133 26.68320 24.10133 1.65905 202 100 P 25.32670 27.20640 25.32670 1.93556 202 100 P - 25.16320 27.72960 26.55207 2.21207 110 95 - - 24.39888 28.25280 27.77743 2.48858 110 88 - - 23.68143 28.77600 29.00280 2.76509 110 82 - - 23.68143 28.77600 29.00280 2.76509 110 82 - - 23.01348 29.29920 30.22817 3.04160 110 76 - - 22.39574 29.82240 31.45354 3.31811 110 71 - - 21.82861 30.34560 32.67891 3.59461 110 67 - - 21.31247 30.86880 33.90427 3.87112 110 63 - - 20.84772 31.39200 35.12964 4.14763 110 59 - - 20.84772 31.39200 35.12964 4.14763 110 59 - - 20.43426 31.91520 36.35501 4.42414 110 56 - - 20.07072 32.43840 37.58038 4.70065 110 53 - - 19.75559 32.96160 38.80575 4.97716 110 51 - - 19.48736 33.48480 40.03111 5.25367 110 49 - - 19.26453 34.00800 41.25648 5.53018 110 47 - - 19.26453 34.00800 41.25648 5.53018 110 47 - - 19.08529 34.53120 42.48185 5.80668 110 45 - - 18.94738 35.05440 43.70722 6.08319 110 43 - - 18.84859 35.57760 44.93259 6.35970 110 42 - - 18.78672 36.10080 46.15796 6.63621 110 41 - - 18.75959 36.62400 47.38332 6.91272 110 40 - - 18.75959 36.62400 47.38332 6.91272 110 40 - + 25.16331 27.72960 26.55207 2.21207 110 95 - + 24.39898 28.25280 27.77743 2.48858 110 88 - + 23.68153 28.77600 29.00280 2.76509 110 82 - + 23.68153 28.77600 29.00280 2.76509 110 82 - + 23.01357 29.29920 30.22817 3.04160 110 76 - + 22.39582 29.82240 31.45354 3.31811 110 71 - + 21.82867 30.34560 32.67891 3.59461 110 67 - + 21.31253 30.86880 33.90427 3.87112 110 63 - + 20.84777 31.39200 35.12964 4.14763 110 59 - + 20.84777 31.39200 35.12964 4.14763 110 59 - + 20.43431 31.91520 36.35501 4.42414 110 56 - + 20.07076 32.43840 37.58038 4.70065 110 53 - + 19.75562 32.96160 38.80575 4.97716 110 51 - + 19.48739 33.48480 40.03111 5.25367 110 49 - + 19.26456 34.00800 41.25648 5.53018 110 47 - + 19.26456 34.00800 41.25648 5.53018 110 47 - + 19.08531 34.53120 42.48185 5.80668 110 45 - + 18.94739 35.05440 43.70722 6.08319 110 43 - + 18.84860 35.57760 44.93259 6.35970 110 42 - + 18.78673 36.10080 46.15796 6.63621 110 41 - + 18.75960 36.62400 47.38332 6.91272 110 40 - + 18.75960 36.62400 47.38332 6.91272 110 40 - 18.76491 37.14720 48.60869 7.18923 110 39 - 18.80054 37.67040 49.83406 7.46574 110 38 - 18.86447 38.19360 51.05943 7.74225 110 37 - 18.95472 38.71680 52.28480 8.01875 110 36 - 19.06927 39.24000 53.51016 8.29526 110 36 - 18.15713 39.24000 50.23256 7.38312 110 36 - - 18.31279 39.73050 52.18566 7.67019 110 35 - - 18.48686 40.22100 54.13877 7.95725 110 34 - + 18.31278 39.73050 52.18566 7.67019 110 35 - + 18.48685 40.22100 54.13877 7.95725 110 34 - 18.67801 40.71150 56.09187 8.24432 110 33 - - 18.88493 41.20200 58.04498 8.53138 110 33 - - 19.10628 41.69250 59.99808 8.81845 110 32 - - 19.10628 41.69250 59.99808 8.81845 110 32 - - 19.34076 42.18300 61.95119 9.10551 110 31 - - 19.58723 42.67350 63.90429 9.39258 110 31 - - 19.84461 43.16400 65.85740 9.67964 110 30 - - 20.11182 43.65450 67.81050 9.96671 110 30 - - 20.38777 44.14500 69.76361 10.25377 110 29 - - 20.38777 44.14500 69.76361 10.25377 110 29 - - 20.67145 44.63550 71.71671 10.54084 110 29 - - 20.96202 45.12600 73.66982 10.82790 110 28 - - 21.25871 45.61650 75.62292 11.11497 110 28 - - 21.56075 46.10700 77.57603 11.40203 110 28 - - 21.86735 46.59750 79.52913 11.68910 110 27 - - 21.86735 46.59750 79.52913 11.68910 110 27 - + 18.88492 41.20200 58.04498 8.53138 110 33 - + 19.10627 41.69250 59.99808 8.81845 110 32 - + 19.10627 41.69250 59.99808 8.81845 110 32 - + 19.34075 42.18300 61.95119 9.10551 110 31 - + 19.58722 42.67350 63.90429 9.39258 110 31 - + 19.84460 43.16400 65.85740 9.67964 110 30 - + 20.11181 43.65450 67.81050 9.96671 110 30 - + 20.38776 44.14500 69.76361 10.25377 110 29 - + 20.38776 44.14500 69.76361 10.25377 110 29 - + 20.67144 44.63550 71.71671 10.54084 110 29 - + 20.96201 45.12600 73.66982 10.82790 110 28 - + 21.25870 45.61650 75.62292 11.11497 110 28 - + 21.56074 46.10700 77.57603 11.40203 110 28 - + 21.86734 46.59750 79.52913 11.68910 110 27 - + 21.86734 46.59750 79.52913 11.68910 110 27 - 22.17781 47.08800 81.48223 11.97616 110 27 - - 22.49161 47.57850 83.43534 12.26323 110 27 - - 22.80825 48.06900 85.38844 12.55029 110 27 - + 22.49160 47.57850 83.43534 12.26323 110 27 - + 22.80824 48.06900 85.38844 12.55029 110 27 - 23.12726 48.55950 87.34155 12.83736 110 26 - - 23.44817 49.05000 89.29465 13.12442 110 26 - - 23.44817 49.05000 89.29465 13.12442 110 26 - - 23.77053 49.54050 91.24776 13.41149 110 26 - - 24.09409 50.03100 93.20086 13.69855 110 26 - + 23.44816 49.05000 89.29465 13.12442 110 26 - + 23.44816 49.05000 89.29465 13.12442 110 26 - + 23.77052 49.54050 91.24776 13.41149 110 26 - + 24.09408 50.03100 93.20086 13.69855 110 26 - 24.41859 50.52150 95.15397 13.98562 110 26 - - 24.74382 51.01200 97.10707 14.27268 110 25 - + 24.74381 51.01200 97.10707 14.27268 110 25 - 25.06951 51.50250 99.06018 14.55975 110 25 - 25.06951 51.50250 99.06018 14.55975 110 25 - - 25.39549 51.99300 101.01328 14.84681 110 25 - + 25.39548 51.99300 101.01328 14.84681 110 25 - 25.72166 52.48350 102.96639 15.13388 110 25 - - 26.04797 52.97400 104.91949 15.42094 110 25 - + 26.04796 52.97400 104.91949 15.42094 110 25 - 26.37434 53.46450 106.87260 15.70801 110 25 - 26.70073 53.95500 108.82570 15.99507 110 25 - [END OF DATA] @@ -14814,7 +14585,7 @@ Layer name [VERIFY STEP 6.2 (HIGH MODULUS OF SUBGRADE REACTION AND HIGH PASSIVE WATER LEVEL)] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -14838,16 +14609,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -15043,144 +14808,138 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 3.23949 -6.00000 - 0.16197 3.23949 -5.77879 - 0.32395 3.23949 -5.55789 - 0.48592 3.23949 -5.33759 - 0.64790 3.23949 -5.11821 - 0.80987 3.23949 -4.90004 - 0.80987 3.23949 -4.90004 - 0.93945 3.23949 -4.72658 - 1.06903 3.23949 -4.55425 - 1.19861 3.23949 -4.38320 - 1.32819 3.23949 -4.21359 - 1.45777 3.23949 -4.04558 - 1.45777 3.23949 -4.04558 - 1.49017 3.23998 -4.00384 - 1.52257 3.24145 -3.96221 - 1.55500 3.24391 -3.92070 - 1.58746 3.24734 -3.87931 - 1.61995 3.25175 -3.83803 - 1.61995 3.25175 -3.83803 - 1.71777 3.27088 -3.71495 - 1.81629 3.29884 -3.59302 - 1.91579 3.33563 -3.47232 - 2.01652 3.38125 -3.35291 - 2.11875 3.43569 -3.23487 - 2.11875 3.43569 -3.23487 - 2.22275 3.49897 -3.11825 - 2.32878 3.57107 -3.00313 - 2.43710 3.65200 -2.88959 - 2.54799 3.74212 -2.77769 - 2.66173 3.84293 -2.66752 - 2.66173 3.84293 -2.66752 - 2.81844 3.99576 -2.52342 - 2.98167 4.16962 -2.38269 - 3.15229 4.36452 -2.24556 - 3.33112 4.58046 -2.11222 - 3.51901 4.81744 -1.98287 - 3.51901 4.81744 -1.98287 - 3.61322 4.60228 -1.91977 - 3.70304 4.37926 -1.85774 - 3.78833 4.14839 -1.79683 - 3.86893 3.90967 -1.73706 - 3.94467 3.66309 -1.67844 - 3.94472 3.66246 -1.67844 - 4.12174 2.96651 -1.52803 - 4.26016 2.21471 -1.38643 - 4.35698 1.40705 -1.25384 - 4.40925 0.54353 -1.13045 - 4.41416 -0.36513 -1.01647 - 4.41357 -0.38452 -1.01647 - 4.36944 -1.25034 -0.91202 - 4.28224 -2.00166 -0.81689 - 4.15777 -2.64951 -0.73082 - 4.00127 -3.20461 -0.65356 - 3.81741 -3.67738 -0.58484 - 3.81779 -3.68084 -0.58484 - 3.61050 -4.08132 -0.52433 - 3.38409 -4.38949 -0.47152 - 3.14431 -4.58429 -0.42591 - 2.89691 -4.67764 -0.38698 - 2.64689 -4.68499 -0.35424 - 2.64675 -4.68173 -0.35424 - 2.39848 -4.61729 -0.32715 - 2.15528 -4.49397 -0.30518 - 1.91997 -4.32344 -0.28781 - 1.69477 -4.11617 -0.27457 - 1.48140 -3.88145 -0.26493 - 1.48144 -3.87825 -0.26493 - 1.28130 -3.62416 -0.25843 - 1.09508 -3.35774 -0.25466 - 0.92325 -3.08511 -0.25325 - 0.76602 -2.81148 -0.25383 - 0.62330 -2.54123 -0.25606 - 0.62333 -2.53985 -0.25606 - 0.49493 -2.27648 -0.25957 - 0.38033 -2.02281 -0.26414 - 0.27895 -1.78111 -0.26954 - 0.19010 -1.55312 -0.27557 - 0.11302 -1.34007 -0.28199 - 0.11303 -1.33979 -0.28199 - 0.06246 -1.19026 -0.28696 - 0.01769 -1.04975 -0.29201 - -0.02164 -0.91834 -0.29708 - -0.05590 -0.79604 -0.30213 - -0.08544 -0.68277 -0.30712 - -0.08544 -0.68293 -0.30712 - -0.11813 -0.54565 -0.31358 - -0.14391 -0.42359 -0.31980 - -0.16357 -0.31608 -0.32572 - -0.17787 -0.22238 -0.33130 - -0.18752 -0.14162 -0.33650 - -0.18752 -0.14200 -0.33650 - -0.19321 -0.07323 -0.34129 - -0.19553 -0.01545 -0.34566 - -0.19503 0.03232 -0.34963 - -0.19224 0.07107 -0.35318 - -0.18760 0.10178 -0.35632 - -0.18760 0.10138 -0.35632 - -0.18153 0.12503 -0.35906 - -0.17437 0.14258 -0.36141 - -0.16641 0.15493 -0.36339 - -0.15792 0.16295 -0.36502 + 0.00000 3.23896 -6.00000 + 0.16195 3.23896 -5.77880 + 0.32390 3.23896 -5.55790 + 0.48584 3.23896 -5.33761 + 0.64779 3.23896 -5.11823 + 0.80974 3.23896 -4.90007 + 0.80974 3.23896 -4.90007 + 0.93930 3.23896 -4.72662 + 1.06886 3.23896 -4.55429 + 1.19841 3.23896 -4.38325 + 1.32797 3.23896 -4.21364 + 1.45753 3.23896 -4.04563 + 1.45753 3.23896 -4.04563 + 1.48992 3.23945 -4.00390 + 1.52232 3.24092 -3.96227 + 1.55474 3.24337 -3.92076 + 1.58719 3.24681 -3.87937 + 1.61968 3.25122 -3.83810 + 1.61968 3.25122 -3.83810 + 1.81599 3.29831 -3.59308 + 2.01619 3.38071 -3.35296 + 2.22238 3.49843 -3.11830 + 2.43670 3.65147 -2.88966 + 2.66134 3.84354 -2.66760 + 2.66134 3.84354 -2.66760 + 2.81807 3.99637 -2.52350 + 2.98133 4.17023 -2.38278 + 3.15197 4.36513 -2.24564 + 3.33082 4.58107 -2.11230 + 3.51873 4.81805 -1.98295 + 3.51873 4.81805 -1.98295 + 3.61296 4.60289 -1.91984 + 3.70280 4.37987 -1.85782 + 3.78810 4.14900 -1.79691 + 3.86871 3.91028 -1.73713 + 3.94446 3.66369 -1.67851 + 3.94451 3.66307 -1.67851 + 4.12157 2.96712 -1.52811 + 4.26001 2.21532 -1.38650 + 4.35687 1.40765 -1.25390 + 4.40917 0.54414 -1.13051 + 4.41411 -0.36455 -1.01653 + 4.41353 -0.38395 -1.01653 + 4.36942 -1.24983 -0.91207 + 4.28225 -2.00121 -0.81694 + 4.15780 -2.64912 -0.73086 + 4.00132 -3.20427 -0.65360 + 3.81748 -3.67708 -0.58488 + 3.81786 -3.68054 -0.58488 + 3.61058 -4.08106 -0.52437 + 3.38419 -4.38928 -0.47155 + 3.14441 -4.58414 -0.42593 + 2.89702 -4.67755 -0.38700 + 2.64700 -4.68495 -0.35426 + 2.64686 -4.68168 -0.35426 + 2.39860 -4.61728 -0.32717 + 2.15540 -4.49399 -0.30519 + 1.92008 -4.32349 -0.28782 + 1.69488 -4.11625 -0.27457 + 1.48150 -3.88155 -0.26494 + 1.48154 -3.87834 -0.26494 + 1.28140 -3.62427 -0.25843 + 1.09517 -3.35786 -0.25466 + 0.92334 -3.08523 -0.25325 + 0.76610 -2.81161 -0.25384 + 0.62337 -2.54136 -0.25606 + 0.62340 -2.53998 -0.25606 + 0.49500 -2.27661 -0.25957 + 0.38039 -2.02293 -0.26414 + 0.27900 -1.78122 -0.26954 + 0.19015 -1.55323 -0.27556 + 0.11306 -1.34017 -0.28199 + 0.11307 -1.33990 -0.28199 + 0.06250 -1.19036 -0.28696 + 0.01772 -1.04984 -0.29201 + -0.02161 -0.91843 -0.29708 + -0.05587 -0.79612 -0.30213 + -0.08542 -0.68285 -0.30711 + -0.08541 -0.68301 -0.30711 + -0.11811 -0.54572 -0.31358 + -0.14390 -0.42365 -0.31979 + -0.16356 -0.31614 -0.32571 + -0.17786 -0.22243 -0.33130 + -0.18752 -0.14166 -0.33650 + -0.18751 -0.14205 -0.33650 + -0.19320 -0.07326 -0.34128 + -0.19552 -0.01548 -0.34566 + -0.19503 0.03229 -0.34963 + -0.19224 0.07104 -0.35318 + -0.18760 0.10176 -0.35632 + -0.18760 0.10136 -0.35632 + -0.18153 0.12502 -0.35906 + -0.17437 0.14257 -0.36141 + -0.16642 0.15492 -0.36339 + -0.15793 0.16294 -0.36502 -0.14910 0.16747 -0.36631 -0.14910 0.16715 -0.36631 - -0.14012 0.16896 -0.36728 + -0.14013 0.16896 -0.36728 -0.13111 0.16880 -0.36795 - -0.12214 0.16736 -0.36834 + -0.12215 0.16736 -0.36834 -0.11327 0.16530 -0.36848 - -0.10451 0.16321 -0.36837 - -0.10451 0.16298 -0.36837 - -0.09586 0.16143 -0.36803 - -0.08727 0.16091 -0.36749 - -0.07867 0.16192 -0.36677 + -0.10451 0.16321 -0.36836 + -0.10452 0.16299 -0.36836 + -0.09587 0.16143 -0.36803 + -0.08728 0.16092 -0.36749 + -0.07868 0.16192 -0.36677 -0.06997 0.16486 -0.36588 -0.06105 0.17012 -0.36484 -0.06105 0.16999 -0.36484 - -0.05178 0.17791 -0.36366 + -0.05179 0.17791 -0.36366 -0.04202 0.18877 -0.36238 -0.03159 0.20282 -0.36101 - -0.02033 0.22023 -0.35957 - -0.00804 0.24115 -0.35809 - -0.00804 0.24113 -0.35809 + -0.02033 0.22024 -0.35957 + -0.00804 0.24116 -0.35809 + -0.00804 0.24114 -0.35809 0.00304 0.20272 -0.35669 - 0.01228 0.16745 -0.35529 + 0.01228 0.16746 -0.35529 0.01984 0.13531 -0.35392 - 0.02587 0.10623 -0.35257 + 0.02586 0.10623 -0.35257 0.03051 0.08011 -0.35128 0.03051 0.08016 -0.35128 - 0.03393 0.05688 -0.35005 - 0.03625 0.03631 -0.34888 + 0.03393 0.05689 -0.35005 + 0.03624 0.03632 -0.34888 0.03760 0.01830 -0.34777 - 0.03812 0.00269 -0.34674 + 0.03811 0.00269 -0.34674 0.03791 -0.01067 -0.34577 0.03791 -0.01060 -0.34577 0.03709 -0.02188 -0.34488 @@ -15267,7 +15026,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -15297,16 +15056,10 @@ Status character 0.00000 0.39240 54.41797 8.50011 1 0 A 0.00000 0.49050 54.64773 8.55196 1 0 A 0.00000 0.49050 54.64773 8.55196 1 0 A - 0.00000 0.78480 55.33700 8.70749 1 0 A 0.00000 1.07910 56.02627 8.86303 1 0 A - 0.00000 1.37340 56.71554 9.01857 1 0 A 0.00000 1.66770 57.40480 9.17410 1 0 A - 0.00000 1.96200 58.09407 9.32964 1 0 A - 0.00000 1.96200 58.09407 9.32964 1 0 A 0.00000 2.25630 58.78334 9.48517 1 0 A - 0.00000 2.55060 59.47261 9.64071 1 0 A 0.00000 2.84490 60.16188 9.79625 1 0 A - 0.02398 3.13920 60.85115 9.95178 1 0 A 0.12415 3.43350 61.54042 10.10732 1 0 A 0.12415 3.43350 61.54042 10.10732 1 0 A 0.25770 3.82590 62.45945 10.31470 1 0 A @@ -15334,57 +15087,57 @@ Status character 2.90649 11.60850 80.68680 14.42777 1 0 A 2.90649 11.60850 80.68680 14.42777 1 0 A 3.08456 12.13170 81.91217 14.70428 1 0 A - 4.37151 12.65490 83.13754 14.98079 110 0 - - 5.67436 13.17810 84.36290 15.25729 110 0 - - 6.82668 13.70130 85.58827 15.53380 110 0 - - 7.83980 14.22450 86.81364 15.81031 110 0 - - 7.83980 14.22450 86.81364 15.81031 110 0 - - 8.72584 14.74770 88.03901 16.08682 110 0 - - 9.49684 15.27090 89.26438 16.36333 110 0 - - 10.16402 15.79410 90.48975 16.63984 110 0 - - 10.73862 16.31730 91.71511 16.91635 110 0 - - 11.23187 16.84050 92.94048 17.19286 110 0 - - 11.23187 16.84050 92.94048 17.19286 110 0 - - 11.65472 17.36370 94.16585 17.46936 110 0 - - 12.01613 17.88690 95.39122 17.74587 110 0 - - 12.32435 18.41010 96.61659 18.02238 110 0 - - 12.58761 18.93330 97.84195 18.29889 110 0 - - 12.81415 19.45650 99.06732 18.57540 110 0 - - 12.81415 19.45650 99.06732 18.57540 110 0 - - 13.01161 19.97970 100.29269 18.85191 110 0 - - 13.18534 20.50290 101.51806 19.12842 110 0 - - 13.34024 21.02610 102.74343 19.40493 110 0 - - 13.48120 21.54930 103.96880 19.68143 110 0 - - 13.61310 22.07250 105.19416 19.95794 110 0 - - 13.61310 22.07250 105.19416 19.95794 110 0 - - 13.70865 22.46490 106.11319 20.16532 110 0 - - 13.80252 22.85730 107.03222 20.37271 110 0 - - 13.89578 23.24970 107.95124 20.58009 110 0 - - 13.98950 23.64210 108.87027 20.78747 110 0 - - 14.08475 24.03450 109.78929 20.99485 110 0 - - 14.08475 24.03450 109.78929 20.99485 110 0 - - 14.21575 24.55770 111.01466 21.27136 110 0 - - 14.35243 25.08090 112.24003 21.54787 110 0 - - 14.49575 25.60410 113.46540 21.82438 110 0 - - 14.64668 26.12730 114.69077 22.10089 110 0 - - 14.80619 26.65050 115.91613 22.37740 110 0 - - 14.80619 26.65050 115.91613 22.37740 110 0 - - 14.97495 27.17370 117.14150 22.65390 110 0 - - 15.15298 27.69690 118.36687 22.93041 110 0 - - 15.34028 28.22010 119.59224 23.20692 110 0 - - 15.53683 28.74330 120.81761 23.48343 110 0 - - 15.74263 29.26650 122.04298 23.75994 110 0 - - 15.74263 29.26650 122.04298 23.75994 110 0 - - 15.95753 29.78970 123.26834 24.03645 110 0 - - 16.18114 30.31290 124.49371 24.31296 110 0 - - 16.41309 30.83610 125.71908 24.58947 110 0 - - 16.65300 31.35930 126.94445 24.86597 110 0 - - 16.90050 31.88250 128.16982 25.14248 110 0 - - 16.90050 31.88250 128.16982 25.14248 110 0 - - 17.15517 32.40570 129.39518 25.41899 110 0 - - 17.41656 32.92890 130.62055 25.69550 110 0 - - 17.68425 33.45210 131.84592 25.97201 110 0 - - 17.95781 33.97530 133.07129 26.24852 110 0 - + 4.37088 12.65490 83.13754 14.98079 110 0 - + 5.67382 13.17810 84.36290 15.25729 110 0 - + 6.82621 13.70130 85.58827 15.53380 110 0 - + 7.83940 14.22450 86.81364 15.81031 110 0 - + 7.83940 14.22450 86.81364 15.81031 110 0 - + 8.72550 14.74770 88.03901 16.08682 110 0 - + 9.49656 15.27090 89.26438 16.36333 110 0 - + 10.16379 15.79410 90.48975 16.63984 110 0 - + 10.73844 16.31730 91.71511 16.91635 110 0 - + 11.23173 16.84050 92.94048 17.19286 110 0 - + 11.23173 16.84050 92.94048 17.19286 110 0 - + 11.65462 17.36370 94.16585 17.46936 110 0 - + 12.01606 17.88690 95.39122 17.74587 110 0 - + 12.32431 18.41010 96.61659 18.02238 110 0 - + 12.58759 18.93330 97.84195 18.29889 110 0 - + 12.81416 19.45650 99.06732 18.57540 110 0 - + 12.81416 19.45650 99.06732 18.57540 110 0 - + 13.01163 19.97970 100.29269 18.85191 110 0 - + 13.18538 20.50290 101.51806 19.12842 110 0 - + 13.34029 21.02610 102.74343 19.40493 110 0 - + 13.48126 21.54930 103.96880 19.68143 110 0 - + 13.61316 22.07250 105.19416 19.95794 110 0 - + 13.61316 22.07250 105.19416 19.95794 110 0 - + 13.70871 22.46490 106.11319 20.16532 110 0 - + 13.80259 22.85730 107.03222 20.37271 110 0 - + 13.89585 23.24970 107.95124 20.58009 110 0 - + 13.98957 23.64210 108.87027 20.78747 110 0 - + 14.08481 24.03450 109.78929 20.99485 110 0 - + 14.08481 24.03450 109.78929 20.99485 110 0 - + 14.21581 24.55770 111.01466 21.27136 110 0 - + 14.35249 25.08090 112.24003 21.54787 110 0 - + 14.49582 25.60410 113.46540 21.82438 110 0 - + 14.64675 26.12730 114.69077 22.10089 110 0 - + 14.80625 26.65050 115.91613 22.37740 110 0 - + 14.80625 26.65050 115.91613 22.37740 110 0 - + 14.97500 27.17370 117.14150 22.65390 110 0 - + 15.15303 27.69690 118.36687 22.93041 110 0 - + 15.34032 28.22010 119.59224 23.20692 110 0 - + 15.53687 28.74330 120.81761 23.48343 110 0 - + 15.74267 29.26650 122.04298 23.75994 110 0 - + 15.74267 29.26650 122.04298 23.75994 110 0 - + 15.95756 29.78970 123.26834 24.03645 110 0 - + 16.18117 30.31290 124.49371 24.31296 110 0 - + 16.41312 30.83610 125.71908 24.58947 110 0 - + 16.65302 31.35930 126.94445 24.86597 110 0 - + 16.90052 31.88250 128.16982 25.14248 110 0 - + 16.90052 31.88250 128.16982 25.14248 110 0 - + 17.15519 32.40570 129.39518 25.41899 110 0 - + 17.41658 32.92890 130.62055 25.69550 110 0 - + 17.68427 33.45210 131.84592 25.97201 110 0 - + 17.95782 33.97530 133.07129 26.24852 110 0 - 18.23681 34.49850 134.29666 26.52503 110 0 - 18.23681 34.49850 134.29666 26.52503 110 0 - 18.52082 35.02170 135.52203 26.80154 110 0 - @@ -15396,17 +15149,17 @@ Status character 20.00162 37.63770 141.64887 28.18408 110 0 - 20.30700 38.16090 142.87423 28.46059 110 0 - 20.61436 38.68410 144.09960 28.73710 110 0 - - 20.92321 39.20730 145.32497 29.01361 110 0 - + 20.92320 39.20730 145.32497 29.01361 110 0 - 21.23302 39.73050 146.55034 29.29011 110 0 - - 18.01231 39.73050 177.36838 26.06940 110 0 - + 18.01230 39.73050 177.36838 26.06940 110 0 - 18.33094 40.22100 179.32148 26.35646 110 0 - 18.64944 40.71150 181.27459 26.64353 110 0 - 18.96749 41.20200 183.22769 26.93059 110 0 - - 19.28477 41.69250 185.18080 27.21766 110 0 - + 19.28476 41.69250 185.18080 27.21766 110 0 - 19.60094 42.18300 187.13390 27.50472 110 0 - 19.60094 42.18300 187.13390 27.50472 110 0 - 19.91576 42.67350 189.08701 27.79179 110 0 - - 20.22915 43.16400 191.04011 28.07885 110 0 - + 20.22914 43.16400 191.04011 28.07885 110 0 - 20.54104 43.65450 192.99322 28.36592 110 0 - 20.85138 44.14500 194.94632 28.65298 110 0 - 21.16011 44.63550 196.89943 28.94005 110 0 - @@ -15414,9 +15167,9 @@ Status character 21.46721 45.12600 198.85253 29.22711 110 0 - 21.77274 45.61650 200.80564 29.51418 110 0 - 22.07678 46.10700 202.75874 29.80124 110 0 - - 22.37940 46.59750 204.71185 30.08831 110 0 - - 22.68067 47.08800 206.66495 30.37537 110 0 - - 22.68067 47.08800 206.66495 30.37537 110 0 - + 22.37939 46.59750 204.71185 30.08831 110 0 - + 22.68066 47.08800 206.66495 30.37537 110 0 - + 22.68066 47.08800 206.66495 30.37537 110 0 - 22.98068 47.57850 208.61806 30.66244 110 0 - 23.27955 48.06900 210.57116 30.94950 110 0 - 23.57740 48.55950 212.52427 31.23657 110 0 - @@ -15446,7 +15199,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 42.205 'Clay, sl san, moderate' + 4.00 42.206 'Clay, sl san, moderate' -4.00 33.957 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -15524,7 +15277,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -15565,12 +15318,6 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 16.74912 0.00000 16.74912 0.00000 202 100 P 17.20863 0.19620 17.20863 0.10369 202 100 P 17.66815 0.39240 17.66815 0.20738 202 100 P @@ -15582,81 +15329,81 @@ Status character 21.49742 2.02740 21.49742 1.07147 202 100 P 22.72279 2.55060 22.72279 1.34798 202 100 P 23.94816 3.07380 23.94816 1.62449 202 100 P - 24.77163 3.59700 25.17353 1.90100 110 98 - - 24.77163 3.59700 25.17353 1.90100 110 98 - - 22.69792 4.12020 26.39889 2.17751 110 86 - - 20.83399 4.64340 27.62426 2.45402 110 75 - - 19.17400 5.16660 28.84963 2.73052 110 66 - - 17.71213 5.68980 30.07500 3.00703 110 59 - - 16.44254 6.21300 31.30037 3.28354 110 53 - - 16.44254 6.21300 31.30037 3.28354 110 53 - - 15.35757 6.73620 32.52573 3.56005 110 47 - - 14.44584 7.25940 33.75110 3.83656 110 43 - - 13.69600 7.78260 34.97647 4.11307 110 39 - - 13.09670 8.30580 36.20184 4.38958 110 36 - - 12.63660 8.82900 37.42721 4.66609 110 34 - - 12.63660 8.82900 37.42721 4.66609 110 34 - - 12.30357 9.35220 38.65258 4.94259 110 32 - - 12.08559 9.87540 39.87794 5.21910 110 30 - - 11.97143 10.39860 41.10331 5.49561 110 29 - - 11.94985 10.92180 42.32868 5.77212 110 28 - - 12.00962 11.44500 43.55405 6.04863 110 28 - - 12.00962 11.44500 43.55405 6.04863 110 28 - - 12.13978 11.96820 44.77942 6.32514 110 27 - - 12.33139 12.49140 46.00478 6.60165 110 27 - - 12.57619 13.01460 47.23015 6.87816 110 27 - - 12.86595 13.53780 48.45552 7.15466 110 27 - - 13.19242 14.06100 49.68089 7.43117 110 27 - - 13.19242 14.06100 49.68089 7.43117 110 27 - - 13.54798 14.58420 50.90626 7.70768 110 27 - - 13.92727 15.10740 52.13163 7.98419 110 27 - - 14.32538 15.63060 53.35699 8.26070 110 27 - - 14.73744 16.15380 54.58236 8.53721 110 27 - - 15.15856 16.67700 55.80773 8.81372 110 27 - - 15.15856 16.67700 55.80773 8.81372 110 27 - - 15.47777 17.06940 56.72676 9.02110 110 27 - - 15.79867 17.46180 57.64578 9.22848 110 27 - - 16.12017 17.85420 58.56481 9.43586 110 28 - - 16.44121 18.24660 59.48383 9.64324 110 28 - - 16.76073 18.63900 60.40286 9.85062 110 28 - - 16.76073 18.63900 60.40286 9.85062 110 28 - - 17.18275 19.16220 61.62823 10.12713 110 28 - - 17.59908 19.68540 62.85360 10.40364 110 28 - - 18.00878 20.20860 64.07897 10.68015 110 28 - - 18.41086 20.73180 65.30433 10.95666 110 28 - - 18.80437 21.25500 66.52970 11.23317 110 28 - - 18.80437 21.25500 66.52970 11.23317 110 28 - - 19.18863 21.77820 67.75507 11.50968 110 28 - - 19.56362 22.30140 68.98044 11.78619 110 28 - - 19.92934 22.82460 70.20581 12.06269 110 28 - - 20.28580 23.34780 71.43117 12.33920 110 28 - - 20.63302 23.87100 72.65654 12.61571 110 28 - - 20.63302 23.87100 72.65654 12.61571 110 28 - - 20.97114 24.39420 73.88191 12.89222 110 28 - - 21.30054 24.91740 75.10728 13.16873 110 28 - - 21.62161 25.44060 76.33265 13.44524 110 28 - - 21.93472 25.96380 77.55802 13.72175 110 28 - - 22.24024 26.48700 78.78338 13.99826 110 28 - - 22.24024 26.48700 78.78338 13.99826 110 28 - - 22.53859 27.01020 80.00875 14.27476 110 28 - - 22.83021 27.53340 81.23412 14.55127 110 28 - - 23.11554 28.05660 82.45949 14.82778 110 28 - - 23.39500 28.57980 83.68486 15.10429 110 28 - - 23.66902 29.10300 84.91022 15.38080 110 28 - - 23.66902 29.10300 84.91022 15.38080 110 28 - - 23.93803 29.62620 86.13559 15.65731 110 28 - + 24.77290 3.59700 25.17353 1.90100 110 98 - + 24.77290 3.59700 25.17353 1.90100 110 98 - + 22.69909 4.12020 26.39889 2.17751 110 86 - + 20.83506 4.64340 27.62426 2.45402 110 75 - + 19.17498 5.16660 28.84963 2.73052 110 66 - + 17.71301 5.68980 30.07500 3.00703 110 59 - + 16.44334 6.21300 31.30037 3.28354 110 53 - + 16.44334 6.21300 31.30037 3.28354 110 53 - + 15.35828 6.73620 32.52573 3.56005 110 47 - + 14.44646 7.25940 33.75110 3.83656 110 43 - + 13.69655 7.78260 34.97647 4.11307 110 39 - + 13.09717 8.30580 36.20184 4.38958 110 36 - + 12.63700 8.82900 37.42721 4.66609 110 34 - + 12.63700 8.82900 37.42721 4.66609 110 34 - + 12.30391 9.35220 38.65258 4.94259 110 32 - + 12.08587 9.87540 39.87794 5.21910 110 30 - + 11.97166 10.39860 41.10331 5.49561 110 29 - + 11.95003 10.92180 42.32868 5.77212 110 28 - + 12.00975 11.44500 43.55405 6.04863 110 28 - + 12.00975 11.44500 43.55405 6.04863 110 28 - + 12.13988 11.96820 44.77942 6.32514 110 27 - + 12.33146 12.49140 46.00478 6.60165 110 27 - + 12.57623 13.01460 47.23015 6.87816 110 27 - + 12.86596 13.53780 48.45552 7.15466 110 27 - + 13.19241 14.06100 49.68089 7.43117 110 27 - + 13.19241 14.06100 49.68089 7.43117 110 27 - + 13.54796 14.58420 50.90626 7.70768 110 27 - + 13.92723 15.10740 52.13163 7.98419 110 27 - + 14.32534 15.63060 53.35699 8.26070 110 27 - + 14.73739 16.15380 54.58236 8.53721 110 27 - + 15.15850 16.67700 55.80773 8.81372 110 27 - + 15.15850 16.67700 55.80773 8.81372 110 27 - + 15.47771 17.06940 56.72676 9.02110 110 27 - + 15.79860 17.46180 57.64578 9.22848 110 27 - + 16.12010 17.85420 58.56481 9.43586 110 28 - + 16.44114 18.24660 59.48383 9.64324 110 28 - + 16.76066 18.63900 60.40286 9.85062 110 28 - + 16.76066 18.63900 60.40286 9.85062 110 28 - + 17.18268 19.16220 61.62823 10.12713 110 28 - + 17.59902 19.68540 62.85360 10.40364 110 28 - + 18.00871 20.20860 64.07897 10.68015 110 28 - + 18.41080 20.73180 65.30433 10.95666 110 28 - + 18.80431 21.25500 66.52970 11.23317 110 28 - + 18.80431 21.25500 66.52970 11.23317 110 28 - + 19.18858 21.77820 67.75507 11.50968 110 28 - + 19.56357 22.30140 68.98044 11.78619 110 28 - + 19.92929 22.82460 70.20581 12.06269 110 28 - + 20.28576 23.34780 71.43117 12.33920 110 28 - + 20.63298 23.87100 72.65654 12.61571 110 28 - + 20.63298 23.87100 72.65654 12.61571 110 28 - + 20.97110 24.39420 73.88191 12.89222 110 28 - + 21.30051 24.91740 75.10728 13.16873 110 28 - + 21.62159 25.44060 76.33265 13.44524 110 28 - + 21.93470 25.96380 77.55802 13.72175 110 28 - + 22.24022 26.48700 78.78338 13.99826 110 28 - + 22.24022 26.48700 78.78338 13.99826 110 28 - + 22.53857 27.01020 80.00875 14.27476 110 28 - + 22.83020 27.53340 81.23412 14.55127 110 28 - + 23.11552 28.05660 82.45949 14.82778 110 28 - + 23.39499 28.57980 83.68486 15.10429 110 28 - + 23.66901 29.10300 84.91022 15.38080 110 28 - + 23.66901 29.10300 84.91022 15.38080 110 28 - + 23.93802 29.62620 86.13559 15.65731 110 28 - 24.20243 30.14940 87.36096 15.93382 110 28 - - 24.46265 30.67260 88.58633 16.21033 110 28 - + 24.46264 30.67260 88.58633 16.21033 110 28 - 24.71909 31.19580 89.81170 16.48683 110 28 - 24.97218 31.71900 91.03707 16.76334 110 27 - 24.97218 31.71900 91.03707 16.76334 110 27 - 25.22231 32.24220 92.26243 17.03985 110 27 - 25.46995 32.76540 93.48780 17.31636 110 27 - - 25.71560 33.28860 94.71317 17.59287 110 27 - + 25.71561 33.28860 94.71317 17.59287 110 27 - 25.95978 33.81180 95.93854 17.86938 110 27 - 26.20298 34.33500 97.16391 18.14589 110 27 - 24.20767 34.33500 109.88372 16.15058 110 22 - - 24.46316 34.82550 111.83682 16.43764 110 22 - + 24.46317 34.82550 111.83682 16.43764 110 22 - 24.71879 35.31600 113.78993 16.72471 110 22 - 24.97487 35.80650 115.74303 17.01177 110 22 - 25.23173 36.29700 117.69614 17.29884 110 21 - @@ -15665,9 +15412,9 @@ Status character 25.74900 37.27800 121.60235 17.87297 110 21 - 26.00974 37.76850 123.55545 18.16003 110 21 - 26.27198 38.25900 125.50856 18.44710 110 21 - - 26.53576 38.74950 127.46166 18.73416 110 21 - - 26.80116 39.24000 129.41477 19.02123 110 21 - - 26.80116 39.24000 129.41477 19.02123 110 21 - + 26.53577 38.74950 127.46166 18.73416 110 21 - + 26.80117 39.24000 129.41477 19.02123 110 21 - + 26.80117 39.24000 129.41477 19.02123 110 21 - 27.06820 39.73050 131.36787 19.30830 110 21 - 27.33680 40.22100 133.32098 19.59536 110 21 - 27.60689 40.71150 135.27408 19.88243 110 20 - @@ -15703,7 +15450,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 65.554 'Clay, sl san, moderate' + 4.00 65.555 'Clay, sl san, moderate' -4.00 42.291 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -15726,7 +15473,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -15750,16 +15497,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -15956,168 +15697,162 @@ Name [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00031 8.38198 -6.00000 - 0.41941 8.38198 -5.86005 - 0.83851 8.38198 -5.72088 - 1.25761 8.38198 -5.58329 - 1.67670 8.38198 -5.44806 - 2.09580 8.38198 -5.31596 - 2.09577 -1.58039 -5.31596 - 2.03255 -1.58039 -5.21300 - 1.96934 -1.58039 -5.11248 - 1.90612 -1.58039 -5.01432 - 1.84291 -1.58039 -4.91845 - 1.77969 -1.58039 -4.82479 - 1.77969 -1.58039 -4.82479 - 1.76389 -1.57990 -4.80171 - 1.74810 -1.57843 -4.77877 - 1.73232 -1.57598 -4.75595 - 1.71658 -1.57255 -4.73327 - 1.70087 -1.56813 -4.71071 - 1.70087 -1.56813 -4.71071 - 1.65405 -1.55342 -4.64380 - 1.60767 -1.53870 -4.57801 - 1.56173 -1.52399 -4.51331 - 1.51623 -1.50927 -4.44965 - 1.47117 -1.49456 -4.38703 - 1.47117 -1.49456 -4.38703 - 1.42656 -1.47984 -4.32539 - 1.38238 -1.46513 -4.26472 - 1.33865 -1.45041 -4.20498 - 1.29536 -1.43570 -4.14614 - 1.25251 -1.42098 -4.08818 - 1.25251 -1.42098 -4.08818 - 1.19606 -1.40136 -4.01221 - 1.14040 -1.38174 -3.93767 - 1.08552 -1.36212 -3.86450 - 1.03143 -1.34250 -3.79264 - 0.97812 -1.32288 -3.72201 - 0.97812 -1.32288 -3.72201 - 0.95176 -1.31307 -3.68714 - 0.92560 -1.30326 -3.65256 - 0.89963 -1.29345 -3.61825 - 0.87386 -1.28364 -3.58422 - 0.84829 -1.27383 -3.55044 - 0.84834 -1.27446 -3.55044 - 0.78107 -1.24830 -3.46160 - 0.71519 -1.22214 -3.37442 - 0.65071 -1.19598 -3.28877 - 0.58762 -1.16982 -3.20452 - 0.52593 -1.14366 -3.12151 - 0.52534 -1.16305 -3.12151 - 0.46408 -1.13274 -3.03962 - 0.40467 -1.09352 -2.95872 - 0.34761 -1.04480 -2.87869 - 0.29340 -0.98658 -2.79941 - 0.24254 -0.91887 -2.72075 - 0.24292 -0.92233 -2.72075 - 0.19575 -0.84512 -2.64260 - 0.15295 -0.75841 -2.56486 - 0.11502 -0.66221 -2.48747 - 0.08248 -0.55651 -2.41032 - 0.05583 -0.44131 -2.33336 - 0.05569 -0.43804 -2.33336 - 0.03561 -0.31335 -2.25649 - 0.02244 -0.17915 -2.17970 - 0.01667 -0.03546 -2.10297 - 0.01882 0.11772 -2.02629 - 0.02940 0.28040 -1.94965 - 0.02944 0.28361 -1.94965 - 0.04911 0.45579 -1.87305 - 0.07822 0.63747 -1.79656 - 0.11728 0.82864 -1.72025 - 0.16678 1.02931 -1.64420 - 0.22724 1.23948 -1.56852 - 0.22726 1.24086 -1.56852 - 0.29926 1.46053 -1.49329 - 0.38322 1.68969 -1.41869 - 0.47966 1.92835 -1.34494 - 0.58908 2.17651 -1.27223 - 0.71199 2.43416 -1.20078 - 0.71201 2.43444 -1.20078 - 0.81335 2.63391 -1.14816 - 0.92279 2.83872 -1.09651 - 1.04052 3.04888 -1.04597 - 1.16677 3.26438 -0.99670 - 1.30175 3.48522 -0.94882 - 1.30214 3.47918 -0.94882 - 1.47133 2.85599 -0.88748 - 1.60579 2.17693 -0.82929 - 1.70357 1.49990 -0.77446 - 1.76681 0.88096 -0.72319 - 1.79850 0.31602 -0.67569 - 1.79840 0.30499 -0.67569 - 1.80071 -0.21056 -0.63211 - 1.77678 -0.67888 -0.59237 - 1.72948 -1.08031 -0.55638 - 1.66300 -1.39974 -0.52404 - 1.58148 -1.64582 -0.49525 - 1.58134 -1.64445 -0.49525 - 1.48854 -1.82553 -0.46988 - 1.38764 -1.94950 -0.44767 - 1.28148 -2.02373 -0.42842 - 1.17253 -2.05502 -0.41189 - 1.06293 -2.04965 -0.39787 - 1.06295 -2.04738 -0.39787 - 0.95460 -2.01107 -0.38611 - 0.84889 -1.94899 -0.37639 - 0.74708 -1.86576 -0.36849 - 0.65018 -1.76549 -0.36219 - 0.55900 -1.65177 -0.35727 - 0.55902 -1.65055 -0.35727 - 0.47426 -1.52645 -0.35354 - 0.39633 -1.39459 -0.35081 - 0.32560 -1.25723 -0.34895 - 0.26229 -1.11623 -0.34779 - 0.20657 -0.97313 -0.34719 - 0.20658 -0.97267 -0.34719 - 0.15854 -0.82864 -0.34701 - 0.11819 -0.68458 -0.34717 - 0.08551 -0.54124 -0.34760 - 0.06044 -0.39915 -0.34822 - 0.04290 -0.25871 -0.34897 - 0.04291 -0.25860 -0.34897 - 0.03078 -0.22669 -0.34975 - 0.02021 -0.19659 -0.35059 - 0.01109 -0.16841 -0.35146 - 0.00333 -0.14222 -0.35236 - -0.00316 -0.11806 -0.35326 - -0.00316 -0.11807 -0.35326 - -0.00850 -0.09593 -0.35416 - -0.01279 -0.07579 -0.35504 - -0.01612 -0.05761 -0.35589 - -0.01858 -0.04132 -0.35672 - -0.02028 -0.02685 -0.35752 - -0.02028 -0.02689 -0.35752 + 0.00000 8.38171 -6.00000 + 0.41909 8.38171 -5.86006 + 0.83817 8.38171 -5.72091 + 1.25726 8.38171 -5.58333 + 1.67634 8.38171 -5.44810 + 2.09543 8.38171 -5.31602 + 2.09543 -1.58024 -5.31602 + 2.03222 -1.58024 -5.21307 + 1.96901 -1.58024 -5.11255 + 1.90580 -1.58024 -5.01440 + 1.84259 -1.58024 -4.91854 + 1.77938 -1.58024 -4.82488 + 1.77938 -1.58024 -4.82488 + 1.76358 -1.57975 -4.80181 + 1.74779 -1.57828 -4.77886 + 1.73202 -1.57582 -4.75605 + 1.71627 -1.57239 -4.73337 + 1.70057 -1.56798 -4.71081 + 1.70057 -1.56798 -4.71081 + 1.60738 -1.53855 -4.57812 + 1.51595 -1.50912 -4.44976 + 1.42628 -1.47969 -4.32550 + 1.33838 -1.45026 -4.20510 + 1.25225 -1.42083 -4.08831 + 1.25225 -1.42083 -4.08831 + 1.19581 -1.40121 -4.01234 + 1.14015 -1.38159 -3.93781 + 1.08528 -1.36197 -3.86464 + 1.03120 -1.34235 -3.79278 + 0.97790 -1.32273 -3.72215 + 0.97790 -1.32273 -3.72215 + 0.95154 -1.31292 -3.68729 + 0.92538 -1.30311 -3.65270 + 0.89942 -1.29330 -3.61840 + 0.87365 -1.28349 -3.58436 + 0.84808 -1.27368 -3.55059 + 0.84813 -1.27430 -3.55059 + 0.78086 -1.24814 -3.46174 + 0.71499 -1.22198 -3.37457 + 0.65052 -1.19582 -3.28892 + 0.58744 -1.16966 -3.20466 + 0.52576 -1.14350 -3.12166 + 0.52517 -1.16290 -3.12166 + 0.46392 -1.13258 -3.03977 + 0.40452 -1.09336 -2.95887 + 0.34746 -1.04464 -2.87883 + 0.29326 -0.98643 -2.79955 + 0.24241 -0.91872 -2.72089 + 0.24280 -0.92217 -2.72089 + 0.19563 -0.84496 -2.64273 + 0.15284 -0.75826 -2.56500 + 0.11492 -0.66205 -2.48759 + 0.08239 -0.55635 -2.41045 + 0.05574 -0.44115 -2.33348 + 0.05560 -0.43789 -2.33348 + 0.03553 -0.31319 -2.25661 + 0.02237 -0.17900 -2.17981 + 0.01661 -0.03531 -2.10308 + 0.01877 0.11787 -2.02640 + 0.02935 0.28056 -1.94975 + 0.02939 0.28377 -1.94975 + 0.04907 0.45595 -1.87315 + 0.07819 0.63762 -1.79665 + 0.11726 0.82880 -1.72033 + 0.16677 1.02947 -1.64429 + 0.22723 1.23964 -1.56860 + 0.22726 1.24102 -1.56860 + 0.29926 1.46068 -1.49336 + 0.38323 1.68984 -1.41876 + 0.47968 1.92850 -1.34500 + 0.58911 2.17666 -1.27229 + 0.71203 2.43431 -1.20084 + 0.71204 2.43459 -1.20084 + 0.81340 2.63406 -1.14821 + 0.92284 2.83888 -1.09656 + 1.04058 3.04903 -1.04602 + 1.16683 3.26453 -0.99674 + 1.30181 3.48537 -0.94886 + 1.30221 3.47934 -0.94886 + 1.47140 2.85614 -0.88752 + 1.60587 2.17709 -0.82932 + 1.70366 1.50004 -0.77448 + 1.76691 0.88106 -0.72321 + 1.79860 0.31610 -0.67571 + 1.79850 0.30506 -0.67571 + 1.80081 -0.21050 -0.63213 + 1.77688 -0.67885 -0.59239 + 1.72959 -1.08032 -0.55640 + 1.66311 -1.39978 -0.52405 + 1.58158 -1.64588 -0.49526 + 1.58145 -1.64451 -0.49526 + 1.48864 -1.82561 -0.46988 + 1.38773 -1.94960 -0.44768 + 1.28157 -2.02384 -0.42842 + 1.17262 -2.05513 -0.41189 + 1.06300 -2.04976 -0.39787 + 1.06302 -2.04749 -0.39787 + 0.95467 -2.01119 -0.38611 + 0.84896 -1.94911 -0.37639 + 0.74714 -1.86588 -0.36848 + 0.65023 -1.76560 -0.36218 + 0.55905 -1.65187 -0.35727 + 0.55906 -1.65066 -0.35727 + 0.47430 -1.52655 -0.35354 + 0.39637 -1.39469 -0.35081 + 0.32563 -1.25732 -0.34894 + 0.26232 -1.11632 -0.34779 + 0.20659 -0.97321 -0.34719 + 0.20660 -0.97274 -0.34719 + 0.15856 -0.82871 -0.34701 + 0.11821 -0.68465 -0.34717 + 0.08552 -0.54129 -0.34760 + 0.06045 -0.39920 -0.34822 + 0.04291 -0.25875 -0.34897 + 0.04291 -0.25865 -0.34897 + 0.03079 -0.22673 -0.34975 + 0.02021 -0.19662 -0.35058 + 0.01109 -0.16844 -0.35146 + 0.00333 -0.14225 -0.35236 + -0.00317 -0.11808 -0.35326 + -0.00316 -0.11809 -0.35326 + -0.00851 -0.09595 -0.35416 + -0.01279 -0.07581 -0.35504 + -0.01612 -0.05762 -0.35589 + -0.01859 -0.04133 -0.35672 + -0.02028 -0.02686 -0.35751 + -0.02028 -0.02689 -0.35751 -0.02130 -0.01416 -0.35827 - -0.02172 -0.00309 -0.35898 - -0.02163 0.00643 -0.35966 - -0.02110 0.01447 -0.36029 + -0.02173 -0.00309 -0.35898 + -0.02164 0.00643 -0.35965 + -0.02111 0.01448 -0.36029 -0.02021 0.02114 -0.36088 - -0.02021 0.02110 -0.36088 - -0.01901 0.02647 -0.36144 - -0.01758 0.03063 -0.36196 + -0.02021 0.02111 -0.36088 + -0.01902 0.02648 -0.36144 + -0.01758 0.03064 -0.36196 -0.01597 0.03366 -0.36245 - -0.01423 0.03562 -0.36290 - -0.01242 0.03659 -0.36333 - -0.01242 0.03657 -0.36333 + -0.01424 0.03563 -0.36290 + -0.01243 0.03659 -0.36333 + -0.01243 0.03657 -0.36333 -0.01059 0.03659 -0.36374 -0.00878 0.03572 -0.36413 - -0.00703 0.03399 -0.36450 - -0.00539 0.03144 -0.36486 + -0.00704 0.03400 -0.36450 + -0.00540 0.03145 -0.36486 -0.00390 0.02811 -0.36521 -0.00390 0.02810 -0.36521 -0.00260 0.02399 -0.36555 - -0.00152 0.01911 -0.36588 + -0.00152 0.01912 -0.36588 -0.00070 0.01349 -0.36621 - -0.00018 0.00712 -0.36654 + -0.00018 0.00712 -0.36655 0.00000 0.00000 -0.36688 [END OF DATA] [END OF TABLE] @@ -16180,7 +15915,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -16191,7 +15926,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 16.74912 0.00000 110 0 - + 0.00000 0.00000 16.74912 0.00000 1 0 A 0.00000 0.00000 19.27392 0.56973 1 0 A 0.00000 0.00000 21.79871 1.13946 1 0 A 0.00000 0.00000 24.32351 1.70919 1 0 A @@ -16210,16 +15945,10 @@ Status character 0.00000 0.39240 40.39132 5.33495 1 0 A 0.00000 0.49050 40.62108 5.38679 1 0 A 0.00000 0.49050 40.62108 5.38679 1 0 A - 0.00000 0.78480 41.31035 5.54233 1 0 A 0.00000 1.07910 41.99962 5.69787 1 0 A - 0.00000 1.37340 42.68888 5.85340 1 0 A 0.00000 1.66770 43.37815 6.00894 1 0 A - 0.00000 1.96200 44.06742 6.16447 1 0 A - 0.00000 1.96200 44.06742 6.16447 1 0 A 0.00000 2.25630 44.75669 6.32001 1 0 A - 0.00000 2.55060 45.44596 6.47555 1 0 A 0.00000 2.84490 46.13523 6.63108 1 0 A - 0.00000 3.13920 46.82450 6.78662 1 0 A 0.00000 3.43350 47.51377 6.94215 1 0 A 0.00000 3.43350 47.51377 6.94215 1 0 A 0.00000 3.82590 48.43280 7.14954 1 0 A @@ -16283,56 +16012,56 @@ Status character 5.98765 26.65050 101.88948 19.21223 1 0 A 5.98765 26.65050 101.88948 19.21223 1 0 A 6.16572 27.17370 103.11485 19.48874 1 0 A - 6.43683 27.69690 104.34022 19.76525 110 0 - - 7.52316 28.22010 105.56559 20.04176 110 0 - - 8.52734 28.74330 106.79096 20.31827 110 0 - - 9.45154 29.26650 108.01633 20.59477 110 0 - - 9.45154 29.26650 108.01633 20.59477 110 0 - - 10.29909 29.78970 109.24169 20.87128 110 0 - - 11.07522 30.31290 110.46706 21.14779 110 0 - - 11.78495 30.83610 111.69243 21.42430 110 0 - - 12.43332 31.35930 112.91780 21.70081 110 0 - - 13.02535 31.88250 114.14317 21.97732 110 0 - - 13.02535 31.88250 114.14317 21.97732 110 0 - - 13.56637 32.40570 115.36853 22.25383 110 0 - - 14.06161 32.92890 116.59390 22.53034 110 0 - - 14.51592 33.45210 117.81927 22.80684 110 0 - - 14.93417 33.97530 119.04464 23.08335 110 0 - - 15.32121 34.49850 120.27001 23.35986 110 0 - - 15.32121 34.49850 120.27001 23.35986 110 0 - - 15.68177 35.02170 121.49538 23.63637 110 0 - - 16.01960 35.54490 122.72074 23.91288 110 0 - - 16.33809 36.06810 123.94611 24.18939 110 0 - - 16.64062 36.59130 125.17148 24.46590 110 0 - - 16.93059 37.11450 126.39685 24.74241 110 0 - - 16.93059 37.11450 126.39685 24.74241 110 0 - - 17.21110 37.63770 127.62222 25.01891 110 0 - - 17.48402 38.16090 128.84758 25.29542 110 0 - - 17.75093 38.68410 130.07295 25.57193 110 0 - - 18.01341 39.20730 131.29832 25.84844 110 0 - - 18.27301 39.73050 132.52369 26.12495 110 0 - - 15.40033 39.73050 158.20150 23.25227 110 0 - - 15.66992 40.22100 160.15461 23.53934 110 0 - - 15.93821 40.71150 162.10771 23.82640 110 0 - - 16.20560 41.20200 164.06082 24.11347 110 0 - - 16.47246 41.69250 166.01392 24.40053 110 0 - - 16.73919 42.18300 167.96703 24.68760 110 0 - - 16.73919 42.18300 167.96703 24.68760 110 0 - - 17.00611 42.67350 169.92013 24.97466 110 0 - - 17.27339 43.16400 171.87324 25.26173 110 0 - - 17.54118 43.65450 173.82634 25.54879 110 0 - - 17.80961 44.14500 175.77945 25.83586 110 0 - - 18.07883 44.63550 177.73255 26.12292 110 0 - - 18.07883 44.63550 177.73255 26.12292 110 0 - - 18.34895 45.12600 179.68565 26.40999 110 0 - - 18.61996 45.61650 181.63876 26.69705 110 0 - - 18.89187 46.10700 183.59186 26.98412 110 0 - - 19.16467 46.59750 185.54497 27.27118 110 0 - - 19.43837 47.08800 187.49807 27.55825 110 0 - - 19.43837 47.08800 187.49807 27.55825 110 0 - - 19.71293 47.57850 189.45118 27.84531 110 0 - - 19.98830 48.06900 191.40428 28.13238 110 0 - - 20.26440 48.55950 193.35739 28.41944 110 0 - + 6.43648 27.69690 104.34022 19.76525 110 0 - + 7.52286 28.22010 105.56559 20.04176 110 0 - + 8.52710 28.74330 106.79096 20.31827 110 0 - + 9.45135 29.26650 108.01633 20.59477 110 0 - + 9.45135 29.26650 108.01633 20.59477 110 0 - + 10.29894 29.78970 109.24169 20.87128 110 0 - + 11.07510 30.31290 110.46706 21.14779 110 0 - + 11.78487 30.83610 111.69243 21.42430 110 0 - + 12.43327 31.35930 112.91780 21.70081 110 0 - + 13.02532 31.88250 114.14317 21.97732 110 0 - + 13.02532 31.88250 114.14317 21.97732 110 0 - + 13.56636 32.40570 115.36853 22.25383 110 0 - + 14.06162 32.92890 116.59390 22.53034 110 0 - + 14.51595 33.45210 117.81927 22.80684 110 0 - + 14.93421 33.97530 119.04464 23.08335 110 0 - + 15.32125 34.49850 120.27001 23.35986 110 0 - + 15.32125 34.49850 120.27001 23.35986 110 0 - + 15.68182 35.02170 121.49538 23.63637 110 0 - + 16.01966 35.54490 122.72074 23.91288 110 0 - + 16.33815 36.06810 123.94611 24.18939 110 0 - + 16.64069 36.59130 125.17148 24.46590 110 0 - + 16.93066 37.11450 126.39685 24.74241 110 0 - + 16.93066 37.11450 126.39685 24.74241 110 0 - + 17.21116 37.63770 127.62222 25.01891 110 0 - + 17.48408 38.16090 128.84758 25.29542 110 0 - + 17.75100 38.68410 130.07295 25.57193 110 0 - + 18.01347 39.20730 131.29832 25.84844 110 0 - + 18.27307 39.73050 132.52369 26.12495 110 0 - + 15.40039 39.73050 158.20150 23.25227 110 0 - + 15.66997 40.22100 160.15461 23.53934 110 0 - + 15.93826 40.71150 162.10771 23.82640 110 0 - + 16.20564 41.20200 164.06082 24.11347 110 0 - + 16.47250 41.69250 166.01392 24.40053 110 0 - + 16.73923 42.18300 167.96703 24.68760 110 0 - + 16.73923 42.18300 167.96703 24.68760 110 0 - + 17.00614 42.67350 169.92013 24.97466 110 0 - + 17.27342 43.16400 171.87324 25.26173 110 0 - + 17.54121 43.65450 173.82634 25.54879 110 0 - + 17.80964 44.14500 175.77945 25.83586 110 0 - + 18.07885 44.63550 177.73255 26.12292 110 0 - + 18.07885 44.63550 177.73255 26.12292 110 0 - + 18.34896 45.12600 179.68565 26.40999 110 0 - + 18.61997 45.61650 181.63876 26.69705 110 0 - + 18.89188 46.10700 183.59186 26.98412 110 0 - + 19.16468 46.59750 185.54497 27.27118 110 0 - + 19.43838 47.08800 187.49807 27.55825 110 0 - + 19.43838 47.08800 187.49807 27.55825 110 0 - + 19.71294 47.57850 189.45118 27.84531 110 0 - + 19.98831 48.06900 191.40428 28.13238 110 0 - + 20.26441 48.55950 193.35739 28.41944 110 0 - 20.54118 49.05000 195.31049 28.70651 110 0 - 20.81855 49.54050 197.26360 28.99357 110 0 - 20.81855 49.54050 197.26360 28.99357 110 0 - @@ -16340,13 +16069,13 @@ Status character 21.37479 50.52150 201.16981 29.56770 110 0 - 21.65351 51.01200 203.12291 29.85477 110 0 - 21.93253 51.50250 205.07602 30.14183 110 0 - - 22.21178 51.99300 207.02912 30.42890 110 0 - - 22.21178 51.99300 207.02912 30.42890 110 0 - - 22.49118 52.48350 208.98223 30.71596 110 0 - - 22.77069 52.97400 210.93533 31.00303 110 0 - - 23.05027 53.46450 212.88844 31.29009 110 0 - - 23.32990 53.95500 214.84154 31.57716 110 0 - - 23.60953 54.44550 216.79465 31.86422 110 0 - + 22.21177 51.99300 207.02912 30.42890 110 0 - + 22.21177 51.99300 207.02912 30.42890 110 0 - + 22.49117 52.48350 208.98223 30.71596 110 0 - + 22.77068 52.97400 210.93533 31.00303 110 0 - + 23.05026 53.46450 212.88844 31.29009 110 0 - + 23.32989 53.95500 214.84154 31.57716 110 0 - + 23.60952 54.44550 216.79465 31.86422 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -16437,7 +16166,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -16467,16 +16196,10 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.33540 0.00000 0.00000 -1 0 - @@ -16535,59 +16258,59 @@ Status character 16.74912 23.54400 16.74912 0.00000 202 100 P 17.97449 24.06720 17.97449 0.27651 202 100 P 19.19986 24.59040 19.19986 0.55302 202 100 P - 18.25478 25.11360 20.42522 0.82953 110 89 - - 17.37771 25.63680 21.65059 1.10604 110 80 - - 16.58564 26.16000 22.87596 1.38254 110 73 - - 16.58564 26.16000 22.87596 1.38254 110 73 - - 15.88158 26.68320 24.10133 1.65905 110 66 - - 15.26398 27.20640 25.32670 1.93556 110 60 - - 14.73067 27.72960 26.55207 2.21207 110 55 - - 14.27950 28.25280 27.77743 2.48858 110 51 - - 13.90832 28.77600 29.00280 2.76509 110 48 - - 13.90832 28.77600 29.00280 2.76509 110 48 - - 13.61379 29.29920 30.22817 3.04160 110 45 - - 13.39068 29.82240 31.45354 3.31811 110 43 - - 13.23396 30.34560 32.67891 3.59461 110 40 - - 13.13861 30.86880 33.90427 3.87112 110 39 - - 13.09960 31.39200 35.12964 4.14763 110 37 - - 13.09960 31.39200 35.12964 4.14763 110 37 - - 13.11160 31.91520 36.35501 4.42414 110 36 - - 13.16938 32.43840 37.58038 4.70065 110 35 - - 13.26808 32.96160 38.80575 4.97716 110 34 - - 13.40285 33.48480 40.03111 5.25367 110 33 - - 13.56883 34.00800 41.25648 5.53018 110 33 - - 13.56883 34.00800 41.25648 5.53018 110 33 - - 13.76129 34.53120 42.48185 5.80668 110 32 - - 13.97648 35.05440 43.70722 6.08319 110 32 - - 14.21100 35.57760 44.93259 6.35970 110 32 - - 14.46149 36.10080 46.15796 6.63621 110 31 - - 14.72453 36.62400 47.38332 6.91272 110 31 - - 14.72453 36.62400 47.38332 6.91272 110 31 - - 14.99705 37.14720 48.60869 7.18923 110 31 - - 15.27714 37.67040 49.83406 7.46574 110 31 - - 15.56324 38.19360 51.05943 7.74225 110 30 - - 15.85379 38.71680 52.28480 8.01875 110 30 - - 16.14720 39.24000 53.51016 8.29526 110 30 - - 15.23506 39.24000 50.23256 7.38312 110 30 - - 15.53960 39.73050 52.18566 7.67019 110 30 - - 15.84544 40.22100 54.13877 7.95725 110 29 - - 16.15219 40.71150 56.09187 8.24432 110 29 - - 16.45945 41.20200 58.04498 8.53138 110 28 - - 16.76686 41.69250 59.99808 8.81845 110 28 - - 16.76686 41.69250 59.99808 8.81845 110 28 - - 17.07406 42.18300 61.95119 9.10551 110 28 - - 17.38091 42.67350 63.90429 9.39258 110 27 - - 17.68725 43.16400 65.85740 9.67964 110 27 - - 17.99295 43.65450 67.81050 9.96671 110 27 - - 18.29786 44.14500 69.76361 10.25377 110 26 - - 18.29786 44.14500 69.76361 10.25377 110 26 - - 18.60188 44.63550 71.71671 10.54084 110 26 - - 18.90500 45.12600 73.66982 10.82790 110 26 - - 19.20722 45.61650 75.62292 11.11497 110 25 - - 19.50854 46.10700 77.57603 11.40203 110 25 - - 19.80898 46.59750 79.52913 11.68910 110 25 - - 19.80898 46.59750 79.52913 11.68910 110 25 - - 20.10854 47.08800 81.48223 11.97616 110 25 - + 18.25541 25.11360 20.42522 0.82953 110 89 - + 17.37827 25.63680 21.65059 1.10604 110 80 - + 16.58612 26.16000 22.87596 1.38254 110 73 - + 16.58612 26.16000 22.87596 1.38254 110 73 - + 15.88199 26.68320 24.10133 1.65905 110 66 - + 15.26433 27.20640 25.32670 1.93556 110 60 - + 14.73096 27.72960 26.55207 2.21207 110 55 - + 14.27974 28.25280 27.77743 2.48858 110 51 - + 13.90851 28.77600 29.00280 2.76509 110 48 - + 13.90851 28.77600 29.00280 2.76509 110 48 - + 13.61394 29.29920 30.22817 3.04160 110 45 - + 13.39079 29.82240 31.45354 3.31811 110 43 - + 13.23404 30.34560 32.67891 3.59461 110 40 - + 13.13867 30.86880 33.90427 3.87112 110 39 - + 13.09963 31.39200 35.12964 4.14763 110 37 - + 13.09963 31.39200 35.12964 4.14763 110 37 - + 13.11161 31.91520 36.35501 4.42414 110 36 - + 13.16937 32.43840 37.58038 4.70065 110 35 - + 13.26806 32.96160 38.80575 4.97716 110 34 - + 13.40281 33.48480 40.03111 5.25367 110 33 - + 13.56878 34.00800 41.25648 5.53018 110 33 - + 13.56878 34.00800 41.25648 5.53018 110 33 - + 13.76123 34.53120 42.48185 5.80668 110 32 - + 13.97642 35.05440 43.70722 6.08319 110 32 - + 14.21094 35.57760 44.93259 6.35970 110 32 - + 14.46142 36.10080 46.15796 6.63621 110 31 - + 14.72447 36.62400 47.38332 6.91272 110 31 - + 14.72447 36.62400 47.38332 6.91272 110 31 - + 14.99698 37.14720 48.60869 7.18923 110 31 - + 15.27708 37.67040 49.83406 7.46574 110 31 - + 15.56318 38.19360 51.05943 7.74225 110 30 - + 15.85373 38.71680 52.28480 8.01875 110 30 - + 16.14714 39.24000 53.51016 8.29526 110 30 - + 15.23500 39.24000 50.23256 7.38312 110 30 - + 15.53955 39.73050 52.18566 7.67019 110 30 - + 15.84539 40.22100 54.13877 7.95725 110 29 - + 16.15214 40.71150 56.09187 8.24432 110 29 - + 16.45941 41.20200 58.04498 8.53138 110 28 - + 16.76682 41.69250 59.99808 8.81845 110 28 - + 16.76682 41.69250 59.99808 8.81845 110 28 - + 17.07403 42.18300 61.95119 9.10551 110 28 - + 17.38088 42.67350 63.90429 9.39258 110 27 - + 17.68723 43.16400 65.85740 9.67964 110 27 - + 17.99293 43.65450 67.81050 9.96671 110 27 - + 18.29784 44.14500 69.76361 10.25377 110 26 - + 18.29784 44.14500 69.76361 10.25377 110 26 - + 18.60186 44.63550 71.71671 10.54084 110 26 - + 18.90498 45.12600 73.66982 10.82790 110 26 - + 19.20720 45.61650 75.62292 11.11497 110 25 - + 19.50853 46.10700 77.57603 11.40203 110 25 - + 19.80897 46.59750 79.52913 11.68910 110 25 - + 19.80897 46.59750 79.52913 11.68910 110 25 - + 20.10853 47.08800 81.48223 11.97616 110 25 - 20.40730 47.57850 83.43534 12.26323 110 24 - 20.70533 48.06900 85.38844 12.55029 110 24 - 21.00269 48.55950 87.34155 12.83736 110 24 - @@ -16595,15 +16318,15 @@ Status character 21.29945 49.05000 89.29465 13.12442 110 24 - 21.59568 49.54050 91.24776 13.41149 110 24 - 21.89146 50.03100 93.20086 13.69855 110 23 - - 22.18687 50.52150 95.15397 13.98562 110 23 - - 22.48198 51.01200 97.10707 14.27268 110 23 - + 22.18688 50.52150 95.15397 13.98562 110 23 - + 22.48199 51.01200 97.10707 14.27268 110 23 - 22.77687 51.50250 99.06018 14.55975 110 23 - 22.77687 51.50250 99.06018 14.55975 110 23 - 23.07160 51.99300 101.01328 14.84681 110 23 - 23.36622 52.48350 102.96639 15.13388 110 23 - - 23.66076 52.97400 104.91949 15.42094 110 23 - - 23.95527 53.46450 106.87260 15.70801 110 22 - - 24.24976 53.95500 108.82570 15.99507 110 22 - + 23.66077 52.97400 104.91949 15.42094 110 23 - + 23.95528 53.46450 106.87260 15.70801 110 22 - + 24.24978 53.95500 108.82570 15.99507 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -16639,7 +16362,7 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] @@ -16663,16 +16386,10 @@ Depth 0.01000 0.00000 0.00000 - -0.03000 -0.06000 - -0.09000 -0.12000 - -0.15000 - -0.15000 -0.18000 - -0.21000 -0.24000 - -0.27000 -0.30000 -0.30000 -0.34000 @@ -16821,7 +16538,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - 0.25000 14.61409 220000000.000 1 1 1 'Strut' + 0.25000 14.61414 220000000.000 1 1 1 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -16850,7 +16567,7 @@ Is favorable (0=false, 1=true) 38.30 : Percentage mobilized resistance left 8.51 : Percentage mobilized resistance right 67.21 : Effective left - 70.28 : Effective right + 70.29 : Effective right 148.38 : Water pressure left 151.09 : Water pressure right 175.50 : Max effective resistance left @@ -16885,167 +16602,161 @@ Is favorable (0=false, 1=true) [END OF VERTICAL BALANCE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00103 8.82391 -6.00000 - 0.44898 9.07091 -5.98363 - 0.90581 9.17886 -5.96810 - 1.36539 9.19805 -5.95428 - 1.82529 9.19805 -5.94302 - 2.28519 9.19805 -5.93518 - 2.28444 -5.37245 -5.93518 - 2.06954 -5.37245 -5.93183 - 1.85467 -5.37019 -5.93097 - 1.64003 -5.35978 -5.93233 - 1.42604 -5.33764 -5.93566 - 1.21318 -5.30375 -5.94070 - 1.21318 -5.30375 -5.94070 - 1.16019 -5.29315 -5.94220 - 1.10732 -5.28124 -5.94378 - 1.05457 -5.26802 -5.94545 - 1.00196 -5.25347 -5.94720 - 0.94951 -5.23762 -5.94902 - 0.94951 -5.23762 -5.94902 - 0.79314 -5.18658 -5.95490 - 0.63834 -5.13253 -5.96131 - 0.48521 -5.07547 -5.96815 - 0.33384 -5.01542 -5.97533 - 0.18432 -4.95235 -5.98273 - 0.18432 -4.95235 -5.98273 - 0.03673 -4.88629 -5.99025 - -0.10883 -4.81721 -5.99779 - -0.25227 -4.74514 -6.00527 - -0.39351 -4.67005 -6.01257 - -0.53244 -4.59197 -6.01961 - -0.53244 -4.59197 -6.01961 - -0.71397 -4.48318 -6.02841 - -0.89103 -4.36904 -6.03636 - -1.06342 -4.24957 -6.04325 - -1.23092 -4.12475 -6.04886 - -1.39333 -3.99459 -6.05299 - -1.39333 -3.99459 -6.05299 - -1.47255 -3.92751 -6.05444 - -1.55042 -3.85909 -6.05545 - -1.62690 -3.78934 -6.05600 - -1.70198 -3.71825 -6.05605 - -1.77563 -3.64582 -6.05560 - -1.77557 -3.64645 -6.05560 - -1.96477 -3.44679 -6.05171 - -2.14306 -3.23763 -6.04362 - -2.30995 -3.01897 -6.03099 - -2.46491 -2.79082 -6.01345 - -2.60746 -2.55317 -5.99065 - -2.60805 -2.57256 -5.99065 - -2.73870 -2.32542 -5.96225 - -2.85592 -2.06877 -5.92801 - -2.95920 -1.80263 -5.88770 - -3.04804 -1.52699 -5.84111 - -3.12191 -1.24186 -5.78801 - -3.12153 -1.24531 -5.78801 - -3.18013 -0.95068 -5.72822 - -3.22277 -0.64655 -5.66163 - -3.24893 -0.33292 -5.58820 - -3.25811 -0.00980 -5.50787 - -3.24981 0.32282 -5.42059 - -3.24995 0.32609 -5.42059 - -3.22347 0.66821 -5.32633 - -3.17850 1.01982 -5.22519 - -3.11452 1.38094 -5.11731 - -3.03103 1.75154 -5.00281 - -2.92752 2.13165 -4.88185 - -2.92748 2.13486 -4.88185 - -2.80328 2.52446 -4.75459 - -2.65804 2.92356 -4.62135 - -2.49126 3.33216 -4.48247 - -2.30244 3.75025 -4.33833 - -2.09107 4.17785 -4.18927 - -2.09104 4.17923 -4.18927 - -1.85653 4.61632 -4.03569 - -1.59846 5.06290 -3.87814 - -1.31632 5.51898 -3.71723 - -1.00960 5.98456 -3.55356 - -0.67780 6.45964 -3.38773 - -0.67779 6.45992 -3.38773 - -0.41216 6.82246 -3.26233 - -0.13192 7.19034 -3.13644 - 0.16314 7.56356 -3.01040 - 0.47324 7.94213 -2.88458 - 0.79858 8.32604 -2.75932 - 0.79898 8.32000 -2.75932 - 1.23214 7.91423 -2.59390 - 1.64217 7.45260 -2.43111 - 2.02609 6.93511 -2.27177 - 2.38092 6.36177 -2.11669 - 2.70369 5.73257 -1.96670 - 2.70358 5.72153 -1.96670 - 2.99071 5.03648 -1.82257 - 3.23981 4.29557 -1.68483 - 3.44791 3.49880 -1.55392 - 3.61203 2.64618 -1.43028 - 3.72918 1.73770 -1.31435 - 3.72935 1.72405 -1.31435 - 3.79585 0.76080 -1.20650 - 3.81104 -0.17209 -1.10675 - 3.77944 -0.99534 -1.01503 - 3.70665 -1.71858 -0.93130 - 3.59773 -2.35134 -0.85549 - 3.59808 -2.35430 -0.85549 - 3.45746 -2.90599 -0.78743 - 3.28953 -3.37749 -0.72676 - 3.09909 -3.74257 -0.67305 - 2.89247 -3.98665 -0.62593 - 2.67572 -4.12505 -0.58498 - 2.67559 -4.12164 -0.58498 - 2.45414 -4.16864 -0.54976 - 2.23232 -4.13739 -0.51978 - 2.01399 -4.03989 -0.49456 - 1.80239 -3.88705 -0.47365 - 1.60019 -3.68864 -0.45659 - 1.60022 -3.68518 -0.45659 - 1.40981 -3.44988 -0.44291 - 1.23276 -3.18537 -0.43224 - 1.07044 -2.89843 -0.42422 - 0.92388 -2.59503 -0.41853 - 0.79383 -2.28032 -0.41480 - 0.79386 -2.27869 -0.41480 - 0.68413 -2.11005 -0.41281 - 0.58291 -1.93840 -0.41211 - 0.49029 -1.76641 -0.41252 - 0.40623 -1.59638 -0.41386 - 0.33059 -1.43022 -0.41596 - 0.33060 -1.42961 -0.41596 - 0.26316 -1.26886 -0.41866 - 0.20360 -1.11473 -0.42185 - 0.15156 -0.96824 -0.42544 - 0.10664 -0.83015 -0.42932 - 0.06840 -0.70103 -0.43341 - 0.06840 -0.70089 -0.43341 - 0.03639 -0.58108 -0.43760 - 0.01014 -0.47079 -0.44187 - -0.01085 -0.37013 -0.44616 - -0.02704 -0.27912 -0.45044 - -0.03892 -0.19768 -0.45467 - -0.03892 -0.19773 -0.45467 + 0.00072 8.82367 -6.00000 + 0.44866 9.07067 -5.98364 + 0.90547 9.17861 -5.96813 + 1.36504 9.19780 -5.95432 + 1.82493 9.19780 -5.94307 + 2.28482 9.19780 -5.93524 + 2.28410 -5.37232 -5.93524 + 2.06921 -5.37232 -5.93190 + 1.85434 -5.37005 -5.93105 + 1.63971 -5.35965 -5.93242 + 1.42573 -5.33750 -5.93576 + 1.21287 -5.30362 -5.94080 + 1.21287 -5.30362 -5.94080 + 1.15988 -5.29302 -5.94230 + 1.10701 -5.28111 -5.94389 + 1.05427 -5.26788 -5.94556 + 1.00166 -5.25334 -5.94731 + 0.94920 -5.23748 -5.94913 + 0.94920 -5.23748 -5.94913 + 0.63805 -5.13239 -5.96142 + 0.33356 -5.01528 -5.97543 + 0.03645 -4.88615 -5.99035 + -0.25254 -4.74500 -6.00540 + -0.53271 -4.59183 -6.01976 + -0.53271 -4.59183 -6.01976 + -0.71422 -4.48304 -6.02857 + -0.89128 -4.36891 -6.03652 + -1.06366 -4.24943 -6.04341 + -1.23116 -4.12462 -6.04902 + -1.39356 -3.99446 -6.05316 + -1.39356 -3.99446 -6.05316 + -1.47278 -3.92738 -6.05461 + -1.55065 -3.85896 -6.05562 + -1.62713 -3.78920 -6.05617 + -1.70221 -3.71811 -6.05622 + -1.77585 -3.64569 -6.05577 + -1.77579 -3.64631 -6.05577 + -1.96498 -3.44665 -6.05188 + -2.14327 -3.23749 -6.04380 + -2.31015 -3.01884 -6.03117 + -2.46511 -2.79068 -6.01363 + -2.60765 -2.55303 -5.99083 + -2.60823 -2.57243 -5.99083 + -2.73888 -2.32528 -5.96243 + -2.85610 -2.06864 -5.92819 + -2.95937 -1.80250 -5.88788 + -3.04819 -1.52686 -5.84129 + -3.12206 -1.24172 -5.78819 + -3.12168 -1.24518 -5.78819 + -3.18028 -0.95055 -5.72839 + -3.22290 -0.64642 -5.66180 + -3.24906 -0.33279 -5.58837 + -3.25823 -0.00967 -5.50804 + -3.24992 0.32296 -5.42076 + -3.25006 0.32622 -5.42076 + -3.22358 0.66834 -5.32649 + -3.17860 1.01996 -5.22535 + -3.11462 1.38107 -5.11746 + -3.03112 1.75168 -5.00296 + -2.92760 2.13178 -4.88200 + -2.92756 2.13499 -4.88200 + -2.80335 2.52459 -4.75473 + -2.65810 2.92370 -4.62148 + -2.49132 3.33229 -4.48261 + -2.30249 3.75039 -4.33846 + -2.09111 4.17798 -4.18939 + -2.09108 4.17936 -4.18939 + -1.85657 4.61645 -4.03580 + -1.59849 5.06303 -3.87825 + -1.31635 5.51912 -3.71733 + -1.00962 5.98470 -3.55366 + -0.67781 6.45977 -3.38782 + -0.67780 6.46005 -3.38782 + -0.41216 6.82259 -3.26242 + -0.13192 7.19047 -3.13653 + 0.16315 7.56370 -3.01049 + 0.47325 7.94226 -2.88466 + 0.79860 8.32617 -2.75940 + 0.79900 8.32013 -2.75940 + 1.23217 7.91436 -2.59397 + 1.64220 7.45273 -2.43117 + 2.02613 6.93524 -2.27183 + 2.38097 6.36190 -2.11675 + 2.70374 5.73270 -1.96676 + 2.70364 5.72167 -1.96676 + 2.99077 5.03661 -1.82262 + 3.23988 4.29570 -1.68488 + 3.44799 3.49894 -1.55396 + 3.61211 2.64631 -1.43032 + 3.72927 1.73783 -1.31439 + 3.72943 1.72419 -1.31439 + 3.79594 0.76091 -1.20653 + 3.81114 -0.17201 -1.10677 + 3.77954 -0.99529 -1.01506 + 3.70675 -1.71855 -0.93132 + 3.59784 -2.35133 -0.85550 + 3.59819 -2.35430 -0.85550 + 3.45757 -2.90601 -0.78745 + 3.28964 -3.37753 -0.72677 + 3.09919 -3.74263 -0.67306 + 2.89257 -3.98673 -0.62594 + 2.67582 -4.12514 -0.58499 + 2.67568 -4.12173 -0.58499 + 2.45423 -4.16874 -0.54977 + 2.23241 -4.13750 -0.51978 + 2.01407 -4.04001 -0.49456 + 1.80246 -3.88717 -0.47365 + 1.60025 -3.68875 -0.45659 + 1.60029 -3.68530 -0.45659 + 1.40987 -3.45000 -0.44291 + 1.23281 -3.18548 -0.43224 + 1.07048 -2.89853 -0.42422 + 0.92392 -2.59514 -0.41852 + 0.79387 -2.28042 -0.41479 + 0.79390 -2.27879 -0.41479 + 0.68416 -2.11014 -0.41281 + 0.58294 -1.93848 -0.41211 + 0.49032 -1.76648 -0.41251 + 0.40626 -1.59645 -0.41385 + 0.33061 -1.43028 -0.41595 + 0.33062 -1.42968 -0.41595 + 0.26318 -1.26892 -0.41865 + 0.20362 -1.11478 -0.42185 + 0.15157 -0.96828 -0.42544 + 0.10665 -0.83019 -0.42932 + 0.06840 -0.70106 -0.43340 + 0.06841 -0.70092 -0.43340 + 0.03640 -0.58111 -0.43760 + 0.01014 -0.47082 -0.44187 + -0.01084 -0.37015 -0.44616 + -0.02704 -0.27913 -0.45044 + -0.03892 -0.19769 -0.45467 + -0.03892 -0.19775 -0.45467 -0.04696 -0.12572 -0.45882 - -0.05164 -0.06293 -0.46288 - -0.05341 -0.00917 -0.46684 + -0.05164 -0.06294 -0.46288 + -0.05341 -0.00918 -0.46684 -0.05271 0.03577 -0.47072 -0.04997 0.07211 -0.47449 - -0.04997 0.07202 -0.47449 + -0.04998 0.07203 -0.47449 -0.04564 0.09999 -0.47816 - -0.04011 0.11978 -0.48175 - -0.03379 0.13159 -0.48527 - -0.02708 0.13555 -0.48872 + -0.04011 0.11979 -0.48175 + -0.03379 0.13159 -0.48526 + -0.02708 0.13556 -0.48872 -0.02037 0.13181 -0.49212 -0.02037 0.13177 -0.49212 - -0.01403 0.12041 -0.49548 + -0.01403 0.12042 -0.49548 -0.00845 0.10152 -0.49882 - -0.00400 0.07513 -0.50214 + -0.00400 0.07514 -0.50214 -0.00106 0.04129 -0.50545 0.00000 0.00000 -0.50876 [END OF DATA] @@ -17109,7 +16820,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -17121,8 +16832,8 @@ Status character [END OF COLUMN INDICATION] [DATA] 6.33033 0.00000 44.80242 6.33033 110 0 - - 3.54976 0.00000 47.32722 6.90006 110 0 - - 0.76789 0.00000 49.85201 7.46979 110 0 - + 3.54974 0.00000 47.32722 6.90006 110 0 - + 0.76784 0.00000 49.85201 7.46979 110 0 - 0.00000 0.00000 52.37681 8.03952 1 0 A 0.00000 0.00000 54.90161 8.60925 1 0 A 0.00000 0.00000 57.42641 9.17898 1 0 A @@ -17139,16 +16850,10 @@ Status character 1.12746 0.39240 68.44462 11.66528 1 0 A 1.16085 0.49050 68.67438 11.71712 1 0 A 1.16085 0.49050 68.67438 11.71712 1 0 A - 1.26101 0.78480 69.36365 11.87266 1 0 A 1.36118 1.07910 70.05292 12.02819 1 0 A - 1.46134 1.37340 70.74219 12.18373 1 0 A 1.56151 1.66770 71.43145 12.33927 1 0 A - 1.66167 1.96200 72.12072 12.49480 1 0 A - 1.66167 1.96200 72.12072 12.49480 1 0 A 1.76183 2.25630 72.80999 12.65034 1 0 A - 1.86200 2.55060 73.49926 12.80587 1 0 A 1.96216 2.84490 74.18853 12.96141 1 0 A - 2.06233 3.13920 74.87780 13.11695 1 0 A 2.16249 3.43350 75.56707 13.27248 1 0 A 2.16249 3.43350 75.56707 13.27248 1 0 A 2.29604 3.82590 76.48610 13.47986 1 0 A @@ -17224,58 +16929,58 @@ Status character 11.84503 31.88250 142.19647 28.30765 1 0 A 11.84503 31.88250 142.19647 28.30765 1 0 A 12.02310 32.40570 143.42184 28.58416 1 0 A - 12.50867 32.92890 144.64720 28.86066 110 0 - - 13.99348 33.45210 145.87257 29.13717 110 0 - - 15.33030 33.97530 147.09794 29.41368 110 0 - - 16.52809 34.49850 148.32331 29.69019 110 0 - - 16.52809 34.49850 148.32331 29.69019 110 0 - - 17.59703 35.02170 149.54868 29.96670 110 0 - - 18.54826 35.54490 150.77404 30.24321 110 0 - - 19.39216 36.06810 151.99941 30.51972 110 0 - - 20.13913 36.59130 153.22478 30.79623 110 0 - - 20.79954 37.11450 154.45015 31.07273 110 0 - - 20.79954 37.11450 154.45015 31.07273 110 0 - - 21.38377 37.63770 155.67552 31.34924 110 0 - - 21.90040 38.16090 156.90089 31.62575 110 0 - - 22.35720 38.68410 158.12625 31.90226 110 0 - - 22.76195 39.20730 159.35162 32.17877 110 0 - - 23.12238 39.73050 160.57699 32.45528 110 0 - - 19.55363 39.73050 196.53526 28.88652 110 0 - - 19.88532 40.22100 198.48836 29.17359 110 0 - - 20.18818 40.71150 200.44147 29.46065 110 0 - - 20.46611 41.20200 202.39457 29.74772 110 0 - - 20.72304 41.69250 204.34768 30.03478 110 0 - - 20.96285 42.18300 206.30078 30.32185 110 0 - - 20.96285 42.18300 206.30078 30.32185 110 0 - - 21.18914 42.67350 208.25389 30.60891 110 0 - - 21.40434 43.16400 210.20699 30.89598 110 0 - - 21.61067 43.65450 212.16010 31.18304 110 0 - - 21.81033 44.14500 214.11320 31.47011 110 0 - - 22.00552 44.63550 216.06631 31.75717 110 0 - - 22.00552 44.63550 216.06631 31.75717 110 0 - - 22.19815 45.12600 218.01941 32.04424 110 0 - - 22.38925 45.61650 219.97252 32.33130 110 0 - - 22.57973 46.10700 221.92562 32.61837 110 0 - - 22.77047 46.59750 223.87873 32.90543 110 0 - - 22.96238 47.08800 225.83183 33.19250 110 0 - - 22.96238 47.08800 225.83183 33.19250 110 0 - - 23.15614 47.57850 227.78494 33.47956 110 0 - - 23.35188 48.06900 229.73804 33.76663 110 0 - - 23.54969 48.55950 231.69115 34.05369 110 0 - - 23.74965 49.05000 233.64425 34.34076 110 0 - - 23.95185 49.54050 235.59736 34.62782 110 0 - - 23.95185 49.54050 235.59736 34.62782 110 0 - - 24.15625 50.03100 237.55046 34.91489 110 0 - - 24.36257 50.52150 239.50357 35.20195 110 0 - - 24.57055 51.01200 241.45667 35.48902 110 0 - - 24.77994 51.50250 243.40978 35.77608 110 0 - + 12.50842 32.92890 144.64720 28.86066 110 0 - + 13.99328 33.45210 145.87257 29.13717 110 0 - + 15.33014 33.97530 147.09794 29.41368 110 0 - + 16.52796 34.49850 148.32331 29.69019 110 0 - + 16.52796 34.49850 148.32331 29.69019 110 0 - + 17.59694 35.02170 149.54868 29.96670 110 0 - + 18.54820 35.54490 150.77404 30.24321 110 0 - + 19.39213 36.06810 151.99941 30.51972 110 0 - + 20.13912 36.59130 153.22478 30.79623 110 0 - + 20.79955 37.11450 154.45015 31.07273 110 0 - + 20.79955 37.11450 154.45015 31.07273 110 0 - + 21.38379 37.63770 155.67552 31.34924 110 0 - + 21.90043 38.16090 156.90089 31.62575 110 0 - + 22.35725 38.68410 158.12625 31.90226 110 0 - + 22.76200 39.20730 159.35162 32.17877 110 0 - + 23.12244 39.73050 160.57699 32.45528 110 0 - + 19.55369 39.73050 196.53526 28.88652 110 0 - + 19.88538 40.22100 198.48836 29.17359 110 0 - + 20.18824 40.71150 200.44147 29.46065 110 0 - + 20.46618 41.20200 202.39457 29.74772 110 0 - + 20.72310 41.69250 204.34768 30.03478 110 0 - + 20.96292 42.18300 206.30078 30.32185 110 0 - + 20.96292 42.18300 206.30078 30.32185 110 0 - + 21.18920 42.67350 208.25389 30.60891 110 0 - + 21.40441 43.16400 210.20699 30.89598 110 0 - + 21.61073 43.65450 212.16010 31.18304 110 0 - + 21.81038 44.14500 214.11320 31.47011 110 0 - + 22.00557 44.63550 216.06631 31.75717 110 0 - + 22.00557 44.63550 216.06631 31.75717 110 0 - + 22.19820 45.12600 218.01941 32.04424 110 0 - + 22.38930 45.61650 219.97252 32.33130 110 0 - + 22.57977 46.10700 221.92562 32.61837 110 0 - + 22.77051 46.59750 223.87873 32.90543 110 0 - + 22.96242 47.08800 225.83183 33.19250 110 0 - + 22.96242 47.08800 225.83183 33.19250 110 0 - + 23.15617 47.57850 227.78494 33.47956 110 0 - + 23.35190 48.06900 229.73804 33.76663 110 0 - + 23.54971 48.55950 231.69115 34.05369 110 0 - + 23.74967 49.05000 233.64425 34.34076 110 0 - + 23.95187 49.54050 235.59736 34.62782 110 0 - + 23.95187 49.54050 235.59736 34.62782 110 0 - + 24.15626 50.03100 237.55046 34.91489 110 0 - + 24.36258 50.52150 239.50357 35.20195 110 0 - + 24.57056 51.01200 241.45667 35.48902 110 0 - + 24.77995 51.50250 243.40978 35.77608 110 0 - 24.99049 51.99300 245.36288 36.06315 110 0 - 24.99049 51.99300 245.36288 36.06315 110 0 - - 25.20187 52.48350 247.31599 36.35021 110 0 - - 25.41383 52.97400 249.26909 36.63728 110 0 - - 25.62620 53.46450 251.22220 36.92434 110 0 - - 25.83879 53.95500 253.17530 37.21141 110 0 - - 26.05143 54.44550 255.12841 37.49847 110 0 - + 25.20186 52.48350 247.31599 36.35021 110 0 - + 25.41382 52.97400 249.26909 36.63728 110 0 - + 25.62619 53.46450 251.22220 36.92434 110 0 - + 25.83878 53.95500 253.17530 37.21141 110 0 - + 26.05141 54.44550 255.12841 37.49847 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17366,7 +17071,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [PRESSURES] [TABLE] -DataCount=156 +DataCount=150 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -17396,16 +17101,10 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.29430 0.00000 0.00000 -1 0 - 0.00000 0.58860 0.00000 0.00000 -1 0 - - 0.00000 0.88290 0.00000 0.00000 -1 0 - 0.00000 1.17720 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - - 0.00000 1.47150 0.00000 0.00000 -1 0 - 0.00000 1.76580 0.00000 0.00000 -1 0 - - 0.00000 2.06010 0.00000 0.00000 -1 0 - 0.00000 2.35440 0.00000 0.00000 -1 0 - - 0.00000 2.64870 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 2.94300 0.00000 0.00000 -1 0 - 0.00000 3.33540 0.00000 0.00000 -1 0 - @@ -17474,65 +17173,65 @@ Status character 27.77743 28.25280 27.77743 2.48858 202 100 P 29.00280 28.77600 29.00280 2.76509 202 100 P 29.00280 28.77600 29.00280 2.76509 202 100 P - 30.18784 29.29920 30.22817 3.04160 110 99 - - 28.21989 29.82240 31.45354 3.31811 110 90 - - 26.43286 30.34560 32.67891 3.59461 110 81 - - 24.82538 30.86880 33.90427 3.87112 110 73 - - 23.39609 31.39200 35.12964 4.14763 110 67 - - 23.39609 31.39200 35.12964 4.14763 110 67 - - 22.14140 31.91520 36.35501 4.42414 110 61 - - 21.05264 32.43840 37.58038 4.70065 110 56 - - 20.12085 32.96160 38.80575 4.97716 110 52 - - 19.33705 33.48480 40.03111 5.25367 110 48 - - 18.69228 34.00800 41.25648 5.53018 110 45 - - 18.69228 34.00800 41.25648 5.53018 110 45 - - 18.17635 34.53120 42.48185 5.80668 110 43 - - 17.77814 35.05440 43.70722 6.08319 110 41 - - 17.48725 35.57760 44.93259 6.35970 110 39 - - 17.29331 36.10080 46.15796 6.63621 110 37 - - 17.18591 36.62400 47.38332 6.91272 110 36 - - 17.18591 36.62400 47.38332 6.91272 110 36 - - 17.15471 37.14720 48.60869 7.18923 110 35 - - 17.19109 37.67040 49.83406 7.46574 110 34 - - 17.28730 38.19360 51.05943 7.74225 110 34 - - 17.43558 38.71680 52.28480 8.01875 110 33 - - 17.62816 39.24000 53.51016 8.29526 110 33 - - 16.71602 39.24000 50.23256 7.38312 110 33 - - 16.95845 39.73050 52.18566 7.67019 110 32 - - 17.22973 40.22100 54.13877 7.95725 110 32 - - 17.52592 40.71150 56.09187 8.24432 110 31 - - 17.84313 41.20200 58.04498 8.53138 110 31 - - 18.17744 41.69250 59.99808 8.81845 110 30 - - 18.17744 41.69250 59.99808 8.81845 110 30 - - 18.52529 42.18300 61.95119 9.10551 110 30 - - 18.88421 42.67350 63.90429 9.39258 110 30 - - 19.25201 43.16400 65.85740 9.67964 110 29 - - 19.62649 43.65450 67.81050 9.96671 110 29 - - 20.00543 44.14500 69.76361 10.25377 110 29 - - 20.00543 44.14500 69.76361 10.25377 110 29 - - 20.38693 44.63550 71.71671 10.54084 110 28 - - 20.76995 45.12600 73.66982 10.82790 110 28 - - 21.15361 45.61650 75.62292 11.11497 110 28 - - 21.53699 46.10700 77.57603 11.40203 110 28 - - 21.91921 46.59750 79.52913 11.68910 110 28 - - 21.91921 46.59750 79.52913 11.68910 110 28 - - 22.29959 47.08800 81.48223 11.97616 110 27 - - 22.67798 47.57850 83.43534 12.26323 110 27 - - 23.05430 48.06900 85.38844 12.55029 110 27 - - 23.42847 48.55950 87.34155 12.83736 110 27 - - 23.80039 49.05000 89.29465 13.12442 110 27 - - 23.80039 49.05000 89.29465 13.12442 110 27 - - 24.17013 49.54050 91.24776 13.41149 110 26 - - 24.53794 50.03100 93.20086 13.69855 110 26 - + 30.18849 29.29920 30.22817 3.04160 110 99 - + 28.22046 29.82240 31.45354 3.31811 110 90 - + 26.43336 30.34560 32.67891 3.59461 110 81 - + 24.82581 30.86880 33.90427 3.87112 110 73 - + 23.39645 31.39200 35.12964 4.14763 110 67 - + 23.39645 31.39200 35.12964 4.14763 110 67 - + 22.14170 31.91520 36.35501 4.42414 110 61 - + 21.05289 32.43840 37.58038 4.70065 110 56 - + 20.12105 32.96160 38.80575 4.97716 110 52 - + 19.33721 33.48480 40.03111 5.25367 110 48 - + 18.69240 34.00800 41.25648 5.53018 110 45 - + 18.69240 34.00800 41.25648 5.53018 110 45 - + 18.17644 34.53120 42.48185 5.80668 110 43 - + 17.77820 35.05440 43.70722 6.08319 110 41 - + 17.48729 35.57760 44.93259 6.35970 110 39 - + 17.29332 36.10080 46.15796 6.63621 110 37 - + 17.18590 36.62400 47.38332 6.91272 110 36 - + 17.18590 36.62400 47.38332 6.91272 110 36 - + 17.15468 37.14720 48.60869 7.18923 110 35 - + 17.19105 37.67040 49.83406 7.46574 110 34 - + 17.28725 38.19360 51.05943 7.74225 110 34 - + 17.43552 38.71680 52.28480 8.01875 110 33 - + 17.62810 39.24000 53.51016 8.29526 110 33 - + 16.71596 39.24000 50.23256 7.38312 110 33 - + 16.95839 39.73050 52.18566 7.67019 110 32 - + 17.22966 40.22100 54.13877 7.95725 110 32 - + 17.52585 40.71150 56.09187 8.24432 110 31 - + 17.84306 41.20200 58.04498 8.53138 110 31 - + 18.17738 41.69250 59.99808 8.81845 110 30 - + 18.17738 41.69250 59.99808 8.81845 110 30 - + 18.52522 42.18300 61.95119 9.10551 110 30 - + 18.88415 42.67350 63.90429 9.39258 110 30 - + 19.25195 43.16400 65.85740 9.67964 110 29 - + 19.62643 43.65450 67.81050 9.96671 110 29 - + 20.00537 44.14500 69.76361 10.25377 110 29 - + 20.00537 44.14500 69.76361 10.25377 110 29 - + 20.38688 44.63550 71.71671 10.54084 110 28 - + 20.76991 45.12600 73.66982 10.82790 110 28 - + 21.15357 45.61650 75.62292 11.11497 110 28 - + 21.53696 46.10700 77.57603 11.40203 110 28 - + 21.91918 46.59750 79.52913 11.68910 110 28 - + 21.91918 46.59750 79.52913 11.68910 110 28 - + 22.29956 47.08800 81.48223 11.97616 110 27 - + 22.67795 47.57850 83.43534 12.26323 110 27 - + 23.05428 48.06900 85.38844 12.55029 110 27 - + 23.42845 48.55950 87.34155 12.83736 110 27 - + 23.80038 49.05000 89.29465 13.12442 110 27 - + 23.80038 49.05000 89.29465 13.12442 110 27 - + 24.17011 49.54050 91.24776 13.41149 110 26 - + 24.53793 50.03100 93.20086 13.69855 110 26 - 24.90408 50.52150 95.15397 13.98562 110 26 - 25.26882 51.01200 97.10707 14.27268 110 26 - 25.63241 51.50250 99.06018 14.55975 110 26 - 25.63241 51.50250 99.06018 14.55975 110 26 - 25.99516 51.99300 101.01328 14.84681 110 26 - - 26.35732 52.48350 102.96639 15.13388 110 26 - - 26.71909 52.97400 104.91949 15.42094 110 25 - - 27.08063 53.46450 106.87260 15.70801 110 25 - - 27.44212 53.95500 108.82570 15.99507 110 25 - + 26.35733 52.48350 102.96639 15.13388 110 26 - + 26.71910 52.97400 104.91949 15.42094 110 25 - + 27.08064 53.46450 106.87260 15.70801 110 25 - + 27.44214 53.95500 108.82570 15.99507 110 25 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17545,7 +17244,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 4.00 34.318 'Clay, sl san, moderate' + 4.00 34.319 'Clay, sl san, moderate' -4.00 32.890 'Sand, sl sil, moderate' [END OF DATA] [END OF TABLE] @@ -17584,24 +17283,24 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 3.23164 3.87098 -6.00000 0.00000 25.97995 1 4 1 1.000 2 0 - 4.41416 4.81744 -6.00000 0.00000 26.42510 1 5 1 1.000 2 0 + 3.23157 3.87158 -6.00000 0.00000 25.98005 1 4 1 1.000 2 0 + 4.41411 4.81805 -6.00000 0.00000 26.42522 1 5 1 1.000 2 0 3.16658 3.82954 -6.00000 0.00000 25.99544 1 0 1 1.000 2 0 4.52620 4.97439 -6.00000 0.00000 26.49180 1 1 1 1.000 2 0 - 2.84630 3.46442 -6.00000 0.00000 22.16000 1 3 1 1.000 2 0 - 3.41556 4.15731 -6.00000 0.00000 22.16000 1 14 1 1.200 2 0 - 2.04564 8.18219 -6.00000 28.45277 30.13253 2 4 1 1.000 2 0 - 2.09580 8.38198 -6.00000 28.61117 30.45348 2 5 1 1.000 2 0 - 2.13068 6.82010 -6.00000 30.23485 32.44353 2 0 1 1.000 2 0 - 2.65128 7.04641 -6.00000 30.50505 32.92384 2 1 1 1.000 2 0 - 2.17337 8.69316 -6.00000 24.27506 25.63068 2 3 1 1.000 2 0 - 2.60805 10.43179 -6.00000 24.27506 25.63068 2 14 1 1.200 2 0 - -3.68774 9.26878 -6.94365 34.64885 37.70643 3 4 1 1.000 2 0 - 3.81104 9.19805 -6.05605 35.01802 38.29517 3 5 1 1.000 2 0 - -5.37412 9.86473 -8.76797 36.63930 40.16934 3 0 1 1.000 2 0 - -4.93874 10.09396 -7.65945 37.11134 40.87048 3 1 1 1.000 2 0 - 2.61216 10.66324 -6.00000 29.29418 31.89426 3 3 1 1.000 0 0 - 3.13460 12.79589 -6.00000 29.29418 31.89426 3 14 1 1.200 0 0 + 2.84603 3.46362 -6.00000 0.00000 22.15723 1 3 1 1.000 2 0 + 3.41523 4.15634 -6.00000 0.00000 22.15723 1 14 1 1.200 2 0 + 2.04553 8.18212 -6.00000 28.45278 30.13255 2 4 1 1.000 2 0 + 2.09543 8.38171 -6.00000 28.61121 30.45355 2 5 1 1.000 2 0 + 2.13073 6.81995 -6.00000 30.23487 32.44357 2 0 1 1.000 2 0 + 2.65146 7.04593 -6.00000 30.50514 32.92399 2 1 1 1.000 2 0 + 2.17522 8.70088 -6.00000 24.27459 25.62959 2 3 1 1.000 2 0 + 2.61026 10.44105 -6.00000 24.27459 25.62959 2 14 1 1.200 2 0 + -3.68777 9.26870 -6.94370 34.64886 37.70645 3 4 1 1.000 2 0 + 3.81114 9.19780 -6.05622 35.01807 38.29526 3 5 1 1.000 2 0 + -5.37419 9.86480 -8.76808 36.63933 40.16938 3 0 1 1.000 2 0 + -4.93897 10.09418 -7.65979 37.11143 40.87062 3 1 1 1.000 2 0 + 2.61370 10.66987 -6.00000 29.29309 31.89233 3 3 1 1.000 0 0 + 3.13644 12.80385 -6.00000 29.29309 31.89233 3 14 1 1.200 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -17629,13 +17328,13 @@ AnchorName 2 3 7 1 1.000 10.00000 1 1 0 0 'Strut' 2 14 7 1 1.200 12.00000 1 1 0 0 'Strut' 2 2 5 1 1.200 12.00000 1 1 0 0 'Strut' - 3 4 7 1 1.000 14.96448 1 1 0 0 'Strut' - 3 5 7 1 1.000 14.61409 1 1 0 0 'Strut' - 3 0 7 1 1.000 15.63454 1 1 0 0 'Strut' - 3 1 7 1 1.000 15.32372 1 1 0 0 'Strut' - 3 3 7 1 1.000 15.14938 1 1 0 0 'Strut' - 3 14 7 1 1.200 18.17926 1 1 0 0 'Strut' - 3 2 5 1 1.200 18.61659 1 1 0 0 'Strut' + 3 4 7 1 1.000 14.96449 1 1 0 0 'Strut' + 3 5 7 1 1.000 14.61414 1 1 0 0 'Strut' + 3 0 7 1 1.000 15.63457 1 1 0 0 'Strut' + 3 1 7 1 1.000 15.32380 1 1 0 0 'Strut' + 3 3 7 1 1.000 15.14760 1 1 0 0 'Strut' + 3 14 7 1 1.200 18.17712 1 1 0 0 'Strut' + 3 2 5 1 1.200 18.61429 1 1 0 0 'Strut' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -17662,16 +17361,16 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Strut' 18.61659 +'Strut' 18.61429 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-5.37412 -MaximumShearForce=12.79589 +MaximumMoment=-5.37419 +MaximumShearForce=12.80385 MaximumDisplacement=-6.00000 -MaximumPercentageMobilisedMoment=37.11134 -MaximumPercentageMobilisedResistance=40.87048 +MaximumPercentageMobilisedMoment=37.11143 +MaximumPercentageMobilisedResistance=40.87062 VerticalBalanceSummary=2 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shi index f965a690..88d7d9d9 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects15.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:39 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects15.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:49 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects15.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -673,6 +673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -682,6 +683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -691,6 +693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -714,7 +717,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -725,8 +728,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.111 @@ -737,7 +742,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -756,6 +761,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -783,6 +789,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -810,6 +817,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -837,6 +845,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,6 +873,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -891,6 +901,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -918,6 +929,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -945,6 +957,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -955,7 +968,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -970,8 +1039,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -981,8 +1051,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -999,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1008,7 +1079,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1026,6 +1153,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1053,6 +1181,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1080,6 +1209,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shd index 82f58ae7..2808823b 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:01:43 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects16.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:50:34 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects16.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1279,6 +1279,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1288,6 +1289,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1297,6 +1299,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -1306,6 +1309,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1315,6 +1319,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1324,6 +1329,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1333,6 +1339,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1342,6 +1349,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -1365,7 +1373,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1376,8 +1384,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1388,7 +1398,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1407,6 +1417,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1434,6 +1445,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1461,6 +1473,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1488,6 +1501,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1515,6 +1529,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1542,6 +1557,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1569,6 +1585,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1596,6 +1613,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1606,7 +1624,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1621,8 +1695,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1632,8 +1707,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1650,6 +1725,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1659,7 +1735,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1677,6 +1809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1704,6 +1837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1731,6 +1865,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1803,6 +1938,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1821,9 +1957,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 5 11 1.400 1.200 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 - 8 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 5 11 1.400 1.200 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 + 8 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2042,7 +2178,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 98.40357 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 98.39523 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -2067,21 +2203,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.78 : Percentage mobilized resistance left - 13.35 : Percentage mobilized resistance right - 108.96 : Effective left - 204.26 : Effective right + 11.75 : Percentage mobilized resistance left + 13.33 : Percentage mobilized resistance right + 108.67 : Effective left + 203.97 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 925.02 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -11008.78 : Max moment left --16790.25 : Max moment right --1272.21 : Max mobilized moment left --1710.81 : Max mobilized moment right - 38.23 : Vertical force left - 52.94 : Vertical force right - 11.6 : Max mobilized moment percentage left +-16790.18 : Max moment right +-1269.18 : Max mobilized moment left +-1707.82 : Max mobilized moment right + 38.13 : Vertical force left + 52.91 : Vertical force right + 11.5 : Max mobilized moment percentage left 10.2 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support @@ -2089,17 +2225,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.23 : Active force -52.94 : Passive force --38.23 : Plugged active force -52.94 : Plugged passive force +-38.13 : Active force +52.91 : Passive force +-38.13 : Plugged active force +52.91 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -14.70 : Resulting Vertical Force Unplugged -14.70 : Resulting Vertical Force Plugged +14.77 : Resulting Vertical Force Unplugged +14.77 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -2112,192 +2248,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -13.90709 - 0.00000 0.00000 -13.52154 - 0.00000 0.00000 -13.13598 - 0.00000 0.00000 -12.75043 - 0.00000 0.00000 -12.36488 - 0.00000 0.00000 -11.97932 - 0.00000 0.00000 -11.97932 - 0.00000 0.00000 -11.59377 - 0.00000 0.00000 -11.20822 - 0.00000 0.00000 -10.82266 - 0.00000 0.00000 -10.43711 - 0.00000 0.00000 -10.05156 - 0.00000 0.00000 -10.05156 - -0.00283 -0.07063 -9.53749 - -0.02260 -0.28253 -9.02343 - -0.07628 -0.63569 -8.50935 - -0.18082 -1.13011 -7.99525 - -0.35316 -1.76580 -7.48112 - -0.35316 -1.76580 -7.48112 - -0.56080 -2.40345 -7.05265 - -0.83712 -3.13920 -6.62410 - -1.19191 -3.97305 -6.19544 - -1.63500 -4.90500 -5.76661 - -2.17618 -5.93505 -5.33758 - -2.17618 -5.93505 -5.33758 - -2.82528 -7.06320 -4.90830 - -3.59209 -8.28945 -4.47866 - -4.48644 -9.61380 -4.04855 - -5.51812 -11.03625 -3.61786 - -6.69696 -12.55680 -3.18648 - -6.69696 148.14320 -3.18648 - 5.98427 146.75707 -2.81506 - 18.54318 145.29838 -2.44419 - 30.97351 143.76714 -2.07504 - 43.26904 142.16334 -1.70876 - 55.42353 140.48699 -1.34652 - 55.42353 42.08342 -1.34652 - 60.08921 39.74944 -0.87422 - 64.48155 37.28797 -0.41176 - 68.58602 34.69902 0.04019 - 72.38809 31.98257 0.48095 - 75.87321 29.13863 0.90986 - 75.87447 29.12322 0.90986 - 78.12992 27.35297 1.20344 - 80.26333 26.04708 1.49071 - 82.30640 25.07682 1.77153 - 84.28276 24.37411 2.04571 - 86.21233 23.89894 2.31310 - 86.21159 23.89240 2.31310 - 86.68869 23.81958 2.37886 - 87.16447 23.76072 2.44419 - 87.63922 23.71720 2.50908 - 88.11326 23.68897 2.57353 - 88.58687 23.67455 2.63753 - 88.58670 23.67604 2.63753 - 90.84751 21.54550 2.95079 - 92.89686 19.44676 3.25261 - 94.73789 17.37876 3.54274 - 96.37336 15.33332 3.82096 - 97.80500 13.30131 4.08704 - 97.80515 13.30273 4.08704 - 99.03430 11.28226 4.34077 - 100.06199 9.27350 4.58202 - 100.88938 7.27622 4.81069 - 101.51761 5.29015 5.02667 - 101.94777 3.31480 5.22986 - 101.94777 3.31506 5.22986 - 102.18103 1.35146 5.42017 - 102.21836 -0.60320 5.59761 - 102.06070 -2.54829 5.76220 - 101.70900 -4.48430 5.91395 - 101.16412 -6.41199 6.05289 - 101.16409 -6.41150 6.05289 - 100.07839 -9.09614 6.22593 - 98.61781 -11.76703 6.37425 - 96.78422 -14.42522 6.49831 - 94.57928 -17.07223 6.59855 - 92.00442 -19.71019 6.67543 - 92.00431 -19.70856 6.67543 - 89.41890 -20.05446 6.72641 - 86.79448 -20.30055 6.75835 - 84.14604 -20.42473 6.77182 - 81.48812 -20.45494 6.76738 - 78.83105 -20.40909 6.74558 - 78.83117 -20.40922 6.74558 - 76.10181 -21.78106 6.70697 - 73.14923 -23.58819 6.65217 - 69.98319 -25.06512 6.58182 - 66.64661 -26.21185 6.49661 - 63.18241 -27.02838 6.39721 - 63.18241 -27.02840 6.39721 - 59.08567 -27.77754 6.26626 - 54.87693 -28.52668 6.11868 - 50.55619 -29.27583 5.95567 - 46.12345 -30.02497 5.77846 - 41.57872 -30.77412 5.58826 - 41.57872 -30.77412 5.58826 - 36.92199 -31.52326 5.38631 - 32.15327 -32.27241 5.17397 - 27.27254 -33.02155 4.95260 - 22.27982 -33.77070 4.72358 - 17.17510 -34.51984 4.48828 - 17.17404 -34.51483 4.48828 - 11.95808 -35.26398 4.24814 - 6.63011 -36.01312 4.00465 - 1.24622 -35.63719 3.75928 - -3.94086 -33.56465 3.51353 - -8.76014 -30.90067 3.26887 - -8.75806 -30.88389 3.26887 - -13.17603 -28.17918 3.02677 - -17.17732 -25.34784 2.78839 - -20.75740 -22.56388 2.55474 - -23.92910 -19.88382 2.32682 - -26.70820 -17.31495 2.10566 - -26.70818 -17.31517 2.10566 - -26.74278 -17.28128 2.10275 - -26.77731 -17.24740 2.09984 - -26.81177 -17.21354 2.09694 - -26.84616 -17.17970 2.09403 - -26.88049 -17.14587 2.09113 - -26.88050 -17.14561 2.09113 - -27.52142 -16.58753 2.03623 - -28.14120 -16.03300 1.98184 - -28.73996 -15.48125 1.92795 - -29.31781 -14.93221 1.87459 - -29.87485 -14.38648 1.82176 - -29.87472 -14.38641 1.82176 - -31.49774 -12.67022 1.65857 - -32.91676 -10.98351 1.50109 - -34.13458 -9.31668 1.34956 - -35.15344 -7.66683 1.20418 - -35.97545 -6.03774 1.06518 - -35.97561 -6.03613 1.06518 - -36.31329 -5.22087 0.99813 - -36.60220 -4.40963 0.93273 - -36.84248 -3.60031 0.86899 - -37.03426 -2.79253 0.80692 - -37.17764 -1.98757 0.74652 - -37.17758 -1.98878 0.74652 - -37.29760 -0.72595 0.65816 - -37.31662 0.30867 0.57368 - -37.24125 1.34902 0.49308 - -37.07087 2.39711 0.41637 - -36.80480 3.45105 0.34352 - -36.80490 3.45246 0.34352 - -36.39314 5.33000 0.27452 - -35.85893 6.41332 0.20932 - -35.22544 7.51228 0.14785 - -34.49116 8.62879 0.09005 - -33.65490 9.74862 0.03584 - -33.65490 9.74769 0.03584 - -32.61639 11.01836 -0.01966 - -31.45200 12.26579 -0.07106 - -30.16394 13.49215 -0.11850 - -28.75420 14.69948 -0.16216 - -27.22461 15.88971 -0.20220 - -27.22575 15.91218 -0.20220 - -25.05837 15.05345 -0.25253 - -23.00943 14.22375 -0.29669 - -21.07360 13.43938 -0.33513 - -19.24384 12.71003 -0.36835 - -17.51209 12.03856 -0.39682 - -17.51205 12.03335 -0.39682 - -15.86948 11.44228 -0.42099 - -14.30493 10.92150 -0.44124 - -12.80881 10.45760 -0.45795 - -11.37715 9.98622 -0.47148 - -10.01480 9.46905 -0.48220 - -10.01490 9.46553 -0.48220 - -8.72813 8.91144 -0.49047 - -7.52106 8.32822 -0.49659 - -6.39727 7.72274 -0.50083 - -5.35946 7.10093 -0.50348 - -4.40954 6.46785 -0.50480 - -4.40961 6.46622 -0.50480 - -3.56046 5.70418 -0.50506 - -2.80693 5.06017 -0.50444 - -2.14366 4.41519 -0.50311 - -1.57062 3.77147 -0.50123 - -1.08751 3.13070 -0.49896 - -1.08754 3.13024 -0.49896 - -0.69393 2.49356 -0.49646 - -0.38912 1.86174 -0.49378 - -0.17239 1.23533 -0.49099 - -0.04296 0.61471 -0.48813 - 0.00001 0.00004 -0.48527 + 0.00000 0.00000 -13.91690 + 0.00000 0.00000 -13.53104 + 0.00000 0.00000 -13.14518 + 0.00000 0.00000 -12.75933 + 0.00000 0.00000 -12.37347 + 0.00000 0.00000 -11.98761 + 0.00000 0.00000 -11.98761 + 0.00000 0.00000 -11.60175 + 0.00000 0.00000 -11.21589 + 0.00000 0.00000 -10.83004 + 0.00000 0.00000 -10.44418 + 0.00000 0.00000 -10.05832 + 0.00000 0.00000 -10.05832 + -0.00283 -0.07063 -9.54385 + -0.02260 -0.28253 -9.02938 + -0.07628 -0.63569 -8.51489 + -0.18082 -1.13011 -8.00039 + -0.35316 -1.76580 -7.48585 + -0.35316 -1.76580 -7.48585 + -0.56080 -2.40345 -7.05704 + -0.83712 -3.13920 -6.62815 + -1.19191 -3.97305 -6.19915 + -1.63500 -4.90500 -5.76999 + -2.17618 -5.93505 -5.34062 + -2.17618 -5.93505 -5.34062 + -2.82528 -7.06320 -4.91100 + -3.59209 -8.28945 -4.48102 + -4.48644 -9.61380 -4.05057 + -5.51812 -11.03625 -3.61955 + -6.69696 -12.55680 -3.18783 + -6.69696 148.14320 -3.18783 + 5.98427 146.75707 -2.81611 + 18.54318 145.29838 -2.44495 + 30.97351 143.76714 -2.07551 + 43.26904 142.16334 -1.70894 + 55.42353 140.48699 -1.34640 + 55.42353 42.09175 -1.34640 + 60.09016 39.75778 -0.87372 + 64.48346 37.29631 -0.41087 + 68.58888 34.70735 0.04146 + 72.39189 31.99091 0.48261 + 75.87796 29.14697 0.91190 + 75.87922 29.13154 0.91190 + 78.13533 27.36120 1.20575 + 80.26941 26.05563 1.49329 + 82.31320 25.08647 1.77438 + 84.29039 24.38519 2.04883 + 86.22091 23.91158 2.31648 + 86.22017 23.90503 2.31648 + 86.69753 23.83262 2.38231 + 87.17357 23.77418 2.44771 + 87.64860 23.73109 2.51267 + 88.12291 23.70329 2.57718 + 88.59682 23.68931 2.64125 + 88.59665 23.69081 2.64125 + 90.85895 21.56065 2.95484 + 92.90984 19.46233 3.25699 + 94.75244 17.39478 3.54745 + 96.38954 15.34969 3.82600 + 97.82283 13.31795 4.09240 + 97.82298 13.31937 4.09240 + 99.05381 11.29917 4.34645 + 100.08320 9.29071 4.58802 + 100.91233 7.29374 4.81701 + 101.54232 5.30800 5.03330 + 101.97429 3.33299 5.23680 + 101.97429 3.33325 5.23680 + 102.20932 1.36906 5.42743 + 102.24843 -0.58523 5.60517 + 102.09259 -2.52993 5.77006 + 101.74275 -4.46553 5.92211 + 101.19976 -6.39281 6.06134 + 101.19973 -6.39232 6.06134 + 100.11676 -9.07634 6.23478 + 98.65900 -11.74659 6.38349 + 96.82831 -14.40410 6.50793 + 94.62638 -17.05041 6.60855 + 92.05462 -19.68765 6.68579 + 92.05451 -19.68602 6.68579 + 89.46757 -20.08274 6.73709 + 86.83965 -20.32601 6.76934 + 84.18809 -20.44730 6.78312 + 81.52740 -20.47529 6.77897 + 78.86778 -20.42791 6.75746 + 78.86790 -20.42804 6.75746 + 76.13608 -21.80003 6.71913 + 73.18104 -23.60716 6.66459 + 70.01253 -25.08409 6.59451 + 66.67348 -26.23082 6.50956 + 63.20682 -27.04735 6.41041 + 63.20682 -27.04736 6.41041 + 59.10724 -27.79651 6.27975 + 54.89567 -28.54565 6.13244 + 50.57209 -29.29480 5.96971 + 46.13652 -30.04394 5.79276 + 41.58895 -30.79309 5.60282 + 41.58895 -30.79309 5.60282 + 36.92939 -31.54223 5.40114 + 32.15783 -32.29138 5.18905 + 27.27427 -33.04052 4.96794 + 22.27871 -33.78966 4.73918 + 17.17116 -34.53881 4.50414 + 17.17010 -34.53381 4.50414 + 11.95129 -35.28296 4.26425 + 6.62049 -36.03210 4.02102 + 1.23376 -35.65630 3.77592 + -3.95598 -33.57966 3.53044 + -8.77687 -30.90712 3.28605 + -8.77479 -30.89036 3.28605 + -13.18285 -28.07434 3.04422 + -17.16763 -25.23062 2.80612 + -20.72899 -22.43063 2.57274 + -23.87956 -19.73431 2.34509 + -26.63508 -17.14894 2.12418 + -26.63506 -17.14917 2.12418 + -26.66933 -17.11505 2.12128 + -26.70352 -17.08095 2.11837 + -26.73765 -17.04687 2.11547 + -26.77171 -17.01280 2.11257 + -26.80570 -16.97875 2.10967 + -26.80572 -16.97849 2.10967 + -27.44023 -16.41759 2.05483 + -28.05350 -15.86022 2.00049 + -28.64564 -15.30564 1.94667 + -29.21676 -14.75375 1.89336 + -29.76697 -14.20516 1.84059 + -29.76684 -14.20508 1.84059 + -31.36756 -12.47982 1.67755 + -32.76317 -10.78396 1.52021 + -33.95650 -9.10793 1.36878 + -34.94975 -7.44884 1.22347 + -35.74505 -5.81048 1.08451 + -35.74514 -5.81158 1.08451 + -36.06921 -4.99168 1.01747 + -36.34423 -4.17580 0.95206 + -36.57035 -3.36185 0.88830 + -36.74768 -2.54944 0.82619 + -36.87634 -1.73986 0.76575 + -36.87628 -1.74116 0.76575 + -36.96773 -0.37662 0.67729 + -36.95456 0.66696 0.59268 + -36.84617 1.71634 0.51192 + -36.64195 2.77351 0.43500 + -36.34121 3.83657 0.36190 + -36.34121 3.83541 0.36190 + -35.94297 4.91803 0.29260 + -35.44583 6.01047 0.22705 + -34.84859 7.11855 0.16519 + -34.14973 8.24413 0.10695 + -33.34801 9.37446 0.05228 + -33.34802 9.37347 0.05228 + -32.34658 10.65122 -0.00377 + -31.21856 11.90542 -0.05575 + -29.96621 13.13824 -0.10380 + -28.59156 14.35169 -0.14810 + -27.09645 15.54772 -0.18879 + -27.09762 15.57057 -0.18879 + -24.97534 14.75058 -0.24008 + -22.96614 13.95881 -0.28519 + -21.06479 13.21151 -0.32462 + -19.26439 12.51830 -0.35882 + -17.55701 11.88201 -0.38826 + -17.55696 11.87680 -0.38826 + -15.93391 11.31988 -0.41340 + -14.38416 10.83219 -0.43460 + -12.89857 10.39436 -0.45223 + -11.47447 9.94105 -0.46667 + -10.11736 9.43891 -0.47828 + -10.11746 9.43536 -0.47828 + -8.83403 8.89333 -0.48740 + -7.62882 8.31928 -0.49436 + -6.50580 7.72015 -0.49940 + -5.46807 7.10197 -0.50283 + -4.51790 6.46984 -0.50490 + -4.51798 6.46818 -0.50490 + -3.65727 5.82632 -0.50588 + -2.88690 5.17819 -0.50597 + -2.20754 4.52665 -0.50532 + -1.61949 3.87398 -0.50410 + -1.12279 3.22192 -0.50249 + -1.12283 3.22144 -0.50249 + -0.71738 2.57114 -0.50063 + -0.40279 1.92339 -0.49859 + -0.17868 1.27874 -0.49643 + -0.04458 0.63757 -0.49421 + 0.00001 0.00004 -0.49198 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2647,7 +2783,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -2659,7 +2795,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -2670,17 +2806,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -2689,7 +2825,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -2719,13 +2855,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -2826,48 +2962,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 7.54074 0.00000 7.80254 0.68000 440 97 4 - 13.17839 0.00000 15.60507 1.36000 330 84 3 - 17.50107 0.00000 23.40761 2.04000 220 75 2 - 21.43680 0.00000 31.21015 2.72000 220 69 2 - 24.75910 0.00000 37.06205 3.23000 220 67 2 - 25.47492 0.00000 39.50034 3.44250 220 64 2 - 26.29901 0.00000 40.96332 3.57000 220 64 2 - 27.26364 0.00000 42.91395 3.74000 220 64 2 - 28.22564 0.00000 44.86459 3.91000 220 63 2 - 29.18498 0.00000 46.81522 4.08000 220 62 2 - 29.99850 0.00000 48.27820 4.20750 220 62 2 - 8.94480 0.00000 20.56677 6.30726 110 43 1 - 9.26632 0.98100 20.32861 6.32894 110 46 1 - 9.58089 1.96200 20.08785 6.35785 110 48 1 - 9.88119 2.94300 19.91182 6.38676 110 50 1 - 10.03190 3.92400 19.78100 6.41566 220 51 2 - 10.14989 4.90500 19.70421 6.43734 220 52 2 - 10.14709 4.90500 19.66214 6.45179 220 52 2 - 10.26548 5.88600 19.61027 6.47347 220 52 2 - 10.38136 6.86700 19.55671 6.50238 220 53 2 - 10.49502 7.84800 19.51850 6.53129 220 54 2 - 10.60563 8.82900 19.49272 6.56019 220 54 2 - 10.70939 9.81000 19.47992 6.58187 220 55 2 - 10.73474 9.81000 19.47440 6.63230 220 55 2 - 10.81528 10.79100 19.47010 6.61800 220 56 2 - 10.91345 11.77200 19.47023 6.64691 220 56 2 - 11.00678 12.75300 19.47646 6.67582 220 57 2 - 11.09503 13.73400 19.48795 6.70472 220 57 2 - 11.17305 14.71500 19.49947 6.72640 220 57 2 - 11.18500 14.71500 19.51051 6.74375 220 57 2 - 11.28509 16.08840 19.53319 6.77410 220 58 2 - 11.38131 17.46180 19.56875 6.81457 220 58 2 - 11.46661 18.83520 19.60984 6.85503 220 58 2 - 11.54096 20.20860 19.65566 6.89550 220 59 2 - 11.59585 21.58200 19.69261 6.92585 220 59 2 - 27.46026 21.58200 40.65119 7.89320 220 68 2 - 25.50028 25.39730 37.49247 5.34869 220 68 2 - 23.91567 29.21260 33.28909 4.15339 220 72 2 - 22.29587 33.02790 29.09277 2.95808 220 77 2 - 20.28128 36.84320 24.90135 1.76278 330 81 3 - 18.38616 40.65850 21.76001 0.86630 330 84 3 - 11.77687 40.65850 12.41397 0.26865 440 95 4 + 7.53843 0.00000 7.80254 0.68000 440 97 4 + 13.18871 0.00000 15.60507 1.36000 330 85 3 + 17.51816 0.00000 23.40761 2.04000 220 75 2 + 21.45550 0.00000 31.21015 2.72000 220 69 2 + 24.77940 0.00000 37.06205 3.23000 220 67 2 + 25.49522 0.00000 39.50034 3.44250 220 65 2 + 26.31971 0.00000 40.96332 3.57000 220 64 2 + 27.28474 0.00000 42.91395 3.74000 220 64 2 + 28.24714 0.00000 44.86459 3.91000 220 63 2 + 29.20688 0.00000 46.81522 4.08000 220 62 2 + 30.02080 0.00000 48.27820 4.20750 220 62 2 + 8.94851 0.00000 20.56677 6.30726 110 44 1 + 9.27035 0.98100 20.32861 6.32894 110 46 1 + 9.58523 1.96200 20.08785 6.35785 110 48 1 + 9.88583 2.94300 19.91182 6.38676 110 50 1 + 10.03443 3.92400 19.78100 6.41566 220 51 2 + 10.15258 4.90500 19.70421 6.43734 220 52 2 + 10.14978 4.90500 19.66214 6.45179 220 52 2 + 10.26834 5.88600 19.61027 6.47347 220 52 2 + 10.38438 6.86700 19.55671 6.50238 220 53 2 + 10.49820 7.84800 19.51850 6.53129 220 54 2 + 10.60898 8.82900 19.49272 6.56019 220 54 2 + 10.71289 9.81000 19.47992 6.58187 220 55 2 + 10.71923 9.81000 19.47440 6.59633 220 55 2 + 10.81895 10.79100 19.47010 6.61800 220 56 2 + 10.91727 11.77200 19.47023 6.64691 220 56 2 + 11.01075 12.75300 19.47646 6.67582 220 57 2 + 11.09916 13.73400 19.48795 6.70472 220 57 2 + 11.17733 14.71500 19.49947 6.72640 220 57 2 + 11.18928 14.71500 19.51051 6.74375 220 57 2 + 11.28958 16.08840 19.53319 6.77410 220 58 2 + 11.38600 17.46180 19.56875 6.81457 220 58 2 + 11.47150 18.83520 19.60984 6.85503 220 58 2 + 11.54606 20.20860 19.65566 6.89550 220 59 2 + 11.60113 21.58200 19.69261 6.92585 220 59 2 + 26.65696 21.58200 40.65119 6.24517 220 66 2 + 25.52164 25.39730 37.49247 5.34869 220 68 2 + 23.93766 29.21260 33.28909 4.15339 220 72 2 + 22.31847 33.02790 29.09277 2.95808 220 77 2 + 20.29287 36.84320 24.90135 1.76278 330 81 3 + 18.39804 40.65850 21.76001 0.86630 330 85 3 + 11.77452 40.65850 12.41397 0.26865 440 95 4 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -2881,94 +3017,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 15.05115 78.80074 17.96911 4.49986 330 84 3 - 22.69715 80.26733 36.36631 5.18955 220 62 2 - 22.96339 81.73392 39.87198 5.70681 220 58 2 - 22.29495 81.73392 42.19987 3.61198 220 53 2 - 23.91046 83.20052 45.68064 6.56892 220 52 2 - 23.98894 84.66711 50.30746 7.25860 110 48 1 - 23.27672 86.13371 54.92251 7.94829 110 42 1 - 22.59892 87.60031 59.53073 8.63797 110 38 1 - 21.78920 89.06690 62.98476 9.15524 110 35 1 - 21.96393 89.06690 64.15130 9.32997 110 34 1 - 21.95340 89.08652 64.19752 9.33689 110 34 1 - 21.94518 89.10614 64.25913 9.34611 110 34 1 - 21.93697 89.12576 64.32073 9.35534 110 34 1 - 21.92878 89.14538 64.38231 9.36457 110 34 1 - 21.91828 89.16500 64.42851 9.37149 110 34 1 - 19.75338 89.16500 58.82727 11.38885 110 34 1 - 19.64121 89.53778 59.19268 11.49627 110 33 1 - 19.56685 89.91056 59.68017 11.63950 110 33 1 - 19.49454 90.28334 60.16799 11.78273 110 32 1 - 19.42432 90.65612 60.65612 11.92596 110 32 1 - 19.32042 91.02890 61.02242 12.03338 110 32 1 - 19.46930 91.02890 61.53041 12.18226 110 32 1 - 19.15577 92.20610 62.68904 12.52149 110 31 1 - 18.97817 93.38330 64.23606 12.97380 110 30 1 - 18.82432 94.56050 65.78549 13.42610 110 29 1 - 18.69512 95.73770 67.33709 13.87840 110 28 1 - 18.47835 96.91490 68.50203 14.21763 110 27 1 - 18.64797 96.91490 69.08491 14.38724 110 27 1 - 18.54939 97.50350 69.66807 14.55686 110 27 1 - 18.51394 98.09210 70.44596 14.78301 110 26 1 - 18.48513 98.68070 71.22427 15.00916 110 26 1 - 18.46299 99.26930 72.00296 15.23531 110 26 1 - 18.39103 99.85790 72.58721 15.40493 110 25 1 - 16.47306 99.85790 73.07750 13.48696 110 23 1 - 18.43708 100.75061 73.96428 15.80446 110 25 1 - 18.44217 101.64332 75.14728 16.14746 110 25 1 - 18.46279 102.53603 76.33100 16.49046 110 24 1 - 18.49892 103.42874 77.51539 16.83345 110 24 1 - 18.46477 104.32145 78.40407 17.09070 110 24 1 - 36.30761 104.32145 78.99672 34.93354 110 46 1 - 18.61753 105.21416 79.88599 17.51945 110 23 1 - 18.69972 106.10687 81.07214 17.86244 110 23 1 - 18.79684 106.99958 82.25880 18.20544 110 23 1 - 18.90862 107.89229 83.44594 18.54844 110 23 1 - 18.94905 108.78500 84.33659 18.80568 110 22 1 - 20.69276 108.78500 56.86688 20.61391 110 36 1 - 22.34377 106.76600 61.08371 22.38663 110 0 1 - 24.59677 104.74700 66.69564 24.75026 110 0 1 - 26.86029 102.72800 72.29483 27.11388 110 0 1 - 29.13373 100.70900 77.88124 29.47751 110 0 1 - 30.82561 98.69000 82.06310 31.25023 110 0 1 - 17.93595 98.69000 272.58042 20.36232 110 0 1 - 17.82701 100.06340 271.86044 20.86529 110 0 1 - 17.95721 101.43680 274.54312 21.53590 110 0 1 - 18.15367 102.81020 279.33150 22.20652 110 0 1 - 18.41112 104.18360 285.19980 22.87714 110 0 1 - 18.55657 105.55700 290.01763 23.38010 110 0 1 - 18.89188 105.55700 293.38484 23.71541 110 0 1 - 19.08793 106.93040 298.60646 24.21837 110 0 1 - 19.49798 108.30380 305.78478 24.88899 110 0 1 - 19.95023 109.67720 313.15603 25.55961 110 0 1 - 20.44047 111.05060 320.66827 26.23022 110 0 1 - 20.79677 112.42400 326.37074 26.73319 110 0 1 - 21.13208 112.42400 330.20204 27.06849 110 0 1 - 21.51795 113.79740 335.98580 27.57146 110 0 1 - 22.09760 115.17080 343.74884 28.24207 110 0 1 - 22.70014 116.54420 351.56245 28.91269 110 0 1 - 23.32230 117.91760 359.41683 29.58331 110 0 1 - 23.79312 119.29100 365.32890 30.08627 110 0 1 - 24.12843 119.29100 369.28008 30.42158 110 0 1 - 24.61243 120.66440 375.21958 30.92454 110 0 1 - 25.27507 122.03780 383.15752 31.59516 110 0 1 - 25.94671 123.41120 391.11465 32.26578 110 0 1 - 26.62536 124.78460 399.08801 32.93639 110 0 1 - 27.14134 126.15800 405.07683 33.43936 110 0 1 - 27.47664 126.15800 409.07356 33.77467 110 0 1 - 27.99581 127.53140 415.07425 34.27763 110 0 1 - 28.68494 128.90480 423.08354 34.94825 110 0 1 - 29.37572 130.27820 431.10170 35.61886 110 0 1 - 30.06746 131.65160 439.12760 36.28948 110 0 1 - 30.59183 133.02500 445.15132 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 15.04939 78.80074 17.96911 4.49986 330 84 3 + 22.75376 80.26733 36.36631 5.18955 220 63 2 + 23.02134 81.73392 39.87198 5.70681 220 58 2 + 23.72471 81.73392 42.19987 6.05165 220 56 2 + 23.96977 83.20052 45.68064 6.56892 220 52 2 + 24.09532 84.66711 50.30746 7.25860 110 48 1 + 23.38474 86.13371 54.92251 7.94829 110 43 1 + 22.70854 87.60031 59.53073 8.63797 110 38 1 + 21.90033 89.06690 62.98476 9.15524 110 35 1 + 22.07506 89.06690 64.15130 9.32997 110 34 1 + 22.06454 89.08652 64.19752 9.33689 110 34 1 + 22.05635 89.10614 64.25913 9.34611 110 34 1 + 22.04816 89.12576 64.32073 9.35534 110 34 1 + 22.03998 89.14538 64.38231 9.36457 110 34 1 + 22.02950 89.16500 64.42851 9.37149 110 34 1 + 19.82753 89.16500 58.82727 11.38885 110 34 1 + 19.71560 89.53778 59.19268 11.49627 110 33 1 + 19.64148 89.91056 59.68017 11.63950 110 33 1 + 19.56940 90.28334 60.16799 11.78273 110 33 1 + 19.49940 90.65612 60.65612 11.92596 110 32 1 + 19.39572 91.02890 61.02242 12.03338 110 32 1 + 19.54460 91.02890 61.53041 12.18226 110 32 1 + 19.23170 92.20610 62.68904 12.52149 110 31 1 + 19.05464 93.38330 64.23606 12.97380 110 30 1 + 18.90121 94.56050 65.78549 13.42610 110 29 1 + 18.77230 95.73770 67.33709 13.87840 110 28 1 + 18.55568 96.91490 68.50203 14.21763 110 27 1 + 18.72530 96.91490 69.08491 14.38724 110 27 1 + 18.62673 97.50350 69.66807 14.55686 110 27 1 + 18.59125 98.09210 70.44596 14.78301 110 26 1 + 18.56236 98.68070 71.22427 15.00916 110 26 1 + 18.54009 99.26930 72.00296 15.23531 110 26 1 + 18.46795 99.85790 72.58721 15.40493 110 25 1 + 18.61023 99.85790 73.07750 15.54721 110 25 1 + 18.51363 100.75061 73.96428 15.80446 110 25 1 + 18.51820 101.64332 75.14728 16.14746 110 25 1 + 18.53815 102.53603 76.33100 16.49046 110 24 1 + 18.57344 103.42874 77.51539 16.83345 110 24 1 + 18.53828 104.32145 78.40407 17.09070 110 24 1 + 18.70978 104.32145 78.99672 17.26220 110 24 1 + 18.68983 105.21416 79.88599 17.51945 110 23 1 + 18.77064 106.10687 81.07214 17.86244 110 23 1 + 18.86619 106.99958 82.25880 18.20544 110 23 1 + 18.97625 107.89229 83.44594 18.54844 110 23 1 + 19.01482 108.78500 84.33659 18.80568 110 23 1 + 20.72893 108.78500 56.86688 20.61391 110 36 1 + 22.37841 106.76600 61.08371 22.38663 110 0 1 + 24.62985 104.74700 66.69564 24.75026 110 0 1 + 26.89174 102.72800 72.29483 27.11388 110 0 1 + 29.16354 100.70900 77.88124 29.47751 110 0 1 + 30.85376 98.69000 82.06310 31.25023 110 0 1 + 18.09680 98.69000 272.58042 20.36232 110 0 1 + 17.97690 100.06340 271.86044 20.86529 110 0 1 + 18.09583 101.43680 274.54312 21.53590 110 0 1 + 18.28082 102.81020 279.33150 22.20652 110 0 1 + 18.52670 104.18360 285.19980 22.87714 110 0 1 + 18.66058 105.55700 290.01763 23.38010 110 0 1 + 18.99589 105.55700 293.38484 23.71541 110 0 1 + 19.18045 106.93040 298.60646 24.21837 110 0 1 + 19.57917 108.30380 305.78478 24.88899 110 0 1 + 20.02024 109.67720 313.15603 25.55961 110 0 1 + 20.49951 111.05060 320.66827 26.23022 110 0 1 + 20.84508 112.42400 326.37074 26.73319 110 0 1 + 21.18039 112.42400 330.20204 27.06849 110 0 1 + 21.55580 113.79740 335.98580 27.57146 110 0 1 + 22.12525 115.17080 343.74884 28.24207 110 0 1 + 22.71788 116.54420 351.56245 28.91269 110 0 1 + 23.33040 117.91760 359.41683 29.58331 110 0 1 + 23.79187 119.29100 365.32890 30.08627 110 0 1 + 24.12718 119.29100 369.28008 30.42158 110 0 1 + 24.60212 120.66440 375.21958 30.92454 110 0 1 + 25.25595 122.03780 383.15752 31.59516 110 0 1 + 25.91898 123.41120 391.11465 32.26578 110 0 1 + 26.58918 124.78460 399.08801 32.93639 110 0 1 + 27.09682 126.15800 405.07683 33.43936 110 0 1 + 27.43213 126.15800 409.07356 33.77467 110 0 1 + 27.94302 127.53140 415.07425 34.27763 110 0 1 + 28.62391 128.90480 423.08354 34.94825 110 0 1 + 29.30645 130.27820 431.10170 35.61886 110 0 1 + 29.98995 131.65160 439.12760 36.28948 110 0 1 + 30.50605 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2983,13 +3119,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 8.537 'Ophooglaag zand' - -3.50 23.516 'Hollandveen' - -5.70 15.705 'Oude Zeeklei' - -7.00 24.894 'Wadzand' - -10.00 38.269 'Hydrobiaklei' - -12.00 12.869 'Basisveen' - -12.50 80.468 'Eerste zandlaag' + -3.00 8.544 'Ophooglaag zand' + -3.50 23.524 'Hollandveen' + -5.70 15.663 'Oude Zeeklei' + -7.00 25.080 'Wadzand' + -10.00 37.708 'Hydrobiaklei' + -12.00 12.885 'Basisveen' + -12.50 80.568 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -3008,11 +3144,11 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 3.11 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.34 'Oude Zeeklei' - -7.00 7.47 'Wadzand' - -10.00 8.13 'Hydrobiaklei' + -5.70 3.33 'Oude Zeeklei' + -7.00 7.52 'Wadzand' + -10.00 8.02 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.89 'Eerste zandlaag' + -12.50 30.93 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3261,7 +3397,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -3273,7 +3409,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -3440,53 +3576,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 502 100 P - 7.08254 100.76161 31.86408 3.83947 110 22 1 - 7.03580 101.65432 33.06586 4.18246 110 21 1 - 6.98239 102.54703 34.26739 4.52546 110 20 1 - 6.92237 103.43974 35.46867 4.86846 110 20 1 - 6.85579 104.33245 36.36949 5.12571 110 19 1 - 6.85579 104.33245 36.96996 5.29720 110 19 1 - 6.78274 105.22516 37.87056 5.55445 110 18 1 - 6.70340 106.11787 39.07118 5.89745 110 17 1 - 6.61801 107.01058 40.27161 6.24045 110 16 1 - 6.52680 107.90329 41.47185 6.58344 110 0 1 - 6.69733 108.79600 42.37192 6.84069 110 0 1 - 7.85338 108.79600 25.59840 7.93223 110 0 1 - 9.74781 106.77700 29.70475 9.70495 110 33 1 - 12.22206 104.75800 35.16081 12.06858 110 35 1 - 14.68580 102.73900 40.59674 14.43220 110 36 1 - 17.13961 100.72000 46.01595 16.79583 110 37 1 - 18.99316 98.70100 50.07174 18.56855 110 38 1 - 24.12278 98.70100 177.20934 12.31919 110 14 1 - 23.88572 100.07440 165.98087 12.82216 110 14 1 - 23.72941 101.44780 168.35015 13.49277 110 14 1 - 23.56471 102.82120 174.33058 14.16339 110 14 1 - 23.39743 104.19460 181.36358 14.83401 110 13 1 - 23.14061 105.56800 186.93725 15.33697 110 12 1 - 23.32567 105.56800 190.74477 15.70861 110 12 1 - 23.07609 106.94140 196.54307 16.17524 110 12 1 - 22.92751 108.31480 204.37210 16.84586 110 11 1 - 23.12585 109.68820 212.27871 17.51648 110 11 1 - 23.97685 111.06160 220.23553 18.18709 110 11 1 - 24.62647 112.43500 226.22528 18.69006 110 11 1 - 24.96178 112.43500 230.22741 19.02537 110 11 1 - 25.58184 113.80840 236.24102 19.52833 110 11 1 - 26.34342 115.18180 244.27295 20.19895 110 11 1 - 27.08212 116.55520 252.31767 20.86956 110 11 1 - 27.80119 117.92860 260.37206 21.54018 110 11 1 - 28.33630 119.30200 266.41766 22.04314 110 11 1 - 30.41153 119.30200 270.45017 24.11838 110 11 1 - 29.19353 120.67540 276.50161 22.88141 110 11 1 - 29.87212 122.04880 284.57394 23.55203 110 10 1 - 30.54171 123.42220 292.65001 24.22265 110 10 1 - 31.20430 124.79560 300.72910 24.89327 110 10 1 - 31.69425 126.16900 306.79002 25.39623 110 10 1 - 32.02956 126.16900 310.83135 25.73154 110 10 1 - 32.51632 127.54240 316.89433 26.23450 110 10 1 - 33.16842 128.91580 324.97970 26.90512 110 10 1 - 33.81888 130.28920 333.06652 27.57574 110 10 1 - 34.46838 131.66260 341.15457 28.24635 110 10 1 - 34.94993 133.03600 347.22126 28.74932 110 10 1 + 7.06092 100.76161 31.86408 3.83947 110 22 1 + 7.01289 101.65432 33.06586 4.18246 110 21 1 + 6.95819 102.54703 34.26739 4.52546 110 20 1 + 6.89688 103.43974 35.46867 4.86846 110 19 1 + 6.82902 104.33245 36.36949 5.12571 110 19 1 + 6.82902 104.33245 36.96996 5.29720 110 18 1 + 6.75469 105.22516 37.87056 5.55445 110 18 1 + 6.67408 106.11787 39.07118 5.89745 110 17 1 + 6.58743 107.01058 40.27161 6.24045 110 16 1 + 6.49498 107.90329 41.47185 6.58344 110 0 1 + 6.63156 108.79600 42.37192 6.84069 110 0 1 + 7.81721 108.79600 25.59840 7.93223 110 0 1 + 9.71317 106.77700 29.70475 9.70495 110 33 1 + 12.18898 104.75800 35.16081 12.06858 110 35 1 + 14.65434 102.73900 40.59674 14.43220 110 36 1 + 17.10980 100.72000 46.01595 16.79583 110 37 1 + 18.96501 98.70100 50.07174 18.56855 110 38 1 + 24.00419 98.70100 177.20934 12.31919 110 14 1 + 23.76168 100.07440 165.98087 12.82216 110 14 1 + 23.60008 101.44780 168.35015 13.49277 110 14 1 + 23.43031 102.82120 174.33058 14.16339 110 13 1 + 23.25822 104.19460 181.36358 14.83401 110 13 1 + 22.99694 105.56800 186.93725 15.33697 110 12 1 + 23.18200 105.56800 190.74477 15.67228 110 12 1 + 22.92835 106.94140 196.54307 16.17524 110 12 1 + 22.77629 108.31480 204.37210 16.84586 110 11 1 + 23.05584 109.68820 212.27871 17.51648 110 11 1 + 23.91781 111.06160 220.23553 18.18709 110 11 1 + 24.57816 112.43500 226.22528 18.69006 110 11 1 + 24.91347 112.43500 230.22741 19.02537 110 11 1 + 25.54399 113.80840 236.24102 19.52833 110 11 1 + 26.31577 115.18180 244.27295 20.19895 110 11 1 + 27.06438 116.55520 252.31767 20.86956 110 11 1 + 27.79309 117.92860 260.37206 21.54018 110 11 1 + 28.33755 119.30200 266.41766 22.04314 110 11 1 + 28.67286 119.30200 270.45017 22.37845 110 11 1 + 29.20384 120.67540 276.50161 22.88141 110 11 1 + 29.89125 122.04880 284.57394 23.55203 110 11 1 + 30.56945 123.42220 292.65001 24.22265 110 10 1 + 31.24048 124.79560 300.72910 24.89327 110 10 1 + 31.73877 126.16900 306.79002 25.39623 110 10 1 + 32.07408 126.16900 310.83135 25.73154 110 10 1 + 32.56911 127.54240 316.89433 26.23450 110 10 1 + 33.22945 128.91580 324.97970 26.90512 110 10 1 + 33.88814 130.28920 333.06652 27.57574 110 10 1 + 34.54588 131.66260 341.15457 28.24635 110 10 1 + 35.03571 133.03600 347.22126 28.74932 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3504,9 +3640,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 5.904 'Hydrobiaklei' - -12.00 6.722 'Basisveen' - -12.50 96.331 'Eerste zandlaag' + -10.00 5.880 'Hydrobiaklei' + -12.00 6.706 'Basisveen' + -12.50 96.089 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -3526,9 +3662,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.26 'Hydrobiaklei' + -10.00 -1.25 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -36.98 'Eerste zandlaag' + -12.50 -36.89 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3750,8 +3886,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 364.03069 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 259.59139 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 364.02766 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 259.65246 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3792,10 +3928,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.95 : Percentage mobilized resistance left - 9.88 : Percentage mobilized resistance right - 47.51 : Effective left - 91.37 : Effective right + 10.97 : Percentage mobilized resistance left + 9.89 : Percentage mobilized resistance right + 47.59 : Effective left + 91.51 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 433.89 : Max effective resistance left @@ -3804,8 +3940,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.84 : Vertical force left - 30.65 : Vertical force right + 14.90 : Vertical force left + 30.70 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -3814,10 +3950,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.65 : Active force -14.84 : Passive force --30.65 : Plugged active force -14.84 : Plugged passive force +-30.70 : Active force +14.90 : Passive force +-30.70 : Plugged active force +14.90 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -3837,192 +3973,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.35954 - 0.00000 0.00000 6.98157 - 0.00000 0.00000 6.60359 - 0.00000 0.00000 6.22561 - 0.00000 0.00000 5.84763 - 0.00000 0.00000 5.46965 - 0.00000 0.00000 5.46965 - 0.00000 0.00000 5.09167 - 0.00000 0.00000 4.71369 - 0.00000 0.00000 4.33571 - 0.00000 0.00000 3.95774 - 0.00000 0.00000 3.57976 - 0.00000 0.00000 3.57976 - 0.00283 0.07063 3.07579 - 0.02260 0.28253 2.57182 - 0.07628 0.63569 2.06785 - 0.18082 1.13011 1.56385 - 0.35316 1.76580 1.05982 - 0.35316 1.76580 1.05982 - 0.56080 2.40345 0.63976 - 0.83712 3.13920 0.21963 - 1.19191 3.97305 -0.20062 - 1.63500 4.90500 -0.62103 - 2.17618 5.93505 -1.04164 - 2.17618 5.93505 -1.04164 - 2.82528 7.06320 -1.46251 - 3.59209 8.28945 -1.88373 - 4.48644 9.61380 -2.30542 - 5.51812 11.03625 -2.72770 - 6.69696 12.55680 -3.15066 - 6.69696 12.55680 -3.15066 - 7.83593 13.94293 -3.51506 - 9.09722 15.40162 -3.88020 - 10.48709 16.93286 -4.24619 - 12.01176 18.53666 -4.61317 - 13.67747 20.21301 -4.98126 - 13.67747 -102.31768 -4.98126 - 2.14508 -99.98370 -5.47078 - -9.11397 -97.52224 -5.96064 - -20.08514 -94.93328 -6.44905 - -30.75391 -92.21683 -6.93421 - -41.10574 -89.37289 -7.41434 - -41.10447 -89.38831 -7.41434 - -48.17308 -87.31644 -7.74733 - -55.07342 -85.18178 -8.07642 - -61.80049 -82.98434 -8.40109 - -68.34924 -80.72412 -8.72080 - -74.71467 -78.40111 -9.03498 - -74.71541 -78.40765 -9.03498 - -76.27766 -77.81708 -9.11261 - -77.82806 -77.22260 -9.18985 - -79.36654 -76.62419 -9.26669 - -80.89301 -76.02185 -9.34314 - -82.40739 -75.41560 -9.41918 - -82.40756 -75.41410 -9.41918 - -89.79528 -72.32395 -9.79297 - -96.86908 -69.13570 -10.15545 - -103.61915 -65.84935 -10.50576 - -110.03568 -62.46490 -10.84305 - -116.10886 -58.98235 -11.16648 - -116.10871 -58.98094 -11.16648 - -121.83022 -55.44934 -11.47523 - -127.19858 -51.91774 -11.76863 - -132.21377 -48.38614 -12.04604 - -136.87580 -44.85454 -12.30684 - -141.18468 -41.32294 -12.55039 - -141.18468 -41.32267 -12.55039 - -145.14037 -37.79107 -12.77610 - -148.74289 -34.25947 -12.98353 - -151.99226 -30.72787 -13.17225 - -154.88847 -27.19627 -13.34187 - -157.43152 -23.66467 -13.49197 - -157.43155 -23.66418 -13.49197 - -160.39844 -18.71994 -13.66859 - -162.67313 -13.77570 -13.80558 - -164.25563 -8.83146 -13.90256 - -165.14594 -3.88722 -13.95915 - -165.34405 1.05702 -13.97494 - -165.34416 1.05864 -13.97494 - -164.90812 5.64972 -13.95287 - -163.87523 10.24080 -13.89568 - -162.24551 14.83188 -13.80372 - -160.01894 19.42296 -13.67733 - -157.19554 24.01404 -13.51686 - -157.19542 24.01391 -13.51686 - -153.77519 28.60499 -13.32277 - -149.75812 33.19607 -13.09593 - -145.14421 37.78715 -12.83732 - -139.93346 42.37823 -12.54793 - -134.12587 46.96931 -12.22873 - -134.12588 46.96929 -12.22873 - -126.70931 52.24903 -11.82621 - -118.50342 57.52878 -11.38798 - -109.50820 62.80852 -10.91660 - -99.72367 68.08826 -10.41459 - -89.14981 73.36800 -9.88448 - -89.14981 73.36800 -9.88448 - -77.78664 78.64774 -9.32899 - -65.63414 83.92749 -8.75158 - -52.69232 89.20723 -8.15590 - -38.96118 94.48697 -7.54558 - -24.44072 99.76671 -6.92427 - -24.44178 99.77172 -6.92427 - -9.13124 105.05146 -6.29581 - 6.96861 110.33120 -5.66475 - 23.85779 115.61094 -5.03587 - 41.53628 120.89069 -4.41390 - 60.00410 126.17043 -3.80361 - 60.00618 126.18722 -3.80361 - 79.26583 131.46696 -3.20993 - 99.31480 136.74670 -2.63856 - 120.15309 142.02644 -2.09535 - 141.78071 147.30618 -1.58618 - 164.19764 152.58593 -1.11691 - 164.19766 152.58570 -1.11691 - 164.50289 152.64119 -1.11092 - 164.80821 152.68182 -1.10495 - 165.11362 152.72251 -1.09899 - 165.41910 152.76328 -1.09303 - 165.72467 152.80408 -1.08708 - 165.72466 152.80434 -1.08708 - 171.54612 153.58982 -0.97569 - 177.39763 154.38678 -0.86741 - 183.27969 155.19789 -0.76236 - 189.19285 156.02315 -0.66065 - 195.13760 156.85989 -0.56237 - 195.13773 -102.73143 -0.56237 - 182.97529 -99.96111 -0.27487 - 171.15164 -97.07631 -0.02055 - 159.68263 -94.05039 0.20266 - 148.58519 -90.88335 0.39684 - 137.87520 -87.60183 0.56407 - 137.87504 -87.60021 0.56407 - 132.67385 -85.77392 0.63821 - 127.58200 -83.95626 0.70634 - 122.59891 -82.14849 0.76867 - 117.72398 -80.35059 0.82544 - 112.95666 -78.56134 0.87687 - 112.95715 -78.57578 0.87687 - 105.91353 -76.20624 0.94519 - 99.09112 -73.72118 1.00246 - 92.49901 -71.14606 1.04937 - 86.14502 -68.48899 1.08661 - 80.03603 -65.76546 1.11486 - 80.03589 -65.76081 1.11486 - 74.17899 -62.95427 1.13480 - 68.57981 -60.09502 1.14700 - 63.24335 -57.18143 1.15202 - 58.17427 -54.21932 1.15042 - 53.37602 -51.23772 1.14275 - 53.37608 -51.23734 1.14275 - 48.39207 -48.44869 1.12796 - 43.68370 -45.73930 1.10708 - 39.24004 -43.15480 1.08066 - 35.04744 -40.72923 1.04927 - 31.08670 -38.52877 1.01347 - 31.08524 -38.50784 1.01347 - 25.89396 -35.53688 0.95698 - 21.14981 -32.24656 0.89410 - 16.86194 -29.02026 0.82589 - 13.02074 -25.86674 0.75342 - 9.61528 -22.79830 0.67775 - 9.61555 -22.79504 0.67775 - 6.63521 -19.79848 0.59983 - 4.06745 -16.89889 0.52028 - 1.89922 -14.09144 0.43964 - 0.11745 -11.37826 0.35844 - -1.29140 -8.76591 0.27722 - -1.29254 -8.74457 0.27722 - -2.34241 -6.29836 0.19642 - -3.06879 -4.12442 0.11620 - -3.51012 -2.22618 0.03668 - -3.70493 -0.60242 -0.04203 - -3.69153 0.74851 -0.11982 - -3.69139 0.74846 -0.11982 - -3.49649 1.95029 -0.19665 - -3.16355 2.76128 -0.27261 - -2.73582 3.30473 -0.34782 - -2.25065 3.58185 -0.42236 - -1.74529 3.59348 -0.49634 - -1.74533 3.59338 -0.49634 - -1.22616 3.66933 -0.56990 - -0.74565 3.15087 -0.64316 - -0.35630 2.36698 -0.71622 - -0.09532 1.31696 -0.78915 - -0.00002 -0.00021 -0.86207 + 0.00000 0.00000 7.35756 + 0.00000 0.00000 6.97964 + 0.00000 0.00000 6.60173 + 0.00000 0.00000 6.22381 + 0.00000 0.00000 5.84590 + 0.00000 0.00000 5.46798 + 0.00000 0.00000 5.46798 + 0.00000 0.00000 5.09006 + 0.00000 0.00000 4.71215 + 0.00000 0.00000 4.33423 + 0.00000 0.00000 3.95631 + 0.00000 0.00000 3.57840 + 0.00000 0.00000 3.57840 + 0.00283 0.07063 3.07451 + 0.02260 0.28253 2.57063 + 0.07628 0.63569 2.06674 + 0.18082 1.13011 1.56282 + 0.35316 1.76580 1.05887 + 0.35316 1.76580 1.05887 + 0.56080 2.40345 0.63888 + 0.83712 3.13920 0.21882 + 1.19191 3.97305 -0.20136 + 1.63500 4.90500 -0.62170 + 2.17618 5.93505 -1.04224 + 2.17618 5.93505 -1.04224 + 2.82528 7.06320 -1.46304 + 3.59209 8.28945 -1.88420 + 4.48644 9.61380 -2.30582 + 5.51812 11.03625 -2.72802 + 6.69696 12.55680 -3.15092 + 6.69696 12.55680 -3.15092 + 7.83593 13.94293 -3.51526 + 9.09722 15.40162 -3.88033 + 10.48709 16.93286 -4.24626 + 12.01176 18.53666 -4.61318 + 13.67747 20.21301 -4.98122 + 13.67747 -102.31464 -4.98122 + 2.14543 -99.98067 -5.47066 + -9.11327 -97.51920 -5.96044 + -20.08410 -94.93024 -6.44877 + -30.75253 -92.21380 -6.93386 + -41.10400 -89.36986 -7.41391 + -41.10274 -89.38529 -7.41391 + -48.17110 -87.31341 -7.74684 + -55.07121 -85.17876 -8.07588 + -61.79803 -82.98132 -8.40050 + -68.34655 -80.72109 -8.72014 + -74.71173 -78.39809 -9.03428 + -74.71247 -78.40463 -9.03428 + -76.27466 -77.81407 -9.11189 + -77.82500 -77.21958 -9.18911 + -79.36342 -76.62117 -9.26595 + -80.88982 -76.01884 -9.34238 + -82.40415 -75.41258 -9.41841 + -82.40432 -75.41109 -9.41841 + -89.79174 -72.32094 -9.79213 + -96.86524 -69.13269 -10.15454 + -103.61500 -65.84634 -10.50479 + -110.03123 -62.46189 -10.84201 + -116.10411 -58.97934 -11.16538 + -116.10396 -58.97792 -11.16538 + -121.82517 -55.44632 -11.47406 + -127.19323 -51.91472 -11.76740 + -132.20812 -48.38312 -12.04475 + -136.86985 -44.85152 -12.30549 + -141.17842 -41.31992 -12.54898 + -141.17842 -41.31966 -12.54898 + -145.13381 -37.78806 -12.77463 + -148.73603 -34.25646 -12.98199 + -151.98510 -30.72486 -13.17066 + -154.88100 -27.19326 -13.34022 + -157.42375 -23.66166 -13.49026 + -157.42378 -23.66117 -13.49026 + -160.39025 -18.71693 -13.66680 + -162.66452 -13.77269 -13.80372 + -164.24660 -8.82845 -13.90063 + -165.13648 -3.88421 -13.95714 + -165.33418 1.06003 -13.97286 + -165.33428 1.06167 -13.97286 + -164.89785 5.65275 -13.95073 + -163.86457 10.24383 -13.89348 + -162.23445 14.83491 -13.80146 + -160.00749 19.42599 -13.67502 + -157.18370 24.01707 -13.51450 + -157.18358 24.01694 -13.51450 + -153.76296 28.60802 -13.32035 + -149.74549 33.19910 -13.09346 + -145.13119 37.79018 -12.83481 + -139.92005 42.38126 -12.54538 + -134.11207 46.97234 -12.22614 + -134.11207 46.97232 -12.22614 + -126.69505 52.25206 -11.82357 + -118.48870 57.53180 -11.38531 + -109.49304 62.81154 -10.91390 + -99.70805 68.09128 -10.41185 + -89.13374 73.37103 -9.88172 + -89.13374 73.37103 -9.88172 + -77.77012 78.65077 -9.32621 + -65.61716 83.93051 -8.74878 + -52.67489 89.21025 -8.15309 + -38.94330 94.48999 -7.54277 + -24.42238 99.76974 -6.92146 + -24.42344 99.77473 -6.92146 + -9.11246 105.05448 -6.29300 + 6.98785 110.33422 -5.66195 + 23.87747 115.61396 -5.03308 + 41.55642 120.89370 -4.41113 + 60.02469 126.17344 -3.80086 + 60.02677 126.19020 -3.80086 + 79.28687 131.46994 -3.20722 + 99.33628 136.74968 -2.63589 + 120.17502 142.02943 -2.09272 + 141.80308 147.30917 -1.58360 + 164.22046 152.58891 -1.11438 + 164.22048 152.58868 -1.11438 + 164.52571 152.64416 -1.10840 + 164.83104 152.68480 -1.10243 + 165.13645 152.72549 -1.09647 + 165.44195 152.76626 -1.09051 + 165.74752 152.80706 -1.08457 + 165.74750 152.80732 -1.08457 + 171.56908 153.59280 -0.97318 + 177.42070 154.38976 -0.86492 + 183.30288 155.20087 -0.75989 + 189.21615 156.02613 -0.65819 + 195.16101 156.86287 -0.55994 + 195.16114 -102.78951 -0.55994 + 182.99174 -100.01919 -0.27249 + 171.16111 -97.13439 -0.01823 + 159.68513 -94.10847 0.20492 + 148.58072 -90.94143 0.39904 + 137.86376 -87.65991 0.56621 + 137.86367 -87.66101 0.56621 + 132.65884 -85.83471 0.64032 + 127.56334 -84.01706 0.70842 + 122.57659 -82.20929 0.77072 + 117.69802 -80.41139 0.82746 + 112.92705 -78.62213 0.87887 + 112.92753 -78.63668 0.87887 + 105.87842 -76.26731 0.94715 + 99.05029 -73.78575 1.00439 + 92.45215 -71.21399 1.05127 + 86.09183 -68.56011 1.08848 + 79.97623 -65.83957 1.11672 + 79.97619 -65.83751 1.11672 + 74.11219 -63.03376 1.13664 + 68.50566 -60.17708 1.14884 + 63.16161 -57.26581 1.15386 + 58.08476 -54.30574 1.15227 + 53.27860 -51.32477 1.14463 + 53.27865 -51.32445 1.14463 + 48.29148 -48.45223 1.12987 + 43.58280 -45.74200 1.10903 + 39.13892 -43.15665 1.08267 + 34.94617 -40.73043 1.05136 + 30.98532 -38.52952 1.01564 + 30.98384 -38.50819 1.01564 + 25.79225 -35.53916 0.95928 + 21.04806 -32.24480 0.89657 + 16.76073 -29.01416 0.82856 + 12.92071 -25.85593 0.75630 + 9.51712 -22.78239 0.68087 + 9.51739 -22.77914 0.68087 + 6.53942 -19.77958 0.60322 + 3.97472 -16.87396 0.52396 + 1.81043 -14.05995 0.44363 + 0.03356 -11.33965 0.36276 + -1.36935 -8.71956 0.28189 + -1.37048 -8.69836 0.28189 + -2.41310 -6.23941 0.20147 + -3.12997 -4.04734 0.12164 + -3.55916 -2.12955 0.04252 + -3.73898 -0.48475 -0.03578 + -3.70755 0.88873 -0.11314 + -3.70742 0.88867 -0.11314 + -3.50258 1.99280 -0.18954 + -3.16191 2.82947 -0.26507 + -2.72274 3.40018 -0.33984 + -2.22222 3.70613 -0.41396 + -1.69734 3.74815 -0.48752 + -1.69738 3.74806 -0.48752 + -1.18508 3.52659 -0.56067 + -0.72224 3.04158 -0.63353 + -0.34576 2.29264 -0.70619 + -0.09265 1.27905 -0.77874 + -0.00002 -0.00021 -0.85126 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4268,7 +4404,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -4280,7 +4416,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -4447,53 +4583,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 502 100 P - 7.62022 100.76161 31.86408 3.83947 110 24 1 - 8.19230 101.65432 33.06586 4.18246 110 25 1 - 8.72294 102.54703 34.26739 4.52546 110 25 1 - 9.21490 103.43974 35.46867 4.86846 110 26 1 - 9.58516 104.33245 36.36949 5.12571 110 26 1 - 9.75666 104.33245 36.96996 5.29720 110 26 1 - 10.09365 105.22516 37.87056 5.55445 110 27 1 - 10.48545 106.11787 39.07118 5.89745 110 27 1 - 10.84854 107.01058 40.27161 6.24045 110 27 1 - 11.18513 107.90329 41.47185 6.58344 110 27 1 - 11.41170 108.79600 42.37192 6.84069 110 27 1 - 10.44629 108.79600 25.59840 7.93223 110 41 1 - 12.16391 106.77700 29.70475 9.70495 110 41 1 - 14.45987 104.75800 35.16081 12.06858 110 41 1 - 16.74482 102.73900 40.59674 14.43220 110 41 1 - 19.02028 100.72000 46.01595 16.79583 110 41 1 - 20.69683 98.70100 50.07174 18.56855 110 41 1 - 24.48083 98.70100 177.20934 12.31919 110 14 1 - 24.33563 100.07440 165.98087 12.82216 110 15 1 - 24.27756 101.44780 168.35015 13.49277 110 14 1 - 24.15118 102.82120 174.33058 14.16339 110 14 1 - 23.96885 104.19460 181.36358 14.83401 110 13 1 - 23.57540 105.56800 186.93725 15.33697 110 13 1 - 23.94704 105.56800 190.74477 15.70861 110 13 1 - 23.48521 106.94140 196.54307 16.17524 110 12 1 - 23.20257 108.31480 204.37210 16.84586 110 11 1 - 22.90159 109.68820 212.27871 17.51648 110 11 1 - 22.58875 111.06160 220.23553 18.18709 110 10 1 - 22.10296 112.43500 226.22528 18.69006 110 10 1 - 22.43826 112.43500 230.22741 19.02537 110 10 1 - 21.95262 113.80840 236.24102 19.52833 110 9 1 - 21.63678 115.18180 244.27295 20.19895 110 9 1 - 21.32457 116.55520 252.31767 20.86956 110 8 1 - 21.01747 117.92860 260.37206 21.54018 110 0 1 - 20.54934 119.30200 266.41766 22.04314 110 0 1 - 22.62457 119.30200 270.45017 24.11838 110 0 1 - 20.42373 120.67540 276.50161 22.88141 110 0 1 - 20.13647 122.04880 284.57394 23.55203 110 0 1 - 19.85404 123.42220 292.65001 24.22265 110 0 1 - 19.57526 124.79560 300.72910 24.89327 110 0 1 - 19.13126 126.16900 306.79002 25.39623 110 0 1 - 19.46657 126.16900 310.83135 25.73154 110 0 1 - 19.02336 127.54240 316.89433 26.23450 110 0 1 - 18.74698 128.91580 324.97970 26.90512 110 0 1 - 18.46866 130.28920 333.06652 27.57574 110 0 1 - 18.18727 131.66260 341.15457 28.24635 110 0 1 - 17.73401 133.03600 347.22126 28.74932 110 0 1 + 7.62806 100.76161 31.86408 3.83947 110 24 1 + 8.20001 101.65432 33.06586 4.18246 110 25 1 + 8.73054 102.54703 34.26739 4.52546 110 25 1 + 9.22239 103.43974 35.46867 4.86846 110 26 1 + 9.59258 104.33245 36.36949 5.12571 110 26 1 + 9.76408 104.33245 36.96996 5.29720 110 26 1 + 10.10103 105.22516 37.87056 5.55445 110 27 1 + 10.49281 106.11787 39.07118 5.89745 110 27 1 + 10.85590 107.01058 40.27161 6.24045 110 27 1 + 11.19254 107.90329 41.47185 6.58344 110 27 1 + 11.41919 108.79600 42.37192 6.84069 110 27 1 + 10.45041 108.79600 25.59840 7.93223 110 41 1 + 12.16806 106.77700 29.70475 9.70495 110 41 1 + 14.46408 104.75800 35.16081 12.06858 110 41 1 + 16.74912 102.73900 40.59674 14.43220 110 41 1 + 19.02470 100.72000 46.01595 16.79583 110 41 1 + 20.70139 98.70100 50.07174 18.56855 110 41 1 + 24.50686 98.70100 177.20934 12.31919 110 14 1 + 24.36342 100.07440 165.98087 12.82216 110 15 1 + 24.30741 101.44780 168.35015 13.49277 110 14 1 + 24.18342 102.82120 174.33058 14.16339 110 14 1 + 24.00378 104.19460 181.36358 14.83401 110 13 1 + 23.61334 105.56800 186.93725 15.33697 110 13 1 + 23.94865 105.56800 190.74477 15.67228 110 13 1 + 23.52646 106.94140 196.54307 16.17524 110 12 1 + 23.24746 108.31480 204.37210 16.84586 110 11 1 + 22.95040 109.68820 212.27871 17.51648 110 11 1 + 22.64176 111.06160 220.23553 18.18709 110 10 1 + 22.16046 112.43500 226.22528 18.69006 110 10 1 + 22.49576 112.43500 230.22741 19.02537 110 10 1 + 22.01487 113.80840 236.24102 19.52833 110 9 1 + 21.70402 115.18180 244.27295 20.19895 110 9 1 + 21.39701 116.55520 252.31767 20.86956 110 8 1 + 21.09527 117.92860 260.37206 21.54018 110 0 1 + 20.63264 119.30200 266.41766 22.04314 110 0 1 + 20.96795 119.30200 270.45017 22.37845 110 0 1 + 20.51261 120.67540 276.50161 22.88141 110 0 1 + 20.23098 122.04880 284.57394 23.55203 110 0 1 + 19.95420 123.42220 292.65001 24.22265 110 0 1 + 19.68104 124.79560 300.72910 24.89327 110 0 1 + 19.24261 126.16900 306.79002 25.39623 110 0 1 + 19.57792 126.16900 310.83135 25.73154 110 0 1 + 19.14016 127.54240 316.89433 26.23450 110 0 1 + 18.86914 128.91580 324.97970 26.90512 110 0 1 + 18.59613 130.28920 333.06652 27.57574 110 0 1 + 18.32002 131.66260 341.15457 28.24635 110 0 1 + 17.87205 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4511,9 +4647,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.351 'Hydrobiaklei' - -12.00 7.796 'Basisveen' - -12.50 75.220 'Eerste zandlaag' + -10.00 8.357 'Hydrobiaklei' + -12.00 7.798 'Basisveen' + -12.50 75.355 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -4533,9 +4669,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.77 'Hydrobiaklei' + -10.00 -1.78 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.87 'Eerste zandlaag' + -12.50 -28.93 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -4673,24 +4809,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 71.33900 32.23900 7.86393 7.28848 -10.88000 71.33900 32.23900 9.24535 7.34485 -10.94000 71.33900 32.23900 10.86885 7.41109 @@ -4784,7 +4920,7 @@ Lambda passive -10.97000 5.17420 31.09283 1.26873 0.45536 0.24520 6.00921 -11.03000 5.84560 35.12741 1.43335 0.45536 0.24520 6.00921 -11.09000 6.51700 38.15335 1.55683 0.45536 0.24520 6.00921 - -11.09000 6.51700 38.09030 -3.30713 0.70481 0.00000 5.84689 + -11.09000 6.51700 38.09030 -3.30713 0.69929 0.00000 5.84689 -11.18100 6.50749 37.13796 -3.30434 0.69929 0.00000 5.70696 -11.27200 6.49798 36.38146 -3.30632 0.69929 0.00000 5.59889 -11.36300 6.48847 35.91666 -3.30987 0.69929 0.00000 5.53546 @@ -4796,7 +4932,7 @@ Lambda passive -11.81800 6.44092 34.91455 -3.33088 0.69929 0.00000 5.42074 -11.90900 6.43141 34.81167 -3.33521 0.69929 0.00000 5.41276 -12.00000 6.42190 34.74335 -3.33847 0.69929 0.00000 5.40813 - -12.00000 6.42190 18.56125 -0.24957 1.01009 0.00000 3.01605 + -12.00000 6.42190 18.56125 -0.24957 0.74118 0.00000 3.01605 -12.10000 5.35090 17.07239 -0.71711 0.74118 0.00000 3.19056 -12.20000 4.27990 15.10025 -1.34197 0.74118 0.00000 3.52818 -12.30000 3.20890 13.14123 -1.96811 0.74118 0.00000 4.09525 @@ -4826,7 +4962,7 @@ Lambda passive -15.02000 26.74570 152.13832 6.86581 0.47008 0.25671 5.68833 -15.16000 28.17230 160.19767 7.23257 0.47008 0.25673 5.68635 -15.30000 29.59890 166.24550 7.50762 0.47008 0.25674 5.68511 - -15.30000 29.59890 170.27895 7.69098 0.31301 0.25675 5.68439 + -15.30000 29.59890 170.27895 7.69098 0.47008 0.25675 5.68439 -15.44000 31.02550 176.33119 7.96601 0.47008 0.25676 5.68343 -15.58000 32.45210 184.40388 8.33270 0.47008 0.25677 5.68234 -15.72000 33.87870 192.47975 8.69937 0.47008 0.25678 5.68144 @@ -4979,32 +5115,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 19.99774 1.51537 1 0 A 0.93947 71.19850 23.02367 1.74467 1 0 A 1.10410 71.78710 27.05825 2.05040 1 0 A 1.26873 72.37570 31.09283 2.35613 1 0 A 1.43335 72.96430 35.12741 2.66186 1 0 A 1.55683 73.55290 38.15335 2.89116 1 0 A - 1.07987 73.55290 38.09030 4.59156 110 0 1 - 6.64559 74.94561 37.13796 4.55065 110 18 1 - 5.68221 76.33832 36.38146 4.54400 110 16 1 - 4.76913 77.73103 35.91666 4.53735 110 13 1 - 3.90364 79.12374 35.59797 4.53070 110 0 1 - 3.17042 80.51645 35.41437 4.52571 110 0 1 - 2.99559 80.51645 35.31241 4.52239 110 0 1 - 2.30457 81.90916 35.18176 4.51740 110 0 1 - 1.56597 83.30187 35.03566 4.51075 110 0 1 - 0.86497 84.69458 34.91455 4.50410 110 0 1 - 0.19931 86.08729 34.81167 4.49745 110 0 1 + 1.04442 73.55290 38.09030 4.55564 110 0 1 + 6.69267 74.94561 37.13796 4.55065 110 18 1 + 5.72762 76.33832 36.38146 4.54400 110 16 1 + 4.81270 77.73103 35.91666 4.53735 110 13 1 + 3.94518 79.12374 35.59797 4.53070 110 0 1 + 3.20973 80.51645 35.41437 4.52571 110 0 1 + 3.03490 80.51645 35.31241 4.52239 110 0 1 + 2.34144 81.90916 35.18176 4.51740 110 0 1 + 1.60022 83.30187 35.03566 4.51075 110 0 1 + 0.89639 84.69458 34.91455 4.50410 110 0 1 + 0.22771 86.08729 34.81167 4.49745 110 0 1 0.00000 87.48000 34.74335 4.49246 1 0 A - 3.70217 87.48000 18.56125 6.21623 110 0 1 - 1.50703 89.72100 17.07239 3.96599 110 0 1 - 0.78089 91.96200 15.10025 3.17218 110 0 1 - 0.06576 94.20300 13.14123 2.37838 110 0 1 + 2.04316 87.48000 18.56125 4.56134 110 0 1 + 1.50287 89.72100 17.07239 3.96599 110 0 1 + 0.77667 91.96200 15.10025 3.17218 110 0 1 + 0.06145 94.20300 13.14123 2.37838 110 0 1 0.00000 96.44400 11.19306 1.58457 1 0 A 0.00000 98.68500 9.73768 0.98922 1 0 A - 5.76853 98.68500 8.83693 0.66918 220 65 2 + 5.84981 98.68500 8.83693 0.66918 220 66 2 0.63774 100.05840 15.37247 1.17215 1 0 A 1.00279 101.43180 23.89347 1.84276 1 0 A 1.36806 102.80520 32.18680 2.51338 1 0 A @@ -5017,23 +5153,23 @@ Status character 3.56466 111.04560 80.04950 6.53708 1 0 A 3.83967 112.41900 86.01153 7.04005 1 0 A 4.02303 112.41900 89.99195 7.37536 1 0 A - 5.45403 113.79240 95.97127 7.87832 110 0 1 - 7.11110 115.16580 103.95761 8.54894 110 0 1 - 8.76455 116.53920 111.95936 9.21955 110 0 1 - 10.41288 117.91260 119.97473 9.89017 110 9 1 - 11.88693 119.28600 125.99378 10.39313 110 9 1 - 12.22224 119.28600 130.01005 10.72844 110 9 1 - 13.68909 120.65940 136.03922 11.23140 110 10 1 - 15.31758 122.03280 144.08513 11.90202 110 11 1 - 16.94124 123.40620 152.13832 12.57264 110 11 1 - 18.56126 124.77960 160.19767 13.24326 110 12 1 - 20.01118 126.15300 166.24550 13.74622 110 12 1 - 15.64134 126.15300 170.27895 9.37638 110 9 1 - 21.79563 127.52640 176.33119 14.58449 110 12 1 - 23.41325 128.89980 184.40388 15.25511 110 13 1 - 25.03280 130.27320 192.47975 15.92572 110 13 1 - 26.65542 131.64660 200.55831 16.59634 110 13 1 - 28.11461 133.02000 206.61870 17.09930 110 14 1 + 5.39178 113.79240 95.97127 7.87832 110 0 1 + 7.04386 115.16580 103.95761 8.54894 110 0 1 + 8.69211 116.53920 111.95936 9.21955 110 0 1 + 10.33508 117.91260 119.97473 9.89017 110 9 1 + 11.80364 119.28600 125.99378 10.39313 110 9 1 + 12.13895 119.28600 130.01005 10.72844 110 9 1 + 13.60021 120.65940 136.03922 11.23140 110 10 1 + 15.22307 122.03280 144.08513 11.90202 110 11 1 + 16.84108 123.40620 152.13832 12.57264 110 11 1 + 18.45548 124.77960 160.19767 13.24326 110 12 1 + 19.89984 126.15300 166.24550 13.74622 110 12 1 + 20.23515 126.15300 170.27895 14.08153 110 12 1 + 21.67883 127.52640 176.33119 14.58449 110 12 1 + 23.29108 128.89980 184.40388 15.25511 110 13 1 + 24.90533 130.27320 192.47975 15.92572 110 13 1 + 26.52268 131.64660 200.55831 16.59634 110 13 1 + 27.97657 133.02000 206.61870 17.09930 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5048,9 +5184,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 2.690 'Hydrobiaklei' - -12.00 0.420 'Basisveen' - -12.50 36.793 'Eerste zandlaag' + -11.09 2.720 'Hydrobiaklei' + -12.00 0.336 'Basisveen' + -12.50 36.927 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -5067,9 +5203,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.14 'Grind' - -11.09 0.57 'Hydrobiaklei' + -11.09 0.58 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.12 'Eerste zandlaag' + -12.50 14.17 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5291,8 +5427,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 376.67082 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.97081 10000000.000 1 1 1 'Dek' + -10.19000 376.66367 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.97061 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5353,10 +5489,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.43 : Percentage mobilized resistance left - 17.72 : Percentage mobilized resistance right - 182.49 : Effective left - 109.88 : Effective right + 29.47 : Percentage mobilized resistance left + 17.76 : Percentage mobilized resistance right + 182.74 : Effective left + 110.11 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -5365,8 +5501,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 41.02 : Vertical force left - 16.08 : Vertical force right + 41.15 : Vertical force left + 16.19 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -5375,10 +5511,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --16.08 : Active force -41.02 : Passive force --16.08 : Plugged active force -41.02 : Plugged passive force +-16.19 : Active force +41.15 : Passive force +-16.19 : Plugged active force +41.15 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance @@ -5398,192 +5534,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.51741 - 0.12533 0.00000 -58.26404 - 0.25066 0.00000 -57.01069 - 0.37599 0.00000 -55.75737 - 0.50132 0.00000 -54.50409 - 0.62666 0.00000 -53.25085 - 0.62666 0.00000 -53.25085 - 0.75195 0.00000 -51.99768 - 0.87725 0.00000 -50.74459 - 1.00255 0.00000 -49.49158 - 1.12785 0.00000 -48.23868 - 1.25315 0.00000 -46.98590 - 1.25315 0.00000 -46.98590 - 1.42011 0.00000 -45.31572 - 1.58707 0.00000 -43.64579 - 1.75403 0.00000 -41.97616 - 1.92099 0.00000 -40.30684 - 2.08795 0.00000 -38.63787 - 2.08795 0.00000 -38.63787 - 2.22695 0.00000 -37.24735 - 2.36594 0.00000 -35.85711 - 2.50493 0.00000 -34.46717 - 2.64392 0.00000 -33.07755 - 2.78291 0.00000 -31.68826 - 2.78291 0.00000 -31.68826 - 2.92173 0.00000 -30.29932 - 3.06055 0.00000 -28.91074 - 3.19937 0.00000 -27.52255 - 3.33818 0.00000 -26.13477 - 3.47700 0.00000 -24.74741 - 3.47700 0.00000 -24.74741 - 3.59621 0.00000 -23.55462 - 3.71542 0.00000 -22.36217 - 3.83463 0.00000 -21.17007 - 3.95384 0.00000 -19.97833 - 4.07305 0.00000 -18.78695 - 4.07305 439.90000 -18.78695 - 54.37595 439.90000 -17.20964 - 104.67885 439.90000 -15.64123 - 154.98176 439.90000 -14.08996 - 205.28466 439.90000 -12.56407 - 255.58756 439.90000 -11.07178 - 255.58883 439.88459 -11.07178 - 290.87661 439.88459 -10.04906 - 326.16439 439.88459 -9.04979 - 361.45217 439.88459 -8.07682 - 396.73995 439.88459 -7.13299 - 432.02773 439.88459 -6.22115 - 432.02699 -84.09276 -6.22115 - 430.36697 -84.09276 -5.99851 - 428.70694 -84.09276 -5.77805 - 427.04692 -84.09276 -5.55974 - 425.38690 -84.09276 -5.34358 - 423.72687 -84.09276 -5.12957 - 423.72670 -84.09127 -5.12957 - 415.41114 -84.09127 -4.09136 - 407.09557 -84.09127 -3.10549 - 398.78001 -84.09127 -2.17090 - 390.46445 -84.09127 -1.28656 - 382.14888 -84.09127 -0.45140 - 382.14903 -84.08985 -0.45140 - 373.80954 -84.08985 0.33562 - 365.47005 -84.08985 1.07554 - 357.13056 -84.08985 1.76942 - 348.79107 -84.08985 2.41831 - 340.45158 -84.08985 3.02326 - 340.45158 -84.08959 3.02326 - 332.09067 -84.08959 3.58532 - 323.72976 -84.08959 4.10554 - 315.36885 -84.08959 4.58498 - 307.00794 -84.08959 5.02469 - 298.64703 -84.08959 5.42572 - 298.64700 -84.08910 5.42572 - 286.91078 -84.08910 5.92420 - 275.17457 -84.08910 6.35183 - 263.43835 -84.08910 6.71151 - 251.70213 -84.08910 7.00614 - 239.96592 -84.08910 7.23862 - 239.96581 -84.08747 7.23862 - 229.04143 -84.08747 7.40137 - 218.11705 -84.08747 7.51537 - 207.19266 -84.08747 7.58292 - 196.26828 -84.08747 7.60636 - 185.34390 -84.08747 7.58801 - 185.34401 -84.08760 7.58801 - 174.39988 -84.08760 7.53020 - 163.45575 -84.08760 7.43526 - 152.51163 -84.08760 7.30552 - 141.56750 -84.08760 7.14331 - 130.62337 -84.08760 6.95095 - 130.62336 -84.08762 6.95095 - 118.02078 -84.08762 6.69551 - 105.41820 -84.08762 6.40683 - 92.81562 -84.08762 6.08848 - 80.21304 -84.08762 5.74398 - 67.61046 -84.08762 5.37690 - 67.61046 -84.08762 5.37690 - 54.99836 -84.08762 4.99079 - 42.38626 -84.08762 4.58918 - 29.77417 -84.08762 4.17565 - 17.16207 -84.08762 3.75372 - 4.54997 -84.08762 3.32697 - 4.54891 -84.08261 3.32697 - -8.06308 -84.08261 2.89893 - -20.67507 -84.08261 2.47317 - -33.28706 -84.08261 2.05323 - -45.89905 -84.08261 1.64266 - -58.51104 -84.08261 1.24501 - -58.50896 -84.06583 1.24501 - -71.11020 -84.06583 0.86384 - -83.71145 -84.06583 0.50269 - -96.31269 -84.06583 0.16511 - -108.91394 -84.06583 -0.14534 - -121.51518 -84.06583 -0.42513 - -121.51517 -84.06605 -0.42513 - -121.68365 -84.06605 -0.42865 - -121.85213 -84.06605 -0.43217 - -122.02061 -84.06605 -0.43567 - -122.18910 -84.06605 -0.43917 - -122.35758 -84.06605 -0.44267 - -122.35759 -84.06579 -0.44267 - -125.55804 -84.06579 -0.50788 - -128.75849 -84.06579 -0.57081 - -131.95894 -84.06579 -0.63140 - -135.15938 -84.06579 -0.68958 - -138.35983 -84.06579 -0.74531 - -138.35970 72.66346 -0.74531 - -129.65071 72.66346 -0.90506 - -120.94172 72.66346 -1.04129 - -112.23272 72.66346 -1.15558 - -103.52373 72.66346 -1.24951 - -94.81474 72.66346 -1.32466 - -94.81449 72.65841 -1.32466 - -90.54123 69.69493 -1.35570 - -86.46849 66.05684 -1.38262 - -82.62481 62.09341 -1.40562 - -79.02558 57.90997 -1.42486 - -75.68333 53.53613 -1.44051 - -75.68291 53.51448 -1.44051 - -70.88071 52.00523 -1.45778 - -66.22023 50.43879 -1.46764 - -61.69953 48.93351 -1.47059 - -57.31288 47.49343 -1.46709 - -53.05429 46.11837 -1.45761 - -53.05447 46.11877 -1.45761 - -48.91537 44.82381 -1.44261 - -44.89094 43.60029 -1.42251 - -40.97432 42.45488 -1.39771 - -37.15828 41.39003 -1.36863 - -33.43599 40.38828 -1.33568 - -33.43600 40.38625 -1.33568 - -29.42601 39.76293 -1.29546 - -25.47595 39.18886 -1.25155 - -21.58099 38.65738 -1.20441 - -17.73824 38.13832 -1.15456 - -13.94747 37.62048 -1.10247 - -13.94683 37.61348 -1.10247 - -8.84030 34.86717 -1.02679 - -4.24006 30.74477 -0.94895 - -0.23262 26.42872 -0.86993 - 3.16347 22.01211 -0.79071 - 5.93595 17.53121 -0.71229 - 5.93468 17.52436 -0.71229 - 8.08400 13.19677 -0.63550 - 9.65226 9.22479 -0.56071 - 10.68972 5.61475 -0.48819 - 11.24736 2.37068 -0.41820 - 11.37656 -0.50577 -0.35100 - 11.37634 -0.50190 -0.35100 - 11.13104 -2.94330 -0.28672 - 10.57933 -4.87747 -0.22518 - 9.79255 -6.30256 -0.16621 - 8.84152 -7.22494 -0.10962 - 7.79586 -7.65763 -0.05521 - 7.79712 -7.63468 -0.05521 - 6.71991 -7.73589 -0.00276 - 5.64124 -7.65647 0.04803 - 4.58606 -7.40089 0.09743 - 3.57878 -6.97276 0.14569 - 2.64335 -6.37481 0.19305 - 2.64551 -6.41007 0.19305 - 1.80694 -5.57019 0.23980 - 1.09074 -4.63731 0.28611 - 0.52048 -3.45905 0.33211 - 0.13932 -1.92540 0.37795 - 0.00024 0.00112 0.42375 + 0.00000 0.00000 -59.51820 + 0.12533 0.00000 -58.26481 + 0.25067 0.00000 -57.01143 + 0.37600 0.00000 -55.75808 + 0.50134 0.00000 -54.50476 + 0.62667 0.00000 -53.25150 + 0.62667 0.00000 -53.25150 + 0.75197 0.00000 -51.99830 + 0.87727 0.00000 -50.74517 + 1.00258 0.00000 -49.49214 + 1.12788 0.00000 -48.23921 + 1.25318 0.00000 -46.98639 + 1.25318 0.00000 -46.98639 + 1.42015 0.00000 -45.31617 + 1.58711 0.00000 -43.64621 + 1.75407 0.00000 -41.97654 + 1.92104 0.00000 -40.30718 + 2.08800 0.00000 -38.63817 + 2.08800 0.00000 -38.63817 + 2.22700 0.00000 -37.24762 + 2.36599 0.00000 -35.85735 + 2.50499 0.00000 -34.46737 + 2.64399 0.00000 -33.07772 + 2.78298 0.00000 -31.68839 + 2.78298 0.00000 -31.68839 + 2.92180 0.00000 -30.29942 + 3.06062 0.00000 -28.91081 + 3.19944 0.00000 -27.52259 + 3.33826 0.00000 -26.13477 + 3.47708 0.00000 -24.74738 + 3.47708 0.00000 -24.74738 + 3.59629 0.00000 -23.55456 + 3.71551 0.00000 -22.36209 + 3.83472 0.00000 -21.16996 + 3.95393 0.00000 -19.97818 + 4.07314 0.00000 -18.78678 + 4.07314 439.90000 -18.78678 + 54.37605 439.90000 -17.20943 + 104.67896 439.90000 -15.64098 + 154.98186 439.90000 -14.08968 + 205.28477 439.90000 -12.56375 + 255.58768 439.90000 -11.07142 + 255.58895 439.88457 -11.07142 + 290.87673 439.88457 -10.04868 + 326.16451 439.88457 -9.04938 + 361.45229 439.88457 -8.07638 + 396.74007 439.88457 -7.13253 + 432.02785 439.88457 -6.22066 + 432.02711 -84.09259 -6.22066 + 430.36709 -84.09259 -5.99802 + 428.70708 -84.09259 -5.77754 + 427.04706 -84.09259 -5.55923 + 425.38704 -84.09259 -5.34306 + 423.72702 -84.09259 -5.12904 + 423.72684 -84.09110 -5.12904 + 415.41130 -84.09110 -4.09081 + 407.09576 -84.09110 -3.10490 + 398.78022 -84.09110 -2.17028 + 390.46467 -84.09110 -1.28590 + 382.14913 -84.09110 -0.45071 + 382.14928 -84.08968 -0.45071 + 373.80981 -84.08968 0.33634 + 365.47034 -84.08968 1.07629 + 357.13087 -84.08968 1.77020 + 348.79140 -84.08968 2.41913 + 340.45192 -84.08968 3.02411 + 340.45192 -84.08941 3.02411 + 332.09104 -84.08941 3.58620 + 323.73015 -84.08941 4.10645 + 315.36926 -84.08941 4.58593 + 307.00837 -84.08941 5.02567 + 298.64748 -84.08941 5.42673 + 298.64745 -84.08892 5.42673 + 286.91126 -84.08892 5.92525 + 275.17507 -84.08892 6.35293 + 263.43889 -84.08892 6.71265 + 251.70270 -84.08892 7.00733 + 239.96651 -84.08892 7.23985 + 239.96641 -84.08729 7.23985 + 229.04205 -84.08729 7.40265 + 218.11769 -84.08729 7.51668 + 207.19334 -84.08729 7.58428 + 196.26898 -84.08729 7.60776 + 185.34463 -84.08729 7.58945 + 185.34474 -84.08742 7.58945 + 174.40064 -84.08742 7.53168 + 163.45654 -84.08742 7.43678 + 152.51244 -84.08742 7.30708 + 141.56834 -84.08742 7.14491 + 130.62423 -84.08742 6.95259 + 130.62423 -84.08744 6.95259 + 118.02168 -84.08744 6.69719 + 105.41913 -84.08744 6.40856 + 92.81658 -84.08744 6.09025 + 80.21403 -84.08744 5.74580 + 67.61148 -84.08744 5.37877 + 67.61148 -84.08744 5.37877 + 54.99942 -84.08744 4.99269 + 42.38735 -84.08744 4.59114 + 29.77528 -84.08744 4.17764 + 17.16322 -84.08744 3.75576 + 4.55115 -84.08744 3.32905 + 4.55009 -84.08244 3.32905 + -8.06187 -84.08244 2.90106 + -20.67383 -84.08244 2.47534 + -33.28579 -84.08244 2.05544 + -45.89775 -84.08244 1.64491 + -58.50971 -84.08244 1.24730 + -58.50763 -84.06569 1.24730 + -71.10885 -84.06569 0.86617 + -83.71007 -84.06569 0.50506 + -96.31129 -84.06569 0.16753 + -108.91250 -84.06569 -0.14289 + -121.51372 -84.06569 -0.42264 + -121.51371 -84.06591 -0.42264 + -121.68219 -84.06591 -0.42616 + -121.85068 -84.06591 -0.42967 + -122.01916 -84.06591 -0.43318 + -122.18764 -84.06591 -0.43668 + -122.35612 -84.06591 -0.44017 + -122.35614 -84.06565 -0.44017 + -125.55658 -84.06565 -0.50538 + -128.75702 -84.06565 -0.56830 + -131.95746 -84.06565 -0.62887 + -135.15790 -84.06565 -0.68705 + -138.35834 -84.06565 -0.74277 + -138.35821 72.67075 -0.74277 + -129.64834 72.67075 -0.90249 + -120.93847 72.67075 -1.03869 + -112.22860 72.67075 -1.15295 + -103.51873 72.67075 -1.24685 + -94.80886 72.67075 -1.32197 + -94.80854 72.66299 -1.32197 + -90.53500 69.69975 -1.35299 + -86.46196 66.06187 -1.37990 + -82.61798 62.09856 -1.40289 + -79.01844 57.91514 -1.42211 + -75.67587 53.54132 -1.43776 + -75.67546 53.51957 -1.43776 + -70.87274 52.01059 -1.45500 + -66.21190 50.44126 -1.46485 + -61.69110 48.93327 -1.46778 + -57.30459 47.49069 -1.46426 + -53.04635 46.11333 -1.45477 + -53.04643 46.11114 -1.45477 + -48.90812 44.81411 -1.43975 + -44.88466 43.58877 -1.41964 + -40.96916 42.44179 -1.39483 + -37.15437 41.37565 -1.36574 + -33.43340 40.37403 -1.33277 + -33.43342 40.37194 -1.33277 + -29.42481 39.74957 -1.29255 + -25.47604 39.17644 -1.24862 + -21.58227 38.64605 -1.20148 + -17.74058 38.12848 -1.15161 + -13.95071 37.61236 -1.09950 + -13.95010 37.60581 -1.09950 + -8.84375 34.87160 -1.02381 + -4.24242 30.75419 -0.94595 + -0.23367 26.43793 -0.86690 + 3.16368 22.02093 -0.78767 + 5.93736 17.53944 -0.70922 + 5.93610 17.53263 -0.70922 + 8.08646 13.20334 -0.63242 + 9.65550 9.22916 -0.55761 + 10.69339 5.61637 -0.48507 + 11.25103 2.36896 -0.41506 + 11.37972 -0.51144 -0.34785 + 11.37963 -0.50828 -0.34785 + 11.13325 -2.95156 -0.28355 + 10.58041 -4.88553 -0.22200 + 9.79248 -6.31107 -0.16301 + 8.84019 -7.23459 -0.10640 + 7.79311 -7.66793 -0.05198 + 7.79316 -7.66579 -0.05198 + 6.71239 -7.75568 0.00048 + 5.63174 -7.66485 0.05130 + 4.57619 -7.39777 0.10072 + 3.57016 -6.95804 0.14899 + 2.63761 -6.34836 0.19639 + 2.63768 -6.34769 0.19639 + 1.80176 -5.56990 0.24316 + 1.08644 -4.62505 0.28950 + 0.51829 -3.44442 0.33553 + 0.13866 -1.91832 0.38139 + 0.00001 0.00009 0.42722 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -5718,24 +5854,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -5810,8 +5946,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -5829,7 +5965,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -5841,7 +5977,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -5871,7 +6007,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -6012,13 +6148,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P - 78.00020 0.00000 78.00020 78.00020 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00048 0.00000 78.00048 78.00048 502 100 P 78.00086 0.00000 78.00086 78.00086 502 100 P 78.00124 0.00000 78.00124 78.00124 502 100 P 78.00162 0.00000 78.00162 78.00162 502 100 P - 78.00190 0.00000 78.00190 78.00190 502 100 P + 78.00190 0.00000 78.00190 78.00191 502 100 P 78.00230 0.00000 78.00230 78.00230 502 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -6031,26 +6167,26 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.36256 69.84300 58.91108 10.23728 1 0 A - 4.62718 70.73571 59.07501 10.45829 110 0 1 - 4.93071 71.62842 59.55950 10.80128 110 0 1 - 5.26192 72.52113 60.24321 11.14428 110 0 1 - 5.61893 73.41384 61.05177 11.48728 110 0 1 - 5.91410 74.30655 61.71273 11.74453 110 0 1 - 6.08560 74.30655 62.17548 11.91602 110 0 1 - 6.40284 75.19926 62.89559 12.17327 110 0 1 - 6.82625 76.09197 63.89046 12.51627 110 0 1 - 7.26842 76.98468 64.91817 12.85927 110 0 1 - 7.72774 77.87739 65.97136 13.20226 110 0 1 - 8.11681 78.77010 66.77420 13.45951 110 0 1 - 11.97880 78.77010 41.96461 15.49997 110 0 1 - 9.09054 82.75110 38.00268 12.27314 110 0 1 - 7.41831 86.73210 32.76169 10.18968 110 0 1 - 5.52877 90.71310 27.56116 8.10622 110 0 1 - 3.88403 94.69410 22.39249 6.02276 110 0 1 - 2.78399 98.67510 18.53208 4.46017 110 0 1 - 18.10990 98.67510 33.91813 2.66609 220 53 2 - 2.94144 100.04850 40.08908 3.16905 110 0 1 + 0.36256 69.84300 58.91108 10.20104 1 0 A + 4.63828 70.73571 59.07501 10.45829 110 0 1 + 4.94188 71.62842 59.55950 10.80128 110 0 1 + 5.27315 72.52113 60.24321 11.14428 110 0 1 + 5.63022 73.41384 61.05177 11.48728 110 0 1 + 5.92545 74.30655 61.71273 11.74453 110 0 1 + 6.09695 74.30655 62.17548 11.91602 110 0 1 + 6.41425 75.19926 62.89559 12.17327 110 0 1 + 6.83771 76.09197 63.89046 12.51627 110 0 1 + 7.27994 76.98468 64.91817 12.85927 110 0 1 + 7.73930 77.87739 65.97136 13.20226 110 0 1 + 8.12842 78.77010 66.77420 13.45951 110 0 1 + 10.31772 78.77010 41.96461 13.83574 110 0 1 + 9.09363 82.75110 38.00268 12.27314 110 0 1 + 7.42133 86.73210 32.76169 10.18968 110 0 1 + 5.53506 90.71310 27.56116 8.10622 110 0 1 + 3.89935 94.69410 22.39249 6.02276 110 0 1 + 2.79941 98.67510 18.53208 4.46017 110 0 1 + 18.21012 98.67510 33.91813 2.66609 220 54 2 + 3.01314 100.04850 40.08908 3.16905 110 0 1 2.07185 101.42190 48.22870 3.83967 1 0 A 2.43581 102.79530 56.28858 4.51028 1 0 A 2.80048 104.16870 64.29642 5.18090 1 0 A @@ -6062,23 +6198,23 @@ Status character 4.63207 111.03570 104.14003 8.53399 1 0 A 4.90758 112.40910 110.12653 9.03695 1 0 A 5.09133 112.40910 114.12106 9.37226 1 0 A - 6.33646 113.78250 120.11821 9.87522 110 0 1 - 7.75955 115.15590 128.12317 10.54584 110 0 1 - 9.15470 116.52930 136.13813 11.21646 110 0 1 - 10.52394 117.90270 144.16229 11.88707 110 0 1 - 11.70169 119.27610 150.18570 12.39004 110 0 1 - 12.03700 119.27610 154.20390 12.72534 110 0 1 - 13.19378 120.64950 160.23477 13.22831 110 0 1 - 14.50073 122.02290 168.28135 13.89892 110 9 1 - 15.79327 123.39630 176.33377 14.56954 110 9 1 - 17.07449 124.76970 184.39132 15.24016 110 9 1 - 18.17990 126.14310 190.43734 15.74312 110 10 1 - 14.88415 126.14310 194.46939 11.38031 110 8 1 - 19.61569 127.51650 200.51935 16.58139 110 10 1 - 20.88117 128.88990 208.58880 17.25201 110 10 1 - 23.27347 130.26330 216.66126 17.92263 110 11 1 - 26.11116 131.63670 224.73639 18.59324 110 12 1 - 28.86792 133.01010 230.79421 19.09621 110 13 1 + 6.37558 113.78250 120.11821 9.87522 110 0 1 + 7.79896 115.15590 128.12317 10.54584 110 0 1 + 9.19438 116.52930 136.13813 11.21646 110 0 1 + 10.56391 117.90270 144.16229 11.88707 110 0 1 + 11.74196 119.27610 150.18570 12.39004 110 0 1 + 12.07727 119.27610 154.20390 12.72534 110 0 1 + 13.23436 120.64950 160.23477 13.22831 110 8 1 + 14.54164 122.02290 168.28135 13.89892 110 9 1 + 15.83453 123.39630 176.33377 14.56954 110 9 1 + 17.11614 124.76970 184.39132 15.24016 110 9 1 + 18.22196 126.14310 190.43734 15.74312 110 10 1 + 18.55726 126.14310 194.46939 16.07843 110 10 1 + 19.65819 127.51650 200.51935 16.58139 110 10 1 + 20.92412 128.88990 208.58880 17.25201 110 10 1 + 23.17815 130.26330 216.66126 17.92263 110 11 1 + 26.01130 131.63670 224.73639 18.59324 110 12 1 + 28.76351 133.01010 230.79421 19.09621 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6093,9 +6229,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.360 'Hydrobiaklei' - -12.00 3.330 'Basisveen' - -12.50 37.919 'Eerste zandlaag' + -11.09 5.370 'Hydrobiaklei' + -12.00 3.251 'Basisveen' + -12.50 38.224 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6114,7 +6250,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.56 'Eerste zandlaag' + -12.50 -14.67 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6252,24 +6388,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -6344,8 +6480,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -6363,7 +6499,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -6375,7 +6511,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -6405,7 +6541,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -6546,73 +6682,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 502 100 P 78.00440 0.00000 78.00440 78.00440 502 100 P 78.00560 0.00000 78.00560 78.00560 502 100 P 78.00680 0.00000 78.00680 78.00680 502 100 P 78.00770 0.00000 78.00770 78.00770 502 100 P - 44.47165 66.90000 67.75891 5.13458 220 66 2 - 59.96417 67.48860 70.78484 5.36388 330 85 3 - 67.24695 68.07720 74.81942 5.66961 330 90 3 - 71.13776 68.66580 78.85400 5.97534 440 90 4 - 74.91020 69.25440 82.88858 6.28107 440 90 4 - 77.77232 69.84300 85.91452 6.51036 440 91 4 - 15.99514 69.84300 58.91108 10.23728 110 27 1 - 22.16509 70.73571 59.07501 10.45829 110 38 1 - 21.81991 71.62842 59.55950 10.80128 110 37 1 - 21.45591 72.52113 60.24321 11.14428 110 36 1 - 21.07501 73.41384 61.05177 11.48728 110 35 1 - 20.67911 74.30655 61.71273 11.74453 110 34 1 - 20.67911 74.30655 62.17548 11.91602 110 33 1 - 20.27007 75.19926 62.89559 12.17327 110 32 1 - 19.84952 76.09197 63.89046 12.51627 110 31 1 - 19.41907 76.98468 64.91817 12.85927 110 30 1 - 18.98033 77.87739 65.97136 13.20226 110 29 1 - 18.88077 78.77010 66.77420 13.45951 110 28 1 - 18.43846 78.77010 41.96461 15.49997 110 44 1 - 15.09725 82.75110 38.00268 12.27314 110 40 1 - 12.89302 86.73210 32.76169 10.18968 110 39 1 - 10.68367 90.71310 27.56116 8.10622 110 39 1 - 9.11031 94.69410 22.39249 6.02276 110 41 1 - 7.91441 98.67510 18.53208 4.46017 110 43 1 - 28.91230 98.67510 33.91813 2.66609 330 85 3 - 31.37204 100.04850 40.08908 3.16905 220 78 2 - 32.53265 101.42190 48.22870 3.83967 220 67 2 - 33.63290 102.79530 56.28858 4.51028 220 60 2 - 34.69784 104.16870 64.29642 5.18090 220 54 2 - 35.18986 105.54210 70.28227 5.68386 220 50 2 - 35.42529 105.54210 74.26662 6.01917 110 48 1 - 33.18643 106.91550 80.23883 6.52214 110 41 1 - 30.98600 108.28890 88.20049 7.19275 110 35 1 - 28.74898 109.66230 96.16625 7.86337 110 30 1 - 26.49195 111.03570 104.14003 8.53399 110 25 1 - 24.13977 112.40910 110.12653 9.03695 110 22 1 - 24.32351 112.40910 114.12106 9.37226 110 21 1 - 21.98148 113.78250 120.11821 9.87522 110 18 1 - 19.74560 115.15590 128.12317 10.54584 110 15 1 - 17.52696 116.52930 136.13813 11.21646 110 13 1 - 15.32857 117.90270 144.16229 11.88707 110 11 1 - 13.07838 119.27610 150.18570 12.39004 110 9 1 - 13.41369 119.27610 154.20390 12.72534 110 9 1 - 13.26283 120.64950 160.23477 13.22831 110 8 1 - 13.29712 122.02290 168.28135 13.89892 110 0 1 - 13.34582 123.39630 176.33377 14.56954 110 0 1 - 13.40582 124.76970 184.39132 15.24016 110 0 1 - 13.30635 126.14310 190.43734 15.74312 110 0 1 - 8.95452 126.14310 194.46939 11.38031 110 0 1 - 13.54709 127.51650 200.51935 16.58139 110 0 1 - 13.62285 128.88990 208.58880 17.25201 110 0 1 - 13.69961 130.26330 216.66126 17.92263 110 0 1 - 13.77566 131.63670 224.73639 18.59324 110 0 1 - 13.68166 133.01010 230.79421 19.09621 110 0 1 + 44.46732 66.90000 67.75891 5.13458 220 66 2 + 59.96069 67.48860 70.78484 5.36388 330 85 3 + 67.24325 68.07720 74.81942 5.66961 330 90 3 + 71.13747 68.66580 78.85400 5.97534 440 90 4 + 74.90988 69.25440 82.88858 6.28107 440 90 4 + 77.77197 69.84300 85.91452 6.51036 440 91 4 + 15.95633 69.84300 58.91108 10.20104 110 27 1 + 22.20891 70.73571 59.07501 10.45829 110 38 1 + 21.86186 71.62842 59.55950 10.80128 110 37 1 + 21.49583 72.52113 60.24321 11.14428 110 36 1 + 21.11274 73.41384 61.05177 11.48728 110 35 1 + 20.71449 74.30655 61.71273 11.74453 110 34 1 + 20.71449 74.30655 62.17548 11.91602 110 33 1 + 20.30291 75.19926 62.89559 12.17327 110 32 1 + 19.87965 76.09197 63.89046 12.51627 110 31 1 + 19.44633 76.98468 64.91817 12.85927 110 30 1 + 19.00458 77.87739 65.97136 13.20226 110 29 1 + 18.87664 78.77010 66.77420 13.45951 110 28 1 + 16.76784 78.77010 41.96461 13.83574 110 40 1 + 15.09090 82.75110 38.00268 12.27314 110 40 1 + 12.88670 86.73210 32.76169 10.18968 110 39 1 + 10.67738 90.71310 27.56116 8.10622 110 39 1 + 9.10847 94.69410 22.39249 6.02276 110 41 1 + 7.91274 98.67510 18.53208 4.46017 110 43 1 + 28.91165 98.67510 33.91813 2.66609 330 85 3 + 31.37173 100.04850 40.08908 3.16905 220 78 2 + 32.53347 101.42190 48.22870 3.83967 220 67 2 + 33.63497 102.79530 56.28858 4.51028 220 60 2 + 34.70130 104.16870 64.29642 5.18090 220 54 2 + 35.19483 105.54210 70.28227 5.68386 220 50 2 + 35.43563 105.54210 74.26662 6.01917 110 48 1 + 33.20027 106.91550 80.23883 6.52214 110 41 1 + 31.00362 108.28890 88.20049 7.19275 110 35 1 + 28.77067 109.66230 96.16625 7.86337 110 30 1 + 26.51795 111.03570 104.14003 8.53399 110 25 1 + 24.17032 112.40910 110.12653 9.03695 110 22 1 + 24.35407 112.40910 114.12106 9.37226 110 21 1 + 22.01681 113.78250 120.11821 9.87522 110 18 1 + 19.78588 115.15590 128.12317 10.54584 110 15 1 + 17.57232 116.52930 136.13813 11.21646 110 13 1 + 15.37912 117.90270 144.16229 11.88707 110 11 1 + 13.11731 119.27610 150.18570 12.39004 110 9 1 + 13.37342 119.27610 154.20390 12.72534 110 9 1 + 13.22226 120.64950 160.23477 13.22831 110 0 1 + 13.25621 122.02290 168.28135 13.89892 110 0 1 + 13.30455 123.39630 176.33377 14.56954 110 0 1 + 13.36418 124.76970 184.39132 15.24016 110 0 1 + 13.26429 126.14310 190.43734 15.74312 110 0 1 + 13.59959 126.14310 194.46939 16.07843 110 0 1 + 13.50460 127.51650 200.51935 16.58139 110 0 1 + 13.57990 128.88990 208.58880 17.25201 110 0 1 + 13.65618 130.26330 216.66126 17.92263 110 0 1 + 13.73176 131.63670 224.73639 18.59324 110 0 1 + 13.63727 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6626,10 +6762,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 20.063 'Grind' - -11.09 18.487 'Hydrobiaklei' - -12.00 6.096 'Basisveen' - -12.50 75.516 'Eerste zandlaag' + -10.79 20.062 'Grind' + -11.09 18.513 'Hydrobiaklei' + -12.00 6.010 'Basisveen' + -12.50 75.829 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6646,9 +6782,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 8.11 'Grind' - -11.09 3.93 'Hydrobiaklei' + -11.09 3.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.99 'Eerste zandlaag' + -12.50 29.11 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6872,7 +7008,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 118.08428 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 118.07428 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -6897,21 +7033,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.78 : Percentage mobilized resistance left - 13.35 : Percentage mobilized resistance right - 108.96 : Effective left - 204.26 : Effective right + 11.75 : Percentage mobilized resistance left + 13.33 : Percentage mobilized resistance right + 108.67 : Effective left + 203.97 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 925.02 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -11008.78 : Max moment left --16790.25 : Max moment right --1272.21 : Max mobilized moment left --1710.81 : Max mobilized moment right - 38.23 : Vertical force left - 52.94 : Vertical force right - 11.6 : Max mobilized moment percentage left +-16790.18 : Max moment right +-1269.18 : Max mobilized moment left +-1707.82 : Max mobilized moment right + 38.13 : Vertical force left + 52.91 : Vertical force right + 11.5 : Max mobilized moment percentage left 10.2 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support @@ -6919,17 +7055,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.23 : Active force -52.94 : Passive force --38.23 : Plugged active force -52.94 : Plugged passive force +-38.13 : Active force +52.91 : Passive force +-38.13 : Plugged active force +52.91 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -14.70 : Resulting Vertical Force Unplugged -14.70 : Resulting Vertical Force Plugged +14.77 : Resulting Vertical Force Unplugged +14.77 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -6942,192 +7078,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -13.90709 - 0.00000 0.00000 -13.52154 - 0.00000 0.00000 -13.13598 - 0.00000 0.00000 -12.75043 - 0.00000 0.00000 -12.36488 - 0.00000 0.00000 -11.97932 - 0.00000 0.00000 -11.97932 - 0.00000 0.00000 -11.59377 - 0.00000 0.00000 -11.20822 - 0.00000 0.00000 -10.82266 - 0.00000 0.00000 -10.43711 - 0.00000 0.00000 -10.05156 - 0.00000 0.00000 -10.05156 - -0.00339 -0.08476 -9.53749 - -0.02712 -0.33903 -9.02343 - -0.09154 -0.76283 -8.50935 - -0.21698 -1.35613 -7.99525 - -0.42379 -2.11896 -7.48112 - -0.42379 -2.11896 -7.48112 - -0.67297 -2.88414 -7.05265 - -1.00454 -3.76704 -6.62410 - -1.43030 -4.76766 -6.19544 - -1.96200 -5.88600 -5.76661 - -2.61142 -7.12206 -5.33758 - -2.61142 -7.12206 -5.33758 - -3.39034 -8.47584 -4.90830 - -4.31051 -9.94734 -4.47866 - -5.38373 -11.53656 -4.04855 - -6.62175 -13.24350 -3.61786 - -8.03635 -15.06816 -3.18648 - -8.03635 177.77184 -3.18648 - 7.18113 176.10848 -2.81506 - 22.25181 174.35805 -2.44419 - 37.16822 172.52056 -2.07504 - 51.92285 170.59601 -1.70876 - 66.50823 168.58438 -1.34652 - 66.50823 50.50010 -1.34652 - 72.10705 47.69933 -0.87422 - 77.37787 44.74557 -0.41176 - 82.30323 41.63882 0.04019 - 86.86570 38.37908 0.48095 - 91.04785 34.96636 0.90986 - 91.04937 34.94786 0.90986 - 93.75590 32.82357 1.20344 - 96.31600 31.25650 1.49071 - 98.76768 30.09219 1.77153 - 101.13931 29.24894 2.04571 - 103.45479 28.67873 2.31310 - 103.45391 28.67088 2.31310 - 104.02643 28.58349 2.37886 - 104.59736 28.51286 2.44419 - 105.16706 28.46064 2.50908 - 105.73591 28.42677 2.57353 - 106.30425 28.40946 2.63753 - 106.30404 28.41125 2.63753 - 109.01701 25.85460 2.95079 - 111.47623 23.33611 3.25261 - 113.68546 20.85452 3.54274 - 115.64804 18.39998 3.82096 - 117.36600 15.96157 4.08704 - 117.36618 15.96327 4.08704 - 118.84116 13.53871 4.34077 - 120.07439 11.12820 4.58202 - 121.06726 8.73146 4.81069 - 121.82113 6.34818 5.02667 - 122.33732 3.97776 5.22986 - 122.33732 3.97807 5.22986 - 122.61723 1.62176 5.42017 - 122.66203 -0.72384 5.59761 - 122.47285 -3.05795 5.76220 - 122.05080 -5.38116 5.91395 - 121.39695 -7.69439 6.05289 - 121.39691 -7.69381 6.05289 - 120.09407 -10.91537 6.22593 - 118.34138 -14.12044 6.37425 - 116.14106 -17.31026 6.49831 - 113.49513 -20.48667 6.59855 - 110.40530 -23.65223 6.67543 - 110.40517 -23.65027 6.67543 - 107.30268 -24.06535 6.72641 - 104.15337 -24.36066 6.75835 - 100.97524 -24.50967 6.77182 - 97.78574 -24.54593 6.76738 - 94.59726 -24.49091 6.74558 - 94.59740 -24.49107 6.74558 - 91.32217 -26.13727 6.70697 - 87.77907 -28.30582 6.65217 - 83.97982 -30.07814 6.58182 - 79.97593 -31.45422 6.49661 - 75.81890 -32.43405 6.39721 - 75.81889 -32.43407 6.39721 - 70.90280 -33.33305 6.26626 - 65.85231 -34.23202 6.11868 - 60.66743 -35.13099 5.95567 - 55.34814 -36.02997 5.77846 - 49.89446 -36.92894 5.58826 - 49.89446 -36.92894 5.58826 - 44.30639 -37.82792 5.38631 - 38.58392 -38.72689 5.17397 - 32.72705 -39.62586 4.95260 - 26.73579 -40.52484 4.72358 - 20.61012 -41.42381 4.48828 - 20.60885 -41.41780 4.48828 - 14.34969 -42.31677 4.24814 - 7.95614 -43.21575 4.00465 - 1.49546 -42.76463 3.75928 - -4.72903 -40.27758 3.51353 - -10.51217 -37.08081 3.26887 - -10.50967 -37.06066 3.26887 - -15.81124 -33.81501 3.02677 - -20.61279 -30.41741 2.78839 - -24.90888 -27.07665 2.55474 - -28.71492 -23.86058 2.32682 - -32.04984 -20.77794 2.10566 - -32.04982 -20.77821 2.10566 - -32.09134 -20.73753 2.10275 - -32.13277 -20.69688 2.09984 - -32.17412 -20.65625 2.09694 - -32.21540 -20.61563 2.09403 - -32.25659 -20.57504 2.09113 - -32.25660 -20.57473 2.09113 - -33.02570 -19.90504 2.03623 - -33.76944 -19.23960 1.98184 - -34.48796 -18.57750 1.92795 - -35.18137 -17.91865 1.87459 - -35.84982 -17.26377 1.82176 - -35.84967 -17.26369 1.82176 - -37.79729 -15.20427 1.65857 - -39.50011 -13.18021 1.50109 - -40.96150 -11.18001 1.34956 - -42.18412 -9.20020 1.20418 - -43.17054 -7.24529 1.06518 - -43.17073 -7.24335 1.06518 - -43.57595 -6.26504 0.99813 - -43.92263 -5.29155 0.93273 - -44.21098 -4.32038 0.86899 - -44.44112 -3.35104 0.80692 - -44.61317 -2.38508 0.74652 - -44.61309 -2.38653 0.74652 - -44.75712 -0.87114 0.65816 - -44.77995 0.37040 0.57368 - -44.68950 1.61882 0.49308 - -44.48504 2.87653 0.41637 - -44.16576 4.14126 0.34352 - -44.16588 4.14295 0.34352 - -43.67177 6.39600 0.27452 - -43.03072 7.69598 0.20932 - -42.27053 9.01474 0.14785 - -41.38940 10.35455 0.09005 - -40.38588 11.69834 0.03584 - -40.38588 11.69723 0.03584 - -39.13967 13.22203 -0.01966 - -37.74240 14.71895 -0.07106 - -36.19672 16.19058 -0.11850 - -34.50504 17.63938 -0.16216 - -32.66953 19.06765 -0.20220 - -32.67090 19.09462 -0.20220 - -30.07004 18.06414 -0.25253 - -27.61132 17.06850 -0.29669 - -25.28832 16.12726 -0.33513 - -23.09260 15.25203 -0.36835 - -21.01451 14.44628 -0.39682 - -21.01445 14.44002 -0.39682 - -19.04337 13.73073 -0.42099 - -17.16591 13.10580 -0.44124 - -15.37057 12.54912 -0.45795 - -13.65258 11.98346 -0.47148 - -12.01776 11.36286 -0.48220 - -12.01788 11.35864 -0.48220 - -10.47376 10.69373 -0.49047 - -9.02527 9.99387 -0.49659 - -7.67672 9.26728 -0.50083 - -6.43135 8.52112 -0.50348 - -5.29144 7.76142 -0.50480 - -5.29153 7.75946 -0.50480 - -4.27255 6.84502 -0.50506 - -3.36831 6.07221 -0.50444 - -2.57239 5.29823 -0.50311 - -1.88474 4.52577 -0.50123 - -1.30501 3.75684 -0.49896 - -1.30505 3.75629 -0.49896 - -0.83272 2.99227 -0.49646 - -0.46694 2.23409 -0.49378 - -0.20687 1.48240 -0.49099 - -0.05155 0.73765 -0.48813 - 0.00001 0.00004 -0.48527 + 0.00000 0.00000 -13.91690 + 0.00000 0.00000 -13.53104 + 0.00000 0.00000 -13.14518 + 0.00000 0.00000 -12.75933 + 0.00000 0.00000 -12.37347 + 0.00000 0.00000 -11.98761 + 0.00000 0.00000 -11.98761 + 0.00000 0.00000 -11.60175 + 0.00000 0.00000 -11.21589 + 0.00000 0.00000 -10.83004 + 0.00000 0.00000 -10.44418 + 0.00000 0.00000 -10.05832 + 0.00000 0.00000 -10.05832 + -0.00339 -0.08476 -9.54385 + -0.02712 -0.33903 -9.02938 + -0.09154 -0.76283 -8.51489 + -0.21698 -1.35613 -8.00039 + -0.42379 -2.11896 -7.48585 + -0.42379 -2.11896 -7.48585 + -0.67297 -2.88414 -7.05704 + -1.00454 -3.76704 -6.62815 + -1.43030 -4.76766 -6.19915 + -1.96200 -5.88600 -5.76999 + -2.61142 -7.12206 -5.34062 + -2.61142 -7.12206 -5.34062 + -3.39034 -8.47584 -4.91100 + -4.31051 -9.94734 -4.48102 + -5.38373 -11.53656 -4.05057 + -6.62175 -13.24350 -3.61955 + -8.03635 -15.06816 -3.18783 + -8.03635 177.77184 -3.18783 + 7.18113 176.10848 -2.81611 + 22.25181 174.35805 -2.44495 + 37.16822 172.52056 -2.07551 + 51.92285 170.59601 -1.70894 + 66.50823 168.58438 -1.34640 + 66.50823 50.51010 -1.34640 + 72.10819 47.70933 -0.87372 + 77.38015 44.75557 -0.41087 + 82.30665 41.64882 0.04146 + 86.87026 38.38909 0.48261 + 91.05355 34.97636 0.91190 + 91.05507 34.95785 0.91190 + 93.76240 32.83345 1.20575 + 96.32329 31.26676 1.49329 + 98.77585 30.10376 1.77438 + 101.14847 29.26223 2.04883 + 103.46509 28.69389 2.31648 + 103.46421 28.68604 2.31648 + 104.03703 28.59914 2.38231 + 104.60828 28.52901 2.44771 + 105.17832 28.47730 2.51267 + 105.74750 28.44395 2.57718 + 106.31618 28.42717 2.64125 + 106.31598 28.42897 2.64125 + 109.03074 25.87278 2.95484 + 111.49181 23.35479 3.25699 + 113.70293 20.87374 3.54745 + 115.66745 18.41963 3.82600 + 117.38739 15.98153 4.09240 + 117.38757 15.98324 4.09240 + 118.86457 13.55901 4.34645 + 120.09984 11.14885 4.58802 + 121.09480 8.75248 4.81701 + 121.85079 6.36959 5.03330 + 122.36914 3.99959 5.23680 + 122.36914 3.99990 5.23680 + 122.65118 1.64287 5.42743 + 122.69811 -0.70228 5.60517 + 122.51111 -3.03591 5.77006 + 122.09130 -5.35864 5.92211 + 121.43972 -7.67137 6.06134 + 121.43968 -7.67078 6.06134 + 120.14012 -10.89160 6.23478 + 118.39080 -14.09590 6.38349 + 116.19398 -17.28492 6.50793 + 113.55165 -20.46049 6.60855 + 110.46555 -23.62518 6.68579 + 110.46542 -23.62322 6.68579 + 107.36108 -24.09929 6.73709 + 104.20758 -24.39122 6.76934 + 101.02571 -24.53675 6.78312 + 97.83288 -24.57035 6.77897 + 94.64134 -24.51349 6.75746 + 94.64148 -24.51365 6.75746 + 91.36330 -26.16003 6.71913 + 87.81724 -28.32859 6.66459 + 84.01503 -30.10090 6.59451 + 80.00818 -31.47698 6.50956 + 75.84819 -32.45681 6.41041 + 75.84819 -32.45684 6.41041 + 70.92869 -33.35581 6.27975 + 65.87480 -34.25478 6.13244 + 60.68651 -35.15376 5.96971 + 55.36382 -36.05273 5.79276 + 49.90674 -36.95170 5.60282 + 49.90674 -36.95170 5.60282 + 44.31527 -37.85068 5.40114 + 38.58939 -38.74965 5.18905 + 32.72912 -39.64862 4.96794 + 26.73445 -40.54760 4.73918 + 20.60539 -41.44657 4.50414 + 20.60412 -41.44057 4.50414 + 14.34155 -42.33955 4.26425 + 7.94459 -43.23852 4.02102 + 1.48051 -42.78756 3.77592 + -4.74718 -40.29559 3.53044 + -10.53224 -37.08854 3.28605 + -10.52974 -37.06843 3.28605 + -15.81943 -33.68921 3.04422 + -20.60116 -30.27675 2.80612 + -24.87479 -26.91676 2.57274 + -28.65547 -23.68117 2.34509 + -31.96209 -20.57873 2.12418 + -31.96208 -20.57900 2.12418 + -32.00319 -20.53806 2.12128 + -32.04423 -20.49714 2.11837 + -32.08518 -20.45624 2.11547 + -32.12605 -20.41536 2.11257 + -32.16684 -20.37450 2.10967 + -32.16686 -20.37419 2.10967 + -32.92828 -19.70111 2.05483 + -33.66420 -19.03227 2.00049 + -34.37477 -18.36676 1.94667 + -35.06011 -17.70450 1.89336 + -35.72036 -17.04619 1.84059 + -35.72021 -17.04610 1.84059 + -37.64107 -14.97579 1.67755 + -39.31581 -12.94075 1.52021 + -40.74780 -10.92952 1.36878 + -41.93970 -8.93861 1.22347 + -42.89406 -6.97258 1.08451 + -42.89417 -6.97390 1.08451 + -43.28306 -5.99002 1.01747 + -43.61307 -5.01096 0.95206 + -43.88442 -4.03422 0.88830 + -44.09721 -3.05933 0.82619 + -44.25160 -2.08783 0.76575 + -44.25153 -2.08939 0.76575 + -44.36128 -0.45195 0.67729 + -44.34547 0.80036 0.59268 + -44.21540 2.05961 0.51192 + -43.97033 3.32822 0.43500 + -43.60945 4.60388 0.36190 + -43.60946 4.60249 0.36190 + -43.13156 5.90164 0.29260 + -42.53500 7.21257 0.22705 + -41.81831 8.54226 0.16519 + -40.97967 9.89295 0.10695 + -40.01762 11.24935 0.05228 + -40.01762 11.24816 0.05228 + -38.81590 12.78146 -0.00377 + -37.46227 14.28651 -0.05575 + -35.95945 15.76588 -0.10380 + -34.30987 17.22203 -0.14810 + -32.51574 18.65726 -0.18879 + -32.51714 18.68469 -0.18879 + -29.97040 17.70070 -0.24008 + -27.55936 16.75057 -0.28519 + -25.27775 15.85381 -0.32462 + -23.11727 15.02196 -0.35882 + -21.06842 14.25841 -0.38826 + -21.06835 14.25216 -0.38826 + -19.12069 13.58386 -0.41340 + -17.26100 12.99863 -0.43460 + -15.47828 12.47323 -0.45223 + -13.76936 11.92926 -0.46667 + -12.14083 11.32669 -0.47828 + -12.14095 11.32243 -0.47828 + -10.60084 10.67200 -0.48740 + -9.15458 9.98314 -0.49436 + -7.80697 9.26418 -0.49940 + -6.56168 8.52236 -0.50283 + -5.42149 7.76381 -0.50490 + -5.42157 7.76182 -0.50490 + -4.38872 6.99159 -0.50588 + -3.46428 6.21383 -0.50597 + -2.64904 5.43198 -0.50532 + -1.94339 4.64878 -0.50410 + -1.34735 3.86630 -0.50249 + -1.34740 3.86573 -0.50249 + -0.86085 3.08537 -0.50063 + -0.48335 2.30806 -0.49859 + -0.21442 1.53449 -0.49643 + -0.05350 0.76508 -0.49421 + 0.00001 0.00004 -0.49198 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7477,7 +7613,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -7489,7 +7625,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -7500,17 +7636,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -7519,7 +7655,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -7549,13 +7685,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -7656,48 +7792,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 7.54074 0.00000 7.80254 0.68000 440 97 4 - 13.17839 0.00000 15.60507 1.36000 330 84 3 - 17.50107 0.00000 23.40761 2.04000 220 75 2 - 21.43680 0.00000 31.21015 2.72000 220 69 2 - 24.75910 0.00000 37.06205 3.23000 220 67 2 - 25.47492 0.00000 39.50034 3.44250 220 64 2 - 26.29901 0.00000 40.96332 3.57000 220 64 2 - 27.26364 0.00000 42.91395 3.74000 220 64 2 - 28.22564 0.00000 44.86459 3.91000 220 63 2 - 29.18498 0.00000 46.81522 4.08000 220 62 2 - 29.99850 0.00000 48.27820 4.20750 220 62 2 - 8.94480 0.00000 20.56677 6.30726 110 43 1 - 9.26632 0.98100 20.32861 6.32894 110 46 1 - 9.58089 1.96200 20.08785 6.35785 110 48 1 - 9.88119 2.94300 19.91182 6.38676 110 50 1 - 10.03190 3.92400 19.78100 6.41566 220 51 2 - 10.14989 4.90500 19.70421 6.43734 220 52 2 - 10.14709 4.90500 19.66214 6.45179 220 52 2 - 10.26548 5.88600 19.61027 6.47347 220 52 2 - 10.38136 6.86700 19.55671 6.50238 220 53 2 - 10.49502 7.84800 19.51850 6.53129 220 54 2 - 10.60563 8.82900 19.49272 6.56019 220 54 2 - 10.70939 9.81000 19.47992 6.58187 220 55 2 - 10.73474 9.81000 19.47440 6.63230 220 55 2 - 10.81528 10.79100 19.47010 6.61800 220 56 2 - 10.91345 11.77200 19.47023 6.64691 220 56 2 - 11.00678 12.75300 19.47646 6.67582 220 57 2 - 11.09503 13.73400 19.48795 6.70472 220 57 2 - 11.17305 14.71500 19.49947 6.72640 220 57 2 - 11.18500 14.71500 19.51051 6.74375 220 57 2 - 11.28509 16.08840 19.53319 6.77410 220 58 2 - 11.38131 17.46180 19.56875 6.81457 220 58 2 - 11.46661 18.83520 19.60984 6.85503 220 58 2 - 11.54096 20.20860 19.65566 6.89550 220 59 2 - 11.59585 21.58200 19.69261 6.92585 220 59 2 - 27.46026 21.58200 40.65119 7.89320 220 68 2 - 25.50028 25.39730 37.49247 5.34869 220 68 2 - 23.91567 29.21260 33.28909 4.15339 220 72 2 - 22.29587 33.02790 29.09277 2.95808 220 77 2 - 20.28128 36.84320 24.90135 1.76278 330 81 3 - 18.38616 40.65850 21.76001 0.86630 330 84 3 - 11.77687 40.65850 12.41397 0.26865 440 95 4 + 7.53843 0.00000 7.80254 0.68000 440 97 4 + 13.18871 0.00000 15.60507 1.36000 330 85 3 + 17.51816 0.00000 23.40761 2.04000 220 75 2 + 21.45550 0.00000 31.21015 2.72000 220 69 2 + 24.77940 0.00000 37.06205 3.23000 220 67 2 + 25.49522 0.00000 39.50034 3.44250 220 65 2 + 26.31971 0.00000 40.96332 3.57000 220 64 2 + 27.28474 0.00000 42.91395 3.74000 220 64 2 + 28.24714 0.00000 44.86459 3.91000 220 63 2 + 29.20688 0.00000 46.81522 4.08000 220 62 2 + 30.02080 0.00000 48.27820 4.20750 220 62 2 + 8.94851 0.00000 20.56677 6.30726 110 44 1 + 9.27035 0.98100 20.32861 6.32894 110 46 1 + 9.58523 1.96200 20.08785 6.35785 110 48 1 + 9.88583 2.94300 19.91182 6.38676 110 50 1 + 10.03443 3.92400 19.78100 6.41566 220 51 2 + 10.15258 4.90500 19.70421 6.43734 220 52 2 + 10.14978 4.90500 19.66214 6.45179 220 52 2 + 10.26834 5.88600 19.61027 6.47347 220 52 2 + 10.38438 6.86700 19.55671 6.50238 220 53 2 + 10.49820 7.84800 19.51850 6.53129 220 54 2 + 10.60898 8.82900 19.49272 6.56019 220 54 2 + 10.71289 9.81000 19.47992 6.58187 220 55 2 + 10.71923 9.81000 19.47440 6.59633 220 55 2 + 10.81895 10.79100 19.47010 6.61800 220 56 2 + 10.91727 11.77200 19.47023 6.64691 220 56 2 + 11.01075 12.75300 19.47646 6.67582 220 57 2 + 11.09916 13.73400 19.48795 6.70472 220 57 2 + 11.17733 14.71500 19.49947 6.72640 220 57 2 + 11.18928 14.71500 19.51051 6.74375 220 57 2 + 11.28958 16.08840 19.53319 6.77410 220 58 2 + 11.38600 17.46180 19.56875 6.81457 220 58 2 + 11.47150 18.83520 19.60984 6.85503 220 58 2 + 11.54606 20.20860 19.65566 6.89550 220 59 2 + 11.60113 21.58200 19.69261 6.92585 220 59 2 + 26.65696 21.58200 40.65119 6.24517 220 66 2 + 25.52164 25.39730 37.49247 5.34869 220 68 2 + 23.93766 29.21260 33.28909 4.15339 220 72 2 + 22.31847 33.02790 29.09277 2.95808 220 77 2 + 20.29287 36.84320 24.90135 1.76278 330 81 3 + 18.39804 40.65850 21.76001 0.86630 330 85 3 + 11.77452 40.65850 12.41397 0.26865 440 95 4 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -7711,94 +7847,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 15.05115 78.80074 17.96911 4.49986 330 84 3 - 22.69715 80.26733 36.36631 5.18955 220 62 2 - 22.96339 81.73392 39.87198 5.70681 220 58 2 - 22.29495 81.73392 42.19987 3.61198 220 53 2 - 23.91046 83.20052 45.68064 6.56892 220 52 2 - 23.98894 84.66711 50.30746 7.25860 110 48 1 - 23.27672 86.13371 54.92251 7.94829 110 42 1 - 22.59892 87.60031 59.53073 8.63797 110 38 1 - 21.78920 89.06690 62.98476 9.15524 110 35 1 - 21.96393 89.06690 64.15130 9.32997 110 34 1 - 21.95340 89.08652 64.19752 9.33689 110 34 1 - 21.94518 89.10614 64.25913 9.34611 110 34 1 - 21.93697 89.12576 64.32073 9.35534 110 34 1 - 21.92878 89.14538 64.38231 9.36457 110 34 1 - 21.91828 89.16500 64.42851 9.37149 110 34 1 - 19.75338 89.16500 58.82727 11.38885 110 34 1 - 19.64121 89.53778 59.19268 11.49627 110 33 1 - 19.56685 89.91056 59.68017 11.63950 110 33 1 - 19.49454 90.28334 60.16799 11.78273 110 32 1 - 19.42432 90.65612 60.65612 11.92596 110 32 1 - 19.32042 91.02890 61.02242 12.03338 110 32 1 - 19.46930 91.02890 61.53041 12.18226 110 32 1 - 19.15577 92.20610 62.68904 12.52149 110 31 1 - 18.97817 93.38330 64.23606 12.97380 110 30 1 - 18.82432 94.56050 65.78549 13.42610 110 29 1 - 18.69512 95.73770 67.33709 13.87840 110 28 1 - 18.47835 96.91490 68.50203 14.21763 110 27 1 - 18.64797 96.91490 69.08491 14.38724 110 27 1 - 18.54939 97.50350 69.66807 14.55686 110 27 1 - 18.51394 98.09210 70.44596 14.78301 110 26 1 - 18.48513 98.68070 71.22427 15.00916 110 26 1 - 18.46299 99.26930 72.00296 15.23531 110 26 1 - 18.39103 99.85790 72.58721 15.40493 110 25 1 - 16.47306 99.85790 73.07750 13.48696 110 23 1 - 18.43708 100.75061 73.96428 15.80446 110 25 1 - 18.44217 101.64332 75.14728 16.14746 110 25 1 - 18.46279 102.53603 76.33100 16.49046 110 24 1 - 18.49892 103.42874 77.51539 16.83345 110 24 1 - 18.46477 104.32145 78.40407 17.09070 110 24 1 - 36.30761 104.32145 78.99672 34.93354 110 46 1 - 18.61753 105.21416 79.88599 17.51945 110 23 1 - 18.69972 106.10687 81.07214 17.86244 110 23 1 - 18.79684 106.99958 82.25880 18.20544 110 23 1 - 18.90862 107.89229 83.44594 18.54844 110 23 1 - 18.94905 108.78500 84.33659 18.80568 110 22 1 - 20.69276 108.78500 56.86688 20.61391 110 36 1 - 22.34377 106.76600 61.08371 22.38663 110 0 1 - 24.59677 104.74700 66.69564 24.75026 110 0 1 - 26.86029 102.72800 72.29483 27.11388 110 0 1 - 29.13373 100.70900 77.88124 29.47751 110 0 1 - 30.82561 98.69000 82.06310 31.25023 110 0 1 - 17.93595 98.69000 272.58042 20.36232 110 0 1 - 17.82701 100.06340 271.86044 20.86529 110 0 1 - 17.95721 101.43680 274.54312 21.53590 110 0 1 - 18.15367 102.81020 279.33150 22.20652 110 0 1 - 18.41112 104.18360 285.19980 22.87714 110 0 1 - 18.55657 105.55700 290.01763 23.38010 110 0 1 - 18.89188 105.55700 293.38484 23.71541 110 0 1 - 19.08793 106.93040 298.60646 24.21837 110 0 1 - 19.49798 108.30380 305.78478 24.88899 110 0 1 - 19.95023 109.67720 313.15603 25.55961 110 0 1 - 20.44047 111.05060 320.66827 26.23022 110 0 1 - 20.79677 112.42400 326.37074 26.73319 110 0 1 - 21.13208 112.42400 330.20204 27.06849 110 0 1 - 21.51795 113.79740 335.98580 27.57146 110 0 1 - 22.09760 115.17080 343.74884 28.24207 110 0 1 - 22.70014 116.54420 351.56245 28.91269 110 0 1 - 23.32230 117.91760 359.41683 29.58331 110 0 1 - 23.79312 119.29100 365.32890 30.08627 110 0 1 - 24.12843 119.29100 369.28008 30.42158 110 0 1 - 24.61243 120.66440 375.21958 30.92454 110 0 1 - 25.27507 122.03780 383.15752 31.59516 110 0 1 - 25.94671 123.41120 391.11465 32.26578 110 0 1 - 26.62536 124.78460 399.08801 32.93639 110 0 1 - 27.14134 126.15800 405.07683 33.43936 110 0 1 - 27.47664 126.15800 409.07356 33.77467 110 0 1 - 27.99581 127.53140 415.07425 34.27763 110 0 1 - 28.68494 128.90480 423.08354 34.94825 110 0 1 - 29.37572 130.27820 431.10170 35.61886 110 0 1 - 30.06746 131.65160 439.12760 36.28948 110 0 1 - 30.59183 133.02500 445.15132 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 15.04939 78.80074 17.96911 4.49986 330 84 3 + 22.75376 80.26733 36.36631 5.18955 220 63 2 + 23.02134 81.73392 39.87198 5.70681 220 58 2 + 23.72471 81.73392 42.19987 6.05165 220 56 2 + 23.96977 83.20052 45.68064 6.56892 220 52 2 + 24.09532 84.66711 50.30746 7.25860 110 48 1 + 23.38474 86.13371 54.92251 7.94829 110 43 1 + 22.70854 87.60031 59.53073 8.63797 110 38 1 + 21.90033 89.06690 62.98476 9.15524 110 35 1 + 22.07506 89.06690 64.15130 9.32997 110 34 1 + 22.06454 89.08652 64.19752 9.33689 110 34 1 + 22.05635 89.10614 64.25913 9.34611 110 34 1 + 22.04816 89.12576 64.32073 9.35534 110 34 1 + 22.03998 89.14538 64.38231 9.36457 110 34 1 + 22.02950 89.16500 64.42851 9.37149 110 34 1 + 19.82753 89.16500 58.82727 11.38885 110 34 1 + 19.71560 89.53778 59.19268 11.49627 110 33 1 + 19.64148 89.91056 59.68017 11.63950 110 33 1 + 19.56940 90.28334 60.16799 11.78273 110 33 1 + 19.49940 90.65612 60.65612 11.92596 110 32 1 + 19.39572 91.02890 61.02242 12.03338 110 32 1 + 19.54460 91.02890 61.53041 12.18226 110 32 1 + 19.23170 92.20610 62.68904 12.52149 110 31 1 + 19.05464 93.38330 64.23606 12.97380 110 30 1 + 18.90121 94.56050 65.78549 13.42610 110 29 1 + 18.77230 95.73770 67.33709 13.87840 110 28 1 + 18.55568 96.91490 68.50203 14.21763 110 27 1 + 18.72530 96.91490 69.08491 14.38724 110 27 1 + 18.62673 97.50350 69.66807 14.55686 110 27 1 + 18.59125 98.09210 70.44596 14.78301 110 26 1 + 18.56236 98.68070 71.22427 15.00916 110 26 1 + 18.54009 99.26930 72.00296 15.23531 110 26 1 + 18.46795 99.85790 72.58721 15.40493 110 25 1 + 18.61023 99.85790 73.07750 15.54721 110 25 1 + 18.51363 100.75061 73.96428 15.80446 110 25 1 + 18.51820 101.64332 75.14728 16.14746 110 25 1 + 18.53815 102.53603 76.33100 16.49046 110 24 1 + 18.57344 103.42874 77.51539 16.83345 110 24 1 + 18.53828 104.32145 78.40407 17.09070 110 24 1 + 18.70978 104.32145 78.99672 17.26220 110 24 1 + 18.68983 105.21416 79.88599 17.51945 110 23 1 + 18.77064 106.10687 81.07214 17.86244 110 23 1 + 18.86619 106.99958 82.25880 18.20544 110 23 1 + 18.97625 107.89229 83.44594 18.54844 110 23 1 + 19.01482 108.78500 84.33659 18.80568 110 23 1 + 20.72893 108.78500 56.86688 20.61391 110 36 1 + 22.37841 106.76600 61.08371 22.38663 110 0 1 + 24.62985 104.74700 66.69564 24.75026 110 0 1 + 26.89174 102.72800 72.29483 27.11388 110 0 1 + 29.16354 100.70900 77.88124 29.47751 110 0 1 + 30.85376 98.69000 82.06310 31.25023 110 0 1 + 18.09680 98.69000 272.58042 20.36232 110 0 1 + 17.97690 100.06340 271.86044 20.86529 110 0 1 + 18.09583 101.43680 274.54312 21.53590 110 0 1 + 18.28082 102.81020 279.33150 22.20652 110 0 1 + 18.52670 104.18360 285.19980 22.87714 110 0 1 + 18.66058 105.55700 290.01763 23.38010 110 0 1 + 18.99589 105.55700 293.38484 23.71541 110 0 1 + 19.18045 106.93040 298.60646 24.21837 110 0 1 + 19.57917 108.30380 305.78478 24.88899 110 0 1 + 20.02024 109.67720 313.15603 25.55961 110 0 1 + 20.49951 111.05060 320.66827 26.23022 110 0 1 + 20.84508 112.42400 326.37074 26.73319 110 0 1 + 21.18039 112.42400 330.20204 27.06849 110 0 1 + 21.55580 113.79740 335.98580 27.57146 110 0 1 + 22.12525 115.17080 343.74884 28.24207 110 0 1 + 22.71788 116.54420 351.56245 28.91269 110 0 1 + 23.33040 117.91760 359.41683 29.58331 110 0 1 + 23.79187 119.29100 365.32890 30.08627 110 0 1 + 24.12718 119.29100 369.28008 30.42158 110 0 1 + 24.60212 120.66440 375.21958 30.92454 110 0 1 + 25.25595 122.03780 383.15752 31.59516 110 0 1 + 25.91898 123.41120 391.11465 32.26578 110 0 1 + 26.58918 124.78460 399.08801 32.93639 110 0 1 + 27.09682 126.15800 405.07683 33.43936 110 0 1 + 27.43213 126.15800 409.07356 33.77467 110 0 1 + 27.94302 127.53140 415.07425 34.27763 110 0 1 + 28.62391 128.90480 423.08354 34.94825 110 0 1 + 29.30645 130.27820 431.10170 35.61886 110 0 1 + 29.98995 131.65160 439.12760 36.28948 110 0 1 + 30.50605 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7813,13 +7949,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 8.537 'Ophooglaag zand' - -3.50 23.516 'Hollandveen' - -5.70 15.705 'Oude Zeeklei' - -7.00 24.894 'Wadzand' - -10.00 38.269 'Hydrobiaklei' - -12.00 12.869 'Basisveen' - -12.50 80.468 'Eerste zandlaag' + -3.00 8.544 'Ophooglaag zand' + -3.50 23.524 'Hollandveen' + -5.70 15.663 'Oude Zeeklei' + -7.00 25.080 'Wadzand' + -10.00 37.708 'Hydrobiaklei' + -12.00 12.885 'Basisveen' + -12.50 80.568 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -7838,11 +7974,11 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 3.11 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.34 'Oude Zeeklei' - -7.00 7.47 'Wadzand' - -10.00 8.13 'Hydrobiaklei' + -5.70 3.33 'Oude Zeeklei' + -7.00 7.52 'Wadzand' + -10.00 8.02 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.89 'Eerste zandlaag' + -12.50 30.93 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8091,7 +8227,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -8103,7 +8239,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -8270,53 +8406,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 502 100 P - 7.08254 100.76161 31.86408 3.83947 110 22 1 - 7.03580 101.65432 33.06586 4.18246 110 21 1 - 6.98239 102.54703 34.26739 4.52546 110 20 1 - 6.92237 103.43974 35.46867 4.86846 110 20 1 - 6.85579 104.33245 36.36949 5.12571 110 19 1 - 6.85579 104.33245 36.96996 5.29720 110 19 1 - 6.78274 105.22516 37.87056 5.55445 110 18 1 - 6.70340 106.11787 39.07118 5.89745 110 17 1 - 6.61801 107.01058 40.27161 6.24045 110 16 1 - 6.52680 107.90329 41.47185 6.58344 110 0 1 - 6.69733 108.79600 42.37192 6.84069 110 0 1 - 7.85338 108.79600 25.59840 7.93223 110 0 1 - 9.74781 106.77700 29.70475 9.70495 110 33 1 - 12.22206 104.75800 35.16081 12.06858 110 35 1 - 14.68580 102.73900 40.59674 14.43220 110 36 1 - 17.13961 100.72000 46.01595 16.79583 110 37 1 - 18.99316 98.70100 50.07174 18.56855 110 38 1 - 24.12278 98.70100 177.20934 12.31919 110 14 1 - 23.88572 100.07440 165.98087 12.82216 110 14 1 - 23.72941 101.44780 168.35015 13.49277 110 14 1 - 23.56471 102.82120 174.33058 14.16339 110 14 1 - 23.39743 104.19460 181.36358 14.83401 110 13 1 - 23.14061 105.56800 186.93725 15.33697 110 12 1 - 23.32567 105.56800 190.74477 15.70861 110 12 1 - 23.07609 106.94140 196.54307 16.17524 110 12 1 - 22.92751 108.31480 204.37210 16.84586 110 11 1 - 23.12585 109.68820 212.27871 17.51648 110 11 1 - 23.97685 111.06160 220.23553 18.18709 110 11 1 - 24.62647 112.43500 226.22528 18.69006 110 11 1 - 24.96178 112.43500 230.22741 19.02537 110 11 1 - 25.58184 113.80840 236.24102 19.52833 110 11 1 - 26.34342 115.18180 244.27295 20.19895 110 11 1 - 27.08212 116.55520 252.31767 20.86956 110 11 1 - 27.80119 117.92860 260.37206 21.54018 110 11 1 - 28.33630 119.30200 266.41766 22.04314 110 11 1 - 30.41153 119.30200 270.45017 24.11838 110 11 1 - 29.19353 120.67540 276.50161 22.88141 110 11 1 - 29.87212 122.04880 284.57394 23.55203 110 10 1 - 30.54171 123.42220 292.65001 24.22265 110 10 1 - 31.20430 124.79560 300.72910 24.89327 110 10 1 - 31.69425 126.16900 306.79002 25.39623 110 10 1 - 32.02956 126.16900 310.83135 25.73154 110 10 1 - 32.51632 127.54240 316.89433 26.23450 110 10 1 - 33.16842 128.91580 324.97970 26.90512 110 10 1 - 33.81888 130.28920 333.06652 27.57574 110 10 1 - 34.46838 131.66260 341.15457 28.24635 110 10 1 - 34.94993 133.03600 347.22126 28.74932 110 10 1 + 7.06092 100.76161 31.86408 3.83947 110 22 1 + 7.01289 101.65432 33.06586 4.18246 110 21 1 + 6.95819 102.54703 34.26739 4.52546 110 20 1 + 6.89688 103.43974 35.46867 4.86846 110 19 1 + 6.82902 104.33245 36.36949 5.12571 110 19 1 + 6.82902 104.33245 36.96996 5.29720 110 18 1 + 6.75469 105.22516 37.87056 5.55445 110 18 1 + 6.67408 106.11787 39.07118 5.89745 110 17 1 + 6.58743 107.01058 40.27161 6.24045 110 16 1 + 6.49498 107.90329 41.47185 6.58344 110 0 1 + 6.63156 108.79600 42.37192 6.84069 110 0 1 + 7.81721 108.79600 25.59840 7.93223 110 0 1 + 9.71317 106.77700 29.70475 9.70495 110 33 1 + 12.18898 104.75800 35.16081 12.06858 110 35 1 + 14.65434 102.73900 40.59674 14.43220 110 36 1 + 17.10980 100.72000 46.01595 16.79583 110 37 1 + 18.96501 98.70100 50.07174 18.56855 110 38 1 + 24.00419 98.70100 177.20934 12.31919 110 14 1 + 23.76168 100.07440 165.98087 12.82216 110 14 1 + 23.60008 101.44780 168.35015 13.49277 110 14 1 + 23.43031 102.82120 174.33058 14.16339 110 13 1 + 23.25822 104.19460 181.36358 14.83401 110 13 1 + 22.99694 105.56800 186.93725 15.33697 110 12 1 + 23.18200 105.56800 190.74477 15.67228 110 12 1 + 22.92835 106.94140 196.54307 16.17524 110 12 1 + 22.77629 108.31480 204.37210 16.84586 110 11 1 + 23.05584 109.68820 212.27871 17.51648 110 11 1 + 23.91781 111.06160 220.23553 18.18709 110 11 1 + 24.57816 112.43500 226.22528 18.69006 110 11 1 + 24.91347 112.43500 230.22741 19.02537 110 11 1 + 25.54399 113.80840 236.24102 19.52833 110 11 1 + 26.31577 115.18180 244.27295 20.19895 110 11 1 + 27.06438 116.55520 252.31767 20.86956 110 11 1 + 27.79309 117.92860 260.37206 21.54018 110 11 1 + 28.33755 119.30200 266.41766 22.04314 110 11 1 + 28.67286 119.30200 270.45017 22.37845 110 11 1 + 29.20384 120.67540 276.50161 22.88141 110 11 1 + 29.89125 122.04880 284.57394 23.55203 110 11 1 + 30.56945 123.42220 292.65001 24.22265 110 10 1 + 31.24048 124.79560 300.72910 24.89327 110 10 1 + 31.73877 126.16900 306.79002 25.39623 110 10 1 + 32.07408 126.16900 310.83135 25.73154 110 10 1 + 32.56911 127.54240 316.89433 26.23450 110 10 1 + 33.22945 128.91580 324.97970 26.90512 110 10 1 + 33.88814 130.28920 333.06652 27.57574 110 10 1 + 34.54588 131.66260 341.15457 28.24635 110 10 1 + 35.03571 133.03600 347.22126 28.74932 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8334,9 +8470,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 5.904 'Hydrobiaklei' - -12.00 6.722 'Basisveen' - -12.50 96.331 'Eerste zandlaag' + -10.00 5.880 'Hydrobiaklei' + -12.00 6.706 'Basisveen' + -12.50 96.089 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -8356,9 +8492,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.26 'Hydrobiaklei' + -10.00 -1.25 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -36.98 'Eerste zandlaag' + -12.50 -36.89 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8580,8 +8716,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 491.44144 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 350.44837 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 491.43734 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 350.53082 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -8622,10 +8758,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.95 : Percentage mobilized resistance left - 9.88 : Percentage mobilized resistance right - 47.51 : Effective left - 91.37 : Effective right + 10.97 : Percentage mobilized resistance left + 9.89 : Percentage mobilized resistance right + 47.59 : Effective left + 91.51 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 433.89 : Max effective resistance left @@ -8634,8 +8770,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.84 : Vertical force left - 30.65 : Vertical force right + 14.90 : Vertical force left + 30.70 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -8644,10 +8780,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.65 : Active force -14.84 : Passive force --30.65 : Plugged active force -14.84 : Plugged passive force +-30.70 : Active force +14.90 : Passive force +-30.70 : Plugged active force +14.90 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -8667,192 +8803,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.35954 - 0.00000 0.00000 6.98157 - 0.00000 0.00000 6.60359 - 0.00000 0.00000 6.22561 - 0.00000 0.00000 5.84763 - 0.00000 0.00000 5.46965 - 0.00000 0.00000 5.46965 - 0.00000 0.00000 5.09167 - 0.00000 0.00000 4.71369 - 0.00000 0.00000 4.33571 - 0.00000 0.00000 3.95774 - 0.00000 0.00000 3.57976 - 0.00000 0.00000 3.57976 - 0.00381 0.09535 3.07579 - 0.03051 0.38141 2.57182 - 0.10298 0.85818 2.06785 - 0.24410 1.52565 1.56385 - 0.47677 2.38383 1.05982 - 0.47677 2.38383 1.05982 - 0.75709 3.24466 0.63976 - 1.13011 4.23792 0.21963 - 1.60909 5.36362 -0.20062 - 2.20725 6.62175 -0.62103 - 2.93785 8.01232 -1.04164 - 2.93785 8.01232 -1.04164 - 3.81413 9.53532 -1.46251 - 4.84933 11.19076 -1.88373 - 6.05669 12.97863 -2.30542 - 7.44947 14.89894 -2.72770 - 9.04090 16.95168 -3.15066 - 9.04090 16.95168 -3.15066 - 10.57850 18.82296 -3.51506 - 12.28125 20.79219 -3.88020 - 14.15757 22.85937 -4.24619 - 16.21587 25.02449 -4.61317 - 18.46459 27.28757 -4.98126 - 18.46459 -138.12887 -4.98126 - 2.89586 -134.97800 -5.47078 - -12.30385 -131.65502 -5.96064 - -27.11494 -128.15993 -6.44905 - -41.51778 -124.49272 -6.93421 - -55.49274 -120.65341 -7.41434 - -55.49103 -120.67421 -7.41434 - -65.03365 -117.87719 -7.74733 - -74.34912 -114.99540 -8.07642 - -83.43066 -112.02886 -8.40109 - -92.27148 -108.97756 -8.72080 - -100.86481 -105.84149 -9.03498 - -100.86580 -105.85032 -9.03498 - -102.97484 -105.05306 -9.11261 - -105.06789 -104.25051 -9.18985 - -107.14483 -103.44265 -9.26669 - -109.20556 -102.62950 -9.34314 - -111.24997 -101.81106 -9.41918 - -111.25020 -101.80904 -9.41918 - -121.22363 -97.63734 -9.79297 - -130.77326 -93.33320 -10.15545 - -139.88585 -88.89663 -10.50576 - -148.54817 -84.32762 -10.84305 - -156.74696 -79.62618 -11.16648 - -156.74676 -79.62426 -11.16648 - -164.47080 -74.85660 -11.47523 - -171.71808 -70.08894 -11.76863 - -178.48859 -65.32128 -12.04604 - -184.78234 -60.55362 -12.30684 - -190.59932 -55.78596 -12.55039 - -190.59932 -55.78561 -12.55039 - -195.93949 -51.01795 -12.77610 - -200.80291 -46.25029 -12.98353 - -205.18955 -41.48263 -13.17225 - -209.09943 -36.71497 -13.34187 - -212.53255 -31.94731 -13.49197 - -212.53259 -31.94665 -13.49197 - -216.53789 -25.27192 -13.66859 - -219.60873 -18.59720 -13.80558 - -221.74510 -11.92248 -13.90256 - -222.94702 -5.24775 -13.95915 - -223.21447 1.42697 -13.97494 - -223.21462 1.42917 -13.97494 - -222.62596 7.62713 -13.95287 - -221.23156 13.82508 -13.89568 - -219.03144 20.02304 -13.80372 - -216.02557 26.22100 -13.67733 - -212.21398 32.41896 -13.51686 - -212.21382 32.41878 -13.51686 - -207.59651 38.61674 -13.32277 - -202.17347 44.81469 -13.09593 - -195.94469 51.01265 -12.83732 - -188.91018 57.21061 -12.54793 - -181.06993 63.40857 -12.22873 - -181.06994 63.40854 -12.22873 - -171.05757 70.53620 -11.82621 - -159.97961 77.66385 -11.38798 - -147.83608 84.79150 -10.91660 - -134.62695 91.91915 -10.41459 - -120.35225 99.04680 -9.88448 - -120.35225 99.04680 -9.88448 - -105.01196 106.17445 -9.32899 - -88.60609 113.30211 -8.75158 - -71.13463 120.42976 -8.15590 - -52.59759 127.55741 -7.54558 - -32.99497 134.68506 -6.92427 - -32.99640 134.69182 -6.92427 - -12.32718 141.81947 -6.29581 - 9.40762 148.94712 -5.66475 - 32.20801 156.07478 -5.03587 - 56.07398 163.20243 -4.41390 - 81.00554 170.33008 -3.80361 - 81.00835 170.35274 -3.80361 - 107.00887 177.48039 -3.20993 - 134.07498 184.60805 -2.63856 - 162.20668 191.73570 -2.09535 - 191.40396 198.86335 -1.58618 - 221.66682 205.99100 -1.11691 - 221.66684 205.99070 -1.11691 - 222.07890 206.06560 -1.11092 - 222.49109 206.12045 -1.10495 - 222.90338 206.17539 -1.09899 - 223.31579 206.23043 -1.09303 - 223.72831 206.28551 -1.08708 - 223.72829 206.28586 -1.08708 - 231.58726 207.34625 -0.97569 - 239.48680 208.42215 -0.86741 - 247.42758 209.51715 -0.76236 - 255.41034 210.63125 -0.66065 - 263.43575 211.76085 -0.56237 - 263.43593 -138.68743 -0.56237 - 247.01665 -134.94750 -0.27487 - 231.05471 -131.05302 -0.02055 - 215.57154 -126.96802 0.20266 - 200.59001 -122.69252 0.39684 - 186.13152 -118.26247 0.56407 - 186.13131 -118.26029 0.56407 - 179.10970 -115.79479 0.63821 - 172.23570 -113.34095 0.70634 - 165.50852 -110.90046 0.76867 - 158.92738 -108.47330 0.82544 - 152.49149 -106.05780 0.87687 - 152.49215 -106.07731 0.87687 - 142.98326 -102.87842 0.94519 - 133.77301 -99.52359 1.00246 - 124.87366 -96.04718 1.04937 - 116.29578 -92.46014 1.08661 - 108.04864 -88.78336 1.11486 - 108.04846 -88.77709 1.11486 - 100.14164 -84.98826 1.13480 - 92.58275 -81.12828 1.14700 - 85.37852 -77.19493 1.15202 - 78.53526 -73.19608 1.15042 - 72.05763 -69.17092 1.14275 - 72.05771 -69.17041 1.14275 - 65.32929 -65.40573 1.12796 - 58.97299 -61.74805 1.10708 - 52.97406 -58.25897 1.08066 - 47.31405 -54.98446 1.04927 - 41.96704 -52.01384 1.01347 - 41.96507 -51.98558 1.01347 - 34.95685 -47.97479 0.95698 - 28.55225 -43.53285 0.89410 - 22.76362 -39.17736 0.82589 - 17.57800 -34.92009 0.75342 - 12.98063 -30.77770 0.67775 - 12.98099 -30.77330 0.67775 - 8.95753 -26.72794 0.59983 - 5.49106 -22.81350 0.52028 - 2.56395 -19.02344 0.43964 - 0.15856 -15.36066 0.35844 - -1.74339 -11.83398 0.27722 - -1.74493 -11.80517 0.27722 - -3.16226 -8.50278 0.19642 - -4.14286 -5.56797 0.11620 - -4.73866 -3.00535 0.03668 - -5.00165 -0.81327 -0.04203 - -4.98356 1.01049 -0.11982 - -4.98338 1.01042 -0.11982 - -4.72026 2.63289 -0.19665 - -4.27079 3.72772 -0.27261 - -3.69335 4.46139 -0.34782 - -3.03838 4.83550 -0.42236 - -2.35614 4.85119 -0.49634 - -2.35619 4.85106 -0.49634 - -1.65532 4.95359 -0.56990 - -1.00663 4.25367 -0.64316 - -0.48101 3.19542 -0.71622 - -0.12868 1.77790 -0.78915 - -0.00003 -0.00029 -0.86207 + 0.00000 0.00000 7.35756 + 0.00000 0.00000 6.97964 + 0.00000 0.00000 6.60173 + 0.00000 0.00000 6.22381 + 0.00000 0.00000 5.84590 + 0.00000 0.00000 5.46798 + 0.00000 0.00000 5.46798 + 0.00000 0.00000 5.09006 + 0.00000 0.00000 4.71215 + 0.00000 0.00000 4.33423 + 0.00000 0.00000 3.95631 + 0.00000 0.00000 3.57840 + 0.00000 0.00000 3.57840 + 0.00381 0.09535 3.07451 + 0.03051 0.38141 2.57063 + 0.10298 0.85818 2.06674 + 0.24410 1.52565 1.56282 + 0.47677 2.38383 1.05887 + 0.47677 2.38383 1.05887 + 0.75709 3.24466 0.63888 + 1.13011 4.23792 0.21882 + 1.60909 5.36362 -0.20136 + 2.20725 6.62175 -0.62170 + 2.93785 8.01232 -1.04224 + 2.93785 8.01232 -1.04224 + 3.81413 9.53532 -1.46304 + 4.84933 11.19076 -1.88420 + 6.05669 12.97863 -2.30582 + 7.44947 14.89894 -2.72802 + 9.04090 16.95168 -3.15092 + 9.04090 16.95168 -3.15092 + 10.57850 18.82296 -3.51526 + 12.28125 20.79219 -3.88033 + 14.15757 22.85937 -4.24626 + 16.21587 25.02449 -4.61318 + 18.46459 27.28757 -4.98122 + 18.46459 -138.12477 -4.98122 + 2.89633 -134.97390 -5.47066 + -12.30292 -131.65092 -5.96044 + -27.11354 -128.15583 -6.44877 + -41.51591 -124.48862 -6.93386 + -55.49041 -120.64931 -7.41391 + -55.48870 -120.67014 -7.41391 + -65.03099 -117.87311 -7.74684 + -74.34613 -114.99132 -8.07588 + -83.42734 -112.02478 -8.40050 + -92.26784 -108.97348 -8.72014 + -100.86084 -105.83742 -9.03428 + -100.86183 -105.84625 -9.03428 + -102.97079 -105.04899 -9.11189 + -105.06375 -104.24644 -9.18911 + -107.14061 -103.43858 -9.26595 + -109.20126 -102.62543 -9.34238 + -111.24560 -101.80699 -9.41841 + -111.24583 -101.80497 -9.41841 + -121.21884 -97.63327 -9.79213 + -130.76807 -93.32913 -10.15454 + -139.88026 -88.89256 -10.50479 + -148.54216 -84.32355 -10.84201 + -156.74055 -79.62211 -11.16538 + -156.74035 -79.62019 -11.16538 + -164.46398 -74.85253 -11.47406 + -171.71085 -70.08487 -11.76740 + -178.48096 -65.31721 -12.04475 + -184.77430 -60.54955 -12.30549 + -190.59087 -55.78189 -12.54898 + -190.59087 -55.78154 -12.54898 + -195.93064 -51.01388 -12.77463 + -200.79364 -46.24622 -12.98199 + -205.17988 -41.47856 -13.17066 + -209.08935 -36.71090 -13.34022 + -212.52206 -31.94324 -13.49026 + -212.52210 -31.94257 -13.49026 + -216.52683 -25.26785 -13.66680 + -219.59710 -18.59313 -13.80372 + -221.73291 -11.91840 -13.90063 + -222.93425 -5.24368 -13.95714 + -223.20114 1.43105 -13.97286 + -223.20128 1.43325 -13.97286 + -222.61209 7.63121 -13.95073 + -221.21717 13.82916 -13.89348 + -219.01651 20.02712 -13.80146 + -216.01012 26.22508 -13.67502 + -212.19799 32.42304 -13.51450 + -212.19783 32.42286 -13.51450 + -207.57999 38.62082 -13.32035 + -202.15642 44.81878 -13.09346 + -195.92711 51.01674 -12.83481 + -188.89207 57.21469 -12.54538 + -181.05129 63.41265 -12.22614 + -181.05129 63.41263 -12.22614 + -171.03831 70.54028 -11.82357 + -159.95975 77.66793 -11.38531 + -147.81560 84.79558 -10.91390 + -134.60587 91.92323 -10.41185 + -120.33055 99.05089 -9.88172 + -120.33055 99.05089 -9.88172 + -104.98966 106.17854 -9.32621 + -88.58317 113.30619 -8.74878 + -71.11110 120.43384 -8.15309 + -52.57345 127.56149 -7.54277 + -32.97022 134.68914 -6.92146 + -32.97165 134.69589 -6.92146 + -12.30182 141.82354 -6.29300 + 9.43359 148.95120 -5.66195 + 32.23459 156.07885 -5.03308 + 56.10117 163.20650 -4.41113 + 81.03333 170.33415 -3.80086 + 81.03614 170.35677 -3.80086 + 107.03727 177.48442 -3.20722 + 134.10398 184.61207 -2.63589 + 162.23628 191.73973 -2.09272 + 191.43416 198.86738 -1.58360 + 221.69762 205.99503 -1.11438 + 221.69764 205.99472 -1.11438 + 222.10971 206.06962 -1.10840 + 222.52191 206.12448 -1.10243 + 222.93421 206.17941 -1.09647 + 223.34663 206.23445 -1.09051 + 223.75915 206.28953 -1.08457 + 223.75913 206.28988 -1.08457 + 231.61826 207.35028 -0.97318 + 239.51795 208.42617 -0.86492 + 247.45889 209.52117 -0.75989 + 255.44180 210.63527 -0.65819 + 263.46736 211.76487 -0.55994 + 263.46754 -138.76584 -0.55994 + 247.03885 -135.02591 -0.27249 + 231.06750 -131.13143 -0.01823 + 215.57492 -127.04644 0.20492 + 200.58398 -122.77093 0.39904 + 186.11608 -118.34088 0.56621 + 186.11596 -118.34236 0.56621 + 179.08943 -115.87686 0.64032 + 172.21050 -113.42303 0.70842 + 165.47840 -110.98254 0.77072 + 158.89233 -108.55537 0.82746 + 152.45152 -106.13988 0.87887 + 152.45217 -106.15952 0.87887 + 142.93586 -102.96087 0.94715 + 133.71789 -99.61076 1.00439 + 124.81040 -96.13888 1.05127 + 116.22397 -92.55614 1.08848 + 107.96791 -88.88341 1.11672 + 107.96786 -88.88064 1.11672 + 100.05145 -85.09558 1.13664 + 92.48263 -81.23906 1.14884 + 85.26818 -77.30884 1.15386 + 78.41442 -73.31275 1.15227 + 71.92611 -69.28843 1.14463 + 71.92617 -69.28801 1.14463 + 65.19350 -65.41051 1.12987 + 58.83678 -61.75170 1.10903 + 52.83754 -58.26147 1.08267 + 47.17732 -54.98608 1.05136 + 41.83018 -52.01486 1.01564 + 41.82818 -51.98606 1.01564 + 34.81953 -47.97786 0.95928 + 28.41488 -43.53048 0.89657 + 22.62699 -39.16911 0.82856 + 17.44296 -34.90550 0.75630 + 12.84811 -30.75623 0.68087 + 12.84847 -30.75184 0.68087 + 8.82821 -26.70243 0.60322 + 5.36588 -22.77984 0.52396 + 2.44408 -18.98093 0.44363 + 0.04531 -15.30853 0.36276 + -1.84862 -11.77140 0.28189 + -1.85014 -11.74279 0.28189 + -3.25769 -8.42321 0.20147 + -4.22546 -5.46392 0.12164 + -4.80486 -2.87489 0.04252 + -5.04762 -0.65442 -0.03578 + -5.00519 1.19978 -0.11314 + -5.00501 1.19970 -0.11314 + -4.72849 2.69029 -0.18954 + -4.26858 3.81978 -0.26507 + -3.67570 4.59024 -0.33984 + -3.00000 5.00327 -0.41396 + -2.29141 5.06000 -0.48752 + -2.29147 5.05988 -0.48752 + -1.59986 4.76089 -0.56067 + -0.97502 4.10614 -0.63353 + -0.46677 3.09507 -0.70619 + -0.12507 1.72672 -0.77874 + -0.00003 -0.00029 -0.85126 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9098,7 +9234,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -9110,7 +9246,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -9277,53 +9413,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 502 100 P - 7.62022 100.76161 31.86408 3.83947 110 24 1 - 8.19230 101.65432 33.06586 4.18246 110 25 1 - 8.72294 102.54703 34.26739 4.52546 110 25 1 - 9.21490 103.43974 35.46867 4.86846 110 26 1 - 9.58516 104.33245 36.36949 5.12571 110 26 1 - 9.75666 104.33245 36.96996 5.29720 110 26 1 - 10.09365 105.22516 37.87056 5.55445 110 27 1 - 10.48545 106.11787 39.07118 5.89745 110 27 1 - 10.84854 107.01058 40.27161 6.24045 110 27 1 - 11.18513 107.90329 41.47185 6.58344 110 27 1 - 11.41170 108.79600 42.37192 6.84069 110 27 1 - 10.44629 108.79600 25.59840 7.93223 110 41 1 - 12.16391 106.77700 29.70475 9.70495 110 41 1 - 14.45987 104.75800 35.16081 12.06858 110 41 1 - 16.74482 102.73900 40.59674 14.43220 110 41 1 - 19.02028 100.72000 46.01595 16.79583 110 41 1 - 20.69683 98.70100 50.07174 18.56855 110 41 1 - 24.48083 98.70100 177.20934 12.31919 110 14 1 - 24.33563 100.07440 165.98087 12.82216 110 15 1 - 24.27756 101.44780 168.35015 13.49277 110 14 1 - 24.15118 102.82120 174.33058 14.16339 110 14 1 - 23.96885 104.19460 181.36358 14.83401 110 13 1 - 23.57540 105.56800 186.93725 15.33697 110 13 1 - 23.94704 105.56800 190.74477 15.70861 110 13 1 - 23.48521 106.94140 196.54307 16.17524 110 12 1 - 23.20257 108.31480 204.37210 16.84586 110 11 1 - 22.90159 109.68820 212.27871 17.51648 110 11 1 - 22.58875 111.06160 220.23553 18.18709 110 10 1 - 22.10296 112.43500 226.22528 18.69006 110 10 1 - 22.43826 112.43500 230.22741 19.02537 110 10 1 - 21.95262 113.80840 236.24102 19.52833 110 9 1 - 21.63678 115.18180 244.27295 20.19895 110 9 1 - 21.32457 116.55520 252.31767 20.86956 110 8 1 - 21.01747 117.92860 260.37206 21.54018 110 0 1 - 20.54934 119.30200 266.41766 22.04314 110 0 1 - 22.62457 119.30200 270.45017 24.11838 110 0 1 - 20.42373 120.67540 276.50161 22.88141 110 0 1 - 20.13647 122.04880 284.57394 23.55203 110 0 1 - 19.85404 123.42220 292.65001 24.22265 110 0 1 - 19.57526 124.79560 300.72910 24.89327 110 0 1 - 19.13126 126.16900 306.79002 25.39623 110 0 1 - 19.46657 126.16900 310.83135 25.73154 110 0 1 - 19.02336 127.54240 316.89433 26.23450 110 0 1 - 18.74698 128.91580 324.97970 26.90512 110 0 1 - 18.46866 130.28920 333.06652 27.57574 110 0 1 - 18.18727 131.66260 341.15457 28.24635 110 0 1 - 17.73401 133.03600 347.22126 28.74932 110 0 1 + 7.62806 100.76161 31.86408 3.83947 110 24 1 + 8.20001 101.65432 33.06586 4.18246 110 25 1 + 8.73054 102.54703 34.26739 4.52546 110 25 1 + 9.22239 103.43974 35.46867 4.86846 110 26 1 + 9.59258 104.33245 36.36949 5.12571 110 26 1 + 9.76408 104.33245 36.96996 5.29720 110 26 1 + 10.10103 105.22516 37.87056 5.55445 110 27 1 + 10.49281 106.11787 39.07118 5.89745 110 27 1 + 10.85590 107.01058 40.27161 6.24045 110 27 1 + 11.19254 107.90329 41.47185 6.58344 110 27 1 + 11.41919 108.79600 42.37192 6.84069 110 27 1 + 10.45041 108.79600 25.59840 7.93223 110 41 1 + 12.16806 106.77700 29.70475 9.70495 110 41 1 + 14.46408 104.75800 35.16081 12.06858 110 41 1 + 16.74912 102.73900 40.59674 14.43220 110 41 1 + 19.02470 100.72000 46.01595 16.79583 110 41 1 + 20.70139 98.70100 50.07174 18.56855 110 41 1 + 24.50686 98.70100 177.20934 12.31919 110 14 1 + 24.36342 100.07440 165.98087 12.82216 110 15 1 + 24.30741 101.44780 168.35015 13.49277 110 14 1 + 24.18342 102.82120 174.33058 14.16339 110 14 1 + 24.00378 104.19460 181.36358 14.83401 110 13 1 + 23.61334 105.56800 186.93725 15.33697 110 13 1 + 23.94865 105.56800 190.74477 15.67228 110 13 1 + 23.52646 106.94140 196.54307 16.17524 110 12 1 + 23.24746 108.31480 204.37210 16.84586 110 11 1 + 22.95040 109.68820 212.27871 17.51648 110 11 1 + 22.64176 111.06160 220.23553 18.18709 110 10 1 + 22.16046 112.43500 226.22528 18.69006 110 10 1 + 22.49576 112.43500 230.22741 19.02537 110 10 1 + 22.01487 113.80840 236.24102 19.52833 110 9 1 + 21.70402 115.18180 244.27295 20.19895 110 9 1 + 21.39701 116.55520 252.31767 20.86956 110 8 1 + 21.09527 117.92860 260.37206 21.54018 110 0 1 + 20.63264 119.30200 266.41766 22.04314 110 0 1 + 20.96795 119.30200 270.45017 22.37845 110 0 1 + 20.51261 120.67540 276.50161 22.88141 110 0 1 + 20.23098 122.04880 284.57394 23.55203 110 0 1 + 19.95420 123.42220 292.65001 24.22265 110 0 1 + 19.68104 124.79560 300.72910 24.89327 110 0 1 + 19.24261 126.16900 306.79002 25.39623 110 0 1 + 19.57792 126.16900 310.83135 25.73154 110 0 1 + 19.14016 127.54240 316.89433 26.23450 110 0 1 + 18.86914 128.91580 324.97970 26.90512 110 0 1 + 18.59613 130.28920 333.06652 27.57574 110 0 1 + 18.32002 131.66260 341.15457 28.24635 110 0 1 + 17.87205 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9341,9 +9477,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.351 'Hydrobiaklei' - -12.00 7.796 'Basisveen' - -12.50 75.220 'Eerste zandlaag' + -10.00 8.357 'Hydrobiaklei' + -12.00 7.798 'Basisveen' + -12.50 75.355 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9363,9 +9499,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.77 'Hydrobiaklei' + -10.00 -1.78 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.87 'Eerste zandlaag' + -12.50 -28.93 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -9503,24 +9639,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 71.33900 32.23900 7.86393 7.28848 -10.88000 71.33900 32.23900 9.24535 7.34485 -10.94000 71.33900 32.23900 10.86885 7.41109 @@ -9614,7 +9750,7 @@ Lambda passive -10.97000 5.17420 31.09283 1.26873 0.45536 0.24520 6.00921 -11.03000 5.84560 35.12741 1.43335 0.45536 0.24520 6.00921 -11.09000 6.51700 38.15335 1.55683 0.45536 0.24520 6.00921 - -11.09000 6.51700 38.09030 -3.30713 0.70481 0.00000 5.84689 + -11.09000 6.51700 38.09030 -3.30713 0.69929 0.00000 5.84689 -11.18100 6.50749 37.13796 -3.30434 0.69929 0.00000 5.70696 -11.27200 6.49798 36.38146 -3.30632 0.69929 0.00000 5.59889 -11.36300 6.48847 35.91666 -3.30987 0.69929 0.00000 5.53546 @@ -9626,7 +9762,7 @@ Lambda passive -11.81800 6.44092 34.91455 -3.33088 0.69929 0.00000 5.42074 -11.90900 6.43141 34.81167 -3.33521 0.69929 0.00000 5.41276 -12.00000 6.42190 34.74335 -3.33847 0.69929 0.00000 5.40813 - -12.00000 6.42190 18.56125 -0.24957 1.01009 0.00000 3.01605 + -12.00000 6.42190 18.56125 -0.24957 0.74118 0.00000 3.01605 -12.10000 5.35090 17.07239 -0.71711 0.74118 0.00000 3.19056 -12.20000 4.27990 15.10025 -1.34197 0.74118 0.00000 3.52818 -12.30000 3.20890 13.14123 -1.96811 0.74118 0.00000 4.09525 @@ -9656,7 +9792,7 @@ Lambda passive -15.02000 26.74570 152.13832 6.86581 0.47008 0.25671 5.68833 -15.16000 28.17230 160.19767 7.23257 0.47008 0.25673 5.68635 -15.30000 29.59890 166.24550 7.50762 0.47008 0.25674 5.68511 - -15.30000 29.59890 170.27895 7.69098 0.31301 0.25675 5.68439 + -15.30000 29.59890 170.27895 7.69098 0.47008 0.25675 5.68439 -15.44000 31.02550 176.33119 7.96601 0.47008 0.25676 5.68343 -15.58000 32.45210 184.40388 8.33270 0.47008 0.25677 5.68234 -15.72000 33.87870 192.47975 8.69937 0.47008 0.25678 5.68144 @@ -9809,32 +9945,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 19.99774 1.51537 1 0 A 0.93947 71.19850 23.02367 1.74467 1 0 A 1.10410 71.78710 27.05825 2.05040 1 0 A 1.26873 72.37570 31.09283 2.35613 1 0 A 1.43335 72.96430 35.12741 2.66186 1 0 A 1.55683 73.55290 38.15335 2.89116 1 0 A - 1.07987 73.55290 38.09030 4.59156 110 0 1 - 6.64559 74.94561 37.13796 4.55065 110 18 1 - 5.68221 76.33832 36.38146 4.54400 110 16 1 - 4.76913 77.73103 35.91666 4.53735 110 13 1 - 3.90364 79.12374 35.59797 4.53070 110 0 1 - 3.17042 80.51645 35.41437 4.52571 110 0 1 - 2.99559 80.51645 35.31241 4.52239 110 0 1 - 2.30457 81.90916 35.18176 4.51740 110 0 1 - 1.56597 83.30187 35.03566 4.51075 110 0 1 - 0.86497 84.69458 34.91455 4.50410 110 0 1 - 0.19931 86.08729 34.81167 4.49745 110 0 1 + 1.04442 73.55290 38.09030 4.55564 110 0 1 + 6.69267 74.94561 37.13796 4.55065 110 18 1 + 5.72762 76.33832 36.38146 4.54400 110 16 1 + 4.81270 77.73103 35.91666 4.53735 110 13 1 + 3.94518 79.12374 35.59797 4.53070 110 0 1 + 3.20973 80.51645 35.41437 4.52571 110 0 1 + 3.03490 80.51645 35.31241 4.52239 110 0 1 + 2.34144 81.90916 35.18176 4.51740 110 0 1 + 1.60022 83.30187 35.03566 4.51075 110 0 1 + 0.89639 84.69458 34.91455 4.50410 110 0 1 + 0.22771 86.08729 34.81167 4.49745 110 0 1 0.00000 87.48000 34.74335 4.49246 1 0 A - 3.70217 87.48000 18.56125 6.21623 110 0 1 - 1.50703 89.72100 17.07239 3.96599 110 0 1 - 0.78089 91.96200 15.10025 3.17218 110 0 1 - 0.06576 94.20300 13.14123 2.37838 110 0 1 + 2.04316 87.48000 18.56125 4.56134 110 0 1 + 1.50287 89.72100 17.07239 3.96599 110 0 1 + 0.77667 91.96200 15.10025 3.17218 110 0 1 + 0.06145 94.20300 13.14123 2.37838 110 0 1 0.00000 96.44400 11.19306 1.58457 1 0 A 0.00000 98.68500 9.73768 0.98922 1 0 A - 5.76853 98.68500 8.83693 0.66918 220 65 2 + 5.84981 98.68500 8.83693 0.66918 220 66 2 0.63774 100.05840 15.37247 1.17215 1 0 A 1.00279 101.43180 23.89347 1.84276 1 0 A 1.36806 102.80520 32.18680 2.51338 1 0 A @@ -9847,23 +9983,23 @@ Status character 3.56466 111.04560 80.04950 6.53708 1 0 A 3.83967 112.41900 86.01153 7.04005 1 0 A 4.02303 112.41900 89.99195 7.37536 1 0 A - 5.45403 113.79240 95.97127 7.87832 110 0 1 - 7.11110 115.16580 103.95761 8.54894 110 0 1 - 8.76455 116.53920 111.95936 9.21955 110 0 1 - 10.41288 117.91260 119.97473 9.89017 110 9 1 - 11.88693 119.28600 125.99378 10.39313 110 9 1 - 12.22224 119.28600 130.01005 10.72844 110 9 1 - 13.68909 120.65940 136.03922 11.23140 110 10 1 - 15.31758 122.03280 144.08513 11.90202 110 11 1 - 16.94124 123.40620 152.13832 12.57264 110 11 1 - 18.56126 124.77960 160.19767 13.24326 110 12 1 - 20.01118 126.15300 166.24550 13.74622 110 12 1 - 15.64134 126.15300 170.27895 9.37638 110 9 1 - 21.79563 127.52640 176.33119 14.58449 110 12 1 - 23.41325 128.89980 184.40388 15.25511 110 13 1 - 25.03280 130.27320 192.47975 15.92572 110 13 1 - 26.65542 131.64660 200.55831 16.59634 110 13 1 - 28.11461 133.02000 206.61870 17.09930 110 14 1 + 5.39178 113.79240 95.97127 7.87832 110 0 1 + 7.04386 115.16580 103.95761 8.54894 110 0 1 + 8.69211 116.53920 111.95936 9.21955 110 0 1 + 10.33508 117.91260 119.97473 9.89017 110 9 1 + 11.80364 119.28600 125.99378 10.39313 110 9 1 + 12.13895 119.28600 130.01005 10.72844 110 9 1 + 13.60021 120.65940 136.03922 11.23140 110 10 1 + 15.22307 122.03280 144.08513 11.90202 110 11 1 + 16.84108 123.40620 152.13832 12.57264 110 11 1 + 18.45548 124.77960 160.19767 13.24326 110 12 1 + 19.89984 126.15300 166.24550 13.74622 110 12 1 + 20.23515 126.15300 170.27895 14.08153 110 12 1 + 21.67883 127.52640 176.33119 14.58449 110 12 1 + 23.29108 128.89980 184.40388 15.25511 110 13 1 + 24.90533 130.27320 192.47975 15.92572 110 13 1 + 26.52268 131.64660 200.55831 16.59634 110 13 1 + 27.97657 133.02000 206.61870 17.09930 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9878,9 +10014,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 2.690 'Hydrobiaklei' - -12.00 0.420 'Basisveen' - -12.50 36.793 'Eerste zandlaag' + -11.09 2.720 'Hydrobiaklei' + -12.00 0.336 'Basisveen' + -12.50 36.927 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9897,9 +10033,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.14 'Grind' - -11.09 0.57 'Hydrobiaklei' + -11.09 0.58 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.12 'Eerste zandlaag' + -12.50 14.17 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10121,8 +10257,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 452.00498 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 628.76497 10000000.000 1 1 1 'Dek' + -10.19000 451.99640 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 628.76474 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10183,10 +10319,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.43 : Percentage mobilized resistance left - 17.72 : Percentage mobilized resistance right - 182.49 : Effective left - 109.88 : Effective right + 29.47 : Percentage mobilized resistance left + 17.76 : Percentage mobilized resistance right + 182.74 : Effective left + 110.11 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -10195,8 +10331,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 41.02 : Vertical force left - 16.08 : Vertical force right + 41.15 : Vertical force left + 16.19 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -10205,10 +10341,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --16.08 : Active force -41.02 : Passive force --16.08 : Plugged active force -41.02 : Plugged passive force +-16.19 : Active force +41.15 : Passive force +-16.19 : Plugged active force +41.15 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance @@ -10228,192 +10364,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.51741 - 0.15040 0.00000 -58.26404 - 0.30079 0.00000 -57.01069 - 0.45119 0.00000 -55.75737 - 0.60159 0.00000 -54.50409 - 0.75199 0.00000 -53.25085 - 0.75199 0.00000 -53.25085 - 0.90235 0.00000 -51.99768 - 1.05270 0.00000 -50.74459 - 1.20306 0.00000 -49.49158 - 1.35342 0.00000 -48.23868 - 1.50378 0.00000 -46.98590 - 1.50378 0.00000 -46.98590 - 1.70413 0.00000 -45.31572 - 1.90449 0.00000 -43.64579 - 2.10484 0.00000 -41.97616 - 2.30519 0.00000 -40.30684 - 2.50554 0.00000 -38.63787 - 2.50554 0.00000 -38.63787 - 2.67233 0.00000 -37.24735 - 2.83913 0.00000 -35.85711 - 3.00592 0.00000 -34.46717 - 3.17271 0.00000 -33.07755 - 3.33950 0.00000 -31.68826 - 3.33950 0.00000 -31.68826 - 3.50608 0.00000 -30.29932 - 3.67266 0.00000 -28.91074 - 3.83924 0.00000 -27.52255 - 4.00582 0.00000 -26.13477 - 4.17240 0.00000 -24.74741 - 4.17240 0.00000 -24.74741 - 4.31545 0.00000 -23.55462 - 4.45850 0.00000 -22.36217 - 4.60155 0.00000 -21.17007 - 4.74460 0.00000 -19.97833 - 4.88765 0.00000 -18.78695 - 4.88765 527.88000 -18.78695 - 65.25114 527.88000 -17.20964 - 125.61462 527.88000 -15.64123 - 185.97811 527.88000 -14.08996 - 246.34159 527.88000 -12.56407 - 306.70507 527.88000 -11.07178 - 306.70659 527.86150 -11.07178 - 349.05193 527.86150 -10.04906 - 391.39726 527.86150 -9.04979 - 433.74260 527.86150 -8.07682 - 476.08794 527.86150 -7.13299 - 518.43327 527.86150 -6.22115 - 518.43239 -100.91131 -6.22115 - 516.44036 -100.91131 -5.99851 - 514.44833 -100.91131 -5.77805 - 512.45630 -100.91131 -5.55974 - 510.46428 -100.91131 -5.34358 - 508.47225 -100.91131 -5.12957 - 508.47204 -100.90952 -5.12957 - 498.49337 -100.90952 -4.09136 - 488.51469 -100.90952 -3.10549 - 478.53601 -100.90952 -2.17090 - 468.55734 -100.90952 -1.28656 - 458.57866 -100.90952 -0.45140 - 458.57884 -100.90782 -0.45140 - 448.57145 -100.90782 0.33562 - 438.56406 -100.90782 1.07554 - 428.55667 -100.90782 1.76942 - 418.54928 -100.90782 2.41831 - 408.54189 -100.90782 3.02326 - 408.54189 -100.90750 3.02326 - 398.50880 -100.90750 3.58532 - 388.47571 -100.90750 4.10554 - 378.44262 -100.90750 4.58498 - 368.40953 -100.90750 5.02469 - 358.37643 -100.90750 5.42572 - 358.37640 -100.90692 5.42572 - 344.29294 -100.90692 5.92420 - 330.20948 -100.90692 6.35183 - 316.12602 -100.90692 6.71151 - 302.04256 -100.90692 7.00614 - 287.95910 -100.90692 7.23862 - 287.95898 -100.90496 7.23862 - 274.84972 -100.90496 7.40137 - 261.74046 -100.90496 7.51537 - 248.63120 -100.90496 7.58292 - 235.52194 -100.90496 7.60636 - 222.41268 -100.90496 7.58801 - 222.41282 -100.90512 7.58801 - 209.27986 -100.90512 7.53020 - 196.14691 -100.90512 7.43526 - 183.01395 -100.90512 7.30552 - 169.88099 -100.90512 7.14331 - 156.74804 -100.90512 6.95095 - 156.74803 -100.90515 6.95095 - 141.62494 -100.90515 6.69551 - 126.50184 -100.90515 6.40683 - 111.37875 -100.90515 6.08848 - 96.25565 -100.90515 5.74398 - 81.13255 -100.90515 5.37690 - 81.13255 -100.90515 5.37690 - 65.99803 -100.90515 4.99079 - 50.86352 -100.90515 4.58918 - 35.72900 -100.90515 4.17565 - 20.59448 -100.90515 3.75372 - 5.45996 -100.90515 3.32697 - 5.45869 -100.89914 3.32697 - -9.67570 -100.89914 2.89893 - -24.81008 -100.89914 2.47317 - -39.94447 -100.89914 2.05323 - -55.07886 -100.89914 1.64266 - -70.21325 -100.89914 1.24501 - -70.21075 -100.87899 1.24501 - -85.33225 -100.87899 0.86384 - -100.45374 -100.87899 0.50269 - -115.57523 -100.87899 0.16511 - -130.69672 -100.87899 -0.14534 - -145.81822 -100.87899 -0.42513 - -145.81820 -100.87926 -0.42513 - -146.02038 -100.87926 -0.42865 - -146.22256 -100.87926 -0.43217 - -146.42474 -100.87926 -0.43567 - -146.62692 -100.87926 -0.43917 - -146.82910 -100.87926 -0.44267 - -146.82911 -100.87895 -0.44267 - -150.66965 -100.87895 -0.50788 - -154.51019 -100.87895 -0.57081 - -158.35072 -100.87895 -0.63140 - -162.19126 -100.87895 -0.68958 - -166.03180 -100.87895 -0.74531 - -166.03164 87.19615 -0.74531 - -155.58085 87.19615 -0.90506 - -145.13006 87.19615 -1.04129 - -134.67927 87.19615 -1.15558 - -124.22848 87.19615 -1.24951 - -113.77769 87.19615 -1.32466 - -113.77738 87.19009 -1.32466 - -108.64947 83.63392 -1.35570 - -103.76219 79.26821 -1.38262 - -99.14978 74.51210 -1.40562 - -94.83070 69.49196 -1.42486 - -90.81999 64.24336 -1.44051 - -90.81949 64.21738 -1.44051 - -85.05686 62.40627 -1.45778 - -79.46427 60.52655 -1.46764 - -74.03944 58.72021 -1.47059 - -68.77546 56.99212 -1.46709 - -63.66515 55.34204 -1.45761 - -63.66537 55.34253 -1.45761 - -58.69845 53.78857 -1.44261 - -53.86913 52.32035 -1.42251 - -49.16918 50.94585 -1.39771 - -44.58994 49.66804 -1.36863 - -40.12319 48.46593 -1.33568 - -40.12320 48.46350 -1.33568 - -35.31121 47.71552 -1.29546 - -30.57114 47.02663 -1.25155 - -25.89719 46.38885 -1.20441 - -21.28589 45.76598 -1.15456 - -16.73696 45.14458 -1.10247 - -16.73620 45.13618 -1.10247 - -10.60836 41.84061 -1.02679 - -5.08807 36.89373 -0.94895 - -0.27915 31.71447 -0.86993 - 3.79616 26.41453 -0.79071 - 7.12314 21.03745 -0.71229 - 7.12162 21.02924 -0.71229 - 9.70080 15.83612 -0.63550 - 11.58272 11.06974 -0.56071 - 12.82767 6.73770 -0.48819 - 13.49683 2.84481 -0.41820 - 13.65187 -0.60692 -0.35100 - 13.65160 -0.60228 -0.35100 - 13.35724 -3.53196 -0.28672 - 12.69519 -5.85297 -0.22518 - 11.75106 -7.56307 -0.16621 - 10.60982 -8.66993 -0.10962 - 9.35503 -9.18916 -0.05521 - 9.35655 -9.16162 -0.05521 - 8.06390 -9.28306 -0.00276 - 6.76949 -9.18776 0.04803 - 5.50327 -8.88107 0.09743 - 4.29453 -8.36731 0.14569 - 3.17202 -7.64977 0.19305 - 3.17462 -7.69208 0.19305 - 2.16832 -6.68423 0.23980 - 1.30888 -5.56477 0.28611 - 0.62457 -4.15086 0.33211 - 0.16719 -2.31048 0.37795 - 0.00029 0.00135 0.42375 + 0.00000 0.00000 -59.51820 + 0.15040 0.00000 -58.26481 + 0.30080 0.00000 -57.01143 + 0.45120 0.00000 -55.75808 + 0.60160 0.00000 -54.50476 + 0.75200 0.00000 -53.25150 + 0.75200 0.00000 -53.25150 + 0.90237 0.00000 -51.99830 + 1.05273 0.00000 -50.74517 + 1.20309 0.00000 -49.49214 + 1.35345 0.00000 -48.23921 + 1.50382 0.00000 -46.98639 + 1.50382 0.00000 -46.98639 + 1.70417 0.00000 -45.31617 + 1.90453 0.00000 -43.64621 + 2.10489 0.00000 -41.97654 + 2.30525 0.00000 -40.30718 + 2.50560 0.00000 -38.63817 + 2.50560 0.00000 -38.63817 + 2.67240 0.00000 -37.24762 + 2.83919 0.00000 -35.85735 + 3.00599 0.00000 -34.46737 + 3.17278 0.00000 -33.07772 + 3.33958 0.00000 -31.68839 + 3.33958 0.00000 -31.68839 + 3.50616 0.00000 -30.29942 + 3.67275 0.00000 -28.91081 + 3.83933 0.00000 -27.52259 + 4.00591 0.00000 -26.13477 + 4.17250 0.00000 -24.74738 + 4.17250 0.00000 -24.74738 + 4.31555 0.00000 -23.55456 + 4.45861 0.00000 -22.36209 + 4.60166 0.00000 -21.16996 + 4.74472 0.00000 -19.97818 + 4.88777 0.00000 -18.78678 + 4.88777 527.88000 -18.78678 + 65.25126 527.88000 -17.20943 + 125.61475 527.88000 -15.64098 + 185.97824 527.88000 -14.08968 + 246.34172 527.88000 -12.56375 + 306.70521 527.88000 -11.07142 + 306.70673 527.86149 -11.07142 + 349.05207 527.86149 -10.04868 + 391.39741 527.86149 -9.04938 + 433.74275 527.86149 -8.07638 + 476.08808 527.86149 -7.13253 + 518.43342 527.86149 -6.22066 + 518.43254 -100.91111 -6.22066 + 516.44051 -100.91111 -5.99802 + 514.44849 -100.91111 -5.77754 + 512.45647 -100.91111 -5.55923 + 510.46444 -100.91111 -5.34306 + 508.47242 -100.91111 -5.12904 + 508.47221 -100.90931 -5.12904 + 498.49356 -100.90931 -4.09081 + 488.51491 -100.90931 -3.10490 + 478.53626 -100.90931 -2.17028 + 468.55761 -100.90931 -1.28590 + 458.57896 -100.90931 -0.45071 + 458.57914 -100.90761 -0.45071 + 448.57177 -100.90761 0.33634 + 438.56441 -100.90761 1.07629 + 428.55704 -100.90761 1.77020 + 418.54967 -100.90761 2.41913 + 408.54231 -100.90761 3.02411 + 408.54231 -100.90730 3.02411 + 398.50924 -100.90730 3.58620 + 388.47618 -100.90730 4.10645 + 378.44311 -100.90730 4.58593 + 368.41004 -100.90730 5.02567 + 358.37698 -100.90730 5.42673 + 358.37694 -100.90671 5.42673 + 344.29351 -100.90671 5.92525 + 330.21009 -100.90671 6.35293 + 316.12667 -100.90671 6.71265 + 302.04324 -100.90671 7.00733 + 287.95982 -100.90671 7.23985 + 287.95969 -100.90475 7.23985 + 274.85046 -100.90475 7.40265 + 261.74123 -100.90475 7.51668 + 248.63201 -100.90475 7.58428 + 235.52278 -100.90475 7.60776 + 222.41355 -100.90475 7.58945 + 222.41369 -100.90491 7.58945 + 209.28077 -100.90491 7.53168 + 196.14785 -100.90491 7.43678 + 183.01493 -100.90491 7.30708 + 169.88200 -100.90491 7.14491 + 156.74908 -100.90491 6.95259 + 156.74908 -100.90493 6.95259 + 141.62602 -100.90493 6.69719 + 126.50296 -100.90493 6.40856 + 111.37990 -100.90493 6.09025 + 96.25684 -100.90493 5.74580 + 81.13378 -100.90493 5.37877 + 81.13378 -100.90493 5.37877 + 65.99930 -100.90493 4.99269 + 50.86482 -100.90493 4.59114 + 35.73034 -100.90493 4.17764 + 20.59586 -100.90493 3.75576 + 5.46138 -100.90493 3.32905 + 5.46011 -100.89893 3.32905 + -9.67424 -100.89893 2.90106 + -24.80859 -100.89893 2.47534 + -39.94295 -100.89893 2.05544 + -55.07730 -100.89893 1.64491 + -70.21165 -100.89893 1.24730 + -70.20915 -100.87882 1.24730 + -85.33062 -100.87882 0.86617 + -100.45208 -100.87882 0.50506 + -115.57354 -100.87882 0.16753 + -130.69501 -100.87882 -0.14289 + -145.81647 -100.87882 -0.42264 + -145.81645 -100.87910 -0.42264 + -146.01863 -100.87910 -0.42616 + -146.22081 -100.87910 -0.42967 + -146.42299 -100.87910 -0.43318 + -146.62517 -100.87910 -0.43668 + -146.82735 -100.87910 -0.44017 + -146.82736 -100.87878 -0.44017 + -150.66789 -100.87878 -0.50538 + -154.50842 -100.87878 -0.56830 + -158.34895 -100.87878 -0.62887 + -162.18948 -100.87878 -0.68705 + -166.03001 -100.87878 -0.74277 + -166.02986 87.20490 -0.74277 + -155.57801 87.20490 -0.90249 + -145.12617 87.20490 -1.03869 + -134.67432 87.20490 -1.15295 + -124.22248 87.20490 -1.24685 + -113.77064 87.20490 -1.32197 + -113.77025 87.19559 -1.32197 + -108.64200 83.63970 -1.35299 + -103.75436 79.27424 -1.37990 + -99.14158 74.51828 -1.40289 + -94.82213 69.49816 -1.42211 + -90.81105 64.24958 -1.43776 + -90.81055 64.22348 -1.43776 + -85.04729 62.41270 -1.45500 + -79.45427 60.52952 -1.46485 + -74.02932 58.71993 -1.46778 + -68.76550 56.98882 -1.46426 + -63.65562 55.33600 -1.45477 + -63.65572 55.33337 -1.45477 + -58.68975 53.77693 -1.43975 + -53.86159 52.30652 -1.41964 + -49.16299 50.93015 -1.39483 + -44.58524 49.65078 -1.36574 + -40.12008 48.44884 -1.33277 + -40.12010 48.44633 -1.33277 + -35.30977 47.69948 -1.29255 + -30.57125 47.01172 -1.24862 + -25.89873 46.37526 -1.20148 + -21.28870 45.75418 -1.15161 + -16.74085 45.13483 -1.09950 + -16.74012 45.12697 -1.09950 + -10.61250 41.84592 -1.02381 + -5.09090 36.90502 -0.94595 + -0.28041 31.72552 -0.86690 + 3.79642 26.42512 -0.78767 + 7.12483 21.04733 -0.70922 + 7.12332 21.03916 -0.70922 + 9.70376 15.84401 -0.63242 + 11.58660 11.07499 -0.55761 + 12.83206 6.73965 -0.48507 + 13.50123 2.84275 -0.41506 + 13.65566 -0.61373 -0.34785 + 13.65556 -0.60994 -0.34785 + 13.35990 -3.54187 -0.28355 + 12.69649 -5.86263 -0.22200 + 11.75097 -7.57328 -0.16301 + 10.60822 -8.68151 -0.10640 + 9.35174 -9.20151 -0.05198 + 9.35179 -9.19895 -0.05198 + 8.05487 -9.30681 0.00048 + 6.75809 -9.19782 0.05130 + 5.49143 -8.87733 0.10072 + 4.28419 -8.34964 0.14899 + 3.16513 -7.61804 0.19639 + 3.16521 -7.61723 0.19639 + 2.16212 -6.68388 0.24316 + 1.30373 -5.55007 0.28950 + 0.62195 -4.13331 0.33553 + 0.16639 -2.30198 0.38139 + 0.00001 0.00011 0.42722 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -10548,24 +10684,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -10640,8 +10776,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -10659,7 +10795,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -10671,7 +10807,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -10701,7 +10837,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -10842,13 +10978,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P - 78.00020 0.00000 78.00020 78.00020 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00048 0.00000 78.00048 78.00048 502 100 P 78.00086 0.00000 78.00086 78.00086 502 100 P 78.00124 0.00000 78.00124 78.00124 502 100 P 78.00162 0.00000 78.00162 78.00162 502 100 P - 78.00190 0.00000 78.00190 78.00190 502 100 P + 78.00190 0.00000 78.00190 78.00191 502 100 P 78.00230 0.00000 78.00230 78.00230 502 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -10861,26 +10997,26 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 0.36256 69.84300 58.91108 10.23728 1 0 A - 4.62718 70.73571 59.07501 10.45829 110 0 1 - 4.93071 71.62842 59.55950 10.80128 110 0 1 - 5.26192 72.52113 60.24321 11.14428 110 0 1 - 5.61893 73.41384 61.05177 11.48728 110 0 1 - 5.91410 74.30655 61.71273 11.74453 110 0 1 - 6.08560 74.30655 62.17548 11.91602 110 0 1 - 6.40284 75.19926 62.89559 12.17327 110 0 1 - 6.82625 76.09197 63.89046 12.51627 110 0 1 - 7.26842 76.98468 64.91817 12.85927 110 0 1 - 7.72774 77.87739 65.97136 13.20226 110 0 1 - 8.11681 78.77010 66.77420 13.45951 110 0 1 - 11.97880 78.77010 41.96461 15.49997 110 0 1 - 9.09054 82.75110 38.00268 12.27314 110 0 1 - 7.41831 86.73210 32.76169 10.18968 110 0 1 - 5.52877 90.71310 27.56116 8.10622 110 0 1 - 3.88403 94.69410 22.39249 6.02276 110 0 1 - 2.78399 98.67510 18.53208 4.46017 110 0 1 - 18.10990 98.67510 33.91813 2.66609 220 53 2 - 2.94144 100.04850 40.08908 3.16905 110 0 1 + 0.36256 69.84300 58.91108 10.20104 1 0 A + 4.63828 70.73571 59.07501 10.45829 110 0 1 + 4.94188 71.62842 59.55950 10.80128 110 0 1 + 5.27315 72.52113 60.24321 11.14428 110 0 1 + 5.63022 73.41384 61.05177 11.48728 110 0 1 + 5.92545 74.30655 61.71273 11.74453 110 0 1 + 6.09695 74.30655 62.17548 11.91602 110 0 1 + 6.41425 75.19926 62.89559 12.17327 110 0 1 + 6.83771 76.09197 63.89046 12.51627 110 0 1 + 7.27994 76.98468 64.91817 12.85927 110 0 1 + 7.73930 77.87739 65.97136 13.20226 110 0 1 + 8.12842 78.77010 66.77420 13.45951 110 0 1 + 10.31772 78.77010 41.96461 13.83574 110 0 1 + 9.09363 82.75110 38.00268 12.27314 110 0 1 + 7.42133 86.73210 32.76169 10.18968 110 0 1 + 5.53506 90.71310 27.56116 8.10622 110 0 1 + 3.89935 94.69410 22.39249 6.02276 110 0 1 + 2.79941 98.67510 18.53208 4.46017 110 0 1 + 18.21012 98.67510 33.91813 2.66609 220 54 2 + 3.01314 100.04850 40.08908 3.16905 110 0 1 2.07185 101.42190 48.22870 3.83967 1 0 A 2.43581 102.79530 56.28858 4.51028 1 0 A 2.80048 104.16870 64.29642 5.18090 1 0 A @@ -10892,23 +11028,23 @@ Status character 4.63207 111.03570 104.14003 8.53399 1 0 A 4.90758 112.40910 110.12653 9.03695 1 0 A 5.09133 112.40910 114.12106 9.37226 1 0 A - 6.33646 113.78250 120.11821 9.87522 110 0 1 - 7.75955 115.15590 128.12317 10.54584 110 0 1 - 9.15470 116.52930 136.13813 11.21646 110 0 1 - 10.52394 117.90270 144.16229 11.88707 110 0 1 - 11.70169 119.27610 150.18570 12.39004 110 0 1 - 12.03700 119.27610 154.20390 12.72534 110 0 1 - 13.19378 120.64950 160.23477 13.22831 110 0 1 - 14.50073 122.02290 168.28135 13.89892 110 9 1 - 15.79327 123.39630 176.33377 14.56954 110 9 1 - 17.07449 124.76970 184.39132 15.24016 110 9 1 - 18.17990 126.14310 190.43734 15.74312 110 10 1 - 14.88415 126.14310 194.46939 11.38031 110 8 1 - 19.61569 127.51650 200.51935 16.58139 110 10 1 - 20.88117 128.88990 208.58880 17.25201 110 10 1 - 23.27347 130.26330 216.66126 17.92263 110 11 1 - 26.11116 131.63670 224.73639 18.59324 110 12 1 - 28.86792 133.01010 230.79421 19.09621 110 13 1 + 6.37558 113.78250 120.11821 9.87522 110 0 1 + 7.79896 115.15590 128.12317 10.54584 110 0 1 + 9.19438 116.52930 136.13813 11.21646 110 0 1 + 10.56391 117.90270 144.16229 11.88707 110 0 1 + 11.74196 119.27610 150.18570 12.39004 110 0 1 + 12.07727 119.27610 154.20390 12.72534 110 0 1 + 13.23436 120.64950 160.23477 13.22831 110 8 1 + 14.54164 122.02290 168.28135 13.89892 110 9 1 + 15.83453 123.39630 176.33377 14.56954 110 9 1 + 17.11614 124.76970 184.39132 15.24016 110 9 1 + 18.22196 126.14310 190.43734 15.74312 110 10 1 + 18.55726 126.14310 194.46939 16.07843 110 10 1 + 19.65819 127.51650 200.51935 16.58139 110 10 1 + 20.92412 128.88990 208.58880 17.25201 110 10 1 + 23.17815 130.26330 216.66126 17.92263 110 11 1 + 26.01130 131.63670 224.73639 18.59324 110 12 1 + 28.76351 133.01010 230.79421 19.09621 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10923,9 +11059,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.360 'Hydrobiaklei' - -12.00 3.330 'Basisveen' - -12.50 37.919 'Eerste zandlaag' + -11.09 5.370 'Hydrobiaklei' + -12.00 3.251 'Basisveen' + -12.50 38.224 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -10944,7 +11080,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.56 'Eerste zandlaag' + -12.50 -14.67 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11082,24 +11218,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -11174,8 +11310,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -11193,7 +11329,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -11205,7 +11341,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -11235,7 +11371,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -11376,73 +11512,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 502 100 P 78.00440 0.00000 78.00440 78.00440 502 100 P 78.00560 0.00000 78.00560 78.00560 502 100 P 78.00680 0.00000 78.00680 78.00680 502 100 P 78.00770 0.00000 78.00770 78.00770 502 100 P - 44.47165 66.90000 67.75891 5.13458 220 66 2 - 59.96417 67.48860 70.78484 5.36388 330 85 3 - 67.24695 68.07720 74.81942 5.66961 330 90 3 - 71.13776 68.66580 78.85400 5.97534 440 90 4 - 74.91020 69.25440 82.88858 6.28107 440 90 4 - 77.77232 69.84300 85.91452 6.51036 440 91 4 - 15.99514 69.84300 58.91108 10.23728 110 27 1 - 22.16509 70.73571 59.07501 10.45829 110 38 1 - 21.81991 71.62842 59.55950 10.80128 110 37 1 - 21.45591 72.52113 60.24321 11.14428 110 36 1 - 21.07501 73.41384 61.05177 11.48728 110 35 1 - 20.67911 74.30655 61.71273 11.74453 110 34 1 - 20.67911 74.30655 62.17548 11.91602 110 33 1 - 20.27007 75.19926 62.89559 12.17327 110 32 1 - 19.84952 76.09197 63.89046 12.51627 110 31 1 - 19.41907 76.98468 64.91817 12.85927 110 30 1 - 18.98033 77.87739 65.97136 13.20226 110 29 1 - 18.88077 78.77010 66.77420 13.45951 110 28 1 - 18.43846 78.77010 41.96461 15.49997 110 44 1 - 15.09725 82.75110 38.00268 12.27314 110 40 1 - 12.89302 86.73210 32.76169 10.18968 110 39 1 - 10.68367 90.71310 27.56116 8.10622 110 39 1 - 9.11031 94.69410 22.39249 6.02276 110 41 1 - 7.91441 98.67510 18.53208 4.46017 110 43 1 - 28.91230 98.67510 33.91813 2.66609 330 85 3 - 31.37204 100.04850 40.08908 3.16905 220 78 2 - 32.53265 101.42190 48.22870 3.83967 220 67 2 - 33.63290 102.79530 56.28858 4.51028 220 60 2 - 34.69784 104.16870 64.29642 5.18090 220 54 2 - 35.18986 105.54210 70.28227 5.68386 220 50 2 - 35.42529 105.54210 74.26662 6.01917 110 48 1 - 33.18643 106.91550 80.23883 6.52214 110 41 1 - 30.98600 108.28890 88.20049 7.19275 110 35 1 - 28.74898 109.66230 96.16625 7.86337 110 30 1 - 26.49195 111.03570 104.14003 8.53399 110 25 1 - 24.13977 112.40910 110.12653 9.03695 110 22 1 - 24.32351 112.40910 114.12106 9.37226 110 21 1 - 21.98148 113.78250 120.11821 9.87522 110 18 1 - 19.74560 115.15590 128.12317 10.54584 110 15 1 - 17.52696 116.52930 136.13813 11.21646 110 13 1 - 15.32857 117.90270 144.16229 11.88707 110 11 1 - 13.07838 119.27610 150.18570 12.39004 110 9 1 - 13.41369 119.27610 154.20390 12.72534 110 9 1 - 13.26283 120.64950 160.23477 13.22831 110 8 1 - 13.29712 122.02290 168.28135 13.89892 110 0 1 - 13.34582 123.39630 176.33377 14.56954 110 0 1 - 13.40582 124.76970 184.39132 15.24016 110 0 1 - 13.30635 126.14310 190.43734 15.74312 110 0 1 - 8.95452 126.14310 194.46939 11.38031 110 0 1 - 13.54709 127.51650 200.51935 16.58139 110 0 1 - 13.62285 128.88990 208.58880 17.25201 110 0 1 - 13.69961 130.26330 216.66126 17.92263 110 0 1 - 13.77566 131.63670 224.73639 18.59324 110 0 1 - 13.68166 133.01010 230.79421 19.09621 110 0 1 + 44.46732 66.90000 67.75891 5.13458 220 66 2 + 59.96069 67.48860 70.78484 5.36388 330 85 3 + 67.24325 68.07720 74.81942 5.66961 330 90 3 + 71.13747 68.66580 78.85400 5.97534 440 90 4 + 74.90988 69.25440 82.88858 6.28107 440 90 4 + 77.77197 69.84300 85.91452 6.51036 440 91 4 + 15.95633 69.84300 58.91108 10.20104 110 27 1 + 22.20891 70.73571 59.07501 10.45829 110 38 1 + 21.86186 71.62842 59.55950 10.80128 110 37 1 + 21.49583 72.52113 60.24321 11.14428 110 36 1 + 21.11274 73.41384 61.05177 11.48728 110 35 1 + 20.71449 74.30655 61.71273 11.74453 110 34 1 + 20.71449 74.30655 62.17548 11.91602 110 33 1 + 20.30291 75.19926 62.89559 12.17327 110 32 1 + 19.87965 76.09197 63.89046 12.51627 110 31 1 + 19.44633 76.98468 64.91817 12.85927 110 30 1 + 19.00458 77.87739 65.97136 13.20226 110 29 1 + 18.87664 78.77010 66.77420 13.45951 110 28 1 + 16.76784 78.77010 41.96461 13.83574 110 40 1 + 15.09090 82.75110 38.00268 12.27314 110 40 1 + 12.88670 86.73210 32.76169 10.18968 110 39 1 + 10.67738 90.71310 27.56116 8.10622 110 39 1 + 9.10847 94.69410 22.39249 6.02276 110 41 1 + 7.91274 98.67510 18.53208 4.46017 110 43 1 + 28.91165 98.67510 33.91813 2.66609 330 85 3 + 31.37173 100.04850 40.08908 3.16905 220 78 2 + 32.53347 101.42190 48.22870 3.83967 220 67 2 + 33.63497 102.79530 56.28858 4.51028 220 60 2 + 34.70130 104.16870 64.29642 5.18090 220 54 2 + 35.19483 105.54210 70.28227 5.68386 220 50 2 + 35.43563 105.54210 74.26662 6.01917 110 48 1 + 33.20027 106.91550 80.23883 6.52214 110 41 1 + 31.00362 108.28890 88.20049 7.19275 110 35 1 + 28.77067 109.66230 96.16625 7.86337 110 30 1 + 26.51795 111.03570 104.14003 8.53399 110 25 1 + 24.17032 112.40910 110.12653 9.03695 110 22 1 + 24.35407 112.40910 114.12106 9.37226 110 21 1 + 22.01681 113.78250 120.11821 9.87522 110 18 1 + 19.78588 115.15590 128.12317 10.54584 110 15 1 + 17.57232 116.52930 136.13813 11.21646 110 13 1 + 15.37912 117.90270 144.16229 11.88707 110 11 1 + 13.11731 119.27610 150.18570 12.39004 110 9 1 + 13.37342 119.27610 154.20390 12.72534 110 9 1 + 13.22226 120.64950 160.23477 13.22831 110 0 1 + 13.25621 122.02290 168.28135 13.89892 110 0 1 + 13.30455 123.39630 176.33377 14.56954 110 0 1 + 13.36418 124.76970 184.39132 15.24016 110 0 1 + 13.26429 126.14310 190.43734 15.74312 110 0 1 + 13.59959 126.14310 194.46939 16.07843 110 0 1 + 13.50460 127.51650 200.51935 16.58139 110 0 1 + 13.57990 128.88990 208.58880 17.25201 110 0 1 + 13.65618 130.26330 216.66126 17.92263 110 0 1 + 13.73176 131.63670 224.73639 18.59324 110 0 1 + 13.63727 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11456,10 +11592,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 20.063 'Grind' - -11.09 18.487 'Hydrobiaklei' - -12.00 6.096 'Basisveen' - -12.50 75.516 'Eerste zandlaag' + -10.79 20.062 'Grind' + -11.09 18.513 'Hydrobiaklei' + -12.00 6.010 'Basisveen' + -12.50 75.829 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -11476,9 +11612,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 8.11 'Grind' - -11.09 3.93 'Hydrobiaklei' + -11.09 3.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.99 'Eerste zandlaag' + -12.50 29.11 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11705,7 +11841,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=8 +IterationCount=9 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -11745,20 +11881,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 31.54 : Percentage mobilized resistance left - 32.77 : Percentage mobilized resistance right - 248.21 : Effective left - 443.80 : Effective right + 31.55 : Percentage mobilized resistance left + 32.78 : Percentage mobilized resistance right + 248.26 : Effective left + 443.88 : Effective right 1120.54 : Water pressure left 924.92 : Water pressure right 786.97 : Max effective resistance left 1354.10 : Max effective resistance right -9369.37 : Max moment left -14782.45 : Max moment right --3127.58 : Max mobilized moment left --3766.00 : Max mobilized moment right - 81.57 : Vertical force left - 100.40 : Vertical force right +-3128.32 : Max mobilized moment left +-3766.92 : Max mobilized moment right + 81.59 : Vertical force left + 100.44 : Vertical force right 33.4 : Max mobilized moment percentage left 25.5 : Max mobilized moment percentage right -2.43 : Level of single support @@ -11767,17 +11903,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --81.57 : Active force -100.40 : Passive force --81.57 : Plugged active force -100.40 : Plugged passive force +-81.59 : Active force +100.44 : Passive force +-81.59 : Plugged active force +100.44 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -18.84 : Resulting Vertical Force Unplugged -18.84 : Resulting Vertical Force Plugged +18.85 : Resulting Vertical Force Unplugged +18.85 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -11790,210 +11926,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 598.08157 - 0.00000 0.00000 593.44148 - 0.00000 0.00000 588.80139 - 0.00000 0.00000 584.16130 - 0.00000 0.00000 579.52121 - 0.00000 0.00000 574.88111 - 0.00000 0.00000 574.88111 - 0.00000 0.00000 570.24102 - 0.00000 0.00000 565.60093 - 0.00000 0.00000 560.96084 - 0.00000 0.00000 556.32075 - 0.00000 0.00000 551.68066 - 0.00000 0.00000 551.68066 - 0.00000 -0.00049 551.13476 - -0.00001 -0.00196 550.58887 - -0.00004 -0.00441 550.04298 - -0.00010 -0.00785 549.49709 - -0.00020 -0.01226 548.95119 - -0.00020 -0.01226 548.95119 - -0.00803 -0.14175 542.40047 - -0.03988 -0.41251 535.84975 - -0.11269 -0.82453 529.29904 - -0.24341 -1.37781 522.74836 - -0.44901 -2.07236 516.19773 - -0.44901 -2.07236 516.19773 - -0.68977 -2.75906 510.73891 - -1.00409 -3.54386 505.28018 - -1.40181 -4.42676 499.82159 - -1.89272 -5.40776 494.36319 - -2.48663 -6.48686 488.90502 - -2.48663 -6.48686 488.90502 - -3.19336 -7.66406 483.44715 - -4.02271 -8.93936 477.98968 - -4.98450 -10.31276 472.53273 - -6.08854 -11.78426 467.07643 - -7.34462 -13.35386 461.62089 - -7.34462 -13.35386 461.62089 - -8.55395 -14.78218 456.92984 - -9.88924 -16.28305 452.23959 - -11.35672 -17.85648 447.55028 - -12.96263 -19.50246 442.86203 - -14.71322 -21.22099 438.17499 - -14.71322 -21.22099 438.17499 - -17.26743 -23.61088 431.96403 - -20.10135 -26.12827 425.75590 - -23.22952 -28.77314 419.55111 - -26.66647 -31.54551 413.35016 - -30.42674 -34.44536 407.15357 - -30.42674 -34.44536 407.15357 - -30.82111 -34.74236 406.53418 - -31.21887 -35.04063 405.91483 - -31.62004 -35.34018 405.29553 - -32.02463 -35.64100 404.67629 - -32.43266 -35.94310 404.05709 - -32.43203 -35.95668 404.05709 - -34.95778 -37.63135 400.33222 - -37.58834 -39.01224 396.60941 - -40.30354 -40.09923 392.88884 - -43.08323 -40.89233 389.17067 - -45.90822 -41.43405 385.45504 - -45.90853 -41.43739 385.45504 - -46.73818 -41.52399 384.37227 - -47.56935 -41.58922 383.28974 - -48.40158 -41.62947 382.20745 - -49.23436 -41.64474 381.12540 - -50.06723 -41.63864 380.04360 - -50.06723 -41.63860 380.04360 - -52.16773 -42.38116 377.34021 - -54.30523 -43.11667 374.63846 - -56.47920 -43.84023 371.93843 - -58.68904 -44.55148 369.24017 - -60.93422 -45.25478 366.54376 - -60.93423 -45.25413 366.54376 - -63.21429 -45.94874 363.84927 - -65.52915 -46.64624 361.15677 - -67.87896 -47.34652 358.46634 - -70.26384 -48.04907 355.77804 - -72.68389 -48.75330 353.09196 - -72.68390 -48.75315 353.09196 - -77.62987 -50.16676 347.72672 - -82.71736 -51.58354 342.37127 - -87.94665 -53.00260 337.02625 - -93.31791 -54.42265 331.69232 - -98.83119 -55.84282 326.37015 - -98.83119 -55.84256 326.37015 - -104.48641 -57.26175 321.06041 - -110.28349 -58.67961 315.76383 - -116.22227 -60.09553 310.48116 - -122.30252 -61.50905 305.21315 - -128.52400 -62.92019 299.96054 - -128.52403 -62.91971 299.96054 - -137.47067 -64.88872 292.63421 - -146.69259 -66.85172 285.34182 - -156.18881 -68.80734 278.08571 - -165.95828 -70.75510 270.86823 - -175.99990 -72.69564 263.69171 - -176.00004 -72.69391 263.69171 - -185.43326 -72.43641 257.06663 - -194.83705 -72.26082 250.48103 - -204.22718 -72.22608 243.93690 - -213.62194 -72.33230 237.43625 - -223.03713 -72.52067 230.98109 - -223.03698 -72.51960 230.98109 - -232.49336 -72.96707 224.57338 - -242.04284 -74.20898 218.21516 - -251.81446 -76.06850 211.90852 - -261.80635 -77.59782 205.65552 - -271.97558 -78.79694 199.45826 - -271.97558 -78.79694 199.45826 - -283.84461 -79.98607 192.40307 - -295.89142 -81.17519 185.42779 - -308.11599 -82.36431 178.53587 - -320.51835 -83.55343 171.73074 - -333.09847 -84.74256 165.01586 - -333.09847 -84.74256 165.01586 - -345.85637 -85.93168 158.39471 - -358.79204 -87.12080 151.87092 - -371.90549 -88.30993 145.44821 - -385.19671 -89.49905 139.13026 - -398.66571 -90.68817 132.92075 - -398.66653 -90.68437 132.92075 - -412.21884 -90.09040 126.82355 - -425.51073 -87.63356 120.84243 - -438.39330 -84.61538 114.98101 - -450.78298 -81.04022 109.24289 - -462.60017 -76.98027 103.63171 - -462.59825 -76.96613 103.63171 - -473.75483 -72.21705 98.15100 - -484.16718 -66.98709 92.80371 - -493.75662 -61.20825 87.59253 - -502.44112 -54.88094 82.52015 - -510.14211 -48.07380 77.58924 - -510.14210 -48.07379 77.58924 - -510.23815 -47.97808 77.52424 - -510.33401 -47.88228 77.45927 - -510.42968 -47.78638 77.39433 - -510.52516 -47.69039 77.32941 - -510.62044 -47.59431 77.26452 - -510.62047 -47.59368 77.26452 - -512.39773 -45.94409 76.03648 - -514.11204 -44.28026 74.81776 - -515.76282 -42.60014 73.60840 - -517.34945 -40.90374 72.40841 - -518.87133 -39.19309 71.21784 - -518.87123 -39.19312 71.21784 - -523.24347 -33.65728 67.52030 - -526.94328 -27.97910 63.91770 - -529.95194 -22.13813 60.41057 - -532.24992 -16.13425 56.99946 - -533.81846 -9.98775 53.68492 - -533.81852 -9.98855 53.68492 - -534.32350 -6.83885 52.06399 - -534.63847 -3.65346 50.46730 - -534.76110 -0.42726 48.89484 - -534.68893 2.83974 47.34663 - -534.41962 6.14246 45.82267 - -534.42024 6.14894 45.82267 - -533.60817 11.71048 43.55762 - -532.28644 17.35421 41.34824 - -530.44685 23.09193 39.19434 - -528.08087 28.92305 37.09573 - -525.18249 34.76624 35.05221 - -525.18197 34.79764 35.05221 - -521.74591 40.68320 33.06354 - -517.78169 46.43471 31.12931 - -513.29616 52.14108 29.24905 - -508.29346 57.79994 27.42228 - -502.77861 63.39184 25.64855 - -502.77825 63.39350 25.64855 - -496.24624 67.25918 23.75992 - -489.32303 71.22630 21.93381 - -482.01154 74.87636 20.16930 - -474.36141 78.11702 18.46547 - -466.39017 81.29664 16.82140 - -466.39821 81.34507 16.82140 - -453.65283 100.46769 14.61858 - -438.33572 118.12342 12.52780 - -420.63692 134.52230 10.54473 - -400.74773 149.24420 8.66501 - -378.95322 161.72314 6.88431 - -378.94565 161.90031 6.88431 - -355.53586 172.16122 5.19766 - -330.83968 180.29708 3.59880 - -305.14682 186.41578 2.08140 - -278.73654 190.53550 0.63918 - -251.93005 191.80142 -0.73417 - -251.88419 191.72431 -0.73417 - -225.15079 189.69877 -2.04532 - -198.87673 185.35463 -3.30092 - -173.33142 179.29780 -4.50724 - -148.75073 171.58274 -5.67056 - -125.36322 162.26140 -6.79714 - -125.36007 162.20962 -6.79714 - -103.39612 151.30352 -7.89320 - -83.06682 138.86027 -8.96379 - -64.58609 124.89885 -10.01344 - -48.15301 109.69731 -11.04669 - -33.91233 93.60696 -12.06807 - -33.92580 93.50064 -12.06807 - -22.02273 76.42788 -13.08179 - -12.56205 58.58235 -14.09013 - -5.65934 39.88667 -15.09478 - -1.43318 20.34687 -16.09744 - 0.00019 0.00144 -17.09979 + 0.00000 0.00000 598.27107 + 0.00000 0.00000 593.62988 + 0.00000 0.00000 588.98869 + 0.00000 0.00000 584.34750 + 0.00000 0.00000 579.70630 + 0.00000 0.00000 575.06511 + 0.00000 0.00000 575.06511 + 0.00000 0.00000 570.42392 + 0.00000 0.00000 565.78273 + 0.00000 0.00000 561.14154 + 0.00000 0.00000 556.50035 + 0.00000 0.00000 551.85916 + 0.00000 0.00000 551.85916 + 0.00000 -0.00049 551.31313 + -0.00001 -0.00196 550.76711 + -0.00004 -0.00441 550.22109 + -0.00010 -0.00785 549.67507 + -0.00020 -0.01226 549.12904 + -0.00020 -0.01226 549.12904 + -0.00803 -0.14175 542.57677 + -0.03988 -0.41251 536.02449 + -0.11269 -0.82453 529.47223 + -0.24341 -1.37781 522.92000 + -0.44901 -2.07236 516.36781 + -0.44901 -2.07236 516.36781 + -0.68977 -2.75906 510.90770 + -1.00409 -3.54386 505.44768 + -1.40181 -4.42676 499.98780 + -1.89272 -5.40776 494.52810 + -2.48663 -6.48686 489.06864 + -2.48663 -6.48686 489.06864 + -3.19336 -7.66406 483.60947 + -4.02271 -8.93936 478.15071 + -4.98450 -10.31276 472.69247 + -6.08854 -11.78426 467.23487 + -7.34462 -13.35386 461.77804 + -7.34462 -13.35386 461.77804 + -8.55395 -14.78218 457.08588 + -9.88924 -16.28305 452.39451 + -11.35672 -17.85648 447.70408 + -12.96263 -19.50246 443.01472 + -14.71322 -21.22099 438.32657 + -14.71322 -21.22099 438.32657 + -17.26743 -23.61088 432.11414 + -20.10135 -26.12827 425.90453 + -23.22952 -28.77314 419.69826 + -26.66647 -31.54551 413.49584 + -30.42674 -34.44536 407.29778 + -30.42674 -34.44536 407.29778 + -30.82111 -34.74236 406.67823 + -31.21887 -35.04063 406.05874 + -31.62004 -35.34018 405.43929 + -32.02463 -35.64100 404.81990 + -32.43266 -35.94310 404.20056 + -32.43203 -35.95671 404.20056 + -34.95778 -37.63138 400.47480 + -37.58834 -39.01227 396.75111 + -40.30354 -40.09926 393.02965 + -43.08324 -40.89236 389.31058 + -45.90823 -41.43408 385.59407 + -45.90854 -41.43743 385.59407 + -46.73819 -41.52403 384.51104 + -47.56936 -41.58926 383.42825 + -48.40159 -41.62951 382.34570 + -49.23438 -41.64478 381.26339 + -50.06724 -41.63868 380.18133 + -50.06724 -41.63863 380.18133 + -52.16775 -42.38120 377.47730 + -54.30524 -43.11671 374.77490 + -56.47922 -43.84027 372.07422 + -58.68907 -44.55152 369.37532 + -60.93424 -45.25482 366.67826 + -60.93425 -45.25416 366.67826 + -63.21431 -45.94877 363.98312 + -65.52917 -46.64627 361.28998 + -67.87898 -47.34655 358.59890 + -70.26387 -48.04911 355.90995 + -72.68392 -48.75334 353.22322 + -72.68393 -48.75318 353.22322 + -77.62990 -50.16679 347.85669 + -82.71740 -51.58358 342.49994 + -87.94669 -53.00263 337.15363 + -93.31796 -54.42269 331.81841 + -98.83124 -55.84285 326.49495 + -98.83124 -55.84260 326.49495 + -104.48646 -57.26178 321.18391 + -110.28355 -58.67965 315.88604 + -116.22233 -60.09556 310.60207 + -122.30258 -61.50908 305.33277 + -128.52406 -62.92022 300.07886 + -128.52409 -62.91975 300.07886 + -137.47075 -64.88875 292.75072 + -146.69266 -66.85175 285.45652 + -156.18889 -68.80738 278.19860 + -165.95836 -70.75513 270.97930 + -175.99999 -72.69568 263.80098 + -176.00013 -72.69393 263.80098 + -185.43335 -72.43644 257.17421 + -194.83715 -72.26085 250.58693 + -204.22728 -72.22611 244.04112 + -213.62205 -72.33232 237.53879 + -223.03724 -72.52070 231.08194 + -223.03709 -72.51962 231.08194 + -232.49347 -72.96709 224.67255 + -242.04296 -74.20900 218.31265 + -251.81457 -76.06852 212.00432 + -261.80646 -77.59784 205.74965 + -271.97570 -78.79696 199.55071 + -271.97570 -78.79696 199.55071 + -283.84474 -79.98608 192.49358 + -295.89154 -81.17521 185.51636 + -308.11612 -82.36433 178.62251 + -320.51848 -83.55345 171.81545 + -333.09860 -84.74258 165.09864 + -333.09860 -84.74258 165.09864 + -345.85651 -85.93170 158.47555 + -358.79218 -87.12082 151.94983 + -371.90563 -88.30994 145.52518 + -385.19686 -89.49907 139.20529 + -398.66585 -90.68819 132.99386 + -398.66668 -90.68439 132.99386 + -412.21899 -90.09042 126.89472 + -425.51089 -87.63357 120.91166 + -438.39346 -84.61540 115.04831 + -450.78313 -81.04024 109.30826 + -462.60033 -76.98029 103.69514 + -462.59841 -76.96613 103.69514 + -473.75499 -72.21706 98.21250 + -484.16734 -66.98709 92.86328 + -493.75678 -61.20825 87.65017 + -502.44128 -54.88094 82.57585 + -510.14227 -48.07380 77.64300 + -510.14226 -48.07379 77.64300 + -510.23831 -47.97807 77.57798 + -510.33417 -47.88227 77.51299 + -510.42984 -47.78638 77.44802 + -510.52532 -47.69038 77.38308 + -510.62060 -47.59430 77.31816 + -510.62062 -47.59404 77.31816 + -512.39789 -45.94445 76.08963 + -514.11222 -44.28062 74.87042 + -515.76301 -42.60050 73.66056 + -517.34965 -40.90410 72.46008 + -518.87154 -39.19345 71.26902 + -518.87144 -39.19310 71.26902 + -523.24368 -33.65726 67.56993 + -526.94349 -27.97908 63.96578 + -529.95215 -22.13811 60.45710 + -532.25012 -16.13423 57.04444 + -533.81866 -9.98773 53.72834 + -533.81872 -9.98852 53.72834 + -534.32370 -6.83882 52.10664 + -534.63867 -3.65343 50.50917 + -534.76129 -0.42723 48.93594 + -534.68912 2.83977 47.38695 + -534.41981 6.14249 45.86221 + -534.41986 6.14257 45.86221 + -533.60837 11.70410 43.59598 + -532.28722 17.34784 41.38543 + -530.44821 23.08556 39.23035 + -528.08280 28.91727 37.13056 + -525.18487 34.76219 35.08587 + -525.18427 34.77941 35.08587 + -521.75450 40.58924 33.09603 + -517.79873 46.34288 31.16062 + -513.32147 52.05130 29.27919 + -508.32683 57.71237 27.45125 + -502.81984 63.30663 25.67635 + -502.81956 63.30779 25.67635 + -496.29602 67.17544 23.78644 + -489.38109 71.14444 21.95906 + -482.07770 74.79629 20.19328 + -474.43548 78.03863 18.48820 + -466.47201 81.21984 16.84289 + -466.48008 81.26876 16.84289 + -453.74429 100.40657 14.63834 + -438.43476 118.07597 12.54586 + -420.74174 134.48703 10.56110 + -400.85648 149.22494 8.67973 + -379.06328 161.72306 6.89740 + -379.05571 161.90021 6.89740 + -355.64476 172.17753 5.20916 + -330.94530 180.32707 3.60872 + -305.24744 186.45672 2.08977 + -278.83067 190.58816 0.64603 + -252.01596 191.86530 -0.72882 + -251.97010 191.78815 -0.72882 + -225.22709 189.77027 -2.04145 + -198.94296 185.42652 -3.29851 + -173.38771 179.36752 -4.50628 + -148.79756 171.64777 -5.67102 + -125.40141 162.31926 -6.79902 + -125.39826 162.26739 -6.79902 + -103.42687 151.35169 -7.89649 + -83.09163 138.89644 -8.96847 + -64.60682 124.92068 -10.01952 + -48.17158 109.70755 -11.05416 + -33.93002 93.60908 -12.07693 + -33.94350 93.50268 -12.07693 + -22.03593 76.47274 -13.09202 + -12.56966 58.61729 -14.10174 + -5.66280 39.91082 -15.10777 + -1.43406 20.35937 -16.11180 + 0.00019 0.00144 -17.11552 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -12355,7 +12491,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -12367,7 +12503,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -12397,7 +12533,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -12427,13 +12563,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -12575,7 +12711,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 502 100 P 19.15121 6.37650 19.15121 8.03679 502 100 P 19.15346 7.35750 19.15346 8.05953 502 100 P - 19.15749 7.35750 19.15749 8.11067 502 100 P + 19.15749 7.35750 19.15749 8.07470 502 100 P 19.16680 8.33850 19.16680 8.09745 502 100 P 19.18391 9.31950 19.18391 8.12778 502 100 P 19.20583 10.30050 19.20583 8.15810 502 100 P @@ -12587,7 +12723,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 502 100 P 19.47040 17.75610 19.47040 8.38860 502 100 P 19.51557 19.12950 19.51557 8.42045 502 100 P - 35.42323 19.12950 35.42323 9.37395 502 100 P + 35.42323 19.12950 35.42323 7.71513 502 100 P 32.70625 22.94480 32.70625 6.76540 502 100 P 29.08315 26.76010 29.08315 5.49910 502 100 P 25.45932 30.57540 25.45932 4.23280 502 100 P @@ -12609,7 +12745,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 502 0 P 0.00000 67.54866 0.00000 0.00000 502 0 P 0.00000 69.01526 0.00000 0.00000 502 0 P - 0.00000 70.48186 0.00000 0.00000 502 100 P + 0.00000 70.48186 0.00000 0.00000 502 0 P 0.00000 71.94845 0.00000 0.00000 502 0 P 1.35175 71.94845 1.35175 1.35175 502 100 P 22.50228 73.41505 22.50228 4.34725 502 100 P @@ -12617,7 +12753,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 502 100 P 33.72460 77.81483 33.72460 6.60891 502 100 P 36.49712 79.28142 36.49712 7.17432 502 100 P - 38.34053 79.28142 38.34053 4.74872 502 100 P + 38.34053 79.28142 38.34053 7.55127 502 100 P 41.10027 80.74802 41.10027 8.11668 502 100 P 44.77379 82.21461 44.77379 8.87057 502 100 P 48.44314 83.68121 48.44314 9.62445 502 100 P @@ -12647,37 +12783,37 @@ Status character 62.06392 96.22820 62.06392 16.99966 502 100 P 62.74417 96.81680 62.74417 17.23925 502 100 P 63.25446 97.40540 63.25446 17.41894 502 100 P - 63.68261 97.40540 63.68261 15.51013 502 100 P + 63.68261 97.40540 63.68261 17.56967 502 100 P 64.45683 98.29811 64.45683 17.84220 502 100 P 65.48938 99.19082 65.48938 18.20557 502 100 P 66.52224 100.08353 66.52224 18.56894 502 100 P - 67.54218 100.97624 67.55537 18.93231 440 99 4 - 66.78768 101.86895 68.33038 19.20484 440 98 4 - 68.84713 101.86895 68.84713 37.05286 502 100 P - 66.41388 102.76166 69.62238 19.65905 440 95 4 - 65.90093 103.65437 70.65622 20.02242 440 93 4 - 65.42173 104.54708 71.69028 20.38579 440 91 4 - 64.85693 105.43979 72.72453 20.74916 330 89 3 - 63.94993 106.33250 73.50032 21.02168 330 87 3 - 41.23840 106.33250 53.01517 22.78231 220 78 2 - 41.98315 104.31350 56.86471 24.64229 220 74 2 - 43.39160 102.29450 61.99022 27.12226 220 70 2 - 44.82929 100.27550 67.10701 29.60224 220 67 2 - 46.29597 98.25650 72.21510 32.08222 220 64 2 - 47.16104 96.23750 76.04076 33.94220 220 62 2 - 153.16895 96.23750 247.70391 23.76485 220 62 2 - 142.17753 97.61090 243.72655 24.33242 220 58 2 - 132.98574 98.98430 244.09044 25.08918 220 54 2 - 125.10230 100.35770 247.25554 25.84593 220 51 2 - 109.90623 101.73110 251.72665 26.60269 110 44 1 - 93.82632 103.10450 255.56014 27.17026 110 37 1 - 94.20470 103.10450 258.28993 27.54864 110 36 1 - 78.93487 104.47790 262.57243 28.11621 110 30 1 - 64.61140 105.85130 268.51677 28.87297 110 24 1 - 50.99127 107.22470 274.66750 29.62973 110 19 1 - 38.02007 108.59810 280.96720 30.38649 110 14 1 - 25.45357 109.97150 285.76348 30.95406 110 0 1 - 25.83195 109.97150 288.99188 31.33244 110 0 1 + 67.55537 100.97624 67.55537 18.93231 502 100 P + 66.81246 101.86895 68.33038 19.20484 440 98 4 + 67.15885 101.86895 68.84713 19.38652 440 98 4 + 66.43776 102.76166 69.62238 19.65905 440 95 4 + 65.92391 103.65437 70.65622 20.02242 440 93 4 + 65.44379 104.54708 71.69028 20.38579 440 91 4 + 64.88337 105.43979 72.72453 20.74916 330 89 3 + 63.97522 106.33250 73.50032 21.02168 330 87 3 + 41.25864 106.33250 53.01517 22.78231 220 78 2 + 42.00243 104.31350 56.86471 24.64229 220 74 2 + 43.40991 102.29450 61.99022 27.12226 220 70 2 + 44.84663 100.27550 67.10701 29.60224 220 67 2 + 46.31234 98.25650 72.21510 32.08222 220 64 2 + 47.17644 96.23750 76.04076 33.94220 220 62 2 + 153.28299 96.23750 247.70391 23.76485 220 62 2 + 142.28056 97.61090 243.72655 24.33242 220 58 2 + 133.07797 98.98430 244.09044 25.08918 220 55 2 + 125.18393 100.35770 247.25554 25.84593 220 51 2 + 110.05327 101.73110 251.72665 26.60269 110 44 1 + 93.95344 103.10450 255.56014 27.17026 110 37 1 + 94.33182 103.10450 258.28993 27.54864 110 37 1 + 79.04227 104.47790 262.57243 28.11621 110 30 1 + 64.69927 105.85130 268.51677 28.87297 110 24 1 + 51.05984 107.22470 274.66750 29.62973 110 19 1 + 38.06954 108.59810 280.96720 30.38649 110 14 1 + 25.48418 109.97150 285.76348 30.95406 110 0 1 + 25.86256 109.97150 288.99188 31.33244 110 0 1 18.28233 111.34490 293.87257 31.90001 1 0 A 18.72123 112.71830 300.43310 32.65677 1 0 A 19.15986 114.09170 307.04554 33.41353 1 0 A @@ -12713,9 +12849,9 @@ Layer name -3.50 42.014 'Hollandveen' -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' - -10.00 122.306 'Hydrobiaklei' - -12.00 22.070 'Basisveen' - -12.50 174.571 'Eerste zandlaag' + -10.00 122.242 'Hydrobiaklei' + -12.00 22.079 'Basisveen' + -12.50 174.704 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12736,9 +12872,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.77 'Oude Zeeklei' -7.00 14.19 'Wadzand' - -10.00 22.23 'Hydrobiaklei' + -10.00 22.22 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 58.00 'Eerste zandlaag' + -12.50 58.04 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -12993,7 +13129,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -13005,7 +13141,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -13211,26 +13347,26 @@ Status character 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A - 12.88969 111.55210 187.60408 20.52326 110 0 1 - 26.59133 112.92550 192.70971 21.09083 110 14 1 - 27.00596 112.92550 196.12085 21.50547 110 14 1 - 40.13667 114.29890 201.24614 22.03678 110 20 1 - 53.01798 115.67230 208.09120 22.79354 110 25 1 - 65.48128 117.04570 214.94675 23.55030 110 30 1 - 77.58403 118.41910 221.81023 24.30706 110 35 1 - 89.19511 119.79250 226.96177 24.87463 110 39 1 - 89.57349 119.79250 230.39786 25.25301 110 39 1 - 100.94020 121.16590 235.55418 25.82058 110 43 1 - 112.29906 122.53930 242.43233 26.57734 110 46 1 - 123.50361 123.91270 249.31352 27.33410 110 50 1 - 130.89019 125.28610 256.19718 28.09086 220 51 2 - 136.96628 126.65950 261.36123 28.65843 220 52 2 - 138.85620 126.65950 264.80452 30.77502 220 52 2 - 144.12780 128.03290 269.97025 29.60438 220 53 2 - 150.66070 129.40630 276.85902 30.36113 220 54 2 - 157.14683 130.77970 283.74896 31.11789 220 55 2 - 163.59325 132.15310 290.63991 31.87465 220 56 2 - 169.42012 133.52650 295.80866 32.44222 220 57 2 + 12.84021 111.55210 187.60408 20.52326 110 0 1 + 26.56071 112.92550 192.70971 21.09083 110 14 1 + 26.93909 112.92550 196.12085 21.46921 110 14 1 + 40.12470 114.29890 201.24614 22.03678 110 20 1 + 53.02440 115.67230 208.09120 22.79354 110 25 1 + 65.50584 117.04570 214.94675 23.55030 110 30 1 + 77.62645 118.41910 221.81023 24.30706 110 35 1 + 89.25509 119.79250 226.96177 24.87463 110 39 1 + 89.63347 119.79250 230.39786 25.25301 110 39 1 + 101.01740 121.16590 235.55418 25.82058 110 43 1 + 112.39320 122.53930 242.43233 26.57734 110 46 1 + 123.61446 123.91270 249.31352 27.33410 110 50 1 + 130.94491 125.28610 256.19718 28.09086 220 51 2 + 137.02755 126.65950 261.36123 28.65843 220 52 2 + 138.17689 126.65950 264.80452 29.03681 220 52 2 + 144.19549 128.03290 269.97025 29.60438 220 53 2 + 150.73467 129.40630 276.85902 30.36113 220 54 2 + 157.22699 130.77970 283.74896 31.11789 220 55 2 + 163.67951 132.15310 290.63991 31.87465 220 56 2 + 169.51240 133.52650 295.80866 32.44222 220 57 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13250,7 +13386,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 245.518 'Eerste zandlaag' + -12.50 245.574 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -13272,7 +13408,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -81.57 'Eerste zandlaag' + -12.50 -81.59 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -13512,8 +13648,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 527.16005 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 283.37600 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 527.15496 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 283.39855 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -13555,9 +13691,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 16.14 : Percentage mobilized resistance left - 12.53 : Percentage mobilized resistance right - 57.76 : Effective left - 94.79 : Effective right + 12.52 : Percentage mobilized resistance right + 57.74 : Effective left + 94.77 : Effective right 745.54 : Water pressure left 1120.54 : Water pressure right 357.85 : Max effective resistance left @@ -13566,8 +13702,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 15.86 : Vertical force left - 27.10 : Vertical force right + 15.85 : Vertical force left + 27.09 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -13576,17 +13712,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --27.10 : Active force -15.86 : Passive force --27.10 : Plugged active force -15.86 : Plugged passive force +-27.09 : Active force +15.85 : Passive force +-27.09 : Plugged active force +15.85 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --11.24 : Resulting Vertical Force Unplugged --11.24 : Resulting Vertical Force Plugged +-11.25 : Resulting Vertical Force Unplugged +-11.25 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -13599,210 +13735,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 5.02527 - 0.00000 0.00000 4.67139 - 0.00000 0.00000 4.31750 - 0.00000 0.00000 3.96362 - 0.00000 0.00000 3.60973 - 0.00000 0.00000 3.25584 - 0.00000 0.00000 3.25584 - 0.00000 0.00000 2.90196 - 0.00000 0.00000 2.54807 - 0.00000 0.00000 2.19419 - 0.00000 0.00000 1.84030 - 0.00000 0.00000 1.48642 - 0.00000 0.00000 1.48642 - 0.00000 0.00049 1.44478 - 0.00001 0.00196 1.40315 - 0.00004 0.00441 1.36152 - 0.00010 0.00785 1.31988 - 0.00020 0.01226 1.27825 - 0.00020 0.01226 1.27825 - 0.00803 0.14175 0.77865 - 0.03988 0.41251 0.27905 - 0.11269 0.82453 -0.22056 - 0.24341 1.37781 -0.72020 - 0.44901 2.07236 -1.21989 - 0.44901 2.07236 -1.21989 - 0.68977 2.75906 -1.63634 - 1.00409 3.54386 -2.05288 - 1.40181 4.42676 -2.46955 - 1.89272 5.40776 -2.88642 - 2.48663 6.48686 -3.30352 - 2.48663 6.48686 -3.30352 - 3.19336 7.66406 -3.72091 - 4.02271 8.93936 -4.13871 - 4.98450 10.31276 -4.55703 - 6.08854 11.78426 -4.97599 - 7.34462 13.35386 -5.39572 - 7.34462 13.35386 -5.39572 - 8.55395 14.78218 -5.75740 - 9.88924 16.28305 -6.11988 - 11.35672 17.85648 -6.48330 - 12.96263 19.50246 -6.84778 - 14.71322 21.22099 -7.21347 - 14.71322 -107.46406 -7.21347 - 2.59733 -105.07417 -7.69992 - -9.23884 -102.55679 -8.18679 - -20.78077 -99.91191 -8.67219 - -32.01392 -97.13955 -9.15423 - -42.92374 -94.23969 -9.63104 - -42.92248 -94.25510 -9.63104 - -50.37886 -92.14399 -9.96151 - -57.66384 -89.97010 -10.28792 - -64.77240 -87.73342 -10.60970 - -71.69951 -85.43395 -10.92627 - -78.44016 -83.07170 -11.23705 - -78.44089 -83.07824 -11.23705 - -80.09646 -82.47787 -11.31378 - -81.73998 -81.87358 -11.39010 - -83.37138 -81.26536 -11.46601 - -84.99057 -80.65321 -11.54150 - -86.59748 -80.03714 -11.61657 - -86.59765 -80.03565 -11.61657 - -94.44508 -76.89645 -11.98515 - -101.97367 -73.65915 -12.34183 - -109.17364 -70.32375 -12.68570 - -116.03515 -66.89025 -13.01586 - -122.54842 -63.35865 -13.33139 - -122.54826 -63.35734 -13.33139 - -125.67116 -61.55476 -13.48341 - -128.70332 -59.72764 -13.63146 - -131.64352 -57.87601 -13.77547 - -134.49052 -55.99984 -13.91533 - -137.24309 -54.09916 -14.05096 - -137.24309 -54.09912 -14.05096 - -139.90022 -52.18617 -14.18226 - -142.46171 -50.27322 -14.30915 - -144.92755 -48.36027 -14.43156 - -147.29774 -46.44732 -14.54941 - -149.57228 -44.53437 -14.66262 - -149.57229 -44.53423 -14.66262 - -153.83442 -40.70833 -14.87480 - -157.71396 -36.88243 -15.06759 - -161.21090 -33.05653 -15.24057 - -164.32526 -29.23063 -15.39328 - -167.05703 -25.40473 -15.52528 - -167.05706 -25.40424 -15.52528 - -170.23871 -20.04798 -15.67450 - -172.67049 -14.69172 -15.78167 - -174.35239 -9.33546 -15.84638 - -175.28442 -3.97920 -15.86820 - -175.46657 1.37706 -15.84673 - -175.46668 1.37869 -15.84673 - -174.96416 6.35236 -15.78781 - -173.81506 11.32603 -15.69162 - -172.01939 16.29970 -15.55856 - -169.57714 21.27337 -15.38900 - -166.48831 26.24704 -15.18332 - -166.48820 26.24691 -15.18332 - -162.75281 31.22058 -14.94203 - -158.37085 36.19425 -14.66607 - -153.34230 41.16792 -14.35652 - -147.66719 46.14159 -14.01446 - -141.34549 51.11526 -13.64094 - -141.34550 51.11524 -13.64094 - -133.27622 56.83496 -13.17403 - -124.35184 62.55468 -12.66958 - -114.57237 68.27440 -12.13034 - -103.93780 73.99412 -11.55905 - -92.44813 79.71384 -10.95849 - -92.44813 79.71384 -10.95849 - -80.10336 85.43356 -10.33159 - -66.90349 91.15328 -9.68211 - -52.84853 96.87300 -9.01402 - -37.93846 102.59272 -8.33128 - -22.17330 108.31245 -7.63783 - -22.17436 108.31745 -7.63783 - -5.55335 114.03717 -6.93783 - 11.92275 119.75689 -6.23625 - 30.25396 125.47661 -5.53825 - 49.44026 131.19633 -4.84899 - 69.48166 136.91605 -4.17363 - 69.48374 136.93284 -4.17363 - 90.38275 142.65256 -3.51753 - 112.13686 148.37228 -2.88686 - 134.74606 154.09200 -2.28798 - 158.21037 159.81172 -1.72727 - 182.52977 165.53144 -1.21107 - 182.52978 165.53122 -1.21107 - 182.86092 165.60774 -1.20450 - 183.19221 165.68426 -1.19793 - 183.52366 165.76077 -1.19138 - 183.85526 165.83729 -1.18483 - 184.18701 165.91381 -1.17829 - 184.18701 165.91381 -1.17829 - 184.51891 165.99033 -1.17176 - 184.85097 166.06685 -1.16525 - 185.18318 166.14336 -1.15874 - 185.51554 166.21988 -1.15223 - 185.84806 166.29640 -1.14574 - 185.84803 166.29696 -1.14574 - 191.85625 167.40618 -1.03052 - 197.89824 168.26255 -0.91843 - 203.97130 169.13163 -0.80957 - 210.07587 170.01340 -0.70404 - 216.21239 170.90548 -0.60194 - 216.21251 -112.47087 -0.60194 - 202.90112 -109.37091 -0.28659 - 189.96807 -106.15647 -0.00804 - 177.42922 -102.80091 0.23599 - 165.30150 -99.30423 0.44776 - 153.60078 -95.69307 0.62954 - 153.60062 -95.69145 0.62954 - 147.91881 -93.70364 0.70988 - 142.35597 -91.72636 0.78352 - 136.91141 -89.76113 0.85069 - 131.58440 -87.80795 0.91164 - 126.37424 -85.86530 0.96663 - 126.37472 -85.87936 0.96663 - 118.67424 -83.34502 1.03920 - 111.20885 -80.71454 1.09938 - 103.98682 -77.99749 1.14794 - 97.01571 -75.20109 1.18563 - 90.30217 -72.34031 1.21320 - 90.30204 -72.33591 1.21320 - 83.85303 -69.39269 1.23138 - 77.67414 -66.39749 1.24082 - 71.77034 -63.34780 1.24212 - 66.14634 -60.24892 1.23592 - 60.80573 -57.12713 1.22281 - 60.80582 -57.12602 1.22281 - 55.24943 -54.03221 1.20116 - 49.99456 -51.08283 1.17255 - 45.02931 -48.24006 1.13761 - 40.34291 -45.50651 1.09696 - 35.92203 -42.95233 1.05124 - 35.92139 -42.92869 1.05124 - 30.13127 -39.67783 0.97985 - 24.82767 -36.08250 0.90103 - 20.02747 -32.50215 0.81597 - 15.72399 -28.98781 0.72586 - 11.90722 -25.55198 0.63187 - 11.90705 -25.56717 0.63187 - 8.56228 -22.22252 0.53508 - 5.68177 -18.94173 0.43619 - 3.25459 -15.74672 0.33580 - 1.26622 -12.69015 0.23450 - -0.30941 -9.86424 0.13290 - -0.30728 -9.84747 0.13290 - -1.50375 -7.29131 0.03149 - -2.36171 -5.01085 -0.06955 - -2.91956 -3.00398 -0.17007 - -3.21559 -1.27066 -0.26993 - -3.28809 0.18957 -0.36899 - -3.28808 0.18935 -0.36899 - -3.17525 1.37729 -0.46718 - -2.91511 2.29377 -0.56458 - -2.54563 2.93939 -0.66129 - -2.10470 3.31455 -0.75739 - -1.63017 3.41948 -0.85297 - -1.63019 3.41957 -0.85297 - -1.14852 3.37586 -0.94814 - -0.70326 2.93980 -1.04303 - -0.33804 2.23239 -1.13773 - -0.09090 1.25275 -1.23233 - -0.00002 -0.00023 -1.32690 + 0.00000 0.00000 5.02163 + 0.00000 0.00000 4.66785 + 0.00000 0.00000 4.31407 + 0.00000 0.00000 3.96030 + 0.00000 0.00000 3.60652 + 0.00000 0.00000 3.25274 + 0.00000 0.00000 3.25274 + 0.00000 0.00000 2.89896 + 0.00000 0.00000 2.54518 + 0.00000 0.00000 2.19141 + 0.00000 0.00000 1.83763 + 0.00000 0.00000 1.48385 + 0.00000 0.00000 1.48385 + 0.00000 0.00049 1.44223 + 0.00001 0.00196 1.40061 + 0.00004 0.00441 1.35899 + 0.00010 0.00785 1.31737 + 0.00020 0.01226 1.27575 + 0.00020 0.01226 1.27575 + 0.00803 0.14175 0.77630 + 0.03988 0.41251 0.27686 + 0.11269 0.82453 -0.22260 + 0.24341 1.37781 -0.72209 + 0.44901 2.07236 -1.22163 + 0.44901 2.07236 -1.22163 + 0.68977 2.75906 -1.63796 + 1.00409 3.54386 -2.05437 + 1.40181 4.42676 -2.47092 + 1.89272 5.40776 -2.88765 + 2.48663 6.48686 -3.30463 + 2.48663 6.48686 -3.30463 + 3.19336 7.66406 -3.72190 + 4.02271 8.93936 -4.13957 + 4.98450 10.31276 -4.55776 + 6.08854 11.78426 -4.97659 + 7.34462 13.35386 -5.39620 + 7.34462 13.35386 -5.39620 + 8.55395 14.78218 -5.75777 + 9.88924 16.28305 -6.12014 + 11.35672 17.85648 -6.48344 + 12.96263 19.50246 -6.84782 + 14.71322 21.22099 -7.21340 + 14.71322 -107.45897 -7.21340 + 2.59791 -105.06908 -7.69970 + -9.23768 -102.55169 -8.18643 + -20.77903 -99.90682 -8.67169 + -32.01159 -97.13445 -9.15359 + -42.92084 -94.23460 -9.63025 + -42.91957 -94.25003 -9.63025 + -50.37555 -92.13891 -9.96062 + -57.66013 -89.96502 -10.28693 + -64.76828 -87.72834 -10.60861 + -71.69499 -85.42887 -10.92508 + -78.43522 -83.06663 -11.23576 + -78.43596 -83.07317 -11.23576 + -80.09143 -82.47280 -11.31246 + -81.73485 -81.86851 -11.38876 + -83.36614 -81.26029 -11.46465 + -84.98523 -80.64814 -11.54012 + -86.59204 -80.03207 -11.61515 + -86.59221 -80.03058 -11.61515 + -94.43913 -76.89138 -11.98361 + -101.96722 -73.65408 -12.34017 + -109.16667 -70.31868 -12.68392 + -116.02768 -66.88518 -13.01396 + -122.54044 -63.35358 -13.32938 + -122.54028 -63.35227 -13.32938 + -125.66293 -61.54968 -13.48133 + -128.69484 -59.72257 -13.62933 + -131.63478 -57.87093 -13.77327 + -134.48152 -55.99477 -13.91308 + -137.23385 -54.09408 -14.04864 + -137.23385 -54.09405 -14.04864 + -139.89073 -52.18110 -14.17989 + -142.45196 -50.26815 -14.30672 + -144.91754 -48.35520 -14.42907 + -147.28748 -46.44225 -14.54687 + -149.56177 -44.52930 -14.66002 + -149.56178 -44.52915 -14.66002 + -153.82340 -40.70325 -14.87209 + -157.70243 -36.87735 -15.06477 + -161.19887 -33.05145 -15.23764 + -164.31272 -29.22555 -15.39024 + -167.04398 -25.39965 -15.52214 + -167.04401 -25.39916 -15.52214 + -170.22495 -20.04290 -15.67121 + -172.65602 -14.68664 -15.77824 + -174.33721 -9.33038 -15.84281 + -175.26853 -3.97412 -15.86450 + -175.44997 1.38214 -15.84289 + -175.45007 1.38377 -15.84289 + -174.94689 6.35744 -15.78385 + -173.79714 11.33111 -15.68755 + -172.00081 16.30478 -15.55437 + -169.55790 21.27845 -15.38471 + -166.46841 26.25212 -15.17893 + -166.46829 26.25199 -15.17893 + -162.73224 31.22566 -14.93753 + -158.34962 36.19933 -14.66148 + -153.32042 41.17300 -14.35185 + -147.64464 46.14667 -14.00970 + -141.32229 51.12034 -13.63610 + -141.32229 51.12032 -13.63610 + -133.25225 56.84004 -13.16911 + -124.32712 62.55976 -12.66457 + -114.54688 68.27948 -12.12526 + -103.91155 73.99920 -11.55391 + -92.42112 79.71892 -10.95328 + -92.42112 79.71892 -10.95328 + -80.07559 85.43864 -10.32633 + -66.87497 91.15836 -9.67682 + -52.81924 96.87808 -9.00869 + -37.90842 102.59781 -8.32592 + -22.14250 108.31753 -7.63245 + -22.14356 108.32252 -7.63245 + -5.52179 114.04224 -6.93245 + 11.95507 119.76196 -6.23087 + 30.28704 125.48169 -5.53288 + 49.47410 131.20141 -4.84363 + 69.51626 136.92113 -4.16830 + 69.51834 136.93788 -4.16830 + 90.41810 142.65760 -3.51224 + 112.17296 148.37732 -2.88161 + 134.78292 154.09704 -2.28280 + 158.24798 159.81676 -1.72215 + 182.56813 165.53648 -1.20603 + 182.56815 165.53626 -1.20603 + 182.89929 165.61278 -1.19946 + 183.23060 165.68929 -1.19290 + 183.56205 165.76581 -1.18634 + 183.89366 165.84233 -1.17980 + 184.22542 165.91885 -1.17326 + 184.22542 165.91885 -1.17326 + 184.55734 165.99537 -1.16673 + 184.88940 166.07188 -1.16021 + 185.22162 166.14840 -1.15370 + 185.55400 166.22492 -1.14721 + 185.88652 166.30144 -1.14072 + 185.88651 166.30167 -1.14072 + 191.89489 167.41089 -1.02551 + 197.93706 168.26726 -0.91344 + 204.01029 169.13634 -0.80460 + 210.11503 170.01811 -0.69909 + 216.25171 170.91019 -0.59702 + 216.25184 -112.48838 -0.59702 + 202.93835 -109.38842 -0.28175 + 190.00320 -106.17398 -0.00329 + 177.46224 -102.81842 0.24064 + 165.33242 -99.32174 0.45230 + 153.62960 -95.71058 0.63398 + 153.62951 -95.71168 0.63398 + 147.94649 -93.72387 0.71427 + 142.38244 -91.74659 0.78784 + 136.93666 -89.78136 0.85496 + 131.60843 -87.82818 0.91586 + 126.39707 -85.88553 0.97079 + 126.39754 -85.89968 0.97079 + 118.69514 -83.36731 1.04325 + 111.22755 -80.74066 1.10334 + 104.00297 -78.02736 1.15180 + 97.02898 -75.23463 1.18939 + 90.31223 -72.37740 1.21686 + 90.31219 -72.37559 1.21686 + 83.85941 -69.43580 1.23494 + 77.67645 -66.44388 1.24428 + 71.76828 -63.39731 1.24548 + 66.13964 -60.30138 1.23917 + 60.79421 -57.17985 1.22597 + 60.79428 -57.17881 1.22597 + 55.23280 -54.08190 1.20421 + 49.97303 -51.13119 1.17549 + 45.00301 -48.28716 1.14044 + 40.31195 -45.55269 1.09969 + 35.88648 -42.99794 1.05387 + 35.88582 -42.97390 1.05387 + 30.08928 -39.72713 0.98235 + 24.77829 -36.13606 0.90341 + 19.97087 -32.55177 0.81825 + 15.66070 -29.03367 0.72803 + 11.83777 -25.59427 0.63397 + 11.83644 -25.58959 0.63397 + 8.49103 -22.21726 0.53712 + 5.61149 -18.93317 0.43819 + 3.18574 -15.73498 0.33777 + 1.19930 -12.67376 0.23646 + -0.37361 -9.84175 0.13487 + -0.37135 -9.82445 0.13487 + -1.56442 -7.26479 0.03348 + -2.41824 -4.97834 -0.06752 + -2.97112 -2.96544 -0.16799 + -3.26133 -1.22605 -0.26778 + -3.32715 0.24036 -0.36676 + -3.32714 0.24012 -0.36676 + -3.20676 1.43436 -0.46487 + -2.93818 2.35727 -0.56218 + -2.55935 3.00950 -0.65879 + -2.10814 3.39146 -0.75478 + -1.62235 3.50337 -0.85025 + -1.62237 3.50346 -0.85025 + -1.13981 3.34526 -0.94532 + -0.69832 2.91656 -1.04012 + -0.33583 2.21671 -1.13472 + -0.09034 1.24482 -1.22922 + -0.00002 -0.00023 -1.32369 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -14054,7 +14190,7 @@ Lambda passive -13.62000 37.26270 174.02129 11.60374 0.53814 0.31140 4.67012 -13.76000 38.68930 180.56137 12.04923 0.53814 0.31144 4.66696 -13.90000 40.11590 185.48257 12.38324 0.53814 0.31146 4.66514 - -13.90000 40.11590 188.76986 12.60587 0.53904 0.31147 4.66415 + -13.90000 40.11590 188.76986 12.60587 0.53814 0.31147 4.66415 -14.04000 41.54250 193.70835 12.93975 0.53814 0.31148 4.66290 -14.18000 42.96910 200.30294 13.38484 0.53814 0.31150 4.66156 -14.32000 44.39570 206.90674 13.82984 0.53814 0.31151 4.66051 @@ -14066,7 +14202,7 @@ Lambda passive -15.02000 51.52870 240.00363 16.05406 0.53814 0.31156 4.65767 -15.16000 52.95530 246.63201 16.49879 0.53814 0.31156 4.65736 -15.30000 54.38190 251.60443 16.83233 0.53814 0.31156 4.65716 - -15.30000 54.38190 254.91989 17.05468 0.56990 0.31157 4.65704 + -15.30000 54.38190 254.91989 17.05468 0.53814 0.31157 4.65704 -15.44000 55.80850 259.89377 17.38820 0.53814 0.31157 4.65689 -15.58000 57.23510 266.52659 17.83287 0.53814 0.31157 4.65670 -15.72000 58.66170 273.16044 18.27753 0.53814 0.31158 4.65654 @@ -14245,53 +14381,53 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 502 100 P - 7.30084 101.25211 23.21584 4.09523 110 31 1 - 7.86234 102.14482 24.24018 4.46107 110 32 1 - 8.38743 103.03753 25.26429 4.82692 110 33 1 - 8.87841 103.93024 26.28821 5.19276 110 34 1 - 9.24614 104.82295 27.05602 5.46715 110 34 1 - 9.42906 104.82295 27.56784 5.65007 110 34 1 - 9.76727 105.71566 28.33547 5.92445 110 34 1 - 10.16940 106.60837 29.35884 6.29030 110 35 1 - 10.54590 107.50108 30.38206 6.65614 110 35 1 - 10.89866 108.39379 31.40511 7.02199 110 35 1 - 11.13815 109.28650 32.17232 7.29637 110 35 1 - 10.48287 109.28650 21.64625 8.36989 110 48 1 - 12.30076 107.26750 25.39547 10.24042 110 48 1 - 14.73084 105.24850 30.38139 12.73446 110 48 1 - 17.15097 103.22950 35.35390 15.22850 110 49 1 - 19.56249 101.21050 40.31570 17.72254 110 49 1 - 21.34316 99.19150 44.03174 19.59307 110 48 1 - 24.10338 99.19150 144.52622 14.10283 110 17 1 - 24.05219 100.56490 135.45373 14.67862 110 18 1 - 24.11704 101.93830 137.64852 15.44633 110 18 1 - 24.11672 103.31170 142.68760 16.21404 110 17 1 - 24.06209 104.68510 148.53546 16.98176 110 16 1 - 23.77218 106.05850 153.14774 17.55754 110 16 1 - 24.15604 106.05850 156.29139 17.94140 110 15 1 - 23.83292 107.43190 161.07169 18.51718 110 15 1 - 23.67512 108.80530 167.51794 19.28489 110 14 1 - 23.49649 110.17870 174.02129 20.05261 110 14 1 - 23.30289 111.55210 180.56137 20.82032 110 13 1 - 22.90832 112.92550 185.48257 21.39610 110 12 1 - 23.32843 112.92550 188.76986 21.81622 110 12 1 - 22.89344 114.29890 193.70835 22.35575 110 12 1 - 22.68442 115.67230 200.30294 23.12346 110 0 1 - 22.47472 117.04570 206.90674 23.89117 110 0 1 - 22.26590 118.41910 213.51749 24.65888 110 0 1 - 21.86760 119.79250 218.47899 25.23467 110 0 1 - 22.25146 119.79250 221.78817 25.61852 110 0 1 - 21.85643 121.16590 226.75384 26.19431 110 0 1 - 21.65587 122.53930 233.37741 26.96202 110 0 1 - 21.45715 123.91270 240.00363 27.72973 110 0 1 - 21.25952 125.28610 246.63201 28.49745 110 0 1 - 20.87032 126.65950 251.60443 29.07323 110 0 1 - 22.99239 126.65950 254.91989 31.19530 110 0 1 - 20.86420 128.03290 259.89377 30.03287 110 0 1 - 20.66421 129.40630 266.52659 30.80059 110 0 1 - 20.46146 130.77970 273.16044 31.56830 110 0 1 - 20.25515 132.15310 279.79516 32.33601 110 0 1 - 19.85253 133.52650 284.77167 32.91180 110 0 1 + 7.31730 101.25211 23.21584 4.09523 110 32 1 + 7.87843 102.14482 24.24018 4.46107 110 33 1 + 8.40313 103.03753 25.26429 4.82692 110 33 1 + 8.89373 103.93024 26.28821 5.19276 110 34 1 + 9.26106 104.82295 27.05602 5.46715 110 34 1 + 9.44399 104.82295 27.56784 5.65007 110 34 1 + 9.78179 105.71566 28.33547 5.92445 110 35 1 + 10.18352 106.60837 29.35884 6.29030 110 35 1 + 10.55960 107.50108 30.38206 6.65614 110 35 1 + 10.91196 108.39379 31.40511 7.02199 110 35 1 + 11.15103 109.28650 32.17232 7.29637 110 35 1 + 10.48995 109.28650 21.64625 8.36989 110 48 1 + 12.30753 107.26750 25.39547 10.24042 110 48 1 + 14.73731 105.24850 30.38139 12.73446 110 49 1 + 17.15715 103.22950 35.35390 15.22850 110 49 1 + 19.56837 101.21050 40.31570 17.72254 110 49 1 + 21.34877 99.19150 44.03174 19.59307 110 48 1 + 24.13544 99.19150 144.52622 14.10283 110 17 1 + 24.08263 100.56490 135.45373 14.67862 110 18 1 + 24.14593 101.93830 137.64852 15.44633 110 18 1 + 24.14417 103.31170 142.68760 16.21404 110 17 1 + 24.08823 104.68510 148.53546 16.98176 110 16 1 + 23.79715 106.05850 153.14774 17.55754 110 16 1 + 24.18101 106.05850 156.29139 17.94140 110 15 1 + 23.85688 107.43190 161.07169 18.51718 110 15 1 + 23.69824 108.80530 167.51794 19.28489 110 14 1 + 23.51895 110.17870 174.02129 20.05261 110 14 1 + 23.32485 111.55210 180.56137 20.82032 110 13 1 + 22.92994 112.92550 185.48257 21.39610 110 12 1 + 23.31380 112.92550 188.76986 21.77996 110 12 1 + 22.91490 114.29890 193.70835 22.35575 110 12 1 + 22.70586 115.67230 200.30294 23.12346 110 0 1 + 22.49629 117.04570 206.90674 23.89117 110 0 1 + 22.28774 118.41910 213.51749 24.65888 110 0 1 + 21.88982 119.79250 218.47899 25.23467 110 0 1 + 22.27368 119.79250 221.78817 25.61852 110 0 1 + 21.87914 121.16590 226.75384 26.19431 110 0 1 + 21.67916 122.53930 233.37741 26.96202 110 0 1 + 21.48107 123.91270 240.00363 27.72973 110 0 1 + 21.28412 125.28610 246.63201 28.49745 110 0 1 + 20.89562 126.65950 251.60443 29.07323 110 0 1 + 21.27947 126.65950 254.91989 29.45709 110 0 1 + 20.89019 128.03290 259.89377 30.03287 110 0 1 + 20.69087 129.40630 266.52659 30.80059 110 0 1 + 20.48878 130.77970 273.16044 31.56830 110 0 1 + 20.28314 132.15310 279.79516 32.33601 110 0 1 + 19.88118 133.52650 284.77167 32.91180 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14309,9 +14445,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.076 'Hydrobiaklei' - -12.00 7.966 'Basisveen' - -12.50 78.750 'Eerste zandlaag' + -10.00 8.088 'Hydrobiaklei' + -12.00 7.969 'Basisveen' + -12.50 78.712 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14333,7 +14469,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.44 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -25.67 'Eerste zandlaag' + -12.50 -25.65 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14471,18 +14607,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 70.80000 34.95400 7.65322 7.15145 -10.88000 70.80000 34.95400 8.87242 7.22369 -10.94000 70.80000 34.95400 10.29486 7.30798 @@ -14582,7 +14718,7 @@ Lambda passive -11.81800 6.63692 26.31378 -1.37038 0.74588 0.00000 3.96476 -11.90900 6.62741 26.22273 -1.37530 0.74588 0.00000 3.95671 -12.00000 6.61790 26.16191 -1.37899 0.74588 0.00000 3.95178 - -12.00000 6.61790 15.52789 1.20448 0.78751 0.18968 2.44528 + -12.00000 6.61790 15.52789 1.20448 0.78208 0.18968 2.44528 -12.10000 5.54690 14.17898 0.69034 0.78208 0.12445 2.55620 -12.20000 4.47590 12.39091 0.00438 0.78208 0.00098 2.76836 -12.30000 3.40490 10.61334 -0.68196 0.78208 0.00000 3.11708 @@ -14594,7 +14730,7 @@ Lambda passive -12.92000 5.54270 27.05800 1.72391 0.53814 0.31102 4.88174 -13.06000 6.96930 33.70213 2.16796 0.53814 0.31107 4.83580 -13.20000 8.39590 38.63742 2.50110 0.53814 0.31111 4.80610 - -13.20000 8.39590 41.91173 2.72324 0.74382 0.31114 4.78852 + -13.20000 8.39590 41.91173 2.72324 0.53814 0.31114 4.78852 -13.34000 9.82250 46.81034 3.05653 0.53814 0.31118 4.76562 -13.48000 11.24910 53.33307 3.50102 0.53814 0.31123 4.74110 -13.62000 12.67570 59.85679 3.94562 0.53814 0.31127 4.72217 @@ -14790,54 +14926,54 @@ Status character 1.60552 69.92320 27.09493 2.81427 1 0 A 1.80624 70.51180 30.48242 3.16612 1 0 A 1.95679 71.10040 33.02304 3.43000 1 0 A - 2.02088 71.10040 28.79077 5.00530 110 0 1 - 7.64953 72.49311 28.10720 4.99998 110 27 1 - 6.71886 73.88582 27.53204 4.99288 110 24 1 - 5.83348 75.27853 27.16169 4.98579 110 21 1 - 4.99113 76.67124 26.89968 4.97870 110 19 1 - 4.27701 78.06395 26.74566 4.97338 110 0 1 - 4.10197 78.06395 26.65902 4.96983 110 0 1 - 3.42633 79.45666 26.54685 4.96451 110 0 1 - 2.69964 80.84937 26.42005 4.95742 110 0 1 - 2.00749 82.24208 26.31378 4.95032 110 0 1 - 1.34794 83.63479 26.22273 4.94323 110 0 1 - 1.09613 85.02750 26.16191 4.93791 110 0 1 - 2.88781 85.02750 15.52789 5.00078 110 0 1 - 2.27776 87.26850 14.17898 4.33810 110 0 1 - 1.50411 89.50950 12.39091 3.50049 110 0 1 - 0.74042 91.75050 10.61334 2.66289 110 0 1 + 2.02159 71.10040 28.79077 5.00530 110 0 1 + 7.70851 72.49311 28.10720 4.99998 110 27 1 + 6.77667 73.88582 27.53204 4.99288 110 25 1 + 5.88998 75.27853 27.16169 4.98579 110 22 1 + 5.04613 76.67124 26.89968 4.97870 110 19 1 + 4.33034 78.06395 26.74566 4.97338 110 0 1 + 4.15529 78.06395 26.65902 4.96983 110 0 1 + 3.47778 79.45666 26.54685 4.96451 110 0 1 + 2.74901 80.84937 26.42005 4.95742 110 0 1 + 2.05460 82.24208 26.31378 4.95032 110 0 1 + 1.39261 83.63479 26.22273 4.94323 110 0 1 + 1.08325 85.02750 26.16191 4.93791 110 0 1 + 2.84624 85.02750 15.52789 4.96630 110 0 1 + 2.27098 87.26850 14.17898 4.33810 110 0 1 + 1.49764 89.50950 12.39091 3.50049 110 0 1 + 0.73424 91.75050 10.61334 2.66289 110 0 1 0.00000 93.99150 8.84438 1.82529 1 0 A 0.00000 96.23250 7.52219 1.19708 1 0 A - 6.18731 96.23250 8.11117 0.87155 220 76 2 - 1.44537 97.60590 13.39042 1.44733 110 0 1 + 6.18816 96.23250 8.11117 0.87155 220 76 2 + 1.56553 97.60590 13.39042 1.44733 110 12 1 1.28003 98.97930 20.29937 2.21504 1 0 A 1.72391 100.35270 27.05800 2.98276 1 0 A 2.16796 101.72610 33.70213 3.75047 1 0 A 2.50110 103.09950 38.63742 4.32625 1 0 A - 3.06971 103.09950 41.91173 6.51036 110 0 1 + 2.72324 103.09950 41.91173 4.71011 1 0 A 3.05653 104.47290 46.81034 5.28590 1 0 A 3.50102 105.84630 53.33307 6.05361 1 0 A 3.94562 107.21970 59.85679 6.82132 1 0 A - 5.10646 108.59310 66.38882 7.58903 110 0 1 - 6.65260 109.96650 71.29488 8.16482 110 0 1 - 7.03646 109.96650 74.56965 8.54867 110 0 1 - 8.58676 111.33990 79.48786 9.12446 110 0 1 - 10.33121 112.71330 86.05508 9.89217 110 12 1 - 12.07633 114.08670 92.63283 10.65988 110 13 1 - 13.82058 115.46010 99.21983 11.42760 110 14 1 - 15.37045 116.83350 104.16514 12.00338 110 15 1 - 15.75430 116.83350 107.46442 12.38724 110 15 1 - 17.30091 118.20690 112.41652 12.96302 110 15 1 - 19.03688 119.58030 119.02399 13.73074 110 16 1 - 20.77104 120.95370 125.63631 14.49845 110 17 1 - 22.50409 122.32710 132.25270 15.26616 110 17 1 - 24.04486 123.70050 137.21718 15.84195 110 18 1 - 24.42872 123.70050 140.52787 16.22580 110 17 1 - 25.97026 125.07390 145.49525 16.80159 110 18 1 - 27.70568 126.44730 152.12043 17.56930 110 18 1 - 29.44385 127.82070 158.74769 18.33701 110 19 1 - 31.18559 129.19410 165.37672 19.10472 110 19 1 - 32.73978 130.56750 170.34945 19.68051 110 19 1 + 5.08450 108.59310 66.38882 7.58903 110 0 1 + 6.63098 109.96650 71.29488 8.16482 110 0 1 + 7.01484 109.96650 74.56965 8.54867 110 0 1 + 8.56531 111.33990 79.48786 9.12446 110 0 1 + 10.30977 112.71330 86.05508 9.89217 110 12 1 + 12.05476 114.08670 92.63283 10.65988 110 13 1 + 13.79874 115.46010 99.21983 11.42760 110 14 1 + 15.34823 116.83350 104.16514 12.00338 110 15 1 + 15.73209 116.83350 107.46442 12.38724 110 15 1 + 17.27820 118.20690 112.41652 12.96302 110 15 1 + 19.01360 119.58030 119.02399 13.73074 110 16 1 + 20.74711 120.95370 125.63631 14.49845 110 17 1 + 22.47949 122.32710 132.25270 15.26616 110 17 1 + 24.01956 123.70050 137.21718 15.84195 110 18 1 + 24.40342 123.70050 140.52787 16.22580 110 17 1 + 25.94427 125.07390 145.49525 16.80159 110 18 1 + 27.67902 126.44730 152.12043 17.56930 110 18 1 + 29.41653 127.82070 158.74769 18.33701 110 19 1 + 31.15760 129.19410 165.37672 19.10472 110 19 1 + 32.71113 130.56750 170.34945 19.68051 110 19 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14852,9 +14988,9 @@ Layer name [DATA] -9.99 6.857 'OWB' -10.79 0.452 'Grind' - -11.09 3.678 'Hydrobiaklei' - -12.00 0.597 'Basisveen' - -12.50 46.179 'Eerste zandlaag' + -11.09 3.721 'Hydrobiaklei' + -12.00 0.593 'Basisveen' + -12.50 46.117 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14871,9 +15007,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.16 'Grind' - -11.09 0.65 'Hydrobiaklei' + -11.09 0.66 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 15.05 'Eerste zandlaag' + -12.50 15.03 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -15113,8 +15249,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 383.59667 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.60491 10000000.000 1 1 1 'Dek' + -10.19000 383.66172 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.59728 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -15176,9 +15312,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 29.53 : Percentage mobilized resistance left - 19.20 : Percentage mobilized resistance right - 196.30 : Effective left - 110.04 : Effective right + 19.21 : Percentage mobilized resistance right + 196.28 : Effective left + 110.08 : Effective right 520.35 : Water pressure left 540.51 : Water pressure right 664.73 : Max effective resistance left @@ -15188,7 +15324,7 @@ Is favorable (0=false, 1=true) 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right 45.49 : Vertical force left - 15.36 : Vertical force right + 15.37 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -15197,17 +15333,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.36 : Active force +-15.37 : Active force 45.49 : Passive force --15.36 : Plugged active force +-15.37 : Plugged active force 45.49 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --69.87 : Resulting Vertical Force Unplugged --69.87 : Resulting Vertical Force Plugged +-69.89 : Resulting Vertical Force Unplugged +-69.89 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -15220,210 +15356,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.65370 - 0.12565 0.00000 -58.39719 - 0.25129 0.00000 -57.14069 - 0.37694 0.00000 -55.88421 - 0.50258 0.00000 -54.62778 - 0.62823 0.00000 -53.37139 - 0.62823 0.00000 -53.37139 - 0.75385 0.00000 -52.11507 - 0.87946 0.00000 -50.85883 - 1.00507 0.00000 -49.60267 - 1.13069 0.00000 -48.34662 - 1.25630 0.00000 -47.09069 - 1.25630 0.00000 -47.09069 - 1.42368 0.00000 -45.41631 - 1.59106 0.00000 -43.74218 - 1.75844 0.00000 -42.06835 - 1.92582 0.00000 -40.39484 - 2.09320 0.00000 -38.72167 - 2.09320 0.00000 -38.72167 - 2.23254 0.00000 -37.32766 - 2.37189 0.00000 -35.93392 - 2.51123 0.00000 -34.54049 - 2.65057 0.00000 -33.14737 - 2.78991 0.00000 -31.75459 - 2.78991 0.00000 -31.75459 - 2.92908 0.00000 -30.36215 - 3.06824 0.00000 -28.97009 - 3.20741 0.00000 -27.57841 - 3.34658 0.00000 -26.18714 - 3.48574 0.00000 -24.79628 - 3.48574 0.00000 -24.79628 - 3.60525 0.00000 -23.60050 - 3.72476 0.00000 -22.40506 - 3.84427 0.00000 -21.20996 - 3.96378 0.00000 -20.01522 - 4.08329 0.00000 -18.82084 - 4.08329 439.90000 -18.82084 - 54.38659 439.90000 -17.23956 - 104.68989 439.90000 -15.66719 - 154.99319 439.90000 -14.11195 - 205.29649 439.90000 -12.58210 - 255.59979 439.90000 -11.08585 - 255.60105 439.88459 -11.08585 - 290.88911 439.88459 -10.06035 - 326.17717 439.88459 -9.05830 - 361.46522 439.88459 -8.08255 - 396.75328 439.88459 -7.13595 - 432.04134 439.88459 -6.22133 - 432.04060 -83.72686 -6.22133 - 430.38797 -83.72686 -5.99800 - 428.73533 -83.72686 -5.77684 - 427.08269 -83.72686 -5.55784 - 425.43006 -83.72686 -5.34099 - 423.77742 -83.72686 -5.12628 - 423.77725 -83.72537 -5.12628 - 415.49862 -83.72537 -4.08462 - 407.21999 -83.72537 -3.09530 - 398.94136 -83.72537 -2.15728 - 390.66273 -83.72537 -1.26952 - 382.38410 -83.72537 -0.43097 - 382.38425 -83.72395 -0.43097 - 374.08167 -83.72395 0.35940 - 365.77910 -83.72395 1.10265 - 357.47652 -83.72395 1.79981 - 349.17395 -83.72395 2.45194 - 340.87138 -83.72395 3.06009 - 340.87138 -83.72369 3.06009 - 332.54736 -83.72369 3.62529 - 324.22334 -83.72369 4.14859 - 315.89932 -83.72369 4.63105 - 307.57531 -83.72369 5.07371 - 299.25129 -83.72369 5.47763 - 299.25126 -83.72320 5.47763 - 287.56662 -83.72320 5.98001 - 275.88199 -83.72320 6.41138 - 264.19735 -83.72320 6.77463 - 252.51272 -83.72320 7.07265 - 240.82809 -83.72320 7.30831 - 240.82798 -83.72157 7.30831 - 229.95140 -83.72157 7.47383 - 219.07482 -83.72157 7.59039 - 208.19824 -83.72157 7.66031 - 197.32166 -83.72157 7.68590 - 186.44508 -83.72157 7.66948 - 186.44519 -83.72170 7.66948 - 175.54875 -83.72170 7.61337 - 164.65230 -83.72170 7.51988 - 153.75586 -83.72170 7.39133 - 142.85942 -83.72170 7.23005 - 131.96297 -83.72170 7.03835 - 131.96297 -83.72172 7.03835 - 119.41505 -83.72172 6.78330 - 106.86713 -83.72172 6.49463 - 94.31921 -83.72172 6.17587 - 81.77129 -83.72172 5.83056 - 69.22337 -83.72172 5.46221 - 69.22337 -83.72172 5.46221 - 56.66570 -83.72172 5.07438 - 44.10804 -83.72172 4.67059 - 31.55037 -83.72172 4.25438 - 18.99271 -83.72172 3.82929 - 6.43504 -83.72172 3.39885 - 6.43398 -83.71672 3.39885 - -6.12384 -83.71672 2.96659 - -18.68166 -83.71672 2.53606 - -31.23949 -83.71672 2.11080 - -43.79731 -83.71672 1.69432 - -56.35513 -83.71672 1.29018 - -56.35305 -83.69993 1.29018 - -68.90043 -83.69993 0.90191 - -81.44781 -83.69993 0.53304 - -93.99519 -83.69993 0.18710 - -106.54257 -83.69993 -0.13237 - -119.08995 -83.69993 -0.42184 - -119.08994 -83.70015 -0.42184 - -119.25765 -83.62137 -0.42549 - -119.42510 -83.46537 -0.42914 - -119.59224 -83.30937 -0.43278 - -119.75906 -83.15337 -0.43642 - -119.92558 -82.99737 -0.44005 - -119.92558 -82.99737 -0.44005 - -120.09178 -82.84137 -0.44367 - -120.25767 -82.68537 -0.44729 - -120.42324 -82.52937 -0.45090 - -120.58851 -82.37337 -0.45450 - -120.75346 -82.21737 -0.45810 - -120.75347 -82.21714 -0.45810 - -123.68589 -80.82716 -0.52183 - -126.60162 -80.82715 -0.58354 - -129.51736 -80.82715 -0.64318 - -132.43310 -80.82714 -0.70071 - -135.34883 -80.82713 -0.75607 - -135.34921 68.98663 -0.75607 - -127.77168 68.98665 -0.91177 - -120.19415 68.98667 -1.04799 - -112.61661 68.98669 -1.16588 - -105.03908 68.98671 -1.26662 - -97.46154 68.98674 -1.35133 - -97.46155 68.98628 -1.35133 - -96.77228 68.98616 -1.35828 - -96.08300 68.98616 -1.36511 - -95.39373 68.98617 -1.37181 - -94.70445 68.98617 -1.37840 - -94.01518 68.98629 -1.38486 - -94.01532 68.99251 -1.38486 - -91.95530 68.32814 -1.40355 - -89.92464 67.04895 -1.42120 - -87.94094 65.19761 -1.43782 - -86.02136 62.77443 -1.45345 - -84.18298 59.78569 -1.46811 - -84.18285 59.78921 -1.46811 - -82.41921 57.83614 -1.48181 - -80.71541 55.80796 -1.49457 - -79.07321 53.72940 -1.50642 - -77.49412 51.60064 -1.51737 - -75.97959 49.42771 -1.52745 - -75.97889 49.40964 -1.52745 - -71.54332 48.07670 -1.55281 - -67.23137 46.72166 -1.57072 - -63.03974 45.43275 -1.58160 - -58.96229 44.21267 -1.58589 - -54.99276 43.05996 -1.58403 - -54.99294 43.06082 -1.58403 - -51.12723 41.91028 -1.57645 - -47.35823 40.91038 -1.56353 - -43.67673 39.98767 -1.54567 - -40.07562 39.14368 -1.52324 - -36.54826 38.36060 -1.49663 - -36.54826 38.35883 -1.49663 - -32.73343 37.89359 -1.46301 - -28.96290 37.47400 -1.42527 - -25.23222 37.09305 -1.38388 - -21.53889 36.72029 -1.33931 - -17.88314 36.34429 -1.29202 - -17.88232 36.33880 -1.29202 - -12.91126 34.22595 -1.22223 - -8.36250 30.58642 -1.14926 - -4.35885 26.52710 -1.07411 - -0.93281 22.34550 -0.99775 - 1.90444 18.13715 -0.92117 - 1.90305 18.11555 -0.92117 - 4.13912 13.90138 -0.84523 - 5.82539 10.20064 -0.77030 - 7.01689 6.83405 -0.69671 - 7.76072 3.80609 -0.62475 - 8.10450 1.11918 -0.55471 - 8.10323 1.14174 -0.55471 - 8.10004 -1.13757 -0.48678 - 7.81005 -2.95434 -0.42085 - 7.29820 -4.30775 -0.35680 - 6.62904 -5.20245 -0.29451 - 5.86620 -5.64856 -0.23387 - 5.86636 -5.64646 -0.23387 - 5.08008 -5.63060 -0.17470 - 4.29085 -5.63491 -0.11679 - 3.51079 -5.50011 -0.05994 - 2.75919 -5.22873 -0.00396 - 2.05503 -4.82269 0.05134 - 2.05508 -4.82223 0.05134 - 1.41650 -4.28274 0.10615 - 0.86274 -3.61051 0.16062 - 0.41568 -2.73499 0.21485 - 0.11219 -1.54650 0.26894 - 0.00001 0.00008 0.32301 + 0.00000 0.00000 -59.65635 + 0.12565 0.00000 -58.39976 + 0.25131 0.00000 -57.14317 + 0.37696 0.00000 -55.88661 + 0.50262 0.00000 -54.63009 + 0.62827 0.00000 -53.37362 + 0.62827 0.00000 -53.37362 + 0.75390 0.00000 -52.11721 + 0.87952 0.00000 -50.86088 + 1.00514 0.00000 -49.60464 + 1.13076 0.00000 -48.34850 + 1.25639 0.00000 -47.09248 + 1.25639 0.00000 -47.09248 + 1.42378 0.00000 -45.41799 + 1.59117 0.00000 -43.74375 + 1.75856 0.00000 -42.06980 + 1.92595 0.00000 -40.39617 + 2.09335 0.00000 -38.72289 + 2.09335 0.00000 -38.72289 + 2.23270 0.00000 -37.32878 + 2.37205 0.00000 -35.93495 + 2.51140 0.00000 -34.54142 + 2.65075 0.00000 -33.14821 + 2.79010 0.00000 -31.75533 + 2.79010 0.00000 -31.75533 + 2.92928 0.00000 -30.36280 + 3.06845 0.00000 -28.97064 + 3.20763 0.00000 -27.57887 + 3.34680 0.00000 -26.18750 + 3.48598 0.00000 -24.79655 + 3.48598 0.00000 -24.79655 + 3.60550 0.00000 -23.60069 + 3.72501 0.00000 -22.40516 + 3.84453 0.00000 -21.20998 + 3.96405 0.00000 -20.01516 + 4.08357 0.00000 -18.82070 + 4.08357 439.90000 -18.82070 + 54.38688 439.90000 -17.23932 + 104.69019 439.90000 -15.66683 + 154.99350 439.90000 -14.11149 + 205.29681 439.90000 -12.58152 + 255.60012 439.90000 -11.08517 + 255.60139 439.88457 -11.08517 + 290.88945 439.88457 -10.05959 + 326.17751 439.88457 -9.05747 + 361.46558 439.88457 -8.08164 + 396.75364 439.88457 -7.13496 + 432.04170 439.88457 -6.22027 + 432.04097 -83.71925 -6.22027 + 430.38849 -83.71925 -5.99692 + 428.73600 -83.71925 -5.77574 + 427.08352 -83.71925 -5.55672 + 425.43104 -83.71925 -5.33985 + 423.77856 -83.71925 -5.12513 + 423.77839 -83.71776 -5.12513 + 415.50053 -83.71776 -4.08337 + 407.22267 -83.71776 -3.09395 + 398.94481 -83.71776 -2.15584 + 390.66695 -83.71776 -1.26799 + 382.38909 -83.71776 -0.42935 + 382.38924 -83.71634 -0.42935 + 374.08743 -83.71634 0.36112 + 365.78563 -83.71634 1.10446 + 357.48382 -83.71634 1.80171 + 349.18202 -83.71634 2.45393 + 340.88022 -83.71634 3.06216 + 340.88022 -83.71607 3.06216 + 332.55697 -83.71607 3.62745 + 324.23372 -83.71607 4.15084 + 315.91047 -83.71607 4.63339 + 307.58723 -83.71607 5.07613 + 299.26398 -83.71607 5.48013 + 299.26395 -83.71559 5.48013 + 287.58039 -83.71559 5.98263 + 275.89683 -83.71559 6.41411 + 264.21327 -83.71559 6.77746 + 252.52972 -83.71559 7.07558 + 240.84616 -83.71559 7.31134 + 240.84605 -83.71395 7.31134 + 229.97047 -83.71395 7.47694 + 219.09488 -83.71395 7.59359 + 208.21930 -83.71395 7.66359 + 197.34372 -83.71395 7.68925 + 186.46814 -83.71395 7.67290 + 186.46825 -83.71408 7.67290 + 175.57281 -83.71408 7.61685 + 164.67736 -83.71408 7.52342 + 153.78191 -83.71408 7.39492 + 142.88646 -83.71408 7.23369 + 131.99101 -83.71408 7.04203 + 131.99101 -83.71410 7.04203 + 119.44423 -83.71410 6.78703 + 106.89745 -83.71410 6.49839 + 94.35067 -83.71410 6.17966 + 81.80390 -83.71410 5.83435 + 69.25712 -83.71410 5.46602 + 69.25712 -83.71410 5.46602 + 56.70059 -83.71410 5.07818 + 44.14406 -83.71410 4.67438 + 31.58753 -83.71410 4.25815 + 19.03101 -83.71410 3.83302 + 6.47448 -83.71410 3.40253 + 6.47342 -83.70910 3.40253 + -6.08327 -83.70910 2.97022 + -18.63997 -83.70910 2.53963 + -31.19666 -83.70910 2.11428 + -43.75335 -83.70910 1.69772 + -56.31004 -83.70910 1.29348 + -56.30796 -83.69235 1.29348 + -68.85422 -83.69235 0.90509 + -81.40048 -83.69235 0.53609 + -93.94674 -83.69235 0.19001 + -106.49301 -83.69235 -0.12962 + -119.03927 -83.69235 -0.41926 + -119.03925 -83.69258 -0.41926 + -119.20695 -83.61380 -0.42292 + -119.37438 -83.45780 -0.42657 + -119.54151 -83.30180 -0.43021 + -119.70832 -83.14579 -0.43385 + -119.87482 -82.98979 -0.43748 + -119.87482 -82.98979 -0.43748 + -120.04101 -82.83379 -0.44110 + -120.20688 -82.67779 -0.44472 + -120.37244 -82.52179 -0.44834 + -120.53769 -82.36579 -0.45194 + -120.70262 -82.20979 -0.45554 + -120.70264 -82.20956 -0.45554 + -123.63479 -80.81958 -0.51932 + -126.55025 -80.81958 -0.58107 + -129.46572 -80.81957 -0.64076 + -132.38119 -80.81956 -0.69833 + -135.29666 -80.81955 -0.75374 + -135.29656 68.91892 -0.75374 + -127.72650 68.91894 -0.90959 + -120.15643 68.91896 -1.04596 + -112.58636 68.91898 -1.16402 + -105.01629 68.91900 -1.26492 + -97.44621 68.91903 -1.34980 + -97.44628 68.91828 -1.34980 + -96.75768 68.91816 -1.35677 + -96.06909 68.91816 -1.36361 + -95.38049 68.91817 -1.37033 + -94.69190 68.91817 -1.37693 + -94.00331 68.91829 -1.38341 + -94.00345 68.92451 -1.38341 + -91.94548 68.25974 -1.40214 + -89.91688 66.98003 -1.41984 + -87.93526 65.12804 -1.43651 + -86.01778 62.70419 -1.45219 + -84.18153 59.71476 -1.46689 + -84.18140 59.71828 -1.46689 + -82.42038 57.74051 -1.48063 + -80.71946 55.71230 -1.49345 + -79.08013 53.63372 -1.50534 + -77.50392 51.50493 -1.51634 + -75.99226 49.33197 -1.52646 + -75.99156 49.31389 -1.52646 + -71.56477 47.97914 -1.55197 + -67.26186 46.62082 -1.57001 + -63.07956 45.32867 -1.58103 + -59.01174 44.10542 -1.58545 + -55.05212 42.94961 -1.58372 + -55.05221 42.94788 -1.58372 + -51.19212 41.87345 -1.57626 + -47.42661 40.87067 -1.56345 + -43.74886 39.94522 -1.54569 + -40.15174 39.09864 -1.52336 + -36.62858 38.31380 -1.49685 + -36.62859 38.31195 -1.49685 + -32.81847 37.84625 -1.46332 + -29.05271 37.42617 -1.42566 + -25.32683 37.04486 -1.38434 + -21.63834 36.67206 -1.33982 + -17.98741 36.29616 -1.29258 + -17.98661 36.29104 -1.29258 + -13.02129 34.18906 -1.22282 + -8.47761 30.54975 -1.14987 + -4.47928 26.48779 -1.07470 + -1.05893 22.30357 -0.99830 + 1.77221 18.09126 -0.92164 + 1.77041 18.07672 -0.92164 + 4.01802 14.04308 -0.84558 + 5.72378 10.33723 -0.77052 + 6.93406 6.96573 -0.69676 + 7.69600 3.93308 -0.62461 + 8.05725 1.24175 -0.55438 + 8.05603 1.26448 -0.55438 + 8.06973 -1.01890 -0.48623 + 7.79611 -2.83912 -0.42008 + 7.30020 -4.19530 -0.35581 + 6.64663 -5.09208 -0.29330 + 5.89914 -5.53957 -0.23244 + 5.89931 -5.53748 -0.23244 + 5.11335 -5.68075 -0.17306 + 4.31737 -5.68108 -0.11494 + 3.53117 -5.54166 -0.05789 + 2.77412 -5.26507 -0.00172 + 2.06527 -4.85319 0.05376 + 2.06532 -4.85273 0.05376 + 1.42292 -4.30681 0.10876 + 0.86628 -3.62753 0.16341 + 0.41728 -2.74597 0.21782 + 0.11260 -1.55236 0.27210 + 0.00001 0.00008 0.32635 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -15558,36 +15694,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.80500 70.84400 32.98700 63.28857 62.43254 -10.83500 70.84400 32.98700 65.12608 62.51769 -10.86500 70.84400 32.98700 67.01990 62.60545 @@ -15668,7 +15804,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -15686,7 +15822,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -15699,7 +15835,7 @@ Lambda passive -10.88000 11.62460 65.00471 3.01242 0.47399 0.25914 5.59200 -10.91000 11.96030 66.88195 3.09942 0.47399 0.25914 5.59200 -10.94000 12.29600 68.28987 3.16466 0.47399 0.25914 5.59200 - -10.94000 12.29600 69.22849 3.20816 0.61444 0.25914 5.59200 + -10.94000 12.29600 69.22849 3.20816 0.47399 0.25914 5.59200 -10.97000 12.63170 70.63641 3.27341 0.47399 0.25914 5.59200 -11.00000 12.96740 72.51365 3.36040 0.47399 0.25914 5.59200 -11.03000 13.30310 74.39088 3.44739 0.47399 0.25914 5.59200 @@ -15729,7 +15865,7 @@ Lambda passive -12.92000 9.10420 49.91235 2.44548 0.48860 0.26861 5.48234 -13.06000 10.53080 57.40021 2.83060 0.48860 0.26879 5.45070 -13.20000 11.95740 62.99308 3.11979 0.48860 0.26893 5.43009 - -13.20000 11.95740 66.71397 3.31275 0.26902 0.26902 5.41771 + -13.20000 11.95740 66.71397 3.31275 0.48860 0.26902 5.41771 -13.34000 13.38400 72.28902 3.60244 0.48860 0.26916 5.40115 -13.48000 14.81060 79.71835 3.98903 0.48860 0.26934 5.38252 -13.62000 16.23720 87.14911 4.37598 0.48860 0.26950 5.36725 @@ -15888,13 +16024,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P 78.00011 0.00000 78.00011 78.00011 502 100 P 78.00012 0.00000 78.00012 78.00012 502 100 P 78.00014 0.00000 78.00014 78.00014 502 100 P 78.00016 0.00000 78.00016 78.00016 502 100 P 78.00018 0.00000 78.00018 78.00018 502 100 P - 78.00019 0.00000 78.00019 78.00019 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00029 0.00000 78.00029 78.00029 502 100 P 78.00056 0.00000 78.00056 78.00056 502 100 P 78.00092 0.00000 78.00092 78.00092 502 100 P @@ -15906,73 +16042,73 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 2.77319 67.39050 59.84232 5.07239 1 0 A 2.83844 67.68480 61.25025 5.19173 1 0 A 2.92543 67.97910 63.12748 5.35085 1 0 A 3.01242 68.27340 65.00471 5.50997 1 0 A 3.09942 68.56770 66.88195 5.66909 1 0 A 3.16466 68.86200 68.28987 5.78843 1 0 A - 3.20816 68.86200 69.22849 7.60667 1 0 A + 3.20816 68.86200 69.22849 5.86799 1 0 A 3.27341 69.15630 70.63641 5.98733 1 0 A 3.36040 69.45060 72.51365 6.14645 1 0 A 3.44739 69.74490 74.39088 6.30557 1 0 A 3.53439 70.03920 76.26811 6.46469 1 0 A 3.59963 70.33350 77.67604 6.58403 1 0 A 0.25078 70.33350 55.17823 10.04282 1 0 A - 5.23635 71.22621 55.32390 10.30489 110 0 1 - 5.57741 72.11892 55.78673 10.65432 110 0 1 - 5.93842 73.01163 56.44681 11.00374 110 0 1 - 6.31799 73.90434 57.22835 11.35317 110 0 1 - 6.62741 74.79705 57.86695 11.61524 110 0 1 - 6.80213 74.79705 58.31376 11.78995 110 0 1 - 7.12741 75.68976 59.00859 12.05202 110 0 1 - 7.55471 76.58247 59.96775 12.40145 110 0 1 - 7.99546 77.47518 60.95766 12.75087 110 0 1 - 8.44849 78.36789 61.97129 13.10030 110 0 1 - 8.82524 79.26060 62.74351 13.36237 110 0 1 - 10.60439 79.26060 39.79662 13.68219 110 0 1 - 9.33911 83.24160 35.96929 12.09524 110 0 1 - 7.61540 87.22260 30.90384 9.97930 110 0 1 - 5.67264 91.20360 25.87496 7.86337 110 0 1 - 3.97380 95.18460 20.87484 5.74743 110 0 1 - 2.82658 99.16560 17.13926 4.16048 110 0 1 - 21.79676 99.16560 28.95362 2.53144 220 75 2 - 5.67470 100.53900 34.74039 3.05421 110 16 1 + 5.23992 71.22621 55.32390 10.30489 110 0 1 + 5.58043 72.11892 55.78673 10.65432 110 0 1 + 5.94089 73.01163 56.44681 11.00374 110 0 1 + 6.31994 73.90434 57.22835 11.35317 110 0 1 + 6.62884 74.79705 57.86695 11.61524 110 0 1 + 6.80355 74.79705 58.31376 11.78995 110 0 1 + 7.12834 75.68976 59.00859 12.05202 110 0 1 + 7.55516 76.58247 59.96775 12.40145 110 0 1 + 7.99547 77.47518 60.95766 12.75087 110 0 1 + 8.44807 78.36789 61.97129 13.10030 110 0 1 + 8.82442 79.26060 62.74351 13.36237 110 0 1 + 10.60044 79.26060 39.79662 13.68219 110 0 1 + 9.33500 83.24160 35.96929 12.09524 110 0 1 + 7.61117 87.22260 30.90384 9.97930 110 0 1 + 5.67161 91.20360 25.87496 7.86337 110 0 1 + 3.98115 95.18460 20.87484 5.74743 110 0 1 + 2.83355 99.16560 17.13926 4.16048 110 0 1 + 21.94864 99.16560 28.95362 2.53144 220 76 2 + 5.71542 100.53900 34.74039 3.05421 110 16 1 2.06094 101.91240 42.36780 3.75124 1 0 A 2.44548 103.28580 49.91235 4.44827 1 0 A 2.83060 104.65920 57.40021 5.14530 1 0 A 3.11979 106.03260 62.99308 5.66807 1 0 A - 3.31275 106.03260 66.71397 3.31275 1 5 A + 3.31275 106.03260 66.71397 6.01658 1 0 A 3.60244 107.40600 72.28902 6.53936 1 0 A 3.98903 108.77940 79.71835 7.23639 1 0 A 4.37598 110.15280 87.14911 7.93342 1 0 A 4.76322 111.52620 94.58584 8.63045 1 0 A 5.05378 112.89960 100.16855 9.15322 1 0 A - 5.30062 112.89960 103.89346 9.50173 110 0 1 - 6.43556 114.27300 109.48565 10.02451 110 0 1 - 7.72128 115.64640 116.94998 10.72154 110 0 1 - 8.98542 117.01980 124.42364 11.41857 110 0 1 - 10.22992 118.39320 131.90602 12.11559 110 0 1 - 11.28245 119.76660 137.52284 12.63837 110 0 1 - 11.63096 119.76660 141.26987 12.98688 110 0 1 - 12.66825 121.14000 146.89385 13.50965 110 0 1 - 13.86725 122.51340 154.39774 14.20668 110 0 1 - 15.05599 123.88680 161.90727 14.90371 110 9 1 - 16.23679 125.26020 169.42179 15.60074 110 10 1 - 17.23775 126.63360 175.06045 16.12352 110 10 1 - 17.58626 126.63360 178.82091 16.47203 110 10 1 - 18.58399 128.00700 184.46342 16.99480 110 10 1 - 19.75430 129.38040 191.98953 17.69183 110 10 1 - 21.93591 130.75380 199.51859 18.38886 110 11 1 - 24.67304 132.12720 207.05025 19.08589 110 12 1 - 27.32217 133.50060 212.70045 19.60866 110 13 1 + 5.29989 112.89960 103.89346 9.50173 110 0 1 + 6.43699 114.27300 109.48565 10.02451 110 0 1 + 7.72498 115.64640 116.94998 10.72154 110 0 1 + 8.99147 117.01980 124.42364 11.41857 110 0 1 + 10.23834 118.39320 131.90602 12.11559 110 0 1 + 11.29323 119.76660 137.52284 12.63837 110 0 1 + 11.64175 119.76660 141.26987 12.98688 110 0 1 + 12.68135 121.14000 146.89385 13.50965 110 0 1 + 13.88260 122.51340 154.39774 14.20668 110 0 1 + 15.07355 123.88680 161.90727 14.90371 110 9 1 + 16.25654 125.26020 169.42179 15.60074 110 10 1 + 17.25966 126.63360 175.06045 16.12352 110 10 1 + 17.60817 126.63360 178.82091 16.47203 110 10 1 + 18.60805 128.00700 184.46342 16.99480 110 10 1 + 19.78051 129.38040 191.98953 17.69183 110 10 1 + 21.94152 130.75380 199.51859 18.38886 110 11 1 + 24.68174 132.12720 207.05025 19.08589 110 12 1 + 27.33397 133.50060 212.70045 19.60866 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -15987,9 +16123,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 0.956 'Grind' - -11.09 5.956 'Hydrobiaklei' + -11.09 5.957 'Hydrobiaklei' -12.00 3.332 'Basisveen' - -12.50 37.480 'Eerste zandlaag' + -12.50 37.522 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -16008,7 +16144,7 @@ Layer name -10.79 -0.37 'Grind' -11.09 -1.21 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.78 'Eerste zandlaag' + -12.50 -13.79 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16146,24 +16282,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.80500 70.84400 32.98700 61.78672 60.88677 -10.83500 70.84400 32.98700 63.74578 60.97756 -10.86500 70.84400 32.98700 65.80047 61.07278 @@ -16250,20 +16386,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 62.91163 2.91543 0.47399 0.25914 5.59200 -10.82000 11.67780 65.30221 3.02621 0.47399 0.25914 5.59200 -10.85000 12.24780 68.48964 3.17392 0.47399 0.25914 5.59200 -10.88000 12.81780 71.67708 3.32163 0.47399 0.25914 5.59200 -10.91000 13.38780 74.86452 3.46934 0.47399 0.25914 5.59200 -10.94000 13.95780 77.25510 3.58013 0.47399 0.25914 5.59200 - -10.94000 13.95780 78.52127 3.63880 0.47657 0.25914 5.59200 + -10.94000 13.95780 78.52127 3.63880 0.47399 0.25914 5.59200 -10.97000 14.29350 79.92919 3.70405 0.47399 0.25914 5.59200 -11.00000 14.62920 81.80642 3.79104 0.47399 0.25914 5.59200 -11.03000 14.96490 83.68366 3.87804 0.47399 0.25914 5.59200 @@ -16275,7 +16411,7 @@ Lambda passive -11.36300 17.10777 60.47908 1.74426 0.71240 0.10196 3.53518 -11.45400 17.59826 61.24830 1.98550 0.71240 0.11282 3.48036 -11.54500 18.08875 61.87825 2.16522 0.71240 0.12052 3.44416 - -11.54500 18.08875 62.31968 2.28465 0.80787 0.12545 3.42202 + -11.54500 18.08875 62.31968 2.28465 0.71240 0.12545 3.42202 -11.63600 18.57924 63.00700 2.46343 0.71240 0.13259 3.39126 -11.72700 19.06973 63.95705 2.70140 0.71240 0.14166 3.35385 -11.81800 19.56022 64.93885 2.93907 0.71240 0.15026 3.31994 @@ -16305,7 +16441,7 @@ Lambda passive -14.32000 25.03200 133.20351 6.76169 0.48860 0.27012 5.32133 -14.46000 26.45860 140.68864 7.14970 0.48860 0.27022 5.31731 -14.60000 27.88520 146.30742 7.44071 0.48860 0.27029 5.31475 - -14.60000 27.88520 150.05569 7.63471 0.32187 0.27033 5.31324 + -14.60000 27.88520 150.05569 7.63471 0.48860 0.27033 5.31324 -14.74000 29.31180 155.68140 7.92570 0.48860 0.27039 5.31122 -14.88000 30.73840 163.18735 8.31364 0.48860 0.27046 5.30891 -15.02000 32.16500 170.69870 8.70154 0.48860 0.27053 5.30697 @@ -16465,78 +16601,78 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00207 0.00000 78.00207 78.00207 1 0 A + 78.00207 0.00000 78.00207 78.00208 1 100 A 78.00290 0.00000 78.00290 78.00290 502 100 P 78.00400 0.00000 78.00400 78.00400 502 100 P 78.00510 0.00000 78.00510 78.00510 502 100 P 78.00620 0.00000 78.00620 78.00620 502 100 P - 78.00703 0.00000 78.00703 78.00703 502 100 P - 78.00732 0.00000 78.00732 78.00732 502 100 P + 78.00702 0.00000 78.00702 78.00703 502 100 P + 78.00732 0.00000 78.00732 78.00733 502 100 P 78.00740 0.00000 78.00740 78.00740 502 100 P 78.00750 0.00000 78.00750 78.00750 502 100 P 78.00760 0.00000 78.00760 78.00760 502 100 P 78.00770 0.00000 78.00770 78.00770 502 100 P - 78.00778 0.00000 78.00778 78.00778 502 100 P - 81.36615 0.00000 437.01614 37.04264 110 19 1 - 103.61219 0.00000 439.40672 37.24527 110 24 1 - 123.09480 0.00000 442.59416 37.51545 110 28 1 - 142.51836 0.00000 445.78159 37.78563 110 32 1 - 161.97972 0.00000 448.96903 38.05580 110 36 1 - 180.96320 0.00000 451.35961 38.25843 110 40 1 - 68.60933 66.90000 78.52127 6.69182 330 87 3 - 72.00067 67.19430 79.92919 6.77501 440 90 4 - 73.76960 67.48860 81.80642 6.93413 440 90 4 - 75.53257 67.78290 83.68366 7.09325 440 90 4 - 77.29077 68.07720 85.56089 7.25237 440 90 4 - 78.62926 68.37150 86.96881 7.37171 440 90 4 - 16.26209 68.37150 59.23397 11.22669 110 27 1 - 22.44447 69.26421 59.37847 11.48876 110 38 1 - 22.07435 70.15692 59.83148 11.83818 110 37 1 - 21.69315 71.04963 60.47908 12.18761 110 36 1 - 21.30225 71.94234 61.24830 12.53704 110 35 1 - 20.90145 72.83505 61.87825 12.79911 110 34 1 - 22.64326 72.83505 62.31968 14.71242 110 36 1 - 20.49692 73.72776 63.00700 13.23589 110 33 1 - 20.08502 74.62047 63.95705 13.58532 110 31 1 - 19.66852 75.51318 64.93885 13.93474 110 30 1 - 19.24858 76.40589 65.94522 14.28417 110 29 1 - 19.15969 77.29860 66.71247 14.54624 110 29 1 - 17.42851 77.29860 42.82863 14.93309 110 41 1 - 15.74398 81.27960 38.98760 13.34613 110 40 1 - 13.52616 85.26060 33.90521 11.23020 110 40 1 - 11.30499 89.24160 28.86089 9.11426 110 39 1 - 9.72063 93.22260 23.84677 6.99832 110 41 1 - 8.52381 97.20360 20.10155 5.41137 110 42 1 - 30.39346 97.20360 38.12381 3.34338 220 80 2 - 31.18563 98.57700 43.81974 3.86616 220 71 2 - 32.46726 99.95040 51.34525 4.56319 220 63 2 - 33.95338 101.32380 58.81333 5.26021 220 58 2 - 34.98389 102.69720 66.24782 5.95724 220 53 2 - 35.00979 104.07060 71.81256 6.48002 110 49 1 - 37.85985 104.07060 75.51980 6.82853 220 50 2 - 33.18180 105.44400 81.08031 7.35130 110 41 1 - 31.20140 106.81740 88.49771 8.04833 110 35 1 - 29.18173 108.19080 95.92278 8.74536 110 30 1 - 27.13806 109.56420 103.35777 9.44239 110 26 1 - 24.98736 110.93760 108.94075 9.96517 110 23 1 - 25.18431 110.93760 112.66638 10.31368 110 22 1 - 23.03751 112.31100 118.26016 10.83645 110 19 1 - 20.99717 113.68440 125.72706 11.53348 110 17 1 - 18.96791 115.05780 133.20351 12.23051 110 14 1 - 16.95284 116.43120 140.68864 12.92754 110 12 1 - 14.85655 117.80460 146.30742 13.45031 110 10 1 - 12.83360 117.80460 150.05569 9.09024 110 9 1 - 15.16300 119.17800 155.68140 14.32160 110 10 1 - 15.35807 120.55140 163.18735 15.01863 110 9 1 - 15.56339 121.92480 170.69870 15.71566 110 0 1 - 15.77664 123.29820 178.21477 16.41269 110 0 1 - 15.82123 124.67160 183.85446 16.93546 110 0 1 - 16.16974 124.67160 187.61553 17.28398 110 0 1 - 16.21757 126.04500 193.25886 17.80675 110 0 1 - 16.44131 127.41840 200.78592 18.50378 110 0 1 - 16.66552 128.79180 208.31578 19.20081 110 0 1 - 16.88900 130.16520 215.84810 19.89784 110 0 1 - 16.93627 131.53860 221.49871 20.42061 110 0 1 + 78.00777 0.00000 78.00777 78.00778 502 0 P + 81.37757 0.00000 437.01614 37.04264 110 19 1 + 103.62747 0.00000 439.40672 37.24527 110 24 1 + 123.11418 0.00000 442.59416 37.51545 110 28 1 + 142.54202 0.00000 445.78159 37.78563 110 32 1 + 162.00105 0.00000 448.96903 38.05580 110 36 1 + 180.98784 0.00000 451.35961 38.25843 110 40 1 + 70.25567 66.90000 78.52127 6.65567 330 89 3 + 72.00139 67.19430 79.92919 6.77501 440 90 4 + 73.77037 67.48860 81.80642 6.93413 440 90 4 + 75.53337 67.78290 83.68366 7.09325 440 90 4 + 77.29162 68.07720 85.56089 7.25237 440 90 4 + 78.63015 68.37150 86.96881 7.37171 440 90 4 + 16.26555 68.37150 59.23397 11.22669 110 27 1 + 22.48434 69.26421 59.37847 11.48876 110 38 1 + 22.11323 70.15692 59.83148 11.83818 110 37 1 + 21.73087 71.04963 60.47908 12.18761 110 36 1 + 21.33867 71.94234 61.24830 12.53704 110 35 1 + 20.93639 72.83505 61.87825 12.79911 110 34 1 + 20.93960 72.83505 62.31968 12.97382 110 34 1 + 20.53018 73.72776 63.00700 13.23589 110 33 1 + 20.11642 74.62047 63.95705 13.58532 110 31 1 + 19.69788 75.51318 64.93885 13.93474 110 30 1 + 19.27575 76.40589 65.94522 14.28417 110 29 1 + 19.17003 77.29860 66.71247 14.54624 110 29 1 + 17.42896 77.29860 42.82863 14.93309 110 41 1 + 15.74465 81.27960 38.98760 13.34613 110 40 1 + 13.52703 85.26060 33.90521 11.23020 110 40 1 + 11.30602 89.24160 28.86089 9.11426 110 39 1 + 9.72674 93.22260 23.84677 6.99832 110 41 1 + 8.52996 97.20360 20.10155 5.41137 110 42 1 + 30.41198 97.20360 38.12381 3.34338 220 80 2 + 31.20440 98.57700 43.81974 3.86616 220 71 2 + 32.48614 99.95040 51.34525 4.56319 220 63 2 + 33.97221 101.32380 58.81333 5.26021 220 58 2 + 35.00251 102.69720 66.24782 5.95724 220 53 2 + 35.04773 104.07060 71.81256 6.48002 110 49 1 + 35.24376 104.07060 75.51980 6.82853 110 47 1 + 33.21889 105.44400 81.08031 7.35130 110 41 1 + 31.23729 106.81740 88.49771 8.04833 110 35 1 + 29.21610 108.19080 95.92278 8.74536 110 30 1 + 27.17064 109.56420 103.35777 9.44239 110 26 1 + 25.01792 110.93760 108.94075 9.96517 110 23 1 + 25.21487 110.93760 112.66638 10.31368 110 22 1 + 23.06585 112.31100 118.26016 10.83645 110 20 1 + 21.02314 113.68440 125.72706 11.53348 110 17 1 + 18.99136 115.05780 133.20351 12.23051 110 14 1 + 16.97365 116.43120 140.68864 12.92754 110 12 1 + 14.87462 117.80460 146.30742 13.45031 110 10 1 + 15.14396 117.80460 150.05569 13.79883 110 10 1 + 15.14991 119.17800 155.68140 14.32160 110 10 1 + 15.34271 120.55140 163.18735 15.01863 110 9 1 + 15.54582 121.92480 170.69870 15.71566 110 0 1 + 15.75690 123.29820 178.21477 16.41269 110 0 1 + 15.79932 124.67160 183.85446 16.93546 110 0 1 + 16.14784 124.67160 187.61553 17.28398 110 0 1 + 16.19351 126.04500 193.25886 17.80675 110 0 1 + 16.41510 127.41840 200.78592 18.50378 110 0 1 + 16.63716 128.79180 208.31578 19.20081 110 0 1 + 16.85849 130.16520 215.84810 19.89784 110 0 1 + 16.90359 131.53860 221.49871 20.42061 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -16550,10 +16686,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 31.037 'Grind' - -11.09 18.791 'Hydrobiaklei' - -12.00 6.327 'Basisveen' - -12.50 80.689 'Eerste zandlaag' + -10.79 31.065 'Grind' + -11.09 18.741 'Hydrobiaklei' + -12.00 6.328 'Basisveen' + -12.50 80.691 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -16569,8 +16705,8 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 12.01 'Grind' - -11.09 3.81 'Hydrobiaklei' + -10.79 12.02 'Grind' + -11.09 3.80 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 29.66 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' @@ -16841,18 +16977,18 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 31.95 : Percentage mobilized resistance left 33.01 : Percentage mobilized resistance right - 251.41 : Effective left - 447.01 : Effective right + 251.42 : Effective left + 447.02 : Effective right 1120.54 : Water pressure left 924.92 : Water pressure right 786.97 : Max effective resistance left 1354.10 : Max effective resistance right -9369.37 : Max moment left -14782.45 : Max moment right --3149.35 : Max mobilized moment left --3787.74 : Max mobilized moment right - 82.63 : Vertical force left - 100.27 : Vertical force right +-3149.45 : Max mobilized moment left +-3787.87 : Max mobilized moment right + 82.64 : Vertical force left + 100.28 : Vertical force right 33.6 : Max mobilized moment percentage left 25.6 : Max mobilized moment percentage right -2.43 : Level of single support @@ -16861,10 +16997,10 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --82.63 : Active force -100.27 : Passive force --82.63 : Plugged active force -100.27 : Plugged passive force +-82.64 : Active force +100.28 : Passive force +-82.64 : Plugged active force +100.28 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -16884,210 +17020,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 508.27025 - 0.00000 0.00000 504.16207 - 0.00000 0.00000 500.05389 - 0.00000 0.00000 495.94571 - 0.00000 0.00000 491.83753 - 0.00000 0.00000 487.72935 - 0.00000 0.00000 487.72935 - 0.00000 0.00000 483.62117 - 0.00000 0.00000 479.51299 - 0.00000 0.00000 475.40481 - 0.00000 0.00000 471.29663 - 0.00000 0.00000 467.18845 - 0.00000 0.00000 467.18845 - 0.00000 -0.00049 466.70514 - -0.00001 -0.00196 466.22182 - -0.00004 -0.00441 465.73851 - -0.00010 -0.00785 465.25519 - -0.00020 -0.01226 464.77188 - -0.00020 -0.01226 464.77188 - -0.00803 -0.14175 458.97209 - -0.03988 -0.41251 453.17230 - -0.11269 -0.82453 447.37253 - -0.24341 -1.37781 441.57278 - -0.44901 -2.07236 435.77308 - -0.44901 -2.07236 435.77308 - -0.68977 -2.75906 430.94005 - -1.00409 -3.54386 426.10710 - -1.40181 -4.42676 421.27429 - -1.89272 -5.40776 416.44166 - -2.48663 -6.48686 411.60927 - -2.48663 -6.48686 411.60927 - -3.19336 -7.66406 406.77718 - -4.02271 -8.93936 401.94549 - -4.98450 -10.31276 397.11432 - -6.08854 -11.78426 392.28379 - -7.34462 -13.35386 387.45403 - -7.34462 -13.35386 387.45403 - -8.55395 -14.78218 383.30116 - -9.88924 -16.28305 379.14908 - -11.35672 -17.85648 374.99793 - -12.96263 -19.50246 370.84785 - -14.71322 -21.22099 366.69898 - -14.71322 -21.22099 366.69898 - -17.26743 -23.61088 361.20141 - -20.10135 -26.12827 355.70667 - -23.22952 -28.77314 350.21526 - -26.66647 -31.54551 344.72770 - -30.42674 -34.44536 339.24450 - -30.42674 -34.44536 339.24450 - -30.82111 -34.74236 338.69644 - -31.21887 -35.04063 338.14843 - -31.62004 -35.34018 337.60048 - -32.02463 -35.64100 337.05257 - -32.43266 -35.94310 336.50472 - -32.43203 -35.95668 336.50472 - -34.95778 -37.63135 333.20912 - -37.58834 -39.01224 329.91561 - -40.30354 -40.09923 326.62432 - -43.08323 -40.89233 323.33543 - -45.90822 -41.43405 320.04909 - -45.90853 -41.43739 320.04909 - -46.73818 -41.52399 319.09147 - -47.56935 -41.58922 318.13410 - -48.40158 -41.62947 317.17696 - -49.23436 -41.64474 316.22007 - -50.06723 -41.63864 315.26342 - -50.06723 -41.63860 315.26342 - -52.16773 -42.38116 312.87292 - -54.30523 -43.11667 310.48406 - -56.47920 -43.84023 308.09692 - -58.68904 -44.55148 305.71155 - -60.93421 -45.25478 303.32803 - -60.93423 -45.25412 303.32803 - -63.21429 -45.94874 300.94643 - -65.52915 -46.64624 298.56682 - -67.87896 -47.34652 296.18927 - -70.26384 -48.04907 293.81387 - -72.68389 -48.75330 291.44067 - -72.68390 -48.75315 291.44067 - -77.62987 -50.16676 286.70122 - -82.71736 -51.58354 281.97154 - -87.94665 -53.00260 277.25230 - -93.31791 -54.42265 272.54415 - -98.83119 -55.84282 267.84776 - -98.83119 -55.84256 267.84776 - -104.48641 -57.26175 263.16380 - -110.28349 -58.67961 258.49300 - -116.22227 -60.09553 253.83611 - -122.30252 -61.50905 249.19387 - -128.52400 -62.92019 244.56704 - -128.52403 -62.91971 244.56704 - -137.47067 -64.88872 238.11680 - -146.69259 -66.85172 231.70050 - -156.18881 -68.80734 225.32048 - -165.95828 -70.75510 218.97909 - -175.99990 -72.69564 212.67867 - -176.00004 -72.69391 212.67867 - -185.43326 -72.43641 206.86710 - -194.83705 -72.26082 201.09500 - -204.22717 -72.22608 195.36439 - -213.62194 -72.33230 189.67725 - -223.03713 -72.52067 184.03560 - -223.03698 -72.51960 184.03560 - -232.49336 -72.96707 178.44140 - -242.04284 -74.20898 172.89670 - -251.81446 -76.06850 167.40356 - -261.80634 -77.59782 161.96408 - -271.97558 -78.79694 156.58033 - -271.97558 -78.79694 156.58033 - -283.84461 -79.98607 150.46068 - -295.89141 -81.17519 144.42094 - -308.11599 -82.36431 138.46456 - -320.51834 -83.55343 132.59497 - -333.09847 -84.74256 126.81563 - -333.09847 -84.74256 126.81563 - -345.85637 -85.93168 121.13001 - -358.79204 -87.12080 115.54177 - -371.90549 -88.30993 110.05460 - -385.19671 -89.49905 104.67218 - -398.66570 -90.68817 99.39822 - -398.66653 -90.68437 99.39822 - -412.21884 -90.09040 94.23655 - -425.51073 -87.63356 89.19097 - -438.39330 -84.61538 84.26509 - -450.78297 -81.04022 79.46251 - -462.60017 -76.98027 74.78687 - -462.59825 -76.96613 74.78687 - -473.75483 -72.21705 70.24170 - -484.16718 -66.98709 65.82995 - -493.75662 -61.20825 61.55431 - -502.44111 -54.88094 57.41746 - -510.14210 -48.07380 53.42209 - -510.14210 -48.07380 53.42209 - -510.23815 -47.97809 53.36961 - -510.33401 -47.88229 53.31716 - -510.42968 -47.78640 53.26473 - -510.52516 -47.69040 53.21233 - -510.62044 -47.59432 53.15995 - -510.62047 -47.59370 53.15995 - -512.39773 -45.94411 52.16971 - -514.11204 -44.28027 51.18879 - -515.76282 -42.60016 50.21722 - -517.34945 -40.90376 49.25503 - -518.87133 -39.19310 48.30225 - -518.87123 -39.19313 48.30225 - -523.24347 -33.65729 45.35565 - -526.94329 -27.97911 42.50398 - -529.95195 -22.13814 39.74779 - -532.24992 -16.13426 37.08761 - -533.81847 -9.98776 34.52400 - -533.81853 -9.98856 34.52400 - -534.32351 -6.83886 33.27854 - -534.63848 -3.65347 32.05731 - -534.76111 -0.42728 30.86032 - -534.68894 2.83972 29.68758 - -534.41963 6.14244 28.53908 - -534.41972 6.14492 28.53908 - -533.60802 11.70645 26.84349 - -532.28665 17.35019 25.20357 - -530.44743 23.08790 23.61913 - -528.08180 28.91962 22.08998 - -525.18157 34.83360 20.61592 - -525.18168 34.83387 20.61592 - -521.73790 40.86541 19.19672 - -517.74168 46.97928 17.83195 - -513.18481 53.18723 16.52114 - -508.05875 59.48929 15.26381 - -502.35737 65.80440 14.05948 - -502.35670 65.83815 14.05948 - -495.55054 70.29491 12.79654 - -488.29487 74.83698 11.59602 - -480.59545 79.00995 10.45697 - -472.50930 82.69030 9.37842 - -464.06199 86.23283 8.35940 - -464.07085 86.27432 8.35940 - -450.42148 108.28941 7.03117 - -433.86070 127.92850 5.81418 - -414.69624 145.53733 4.70374 - -393.21187 160.96845 3.69516 - -369.75919 173.52575 2.78374 - -369.75706 173.81459 2.78374 - -344.72533 183.29138 1.96409 - -318.56541 189.98375 1.22953 - -291.65280 194.04214 0.57348 - -264.39494 194.64365 -0.01065 - -237.31070 191.85693 -0.52945 - -237.30009 191.63531 -0.52945 - -210.79589 186.70917 -0.98975 - -185.09788 180.14680 -1.39804 - -160.42330 172.11630 -1.76038 - -136.96661 162.77236 -2.08286 - -114.90187 152.25345 -2.37151 - -114.90376 152.20865 -2.37151 - -94.39475 140.60926 -2.63226 - -75.57852 128.03816 -2.86976 - -58.58612 114.56575 -3.08817 - -43.53934 100.25263 -3.29169 - -30.55226 85.14948 -3.48448 - -30.54999 85.07962 -3.48448 - -19.75161 69.11054 -3.67039 - -11.22210 52.64722 -3.85147 - -5.03609 35.63306 -4.02926 - -1.27032 18.07290 -4.20525 - 0.00051 0.00257 -4.38097 + 0.00000 0.00000 508.38215 + 0.00000 0.00000 504.27329 + 0.00000 0.00000 500.16442 + 0.00000 0.00000 496.05556 + 0.00000 0.00000 491.94669 + 0.00000 0.00000 487.83782 + 0.00000 0.00000 487.83782 + 0.00000 0.00000 483.72896 + 0.00000 0.00000 479.62009 + 0.00000 0.00000 475.51123 + 0.00000 0.00000 471.40236 + 0.00000 0.00000 467.29349 + 0.00000 0.00000 467.29349 + 0.00000 -0.00049 466.81010 + -0.00001 -0.00196 466.32670 + -0.00004 -0.00441 465.84331 + -0.00010 -0.00785 465.35991 + -0.00020 -0.01226 464.87651 + -0.00020 -0.01226 464.87651 + -0.00803 -0.14175 459.07576 + -0.03988 -0.41251 453.27500 + -0.11269 -0.82453 447.47426 + -0.24341 -1.37781 441.67354 + -0.44901 -2.07236 435.87287 + -0.44901 -2.07236 435.87287 + -0.68977 -2.75906 431.03903 + -1.00409 -3.54386 426.20528 + -1.40181 -4.42676 421.37166 + -1.89272 -5.40776 416.53822 + -2.48663 -6.48686 411.70503 + -2.48663 -6.48686 411.70503 + -3.19336 -7.66406 406.87213 + -4.02271 -8.93936 402.03963 + -4.98450 -10.31276 397.20765 + -6.08854 -11.78426 392.37632 + -7.34462 -13.35386 387.54575 + -7.34462 -13.35386 387.54575 + -8.55395 -14.78218 383.39218 + -9.88924 -16.28305 379.23940 + -11.35672 -17.85648 375.08756 + -12.96263 -19.50246 370.93679 + -14.71322 -21.22099 366.78722 + -14.71322 -21.22099 366.78722 + -17.26743 -23.61088 361.28874 + -20.10135 -26.12827 355.79307 + -23.22952 -28.77314 350.30074 + -26.66647 -31.54551 344.81226 + -30.42674 -34.44536 339.32815 + -30.42674 -34.44536 339.32815 + -30.82111 -34.74236 338.77999 + -31.21887 -35.04063 338.23189 + -31.62004 -35.34018 337.68384 + -32.02463 -35.64100 337.13584 + -32.43266 -35.94310 336.58790 + -32.43203 -35.95671 336.58790 + -34.95778 -37.63138 333.29175 + -37.58834 -39.01227 329.99768 + -40.30354 -40.09926 326.70584 + -43.08324 -40.89236 323.41639 + -45.90823 -41.43408 320.12950 + -45.90854 -41.43743 320.12950 + -46.73819 -41.52403 319.17173 + -47.56936 -41.58926 318.21419 + -48.40159 -41.62951 317.25689 + -49.23438 -41.64478 316.29983 + -50.06724 -41.63868 315.34303 + -50.06724 -41.63863 315.34303 + -52.16775 -42.38120 312.95212 + -54.30524 -43.11671 310.56286 + -56.47922 -43.84027 308.17531 + -58.68906 -44.55152 305.78954 + -60.93424 -45.25482 303.40562 + -60.93425 -45.25416 303.40562 + -63.21431 -45.94877 301.02361 + -65.52917 -46.64627 298.64360 + -67.87898 -47.34655 296.26565 + -70.26387 -48.04911 293.88984 + -72.68392 -48.75334 291.51624 + -72.68393 -48.75318 291.51624 + -77.62990 -50.16679 286.77598 + -82.71740 -51.58358 282.04549 + -87.94669 -53.00263 277.32544 + -93.31796 -54.42269 272.61649 + -98.83123 -55.84285 267.91929 + -98.83123 -55.84260 267.91929 + -104.48646 -57.26178 263.23452 + -110.28355 -58.67965 258.56291 + -116.22233 -60.09556 253.90521 + -122.30258 -61.50908 249.26217 + -128.52406 -62.92022 244.63454 + -128.52409 -62.91975 244.63454 + -137.47075 -64.88875 238.18317 + -146.69266 -66.85175 231.76573 + -156.18889 -68.80738 225.38458 + -165.95836 -70.75513 219.04206 + -175.99999 -72.69568 212.74051 + -176.00013 -72.69393 212.74051 + -185.43335 -72.43644 206.92789 + -194.83715 -72.26085 201.15475 + -204.22728 -72.22611 195.42308 + -213.62205 -72.33232 189.73490 + -223.03724 -72.52070 184.09219 + -223.03709 -72.51962 184.09219 + -232.49347 -72.96709 178.49695 + -242.04296 -74.20900 172.95120 + -251.81457 -76.06852 167.45701 + -261.80646 -77.59784 162.01648 + -271.97570 -78.79696 156.63168 + -271.97570 -78.79696 156.63168 + -283.84473 -79.98608 150.51082 + -295.89154 -81.17521 144.46987 + -308.11612 -82.36433 138.51229 + -320.51848 -83.55345 132.64150 + -333.09860 -84.74258 126.86095 + -333.09860 -84.74258 126.86095 + -345.85651 -85.93170 121.17412 + -358.79218 -87.12082 115.58467 + -371.90563 -88.30994 110.09629 + -385.19685 -89.49907 104.71267 + -398.66585 -90.68819 99.43750 + -398.66668 -90.68439 99.43750 + -412.21899 -90.09042 94.27463 + -425.51088 -87.63357 89.22784 + -438.39346 -84.61540 84.30075 + -450.78313 -81.04024 79.49697 + -462.60033 -76.98029 74.82012 + -462.59841 -76.96613 74.82012 + -473.75499 -72.21705 70.27375 + -484.16734 -66.98709 65.86079 + -493.75678 -61.20825 61.58394 + -502.44128 -54.88094 57.44589 + -510.14227 -48.07380 53.44931 + -510.14226 -48.07380 53.44931 + -510.23831 -47.97809 53.39682 + -510.33417 -47.88229 53.34435 + -510.42984 -47.78639 53.29191 + -510.52532 -47.69040 53.23949 + -510.62060 -47.59432 53.18710 + -510.62062 -47.59406 53.18710 + -512.39789 -45.94447 52.19655 + -514.11222 -44.28063 51.21532 + -515.76301 -42.60052 50.24344 + -517.34965 -40.90412 49.28094 + -518.87154 -39.19346 48.32786 + -518.87144 -39.19312 48.32786 + -523.24368 -33.65728 45.38029 + -526.94349 -27.97910 42.52765 + -529.95215 -22.13813 39.77049 + -532.25013 -16.13425 37.10935 + -533.81867 -9.98775 34.54477 + -533.81873 -9.98853 34.54477 + -534.32371 -6.83883 33.29883 + -534.63868 -3.65344 32.07711 + -534.76131 -0.42725 30.87964 + -534.68913 2.83975 29.70641 + -534.41982 6.14247 28.55744 + -534.41980 6.14205 28.55744 + -533.60836 11.70358 26.86111 + -532.28726 17.34732 25.22046 + -530.44830 23.08503 23.63528 + -528.08293 28.91675 22.10539 + -525.18295 34.83074 20.63060 + -525.18308 34.83093 20.63060 + -521.73956 40.86247 19.21067 + -517.74361 46.97634 17.84516 + -513.18701 53.18429 16.53362 + -508.06121 59.48635 15.27556 + -502.36010 65.80159 14.07050 + -502.35943 65.83533 14.07050 + -495.55355 70.29230 12.80675 + -488.29813 74.83459 11.60543 + -480.59893 79.00780 10.46558 + -472.51299 82.68836 9.38622 + -464.06586 86.23108 8.36640 + -464.07474 86.27302 8.36640 + -450.42541 108.28995 7.03705 + -433.86445 127.93065 5.81894 + -414.69959 145.54086 4.70737 + -393.21461 160.97372 3.69767 + -369.76105 173.53302 2.78514 + -369.75891 173.82152 2.78514 + -344.72610 183.29984 1.96437 + -318.56491 189.99326 1.22869 + -291.65092 194.05230 0.57151 + -264.39163 194.65366 -0.01374 + -237.30605 191.86599 -0.53365 + -237.29546 191.64456 -0.53365 + -210.78982 186.71944 -0.99507 + -185.09053 180.15467 -1.40449 + -160.41507 172.12076 -1.76796 + -136.95807 162.77220 -2.09156 + -114.89376 152.24726 -2.38134 + -114.89565 152.20249 -2.38134 + -94.38801 140.59541 -2.64323 + -75.57437 128.01472 -2.88185 + -58.58605 114.53057 -3.10140 + -43.54515 100.20340 -3.30605 + -30.56608 85.08374 -3.49997 + -30.56381 85.01379 -3.49997 + -19.76432 69.15320 -3.68701 + -11.22947 52.68076 -3.86922 + -5.03946 35.65645 -4.04813 + -1.27119 18.08511 -4.22525 + 0.00051 0.00257 -4.40209 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17449,7 +17585,7 @@ Lambda passive -4.30000 10.29550 19.15570 5.27350 0.77767 0.51221 1.86059 -4.40000 10.33450 19.15121 5.29839 0.77767 0.51269 1.85313 -4.50000 10.37350 19.15346 5.31705 0.77767 0.51304 1.84812 - -4.50000 10.37350 19.15749 5.32948 0.78113 0.51328 1.84504 + -4.50000 10.37350 19.15749 5.32948 0.77767 0.51328 1.84504 -4.60000 10.41250 19.16680 5.34812 0.77767 0.51362 1.84075 -4.70000 10.45150 19.18391 5.37297 0.77767 0.51409 1.83552 -4.80000 10.49050 19.20583 5.39781 0.77767 0.51454 1.83078 @@ -17461,7 +17597,7 @@ Lambda passive -5.42000 10.73230 19.41253 5.55174 0.77767 0.51729 1.80880 -5.56000 10.78690 19.47040 5.58649 0.77767 0.51790 1.80500 -5.70000 10.84150 19.51557 5.61255 0.77767 0.51834 1.80235 - -5.70000 10.84150 35.42323 -0.01167 0.90011 0.00000 3.40144 + -5.70000 10.84150 35.42323 -0.01167 0.74083 0.00000 3.40144 -5.83000 9.13220 32.70625 -0.67534 0.74083 0.00000 3.58142 -5.96000 7.42290 29.08315 -1.55959 0.74083 0.00000 3.91803 -6.09000 5.71360 25.45932 -2.44297 0.74083 0.00000 4.45592 @@ -17491,7 +17627,7 @@ Lambda passive -8.94350 9.27706 30.01167 3.68069 0.63113 0.39675 3.23504 -9.09300 10.47157 33.72460 4.15528 0.63113 0.39681 3.22059 -9.24250 11.66607 36.49712 4.51131 0.63113 0.39686 3.21067 - -9.24250 11.66607 38.34053 4.74872 0.39689 0.39689 3.20447 + -9.24250 11.66607 38.34053 4.74872 0.63113 0.39689 3.20447 -9.39200 12.86058 41.10027 5.10491 0.63113 0.39694 3.19583 -9.54150 14.05508 44.77379 5.57993 0.63113 0.39700 3.18559 -9.69100 15.24959 48.44314 6.05507 0.63113 0.39706 3.17669 @@ -17521,13 +17657,13 @@ Lambda passive -10.97000 22.94680 62.06392 6.47663 0.74083 0.28225 2.70469 -11.03000 23.27020 62.74417 6.64469 0.74083 0.28555 2.69633 -11.09000 23.59360 63.25446 6.77075 0.74083 0.28796 2.69022 - -11.09000 23.59360 63.68261 6.87651 0.65399 0.28995 2.68519 + -11.09000 23.59360 63.68261 6.87651 0.74083 0.28995 2.68519 -11.18100 24.08409 64.45683 7.06774 0.74083 0.29346 2.67632 -11.27200 24.57458 65.48938 7.32275 0.74083 0.29798 2.66492 -11.36300 25.06507 66.52224 7.57780 0.74083 0.30232 2.65398 -11.45400 25.55556 67.55537 7.83289 0.74083 0.30650 2.64347 -11.54500 26.04605 68.33038 8.02423 0.74083 0.30954 2.63585 - -11.54500 26.04605 68.84713 8.15181 1.41592 0.31151 2.63090 + -11.54500 26.04605 68.84713 8.15181 0.74083 0.31151 2.63090 -11.63600 26.53654 69.62238 8.34319 0.74083 0.31440 2.62364 -11.72700 27.02703 70.65622 8.59840 0.74083 0.31814 2.61428 -11.81800 27.51752 71.69028 8.85364 0.74083 0.32175 2.60526 @@ -17669,7 +17805,7 @@ Status character 19.15570 5.39550 19.15570 8.00646 502 100 P 19.15121 6.37650 19.15121 8.03679 502 100 P 19.15346 7.35750 19.15346 8.05953 502 100 P - 19.15749 7.35750 19.15749 8.11067 502 100 P + 19.15749 7.35750 19.15749 8.07470 502 100 P 19.16680 8.33850 19.16680 8.09745 502 100 P 19.18391 9.31950 19.18391 8.12778 502 100 P 19.20583 10.30050 19.20583 8.15810 502 100 P @@ -17681,7 +17817,7 @@ Status character 19.41253 16.38270 19.41253 8.34614 502 100 P 19.47040 17.75610 19.47040 8.38860 502 100 P 19.51557 19.12950 19.51557 8.42045 502 100 P - 35.42323 19.12950 35.42323 9.37395 502 100 P + 35.42323 19.12950 35.42323 7.71513 502 100 P 32.70625 22.94480 32.70625 6.76540 502 100 P 29.08315 26.76010 29.08315 5.49910 502 100 P 25.45932 30.57540 25.45932 4.23280 502 100 P @@ -17703,7 +17839,7 @@ Status character 0.00000 66.08207 0.00000 0.00000 502 0 P 0.00000 67.54866 0.00000 0.00000 502 0 P 0.00000 69.01526 0.00000 0.00000 502 0 P - 0.00000 70.48186 0.00000 0.00000 502 100 P + 0.00000 70.48186 0.00000 0.00000 502 0 P 0.00000 71.94845 0.00000 0.00000 502 0 P 1.35175 71.94845 1.35175 1.35175 502 100 P 22.50228 73.41505 22.50228 4.34725 502 100 P @@ -17711,7 +17847,7 @@ Status character 30.01167 76.34824 30.01167 5.85502 502 100 P 33.72460 77.81483 33.72460 6.60891 502 100 P 36.49712 79.28142 36.49712 7.17432 502 100 P - 38.34053 79.28142 38.34053 4.74872 502 100 P + 38.34053 79.28142 38.34053 7.55127 502 100 P 41.10027 80.74802 41.10027 8.11668 502 100 P 44.77379 82.21461 44.77379 8.87057 502 100 P 48.44314 83.68121 48.44314 9.62445 502 100 P @@ -17741,35 +17877,35 @@ Status character 62.06392 96.22820 62.06392 16.99966 502 100 P 62.74417 96.81680 62.74417 17.23925 502 100 P 63.25446 97.40540 63.25446 17.41894 502 100 P - 63.68261 97.40540 63.68261 15.51013 502 100 P + 63.68261 97.40540 63.68261 17.56967 502 100 P 64.45683 98.29811 64.45683 17.84220 502 100 P 65.48938 99.19082 65.48938 18.20557 502 100 P 66.52224 100.08353 66.52224 18.56894 502 100 P 67.55537 100.97624 67.55537 18.93231 502 100 P 68.33038 101.86895 68.33038 19.20484 502 100 P - 68.84713 101.86895 68.84713 37.05286 502 100 P + 68.84713 101.86895 68.84713 19.38652 502 100 P 69.62238 102.76166 69.62238 19.65905 502 100 P 70.65622 103.65437 70.65622 20.02242 502 100 P 71.69028 104.54708 71.69028 20.38579 502 100 P 72.72453 105.43979 72.72453 20.74916 502 100 P - 71.97714 106.33250 73.50032 21.02168 440 98 4 - 47.22219 106.33250 53.01517 22.78231 330 89 3 - 47.82099 104.31350 56.86471 24.64229 330 84 3 - 49.05290 102.29450 61.99022 27.12226 220 79 2 - 49.62608 100.27550 67.10701 29.60224 220 74 2 - 50.29295 98.25650 72.21510 32.08222 220 70 2 - 50.42219 96.23750 76.04076 33.94220 220 66 2 - 177.32562 96.23750 247.70391 23.76485 220 72 2 - 159.34185 97.61090 243.72655 24.33242 220 65 2 - 144.15520 98.98430 244.09044 25.08918 220 59 2 - 131.21770 100.35770 247.25554 25.84593 220 53 2 - 113.92251 101.73110 251.72665 26.60269 110 45 1 - 90.92963 103.10450 255.56014 27.17026 110 36 1 - 91.30800 103.10450 258.28993 27.54864 110 35 1 - 70.62979 104.47790 262.57243 28.11621 110 27 1 - 52.29511 105.85130 268.51677 28.87297 110 19 1 - 35.95513 107.22470 274.66750 29.62973 110 13 1 - 21.44837 108.59810 280.96720 30.38649 110 0 1 + 71.98002 106.33250 73.50032 21.02168 440 98 4 + 47.22435 106.33250 53.01517 22.78231 330 89 3 + 47.82299 104.31350 56.86471 24.64229 330 84 3 + 49.05532 102.29450 61.99022 27.12226 220 79 2 + 49.62831 100.27550 67.10701 29.60224 220 74 2 + 50.29500 98.25650 72.21510 32.08222 220 70 2 + 50.42408 96.23750 76.04076 33.94220 220 66 2 + 177.33959 96.23750 247.70391 23.76485 220 72 2 + 159.35410 97.61090 243.72655 24.33242 220 65 2 + 144.16587 98.98430 244.09044 25.08918 220 59 2 + 131.22684 100.35770 247.25554 25.84593 220 53 2 + 113.93825 101.73110 251.72665 26.60269 110 45 1 + 90.94228 103.10450 255.56014 27.17026 110 36 1 + 91.32066 103.10450 258.28993 27.54864 110 35 1 + 70.63913 104.47790 262.57243 28.11621 110 27 1 + 52.30085 105.85130 268.51677 28.87297 110 19 1 + 35.95685 107.22470 274.66750 29.62973 110 13 1 + 21.44557 108.59810 280.96720 30.38649 110 0 1 17.73330 109.97150 285.76348 30.95406 1 0 A 17.95298 109.97150 288.99188 31.33244 1 0 A 18.28233 111.34490 293.87257 31.90001 1 0 A @@ -17808,8 +17944,8 @@ Layer name -5.70 20.746 'Oude Zeeklei' -7.00 55.047 'Wadzand' -10.00 124.754 'Hydrobiaklei' - -12.00 24.562 'Basisveen' - -12.50 172.838 'Eerste zandlaag' + -12.00 24.563 'Basisveen' + -12.50 172.849 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -18087,7 +18223,7 @@ Lambda passive -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 -13.76000 38.68930 187.60408 11.79674 0.53046 0.30491 4.84899 -13.90000 40.11590 192.70971 12.12378 0.53046 0.30493 4.84692 - -13.90000 40.11590 196.12085 12.34176 0.53136 0.30494 4.84577 + -13.90000 40.11590 196.12085 12.34176 0.53046 0.30494 4.84577 -14.04000 41.54250 201.24614 12.66867 0.53046 0.30496 4.84434 -14.18000 42.96910 208.09120 13.10447 0.53046 0.30497 4.84281 -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 @@ -18099,7 +18235,7 @@ Lambda passive -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 -15.16000 52.95530 256.19718 16.15339 0.53046 0.30504 4.83799 -15.30000 54.38190 261.36123 16.47996 0.53046 0.30504 4.83776 - -15.30000 54.38190 264.80452 16.69766 0.56222 0.30504 4.83762 + -15.30000 54.38190 264.80452 16.69766 0.53046 0.30504 4.83762 -15.44000 55.80850 269.97025 17.02421 0.53046 0.30505 4.83744 -15.58000 57.23510 276.85902 17.45959 0.53046 0.30505 4.83722 -15.72000 58.66170 283.74896 17.89495 0.53046 0.30505 4.83704 @@ -18304,27 +18440,27 @@ Status character 10.15974 106.05850 162.45605 17.68542 1 0 A 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A - 13.44111 110.17870 180.82097 19.76650 110 0 1 - 29.46139 111.55210 187.60408 20.52326 110 16 1 - 43.62251 112.92550 192.70971 21.09083 110 23 1 - 44.03715 112.92550 196.12085 21.50547 110 22 1 - 56.66361 114.29890 201.24614 22.03678 110 28 1 - 68.18012 115.67230 208.09120 22.79354 110 33 1 - 78.51427 117.04570 214.94675 23.55030 110 37 1 - 87.82073 118.41910 221.81023 24.30706 110 40 1 - 96.06662 119.79250 226.96177 24.87463 110 42 1 - 96.44500 119.79250 230.39786 25.25301 110 42 1 - 103.97293 121.16590 235.55418 25.82058 110 44 1 - 111.09267 122.53930 242.43233 26.57734 110 46 1 - 117.72421 123.91270 249.31352 27.33410 110 47 1 - 123.97786 125.28610 256.19718 28.09086 110 48 1 - 129.77583 126.65950 261.36123 28.65843 110 50 1 - 131.89242 126.65950 264.80452 30.77502 110 50 1 - 135.32470 128.03290 269.97025 29.60438 220 50 2 - 139.71799 129.40630 276.85902 30.36113 220 50 2 - 144.06776 130.77970 283.74896 31.11789 220 51 2 - 148.39170 132.15310 290.63991 31.87465 220 51 2 - 152.12036 133.52650 295.80866 32.44222 220 51 2 + 13.43939 110.17870 180.82097 19.76650 110 0 1 + 29.46418 111.55210 187.60408 20.52326 110 16 1 + 43.63043 112.92550 192.70971 21.09083 110 23 1 + 44.00880 112.92550 196.12085 21.46921 110 22 1 + 56.67735 114.29890 201.24614 22.03678 110 28 1 + 68.20059 115.67230 208.09120 22.79354 110 33 1 + 78.54262 117.04570 214.94675 23.55030 110 37 1 + 87.85835 118.41910 221.81023 24.30706 110 40 1 + 96.11514 119.79250 226.96177 24.87463 110 42 1 + 96.49352 119.79250 230.39786 25.25301 110 42 1 + 104.03422 121.16590 235.55418 25.82058 110 44 1 + 111.16850 122.53930 242.43233 26.57734 110 46 1 + 117.81604 123.91270 249.31352 27.33410 110 47 1 + 124.08681 125.28610 256.19718 28.09086 110 48 1 + 129.90275 126.65950 261.36123 28.65843 110 50 1 + 130.28113 126.65950 264.80452 29.03681 110 49 1 + 135.38614 128.03290 269.97025 29.60438 220 50 2 + 139.78682 129.40630 276.85902 30.36113 220 50 2 + 144.14397 130.77970 283.74896 31.11789 220 51 2 + 148.47523 132.15310 290.63991 31.87465 220 51 2 + 152.21114 133.52650 295.80866 32.44222 220 51 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -18344,7 +18480,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 248.723 'Eerste zandlaag' + -12.50 248.733 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -18366,7 +18502,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -82.63 'Eerste zandlaag' + -12.50 -82.64 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -18606,8 +18742,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 526.61574 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 294.83191 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 526.61054 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 294.85432 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -18648,10 +18784,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 15.88 : Percentage mobilized resistance left + 15.86 : Percentage mobilized resistance left 13.84 : Percentage mobilized resistance right - 56.82 : Effective left - 104.76 : Effective right + 56.76 : Effective left + 104.72 : Effective right 745.54 : Water pressure left 1120.54 : Water pressure right 357.85 : Max effective resistance left @@ -18660,8 +18796,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 16.17 : Vertical force left - 29.57 : Vertical force right + 16.15 : Vertical force left + 29.55 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -18670,17 +18806,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.57 : Active force -16.17 : Passive force --29.57 : Plugged active force -16.17 : Plugged passive force +-29.55 : Active force +16.15 : Passive force +-29.55 : Plugged active force +16.15 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --13.39 : Resulting Vertical Force Unplugged --13.39 : Resulting Vertical Force Plugged +-13.40 : Resulting Vertical Force Unplugged +-13.40 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -18693,210 +18829,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 4.84065 - 0.00000 0.00000 4.49234 - 0.00000 0.00000 4.14402 - 0.00000 0.00000 3.79571 - 0.00000 0.00000 3.44740 - 0.00000 0.00000 3.09908 - 0.00000 0.00000 3.09908 - 0.00000 0.00000 2.75077 - 0.00000 0.00000 2.40246 - 0.00000 0.00000 2.05414 - 0.00000 0.00000 1.70583 - 0.00000 0.00000 1.35751 - 0.00000 0.00000 1.35751 - 0.00000 0.00049 1.31654 - 0.00001 0.00196 1.27556 - 0.00004 0.00441 1.23458 - 0.00010 0.00785 1.19360 - 0.00020 0.01226 1.15262 - 0.00020 0.01226 1.15262 - 0.00803 0.14175 0.66089 - 0.03988 0.41251 0.16916 - 0.11269 0.82453 -0.32258 - 0.24341 1.37781 -0.81436 - 0.44901 2.07236 -1.30618 - 0.44901 2.07236 -1.30618 - 0.68977 2.75906 -1.71608 - 1.00409 3.54386 -2.12606 - 1.40181 4.42676 -2.53618 - 1.89272 5.40776 -2.94649 - 2.48663 6.48686 -3.35703 - 2.48663 6.48686 -3.35703 - 3.19336 7.66406 -3.76787 - 4.02271 8.93936 -4.17912 - 4.98450 10.31276 -4.59088 - 6.08854 11.78426 -5.00329 - 7.34462 13.35386 -5.41646 - 7.34462 13.35386 -5.41646 - 8.55395 14.78218 -5.77251 - 9.88924 16.28305 -6.12935 - 11.35672 17.85648 -6.48712 - 12.96263 19.50246 -6.84597 - 14.71322 21.22099 -7.20602 - 14.71322 -106.91975 -7.20602 - 2.65938 -104.52985 -7.68500 - -9.11474 -102.01247 -8.16441 - -20.59462 -99.36760 -8.64237 - -31.76571 -96.59523 -9.11700 - -42.61348 -93.69538 -9.58643 - -42.61222 -93.71079 -9.58643 - -50.02506 -91.59968 -9.91177 - -57.26649 -89.42578 -10.23307 - -64.33151 -87.18910 -10.54976 - -71.21507 -84.88964 -10.86128 - -77.91217 -82.52739 -11.16706 - -77.91291 -82.53393 -11.16706 - -79.55759 -81.93356 -11.24254 - -81.19022 -81.32926 -11.31762 - -82.81073 -80.72104 -11.39229 - -84.41904 -80.10890 -11.46655 - -86.01506 -79.49283 -11.54038 - -86.01524 -79.49134 -11.54038 - -93.80823 -76.35214 -11.90283 - -101.28239 -73.11484 -12.25347 - -108.42792 -69.77944 -12.59138 - -115.23501 -66.34594 -12.91568 - -121.69384 -62.81434 -13.22545 - -121.69368 -62.81303 -13.22545 - -124.78937 -61.01044 -13.37462 - -127.79432 -59.18333 -13.51986 - -130.70730 -57.33169 -13.66108 - -133.52708 -55.45553 -13.79819 - -136.25244 -53.55484 -13.93109 - -136.25244 -53.55481 -13.93109 - -138.88236 -51.64186 -14.05970 - -141.41663 -49.72891 -14.18393 - -143.85525 -47.81596 -14.30371 - -146.19822 -45.90301 -14.41896 - -148.44555 -43.99006 -14.52961 - -148.44556 -43.98991 -14.52961 - -152.65325 -40.16401 -14.73678 - -156.47836 -36.33811 -14.92471 - -159.92088 -32.51221 -15.09297 - -162.98080 -28.68631 -15.24114 - -165.65814 -24.86041 -15.36876 - -165.65817 -24.85992 -15.36876 - -168.76362 -19.50366 -15.51215 - -171.11919 -14.14740 -15.61385 - -172.72489 -8.79114 -15.67348 - -173.58071 -3.43488 -15.69062 - -173.68666 1.92138 -15.66489 - -173.68677 1.92301 -15.66489 - -173.11349 6.89668 -15.60240 - -171.89363 11.87035 -15.50304 - -170.02720 16.84402 -15.36722 - -167.51419 21.81769 -15.19532 - -164.35460 26.79136 -14.98774 - -164.35448 26.79122 -14.98774 - -160.54833 31.76489 -14.74501 - -156.09561 36.73856 -14.46808 - -150.99631 41.71223 -14.15804 - -145.25043 46.68590 -13.81599 - -138.85797 51.65957 -13.44299 - -138.85798 51.65955 -13.44299 - -130.70732 57.37928 -12.97735 - -121.70157 63.09900 -12.47487 - -111.84072 68.81872 -11.93836 - -101.12478 74.53844 -11.37057 - -89.55373 80.25816 -10.77429 - -89.55373 80.25816 -10.77429 - -77.12759 85.97788 -10.15250 - -63.84635 91.69760 -9.50897 - -49.71001 97.41732 -8.84768 - -34.71857 103.13704 -8.17262 - -18.87203 108.85676 -7.48776 - -18.87309 108.86177 -7.48776 - -2.17071 114.58149 -6.79729 - 15.38677 120.30121 -6.10619 - 33.79935 126.02093 -5.41964 - 53.06703 131.74065 -4.74282 - 73.18981 137.46037 -4.08093 - 73.19189 137.47716 -4.08093 - 94.17227 143.19688 -3.43935 - 116.00775 148.91660 -2.82426 - 138.69833 154.63632 -2.24205 - 162.24401 160.35604 -1.69912 - 186.64479 166.07576 -1.20185 - 186.64480 166.07553 -1.20185 - 186.97703 166.15205 -1.19553 - 187.30941 166.22857 -1.18923 - 187.64195 166.30509 -1.18294 - 187.97463 166.38161 -1.17665 - 188.30747 166.45812 -1.17037 - 188.30747 166.45813 -1.17037 - 188.64047 166.53464 -1.16411 - 188.97361 166.61116 -1.15785 - 189.30691 166.68768 -1.15160 - 189.64036 166.76420 -1.14536 - 189.97397 166.84072 -1.13914 - 189.97394 166.84127 -1.13914 - 196.00175 167.95049 -1.02868 - 202.06334 168.80687 -0.92142 - 208.15599 169.67594 -0.81746 - 214.28016 170.55772 -0.71690 - 220.43627 171.44980 -0.61984 - 220.43639 -123.38246 -0.61984 - 205.81562 -120.28250 -0.32174 - 191.57317 -117.06806 -0.06097 - 177.72493 -113.71250 0.16498 - 164.28782 -110.21582 0.35863 - 151.27771 -106.60466 0.52247 - 151.27755 -106.60305 0.52247 - 144.94105 -104.61523 0.59398 - 138.72351 -102.63796 0.65892 - 132.62425 -100.67273 0.71757 - 126.64254 -98.71954 0.77019 - 120.77769 -96.77689 0.81707 - 120.77829 -96.79649 0.81707 - 112.10253 -93.75478 0.87783 - 103.72800 -90.28166 0.92690 - 95.67451 -86.70150 0.96512 - 87.95110 -83.03016 0.99333 - 80.56412 -79.32268 1.01236 - 80.56419 -79.31646 1.01236 - 73.51556 -75.60050 1.02304 - 66.80460 -71.89417 1.02604 - 60.43060 -68.19532 1.02205 - 54.39275 -64.50654 1.01172 - 48.68970 -60.84099 0.99571 - 48.68980 -60.83859 0.99571 - 42.77619 -57.46573 0.97234 - 37.19153 -54.24643 0.94358 - 31.92193 -51.17625 0.91010 - 26.95013 -48.29064 0.87257 - 22.25658 -45.62178 0.83164 - 22.25474 -45.59189 0.83164 - 16.23381 -40.45435 0.76990 - 10.91821 -35.51630 0.70416 - 6.27966 -30.78375 0.63557 - 2.28881 -26.26429 0.56528 - -1.08471 -21.96701 0.49444 - -1.08449 -21.96481 0.49444 - -3.87045 -17.87231 0.42406 - -6.09894 -13.99845 0.35463 - -7.79973 -10.33289 0.28660 - -9.00158 -6.86945 0.22038 - -9.73410 -3.63996 0.15639 - -9.73168 -3.60854 0.15639 - -10.03055 -0.73724 0.09493 - -9.95890 1.68843 0.03594 - -9.57763 3.68894 -0.02065 - -8.94504 5.28143 -0.07494 - -8.11710 6.48234 -0.12701 - -8.11726 6.47656 -0.12701 - -7.14851 7.30119 -0.17702 - -6.08985 7.76305 -0.22528 - -4.99126 7.87349 -0.27204 - -3.90124 7.64178 -0.31757 - -2.86719 7.07510 -0.36213 - -2.86485 7.05409 -0.36213 - -1.92486 6.27908 -0.40601 - -1.12738 5.06098 -0.44943 - -0.51997 3.58166 -0.49252 - -0.13421 1.89464 -0.53544 - 0.00108 0.00522 -0.57832 + 0.00000 0.00000 4.83697 + 0.00000 0.00000 4.48877 + 0.00000 0.00000 4.14056 + 0.00000 0.00000 3.79236 + 0.00000 0.00000 3.44415 + 0.00000 0.00000 3.09595 + 0.00000 0.00000 3.09595 + 0.00000 0.00000 2.74774 + 0.00000 0.00000 2.39954 + 0.00000 0.00000 2.05133 + 0.00000 0.00000 1.70313 + 0.00000 0.00000 1.35492 + 0.00000 0.00000 1.35492 + 0.00000 0.00049 1.31396 + 0.00001 0.00196 1.27299 + 0.00004 0.00441 1.23203 + 0.00010 0.00785 1.19106 + 0.00020 0.01226 1.15010 + 0.00020 0.01226 1.15010 + 0.00803 0.14175 0.65852 + 0.03988 0.41251 0.16694 + 0.11269 0.82453 -0.32465 + 0.24341 1.37781 -0.81627 + 0.44901 2.07236 -1.30794 + 0.44901 2.07236 -1.30794 + 0.68977 2.75906 -1.71771 + 1.00409 3.54386 -2.12756 + 1.40181 4.42676 -2.53756 + 1.89272 5.40776 -2.94774 + 2.48663 6.48686 -3.35815 + 2.48663 6.48686 -3.35815 + 3.19336 7.66406 -3.76887 + 4.02271 8.93936 -4.17998 + 4.98450 10.31276 -4.59161 + 6.08854 11.78426 -5.00389 + 7.34462 13.35386 -5.41694 + 7.34462 13.35386 -5.41694 + 8.55395 14.78218 -5.77288 + 9.88924 16.28305 -6.12961 + 11.35672 17.85648 -6.48727 + 12.96263 19.50246 -6.84601 + 14.71322 21.22099 -7.20595 + 14.71322 -106.91455 -7.20595 + 2.65998 -104.52466 -7.68478 + -9.11356 -102.00727 -8.16404 + -20.59284 -99.36240 -8.64186 + -31.76334 -96.59003 -9.11635 + -42.61052 -93.69018 -9.58564 + -42.60925 -93.70561 -9.58564 + -50.02168 -91.59450 -9.91087 + -57.26270 -89.42060 -10.23206 + -64.32730 -87.18392 -10.54866 + -71.21045 -84.88446 -10.86008 + -77.90714 -82.52221 -11.16576 + -77.90787 -82.52875 -11.16576 + -79.55245 -81.92838 -11.24121 + -81.18498 -81.32409 -11.31627 + -82.80539 -80.71587 -11.39092 + -84.41359 -80.10372 -11.46515 + -86.00951 -79.48765 -11.53895 + -86.00968 -79.48616 -11.53895 + -93.80216 -76.34696 -11.90128 + -101.27581 -73.10966 -12.25179 + -108.42082 -69.77426 -12.58959 + -115.22739 -66.34076 -12.91376 + -121.68570 -62.80916 -13.22341 + -121.68554 -62.80785 -13.22341 + -124.78097 -61.00526 -13.37252 + -127.78566 -59.17815 -13.51771 + -130.69838 -57.32651 -13.65887 + -133.51790 -55.45035 -13.79591 + -136.24300 -53.54966 -13.92876 + -136.24300 -53.54963 -13.92876 + -138.87266 -51.63668 -14.05730 + -141.40667 -49.72373 -14.18148 + -143.84503 -47.81078 -14.30120 + -146.18775 -45.89783 -14.41639 + -148.43482 -43.98488 -14.52699 + -148.43483 -43.98473 -14.52699 + -152.64201 -40.15883 -14.73404 + -156.46659 -36.33293 -14.92186 + -159.90859 -32.50703 -15.09001 + -162.96800 -28.68113 -15.23807 + -165.64482 -24.85523 -15.36559 + -165.64485 -24.85474 -15.36559 + -168.74958 -19.49848 -15.50883 + -171.10443 -14.14222 -15.61039 + -172.70940 -8.78596 -15.66987 + -173.56450 -3.42970 -15.68688 + -173.66972 1.92656 -15.66101 + -173.66982 1.92819 -15.66101 + -173.09587 6.90186 -15.59840 + -171.87534 11.87553 -15.49893 + -170.00823 16.84920 -15.36300 + -167.49455 21.82287 -15.19099 + -164.33429 26.79654 -14.98331 + -164.33417 26.79641 -14.98331 + -160.52735 31.77008 -14.74048 + -156.07395 36.74375 -14.46345 + -150.97397 41.71742 -14.15333 + -145.22742 46.69109 -13.81118 + -138.83429 51.66476 -13.43811 + -138.83429 51.66474 -13.43811 + -130.68287 57.38446 -12.97238 + -121.67634 63.10418 -12.46983 + -111.81472 68.82390 -11.93324 + -101.09799 74.54362 -11.36539 + -89.52617 80.26334 -10.76905 + -89.52617 80.26334 -10.76905 + -77.09925 85.98306 -10.14721 + -63.81724 91.70278 -9.50364 + -49.68012 97.42250 -8.84232 + -34.68791 103.14222 -8.16723 + -18.84060 108.86195 -7.48236 + -18.84166 108.86694 -7.48236 + -2.13850 114.58666 -6.79188 + 15.41976 120.30638 -6.10078 + 33.83311 126.02610 -5.41424 + 53.10156 131.74582 -4.73744 + 73.22511 137.46555 -4.07558 + 73.22719 137.48230 -4.07558 + 94.20835 143.20202 -3.43404 + 116.04460 148.92174 -2.81900 + 138.73595 154.64146 -2.23685 + 162.28239 160.36118 -1.69399 + 186.68394 166.08090 -1.19680 + 186.68395 166.08068 -1.19680 + 187.01619 166.15719 -1.19049 + 187.34858 166.23371 -1.18419 + 187.68113 166.31023 -1.17789 + 188.01382 166.38675 -1.17161 + 188.34667 166.46327 -1.16533 + 188.34667 166.46327 -1.16533 + 188.67968 166.53979 -1.15907 + 189.01283 166.61630 -1.15281 + 189.34614 166.69282 -1.14657 + 189.67960 166.76934 -1.14033 + 190.01322 166.84586 -1.13410 + 190.01321 166.84609 -1.13410 + 196.04119 167.95531 -1.02367 + 202.10296 168.81168 -0.91643 + 208.19578 169.68076 -0.81249 + 214.32012 170.56253 -0.71196 + 220.47641 171.45461 -0.61492 + 220.47653 -123.39973 -0.61492 + 205.85368 -120.29977 -0.31690 + 191.60917 -117.08533 -0.05623 + 177.75885 -113.72977 0.16962 + 164.31967 -110.23309 0.36316 + 151.30749 -106.62193 0.52689 + 151.30740 -106.62302 0.52689 + 144.96969 -104.63521 0.59835 + 138.75096 -102.65794 0.66323 + 132.65050 -100.69271 0.72181 + 126.66759 -98.73952 0.77438 + 120.80155 -96.79687 0.82119 + 120.80214 -96.81656 0.82119 + 112.12447 -93.77728 0.88186 + 103.74769 -90.30897 0.93083 + 95.69149 -86.73355 0.96895 + 87.96503 -83.06425 0.99705 + 80.57497 -79.35618 1.01598 + 80.57514 -79.35255 1.01598 + 73.52326 -75.63602 1.02655 + 66.80909 -71.92914 1.02945 + 60.43193 -68.22976 1.02535 + 54.39097 -64.54047 1.01491 + 48.68486 -60.87419 0.99880 + 48.68495 -60.87187 0.99880 + 42.76802 -57.49880 0.97531 + 37.18007 -54.27930 0.94644 + 31.90719 -51.20893 0.91284 + 26.93213 -48.32313 0.87519 + 22.23534 -45.65410 0.83416 + 22.23347 -45.62381 0.83416 + 16.20833 -40.48276 0.77226 + 10.88898 -35.54136 0.70638 + 6.24715 -30.80559 0.63765 + 2.25347 -26.28301 0.56724 + -1.12246 -21.98269 0.49628 + -1.12224 -21.98050 0.49628 + -3.91018 -17.88501 0.42579 + -6.14025 -14.00818 0.35626 + -7.84220 -10.33964 0.28814 + -9.04478 -6.87318 0.22184 + -9.77753 -3.63902 0.15778 + -9.77511 -3.60769 0.15778 + -10.07365 -0.73252 0.09626 + -10.00088 1.69983 0.03723 + -9.61753 3.70734 -0.01940 + -8.98185 5.30725 -0.07372 + -8.14975 6.51602 -0.12580 + -8.14991 6.51023 -0.12580 + -7.17587 7.34323 -0.17583 + -6.11070 7.81403 -0.22409 + -5.00431 7.93400 -0.27085 + -3.90512 7.71244 -0.31638 + -2.86043 7.15653 -0.36093 + -2.85810 7.13559 -0.36093 + -1.91726 6.25032 -0.40481 + -1.12312 5.04115 -0.44822 + -0.51805 3.56814 -0.49131 + -0.13372 1.88772 -0.53423 + 0.00108 0.00520 -0.57711 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -19148,7 +19284,7 @@ Lambda passive -13.62000 37.26270 174.02129 11.60374 0.53814 0.31140 4.67012 -13.76000 38.68930 180.56137 12.04923 0.53814 0.31144 4.66696 -13.90000 40.11590 185.48257 12.38324 0.53814 0.31146 4.66514 - -13.90000 40.11590 188.76986 12.60587 0.53904 0.31147 4.66415 + -13.90000 40.11590 188.76986 12.60587 0.53814 0.31147 4.66415 -14.04000 41.54250 193.70835 12.93975 0.53814 0.31148 4.66290 -14.18000 42.96910 200.30294 13.38484 0.53814 0.31150 4.66156 -14.32000 44.39570 206.90674 13.82984 0.53814 0.31151 4.66051 @@ -19160,7 +19296,7 @@ Lambda passive -15.02000 51.52870 240.00363 16.05406 0.53814 0.31156 4.65767 -15.16000 52.95530 246.63201 16.49879 0.53814 0.31156 4.65736 -15.30000 54.38190 251.60443 16.83233 0.53814 0.31156 4.65716 - -15.30000 54.38190 254.91989 17.05468 0.56990 0.31157 4.65704 + -15.30000 54.38190 254.91989 17.05468 0.53814 0.31157 4.65704 -15.44000 55.80850 259.89377 17.38820 0.53814 0.31157 4.65689 -15.58000 57.23510 266.52659 17.83287 0.53814 0.31157 4.65670 -15.72000 58.66170 273.16044 18.27753 0.53814 0.31158 4.65654 @@ -19339,49 +19475,49 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 502 100 P - 11.77993 101.25211 23.21584 4.09523 220 51 2 - 12.41138 102.14482 24.24018 4.46107 220 51 2 - 12.99571 103.03753 25.26429 4.82692 220 51 2 - 13.53670 103.93024 26.28821 5.19276 220 51 2 - 13.92841 104.82295 27.05602 5.46715 220 51 2 - 14.14783 104.82295 27.56784 5.65007 220 51 2 - 14.50362 105.71566 28.33547 5.92445 220 51 2 - 14.93629 106.60837 29.35884 6.29030 220 51 2 - 15.33909 107.50108 30.38206 6.65614 220 50 2 - 15.71499 108.39379 31.40511 7.02199 220 50 2 - 15.82842 109.28650 32.17232 7.29637 110 49 1 - 11.63745 109.28650 21.64625 8.36989 220 54 2 - 13.45648 107.26750 25.39547 10.24042 220 53 2 - 15.88631 105.24850 30.38139 12.73446 220 52 2 - 18.30367 103.22950 35.35390 15.22850 220 52 2 - 20.71061 101.21050 40.31570 17.72254 220 51 2 - 22.48851 99.19150 44.03174 19.59307 220 51 2 - 34.94944 99.19150 144.52622 14.10283 110 24 1 - 33.86577 100.56490 135.45373 14.67862 110 25 1 - 32.87611 101.93830 137.64852 15.44633 110 24 1 - 31.81768 103.31170 142.68760 16.21404 110 22 1 - 30.71996 104.68510 148.53546 16.98176 110 21 1 - 29.42079 106.05850 153.14774 17.55754 110 19 1 - 29.80465 106.05850 156.29139 17.94140 110 19 1 - 28.52153 107.43190 161.07169 18.51718 110 18 1 - 27.45883 108.80530 167.51794 19.28489 110 16 1 - 26.43501 110.17870 174.02129 20.05261 110 15 1 - 25.46055 111.55210 180.56137 20.82032 110 14 1 - 24.35412 112.92550 185.48257 21.39610 110 13 1 - 24.77423 112.92550 188.76986 21.81622 110 13 1 - 23.69862 114.29890 193.70835 22.35575 110 12 1 - 22.91653 115.67230 200.30294 23.12346 110 0 1 - 22.19711 117.04570 206.90674 23.89117 110 0 1 - 21.53765 118.41910 213.51749 24.65888 110 0 1 - 20.74349 119.79250 218.47899 25.23467 110 0 1 - 21.12734 119.79250 221.78817 25.61852 110 0 1 - 20.38542 121.16590 226.75384 26.19431 110 0 1 - 19.87963 122.53930 233.37741 26.96202 110 0 1 - 19.41069 123.91270 240.00363 27.72973 110 0 1 - 18.97114 125.28610 246.63201 28.49745 110 0 1 - 18.36153 126.65950 251.60443 29.07323 110 0 1 - 20.48360 126.65950 254.91989 31.19530 110 0 1 - 18.14942 128.03290 259.89377 30.03287 110 0 1 + 11.78729 101.25211 23.21584 4.09523 220 51 2 + 12.41850 102.14482 24.24018 4.46107 220 51 2 + 13.00259 103.03753 25.26429 4.82692 220 51 2 + 13.54334 103.93024 26.28821 5.19276 220 52 2 + 13.93481 104.82295 27.05602 5.46715 220 52 2 + 14.15423 104.82295 27.56784 5.65007 220 51 2 + 14.50979 105.71566 28.33547 5.92445 220 51 2 + 14.94222 106.60837 29.35884 6.29030 220 51 2 + 15.34480 107.50108 30.38206 6.65614 220 51 2 + 15.72048 108.39379 31.40511 7.02199 220 50 2 + 15.83898 109.28650 32.17232 7.29637 110 49 1 + 11.63956 109.28650 21.64625 8.36989 220 54 2 + 13.45851 107.26750 25.39547 10.24042 220 53 2 + 15.88826 105.24850 30.38139 12.73446 220 52 2 + 18.30555 103.22950 35.35390 15.22850 220 52 2 + 20.71241 101.21050 40.31570 17.72254 220 51 2 + 22.49024 99.19150 44.03174 19.59307 220 51 2 + 34.97517 99.19150 144.52622 14.10283 110 24 1 + 33.89026 100.56490 135.45373 14.67862 110 25 1 + 32.89954 101.93830 137.64852 15.44633 110 24 1 + 31.84026 103.31170 142.68760 16.21404 110 22 1 + 30.74187 104.68510 148.53546 16.98176 110 21 1 + 29.44225 106.05850 153.14774 17.55754 110 19 1 + 29.82611 106.05850 156.29139 17.94140 110 19 1 + 28.54275 107.43190 161.07169 18.51718 110 18 1 + 27.48002 108.80530 167.51794 19.28489 110 16 1 + 26.45639 110.17870 174.02129 20.05261 110 15 1 + 25.48234 111.55210 180.56137 20.82032 110 14 1 + 24.37655 112.92550 185.48257 21.39610 110 13 1 + 24.76040 112.92550 188.76986 21.77996 110 13 1 + 23.72192 114.29890 193.70835 22.35575 110 12 1 + 22.94092 115.67230 200.30294 23.12346 110 0 1 + 22.22281 117.04570 206.90674 23.89117 110 0 1 + 21.56488 118.41910 213.51749 24.65888 110 0 1 + 20.77244 119.79250 218.47899 25.23467 110 0 1 + 21.15630 119.79250 221.78817 25.61852 110 0 1 + 20.41630 121.16590 226.75384 26.19431 110 0 1 + 19.91258 122.53930 233.37741 26.96202 110 0 1 + 19.44581 123.91270 240.00363 27.72973 110 0 1 + 19.00850 125.28610 246.63201 28.49745 110 0 1 + 18.40115 126.65950 251.60443 29.07323 110 0 1 + 18.78501 126.65950 254.91989 29.45709 110 0 1 + 18.19125 128.03290 259.89377 30.03287 110 0 1 17.83287 129.40630 266.52659 30.80059 1 0 A 18.27753 130.77970 273.16044 31.56830 1 0 A 18.72218 132.15310 279.79516 32.33601 1 0 A @@ -19403,9 +19539,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.121 'Hydrobiaklei' - -12.00 8.542 'Basisveen' - -12.50 84.094 'Eerste zandlaag' + -10.00 12.127 'Hydrobiaklei' + -12.00 8.543 'Basisveen' + -12.50 84.051 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19427,7 +19563,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.16 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -27.41 'Eerste zandlaag' + -12.50 -27.39 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -19565,18 +19701,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 70.80000 34.95400 7.65322 7.15145 -10.88000 70.80000 34.95400 8.87242 7.22369 -10.94000 70.80000 34.95400 10.29486 7.30798 @@ -19676,7 +19812,7 @@ Lambda passive -11.81800 6.63692 26.31378 -1.37038 0.74588 0.00000 3.96476 -11.90900 6.62741 26.22273 -1.37530 0.74588 0.00000 3.95671 -12.00000 6.61790 26.16191 -1.37899 0.74588 0.00000 3.95178 - -12.00000 6.61790 15.52789 1.20448 0.78751 0.18968 2.44528 + -12.00000 6.61790 15.52789 1.20448 0.78208 0.18968 2.44528 -12.10000 5.54690 14.17898 0.69034 0.78208 0.12445 2.55620 -12.20000 4.47590 12.39091 0.00438 0.78208 0.00098 2.76836 -12.30000 3.40490 10.61334 -0.68196 0.78208 0.00000 3.11708 @@ -19688,7 +19824,7 @@ Lambda passive -12.92000 5.54270 27.05800 1.72391 0.53814 0.31102 4.88174 -13.06000 6.96930 33.70213 2.16796 0.53814 0.31107 4.83580 -13.20000 8.39590 38.63742 2.50110 0.53814 0.31111 4.80610 - -13.20000 8.39590 41.91173 2.72324 0.74382 0.31114 4.78852 + -13.20000 8.39590 41.91173 2.72324 0.53814 0.31114 4.78852 -13.34000 9.82250 46.81034 3.05653 0.53814 0.31118 4.76562 -13.48000 11.24910 53.33307 3.50102 0.53814 0.31123 4.74110 -13.62000 12.67570 59.85679 3.94562 0.53814 0.31127 4.72217 @@ -19885,9 +20021,9 @@ Status character 1.80624 70.51180 30.48242 3.16612 1 0 A 1.95679 71.10040 33.02304 3.43000 1 0 A 0.00000 71.10040 28.79077 5.00530 1 0 A - 2.99844 72.49311 28.10720 4.99998 110 0 1 - 1.87853 73.88582 27.53204 4.99288 110 0 1 - 0.86164 75.27853 27.16169 4.98579 110 0 1 + 3.05915 72.49311 28.10720 4.99998 110 0 1 + 1.93820 73.88582 27.53204 4.99288 110 0 1 + 0.92009 75.27853 27.16169 4.98579 110 0 1 0.00000 76.67124 26.89968 4.97870 1 0 A 0.00000 78.06395 26.74566 4.97338 1 0 A 0.00000 78.06395 26.65902 4.96983 1 0 A @@ -19896,7 +20032,7 @@ Status character 0.00000 82.24208 26.31378 4.95032 1 0 A 0.00000 83.63479 26.22273 4.94323 1 0 A 0.00000 85.02750 26.16191 4.93791 1 0 A - 1.20448 85.02750 15.52789 5.00078 1 0 A + 1.20448 85.02750 15.52789 4.96630 1 0 A 0.69034 87.26850 14.17898 4.33810 1 0 A 0.00438 89.50950 12.39091 3.50049 1 0 A 0.00000 91.75050 10.61334 2.66289 1 0 A @@ -19908,30 +20044,30 @@ Status character 1.72391 100.35270 27.05800 2.98276 1 0 A 2.16796 101.72610 33.70213 3.75047 1 0 A 2.50110 103.09950 38.63742 4.32625 1 0 A - 2.72324 103.09950 41.91173 6.51036 1 0 A + 2.72324 103.09950 41.91173 4.71011 1 0 A 3.05653 104.47290 46.81034 5.28590 1 0 A 3.50102 105.84630 53.33307 6.05361 1 0 A 3.94562 107.21970 59.85679 6.82132 1 0 A 4.39028 108.59310 66.38882 7.58903 1 0 A - 5.20681 109.96650 71.29488 8.16482 110 0 1 - 5.59066 109.96650 74.56965 8.54867 110 0 1 - 7.78158 111.33990 79.48786 9.12446 110 0 1 - 10.09910 112.71330 86.05508 9.89217 110 12 1 - 12.35395 114.08670 92.63283 10.65988 110 13 1 - 14.54883 115.46010 99.21983 11.42760 110 15 1 - 16.49456 116.83350 104.16514 12.00338 110 16 1 - 16.87842 116.83350 107.46442 12.38724 110 16 1 - 18.77191 118.20690 112.41652 12.96302 110 17 1 - 20.81312 119.58030 119.02399 13.73074 110 17 1 - 22.81750 120.95370 125.63631 14.49845 110 18 1 - 24.79247 122.32710 132.25270 15.26616 110 19 1 - 26.55365 123.70050 137.21718 15.84195 110 19 1 - 26.93750 123.70050 140.52787 16.22580 110 19 1 - 28.68504 125.07390 145.49525 16.80159 110 20 1 - 30.61675 126.44730 152.12043 17.56930 110 20 1 - 32.54477 127.82070 158.74769 18.33701 110 21 1 - 34.47323 129.19410 165.37672 19.10472 110 21 1 - 36.21435 130.56750 170.34945 19.68051 110 21 1 + 5.18438 109.96650 71.29488 8.16482 110 0 1 + 5.56823 109.96650 74.56965 8.54867 110 0 1 + 7.75829 111.33990 79.48786 9.12446 110 0 1 + 10.07471 112.71330 86.05508 9.89217 110 12 1 + 12.32824 114.08670 92.63283 10.65988 110 13 1 + 14.52160 115.46010 99.21983 11.42760 110 15 1 + 16.46561 116.83350 104.16514 12.00338 110 16 1 + 16.84946 116.83350 107.46442 12.38724 110 16 1 + 18.74104 118.20690 112.41652 12.96302 110 17 1 + 20.78018 119.58030 119.02399 13.73074 110 17 1 + 22.78237 120.95370 125.63631 14.49845 110 18 1 + 24.75510 122.32710 132.25270 15.26616 110 19 1 + 26.51403 123.70050 137.21718 15.84195 110 19 1 + 26.89788 123.70050 140.52787 16.22580 110 19 1 + 28.64321 125.07390 145.49525 16.80159 110 20 1 + 30.57276 126.44730 152.12043 17.56930 110 20 1 + 32.49865 127.82070 158.74769 18.33701 110 20 1 + 34.42499 129.19410 165.37672 19.10472 110 21 1 + 36.16399 130.56750 170.34945 19.68051 110 21 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19946,9 +20082,9 @@ Layer name [DATA] -9.99 6.857 'OWB' -10.79 0.452 'Grind' - -11.09 0.522 'Hydrobiaklei' + -11.09 0.538 'Hydrobiaklei' -12.00 0.130 'Basisveen' - -12.50 48.860 'Eerste zandlaag' + -12.50 48.786 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19965,9 +20101,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.16 'Grind' - -11.09 0.09 'Hydrobiaklei' + -11.09 0.10 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 15.92 'Eerste zandlaag' + -12.50 15.90 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -20207,8 +20343,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 363.02030 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 524.99179 10000000.000 1 1 1 'Dek' + -10.19000 363.08210 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 524.98518 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -20270,9 +20406,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 31.94 : Percentage mobilized resistance left - 18.65 : Percentage mobilized resistance right - 212.31 : Effective left - 106.89 : Effective right + 18.66 : Percentage mobilized resistance right + 212.30 : Effective left + 106.96 : Effective right 520.35 : Water pressure left 540.51 : Water pressure right 664.73 : Max effective resistance left @@ -20282,7 +20418,7 @@ Is favorable (0=false, 1=true) 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right 50.39 : Vertical force left - 15.30 : Vertical force right + 15.32 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -20291,17 +20427,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.30 : Active force +-15.32 : Active force 50.39 : Passive force --15.30 : Plugged active force +-15.32 : Plugged active force 50.39 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --64.92 : Resulting Vertical Force Unplugged --64.92 : Resulting Vertical Force Plugged +-64.93 : Resulting Vertical Force Unplugged +-64.93 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -20314,210 +20450,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.13660 - 0.12444 0.00000 -57.89211 - 0.24889 0.00000 -56.64763 - 0.37333 0.00000 -55.40317 - 0.49778 0.00000 -54.15876 - 0.62222 0.00000 -52.91439 - 0.62222 0.00000 -52.91439 - 0.74663 0.00000 -51.67009 - 0.87105 0.00000 -50.42587 - 0.99546 0.00000 -49.18173 - 1.11987 0.00000 -47.93770 - 1.24428 0.00000 -46.69378 - 1.24428 0.00000 -46.69378 - 1.41006 0.00000 -45.03542 - 1.57584 0.00000 -43.37731 - 1.74162 0.00000 -41.71949 - 1.90740 0.00000 -40.06199 - 2.07318 0.00000 -38.40483 - 2.07318 0.00000 -38.40483 - 2.21119 0.00000 -37.02416 - 2.34919 0.00000 -35.64376 - 2.48720 0.00000 -34.26365 - 2.62521 0.00000 -32.88386 - 2.76322 0.00000 -31.50440 - 2.76322 0.00000 -31.50440 - 2.90105 0.00000 -30.12529 - 3.03889 0.00000 -28.74655 - 3.17672 0.00000 -27.36818 - 3.31456 0.00000 -25.99022 - 3.45239 0.00000 -24.61267 - 3.45239 0.00000 -24.61267 - 3.57076 0.00000 -23.42833 - 3.68912 0.00000 -22.24432 - 3.80749 0.00000 -21.06066 - 3.92585 0.00000 -19.87735 - 4.04422 0.00000 -18.69440 - 4.04422 439.90000 -18.69440 - 54.34601 439.90000 -17.12826 - 104.64779 439.90000 -15.57102 - 154.94958 439.90000 -14.03092 - 205.25137 439.90000 -12.51618 - 255.55316 439.90000 -11.03505 - 255.55442 439.88459 -11.03505 - 290.84142 439.88459 -10.02015 - 326.12842 439.88459 -9.02870 - 361.41541 439.88459 -8.06355 - 396.70241 439.88459 -7.12753 - 431.98941 439.88459 -6.22350 - 431.98868 -85.11374 -6.22350 - 430.30804 -85.11374 -6.00282 - 428.62740 -85.11374 -5.78430 - 426.94676 -85.11374 -5.56794 - 425.26612 -85.11374 -5.35374 - 423.58548 -85.11374 -5.14167 - 423.58531 -85.11225 -5.14167 - 415.16668 -85.11225 -4.11321 - 406.74806 -85.11225 -3.13704 - 398.32943 -85.11225 -2.21212 - 389.91080 -85.11225 -1.33738 - 381.49218 -85.11225 -0.51176 - 381.49233 -85.11083 -0.51176 - 373.04981 -85.11083 0.26580 - 364.60730 -85.11083 0.99636 - 356.16478 -85.11083 1.68099 - 347.72227 -85.11083 2.32075 - 339.27976 -85.11083 2.91670 - 339.27976 -85.11057 2.91670 - 330.81590 -85.11057 3.46992 - 322.35204 -85.11057 3.98145 - 313.88818 -85.11057 4.45238 - 305.42432 -85.11057 4.88376 - 296.96047 -85.11057 5.27667 - 296.96044 -85.11008 5.27667 - 285.08028 -85.11008 5.76412 - 273.20012 -85.11008 6.18119 - 261.31996 -85.11008 6.53079 - 249.43980 -85.11008 6.81587 - 237.55965 -85.11008 7.03935 - 237.55954 -85.10845 7.03935 - 226.50176 -85.10845 7.19428 - 215.44398 -85.10845 7.30099 - 204.38620 -85.10845 7.36183 - 193.32842 -85.10845 7.37916 - 182.27064 -85.10845 7.35532 - 182.27076 -85.10859 7.35532 - 171.19356 -85.10859 7.29267 - 160.11636 -85.10859 7.19358 - 149.03916 -85.10859 7.06040 - 137.96196 -85.10859 6.89548 - 126.88476 -85.10859 6.70119 - 126.88476 -85.10861 6.70119 - 114.12965 -85.10861 6.44451 - 101.37453 -85.10861 6.15569 - 88.61942 -85.10861 5.83833 - 75.86430 -85.10861 5.49601 - 63.10919 -85.10861 5.13234 - 63.10919 -85.10861 5.13234 - 50.34519 -85.10861 4.75089 - 37.58119 -85.10861 4.35526 - 24.81720 -85.10861 3.94906 - 12.05320 -85.10861 3.53586 - -0.71080 -85.10861 3.11928 - -0.71186 -85.10360 3.11928 - -13.47501 -85.10360 2.70289 - -26.23816 -85.10360 2.29030 - -39.00131 -85.10360 1.88509 - -51.76446 -85.10360 1.49087 - -64.52761 -85.10360 1.11122 - -64.52553 -85.08681 1.11122 - -77.27708 -85.08681 0.74974 - -90.02864 -85.08681 0.41002 - -102.78020 -85.08681 0.09565 - -115.53175 -85.08681 -0.18978 - -128.28331 -85.08681 -0.44267 - -128.28330 -85.08704 -0.44267 - -128.45373 -85.00826 -0.44582 - -128.62390 -84.85226 -0.44896 - -128.79377 -84.69626 -0.45209 - -128.96332 -84.54026 -0.45522 - -129.13255 -84.38426 -0.45834 - -129.13255 -84.38425 -0.45834 - -129.30148 -84.22825 -0.46146 - -129.47009 -84.07225 -0.46456 - -129.63839 -83.91625 -0.46766 - -129.80637 -83.76025 -0.47076 - -129.97405 -83.60425 -0.47385 - -129.97406 -83.60402 -0.47385 - -132.95545 -82.21403 -0.52830 - -135.92015 -82.21402 -0.58058 - -138.88486 -82.21402 -0.63065 - -141.84956 -82.21401 -0.67844 - -144.81427 -82.21400 -0.72392 - -144.81464 88.17613 -0.72392 - -135.12325 88.17615 -0.84851 - -125.43185 88.17617 -0.95250 - -115.74045 88.17620 -1.03737 - -106.04904 88.17622 -1.10460 - -96.35764 88.17624 -1.15566 - -96.35765 88.17579 -1.15566 - -95.47621 88.17567 -1.15955 - -94.59478 88.17567 -1.16332 - -93.71334 88.17567 -1.16697 - -92.83190 88.17567 -1.17051 - -91.95046 88.17580 -1.17392 - -91.95057 88.18427 -1.17392 - -89.32310 86.83941 -1.18348 - -86.75234 84.41163 -1.19203 - -84.27045 80.90937 -1.19960 - -81.90766 76.54901 -1.20620 - -79.68278 71.79195 -1.21188 - -79.68303 71.78115 -1.21188 - -77.55970 69.78389 -1.21666 - -75.49698 67.73942 -1.22055 - -73.49636 65.64386 -1.22359 - -71.55937 63.49738 -1.22580 - -69.68748 61.30603 -1.22720 - -69.68677 61.28978 -1.22720 - -64.19187 59.36697 -1.22670 - -58.88753 57.19523 -1.21950 - -53.77920 55.06093 -1.20614 - -48.86298 52.97456 -1.18716 - -44.13419 50.94190 -1.16307 - -44.13440 50.94020 -1.16307 - -39.59068 48.90267 -1.13441 - -35.22448 47.01482 -1.10162 - -31.02641 45.20877 -1.06514 - -26.98871 43.49116 -1.02540 - -23.10365 41.84877 -0.98285 - -23.10370 41.84566 -0.98285 - -18.96483 40.87512 -0.93335 - -14.91984 39.96956 -0.88146 - -10.96225 39.12394 -0.82768 - -7.08734 38.30947 -0.77251 - -3.29247 37.53131 -0.71644 - -3.29099 37.53188 -0.71644 - 1.76205 34.20547 -0.63747 - 6.23605 29.62538 -0.55896 - 10.05951 24.92398 -0.48183 - 13.22030 20.16938 -0.40705 - 15.71537 15.42393 -0.33553 - 15.71431 15.39600 -0.33553 - 17.52727 10.52210 -0.26809 - 18.68336 6.03552 -0.20498 - 19.24336 2.00680 -0.14636 - 19.27138 -1.56481 -0.09236 - 18.83115 -4.68311 -0.04314 - 18.83303 -4.68292 -0.04314 - 17.98627 -7.35497 0.00132 - 16.79785 -9.55357 0.04133 - 15.33998 -11.18243 0.07725 - 13.69811 -12.18508 0.10943 - 11.95841 -12.58491 0.13821 - 11.95723 -12.58521 0.13821 - 10.21047 -12.38136 0.16402 - 8.49636 -12.06711 0.18732 - 6.84458 -11.49271 0.20850 - 5.29080 -10.66867 0.22797 - 3.86937 -9.60325 0.24613 - 3.86956 -9.60104 0.24613 - 2.61385 -8.30019 0.26339 - 1.55650 -6.76778 0.28001 - 0.73306 -4.93536 0.29619 - 0.19386 -2.69438 0.31213 - -0.00001 0.00003 0.32802 + 0.00000 0.00000 -59.13886 + 0.12445 0.00000 -57.89429 + 0.24890 0.00000 -56.64973 + 0.37336 0.00000 -55.40520 + 0.49781 0.00000 -54.16071 + 0.62226 0.00000 -52.91627 + 0.62226 0.00000 -52.91627 + 0.74668 0.00000 -51.67189 + 0.87110 0.00000 -50.42759 + 0.99552 0.00000 -49.18338 + 1.11994 0.00000 -47.93927 + 1.24436 0.00000 -46.69527 + 1.24436 0.00000 -46.69527 + 1.41015 0.00000 -45.03681 + 1.57594 0.00000 -43.37860 + 1.74173 0.00000 -41.72068 + 1.90752 0.00000 -40.06307 + 2.07330 0.00000 -38.40581 + 2.07330 0.00000 -38.40581 + 2.21132 0.00000 -37.02505 + 2.34934 0.00000 -35.64457 + 2.48736 0.00000 -34.26438 + 2.62537 0.00000 -32.88450 + 2.76339 0.00000 -31.50496 + 2.76339 0.00000 -31.50496 + 2.90123 0.00000 -30.12576 + 3.03908 0.00000 -28.74693 + 3.17692 0.00000 -27.36848 + 3.31476 0.00000 -25.99043 + 3.45261 0.00000 -24.61280 + 3.45261 0.00000 -24.61280 + 3.57098 0.00000 -23.42839 + 3.68935 0.00000 -22.24431 + 3.80772 0.00000 -21.06057 + 3.92610 0.00000 -19.87718 + 4.04447 0.00000 -18.69417 + 4.04447 439.90000 -18.69417 + 54.34627 439.90000 -17.12793 + 104.64806 439.90000 -15.57059 + 154.94986 439.90000 -14.03039 + 205.25166 439.90000 -12.51556 + 255.55345 439.90000 -11.03433 + 255.55472 439.88457 -11.03433 + 290.84172 439.88457 -10.01936 + 326.12873 439.88457 -9.02784 + 361.41573 439.88457 -8.06262 + 396.70273 439.88457 -7.12654 + 431.98974 439.88457 -6.22244 + 431.98900 -85.10716 -6.22244 + 430.30850 -85.10716 -6.00174 + 428.62799 -85.10716 -5.78321 + 426.94749 -85.10716 -5.56683 + 425.26698 -85.10716 -5.35261 + 423.58648 -85.10716 -5.14053 + 423.58631 -85.10567 -5.14053 + 415.16835 -85.10567 -4.11198 + 406.75039 -85.10567 -3.13573 + 398.33243 -85.10567 -2.21073 + 389.91446 -85.10567 -1.33590 + 381.49650 -85.10567 -0.51020 + 381.49665 -85.10425 -0.51020 + 373.05481 -85.10425 0.26744 + 364.61296 -85.10425 0.99809 + 356.17111 -85.10425 1.68280 + 347.72927 -85.10425 2.32264 + 339.28742 -85.10425 2.91867 + 339.28742 -85.10398 2.91867 + 330.82423 -85.10398 3.47196 + 322.36104 -85.10398 3.98358 + 313.89784 -85.10398 4.45458 + 305.43465 -85.10398 4.88604 + 296.97146 -85.10398 5.27902 + 296.97143 -85.10349 5.27902 + 285.09220 -85.10349 5.76657 + 273.21298 -85.10349 6.18374 + 261.33375 -85.10349 6.53343 + 249.45453 -85.10349 6.81860 + 237.57530 -85.10349 7.04217 + 237.57519 -85.10186 7.04217 + 226.51828 -85.10186 7.19718 + 215.46136 -85.10186 7.30397 + 204.40445 -85.10186 7.36488 + 193.34753 -85.10186 7.38227 + 182.29061 -85.10186 7.35850 + 182.29073 -85.10199 7.35850 + 171.21440 -85.10199 7.29591 + 160.13806 -85.10199 7.19687 + 149.06172 -85.10199 7.06374 + 137.98539 -85.10199 6.89887 + 126.90905 -85.10199 6.70462 + 126.90905 -85.10201 6.70462 + 114.15492 -85.10201 6.44798 + 101.40079 -85.10201 6.15919 + 88.64667 -85.10201 5.84185 + 75.89254 -85.10201 5.49955 + 63.13842 -85.10201 5.13588 + 63.13842 -85.10201 5.13588 + 50.37541 -85.10201 4.75444 + 37.61239 -85.10201 4.35881 + 24.84938 -85.10201 3.95258 + 12.08636 -85.10201 3.53937 + -0.67665 -85.10201 3.12274 + -0.67771 -85.09701 3.12274 + -13.43988 -85.09701 2.70631 + -26.20205 -85.09701 2.29366 + -38.96422 -85.09701 1.88839 + -51.72639 -85.09701 1.49410 + -64.48856 -85.09701 1.11436 + -64.48648 -85.08026 1.11436 + -77.23707 -85.08026 0.75279 + -89.98766 -85.08026 0.41296 + -102.73825 -85.08026 0.09847 + -115.48884 -85.08026 -0.18709 + -128.23942 -85.08026 -0.44013 + -128.23941 -85.08048 -0.44013 + -128.40983 -85.00170 -0.44328 + -128.57999 -84.84570 -0.44642 + -128.74984 -84.68970 -0.44955 + -128.91938 -84.53370 -0.45268 + -129.08860 -84.37770 -0.45581 + -129.08860 -84.37770 -0.45581 + -129.25751 -84.22170 -0.45892 + -129.42611 -84.06570 -0.46203 + -129.59440 -83.90970 -0.46513 + -129.76237 -83.75370 -0.46823 + -129.93003 -83.59770 -0.47132 + -129.93004 -83.59747 -0.47132 + -132.91120 -82.20748 -0.52581 + -135.87567 -82.20747 -0.57813 + -138.84015 -82.20746 -0.62823 + -141.80462 -82.20746 -0.67607 + -144.76909 -82.20745 -0.72159 + -144.76900 88.11064 -0.72159 + -135.08482 88.11066 -0.84630 + -125.40064 88.11069 -0.95042 + -115.71645 88.11071 -1.03543 + -106.03226 88.11073 -1.10279 + -96.34807 88.11075 -1.15400 + -96.34814 88.11001 -1.15400 + -95.46736 88.10989 -1.15790 + -94.58658 88.10989 -1.16169 + -93.70580 88.10989 -1.16535 + -92.82503 88.10990 -1.16890 + -91.94425 88.11002 -1.17233 + -91.94436 88.11849 -1.17233 + -89.31887 86.77330 -1.18193 + -86.75010 84.34511 -1.19052 + -84.27021 80.84237 -1.19812 + -81.90944 76.48174 -1.20477 + -79.68658 71.72463 -1.21048 + -79.68684 71.71382 -1.21048 + -77.56557 69.71475 -1.21530 + -75.50492 67.67026 -1.21923 + -73.50638 65.57468 -1.22231 + -71.57147 63.42818 -1.22456 + -69.70165 61.23681 -1.22599 + -69.70095 61.22054 -1.22599 + -64.21241 59.29603 -1.22561 + -58.91468 57.12119 -1.21853 + -53.81323 54.98388 -1.20528 + -48.90417 52.89461 -1.18640 + -44.18279 50.85917 -1.16243 + -44.18289 50.85487 -1.16243 + -39.64227 48.89381 -1.13386 + -35.27700 47.00350 -1.10116 + -31.08007 45.19519 -1.06477 + -27.04371 43.47553 -1.02512 + -23.16014 41.83198 -0.98264 + -23.16020 41.82880 -0.98264 + -19.02302 40.85821 -0.93322 + -14.97973 39.95260 -0.88140 + -11.02384 39.10711 -0.82768 + -7.15060 38.29314 -0.77256 + -3.35733 37.51574 -0.71655 + -3.35586 37.51670 -0.71655 + 1.69605 34.20081 -0.63763 + 6.16934 29.61976 -0.55915 + 9.99192 24.91714 -0.48204 + 13.15167 20.16143 -0.40726 + 15.64556 15.41497 -0.33573 + 15.64450 15.38701 -0.33573 + 17.46479 10.60469 -0.26826 + 18.63233 6.11644 -0.20510 + 19.20356 2.08627 -0.14642 + 19.24261 -1.48656 -0.09235 + 18.81328 -4.60586 -0.04305 + 18.81515 -4.60570 -0.04305 + 17.97915 -7.27851 0.00148 + 16.80148 -9.47583 0.04158 + 15.35473 -11.10124 0.07758 + 13.72450 -12.10009 0.10984 + 11.99697 -12.49582 0.13869 + 11.99580 -12.49610 0.13869 + 10.24694 -12.44638 0.16456 + 8.52431 -12.12371 0.18791 + 6.86520 -11.54087 0.20914 + 5.30527 -10.70845 0.22865 + 3.87885 -9.63476 0.24685 + 3.87904 -9.63252 0.24685 + 2.61949 -8.32353 0.26414 + 1.55944 -6.78311 0.28080 + 0.73433 -4.94443 0.29702 + 0.19418 -2.69890 0.31299 + -0.00001 0.00002 0.32891 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -20652,36 +20788,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.24500 3.00000 2.00000 19.89033 19.89033 - -10.35500 9.00000 39.00000 28.47067 28.47067 - -10.46500 11.00000 66.00000 37.05113 37.05113 - -10.57500 9.00000 26.00000 45.63171 45.63171 - -10.68500 11.00000 40.00000 54.21242 54.21242 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.24500 1.00000 1.00000 19.89033 19.89033 + -10.35500 1.00000 1.00000 28.47067 28.47067 + -10.46500 1.00000 1.00000 37.05113 37.05113 + -10.57500 1.00000 1.00000 45.63171 45.63171 + -10.68500 1.00000 1.00000 54.21242 54.21242 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.80500 70.84400 32.98700 63.28857 62.43254 -10.83500 70.84400 32.98700 65.12608 62.51769 -10.86500 70.84400 32.98700 67.01990 62.60545 @@ -20762,7 +20898,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -20780,7 +20916,7 @@ Lambda passive -10.41000 78.00420 78.00420 78.00420 1.00000 1.00000 1.00000 -10.52000 78.00530 78.00530 78.00530 1.00000 1.00000 1.00000 -10.63000 78.00640 78.00640 78.00640 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00722 78.00722 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00723 78.00722 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 @@ -20793,7 +20929,7 @@ Lambda passive -10.88000 11.62460 65.00471 3.01242 0.47399 0.25914 5.59200 -10.91000 11.96030 66.88195 3.09942 0.47399 0.25914 5.59200 -10.94000 12.29600 68.28987 3.16466 0.47399 0.25914 5.59200 - -10.94000 12.29600 69.22849 3.20816 0.61444 0.25914 5.59200 + -10.94000 12.29600 69.22849 3.20816 0.47399 0.25914 5.59200 -10.97000 12.63170 70.63641 3.27341 0.47399 0.25914 5.59200 -11.00000 12.96740 72.51365 3.36040 0.47399 0.25914 5.59200 -11.03000 13.30310 74.39088 3.44739 0.47399 0.25914 5.59200 @@ -20823,7 +20959,7 @@ Lambda passive -12.92000 9.10420 49.91235 2.44548 0.48860 0.26861 5.48234 -13.06000 10.53080 57.40021 2.83060 0.48860 0.26879 5.45070 -13.20000 11.95740 62.99308 3.11979 0.48860 0.26893 5.43009 - -13.20000 11.95740 66.71397 3.31275 0.26902 0.26902 5.41771 + -13.20000 11.95740 66.71397 3.31275 0.48860 0.26902 5.41771 -13.34000 13.38400 72.28902 3.60244 0.48860 0.26916 5.40115 -13.48000 14.81060 79.71835 3.98903 0.48860 0.26934 5.38252 -13.62000 16.23720 87.14911 4.37598 0.48860 0.26950 5.36725 @@ -20982,13 +21118,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P 78.00011 0.00000 78.00011 78.00011 502 100 P 78.00012 0.00000 78.00012 78.00012 502 100 P 78.00014 0.00000 78.00014 78.00014 502 100 P 78.00016 0.00000 78.00016 78.00016 502 100 P 78.00018 0.00000 78.00018 78.00018 502 100 P - 78.00019 0.00000 78.00019 78.00019 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00029 0.00000 78.00029 78.00029 502 100 P 78.00056 0.00000 78.00056 78.00056 502 100 P 78.00092 0.00000 78.00092 78.00092 502 100 P @@ -21000,50 +21136,50 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00530 0.00000 78.00530 78.00530 1 100 A 78.00640 0.00000 78.00640 78.00640 1 100 A - 78.00722 0.00000 78.00722 78.00722 1 100 A + 78.00722 0.00000 78.00723 78.00723 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 2.77319 67.39050 59.84232 5.07239 1 0 A 2.83844 67.68480 61.25025 5.19173 1 0 A 2.92543 67.97910 63.12748 5.35085 1 0 A 3.01242 68.27340 65.00471 5.50997 1 0 A 3.09942 68.56770 66.88195 5.66909 1 0 A 3.16466 68.86200 68.28987 5.78843 1 0 A - 3.20816 68.86200 69.22849 7.60667 1 0 A + 3.20816 68.86200 69.22849 5.86799 1 0 A 3.27341 69.15630 70.63641 5.98733 1 0 A 3.36040 69.45060 72.51365 6.14645 1 0 A 3.44739 69.74490 74.39088 6.30557 1 0 A 3.53439 70.03920 76.26811 6.46469 1 0 A 3.59963 70.33350 77.67604 6.58403 1 0 A 0.25078 70.33350 55.17823 10.04282 1 0 A - 0.83899 71.22621 55.32390 10.30489 110 0 1 - 1.00008 72.11892 55.78673 10.65432 110 0 1 - 1.22568 73.01163 56.44681 11.00374 110 0 1 - 1.51115 73.90434 57.22835 11.35317 110 0 1 - 1.76448 74.79705 57.86695 11.61524 110 0 1 - 1.93919 74.79705 58.31376 11.78995 110 0 1 - 2.24319 75.68976 59.00859 12.05202 110 0 1 - 2.68122 76.58247 59.96775 12.40145 110 0 1 - 3.16201 77.47518 60.95766 12.75087 110 0 1 - 3.68169 78.36789 61.97129 13.10030 110 0 1 - 4.14900 79.26060 62.74351 13.36237 110 0 1 - 8.03246 79.26060 39.79662 13.68219 110 0 1 - 6.85816 83.24160 35.96929 12.09524 110 0 1 - 5.23650 87.22260 30.90384 9.97930 110 0 1 - 3.40491 91.20360 25.87496 7.86337 110 0 1 - 1.82450 95.18460 20.87484 5.74743 110 0 1 - 0.80117 99.16560 17.13926 4.16048 110 0 1 - 16.00986 99.16560 28.95362 2.53144 220 55 2 + 0.84347 71.22621 55.32390 10.30489 110 0 1 + 1.00421 72.11892 55.78673 10.65432 110 0 1 + 1.22949 73.01163 56.44681 11.00374 110 0 1 + 1.51468 73.90434 57.22835 11.35317 110 0 1 + 1.76775 74.79705 57.86695 11.61524 110 0 1 + 1.94247 74.79705 58.31376 11.78995 110 0 1 + 2.24627 75.68976 59.00859 12.05202 110 0 1 + 2.68413 76.58247 59.96775 12.40145 110 0 1 + 3.16482 77.47518 60.95766 12.75087 110 0 1 + 3.68442 78.36789 61.97129 13.10030 110 0 1 + 4.15170 79.26060 62.74351 13.36237 110 0 1 + 8.03044 79.26060 39.79662 13.68219 110 0 1 + 6.85620 83.24160 35.96929 12.09524 110 0 1 + 5.23461 87.22260 30.90384 9.97930 110 0 1 + 3.40642 91.20360 25.87496 7.86337 110 0 1 + 1.83460 95.18460 20.87484 5.74743 110 0 1 + 0.81108 99.16560 17.13926 4.16048 110 0 1 + 16.17014 99.16560 28.95362 2.53144 220 56 2 1.67700 100.53900 34.74039 3.05421 1 0 A 2.06094 101.91240 42.36780 3.75124 1 0 A 2.44548 103.28580 49.91235 4.44827 1 0 A 2.83060 104.65920 57.40021 5.14530 1 0 A 3.11979 106.03260 62.99308 5.66807 1 0 A - 3.31275 106.03260 66.71397 3.31275 1 5 A + 3.31275 106.03260 66.71397 6.01658 1 0 A 3.60244 107.40600 72.28902 6.53936 1 0 A 3.98903 108.77940 79.71835 7.23639 1 0 A 4.37598 110.15280 87.14911 7.93342 1 0 A @@ -21051,22 +21187,22 @@ Status character 5.05378 112.89960 100.16855 9.15322 1 0 A 5.24756 112.89960 103.89346 9.50173 1 0 A 5.53829 114.27300 109.48565 10.02451 1 0 A - 6.42631 115.64640 116.94998 10.72154 110 0 1 - 8.31288 117.01980 124.42364 11.41857 110 0 1 - 10.13141 118.39320 131.90602 12.11559 110 0 1 - 11.71150 119.76660 137.52284 12.63837 110 0 1 - 12.06001 119.76660 141.26987 12.98688 110 0 1 - 13.58201 121.14000 146.89385 13.50965 110 9 1 - 15.22890 122.51340 154.39774 14.20668 110 10 1 - 16.83429 123.88680 161.90727 14.90371 110 10 1 - 18.40613 125.26020 169.42179 15.60074 110 11 1 - 19.77817 126.63360 175.06045 16.12352 110 11 1 - 20.12668 126.63360 178.82091 16.47203 110 11 1 - 21.48183 128.00700 184.46342 16.99480 110 12 1 - 23.00053 129.38040 191.98953 17.69183 110 12 1 - 25.52474 130.75380 199.51859 18.38886 110 13 1 - 28.60198 132.12720 207.05025 19.08589 110 14 1 - 31.59202 133.50060 212.70045 19.60866 110 15 1 + 6.45278 115.64640 116.94998 10.72154 110 0 1 + 8.34061 117.01980 124.42364 11.41857 110 0 1 + 10.16019 118.39320 131.90602 12.11559 110 0 1 + 11.74105 119.76660 137.52284 12.63837 110 0 1 + 12.08957 119.76660 141.26987 12.98688 110 0 1 + 13.61202 121.14000 146.89385 13.50965 110 9 1 + 15.25907 122.51340 154.39774 14.20668 110 10 1 + 16.86437 123.88680 161.90727 14.90371 110 10 1 + 18.43592 125.26020 169.42179 15.60074 110 11 1 + 19.80754 126.63360 175.06045 16.12352 110 11 1 + 20.15606 126.63360 178.82091 16.47203 110 11 1 + 21.51071 128.00700 184.46342 16.99480 110 12 1 + 23.02885 129.38040 191.98953 17.69183 110 12 1 + 25.52972 130.75380 199.51859 18.38886 110 13 1 + 28.60727 132.12720 207.05025 19.08589 110 14 1 + 31.59763 133.50060 212.70045 19.60866 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21081,9 +21217,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 0.956 'Grind' - -11.09 1.856 'Hydrobiaklei' - -12.00 2.174 'Basisveen' - -12.50 39.595 'Eerste zandlaag' + -11.09 1.859 'Hydrobiaklei' + -12.00 2.175 'Basisveen' + -12.50 39.653 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -21102,7 +21238,7 @@ Layer name -10.79 -0.37 'Grind' -11.09 -0.38 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.56 'Eerste zandlaag' + -12.50 -14.58 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21240,24 +21376,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.24500 8.00000 6.00000 18.33028 18.33028 - -10.35500 42.00000 13.00000 26.91060 26.91060 - -10.46500 4.00000 3.99300 35.49104 35.49104 - -10.57500 15.00000 1.00000 44.07160 44.07160 - -10.68500 28.00000 5.00000 52.65228 52.65228 - -10.74000 44.10000 45.00000 56.94266 56.94266 - -10.74500 17.00000 16.93000 57.33270 57.33270 - -10.75500 17.00000 48.00000 58.11278 58.11278 - -10.76500 13.00000 16.00000 58.89285 58.89285 - -10.77500 34.00000 8.00000 59.67293 59.67293 - -10.78500 54.00000 71.00000 60.45300 60.45300 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.24500 1.00000 1.00000 18.33028 18.33028 + -10.35500 1.00000 1.00000 26.91060 26.91060 + -10.46500 1.00000 1.00000 35.49104 35.49104 + -10.57500 1.00000 1.00000 44.07160 44.07160 + -10.68500 1.00000 1.00000 52.65228 52.65228 + -10.74000 1.00000 1.00000 56.94266 56.94266 + -10.74500 1.00000 1.00000 57.33270 57.33270 + -10.75500 1.00000 1.00000 58.11278 58.11278 + -10.76500 1.00000 1.00000 58.89285 58.89285 + -10.77500 1.00000 1.00000 59.67293 59.67293 + -10.78500 1.00000 1.00000 60.45300 60.45300 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.80500 70.84400 32.98700 61.78672 60.88677 -10.83500 70.84400 32.98700 63.74578 60.97756 -10.86500 70.84400 32.98700 65.80047 61.07278 @@ -21344,20 +21480,20 @@ Lambda passive -10.41000 78.00400 78.00400 78.00400 1.00000 1.00000 1.00000 -10.52000 78.00510 78.00510 78.00510 1.00000 1.00000 1.00000 -10.63000 78.00620 78.00620 78.00620 1.00000 1.00000 1.00000 - -10.74000 78.00730 78.00702 78.00703 1.00000 1.00000 1.00000 + -10.74000 78.00730 78.00702 78.00702 1.00000 1.00000 1.00000 -10.74000 78.00730 78.00732 78.00732 1.00000 1.00000 1.00000 -10.75000 78.00740 78.00740 78.00740 1.00000 1.00000 1.00000 -10.76000 78.00750 78.00750 78.00750 1.00000 1.00000 1.00000 -10.77000 78.00760 78.00760 78.00760 1.00000 1.00000 1.00000 -10.78000 78.00770 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 78.00780 78.00778 78.00778 1.00000 1.00000 1.00000 + -10.79000 78.00780 78.00777 78.00777 1.00000 1.00000 1.00000 -10.79000 11.10780 62.91163 2.91543 0.47399 0.25914 5.59200 -10.82000 11.67780 65.30221 3.02621 0.47399 0.25914 5.59200 -10.85000 12.24780 68.48964 3.17392 0.47399 0.25914 5.59200 -10.88000 12.81780 71.67708 3.32163 0.47399 0.25914 5.59200 -10.91000 13.38780 74.86452 3.46934 0.47399 0.25914 5.59200 -10.94000 13.95780 77.25510 3.58013 0.47399 0.25914 5.59200 - -10.94000 13.95780 78.52127 3.63880 0.47657 0.25914 5.59200 + -10.94000 13.95780 78.52127 3.63880 0.47399 0.25914 5.59200 -10.97000 14.29350 79.92919 3.70405 0.47399 0.25914 5.59200 -11.00000 14.62920 81.80642 3.79104 0.47399 0.25914 5.59200 -11.03000 14.96490 83.68366 3.87804 0.47399 0.25914 5.59200 @@ -21369,7 +21505,7 @@ Lambda passive -11.36300 17.10777 60.47908 1.74426 0.71240 0.10196 3.53518 -11.45400 17.59826 61.24830 1.98550 0.71240 0.11282 3.48036 -11.54500 18.08875 61.87825 2.16522 0.71240 0.12052 3.44416 - -11.54500 18.08875 62.31968 2.28465 0.80787 0.12545 3.42202 + -11.54500 18.08875 62.31968 2.28465 0.71240 0.12545 3.42202 -11.63600 18.57924 63.00700 2.46343 0.71240 0.13259 3.39126 -11.72700 19.06973 63.95705 2.70140 0.71240 0.14166 3.35385 -11.81800 19.56022 64.93885 2.93907 0.71240 0.15026 3.31994 @@ -21399,7 +21535,7 @@ Lambda passive -14.32000 25.03200 133.20351 6.76169 0.48860 0.27012 5.32133 -14.46000 26.45860 140.68864 7.14970 0.48860 0.27022 5.31731 -14.60000 27.88520 146.30742 7.44071 0.48860 0.27029 5.31475 - -14.60000 27.88520 150.05569 7.63471 0.32187 0.27033 5.31324 + -14.60000 27.88520 150.05569 7.63471 0.48860 0.27033 5.31324 -14.74000 29.31180 155.68140 7.92570 0.48860 0.27039 5.31122 -14.88000 30.73840 163.18735 8.31364 0.48860 0.27046 5.30891 -15.02000 32.16500 170.69870 8.70154 0.48860 0.27053 5.30697 @@ -21559,78 +21695,78 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00207 0.00000 78.00207 78.00207 1 0 A + 78.00207 0.00000 78.00207 78.00208 1 100 A 78.00290 0.00000 78.00290 78.00290 1 100 A 78.00400 0.00000 78.00400 78.00400 502 100 P 78.00510 0.00000 78.00510 78.00510 502 100 P 78.00620 0.00000 78.00620 78.00620 502 100 P - 78.00703 0.00000 78.00703 78.00703 502 100 P - 78.00732 0.00000 78.00732 78.00732 502 100 P + 78.00702 0.00000 78.00702 78.00703 502 100 P + 78.00732 0.00000 78.00732 78.00733 502 100 P 78.00740 0.00000 78.00740 78.00740 502 100 P 78.00750 0.00000 78.00750 78.00750 502 100 P 78.00760 0.00000 78.00760 78.00760 502 100 P 78.00770 0.00000 78.00770 78.00770 502 100 P - 78.00778 0.00000 78.00778 78.00778 502 100 P - 96.54358 0.00000 437.01614 37.04264 110 22 1 - 133.80054 0.00000 439.40672 37.24527 110 30 1 - 169.47927 0.00000 442.59416 37.51545 110 38 1 - 206.19525 0.00000 445.78159 37.78563 110 46 1 - 227.44804 0.00000 448.96903 38.05580 220 51 2 - 233.38321 0.00000 451.35961 38.25843 220 52 2 - 71.02483 66.90000 78.52127 6.69182 440 90 4 - 72.53128 67.19430 79.92919 6.77501 440 91 4 - 74.32446 67.48860 81.80642 6.93413 440 91 4 - 76.11133 67.78290 83.68366 7.09325 440 91 4 - 77.89306 68.07720 85.56089 7.25237 440 91 4 - 79.25469 68.37150 86.96881 7.37171 440 91 4 - 20.43161 68.37150 59.23397 11.22669 110 34 1 - 26.84183 69.26421 59.37847 11.48876 110 45 1 - 26.65169 70.15692 59.83148 11.83818 110 45 1 - 26.40588 71.04963 60.47908 12.18761 110 44 1 - 26.10909 71.94234 61.24830 12.53704 110 43 1 - 25.76439 72.83505 61.87825 12.79911 110 42 1 - 27.50620 72.83505 62.31968 14.71242 110 44 1 - 25.38114 73.72776 63.00700 13.23589 110 40 1 - 24.95851 74.62047 63.95705 13.58532 110 39 1 - 24.50197 75.51318 64.93885 13.93474 110 38 1 - 24.01539 76.40589 65.94522 14.28417 110 36 1 - 23.83593 77.29860 66.71247 14.54624 110 36 1 - 20.00044 77.29860 42.82863 14.93309 110 47 1 - 18.22492 81.27960 38.98760 13.34613 110 47 1 - 15.90507 85.26060 33.90521 11.23020 110 47 1 - 13.57272 89.24160 28.86089 9.11426 110 47 1 - 11.86993 93.22260 23.84677 6.99832 110 50 1 - 10.24303 97.20360 20.10155 5.41137 220 51 2 - 33.33970 97.20360 38.12381 3.34338 330 87 3 - 35.79129 98.57700 43.81974 3.86616 330 82 3 - 37.30043 99.95040 51.34525 4.56319 220 73 2 - 38.29290 101.32380 58.81333 5.26021 220 65 2 - 38.83000 102.69720 66.24782 5.95724 220 59 2 - 38.83653 104.07060 71.81256 6.48002 220 54 2 - 41.22113 104.07060 75.51980 6.82853 220 55 2 - 39.24526 105.44400 81.08031 7.35130 110 48 1 - 36.36426 106.81740 88.49771 8.04833 110 41 1 - 33.47785 108.19080 95.92278 8.74536 110 35 1 - 30.60834 109.56420 103.35777 9.44239 110 30 1 - 27.67980 110.93760 108.94075 9.96517 110 25 1 - 27.87675 110.93760 112.66638 10.31368 110 25 1 - 25.00515 112.31100 118.26016 10.83645 110 21 1 - 22.29214 113.68440 125.72706 11.53348 110 18 1 - 19.64046 115.05780 133.20351 12.23051 110 15 1 - 17.05134 116.43120 140.68864 12.92754 110 12 1 - 14.42750 117.80460 146.30742 13.45031 110 10 1 - 12.40455 117.80460 150.05569 9.09024 110 8 1 - 14.24925 119.17800 155.68140 14.32160 110 0 1 - 13.99641 120.55140 163.18735 15.01863 110 0 1 - 13.78508 121.92480 170.69870 15.71566 110 0 1 - 13.60731 123.29820 178.21477 16.41269 110 0 1 - 13.28081 124.67160 183.85446 16.93546 110 0 1 - 13.62933 124.67160 187.61553 17.28398 110 0 1 - 13.31972 126.04500 193.25886 17.80675 110 0 1 - 13.19508 127.41840 200.78592 18.50378 110 0 1 - 13.07669 128.79180 208.31578 19.20081 110 0 1 - 12.96007 130.16520 215.84810 19.89784 110 0 1 - 12.66641 131.53860 221.49871 20.42061 110 0 1 + 78.00777 0.00000 78.00777 78.00778 502 0 P + 96.55372 0.00000 437.01614 37.04264 110 22 1 + 133.81303 0.00000 439.40672 37.24527 110 30 1 + 169.49395 0.00000 442.59416 37.51545 110 38 1 + 206.21193 0.00000 445.78159 37.78563 110 46 1 + 227.44981 0.00000 448.96903 38.05580 220 51 2 + 233.38482 0.00000 451.35961 38.25843 220 52 2 + 71.14494 66.90000 78.52127 6.65567 440 91 4 + 72.53193 67.19430 79.92919 6.77501 440 91 4 + 74.32515 67.48860 81.80642 6.93413 440 91 4 + 76.11204 67.78290 83.68366 7.09325 440 91 4 + 77.89381 68.07720 85.56089 7.25237 440 91 4 + 79.25547 68.37150 86.96881 7.37171 440 91 4 + 20.43434 68.37150 59.23397 11.22669 110 34 1 + 26.88079 69.26421 59.37847 11.48876 110 45 1 + 26.68945 70.15692 59.83148 11.83818 110 45 1 + 26.44227 71.04963 60.47908 12.18761 110 44 1 + 26.14393 71.94234 61.24830 12.53704 110 43 1 + 25.79747 72.83505 61.87825 12.79911 110 42 1 + 25.80069 72.83505 62.31968 12.97382 110 41 1 + 25.41225 73.72776 63.00700 13.23589 110 40 1 + 24.98744 74.62047 63.95705 13.58532 110 39 1 + 24.52853 75.51318 64.93885 13.93474 110 38 1 + 24.03939 76.40589 65.94522 14.28417 110 36 1 + 23.84275 77.29860 66.71247 14.54624 110 36 1 + 19.99895 77.29860 42.82863 14.93309 110 47 1 + 18.22345 81.27960 38.98760 13.34613 110 47 1 + 15.90358 85.26060 33.90521 11.23020 110 47 1 + 13.57120 89.24160 28.86089 9.11426 110 47 1 + 11.87329 93.22260 23.84677 6.99832 110 50 1 + 10.24427 97.20360 20.10155 5.41137 220 51 2 + 33.34477 97.20360 38.12381 3.34338 330 87 3 + 35.79617 98.57700 43.81974 3.86616 330 82 3 + 37.30942 99.95040 51.34525 4.56319 220 73 2 + 38.30122 101.32380 58.81333 5.26021 220 65 2 + 38.83760 102.69720 66.24782 5.95724 220 59 2 + 38.84337 104.07060 71.81256 6.48002 220 54 2 + 39.90001 104.07060 75.51980 6.82853 220 53 2 + 39.25798 105.44400 81.08031 7.35130 110 48 1 + 36.37541 106.81740 88.49771 8.04833 110 41 1 + 33.48740 108.19080 95.92278 8.74536 110 35 1 + 30.61627 109.56420 103.35777 9.44239 110 30 1 + 27.68612 110.93760 108.94075 9.96517 110 25 1 + 27.88306 110.93760 112.66638 10.31368 110 25 1 + 25.00989 112.31100 118.26016 10.83645 110 21 1 + 22.29535 113.68440 125.72706 11.53348 110 18 1 + 19.64223 115.05780 133.20351 12.23051 110 15 1 + 17.05181 116.43120 140.68864 12.92754 110 12 1 + 14.42681 117.80460 146.30742 13.45031 110 10 1 + 14.69614 117.80460 150.05569 13.79883 110 10 1 + 14.21923 119.17800 155.68140 14.32160 110 0 1 + 13.96624 120.55140 163.18735 15.01863 110 0 1 + 13.75501 121.92480 170.69870 15.71566 110 0 1 + 13.57752 123.29820 178.21477 16.41269 110 0 1 + 13.25144 124.67160 183.85446 16.93546 110 0 1 + 13.59995 124.67160 187.61553 17.28398 110 0 1 + 13.29085 126.04500 193.25886 17.80675 110 0 1 + 13.16676 127.41840 200.78592 18.50378 110 0 1 + 13.04896 128.79180 208.31578 19.20081 110 0 1 + 12.93296 130.16520 215.84810 19.89784 110 0 1 + 12.63993 131.53860 221.49871 20.42061 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21644,10 +21780,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 38.337 'Grind' - -11.09 23.081 'Hydrobiaklei' + -10.79 38.340 'Grind' + -11.09 23.029 'Hydrobiaklei' -12.00 7.469 'Basisveen' - -12.50 83.968 'Eerste zandlaag' + -12.50 84.010 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -21664,9 +21800,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 14.84 'Grind' - -11.09 4.68 'Hydrobiaklei' + -11.09 4.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.87 'Eerste zandlaag' + -12.50 30.88 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21893,7 +22029,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=8 +IterationCount=9 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -21933,20 +22069,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 43.35 : Percentage mobilized resistance left - 40.08 : Percentage mobilized resistance right - 341.17 : Effective left - 475.18 : Effective right + 43.38 : Percentage mobilized resistance left + 40.10 : Percentage mobilized resistance right + 341.37 : Effective left + 475.38 : Effective right 1120.54 : Water pressure left 986.23 : Water pressure right 786.97 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -9369.37 : Max moment left --13318.95 : Max moment right --4335.79 : Max mobilized moment left --4523.43 : Max mobilized moment right - 112.45 : Vertical force left - 121.43 : Vertical force right +-13318.44 : Max moment right +-4338.35 : Max mobilized moment left +-4526.03 : Max mobilized moment right + 112.52 : Vertical force left + 121.50 : Vertical force right 46.3 : Max mobilized moment percentage left 34.0 : Max mobilized moment percentage right -2.43 : Level of single support @@ -21955,10 +22091,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --121.43 : Active force -112.45 : Passive force --121.43 : Plugged active force -112.45 : Plugged passive force +-121.50 : Active force +112.52 : Passive force +-121.50 : Plugged active force +112.52 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -21978,210 +22114,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 927.96533 - 0.00000 0.00000 921.29786 - 0.00000 0.00000 914.63038 - 0.00000 0.00000 907.96291 - 0.00000 0.00000 901.29543 - 0.00000 0.00000 894.62796 - 0.00000 0.00000 894.62796 - 0.00000 0.00000 887.96049 - 0.00000 0.00000 881.29301 - 0.00000 0.00000 874.62554 - 0.00000 0.00000 867.95807 - 0.00000 0.00000 861.29059 - 0.00000 0.00000 861.29059 - 0.00000 -0.00049 860.50618 - -0.00001 -0.00196 859.72177 - -0.00004 -0.00441 858.93737 - -0.00010 -0.00785 858.15296 - -0.00020 -0.01226 857.36855 - -0.00020 -0.01226 857.36855 - -0.00803 -0.14175 847.95564 - -0.03988 -0.41251 838.54273 - -0.11269 -0.82453 829.12983 - -0.24341 -1.37781 819.71697 - -0.44901 -2.07236 810.30415 - -0.44901 -2.07236 810.30415 - -0.68977 -2.75906 802.46018 - -1.00409 -3.54386 794.61629 - -1.40181 -4.42676 786.77255 - -1.89272 -5.40776 778.92899 - -2.48663 -6.48686 771.08566 - -2.48663 -6.48686 771.08566 - -3.19336 -7.66406 763.24264 - -4.02271 -8.93936 755.40001 - -4.98450 -10.31276 747.55791 - -6.08854 -11.78426 739.71645 - -7.34462 -13.35386 731.87575 - -7.34462 -13.35386 731.87575 - -8.55395 -14.78218 725.13347 - -9.88924 -16.28305 718.39199 - -11.35672 -17.85648 711.65144 - -12.96263 -19.50246 704.91195 - -14.71322 -21.22099 698.17368 - -14.71322 -21.22099 698.17368 - -17.26743 -23.61088 689.24365 - -20.10135 -26.12827 680.31644 - -23.22952 -28.77314 671.39256 - -26.66647 -31.54551 662.47254 - -30.42674 -34.44536 653.55688 - -30.42674 -34.44536 653.55688 - -30.82111 -34.74236 652.66557 - -31.21887 -35.04063 651.77431 - -31.62004 -35.34018 650.88311 - -32.02463 -35.64100 649.99196 - -32.43266 -35.94310 649.10086 - -32.43255 -35.94579 649.10086 - -33.83924 -36.92428 646.08402 - -35.28191 -37.80976 643.06782 - -36.75696 -38.60219 640.05228 - -38.26080 -39.30156 637.03743 - -39.79002 -39.92135 634.02330 - -39.79010 -39.92409 634.02330 - -40.99409 -40.33720 631.68123 - -42.21003 -40.71955 629.33962 - -43.43691 -41.06673 626.99849 - -44.67368 -41.37877 624.65785 - -45.91933 -41.66003 622.31772 - -45.91933 -41.65999 622.31772 - -46.75418 -41.82309 620.75792 - -47.59216 -41.97251 619.19836 - -48.43297 -42.10631 617.63903 - -49.27631 -42.22449 616.07995 - -50.12186 -42.32899 614.52112 - -50.12204 -42.32747 614.52112 - -54.43537 -43.94122 606.73083 - -58.91067 -45.56678 598.94739 - -63.54903 -47.20149 591.17139 - -68.35116 -48.84188 583.40341 - -73.31751 -50.48540 575.64404 - -73.31735 -50.48387 575.64404 - -78.44801 -52.12941 567.89389 - -83.74324 -53.77513 560.15361 - -89.20301 -55.42025 552.42390 - -94.82724 -57.06403 544.70545 - -100.61577 -58.70617 536.99895 - -100.61577 -58.70592 536.99895 - -106.56833 -60.34500 529.30509 - -112.68468 -61.98154 521.62466 - -118.96453 -63.61489 513.95844 - -125.40754 -65.24476 506.30722 - -132.01337 -66.87140 498.67181 - -132.01340 -66.87093 498.67181 - -141.53423 -69.13987 488.01029 - -151.37223 -71.40159 477.38370 - -161.52627 -73.65468 466.79457 - -171.99512 -75.89882 456.24539 - -182.77757 -78.13489 445.73867 - -182.77770 -78.13316 445.73867 - -192.95521 -78.44772 436.02273 - -203.17767 -78.84450 426.34786 - -213.46090 -79.38251 416.71626 - -223.85851 -80.87562 407.13013 - -234.51973 -83.08809 397.59167 - -234.51958 -83.08702 397.59167 - -245.44681 -84.96929 388.10310 - -256.59728 -86.52136 378.66678 - -267.92806 -87.74323 369.28513 - -279.39621 -88.63490 359.96055 - -290.95882 -89.19637 350.69545 - -290.95882 -89.19637 350.69545 - -304.32775 -89.65219 340.11727 - -317.76483 -90.10802 329.62479 - -331.27005 -90.56384 319.22178 - -344.84342 -91.01967 308.91207 - -358.48493 -91.47550 298.69946 - -358.48493 -91.47550 298.69946 - -372.19459 -91.93132 288.58775 - -385.97240 -92.38715 278.58084 - -399.81835 -92.84297 268.68262 - -413.73027 -93.25519 258.89699 - -427.70165 -93.66740 249.22784 - -427.70248 -93.66361 249.22784 - -441.73926 -94.11943 239.67910 - -455.84419 -94.57526 230.25473 - -470.01726 -95.03108 220.95873 - -484.25848 -95.48691 211.79508 - -498.56785 -95.94273 202.76778 - -498.56593 -95.92860 202.76778 - -512.94133 -96.38443 193.88088 - -527.38487 -96.84026 185.13843 - -541.80836 -95.52611 176.54444 - -555.80204 -91.29957 168.10291 - -569.04004 -85.73077 159.81784 - -569.04003 -85.73076 159.81784 - -569.21142 -85.65175 159.70808 - -569.38264 -85.57264 159.59835 - -569.55371 -85.49345 159.48865 - -569.72462 -85.41415 159.37898 - -569.89536 -85.33478 159.26933 - -569.89538 -85.27551 159.26933 - -573.10786 -83.80058 157.17565 - -576.26404 -82.31128 155.11595 - -579.36331 -80.80555 153.07468 - -582.40505 -79.28339 151.03633 - -585.38867 -77.74684 148.98535 - -585.38856 -77.68663 148.98535 - -594.41296 -72.69945 142.62700 - -602.83069 -67.56877 136.37649 - -610.62290 -62.27404 130.23523 - -617.76990 -56.81522 124.20464 - -624.25281 -51.21279 118.28612 - -624.25298 -51.20951 118.28612 - -627.23936 -48.33135 115.36930 - -630.05202 -45.41728 112.48092 - -632.68861 -42.46217 109.62111 - -635.14666 -39.46601 106.78999 - -637.42381 -36.43393 103.98767 - -637.42378 -36.43424 103.98767 - -640.50544 -31.28266 99.79274 - -643.11472 -26.04846 95.66462 - -645.24339 -20.71981 91.60355 - -646.88286 -15.29673 87.60974 - -648.02489 -9.79101 83.68342 - -648.02489 -9.79168 83.68342 - -648.66059 -4.16791 79.82477 - -648.78094 1.53851 76.03380 - -648.37772 7.33937 72.31045 - -647.44231 13.23468 68.65470 - -645.96650 19.21263 65.06649 - -645.96799 19.22388 65.06649 - -643.80208 24.15807 61.20119 - -641.12172 29.53207 57.41700 - -637.89692 34.86850 53.71351 - -634.15791 39.90819 50.09032 - -629.91680 44.90232 46.54703 - -629.92438 44.98628 46.54703 - -621.51442 74.86465 41.72027 - -609.02944 103.30388 37.04703 - -592.63668 130.72848 32.52328 - -572.47415 157.10983 28.14501 - -548.70997 182.11897 23.90819 - -548.70842 182.41545 23.90819 - -521.52488 205.51066 19.80784 - -491.27634 226.22940 15.83628 - -458.28498 244.71247 11.98541 - -422.89433 260.24947 8.24716 - -385.61321 271.54178 4.61341 - -385.56703 271.82620 4.61341 - -346.99556 278.41605 1.07516 - -307.90005 278.80196 -2.37750 - -269.21836 273.03034 -5.75402 - -231.66372 262.71237 -9.06385 - -195.81588 249.03051 -12.31643 - -195.83915 248.61996 -12.31643 - -162.13055 232.59926 -15.52122 - -130.80735 214.52140 -18.68606 - -102.16267 194.34114 -21.81798 - -76.48827 172.09447 -24.92402 - -54.06966 147.84558 -28.01120 - -54.06560 147.74836 -28.01120 - -35.19853 121.47593 -31.08611 - -20.13212 93.49401 -34.15243 - -9.09453 63.91949 -37.21287 - -2.30947 32.74189 -40.27010 - 0.00013 -0.00144 -43.32683 + 0.00000 0.00000 928.91504 + 0.00000 0.00000 922.24191 + 0.00000 0.00000 915.56877 + 0.00000 0.00000 908.89563 + 0.00000 0.00000 902.22250 + 0.00000 0.00000 895.54936 + 0.00000 0.00000 895.54936 + 0.00000 0.00000 888.87623 + 0.00000 0.00000 882.20309 + 0.00000 0.00000 875.52996 + 0.00000 0.00000 868.85682 + 0.00000 0.00000 862.18368 + 0.00000 0.00000 862.18368 + 0.00000 -0.00049 861.39861 + -0.00001 -0.00196 860.61353 + -0.00004 -0.00441 859.82846 + -0.00010 -0.00785 859.04339 + -0.00020 -0.01226 858.25831 + -0.00020 -0.01226 858.25831 + -0.00803 -0.14175 848.83741 + -0.03988 -0.41251 839.41650 + -0.11269 -0.82453 829.99562 + -0.24341 -1.37781 820.57476 + -0.44901 -2.07236 811.15394 + -0.44901 -2.07236 811.15394 + -0.68977 -2.75906 803.30331 + -1.00409 -3.54386 795.45277 + -1.40181 -4.42676 787.60236 + -1.89272 -5.40776 779.75214 + -2.48663 -6.48686 771.90216 + -2.48663 -6.48686 771.90216 + -3.19336 -7.66406 764.05247 + -4.02271 -8.93936 756.20318 + -4.98450 -10.31276 748.35442 + -6.08854 -11.78426 740.50629 + -7.34462 -13.35386 732.65894 + -7.34462 -13.35386 732.65894 + -8.55395 -14.78218 725.91093 + -9.88924 -16.28305 719.16372 + -11.35672 -17.85648 712.41744 + -12.96263 -19.50246 705.67223 + -14.71322 -21.22099 698.92822 + -14.71322 -21.22099 698.92822 + -17.26743 -23.61088 689.99060 + -20.10135 -26.12827 681.05580 + -23.22952 -28.77314 672.12433 + -26.66647 -31.54551 663.19671 + -30.42674 -34.44536 654.27345 + -30.42674 -34.44536 654.27345 + -30.82111 -34.74236 653.38139 + -31.21887 -35.04063 652.48937 + -31.62004 -35.34018 651.59741 + -32.02463 -35.64100 650.70550 + -32.43266 -35.94310 649.81364 + -32.43255 -35.94580 649.81364 + -33.83924 -36.92429 646.79423 + -35.28191 -37.80976 643.77546 + -36.75696 -38.60219 640.75735 + -38.26080 -39.30157 637.73993 + -39.79002 -39.92135 634.72323 + -39.79010 -39.92410 634.72323 + -40.99409 -40.33721 632.37916 + -42.21003 -40.71955 630.03555 + -43.43691 -41.06674 627.69242 + -44.67368 -41.37877 625.34978 + -45.91933 -41.66004 623.00766 + -45.91933 -41.65999 623.00766 + -46.75418 -41.82309 621.44652 + -47.59216 -41.97252 619.88563 + -48.43297 -42.10632 618.32497 + -49.27631 -42.22449 616.76456 + -50.12186 -42.32900 615.20440 + -50.12204 -42.32747 615.20440 + -54.43537 -43.94123 607.40744 + -58.91068 -45.56678 599.61734 + -63.54903 -47.20149 591.83468 + -68.35117 -48.84189 584.06004 + -73.31751 -50.48541 576.29401 + -73.31735 -50.48387 576.29401 + -78.44801 -52.12941 568.53719 + -83.74324 -53.77513 560.79026 + -89.20302 -55.42025 553.05389 + -94.82725 -57.06404 545.32878 + -100.61577 -58.70618 537.61561 + -100.61577 -58.70592 537.61561 + -106.56834 -60.34500 529.91509 + -112.68469 -61.98154 522.22800 + -118.96454 -63.61489 514.55512 + -125.40755 -65.24476 506.89724 + -132.01338 -66.87140 499.25517 + -132.01341 -66.87093 499.25517 + -141.53424 -69.13988 488.58432 + -151.37224 -71.40159 477.94841 + -161.52628 -73.65469 467.34995 + -171.99513 -75.89882 456.79145 + -182.77758 -78.13489 446.27540 + -182.77771 -78.13315 446.27540 + -192.95522 -78.44771 436.55080 + -203.17768 -78.84450 426.86727 + -213.46090 -79.38251 417.22701 + -223.85852 -80.87562 407.63223 + -234.51974 -83.08809 398.08510 + -234.51958 -83.08701 398.08510 + -245.44682 -84.96928 388.58787 + -256.59729 -86.52135 379.14290 + -267.92806 -87.74322 369.75259 + -279.39622 -88.63489 360.41935 + -290.95883 -89.19636 351.14559 + -290.95883 -89.19636 351.14559 + -304.32776 -89.65219 340.55745 + -317.76483 -90.10801 330.05501 + -331.27005 -90.56384 319.64205 + -344.84342 -91.01966 309.32238 + -358.48493 -91.47549 299.09981 + -358.48493 -91.47549 299.09981 + -372.19459 -91.93132 288.97814 + -385.97239 -92.38714 278.96127 + -399.81835 -92.84297 269.05309 + -413.73244 -93.29879 259.25750 + -427.71468 -93.75462 249.57840 + -427.71551 -93.75081 249.57840 + -441.76533 -94.20664 240.01971 + -455.88330 -94.66246 230.58539 + -470.06941 -95.11829 221.27945 + -484.32367 -95.57412 212.10589 + -498.64607 -96.02994 203.06868 + -498.64415 -96.01579 203.06868 + -513.03258 -96.47161 194.17190 + -527.48916 -96.92744 185.41960 + -541.92568 -95.61329 176.81578 + -555.93240 -91.38675 168.36446 + -569.18343 -85.81796 160.06963 + -569.18343 -85.81795 160.06963 + -569.35498 -85.73893 159.95974 + -569.52638 -85.65983 159.84988 + -569.69762 -85.58063 159.74005 + -569.86870 -85.50134 159.63025 + -570.03963 -85.42196 159.52048 + -570.03964 -85.36267 159.52048 + -573.25544 -83.88774 157.42431 + -576.41493 -82.39844 155.36214 + -579.51751 -80.89271 153.31842 + -582.56257 -79.37055 151.27761 + -585.54949 -77.83400 149.22416 + -585.54939 -77.77378 149.22416 + -594.58424 -72.78660 142.85805 + -603.01243 -67.65592 136.59982 + -610.81510 -62.36119 130.45087 + -617.97255 -56.90237 124.41262 + -624.46592 -51.29994 118.48649 + -624.46599 -51.30072 118.48649 + -627.45784 -48.42257 115.56587 + -630.27598 -45.50850 112.67371 + -632.91804 -42.55338 109.81013 + -635.38156 -39.55722 106.97524 + -637.66419 -36.52514 104.16917 + -637.66417 -36.52557 104.16917 + -640.75413 -31.37399 99.96856 + -643.37173 -26.13978 95.83480 + -645.50871 -20.81114 91.76811 + -647.15649 -15.38806 87.76871 + -648.30683 -9.88234 83.83683 + -648.30683 -9.88300 83.83683 + -648.95084 -4.25923 79.97265 + -649.07950 1.44719 76.17617 + -648.68458 7.24805 72.44735 + -647.75749 13.14336 68.78615 + -646.28999 19.12131 65.19254 + -646.29148 19.13257 65.19254 + -644.13470 24.06677 61.32133 + -641.46347 29.44076 57.53128 + -638.24773 34.77932 53.82198 + -634.51743 39.82318 50.19302 + -630.28461 44.82167 46.64400 + -630.29222 44.90602 46.64400 + -621.89207 74.80438 41.80929 + -609.41422 103.26208 37.12820 + -593.02593 130.70748 32.59670 + -572.86472 157.11149 28.21077 + -549.09849 182.14892 23.96639 + -549.09694 182.44586 23.96639 + -521.90680 205.57369 19.85857 + -491.64744 226.32009 15.87964 + -458.64173 244.82595 12.02150 + -423.23345 260.39004 8.27605 + -385.93051 271.71135 4.63519 + -385.88425 271.99620 4.63519 + -347.28750 278.60554 1.08991 + -308.16465 279.00155 -2.36971 + -269.45485 273.23071 -5.75312 + -231.87265 262.90430 -9.06978 + -195.99877 249.21101 -12.32915 + -196.02209 248.79954 -12.32915 + -162.28409 232.82110 -15.54067 + -130.93089 214.72756 -18.71221 + -102.25866 194.52781 -21.85080 + -76.55971 172.25791 -24.96348 + -54.12005 147.98211 -28.05729 + -54.11599 147.88465 -28.05729 + -35.23170 121.58681 -31.13882 + -20.15137 93.58140 -34.21175 + -9.10336 63.98061 -37.27878 + -2.31174 32.77389 -40.34262 + 0.00013 -0.00144 -43.40594 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -22537,7 +22673,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -22549,7 +22685,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -22566,18 +22702,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -22609,13 +22745,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -22757,7 +22893,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 502 100 P 12.02358 6.37650 12.02358 4.45953 502 100 P 12.00402 7.35750 12.00402 4.48227 502 100 P - 11.99626 7.35750 11.99626 4.53344 502 100 P + 11.99626 7.35750 11.99626 4.49744 502 100 P 11.99100 8.33850 11.99100 4.52018 502 100 P 11.99268 9.31950 11.99268 4.55051 502 100 P 12.00279 10.30050 12.00279 4.58084 502 100 P @@ -22769,7 +22905,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 502 100 P 12.16836 16.18650 12.16836 4.76281 502 100 P 12.19689 17.16750 12.19689 4.78556 502 100 P - 12.22063 17.16750 12.22063 6.53447 502 100 P + 12.22063 17.16750 12.22063 4.80376 502 100 P 12.26382 18.54090 12.26382 4.83560 502 100 P 12.32401 19.91430 12.32401 4.87806 502 100 P 12.38688 21.28770 12.38688 4.92053 502 100 P @@ -22797,17 +22933,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 502 0 P 0.00000 72.45367 0.00000 0.00000 502 0 P 0.00000 73.92026 0.00000 0.00000 502 0 P - 0.58341 75.38686 0.58341 0.05935 502 100 P - 0.00000 76.85345 0.00000 0.00000 502 100 P - 0.00000 76.85345 0.00000 0.00000 502 100 P - 0.00000 78.32005 0.00000 0.00000 502 100 P - 0.00000 79.78664 0.00000 0.00000 502 100 P - 0.00000 81.25324 0.00000 0.00000 502 100 P - 0.00000 82.71983 0.00000 0.00000 502 100 P + 0.00000 75.38686 0.00000 0.00000 502 0 P + 0.00000 76.85345 0.00000 0.00000 502 0 P + 0.00000 76.85345 0.00000 0.00000 502 0 P + 0.00000 78.32005 0.00000 0.00000 502 0 P + 0.00000 79.78664 0.00000 0.00000 502 0 P + 0.00000 81.25324 0.00000 0.00000 502 0 P + 0.00000 82.71983 0.00000 0.00000 502 0 P 0.00000 84.18642 0.00000 0.00000 502 0 P 0.00000 84.18642 0.00000 0.00000 502 0 P 0.00000 85.65302 0.00000 0.00000 502 0 P - 0.00000 87.11961 0.00000 0.00000 502 100 P + 0.00000 87.11961 0.00000 0.00000 502 0 P 23.67856 88.58621 23.67856 6.84433 502 100 P 38.96179 90.05281 38.96179 7.59822 502 100 P 41.63516 91.51940 41.63516 8.16363 502 100 P @@ -22829,13 +22965,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 502 100 P 49.22299 98.19020 49.22299 12.53839 502 100 P 50.24884 99.36740 50.24884 12.89776 502 100 P - 50.76181 99.36740 50.76181 11.01914 502 100 P + 50.76181 99.36740 50.76181 13.07745 502 100 P 51.27482 99.95600 51.27482 13.25714 502 100 P 51.95886 100.54460 51.95886 13.49673 502 100 P 52.64294 101.13320 52.64294 13.73631 502 100 P 53.32706 101.72180 53.32706 13.97589 502 100 P 53.84017 102.31040 53.84017 14.15558 502 100 P - 54.27062 102.31040 54.27062 32.00225 502 100 P + 54.27062 102.31040 54.27062 14.30632 502 100 P 55.04889 103.20311 55.04889 14.57885 502 100 P 56.08662 104.09582 56.08662 14.94222 502 100 P 57.12440 104.98853 57.12440 15.30559 502 100 P @@ -22850,23 +22986,23 @@ Status character 45.47794 111.23750 45.47794 19.35669 502 100 P 49.30396 109.21850 49.30396 21.21667 502 100 P 54.39837 107.19950 54.39837 23.69665 502 100 P - 57.73973 105.18050 59.48446 26.17662 440 97 4 - 59.55635 103.16150 64.56233 28.65660 440 92 4 - 60.38084 101.14250 68.36569 30.51658 330 88 3 - 225.67342 101.14250 230.63240 21.42815 440 98 4 - 213.51664 102.51590 222.85744 21.99572 440 96 4 - 205.88650 103.88930 221.96585 22.75248 440 93 4 - 199.90185 105.26270 224.85557 23.50924 330 89 3 - 191.86027 106.63610 229.29925 24.26600 330 84 3 - 181.06515 108.00950 233.16649 24.83357 220 78 2 - 181.96464 108.00950 235.93061 25.21195 220 77 2 - 164.71213 109.38290 240.27129 25.77952 220 69 2 - 148.77950 110.75630 246.29566 26.53628 220 60 2 - 133.64699 112.12970 252.52350 27.29304 220 53 2 - 107.56542 113.50310 258.89457 28.04980 110 42 1 - 73.77184 114.87650 263.74034 28.61737 110 28 1 - 74.15022 114.87650 266.99955 28.99575 110 28 1 - 41.09893 116.24990 271.92333 29.56332 110 15 1 + 57.78236 105.18050 59.48446 26.17662 440 97 4 + 59.59692 103.16150 64.56233 28.65660 440 92 4 + 60.42748 101.14250 68.36569 30.51658 330 88 3 + 225.82148 101.14250 230.63240 21.42815 440 98 4 + 213.65406 102.51590 222.85744 21.99572 440 96 4 + 206.01303 103.88930 221.96585 22.75248 440 93 4 + 200.07242 105.26270 224.85557 23.50924 330 89 3 + 192.01339 106.63610 229.29925 24.26600 330 84 3 + 181.31621 108.00950 233.16649 24.83357 220 78 2 + 182.21570 108.00950 235.93061 25.21195 220 77 2 + 164.92719 109.38290 240.27129 25.77952 220 69 2 + 148.95945 110.75630 246.29566 26.53628 220 60 2 + 133.79271 112.12970 252.52350 27.29304 220 53 2 + 107.80668 113.50310 258.89457 28.04980 110 42 1 + 73.94479 114.87650 263.74034 28.61737 110 28 1 + 74.32317 114.87650 266.99955 28.99575 110 28 1 + 41.20439 116.24990 271.92333 29.56332 110 15 1 17.40371 117.62330 278.53639 30.32008 1 0 A 17.84110 118.99670 285.19596 31.07684 1 0 A 18.27832 120.37010 291.89239 31.83360 1 0 A @@ -22900,10 +23036,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' + -7.00 12.903 'Wadzand' -10.00 105.974 'Hydrobiaklei' - -12.00 27.393 'Basisveen' - -12.50 286.593 'Eerste zandlaag' + -12.00 27.403 'Basisveen' + -12.50 286.869 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22923,10 +23059,10 @@ Layer name -3.00 -1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -1.71 'Oude Zeeklei' - -7.00 -3.35 'Wadzand' + -7.00 -3.33 'Wadzand' -10.00 -19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -95.21 'Eerste zandlaag' + -12.50 -95.30 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23175,7 +23311,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -23187,7 +23323,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -23395,7 +23531,7 @@ Status character 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.15974 106.05850 162.45605 17.72174 1 0 A + 10.15974 106.05850 162.45605 17.68542 1 0 A 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A @@ -23403,22 +23539,22 @@ Status character 12.12378 112.92550 192.70971 21.09083 1 0 A 12.34176 112.92550 196.12085 21.46921 1 0 A 12.66867 114.29890 201.24614 22.03678 1 0 A - 44.22291 115.67230 208.09120 22.79354 110 21 1 - 77.37568 117.04570 214.94675 23.55030 110 36 1 - 110.04524 118.41910 221.81023 24.30706 110 50 1 - 126.19641 119.79250 226.96177 24.87463 220 56 2 - 128.09212 119.79250 230.39786 26.99293 220 56 2 - 142.65400 121.16590 235.55418 25.82058 220 61 2 - 158.24444 122.53930 242.43233 26.57734 220 65 2 - 173.56181 123.91270 249.31352 27.33410 220 70 2 - 188.63782 125.28610 256.19718 28.09086 220 74 2 - 202.92886 126.65950 261.36123 28.65843 220 78 2 - 204.07820 126.65950 264.80452 29.03681 220 77 2 - 217.48715 128.03290 269.97025 29.60438 330 81 3 - 229.26321 129.40630 276.85902 30.36113 330 83 3 - 241.11091 130.77970 283.74896 31.11789 330 85 3 - 253.03677 132.15310 290.63991 31.87465 330 87 3 - 264.24180 133.52650 295.80866 32.44222 330 89 3 + 44.18423 115.67230 208.09120 22.79354 110 21 1 + 77.40313 117.04570 214.94675 23.55030 110 36 1 + 110.13833 118.41910 221.81023 24.30706 110 50 1 + 126.26668 119.79250 226.96177 24.87463 220 56 2 + 127.39011 119.79250 230.39786 25.25301 220 55 2 + 142.75227 121.16590 235.55418 25.82058 220 61 2 + 158.37017 122.53930 242.43233 26.57734 220 65 2 + 173.71450 123.91270 249.31352 27.33410 220 70 2 + 188.81700 125.28610 256.19718 28.09086 220 74 2 + 203.13411 126.65950 261.36123 28.65843 220 78 2 + 204.28345 126.65950 264.80452 29.03681 220 77 2 + 217.64496 128.03290 269.97025 29.60438 330 81 3 + 229.44086 129.40630 276.85902 30.36113 330 83 3 + 241.30869 130.77970 283.74896 31.11789 330 85 3 + 253.25497 132.15310 290.63991 31.87465 330 87 3 + 264.48074 133.52650 295.80866 32.44222 330 89 3 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23438,7 +23574,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 338.482 'Eerste zandlaag' + -12.50 338.678 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -23460,7 +23596,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 112.45 'Eerste zandlaag' + -12.50 112.52 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23700,8 +23836,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 384.47363 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.64185 10000000.000 1 1 1 'Dek' + -10.19000 384.48981 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.63807 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -23763,9 +23899,9 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 31.41 : Percentage mobilized resistance left - 19.53 : Percentage mobilized resistance right - 171.88 : Effective left - 111.93 : Effective right + 19.54 : Percentage mobilized resistance right + 171.91 : Effective left + 111.99 : Effective right 545.72 : Water pressure left 540.51 : Water pressure right 547.27 : Max effective resistance left @@ -23774,8 +23910,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 36.96 : Vertical force left - 16.04 : Vertical force right + 36.98 : Vertical force left + 16.06 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -23784,17 +23920,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --16.04 : Active force -36.96 : Passive force --16.04 : Plugged active force -36.96 : Plugged passive force +-16.06 : Active force +36.98 : Passive force +-16.06 : Plugged active force +36.98 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --79.08 : Resulting Vertical Force Unplugged --79.08 : Resulting Vertical Force Plugged +-79.07 : Resulting Vertical Force Unplugged +-79.07 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -23807,210 +23943,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.63836 - 0.12561 0.00000 -58.38220 - 0.25122 0.00000 -57.12605 - 0.37683 0.00000 -55.86992 - 0.50244 0.00000 -54.61383 - 0.62806 0.00000 -53.35780 - 0.62806 0.00000 -53.35780 - 0.75364 0.00000 -52.10183 - 0.87921 0.00000 -50.84593 - 1.00479 0.00000 -49.59013 - 1.13037 0.00000 -48.33443 - 1.25595 0.00000 -47.07884 - 1.25595 0.00000 -47.07884 - 1.42329 0.00000 -45.40493 - 1.59062 0.00000 -43.73127 - 1.75795 0.00000 -42.05790 - 1.92529 0.00000 -40.38486 - 2.09262 0.00000 -38.71216 - 2.09262 0.00000 -38.71216 - 2.23192 0.00000 -37.31853 - 2.37123 0.00000 -35.92519 - 2.51053 0.00000 -34.53214 - 2.64983 0.00000 -33.13941 - 2.78913 0.00000 -31.74701 - 2.78913 0.00000 -31.74701 - 2.92826 0.00000 -30.35496 - 3.06739 0.00000 -28.96329 - 3.20652 0.00000 -27.57200 - 3.34564 0.00000 -26.18111 - 3.48477 0.00000 -24.79065 - 3.48477 0.00000 -24.79065 - 3.60425 0.00000 -23.59520 - 3.72372 0.00000 -22.40008 - 3.84320 0.00000 -21.20532 - 3.96267 0.00000 -20.01091 - 4.08215 0.00000 -18.81687 - 4.08215 439.90000 -18.81687 - 54.38540 439.90000 -17.23603 - 104.68866 439.90000 -15.66409 - 154.99192 439.90000 -14.10930 - 205.29517 439.90000 -12.57988 - 255.59843 439.90000 -11.08407 - 255.59969 439.88459 -11.08407 - 290.88772 439.88459 -10.05888 - 326.17575 439.88459 -9.05714 - 361.46377 439.88459 -8.08171 - 396.75180 439.88459 -7.13541 - 432.03983 439.88459 -6.22110 - 432.03909 -83.76380 -6.22110 - 430.38571 -83.76380 -5.99785 - 428.73233 -83.76380 -5.77676 - 427.07894 -83.76380 -5.55784 - 425.42556 -83.76380 -5.34106 - 423.77218 -83.76380 -5.12643 - 423.77201 -83.76231 -5.12643 - 415.48964 -83.76231 -4.08515 - 407.20728 -83.76231 -3.09622 - 398.92492 -83.76231 -2.15858 - 390.64255 -83.76231 -1.27120 - 382.36019 -83.76231 -0.43303 - 382.36034 -83.76089 -0.43303 - 374.05404 -83.76089 0.35697 - 365.74773 -83.76089 1.09985 - 357.44143 -83.76089 1.79665 - 349.13512 -83.76089 2.44842 - 340.82882 -83.76089 3.05620 - 340.82882 -83.76063 3.05620 - 332.50107 -83.76063 3.62105 - 324.17333 -83.76063 4.14401 - 315.84558 -83.76063 4.62613 - 307.51783 -83.76063 5.06846 - 299.19009 -83.76063 5.47205 - 299.19006 -83.76014 5.47205 - 287.50021 -83.76014 5.97399 - 275.81036 -83.76014 6.40493 - 264.12052 -83.76014 6.76778 - 252.43067 -83.76014 7.06540 - 240.74082 -83.76014 7.30069 - 240.74072 -83.75851 7.30069 - 229.85930 -83.75851 7.46589 - 218.97789 -83.75851 7.58215 - 208.09648 -83.75851 7.65178 - 197.21507 -83.75851 7.67711 - 186.33366 -83.75851 7.66045 - 186.33378 -83.75865 7.66045 - 175.43251 -83.75865 7.60412 - 164.53125 -83.75865 7.51044 - 153.62999 -83.75865 7.38173 - 142.72872 -83.75865 7.22031 - 131.82746 -83.75865 7.02850 - 131.82746 -83.75867 7.02850 - 119.27401 -83.75867 6.77336 - 106.72057 -83.75867 6.48465 - 94.16712 -83.75867 6.16588 - 81.61368 -83.75867 5.82059 - 69.06024 -83.75867 5.45232 - 69.06024 -83.75867 5.45232 - 56.49707 -83.75867 5.06461 - 43.93390 -83.75867 4.66099 - 31.37074 -83.75867 4.24501 - 18.80757 -83.75867 3.82018 - 6.24441 -83.75867 3.39006 - 6.24335 -83.75366 3.39006 - -6.31995 -83.75366 2.95819 - -18.88325 -83.75366 2.52809 - -31.44654 -83.75366 2.10331 - -44.00984 -83.75366 1.68738 - -56.57314 -83.75366 1.28385 - -56.57106 -83.73687 1.28385 - -69.12388 -83.73687 0.89624 - -81.67670 -83.73687 0.52810 - -94.22953 -83.73687 0.18296 - -106.78235 -83.73687 -0.13565 - -119.33517 -83.73687 -0.42419 - -119.33516 -83.73710 -0.42419 - -119.50294 -83.65832 -0.42783 - -119.67047 -83.50232 -0.43147 - -119.83768 -83.34632 -0.43510 - -120.00458 -83.19032 -0.43872 - -120.17116 -83.03431 -0.44233 - -120.17116 -83.03431 -0.44233 - -120.33744 -82.87831 -0.44594 - -120.50340 -82.72231 -0.44955 - -120.66904 -82.56631 -0.45315 - -120.83438 -82.41031 -0.45674 - -120.99941 -82.25431 -0.46032 - -120.99942 -82.25408 -0.46032 - -123.93314 -80.86410 -0.52382 - -126.85018 -80.86410 -0.58528 - -129.76723 -80.86409 -0.64468 - -132.68427 -80.86408 -0.70196 - -135.60131 -80.86407 -0.75707 - -135.60151 68.06966 -0.75707 - -129.48485 68.06968 -0.88529 - -123.36818 68.06969 -1.00030 - -117.25152 68.06971 -1.10272 - -111.13485 68.06973 -1.19317 - -105.01818 68.06975 -1.27229 - -105.01818 68.06954 -1.27229 - -103.65812 68.07003 -1.28839 - -102.29805 68.07004 -1.30397 - -100.93799 68.07004 -1.31904 - -99.57793 68.07005 -1.33359 - -98.21786 68.06956 -1.34765 - -98.21786 68.06956 -1.34765 - -97.53775 68.06956 -1.35449 - -96.85763 68.06956 -1.36121 - -96.17751 68.06956 -1.36781 - -95.49739 68.06956 -1.37428 - -94.81727 68.06957 -1.38064 - -94.81692 68.06144 -1.38064 - -90.81266 65.38065 -1.41630 - -86.98742 62.12564 -1.44784 - -83.36983 58.49266 -1.47543 - -79.97790 54.61382 -1.49922 - -76.82462 50.54700 -1.51939 - -76.82406 50.52684 -1.51939 - -72.29096 49.10106 -1.54340 - -67.88981 47.65509 -1.55987 - -63.61723 46.27608 -1.56924 - -59.46699 44.96676 -1.57196 - -55.43275 43.72570 -1.56848 - -55.43293 43.72655 -1.56848 - -51.51050 42.48849 -1.55923 - -47.69271 41.40210 -1.54461 - -43.97024 40.39388 -1.52500 - -40.33589 39.46537 -1.50080 - -36.78295 38.59877 -1.47239 - -36.78295 38.59700 -1.47239 - -32.94852 38.04484 -1.43677 - -29.16706 37.53895 -1.39700 - -25.43404 37.07229 -1.35355 - -21.74693 36.61445 -1.30689 - -18.10586 36.15396 -1.25749 - -18.10477 36.14598 -1.25749 - -13.12734 34.45882 -1.18469 - -8.53543 30.90183 -1.10867 - -4.49144 26.81479 -1.03042 - -1.01724 22.76907 -0.95094 - 1.89289 18.74200 -0.87121 - 1.89179 18.72507 -0.87121 - 4.21956 14.53734 -0.79211 - 5.98377 10.67698 -0.71406 - 7.23115 7.15508 -0.63738 - 8.00944 3.97608 -0.56236 - 8.36851 1.17853 -0.48935 - 8.36625 1.18437 -0.48935 - 8.36523 -1.14898 -0.41850 - 8.07042 -3.01162 -0.34972 - 7.54789 -4.40290 -0.28288 - 6.86329 -5.32758 -0.21787 - 6.08137 -5.79591 -0.15456 - 6.08154 -5.79377 -0.15456 - 5.26980 -5.83287 -0.09278 - 4.45172 -5.84420 -0.03230 - 3.64235 -5.70896 0.02708 - 2.86202 -5.42977 0.08556 - 2.13073 -5.00855 0.14333 - 2.13078 -5.00808 0.14333 - 1.46768 -4.44611 0.20059 - 0.89307 -3.74407 0.25750 - 0.42984 -2.83140 0.31416 - 0.11589 -1.59839 0.37068 - 0.00001 0.00008 0.42717 + 0.00000 0.00000 -59.63952 + 0.12562 0.00000 -58.38331 + 0.25123 0.00000 -57.12711 + 0.37685 0.00000 -55.87093 + 0.50246 0.00000 -54.61480 + 0.62808 0.00000 -53.35871 + 0.62808 0.00000 -53.35871 + 0.75366 0.00000 -52.10270 + 0.87925 0.00000 -50.84675 + 1.00483 0.00000 -49.59090 + 1.13042 0.00000 -48.33515 + 1.25600 0.00000 -47.07951 + 1.25600 0.00000 -47.07951 + 1.42334 0.00000 -45.40554 + 1.59068 0.00000 -43.73182 + 1.75802 0.00000 -42.05838 + 1.92536 0.00000 -40.38527 + 2.09270 0.00000 -38.71251 + 2.09270 0.00000 -38.71251 + 2.23201 0.00000 -37.31883 + 2.37132 0.00000 -35.92543 + 2.51063 0.00000 -34.53233 + 2.64993 0.00000 -33.13954 + 2.78924 0.00000 -31.74709 + 2.78924 0.00000 -31.74709 + 2.92838 0.00000 -30.35499 + 3.06751 0.00000 -28.96326 + 3.20664 0.00000 -27.57192 + 3.34577 0.00000 -26.18098 + 3.48491 0.00000 -24.79046 + 3.48491 0.00000 -24.79046 + 3.60439 0.00000 -23.59496 + 3.72387 0.00000 -22.39980 + 3.84335 0.00000 -21.20499 + 3.96283 0.00000 -20.01054 + 4.08231 0.00000 -18.81645 + 4.08231 439.90000 -18.81645 + 54.38557 439.90000 -17.23555 + 104.68883 439.90000 -15.66356 + 154.99209 439.90000 -14.10870 + 205.29535 439.90000 -12.57922 + 255.59862 439.90000 -11.08335 + 255.59988 439.88457 -11.08335 + 290.88791 439.88457 -10.05812 + 326.17594 439.88457 -9.05634 + 361.46397 439.88457 -8.08085 + 396.75200 439.88457 -7.13452 + 432.04003 439.88457 -6.22017 + 432.03930 -83.76004 -6.22017 + 430.38599 -83.76004 -5.99690 + 428.73268 -83.76004 -5.77580 + 427.07938 -83.76004 -5.55687 + 425.42607 -83.76004 -5.34009 + 423.77276 -83.76004 -5.12545 + 423.77259 -83.75855 -5.12545 + 415.49061 -83.75855 -4.08411 + 407.20863 -83.75855 -3.09512 + 398.92665 -83.75855 -2.15743 + 390.64467 -83.75855 -1.27000 + 382.36268 -83.75855 -0.43177 + 382.36283 -83.75713 -0.43177 + 374.05691 -83.75713 0.35828 + 365.75099 -83.75713 1.10120 + 357.44507 -83.75713 1.79806 + 349.13914 -83.75713 2.44988 + 340.83322 -83.75713 3.05771 + 340.83322 -83.75687 3.05771 + 332.50585 -83.75687 3.62261 + 324.17849 -83.75687 4.14562 + 315.85113 -83.75687 4.62779 + 307.52376 -83.75687 5.07017 + 299.19640 -83.75687 5.47380 + 299.19637 -83.75638 5.47380 + 287.50705 -83.75638 5.97581 + 275.81774 -83.75638 6.40682 + 264.12842 -83.75638 6.76972 + 252.43911 -83.75638 7.06740 + 240.74980 -83.75638 7.30275 + 240.74969 -83.75474 7.30275 + 229.86877 -83.75474 7.46800 + 218.98786 -83.75474 7.58431 + 208.10694 -83.75474 7.65399 + 197.22602 -83.75474 7.67936 + 186.34511 -83.75474 7.66275 + 186.34522 -83.75487 7.66275 + 175.44445 -83.75487 7.60646 + 164.54369 -83.75487 7.51281 + 153.64292 -83.75487 7.38414 + 142.74215 -83.75487 7.22275 + 131.84138 -83.75487 7.03097 + 131.84137 -83.75489 7.03097 + 119.28850 -83.75489 6.77586 + 106.73562 -83.75489 6.48717 + 94.18274 -83.75489 6.16842 + 81.62986 -83.75489 5.82315 + 69.07699 -83.75489 5.45490 + 69.07699 -83.75489 5.45490 + 56.51438 -83.75489 5.06719 + 43.95178 -83.75489 4.66358 + 31.38918 -83.75489 4.24759 + 18.82658 -83.75489 3.82276 + 6.26398 -83.75489 3.39262 + 6.26292 -83.74989 3.39262 + -6.29982 -83.74989 2.96073 + -18.86256 -83.74989 2.53061 + -31.42529 -83.74989 2.10580 + -43.98803 -83.74989 1.68984 + -56.55076 -83.74989 1.28626 + -56.54868 -83.73314 1.28626 + -69.10096 -83.73314 0.89861 + -81.65323 -83.73314 0.53041 + -94.20550 -83.73314 0.18521 + -106.75777 -83.73314 -0.13347 + -119.31004 -83.73314 -0.42209 + -119.31003 -83.73337 -0.42209 + -119.47780 -83.65459 -0.42573 + -119.64532 -83.49859 -0.42936 + -119.81252 -83.34259 -0.43299 + -119.97942 -83.18659 -0.43661 + -120.14600 -83.03059 -0.44023 + -120.14600 -83.03058 -0.44023 + -120.31226 -82.87458 -0.44384 + -120.47821 -82.71858 -0.44745 + -120.64385 -82.56258 -0.45105 + -120.80918 -82.40658 -0.45464 + -120.97420 -82.25058 -0.45823 + -120.97421 -82.25035 -0.45823 + -123.90780 -80.86037 -0.52174 + -126.82471 -80.86037 -0.58323 + -129.74162 -80.86036 -0.64264 + -132.65853 -80.86035 -0.69994 + -135.57544 -80.86034 -0.75508 + -135.57538 68.05035 -0.75508 + -129.46046 68.05037 -0.88335 + -123.34554 68.05039 -0.99842 + -117.23062 68.05040 -1.10089 + -111.11570 68.05042 -1.19141 + -105.00077 68.05044 -1.27059 + -105.00080 68.05004 -1.27059 + -103.64113 68.05053 -1.28670 + -102.28146 68.05054 -1.30230 + -100.92178 68.05054 -1.31738 + -99.56211 68.05054 -1.33195 + -98.20244 68.05006 -1.34602 + -98.20244 68.05005 -1.34602 + -97.52252 68.05005 -1.35287 + -96.84259 68.05006 -1.35959 + -96.16267 68.05006 -1.36620 + -95.48275 68.05006 -1.37268 + -94.80282 68.05006 -1.37904 + -94.80248 68.04194 -1.37904 + -90.80145 65.30945 -1.41475 + -86.98049 62.05419 -1.44633 + -83.36721 58.42098 -1.47397 + -79.97959 54.54214 -1.49781 + -76.83061 50.47532 -1.51803 + -76.83005 50.45513 -1.51803 + -72.30352 49.02780 -1.54210 + -67.90919 47.57887 -1.55864 + -63.64368 46.19699 -1.56807 + -59.50076 44.88489 -1.57086 + -55.47410 43.64118 -1.56744 + -55.47418 43.63943 -1.56744 + -51.55500 42.47805 -1.55824 + -47.73827 41.38929 -1.54367 + -44.01707 40.37886 -1.52411 + -40.38419 39.44833 -1.49995 + -36.83286 38.58057 -1.47157 + -36.83287 38.57873 -1.47157 + -33.00028 38.02648 -1.43599 + -29.22066 37.52048 -1.39624 + -25.48949 37.05384 -1.35281 + -21.80420 36.59632 -1.30617 + -18.16493 36.13631 -1.25677 + -18.16386 36.12869 -1.25677 + -13.18778 34.45446 -1.18397 + -8.59622 30.90001 -1.10793 + -4.55264 26.81011 -1.02964 + -1.07935 22.76115 -0.95011 + 1.82956 18.73244 -0.87032 + 1.82845 18.71549 -0.87032 + 4.16341 14.61825 -0.79114 + 5.93872 10.75464 -0.71299 + 7.19676 7.22959 -0.63620 + 7.98527 4.04758 -0.56108 + 8.35418 1.24783 -0.48794 + 8.35193 1.25363 -0.48794 + 8.36051 -1.08100 -0.41697 + 8.07515 -2.94454 -0.34806 + 7.56198 -4.33631 -0.28110 + 6.88670 -5.26107 -0.21597 + 6.11411 -5.72905 -0.15254 + 6.11427 -5.72692 -0.15254 + 5.30083 -5.88332 -0.09066 + 4.47605 -5.88952 -0.03007 + 3.66071 -5.74879 0.02940 + 2.87521 -5.46376 0.08796 + 2.13959 -5.03638 0.14581 + 2.13965 -5.03591 0.14581 + 1.47310 -4.46744 0.20316 + 0.89598 -3.75858 0.26015 + 0.43113 -2.84039 0.31689 + 0.11623 -1.60310 0.37349 + 0.00001 0.00008 0.43006 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24145,42 +24281,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.23500 8.04000 8.00000 19.11030 19.11030 - -10.32500 9.00000 9.00200 26.13056 26.13056 - -10.41500 19.00000 1.00000 33.15090 33.15090 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.59500 64.00000 2.00000 47.19183 47.19183 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.65000 81.00000 48.00000 51.48218 51.48218 - -10.67000 1.00500 33.00000 53.04231 53.04231 - -10.69000 34.00000 26.00000 54.60245 54.60245 - -10.71000 67.00000 66.99100 56.16259 56.16259 - -10.73000 55.00000 1.00000 57.72274 57.72274 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.23500 1.00000 1.00000 19.11030 19.11030 + -10.32500 1.00000 1.00000 26.13056 26.13056 + -10.41500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.59500 1.00000 1.00000 47.19183 47.19183 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.65000 1.00000 1.00000 51.48218 51.48218 + -10.67000 1.00000 1.00000 53.04231 53.04231 + -10.69000 1.00000 1.00000 54.60245 54.60245 + -10.71000 1.00000 1.00000 56.16259 56.16259 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 70.84400 32.98700 64.20029 62.47479 -10.88000 70.84400 32.98700 67.98794 62.65031 -10.94000 70.84400 32.98700 72.00085 62.83628 @@ -24255,7 +24391,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -24286,7 +24422,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 60.31163 2.79494 0.63664 0.25914 5.59200 + -10.79000 10.61750 60.31163 2.79494 0.47399 0.25914 5.59200 -10.85000 11.28890 63.12748 2.92543 0.47399 0.25914 5.59200 -10.91000 11.96030 66.88195 3.09942 0.47399 0.25914 5.59200 -10.97000 12.63170 70.63641 3.27341 0.47399 0.25914 5.59200 @@ -24316,7 +24452,7 @@ Lambda passive -12.92000 9.10420 49.91235 2.44548 0.48860 0.26861 5.48234 -13.06000 10.53080 57.40021 2.83060 0.48860 0.26879 5.45070 -13.20000 11.95740 62.99308 3.11979 0.48860 0.26893 5.43009 - -13.20000 11.95740 66.71397 3.31275 0.26902 0.26902 5.41771 + -13.20000 11.95740 66.71397 3.31275 0.48860 0.26902 5.41771 -13.34000 13.38400 72.28902 3.60244 0.48860 0.26916 5.40115 -13.48000 14.81060 79.71835 3.98903 0.48860 0.26934 5.38252 -13.62000 16.23720 87.14911 4.37598 0.48860 0.26950 5.36725 @@ -24475,91 +24611,91 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P 78.00011 0.00000 78.00011 78.00011 502 100 P 78.00012 0.00000 78.00012 78.00012 502 100 P 78.00014 0.00000 78.00014 78.00014 502 100 P 78.00016 0.00000 78.00016 78.00016 502 100 P 78.00018 0.00000 78.00018 78.00018 502 100 P - 78.00019 0.00000 78.00019 78.00019 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00029 0.00000 78.00029 78.00029 502 100 P 78.00056 0.00000 78.00056 78.00056 502 100 P 78.00092 0.00000 78.00092 78.00092 502 100 P 78.00128 0.00000 78.00128 78.00128 502 100 P 78.00164 0.00000 78.00164 78.00164 502 100 P 78.00191 0.00000 78.00191 78.00191 502 100 P - 78.00223 0.00000 78.00223 78.00223 502 100 P + 78.00222 0.00000 78.00222 78.00223 502 100 P 78.00290 0.00000 78.00290 78.00290 502 100 P 78.00380 0.00000 78.00380 78.00380 1 100 A 78.00470 0.00000 78.00470 78.00470 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00628 0.00000 78.00628 78.00628 1 100 A - 78.00655 0.00000 78.00655 78.00655 1 100 A - 78.00670 0.00000 78.00670 78.00670 1 0 A + 78.00655 0.00000 78.00655 78.00655 1 0 A + 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00730 0.00000 78.00730 78.00730 1 0 A + 78.00730 0.00000 78.00730 78.00730 1 100 A 78.00745 0.00000 78.00745 78.00745 1 0 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 2.79494 67.39050 60.31163 6.86636 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 2.79494 67.39050 60.31163 5.11217 1 0 A 2.92543 67.97910 63.12748 5.35085 1 0 A 3.09942 68.56770 66.88195 5.66909 1 0 A 3.27341 69.15630 70.63641 5.98733 1 0 A 3.44739 69.74490 74.39088 6.30557 1 0 A 3.57788 70.33350 77.20673 6.54425 1 0 A 0.25078 70.33350 55.17823 10.04282 1 0 A - 5.26517 71.22621 55.32390 10.30489 110 0 1 - 5.61064 72.11892 55.78673 10.65432 110 0 1 - 5.97626 73.01163 56.44681 11.00374 110 0 1 - 6.36065 73.90434 57.22835 11.35317 110 0 1 - 6.67504 74.79705 57.86695 11.61524 110 0 1 - 6.84975 74.79705 58.31376 11.78995 110 0 1 - 7.18015 75.68976 59.00859 12.05202 110 0 1 - 7.61268 76.58247 59.96775 12.40145 110 0 1 - 8.05879 77.47518 60.95766 12.75087 110 0 1 - 8.51727 78.36789 61.97129 13.10030 110 0 1 - 8.89955 79.26060 62.74351 13.36237 110 0 1 - 10.64497 79.26060 39.79662 13.68219 110 0 1 - 9.38270 83.24160 35.96929 12.09524 110 0 1 - 7.66198 87.22260 30.90384 9.97930 110 0 1 - 5.72243 91.20360 25.87496 7.86337 110 0 1 - 4.02711 95.18460 20.87484 5.74743 110 0 1 - 2.88276 99.16560 17.13926 4.16048 110 0 1 - 21.96365 99.16560 28.95362 2.53144 220 76 2 - 6.02140 100.53900 34.74039 3.05421 110 17 1 + 5.26985 71.22621 55.32390 10.30489 110 0 1 + 5.61499 72.11892 55.78673 10.65432 110 0 1 + 5.98030 73.01163 56.44681 11.00374 110 0 1 + 6.36438 73.90434 57.22835 11.35317 110 0 1 + 6.67847 74.79705 57.86695 11.61524 110 0 1 + 6.85318 74.79705 58.31376 11.78995 110 0 1 + 7.18329 75.68976 59.00859 12.05202 110 0 1 + 7.61555 76.58247 59.96775 12.40145 110 0 1 + 8.06141 77.47518 60.95766 12.75087 110 0 1 + 8.51965 78.36789 61.97129 13.10030 110 0 1 + 8.90171 79.26060 62.74351 13.36237 110 0 1 + 10.64299 79.26060 39.79662 13.68219 110 0 1 + 9.38062 83.24160 35.96929 12.09524 110 0 1 + 7.65983 87.22260 30.90384 9.97930 110 0 1 + 5.72326 91.20360 25.87496 7.86337 110 0 1 + 4.03573 95.18460 20.87484 5.74743 110 0 1 + 2.89110 99.16560 17.13926 4.16048 110 0 1 + 22.10588 99.16560 28.95362 2.53144 220 76 2 + 6.06789 100.53900 34.74039 3.05421 110 17 1 2.06094 101.91240 42.36780 3.75124 1 0 A 2.44548 103.28580 49.91235 4.44827 1 0 A 2.83060 104.65920 57.40021 5.14530 1 0 A 3.11979 106.03260 62.99308 5.66807 1 0 A - 3.31275 106.03260 66.71397 3.31275 1 5 A + 3.31275 106.03260 66.71397 6.01658 1 0 A 3.60244 107.40600 72.28902 6.53936 1 0 A 3.98903 108.77940 79.71835 7.23639 1 0 A 4.37598 110.15280 87.14911 7.93342 1 0 A 4.76322 111.52620 94.58584 8.63045 1 0 A - 5.57063 112.89960 100.16855 9.15322 110 0 1 - 5.91915 112.89960 103.89346 9.50173 110 0 1 - 7.08337 114.27300 109.48565 10.02451 110 0 1 - 8.39789 115.64640 116.94998 10.72154 110 0 1 - 9.69037 117.01980 124.42364 11.41857 110 0 1 - 10.96275 118.39320 131.90602 12.11559 110 0 1 - 12.04275 119.76660 137.52284 12.63837 110 0 1 - 12.39126 119.76660 141.26987 12.98688 110 0 1 - 13.45563 121.14000 146.89385 13.50965 110 0 1 - 14.68137 122.51340 154.39774 14.20668 110 10 1 - 15.89660 123.88680 161.90727 14.90371 110 10 1 - 17.10370 125.26020 169.42179 15.60074 110 10 1 - 18.13083 126.63360 175.06045 16.12352 110 10 1 - 18.47934 126.63360 178.82091 16.47203 110 10 1 - 19.50318 128.00700 184.46342 16.99480 110 11 1 - 20.69960 129.38040 191.98953 17.69183 110 11 1 - 22.90791 130.75380 199.51859 18.38886 110 11 1 - 25.67135 132.12720 207.05025 19.08589 110 12 1 - 28.34687 133.50060 212.70045 19.60866 110 13 1 + 5.57994 112.89960 100.16855 9.15322 110 0 1 + 5.92845 112.89960 103.89346 9.50173 110 0 1 + 7.09404 114.27300 109.48565 10.02451 110 0 1 + 8.40997 115.64640 116.94998 10.72154 110 0 1 + 9.70389 117.01980 124.42364 11.41857 110 0 1 + 10.97771 118.39320 131.90602 12.11559 110 0 1 + 12.05910 119.76660 137.52284 12.63837 110 0 1 + 12.40761 119.76660 141.26987 12.98688 110 0 1 + 13.47332 121.14000 146.89385 13.50965 110 0 1 + 14.70035 122.51340 154.39774 14.20668 110 10 1 + 15.91682 123.88680 161.90727 14.90371 110 10 1 + 17.12513 125.26020 169.42179 15.60074 110 10 1 + 18.15345 126.63360 175.06045 16.12352 110 10 1 + 18.50196 126.63360 178.82091 16.47203 110 10 1 + 19.52698 128.00700 184.46342 16.99480 110 11 1 + 20.72457 129.38040 191.98953 17.69183 110 11 1 + 22.91067 130.75380 199.51859 18.38886 110 11 1 + 25.67611 132.12720 207.05025 19.08589 110 12 1 + 28.35366 133.50060 212.70045 19.60866 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -24574,9 +24710,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 0.956 'Grind' - -11.09 5.999 'Hydrobiaklei' - -12.00 3.356 'Basisveen' - -12.50 39.309 'Eerste zandlaag' + -11.09 6.002 'Hydrobiaklei' + -12.00 3.357 'Basisveen' + -12.50 39.359 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -24595,7 +24731,7 @@ Layer name -10.79 -0.37 'Grind' -11.09 -1.22 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.45 'Eerste zandlaag' + -12.50 -14.47 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -24733,30 +24869,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.23500 7.99100 8.00000 17.55025 17.55025 - -10.32500 14.00000 1.00000 24.57050 24.57050 - -10.41500 19.00000 33.00000 31.59082 31.59082 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.59500 9.00000 26.00000 45.63171 45.63171 - -10.64000 34.00000 11.00000 49.14198 49.14198 - -10.65000 39.00000 5.00000 49.92156 49.92156 - -10.67000 34.00000 12.00000 51.47776 51.47776 - -10.69000 23.00000 33.00000 53.03005 53.03005 - -10.71000 14.00000 1.00000 54.57842 54.57842 - -10.73000 21.00000 71.00000 56.12286 56.12286 - -10.74000 17.00000 66.00000 56.89361 56.89361 - -10.74500 17.00000 17.00100 57.27862 57.27862 - -10.75500 36.00000 53.00000 58.04791 58.04791 - -10.76500 11.00000 5.00000 58.81621 58.81621 - -10.77500 0.91000 71.00000 59.58353 59.58353 - -10.78500 23.00000 1.00000 60.34988 60.34988 - -10.79000 23.00000 31.00000 60.73268 60.73268 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.23500 1.00000 1.00000 17.55025 17.55025 + -10.32500 1.00000 1.00000 24.57050 24.57050 + -10.41500 1.00000 1.00000 31.59082 31.59082 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.59500 1.00000 1.00000 45.63171 45.63171 + -10.64000 1.00000 1.00000 49.14198 49.14198 + -10.65000 1.00000 1.00000 49.92156 49.92156 + -10.67000 1.00000 1.00000 51.47776 51.47776 + -10.69000 1.00000 1.00000 53.03005 53.03005 + -10.71000 1.00000 1.00000 54.57842 54.57842 + -10.73000 1.00000 1.00000 56.12286 56.12286 + -10.74000 1.00000 1.00000 56.89361 56.89361 + -10.74500 1.00000 1.00000 57.27862 57.27862 + -10.75500 1.00000 1.00000 58.04791 58.04791 + -10.76500 1.00000 1.00000 58.81621 58.81621 + -10.77500 1.00000 1.00000 59.58353 59.58353 + -10.78500 1.00000 1.00000 60.34988 60.34988 + -10.79000 1.00000 1.00000 60.73268 60.73268 -10.82000 70.84400 32.98700 62.37742 60.80890 -10.88000 70.84400 32.98700 65.83586 60.96917 -10.94000 70.84400 32.98700 69.51956 61.13988 @@ -24832,7 +24968,7 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00202 78.00203 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00202 78.00202 1.00000 1.00000 1.00000 -10.28000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.37000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 -10.46000 78.00450 78.00450 78.00450 1.00000 1.00000 1.00000 @@ -24850,7 +24986,7 @@ Lambda passive -10.77000 76.73230 76.73230 76.73230 1.00000 1.00000 1.00000 -10.78000 76.63430 76.63430 76.63430 1.00000 1.00000 1.00000 -10.79000 76.53630 76.56080 76.56080 1.00000 1.00000 1.00000 - -10.79000 9.63630 54.82476 2.54067 0.47772 0.25914 5.59200 + -10.79000 9.63630 54.82476 2.54067 0.47399 0.25914 5.59200 -10.85000 10.30770 57.64061 2.67116 0.47399 0.25914 5.59200 -10.91000 10.97910 61.39508 2.84515 0.47399 0.25914 5.59200 -10.97000 11.65050 65.14955 3.01914 0.47399 0.25914 5.59200 @@ -24862,7 +24998,7 @@ Lambda passive -11.36300 14.46477 54.04376 0.47761 0.71240 0.03302 3.73623 -11.45400 14.95526 54.83247 0.71659 0.71240 0.04792 3.66643 -11.54500 15.44575 55.47655 0.89507 0.71240 0.05841 3.62045 - -11.54500 15.44575 55.92693 1.01383 0.82421 0.06512 3.59234 + -11.54500 15.44575 55.92693 1.01383 0.71240 0.06512 3.59234 -11.63600 15.93624 56.62686 1.19176 0.71240 0.07478 3.55334 -11.72700 16.42673 57.59238 1.42878 0.71240 0.08698 3.50602 -11.81800 16.91722 58.58811 1.66565 0.71240 0.09846 3.46322 @@ -24892,7 +25028,7 @@ Lambda passive -14.32000 22.38900 119.24618 6.04935 0.48860 0.27019 5.32611 -14.46000 23.81560 126.72587 6.43709 0.48860 0.27029 5.32113 -14.60000 25.24220 132.34083 6.72792 0.48860 0.27035 5.31798 - -14.60000 25.24220 136.08672 6.92180 0.30441 0.27040 5.31613 + -14.60000 25.24220 136.08672 6.92180 0.48860 0.27040 5.31613 -14.74000 26.66880 141.70914 7.21262 0.48860 0.27045 5.31367 -14.88000 28.09540 149.21116 7.60037 0.48860 0.27052 5.31087 -15.02000 29.52200 156.71909 7.98808 0.48860 0.27058 5.30855 @@ -25052,78 +25188,78 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00203 0.00000 78.00203 78.00203 1 100 A - 78.00270 0.00000 78.00270 78.00270 1 0 A + 78.00202 0.00000 78.00202 78.00203 1 100 A + 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00360 0.00000 78.00360 78.00360 502 100 P 78.00450 0.00000 78.00450 78.00450 502 100 P 78.00540 0.00000 78.00540 78.00540 502 100 P - 78.00607 0.00000 78.00607 78.00607 502 100 P + 78.00607 0.00000 78.00607 78.00608 502 100 P 77.95730 0.00000 77.95730 77.95730 502 100 P 77.81030 0.19620 77.81030 77.81030 502 100 P 77.61430 0.39240 77.61430 77.61430 502 100 P 77.41830 0.58860 77.41830 77.41830 502 100 P 77.22230 0.78480 77.22230 77.22230 502 100 P 77.07530 0.98100 77.07530 77.07530 502 100 P - 77.00180 0.98100 77.00180 77.00180 502 100 P + 77.00180 0.98100 77.00180 77.00180 502 0 P 76.92830 1.07910 76.92830 76.92830 502 100 P 76.83030 1.17720 76.83030 76.83030 502 100 P - 76.73230 1.27530 76.73230 76.73230 502 100 P + 76.73230 1.27530 76.73230 76.73230 502 0 P 76.63430 1.37340 76.63430 76.63430 502 100 P 76.56080 1.47150 76.56080 76.56080 502 100 P - 40.91537 68.37150 54.82476 4.68366 220 75 2 - 52.20281 68.96010 57.64061 4.88577 440 91 4 - 60.36044 69.54870 61.39508 5.20401 440 98 4 + 42.63803 68.37150 54.82476 4.64709 220 78 2 + 52.20346 68.96010 57.64061 4.88577 440 91 4 + 60.36817 69.54870 61.39508 5.20401 440 98 4 65.14955 70.13730 65.14955 5.52225 502 100 P 68.90401 70.72590 68.90401 5.84049 502 100 P 71.71986 71.31450 71.71986 6.07916 502 100 P - 14.35572 71.31450 52.77821 9.34381 110 27 1 - 20.53394 72.20721 52.91487 9.60588 110 39 1 - 20.15938 73.09992 53.37798 9.95531 110 38 1 - 19.77351 73.99263 54.04376 10.30473 110 37 1 - 19.37776 74.88534 54.83247 10.65416 110 35 1 - 18.97195 75.77805 55.47655 10.91623 110 34 1 - 20.71576 75.77805 55.92693 12.83154 110 37 1 - 18.56226 76.67076 56.62686 11.35301 110 33 1 - 18.14508 77.56347 57.59238 11.70244 110 32 1 - 17.72319 78.45618 58.58811 12.05186 110 30 1 - 17.29777 79.34889 59.60703 12.40129 110 29 1 - 17.20316 80.24160 60.38292 12.66336 110 28 1 - 15.39816 80.24160 37.98904 12.94361 110 41 1 - 13.71064 84.22260 34.17157 11.35666 110 40 1 - 11.48986 88.20360 29.11846 9.24072 110 39 1 - 9.26572 92.18460 24.10096 7.12478 110 38 1 - 7.67870 96.16560 19.11130 5.00885 110 40 1 - 6.47894 100.14660 15.38301 3.42189 110 42 1 + 14.35700 71.31450 52.77821 9.34381 110 27 1 + 20.57154 72.20721 52.91487 9.60588 110 39 1 + 20.19579 73.09992 53.37798 9.95531 110 38 1 + 19.80859 73.99263 54.04376 10.30473 110 37 1 + 19.41136 74.88534 54.83247 10.65416 110 35 1 + 19.00389 75.77805 55.47655 10.91623 110 34 1 + 19.00710 75.77805 55.92693 11.09094 110 34 1 + 18.59236 76.67076 56.62686 11.35301 110 33 1 + 18.17315 77.56347 57.59238 11.70244 110 32 1 + 17.74907 78.45618 58.58811 12.05186 110 30 1 + 17.32129 79.34889 59.60703 12.40129 110 29 1 + 17.20960 80.24160 60.38292 12.66336 110 29 1 + 15.39697 80.24160 37.98904 12.94361 110 41 1 + 13.70959 84.22260 34.17157 11.35666 110 40 1 + 11.48892 88.20360 29.11846 9.24072 110 39 1 + 9.26488 92.18460 24.10096 7.12478 110 38 1 + 7.68248 96.16560 19.11130 5.00885 110 40 1 + 6.48274 100.14660 15.38301 3.42189 110 42 1 23.53636 100.14660 23.53636 2.05203 502 100 P - 26.58895 101.52000 29.37887 2.57480 440 91 4 - 30.34547 102.89340 37.07159 3.27183 330 82 3 - 30.58535 104.26680 44.66648 3.96886 220 68 2 - 30.52474 105.64020 52.18956 4.66589 220 58 2 - 30.99321 107.01360 57.80066 5.18866 220 54 2 - 33.38358 107.01360 61.53014 5.53717 220 54 2 - 31.39432 108.38700 67.11391 6.05995 110 47 1 - 29.38309 109.76040 74.54967 6.75698 110 39 1 - 27.33276 111.13380 81.98255 7.45401 110 33 1 - 25.25874 112.50720 89.41879 8.15104 110 28 1 - 23.07813 113.88060 95.00015 8.67381 110 24 1 - 23.27508 113.88060 98.72384 9.02232 110 24 1 - 21.09888 115.25400 104.31398 9.54510 110 20 1 - 19.02965 116.62740 111.77539 10.24213 110 17 1 - 16.97195 118.00080 119.24618 10.93916 110 14 1 - 14.92888 119.37420 126.72587 11.63619 110 12 1 - 12.80503 120.74760 132.34083 12.15896 110 10 1 - 11.35919 120.74760 136.08672 7.79265 110 8 1 - 13.08427 122.12100 141.70914 13.03024 110 9 1 - 13.25258 123.49440 149.21116 13.72727 110 0 1 - 13.43141 124.86780 156.71909 14.42430 110 0 1 - 13.61837 126.24120 164.23225 15.12133 110 0 1 - 13.63679 127.61460 169.87003 15.64411 110 0 1 - 13.98531 127.61460 173.62995 15.99262 110 0 1 - 14.00702 128.98800 179.27176 16.51539 110 0 1 - 14.20465 130.36140 186.79705 17.21242 110 0 1 - 14.40273 131.73480 194.32544 17.90945 110 0 1 - 14.60000 133.10820 201.85654 18.60648 110 0 1 - 14.62095 134.48160 207.50637 19.12926 110 0 1 + 26.59300 101.52000 29.37887 2.57480 440 91 4 + 30.35165 102.89340 37.07159 3.27183 330 82 3 + 30.61989 104.26680 44.66648 3.96886 220 69 2 + 30.53656 105.64020 52.18956 4.66589 220 59 2 + 31.00480 107.01360 57.80066 5.18866 220 54 2 + 32.06721 107.01360 61.53014 5.53717 220 52 2 + 31.41793 108.38700 67.11391 6.05995 110 47 1 + 29.40599 109.76040 74.54967 6.75698 110 39 1 + 27.35478 111.13380 81.98255 7.45401 110 33 1 + 25.27971 112.50720 89.41879 8.15104 110 28 1 + 23.09792 113.88060 95.00015 8.67381 110 24 1 + 23.29487 113.88060 98.72384 9.02232 110 24 1 + 21.11737 115.25400 104.31398 9.54510 110 20 1 + 19.04673 116.62740 111.77539 10.24213 110 17 1 + 16.98754 118.00080 119.24618 10.93916 110 14 1 + 14.94289 119.37420 126.72587 11.63619 110 12 1 + 12.81738 120.74760 132.34083 12.15896 110 10 1 + 13.08674 120.74760 136.08672 12.50747 110 10 1 + 13.06658 122.12100 141.70914 13.03024 110 9 1 + 13.23361 123.49440 149.21116 13.72727 110 0 1 + 13.41119 124.86780 156.71909 14.42430 110 0 1 + 13.59694 126.24120 164.23225 15.12133 110 0 1 + 13.61417 127.61460 169.87003 15.64411 110 0 1 + 13.96269 127.61460 173.62995 15.99262 110 0 1 + 13.98322 128.98800 179.27176 16.51539 110 0 1 + 14.17968 130.36140 186.79705 17.21242 110 0 1 + 14.37659 131.73480 194.32544 17.90945 110 0 1 + 14.57268 133.10820 201.85654 18.60648 110 0 1 + 14.59245 134.48160 207.50637 19.12926 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -25137,10 +25273,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.343 'OWB' - -10.79 18.176 'Grind' - -11.09 17.035 'Hydrobiaklei' - -12.00 5.308 'Basisveen' - -12.50 72.013 'Eerste zandlaag' + -10.79 18.228 'Grind' + -11.09 16.982 'Hydrobiaklei' + -12.00 5.309 'Basisveen' + -12.50 72.046 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25156,10 +25292,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 7.03 'Grind' - -11.09 3.45 'Hydrobiaklei' + -10.79 7.05 'Grind' + -11.09 3.44 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 26.47 'Eerste zandlaag' + -12.50 26.49 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -25426,32 +25562,32 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 43.60 : Percentage mobilized resistance left - 40.22 : Percentage mobilized resistance right - 343.14 : Effective left - 476.84 : Effective right + 43.63 : Percentage mobilized resistance left + 40.24 : Percentage mobilized resistance right + 343.34 : Effective left + 477.03 : Effective right 1120.54 : Water pressure left 986.23 : Water pressure right 786.97 : Max effective resistance left - 1185.62 : Max effective resistance right + 1185.53 : Max effective resistance right -9369.37 : Max moment left --13318.95 : Max moment right --4349.37 : Max mobilized moment left --4533.75 : Max mobilized moment right - 113.11 : Vertical force left - 121.67 : Vertical force right +-13318.44 : Max moment right +-4351.94 : Max mobilized moment left +-4536.35 : Max mobilized moment right + 113.17 : Vertical force left + 121.74 : Vertical force right 46.4 : Max mobilized moment percentage left - 34.0 : Max mobilized moment percentage right + 34.1 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --121.67 : Active force -113.11 : Passive force --121.67 : Plugged active force -113.11 : Plugged passive force +-121.74 : Active force +113.17 : Passive force +-121.74 : Plugged active force +113.17 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -25471,210 +25607,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 693.93275 - 0.00000 0.00000 688.62763 - 0.00000 0.00000 683.32250 - 0.00000 0.00000 678.01738 - 0.00000 0.00000 672.71226 - 0.00000 0.00000 667.40713 - 0.00000 0.00000 667.40713 - 0.00000 0.00000 662.10201 - 0.00000 0.00000 656.79688 - 0.00000 0.00000 651.49176 - 0.00000 0.00000 646.18664 - 0.00000 0.00000 640.88151 - 0.00000 0.00000 640.88151 - 0.00000 -0.00049 640.25738 - -0.00001 -0.00196 639.63325 - -0.00004 -0.00441 639.00912 - -0.00010 -0.00785 638.38498 - -0.00020 -0.01226 637.76085 - -0.00020 -0.01226 637.76085 - -0.00803 -0.14175 630.27126 - -0.03988 -0.41251 622.78167 - -0.11269 -0.82453 615.29209 - -0.24341 -1.37781 607.80254 - -0.44901 -2.07236 600.31304 - -0.44901 -2.07236 600.31304 - -0.68977 -2.75906 594.07184 - -1.00409 -3.54386 587.83072 - -1.40181 -4.42676 581.58973 - -1.89272 -5.40776 575.34894 - -2.48663 -6.48686 569.10838 - -2.48663 -6.48686 569.10838 - -3.19336 -7.66406 562.86812 - -4.02271 -8.93936 556.62826 - -4.98450 -10.31276 550.38892 - -6.08854 -11.78426 544.15022 - -7.34462 -13.35386 537.91229 - -7.34462 -13.35386 537.91229 - -8.55395 -14.78218 532.54839 - -9.88924 -16.28305 527.18529 - -11.35672 -17.85648 521.82311 - -12.96263 -19.50246 516.46201 - -14.71322 -21.22099 511.10211 - -14.71322 -21.22099 511.10211 - -17.26743 -23.61088 503.99923 - -20.10135 -26.12827 496.89917 - -23.22952 -28.77314 489.80245 - -26.66647 -31.54551 482.70958 - -30.42674 -34.44536 475.62107 - -30.42674 -34.44536 475.62107 - -30.82111 -34.74236 474.91248 - -31.21887 -35.04063 474.20394 - -31.62004 -35.34018 473.49545 - -32.02463 -35.64100 472.78701 - -32.43266 -35.94310 472.07862 - -32.43255 -35.94579 472.07862 - -33.83924 -36.92428 469.68046 - -35.28191 -37.80976 467.28292 - -36.75696 -38.60219 464.88605 - -38.26080 -39.30156 462.48987 - -39.79002 -39.92135 460.09441 - -39.79010 -39.92409 460.09441 - -40.99409 -40.33720 458.23316 - -42.21003 -40.71955 456.37238 - -43.43691 -41.06673 454.51208 - -44.67368 -41.37877 452.65227 - -45.91933 -41.66003 450.79297 - -45.91933 -41.65999 450.79297 - -46.75418 -41.82308 449.55373 - -47.59216 -41.97251 448.31472 - -48.43297 -42.10631 447.07594 - -49.27631 -42.22449 445.83742 - -50.12186 -42.32899 444.59914 - -50.12204 -42.32747 444.59914 - -54.43537 -43.94122 438.41161 - -58.91067 -45.56677 432.23093 - -63.54903 -47.20148 426.05770 - -68.35116 -48.84188 419.89248 - -73.31751 -50.48540 413.73588 - -73.31735 -50.48387 413.73588 - -78.44801 -52.12941 407.58849 - -83.74324 -53.77512 401.45098 - -89.20301 -55.42025 395.32404 - -94.82724 -57.06403 389.20835 - -100.61576 -58.70617 383.10461 - -100.61576 -58.70592 383.10461 - -106.56833 -60.34500 377.01352 - -112.68468 -61.98154 370.93585 - -118.96453 -63.61489 364.87240 - -125.40754 -65.24476 358.82395 - -132.01337 -66.87140 352.79130 - -132.01340 -66.87092 352.79130 - -141.53423 -69.13987 344.37364 - -151.37223 -71.40159 335.99093 - -161.52627 -73.65468 327.64567 - -171.99512 -75.89882 319.34036 - -182.77756 -78.13489 311.07751 - -182.77770 -78.13315 311.07751 - -192.95520 -78.44771 303.44516 - -203.17767 -78.84450 295.85389 - -213.46089 -79.38251 288.30589 - -223.85851 -80.87562 280.80335 - -234.51973 -83.08809 273.34848 - -234.51957 -83.08702 273.34848 - -245.44681 -84.96929 265.94351 - -256.59728 -86.52136 258.59079 - -267.92805 -87.74323 251.29273 - -279.39621 -88.63490 244.05174 - -290.95882 -89.19637 236.87023 - -290.95882 -89.19637 236.87023 - -304.32775 -89.65219 228.68819 - -317.76482 -90.10802 220.59184 - -331.27005 -90.56384 212.58497 - -344.84341 -91.01967 204.67139 - -358.48493 -91.47549 196.85491 - -358.48493 -91.47549 196.85491 - -372.19459 -91.93132 189.13934 - -385.97239 -92.38715 181.52856 - -399.81834 -92.84297 174.02647 - -413.73027 -93.25519 166.63697 - -427.70164 -93.66740 159.36396 - -427.70247 -93.66360 159.36396 - -441.73925 -94.11943 152.21135 - -455.84418 -94.57526 145.18312 - -470.01726 -95.03108 138.28325 - -484.25848 -95.48691 131.51574 - -498.56784 -95.94273 124.88457 - -498.56592 -95.92860 124.88457 - -512.94132 -96.38443 118.39380 - -527.38486 -96.84025 112.04748 - -541.80835 -95.52611 105.84963 - -555.80204 -91.29957 99.80423 - -569.04003 -85.73077 93.91529 - -569.04003 -85.73076 93.91529 - -569.21141 -85.65175 93.83759 - -569.38263 -85.57264 93.75991 - -569.55370 -85.49345 93.68227 - -569.72461 -85.41415 93.60465 - -569.89536 -85.33478 93.52706 - -569.89537 -85.27551 93.52706 - -573.10786 -83.80059 92.04705 - -576.26403 -82.31129 90.59409 - -579.36331 -80.80556 89.15726 - -582.40505 -79.28339 87.72564 - -585.38866 -77.74684 86.28833 - -585.38856 -77.68663 86.28833 - -594.41295 -72.69946 81.85330 - -602.83069 -67.56877 77.52611 - -610.62290 -62.27404 73.30817 - -617.76989 -56.81522 69.20089 - -624.25281 -51.21279 65.20569 - -624.25297 -51.20952 65.20569 - -627.23935 -48.33136 63.25053 - -630.05202 -45.41729 61.32381 - -632.68861 -42.46217 59.42566 - -635.14666 -39.46601 57.55620 - -637.42381 -36.43394 55.71554 - -637.42378 -36.43425 55.71554 - -640.50543 -31.28267 52.97912 - -643.11472 -26.04846 50.30952 - -645.24339 -20.71982 47.70696 - -646.88286 -15.29674 45.17167 - -648.02489 -9.79102 42.70387 - -648.02489 -9.79168 42.70387 - -648.66059 -4.16791 40.30374 - -648.78094 1.53850 37.97128 - -648.37771 7.33936 35.70645 - -647.44231 13.23467 33.50921 - -645.96650 19.21262 31.37951 - -645.96665 19.21293 31.37951 - -643.80184 24.14712 29.11698 - -641.12257 29.52112 26.93556 - -637.89596 34.94479 24.83483 - -634.13516 40.32202 22.81441 - -629.82759 45.81826 20.87388 - -629.85702 46.09133 20.87388 - -621.22944 76.97069 18.29099 - -608.35080 106.87362 15.86156 - -591.35213 135.76293 13.58141 - -570.39536 163.40546 11.44638 - -545.66790 189.56305 9.45228 - -545.67716 189.98385 9.45228 - -517.36555 213.96240 7.59394 - -485.90599 234.97745 5.86334 - -451.70102 253.22483 4.25213 - -415.18028 267.67406 2.75191 - -376.99038 277.02129 1.35430 - -376.88791 277.38457 1.35430 - -337.74624 280.60806 0.04998 - -298.61400 277.48110 -1.17102 - -260.28728 269.30246 -2.31809 - -223.38670 257.32262 -3.40061 - -188.35612 242.78890 -4.42793 - -188.42683 242.29804 -4.42793 - -155.64804 225.67893 -5.40935 - -125.32048 207.26530 -6.35242 - -97.69802 187.04599 -7.26393 - -73.02896 165.08325 -8.15065 - -51.55221 141.45988 -9.01938 - -51.54626 141.38999 -9.01938 - -33.50732 116.04706 -9.87643 - -19.12697 89.12077 -10.72531 - -8.62168 60.73357 -11.56858 - -2.18363 31.01660 -12.40881 - 0.00292 0.01288 -13.24856 + 0.00000 0.00000 694.45828 + 0.00000 0.00000 689.14988 + 0.00000 0.00000 683.84148 + 0.00000 0.00000 678.53308 + 0.00000 0.00000 673.22468 + 0.00000 0.00000 667.91628 + 0.00000 0.00000 667.91628 + 0.00000 0.00000 662.60788 + 0.00000 0.00000 657.29948 + 0.00000 0.00000 651.99108 + 0.00000 0.00000 646.68268 + 0.00000 0.00000 641.37428 + 0.00000 0.00000 641.37428 + 0.00000 -0.00049 640.74976 + -0.00001 -0.00196 640.12524 + -0.00004 -0.00441 639.50073 + -0.00010 -0.00785 638.87621 + -0.00020 -0.01226 638.25169 + -0.00020 -0.01226 638.25169 + -0.00803 -0.14175 630.75748 + -0.03988 -0.41251 623.26326 + -0.11269 -0.82453 615.76906 + -0.24341 -1.37781 608.27488 + -0.44901 -2.07236 600.78075 + -0.44901 -2.07236 600.78075 + -0.68977 -2.75906 594.53570 + -1.00409 -3.54386 588.29072 + -1.40181 -4.42676 582.04589 + -1.89272 -5.40776 575.80124 + -2.48663 -6.48686 569.55683 + -2.48663 -6.48686 569.55683 + -3.19336 -7.66406 563.31271 + -4.02271 -8.93936 557.06899 + -4.98450 -10.31276 550.82580 + -6.08854 -11.78426 544.58325 + -7.34462 -13.35386 538.34147 + -7.34462 -13.35386 538.34147 + -8.55395 -14.78218 532.97425 + -9.88924 -16.28305 527.60783 + -11.35672 -17.85648 522.24234 + -12.96263 -19.50246 516.87792 + -14.71322 -21.22099 511.51471 + -14.71322 -21.22099 511.51471 + -17.26743 -23.61088 504.40744 + -20.10135 -26.12827 497.30299 + -23.22952 -28.77314 490.20187 + -26.66647 -31.54551 483.10460 + -30.42674 -34.44536 476.01170 + -30.42674 -34.44536 476.01170 + -30.82111 -34.74236 475.30267 + -31.21887 -35.04063 474.59369 + -31.62004 -35.34018 473.88476 + -32.02463 -35.64100 473.17589 + -32.43266 -35.94310 472.46706 + -32.43255 -35.94580 472.46706 + -33.83924 -36.92429 470.06740 + -35.28191 -37.80976 467.66838 + -36.75696 -38.60219 465.27002 + -38.26080 -39.30157 462.87236 + -39.79002 -39.92135 460.47541 + -39.79010 -39.92410 460.47541 + -40.99409 -40.33721 458.61301 + -42.21003 -40.71955 456.75107 + -43.43691 -41.06674 454.88961 + -44.67368 -41.37877 453.02865 + -45.91933 -41.66004 451.16819 + -45.91933 -41.65999 451.16819 + -46.75418 -41.82309 449.92817 + -47.59216 -41.97252 448.68839 + -48.43297 -42.10632 447.44885 + -49.27631 -42.22449 446.20955 + -50.12186 -42.32900 444.97050 + -50.12204 -42.32747 444.97050 + -54.43537 -43.94123 438.77912 + -58.91068 -45.56678 432.59459 + -63.54903 -47.20149 426.41750 + -68.35117 -48.84188 420.24843 + -73.31751 -50.48540 414.08798 + -73.31735 -50.48387 414.08798 + -78.44801 -52.12941 407.93673 + -83.74324 -53.77513 401.79537 + -89.20302 -55.42025 395.66457 + -94.82725 -57.06404 389.54503 + -100.61577 -58.70617 383.43743 + -100.61577 -58.70592 383.43743 + -106.56833 -60.34500 377.34249 + -112.68469 -61.98154 371.26097 + -118.96454 -63.61489 365.19366 + -125.40755 -65.24476 359.14135 + -132.01338 -66.87140 353.10485 + -132.01341 -66.87093 353.10485 + -141.53424 -69.13988 344.68180 + -151.37224 -71.40159 336.29369 + -161.52628 -73.65469 327.94303 + -171.99513 -75.89882 319.63233 + -182.77757 -78.13489 311.36409 + -182.77771 -78.13315 311.36409 + -192.95521 -78.44771 303.72673 + -203.17768 -78.84449 296.13044 + -213.46090 -79.38251 288.57743 + -223.85852 -80.87562 281.06988 + -234.51974 -83.08809 273.61001 + -234.51958 -83.08701 273.61001 + -245.44682 -84.96928 266.20002 + -256.59729 -86.52135 258.84229 + -267.92806 -87.74322 251.53922 + -279.39621 -88.63489 244.29322 + -290.95882 -89.19636 237.10670 + -290.95882 -89.19636 237.10670 + -304.32775 -89.65219 228.91890 + -317.76483 -90.10801 220.81679 + -331.27005 -90.56384 212.80416 + -344.84341 -91.01966 204.88482 + -358.48493 -91.47549 197.06257 + -358.48493 -91.47549 197.06257 + -372.19459 -91.93131 189.34124 + -385.97239 -92.38714 181.72470 + -399.81834 -92.84297 174.21685 + -413.73244 -93.29879 166.82159 + -427.71468 -93.75462 159.54282 + -427.71551 -93.75081 159.54282 + -441.76533 -94.20664 152.38445 + -455.88329 -94.66246 145.35047 + -470.06940 -95.11829 138.44486 + -484.32366 -95.57411 131.67162 + -498.64606 -96.02994 125.03475 + -498.64414 -96.01579 125.03475 + -513.03258 -96.47161 118.53830 + -527.48915 -96.92744 112.18632 + -541.92568 -95.61329 105.98284 + -555.93240 -91.38675 99.93184 + -569.18343 -85.81796 94.03735 + -569.18342 -85.81794 94.03735 + -569.35498 -85.73892 93.95957 + -569.52637 -85.65982 93.88182 + -569.69761 -85.58062 93.80410 + -569.86870 -85.50133 93.72641 + -570.03962 -85.42196 93.64875 + -570.03964 -85.36269 93.64875 + -573.25543 -83.88776 92.16732 + -576.41492 -82.39846 90.71295 + -579.51751 -80.89273 89.27473 + -582.56256 -79.37057 87.84173 + -585.54949 -77.83402 86.40302 + -585.54939 -77.77380 86.40302 + -594.58424 -72.78662 81.96360 + -603.01243 -67.65594 77.63205 + -610.81510 -62.36121 73.40979 + -617.97256 -56.90239 69.29822 + -624.46593 -51.29996 65.29877 + -624.46600 -51.30075 65.29877 + -627.45785 -48.42259 63.34150 + -630.27599 -45.50852 61.41268 + -632.91805 -42.55340 59.51244 + -635.38158 -39.55724 57.64090 + -637.66420 -36.52517 55.79817 + -637.66418 -36.52559 55.79817 + -640.75415 -31.37401 53.05863 + -643.37175 -26.13980 50.38594 + -645.50873 -20.81116 47.78032 + -647.15651 -15.38808 45.24199 + -648.30686 -9.88236 42.77118 + -648.30686 -9.88302 42.77118 + -648.95087 -4.25925 40.36807 + -649.07953 1.44716 38.03266 + -648.68462 7.24803 35.76492 + -647.75753 13.14333 33.56479 + -646.29002 19.12128 31.43224 + -646.29018 19.12159 31.43224 + -644.13450 24.05579 29.16661 + -641.46436 29.42978 26.98213 + -638.24689 34.85345 24.87840 + -634.49522 40.23068 22.85501 + -630.19671 45.72920 20.91156 + -630.22619 46.00288 20.91156 + -621.61100 76.88224 18.32466 + -608.74424 106.79567 15.89131 + -591.75506 135.70510 13.60734 + -570.80489 163.37005 11.46859 + -546.08066 189.55184 9.47087 + -546.08995 189.97326 9.47087 + -517.77790 213.98150 7.60900 + -486.31323 235.03034 5.87500 + -452.09882 253.30606 4.26046 + -415.56449 267.79001 2.75702 + -377.35554 277.17565 1.35629 + -377.25285 277.53961 1.35629 + -338.08690 280.80181 0.04895 + -298.92520 277.70274 -1.17501 + -260.56690 269.53007 -2.32495 + -223.63455 257.54820 -3.41027 + -188.57282 243.00749 -4.44034 + -188.64370 242.51543 -4.44034 + -155.83019 225.93865 -5.42445 + -125.46736 207.50864 -6.37016 + -97.81225 187.26836 -7.28428 + -73.11379 165.28014 -8.17358 + -51.61151 141.62687 -9.04486 + -51.60555 141.55674 -9.04486 + -33.54561 116.17953 -9.90446 + -19.14908 89.22088 -10.75587 + -8.63183 60.80375 -11.60167 + -2.18624 31.05345 -12.44442 + 0.00293 0.01293 -13.28670 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -26030,7 +26166,7 @@ Lambda passive -3.80000 5.69550 12.06654 2.34580 0.77767 0.41187 2.11861 -3.90000 5.73450 12.02358 2.37107 0.77767 0.41347 2.09671 -4.00000 5.77350 12.00402 2.38990 0.77767 0.41464 2.08267 - -4.00000 5.77350 11.99626 2.40242 0.78389 0.41541 2.07431 + -4.00000 5.77350 11.99626 2.40242 0.77767 0.41541 2.07431 -4.10000 5.81250 11.99100 2.42116 0.77767 0.41654 2.06297 -4.20000 5.85150 11.99268 2.44610 0.77767 0.41803 2.04951 -4.30000 5.89050 12.00279 2.47100 0.77767 0.41949 2.03765 @@ -26042,7 +26178,7 @@ Lambda passive -4.80000 6.08550 12.13224 2.59529 0.77767 0.42647 1.99363 -4.90000 6.12450 12.16836 2.62012 0.77767 0.42781 1.98683 -5.00000 6.16350 12.19689 2.63875 0.77767 0.42880 1.98203 - -5.00000 6.16350 12.22063 2.65364 1.05785 0.42959 1.97836 + -5.00000 6.16350 12.22063 2.65364 0.77767 0.42959 1.97836 -5.14000 6.21810 12.26382 2.67971 0.77767 0.43095 1.97228 -5.28000 6.27270 12.32401 2.71446 0.77767 0.43274 1.96471 -5.42000 6.32730 12.38688 2.74921 0.77767 0.43450 1.95769 @@ -26059,18 +26195,18 @@ Lambda passive -6.61000 0.00000 1.62288 -8.20379 0.00000 0.00000 0.00000 -6.74000 0.00000 12.91431 -5.46103 0.00000 0.00000 0.00000 -6.87000 0.00000 13.33360 -0.97297 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.58341 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.09404 0.58341 0.00000 0.63113 0.00000 6.20347 + -7.00000 0.00000 13.33080 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.09404 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 1.28855 0.00000 0.00000 0.00000 0.00000 0.00000 -8.64450 2.48305 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -26102,13 +26238,13 @@ Lambda passive -10.55000 16.27800 47.85540 3.00806 0.74083 0.18479 2.93988 -10.67000 16.92480 49.22299 3.34343 0.74083 0.19755 2.90833 -10.79000 17.57160 50.24884 3.59503 0.74083 0.20649 2.88622 - -10.79000 17.57160 50.76181 3.72086 0.62423 0.21078 2.87562 + -10.79000 17.57160 50.76181 3.72086 0.74083 0.21078 2.87562 -10.85000 17.89500 51.27482 3.84671 0.74083 0.21496 2.86532 -10.91000 18.21840 51.95886 4.01453 0.74083 0.22036 2.85200 -10.97000 18.54180 52.64294 4.18237 0.74083 0.22556 2.83915 -11.03000 18.86520 53.32706 4.35025 0.74083 0.23060 2.82674 -11.09000 19.18860 53.84017 4.47617 0.74083 0.23426 2.81771 - -11.09000 19.18860 54.27062 4.58181 1.65718 0.23726 2.81032 + -11.09000 19.18860 54.27062 4.58181 0.74083 0.23726 2.81032 -11.18100 19.67909 55.04889 4.77284 0.74083 0.24253 2.79733 -11.27200 20.16958 56.08662 5.02760 0.74083 0.24927 2.78075 -11.36300 20.66007 57.12440 5.28240 0.74083 0.25568 2.76497 @@ -26250,7 +26386,7 @@ Status character 12.06654 5.39550 12.06654 4.42920 502 100 P 12.02358 6.37650 12.02358 4.45953 502 100 P 12.00402 7.35750 12.00402 4.48227 502 100 P - 11.99626 7.35750 11.99626 4.53344 502 100 P + 11.99626 7.35750 11.99626 4.49744 502 100 P 11.99100 8.33850 11.99100 4.52018 502 100 P 11.99268 9.31950 11.99268 4.55051 502 100 P 12.00279 10.30050 12.00279 4.58084 502 100 P @@ -26262,7 +26398,7 @@ Status character 12.13224 15.20550 12.13224 4.73249 502 100 P 12.16836 16.18650 12.16836 4.76281 502 100 P 12.19689 17.16750 12.19689 4.78556 502 100 P - 12.22063 17.16750 12.22063 6.53447 502 100 P + 12.22063 17.16750 12.22063 4.80376 502 100 P 12.26382 18.54090 12.26382 4.83560 502 100 P 12.32401 19.91430 12.32401 4.87806 502 100 P 12.38688 21.28770 12.38688 4.92053 502 100 P @@ -26290,17 +26426,17 @@ Status character 0.00000 70.98707 0.00000 0.00000 502 0 P 0.00000 72.45367 0.00000 0.00000 502 0 P 0.00000 73.92026 0.00000 0.00000 502 0 P - 0.58341 75.38686 0.58341 0.05935 502 100 P - 0.00000 76.85345 0.00000 0.00000 502 100 P - 0.00000 76.85345 0.00000 0.00000 502 100 P - 0.00000 78.32005 0.00000 0.00000 502 100 P - 0.00000 79.78664 0.00000 0.00000 502 100 P - 0.00000 81.25324 0.00000 0.00000 502 100 P - 0.00000 82.71983 0.00000 0.00000 502 100 P + 0.00000 75.38686 0.00000 0.00000 502 0 P + 0.00000 76.85345 0.00000 0.00000 502 0 P + 0.00000 76.85345 0.00000 0.00000 502 0 P + 0.00000 78.32005 0.00000 0.00000 502 0 P + 0.00000 79.78664 0.00000 0.00000 502 0 P + 0.00000 81.25324 0.00000 0.00000 502 0 P + 0.00000 82.71983 0.00000 0.00000 502 0 P 0.00000 84.18642 0.00000 0.00000 502 0 P 0.00000 84.18642 0.00000 0.00000 502 0 P 0.00000 85.65302 0.00000 0.00000 502 0 P - 0.00000 87.11961 0.00000 0.00000 502 100 P + 0.00000 87.11961 0.00000 0.00000 502 0 P 23.67856 88.58621 23.67856 6.84433 502 100 P 38.96179 90.05281 38.96179 7.59822 502 100 P 41.63516 91.51940 41.63516 8.16363 502 100 P @@ -26322,13 +26458,13 @@ Status character 47.85540 97.01300 47.85540 12.05922 502 100 P 49.22299 98.19020 49.22299 12.53839 502 100 P 50.24884 99.36740 50.24884 12.89776 502 100 P - 50.76181 99.36740 50.76181 11.01914 502 100 P + 50.76181 99.36740 50.76181 13.07745 502 100 P 51.27482 99.95600 51.27482 13.25714 502 100 P 51.95886 100.54460 51.95886 13.49673 502 100 P 52.64294 101.13320 52.64294 13.73631 502 100 P 53.32706 101.72180 53.32706 13.97589 502 100 P 53.84017 102.31040 53.84017 14.15558 502 100 P - 54.27062 102.31040 54.27062 32.00225 502 100 P + 54.27062 102.31040 54.27062 14.30632 502 100 P 55.04889 103.20311 55.04889 14.57885 502 100 P 56.08662 104.09582 56.08662 14.94222 502 100 P 57.12440 104.98853 57.12440 15.30559 502 100 P @@ -26345,21 +26481,21 @@ Status character 54.39837 107.19950 54.39837 23.69665 502 100 P 59.48446 105.18050 59.48446 26.17662 502 100 P 64.56233 103.16150 64.56233 28.65660 502 100 P - 65.41703 101.14250 68.36569 30.51658 440 96 4 + 65.46268 101.14250 68.36569 30.51658 440 96 4 230.63240 101.14250 230.63240 21.42815 502 100 P 222.85744 102.51590 222.85744 21.99572 502 100 P - 217.45577 103.88930 221.96585 22.75248 440 98 4 - 209.25698 105.26270 224.85557 23.50924 440 93 4 - 200.52201 106.63610 229.29925 24.26600 330 87 3 - 188.80987 108.00950 233.16649 24.83357 330 81 3 - 190.31290 108.00950 235.93061 25.21195 330 81 3 - 168.98310 109.38290 240.27129 25.77952 220 70 2 - 148.74153 110.75630 246.29566 26.53628 220 60 2 - 130.31795 112.12970 252.52350 27.29304 220 52 2 - 95.35486 113.50310 258.89457 28.04980 110 37 1 - 58.19556 114.87650 263.74034 28.61737 110 22 1 - 58.57394 114.87650 266.99955 28.99575 110 22 1 - 23.75793 116.24990 271.92333 29.56332 110 0 1 + 217.60590 103.88930 221.96585 22.75248 440 98 4 + 209.39425 105.26270 224.85557 23.50924 440 93 4 + 200.70486 106.63610 229.29925 24.26600 330 88 3 + 188.97282 108.00950 233.16649 24.83357 330 81 3 + 190.47584 108.00950 235.93061 25.21195 330 81 3 + 169.24420 109.38290 240.27129 25.77952 220 70 2 + 148.96317 110.75630 246.29566 26.53628 220 60 2 + 130.50118 112.12970 252.52350 27.29304 220 52 2 + 95.66772 113.50310 258.89457 28.04980 110 37 1 + 58.43132 114.87650 263.74034 28.61737 110 22 1 + 58.80970 114.87650 266.99955 28.99575 110 22 1 + 23.91654 116.24990 271.92333 29.56332 110 0 1 17.40371 117.62330 278.53639 30.32008 1 0 A 17.84110 118.99670 285.19596 31.07684 1 0 A 18.27832 120.37010 291.89239 31.83360 1 0 A @@ -26393,10 +26529,10 @@ Layer name -3.00 6.040 'Ophooglaag zand' -3.50 26.778 'Hollandveen' -5.70 9.409 'Oude Zeeklei' - -7.00 12.991 'Wadzand' + -7.00 12.903 'Wadzand' -10.00 105.974 'Hydrobiaklei' - -12.00 28.320 'Basisveen' - -12.50 287.325 'Eerste zandlaag' + -12.00 28.322 'Basisveen' + -12.50 287.606 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -26416,10 +26552,10 @@ Layer name -3.00 -1.90 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -1.71 'Oude Zeeklei' - -7.00 -3.35 'Wadzand' + -7.00 -3.33 'Wadzand' -10.00 -19.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -95.46 'Eerste zandlaag' + -12.50 -95.55 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -26668,7 +26804,7 @@ Lambda passive -12.92000 30.12970 148.44319 9.17472 0.53046 0.30451 4.92681 -13.06000 31.55630 154.44929 9.61291 0.53046 0.30463 4.89440 -13.20000 32.98290 159.20703 9.94112 0.53046 0.30470 4.87972 - -13.20000 32.98290 162.45605 10.15974 0.53155 0.30474 4.87277 + -13.20000 32.98290 162.45605 10.15974 0.53046 0.30474 4.87277 -13.34000 34.40950 167.40248 10.48746 0.53046 0.30478 4.86501 -13.48000 35.83610 174.07947 10.92414 0.53046 0.30484 4.85766 -13.62000 37.26270 180.82097 11.36054 0.53046 0.30488 4.85260 @@ -26680,7 +26816,7 @@ Lambda passive -14.32000 44.39570 214.94675 13.54019 0.53046 0.30499 4.84161 -14.46000 45.82230 221.81023 13.97584 0.53046 0.30500 4.84066 -14.60000 47.24890 226.96177 14.30254 0.53046 0.30501 4.84007 - -14.60000 47.24890 230.39786 14.52032 0.56701 0.30501 4.83973 + -14.60000 47.24890 230.39786 14.52032 0.53046 0.30501 4.83973 -14.74000 48.67550 235.55418 14.84697 0.53046 0.30502 4.83928 -14.88000 50.10210 242.43233 15.28248 0.53046 0.30503 4.83877 -15.02000 51.52870 249.31352 15.71795 0.53046 0.30503 4.83834 @@ -26888,30 +27024,30 @@ Status character 9.17472 103.31170 148.44319 15.98271 1 0 A 9.61291 104.68510 154.44929 16.73947 1 0 A 9.94112 106.05850 159.20703 17.30704 1 0 A - 10.15974 106.05850 162.45605 17.72174 1 0 A + 10.15974 106.05850 162.45605 17.68542 1 0 A 10.48746 107.43190 167.40248 18.25299 1 0 A 10.92414 108.80530 174.07947 19.00974 1 0 A 11.36054 110.17870 180.82097 19.76650 1 0 A 11.79674 111.55210 187.60408 20.52326 1 0 A 12.12378 112.92550 192.70971 21.09083 1 0 A 12.34176 112.92550 196.12085 21.46921 1 0 A - 27.84217 114.29890 201.24614 22.03678 110 14 1 - 61.89245 115.67230 208.09120 22.79354 110 30 1 - 94.09198 117.04570 214.94675 23.55030 110 44 1 - 117.07004 118.41910 221.81023 24.30706 220 53 2 - 131.34090 119.79250 226.96177 24.87463 220 58 2 - 133.23661 119.79250 230.39786 26.99293 220 58 2 - 146.05825 121.16590 235.55418 25.82058 220 62 2 - 159.63689 122.53930 242.43233 26.57734 220 66 2 - 172.72726 123.91270 249.31352 27.33410 220 69 2 - 185.41626 125.28610 256.19718 28.09086 220 72 2 - 197.21430 126.65950 261.36123 28.65843 220 75 2 - 198.36364 126.65950 264.80452 29.03681 220 75 2 - 209.92310 128.03290 269.97025 29.60438 220 78 2 - 221.74681 129.40630 276.85902 30.36113 330 80 3 - 231.66568 130.77970 283.74896 31.11789 330 82 3 - 241.61581 132.15310 290.63991 31.87465 330 83 3 - 250.81117 133.52650 295.80866 32.44222 330 85 3 + 27.68356 114.29890 201.24614 22.03678 110 14 1 + 61.81115 115.67230 208.09120 22.79354 110 30 1 + 94.08809 117.04570 214.94675 23.55030 110 44 1 + 117.10296 118.41910 221.81023 24.30706 220 53 2 + 131.40793 119.79250 226.96177 24.87463 220 58 2 + 132.53136 119.79250 230.39786 25.25301 220 58 2 + 146.15880 121.16590 235.55418 25.82058 220 62 2 + 159.77042 122.53930 242.43233 26.57734 220 66 2 + 172.89323 123.91270 249.31352 27.33410 220 69 2 + 185.61418 125.28610 256.19718 28.09086 220 72 2 + 197.44369 126.65950 261.36123 28.65843 220 76 2 + 198.59303 126.65950 264.80452 29.03681 220 75 2 + 210.18353 128.03290 269.97025 29.60438 220 78 2 + 221.94855 129.40630 276.85902 30.36113 330 80 3 + 231.89156 130.77970 283.74896 31.11789 330 82 3 + 241.86620 132.15310 290.63991 31.87465 330 83 3 + 251.08644 133.52650 295.80866 32.44222 330 85 3 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -26931,7 +27067,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.690 'Basisveen' - -12.50 340.455 'Eerste zandlaag' + -12.50 340.647 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -26953,7 +27089,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 113.11 'Eerste zandlaag' + -12.50 113.17 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -27193,8 +27329,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 369.87741 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 524.81262 10000000.000 1 1 1 'Dek' + -10.19000 369.90943 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 524.80706 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -27257,8 +27393,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 33.11 : Percentage mobilized resistance left 18.82 : Percentage mobilized resistance right - 181.22 : Effective left - 107.85 : Effective right + 181.23 : Effective left + 107.90 : Effective right 545.72 : Water pressure left 540.51 : Water pressure right 547.27 : Max effective resistance left @@ -27267,8 +27403,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 39.18 : Vertical force left - 15.74 : Vertical force right + 39.19 : Vertical force left + 15.76 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -27277,10 +27413,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.74 : Active force -39.18 : Passive force --15.74 : Plugged active force -39.18 : Plugged passive force +-15.76 : Active force +39.19 : Passive force +-15.76 : Plugged active force +39.19 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance @@ -27300,210 +27436,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.19926 - 0.12459 0.00000 -57.95331 - 0.24918 0.00000 -56.70736 - 0.37377 0.00000 -55.46145 - 0.49836 0.00000 -54.21557 - 0.62295 0.00000 -52.96974 - 0.62295 0.00000 -52.96974 - 0.74751 0.00000 -51.72397 - 0.87207 0.00000 -50.47829 - 0.99663 0.00000 -49.23269 - 1.12119 0.00000 -47.98719 - 1.24575 0.00000 -46.74181 - 1.24575 0.00000 -46.74181 - 1.41172 0.00000 -45.08149 - 1.57769 0.00000 -43.42144 - 1.74367 0.00000 -41.76167 - 1.90964 0.00000 -40.10222 - 2.07562 0.00000 -38.44311 - 2.07562 0.00000 -38.44311 - 2.21379 0.00000 -37.06081 - 2.35196 0.00000 -35.67879 - 2.49013 0.00000 -34.29706 - 2.62830 0.00000 -32.91565 - 2.76647 0.00000 -31.53456 - 2.76647 0.00000 -31.53456 - 2.90447 0.00000 -30.15383 - 3.04246 0.00000 -28.77346 - 3.18046 0.00000 -27.39348 - 3.31846 0.00000 -26.01389 - 3.45645 0.00000 -24.63473 - 3.45645 0.00000 -24.63473 - 3.57496 0.00000 -23.44899 - 3.69346 0.00000 -22.26359 - 3.81197 0.00000 -21.07853 - 3.93047 0.00000 -19.89383 - 4.04898 0.00000 -18.70949 - 4.04898 439.90000 -18.70949 - 54.35095 439.90000 -17.14151 - 104.65292 439.90000 -15.58243 - 154.95489 439.90000 -14.04048 - 205.25686 439.90000 -12.52390 - 255.55883 439.90000 -11.04093 - 255.56010 439.88459 -11.04093 - 290.84723 439.88459 -10.02474 - 326.13435 439.88459 -9.03200 - 361.42148 439.88459 -8.06555 - 396.70861 439.88459 -7.12825 - 431.99573 439.88459 -6.22293 - 431.99500 -84.93457 -6.22293 - 430.31798 -84.93457 -6.00192 - 428.64095 -84.93457 -5.78308 - 426.96393 -84.93457 -5.56640 - 425.28691 -84.93457 -5.35188 - 423.60989 -84.93457 -5.13949 - 423.60971 -84.93308 -5.13949 - 415.20916 -84.93308 -4.10942 - 406.80861 -84.93308 -3.13165 - 398.40806 -84.93308 -2.20514 - 390.00751 -84.93308 -1.32881 - 381.60696 -84.93308 -0.50162 - 381.60711 -84.93166 -0.50162 - 373.18267 -84.93166 0.27749 - 364.75822 -84.93166 1.00960 - 356.33378 -84.93166 1.69575 - 347.90933 -84.93166 2.33701 - 339.48489 -84.93166 2.93444 - 339.48489 -84.93140 2.93444 - 331.03909 -84.93140 3.48911 - 322.59328 -84.93140 4.00206 - 314.14748 -84.93140 4.47438 - 305.70168 -84.93140 4.90713 - 297.25588 -84.93140 5.30136 - 297.25585 -84.93091 5.30136 - 285.40094 -84.93091 5.79061 - 273.54603 -84.93091 6.20938 - 261.69112 -84.93091 6.56061 - 249.83620 -84.93091 6.84723 - 237.98129 -84.93091 7.07215 - 237.98119 -84.92928 7.07215 - 226.94680 -84.92928 7.22832 - 215.91242 -84.92928 7.33618 - 204.87804 -84.92928 7.39807 - 193.84365 -84.92928 7.41633 - 182.80927 -84.92928 7.39333 - 182.80939 -84.92942 7.39333 - 171.75553 -84.92942 7.33140 - 160.70167 -84.92942 7.23291 - 149.64781 -84.92942 7.10020 - 138.59395 -84.92942 6.93563 - 127.54009 -84.92942 6.74155 - 127.54009 -84.92943 6.74155 - 114.81173 -84.92943 6.48494 - 102.08337 -84.92943 6.19600 - 89.35501 -84.92943 5.87831 - 76.62665 -84.92943 5.53547 - 63.89829 -84.92943 5.17104 - 63.89829 -84.92943 5.17104 - 51.16093 -84.92943 4.78863 - 38.42357 -84.92943 4.39181 - 25.68622 -84.92943 3.98417 - 12.94886 -84.92943 3.56930 - 0.21151 -84.92943 3.15078 - 0.21045 -84.92443 3.15078 - -12.52619 -84.92443 2.73220 - -25.26283 -84.92443 2.31715 - -37.99946 -84.92443 1.90921 - -50.73610 -84.92443 1.51198 - -63.47274 -84.92443 1.12903 - -63.47066 -84.90764 1.12903 - -76.19585 -84.90764 0.76395 - -88.92104 -84.90764 0.42032 - -101.64624 -84.90764 0.10173 - -114.37143 -84.90764 -0.18823 - -127.09662 -84.90764 -0.44599 - -127.09661 -84.90786 -0.44599 - -127.26669 -84.82908 -0.44921 - -127.43651 -84.67308 -0.45241 - -127.60602 -84.51708 -0.45561 - -127.77522 -84.36108 -0.45881 - -127.94411 -84.20508 -0.46200 - -127.94411 -84.20508 -0.46200 - -128.11268 -84.04908 -0.46518 - -128.28094 -83.89308 -0.46835 - -128.44888 -83.73708 -0.47152 - -128.61652 -83.58108 -0.47468 - -128.78384 -83.42508 -0.47784 - -128.78385 -83.42485 -0.47784 - -131.75892 -82.03486 -0.53352 - -134.71730 -82.03485 -0.58706 - -137.67568 -82.03484 -0.63839 - -140.63407 -82.03483 -0.68748 - -143.59245 -82.03483 -0.73427 - -143.59265 81.49513 -0.73427 - -136.26559 81.49515 -0.84113 - -128.93854 81.49517 -0.93409 - -121.61148 81.49518 -1.01389 - -114.28443 81.49520 -1.08128 - -106.95737 81.49522 -1.13701 - -106.95737 81.49501 -1.13701 - -105.32834 81.49551 -1.14789 - -103.69930 81.49551 -1.15823 - -102.07026 81.49551 -1.16806 - -100.44122 81.49552 -1.17736 - -98.81218 81.49503 -1.18617 - -98.81218 81.49503 -1.18617 - -97.99758 81.49503 -1.19038 - -97.18298 81.49503 -1.19447 - -96.36837 81.49503 -1.19844 - -95.55377 81.49503 -1.20228 - -94.73917 81.49504 -1.20601 - -94.73871 81.48300 -1.20601 - -89.93651 78.57823 -1.22590 - -85.31898 75.29325 -1.24172 - -80.91065 71.64448 -1.25366 - -76.72829 67.76564 -1.26191 - -72.78458 63.69882 -1.26669 - -72.78372 63.67628 -1.26669 - -67.07812 61.60721 -1.26772 - -61.57735 59.27467 -1.26175 - -56.28704 56.98279 -1.24934 - -51.20323 54.73690 -1.23104 - -46.32162 52.53883 -1.20740 - -46.32180 52.53947 -1.20740 - -41.64024 50.33273 -1.17895 - -37.15159 48.27561 -1.14615 - -32.84647 46.30048 -1.10947 - -28.71709 44.41429 -1.06934 - -24.75565 42.60411 -1.02621 - -24.75574 42.60116 -1.02621 - -20.54813 41.49308 -0.97588 - -16.44810 40.45126 -0.92296 - -12.44901 39.47086 -0.86796 - -8.54548 38.53905 -0.81138 - -4.73255 37.66209 -0.75372 - -4.73056 37.65815 -0.75372 - 0.39574 35.07375 -0.67222 - 5.02306 30.87436 -0.59083 - 9.02891 26.24666 -0.51054 - 12.37722 21.54947 -0.43233 - 15.07540 16.94432 -0.35719 - 15.07481 16.91564 -0.35719 - 17.10874 12.14262 -0.28597 - 18.48793 7.54272 -0.21898 - 19.23952 3.23678 -0.15641 - 19.42136 -0.59696 -0.09847 - 19.09933 -3.96227 -0.04533 - 19.10067 -3.96775 -0.04533 - 18.33772 -6.87182 0.00295 - 17.20217 -9.27706 0.04671 - 15.77057 -11.08029 0.08629 - 14.13256 -12.22902 0.12202 - 12.37820 -12.74733 0.15425 - 12.37692 -12.74790 0.15425 - 10.59695 -12.67602 0.18340 - 8.83676 -12.42713 0.20993 - 7.13156 -11.89246 0.23427 - 5.52056 -11.08298 0.25683 - 4.04161 -10.00735 0.27803 - 4.04164 -10.00428 0.27803 - 2.73164 -8.66871 0.29828 - 1.62657 -7.07723 0.31786 - 0.76537 -5.16144 0.33699 - 0.20179 -2.81278 0.35586 - -0.00154 -0.02622 0.37468 + 0.00000 0.00000 -59.20109 + 0.12460 0.00000 -57.95507 + 0.24919 0.00000 -56.70907 + 0.37379 0.00000 -55.46308 + 0.49839 0.00000 -54.21714 + 0.62298 0.00000 -52.97125 + 0.62298 0.00000 -52.97125 + 0.74755 0.00000 -51.72542 + 0.87211 0.00000 -50.47967 + 0.99668 0.00000 -49.23400 + 1.12124 0.00000 -47.98844 + 1.24581 0.00000 -46.74299 + 1.24581 0.00000 -46.74299 + 1.41179 0.00000 -45.08260 + 1.57777 0.00000 -43.42246 + 1.74376 0.00000 -41.76260 + 1.90974 0.00000 -40.10306 + 2.07572 0.00000 -38.44387 + 2.07572 0.00000 -38.44387 + 2.21390 0.00000 -37.06150 + 2.35208 0.00000 -35.67940 + 2.49026 0.00000 -34.29761 + 2.62843 0.00000 -32.91612 + 2.76661 0.00000 -31.53497 + 2.76661 0.00000 -31.53497 + 2.90462 0.00000 -30.15416 + 3.04262 0.00000 -28.77373 + 3.18062 0.00000 -27.39367 + 3.31863 0.00000 -26.01402 + 3.45663 0.00000 -24.63478 + 3.45663 0.00000 -24.63478 + 3.57514 0.00000 -23.44898 + 3.69365 0.00000 -22.26352 + 3.81216 0.00000 -21.07840 + 3.93067 0.00000 -19.89364 + 4.04919 0.00000 -18.70924 + 4.04919 439.90000 -18.70924 + 54.35116 439.90000 -17.14118 + 104.65314 439.90000 -15.58201 + 154.95512 439.90000 -14.03998 + 205.25710 439.90000 -12.52332 + 255.55908 439.90000 -11.04027 + 255.56035 439.88457 -11.04027 + 290.84748 439.88457 -10.02402 + 326.13461 439.88457 -9.03123 + 361.42174 439.88457 -8.06473 + 396.70887 439.88457 -7.12737 + 431.99601 439.88457 -6.22199 + 431.99527 -84.92904 -6.22199 + 430.31836 -84.92904 -6.00097 + 428.64145 -84.92904 -5.78212 + 426.96454 -84.92904 -5.56542 + 425.28763 -84.92904 -5.35088 + 423.61072 -84.92904 -5.13848 + 423.61055 -84.92754 -5.13848 + 415.21056 -84.92754 -4.10834 + 406.81057 -84.92754 -3.13050 + 398.41058 -84.92754 -2.20392 + 390.01059 -84.92754 -1.32752 + 381.61060 -84.92754 -0.50026 + 381.61075 -84.92612 -0.50026 + 373.18686 -84.92612 0.27892 + 364.76298 -84.92612 1.01109 + 356.33909 -84.92612 1.69731 + 347.91521 -84.92612 2.33864 + 339.49133 -84.92612 2.93614 + 339.49132 -84.92586 2.93614 + 331.04608 -84.92586 3.49087 + 322.60084 -84.92586 4.00389 + 314.15560 -84.92586 4.47627 + 305.71036 -84.92586 4.90908 + 297.26512 -84.92586 5.30337 + 297.26509 -84.92537 5.30337 + 285.41096 -84.92537 5.79271 + 273.55683 -84.92537 6.21156 + 261.70270 -84.92537 6.56287 + 249.84857 -84.92537 6.84956 + 237.99445 -84.92537 7.07455 + 237.99434 -84.92374 7.07455 + 226.96068 -84.92374 7.23080 + 215.92703 -84.92374 7.33871 + 204.89337 -84.92374 7.40066 + 193.85971 -84.92374 7.41898 + 182.82606 -84.92374 7.39603 + 182.82617 -84.92387 7.39603 + 171.77304 -84.92387 7.33415 + 160.71990 -84.92387 7.23571 + 149.66677 -84.92387 7.10304 + 138.61364 -84.92387 6.93850 + 127.56050 -84.92387 6.74446 + 127.56050 -84.92389 6.74446 + 114.83297 -84.92389 6.48788 + 102.10544 -84.92389 6.19896 + 89.37791 -84.92389 5.88130 + 76.65038 -84.92389 5.53846 + 63.92285 -84.92389 5.17405 + 63.92285 -84.92389 5.17405 + 51.18632 -84.92389 4.79163 + 38.44979 -84.92389 4.39481 + 25.71327 -84.92389 3.98715 + 12.97674 -84.92389 3.57226 + 0.24021 -84.92389 3.15371 + 0.23915 -84.91889 3.15371 + -12.49666 -84.91889 2.73509 + -25.23248 -84.91889 2.32000 + -37.96829 -84.91889 1.91201 + -50.70411 -84.91889 1.51471 + -63.43992 -84.91889 1.13168 + -63.43784 -84.90213 1.13168 + -76.16222 -84.90213 0.76652 + -88.88660 -84.90213 0.42280 + -101.61098 -84.90213 0.10412 + -114.33536 -84.90213 -0.18596 + -127.05974 -84.90213 -0.44384 + -127.05972 -84.90236 -0.44384 + -127.22980 -84.82358 -0.44706 + -127.39961 -84.66758 -0.45027 + -127.56911 -84.51158 -0.45347 + -127.73829 -84.35558 -0.45666 + -127.90717 -84.19958 -0.45985 + -127.90717 -84.19958 -0.45985 + -128.07573 -84.04358 -0.46304 + -128.24398 -83.88758 -0.46621 + -128.41191 -83.73158 -0.46939 + -128.57954 -83.57558 -0.47255 + -128.74685 -83.41958 -0.47571 + -128.74686 -83.41935 -0.47571 + -131.72173 -82.02935 -0.53142 + -134.67992 -82.02935 -0.58499 + -137.63811 -82.02934 -0.63635 + -140.59630 -82.02933 -0.68547 + -143.55448 -82.02932 -0.73230 + -143.55442 81.46175 -0.73230 + -136.23038 81.46177 -0.83925 + -128.90634 81.46179 -0.93229 + -121.58230 81.46180 -1.01219 + -114.25826 81.46182 -1.07968 + -106.93421 81.46184 -1.13551 + -106.93424 81.46144 -1.13551 + -105.30588 81.46193 -1.14640 + -103.67751 81.46194 -1.15677 + -102.04915 81.46194 -1.16662 + -100.42078 81.46194 -1.17595 + -98.79242 81.46146 -1.18477 + -98.79242 81.46145 -1.18477 + -97.97815 81.46145 -1.18900 + -97.16389 81.46146 -1.19310 + -96.34962 81.46146 -1.19708 + -95.53535 81.46146 -1.20094 + -94.72109 81.46146 -1.20467 + -94.72063 81.44942 -1.20467 + -89.92200 78.50586 -1.22464 + -85.30883 75.22062 -1.24052 + -80.90487 71.57162 -1.25253 + -76.72689 67.69277 -1.26086 + -72.78756 63.62596 -1.26571 + -72.78670 63.60339 -1.26571 + -67.08778 61.53270 -1.26684 + -61.59395 59.19693 -1.26098 + -56.31087 56.90175 -1.24868 + -51.23460 54.65269 -1.23047 + -46.36079 52.45174 -1.20693 + -46.36088 52.44978 -1.20693 + -41.68279 50.31964 -1.17858 + -37.19546 48.26009 -1.14587 + -32.89186 46.28272 -1.10927 + -28.76420 44.39448 -1.06922 + -24.80463 42.58316 -1.02618 + -24.80473 42.58013 -1.02618 + -20.59923 41.47198 -0.97592 + -16.50131 40.43009 -0.92308 + -12.50434 39.44977 -0.86814 + -8.60291 38.51847 -0.81161 + -4.79199 37.64228 -0.75401 + -4.79003 37.63871 -0.75401 + 0.33448 35.06414 -0.67256 + 4.96041 30.86417 -0.59121 + 8.96470 26.23389 -0.51095 + 12.31099 21.53385 -0.43276 + 15.00689 16.92750 -0.35761 + 15.00630 16.89880 -0.35761 + 17.04647 12.21760 -0.28637 + 18.43606 7.61607 -0.21934 + 19.19777 3.30804 -0.15672 + 19.38946 -0.52765 -0.09872 + 19.07700 -3.89475 -0.04551 + 19.07834 -3.90026 -0.04551 + 18.32473 -6.80597 0.00284 + 17.19835 -9.21137 0.04668 + 15.77605 -11.01321 0.08634 + 14.14754 -12.16027 0.12214 + 12.40294 -12.67668 0.15445 + 12.40165 -12.67722 0.15445 + 10.62062 -12.72132 0.18366 + 8.85452 -12.46625 0.21026 + 7.14427 -11.92535 0.23465 + 5.52911 -11.10964 0.25726 + 4.04686 -10.02783 0.27851 + 4.04689 -10.02475 0.27851 + 2.73445 -8.68306 0.29881 + 1.62780 -7.08552 0.31844 + 0.76579 -5.16537 0.33762 + 0.20185 -2.81402 0.35654 + -0.00154 -0.02618 0.37541 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -27638,42 +27774,42 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.23500 8.04000 8.00000 19.11030 19.11030 - -10.32500 9.00000 9.00200 26.13056 26.13056 - -10.41500 19.00000 1.00000 33.15090 33.15090 - -10.50500 2.90600 2.90000 40.17133 40.17133 - -10.59500 64.00000 2.00000 47.19183 47.19183 - -10.64000 9.00000 45.00000 50.70211 50.70211 - -10.65000 81.00000 48.00000 51.48218 51.48218 - -10.67000 1.00500 33.00000 53.04231 53.04231 - -10.69000 34.00000 26.00000 54.60245 54.60245 - -10.71000 67.00000 66.99100 56.16259 56.16259 - -10.73000 55.00000 1.00000 57.72274 57.72274 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.23500 1.00000 1.00000 19.11030 19.11030 + -10.32500 1.00000 1.00000 26.13056 26.13056 + -10.41500 1.00000 1.00000 33.15090 33.15090 + -10.50500 1.00000 1.00000 40.17133 40.17133 + -10.59500 1.00000 1.00000 47.19183 47.19183 + -10.64000 1.00000 1.00000 50.70211 50.70211 + -10.65000 1.00000 1.00000 51.48218 51.48218 + -10.67000 1.00000 1.00000 53.04231 53.04231 + -10.69000 1.00000 1.00000 54.60245 54.60245 + -10.71000 1.00000 1.00000 56.16259 56.16259 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 -10.82000 70.84400 32.98700 64.20029 62.47479 -10.88000 70.84400 32.98700 67.98794 62.65031 -10.94000 70.84400 32.98700 72.00085 62.83628 @@ -27748,7 +27884,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -27779,7 +27915,7 @@ Lambda passive -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 60.31163 2.79494 0.63664 0.25914 5.59200 + -10.79000 10.61750 60.31163 2.79494 0.47399 0.25914 5.59200 -10.85000 11.28890 63.12748 2.92543 0.47399 0.25914 5.59200 -10.91000 11.96030 66.88195 3.09942 0.47399 0.25914 5.59200 -10.97000 12.63170 70.63641 3.27341 0.47399 0.25914 5.59200 @@ -27809,7 +27945,7 @@ Lambda passive -12.92000 9.10420 49.91235 2.44548 0.48860 0.26861 5.48234 -13.06000 10.53080 57.40021 2.83060 0.48860 0.26879 5.45070 -13.20000 11.95740 62.99308 3.11979 0.48860 0.26893 5.43009 - -13.20000 11.95740 66.71397 3.31275 0.26902 0.26902 5.41771 + -13.20000 11.95740 66.71397 3.31275 0.48860 0.26902 5.41771 -13.34000 13.38400 72.28902 3.60244 0.48860 0.26916 5.40115 -13.48000 14.81060 79.71835 3.98903 0.48860 0.26934 5.38252 -13.62000 16.23720 87.14911 4.37598 0.48860 0.26950 5.36725 @@ -27968,68 +28104,68 @@ Status character 78.00004 0.00000 78.00004 78.00004 502 100 P 78.00012 0.00000 78.00012 78.00006 502 100 P 78.00008 0.00000 78.00008 78.00008 502 100 P - 78.00009 0.00000 78.00009 78.00009 502 100 P + 78.00010 0.00000 78.00010 78.00010 502 100 P 78.00011 0.00000 78.00011 78.00011 502 100 P 78.00012 0.00000 78.00012 78.00012 502 100 P 78.00014 0.00000 78.00014 78.00014 502 100 P 78.00016 0.00000 78.00016 78.00016 502 100 P 78.00018 0.00000 78.00018 78.00018 502 100 P - 78.00019 0.00000 78.00019 78.00019 502 100 P + 78.00019 0.00000 78.00019 78.00020 502 100 P 78.00029 0.00000 78.00029 78.00029 502 100 P 78.00056 0.00000 78.00056 78.00056 502 100 P 78.00092 0.00000 78.00092 78.00092 502 100 P 78.00128 0.00000 78.00128 78.00128 502 100 P 78.00164 0.00000 78.00164 78.00164 502 100 P 78.00191 0.00000 78.00191 78.00191 502 100 P - 78.00223 0.00000 78.00223 78.00223 502 100 P + 78.00222 0.00000 78.00222 78.00223 502 100 P 78.00290 0.00000 78.00290 78.00290 502 100 P 78.00380 0.00000 78.00380 78.00380 1 100 A 78.00470 0.00000 78.00470 78.00470 1 100 A 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00628 0.00000 78.00628 78.00628 1 100 A - 78.00655 0.00000 78.00655 78.00655 1 100 A - 78.00670 0.00000 78.00670 78.00670 1 0 A + 78.00655 0.00000 78.00655 78.00655 1 0 A + 78.00670 0.00000 78.00670 78.00670 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00710 0.00000 78.00710 78.00710 1 100 A - 78.00730 0.00000 78.00730 78.00730 1 0 A + 78.00730 0.00000 78.00730 78.00730 1 100 A 78.00745 0.00000 78.00745 78.00745 1 0 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 2.79494 67.39050 60.31163 6.86636 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 2.79494 67.39050 60.31163 5.11217 1 0 A 2.92543 67.97910 63.12748 5.35085 1 0 A 3.09942 68.56770 66.88195 5.66909 1 0 A 3.27341 69.15630 70.63641 5.98733 1 0 A 3.44739 69.74490 74.39088 6.30557 1 0 A 3.57788 70.33350 77.20673 6.54425 1 0 A 0.25078 70.33350 55.17823 10.04282 1 0 A - 0.47054 71.22621 55.32390 10.30489 110 0 1 + 0.47471 71.22621 55.32390 10.30489 110 0 1 0.70466 72.11892 55.78673 10.65432 1 0 A 0.94752 73.01163 56.44681 11.00374 1 0 A 1.18734 73.90434 57.22835 11.35317 1 0 A - 1.36676 74.79705 57.86695 11.61524 110 0 1 - 1.54148 74.79705 58.31376 11.78995 110 0 1 - 1.84364 75.68976 59.00859 12.05202 110 0 1 - 2.28173 76.58247 59.96775 12.40145 110 0 1 - 2.76440 77.47518 60.95766 12.75087 110 0 1 - 3.28767 78.36789 61.97129 13.10030 110 0 1 - 3.76019 79.26060 62.74351 13.36237 110 0 1 - 7.81832 79.26060 39.79662 13.68219 110 0 1 - 6.65006 83.24160 35.96929 12.09524 110 0 1 - 5.03532 87.22260 30.90384 9.97930 110 0 1 - 3.21173 91.20360 25.87496 7.86337 110 0 1 - 1.64044 95.18460 20.87484 5.74743 110 0 1 - 0.62633 99.16560 17.13926 4.16048 110 0 1 - 15.51670 99.16560 28.95362 2.53144 220 54 2 + 1.36976 74.79705 57.86695 11.61524 110 0 1 + 1.54448 74.79705 58.31376 11.78995 110 0 1 + 1.84642 75.68976 59.00859 12.05202 110 0 1 + 2.28433 76.58247 59.96775 12.40145 110 0 1 + 2.76686 77.47518 60.95766 12.75087 110 0 1 + 3.29001 78.36789 61.97129 13.10030 110 0 1 + 3.76245 79.26060 62.74351 13.36237 110 0 1 + 7.81639 79.26060 39.79662 13.68219 110 0 1 + 6.64814 83.24160 35.96929 12.09524 110 0 1 + 5.03342 87.22260 30.90384 9.97930 110 0 1 + 3.21291 91.20360 25.87496 7.86337 110 0 1 + 1.64950 95.18460 20.87484 5.74743 110 0 1 + 0.63521 99.16560 17.13926 4.16048 110 0 1 + 15.66048 99.16560 28.95362 2.53144 220 54 2 1.67700 100.53900 34.74039 3.05421 1 0 A 2.06094 101.91240 42.36780 3.75124 1 0 A 2.44548 103.28580 49.91235 4.44827 1 0 A 2.83060 104.65920 57.40021 5.14530 1 0 A 3.11979 106.03260 62.99308 5.66807 1 0 A - 3.31275 106.03260 66.71397 3.31275 1 5 A + 3.31275 106.03260 66.71397 6.01658 1 0 A 3.60244 107.40600 72.28902 6.53936 1 0 A 3.98903 108.77940 79.71835 7.23639 1 0 A 4.37598 110.15280 87.14911 7.93342 1 0 A @@ -28037,22 +28173,22 @@ Status character 5.05378 112.89960 100.16855 9.15322 1 0 A 5.24756 112.89960 103.89346 9.50173 1 0 A 5.53829 114.27300 109.48565 10.02451 1 0 A - 6.57851 115.64640 116.94998 10.72154 110 0 1 - 8.56720 117.01980 124.42364 11.41857 110 0 1 - 10.48555 118.39320 131.90602 12.11559 110 0 1 - 12.16292 119.76660 137.52284 12.63837 110 0 1 - 12.51143 119.76660 141.26987 12.98688 110 0 1 - 14.12815 121.14000 146.89385 13.50965 110 10 1 - 15.86755 122.51340 154.39774 14.20668 110 10 1 - 17.56356 123.88680 161.90727 14.90371 110 11 1 - 19.22449 125.26020 169.42179 15.60074 110 11 1 - 20.68443 126.63360 175.06045 16.12352 110 12 1 - 21.03294 126.63360 178.82091 16.47203 110 12 1 - 22.47523 128.00700 184.46342 16.99480 110 12 1 - 24.08068 129.38040 191.98953 17.69183 110 13 1 - 26.69205 130.75380 199.51859 18.38886 110 13 1 - 29.85607 132.12720 207.05025 19.08589 110 14 1 - 32.93325 133.50060 212.70045 19.60866 110 15 1 + 6.59756 115.64640 116.94998 10.72154 110 0 1 + 8.58725 117.01980 124.42364 11.41857 110 0 1 + 10.50645 118.39320 131.90602 12.11559 110 0 1 + 12.18447 119.76660 137.52284 12.63837 110 0 1 + 12.53299 119.76660 141.26987 12.98688 110 0 1 + 14.15014 121.14000 146.89385 13.50965 110 10 1 + 15.88976 122.51340 154.39774 14.20668 110 10 1 + 17.58582 123.88680 161.90727 14.90371 110 11 1 + 19.24666 125.26020 169.42179 15.60074 110 11 1 + 20.70643 126.63360 175.06045 16.12352 110 12 1 + 21.05495 126.63360 178.82091 16.47203 110 12 1 + 22.49701 128.00700 184.46342 16.99480 110 12 1 + 24.10220 129.38040 191.98953 17.69183 110 13 1 + 26.68991 130.75380 199.51859 18.38886 110 13 1 + 29.85447 132.12720 207.05025 19.08589 110 14 1 + 32.93219 133.50060 212.70045 19.60866 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -28067,9 +28203,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 0.956 'Grind' - -11.09 1.542 'Hydrobiaklei' - -12.00 2.076 'Basisveen' - -12.50 40.963 'Eerste zandlaag' + -11.09 1.544 'Hydrobiaklei' + -12.00 2.077 'Basisveen' + -12.50 41.005 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -28088,7 +28224,7 @@ Layer name -10.79 -0.37 'Grind' -11.09 -0.31 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -15.06 'Eerste zandlaag' + -12.50 -15.07 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -28226,30 +28362,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.23500 7.99100 8.00000 17.55025 17.55025 - -10.32500 14.00000 1.00000 24.57050 24.57050 - -10.41500 19.00000 33.00000 31.59082 31.59082 - -10.50500 3.00000 1.00000 38.61123 38.61123 - -10.59500 9.00000 26.00000 45.63171 45.63171 - -10.64000 34.00000 11.00000 49.14198 49.14198 - -10.65000 39.00000 5.00000 49.92156 49.92156 - -10.67000 34.00000 12.00000 51.47776 51.47776 - -10.69000 23.00000 33.00000 53.03005 53.03005 - -10.71000 14.00000 1.00000 54.57842 54.57842 - -10.73000 21.00000 71.00000 56.12286 56.12286 - -10.74000 17.00000 66.00000 56.89361 56.89361 - -10.74500 17.00000 17.00100 57.27862 57.27862 - -10.75500 36.00000 53.00000 58.04791 58.04791 - -10.76500 11.00000 5.00000 58.81621 58.81621 - -10.77500 0.91000 71.00000 59.58353 59.58353 - -10.78500 23.00000 1.00000 60.34988 60.34988 - -10.79000 23.00000 31.00000 60.73268 60.73268 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.23500 1.00000 1.00000 17.55025 17.55025 + -10.32500 1.00000 1.00000 24.57050 24.57050 + -10.41500 1.00000 1.00000 31.59082 31.59082 + -10.50500 1.00000 1.00000 38.61123 38.61123 + -10.59500 1.00000 1.00000 45.63171 45.63171 + -10.64000 1.00000 1.00000 49.14198 49.14198 + -10.65000 1.00000 1.00000 49.92156 49.92156 + -10.67000 1.00000 1.00000 51.47776 51.47776 + -10.69000 1.00000 1.00000 53.03005 53.03005 + -10.71000 1.00000 1.00000 54.57842 54.57842 + -10.73000 1.00000 1.00000 56.12286 56.12286 + -10.74000 1.00000 1.00000 56.89361 56.89361 + -10.74500 1.00000 1.00000 57.27862 57.27862 + -10.75500 1.00000 1.00000 58.04791 58.04791 + -10.76500 1.00000 1.00000 58.81621 58.81621 + -10.77500 1.00000 1.00000 59.58353 59.58353 + -10.78500 1.00000 1.00000 60.34988 60.34988 + -10.79000 1.00000 1.00000 60.73268 60.73268 -10.82000 70.84400 32.98700 62.37742 60.80890 -10.88000 70.84400 32.98700 65.83586 60.96917 -10.94000 70.84400 32.98700 69.51956 61.13988 @@ -28325,7 +28461,7 @@ Lambda passive -10.11800 78.00108 78.00108 78.00108 1.00000 1.00000 1.00000 -10.15400 78.00144 78.00144 78.00144 1.00000 1.00000 1.00000 -10.19000 78.00180 78.00171 78.00171 1.00000 1.00000 1.00000 - -10.19000 78.00180 78.00202 78.00203 1.00000 1.00000 1.00000 + -10.19000 78.00180 78.00202 78.00202 1.00000 1.00000 1.00000 -10.28000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.37000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 -10.46000 78.00450 78.00450 78.00450 1.00000 1.00000 1.00000 @@ -28343,7 +28479,7 @@ Lambda passive -10.77000 76.73230 76.73230 76.73230 1.00000 1.00000 1.00000 -10.78000 76.63430 76.63430 76.63430 1.00000 1.00000 1.00000 -10.79000 76.53630 76.56080 76.56080 1.00000 1.00000 1.00000 - -10.79000 9.63630 54.82476 2.54067 0.47772 0.25914 5.59200 + -10.79000 9.63630 54.82476 2.54067 0.47399 0.25914 5.59200 -10.85000 10.30770 57.64061 2.67116 0.47399 0.25914 5.59200 -10.91000 10.97910 61.39508 2.84515 0.47399 0.25914 5.59200 -10.97000 11.65050 65.14955 3.01914 0.47399 0.25914 5.59200 @@ -28355,7 +28491,7 @@ Lambda passive -11.36300 14.46477 54.04376 0.47761 0.71240 0.03302 3.73623 -11.45400 14.95526 54.83247 0.71659 0.71240 0.04792 3.66643 -11.54500 15.44575 55.47655 0.89507 0.71240 0.05841 3.62045 - -11.54500 15.44575 55.92693 1.01383 0.82421 0.06512 3.59234 + -11.54500 15.44575 55.92693 1.01383 0.71240 0.06512 3.59234 -11.63600 15.93624 56.62686 1.19176 0.71240 0.07478 3.55334 -11.72700 16.42673 57.59238 1.42878 0.71240 0.08698 3.50602 -11.81800 16.91722 58.58811 1.66565 0.71240 0.09846 3.46322 @@ -28385,7 +28521,7 @@ Lambda passive -14.32000 22.38900 119.24618 6.04935 0.48860 0.27019 5.32611 -14.46000 23.81560 126.72587 6.43709 0.48860 0.27029 5.32113 -14.60000 25.24220 132.34083 6.72792 0.48860 0.27035 5.31798 - -14.60000 25.24220 136.08672 6.92180 0.30441 0.27040 5.31613 + -14.60000 25.24220 136.08672 6.92180 0.48860 0.27040 5.31613 -14.74000 26.66880 141.70914 7.21262 0.48860 0.27045 5.31367 -14.88000 28.09540 149.21116 7.60037 0.48860 0.27052 5.31087 -15.02000 29.52200 156.71909 7.98808 0.48860 0.27058 5.30855 @@ -28545,77 +28681,77 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00203 0.00000 78.00203 78.00203 1 100 A - 78.00270 0.00000 78.00270 78.00270 1 0 A + 78.00202 0.00000 78.00202 78.00203 1 100 A + 78.00270 0.00000 78.00270 78.00270 1 100 A 78.00360 0.00000 78.00360 78.00360 502 100 P 78.00450 0.00000 78.00450 78.00450 502 100 P 78.00540 0.00000 78.00540 78.00540 502 100 P - 78.00607 0.00000 78.00607 78.00607 502 100 P + 78.00607 0.00000 78.00607 78.00608 502 100 P 77.95730 0.00000 77.95730 77.95730 502 100 P 77.81030 0.19620 77.81030 77.81030 502 100 P 77.61430 0.39240 77.61430 77.61430 502 100 P 77.41830 0.58860 77.41830 77.41830 502 100 P 77.22230 0.78480 77.22230 77.22230 502 100 P 77.07530 0.98100 77.07530 77.07530 502 100 P - 77.00180 0.98100 77.00180 77.00180 502 100 P + 77.00180 0.98100 77.00180 77.00180 502 0 P 76.92830 1.07910 76.92830 76.92830 502 100 P 76.83030 1.17720 76.83030 76.83030 502 100 P - 76.73230 1.27530 76.73230 76.73230 502 100 P + 76.73230 1.27530 76.73230 76.73230 502 0 P 76.63430 1.37340 76.63430 76.63430 502 100 P 76.56080 1.47150 76.56080 76.56080 502 100 P - 47.90870 68.37150 54.82476 4.68366 330 87 3 - 52.67508 68.96010 57.64061 4.88577 440 91 4 - 60.88705 69.54870 61.39508 5.20401 440 99 4 + 49.20143 68.37150 54.82476 4.64709 330 90 3 + 52.67578 68.96010 57.64061 4.88577 440 91 4 + 60.89483 69.54870 61.39508 5.20401 440 99 4 65.14955 70.13730 65.14955 5.52225 502 100 P 68.90401 70.72590 68.90401 5.84049 502 100 P 71.71986 71.31450 71.71986 6.07916 502 100 P - 18.90473 71.31450 52.77821 9.34381 110 36 1 - 25.32857 72.20721 52.91487 9.60588 110 48 1 - 25.14932 73.09992 53.37798 9.95531 110 47 1 - 24.91188 73.99263 54.04376 10.30473 110 46 1 - 24.62110 74.88534 54.83247 10.65416 110 45 1 - 24.28022 75.77805 55.47655 10.91623 110 44 1 - 26.02404 75.77805 55.92693 12.83154 110 47 1 - 23.89878 76.67076 56.62686 11.35301 110 42 1 - 23.47604 77.56347 57.59238 11.70244 110 41 1 - 23.01758 78.45618 58.58811 12.05186 110 39 1 - 22.52736 79.34889 59.60703 12.40129 110 38 1 - 22.34252 80.24160 60.38292 12.66336 110 37 1 - 18.22481 80.24160 37.98904 12.94361 110 48 1 - 16.44328 84.22260 34.17157 11.35666 110 48 1 - 14.11651 88.20360 29.11846 9.24072 110 48 1 - 11.77642 92.18460 24.10096 7.12478 110 49 1 - 9.74992 96.16560 19.11130 5.00885 220 51 2 - 8.09414 100.14660 15.38301 3.42189 220 53 2 + 18.90650 71.31450 52.77821 9.34381 110 36 1 + 25.36668 72.20721 52.91487 9.60588 110 48 1 + 25.18625 73.09992 53.37798 9.95531 110 47 1 + 24.94747 73.99263 54.04376 10.30473 110 46 1 + 24.65517 74.88534 54.83247 10.65416 110 45 1 + 24.31259 75.77805 55.47655 10.91623 110 44 1 + 24.31581 75.77805 55.92693 11.09094 110 43 1 + 23.92923 76.67076 56.62686 11.35301 110 42 1 + 23.50438 77.56347 57.59238 11.70244 110 41 1 + 23.04362 78.45618 58.58811 12.05186 110 39 1 + 22.55093 79.34889 59.60703 12.40129 110 38 1 + 22.34886 80.24160 60.38292 12.66336 110 37 1 + 18.22356 80.24160 37.98904 12.94361 110 48 1 + 16.44207 84.22260 34.17157 11.35666 110 48 1 + 14.11533 88.20360 29.11846 9.24072 110 48 1 + 11.77524 92.18460 24.10096 7.12478 110 49 1 + 9.75119 96.16560 19.11130 5.00885 220 51 2 + 8.09539 100.14660 15.38301 3.42189 220 53 2 23.53636 100.14660 23.53636 2.05203 502 100 P - 28.61530 101.52000 29.37887 2.57480 440 97 4 - 33.15194 102.89340 37.07159 3.27183 330 89 3 - 35.50246 104.26680 44.66648 3.96886 220 79 2 - 34.91446 105.64020 52.18956 4.66589 220 67 2 - 34.86180 107.01360 57.80066 5.18866 220 60 2 - 37.25217 107.01360 61.53014 5.53717 220 61 2 - 35.88706 108.38700 67.11391 6.05995 220 53 2 - 35.45520 109.76040 74.54967 6.75698 110 48 1 - 32.46132 111.13380 81.98255 7.45401 110 40 1 - 29.48355 112.50720 89.41879 8.15104 110 33 1 - 26.44724 113.88060 95.00015 8.67381 110 28 1 - 26.64419 113.88060 98.72384 9.02232 110 27 1 - 23.66637 115.25400 104.31398 9.54510 110 23 1 - 20.84902 116.62740 111.77539 10.24213 110 19 1 - 18.09511 118.00080 119.24618 10.93916 110 15 1 - 15.40608 119.37420 126.72587 11.63619 110 12 1 - 12.68486 120.74760 132.34083 12.15896 110 10 1 - 11.23902 120.74760 136.08672 7.79265 110 8 1 - 12.41175 122.12100 141.70914 13.03024 110 0 1 - 12.06641 123.49440 149.21116 13.72727 110 0 1 - 11.76445 124.86780 156.71909 14.42430 110 0 1 - 11.49759 126.24120 164.23225 15.12133 110 0 1 - 11.08319 127.61460 169.87003 15.64411 110 0 1 - 11.43171 127.61460 173.62995 15.99262 110 0 1 - 11.03496 128.98800 179.27176 16.51539 110 0 1 - 10.82358 130.36140 186.79705 17.21242 110 0 1 - 10.61859 131.73480 194.32544 17.90945 110 0 1 - 10.41527 133.10820 201.85654 18.60648 110 0 1 + 28.61869 101.52000 29.37887 2.57480 440 97 4 + 33.15691 102.89340 37.07159 3.27183 330 89 3 + 35.53430 104.26680 44.66648 3.96886 220 80 2 + 34.92327 105.64020 52.18956 4.66589 220 67 2 + 34.87013 107.01360 57.80066 5.18866 220 60 2 + 35.93255 107.01360 61.53014 5.53717 220 58 2 + 35.89490 108.38700 67.11391 6.05995 220 53 2 + 35.47066 109.76040 74.54967 6.75698 110 48 1 + 32.47575 111.13380 81.98255 7.45401 110 40 1 + 29.49693 112.50720 89.41879 8.15104 110 33 1 + 26.45954 113.88060 95.00015 8.67381 110 28 1 + 26.65649 113.88060 98.72384 9.02232 110 27 1 + 23.67758 115.25400 104.31398 9.54510 110 23 1 + 20.85915 116.62740 111.77539 10.24213 110 19 1 + 18.10418 118.00080 119.24618 10.93916 110 15 1 + 15.41415 119.37420 126.72587 11.63619 110 12 1 + 12.69200 120.74760 132.34083 12.15896 110 10 1 + 12.96137 120.74760 136.08672 12.50747 110 10 1 + 12.38976 122.12100 141.70914 13.03024 110 0 1 + 12.04420 123.49440 149.21116 13.72727 110 0 1 + 11.74220 124.86780 156.71909 14.42430 110 0 1 + 11.47541 126.24120 164.23225 15.12133 110 0 1 + 11.06119 127.61460 169.87003 15.64411 110 0 1 + 11.40970 127.61460 173.62995 15.99262 110 0 1 + 11.01318 128.98800 179.27176 16.51539 110 0 1 + 10.80205 130.36140 186.79705 17.21242 110 0 1 + 10.59735 131.73480 194.32544 17.90945 110 0 1 + 10.39433 133.10820 201.85654 18.60648 110 0 1 10.60402 134.48160 207.50637 19.12926 1 0 A [END OF DATA] [END OF TABLE] @@ -28630,10 +28766,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.343 'OWB' - -10.79 18.446 'Grind' - -11.09 21.722 'Hydrobiaklei' - -12.00 6.525 'Basisveen' - -12.50 75.182 'Eerste zandlaag' + -10.79 18.485 'Grind' + -11.09 21.669 'Hydrobiaklei' + -12.00 6.524 'Basisveen' + -12.50 75.205 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -28649,10 +28785,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 7.14 'Grind' - -11.09 4.40 'Hydrobiaklei' + -10.79 7.15 'Grind' + -11.09 4.39 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 27.64 'Eerste zandlaag' + -12.50 27.65 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -28680,27 +28816,27 @@ CalculationStatus [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 1 12 4 0.000 1 6 0.00000 0.00000 0.00000 0.00000 0.00000 2 12 4 0.000 1 6 - -648.78094 278.80196 927.96533 46.27616 43.35245 3 4 10 1.000 0 0 - -648.78094 280.60806 693.93275 46.42113 43.60315 3 5 10 1.000 0 0 - -534.76110 191.80142 598.08157 25.47615 32.77467 3 0 10 1.000 2 0 - -534.76111 194.64365 508.27025 25.62320 33.01142 3 1 10 1.000 2 0 - 102.21836 148.14320 -13.90709 10.18929 13.34537 3 3 10 1.000 2 0 - 122.66203 177.77184 -13.90709 10.18929 13.34537 3 14 10 1.200 2 0 + -649.07950 279.00155 928.91504 46.30351 43.37732 3 4 10 1.000 0 0 + -649.07953 280.80181 694.45828 46.44857 43.62758 3 5 10 1.000 0 0 + -534.76129 191.86530 598.27107 25.48240 32.78040 3 0 10 1.000 2 0 + -534.76131 194.65366 508.38215 25.62409 33.01235 3 1 10 1.000 2 0 + 102.24843 148.14320 -13.91690 10.17153 13.32681 3 3 10 1.000 2 0 + 122.69811 177.77184 -13.91690 10.17153 13.32681 3 14 10 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 12 4 0.000 1 6 0.00000 0.00000 0.00000 0.00000 0.00000 5 4 11 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 5 5 11 0.000 1 5 - 216.21251 170.90548 -15.86820 0.00000 16.14176 5 0 11 1.000 0 0 - 220.43639 171.44980 -15.69062 0.00000 15.87845 5 1 11 1.000 0 0 - 195.13773 156.85989 -13.97494 0.00000 10.94932 5 3 11 1.000 0 0 - 263.43593 211.76085 -13.97494 0.00000 10.94932 5 14 11 1.350 0 0 + 216.25184 170.91019 -15.86450 0.00000 16.13506 5 0 11 1.000 0 0 + 220.47653 171.45461 -15.68688 0.00000 15.86213 5 1 11 1.000 0 0 + 195.16114 156.86287 -13.97286 0.00000 10.96785 5 3 11 1.000 0 0 + 263.46754 211.76487 -13.97286 0.00000 10.96785 5 14 11 1.350 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 6 12 4 0.000 1 6 0.00000 0.00000 0.00000 0.00000 0.00000 7 12 4 0.000 1 6 - 432.03983 439.90000 -59.63836 0.00000 31.40591 8 4 14 1.000 1 0 - 431.99573 439.90000 -59.19926 0.00000 33.11290 8 5 14 1.000 1 0 - 432.04134 439.90000 -59.65370 0.00000 29.53037 8 0 14 1.000 1 0 - 431.98941 439.90000 -59.13660 0.00000 31.93884 8 1 14 1.000 1 0 - 432.02773 439.90000 -59.51741 0.00000 29.42694 8 3 14 1.000 1 0 - 518.43327 527.88000 -59.51741 0.00000 29.42694 8 14 14 1.200 1 0 + 432.04003 439.90000 -59.63952 0.00000 31.41168 8 4 14 1.000 1 0 + 431.99601 439.90000 -59.20109 0.00000 33.11457 8 5 14 1.000 1 0 + 432.04170 439.90000 -59.65635 0.00000 29.52747 8 0 14 1.000 1 0 + 431.98974 439.90000 -59.13886 0.00000 31.93789 8 1 14 1.000 1 0 + 432.02785 439.90000 -59.51820 0.00000 29.46778 8 3 14 1.000 1 0 + 518.43342 527.88000 -59.51820 0.00000 29.46778 8 14 14 1.200 1 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -28726,38 +28862,38 @@ AnchorName 3 5 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 0 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 1 7 10 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' - 3 3 7 10 1.000 98.40357 1 1 0 0 'Stempelraam boven dek' - 3 14 7 10 1.200 118.08428 1 1 0 0 'Stempelraam boven dek' - 3 2 5 10 1.200 118.07858 1 1 0 0 'Stempelraam boven dek' + 3 3 7 10 1.000 98.39523 1 1 0 0 'Stempelraam boven dek' + 3 14 7 10 1.200 118.07428 1 1 0 0 'Stempelraam boven dek' + 3 2 5 10 1.200 118.06861 1 1 0 0 'Stempelraam boven dek' 4 12 7 4 1.000 0.00000 0 1 0 6 '---' 5 4 7 11 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 4 7 11 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' 5 5 7 11 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 5 7 11 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' - 5 0 7 11 1.000 527.16005 1 1 0 0 'Stempelraam boven dek' - 5 0 7 11 1.000 283.37600 1 1 0 0 'Onderwaterbeton 2-laags' - 5 1 7 11 1.000 526.61574 1 1 0 0 'Stempelraam boven dek' - 5 1 7 11 1.000 294.83191 1 1 0 0 'Onderwaterbeton 2-laags' - 5 3 7 11 1.000 364.03069 1 1 0 0 'Stempelraam boven dek' - 5 3 7 11 1.000 259.59139 1 1 0 0 'Onderwaterbeton 2-laags' - 5 14 7 11 1.350 491.44144 1 1 0 0 'Stempelraam boven dek' - 5 14 7 11 1.350 350.44837 1 1 0 0 'Onderwaterbeton 2-laags' + 5 0 7 11 1.000 527.15496 1 1 0 0 'Stempelraam boven dek' + 5 0 7 11 1.000 283.39855 1 1 0 0 'Onderwaterbeton 2-laags' + 5 1 7 11 1.000 526.61054 1 1 0 0 'Stempelraam boven dek' + 5 1 7 11 1.000 294.85432 1 1 0 0 'Onderwaterbeton 2-laags' + 5 3 7 11 1.000 364.02766 1 1 0 0 'Stempelraam boven dek' + 5 3 7 11 1.000 259.65246 1 1 0 0 'Onderwaterbeton 2-laags' + 5 14 7 11 1.350 491.43734 1 1 0 0 'Stempelraam boven dek' + 5 14 7 11 1.350 350.53082 1 1 0 0 'Onderwaterbeton 2-laags' 6 12 7 4 1.000 0.00000 0 1 0 6 '---' 7 12 7 4 1.000 0.00000 0 1 0 6 '---' - 8 4 7 14 1.000 384.47363 1 1 0 0 'Onderwaterbeton 2-laags' - 8 4 7 14 1.000 523.64185 1 1 0 0 'Dek' - 8 5 7 14 1.000 369.87741 1 1 0 0 'Onderwaterbeton 2-laags' - 8 5 7 14 1.000 524.81262 1 1 0 0 'Dek' - 8 0 7 14 1.000 383.59667 1 1 0 0 'Onderwaterbeton 2-laags' - 8 0 7 14 1.000 523.60491 1 1 0 0 'Dek' - 8 1 7 14 1.000 363.02030 1 1 0 0 'Onderwaterbeton 2-laags' - 8 1 7 14 1.000 524.99179 1 1 0 0 'Dek' - 8 3 7 14 1.000 376.67082 1 1 0 0 'Onderwaterbeton 2-laags' - 8 3 7 14 1.000 523.97081 1 1 0 0 'Dek' - 8 14 7 14 1.200 452.00498 1 1 0 0 'Onderwaterbeton 2-laags' - 8 14 7 14 1.200 628.76497 1 1 0 0 'Dek' - 8 2 5 14 1.200 452.48313 1 1 0 0 'Onderwaterbeton 2-laags' - 8 2 5 14 1.200 628.67004 1 1 0 0 'Dek' + 8 4 7 14 1.000 384.48981 1 1 0 0 'Onderwaterbeton 2-laags' + 8 4 7 14 1.000 523.63807 1 1 0 0 'Dek' + 8 5 7 14 1.000 369.90943 1 1 0 0 'Onderwaterbeton 2-laags' + 8 5 7 14 1.000 524.80706 1 1 0 0 'Dek' + 8 0 7 14 1.000 383.66172 1 1 0 0 'Onderwaterbeton 2-laags' + 8 0 7 14 1.000 523.59728 1 1 0 0 'Dek' + 8 1 7 14 1.000 363.08210 1 1 0 0 'Onderwaterbeton 2-laags' + 8 1 7 14 1.000 524.98518 1 1 0 0 'Dek' + 8 3 7 14 1.000 376.66367 1 1 0 0 'Onderwaterbeton 2-laags' + 8 3 7 14 1.000 523.97061 1 1 0 0 'Dek' + 8 14 7 14 1.200 451.99640 1 1 0 0 'Onderwaterbeton 2-laags' + 8 14 7 14 1.200 628.76474 1 1 0 0 'Dek' + 8 2 5 14 1.200 452.47794 1 1 0 0 'Onderwaterbeton 2-laags' + 8 2 5 14 1.200 628.66939 1 1 0 0 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -28789,18 +28925,18 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Stempelraam boven dek' 527.16005 -'Onderwaterbeton 2-laags' 452.48313 -'Dek' 628.76497 +'Stempelraam boven dek' 527.15496 +'Onderwaterbeton 2-laags' 452.47794 +'Dek' 628.76474 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-648.78094 +MaximumMoment=-649.07953 MaximumShearForce=527.88000 -MaximumDisplacement=-59.51741 -MaximumPercentageMobilisedMoment=46.42113 -MaximumPercentageMobilisedResistance=43.60315 +MaximumDisplacement=-59.51820 +MaximumPercentageMobilisedMoment=46.44857 +MaximumPercentageMobilisedResistance=43.62758 VerticalBalanceSummary=1 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shi index 2fc0edb6..ef4119e5 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects16.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:00:40 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects16.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:49:50 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects16.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1278,6 +1278,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1287,6 +1288,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1296,6 +1298,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -1305,6 +1308,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1314,6 +1318,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1323,6 +1328,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1332,6 +1338,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1341,6 +1348,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -1364,7 +1372,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1375,8 +1383,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1387,7 +1397,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1406,6 +1416,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1433,6 +1444,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1460,6 +1472,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1487,6 +1500,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1514,6 +1528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1541,6 +1556,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1568,6 +1584,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1595,6 +1612,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1605,7 +1623,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1620,8 +1694,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1631,8 +1706,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1649,6 +1724,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1658,7 +1734,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1676,6 +1808,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1703,6 +1836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1730,6 +1864,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shd index c2d5cf99..d75450f0 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:04:20 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects17.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:51:59 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects17.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2011,6 +2011,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2020,6 +2021,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -2029,6 +2031,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.050 StageVerifyEC7NADBE=0 @@ -2038,6 +2041,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2047,6 +2051,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -2056,6 +2061,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2079,7 +2085,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2090,8 +2096,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2102,7 +2110,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2121,6 +2129,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2148,6 +2157,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2175,6 +2185,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2202,6 +2213,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2229,6 +2241,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2256,6 +2269,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2283,6 +2297,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2310,6 +2325,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2320,7 +2336,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2329,14 +2345,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2346,8 +2419,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2364,6 +2437,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2373,7 +2447,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2391,6 +2521,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2418,6 +2549,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2445,6 +2577,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2519,6 +2652,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -2537,9 +2671,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 11 1.400 1.200 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 - 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 5 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 2 11 1.400 1.200 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 + 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 5 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -4772,7 +4906,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=3 PartialFactorSet=14 [SUPPORT DATA] [TABLE] @@ -4805,7 +4939,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -9.00000 0.00000 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + -9.00000 0.00000 12430000.000 2 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5595,7 +5729,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00525 0.00000 0.00525 0.00525 402 100 P + 0.00525 0.00000 0.00525 0.00525 330 100 3 20.31013 0.00000 23.88641 2.75224 330 85 3 24.19036 0.00000 29.15730 5.50116 330 83 3 28.06438 0.00000 34.42037 8.24346 330 82 3 @@ -6344,7 +6478,7 @@ Status character 0.00000 20.00000 0.00000 0.00000 -1 0 - 0.00000 22.50000 0.00000 0.00000 -1 0 - 0.00000 25.00000 0.00000 0.00000 -1 0 - - 0.00250 25.00000 0.00250 0.00250 402 100 P + 0.00250 25.00000 0.00250 0.00250 330 100 3 2.88113 26.00000 5.73716 1.76721 220 50 2 4.44242 27.00000 11.47432 3.53320 110 39 1 5.93628 28.00000 17.21148 5.29675 110 34 1 @@ -6429,74 +6563,74 @@ Status character 70.90841 142.40000 803.05338 105.71791 1 0 A 71.47015 145.00000 809.59951 106.17346 1 0 A 71.64138 145.00000 737.68503 109.77188 1 0 A - 67.64475 157.80000 713.83705 106.02835 110 0 1 - 59.27626 170.60000 682.04291 99.99646 110 0 1 - 51.40567 183.40000 650.25197 93.95967 110 0 1 - 45.34978 196.20000 618.46368 87.91840 110 0 1 - 42.88369 209.00000 594.62386 84.69702 110 0 1 - 44.37131 209.00000 611.91474 79.81611 110 0 1 - 44.78917 211.00000 616.95190 80.03147 110 0 1 - 45.34628 213.00000 623.66810 80.80384 110 0 1 - 45.90334 215.00000 630.38429 81.57314 110 0 1 - 46.46031 217.00000 637.10049 82.33966 110 0 1 - 46.87799 219.00000 642.13764 82.59399 110 0 1 - 47.15641 219.00000 645.49574 83.61207 110 0 1 - 47.57398 221.00000 650.53288 83.86546 110 0 1 - 48.13065 223.00000 657.24907 84.62523 110 0 1 - 48.68719 225.00000 663.39859 85.38320 110 0 1 - 49.24359 227.00000 585.03183 86.13959 110 0 1 - 49.66079 229.00000 590.05739 86.42539 110 0 1 - 48.63987 229.00000 555.48159 90.78495 110 0 1 - 49.01237 231.00000 558.42293 90.99885 110 0 1 - 49.50837 233.00000 562.34485 91.59373 110 0 1 - 50.00362 235.00000 566.70160 92.18771 110 0 1 - 50.49813 237.00000 651.49134 92.78092 110 0 1 - 50.86856 239.00000 658.48893 93.01373 110 0 1 - 46.20121 239.00000 816.53809 82.90786 110 0 1 - 46.35835 239.90000 820.09140 83.01290 110 0 1 - 46.56798 240.80000 824.82865 83.32073 110 0 1 - 46.77774 241.70000 829.56545 83.62847 110 0 1 - 46.98763 242.60000 834.30178 83.93615 110 0 1 - 47.14512 243.50000 837.85370 84.04744 110 0 1 - 47.37273 243.50000 842.98370 84.89692 110 0 1 - 47.89852 246.50000 854.82011 85.26876 110 0 1 - 48.60052 249.50000 870.59800 86.29346 110 0 1 - 49.30357 252.50000 886.37145 87.31814 110 0 1 - 50.00756 255.50000 868.88105 88.34304 110 0 1 - 50.53608 258.50000 827.42089 88.77446 110 0 1 - 50.74762 258.50000 832.17884 89.48698 110 0 1 - 50.85341 259.10000 834.55739 89.57352 110 0 1 - 50.99449 259.70000 837.72889 89.77868 110 0 1 - 51.13560 260.30000 840.90025 89.98388 110 0 1 - 51.27674 260.90000 844.07145 90.18910 110 0 1 - 51.38261 261.50000 846.44990 90.27772 110 0 1 - 51.56498 261.50000 850.54546 90.87974 110 0 1 - 52.00637 264.00000 860.45345 91.24995 110 0 1 - 52.59521 266.50000 1042.38907 92.10619 110 0 1 - 53.18439 269.00000 1143.07808 92.96316 110 0 1 - 53.77387 271.50000 1155.60004 93.82093 110 0 1 - 54.21615 274.00000 1165.01258 94.22378 110 0 1 - 54.54473 274.00000 1172.08959 95.24063 110 0 1 - 56.18690 276.80000 1183.90872 95.77187 110 0 1 - 60.81012 279.60000 1199.69462 96.86541 110 0 1 - 61.51803 282.40000 1215.51095 97.96023 110 0 1 - 62.22713 285.20000 1231.35554 99.05638 110 0 1 - 62.99828 288.00000 1243.25561 99.62671 110 0 1 - 60.36668 288.00000 1251.19737 100.68027 110 0 1 - 58.51523 290.80000 1263.12200 101.25286 110 0 1 - 59.40813 293.60000 1279.04043 102.35326 110 0 1 - 60.13698 296.40000 1294.98034 103.45513 110 0 1 - 60.86607 299.20000 1310.41740 104.55850 110 0 1 - 61.41301 302.00000 1323.96792 105.16374 110 0 1 - 61.77769 302.00000 1330.91601 106.16233 110 0 1 - 62.32478 304.80000 1342.91554 106.76979 110 0 1 - 63.05432 307.60000 1358.92854 107.87773 110 0 1 - 65.47891 310.40000 1374.95717 108.98721 110 0 1 - 69.43803 313.20000 1391.00048 110.09824 110 0 1 - 69.97524 316.00000 1403.04162 110.73338 110 0 1 - 70.33353 316.00000 1411.07356 111.68765 110 0 1 - 70.87117 318.80000 1423.12779 112.32492 110 0 1 - 69.51878 321.60000 1439.21025 113.44056 110 0 1 + 67.64475 157.80000 713.83705 106.02835 1 0 A + 59.27626 170.60000 682.04291 99.99646 1 0 A + 51.40567 183.40000 650.25197 93.95967 1 0 A + 45.34978 196.20000 618.46368 87.91840 1 0 A + 42.88369 209.00000 594.62386 84.69702 1 0 A + 44.37131 209.00000 611.91474 79.81611 1 0 A + 44.78917 211.00000 616.95190 80.03147 1 0 A + 45.34628 213.00000 623.66810 80.80384 1 0 A + 45.90334 215.00000 630.38429 81.57314 1 0 A + 46.46031 217.00000 637.10049 82.33966 1 0 A + 46.87799 219.00000 642.13764 82.59399 1 0 A + 47.15641 219.00000 645.49574 83.61207 1 0 A + 47.57398 221.00000 650.53288 83.86546 1 0 A + 48.13065 223.00000 657.24907 84.62523 1 0 A + 48.68719 225.00000 663.39859 85.38320 1 0 A + 49.24359 227.00000 585.03183 86.13959 1 0 A + 49.66079 229.00000 590.05739 86.42539 1 0 A + 48.63987 229.00000 555.48159 90.78495 1 0 A + 49.01237 231.00000 558.42293 90.99885 1 0 A + 49.50837 233.00000 562.34485 91.59373 1 0 A + 50.00362 235.00000 566.70160 92.18771 1 0 A + 50.49813 237.00000 651.49134 92.78092 1 0 A + 50.86856 239.00000 658.48893 93.01373 1 0 A + 46.20121 239.00000 816.53809 82.90786 1 0 A + 46.35835 239.90000 820.09140 83.01290 1 0 A + 46.56798 240.80000 824.82865 83.32073 1 0 A + 46.77774 241.70000 829.56545 83.62847 1 0 A + 46.98763 242.60000 834.30178 83.93615 1 0 A + 47.14512 243.50000 837.85370 84.04744 1 0 A + 47.37273 243.50000 842.98370 84.89692 1 0 A + 47.89852 246.50000 854.82011 85.26876 1 0 A + 48.60052 249.50000 870.59800 86.29346 1 0 A + 49.30357 252.50000 886.37145 87.31814 1 0 A + 50.00756 255.50000 868.88105 88.34304 1 0 A + 50.53608 258.50000 827.42089 88.77446 1 0 A + 50.74762 258.50000 832.17884 89.48698 1 0 A + 50.85341 259.10000 834.55739 89.57352 1 0 A + 50.99449 259.70000 837.72889 89.77868 1 0 A + 51.13560 260.30000 840.90025 89.98388 1 0 A + 51.27674 260.90000 844.07145 90.18910 1 0 A + 51.38261 261.50000 846.44990 90.27772 1 0 A + 51.56498 261.50000 850.54546 90.87974 1 0 A + 52.00637 264.00000 860.45345 91.24995 1 0 A + 52.59521 266.50000 1042.38907 92.10619 1 0 A + 53.18439 269.00000 1143.07808 92.96316 1 0 A + 53.77387 271.50000 1155.60004 93.82093 1 0 A + 54.21615 274.00000 1165.01258 94.22378 1 0 A + 54.54473 274.00000 1172.08959 95.24063 1 0 A + 56.18690 276.80000 1183.90872 95.77187 1 0 A + 60.81012 279.60000 1199.69462 96.86541 1 0 A + 61.51803 282.40000 1215.51095 97.96023 1 0 A + 62.22713 285.20000 1231.35554 99.05638 1 0 A + 62.99828 288.00000 1243.25561 99.62671 1 0 A + 60.36668 288.00000 1251.19737 100.68027 1 0 A + 58.51523 290.80000 1263.12200 101.25286 1 0 A + 59.40813 293.60000 1279.04043 102.35326 1 0 A + 60.13698 296.40000 1294.98034 103.45513 1 0 A + 60.86607 299.20000 1310.41740 104.55850 1 0 A + 61.41301 302.00000 1323.96792 105.16374 1 0 A + 61.77769 302.00000 1330.91601 106.16233 1 0 A + 62.32478 304.80000 1342.91554 106.76979 1 0 A + 63.05432 307.60000 1358.92854 107.87773 1 0 A + 65.47891 310.40000 1374.95717 108.98721 1 0 A + 69.43803 313.20000 1391.00048 110.09824 1 0 A + 69.97524 316.00000 1403.04162 110.73338 1 0 A + 70.33353 316.00000 1411.07356 111.68765 1 0 A + 70.87117 318.80000 1423.12779 112.32492 1 0 A + 69.51878 321.60000 1439.21025 113.44056 1 0 A 71.63056 324.40000 1455.30432 114.55773 110 0 1 75.79959 327.20000 1471.40939 115.67643 110 0 1 79.40476 330.00000 1483.49482 116.33742 110 0 1 @@ -10653,7 +10787,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=3 PartialFactorSet=14 [SUPPORT DATA] [TABLE] @@ -10686,7 +10820,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -9.00000 0.00000 12430000.000 1 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + -9.00000 0.00000 12430000.000 2 2 1 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11476,7 +11610,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00525 0.00000 0.00525 0.00525 402 100 P + 0.00525 0.00000 0.00525 0.00525 330 100 3 20.31013 0.00000 23.88641 2.75224 330 85 3 24.19036 0.00000 29.15730 5.50116 330 83 3 28.06438 0.00000 34.42037 8.24346 330 82 3 @@ -12225,7 +12359,7 @@ Status character 0.00000 20.00000 0.00000 0.00000 -1 0 - 0.00000 22.50000 0.00000 0.00000 -1 0 - 0.00000 25.00000 0.00000 0.00000 -1 0 - - 0.00250 25.00000 0.00250 0.00250 402 100 P + 0.00250 25.00000 0.00250 0.00250 330 100 3 2.88113 26.00000 5.73716 1.76721 220 50 2 4.44242 27.00000 11.47432 3.53320 110 39 1 5.93628 28.00000 17.21148 5.29675 110 34 1 @@ -12310,74 +12444,74 @@ Status character 70.90841 142.40000 803.05338 105.71791 1 0 A 71.47015 145.00000 809.59951 106.17346 1 0 A 71.64138 145.00000 737.68503 109.77188 1 0 A - 67.64475 157.80000 713.83705 106.02835 110 0 1 - 59.27626 170.60000 682.04291 99.99646 110 0 1 - 51.40567 183.40000 650.25197 93.95967 110 0 1 - 45.34978 196.20000 618.46368 87.91840 110 0 1 - 42.88369 209.00000 594.62386 84.69702 110 0 1 - 44.37131 209.00000 611.91474 79.81611 110 0 1 - 44.78917 211.00000 616.95190 80.03147 110 0 1 - 45.34628 213.00000 623.66810 80.80384 110 0 1 - 45.90334 215.00000 630.38429 81.57314 110 0 1 - 46.46031 217.00000 637.10049 82.33966 110 0 1 - 46.87799 219.00000 642.13764 82.59399 110 0 1 - 47.15641 219.00000 645.49574 83.61207 110 0 1 - 47.57398 221.00000 650.53288 83.86546 110 0 1 - 48.13065 223.00000 657.24907 84.62523 110 0 1 - 48.68719 225.00000 663.39859 85.38320 110 0 1 - 49.24359 227.00000 585.03183 86.13959 110 0 1 - 49.66079 229.00000 590.05739 86.42539 110 0 1 - 48.63987 229.00000 555.48159 90.78495 110 0 1 - 49.01237 231.00000 558.42293 90.99885 110 0 1 - 49.50837 233.00000 562.34485 91.59373 110 0 1 - 50.00362 235.00000 566.70160 92.18771 110 0 1 - 50.49813 237.00000 651.49134 92.78092 110 0 1 - 50.86856 239.00000 658.48893 93.01373 110 0 1 - 46.20121 239.00000 816.53809 82.90786 110 0 1 - 46.35835 239.90000 820.09140 83.01290 110 0 1 - 46.56798 240.80000 824.82865 83.32073 110 0 1 - 46.77774 241.70000 829.56545 83.62847 110 0 1 - 46.98763 242.60000 834.30178 83.93615 110 0 1 - 47.14512 243.50000 837.85370 84.04744 110 0 1 - 47.37273 243.50000 842.98370 84.89692 110 0 1 - 47.89852 246.50000 854.82011 85.26876 110 0 1 - 48.60052 249.50000 870.59800 86.29346 110 0 1 - 49.30357 252.50000 886.37145 87.31814 110 0 1 - 50.00756 255.50000 868.88105 88.34304 110 0 1 - 50.53608 258.50000 827.42089 88.77446 110 0 1 - 50.74762 258.50000 832.17884 89.48698 110 0 1 - 50.85341 259.10000 834.55739 89.57352 110 0 1 - 50.99449 259.70000 837.72889 89.77868 110 0 1 - 51.13560 260.30000 840.90025 89.98388 110 0 1 - 51.27674 260.90000 844.07145 90.18910 110 0 1 - 51.38261 261.50000 846.44990 90.27772 110 0 1 - 51.56498 261.50000 850.54546 90.87974 110 0 1 - 52.00637 264.00000 860.45345 91.24995 110 0 1 - 52.59521 266.50000 1042.38907 92.10619 110 0 1 - 53.18439 269.00000 1143.07808 92.96316 110 0 1 - 53.77387 271.50000 1155.60004 93.82093 110 0 1 - 54.21615 274.00000 1165.01258 94.22378 110 0 1 - 54.54473 274.00000 1172.08959 95.24063 110 0 1 - 56.18690 276.80000 1183.90872 95.77187 110 0 1 - 60.81012 279.60000 1199.69462 96.86541 110 0 1 - 61.51803 282.40000 1215.51095 97.96023 110 0 1 - 62.22713 285.20000 1231.35554 99.05638 110 0 1 - 62.99828 288.00000 1243.25561 99.62671 110 0 1 - 60.36668 288.00000 1251.19737 100.68027 110 0 1 - 58.51523 290.80000 1263.12200 101.25286 110 0 1 - 59.40813 293.60000 1279.04043 102.35326 110 0 1 - 60.13698 296.40000 1294.98034 103.45513 110 0 1 - 60.86607 299.20000 1310.41740 104.55850 110 0 1 - 61.41301 302.00000 1323.96792 105.16374 110 0 1 - 61.77769 302.00000 1330.91601 106.16233 110 0 1 - 62.32478 304.80000 1342.91554 106.76979 110 0 1 - 63.05432 307.60000 1358.92854 107.87773 110 0 1 - 65.47891 310.40000 1374.95717 108.98721 110 0 1 - 69.43803 313.20000 1391.00048 110.09824 110 0 1 - 69.97524 316.00000 1403.04162 110.73338 110 0 1 - 70.33353 316.00000 1411.07356 111.68765 110 0 1 - 70.87117 318.80000 1423.12779 112.32492 110 0 1 - 69.51878 321.60000 1439.21025 113.44056 110 0 1 + 67.64475 157.80000 713.83705 106.02835 1 0 A + 59.27626 170.60000 682.04291 99.99646 1 0 A + 51.40567 183.40000 650.25197 93.95967 1 0 A + 45.34978 196.20000 618.46368 87.91840 1 0 A + 42.88369 209.00000 594.62386 84.69702 1 0 A + 44.37131 209.00000 611.91474 79.81611 1 0 A + 44.78917 211.00000 616.95190 80.03147 1 0 A + 45.34628 213.00000 623.66810 80.80384 1 0 A + 45.90334 215.00000 630.38429 81.57314 1 0 A + 46.46031 217.00000 637.10049 82.33966 1 0 A + 46.87799 219.00000 642.13764 82.59399 1 0 A + 47.15641 219.00000 645.49574 83.61207 1 0 A + 47.57398 221.00000 650.53288 83.86546 1 0 A + 48.13065 223.00000 657.24907 84.62523 1 0 A + 48.68719 225.00000 663.39859 85.38320 1 0 A + 49.24359 227.00000 585.03183 86.13959 1 0 A + 49.66079 229.00000 590.05739 86.42539 1 0 A + 48.63987 229.00000 555.48159 90.78495 1 0 A + 49.01237 231.00000 558.42293 90.99885 1 0 A + 49.50837 233.00000 562.34485 91.59373 1 0 A + 50.00362 235.00000 566.70160 92.18771 1 0 A + 50.49813 237.00000 651.49134 92.78092 1 0 A + 50.86856 239.00000 658.48893 93.01373 1 0 A + 46.20121 239.00000 816.53809 82.90786 1 0 A + 46.35835 239.90000 820.09140 83.01290 1 0 A + 46.56798 240.80000 824.82865 83.32073 1 0 A + 46.77774 241.70000 829.56545 83.62847 1 0 A + 46.98763 242.60000 834.30178 83.93615 1 0 A + 47.14512 243.50000 837.85370 84.04744 1 0 A + 47.37273 243.50000 842.98370 84.89692 1 0 A + 47.89852 246.50000 854.82011 85.26876 1 0 A + 48.60052 249.50000 870.59800 86.29346 1 0 A + 49.30357 252.50000 886.37145 87.31814 1 0 A + 50.00756 255.50000 868.88105 88.34304 1 0 A + 50.53608 258.50000 827.42089 88.77446 1 0 A + 50.74762 258.50000 832.17884 89.48698 1 0 A + 50.85341 259.10000 834.55739 89.57352 1 0 A + 50.99449 259.70000 837.72889 89.77868 1 0 A + 51.13560 260.30000 840.90025 89.98388 1 0 A + 51.27674 260.90000 844.07145 90.18910 1 0 A + 51.38261 261.50000 846.44990 90.27772 1 0 A + 51.56498 261.50000 850.54546 90.87974 1 0 A + 52.00637 264.00000 860.45345 91.24995 1 0 A + 52.59521 266.50000 1042.38907 92.10619 1 0 A + 53.18439 269.00000 1143.07808 92.96316 1 0 A + 53.77387 271.50000 1155.60004 93.82093 1 0 A + 54.21615 274.00000 1165.01258 94.22378 1 0 A + 54.54473 274.00000 1172.08959 95.24063 1 0 A + 56.18690 276.80000 1183.90872 95.77187 1 0 A + 60.81012 279.60000 1199.69462 96.86541 1 0 A + 61.51803 282.40000 1215.51095 97.96023 1 0 A + 62.22713 285.20000 1231.35554 99.05638 1 0 A + 62.99828 288.00000 1243.25561 99.62671 1 0 A + 60.36668 288.00000 1251.19737 100.68027 1 0 A + 58.51523 290.80000 1263.12200 101.25286 1 0 A + 59.40813 293.60000 1279.04043 102.35326 1 0 A + 60.13698 296.40000 1294.98034 103.45513 1 0 A + 60.86607 299.20000 1310.41740 104.55850 1 0 A + 61.41301 302.00000 1323.96792 105.16374 1 0 A + 61.77769 302.00000 1330.91601 106.16233 1 0 A + 62.32478 304.80000 1342.91554 106.76979 1 0 A + 63.05432 307.60000 1358.92854 107.87773 1 0 A + 65.47891 310.40000 1374.95717 108.98721 1 0 A + 69.43803 313.20000 1391.00048 110.09824 1 0 A + 69.97524 316.00000 1403.04162 110.73338 1 0 A + 70.33353 316.00000 1411.07356 111.68765 1 0 A + 70.87117 318.80000 1423.12779 112.32492 1 0 A + 69.51878 321.60000 1439.21025 113.44056 1 0 A 71.63056 324.40000 1455.30432 114.55773 110 0 1 75.79959 327.20000 1471.40939 115.67643 110 0 1 79.40476 330.00000 1483.49482 116.33742 110 0 1 @@ -16185,7 +16319,7 @@ Status character 4.28224 27.50000 8.21299 3.65564 220 52 2 6.18448 28.50000 12.31949 5.48042 220 50 2 7.70705 29.50000 16.42599 7.30156 110 47 1 - 8.66102 30.50000 19.50586 8.66102 110 0 1 + 8.66102 30.50000 19.50586 8.66102 110 44 1 9.57554 30.50000 21.55911 9.57554 110 44 1 10.48076 31.50000 24.63898 10.92820 110 0 1 11.79595 32.50000 28.74548 12.73137 110 0 1 @@ -18315,7 +18449,7 @@ Status character 4.47090 27.50000 10.40358 3.55910 110 43 1 5.97698 28.50000 15.60538 5.33562 110 38 1 7.44639 29.50000 20.80717 7.10849 110 36 1 - 8.43177 30.50000 24.70851 8.43177 110 0 1 + 8.43177 30.50000 24.70851 8.43177 110 34 1 9.32209 30.50000 27.30941 9.32209 110 34 1 10.26539 31.50000 31.21075 10.63859 110 0 1 11.61305 32.50000 36.41254 12.39349 110 0 1 @@ -22282,7 +22416,7 @@ Status character 4.60437 27.50000 8.21299 3.65564 220 56 2 6.41112 28.50000 12.31949 5.48042 220 52 2 8.14495 29.50000 16.42599 7.30156 110 50 1 - 8.66102 30.50000 19.50586 8.66102 110 0 1 + 8.66102 30.50000 19.50586 8.66102 110 44 1 9.57554 30.50000 21.55911 9.57554 110 44 1 9.99690 31.50000 24.63898 10.92820 110 0 1 10.78389 32.50000 28.74548 12.73137 110 0 1 @@ -24412,7 +24546,7 @@ Status character 4.47856 27.50000 10.40358 3.55910 110 43 1 5.98241 28.50000 15.60538 5.33562 110 38 1 7.44927 29.50000 20.80717 7.10849 110 36 1 - 8.43177 30.50000 24.70851 8.43177 110 0 1 + 8.43177 30.50000 24.70851 8.43177 110 34 1 9.32209 30.50000 27.30941 9.32209 110 34 1 10.26217 31.50000 31.21075 10.63859 110 0 1 11.60628 32.50000 36.41254 12.39349 110 0 1 @@ -27412,8 +27546,8 @@ Lambda passive -23.69000 0.00000 30.90675 20.55688 0.00000 0.00000 0.00000 -23.75000 0.00000 26.58739 20.46079 0.00000 0.00000 0.00000 -23.75000 0.00000 18.70888 20.29553 0.00000 0.00000 0.00000 - -24.00000 0.00000 1.26804 19.87279 0.00000 0.00000 0.00000 - -24.25000 0.00000 1.26804 19.19080 0.00000 0.00000 0.00000 + -24.00000 0.00000 2.53608 19.87279 0.00000 0.00000 0.00000 + -24.25000 0.00000 0.00000 19.19080 0.00000 0.00000 0.00000 -24.50000 0.00000 5.30420 18.49607 0.00000 0.00000 0.00000 -24.75000 0.00000 33.51978 17.80876 0.00000 0.00000 0.00000 -25.00000 0.14586 55.59565 17.29818 249.93857 158.12897 508.22002 @@ -28337,7 +28471,7 @@ Status character 4.29479 27.50000 8.21299 3.65564 220 52 2 6.19330 28.50000 12.31949 5.48042 220 50 2 7.72406 29.50000 16.42599 7.30156 110 47 1 - 8.66102 30.50000 19.50586 8.66102 110 0 1 + 8.66102 30.50000 19.50586 8.66102 110 44 1 9.57554 30.50000 21.55911 9.57554 110 44 1 10.46202 31.50000 24.63898 10.92820 110 0 1 11.75679 32.50000 28.74548 12.73137 110 0 1 @@ -30461,7 +30595,7 @@ Status character 4.47072 27.50000 10.40358 3.55910 110 43 1 5.97685 28.50000 15.60538 5.33562 110 38 1 7.44633 29.50000 20.80717 7.10849 110 36 1 - 8.43177 30.50000 24.70851 8.43177 110 0 1 + 8.43177 30.50000 24.70851 8.43177 110 34 1 9.32209 30.50000 27.30941 9.32209 110 34 1 10.26546 31.50000 31.21075 10.63859 110 0 1 11.61320 32.50000 36.41254 12.39349 110 0 1 @@ -31609,8 +31743,8 @@ Lambda passive -23.69000 0.00000 30.90675 20.55688 0.00000 0.00000 0.00000 -23.75000 0.00000 26.58739 20.46079 0.00000 0.00000 0.00000 -23.75000 0.00000 18.70888 20.29553 0.00000 0.00000 0.00000 - -24.00000 0.00000 1.26804 19.87279 0.00000 0.00000 0.00000 - -24.25000 0.00000 1.26804 19.19080 0.00000 0.00000 0.00000 + -24.00000 0.00000 2.53608 19.87279 0.00000 0.00000 0.00000 + -24.25000 0.00000 0.00000 19.19080 0.00000 0.00000 0.00000 -24.50000 0.00000 5.30420 18.49607 0.00000 0.00000 0.00000 -24.75000 0.00000 33.51978 17.80876 0.00000 0.00000 0.00000 -25.00000 0.14586 55.59565 17.29818 249.93857 158.12897 508.22002 @@ -32534,7 +32668,7 @@ Status character 4.63727 27.50000 8.21299 3.65564 220 56 2 6.43423 28.50000 12.31949 5.48042 220 52 2 8.18954 29.50000 16.42599 7.30156 110 50 1 - 8.66102 30.50000 19.50586 8.66102 110 0 1 + 8.66102 30.50000 19.50586 8.66102 110 44 1 9.57554 30.50000 21.55911 9.57554 110 44 1 9.94778 31.50000 24.63898 10.92820 110 0 1 10.68123 32.50000 28.74548 12.73137 110 0 1 @@ -34658,7 +34792,7 @@ Status character 4.47885 27.50000 10.40358 3.55910 110 43 1 5.98261 28.50000 15.60538 5.33562 110 38 1 7.44938 29.50000 20.80717 7.10849 110 36 1 - 8.43177 30.50000 24.70851 8.43177 110 0 1 + 8.43177 30.50000 24.70851 8.43177 110 34 1 9.32209 30.50000 27.30941 9.32209 110 34 1 10.26205 31.50000 31.21075 10.63859 110 0 1 11.60603 32.50000 36.41254 12.39349 110 0 1 @@ -34955,8 +35089,8 @@ AnchorName 3 5 7 14 1.000 17.44803 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 3 0 7 14 1.000 24.78585 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 3 1 7 14 1.000 16.92293 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' - 3 3 7 14 1.000 0.00000 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' - 3 14 7 14 1.200 0.00000 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + 3 3 7 14 1.000 0.00000 1 2 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' + 3 14 7 14 1.200 0.00000 1 2 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 3 2 0 14 1.000 25.43201 1 1 0 0 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' 4 12 7 4 1.000 0.00000 0 1 0 6 '---' 5 4 7 0 1.000 0.00000 1 1 0 5 'Stempels Beton BxH=1,5 x 1,0m, hoh=6m' diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shi index 36917a19..b54dea7a 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects17.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:01:44 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects17.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:50:35 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects17.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2010,6 +2010,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2019,6 +2020,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=0.900 StageVerifyEC7NADBE=0 @@ -2028,6 +2030,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.050 StageVerifyEC7NADBE=0 @@ -2037,6 +2040,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2046,6 +2050,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=4 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.100 StageVerifyEC7NADBE=0 @@ -2055,6 +2060,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2078,7 +2084,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=2 DesignEC7NLMethod=1 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2089,8 +2095,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2101,7 +2109,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=2 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2120,6 +2128,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2147,6 +2156,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2174,6 +2184,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2201,6 +2212,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2228,6 +2240,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2255,6 +2268,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2282,6 +2296,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2309,6 +2324,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2319,7 +2335,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2328,14 +2344,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2345,8 +2418,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2363,6 +2436,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2372,7 +2446,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2390,6 +2520,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2417,6 +2548,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2444,6 +2576,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shd index 0851f41c..0424b1f4 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:04:52 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects18.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:52:22 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects18.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1279,6 +1279,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1288,6 +1289,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1297,6 +1299,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1306,6 +1309,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1315,6 +1319,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1324,6 +1329,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1333,6 +1339,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1342,6 +1349,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1365,7 +1373,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1376,8 +1384,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1388,7 +1398,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1407,6 +1417,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1434,6 +1445,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1461,6 +1473,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1488,6 +1501,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1515,6 +1529,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1542,6 +1557,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1569,6 +1585,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1596,6 +1613,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1606,7 +1624,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1621,8 +1695,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1632,8 +1707,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1650,6 +1725,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1659,7 +1735,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1677,6 +1809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1704,6 +1837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1731,6 +1865,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1803,6 +1938,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1821,8 +1957,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.000 0.000 0.000 1.100 1.000 1.000 - -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.350 1.100 1.000 1.000 0.000 0.000 1.100 1.000 1.000 + -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2034,10 +2170,10 @@ PartialFactorSet=0 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.65 : Percentage mobilized resistance left - 11.65 : Percentage mobilized resistance right - 272.01 : Effective left - 272.01 : Effective right + 11.60 : Percentage mobilized resistance left + 11.60 : Percentage mobilized resistance right + 270.83 : Effective left + 270.83 : Effective right 1089.18 : Water pressure left 1089.18 : Water pressure right 2335.10 : Max effective resistance left @@ -2046,8 +2182,8 @@ PartialFactorSet=0 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 80.70 : Vertical force left - 80.70 : Vertical force right + 80.21 : Vertical force left + 80.21 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -2056,10 +2192,10 @@ PartialFactorSet=0 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --80.70 : Active force -80.70 : Passive force --80.70 : Plugged active force -80.70 : Plugged passive force +-80.21 : Active force +80.21 : Passive force +-80.21 : Plugged active force +80.21 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -2554,7 +2690,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -2566,7 +2702,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -2596,7 +2732,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -2626,13 +2762,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -2733,72 +2869,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 220 100 2 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -2806,15 +2942,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -2828,41 +2964,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -2879,11 +3015,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -2902,10 +3038,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 1.45 'Oude Zeeklei' - -7.00 13.63 'Wadzand' - -10.00 12.92 'Hydrobiaklei' + -7.00 13.59 'Wadzand' + -10.00 12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 52.70 'Eerste zandlaag' + -12.50 52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3198,7 +3334,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -3210,7 +3346,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -3240,7 +3376,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.89423 11.43371 0.57738 0.29942 2.98260 + -10.00000 38.13500 113.89423 11.43371 0.69929 0.29942 2.98260 -10.03800 38.33982 114.24671 11.50660 0.69929 0.30012 2.97984 -10.07600 38.54464 114.71714 11.60375 0.69929 0.30105 2.97622 -10.11400 38.74946 115.18811 11.70088 0.69929 0.30196 2.97264 @@ -3270,13 +3406,13 @@ Lambda passive -11.81800 47.93402 136.70075 16.03900 0.69929 0.33461 2.85185 -11.90900 48.42451 137.86472 16.27022 0.69929 0.33599 2.84700 -12.00000 48.91500 138.73837 16.44361 0.69929 0.33701 2.84344 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -3377,72 +3513,72 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00010 30.41100 0.00010 0.00010 220 100 2 - 0.02891 31.39200 2.67269 0.02891 110 0 1 - 0.05781 32.37300 2.73893 0.05781 110 0 1 + 0.02891 31.39200 2.67269 0.02891 110 1 1 + 0.05781 32.37300 2.73893 0.05781 110 2 1 0.08672 33.35400 2.80516 0.08672 110 3 1 0.11562 34.33500 2.87140 0.11562 110 4 1 0.13730 35.31600 2.92108 0.13730 110 5 1 - 0.15176 35.31600 2.95420 0.15176 110 0 1 + 0.15176 35.31600 2.95420 0.15176 110 5 1 0.17344 36.29700 3.00388 0.17344 110 6 1 0.20234 37.27800 3.07011 0.20234 110 7 1 - 0.23125 38.25900 3.13635 0.23125 110 0 1 + 0.23125 38.25900 3.13635 0.23125 110 7 1 0.26015 39.24000 3.20259 0.26015 110 8 1 - 0.28183 40.22100 3.25227 0.28183 110 0 1 - 0.29629 40.22100 3.28538 0.29629 110 0 1 + 0.28183 40.22100 3.25227 0.28183 110 9 1 + 0.29629 40.22100 3.28538 0.29629 110 9 1 0.31797 41.20200 3.33506 0.31797 110 10 1 0.34687 42.18300 3.40130 0.34687 110 10 1 0.37578 43.16400 3.46754 0.37578 110 11 1 0.40468 44.14500 3.53378 0.40468 110 11 1 0.42636 45.12600 3.58345 0.42636 110 12 1 - 0.44371 45.12600 3.62320 0.44371 110 0 1 + 0.44371 45.12600 3.62320 0.44371 110 12 1 0.47406 46.49940 3.69275 0.47406 110 13 1 - 0.51453 47.87280 3.78548 0.51453 110 0 1 + 0.51453 47.87280 3.78548 0.51453 110 14 1 0.55500 49.24620 3.87821 0.55500 110 14 1 - 0.59546 50.61960 3.97094 0.59546 110 0 1 + 0.59546 50.61960 3.97094 0.59546 110 15 1 0.62582 51.99300 4.04049 0.62582 110 15 1 - 0.88251 51.99300 22.41287 0.88251 110 4 1 + 0.83263 51.99300 22.41287 0.83263 110 4 1 1.53055 52.76830 24.40890 1.53055 110 6 1 2.46110 53.54360 27.43263 2.46110 110 9 1 - 3.39165 54.31890 30.58716 3.39165 110 0 1 - 4.32220 55.09420 33.78746 4.32220 110 0 1 + 3.39165 54.31890 30.58716 3.39165 110 11 1 + 4.32220 55.09420 33.78746 4.32220 110 13 1 5.02011 55.86950 36.20132 5.02011 110 14 1 5.48539 55.86950 37.81477 5.48539 110 15 1 6.18330 56.64480 40.23886 6.18330 110 15 1 7.11385 57.42010 43.47527 7.11385 110 16 1 8.04440 58.19540 46.71492 8.04440 110 17 1 - 8.97495 58.97070 49.95650 8.97495 110 0 1 - 9.67286 59.74600 52.38847 9.67286 110 0 1 - 10.11433 59.74600 61.54218 10.11433 110 16 1 + 8.97495 58.97070 49.95650 8.97495 110 18 1 + 9.67286 59.74600 52.38847 9.67286 110 18 1 + 8.35103 59.74600 61.54218 8.35103 110 14 1 8.86830 61.21260 63.88663 8.86830 110 14 1 9.55798 62.67919 67.59209 9.55798 110 14 1 10.24767 64.14579 71.64663 10.24767 110 14 1 - 10.93735 65.61238 75.88855 10.93735 110 0 1 + 10.93735 65.61238 75.88855 10.93735 110 14 1 11.45462 67.07898 79.14497 11.45462 110 14 1 - 11.79946 67.07898 81.34468 11.79946 110 0 1 + 11.79946 67.07898 81.34468 11.79946 110 15 1 12.31672 68.54557 84.67666 12.31672 110 15 1 - 13.00641 70.01217 89.16116 13.00641 110 0 1 + 13.00641 70.01217 89.16116 13.00641 110 15 1 13.69610 71.47876 93.68382 13.69610 110 15 1 - 14.38578 72.94536 98.23499 14.38578 110 0 1 + 14.38578 72.94536 98.23499 14.38578 110 15 1 14.90304 74.41195 101.66238 14.90304 110 15 1 15.24789 74.41195 103.95346 15.24789 110 15 1 15.76515 75.87855 107.39780 15.76515 110 15 1 - 16.45484 77.34514 112.00108 16.45484 110 0 1 + 16.45484 77.34514 112.00108 16.45484 110 15 1 17.14452 78.81174 116.61510 17.14452 110 15 1 17.83421 80.27833 121.23784 17.83421 110 15 1 - 18.35147 81.74492 124.70944 18.35147 110 0 1 + 18.35147 81.74492 124.70944 18.35147 110 15 1 18.69631 81.74492 127.02595 18.69631 110 15 1 19.21358 83.21152 130.50344 19.21358 110 15 1 - 19.90326 84.67811 135.14409 19.90326 110 0 1 - 20.59295 86.14471 139.78885 20.59295 110 0 1 - 21.28263 87.61131 144.43708 21.28263 110 0 1 + 19.90326 84.67811 135.14409 19.90326 110 15 1 + 20.59295 86.14471 139.78885 20.59295 110 15 1 + 21.28263 87.61131 144.43708 21.28263 110 15 1 21.79990 89.07790 147.92513 21.79990 110 15 1 - 21.97463 89.07790 149.10372 21.97463 110 0 1 + 21.97463 89.07790 149.10372 21.97463 110 15 1 21.98155 89.09752 149.15039 21.98155 110 15 1 21.99077 89.11714 149.21264 21.99077 110 15 1 22.00000 89.13676 149.27489 22.00000 110 15 1 22.00923 89.15638 149.33715 22.00923 110 15 1 22.01615 89.17600 149.38373 22.01615 110 15 1 - 22.04802 89.17600 113.89423 22.04802 110 0 1 + 26.70339 89.17600 113.89423 26.70339 110 23 1 26.81081 89.54878 114.24671 26.81081 110 23 1 26.95404 89.92156 114.71714 26.95404 110 23 1 27.09727 90.29434 115.18811 27.09727 110 24 1 @@ -3450,15 +3586,15 @@ Status character 27.34792 91.03990 116.01357 27.34792 110 24 1 27.49681 91.03990 116.50467 27.49681 110 24 1 27.83604 92.21710 117.62563 27.83604 110 24 1 - 28.28834 93.39430 119.12407 28.28834 110 0 1 + 28.28834 93.39430 119.12407 28.28834 110 24 1 28.74064 94.57150 120.62677 28.74064 110 24 1 29.19295 95.74870 122.13344 29.19295 110 24 1 29.53217 96.92590 123.26574 29.53217 110 24 1 - 29.70179 96.92590 123.83267 29.70179 110 0 1 - 29.87140 97.51450 124.40012 29.87140 110 0 1 + 29.70179 96.92590 123.83267 29.70179 110 24 1 + 29.87140 97.51450 124.40012 29.87140 110 24 1 30.09755 98.10310 125.15740 30.09755 110 24 1 30.32370 98.69170 125.91548 30.32370 110 24 1 - 30.54986 99.28030 126.67432 30.54986 110 0 1 + 30.54986 99.28030 126.67432 30.54986 110 24 1 30.71947 99.86890 127.24391 30.71947 110 24 1 30.86176 99.86890 127.72208 30.86176 110 24 1 31.11900 100.76161 128.58732 31.11900 110 24 1 @@ -3472,41 +3608,41 @@ Status character 33.51998 107.01058 136.70075 33.51998 110 25 1 33.86298 107.90329 137.86472 33.86298 110 25 1 34.12023 108.79600 138.73837 34.12023 110 25 1 - 34.76349 108.79600 98.09256 34.76349 110 35 1 + 36.84577 108.79600 98.09256 36.84577 110 38 1 38.61849 106.77700 102.36444 38.61849 110 38 1 40.98212 104.75800 108.04901 40.98212 110 38 1 43.34574 102.73900 113.72005 43.34574 110 38 1 45.70937 100.72000 119.37761 45.70937 110 38 1 47.48209 98.70100 123.61241 47.48209 110 38 1 - 48.33734 98.70100 390.85160 48.33734 110 0 1 + 30.65709 98.70100 390.85160 30.65709 110 8 1 31.16005 100.07440 393.38074 31.16005 110 8 1 31.83067 101.44780 398.08066 31.83067 110 8 1 32.50129 102.82120 403.76930 32.50129 110 8 1 - 33.17191 104.19460 410.07478 33.17191 110 0 1 + 33.17191 104.19460 410.07478 33.17191 110 8 1 33.67487 105.56800 415.07230 33.67487 110 8 1 - 34.01018 105.56800 418.51230 34.01018 110 0 1 + 34.01018 105.56800 418.51230 34.01018 110 8 1 34.51314 106.94140 423.79885 34.51314 110 8 1 35.18376 108.31480 431.01578 35.18376 110 8 1 35.85437 109.68820 438.39038 35.85437 110 8 1 36.52499 111.06160 445.88598 36.52499 110 8 1 37.02795 112.43500 451.56851 37.02795 110 8 1 37.36326 112.43500 455.38404 37.36326 110 8 1 - 37.86623 113.80840 461.14192 37.86623 110 0 1 - 38.53684 115.18180 468.86838 38.53684 110 0 1 + 37.86623 113.80840 461.14192 37.86623 110 8 1 + 38.53684 115.18180 468.86838 38.53684 110 8 1 39.20746 116.55520 476.64455 39.20746 110 8 1 39.87808 117.92860 484.46180 39.87808 110 8 1 40.38104 119.30200 490.34660 40.38104 110 8 1 - 40.71635 119.30200 494.28002 40.71635 110 0 1 + 40.71635 119.30200 494.28002 40.71635 110 8 1 41.21931 120.67540 500.19366 41.21931 110 8 1 - 41.88993 122.04880 508.09847 41.88993 110 0 1 - 42.56055 123.42220 516.02417 42.56055 110 0 1 - 43.23116 124.79560 523.96782 43.23116 110 0 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56055 123.42220 516.02417 42.56055 110 8 1 + 43.23116 124.79560 523.96782 43.23116 110 8 1 43.73413 126.16900 529.93544 43.73413 110 8 1 44.06943 126.16900 533.91858 44.06943 110 8 1 44.57240 127.54240 539.89970 44.57240 110 8 1 - 45.24301 128.91580 547.88418 45.24301 110 0 1 - 45.91363 130.28920 555.87903 45.91363 110 0 1 - 46.58425 131.66260 563.88300 46.58425 110 0 1 + 45.24301 128.91580 547.88418 45.24301 110 8 1 + 45.91363 130.28920 555.87903 45.91363 110 8 1 + 46.58425 131.66260 563.88300 46.58425 110 8 1 47.08721 133.03600 569.89109 47.08721 110 8 1 [END OF DATA] [END OF TABLE] @@ -3523,11 +3659,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.699 'Hollandveen' - -5.70 6.832 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.785 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.290 'Eerste zandlaag' + -5.70 6.829 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -3546,10 +3682,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -1.45 'Oude Zeeklei' - -7.00 -13.63 'Wadzand' - -10.00 -12.92 'Hydrobiaklei' + -7.00 -13.59 'Wadzand' + -10.00 -12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -52.70 'Eerste zandlaag' + -12.50 -52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3771,7 +3907,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 94.38245 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 94.35084 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3796,21 +3932,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 8.75 : Percentage mobilized resistance left - 17.56 : Percentage mobilized resistance right - 201.12 : Effective left - 268.69 : Effective right + 8.72 : Percentage mobilized resistance left + 17.50 : Percentage mobilized resistance right + 200.31 : Effective left + 267.85 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2298.14 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -24405.26 : Max moment left --16790.25 : Max moment right --2115.39 : Max mobilized moment left --2405.36 : Max mobilized moment right - 60.08 : Vertical force left - 75.28 : Vertical force right - 8.7 : Max mobilized moment percentage left +-16790.18 : Max moment right +-2106.14 : Max mobilized moment left +-2396.13 : Max mobilized moment right + 59.76 : Vertical force left + 75.05 : Vertical force right + 8.6 : Max mobilized moment percentage left 14.3 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support @@ -3818,17 +3954,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --60.08 : Active force -75.28 : Passive force --60.08 : Plugged active force -75.28 : Plugged passive force +-59.76 : Active force +75.05 : Passive force +-59.76 : Plugged active force +75.05 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -15.20 : Resulting Vertical Force Unplugged -15.20 : Resulting Vertical Force Plugged +15.29 : Resulting Vertical Force Unplugged +15.29 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -3841,192 +3977,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -16.85913 - 0.00000 0.00000 -16.38121 - 0.00000 0.00000 -15.90329 - 0.00000 0.00000 -15.42537 - 0.00000 0.00000 -14.94745 - 0.00000 0.00000 -14.46953 - 0.00000 0.00000 -14.46953 - 0.00000 0.00000 -13.99161 - 0.00000 0.00000 -13.51369 - 0.00000 0.00000 -13.03577 - 0.00000 0.00000 -12.55785 - 0.00000 0.00000 -12.07993 - 0.00000 0.00000 -12.07993 - -0.00283 -0.07063 -11.44270 - -0.02260 -0.28253 -10.80548 - -0.07628 -0.63569 -10.16825 - -0.18082 -1.13011 -9.53100 - -0.35316 -1.76580 -8.89371 - -0.35316 -1.76580 -8.89371 - -0.56080 -2.40345 -8.36260 - -0.83712 -3.13920 -7.83143 - -1.19191 -3.97305 -7.30013 - -1.63500 -4.90500 -6.76868 - -2.17618 -5.93505 -6.23702 - -2.17618 -5.93505 -6.23702 - -2.82528 -7.06320 -5.70511 - -3.59209 -8.28945 -5.17284 - -4.48644 -9.61380 -4.64010 - -5.51812 -11.03625 -4.10678 - -6.69696 -12.55680 -3.57277 - -6.69696 148.14320 -3.57277 - 5.98427 146.75707 -3.11308 - 18.54318 145.29838 -2.65395 - 30.97351 143.76714 -2.19654 - 43.26904 142.16334 -1.74200 - 55.42353 140.48699 -1.29149 - 55.42353 46.10453 -1.29149 - 60.54762 43.77056 -0.70221 - 65.39837 41.30909 -0.12284 - 69.96125 38.72013 0.44587 - 74.22172 36.00369 1.00317 - 78.16524 33.15975 1.54831 - 78.16537 33.15593 1.54831 - 80.74097 31.29320 1.92324 - 83.18042 29.73580 2.29165 - 85.50551 28.43391 2.65337 - 87.73665 27.38708 3.00820 - 89.89325 26.55800 3.35595 - 89.89324 26.55799 3.35595 - 90.42282 26.40198 3.44177 - 90.94941 26.25954 3.52712 - 91.47331 26.13298 3.61202 - 91.99483 26.02228 3.69646 - 92.51429 25.92513 3.78043 - 92.51407 25.93025 3.78043 - 95.00576 23.90622 4.19324 - 97.29562 21.89136 4.59407 - 99.38412 19.87927 4.98267 - 101.27163 17.87171 5.35878 - 102.95866 15.87013 5.72212 - 102.95868 15.87041 5.72212 - 104.44588 13.87466 6.07247 - 105.73386 11.88617 6.40965 - 106.82335 9.90494 6.73354 - 107.71510 7.93116 7.04399 - 108.40984 5.96489 7.34087 - 108.40984 5.96503 7.34087 - 108.90837 4.00683 7.62406 - 109.21143 2.05564 7.89353 - 109.31975 0.11186 8.14927 - 109.23405 -1.82464 8.39126 - 108.95505 -3.75421 8.61948 - 108.95503 -3.75394 8.61948 - 108.24109 -6.44315 8.91586 - 107.15154 -9.11969 9.18551 - 105.68816 -11.78383 9.42879 - 103.85262 -14.43620 9.64606 - 101.64651 -17.07801 9.83767 - 101.64649 -17.07737 9.83767 - 99.39062 -17.59812 9.99306 - 97.07835 -17.94865 10.12729 - 94.73084 -18.14055 10.24085 - 92.36860 -18.17566 10.33425 - 90.01323 -18.02472 10.40799 - 90.01328 -18.02429 10.40799 - 87.62009 -18.99721 10.46254 - 85.05617 -20.38184 10.49843 - 82.33793 -21.37127 10.51624 - 79.51676 -21.96550 10.51655 - 76.64403 -22.16453 10.49992 - 76.64403 -22.16453 10.49992 - 73.33031 -22.16618 10.46064 - 70.01634 -22.16782 10.40072 - 66.70213 -22.16947 10.32108 - 63.38767 -22.17111 10.22267 - 60.07297 -22.17275 10.10640 - 60.07297 -22.17275 10.10640 - 56.75026 -22.32999 9.97319 - 53.36799 -23.05535 9.82400 - 49.83462 -24.22414 9.65982 - 46.12174 -25.45781 9.48165 - 42.21988 -26.74861 9.29049 - 42.21947 -26.74672 9.29049 - 38.11602 -28.15766 9.08741 - 33.79753 -29.62479 8.87361 - 29.32212 -29.80940 8.65032 - 24.98417 -27.99436 8.41876 - 20.98894 -25.43410 8.18013 - 20.98988 -25.42693 8.18013 - 17.39105 -22.68371 7.93569 - 14.21677 -19.75352 7.68636 - 11.49311 -16.65562 7.43291 - 9.24502 -13.39148 7.17610 - 7.49590 -9.98999 6.91670 - 7.49592 -9.98985 6.91670 - 7.47599 -9.94285 6.91322 - 7.45615 -9.89583 6.90973 - 7.43640 -9.84877 6.90625 - 7.41675 -9.80169 6.90276 - 7.39720 -9.75458 6.89928 - 7.39720 -9.75458 6.89928 - 7.02572 -9.79738 6.83297 - 6.65253 -9.84524 6.76654 - 6.27742 -9.89814 6.69999 - 5.90021 -9.95610 6.63333 - 5.52069 -10.01914 6.56656 - 5.52069 -10.01910 6.56656 - 4.30497 -10.25147 6.35507 - 3.05830 -10.53474 6.14279 - 1.77459 -10.86901 5.92997 - 0.44770 -11.25439 5.71684 - -0.92851 -11.69098 5.50362 - -0.92851 -11.69097 5.50362 - -1.63144 -11.78868 5.39706 - -2.34620 -12.03893 5.29057 - -3.07637 -12.30196 5.18419 - -3.82269 -12.57774 5.07794 - -4.58595 -12.86629 4.97187 - -4.58595 -12.86632 4.97187 - -5.78326 -13.42190 4.81141 - -7.02678 -13.91293 4.65154 - -8.31630 -14.43301 4.49241 - -9.65446 -14.98198 4.33416 - -11.04389 -15.55971 4.17691 - -11.04389 -15.55979 4.17691 - -12.43842 -15.36196 4.02081 - -13.86501 -15.99651 3.86600 - -15.35063 -16.65912 3.71265 - -16.89782 -17.34952 3.56090 - -18.50908 -18.06743 3.41092 - -18.50906 -18.06771 3.41092 - -20.32750 -18.31193 3.24832 - -22.17361 -18.62083 3.08829 - -24.05379 -18.99322 2.93106 - -25.97433 -19.42792 2.77686 - -27.94141 -19.92378 2.62593 - -27.94110 -19.92672 2.62593 - -30.38996 -15.10953 2.42069 - -32.18599 -10.59706 2.22296 - -33.37051 -6.37128 2.03304 - -33.98269 -2.41846 1.85123 - -34.05999 1.27061 1.67782 - -34.06353 1.28513 1.67782 - -33.63889 4.73994 1.51298 - -32.74730 7.96011 1.35645 - -31.42555 10.84835 1.20791 - -29.73111 13.27915 1.06705 - -27.72891 15.24885 0.93354 - -27.72532 15.26072 0.93354 - -25.59196 15.55706 0.80695 - -23.33101 16.67496 0.68668 - -20.94139 17.39831 0.57215 - -18.47704 17.74539 0.46276 - -15.98948 17.73249 0.35795 - -15.98967 17.72695 0.35795 - -13.52903 17.36850 0.25708 - -11.14205 16.67659 0.15954 - -8.87467 15.66153 0.06478 - -6.77151 14.33174 -0.02775 - -4.87617 12.69371 -0.11861 - -4.87630 12.69188 -0.11861 - -3.23182 10.75046 -0.20835 - -1.88019 8.50873 -0.29729 - -0.86328 5.96897 -0.38569 - -0.22272 3.13259 -0.47380 - 0.00002 0.00012 -0.56186 + 0.00000 0.00000 -16.88601 + 0.00000 0.00000 -16.40725 + 0.00000 0.00000 -15.92849 + 0.00000 0.00000 -15.44973 + 0.00000 0.00000 -14.97097 + 0.00000 0.00000 -14.49221 + 0.00000 0.00000 -14.49221 + 0.00000 0.00000 -14.01345 + 0.00000 0.00000 -13.53470 + 0.00000 0.00000 -13.05594 + 0.00000 0.00000 -12.57718 + 0.00000 0.00000 -12.09842 + 0.00000 0.00000 -12.09842 + -0.00283 -0.07063 -11.46008 + -0.02260 -0.28253 -10.82174 + -0.07628 -0.63569 -10.18339 + -0.18082 -1.13011 -9.54502 + -0.35316 -1.76580 -8.90661 + -0.35316 -1.76580 -8.90661 + -0.56080 -2.40345 -8.37457 + -0.83712 -3.13920 -7.84246 + -1.19191 -3.97305 -7.31023 + -1.63500 -4.90500 -6.77785 + -2.17618 -5.93505 -6.24526 + -2.17618 -5.93505 -6.24526 + -2.82528 -7.06320 -5.71241 + -3.59209 -8.28945 -5.17921 + -4.48644 -9.61380 -4.64554 + -5.51812 -11.03625 -4.11129 + -6.69696 -12.55680 -3.57634 + -6.69696 148.14320 -3.57634 + 5.98427 146.75707 -3.11585 + 18.54318 145.29838 -2.65592 + 30.97351 143.76714 -2.19771 + 43.26904 142.16334 -1.74237 + 55.42353 140.48699 -1.29106 + 55.42353 46.13615 -1.29106 + 60.55122 43.80217 -0.70071 + 65.40558 41.34071 -0.12028 + 69.97206 38.75175 0.44949 + 74.23613 36.03530 1.00784 + 78.18326 33.19136 1.55404 + 78.18339 33.18754 1.55404 + 80.76152 31.32502 1.92971 + 83.20354 29.76806 2.29886 + 85.53122 28.46665 2.66132 + 87.76500 27.42035 3.01688 + 89.92429 26.59185 3.36537 + 89.92428 26.59184 3.36537 + 90.45454 26.43598 3.45136 + 90.98181 26.29370 3.53690 + 91.50639 26.16729 3.62198 + 92.02861 26.05675 3.70660 + 92.54875 25.95977 3.79076 + 92.54854 25.96490 3.79076 + 95.04373 23.94153 4.20447 + 97.33714 21.92695 4.60621 + 99.42921 19.91518 4.99571 + 101.32032 17.90796 5.37270 + 103.01100 15.90674 5.73693 + 103.01102 15.90702 5.73693 + 104.50190 13.91165 6.08816 + 105.79360 11.92356 6.42621 + 106.88685 9.94276 6.75096 + 107.78240 7.96943 7.06227 + 108.48099 6.00362 7.36000 + 108.48099 6.00376 7.36000 + 108.98339 4.04560 7.64403 + 109.29036 2.09492 7.91433 + 109.40263 0.15167 8.17088 + 109.32094 -1.78428 8.41368 + 109.04600 -3.71327 8.64270 + 109.04598 -3.71301 8.64270 + 108.33783 -6.40139 8.94018 + 107.25419 -9.07706 9.21090 + 105.79683 -11.74028 9.45523 + 103.96746 -14.39172 9.67352 + 101.76765 -17.03255 9.86613 + 101.76762 -17.03191 9.86613 + 99.51600 -17.57108 10.02241 + 97.20745 -17.91850 10.15751 + 94.86407 -18.10723 10.27191 + 92.50637 -18.13906 10.36613 + 90.15598 -17.98476 10.44064 + 90.15603 -17.98433 10.44064 + 87.76802 -18.95725 10.49595 + 85.20930 -20.34188 10.53256 + 82.49626 -21.33131 10.55106 + 79.68028 -21.92554 10.55203 + 76.81274 -22.12457 10.53602 + 76.81274 -22.12457 10.53602 + 73.50500 -22.12622 10.49741 + 70.19701 -22.12786 10.43811 + 66.88877 -22.12951 10.35904 + 63.58028 -22.13115 10.26114 + 60.27155 -22.13280 10.14533 + 60.27155 -22.13280 10.14533 + 56.95482 -22.29003 10.01253 + 53.57837 -23.01845 9.86369 + 50.05005 -24.19337 9.69980 + 46.34147 -25.43010 9.52185 + 42.44376 -26.72091 9.33086 + 42.44335 -26.71902 9.33086 + 38.34403 -28.12995 9.12789 + 34.02969 -29.59708 8.91413 + 29.55842 -29.78170 8.69082 + 25.22484 -27.96213 8.45916 + 21.23510 -25.39282 8.22037 + 21.23604 -25.38565 8.22037 + 17.64861 -22.58783 7.97570 + 14.48932 -19.64871 7.72607 + 11.78200 -16.54194 7.47224 + 9.55156 -13.26903 7.21497 + 7.82140 -9.85889 6.95503 + 7.82142 -9.85874 6.95503 + 7.80175 -9.81163 6.95153 + 7.78217 -9.76449 6.94804 + 7.76269 -9.71732 6.94455 + 7.74330 -9.67012 6.94106 + 7.72401 -9.62290 6.93756 + 7.72401 -9.62290 6.93756 + 7.35759 -9.66280 6.87110 + 6.98957 -9.70776 6.80451 + 6.61974 -9.75778 6.73780 + 6.24791 -9.81288 6.67096 + 5.87390 -9.87306 6.60401 + 5.87389 -9.87302 6.60401 + 4.67623 -10.09648 6.39191 + 3.44870 -10.37098 6.17896 + 2.18515 -10.69666 5.96539 + 0.87945 -11.07364 5.75143 + -0.47458 -11.50204 5.53732 + -0.47458 -11.50203 5.53732 + -1.17164 -11.73547 5.43027 + -1.88309 -11.98176 5.32328 + -2.60970 -12.24089 5.21637 + -3.35225 -12.51285 5.10959 + -4.11150 -12.79763 5.00295 + -4.11150 -12.79765 5.00295 + -5.29662 -13.25392 4.84159 + -6.52461 -13.73955 4.68077 + -7.79811 -14.25439 4.52064 + -9.11979 -14.79832 4.36133 + -10.49228 -15.37121 4.20297 + -10.49228 -15.37129 4.20297 + -11.91822 -15.97286 4.04570 + -13.40021 -16.60299 3.88967 + -14.94082 -17.26141 3.73505 + -16.54263 -17.94786 3.58199 + -18.20818 -18.66205 3.43065 + -18.20816 -18.66233 3.43065 + -20.08568 -18.89896 3.26654 + -21.99013 -19.20089 3.10495 + -23.92799 -19.56692 2.94614 + -25.90561 -19.99591 2.79035 + -27.92923 -20.48669 2.63783 + -27.92893 -20.48964 2.63783 + -30.45527 -15.65433 2.43035 + -32.32654 -11.12751 2.23039 + -33.58453 -6.89107 2.03829 + -34.26894 -2.93123 1.85434 + -34.41775 0.76133 1.67887 + -34.42133 0.77603 1.67887 + -34.06792 4.23093 1.51205 + -33.24777 7.44797 1.35365 + -31.99830 10.32621 1.20336 + -30.37815 12.73902 1.06089 + -28.45313 14.68561 0.92594 + -28.44950 14.69753 0.92594 + -26.28148 16.20262 0.79808 + -23.93231 17.28887 0.67671 + -21.45917 17.97712 0.56122 + -18.91642 18.28611 0.45102 + -16.35598 18.23254 0.34549 + -16.35618 18.22687 0.34549 + -13.82853 17.82550 0.24399 + -11.38069 17.08869 0.14590 + -9.05886 16.02698 0.05065 + -6.90789 14.64896 -0.04233 + -4.97160 12.96128 -0.13360 + -4.97174 12.95941 -0.13360 + -3.29336 10.96698 -0.22372 + -1.91506 8.67296 -0.31304 + -0.87889 6.07967 -0.40181 + -0.22665 3.18854 -0.49027 + 0.00002 0.00013 -0.57869 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4332,7 +4468,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -4344,7 +4480,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -4355,17 +4491,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -4374,7 +4510,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -4404,13 +4540,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -4511,47 +4647,47 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00340 0.00000 0.00340 0.00340 302 100 P - 5.22511 0.00000 7.80254 0.68000 220 67 2 - 9.20636 0.00000 15.60507 1.36000 220 59 2 - 13.18225 0.00000 23.40761 2.04000 220 56 2 - 17.15263 0.00000 31.21015 2.72000 220 55 2 - 20.19572 0.00000 37.06205 3.23000 220 54 2 - 21.34776 0.00000 39.50034 3.44250 220 54 2 - 22.10763 0.00000 40.96332 3.57000 220 54 2 - 23.09754 0.00000 42.91395 3.74000 220 54 2 - 24.08709 0.00000 44.86459 3.91000 220 54 2 - 25.07627 0.00000 46.81522 4.08000 220 54 2 - 25.83467 0.00000 48.27820 4.20750 220 54 2 - 10.08770 0.00000 20.56677 6.30726 110 49 1 - 10.25378 0.98100 20.32861 6.32894 220 50 2 - 10.27092 1.96200 20.08785 6.35785 220 51 2 - 10.30929 2.94300 19.91182 6.38676 220 52 2 - 10.36149 3.92400 19.78100 6.41566 220 52 2 - 10.42895 4.90500 19.70421 6.43734 220 53 2 - 10.41678 4.90500 19.66214 6.45179 220 53 2 - 10.49034 5.88600 19.61027 6.47347 220 53 2 - 10.56177 6.86700 19.55671 6.50238 220 54 2 - 10.63564 7.84800 19.51850 6.53129 220 54 2 - 10.71082 8.82900 19.49272 6.56019 220 55 2 - 10.78565 9.81000 19.47992 6.58187 220 55 2 - 10.79619 9.81000 19.47440 6.63230 220 55 2 - 10.86181 10.79100 19.47010 6.61800 220 56 2 - 10.93645 11.77200 19.47023 6.64691 220 56 2 - 11.00994 12.75300 19.47646 6.67582 220 57 2 - 11.08198 13.73400 19.48795 6.70472 220 57 2 - 11.14877 14.71500 19.49947 6.72640 220 57 2 - 11.15725 14.71500 19.51051 6.74375 220 57 2 - 11.24743 16.08840 19.53319 6.77410 220 58 2 - 11.33830 17.46180 19.56875 6.81457 220 58 2 - 11.42465 18.83520 19.60984 6.85503 220 58 2 - 11.50626 20.20860 19.65566 6.89550 220 59 2 - 11.57561 21.58200 19.69261 6.92585 220 59 2 - 25.70926 21.58200 40.65119 7.89320 220 63 2 - 24.06117 25.39730 37.49247 5.34869 220 64 2 - 22.24814 29.21260 33.28909 4.15339 220 67 2 - 20.42141 33.02790 29.09277 2.95808 220 70 2 - 18.58050 36.84320 24.90135 1.76278 220 75 2 - 17.20365 40.65850 21.76001 0.86630 220 79 2 + 5.23028 0.00000 7.80254 0.68000 220 67 2 + 9.21212 0.00000 15.60507 1.36000 220 59 2 + 13.18861 0.00000 23.40761 2.04000 220 56 2 + 17.15957 0.00000 31.21015 2.72000 220 55 2 + 20.20325 0.00000 37.06205 3.23000 220 55 2 + 21.35529 0.00000 39.50034 3.44250 220 54 2 + 22.11531 0.00000 40.96332 3.57000 220 54 2 + 23.10537 0.00000 42.91395 3.74000 220 54 2 + 24.09506 0.00000 44.86459 3.91000 220 54 2 + 25.08438 0.00000 46.81522 4.08000 220 54 2 + 25.84293 0.00000 48.27820 4.20750 220 54 2 + 10.09802 0.00000 20.56677 6.30726 110 49 1 + 10.25658 0.98100 20.32861 6.32894 220 50 2 + 10.27396 1.96200 20.08785 6.35785 220 51 2 + 10.31255 2.94300 19.91182 6.38676 220 52 2 + 10.36497 3.92400 19.78100 6.41566 220 52 2 + 10.43265 4.90500 19.70421 6.43734 220 53 2 + 10.42049 4.90500 19.66214 6.45179 220 53 2 + 10.49426 5.88600 19.61027 6.47347 220 54 2 + 10.56591 6.86700 19.55671 6.50238 220 54 2 + 10.64000 7.84800 19.51850 6.53129 220 55 2 + 10.71539 8.82900 19.49272 6.56019 220 55 2 + 10.79044 9.81000 19.47992 6.58187 220 55 2 + 10.79198 9.81000 19.47440 6.59633 220 55 2 + 10.86680 10.79100 19.47010 6.61800 220 56 2 + 10.94164 11.77200 19.47023 6.64691 220 56 2 + 11.01535 12.75300 19.47646 6.67582 220 57 2 + 11.08758 13.73400 19.48795 6.70472 220 57 2 + 11.15458 14.71500 19.49947 6.72640 220 57 2 + 11.16305 14.71500 19.51051 6.74375 220 57 2 + 11.25351 16.08840 19.53319 6.77410 220 58 2 + 11.34465 17.46180 19.56875 6.81457 220 58 2 + 11.43126 18.83520 19.60984 6.85503 220 58 2 + 11.51313 20.20860 19.65566 6.89550 220 59 2 + 11.58272 21.58200 19.69261 6.92585 220 59 2 + 25.40241 21.58200 40.65119 6.24517 220 62 2 + 24.08465 25.39730 37.49247 5.34869 220 64 2 + 22.27232 29.21260 33.28909 4.15339 220 67 2 + 20.44626 33.02790 29.09277 2.95808 220 70 2 + 18.60600 36.84320 24.90135 1.76278 220 75 2 + 17.22978 40.65850 21.76001 0.86630 220 79 2 12.41397 40.65850 12.41397 0.26865 302 100 P 0.00000 44.47380 0.00000 0.00000 302 0 P 0.00000 48.28910 0.00000 0.00000 302 0 P @@ -4566,94 +4702,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 302 0 P 0.00000 67.06798 0.00000 0.00000 302 0 P 0.00000 68.53457 0.00000 0.00000 302 0 P - 0.04098 70.00117 0.04098 0.04098 302 100 P - 0.04098 71.46776 0.04098 0.04098 302 100 P + 0.00000 70.00117 0.00000 0.00000 302 0 P + 0.00000 71.46776 0.00000 0.00000 302 0 P 0.00000 72.93436 0.00000 0.00000 302 0 P 0.00000 74.40095 0.00000 0.00000 302 0 P 0.00000 74.40095 0.00000 0.00000 302 0 P - 0.00000 75.86755 0.00000 0.00000 302 100 P - 0.00000 77.33414 0.00000 0.00000 302 100 P + 0.00000 75.86755 0.00000 0.00000 302 0 P + 0.00000 77.33414 0.00000 0.00000 302 0 P 17.96911 78.80074 17.96911 4.49986 302 100 P - 27.56289 80.26733 36.36631 5.18955 220 76 2 - 28.64889 81.73392 39.87198 5.70681 220 72 2 - 28.99814 81.73392 42.19987 3.61198 220 69 2 - 30.67600 83.20052 45.68064 6.56892 220 67 2 - 32.20949 84.66711 50.30746 7.25860 220 64 2 - 33.73238 86.13371 54.92251 7.94829 220 61 2 - 35.24767 87.60031 59.53073 8.63797 220 59 2 - 36.28315 89.06690 62.98476 9.15524 220 58 2 - 36.76428 89.06690 64.15130 9.32997 220 57 2 - 36.77812 89.08652 64.19752 9.33689 220 57 2 - 36.79830 89.10614 64.25913 9.34611 220 57 2 - 36.81848 89.12576 64.32073 9.35534 220 57 2 - 36.83865 89.14538 64.38231 9.36457 220 57 2 - 36.85248 89.16500 64.42851 9.37149 220 57 2 - 18.28812 89.16500 58.82727 11.38885 110 31 1 - 18.32924 89.53778 59.19268 11.49627 110 31 1 - 18.40604 89.91056 59.68017 11.63950 110 31 1 - 18.48272 90.28334 60.16799 11.78273 110 31 1 - 18.55929 90.65612 60.65612 11.92596 110 31 1 - 18.59994 91.02890 61.02242 12.03338 110 30 1 - 18.74882 91.02890 61.53041 12.18226 110 30 1 - 18.87656 92.20610 62.68904 12.52149 110 30 1 - 19.11659 93.38330 64.23606 12.97380 110 30 1 - 19.35607 94.56050 65.78549 13.42610 110 29 1 - 19.59524 95.73770 67.33709 13.87840 110 29 1 - 19.72125 96.91490 68.50203 14.21763 110 29 1 - 19.89087 96.91490 69.08491 14.38724 110 29 1 - 19.95392 97.50350 69.66807 14.55686 110 29 1 - 20.07358 98.09210 70.44596 14.78301 110 28 1 - 20.19335 98.68070 71.22427 15.00916 110 28 1 - 20.31326 99.26930 72.00296 15.23531 110 28 1 - 20.37680 99.85790 72.58721 15.40493 110 28 1 - 18.45883 99.85790 73.07750 13.48696 110 25 1 - 20.61587 100.75061 73.96428 15.80446 110 28 1 - 20.79900 101.64332 75.14728 16.14746 110 28 1 - 20.98287 102.53603 76.33100 16.49046 110 27 1 - 21.16761 103.42874 77.51539 16.83345 110 27 1 - 21.26761 104.32145 78.40407 17.09070 110 27 1 - 39.11045 104.32145 78.99672 34.93354 110 50 1 - 21.54025 105.21416 79.88599 17.51945 110 27 1 - 21.72844 106.10687 81.07214 17.86244 110 27 1 - 21.91809 106.99958 82.25880 18.20544 110 27 1 - 22.10934 107.89229 83.44594 18.54844 110 26 1 - 22.21660 108.78500 84.33659 18.80568 110 26 1 - 27.43574 108.78500 56.86688 20.61391 110 48 1 - 28.88328 106.76600 61.08371 22.38663 110 47 1 - 30.92684 104.74700 66.69564 24.75026 110 46 1 - 32.97599 102.72800 72.29483 27.11388 110 46 1 - 35.03122 100.70900 77.88124 29.47751 110 45 1 - 36.50208 98.69000 82.06310 31.25023 110 44 1 - 51.87346 98.69000 272.58042 20.36232 110 19 1 - 49.91353 100.06340 271.86044 20.86529 110 18 1 - 48.21139 101.43680 274.54312 21.53590 110 18 1 - 46.60298 102.81020 279.33150 22.20652 110 17 1 - 45.09187 104.18360 285.19980 22.87714 110 16 1 - 43.51399 105.55700 290.01763 23.38010 110 15 1 - 43.84930 105.55700 293.38484 23.71541 110 15 1 - 42.37418 106.93040 298.60646 24.21837 110 14 1 - 41.16642 108.30380 305.78478 24.88899 110 13 1 - 40.05457 109.67720 313.15603 25.55961 110 13 1 - 39.03479 111.05060 320.66827 26.23022 110 12 1 - 37.93562 112.42400 326.37074 26.73319 110 12 1 - 38.27092 112.42400 330.20204 27.06849 110 12 1 - 37.25484 113.79740 335.98580 27.57146 110 11 1 - 36.48223 115.17080 343.74884 28.24207 110 11 1 - 35.77844 116.54420 351.56245 28.91269 110 10 1 - 35.13646 117.91760 359.41683 29.58331 110 10 1 - 34.38166 119.29100 365.32890 30.08627 110 9 1 - 34.71697 119.29100 369.28008 30.42158 110 9 1 - 34.00946 120.66440 375.21958 30.92454 110 9 1 - 33.50961 122.03780 383.15752 31.59516 110 9 1 - 33.04312 123.41120 391.11465 32.26578 110 8 1 - 32.60335 124.78460 399.08801 32.93639 110 0 1 - 32.01600 126.15800 405.07683 33.43936 110 0 1 - 32.35131 126.15800 409.07356 33.77467 110 0 1 - 31.77749 127.53140 415.07425 34.27763 110 0 1 - 31.38076 128.90480 423.08354 34.94825 110 0 1 - 30.99053 130.27820 431.10170 35.61886 110 0 1 - 30.60387 131.65160 439.12760 36.28948 110 0 1 - 30.05016 133.02500 445.15132 36.79244 110 0 1 + 27.62349 80.26733 36.36631 5.18955 220 76 2 + 28.70926 81.73392 39.87198 5.70681 220 72 2 + 29.66843 81.73392 42.19987 6.05165 220 70 2 + 30.73602 83.20052 45.68064 6.56892 220 67 2 + 32.26905 84.66711 50.30746 7.25860 220 64 2 + 33.79138 86.13371 54.92251 7.94829 220 62 2 + 35.30598 87.60031 59.53073 8.63797 220 59 2 + 36.34063 89.06690 62.98476 9.15524 220 58 2 + 36.82177 89.06690 64.15130 9.32997 220 57 2 + 36.83559 89.08652 64.19752 9.33689 220 57 2 + 36.85576 89.10614 64.25913 9.34611 220 57 2 + 36.87593 89.12576 64.32073 9.35534 220 57 2 + 36.89609 89.14538 64.38231 9.36457 220 57 2 + 36.90991 89.16500 64.42851 9.37149 220 57 2 + 18.32641 89.16500 58.82727 11.38885 110 31 1 + 18.36738 89.53778 59.19268 11.49627 110 31 1 + 18.44401 89.91056 59.68017 11.63950 110 31 1 + 18.52053 90.28334 60.16799 11.78273 110 31 1 + 18.59692 90.65612 60.65612 11.92596 110 31 1 + 18.63739 91.02890 61.02242 12.03338 110 31 1 + 18.78627 91.02890 61.53041 12.18226 110 31 1 + 18.91340 92.20610 62.68904 12.52149 110 30 1 + 19.15275 93.38330 64.23606 12.97380 110 30 1 + 19.39149 94.56050 65.78549 13.42610 110 29 1 + 19.62984 95.73770 67.33709 13.87840 110 29 1 + 19.75495 96.91490 68.50203 14.21763 110 29 1 + 19.92456 96.91490 69.08491 14.38724 110 29 1 + 19.98713 97.50350 69.66807 14.55686 110 29 1 + 20.10629 98.09210 70.44596 14.78301 110 29 1 + 20.22553 98.68070 71.22427 15.00916 110 28 1 + 20.34490 99.26930 72.00296 15.23531 110 28 1 + 20.40788 99.85790 72.58721 15.40493 110 28 1 + 20.55017 99.85790 73.07750 15.54721 110 28 1 + 20.64605 100.75061 73.96428 15.80446 110 28 1 + 20.82823 101.64332 75.14728 16.14746 110 28 1 + 21.01110 102.53603 76.33100 16.49046 110 28 1 + 21.19478 103.42874 77.51539 16.83345 110 27 1 + 21.29367 104.32145 78.40407 17.09070 110 27 1 + 21.46517 104.32145 78.99672 17.26220 110 27 1 + 21.56515 105.21416 79.88599 17.51945 110 27 1 + 21.75211 106.10687 81.07214 17.86244 110 27 1 + 21.94049 106.99958 82.25880 18.20544 110 27 1 + 22.13042 107.89229 83.44594 18.54844 110 27 1 + 22.23633 108.78500 84.33659 18.80568 110 26 1 + 27.47521 108.78500 56.86688 20.61391 110 48 1 + 28.91970 106.76600 61.08371 22.38663 110 47 1 + 30.96016 104.74700 66.69564 24.75026 110 46 1 + 33.00617 102.72800 72.29483 27.11388 110 46 1 + 35.05821 100.70900 77.88124 29.47751 110 45 1 + 36.52588 98.69000 82.06310 31.25023 110 45 1 + 52.01624 98.69000 272.58042 20.36232 110 19 1 + 50.02944 100.06340 271.86044 20.86529 110 18 1 + 48.30063 101.43680 274.54312 21.53590 110 18 1 + 46.66595 102.81020 279.33150 22.20652 110 17 1 + 45.12921 104.18360 285.19980 22.87714 110 16 1 + 43.52654 105.55700 290.01763 23.38010 110 15 1 + 43.86185 105.55700 293.38484 23.71541 110 15 1 + 42.36301 106.93040 298.60646 24.21837 110 14 1 + 41.13280 108.30380 305.78478 24.88899 110 13 1 + 39.99998 109.67720 313.15603 25.55961 110 13 1 + 38.96093 111.05060 320.66827 26.23022 110 12 1 + 37.84441 112.42400 326.37074 26.73319 110 12 1 + 38.17972 112.42400 330.20204 27.06849 110 12 1 + 37.14841 113.79740 335.98580 27.57146 110 11 1 + 36.36259 115.17080 343.74884 28.24207 110 11 1 + 35.64736 116.54420 351.56245 28.91269 110 10 1 + 34.99550 117.91760 359.41683 29.58331 110 10 1 + 34.23213 119.29100 365.32890 30.08627 110 9 1 + 34.56743 119.29100 369.28008 30.42158 110 9 1 + 33.85242 120.66440 375.21958 30.92454 110 9 1 + 33.34595 122.03780 383.15752 31.59516 110 9 1 + 32.87356 123.41120 391.11465 32.26578 110 8 1 + 32.42845 124.78460 399.08801 32.93639 110 0 1 + 31.83617 126.15800 405.07683 33.43936 110 0 1 + 32.17148 126.15800 409.07356 33.77467 110 0 1 + 31.59298 127.53140 415.07425 34.27763 110 0 1 + 31.19176 128.90480 423.08354 34.94825 110 0 1 + 30.79716 130.27820 431.10170 35.61886 110 0 1 + 30.40619 131.65160 439.12760 36.28948 110 0 1 + 29.84820 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4668,13 +4804,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 6.748 'Ophooglaag zand' - -3.50 23.895 'Hollandveen' - -5.70 14.687 'Oude Zeeklei' - -7.00 33.923 'Wadzand' - -10.00 41.232 'Hydrobiaklei' - -12.00 15.979 'Basisveen' - -12.50 132.230 'Eerste zandlaag' + -3.00 6.751 'Ophooglaag zand' + -3.50 23.906 'Hollandveen' + -5.70 14.681 'Oude Zeeklei' + -7.00 34.014 'Wadzand' + -10.00 40.584 'Hydrobiaklei' + -12.00 15.994 'Basisveen' + -12.50 131.917 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -4694,10 +4830,10 @@ Layer name -3.00 2.46 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 3.12 'Oude Zeeklei' - -7.00 10.18 'Wadzand' - -10.00 8.76 'Hydrobiaklei' + -7.00 10.20 'Wadzand' + -10.00 8.63 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 50.76 'Eerste zandlaag' + -12.50 50.64 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -4980,7 +5116,7 @@ Lambda passive -6.74000 11.10450 44.38498 0.00000 0.68728 0.00000 3.99703 -6.87000 12.43389 47.59701 0.00000 0.68823 0.00000 3.82801 -7.00000 13.76322 50.00567 0.00000 0.68902 0.00000 3.72318 - -7.00000 13.76322 56.56939 0.00000 0.56962 0.00000 4.02302 + -7.00000 13.76322 56.56939 0.00000 0.56701 0.00000 4.02302 -7.14950 14.95606 59.17756 0.00000 0.56756 0.00000 3.95676 -7.29900 16.14883 63.03696 0.00000 0.56807 0.00000 3.90350 -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 @@ -4992,7 +5128,7 @@ Lambda passive -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 -8.34550 24.49678 95.35621 8.46813 0.57065 0.34568 3.89260 -8.49500 25.68924 98.76054 8.77815 0.57093 0.34572 3.88957 - -8.49500 25.68924 101.03367 9.25368 0.63815 0.35608 3.88780 + -8.49500 25.68924 101.03367 9.25368 0.57093 0.35608 3.88780 -8.64450 26.88169 104.44831 9.59969 0.57119 0.35711 3.88548 -8.79400 28.07413 109.00806 10.00551 0.57144 0.35640 3.88286 -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 @@ -5022,7 +5158,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -5052,13 +5188,13 @@ Lambda passive -12.92000 68.66611 399.79848 17.40762 0.46790 0.25351 5.82236 -13.06000 70.09142 406.19871 17.79637 0.46796 0.25390 5.79527 -13.20000 71.51677 411.25599 18.08658 0.46802 0.25417 5.77928 - -13.20000 71.51677 414.73635 18.27940 0.43937 0.25433 5.77040 + -13.20000 71.51677 414.73635 18.27940 0.46802 0.25433 5.77040 -13.34000 72.94213 420.09417 18.56772 0.46808 0.25455 5.75928 -13.48000 74.36752 427.39798 18.94839 0.46813 0.25479 5.74711 -13.62000 75.79293 434.84979 19.24842 0.46818 0.25396 5.73734 -13.76000 77.21836 442.29337 19.51523 0.46823 0.25273 5.72783 -13.90000 78.64381 447.87370 19.78051 0.46828 0.25267 5.72089 - -13.90000 78.64381 451.61995 19.97027 0.69187 0.25279 5.71670 + -13.90000 78.64381 451.61995 19.97027 0.46828 0.25279 5.71670 -14.04000 80.06929 457.27233 20.25436 0.46833 0.25296 5.71096 -14.18000 81.49478 464.85577 20.63172 0.46837 0.25317 5.70412 -14.32000 82.92030 472.47626 21.00738 0.46842 0.25334 5.69796 @@ -5182,7 +5318,7 @@ Status character 0.00000 58.19540 44.38498 7.63186 1 0 A 0.00000 58.97070 47.59701 8.55736 1 0 A 0.00000 59.74600 50.00567 9.25421 1 0 A - 0.00000 59.74600 56.56939 8.00965 1 0 A + 0.00000 59.74600 56.56939 7.97293 1 0 A 0.00000 61.21260 59.17756 8.48851 1 0 A 0.00000 62.67919 63.03696 9.17359 1 0 A 0.00000 64.14579 67.15179 9.85907 1 0 A @@ -5194,7 +5330,7 @@ Status character 8.05472 71.47876 90.80343 13.29161 1 0 A 8.46813 72.94536 95.35621 13.97900 1 0 A 8.77815 74.41195 98.76054 14.49644 1 0 A - 9.25368 74.41195 101.03367 16.58377 1 0 A + 9.25368 74.41195 101.03367 14.83684 1 0 A 9.59969 75.87855 104.44831 15.35451 1 0 A 10.00551 77.34514 109.00806 16.04260 1 0 A 10.41135 78.81174 113.57458 16.73088 1 0 A @@ -5212,72 +5348,72 @@ Status character 13.27311 89.13676 146.09646 21.58092 1 0 A 13.27857 89.15638 146.15875 21.59015 1 0 A 13.28266 89.17600 146.20565 21.59708 1 0 A - 19.33719 89.17600 111.76003 26.23646 110 0 1 - 19.51113 89.54878 112.10767 26.34410 110 0 1 - 19.72071 89.92156 112.57177 26.48726 110 0 1 - 19.93043 90.29434 113.03656 26.63042 110 0 1 - 20.14026 90.66712 113.50202 26.77359 110 0 1 - 20.31469 91.03990 113.85153 26.88125 110 0 1 - 20.46236 91.03990 114.33661 27.02892 110 0 1 - 21.01386 92.21710 115.44439 27.36892 110 0 1 - 21.67835 93.39430 116.92621 27.82114 110 0 1 - 22.34344 94.57150 118.41340 28.27341 110 0 1 - 23.00889 95.74870 119.90552 28.72573 110 0 1 - 23.56222 96.92590 121.02749 29.06585 110 0 1 - 19.07251 96.92590 121.58944 24.57613 110 0 1 - 24.00722 97.51450 122.15203 29.40428 110 0 1 - 24.33992 98.10310 122.90301 29.63048 110 0 1 - 24.67251 98.69170 123.65496 29.85670 110 0 1 - 25.00498 99.28030 124.40787 30.08292 110 0 1 - 25.28114 99.86890 124.97311 30.25301 110 0 1 - 25.42243 99.86890 125.44772 30.39430 110 0 1 - 25.84088 100.76161 126.30668 30.65229 110 0 1 - 26.34390 101.65432 127.45492 30.99544 110 0 1 - 26.84619 102.54703 128.63081 31.33861 110 0 1 - 27.34763 103.43974 129.81818 31.68179 110 0 1 - 27.76289 104.33245 130.70972 31.93980 110 0 1 - 27.93327 104.33245 131.30460 32.11018 110 0 1 - 28.34740 105.22516 132.19767 32.36821 110 0 1 - 28.84543 106.11787 133.38964 32.71144 110 0 1 - 29.34203 107.01058 134.58301 33.05468 110 0 1 - 29.83703 107.90329 135.77771 33.39793 110 0 1 - 30.24505 108.79600 136.67455 33.65597 110 0 1 - 29.54038 108.79600 96.36922 36.36222 110 0 1 - 31.64104 106.77700 100.67195 38.13768 110 0 1 - 34.32504 104.75800 106.39642 40.50163 110 0 1 - 37.00347 102.73900 112.10591 42.86558 110 0 1 - 39.67584 100.72000 117.80054 45.22955 110 0 1 - 41.75257 98.70100 122.06230 47.00442 110 0 1 + 19.29890 89.17600 111.76003 26.23646 110 0 1 + 19.47300 89.54878 112.10767 26.34410 110 0 1 + 19.68274 89.92156 112.57177 26.48726 110 0 1 + 19.89262 90.29434 113.03656 26.63042 110 0 1 + 20.10263 90.66712 113.50202 26.77359 110 0 1 + 20.27724 91.03990 113.85153 26.88125 110 0 1 + 20.42491 91.03990 114.33661 27.02892 110 0 1 + 20.97702 92.21710 115.44439 27.36892 110 0 1 + 21.64218 93.39430 116.92621 27.82114 110 0 1 + 22.30802 94.57150 118.41340 28.27341 110 0 1 + 22.97429 95.74870 119.90552 28.72573 110 0 1 + 23.52853 96.92590 121.02749 29.06585 110 0 1 + 23.69689 96.92590 121.58944 29.23421 110 0 1 + 23.97401 97.51450 122.15203 29.40428 110 0 1 + 24.30721 98.10310 122.90301 29.63048 110 0 1 + 24.64033 98.69170 123.65496 29.85670 110 0 1 + 24.97334 99.28030 124.40787 30.08292 110 0 1 + 25.25006 99.86890 124.97311 30.25301 110 0 1 + 25.39135 99.86890 125.44772 30.39430 110 0 1 + 25.81070 100.76161 126.30668 30.65229 110 0 1 + 26.31467 101.65432 127.45492 30.99544 110 0 1 + 26.81796 102.54703 128.63081 31.33861 110 0 1 + 27.32046 103.43974 129.81818 31.68179 110 0 1 + 27.73683 104.33245 130.70972 31.93980 110 0 1 + 27.90721 104.33245 131.30460 32.11018 110 0 1 + 28.32251 105.22516 132.19767 32.36821 110 0 1 + 28.82176 106.11787 133.38964 32.71144 110 0 1 + 29.31963 107.01058 134.58301 33.05468 110 0 1 + 29.81595 107.90329 135.77771 33.39793 110 0 1 + 30.22532 108.79600 136.67455 33.65597 110 0 1 + 29.50092 108.79600 96.36922 36.36222 110 0 1 + 31.60461 106.77700 100.67195 38.13768 110 0 1 + 34.29172 104.75800 106.39642 40.50163 110 0 1 + 36.97329 102.73900 112.10591 42.86558 110 0 1 + 39.64884 100.72000 117.80054 45.22955 110 0 1 + 41.72877 98.70100 122.06230 47.00442 110 0 1 16.32529 98.70100 386.35900 30.28234 1 0 A 16.62261 100.07440 389.12584 30.78681 1 0 A 17.01648 101.44780 393.99108 31.45795 1 0 A 17.40762 102.82120 399.79848 32.12910 1 0 A 17.79637 104.19460 406.19871 32.80027 1 0 A 18.08658 105.56800 411.25599 33.30467 1 0 A - 18.27940 105.56800 414.73635 31.57912 1 0 A + 18.27940 105.56800 414.73635 33.63822 1 0 A 18.56772 106.94140 420.09417 34.14263 1 0 A 18.94839 108.31480 427.39798 34.81382 1 0 A - 20.99006 109.68820 434.84979 35.48502 110 0 1 - 23.35166 111.06160 442.29337 36.15623 110 0 1 - 25.45814 112.43500 447.87370 36.66057 110 0 1 - 43.45514 112.43500 451.61995 54.65757 110 0 1 - 27.81528 113.80840 457.27233 37.49867 110 0 1 - 29.92974 115.18180 464.85577 38.16989 110 0 1 - 31.97538 116.55520 472.47626 38.84112 110 0 1 - 33.95920 117.92860 480.11294 39.51236 110 0 1 - 35.72123 119.30200 485.86065 40.01662 110 0 1 - 36.05517 119.30200 489.70215 40.35056 110 0 1 - 37.76991 120.67540 495.49874 40.85483 110 0 1 - 39.61161 122.04880 503.39465 41.52606 110 0 1 - 41.41996 123.42220 511.34019 42.19730 110 0 1 - 43.20159 124.79560 519.30166 42.86854 110 8 1 - 44.79610 126.16900 525.28152 43.37274 110 9 1 - 45.13019 126.16900 529.27230 43.70683 110 9 1 - 46.71117 127.54240 535.26413 44.21102 110 9 1 - 48.44975 128.91580 543.26180 44.88226 110 9 1 - 50.18183 130.28920 551.26866 45.55350 110 9 1 - 51.91035 131.66260 559.28359 46.22474 110 9 1 - 53.47115 133.03600 565.29934 46.72887 110 9 1 + 21.04465 109.68820 434.84979 35.48502 110 0 1 + 23.42552 111.06160 442.29337 36.15623 110 0 1 + 25.54935 112.43500 447.87370 36.66057 110 0 1 + 25.88311 112.43500 451.61995 36.99433 110 0 1 + 27.92172 113.80840 457.27233 37.49867 110 0 1 + 30.04938 115.18180 464.85577 38.16989 110 0 1 + 32.10645 116.55520 472.47626 38.84112 110 0 1 + 34.10016 117.92860 480.11294 39.51236 110 0 1 + 35.87077 119.30200 485.86065 40.01662 110 0 1 + 36.20471 119.30200 489.70215 40.35056 110 0 1 + 37.92695 120.67540 495.49874 40.85483 110 0 1 + 39.77528 122.04880 503.39465 41.52606 110 0 1 + 41.58952 123.42220 511.34019 42.19730 110 0 1 + 43.37649 124.79560 519.30166 42.86854 110 8 1 + 44.97593 126.16900 525.28152 43.37274 110 9 1 + 45.31002 126.16900 529.27230 43.70683 110 9 1 + 46.89567 127.54240 535.26413 44.21102 110 9 1 + 48.63875 128.91580 543.26180 44.88226 110 9 1 + 50.37520 130.28920 551.26866 45.55350 110 9 1 + 52.10803 131.66260 559.28359 46.22474 110 9 1 + 53.67312 133.03600 565.29934 46.72887 110 9 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5295,9 +5431,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 21.489 'Wadzand' - -10.00 49.523 'Hydrobiaklei' - -12.00 17.829 'Basisveen' - -12.50 112.284 'Eerste zandlaag' + -10.00 49.601 'Hydrobiaklei' + -12.00 17.813 'Basisveen' + -12.50 111.408 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -5317,9 +5453,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 -6.45 'Wadzand' - -10.00 -10.53 'Hydrobiaklei' + -10.00 -10.54 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -43.10 'Eerste zandlaag' + -12.50 -42.77 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5541,7 +5677,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 94.65482 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 94.63746 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5566,20 +5702,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.29 : Percentage mobilized resistance left - 13.41 : Percentage mobilized resistance right - 113.66 : Effective left - 205.19 : Effective right + 12.25 : Percentage mobilized resistance left + 13.38 : Percentage mobilized resistance right + 113.34 : Effective left + 204.85 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 925.02 : Max effective resistance left - 1530.55 : Max effective resistance right + 1530.54 : Max effective resistance right -11008.78 : Max moment left --16790.25 : Max moment right --1325.69 : Max mobilized moment left --1764.13 : Max mobilized moment right - 40.61 : Vertical force left - 54.21 : Vertical force right +-16790.18 : Max moment right +-1322.31 : Max mobilized moment left +-1760.74 : Max mobilized moment right + 40.50 : Vertical force left + 54.17 : Vertical force right 12.0 : Max mobilized moment percentage left 10.5 : Max mobilized moment percentage right -2.43 : Level of single support @@ -5588,17 +5724,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --40.61 : Active force -54.21 : Passive force --40.61 : Plugged active force -54.21 : Plugged passive force +-40.50 : Active force +54.17 : Passive force +-40.50 : Plugged active force +54.17 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.60 : Resulting Vertical Force Unplugged -13.60 : Resulting Vertical Force Plugged +13.67 : Resulting Vertical Force Unplugged +13.67 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -5611,192 +5747,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -14.88871 - 0.00000 0.00000 -14.47143 - 0.00000 0.00000 -14.05415 - 0.00000 0.00000 -13.63687 - 0.00000 0.00000 -13.21959 - 0.00000 0.00000 -12.80231 - 0.00000 0.00000 -12.80231 - 0.00000 0.00000 -12.38503 - 0.00000 0.00000 -11.96774 - 0.00000 0.00000 -11.55046 - 0.00000 0.00000 -11.13318 - 0.00000 0.00000 -10.71590 - 0.00000 0.00000 -10.71590 - -0.00283 -0.07063 -10.15953 - -0.02260 -0.28253 -9.60316 - -0.07628 -0.63569 -9.04678 - -0.18082 -1.13011 -8.49038 - -0.35316 -1.76580 -7.93395 - -0.35316 -1.76580 -7.93395 - -0.56080 -2.40345 -7.47022 - -0.83712 -3.13920 -7.00642 - -1.19191 -3.97305 -6.54250 - -1.63500 -4.90500 -6.07842 - -2.17618 -5.93505 -5.61414 - -2.17618 -5.93505 -5.61414 - -2.82528 -7.06320 -5.14960 - -3.59209 -8.28945 -4.68471 - -4.48644 -9.61380 -4.21935 - -5.51812 -11.03625 -3.75341 - -6.69696 -12.55680 -3.28677 - -6.69696 148.14320 -3.28677 - 5.98427 146.75707 -2.88503 - 18.54318 145.29838 -2.48385 - 30.97351 143.76714 -2.08438 - 43.26904 142.16334 -1.68778 - 55.42353 140.48699 -1.29522 - 55.42353 45.83217 -1.29522 - 60.51657 43.49819 -0.78274 - 65.33627 41.03673 -0.28018 - 69.86810 38.44777 0.21174 - 74.09752 35.73132 0.69226 - 78.00999 32.88738 1.16064 - 78.01010 32.88413 1.16064 - 80.56357 31.00713 1.48172 - 82.97896 29.41975 1.79629 - 85.27745 28.08443 2.10419 - 87.47918 27.00073 2.40522 - 89.60328 26.13135 2.69920 - 89.60328 26.13135 2.69920 - 90.12422 25.96472 2.77157 - 90.64196 25.81146 2.84348 - 91.15678 25.67385 2.91494 - 91.66901 25.55189 2.98594 - 92.17895 25.44326 3.05648 - 92.17879 25.44772 3.05648 - 94.61894 23.36136 3.40214 - 96.85222 21.30963 3.73587 - 98.88145 19.27525 4.05743 - 100.70737 17.24372 4.36655 - 102.33033 15.21650 4.66298 - 102.33033 15.21660 4.66298 - 103.75079 13.19354 4.94650 - 104.96923 11.17606 5.21693 - 105.98619 9.16418 5.47417 - 106.80225 7.15809 5.71808 - 107.41800 5.15784 5.94854 - 107.41800 5.15798 5.94854 - 107.83407 3.16414 6.16543 - 108.05101 1.17566 6.36873 - 108.06939 -0.80707 6.55844 - 107.88978 -2.78417 6.73457 - 107.51273 -4.75597 6.89710 - 107.51272 -4.75570 6.89710 - 106.65423 -7.50680 7.10181 - 105.41125 -10.24843 7.28019 - 103.78510 -12.98084 7.43263 - 101.77702 -15.70467 7.55953 - 99.38814 -18.42108 7.66128 - 99.38812 -18.42045 7.66128 - 96.94134 -19.20436 7.73372 - 94.39917 -19.89164 7.78552 - 91.77320 -20.49385 7.81724 - 89.07438 -21.01273 7.82943 - 86.31477 -21.41898 7.82266 - 86.31489 -21.41991 7.82266 - 83.44608 -22.88477 7.79747 - 80.35002 -24.69190 7.75452 - 77.04049 -26.16883 7.69450 - 73.56043 -27.31556 7.61811 - 69.95276 -28.13209 7.52606 - 69.95275 -28.13213 7.52606 - 65.69099 -28.88127 7.40178 - 61.31725 -29.63042 7.25901 - 56.83150 -30.37956 7.09900 - 52.23376 -31.12871 6.92302 - 47.52402 -31.87785 6.73233 - 47.52402 -31.87785 6.73233 - 42.70228 -32.62700 6.52822 - 37.76854 -33.37614 6.31208 - 32.72281 -34.12529 6.08534 - 27.56508 -34.87443 5.84941 - 22.29536 -35.62358 5.60572 - 22.29484 -35.62110 5.60572 - 16.91348 -36.37025 5.35574 - 11.42013 -37.11939 5.10101 - 5.86045 -36.95223 4.84306 - 0.45266 -35.15478 4.58344 - -4.61132 -32.56454 4.32367 - -4.61018 -32.55763 4.32367 - -9.26796 -29.71251 4.06530 - -13.48237 -26.62961 3.80955 - -17.21886 -23.31882 3.55748 - -20.44686 -19.85073 3.31012 - -23.15554 -16.40900 3.06853 - -23.15574 -16.41072 3.06853 - -23.18851 -16.36527 3.06535 - -23.22120 -16.31984 3.06216 - -23.25379 -16.27444 3.05897 - -23.28629 -16.22905 3.05579 - -23.31871 -16.18369 3.05261 - -23.31871 -16.18369 3.05261 - -23.92687 -15.82444 2.99235 - -24.52133 -15.46270 2.93252 - -25.10199 -15.09779 2.87314 - -25.66872 -14.72968 2.81422 - -26.22142 -14.35904 2.75576 - -26.22140 -14.35916 2.75576 - -27.87265 -13.15845 2.57436 - -29.37839 -11.93171 2.39802 - -30.73492 -10.67153 2.22698 - -31.93819 -9.37727 2.06149 - -32.98435 -8.05503 1.90180 - -32.98436 -8.05519 1.90180 - -33.44732 -7.37575 1.82420 - -33.86931 -6.68904 1.74811 - -34.24982 -5.99329 1.67356 - -34.58832 -5.28839 1.60056 - -34.88428 -4.57595 1.52913 - -34.88424 -4.57691 1.52913 - -35.24037 -3.26726 1.42382 - -35.48002 -1.99513 1.32220 - -35.60269 -0.69693 1.22426 - -35.60674 0.60512 1.13002 - -35.49307 1.89036 1.03950 - -35.49308 1.89006 1.03950 - -35.21444 3.96321 0.95270 - -34.79663 5.21685 0.86957 - -34.26542 6.45569 0.79006 - -33.62212 7.68039 0.71412 - -32.86800 8.89158 0.64168 - -32.86798 8.89112 0.64168 - -31.90319 10.39973 0.56605 - -30.78902 11.87890 0.49444 - -29.52834 13.33020 0.42670 - -28.12386 14.75513 0.36265 - -26.57814 16.15516 0.30215 - -26.57802 16.15349 0.30215 - -24.41768 14.72684 0.22302 - -22.44897 13.41893 0.14992 - -20.65428 12.24185 0.08240 - -19.01492 11.20052 0.02002 - -17.51191 10.29250 -0.03768 - -17.51556 10.31239 -0.03768 - -16.12639 9.55442 -0.09109 - -14.83407 8.93056 -0.14051 - -13.61937 8.44531 -0.18626 - -12.46297 8.09743 -0.22863 - -11.34600 7.87989 -0.26792 - -11.34235 7.89730 -0.26792 - -10.24329 7.82388 -0.30442 - -9.14882 7.81136 -0.33840 - -8.05859 7.74555 -0.37012 - -6.98488 7.57652 -0.39984 - -5.94169 7.31052 -0.42784 - -5.94177 7.30844 -0.42784 - -4.95395 6.82902 -0.45438 - -4.02803 6.38426 -0.47970 - -3.17025 5.85612 -0.50401 - -2.39207 5.24763 -0.52752 - -1.70456 4.56114 -0.55045 - -1.70461 4.56049 -0.55045 - -1.11865 3.79764 -0.57298 - -0.64478 2.95954 -0.59524 - -0.29346 2.04696 -0.61731 - -0.07508 1.06040 -0.63928 - 0.00001 0.00004 -0.66123 + 0.00000 0.00000 -14.90904 + 0.00000 0.00000 -14.49113 + 0.00000 0.00000 -14.07322 + 0.00000 0.00000 -13.65530 + 0.00000 0.00000 -13.23739 + 0.00000 0.00000 -12.81948 + 0.00000 0.00000 -12.81948 + 0.00000 0.00000 -12.40157 + 0.00000 0.00000 -11.98365 + 0.00000 0.00000 -11.56574 + 0.00000 0.00000 -11.14783 + 0.00000 0.00000 -10.72991 + 0.00000 0.00000 -10.72991 + -0.00283 -0.07063 -10.17270 + -0.02260 -0.28253 -9.61549 + -0.07628 -0.63569 -9.05827 + -0.18082 -1.13011 -8.50103 + -0.35316 -1.76580 -7.94375 + -0.35316 -1.76580 -7.94375 + -0.56080 -2.40345 -7.47932 + -0.83712 -3.13920 -7.01481 + -1.19191 -3.97305 -6.55019 + -1.63500 -4.90500 -6.08542 + -2.17618 -5.93505 -5.62043 + -2.17618 -5.93505 -5.62043 + -2.82528 -7.06320 -5.15519 + -3.59209 -8.28945 -4.68960 + -4.48644 -9.61380 -4.22354 + -5.51812 -11.03625 -3.75689 + -6.69696 -12.55680 -3.28956 + -6.69696 148.14320 -3.28956 + 5.98427 146.75707 -2.88721 + 18.54318 145.29838 -2.48542 + 30.97351 143.76714 -2.08535 + 43.26904 142.16334 -1.68815 + 55.42353 140.48699 -1.29498 + 55.42353 45.84953 -1.29498 + 60.51855 43.51555 -0.78171 + 65.34023 41.05408 -0.27834 + 69.87403 38.46513 0.21437 + 74.10543 35.74868 0.69569 + 78.01989 32.90474 1.16487 + 78.01999 32.90148 1.16487 + 80.57486 31.02463 1.48651 + 82.99166 29.43758 1.80164 + 85.29159 28.10262 2.11010 + 87.49479 27.01932 2.41168 + 89.62040 26.15036 2.70621 + 89.62039 26.15036 2.70621 + 90.14172 25.98385 2.77872 + 90.65984 25.83070 2.85077 + 91.17505 25.69321 2.92237 + 91.68767 25.57137 2.99351 + 92.19799 25.46287 3.06418 + 92.19784 25.46733 3.06418 + 94.63999 23.38178 3.41053 + 96.87534 21.33058 3.74495 + 98.90667 19.29644 4.06719 + 100.73472 17.26516 4.37699 + 102.35985 15.23821 4.67410 + 102.35985 15.23831 4.67410 + 103.78249 13.21554 4.95828 + 105.00314 11.19836 5.22939 + 106.02235 9.18680 5.48729 + 106.84069 7.18104 5.73186 + 107.45875 5.18114 5.96297 + 107.45875 5.18128 5.96297 + 107.87714 3.18736 6.18051 + 108.09642 1.19927 6.38446 + 108.11718 -0.78306 6.57481 + 107.94000 -2.75974 6.75156 + 107.56541 -4.73110 6.91472 + 107.56540 -4.73084 6.91472 + 106.71044 -7.48131 7.12030 + 105.47107 -10.22228 7.29953 + 103.84863 -12.95399 7.45280 + 101.84436 -15.67710 7.58052 + 99.45939 -18.39276 7.68309 + 99.45936 -18.39213 7.68309 + 97.01456 -19.19516 7.75625 + 94.47374 -19.88006 7.80877 + 91.84944 -20.47982 7.84118 + 89.15260 -20.99618 7.85406 + 86.39531 -21.39983 7.84795 + 86.39543 -21.40076 7.84795 + 83.52908 -22.86600 7.82342 + 80.43546 -24.67313 7.78110 + 77.12837 -26.15006 7.72169 + 73.65075 -27.29679 7.64590 + 70.04552 -28.11332 7.55442 + 70.04551 -28.11336 7.55442 + 65.78656 -28.86250 7.43078 + 61.41562 -29.61165 7.28862 + 56.93268 -30.36079 7.12919 + 52.33774 -31.10994 6.95377 + 47.63081 -31.85908 6.76360 + 47.63081 -31.85908 6.76360 + 42.81188 -32.60823 6.55998 + 37.88095 -33.35737 6.34431 + 32.83802 -34.10652 6.11800 + 27.68310 -34.85566 5.88248 + 22.41618 -35.60481 5.63915 + 22.41566 -35.60233 5.63915 + 17.03711 -36.35148 5.38950 + 11.54657 -37.10062 5.13507 + 5.98965 -36.93416 4.87739 + 0.58469 -35.13353 4.61799 + -4.47553 -32.53551 4.35841 + -4.47439 -32.52862 4.35841 + -9.12270 -29.63009 4.10019 + -13.32421 -26.53937 3.84455 + -17.04661 -23.22072 3.59254 + -20.25877 -19.73296 3.34521 + -22.94749 -16.25978 3.10358 + -22.94770 -16.26154 3.10358 + -22.98018 -16.21567 3.10039 + -23.01256 -16.16982 3.09720 + -23.04486 -16.12400 3.09402 + -23.07706 -16.07819 3.09083 + -23.10917 -16.03241 3.08765 + -23.10917 -16.03241 3.08765 + -23.71155 -15.67182 3.02737 + -24.30020 -15.30876 2.96752 + -24.87498 -14.94252 2.90811 + -25.43579 -14.57308 2.84916 + -25.98250 -14.20111 2.79067 + -25.98249 -14.20123 2.79067 + -27.61453 -12.99633 2.60912 + -29.10057 -11.76543 2.43259 + -30.43690 -10.50113 2.26132 + -31.61948 -9.20277 2.09553 + -32.64445 -7.87646 1.93549 + -32.64446 -7.87661 1.93549 + -33.09664 -7.19516 1.85769 + -33.50773 -6.50645 1.78139 + -33.87723 -5.80870 1.70661 + -34.20459 -5.10183 1.63336 + -34.48930 -4.38743 1.56166 + -34.48926 -4.38840 1.56166 + -34.82242 -2.98198 1.45592 + -35.03596 -1.70675 1.35381 + -35.13222 -0.40417 1.25535 + -35.10937 0.90348 1.16054 + -34.96829 2.19422 1.06939 + -34.96830 2.19392 1.06939 + -34.71054 3.46841 0.98191 + -34.33752 4.72729 0.89805 + -33.85063 5.97125 0.81776 + -33.25119 7.20090 0.74099 + -32.54048 8.41691 0.66769 + -32.54046 8.41645 0.66769 + -31.62262 9.93527 0.59107 + -30.55440 11.42424 0.51844 + -29.33871 12.88492 0.44963 + -27.97831 14.31882 0.38451 + -26.47580 15.72737 0.32292 + -26.47568 15.72571 0.32292 + -24.37178 14.34811 0.24223 + -22.45274 13.08776 0.16757 + -20.70117 11.95669 0.09848 + -19.09861 10.95976 0.03454 + -17.62630 10.09448 -0.02469 + -17.62999 10.11462 -0.02469 + -16.26561 9.39768 -0.07960 + -14.99246 8.81308 -0.13049 + -13.79157 8.36527 -0.17767 + -12.64387 8.05289 -0.22143 + -11.53077 7.86883 -0.26207 + -11.52707 7.88643 -0.26207 + -10.42731 7.84432 -0.29987 + -9.32832 7.85244 -0.33510 + -8.23166 7.79568 -0.36803 + -7.15053 7.63171 -0.39892 + -6.09949 7.36691 -0.42804 + -6.09957 7.36478 -0.42804 + -5.09262 7.00464 -0.45567 + -4.14250 6.55377 -0.48205 + -3.26162 6.01602 -0.50738 + -2.46192 5.39453 -0.53190 + -1.75495 4.69169 -0.55580 + -1.75500 4.69103 -0.55580 + -1.15211 3.90854 -0.57931 + -0.66427 3.04755 -0.60253 + -0.30242 2.10885 -0.62556 + -0.07740 1.09295 -0.64849 + 0.00001 0.00004 -0.67140 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6102,7 +6238,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -6114,7 +6250,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -6125,17 +6261,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -6144,7 +6280,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -6174,13 +6310,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -6281,48 +6417,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 4.87189 0.00000 7.80254 0.68000 220 62 2 - 8.81007 0.00000 15.60507 1.36000 220 56 2 - 12.74291 0.00000 23.40761 2.04000 220 54 2 - 16.67025 0.00000 31.21015 2.72000 220 53 2 - 19.67031 0.00000 37.06205 3.23000 220 53 2 - 20.82235 0.00000 39.50034 3.44250 220 53 2 - 21.57147 0.00000 40.96332 3.57000 220 53 2 - 22.55063 0.00000 42.91395 3.74000 220 53 2 - 23.52943 0.00000 44.86459 3.91000 220 52 2 - 24.50786 0.00000 46.81522 4.08000 220 52 2 - 25.25551 0.00000 48.27820 4.20750 220 52 2 - 9.36375 0.00000 20.56677 6.30726 110 46 1 - 9.73108 0.98100 20.32861 6.32894 110 48 1 - 10.05637 1.96200 20.08785 6.35785 220 50 2 - 10.07798 2.94300 19.91182 6.38676 220 51 2 - 10.11343 3.92400 19.78100 6.41566 220 51 2 - 10.16416 4.90500 19.70421 6.43734 220 52 2 - 10.15200 4.90500 19.66214 6.45179 220 52 2 - 10.20884 5.88600 19.61027 6.47347 220 52 2 - 10.26359 6.86700 19.55671 6.50238 220 52 2 - 10.32080 7.84800 19.51850 6.53129 220 53 2 - 10.37934 8.82900 19.49272 6.56019 220 53 2 - 10.43757 9.81000 19.47992 6.58187 220 54 2 - 10.44811 9.81000 19.47440 6.63230 220 54 2 - 10.49715 10.79100 19.47010 6.61800 220 54 2 - 10.55524 11.77200 19.47023 6.64691 220 54 2 - 10.61224 12.75300 19.47646 6.67582 220 54 2 - 10.66781 13.73400 19.48795 6.70472 220 55 2 - 10.71818 14.71500 19.49947 6.72640 220 55 2 - 10.72665 14.71500 19.51051 6.74375 220 55 2 - 10.79392 16.08840 19.53319 6.77410 220 55 2 - 10.86197 17.46180 19.56875 6.81457 220 56 2 - 10.92561 18.83520 19.60984 6.85503 220 56 2 - 10.98463 20.20860 19.65566 6.89550 220 56 2 - 11.03151 21.58200 19.69261 6.92585 220 56 2 - 23.96815 21.58200 40.65119 7.89320 220 59 2 - 22.25370 25.39730 37.49247 5.34869 220 59 2 - 20.37473 29.21260 33.28909 4.15339 220 61 2 - 18.48252 33.02790 29.09277 2.95808 220 64 2 - 16.57664 36.84320 24.90135 1.76278 220 67 2 - 15.13539 40.65850 21.76001 0.86630 220 70 2 - 10.34570 40.65850 12.41397 0.26865 220 83 2 + 4.87572 0.00000 7.80254 0.68000 220 62 2 + 8.81435 0.00000 15.60507 1.36000 220 56 2 + 12.74763 0.00000 23.40761 2.04000 220 54 2 + 16.67541 0.00000 31.21015 2.72000 220 53 2 + 19.67593 0.00000 37.06205 3.23000 220 53 2 + 20.82796 0.00000 39.50034 3.44250 220 53 2 + 21.57719 0.00000 40.96332 3.57000 220 53 2 + 22.55646 0.00000 42.91395 3.74000 220 53 2 + 23.53537 0.00000 44.86459 3.91000 220 52 2 + 24.51391 0.00000 46.81522 4.08000 220 52 2 + 25.26167 0.00000 48.27820 4.20750 220 52 2 + 9.37145 0.00000 20.56677 6.30726 110 46 1 + 9.73947 0.98100 20.32861 6.32894 110 48 1 + 10.05864 1.96200 20.08785 6.35785 220 50 2 + 10.08042 2.94300 19.91182 6.38676 220 51 2 + 10.11604 3.92400 19.78100 6.41566 220 51 2 + 10.16694 4.90500 19.70421 6.43734 220 52 2 + 10.15478 4.90500 19.66214 6.45179 220 52 2 + 10.21179 5.88600 19.61027 6.47347 220 52 2 + 10.26671 6.86700 19.55671 6.50238 220 52 2 + 10.32408 7.84800 19.51850 6.53129 220 53 2 + 10.38279 8.82900 19.49272 6.56019 220 53 2 + 10.44118 9.81000 19.47992 6.58187 220 54 2 + 10.44272 9.81000 19.47440 6.59633 220 54 2 + 10.50092 10.79100 19.47010 6.61800 220 54 2 + 10.55918 11.77200 19.47023 6.64691 220 54 2 + 10.61633 12.75300 19.47646 6.67582 220 55 2 + 10.67205 13.73400 19.48795 6.70472 220 55 2 + 10.72258 14.71500 19.49947 6.72640 220 55 2 + 10.73106 14.71500 19.51051 6.74375 220 55 2 + 10.79854 16.08840 19.53319 6.77410 220 55 2 + 10.86680 17.46180 19.56875 6.81457 220 56 2 + 10.93065 18.83520 19.60984 6.85503 220 56 2 + 10.98988 20.20860 19.65566 6.89550 220 56 2 + 11.03696 21.58200 19.69261 6.92585 220 56 2 + 23.65598 21.58200 40.65119 6.24517 220 58 2 + 22.27173 25.39730 37.49247 5.34869 220 59 2 + 20.39333 29.21260 33.28909 4.15339 220 61 2 + 18.50167 33.02790 29.09277 2.95808 220 64 2 + 16.59634 36.84320 24.90135 1.76278 220 67 2 + 15.15563 40.65850 21.76001 0.86630 220 70 2 + 10.33981 40.65850 12.41397 0.26865 220 83 2 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -6336,94 +6472,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 12.25822 78.80074 17.96911 4.49986 220 68 2 - 21.80991 80.26733 36.36631 5.18955 220 60 2 - 22.86420 81.73392 39.87198 5.70681 220 57 2 - 23.21345 81.73392 42.19987 3.61198 220 55 2 - 24.87041 83.20052 45.68064 6.56892 220 54 2 - 26.39428 84.66711 50.30746 7.25860 220 52 2 - 27.91923 86.13371 54.92251 7.94829 220 51 2 - 28.49872 87.60031 59.53073 8.63797 110 48 1 - 27.56645 89.06690 62.98476 9.15524 110 44 1 - 27.74118 89.06690 64.15130 9.32997 110 43 1 - 27.72897 89.08652 64.19752 9.33689 110 43 1 - 27.71907 89.10614 64.25913 9.34611 110 43 1 - 27.70918 89.12576 64.32073 9.35534 110 43 1 - 27.69930 89.14538 64.38231 9.36457 110 43 1 - 27.68712 89.16500 64.42851 9.37149 110 43 1 - 14.44145 89.16500 58.82727 11.38885 110 25 1 - 14.48862 89.53778 59.19268 11.49627 110 24 1 - 14.57202 89.91056 59.68017 11.63950 110 24 1 - 14.65587 90.28334 60.16799 11.78273 110 24 1 - 14.74018 90.65612 60.65612 11.92596 110 24 1 - 14.78914 91.02890 61.02242 12.03338 110 24 1 - 14.93803 91.02890 61.53041 12.18226 110 24 1 - 15.09585 92.20610 62.68904 12.52149 110 24 1 - 15.37182 93.38330 64.23606 12.97380 110 24 1 - 15.65308 94.56050 65.78549 13.42610 110 24 1 - 15.93990 95.73770 67.33709 13.87840 110 24 1 - 16.11943 96.91490 68.50203 14.21763 110 24 1 - 16.28905 96.91490 69.08491 14.38724 110 24 1 - 16.38106 97.50350 69.66807 14.55686 110 24 1 - 16.53112 98.09210 70.44596 14.78301 110 23 1 - 16.68272 98.68070 71.22427 15.00916 110 23 1 - 16.83587 99.26930 72.00296 15.23531 110 23 1 - 16.93405 99.85790 72.58721 15.40493 110 23 1 - 15.01609 99.85790 73.07750 13.48696 110 21 1 - 17.22828 100.75061 73.96428 15.80446 110 23 1 - 17.46965 101.64332 75.14728 16.14746 110 23 1 - 17.71471 102.53603 76.33100 16.49046 110 23 1 - 17.96347 103.42874 77.51539 16.83345 110 23 1 - 18.13020 104.32145 78.40407 17.09070 110 23 1 - 35.97304 104.32145 78.99672 34.93354 110 46 1 - 18.47215 105.21416 79.88599 17.51945 110 23 1 - 18.73202 106.10687 81.07214 17.86244 110 23 1 - 18.99550 106.99958 82.25880 18.20544 110 23 1 - 19.26256 107.89229 83.44594 18.54844 110 23 1 - 19.44737 108.78500 84.33659 18.80568 110 23 1 - 21.89728 108.78500 56.86688 20.61391 110 39 1 - 23.51874 106.76600 61.08371 22.38663 110 39 1 - 25.73915 104.74700 66.69564 24.75026 110 39 1 - 27.96728 102.72800 72.29483 27.11388 110 39 1 - 30.20281 100.70900 77.88124 29.47751 110 39 1 - 31.85453 98.69000 82.06310 31.25023 110 39 1 - 23.98817 98.69000 272.58042 20.36232 110 9 1 - 23.54157 100.06340 271.86044 20.86529 110 9 1 - 23.33496 101.43680 274.54312 21.53590 110 8 1 - 23.19532 102.81020 279.33150 22.20652 110 8 1 - 23.11732 104.18360 285.19980 22.87714 110 8 1 - 22.92794 105.55700 290.01763 23.38010 110 0 1 - 23.26325 105.55700 293.38484 23.71541 110 0 1 - 23.12533 106.93040 298.60646 24.21837 110 0 1 - 23.20285 108.30380 305.78478 24.88899 110 0 1 - 23.32452 109.67720 313.15603 25.55961 110 0 1 - 23.48671 111.05060 320.66827 26.23022 110 0 1 - 23.51815 112.42400 326.37074 26.73319 110 0 1 - 23.85345 112.42400 330.20204 27.06849 110 0 1 - 23.91836 113.79740 335.98580 27.57146 110 0 1 - 24.18126 115.17080 343.74884 28.24207 110 0 1 - 24.47129 116.54420 351.56245 28.91269 110 0 1 - 24.78523 117.91760 359.41683 29.58331 110 0 1 - 24.95223 119.29100 365.32890 30.08627 110 0 1 - 25.28754 119.29100 369.28008 30.42158 110 0 1 - 25.47199 120.66440 375.21958 30.92454 110 0 1 - 25.83874 122.03780 383.15752 31.59516 110 0 1 - 26.21762 123.41120 391.11465 32.26578 110 0 1 - 26.60610 124.78460 399.08801 32.93639 110 0 1 - 26.83401 126.15800 405.07683 33.43936 110 0 1 - 27.16932 126.15800 409.07356 33.77467 110 0 1 - 27.40190 127.53140 415.07425 34.27763 110 0 1 - 27.80541 128.90480 423.08354 34.94825 110 0 1 - 28.21117 130.27820 431.10170 35.61886 110 0 1 - 28.61816 131.65160 439.12760 36.28948 110 0 1 - 28.85769 133.02500 445.15132 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 12.24897 78.80074 17.96911 4.49986 220 68 2 + 21.86174 80.26733 36.36631 5.18955 220 60 2 + 22.91631 81.73392 39.87198 5.70681 220 57 2 + 23.87548 81.73392 42.19987 6.05165 220 57 2 + 24.92275 83.20052 45.68064 6.56892 220 55 2 + 26.44678 84.66711 50.30746 7.25860 220 53 2 + 27.97183 86.13371 54.92251 7.94829 220 51 2 + 28.70921 87.60031 59.53073 8.63797 110 48 1 + 27.77672 89.06690 62.98476 9.15524 110 44 1 + 27.95144 89.06690 64.15130 9.32997 110 44 1 + 27.93923 89.08652 64.19752 9.33689 110 44 1 + 27.92933 89.10614 64.25913 9.34611 110 43 1 + 27.91944 89.12576 64.32073 9.35534 110 43 1 + 27.90955 89.14538 64.38231 9.36457 110 43 1 + 27.89736 89.16500 64.42851 9.37149 110 43 1 + 14.47649 89.16500 58.82727 11.38885 110 25 1 + 14.52364 89.53778 59.19268 11.49627 110 25 1 + 14.60702 89.91056 59.68017 11.63950 110 24 1 + 14.69084 90.28334 60.16799 11.78273 110 24 1 + 14.77512 90.65612 60.65612 11.92596 110 24 1 + 14.82405 91.02890 61.02242 12.03338 110 24 1 + 14.97293 91.02890 61.53041 12.18226 110 24 1 + 15.13062 92.20610 62.68904 12.52149 110 24 1 + 15.40639 93.38330 64.23606 12.97380 110 24 1 + 15.68741 94.56050 65.78549 13.42610 110 24 1 + 15.97394 95.73770 67.33709 13.87840 110 24 1 + 16.15312 96.91490 68.50203 14.21763 110 24 1 + 16.32273 96.91490 69.08491 14.38724 110 24 1 + 16.41455 97.50350 69.66807 14.55686 110 24 1 + 16.56440 98.09210 70.44596 14.78301 110 24 1 + 16.71577 98.68070 71.22427 15.00916 110 23 1 + 16.86867 99.26930 72.00296 15.23531 110 23 1 + 16.96659 99.85790 72.58721 15.40493 110 23 1 + 17.10888 99.85790 73.07750 15.54721 110 23 1 + 17.26038 100.75061 73.96428 15.80446 110 23 1 + 17.50127 101.64332 75.14728 16.14746 110 23 1 + 17.74580 102.53603 76.33100 16.49046 110 23 1 + 17.99399 103.42874 77.51539 16.83345 110 23 1 + 18.16009 104.32145 78.40407 17.09070 110 23 1 + 18.33159 104.32145 78.99672 17.26220 110 23 1 + 18.50135 105.21416 79.88599 17.51945 110 23 1 + 18.76049 106.10687 81.07214 17.86244 110 23 1 + 19.02320 106.99958 82.25880 18.20544 110 23 1 + 19.28942 107.89229 83.44594 18.54844 110 23 1 + 19.47337 108.78500 84.33659 18.80568 110 23 1 + 21.94928 108.78500 56.86688 20.61391 110 39 1 + 23.56877 106.76600 61.08371 22.38663 110 39 1 + 25.78713 104.74700 66.69564 24.75026 110 39 1 + 28.01315 102.72800 72.29483 27.11388 110 39 1 + 30.24653 100.70900 77.88124 29.47751 110 39 1 + 31.89606 98.69000 82.06310 31.25023 110 39 1 + 24.23733 98.69000 272.58042 20.36232 110 9 1 + 23.77210 100.06340 271.86044 20.86529 110 9 1 + 23.54671 101.43680 274.54312 21.53590 110 9 1 + 23.38830 102.81020 279.33150 22.20652 110 8 1 + 23.29163 104.18360 285.19980 22.87714 110 8 1 + 23.08384 105.55700 290.01763 23.38010 110 0 1 + 23.41915 105.55700 293.38484 23.71541 110 0 1 + 23.26318 106.93040 298.60646 24.21837 110 0 1 + 23.32306 108.30380 305.78478 24.88899 110 0 1 + 23.42756 109.67720 313.15603 25.55961 110 0 1 + 23.57307 111.05060 320.66827 26.23022 110 0 1 + 23.58835 112.42400 326.37074 26.73319 110 0 1 + 23.92366 112.42400 330.20204 27.06849 110 0 1 + 23.97298 113.79740 335.98580 27.57146 110 0 1 + 24.22084 115.17080 343.74884 28.24207 110 0 1 + 24.49635 116.54420 351.56245 28.91269 110 0 1 + 24.79629 117.91760 359.41683 29.58331 110 0 1 + 24.94978 119.29100 365.32890 30.08627 110 0 1 + 25.28509 119.29100 369.28008 30.42158 110 0 1 + 25.45648 120.66440 375.21958 30.92454 110 0 1 + 25.81060 122.03780 383.15752 31.59516 110 0 1 + 26.17718 123.41120 391.11465 32.26578 110 0 1 + 26.55363 124.78460 399.08801 32.93639 110 0 1 + 26.76972 126.15800 405.07683 33.43936 110 0 1 + 27.10503 126.15800 409.07356 33.77467 110 0 1 + 27.32594 127.53140 415.07425 34.27763 110 0 1 + 27.71788 128.90480 423.08354 34.94825 110 0 1 + 28.11212 130.27820 431.10170 35.61886 110 0 1 + 28.50764 131.65160 439.12760 36.28948 110 0 1 + 28.73570 133.02500 445.15132 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6438,13 +6574,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 6.538 'Ophooglaag zand' - -3.50 23.035 'Hollandveen' - -5.70 13.314 'Oude Zeeklei' - -7.00 26.974 'Wadzand' - -10.00 34.371 'Hydrobiaklei' - -12.00 13.430 'Basisveen' - -12.50 87.525 'Eerste zandlaag' + -3.00 6.541 'Ophooglaag zand' + -3.50 23.044 'Hollandveen' + -5.70 13.304 'Oude Zeeklei' + -7.00 27.106 'Wadzand' + -10.00 33.725 'Hydrobiaklei' + -12.00 13.454 'Basisveen' + -12.50 87.680 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6464,10 +6600,10 @@ Layer name -3.00 2.38 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 2.83 'Oude Zeeklei' - -7.00 8.09 'Wadzand' - -10.00 7.31 'Hydrobiaklei' + -7.00 8.13 'Wadzand' + -10.00 7.17 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 33.60 'Eerste zandlaag' + -12.50 33.66 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6676,7 +6812,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -6688,7 +6824,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -6855,53 +6991,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 302 100 P - 3.38758 100.76161 31.86408 3.83947 110 0 1 - 3.32935 101.65432 33.06586 4.18246 110 0 1 - 3.30120 102.54703 34.26739 4.52546 110 0 1 - 3.73844 103.43974 35.46867 4.86846 110 0 1 - 4.08620 104.33245 36.36949 5.12571 110 0 1 - 4.25770 104.33245 36.96996 5.29720 110 0 1 - 4.60175 105.22516 37.87056 5.55445 110 0 1 - 5.02788 106.11787 39.07118 5.89745 110 0 1 - 5.45038 107.01058 40.27161 6.24045 110 0 1 - 5.86932 107.90329 41.47185 6.58344 110 0 1 - 6.19901 108.79600 42.37192 6.84069 110 0 1 - 6.64886 108.79600 25.59840 7.93223 110 0 1 - 8.57284 106.77700 29.70475 9.70495 110 0 1 - 11.07969 104.75800 35.16081 12.06858 110 0 1 - 13.57881 102.73900 40.59674 14.43220 110 0 1 - 16.07052 100.72000 46.01595 16.79583 110 0 1 - 17.96424 98.70100 50.07174 18.56855 110 0 1 - 34.55899 98.70100 177.20934 12.31919 110 20 1 - 33.32944 100.07440 165.98087 12.82216 110 20 1 - 32.20955 101.44780 168.35015 13.49277 110 19 1 - 31.11409 102.82120 174.33058 14.16339 110 18 1 - 30.05270 104.19460 181.36358 14.83401 110 17 1 - 28.94225 105.56800 186.93725 15.33697 110 15 1 - 29.12731 105.56800 190.74477 15.70861 110 15 1 - 28.06733 106.94140 196.54307 16.17524 110 14 1 - 27.15119 108.31480 204.37210 16.84586 110 13 1 - 26.28630 109.68820 212.27871 17.51648 110 12 1 - 25.47260 111.06160 220.23553 18.18709 110 12 1 - 24.61801 112.43500 226.22528 18.69006 110 11 1 - 24.80193 112.43500 230.22741 19.02537 110 11 1 - 23.99672 113.80840 236.24102 19.52833 110 10 1 - 24.25976 115.18180 244.27295 20.19895 110 10 1 - 25.31097 116.55520 252.31767 20.86956 110 10 1 - 26.33826 117.92860 260.37206 21.54018 110 10 1 - 27.17718 119.30200 266.41766 22.04314 110 10 1 - 29.25242 119.30200 270.45017 24.11838 110 11 1 - 28.33397 120.67540 276.50161 22.88141 110 10 1 - 29.30845 122.04880 284.57394 23.55203 110 10 1 - 30.27081 123.42220 292.65001 24.22265 110 10 1 - 31.22356 124.79560 300.72910 24.89327 110 10 1 - 32.00158 126.16900 306.79002 25.39623 110 10 1 - 32.33689 126.16900 310.83135 25.73154 110 10 1 - 33.11023 127.54240 316.89433 26.23450 110 10 1 - 34.04795 128.91580 324.97970 26.90512 110 10 1 - 34.98343 130.28920 333.06652 27.57574 110 11 1 - 35.91768 131.66260 341.15457 28.24635 110 11 1 - 36.68407 133.03600 347.22126 28.74932 110 11 1 + 3.38567 100.76161 31.86408 3.83947 110 0 1 + 3.32696 101.65432 33.06586 4.18246 110 0 1 + 3.27011 102.54703 34.26739 4.52546 110 0 1 + 3.70792 103.43974 35.46867 4.86846 110 0 1 + 4.05631 104.33245 36.36949 5.12571 110 0 1 + 4.22781 104.33245 36.96996 5.29720 110 0 1 + 4.57254 105.22516 37.87056 5.55445 110 0 1 + 4.99940 106.11787 39.07118 5.89745 110 0 1 + 5.42269 107.01058 40.27161 6.24045 110 0 1 + 5.84246 107.90329 41.47185 6.58344 110 0 1 + 6.17300 108.79600 42.37192 6.84069 110 0 1 + 6.59686 108.79600 25.59840 7.93223 110 0 1 + 8.52281 106.77700 29.70475 9.70495 110 0 1 + 11.03171 104.75800 35.16081 12.06858 110 0 1 + 13.53293 102.73900 40.59674 14.43220 110 0 1 + 16.02680 100.72000 46.01595 16.79583 110 0 1 + 17.92271 98.70100 50.07174 18.56855 110 0 1 + 34.45260 98.70100 177.20934 12.31919 110 19 1 + 33.21482 100.07440 165.98087 12.82216 110 20 1 + 32.08703 101.44780 168.35015 13.49277 110 19 1 + 30.98409 102.82120 174.33058 14.16339 110 18 1 + 29.91573 104.19460 181.36358 14.83401 110 16 1 + 28.79890 105.56800 186.93725 15.33697 110 15 1 + 28.98397 105.56800 190.74477 15.67228 110 15 1 + 27.91831 106.94140 196.54307 16.17524 110 14 1 + 26.99735 108.31480 204.37210 16.84586 110 13 1 + 26.12867 109.68820 212.27871 17.51648 110 12 1 + 25.31239 111.06160 220.23553 18.18709 110 11 1 + 24.45660 112.43500 226.22528 18.69006 110 11 1 + 24.64052 112.43500 230.22741 19.02537 110 11 1 + 23.83567 113.80840 236.24102 19.52833 110 10 1 + 24.22018 115.18180 244.27295 20.19895 110 10 1 + 25.28590 116.55520 252.31767 20.86956 110 10 1 + 26.32720 117.92860 260.37206 21.54018 110 10 1 + 27.17964 119.30200 266.41766 22.04314 110 10 1 + 27.51495 119.30200 270.45017 22.37845 110 10 1 + 28.34947 120.67540 276.50161 22.88141 110 10 1 + 29.33660 122.04880 284.57394 23.55203 110 10 1 + 30.31125 123.42220 292.65001 24.22265 110 10 1 + 31.27603 124.79560 300.72910 24.89327 110 10 1 + 32.06586 126.16900 306.79002 25.39623 110 10 1 + 32.40117 126.16900 310.83135 25.73154 110 10 1 + 33.18619 127.54240 316.89433 26.23450 110 10 1 + 34.13549 128.91580 324.97970 26.90512 110 11 1 + 35.08247 130.28920 333.06652 27.57574 110 11 1 + 36.02820 131.66260 341.15457 28.24635 110 11 1 + 36.80606 133.03600 347.22126 28.74932 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6919,9 +7055,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 3.822 'Hydrobiaklei' - -12.00 6.161 'Basisveen' - -12.50 103.675 'Eerste zandlaag' + -10.00 3.802 'Hydrobiaklei' + -12.00 6.137 'Basisveen' + -12.50 103.402 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6943,7 +7079,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -0.81 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -39.80 'Eerste zandlaag' + -12.50 -39.69 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -7165,7 +7301,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 240.64153 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 240.63970 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7190,20 +7326,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.09 : Percentage mobilized resistance left - 9.99 : Percentage mobilized resistance right - 93.32 : Effective left - 92.40 : Effective right + 10.08 : Percentage mobilized resistance left + 9.98 : Percentage mobilized resistance right + 93.20 : Effective left + 92.28 : Effective right 1112.88 : Water pressure left 1112.88 : Water pressure right 925.02 : Max effective resistance left 925.02 : Max effective resistance right -11008.78 : Max moment left -11008.78 : Max moment right --1077.86 : Max mobilized moment left --1077.21 : Max mobilized moment right - 32.66 : Vertical force left - 31.95 : Vertical force right +-1076.37 : Max mobilized moment left +-1075.71 : Max mobilized moment right + 32.62 : Vertical force left + 31.90 : Vertical force right 9.8 : Max mobilized moment percentage left 9.8 : Max mobilized moment percentage right -2.43 : Level of single support @@ -7212,10 +7348,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --31.95 : Active force -32.66 : Passive force --31.95 : Plugged active force -32.66 : Plugged passive force +-31.90 : Active force +32.62 : Passive force +-31.90 : Plugged active force +32.62 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -7235,192 +7371,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.89616 - 0.00000 0.00000 -4.84691 - 0.00000 0.00000 -4.79766 - 0.00000 0.00000 -4.74841 - 0.00000 0.00000 -4.69916 - 0.00000 0.00000 -4.64992 - 0.00000 0.00000 -4.64992 - 0.00000 0.00000 -4.60067 - 0.00000 0.00000 -4.55142 - 0.00000 0.00000 -4.50217 - 0.00000 0.00000 -4.45292 - 0.00000 0.00000 -4.40367 - 0.00000 0.00000 -4.40367 - 0.00000 0.00000 -4.33801 - 0.00000 0.00000 -4.27235 - 0.00000 0.00000 -4.20668 - 0.00000 0.00000 -4.14102 - 0.00000 0.00000 -4.07535 - 0.00000 0.00000 -4.07535 - 0.00000 0.00000 -4.02063 - 0.00000 0.00000 -3.96591 - 0.00000 0.00000 -3.91119 - 0.00000 0.00000 -3.85647 - 0.00000 0.00000 -3.80175 - 0.00000 0.00000 -3.80175 - 0.00000 0.00000 -3.74703 - 0.00000 0.00000 -3.69231 - 0.00000 0.00000 -3.63759 - 0.00000 0.00000 -3.58287 - 0.00000 0.00000 -3.52815 - 0.00000 0.00000 -3.52815 - 0.00000 0.00000 -3.48109 - 0.00000 0.00000 -3.43403 - 0.00000 0.00000 -3.38697 - 0.00000 0.00000 -3.33991 - 0.00000 0.00000 -3.29285 - 0.00000 0.85847 -3.29285 - 0.09787 0.85847 -3.23047 - 0.19573 0.85847 -3.16811 - 0.29360 0.85847 -3.10578 - 0.39146 0.85847 -3.04350 - 0.48933 0.85847 -2.98128 - 0.48943 0.85521 -2.98128 - 0.55785 0.85521 -2.93766 - 0.62626 0.85521 -2.89409 - 0.69468 0.85521 -2.85057 - 0.76310 0.85521 -2.80711 - 0.83151 0.85521 -2.76371 - 0.83151 0.85521 -2.76371 - 0.84861 0.85521 -2.75287 - 0.86572 0.85521 -2.74203 - 0.88282 0.85521 -2.73120 - 0.89993 0.85521 -2.72037 - 0.91703 0.85521 -2.70955 - 0.91688 0.85966 -2.70955 - 1.00284 0.85966 -2.65551 - 1.08881 0.85966 -2.60159 - 1.17477 0.85966 -2.54781 - 1.26074 0.85966 -2.49418 - 1.34671 0.85966 -2.44071 - 1.34670 0.85976 -2.44071 - 1.43268 0.85976 -2.38741 - 1.51866 0.85976 -2.33429 - 1.60463 0.85976 -2.28136 - 1.69061 0.85976 -2.22863 - 1.77659 0.85976 -2.17611 - 1.77659 0.85990 -2.17611 - 1.86258 0.85990 -2.12382 - 1.94857 0.85990 -2.07176 - 2.03456 0.85990 -2.01995 - 2.12055 0.85990 -1.96840 - 2.20654 0.85990 -1.91711 - 2.20652 0.86016 -1.91711 - 2.32694 0.86016 -1.84578 - 2.44737 0.86016 -1.77502 - 2.56779 0.86016 -1.70486 - 2.68821 0.86016 -1.63534 - 2.80864 0.86016 -1.56648 - 2.80861 0.86079 -1.56648 - 2.92051 0.86079 -1.50317 - 3.03242 0.86079 -1.44047 - 3.14432 0.86079 -1.37842 - 3.25622 0.86079 -1.31704 - 3.36812 0.86079 -1.25635 - 3.36824 0.85986 -1.25635 - 3.48003 0.85986 -1.19638 - 3.59181 0.85986 -1.13715 - 3.70359 0.85986 -1.07868 - 3.81537 0.85986 -1.02100 - 3.92715 0.85986 -0.96414 - 3.92714 0.85982 -0.96414 - 4.05569 0.85982 -0.89978 - 4.18423 0.85982 -0.83656 - 4.31277 0.85982 -0.77452 - 4.44132 0.85982 -0.71370 - 4.56986 0.85982 -0.65412 - 4.56986 0.85982 -0.65412 - 4.69840 0.85982 -0.59584 - 4.82695 0.85982 -0.53887 - 4.95549 0.85982 -0.48326 - 5.08403 0.85982 -0.42905 - 5.21258 0.85982 -0.37627 - 5.21206 0.86230 -0.37627 - 5.34097 0.86230 -0.32496 - 5.46988 0.86230 -0.27515 - 5.59880 0.86230 -0.22689 - 5.72771 0.86230 -0.18020 - 5.85662 0.86230 -0.13512 - 5.85777 0.86921 -0.13512 - 5.98772 0.86921 -0.09169 - 6.11766 0.86921 -0.04994 - 6.24761 0.86921 -0.00992 - 6.37756 0.86921 0.02834 - 6.50750 0.86921 0.06481 - 6.50730 0.86749 0.06481 - 6.50904 0.86749 0.06528 - 6.51077 0.86749 0.06576 - 6.51251 0.86749 0.06623 - 6.51424 0.86749 0.06671 - 6.51598 0.86749 0.06718 - 6.51598 0.86748 0.06718 - 6.54894 0.86748 0.07613 - 6.58191 0.86748 0.08496 - 6.61487 0.86748 0.09366 - 6.64784 0.86748 0.10225 - 6.68080 0.86748 0.11072 - 6.68081 0.86737 0.11072 - 6.78490 0.86737 0.13666 - 6.88898 0.86737 0.16136 - 6.99306 0.86737 0.18482 - 7.09715 0.86737 0.20701 - 7.20123 0.86737 0.22791 - 7.20122 0.86721 0.22791 - 7.25325 0.86721 0.23787 - 7.30529 0.86721 0.24750 - 7.35732 0.86721 0.25680 - 7.40935 0.86721 0.26577 - 7.46138 0.86721 0.27440 - 7.46154 0.86291 0.27440 - 7.53938 0.84246 0.28685 - 7.61512 0.83016 0.29851 - 7.69187 0.86414 0.30937 - 7.77310 0.92136 0.31943 - 7.85961 0.98034 0.32868 - 7.85959 0.98028 0.32868 - 7.95154 1.04086 0.33711 - 8.04908 1.10291 0.34472 - 8.15231 1.16626 0.35148 - 8.26137 1.23077 0.35739 - 8.37634 1.29628 0.36244 - 8.37634 1.29640 0.36244 - 8.51326 1.44228 0.36698 - 8.66485 1.58977 0.37045 - 8.83125 1.73842 0.37282 - 9.01256 1.88780 0.37408 - 9.20882 2.03746 0.37421 - 9.20832 2.04182 0.37421 - 9.33732 -0.13732 0.37240 - 9.18688 -1.95192 0.36829 - 8.80710 -3.41700 0.36195 - 8.24548 -4.55294 0.35349 - 7.54642 -5.38571 0.34298 - 7.54294 -5.35716 0.34298 - 6.75265 -5.88917 0.33058 - 5.90610 -6.16135 0.31651 - 5.03908 -6.18473 0.30098 - 4.18516 -5.97697 0.28422 - 3.37530 -5.55976 0.26641 - 3.37911 -5.53720 0.26641 - 2.64570 -4.90972 0.24779 - 2.00978 -4.16661 0.22851 - 1.47865 -3.43206 0.20872 - 1.04567 -2.76467 0.18854 - 0.70136 -2.16552 0.16810 - 0.70138 -2.16523 0.16810 - 0.43617 -1.63499 0.14751 - 0.24035 -1.17411 0.12682 - 0.10417 -0.78287 0.10606 - 0.01788 -0.46148 0.08525 - -0.02830 -0.20998 0.06445 - -0.02830 -0.20997 0.06445 - -0.04417 -0.02836 0.04366 - -0.03950 0.08342 0.02288 - -0.02407 0.12539 0.00211 - -0.00764 0.09758 -0.01866 - 0.00000 0.00000 -0.03942 + 0.00000 0.00000 -4.89757 + 0.00000 0.00000 -4.84828 + 0.00000 0.00000 -4.79899 + 0.00000 0.00000 -4.74970 + 0.00000 0.00000 -4.70040 + 0.00000 0.00000 -4.65111 + 0.00000 0.00000 -4.65111 + 0.00000 0.00000 -4.60182 + 0.00000 0.00000 -4.55253 + 0.00000 0.00000 -4.50323 + 0.00000 0.00000 -4.45394 + 0.00000 0.00000 -4.40465 + 0.00000 0.00000 -4.40465 + 0.00000 0.00000 -4.33892 + 0.00000 0.00000 -4.27320 + 0.00000 0.00000 -4.20748 + 0.00000 0.00000 -4.14175 + 0.00000 0.00000 -4.07603 + 0.00000 0.00000 -4.07603 + 0.00000 0.00000 -4.02126 + 0.00000 0.00000 -3.96649 + 0.00000 0.00000 -3.91172 + 0.00000 0.00000 -3.85695 + 0.00000 0.00000 -3.80218 + 0.00000 0.00000 -3.80218 + 0.00000 0.00000 -3.74741 + 0.00000 0.00000 -3.69264 + 0.00000 0.00000 -3.63787 + 0.00000 0.00000 -3.58310 + 0.00000 0.00000 -3.52833 + 0.00000 0.00000 -3.52833 + 0.00000 0.00000 -3.48123 + 0.00000 0.00000 -3.43413 + 0.00000 0.00000 -3.38703 + 0.00000 0.00000 -3.33993 + 0.00000 0.00000 -3.29283 + 0.00000 0.86030 -3.29283 + 0.09807 0.86030 -3.23039 + 0.19615 0.86030 -3.16797 + 0.29422 0.86030 -3.10559 + 0.39230 0.86030 -3.04325 + 0.49037 0.86030 -2.98097 + 0.49048 0.85704 -2.98097 + 0.55904 0.85704 -2.93732 + 0.62760 0.85704 -2.89371 + 0.69616 0.85704 -2.85015 + 0.76473 0.85704 -2.80665 + 0.83329 0.85704 -2.76321 + 0.83328 0.85703 -2.76321 + 0.85042 0.85703 -2.75236 + 0.86757 0.85703 -2.74151 + 0.88471 0.85703 -2.73067 + 0.90185 0.85703 -2.71984 + 0.91899 0.85703 -2.70900 + 0.91883 0.86150 -2.70900 + 1.00498 0.86150 -2.65491 + 1.09113 0.86150 -2.60095 + 1.17728 0.86150 -2.54712 + 1.26343 0.86150 -2.49345 + 1.34958 0.86150 -2.43993 + 1.34958 0.86160 -2.43993 + 1.43574 0.86160 -2.38658 + 1.52190 0.86160 -2.33341 + 1.60806 0.86160 -2.28044 + 1.69422 0.86160 -2.22766 + 1.78038 0.86160 -2.17510 + 1.78038 0.86174 -2.17510 + 1.86655 0.86174 -2.12277 + 1.95273 0.86174 -2.07067 + 2.03890 0.86174 -2.01881 + 2.12507 0.86174 -1.96722 + 2.21125 0.86174 -1.91589 + 2.21123 0.86200 -1.91589 + 2.33191 0.86200 -1.84449 + 2.45259 0.86200 -1.77368 + 2.57327 0.86200 -1.70347 + 2.69395 0.86200 -1.63389 + 2.81463 0.86200 -1.56498 + 2.81461 0.86263 -1.56498 + 2.92675 0.86263 -1.50162 + 3.03889 0.86263 -1.43888 + 3.15103 0.86263 -1.37678 + 3.26317 0.86263 -1.31536 + 3.37531 0.86263 -1.25463 + 3.37543 0.86170 -1.25463 + 3.48745 0.86170 -1.19462 + 3.59947 0.86170 -1.13535 + 3.71149 0.86170 -1.07684 + 3.82351 0.86170 -1.01913 + 3.93553 0.86170 -0.96223 + 3.93553 0.86166 -0.96223 + 4.06434 0.86166 -0.89784 + 4.19316 0.86166 -0.83459 + 4.32198 0.86166 -0.77251 + 4.45080 0.86166 -0.71166 + 4.57961 0.86166 -0.65206 + 4.57961 0.86166 -0.65206 + 4.70843 0.86166 -0.59375 + 4.83725 0.86166 -0.53676 + 4.96607 0.86166 -0.48114 + 5.09488 0.86166 -0.42691 + 5.22370 0.86166 -0.37412 + 5.22318 0.86413 -0.37412 + 5.35237 0.86413 -0.32280 + 5.48156 0.86413 -0.27299 + 5.61074 0.86413 -0.22472 + 5.73993 0.86413 -0.17803 + 5.86912 0.86413 -0.13296 + 5.87026 0.87102 -0.13296 + 6.00048 0.87102 -0.08953 + 6.13070 0.87102 -0.04780 + 6.26092 0.87102 -0.00780 + 6.39114 0.87102 0.03044 + 6.52135 0.87102 0.06689 + 6.52115 0.86926 0.06689 + 6.52289 0.86926 0.06736 + 6.52463 0.86926 0.06784 + 6.52637 0.86926 0.06831 + 6.52810 0.86926 0.06879 + 6.52984 0.86926 0.06926 + 6.52984 0.86926 0.06926 + 6.56287 0.86926 0.07820 + 6.59591 0.86926 0.08702 + 6.62894 0.86926 0.09572 + 6.66197 0.86926 0.10430 + 6.69500 0.86926 0.11276 + 6.69501 0.86915 0.11276 + 6.79931 0.86915 0.13868 + 6.90361 0.86915 0.16335 + 7.00791 0.86915 0.18678 + 7.11220 0.86915 0.20893 + 7.21650 0.86915 0.22980 + 7.21649 0.86899 0.22980 + 7.26863 0.86899 0.23974 + 7.32077 0.86899 0.24935 + 7.37291 0.86899 0.25863 + 7.42505 0.86899 0.26758 + 7.47719 0.86899 0.27619 + 7.47735 0.86468 0.27619 + 7.55531 0.84301 0.28860 + 7.63099 0.82833 0.30022 + 7.70751 0.86128 0.31105 + 7.78849 0.91880 0.32107 + 7.87478 0.97808 0.33028 + 7.87477 0.97802 0.33028 + 7.96652 1.03889 0.33867 + 8.06389 1.10121 0.34623 + 8.16698 1.16484 0.35294 + 8.27592 1.22961 0.35880 + 8.39080 1.29536 0.36380 + 8.39080 1.29549 0.36380 + 8.52765 1.44191 0.36829 + 8.67923 1.58990 0.37170 + 8.84567 1.73905 0.37402 + 9.02706 1.88889 0.37522 + 9.22346 2.03899 0.37528 + 9.22295 2.04336 0.37528 + 9.35111 -0.15044 0.37338 + 9.19800 -1.97628 0.36917 + 8.81422 -3.44920 0.36274 + 8.24774 -4.58969 0.35418 + 7.54340 -5.42381 0.34357 + 7.53988 -5.39496 0.34357 + 6.74414 -5.92781 0.33107 + 5.89248 -6.19536 0.31690 + 5.02118 -6.21141 0.30128 + 4.16419 -5.99380 0.28443 + 3.35279 -5.56447 0.26654 + 3.35664 -5.54166 0.26654 + 2.62358 -4.90006 0.24784 + 1.98971 -4.14946 0.22849 + 1.46097 -3.41510 0.20863 + 1.03034 -2.74813 0.18838 + 0.68830 -2.14961 0.16788 + 0.68833 -2.14932 0.16788 + 0.42529 -1.61991 0.14724 + 0.23151 -1.16003 0.12649 + 0.09722 -0.76999 0.10568 + 0.01264 -0.44995 0.08482 + -0.03203 -0.19997 0.06397 + -0.03203 -0.19997 0.06397 + -0.04661 -0.02004 0.04313 + -0.04091 0.08990 0.02231 + -0.02471 0.12987 0.00149 + -0.00781 0.09990 -0.01933 + 0.00000 0.00000 -0.04014 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7626,7 +7762,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -7638,7 +7774,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -7805,53 +7941,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.00000 99.86890 0.05123 0.05123 1 0 A - 4.12632 100.76161 31.86408 3.83947 110 13 1 - 4.48097 101.65432 33.06586 4.18246 110 14 1 - 4.83483 102.54703 34.26739 4.52546 110 14 1 - 5.18789 103.43974 35.46867 4.86846 110 15 1 - 5.45439 104.33245 36.36949 5.12571 110 15 1 - 5.62589 104.33245 36.96996 5.29720 110 15 1 - 5.89157 105.22516 37.87056 5.55445 110 16 1 - 6.24216 106.11787 39.07118 5.89745 110 16 1 - 6.59192 107.01058 40.27161 6.24045 110 16 1 - 6.94083 107.90329 41.47185 6.58344 110 17 1 - 7.20313 108.79600 42.37192 6.84069 110 17 1 - 8.65710 108.79600 25.59840 7.93223 110 34 1 - 10.43890 106.77700 29.70475 9.70495 110 35 1 - 12.80947 104.75800 35.16081 12.06858 110 36 1 - 15.17785 102.73900 40.59674 14.43220 110 37 1 - 17.54399 100.72000 46.01595 16.79583 110 38 1 - 19.31697 98.70100 50.07174 18.56855 110 39 1 - 16.80971 98.70100 177.20934 12.31919 110 9 1 - 17.29096 100.07440 165.98087 12.82216 110 10 1 - 17.91221 101.44780 168.35015 13.49277 110 11 1 - 18.50683 102.82120 174.33058 14.16339 110 11 1 - 19.07587 104.19460 181.36358 14.83401 110 11 1 - 19.45273 105.56800 186.93725 15.33697 110 10 1 - 19.82437 105.56800 190.74477 15.70861 110 10 1 - 20.14216 106.94140 196.54307 16.17524 110 10 1 - 20.64396 108.31480 204.37210 16.84586 110 10 1 - 21.12830 109.68820 212.27871 17.51648 110 10 1 - 21.59769 111.06160 220.23553 18.18709 110 10 1 - 21.88699 112.43500 226.22528 18.69006 110 10 1 - 22.22230 112.43500 230.22741 19.02537 110 10 1 - 22.50178 113.80840 236.24102 19.52833 110 10 1 - 22.94110 115.18180 244.27295 20.19895 110 9 1 - 23.37419 116.55520 252.31767 20.86956 110 9 1 - 23.80263 117.92860 260.37206 21.54018 110 9 1 - 24.06035 119.30200 266.41766 22.04314 110 9 1 - 26.13559 119.30200 270.45017 24.11838 110 10 1 - 24.65159 120.67540 276.50161 22.88141 110 9 1 - 25.07389 122.04880 284.57394 23.55203 110 9 1 - 25.49532 123.42220 292.65001 24.22265 110 9 1 - 25.91629 124.79560 300.72910 24.89327 110 9 1 - 26.16959 126.16900 306.79002 25.39623 110 9 1 - 26.50490 126.16900 310.83135 25.73154 110 9 1 - 26.75839 127.54240 316.89433 26.23450 110 8 1 - 27.17965 128.91580 324.97970 26.90512 110 8 1 - 27.60101 130.28920 333.06652 27.57574 110 8 1 - 28.02243 131.66260 341.15457 28.24635 110 0 1 - 28.27624 133.03600 347.22126 28.74932 110 0 1 + 4.12807 100.76161 31.86408 3.83947 110 13 1 + 4.48269 101.65432 33.06586 4.18246 110 14 1 + 4.83651 102.54703 34.26739 4.52546 110 14 1 + 5.18953 103.43974 35.46867 4.86846 110 15 1 + 5.45599 104.33245 36.36949 5.12571 110 15 1 + 5.62748 104.33245 36.96996 5.29720 110 15 1 + 5.89312 105.22516 37.87056 5.55445 110 16 1 + 6.24367 106.11787 39.07118 5.89745 110 16 1 + 6.59339 107.01058 40.27161 6.24045 110 16 1 + 6.94225 107.90329 41.47185 6.58344 110 17 1 + 7.20449 108.79600 42.37192 6.84069 110 17 1 + 8.65984 108.79600 25.59840 7.93223 110 34 1 + 10.44153 106.77700 29.70475 9.70495 110 35 1 + 12.81198 104.75800 35.16081 12.06858 110 36 1 + 15.18023 102.73900 40.59674 14.43220 110 37 1 + 17.54626 100.72000 46.01595 16.79583 110 38 1 + 19.31911 98.70100 50.07174 18.56855 110 39 1 + 16.82255 98.70100 177.20934 12.31919 110 9 1 + 17.30271 100.07440 165.98087 12.82216 110 10 1 + 17.92281 101.44780 168.35015 13.49277 110 11 1 + 18.51626 102.82120 174.33058 14.16339 110 11 1 + 19.08412 104.19460 181.36358 14.83401 110 11 1 + 19.45979 105.56800 186.93725 15.33697 110 10 1 + 19.79510 105.56800 190.74477 15.67228 110 10 1 + 20.14803 106.94140 196.54307 16.17524 110 10 1 + 20.64867 108.31480 204.37210 16.84586 110 10 1 + 21.13189 109.68820 212.27871 17.51648 110 10 1 + 21.60021 111.06160 220.23553 18.18709 110 10 1 + 21.88850 112.43500 226.22528 18.69006 110 10 1 + 22.22381 112.43500 230.22741 19.02537 110 10 1 + 22.50235 113.80840 236.24102 19.52833 110 10 1 + 22.94080 115.18180 244.27295 20.19895 110 9 1 + 23.37308 116.55520 252.31767 20.86956 110 9 1 + 23.80075 117.92860 260.37206 21.54018 110 9 1 + 24.05776 119.30200 266.41766 22.04314 110 9 1 + 24.39307 119.30200 270.45017 22.37845 110 9 1 + 24.64832 120.67540 276.50161 22.88141 110 9 1 + 25.06996 122.04880 284.57394 23.55203 110 9 1 + 25.49077 123.42220 292.65001 24.22265 110 9 1 + 25.91115 124.79560 300.72910 24.89327 110 9 1 + 26.16386 126.16900 306.79002 25.39623 110 9 1 + 26.49917 126.16900 310.83135 25.73154 110 9 1 + 26.75208 127.54240 316.89433 26.23450 110 8 1 + 27.17278 128.91580 324.97970 26.90512 110 8 1 + 27.59358 130.28920 333.06652 27.57574 110 8 1 + 28.01444 131.66260 341.15457 28.24635 110 0 1 + 28.26769 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7869,9 +8005,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.863 'Hydrobiaklei' - -12.00 6.996 'Basisveen' - -12.50 80.540 'Eerste zandlaag' + -10.00 4.864 'Hydrobiaklei' + -12.00 6.997 'Basisveen' + -12.50 80.417 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -7893,7 +8029,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.03 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -30.92 'Eerste zandlaag' + -12.50 -30.87 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8102,7 +8238,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -8114,7 +8250,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -8281,53 +8417,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 302 100 P - 4.52456 100.76161 31.86408 3.83947 110 14 1 - 4.35303 101.65432 33.06586 4.18246 110 13 1 - 4.21609 102.54703 34.26739 4.52546 110 0 1 - 4.54903 103.43974 35.46867 4.86846 110 0 1 - 4.79702 104.33245 36.36949 5.12571 110 0 1 - 4.96852 104.33245 36.96996 5.29720 110 0 1 - 5.21734 105.22516 37.87056 5.55445 110 0 1 - 5.55273 106.11787 39.07118 5.89745 110 0 1 - 5.88897 107.01058 40.27161 6.24045 110 0 1 - 6.22605 107.90329 41.47185 6.58344 110 0 1 - 6.47825 108.79600 42.37192 6.84069 110 0 1 - 7.20736 108.79600 25.59840 7.93223 110 0 1 - 8.97099 106.77700 29.70475 9.70495 110 0 1 - 11.32768 104.75800 35.16081 12.06858 110 0 1 - 13.68656 102.73900 40.59674 14.43220 110 0 1 - 16.04766 100.72000 46.01595 16.79583 110 0 1 - 17.82013 98.70100 50.07174 18.56855 110 0 1 - 33.69431 98.70100 177.20934 12.31919 110 19 1 - 31.53692 100.07440 165.98087 12.82216 110 19 1 - 29.58917 101.44780 168.35015 13.49277 110 18 1 - 27.75946 102.82120 174.33058 14.16339 110 16 1 - 26.05102 104.19460 181.36358 14.83401 110 14 1 - 24.37433 105.56800 186.93725 15.33697 110 13 1 - 24.55939 105.56800 190.74477 15.70861 110 13 1 - 23.00737 106.94140 196.54307 16.17524 110 12 1 - 21.66695 108.31480 204.37210 16.84586 110 11 1 - 20.43940 109.68820 212.27871 17.51648 110 10 1 - 19.31850 111.06160 220.23553 18.18709 110 9 1 - 18.20604 112.43500 226.22528 18.69006 110 0 1 - 18.38996 112.43500 230.22741 19.02537 110 0 1 - 17.37018 113.80840 236.24102 19.52833 110 0 1 - 17.45679 115.18180 244.27295 20.19895 110 0 1 - 18.36493 116.55520 252.31767 20.86956 110 0 1 - 19.27773 117.92860 260.37206 21.54018 110 0 1 - 20.02593 119.30200 266.41766 22.04314 110 0 1 - 22.10117 119.30200 270.45017 24.11838 110 0 1 - 21.11124 120.67540 276.50161 22.88141 110 0 1 - 22.03017 122.04880 284.57394 23.55203 110 0 1 - 22.94998 123.42220 292.65001 24.22265 110 0 1 - 23.87024 124.79560 300.72910 24.89327 110 0 1 - 24.62287 126.16900 306.79002 25.39623 110 0 1 - 24.95818 126.16900 310.83135 25.73154 110 0 1 - 25.71062 127.54240 316.89433 26.23450 110 0 1 - 26.63058 128.91580 324.97970 26.90512 110 0 1 - 27.55046 130.28920 333.06652 27.57574 110 0 1 - 28.47027 131.66260 341.15457 28.24635 110 8 1 - 29.22239 133.03600 347.22126 28.74932 110 8 1 + 4.55298 100.76161 31.86408 3.83947 110 14 1 + 4.38055 101.65432 33.06586 4.18246 110 13 1 + 4.21441 102.54703 34.26739 4.52546 110 0 1 + 4.54739 103.43974 35.46867 4.86846 110 0 1 + 4.79543 104.33245 36.36949 5.12571 110 0 1 + 4.96692 104.33245 36.96996 5.29720 110 0 1 + 5.21578 105.22516 37.87056 5.55445 110 0 1 + 5.55122 106.11787 39.07118 5.89745 110 0 1 + 5.88750 107.01058 40.27161 6.24045 110 0 1 + 6.22464 107.90329 41.47185 6.58344 110 0 1 + 6.47689 108.79600 42.37192 6.84069 110 0 1 + 7.20462 108.79600 25.59840 7.93223 110 0 1 + 8.96837 106.77700 29.70475 9.70495 110 0 1 + 11.32518 104.75800 35.16081 12.06858 110 0 1 + 13.68417 102.73900 40.59674 14.43220 110 0 1 + 16.04539 100.72000 46.01595 16.79583 110 0 1 + 17.81799 98.70100 50.07174 18.56855 110 0 1 + 33.82426 98.70100 177.20934 12.31919 110 19 1 + 31.64109 100.07440 165.98087 12.82216 110 19 1 + 29.66780 101.44780 168.35015 13.49277 110 18 1 + 27.81299 102.82120 174.33058 14.16339 110 16 1 + 26.08011 104.19460 181.36358 14.83401 110 14 1 + 24.37983 105.56800 186.93725 15.33697 110 13 1 + 24.56489 105.56800 190.74477 15.67228 110 13 1 + 22.99033 106.94140 196.54307 16.17524 110 12 1 + 21.62861 108.31480 204.37210 16.84586 110 11 1 + 20.38121 109.68820 212.27871 17.51648 110 10 1 + 19.24212 111.06160 220.23553 18.18709 110 9 1 + 18.11332 112.43500 226.22528 18.69006 110 0 1 + 18.29724 112.43500 230.22741 19.02537 110 0 1 + 17.26317 113.80840 236.24102 19.52833 110 0 1 + 17.45709 115.18180 244.27295 20.19895 110 0 1 + 18.36605 116.55520 252.31767 20.86956 110 0 1 + 19.27961 117.92860 260.37206 21.54018 110 0 1 + 20.02853 119.30200 266.41766 22.04314 110 0 1 + 20.36384 119.30200 270.45017 22.37845 110 0 1 + 21.11451 120.67540 276.50161 22.88141 110 0 1 + 22.03410 122.04880 284.57394 23.55203 110 0 1 + 22.95453 123.42220 292.65001 24.22265 110 0 1 + 23.87539 124.79560 300.72910 24.89327 110 0 1 + 24.62860 126.16900 306.79002 25.39623 110 0 1 + 24.96391 126.16900 310.83135 25.73154 110 0 1 + 25.71692 127.54240 316.89433 26.23450 110 0 1 + 26.63745 128.91580 324.97970 26.90512 110 0 1 + 27.55789 130.28920 333.06652 27.57574 110 0 1 + 28.47826 131.66260 341.15457 28.24635 110 8 1 + 29.23094 133.03600 347.22126 28.74932 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8345,9 +8481,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.429 'Hydrobiaklei' - -12.00 6.255 'Basisveen' - -12.50 82.633 'Eerste zandlaag' + -10.00 4.433 'Hydrobiaklei' + -12.00 6.253 'Basisveen' + -12.50 82.513 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -8369,7 +8505,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 31.72 'Eerste zandlaag' + -12.50 31.67 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8591,8 +8727,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 364.05324 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 256.57314 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 364.04948 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 256.65272 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -8633,10 +8769,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.32 : Percentage mobilized resistance left - 10.20 : Percentage mobilized resistance right - 53.48 : Effective left - 94.31 : Effective right + 12.33 : Percentage mobilized resistance left + 10.21 : Percentage mobilized resistance right + 53.51 : Effective left + 94.41 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 433.89 : Max effective resistance left @@ -8645,8 +8781,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 17.12 : Vertical force left - 32.13 : Vertical force right + 17.16 : Vertical force left + 32.17 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -8655,17 +8791,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --32.13 : Active force -17.12 : Passive force --32.13 : Plugged active force -17.12 : Plugged passive force +-32.17 : Active force +17.16 : Passive force +-32.17 : Plugged active force +17.16 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --15.02 : Resulting Vertical Force Unplugged --15.02 : Resulting Vertical Force Plugged +-15.01 : Resulting Vertical Force Unplugged +-15.01 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -8678,192 +8814,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.25927 - 0.00000 0.00000 6.88437 - 0.00000 0.00000 6.50946 - 0.00000 0.00000 6.13455 - 0.00000 0.00000 5.75964 - 0.00000 0.00000 5.38473 - 0.00000 0.00000 5.38473 - 0.00000 0.00000 5.00982 - 0.00000 0.00000 4.63492 - 0.00000 0.00000 4.26001 - 0.00000 0.00000 3.88510 - 0.00000 0.00000 3.51019 - 0.00000 0.00000 3.51019 - 0.00283 0.07063 3.01032 - 0.02260 0.28253 2.51045 - 0.07628 0.63569 2.01057 - 0.18082 1.13011 1.51066 - 0.35316 1.76580 1.01072 - 0.35316 1.76580 1.01072 - 0.56080 2.40345 0.59407 - 0.83712 3.13920 0.17735 - 1.19191 3.97305 -0.23948 - 1.63500 4.90500 -0.65648 - 2.17618 5.93505 -1.07368 - 2.17618 5.93505 -1.07368 - 2.82528 7.06320 -1.49113 - 3.59209 8.28945 -1.90895 - 4.48644 9.61380 -2.32723 - 5.51812 11.03625 -2.74609 - 6.69696 12.55680 -3.16564 - 6.69696 12.55680 -3.16564 - 7.83593 13.94293 -3.52711 - 9.09722 15.40162 -3.88931 - 10.48709 16.93286 -4.25236 - 12.01176 18.53666 -4.61641 - 13.67747 20.21301 -4.98157 - 13.67747 -102.34023 -4.98157 - 2.14251 -100.00625 -5.46720 - -9.11911 -97.54479 -5.95316 - -20.09285 -94.95583 -6.43768 - -30.76419 -92.23938 -6.91896 - -41.11859 -89.39544 -7.39520 - -41.11848 -89.39870 -7.39520 - -48.18792 -87.32683 -7.72545 - -55.08910 -85.19217 -8.05181 - -61.81700 -82.99473 -8.37374 - -68.36659 -80.73451 -8.69071 - -74.73284 -78.41150 -9.00216 - -74.73285 -78.41150 -9.00216 - -76.29518 -77.82094 -9.07910 - -77.84566 -77.22646 -9.15565 - -79.38421 -76.62805 -9.23181 - -80.91076 -76.02571 -9.30757 - -82.42522 -75.41945 -9.38293 - -82.42537 -75.41500 -9.38293 - -89.81318 -72.32485 -9.75329 - -96.88707 -69.13660 -10.11234 - -103.63723 -65.85025 -10.45921 - -110.05385 -62.46580 -10.79307 - -116.12712 -58.98325 -11.11307 - -116.12712 -58.98315 -11.11307 - -121.84886 -55.45155 -11.41838 - -127.21743 -51.91995 -11.70833 - -132.23285 -48.38835 -11.98230 - -136.89510 -44.85675 -12.23966 - -141.20420 -41.32515 -12.47976 - -141.20420 -41.32501 -12.47976 - -145.16012 -37.79341 -12.70202 - -148.76288 -34.26181 -12.90599 - -152.01248 -30.73021 -13.09126 - -154.90892 -27.19861 -13.25742 - -157.45220 -23.66701 -13.40406 - -157.45222 -23.66675 -13.40406 - -160.41946 -18.72251 -13.57582 - -162.69452 -13.77827 -13.70796 - -164.27738 -8.83403 -13.80008 - -165.16805 -3.88979 -13.85180 - -165.36652 1.05445 -13.86272 - -165.36655 1.05508 -13.86272 - -164.93096 5.64616 -13.83612 - -163.89854 10.23724 -13.77440 - -162.26928 14.82832 -13.67790 - -160.04318 19.41940 -13.54697 - -157.22024 24.01048 -13.38195 - -157.22012 24.00955 -13.38195 - -153.80046 28.60063 -13.18331 - -149.78396 33.19171 -12.95191 - -145.17061 37.78279 -12.68873 - -139.96043 42.37387 -12.39477 - -134.15341 46.96495 -12.07100 - -134.15342 46.96491 -12.07100 - -126.73750 52.24465 -11.66320 - -118.53226 57.52439 -11.21970 - -109.53771 62.80414 -10.74303 - -99.75383 68.08388 -10.23573 - -89.18063 73.36362 -9.70032 - -89.18063 73.36362 -9.70032 - -77.81810 78.64336 -9.13952 - -65.66626 83.92310 -8.55679 - -52.72510 89.20285 -7.95577 - -38.99461 94.48259 -7.34012 - -24.47480 99.76233 -6.71346 - -24.47532 99.76481 -6.71346 - -9.16582 105.04455 -6.07964 - 6.93300 110.32429 -5.44322 - 23.82114 115.60403 -4.80895 - 41.49860 120.88377 -4.18160 - 59.96539 126.16352 -3.56591 - 59.96653 126.17042 -3.56591 - 79.22367 131.45017 -2.96683 - 99.27013 136.72991 -2.39003 - 120.10592 142.00965 -1.84139 - 141.73102 147.28939 -1.32677 - 164.14544 152.56913 -0.85204 - 164.14524 152.56742 -0.85204 - 164.45044 152.62290 -0.84598 - 164.75573 152.66353 -0.83994 - 165.06109 152.70422 -0.83390 - 165.36654 152.74499 -0.82787 - 165.67207 152.78579 -0.82185 - 165.67207 152.78579 -0.82185 - 171.49283 153.57127 -0.70906 - 177.34364 154.36823 -0.59940 - 183.22499 155.17934 -0.49295 - 189.13744 156.00460 -0.38984 - 195.08149 156.84134 -0.29018 - 195.08150 -99.73192 -0.29018 - 183.27901 -96.96160 0.00173 - 171.81530 -94.07680 0.26039 - 160.70623 -91.05088 0.48782 - 149.96873 -87.88384 0.68604 - 139.61868 -84.60232 0.85706 - 139.61867 -84.60247 0.85706 - 134.59735 -82.77618 0.93298 - 129.68536 -80.95853 1.00280 - 124.88213 -79.15075 1.06673 - 120.18707 -77.35285 1.12499 - 115.59961 -75.56360 1.17780 - 115.59978 -75.56840 1.17780 - 108.82241 -73.32489 1.24799 - 102.26075 -70.88027 1.30682 - 95.92342 -68.39538 1.35496 - 89.81326 -65.89498 1.39307 - 83.93018 -63.40615 1.42181 - 83.93017 -63.40563 1.42181 - 78.27357 -60.91809 1.44183 - 72.84263 -58.44531 1.45369 - 67.63616 -55.98475 1.45792 - 62.65299 -53.53775 1.45508 - 57.89172 -51.10951 1.44570 - 57.89177 -51.10930 1.44570 - 52.92440 -48.24311 1.42849 - 48.24064 -45.45213 1.40461 - 43.82932 -42.80071 1.37462 - 39.67456 -40.32734 1.33908 - 35.75630 -38.08076 1.29855 - 35.75418 -38.06697 1.29855 - 30.61614 -35.49666 1.23442 - 25.78261 -33.62272 1.16274 - 21.21760 -31.40966 1.08462 - 17.01512 -28.61351 1.00119 - 13.20820 -25.76632 0.91356 - 13.20623 -25.72820 0.91356 - 9.80661 -22.83895 0.82278 - 6.81099 -19.95699 0.72959 - 4.21783 -17.09263 0.63463 - 2.02339 -14.26385 0.53853 - 0.22133 -11.49124 0.44195 - 0.22521 -11.46959 0.44195 - -1.18923 -8.74995 0.34542 - -2.23152 -6.17485 0.24918 - -2.93057 -3.86522 0.15343 - -3.32875 -1.87624 0.05832 - -3.47077 -0.20540 -0.03595 - -3.47076 -0.20647 -0.03595 - -3.38974 1.27096 -0.12930 - -3.13515 2.31434 -0.22181 - -2.75618 3.04814 -0.31358 - -2.29601 3.47471 -0.40468 - -1.79750 3.59613 -0.49521 - -1.79754 3.59551 -0.49521 - -1.27263 3.74284 -0.58530 - -0.77901 3.25863 -0.67509 - -0.37428 2.47310 -0.76466 - -0.10058 1.38683 -0.85410 - 0.00001 0.00005 -0.94353 + 0.00000 0.00000 7.25722 + 0.00000 0.00000 6.88238 + 0.00000 0.00000 6.50754 + 0.00000 0.00000 6.13269 + 0.00000 0.00000 5.75785 + 0.00000 0.00000 5.38301 + 0.00000 0.00000 5.38301 + 0.00000 0.00000 5.00816 + 0.00000 0.00000 4.63332 + 0.00000 0.00000 4.25847 + 0.00000 0.00000 3.88363 + 0.00000 0.00000 3.50879 + 0.00000 0.00000 3.50879 + 0.00283 0.07063 3.00900 + 0.02260 0.28253 2.50921 + 0.07628 0.63569 2.00942 + 0.18082 1.13011 1.50960 + 0.35316 1.76580 1.00975 + 0.35316 1.76580 1.00975 + 0.56080 2.40345 0.59317 + 0.83712 3.13920 0.17652 + 1.19191 3.97305 -0.24024 + 1.63500 4.90500 -0.65716 + 2.17618 5.93505 -1.07429 + 2.17618 5.93505 -1.07429 + 2.82528 7.06320 -1.49168 + 3.59209 8.28945 -1.90942 + 4.48644 9.61380 -2.32763 + 5.51812 11.03625 -2.74641 + 6.69696 12.55680 -3.16590 + 6.69696 12.55680 -3.16590 + 7.83593 13.94293 -3.52730 + 9.09722 15.40162 -3.88944 + 10.48709 16.93286 -4.25244 + 12.01176 18.53666 -4.61642 + 13.67747 20.21301 -4.98152 + 13.67747 -102.33646 -4.98152 + 2.14294 -100.00249 -5.46706 + -9.11825 -97.54102 -5.95295 + -20.09157 -94.95206 -6.43739 + -30.76247 -92.23561 -6.91858 + -41.11644 -89.39168 -7.39474 + -41.11634 -89.39494 -7.39474 + -48.18547 -87.32307 -7.72493 + -55.08635 -85.18841 -8.05124 + -61.81395 -82.99097 -8.37311 + -68.36323 -80.73075 -8.69002 + -74.72919 -78.40774 -9.00142 + -74.72920 -78.40774 -9.00142 + -76.29145 -77.81718 -9.07834 + -77.84186 -77.22269 -9.15488 + -79.38034 -76.62428 -9.23103 + -80.90680 -76.02195 -9.30678 + -82.42119 -75.41569 -9.38212 + -82.42134 -75.41123 -9.38212 + -89.80877 -72.32108 -9.75241 + -96.88229 -69.13283 -10.11139 + -103.63207 -65.84648 -10.45820 + -110.04831 -62.46203 -10.79199 + -116.12120 -58.97948 -11.11192 + -116.12121 -58.97938 -11.11192 + -121.84257 -55.44778 -11.41716 + -127.21076 -51.91618 -11.70706 + -132.22580 -48.38458 -11.98096 + -136.88768 -44.85298 -12.23825 + -141.19640 -41.32138 -12.47829 + -141.19640 -41.32124 -12.47829 + -145.15194 -37.78964 -12.70049 + -148.75432 -34.25804 -12.90440 + -152.00355 -30.72644 -13.08961 + -154.89961 -27.19484 -13.25571 + -157.44251 -23.66324 -13.40230 + -157.44253 -23.66298 -13.40230 + -160.40925 -18.71874 -13.57398 + -162.68378 -13.77450 -13.70605 + -164.26611 -8.83026 -13.79810 + -165.15625 -3.88602 -13.84975 + -165.35419 1.05822 -13.86060 + -165.35422 1.05885 -13.86060 + -164.91815 5.64993 -13.83394 + -163.88524 10.24101 -13.77216 + -162.25549 14.83209 -13.67561 + -160.02889 19.42317 -13.54463 + -157.20546 24.01425 -13.37957 + -157.20534 24.01332 -13.37957 + -153.78519 28.60440 -13.18088 + -149.76820 33.19548 -12.94943 + -145.15437 37.78656 -12.68622 + -139.94369 42.37764 -12.39223 + -134.13618 46.96872 -12.06842 + -134.13619 46.96868 -12.06842 + -126.71971 52.24842 -11.66060 + -118.51391 57.52817 -11.21707 + -109.51879 62.80791 -10.74038 + -99.73434 68.08765 -10.23306 + -89.16058 73.36739 -9.69764 + -89.16058 73.36739 -9.69764 + -77.79749 78.64713 -9.13683 + -65.64509 83.92688 -8.55411 + -52.70336 89.20662 -7.95310 + -38.97231 94.48636 -7.33746 + -24.45194 99.76610 -6.71083 + -24.45246 99.76857 -6.71083 + -9.14239 105.04831 -6.07703 + 6.95699 110.32806 -5.44064 + 23.84569 115.60780 -4.80642 + 41.52372 120.88754 -4.17911 + 59.99107 126.16728 -3.56347 + 59.99222 126.17418 -3.56347 + 79.24992 131.45392 -2.96445 + 99.29694 136.73366 -2.38772 + 120.13328 142.01340 -1.83916 + 141.75895 147.29315 -1.32462 + 164.17393 152.57289 -0.84998 + 164.17373 152.57113 -0.84998 + 164.47893 152.62661 -0.84393 + 164.78422 152.66724 -0.83788 + 165.08960 152.70793 -0.83185 + 165.39505 152.74870 -0.82582 + 165.70059 152.78950 -0.81980 + 165.70059 152.78950 -0.81980 + 171.52149 153.57498 -0.70704 + 177.37244 154.37194 -0.59740 + 183.25394 155.18305 -0.49098 + 189.16653 156.00831 -0.38790 + 195.11071 156.84505 -0.28826 + 195.11073 -99.80778 -0.28826 + 183.29913 -97.03746 0.00356 + 171.82631 -94.15266 0.26213 + 160.70814 -91.12674 0.48947 + 149.96154 -87.95970 0.68760 + 139.60239 -84.67818 0.85852 + 139.60238 -84.67834 0.85852 + 134.57650 -82.85204 0.93440 + 129.65996 -81.03439 1.00417 + 124.85218 -79.22661 1.06806 + 120.15257 -77.42871 1.12628 + 115.56056 -75.63946 1.17905 + 115.56073 -75.64428 1.17905 + 108.77651 -73.40042 1.24917 + 102.20786 -70.95830 1.30795 + 95.86336 -68.47453 1.35605 + 89.74601 -65.97393 1.39412 + 83.85576 -63.48492 1.42283 + 83.85574 -63.48440 1.42283 + 78.19199 -60.99668 1.44282 + 72.75390 -58.52372 1.45466 + 67.54030 -56.06299 1.45888 + 62.55002 -53.61581 1.45604 + 57.78165 -51.18740 1.44668 + 57.78170 -51.18718 1.44668 + 52.81208 -48.23786 1.42949 + 48.12887 -45.44646 1.40565 + 43.71814 -42.79473 1.37572 + 39.56398 -40.32113 1.34025 + 35.64635 -38.07431 1.29980 + 35.64424 -38.06055 1.29980 + 30.50726 -35.48790 1.23581 + 25.67489 -33.61677 1.16429 + 21.10974 -31.42048 1.08637 + 16.90459 -28.63635 1.00316 + 13.09467 -25.78563 0.91578 + 13.09265 -25.74728 0.91578 + 9.69038 -22.85530 0.82527 + 6.69326 -19.96134 0.73239 + 4.10058 -17.08086 0.63775 + 1.90914 -14.23198 0.54202 + 0.11318 -11.43545 0.44582 + 0.11710 -11.41358 0.44582 + -1.28761 -8.66639 0.34971 + -2.31647 -6.06868 0.25392 + -2.99950 -3.74237 0.15862 + -3.37922 -1.73513 0.06400 + -3.50011 -0.04441 -0.02978 + -3.50010 -0.04550 -0.02978 + -3.40643 1.33168 -0.12263 + -3.14173 2.39829 -0.21465 + -2.74928 3.15700 -0.30591 + -2.27203 3.61018 -0.39651 + -1.75259 3.75987 -0.48655 + -1.75263 3.75927 -0.48655 + -1.23347 3.60717 -0.57615 + -0.75665 3.15450 -0.66546 + -0.36419 2.40211 -0.75456 + -0.09802 1.35055 -0.84354 + 0.00001 0.00005 -0.93249 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -9069,7 +9205,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -9081,7 +9217,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -9248,53 +9384,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 302 100 P - 5.08745 100.76161 31.86408 3.83947 110 16 1 - 5.48928 101.65432 33.06586 4.18246 110 17 1 - 5.88042 102.54703 34.26739 4.52546 110 17 1 - 6.26153 103.43974 35.46867 4.86846 110 18 1 - 6.54752 104.33245 36.36949 5.12571 110 18 1 - 6.71902 104.33245 36.96996 5.29720 110 18 1 - 6.99628 105.22516 37.87056 5.55445 110 18 1 - 7.35113 106.11787 39.07118 5.89745 110 19 1 - 7.69837 107.01058 40.27161 6.24045 110 19 1 - 8.03852 107.90329 41.47185 6.58344 110 19 1 - 8.28639 108.79600 42.37192 6.84069 110 20 1 - 10.82363 108.79600 25.59840 7.93223 110 42 1 - 12.56192 106.77700 29.70475 9.70495 110 42 1 - 14.87779 104.75800 35.16081 12.06858 110 42 1 - 17.18144 102.73900 40.59674 14.43220 110 42 1 - 19.47399 100.72000 46.01595 16.79583 110 42 1 - 21.16564 98.70100 50.07174 18.56855 110 42 1 - 27.90177 98.70100 177.20934 12.31919 110 16 1 - 27.63517 100.07440 165.98087 12.82216 110 17 1 - 27.44562 101.44780 168.35015 13.49277 110 16 1 - 27.17887 102.82120 174.33058 14.16339 110 16 1 - 26.84831 104.19460 181.36358 14.83401 110 15 1 - 26.29971 105.56800 186.93725 15.33697 110 14 1 - 26.67135 105.56800 190.74477 15.70861 110 14 1 - 26.04865 106.94140 196.54307 16.17524 110 13 1 - 25.60097 108.31480 204.37210 16.84586 110 13 1 - 25.13202 109.68820 212.27871 17.51648 110 12 1 - 24.64949 111.06160 220.23553 18.18709 110 11 1 - 23.99342 112.43500 226.22528 18.69006 110 11 1 - 24.32873 112.43500 230.22741 19.02537 110 11 1 - 23.67334 113.80840 236.24102 19.52833 110 10 1 - 23.18916 115.18180 244.27295 20.19895 110 9 1 - 22.71069 116.55520 252.31767 20.86956 110 9 1 - 22.24007 117.92860 260.37206 21.54018 110 9 1 - 21.61178 119.30200 266.41766 22.04314 110 0 1 - 23.68702 119.30200 270.45017 24.11838 110 0 1 - 21.32987 120.67540 276.50161 22.88141 110 0 1 - 20.89032 122.04880 284.57394 23.55203 110 0 1 - 20.45975 123.42220 292.65001 24.22265 110 0 1 - 20.03709 124.79560 300.72910 24.89327 110 0 1 - 19.45366 126.16900 306.79002 25.39623 110 0 1 - 19.78897 126.16900 310.83135 25.73154 110 0 1 - 19.21085 127.54240 316.89433 26.23450 110 0 1 - 18.80408 128.91580 324.97970 26.90512 110 0 1 - 18.39987 130.28920 333.06652 27.57574 110 0 1 - 17.99710 131.66260 341.15457 28.24635 110 0 1 - 17.42700 133.03600 347.22126 28.74932 110 0 1 + 5.08864 100.76161 31.86408 3.83947 110 16 1 + 5.49042 101.65432 33.06586 4.18246 110 17 1 + 5.88151 102.54703 34.26739 4.52546 110 17 1 + 6.26257 103.43974 35.46867 4.86846 110 18 1 + 6.54853 104.33245 36.36949 5.12571 110 18 1 + 6.72003 104.33245 36.96996 5.29720 110 18 1 + 6.99727 105.22516 37.87056 5.55445 110 18 1 + 7.35210 106.11787 39.07118 5.89745 110 19 1 + 7.69933 107.01058 40.27161 6.24045 110 19 1 + 8.03948 107.90329 41.47185 6.58344 110 19 1 + 8.28737 108.79600 42.37192 6.84069 110 20 1 + 10.82558 108.79600 25.59840 7.93223 110 42 1 + 12.56393 106.77700 29.70475 9.70495 110 42 1 + 14.87988 104.75800 35.16081 12.06858 110 42 1 + 17.18364 102.73900 40.59674 14.43220 110 42 1 + 19.47632 100.72000 46.01595 16.79583 110 42 1 + 21.16814 98.70100 50.07174 18.56855 110 42 1 + 27.91677 98.70100 177.20934 12.31919 110 16 1 + 27.65184 100.07440 165.98087 12.82216 110 17 1 + 27.46428 101.44780 168.35015 13.49277 110 16 1 + 27.19983 102.82120 174.33058 14.16339 110 16 1 + 26.87192 104.19460 181.36358 14.83401 110 15 1 + 26.32628 105.56800 186.93725 15.33697 110 14 1 + 26.66159 105.56800 190.74477 15.67228 110 14 1 + 26.07852 106.94140 196.54307 16.17524 110 13 1 + 25.63449 108.31480 204.37210 16.84586 110 13 1 + 25.16953 109.68820 212.27871 17.51648 110 12 1 + 24.69133 111.06160 220.23553 18.18709 110 11 1 + 24.03992 112.43500 226.22528 18.69006 110 11 1 + 24.37523 112.43500 230.22741 19.02537 110 11 1 + 23.72484 113.80840 236.24102 19.52833 110 10 1 + 23.24596 115.18180 244.27295 20.19895 110 10 1 + 22.77302 116.55520 252.31767 20.86956 110 9 1 + 22.30813 117.92860 260.37206 21.54018 110 9 1 + 21.68573 119.30200 266.41766 22.04314 110 0 1 + 22.02103 119.30200 270.45017 22.37845 110 0 1 + 21.40980 120.67540 276.50161 22.88141 110 0 1 + 20.97628 122.04880 284.57394 23.55203 110 0 1 + 20.55175 123.42220 292.65001 24.22265 110 0 1 + 20.13512 124.79560 300.72910 24.89327 110 0 1 + 19.55763 126.16900 306.79002 25.39623 110 0 1 + 19.89294 126.16900 310.83135 25.73154 110 0 1 + 19.32065 127.54240 316.89433 26.23450 110 0 1 + 18.91960 128.91580 324.97970 26.90512 110 0 1 + 18.52104 130.28920 333.06652 27.57574 110 0 1 + 18.12388 131.66260 341.15457 28.24635 110 0 1 + 17.55938 133.03600 347.22126 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9312,9 +9448,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 5.788 'Hydrobiaklei' - -12.00 8.009 'Basisveen' - -12.50 80.509 'Eerste zandlaag' + -10.00 5.789 'Hydrobiaklei' + -12.00 8.010 'Basisveen' + -12.50 80.611 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9336,7 +9472,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -30.90 'Eerste zandlaag' + -12.50 -30.94 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -9446,24 +9582,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 71.33900 32.23900 7.86393 7.28848 -10.88000 71.33900 32.23900 9.24535 7.34485 -10.94000 71.33900 32.23900 10.86885 7.41109 @@ -9557,7 +9693,7 @@ Lambda passive -10.97000 5.17420 31.09283 1.26873 0.45536 0.24520 6.00921 -11.03000 5.84560 35.12741 1.43335 0.45536 0.24520 6.00921 -11.09000 6.51700 38.15335 1.55683 0.45536 0.24520 6.00921 - -11.09000 6.51700 38.09030 -3.30713 0.70481 0.00000 5.84689 + -11.09000 6.51700 38.09030 -3.30713 0.69929 0.00000 5.84689 -11.18100 6.50749 37.13796 -3.30434 0.69929 0.00000 5.70696 -11.27200 6.49798 36.38146 -3.30632 0.69929 0.00000 5.59889 -11.36300 6.48847 35.91666 -3.30987 0.69929 0.00000 5.53546 @@ -9569,7 +9705,7 @@ Lambda passive -11.81800 6.44092 34.91455 -3.33088 0.69929 0.00000 5.42074 -11.90900 6.43141 34.81167 -3.33521 0.69929 0.00000 5.41276 -12.00000 6.42190 34.74335 -3.33847 0.69929 0.00000 5.40813 - -12.00000 6.42190 18.56125 -0.24957 1.01009 0.00000 3.01605 + -12.00000 6.42190 18.56125 -0.24957 0.74118 0.00000 3.01605 -12.10000 5.35090 17.07239 -0.71711 0.74118 0.00000 3.19056 -12.20000 4.27990 15.10025 -1.34197 0.74118 0.00000 3.52818 -12.30000 3.20890 13.14123 -1.96811 0.74118 0.00000 4.09525 @@ -9599,7 +9735,7 @@ Lambda passive -15.02000 26.74570 152.13832 6.86581 0.47008 0.25671 5.68833 -15.16000 28.17230 160.19767 7.23257 0.47008 0.25673 5.68635 -15.30000 29.59890 166.24550 7.50762 0.47008 0.25674 5.68511 - -15.30000 29.59890 170.27895 7.69098 0.31301 0.25675 5.68439 + -15.30000 29.59890 170.27895 7.69098 0.47008 0.25675 5.68439 -15.44000 31.02550 176.33119 7.96601 0.47008 0.25676 5.68343 -15.58000 32.45210 184.40388 8.33270 0.47008 0.25677 5.68234 -15.72000 33.87870 192.47975 8.69937 0.47008 0.25678 5.68144 @@ -9752,61 +9888,61 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 19.99774 1.51537 1 0 A 0.93947 71.19850 23.02367 1.74467 1 0 A 1.10410 71.78710 27.05825 2.05040 1 0 A 1.26873 72.37570 31.09283 2.35613 1 0 A 1.43335 72.96430 35.12741 2.66186 1 0 A 1.55683 73.55290 38.15335 2.89116 1 0 A - 3.68816 73.55290 38.09030 4.59156 110 0 1 - 4.27460 74.94561 37.13796 4.55065 110 0 1 - 3.70626 76.33832 36.38146 4.54400 110 0 1 - 3.18239 77.73103 35.91666 4.53735 110 0 1 - 3.13763 79.12374 35.59797 4.53070 110 0 1 - 3.10390 80.51645 35.41437 4.52571 110 0 1 - 3.10057 80.51645 35.31241 4.52239 110 0 1 - 3.07557 81.90916 35.18176 4.51740 110 0 1 - 3.05706 83.30187 35.03566 4.51075 110 0 1 - 3.04618 84.69458 34.91455 4.50410 110 0 1 - 3.04237 86.08729 34.81167 4.49745 110 0 1 - 3.04676 87.48000 34.74335 4.49246 110 0 1 - 3.32483 87.48000 18.56125 6.21623 110 0 1 - 1.10901 89.72100 17.07239 3.96599 110 0 1 - 0.36297 91.96200 15.10025 3.17218 110 0 1 + 3.65278 73.55290 38.09030 4.55564 110 0 1 + 4.30359 74.94561 37.13796 4.55065 110 0 1 + 3.73436 76.33832 36.38146 4.54400 110 0 1 + 3.18130 77.73103 35.91666 4.53735 110 0 1 + 3.13658 79.12374 35.59797 4.53070 110 0 1 + 3.10288 80.51645 35.41437 4.52571 110 0 1 + 3.09956 80.51645 35.31241 4.52239 110 0 1 + 3.07458 81.90916 35.18176 4.51740 110 0 1 + 3.05609 83.30187 35.03566 4.51075 110 0 1 + 3.04522 84.69458 34.91455 4.50410 110 0 1 + 3.04141 86.08729 34.81167 4.49745 110 0 1 + 3.04578 87.48000 34.74335 4.49246 110 0 1 + 1.66799 87.48000 18.56125 4.56134 110 0 1 + 1.10701 89.72100 17.07239 3.96599 110 0 1 + 0.36088 91.96200 15.10025 3.17218 110 0 1 0.00000 94.20300 13.14123 2.37838 1 0 A 0.00000 96.44400 11.19306 1.58457 1 0 A 0.00000 98.68500 9.73768 0.98922 1 0 A - 6.06392 98.68500 8.83693 0.66918 220 69 2 - 12.78642 100.05840 15.37247 1.17215 220 83 2 - 15.55581 101.43180 23.89347 1.84276 220 65 2 - 7.48554 102.80520 32.18680 2.51338 110 23 1 - 6.62857 104.17860 40.30481 3.18400 110 16 1 - 5.87734 105.55200 46.31943 3.68696 110 13 1 - 6.02607 105.55200 50.30426 4.02227 110 12 1 - 5.45087 106.92540 56.26071 4.52523 110 10 1 - 5.05992 108.29880 64.18728 5.19585 110 0 1 - 4.78566 109.67220 72.11306 5.86647 110 0 1 - 4.61668 111.04560 80.04950 6.53708 110 0 1 - 4.44960 112.41900 86.01153 7.04005 110 0 1 - 4.63352 112.41900 89.99195 7.37536 110 0 1 - 4.54861 113.79240 95.97127 7.87832 110 0 1 - 5.55872 115.16580 103.95761 8.54894 110 0 1 - 7.37842 116.53920 111.95936 9.21955 110 0 1 - 9.19028 117.91260 119.97473 9.89017 110 0 1 - 10.82449 119.28600 125.99378 10.39313 110 9 1 - 11.15980 119.28600 130.01005 10.72844 110 9 1 - 12.78295 120.65940 136.03922 11.23140 110 9 1 - 14.56373 122.03280 144.08513 11.90202 110 10 1 - 16.33554 123.40620 152.13832 12.57264 110 11 1 - 18.09943 124.77960 160.19767 13.24326 110 11 1 - 19.68878 126.15300 166.24550 13.74622 110 12 1 - 15.31894 126.15300 170.27895 9.37638 110 9 1 - 21.60814 127.52640 176.33119 14.58449 110 12 1 - 23.35615 128.89980 184.40388 15.25511 110 13 1 - 25.10159 130.27320 192.47975 15.92572 110 13 1 - 26.84559 131.64660 200.55831 16.59634 110 13 1 - 28.42162 133.02000 206.61870 17.09930 110 14 1 + 6.06338 98.68500 8.83693 0.66918 220 69 2 + 12.78518 100.05840 15.37247 1.17215 220 83 2 + 15.63243 101.43180 23.89347 1.84276 220 65 2 + 7.68815 102.80520 32.18680 2.51338 110 24 1 + 6.64230 104.17860 40.30481 3.18400 110 16 1 + 5.86332 105.55200 46.31943 3.68696 110 13 1 + 6.04838 105.55200 50.30426 4.02227 110 12 1 + 5.40983 106.92540 56.26071 4.52523 110 10 1 + 4.99278 108.29880 64.18728 5.19585 110 0 1 + 4.69356 109.67220 72.11306 5.86647 110 0 1 + 4.50099 111.04560 80.04950 6.53708 110 0 1 + 4.31189 112.41900 86.01153 7.04005 110 0 1 + 4.49581 112.41900 89.99195 7.37536 110 0 1 + 4.39067 113.79240 95.97127 7.87832 110 0 1 + 5.50193 115.16580 103.95761 8.54894 110 0 1 + 7.31609 116.53920 111.95936 9.21955 110 0 1 + 9.12222 117.91260 119.97473 9.89017 110 0 1 + 10.75055 119.28600 125.99378 10.39313 110 9 1 + 11.08586 119.28600 130.01005 10.72844 110 9 1 + 12.70302 120.65940 136.03922 11.23140 110 9 1 + 14.47777 122.03280 144.08513 11.90202 110 10 1 + 16.24353 123.40620 152.13832 12.57264 110 11 1 + 18.00140 124.77960 160.19767 13.24326 110 11 1 + 19.58481 126.15300 166.24550 13.74622 110 12 1 + 19.92012 126.15300 170.27895 14.08153 110 12 1 + 21.49834 127.52640 176.33119 14.58449 110 12 1 + 23.24062 128.89980 184.40388 15.25511 110 13 1 + 24.98042 130.27320 192.47975 15.92572 110 13 1 + 26.71881 131.64660 200.55831 16.59634 110 13 1 + 28.28924 133.02000 206.61870 17.09930 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9821,9 +9957,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 3.002 'Hydrobiaklei' - -12.00 0.313 'Basisveen' - -12.50 42.556 'Eerste zandlaag' + -11.09 3.005 'Hydrobiaklei' + -12.00 0.230 'Basisveen' + -12.50 42.665 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9842,7 +9978,7 @@ Layer name -10.79 0.14 'Grind' -11.09 0.64 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 16.34 'Eerste zandlaag' + -12.50 16.38 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10064,8 +10200,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 397.57381 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 436.54719 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 397.57110 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 436.62574 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10106,10 +10242,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 17.61 : Percentage mobilized resistance left - 13.71 : Percentage mobilized resistance right - 109.24 : Effective left - 126.83 : Effective right + 17.63 : Percentage mobilized resistance left + 13.73 : Percentage mobilized resistance right + 109.32 : Effective left + 126.99 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 620.14 : Max effective resistance left @@ -10118,8 +10254,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 15.81 : Vertical force left - 43.89 : Vertical force right + 15.87 : Vertical force left + 43.95 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -10128,17 +10264,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --43.89 : Active force -15.81 : Passive force --43.89 : Plugged active force -15.81 : Plugged passive force +-43.95 : Active force +15.87 : Passive force +-43.95 : Plugged active force +15.87 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --28.09 : Resulting Vertical Force Unplugged --28.09 : Resulting Vertical Force Plugged +-28.08 : Resulting Vertical Force Unplugged +-28.08 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -10151,192 +10287,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.61752 - 0.00000 0.00000 14.97178 - 0.00000 0.00000 14.32605 - 0.00000 0.00000 13.68031 - 0.00000 0.00000 13.03458 - 0.00000 0.00000 12.38884 - 0.00000 0.00000 12.38884 - 0.00000 0.00000 11.74311 - 0.00000 0.00000 11.09737 - 0.00000 0.00000 10.45164 - 0.00000 0.00000 9.80590 - 0.00000 0.00000 9.16016 - 0.00000 0.00000 9.16016 - 0.00283 0.07063 8.29919 - 0.02260 0.28253 7.43821 - 0.07628 0.63569 6.57723 - 0.18082 1.13011 5.71622 - 0.35316 1.76580 4.85518 - 0.35316 1.76580 4.85518 - 0.56080 2.40345 4.13761 - 0.83712 3.13920 3.41997 - 1.19191 3.97305 2.70222 - 1.63500 4.90500 1.98431 - 2.17618 5.93505 1.26619 - 2.17618 5.93505 1.26619 - 2.82528 7.06320 0.54781 - 3.59209 8.28945 -0.17092 - 4.48644 9.61380 -0.89012 - 5.51812 11.03625 -1.60990 - 6.69696 12.55680 -2.33037 - 6.69696 12.55680 -2.33037 - 7.83593 13.94293 -2.95063 - 9.09722 15.40162 -3.57162 - 10.48709 16.93286 -4.19347 - 12.01176 18.53666 -4.81630 - 13.67747 20.21301 -5.44025 - 13.67747 -135.86079 -5.44025 - -1.67883 -133.52682 -6.26882 - -16.76180 -131.06535 -7.09711 - -31.55689 -128.47639 -7.92270 - -46.04957 -125.75994 -8.74316 - -60.22531 -122.91601 -9.55608 - -60.22520 -122.91926 -9.55608 - -69.97629 -120.84739 -10.12077 - -79.55911 -118.71274 -10.67982 - -88.96865 -116.51530 -11.23247 - -98.19988 -114.25507 -11.77795 - -107.24779 -111.93206 -12.31552 - -107.24780 -111.93207 -12.31552 - -109.48054 -111.34150 -12.44859 - -111.70143 -110.74702 -12.58110 - -113.91039 -110.14861 -12.71306 - -116.10735 -109.54627 -12.84443 - -118.29222 -108.94002 -12.97523 - -118.29237 -108.93556 -12.97523 - -129.03224 -105.84541 -13.62001 - -139.45818 -102.65716 -14.24853 - -149.56040 -99.37081 -14.85952 - -159.32907 -95.98636 -15.45170 - -168.75440 -92.50381 -16.02382 - -168.75440 -92.50371 -16.02382 - -177.82656 -88.92306 -16.57461 - -186.53574 -85.24431 -17.10300 - -194.87215 -81.46746 -17.60794 - -202.82597 -77.59251 -18.08837 - -210.38738 -73.61946 -18.54325 - -210.38738 -73.61932 -18.54325 - -217.54657 -69.54817 -18.97155 - -224.29375 -65.37892 -19.37245 - -230.61909 -61.11157 -19.74514 - -236.51279 -56.74612 -20.08883 - -241.96504 -52.28257 -20.40272 - -241.96506 -52.28231 -20.40272 - -248.83786 -45.86853 -20.79061 - -254.79927 -39.26248 -21.11704 - -259.82238 -32.46415 -21.38077 - -263.88026 -25.47354 -21.58057 - -266.94600 -18.29066 -21.71519 - -266.94602 -18.29003 -21.71519 - -268.88080 -11.44805 -21.78093 - -269.91533 -4.44027 -21.78941 - -270.02808 2.73329 -21.74060 - -269.19749 10.07264 -21.63449 - -267.40201 17.57778 -21.47105 - -267.40189 17.57685 -21.47105 - -264.62009 25.24778 -21.25041 - -260.83028 33.08450 -20.97342 - -256.01093 41.08701 -20.64110 - -250.14048 49.25530 -20.25448 - -243.19737 57.58939 -19.81459 - -243.19738 57.58935 -19.81459 - -233.85876 67.37850 -19.24438 - -223.04028 77.38692 -18.60828 - -210.70915 87.61458 -17.90978 - -196.83259 98.06151 -17.15234 - -181.37783 108.72768 -16.33945 - -181.37783 108.72768 -16.33945 - -164.31209 119.61312 -15.47493 - -145.60258 130.71781 -14.56410 - -125.21654 142.04176 -13.61271 - -103.12117 153.58496 -12.62650 - -79.28371 165.34742 -11.61122 - -79.28423 165.34989 -11.61122 - -53.67152 177.33161 -10.57299 - -26.25115 189.53258 -9.51960 - 3.00965 201.95280 -8.45930 - 34.14366 214.59229 -7.40033 - 67.18367 227.45102 -6.35093 - 67.18481 227.45793 -6.35093 - 102.16462 240.53593 -5.31977 - 139.11598 253.83318 -4.31732 - 178.07167 267.34968 -3.35456 - 219.06446 281.08545 -2.44246 - 262.12714 295.04046 -1.59199 - 262.12695 295.03875 -1.59199 - 262.71716 295.14814 -1.58108 - 263.30749 295.18036 -1.57019 - 263.89788 295.21261 -1.55931 - 264.48834 295.24490 -1.54844 - 265.07886 295.27723 -1.53758 - 265.07886 295.27723 -1.53758 - 276.31116 295.89899 -1.33388 - 287.56736 296.53490 -1.13520 - 298.84799 297.18496 -0.94176 - 310.15360 297.84918 -0.75375 - 321.48471 298.52754 -0.57139 - 321.48472 -138.01976 -0.57139 - 305.05505 -135.78467 -0.03325 - 288.90205 -133.40845 0.44956 - 273.04266 -130.89110 0.87991 - 257.49383 -128.23263 1.26068 - 242.27248 -125.43302 1.59473 - 242.27247 -125.43318 1.59473 - 234.80447 -123.50122 1.74513 - 227.45215 -121.57791 1.88488 - 220.21492 -119.66447 2.01431 - 213.09221 -117.76091 2.13375 - 206.08344 -115.86599 2.24352 - 206.08363 -115.87165 2.24352 - 195.63707 -113.64085 2.39230 - 185.40951 -111.12929 2.52067 - 175.41354 -108.55190 2.62968 - 165.65426 -105.93501 2.72037 - 156.13382 -103.30317 2.79377 - 156.13381 -103.30212 2.79377 - 146.85352 -100.65841 2.85092 - 137.81425 -98.00569 2.89275 - 129.01668 -95.34667 2.92018 - 120.46127 -92.68388 2.93413 - 112.14826 -90.01970 2.93552 - 112.14828 -90.01881 2.93552 - 103.31227 -86.71509 2.92362 - 94.80166 -83.51945 2.89871 - 86.60305 -80.48376 2.86182 - 78.69770 -77.66428 2.81399 - 71.06040 -75.13865 2.75625 - 71.05805 -75.12192 2.75625 - 60.96903 -69.02830 2.66074 - 51.72381 -63.07008 2.55019 - 43.30224 -57.26548 2.42669 - 35.68136 -51.63462 2.29231 - 28.83541 -46.19944 2.14914 - 28.83356 -46.15852 2.14914 - 22.74113 -40.91373 1.99908 - 17.36735 -35.89102 1.84342 - 12.68125 -31.09098 1.68331 - 8.65118 -26.52017 1.51993 - 5.24445 -22.18847 1.35442 - 5.24839 -22.16589 1.35442 - 2.43546 -18.06012 1.18780 - 0.18020 -14.19766 1.02059 - -1.55102 -10.57385 0.85321 - -2.79161 -7.18860 0.68611 - -3.57517 -4.04641 0.51970 - -3.57628 -4.02787 0.51970 - -3.92758 -1.11357 0.35430 - -3.91818 1.15570 0.18987 - -3.62970 2.87398 0.02634 - -3.13904 4.04423 -0.13634 - -2.52276 4.66920 -0.29824 - -2.52255 4.66838 -0.29824 - -1.82622 5.07932 -0.45949 - -1.14094 4.62032 -0.62031 - -0.55772 3.62150 -0.78081 - -0.15207 2.08366 -0.94115 - 0.00114 0.01937 -1.10144 + 0.00000 0.00000 15.61584 + 0.00000 0.00000 14.97016 + 0.00000 0.00000 14.32448 + 0.00000 0.00000 13.67879 + 0.00000 0.00000 13.03311 + 0.00000 0.00000 12.38743 + 0.00000 0.00000 12.38743 + 0.00000 0.00000 11.74174 + 0.00000 0.00000 11.09606 + 0.00000 0.00000 10.45038 + 0.00000 0.00000 9.80470 + 0.00000 0.00000 9.15901 + 0.00000 0.00000 9.15901 + 0.00283 0.07063 8.29811 + 0.02260 0.28253 7.43720 + 0.07628 0.63569 6.57629 + 0.18082 1.13011 5.71535 + 0.35316 1.76580 4.85438 + 0.35316 1.76580 4.85438 + 0.56080 2.40345 4.13687 + 0.83712 3.13920 3.41929 + 1.19191 3.97305 2.70160 + 1.63500 4.90500 1.98374 + 2.17618 5.93505 1.26568 + 2.17618 5.93505 1.26568 + 2.82528 7.06320 0.54736 + 3.59209 8.28945 -0.17131 + 4.48644 9.61380 -0.89045 + 5.51812 11.03625 -1.61017 + 6.69696 12.55680 -2.33059 + 6.69696 12.55680 -2.33059 + 7.83593 13.94293 -2.95080 + 9.09722 15.40162 -3.57173 + 10.48709 16.93286 -4.19353 + 12.01176 18.53666 -4.81631 + 13.67747 20.21301 -5.44022 + 13.67747 -135.85809 -5.44022 + -1.67852 -133.52411 -6.26872 + -16.76118 -131.06265 -7.09694 + -31.55596 -128.47369 -7.92246 + -46.04834 -125.75724 -8.74286 + -60.22377 -122.91330 -9.55571 + -60.22366 -122.91657 -9.55571 + -69.97453 -120.84469 -10.12036 + -79.55714 -118.71004 -10.67936 + -88.96646 -116.51260 -11.23196 + -98.19748 -114.25237 -11.77740 + -107.24517 -111.92937 -12.31492 + -107.24517 -111.92937 -12.31492 + -109.47786 -111.33881 -12.44798 + -111.69870 -110.74432 -12.58048 + -113.90761 -110.14591 -12.71242 + -116.10451 -109.54358 -12.84379 + -118.28933 -108.93732 -12.97457 + -118.28948 -108.93285 -12.97457 + -129.02908 -105.84270 -13.61929 + -139.45475 -102.65445 -14.24776 + -149.55670 -99.36810 -14.85869 + -159.32510 -95.98365 -15.45082 + -168.75016 -92.50110 -16.02288 + -168.75016 -92.50100 -16.02288 + -177.82204 -88.92035 -16.57363 + -186.53096 -85.24160 -17.10196 + -194.86710 -81.46475 -17.60685 + -202.82064 -77.58980 -18.08722 + -210.38179 -73.61675 -18.54205 + -210.38179 -73.61661 -18.54205 + -217.54071 -69.54546 -18.97031 + -224.28761 -65.37621 -19.37115 + -230.61268 -61.10886 -19.74379 + -236.50611 -56.74341 -20.08743 + -241.95809 -52.27986 -20.40128 + -241.95811 -52.27960 -20.40128 + -248.83053 -45.86582 -20.78910 + -254.79157 -39.25977 -21.11547 + -259.81429 -32.46144 -21.37914 + -263.87180 -25.47083 -21.57887 + -266.93715 -18.28795 -21.71344 + -266.93718 -18.28732 -21.71344 + -268.87160 -11.44534 -21.77913 + -269.90578 -4.43757 -21.78755 + -270.01818 2.73600 -21.73870 + -269.18724 10.07535 -21.63254 + -267.39141 17.58049 -21.46906 + -267.39129 17.57956 -21.46906 + -264.60913 25.25049 -21.24838 + -260.81898 33.08720 -20.97136 + -255.99927 41.08971 -20.63900 + -250.12847 49.25801 -20.25235 + -243.18501 57.59209 -19.81242 + -243.18502 57.59206 -19.81242 + -233.84600 67.38121 -19.24218 + -223.02711 77.38962 -18.60605 + -210.69557 87.61729 -17.90752 + -196.81861 98.06421 -17.15006 + -181.36345 108.73039 -16.33716 + -181.36345 108.73039 -16.33716 + -164.29730 119.61582 -15.47262 + -145.58739 130.72052 -14.56178 + -125.20094 142.04446 -13.61038 + -103.10517 153.58766 -12.62418 + -79.26730 165.35012 -11.60890 + -79.26782 165.35259 -11.60890 + -53.65471 177.33431 -10.57068 + -26.23394 189.53528 -9.51731 + 3.02727 201.95550 -8.45702 + 34.16169 214.59499 -7.39808 + 67.20210 227.45373 -6.34871 + 67.20324 227.46062 -6.34871 + 102.18345 240.53862 -5.31757 + 139.13521 253.83587 -4.31516 + 178.09130 267.35237 -3.35245 + 219.08450 281.08814 -2.44040 + 262.14758 295.04315 -1.58999 + 262.14738 295.04139 -1.58999 + 262.73760 295.15079 -1.57908 + 263.32793 295.18300 -1.56818 + 263.91833 295.21526 -1.55730 + 264.50879 295.24755 -1.54643 + 265.09932 295.27988 -1.53558 + 265.09932 295.27988 -1.53558 + 276.33172 295.90164 -1.33189 + 287.58802 296.53755 -1.13323 + 298.86876 297.18761 -0.93980 + 310.17446 297.85182 -0.75181 + 321.50567 298.53019 -0.56946 + 321.50569 -138.09566 -0.56946 + 305.06690 -135.86057 -0.03138 + 288.90479 -133.48435 0.45137 + 273.03630 -130.96700 0.88166 + 257.47836 -128.30853 1.26237 + 242.24790 -125.50892 1.59638 + 242.24789 -125.50908 1.59638 + 234.77534 -123.57712 1.74675 + 227.41846 -121.65380 1.88648 + 220.17668 -119.74037 2.01589 + 213.04942 -117.83681 2.13530 + 206.03609 -115.94189 2.24506 + 206.03628 -115.94757 2.24506 + 195.58288 -113.71636 2.39381 + 185.34833 -111.20723 2.52217 + 175.34520 -108.63091 2.63116 + 165.57875 -106.01374 2.72184 + 156.05116 -103.38164 2.79525 + 156.05114 -103.38059 2.79525 + 146.76373 -100.73660 2.85241 + 137.71735 -98.08361 2.89426 + 128.91270 -95.42431 2.92173 + 120.35024 -92.76124 2.93572 + 112.03020 -90.09676 2.93716 + 112.03023 -90.09588 2.93716 + 103.19208 -86.70852 2.92533 + 94.68215 -83.51245 2.90051 + 86.48426 -80.47626 2.86372 + 78.57969 -77.65622 2.81601 + 70.94322 -75.12999 2.75840 + 70.94088 -75.11331 2.75840 + 60.85332 -69.01589 2.66311 + 51.61013 -63.05349 2.55280 + 43.19120 -57.24428 2.42956 + 35.57364 -51.60834 2.29548 + 28.73175 -46.16757 2.15263 + 28.72985 -46.12642 2.15263 + 22.64211 -40.87802 2.00292 + 17.27379 -35.84854 1.84763 + 12.59415 -31.04111 1.68792 + 8.57162 -26.46221 1.52495 + 5.17361 -22.12171 1.35988 + 5.17759 -22.09890 1.35988 + 2.37470 -17.98358 1.19371 + 0.13087 -14.11080 1.02697 + -1.58742 -10.47587 0.86007 + -2.81347 -7.07869 0.69346 + -3.58076 -3.92373 0.52755 + -3.58187 -3.90520 0.52755 + -3.92609 -1.09209 0.36264 + -3.91168 1.20604 0.19870 + -3.61403 2.95484 0.03567 + -3.10983 4.15728 -0.12652 + -2.47537 4.81606 -0.28793 + -2.47516 4.81524 -0.28793 + -1.78650 4.93273 -0.44872 + -1.11917 4.51072 -0.60907 + -0.54861 3.55043 -0.76912 + -0.15013 2.05266 -0.92900 + 0.00114 0.01937 -1.08883 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -10542,7 +10678,7 @@ Lambda passive -12.92000 30.12970 174.33058 7.70643 0.47008 0.25578 5.78600 -13.06000 31.55630 181.36358 8.07815 0.47008 0.25599 5.74730 -13.20000 32.98290 186.93725 8.35620 0.47008 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47117 0.25619 5.72128 + -13.20000 32.98290 190.74477 8.54126 0.47008 0.25619 5.72128 -13.34000 34.40950 196.54307 8.81848 0.47008 0.25628 5.71188 -13.48000 35.83610 204.37210 9.18761 0.47008 0.25638 5.70297 -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 @@ -10554,7 +10690,7 @@ Lambda passive -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 -14.46000 45.82230 260.37206 11.76244 0.47008 0.25670 5.68221 -14.60000 47.24890 266.41766 12.03782 0.47008 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50663 0.25672 5.68106 + -14.60000 47.24890 270.45017 12.22137 0.47008 0.25672 5.68106 -14.74000 48.67550 276.50161 12.49666 0.47008 0.25673 5.68051 -14.88000 50.10210 284.57394 12.86365 0.47008 0.25675 5.67988 -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 @@ -10721,52 +10857,52 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 302 100 P - 6.23177 100.76161 31.86408 3.83947 110 20 1 - 6.70314 101.65432 33.06586 4.18246 110 20 1 - 7.15514 102.54703 34.26739 4.52546 110 21 1 - 7.58882 103.43974 35.46867 4.86846 110 21 1 - 7.91948 104.33245 36.36949 5.12571 110 22 1 - 8.09098 104.33245 36.96996 5.29720 110 22 1 - 8.40537 105.22516 37.87056 5.55445 110 22 1 - 8.79020 106.11787 39.07118 5.89745 110 22 1 - 9.16063 107.01058 40.27161 6.24045 110 23 1 - 9.51757 107.90329 41.47185 6.58344 110 23 1 - 9.77621 108.79600 42.37192 6.84069 110 23 1 - 13.05021 108.79600 25.59840 7.93223 220 51 2 - 15.02733 106.77700 29.70475 9.70495 220 51 2 - 17.65180 104.75800 35.16081 12.06858 220 50 2 - 20.15584 102.73900 40.59674 14.43220 110 50 1 - 22.42380 100.72000 46.01595 16.79583 110 49 1 - 24.08104 98.70100 50.07174 18.56855 110 48 1 - 45.39415 98.70100 177.20934 12.31919 110 26 1 - 44.75102 100.07440 165.98087 12.82216 110 27 1 - 44.09508 101.44780 168.35015 13.49277 110 26 1 - 43.28366 102.82120 174.33058 14.16339 110 25 1 - 42.34175 104.19460 181.36358 14.83401 110 23 1 - 41.12669 105.56800 186.93725 15.33697 110 22 1 - 41.49832 105.56800 190.74477 15.70861 110 22 1 - 40.16425 106.94140 196.54307 16.17524 110 20 1 - 38.96690 108.31480 204.37210 16.84586 110 19 1 - 37.71625 109.68820 212.27871 17.51648 110 18 1 - 36.42622 111.06160 220.23553 18.18709 110 17 1 - 34.94311 112.43500 226.22528 18.69006 110 15 1 - 35.27842 112.43500 230.22741 19.02537 110 15 1 - 33.78194 113.80840 236.24102 19.52833 110 14 1 - 32.44599 115.18180 244.27295 20.19895 110 13 1 - 31.10810 116.55520 252.31767 20.86956 110 12 1 - 29.77346 117.92860 260.37206 21.54018 110 11 1 - 28.27960 119.30200 266.41766 22.04314 110 11 1 - 30.35483 119.30200 270.45017 24.11838 110 11 1 - 27.13303 120.67540 276.50161 22.88141 110 10 1 - 25.83042 122.04880 284.57394 23.55203 110 9 1 - 24.53870 123.42220 292.65001 24.22265 110 8 1 - 23.25715 124.79560 300.72910 24.89327 110 0 1 - 21.81739 126.16900 306.79002 25.39623 110 0 1 - 22.15270 126.16900 310.83135 25.73154 110 0 1 - 20.72059 127.54240 316.89433 26.23450 110 0 1 - 19.46143 128.91580 324.97970 26.90512 110 0 1 - 18.20596 130.28920 333.06652 27.57574 110 0 1 - 16.95258 131.66260 341.15457 28.24635 110 0 1 + 6.23328 100.76161 31.86408 3.83947 110 20 1 + 6.70463 101.65432 33.06586 4.18246 110 20 1 + 7.15662 102.54703 34.26739 4.52546 110 21 1 + 7.59030 103.43974 35.46867 4.86846 110 21 1 + 7.92096 104.33245 36.36949 5.12571 110 22 1 + 8.09246 104.33245 36.96996 5.29720 110 22 1 + 8.40686 105.22516 37.87056 5.55445 110 22 1 + 8.79171 106.11787 39.07118 5.89745 110 23 1 + 9.16217 107.01058 40.27161 6.24045 110 23 1 + 9.51916 107.90329 41.47185 6.58344 110 23 1 + 9.77784 108.79600 42.37192 6.84069 110 23 1 + 13.05103 108.79600 25.59840 7.93223 220 51 2 + 15.02819 106.77700 29.70475 9.70495 220 51 2 + 17.65270 104.75800 35.16081 12.06858 220 50 2 + 20.15965 102.73900 40.59674 14.43220 110 50 1 + 22.42785 100.72000 46.01595 16.79583 110 49 1 + 24.08535 98.70100 50.07174 18.56855 110 48 1 + 45.42001 98.70100 177.20934 12.31919 110 26 1 + 44.77942 100.07440 165.98087 12.82216 110 27 1 + 44.12636 101.44780 168.35015 13.49277 110 26 1 + 43.31815 102.82120 174.33058 14.16339 110 25 1 + 42.37978 104.19460 181.36358 14.83401 110 23 1 + 41.16858 105.56800 186.93725 15.33697 110 22 1 + 41.50388 105.56800 190.74477 15.67228 110 22 1 + 40.21031 106.94140 196.54307 16.17524 110 20 1 + 39.01743 108.31480 204.37210 16.84586 110 19 1 + 37.77151 109.68820 212.27871 17.51648 110 18 1 + 36.48648 111.06160 220.23553 18.18709 110 17 1 + 35.00859 112.43500 226.22528 18.69006 110 15 1 + 35.34390 112.43500 230.22741 19.02537 110 15 1 + 33.85287 113.80840 236.24102 19.52833 110 14 1 + 32.52255 115.18180 244.27295 20.19895 110 13 1 + 31.19042 116.55520 252.31767 20.86956 110 12 1 + 29.86165 117.92860 260.37206 21.54018 110 11 1 + 28.37372 119.30200 266.41766 22.04314 110 11 1 + 28.70903 119.30200 270.45017 22.37845 110 11 1 + 27.23312 120.67540 276.50161 22.88141 110 10 1 + 25.93648 122.04880 284.57394 23.55203 110 9 1 + 24.65069 123.42220 292.65001 24.22265 110 8 1 + 23.37501 124.79560 300.72910 24.89327 110 0 1 + 21.94104 126.16900 306.79002 25.39623 110 0 1 + 22.27635 126.16900 310.83135 25.73154 110 0 1 + 20.84992 127.54240 316.89433 26.23450 110 0 1 + 19.59631 128.91580 324.97970 26.90512 110 0 1 + 18.34633 130.28920 333.06652 27.57574 110 0 1 + 17.09839 131.66260 341.15457 28.24635 110 0 1 15.70618 133.03600 347.22126 28.74932 1 0 A [END OF DATA] [END OF TABLE] @@ -10785,9 +10921,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.959 'Hydrobiaklei' - -12.00 9.382 'Basisveen' - -12.50 110.492 'Eerste zandlaag' + -10.00 6.960 'Hydrobiaklei' + -12.00 9.384 'Basisveen' + -12.50 110.646 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -10809,7 +10945,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.48 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -42.41 'Eerste zandlaag' + -12.50 -42.47 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10919,24 +11055,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -11011,8 +11147,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -11030,7 +11166,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -11042,7 +11178,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -11072,7 +11208,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -11213,13 +11349,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 302 100 P 78.00012 0.00000 78.00012 78.00006 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P - 78.00020 0.00000 78.00020 78.00020 302 100 P + 78.00010 0.00000 78.00010 78.00010 302 100 P + 78.00019 0.00000 78.00019 78.00020 302 100 P 78.00048 0.00000 78.00048 78.00048 302 100 P 78.00086 0.00000 78.00086 78.00086 302 100 P 78.00124 0.00000 78.00124 78.00124 302 100 P 78.00162 0.00000 78.00162 78.00162 302 100 P - 78.00190 0.00000 78.00190 78.00190 302 100 P + 78.00190 0.00000 78.00190 78.00191 302 100 P 78.00230 0.00000 78.00230 78.00230 302 100 P 78.00320 0.00000 78.00320 78.00320 302 100 P 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -11232,24 +11368,24 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 8.26816 69.84300 58.91108 10.23728 110 0 1 - 9.03792 70.73571 59.07501 10.45829 110 0 1 - 8.74969 71.62842 59.55950 10.80128 110 0 1 - 8.51460 72.52113 60.24321 11.14428 110 0 1 - 8.76691 73.41384 61.05177 11.48728 110 0 1 - 8.95075 74.30655 61.71273 11.74453 110 0 1 - 9.12225 74.30655 62.17548 11.91602 110 0 1 - 9.32235 75.19926 62.89559 12.17327 110 0 1 - 9.62352 76.09197 63.89046 12.51627 110 0 1 - 9.93908 76.98468 64.91817 12.85927 110 0 1 - 10.26813 77.87739 65.97136 13.20226 110 0 1 - 10.52399 78.77010 66.77420 13.45951 110 0 1 - 9.62894 78.77010 41.96461 15.49997 110 0 1 - 6.42590 82.75110 38.00268 12.27314 110 0 1 - 4.39226 86.73210 32.76169 10.18968 110 0 1 - 2.75344 90.71310 27.56116 8.10622 110 0 1 - 1.48838 94.69410 22.39249 6.02276 110 0 1 - 0.55555 98.67510 18.53208 4.46017 110 0 1 + 8.23217 69.84300 58.91108 10.20104 110 0 1 + 9.06659 70.73571 59.07501 10.45829 110 0 1 + 8.77742 71.62842 59.55950 10.80128 110 0 1 + 8.51312 72.52113 60.24321 11.14428 110 0 1 + 8.76544 73.41384 61.05177 11.48728 110 0 1 + 8.94927 74.30655 61.71273 11.74453 110 0 1 + 9.12077 74.30655 62.17548 11.91602 110 0 1 + 9.32086 75.19926 62.89559 12.17327 110 0 1 + 9.62200 76.09197 63.89046 12.51627 110 0 1 + 9.93754 76.98468 64.91817 12.85927 110 0 1 + 10.26654 77.87739 65.97136 13.20226 110 0 1 + 10.52235 78.77010 66.77420 13.45951 110 0 1 + 7.96143 78.77010 41.96461 13.83574 110 0 1 + 6.42248 82.75110 38.00268 12.27314 110 0 1 + 4.38866 86.73210 32.76169 10.18968 110 0 1 + 2.75183 90.71310 27.56116 8.10622 110 0 1 + 1.48667 94.69410 22.39249 6.02276 110 0 1 + 0.55374 98.67510 18.53208 4.46017 110 0 1 1.43664 98.67510 33.91813 2.66609 1 0 A 1.70862 100.04850 40.08908 3.16905 1 0 A 2.07185 101.42190 48.22870 3.83967 1 0 A @@ -11269,17 +11405,17 @@ Status character 6.47026 117.90270 144.16229 11.88707 1 0 A 6.74611 119.27610 150.18570 12.39004 1 0 A 6.93000 119.27610 154.20390 12.72534 1 0 A - 8.97669 120.64950 160.23477 13.22831 110 0 1 - 11.62053 122.02290 168.28135 13.89892 110 0 1 - 14.25349 123.39630 176.33377 14.56954 110 0 1 - 16.87627 124.76970 184.39132 15.24016 110 9 1 - 19.32196 126.14310 190.43734 15.74312 110 10 1 - 14.95915 126.14310 194.46939 11.38031 110 8 1 - 22.09530 127.51650 200.51935 16.58139 110 11 1 - 24.69570 128.88990 208.58880 17.25201 110 12 1 - 27.29240 130.26330 216.66126 17.92263 110 13 1 - 29.88701 131.63670 224.73639 18.59324 110 13 1 - 32.31347 133.01010 230.79421 19.09621 110 14 1 + 8.87660 120.64950 160.23477 13.22831 110 0 1 + 11.51448 122.02290 168.28135 13.89892 110 0 1 + 14.14150 123.39630 176.33377 14.56954 110 0 1 + 16.75841 124.76970 184.39132 15.24016 110 9 1 + 19.19831 126.14310 190.43734 15.74312 110 10 1 + 19.53362 126.14310 194.46939 16.07843 110 10 1 + 21.96598 127.51650 200.51935 16.58139 110 11 1 + 24.56082 128.88990 208.58880 17.25201 110 12 1 + 27.15204 130.26330 216.66126 17.92263 110 13 1 + 29.74120 131.63670 224.73639 18.59324 110 13 1 + 32.16222 133.01010 230.79421 19.09621 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11294,9 +11430,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 8.432 'Hydrobiaklei' - -12.00 2.015 'Basisveen' - -12.50 35.523 'Eerste zandlaag' + -11.09 8.434 'Hydrobiaklei' + -12.00 1.931 'Basisveen' + -12.50 35.686 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -11315,7 +11451,7 @@ Layer name -10.79 0.38 'Grind' -11.09 1.79 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.64 'Eerste zandlaag' + -12.50 13.70 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11522,7 +11658,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=7 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=0 [ANCHOR DATA] [TABLE] @@ -11537,8 +11673,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 439.39446 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 521.71299 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 439.39257 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 521.73644 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11582,10 +11718,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 24.31 : Percentage mobilized resistance left - 22.34 : Percentage mobilized resistance right - 150.75 : Effective left - 138.54 : Effective right + 24.35 : Percentage mobilized resistance left + 22.38 : Percentage mobilized resistance right + 151.00 : Effective left + 138.82 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -11594,8 +11730,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 30.50 : Vertical force left - 25.55 : Vertical force right + 30.63 : Vertical force left + 25.69 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -11604,17 +11740,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --25.55 : Active force -30.50 : Passive force --25.55 : Plugged active force -30.50 : Plugged passive force +-25.69 : Active force +30.63 : Passive force +-25.69 : Plugged active force +30.63 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -4.95 : Resulting Vertical Force Unplugged -4.95 : Resulting Vertical Force Plugged +4.94 : Resulting Vertical Force Unplugged +4.94 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -11627,192 +11763,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.20417 - 0.00000 0.00000 -8.13685 - 0.00000 0.00000 -8.06953 - 0.00000 0.00000 -8.00221 - 0.00000 0.00000 -7.93489 - 0.00000 0.00000 -7.86757 - 0.00000 0.00000 -7.86757 - 0.00000 0.00000 -7.80025 - 0.00000 0.00000 -7.73293 - 0.00000 0.00000 -7.66561 - 0.00000 0.00000 -7.59829 - 0.00000 0.00000 -7.53096 - 0.00000 0.00000 -7.53096 - 0.00000 0.00000 -7.44120 - 0.00000 0.00000 -7.35144 - 0.00000 0.00000 -7.26168 - 0.00000 0.00000 -7.17192 - 0.00000 0.00000 -7.08216 - 0.00000 0.00000 -7.08216 - 0.00000 0.00000 -7.00736 - 0.00000 0.00000 -6.93256 - 0.00000 0.00000 -6.85776 - 0.00000 0.00000 -6.78296 - 0.00000 0.00000 -6.70816 - 0.00000 0.00000 -6.70816 - 0.00000 0.00000 -6.63336 - 0.00000 0.00000 -6.55856 - 0.00000 0.00000 -6.48376 - 0.00000 0.00000 -6.40896 - 0.00000 0.00000 -6.33416 - 0.00000 0.00000 -6.33416 - 0.00000 0.00000 -6.26983 - 0.00000 0.00000 -6.20550 - 0.00000 0.00000 -6.14117 - 0.00000 0.00000 -6.07684 - 0.00000 0.00000 -6.01251 - 0.00000 0.50554 -6.01251 - 0.05763 0.50554 -5.92724 - 0.11526 0.50554 -5.84198 - 0.17290 0.50554 -5.75674 - 0.23053 0.50554 -5.67152 - 0.28816 0.50554 -5.58635 - 0.28826 0.50228 -5.58635 - 0.32845 0.50228 -5.52660 - 0.36863 0.50228 -5.46688 - 0.40881 0.50228 -5.40719 - 0.44899 0.50228 -5.34754 - 0.48918 0.50228 -5.28792 - 0.48917 0.50228 -5.28792 - 0.49922 0.50228 -5.27302 - 0.50926 0.50228 -5.25812 - 0.51931 0.50228 -5.24323 - 0.52935 0.50228 -5.22834 - 0.53940 0.50228 -5.21345 - 0.53925 0.50674 -5.21345 - 0.58992 0.50674 -5.13905 - 0.64059 0.50674 -5.06472 - 0.69127 0.50674 -4.99047 - 0.74194 0.50674 -4.91631 - 0.79261 0.50674 -4.84225 - 0.79261 0.50684 -4.84225 - 0.84329 0.50684 -4.76828 - 0.89398 0.50684 -4.69442 - 0.94466 0.50684 -4.62067 - 0.99535 0.50684 -4.54705 - 1.04603 0.50684 -4.47354 - 1.04603 0.50698 -4.47354 - 1.09673 0.50698 -4.40017 - 1.14743 0.50698 -4.32694 - 1.19812 0.50698 -4.25385 - 1.24882 0.50698 -4.18091 - 1.29952 0.50698 -4.10813 - 1.29950 0.50724 -4.10813 - 1.37052 0.50724 -4.00652 - 1.44153 0.50724 -3.90524 - 1.51254 0.50724 -3.80432 - 1.58356 0.50724 -3.70377 - 1.65457 0.50724 -3.60362 - 1.65454 0.50786 -3.60362 - 1.72057 0.50786 -3.51098 - 1.78659 0.50786 -3.41871 - 1.85261 0.50786 -3.32682 - 1.91863 0.50786 -3.23532 - 1.98466 0.50786 -3.14423 - 1.98478 0.50694 -3.14423 - 2.05068 0.50694 -3.05357 - 2.11658 0.50694 -2.96334 - 2.18248 0.50694 -2.87356 - 2.24838 0.50694 -2.78425 - 2.31428 0.50694 -2.69541 - 2.31428 0.50690 -2.69541 - 2.39006 0.50690 -2.59386 - 2.46584 0.50690 -2.49299 - 2.54162 0.50690 -2.39280 - 2.61740 0.50690 -2.29334 - 2.69318 0.50690 -2.19461 - 2.69318 0.50690 -2.19461 - 2.76896 0.50690 -2.09663 - 2.84474 0.50690 -1.99944 - 2.92052 0.50690 -1.90305 - 2.99630 0.50690 -1.80748 - 3.07209 0.50690 -1.71276 - 3.07157 0.50937 -1.71276 - 3.14772 0.50937 -1.61890 - 3.22387 0.50937 -1.52592 - 3.30002 0.50937 -1.43386 - 3.37617 0.50937 -1.34272 - 3.45232 0.50937 -1.25253 - 3.45347 0.51628 -1.25253 - 3.53065 0.51628 -1.16332 - 3.60783 0.51628 -1.07510 - 3.68502 0.51628 -0.98789 - 3.76220 0.51628 -0.90173 - 3.83939 0.51628 -0.81662 - 3.83919 0.51456 -0.81662 - 3.84022 0.51456 -0.81549 - 3.84124 0.51456 -0.81436 - 3.84227 0.51456 -0.81323 - 3.84330 0.51456 -0.81210 - 3.84433 0.51456 -0.81097 - 3.84433 0.51456 -0.81097 - 3.86389 0.51456 -0.78952 - 3.88344 0.51456 -0.76815 - 3.90299 0.51456 -0.74685 - 3.92255 0.51456 -0.72562 - 3.94210 0.51456 -0.70446 - 3.94211 12.20146 -0.70446 - 5.40629 12.20146 -0.63815 - 6.87046 12.20146 -0.57283 - 8.33464 12.20146 -0.50875 - 9.79881 12.20146 -0.44619 - 11.26299 12.20146 -0.38540 - 11.26300 12.20068 -0.38540 - 11.93423 10.15711 -0.35576 - 12.47970 8.00587 -0.32666 - 12.89263 5.73954 -0.29812 - 13.16620 3.36098 -0.27016 - 13.29397 0.88339 -0.24280 - 13.29418 0.87645 -0.24280 - 13.36374 0.67714 -0.20246 - 13.42047 0.57827 -0.16351 - 13.47054 0.53059 -0.12596 - 13.51788 0.51095 -0.08982 - 13.56373 0.49777 -0.05509 - 13.56371 0.49769 -0.05509 - 13.60863 0.49070 -0.02177 - 13.65319 0.48964 0.01013 - 13.69792 0.49425 0.04060 - 13.74331 0.50428 0.06964 - 13.78985 0.51947 0.09726 - 13.78992 0.51903 0.09726 - 13.84057 0.49977 0.12594 - 13.89114 0.51858 0.15288 - 13.94514 0.56291 0.17807 - 14.00485 0.64116 0.20150 - 14.07490 0.76519 0.22316 - 14.07810 0.74844 0.22316 - 14.23665 1.50564 0.25051 - 14.48838 2.02078 0.27434 - 14.77407 1.92741 0.29459 - 14.96854 0.55862 0.31120 - 14.89166 -1.64205 0.32414 - 14.88421 -1.63574 0.32414 - 14.51312 -3.61301 0.33335 - 13.88746 -5.27122 0.33899 - 13.05216 -6.60839 0.34124 - 12.05188 -7.62909 0.34030 - 10.93027 -8.34451 0.33639 - 10.93404 -8.32036 0.33639 - 9.73773 -8.72148 0.32975 - 8.50561 -8.83141 0.32071 - 7.27845 -8.65179 0.30956 - 6.09631 -8.18929 0.29661 - 4.99810 -7.45560 0.28215 - 4.99703 -7.43428 0.28215 - 4.01848 -6.54344 0.26648 - 3.16377 -5.67605 0.24982 - 2.42651 -4.86599 0.23236 - 1.79850 -4.11566 0.21426 - 1.27125 -3.42687 0.19573 - 1.27154 -3.42637 0.19573 - 0.84273 -2.73264 0.17691 - 0.50028 -2.17016 0.15789 - 0.23610 -1.58601 0.13873 - 0.06248 -0.86712 0.11948 - 0.00112 0.01925 0.10023 + 0.00000 0.00000 -8.20559 + 0.00000 0.00000 -8.13823 + 0.00000 0.00000 -8.07086 + 0.00000 0.00000 -8.00350 + 0.00000 0.00000 -7.93613 + 0.00000 0.00000 -7.86877 + 0.00000 0.00000 -7.86877 + 0.00000 0.00000 -7.80140 + 0.00000 0.00000 -7.73404 + 0.00000 0.00000 -7.66667 + 0.00000 0.00000 -7.59931 + 0.00000 0.00000 -7.53194 + 0.00000 0.00000 -7.53194 + 0.00000 0.00000 -7.44212 + 0.00000 0.00000 -7.35230 + 0.00000 0.00000 -7.26248 + 0.00000 0.00000 -7.17266 + 0.00000 0.00000 -7.08284 + 0.00000 0.00000 -7.08284 + 0.00000 0.00000 -7.00799 + 0.00000 0.00000 -6.93314 + 0.00000 0.00000 -6.85829 + 0.00000 0.00000 -6.78344 + 0.00000 0.00000 -6.70859 + 0.00000 0.00000 -6.70859 + 0.00000 0.00000 -6.63374 + 0.00000 0.00000 -6.55889 + 0.00000 0.00000 -6.48404 + 0.00000 0.00000 -6.40919 + 0.00000 0.00000 -6.33434 + 0.00000 0.00000 -6.33434 + 0.00000 0.00000 -6.26997 + 0.00000 0.00000 -6.20560 + 0.00000 0.00000 -6.14123 + 0.00000 0.00000 -6.07686 + 0.00000 0.00000 -6.01249 + 0.00000 0.50743 -6.01249 + 0.05785 0.50743 -5.92716 + 0.11570 0.50743 -5.84184 + 0.17354 0.50743 -5.75654 + 0.23139 0.50743 -5.67127 + 0.28924 0.50743 -5.58604 + 0.28934 0.50417 -5.58604 + 0.32968 0.50417 -5.52625 + 0.37001 0.50417 -5.46650 + 0.41034 0.50417 -5.40677 + 0.45068 0.50417 -5.34707 + 0.49101 0.50417 -5.28741 + 0.49101 0.50417 -5.28741 + 0.50109 0.50417 -5.27250 + 0.51117 0.50417 -5.25760 + 0.52126 0.50417 -5.24270 + 0.53134 0.50417 -5.22779 + 0.54142 0.50417 -5.21290 + 0.54127 0.50864 -5.21290 + 0.59213 0.50864 -5.13845 + 0.64299 0.50864 -5.06407 + 0.69386 0.50864 -4.98978 + 0.74472 0.50864 -4.91557 + 0.79559 0.50864 -4.84146 + 0.79558 0.50873 -4.84146 + 0.84646 0.50873 -4.76745 + 0.89733 0.50873 -4.69354 + 0.94820 0.50873 -4.61975 + 0.99908 0.50873 -4.54607 + 1.04995 0.50873 -4.47253 + 1.04995 0.50887 -4.47253 + 1.10084 0.50887 -4.39911 + 1.15172 0.50887 -4.32584 + 1.20261 0.50887 -4.25270 + 1.25350 0.50887 -4.17972 + 1.30439 0.50887 -4.10690 + 1.30437 0.50914 -4.10690 + 1.37565 0.50914 -4.00523 + 1.44693 0.50914 -3.90390 + 1.51821 0.50914 -3.80292 + 1.58949 0.50914 -3.70232 + 1.66076 0.50914 -3.60211 + 1.66074 0.50976 -3.60211 + 1.72701 0.50976 -3.50943 + 1.79328 0.50976 -3.41711 + 1.85955 0.50976 -3.32517 + 1.92581 0.50976 -3.23363 + 1.99208 0.50976 -3.14251 + 1.99220 0.50883 -3.14251 + 2.05835 0.50883 -3.05180 + 2.12450 0.50883 -2.96153 + 2.19065 0.50883 -2.87172 + 2.25679 0.50883 -2.78237 + 2.32294 0.50883 -2.69350 + 2.32293 0.50879 -2.69350 + 2.39900 0.50879 -2.59192 + 2.47506 0.50879 -2.49101 + 2.55113 0.50879 -2.39080 + 2.62719 0.50879 -2.29130 + 2.70326 0.50879 -2.19255 + 2.70326 0.50879 -2.19255 + 2.77932 0.50879 -2.09455 + 2.85539 0.50879 -1.99734 + 2.93145 0.50879 -1.90093 + 3.00751 0.50879 -1.80535 + 3.08358 0.50879 -1.71062 + 3.08306 0.51126 -1.71062 + 3.15949 0.51126 -1.61675 + 3.23593 0.51126 -1.52377 + 3.31236 0.51126 -1.43171 + 3.38879 0.51126 -1.34057 + 3.46523 0.51126 -1.25039 + 3.46637 0.51816 -1.25039 + 3.54384 0.51816 -1.16119 + 3.62130 0.51816 -1.07298 + 3.69877 0.51816 -0.98580 + 3.77623 0.51816 -0.89965 + 3.85370 0.51816 -0.81457 + 3.85349 0.51640 -0.81457 + 3.85453 0.51640 -0.81344 + 3.85556 0.51640 -0.81231 + 3.85659 0.51640 -0.81118 + 3.85762 0.51640 -0.81005 + 3.85866 0.51640 -0.80892 + 3.85866 0.51640 -0.80892 + 3.87828 0.51640 -0.78748 + 3.89790 0.51640 -0.76612 + 3.91753 0.51640 -0.74482 + 3.93715 0.51640 -0.72360 + 3.95677 0.51640 -0.70245 + 3.95678 12.17985 -0.70245 + 5.41837 12.17985 -0.63617 + 6.87995 12.17985 -0.57088 + 8.34153 12.17985 -0.50683 + 9.80311 12.17985 -0.44430 + 11.26469 12.17985 -0.38355 + 11.26471 12.17907 -0.38355 + 11.93464 10.13556 -0.35392 + 12.47883 7.98439 -0.32484 + 12.89047 5.71813 -0.29632 + 13.16276 3.33964 -0.26838 + 13.28925 0.86211 -0.24103 + 13.28945 0.85516 -0.24103 + 13.35705 0.65465 -0.20072 + 13.41161 0.55339 -0.16179 + 13.45936 0.50468 -0.12427 + 13.50435 0.48535 -0.08815 + 13.54789 0.47247 -0.05344 + 13.54786 0.47239 -0.05344 + 13.59050 0.46569 -0.02014 + 13.63279 0.46493 0.01174 + 13.67528 0.46984 0.04220 + 13.71847 0.48016 0.07123 + 13.76283 0.49564 0.09883 + 13.76289 0.49519 0.09883 + 13.81118 0.47631 0.12750 + 13.85942 0.49548 0.15444 + 13.91115 0.54076 0.17963 + 13.96873 0.62059 0.20306 + 14.03680 0.74626 0.22474 + 14.04000 0.72953 0.22474 + 14.19595 1.48815 0.25211 + 14.44548 2.00673 0.27596 + 14.72972 1.92276 0.29625 + 14.92463 0.56980 0.31292 + 14.85008 -1.62261 0.32591 + 14.84260 -1.61601 0.32591 + 14.47427 -3.59333 0.33520 + 13.85134 -5.25196 0.34092 + 13.01869 -6.58988 0.34326 + 12.02092 -7.61171 0.34243 + 10.90164 -8.32862 0.33862 + 10.90546 -8.30423 0.33862 + 9.71128 -8.70722 0.33209 + 8.48101 -8.81940 0.32317 + 7.25535 -8.64241 0.31215 + 6.07432 -8.18292 0.29933 + 4.97677 -7.45260 0.28501 + 4.97569 -7.43130 0.28501 + 3.99763 -6.53720 0.26949 + 3.14451 -5.65946 0.25298 + 2.41033 -4.83855 0.23566 + 1.78695 -4.07686 0.21773 + 1.26596 -3.37617 0.19935 + 1.26625 -3.37567 0.19935 + 0.83908 -2.73718 0.18070 + 0.49690 -2.16173 0.16184 + 0.23438 -1.57388 0.14283 + 0.06205 -0.86095 0.12375 + 0.00112 0.01926 0.10466 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11919,24 +12055,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -12011,8 +12147,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12030,7 +12166,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -12042,7 +12178,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -12072,7 +12208,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -12213,13 +12349,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 302 100 P 78.00012 0.00000 78.00012 78.00006 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P - 78.00020 0.00000 78.00020 78.00020 302 100 P + 78.00010 0.00000 78.00010 78.00010 302 100 P + 78.00019 0.00000 78.00019 78.00020 302 100 P 78.00048 0.00000 78.00048 78.00048 302 100 P 78.00086 0.00000 78.00086 78.00086 302 100 P 78.00124 0.00000 78.00124 78.00124 302 100 P 78.00162 0.00000 78.00162 78.00162 302 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -12232,54 +12368,54 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 7.75096 69.84300 58.91108 10.23728 110 0 1 - 10.25583 70.73571 59.07501 10.45829 110 0 1 - 10.63777 71.62842 59.55950 10.80128 110 0 1 - 11.01832 72.52113 60.24321 11.14428 110 0 1 - 11.39746 73.41384 61.05177 11.48728 110 0 1 - 11.68944 74.30655 61.71273 11.74453 110 0 1 - 11.86094 74.30655 62.17548 11.91602 110 0 1 - 12.15150 75.19926 62.89559 12.17327 110 0 1 - 12.52640 76.09197 63.89046 12.51627 110 20 1 - 12.89987 76.98468 64.91817 12.85927 110 20 1 - 13.27191 77.87739 65.97136 13.20226 110 20 1 - 13.55676 78.77010 66.77420 13.45951 110 20 1 - 14.94144 78.77010 41.96461 15.49997 110 0 1 - 12.00016 82.75110 38.00268 12.27314 110 0 1 - 10.28124 86.73210 32.76169 10.18968 110 31 1 - 8.61020 90.71310 27.56116 8.10622 110 31 1 - 7.78924 94.69410 22.39249 6.02276 110 35 1 - 7.02635 98.67510 18.53208 4.46017 110 38 1 - 26.31888 98.67510 33.91813 2.66609 220 78 2 - 27.86724 100.04850 40.08908 3.16905 220 70 2 - 27.61441 101.42190 48.22870 3.83967 220 57 2 - 24.50409 102.79530 56.28858 4.51028 110 44 1 - 10.53661 104.16870 64.29642 5.18090 110 16 1 - 9.57350 105.54210 70.28227 5.68386 110 14 1 - 9.90881 105.54210 74.26662 6.01917 110 13 1 - 10.52237 106.91550 80.23883 6.52214 110 13 1 - 11.26060 108.28890 88.20049 7.19275 110 13 1 - 11.95822 109.66230 96.16625 7.86337 110 12 1 - 12.61764 111.03570 104.14003 8.53399 110 12 1 - 13.07361 112.40910 110.12653 9.03695 110 12 1 - 13.40892 112.40910 114.12106 9.37226 110 12 1 - 13.83219 113.78250 120.11821 9.87522 110 12 1 - 14.39431 115.15590 128.12317 10.54584 110 11 1 - 14.93120 116.52930 136.13813 11.21646 110 11 1 - 15.44642 117.90270 144.16229 11.88707 110 11 1 - 15.77588 119.27610 150.18570 12.39004 110 11 1 - 16.11119 119.27610 154.20390 12.72534 110 10 1 - 16.42611 120.64950 160.23477 13.22831 110 10 1 - 16.89681 122.02290 168.28135 13.89892 110 10 1 - 17.35781 123.39630 176.33377 14.56954 110 10 1 - 17.81133 124.76970 184.39132 15.24016 110 10 1 - 18.09190 126.14310 190.43734 15.74312 110 10 1 - 14.69602 126.14310 194.46939 11.38031 110 8 1 - 18.70437 127.51650 200.51935 16.58139 110 9 1 - 19.14672 128.88990 208.58880 17.25201 110 9 1 - 20.81340 130.26330 216.66126 17.92263 110 10 1 - 22.87381 131.63670 224.73639 18.59324 110 10 1 - 24.84166 133.01010 230.79421 19.09621 110 11 1 + 7.71495 69.84300 58.91108 10.20104 110 0 1 + 10.25757 70.73571 59.07501 10.45829 110 0 1 + 10.63949 71.62842 59.55950 10.80128 110 0 1 + 11.02001 72.52113 60.24321 11.14428 110 0 1 + 11.39913 73.41384 61.05177 11.48728 110 0 1 + 11.69109 74.30655 61.71273 11.74453 110 0 1 + 11.86259 74.30655 62.17548 11.91602 110 0 1 + 12.15313 75.19926 62.89559 12.17327 110 0 1 + 12.52801 76.09197 63.89046 12.51627 110 20 1 + 12.90146 76.98468 64.91817 12.85927 110 20 1 + 13.27349 77.87739 65.97136 13.20226 110 20 1 + 13.55834 78.77010 66.77420 13.45951 110 20 1 + 13.27789 78.77010 41.96461 13.83574 110 0 1 + 12.00072 82.75110 38.00268 12.27314 110 0 1 + 10.28166 86.73210 32.76169 10.18968 110 31 1 + 8.62475 90.71310 27.56116 8.10622 110 31 1 + 7.80451 94.69410 22.39249 6.02276 110 35 1 + 7.04243 98.67510 18.53208 4.46017 110 38 1 + 26.31713 98.67510 33.91813 2.66609 220 78 2 + 27.89332 100.04850 40.08908 3.16905 220 70 2 + 27.64274 101.42190 48.22870 3.83967 220 57 2 + 24.62752 102.79530 56.28858 4.51028 110 44 1 + 10.67129 104.16870 64.29642 5.18090 110 17 1 + 9.59483 105.54210 70.28227 5.68386 110 14 1 + 9.93013 105.54210 74.26662 6.01917 110 13 1 + 10.54457 106.91550 80.23883 6.52214 110 13 1 + 11.28378 108.28890 88.20049 7.19275 110 13 1 + 11.98250 109.66230 96.16625 7.86337 110 12 1 + 12.64311 111.03570 104.14003 8.53399 110 12 1 + 13.10036 112.40910 110.12653 9.03695 110 12 1 + 13.43567 112.40910 114.12106 9.37226 110 12 1 + 13.86030 113.78250 120.11821 9.87522 110 12 1 + 14.42387 115.15590 128.12317 10.54584 110 11 1 + 14.96228 116.52930 136.13813 11.21646 110 11 1 + 15.47909 117.90270 144.16229 11.88707 110 11 1 + 15.81021 119.27610 150.18570 12.39004 110 11 1 + 16.14551 119.27610 154.20390 12.72534 110 10 1 + 16.46216 120.64950 160.23477 13.22831 110 10 1 + 16.93464 122.02290 168.28135 13.89892 110 10 1 + 17.39747 123.39630 176.33377 14.56954 110 10 1 + 17.85287 124.76970 184.39132 15.24016 110 10 1 + 18.13535 126.14310 190.43734 15.74312 110 10 1 + 18.47066 126.14310 194.46939 16.07843 110 9 1 + 18.74976 127.51650 200.51935 16.58139 110 9 1 + 19.19405 128.88990 208.58880 17.25201 110 9 1 + 20.72232 130.26330 216.66126 17.92263 110 10 1 + 22.77924 131.63670 224.73639 18.59324 110 10 1 + 24.74362 133.01010 230.79421 19.09621 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12294,9 +12430,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 10.610 'Hydrobiaklei' - -12.00 4.966 'Basisveen' - -12.50 59.698 'Eerste zandlaag' + -11.09 10.609 'Hydrobiaklei' + -12.00 4.887 'Basisveen' + -12.50 60.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12315,7 +12451,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -2.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -22.92 'Eerste zandlaag' + -12.50 -23.05 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -12425,24 +12561,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -12517,8 +12653,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12536,7 +12672,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -12548,7 +12684,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -12578,7 +12714,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -12719,73 +12855,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 302 100 P + 78.00190 0.00000 78.00190 78.00191 302 100 P 78.00230 0.00000 78.00230 78.00230 302 100 P 78.00320 0.00000 78.00320 78.00320 302 100 P 78.00440 0.00000 78.00440 78.00440 302 100 P 78.00560 0.00000 78.00560 78.00560 302 100 P 78.00680 0.00000 78.00680 78.00680 302 100 P 78.00770 0.00000 78.00770 78.00770 302 100 P - 36.00147 66.90000 67.75891 5.13458 220 53 2 - 37.77085 67.48860 70.78484 5.36388 220 53 2 - 39.87823 68.07720 74.81942 5.66961 220 53 2 - 41.93681 68.66580 78.85400 5.97534 220 53 2 - 43.94833 69.25440 82.88858 6.28107 220 53 2 - 45.52599 69.84300 85.91452 6.51036 220 53 2 - 10.75449 69.84300 58.91108 10.23728 110 18 1 - 11.63268 70.73571 59.07501 10.45829 110 20 1 - 11.43387 71.62842 59.55950 10.80128 110 19 1 - 11.27024 72.52113 60.24321 11.14428 110 19 1 - 11.57710 73.41384 61.05177 11.48728 110 19 1 - 11.79961 74.30655 61.71273 11.74453 110 19 1 - 11.97111 74.30655 62.17548 11.91602 110 19 1 - 12.19504 75.19926 62.89559 12.17327 110 19 1 - 12.50614 76.09197 63.89046 12.51627 110 0 1 - 12.81866 76.98468 64.91817 12.85927 110 0 1 - 13.13262 77.87739 65.97136 13.20226 110 0 1 - 13.36225 78.77010 66.77420 13.45951 110 0 1 - 15.30546 78.77010 41.96461 15.49997 110 0 1 - 12.02127 82.75110 38.00268 12.27314 110 0 1 - 9.88393 86.73210 32.76169 10.18968 110 0 1 - 8.12095 90.71310 27.56116 8.10622 110 29 1 - 6.71336 94.69410 22.39249 6.02276 110 30 1 - 5.62172 98.67510 18.53208 4.46017 110 30 1 - 20.67771 98.67510 33.91813 2.66609 220 61 2 - 22.69124 100.04850 40.08908 3.16905 220 57 2 - 25.43129 101.42190 48.22870 3.83967 220 53 2 - 28.02105 102.79530 56.28858 4.51028 110 50 1 - 26.57379 104.16870 64.29642 5.18090 110 41 1 - 24.97448 105.54210 70.28227 5.68386 110 36 1 - 25.15729 105.54210 74.26662 6.01917 110 34 1 - 23.52048 106.91550 80.23883 6.52214 110 29 1 - 21.95131 108.28890 88.20049 7.19275 110 25 1 - 20.36985 109.66230 96.16625 7.86337 110 21 1 - 18.78754 111.03570 104.14003 8.53399 110 18 1 - 17.12398 112.40910 110.12653 9.03695 110 16 1 - 17.30772 112.40910 114.12106 9.37226 110 15 1 - 15.66367 113.78250 120.11821 9.87522 110 13 1 - 14.13328 115.15590 128.12317 10.54584 110 11 1 - 12.62626 116.52930 136.13813 11.21646 110 9 1 - 11.14419 117.90270 144.16229 11.88707 110 0 1 - 9.59672 119.27610 150.18570 12.39004 110 0 1 - 9.78061 119.27610 154.20390 12.72534 110 0 1 - 10.03050 120.64950 160.23477 13.22831 110 0 1 - 10.90104 122.02290 168.28135 13.89892 110 0 1 - 11.78127 123.39630 176.33377 14.56954 110 0 1 - 12.66899 124.76970 184.39132 15.24016 110 0 1 - 13.39435 126.14310 190.43734 15.74312 110 0 1 - 9.03153 126.14310 194.46939 11.38031 110 0 1 - 14.45842 127.51650 200.51935 16.58139 110 0 1 - 15.35730 128.88990 208.58880 17.25201 110 0 1 - 16.25790 130.26330 216.66126 17.92263 110 0 1 - 17.15944 131.63670 224.73639 18.59324 110 0 1 - 17.89350 133.01010 230.79421 19.09621 110 0 1 + 36.00044 66.90000 67.75891 5.13458 220 53 2 + 37.76978 67.48860 70.78484 5.36388 220 53 2 + 39.87713 68.07720 74.81942 5.66961 220 53 2 + 41.93569 68.66580 78.85400 5.97534 220 53 2 + 43.94719 69.25440 82.88858 6.28107 220 53 2 + 45.52483 69.84300 85.91452 6.51036 220 53 2 + 10.71826 69.84300 58.91108 10.20104 110 18 1 + 11.66112 70.73571 59.07501 10.45829 110 20 1 + 11.46139 71.62842 59.55950 10.80128 110 19 1 + 11.26855 72.52113 60.24321 11.14428 110 19 1 + 11.57543 73.41384 61.05177 11.48728 110 19 1 + 11.79796 74.30655 61.71273 11.74453 110 19 1 + 11.96946 74.30655 62.17548 11.91602 110 19 1 + 12.19341 75.19926 62.89559 12.17327 110 19 1 + 12.50453 76.09197 63.89046 12.51627 110 0 1 + 12.81707 76.98468 64.91817 12.85927 110 0 1 + 13.13103 77.87739 65.97136 13.20226 110 0 1 + 13.36068 78.77010 66.77420 13.45951 110 0 1 + 13.63808 78.77010 41.96461 13.83574 110 0 1 + 12.01813 82.75110 38.00268 12.27314 110 0 1 + 9.88081 86.73210 32.76169 10.18968 110 0 1 + 8.12003 90.71310 27.56116 8.10622 110 29 1 + 6.71256 94.69410 22.39249 6.02276 110 30 1 + 5.62107 98.67510 18.53208 4.46017 110 30 1 + 20.67945 98.67510 33.91813 2.66609 220 61 2 + 22.69355 100.04850 40.08908 3.16905 220 57 2 + 25.43423 101.42190 48.22870 3.83967 220 53 2 + 28.03557 102.79530 56.28858 4.51028 110 50 1 + 26.59124 104.16870 64.29642 5.18090 110 41 1 + 24.99504 105.54210 70.28227 5.68386 110 36 1 + 25.17785 105.54210 74.26662 6.01917 110 34 1 + 23.54434 106.91550 80.23883 6.52214 110 29 1 + 21.97865 108.28890 88.20049 7.19275 110 25 1 + 20.40083 109.66230 96.16625 7.86337 110 21 1 + 18.82232 111.03570 104.14003 8.53399 110 18 1 + 17.16271 112.40910 110.12653 9.03695 110 16 1 + 17.34645 112.40910 114.12106 9.37226 110 15 1 + 15.70648 113.78250 120.11821 9.87522 110 13 1 + 14.18027 115.15590 128.12317 10.54584 110 11 1 + 12.67750 116.52930 136.13813 11.21646 110 9 1 + 11.19971 117.90270 144.16229 11.88707 110 0 1 + 9.65652 119.27610 150.18570 12.39004 110 0 1 + 9.84041 119.27610 154.20390 12.72534 110 0 1 + 9.99445 120.64950 160.23477 13.22831 110 0 1 + 10.86321 122.02290 168.28135 13.89892 110 0 1 + 11.74161 123.39630 176.33377 14.56954 110 0 1 + 12.62745 124.76970 184.39132 15.24016 110 0 1 + 13.35089 126.14310 190.43734 15.74312 110 0 1 + 13.68620 126.14310 194.46939 16.07843 110 0 1 + 14.41303 127.51650 200.51935 16.58139 110 0 1 + 15.30997 128.88990 208.58880 17.25201 110 0 1 + 16.20861 130.26330 216.66126 17.92263 110 0 1 + 17.10819 131.63670 224.73639 18.59324 110 0 1 + 17.84030 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12800,9 +12936,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 12.258 'Grind' - -11.09 10.966 'Hydrobiaklei' - -12.00 4.720 'Basisveen' - -12.50 60.480 'Eerste zandlaag' + -11.09 10.969 'Hydrobiaklei' + -12.00 4.636 'Basisveen' + -12.50 60.816 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12821,7 +12957,7 @@ Layer name -10.79 4.95 'Grind' -11.09 2.33 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 23.22 'Eerste zandlaag' + -12.50 23.35 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -13043,8 +13179,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 394.77247 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 522.76134 10000000.000 1 1 1 'Dek' + -10.19000 394.79156 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 522.75985 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -13105,10 +13241,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 28.11 : Percentage mobilized resistance left - 19.12 : Percentage mobilized resistance right - 174.31 : Effective left - 118.57 : Effective right + 28.15 : Percentage mobilized resistance left + 19.16 : Percentage mobilized resistance right + 174.55 : Effective left + 118.82 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 620.14 : Max effective resistance left @@ -13117,8 +13253,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 38.75 : Vertical force left - 18.71 : Vertical force right + 38.87 : Vertical force left + 18.84 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -13127,10 +13263,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --18.71 : Active force -38.75 : Passive force --18.71 : Plugged active force -38.75 : Plugged passive force +-18.84 : Active force +38.87 : Passive force +-18.84 : Plugged active force +38.87 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance @@ -13150,192 +13286,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.95299 - 0.12661 0.00000 -58.68685 - 0.25322 0.00000 -57.42072 - 0.37983 0.00000 -56.15462 - 0.50644 0.00000 -54.88855 - 0.63304 0.00000 -53.62254 - 0.63304 0.00000 -53.62254 - 0.75962 0.00000 -52.35659 - 0.88620 0.00000 -51.09072 - 1.01277 0.00000 -49.82494 - 1.13935 0.00000 -48.55927 - 1.26593 0.00000 -47.29371 - 1.26593 0.00000 -47.29371 - 1.43459 0.00000 -45.60650 - 1.60325 0.00000 -43.91955 - 1.77192 0.00000 -42.23289 - 1.94058 0.00000 -40.54655 - 2.10924 0.00000 -38.86057 - 2.10924 0.00000 -38.86057 - 2.24965 0.00000 -37.45587 - 2.39006 0.00000 -36.05146 - 2.53047 0.00000 -34.64734 - 2.67088 0.00000 -33.24355 - 2.81129 0.00000 -31.84009 - 2.81129 0.00000 -31.84009 - 2.95152 0.00000 -30.43699 - 3.09175 0.00000 -29.03426 - 3.23199 0.00000 -27.63192 - 3.37222 0.00000 -26.22998 - 3.51245 0.00000 -24.82847 - 3.51245 0.00000 -24.82847 - 3.63288 0.00000 -23.62353 - 3.75330 0.00000 -22.41892 - 3.87373 0.00000 -21.21466 - 3.99415 0.00000 -20.01077 - 4.11457 0.00000 -18.80724 - 4.11457 439.90000 -18.80724 - 54.41909 439.90000 -17.21384 - 104.72360 439.90000 -15.62934 - 155.02811 439.90000 -14.06199 - 205.33262 439.90000 -12.52002 - 255.63713 439.90000 -11.01167 - 255.63724 439.89674 -11.01167 - 290.92712 439.89674 -9.97768 - 326.21699 439.89674 -8.96714 - 361.50687 439.89674 -7.98291 - 396.79675 439.89674 -7.02782 - 432.08663 439.89674 -6.10473 - 432.08662 -82.86460 -6.10473 - 430.45144 -82.86460 -5.87928 - 428.81626 -82.86460 -5.65600 - 427.18108 -82.86460 -5.43488 - 425.54591 -82.86460 -5.21591 - 423.91073 -82.86460 -4.99909 - 423.91057 -82.86014 -4.99909 - 415.71951 -82.86014 -3.94685 - 407.52846 -82.86014 -2.94698 - 399.33740 -82.86014 -1.99846 - 391.14634 -82.86014 -1.10024 - 382.95528 -82.86014 -0.25130 - 382.95528 -82.86004 -0.25130 - 374.74011 -82.86004 0.54940 - 366.52494 -82.86004 1.30289 - 358.30977 -82.86004 2.01020 - 350.09460 -82.86004 2.67237 - 341.87943 -82.86004 3.29044 - 341.87943 -82.85990 3.29044 - 333.64274 -82.85990 3.86544 - 325.40605 -82.85990 4.39841 - 317.16936 -82.85990 4.89038 - 308.93267 -82.85990 5.34239 - 300.69598 -82.85990 5.75549 - 300.69597 -82.85964 5.75549 - 289.13340 -82.85964 6.27042 - 277.57084 -82.85964 6.71395 - 266.00827 -82.85964 7.08894 - 254.44571 -82.85964 7.39825 - 242.88314 -82.85964 7.64473 - 242.88312 -82.85901 7.64473 - 232.11953 -82.85901 7.81984 - 221.35594 -82.85901 7.94553 - 210.59236 -82.85901 8.02409 - 199.82877 -82.85901 8.05782 - 189.06519 -82.85901 8.04900 - 189.06530 -82.85994 8.04900 - 178.28147 -82.85994 7.99993 - 167.49764 -82.85994 7.91289 - 156.71381 -82.85994 7.79020 - 145.92998 -82.85994 7.63414 - 135.14614 -82.85994 7.44702 - 135.14613 -82.85998 7.44702 - 122.72729 -82.85998 7.19639 - 110.30845 -82.85998 6.91120 - 97.88961 -82.85998 6.59496 - 85.47077 -82.85998 6.25115 - 73.05192 -82.85998 5.88328 - 73.05192 -82.85998 5.88328 - 60.62280 -82.85998 5.49484 - 48.19367 -82.85998 5.08932 - 35.76455 -82.85998 4.67024 - 23.33542 -82.85998 4.24108 - 10.90629 -82.85998 3.80536 - 10.90577 -82.85751 3.80536 - -1.52452 -82.85751 3.36656 - -13.95481 -82.85751 2.92820 - -26.38510 -82.85751 2.49376 - -38.81539 -82.85751 2.06675 - -51.24568 -82.85751 1.65068 - -51.24454 -82.85060 1.65068 - -63.66658 -82.85060 1.24903 - -76.08863 -82.85060 0.86530 - -88.51067 -82.85060 0.50301 - -100.93271 -82.85060 0.16563 - -113.35476 -82.85060 -0.14332 - -113.35496 -82.85232 -0.14332 - -113.52105 -82.85232 -0.14725 - -113.68715 -82.85232 -0.15116 - -113.85325 -82.85232 -0.15508 - -114.01934 -82.85232 -0.15899 - -114.18544 -82.85232 -0.16289 - -114.18544 -82.85232 -0.16289 - -117.34057 -82.85232 -0.23592 - -120.49570 -82.85232 -0.30681 - -123.65084 -82.85232 -0.37551 - -126.80597 -82.85232 -0.44197 - -129.96110 -82.85232 -0.50611 - -129.96109 55.77509 -0.50611 - -123.28137 55.77509 -0.69339 - -116.60165 55.77509 -0.85831 - -109.92193 55.77509 -1.00207 - -103.24221 55.77509 -1.12589 - -96.56249 55.77509 -1.23098 - -96.56246 55.77402 -1.23098 - -93.28784 53.46544 -1.27689 - -90.15555 51.02725 -1.31856 - -87.17363 48.45343 -1.35614 - -84.35011 45.74823 -1.38976 - -81.69253 42.92618 -1.41956 - -81.69232 42.91861 -1.41956 - -77.80865 42.49799 -1.45772 - -73.95858 42.16438 -1.48777 - -70.13707 41.87023 -1.51010 - -66.34120 41.59403 -1.52511 - -62.57056 41.31572 -1.53320 - -62.57060 41.31504 -1.53320 - -58.82293 41.03586 -1.53477 - -55.10066 40.75695 -1.53020 - -51.40373 40.47939 -1.51988 - -47.73195 40.20420 -1.50419 - -44.08506 39.93232 -1.48352 - -44.08497 39.93107 -1.48352 - -40.12242 39.27937 -1.45553 - -36.22316 38.66681 -1.42249 - -32.38345 38.08348 -1.38487 - -28.60050 37.54022 -1.34317 - -24.86897 37.05111 -1.29786 - -24.86524 37.02746 -1.29786 - -19.71229 36.52430 -1.22933 - -14.64775 35.65112 -1.15595 - -9.78901 33.34234 -1.07889 - -5.37945 29.41553 -0.99933 - -1.57425 24.85583 -0.91843 - -1.57961 24.85679 -0.91843 - 1.56628 20.05155 -0.83729 - 4.05244 15.48503 -0.75654 - 5.92724 11.31869 -0.67666 - 7.24704 7.55716 -0.59811 - 8.06870 4.20234 -0.52137 - 8.07465 4.20757 -0.52137 - 8.45463 1.25888 -0.44676 - 8.45115 -1.26337 -0.37423 - 8.12852 -3.28156 -0.30372 - 7.56242 -4.74275 -0.23516 - 6.83007 -5.65949 -0.16848 - 6.82796 -5.64259 -0.16848 - 6.00167 -6.13045 -0.10353 - 5.12512 -6.37167 -0.04006 - 4.22964 -6.40175 0.02215 - 3.34449 -6.22456 0.08332 - 2.49847 -5.84325 0.14365 - 2.49878 -5.84233 0.14365 - 1.72599 -5.19161 0.20339 - 1.05200 -4.40854 0.26272 - 0.50557 -3.34082 0.32175 - 0.13580 -1.87575 0.38061 - 0.00111 0.01922 0.43945 + 0.00000 0.00000 -59.95396 + 0.12661 0.00000 -58.68779 + 0.25322 0.00000 -57.42162 + 0.37984 0.00000 -56.15549 + 0.50645 0.00000 -54.88939 + 0.63306 0.00000 -53.62334 + 0.63306 0.00000 -53.62334 + 0.75964 0.00000 -52.35736 + 0.88622 0.00000 -51.09146 + 1.01280 0.00000 -49.82564 + 1.13938 0.00000 -48.55993 + 1.26596 0.00000 -47.29434 + 1.26596 0.00000 -47.29434 + 1.43463 0.00000 -45.60708 + 1.60330 0.00000 -43.92009 + 1.77196 0.00000 -42.23338 + 1.94063 0.00000 -40.54700 + 2.10930 0.00000 -38.86097 + 2.10930 0.00000 -38.86097 + 2.24971 0.00000 -37.45623 + 2.39013 0.00000 -36.05178 + 2.53054 0.00000 -34.64763 + 2.67095 0.00000 -33.24380 + 2.81137 0.00000 -31.84031 + 2.81137 0.00000 -31.84031 + 2.95160 0.00000 -30.43717 + 3.09184 0.00000 -29.03440 + 3.23207 0.00000 -27.63202 + 3.37231 0.00000 -26.23004 + 3.51255 0.00000 -24.82850 + 3.51255 0.00000 -24.82850 + 3.63297 0.00000 -23.62352 + 3.75340 0.00000 -22.41888 + 3.87383 0.00000 -21.21459 + 3.99426 0.00000 -20.01066 + 4.11469 0.00000 -18.80711 + 4.11469 439.90000 -18.80711 + 54.41920 439.90000 -17.21366 + 104.72372 439.90000 -15.62912 + 155.02823 439.90000 -14.06172 + 205.33275 439.90000 -12.51971 + 255.63726 439.90000 -11.01131 + 255.63737 439.89674 -11.01131 + 290.92725 439.89674 -9.97729 + 326.21713 439.89674 -8.96673 + 361.50701 439.89674 -7.98247 + 396.79689 439.89674 -7.02735 + 432.08677 439.89674 -6.10423 + 432.08677 -82.86311 -6.10423 + 430.45162 -82.86311 -5.87877 + 428.81647 -82.86311 -5.65548 + 427.18132 -82.86311 -5.43435 + 425.54617 -82.86311 -5.21538 + 423.91102 -82.86311 -4.99855 + 423.91087 -82.85865 -4.99855 + 415.71996 -82.85865 -3.94627 + 407.52906 -82.85865 -2.94637 + 399.33815 -82.85865 -1.99780 + 391.14725 -82.85865 -1.09955 + 382.95634 -82.85865 -0.25057 + 382.95634 -82.85855 -0.25057 + 374.74132 -82.85855 0.55016 + 366.52631 -82.85855 1.30369 + 358.31129 -82.85855 2.01104 + 350.09628 -82.85855 2.67325 + 341.88126 -82.85855 3.29135 + 341.88126 -82.85841 3.29135 + 333.64472 -82.85841 3.86639 + 325.40819 -82.85841 4.39939 + 317.17165 -82.85841 4.89140 + 308.93511 -82.85841 5.34345 + 300.69858 -82.85841 5.75658 + 300.69856 -82.85815 5.75658 + 289.13621 -82.85815 6.27156 + 277.57386 -82.85815 6.71514 + 266.01151 -82.85815 7.09018 + 254.44916 -82.85815 7.39953 + 242.88681 -82.85815 7.64605 + 242.88678 -82.85752 7.64605 + 232.12339 -82.85752 7.82121 + 221.36000 -82.85752 7.94694 + 210.59662 -82.85752 8.02554 + 199.83323 -82.85752 8.05931 + 189.06984 -82.85752 8.05052 + 189.06996 -82.85845 8.05052 + 178.28632 -82.85845 8.00149 + 167.50269 -82.85845 7.91449 + 156.71905 -82.85845 7.79183 + 145.93542 -82.85845 7.63581 + 135.15178 -82.85845 7.44871 + 135.15178 -82.85849 7.44871 + 122.73316 -82.85849 7.19812 + 110.31454 -82.85849 6.91297 + 97.89593 -82.85849 6.59676 + 85.47731 -82.85849 6.25298 + 73.05870 -82.85849 5.88514 + 73.05870 -82.85849 5.88514 + 60.62980 -82.85849 5.49672 + 48.20090 -82.85849 5.09123 + 35.77200 -82.85849 4.67217 + 23.34310 -82.85849 4.24304 + 10.91420 -82.85849 3.80733 + 10.91368 -82.85602 3.80733 + -1.51639 -82.85602 3.36856 + -13.94646 -82.85602 2.93020 + -26.37653 -82.85602 2.49578 + -38.80659 -82.85602 2.06878 + -51.23666 -82.85602 1.65271 + -51.23551 -82.84912 1.65271 + -63.65734 -82.84912 1.25106 + -76.07916 -82.84912 0.86734 + -88.50099 -82.84912 0.50505 + -100.92281 -82.84912 0.16767 + -113.34463 -82.84912 -0.14129 + -113.34484 -82.85088 -0.14129 + -113.51093 -82.85088 -0.14522 + -113.67703 -82.85088 -0.14914 + -113.84312 -82.85088 -0.15305 + -114.00921 -82.85088 -0.15696 + -114.17530 -82.85088 -0.16086 + -114.17530 -82.85088 -0.16086 + -117.33038 -82.85088 -0.23389 + -120.48546 -82.85088 -0.30479 + -123.64054 -82.85088 -0.37349 + -126.79562 -82.85088 -0.43995 + -129.95070 -82.85088 -0.50410 + -129.95069 55.75745 -0.50410 + -123.27308 55.75745 -0.69139 + -116.59548 55.75745 -0.85631 + -109.91788 55.75745 -1.00009 + -103.24028 55.75745 -1.12392 + -96.56268 55.75745 -1.22903 + -96.56264 55.75638 -1.22903 + -93.28909 53.44789 -1.27494 + -90.15784 51.00981 -1.31662 + -87.17697 48.43609 -1.35421 + -84.35449 45.73099 -1.38784 + -81.69794 42.90906 -1.41764 + -81.69772 42.90147 -1.41764 + -77.81565 42.47968 -1.45581 + -73.96736 42.14371 -1.48587 + -70.14780 41.84858 -1.50821 + -66.35388 41.57272 -1.52322 + -62.58517 41.29476 -1.53132 + -62.58520 41.29408 -1.53132 + -58.83942 41.01523 -1.53289 + -55.11902 40.73666 -1.52832 + -51.42391 40.45945 -1.51800 + -47.75393 40.18460 -1.50231 + -44.10882 39.91306 -1.48164 + -44.10873 39.91182 -1.48164 + -40.14807 39.26062 -1.45364 + -36.25066 38.64855 -1.42058 + -32.41273 38.06631 -1.38295 + -28.63141 37.52477 -1.34123 + -24.90133 37.03745 -1.29591 + -24.89762 37.01382 -1.29591 + -19.74649 36.51241 -1.22733 + -14.68306 35.64922 -1.15391 + -9.82341 33.35743 -1.07680 + -5.41092 29.43925 -0.99718 + -1.60242 24.87907 -0.91620 + -1.60782 24.88033 -0.91620 + 1.54128 20.07354 -0.83498 + 4.03033 15.50420 -0.75415 + 5.90758 11.33454 -0.67418 + 7.22935 7.56916 -0.59554 + 8.05239 4.20995 -0.51870 + 8.05839 4.21542 -0.51870 + 8.43912 1.26175 -0.44398 + 8.43578 -1.26365 -0.37135 + 8.11303 -3.28310 -0.30073 + 7.54660 -4.74599 -0.23206 + 6.81366 -5.66486 -0.16526 + 6.81155 -5.64798 -0.16526 + 5.98466 -6.13138 -0.10018 + 5.10878 -6.36115 -0.03658 + 4.21560 -6.37935 0.02576 + 3.33444 -6.18983 0.08705 + 2.49418 -5.79574 0.14752 + 2.49449 -5.79483 0.14752 + 1.72295 -5.19855 0.20740 + 1.04894 -4.40178 0.26686 + 0.50399 -3.32972 0.32603 + 0.13540 -1.87006 0.38504 + 0.00111 0.01922 0.44401 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -13442,24 +13578,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -13534,8 +13670,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -13553,7 +13689,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -13565,7 +13701,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -13595,7 +13731,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -13736,13 +13872,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 302 100 P 78.00012 0.00000 78.00012 78.00006 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P - 78.00020 0.00000 78.00020 78.00020 302 100 P + 78.00010 0.00000 78.00010 78.00010 302 100 P + 78.00019 0.00000 78.00019 78.00020 302 100 P 78.00048 0.00000 78.00048 78.00048 302 100 P 78.00086 0.00000 78.00086 78.00086 302 100 P 78.00124 0.00000 78.00124 78.00124 302 100 P 78.00162 0.00000 78.00162 78.00162 302 100 P - 78.00190 0.00000 78.00190 78.00190 302 100 P + 78.00190 0.00000 78.00190 78.00191 302 100 P 78.00230 0.00000 78.00230 78.00230 302 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -13755,28 +13891,28 @@ Status character 3.21759 68.66580 78.85400 5.97534 1 0 A 3.38222 69.25440 82.88858 6.28107 1 0 A 3.50569 69.84300 85.91452 6.51036 1 0 A - 6.57420 69.84300 58.91108 10.23728 110 0 1 - 9.00057 70.73571 59.07501 10.45829 110 0 1 - 9.31351 71.62842 59.55950 10.80128 110 0 1 - 9.63418 72.52113 60.24321 11.14428 110 0 1 - 9.96217 73.41384 61.05177 11.48728 110 0 1 - 10.21132 74.30655 61.71273 11.74453 110 0 1 - 10.38282 74.30655 62.17548 11.91602 110 0 1 - 10.63850 75.19926 62.89559 12.17327 110 0 1 - 10.98607 76.09197 63.89046 12.51627 110 0 1 - 11.33939 76.98468 64.91817 12.85927 110 0 1 - 11.69807 77.87739 65.97136 13.20226 110 0 1 - 11.97599 78.77010 66.77420 13.45951 110 0 1 - 11.77988 78.77010 41.96461 15.49997 110 0 1 - 8.83722 82.75110 38.00268 12.27314 110 0 1 - 7.13052 86.73210 32.76169 10.18968 110 0 1 - 5.48433 90.71310 27.56116 8.10622 110 0 1 - 4.69992 94.69410 22.39249 6.02276 110 0 1 - 3.98430 98.67510 18.53208 4.46017 110 0 1 - 21.75581 98.67510 33.91813 2.66609 220 64 2 - 23.42772 100.04850 40.08908 3.16905 220 58 2 - 20.95116 101.42190 48.22870 3.83967 110 43 1 - 8.02234 102.79530 56.28858 4.51028 110 14 1 + 6.53834 69.84300 58.91108 10.20104 110 0 1 + 9.00247 70.73571 59.07501 10.45829 110 0 1 + 9.31541 71.62842 59.55950 10.80128 110 0 1 + 9.63607 72.52113 60.24321 11.14428 110 0 1 + 9.96405 73.41384 61.05177 11.48728 110 0 1 + 10.21321 74.30655 61.71273 11.74453 110 0 1 + 10.38470 74.30655 62.17548 11.91602 110 0 1 + 10.64038 75.19926 62.89559 12.17327 110 0 1 + 10.98795 76.09197 63.89046 12.51627 110 0 1 + 11.34127 76.98468 64.91817 12.85927 110 0 1 + 11.69995 77.87739 65.97136 13.20226 110 0 1 + 11.97787 78.77010 66.77420 13.45951 110 0 1 + 10.11695 78.77010 41.96461 13.83574 110 0 1 + 8.83843 82.75110 38.00268 12.27314 110 0 1 + 7.13162 86.73210 32.76169 10.18968 110 0 1 + 5.49958 90.71310 27.56116 8.10622 110 0 1 + 4.71592 94.69410 22.39249 6.02276 110 0 1 + 4.00114 98.67510 18.53208 4.46017 110 0 1 + 21.75521 98.67510 33.91813 2.66609 220 64 2 + 23.45499 100.04850 40.08908 3.16905 220 59 2 + 21.06945 101.42190 48.22870 3.83967 110 44 1 + 8.15092 102.79530 56.28858 4.51028 110 14 1 2.80048 104.16870 64.29642 5.18090 1 0 A 3.07440 105.54210 70.28227 5.68386 1 0 A 3.25721 105.54210 74.26662 6.01917 1 0 A @@ -13787,22 +13923,22 @@ Status character 4.90758 112.40910 110.12653 9.03695 1 0 A 5.09133 112.40910 114.12106 9.37226 1 0 A 5.36702 113.78250 120.11821 9.87522 1 0 A - 6.05509 115.15590 128.12317 10.54584 110 0 1 - 7.57181 116.52930 136.13813 11.21646 110 0 1 - 9.06515 117.90270 144.16229 11.88707 110 0 1 - 10.36828 119.27610 150.18570 12.39004 110 0 1 - 10.70359 119.27610 154.20390 12.72534 110 0 1 - 11.98597 120.64950 160.23477 13.22831 110 0 1 - 13.41825 122.02290 168.28135 13.89892 110 0 1 - 14.83538 123.39630 176.33377 14.56954 110 8 1 - 16.23997 124.76970 184.39132 15.24016 110 9 1 - 17.46696 126.14310 190.43734 15.74312 110 9 1 - 14.07108 126.14310 194.46939 11.38031 110 7 1 - 19.02213 127.51650 200.51935 16.58139 110 9 1 - 20.40461 128.88990 208.58880 17.25201 110 10 1 - 23.00964 130.26330 216.66126 17.92263 110 11 1 - 26.00738 131.63670 224.73639 18.59324 110 12 1 - 28.91232 133.01010 230.79421 19.09621 110 13 1 + 6.08964 115.15590 128.12317 10.54584 110 0 1 + 7.60769 116.52930 136.13813 11.21646 110 0 1 + 9.10241 117.90270 144.16229 11.88707 110 0 1 + 10.40695 119.27610 150.18570 12.39004 110 0 1 + 10.74226 119.27610 154.20390 12.72534 110 0 1 + 12.02610 120.64950 160.23477 13.22831 110 0 1 + 13.45990 122.02290 168.28135 13.89892 110 0 1 + 14.87860 123.39630 176.33377 14.56954 110 8 1 + 16.28479 124.76970 184.39132 15.24016 110 9 1 + 17.51341 126.14310 190.43734 15.74312 110 9 1 + 17.84872 126.14310 194.46939 16.07843 110 9 1 + 19.07023 127.51650 200.51935 16.58139 110 10 1 + 20.45437 128.88990 208.58880 17.25201 110 10 1 + 22.92070 130.26330 216.66126 17.92263 110 11 1 + 25.91466 131.63670 224.73639 18.59324 110 12 1 + 28.81584 133.01010 230.79421 19.09621 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -13818,8 +13954,8 @@ Layer name -9.99 62.326 'OWB' -10.79 0.941 'Grind' -11.09 9.295 'Hydrobiaklei' - -12.00 3.403 'Basisveen' - -12.50 42.604 'Eerste zandlaag' + -12.00 3.324 'Basisveen' + -12.50 42.936 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -13838,7 +13974,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.98 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -16.35 'Eerste zandlaag' + -12.50 -16.48 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -13948,24 +14084,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -14040,8 +14176,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -14059,7 +14195,7 @@ Lambda passive -10.97000 13.12220 78.85400 3.21759 0.45536 0.24520 6.00921 -11.03000 13.79360 82.88858 3.38222 0.45536 0.24520 6.00921 -11.09000 14.46500 85.91452 3.50569 0.45536 0.24520 6.00921 - -11.09000 14.46500 58.91108 0.36256 0.70178 0.02485 4.03843 + -11.09000 14.46500 58.91108 0.36256 0.69929 0.02485 4.03843 -11.18100 14.95549 59.07501 0.56577 0.69929 0.03783 3.95006 -11.27200 15.44598 59.55950 0.81299 0.69929 0.05263 3.85599 -11.36300 15.93647 60.24321 1.05010 0.69929 0.06589 3.78021 @@ -14071,7 +14207,7 @@ Lambda passive -11.81800 18.38892 64.91817 2.20527 0.69929 0.11992 3.53029 -11.90900 18.87941 65.97136 2.43488 0.69929 0.12897 3.49436 -12.00000 19.36990 66.77420 2.60701 0.69929 0.13545 3.46928 - -12.00000 19.36990 41.96461 7.14444 0.83033 0.38273 2.24805 + -12.00000 19.36990 41.96461 7.14444 0.74118 0.38273 2.24805 -12.10000 16.55890 38.00268 5.90484 0.74118 0.35660 2.29500 -12.20000 13.74790 32.76169 4.25154 0.74118 0.30925 2.38303 -12.30000 10.93690 27.56116 2.59782 0.74118 0.23753 2.52002 @@ -14101,7 +14237,7 @@ Lambda passive -15.02000 30.99370 176.33377 7.94128 0.47008 0.25622 5.68934 -15.16000 32.42030 184.39132 8.30893 0.47008 0.25629 5.68753 -15.30000 33.84690 190.43734 8.58462 0.47008 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.33272 0.25636 5.68565 + -15.30000 33.84690 194.46939 8.76840 0.47008 0.25636 5.68565 -15.44000 35.27350 200.51935 9.04404 0.47008 0.25640 5.68470 -15.58000 36.70010 208.58880 9.41150 0.47008 0.25644 5.68360 -15.72000 38.12670 216.66126 9.77889 0.47008 0.25648 5.68267 @@ -14242,73 +14378,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 302 100 P 78.00440 0.00000 78.00440 78.00440 302 100 P 78.00560 0.00000 78.00560 78.00560 302 100 P 78.00680 0.00000 78.00680 78.00680 302 100 P 78.00770 0.00000 78.00770 78.00770 302 100 P - 40.22939 66.90000 67.75891 5.13458 220 59 2 - 42.37650 67.48860 70.78484 5.36388 220 60 2 - 44.83775 68.07720 74.81942 5.66961 220 60 2 - 47.22692 68.66580 78.85400 5.97534 220 60 2 - 49.54634 69.25440 82.88858 6.28107 220 60 2 - 51.40978 69.84300 85.91452 6.51036 220 60 2 - 11.93124 69.84300 58.91108 10.23728 110 20 1 - 12.88795 70.73571 59.07501 10.45829 110 22 1 - 12.75813 71.62842 59.55950 10.80128 110 21 1 - 12.65438 72.52113 60.24321 11.14428 110 21 1 - 13.01239 73.41384 61.05177 11.48728 110 21 1 - 13.27773 74.30655 61.71273 11.74453 110 22 1 - 13.44922 74.30655 62.17548 11.91602 110 22 1 - 13.70804 75.19926 62.89559 12.17327 110 22 1 - 14.04646 76.09197 63.89046 12.51627 110 22 1 - 14.37914 76.98468 64.91817 12.85927 110 22 1 - 14.70645 77.87739 65.97136 13.20226 110 22 1 - 14.94303 78.77010 66.77420 13.45951 110 22 1 - 18.46702 78.77010 41.96461 15.49997 110 44 1 - 15.18420 82.75110 38.00268 12.27314 110 40 1 - 13.03465 86.73210 32.76169 10.18968 110 40 1 - 11.24682 90.71310 27.56116 8.10622 110 41 1 - 9.80269 94.69410 22.39249 6.02276 110 44 1 - 8.66377 98.67510 18.53208 4.46017 110 47 1 - 25.24078 98.67510 33.91813 2.66609 220 74 2 - 27.13076 100.04850 40.08908 3.16905 220 68 2 - 29.72214 101.42190 48.22870 3.83967 220 62 2 - 32.23392 102.79530 56.28858 4.51028 220 57 2 - 34.68621 104.16870 64.29642 5.18090 220 54 2 - 36.32717 105.54210 70.28227 5.68386 220 52 2 - 37.86701 105.54210 74.26662 6.01917 220 51 2 - 37.56818 106.91550 80.23883 6.52214 110 47 1 - 35.09766 108.28890 88.20049 7.19275 110 40 1 - 32.58460 109.66230 96.16625 7.86337 110 34 1 - 30.04853 111.03570 104.14003 8.53399 110 29 1 - 27.41708 112.40910 110.12653 9.03695 110 25 1 - 27.60082 112.40910 114.12106 9.37226 110 24 1 - 24.98171 113.78250 120.11821 9.87522 110 21 1 - 22.47250 115.15590 128.12317 10.54584 110 18 1 - 19.98565 116.52930 136.13813 11.21646 110 15 1 - 17.52546 117.90270 144.16229 11.88707 110 12 1 - 15.00432 119.27610 150.18570 12.39004 110 10 1 - 15.18822 119.27610 154.20390 12.72534 110 10 1 - 14.47065 120.64950 160.23477 13.22831 110 9 1 - 14.37960 122.02290 168.28135 13.89892 110 9 1 - 14.30370 123.39630 176.33377 14.56954 110 0 1 - 14.24035 124.76970 184.39132 15.24016 110 0 1 - 14.01928 126.14310 190.43734 15.74312 110 0 1 - 9.65647 126.14310 194.46939 11.38031 110 0 1 - 14.14066 127.51650 200.51935 16.58139 110 0 1 - 14.09941 128.88990 208.58880 17.25201 110 0 1 - 14.06166 130.26330 216.66126 17.92263 110 0 1 - 14.02587 131.63670 224.73639 18.59324 110 0 1 - 13.82284 133.01010 230.79421 19.09621 110 0 1 + 40.22784 66.90000 67.75891 5.13458 220 59 2 + 42.37486 67.48860 70.78484 5.36388 220 60 2 + 44.83603 68.07720 74.81942 5.66961 220 60 2 + 47.22513 68.66580 78.85400 5.97534 220 60 2 + 49.54447 69.25440 82.88858 6.28107 220 60 2 + 51.40786 69.84300 85.91452 6.51036 220 60 2 + 11.89487 69.84300 58.91108 10.20104 110 20 1 + 12.91622 70.73571 59.07501 10.45829 110 22 1 + 12.78546 71.62842 59.55950 10.80128 110 21 1 + 12.65249 72.52113 60.24321 11.14428 110 21 1 + 13.01050 73.41384 61.05177 11.48728 110 21 1 + 13.27584 74.30655 61.71273 11.74453 110 22 1 + 13.44734 74.30655 62.17548 11.91602 110 22 1 + 13.70616 75.19926 62.89559 12.17327 110 22 1 + 14.04459 76.09197 63.89046 12.51627 110 22 1 + 14.37726 76.98468 64.91817 12.85927 110 22 1 + 14.70457 77.87739 65.97136 13.20226 110 22 1 + 14.94115 78.77010 66.77420 13.45951 110 22 1 + 16.79902 78.77010 41.96461 13.83574 110 40 1 + 15.18042 82.75110 38.00268 12.27314 110 40 1 + 13.03085 86.73210 32.76169 10.18968 110 40 1 + 11.24519 90.71310 27.56116 8.10622 110 41 1 + 9.80115 94.69410 22.39249 6.02276 110 44 1 + 8.66236 98.67510 18.53208 4.46017 110 47 1 + 25.24138 98.67510 33.91813 2.66609 220 74 2 + 27.13188 100.04850 40.08908 3.16905 220 68 2 + 29.72385 101.42190 48.22870 3.83967 220 62 2 + 32.23626 102.79530 56.28858 4.51028 220 57 2 + 34.68925 104.16870 64.29642 5.18090 220 54 2 + 36.33096 105.54210 70.28227 5.68386 220 52 2 + 37.87080 105.54210 74.26662 6.01917 220 51 2 + 37.58659 106.91550 80.23883 6.52214 110 47 1 + 35.11952 108.28890 88.20049 7.19275 110 40 1 + 32.61013 109.66230 96.16625 7.86337 110 34 1 + 30.07792 111.03570 104.14003 8.53399 110 29 1 + 27.45052 112.40910 110.12653 9.03695 110 25 1 + 27.63426 112.40910 114.12106 9.37226 110 24 1 + 25.01936 113.78250 120.11821 9.87522 110 21 1 + 22.51450 115.15590 128.12317 10.54584 110 18 1 + 20.03208 116.52930 136.13813 11.21646 110 15 1 + 17.57639 117.90270 144.16229 11.88707 110 12 1 + 15.05977 119.27610 150.18570 12.39004 110 10 1 + 15.24367 119.27610 154.20390 12.72534 110 10 1 + 14.43051 120.64950 160.23477 13.22831 110 9 1 + 14.33794 122.02290 168.28135 13.89892 110 9 1 + 14.26048 123.39630 176.33377 14.56954 110 0 1 + 14.19553 124.76970 184.39132 15.24016 110 0 1 + 13.97283 126.14310 190.43734 15.74312 110 0 1 + 14.30814 126.14310 194.46939 16.07843 110 0 1 + 14.09256 127.51650 200.51935 16.58139 110 0 1 + 14.04965 128.88990 208.58880 17.25201 110 0 1 + 14.01023 130.26330 216.66126 17.92263 110 0 1 + 13.97277 131.63670 224.73639 18.59324 110 0 1 + 13.76807 133.01010 230.79421 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14323,9 +14459,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 13.788 'Grind' - -11.09 12.281 'Hydrobiaklei' - -12.00 6.283 'Basisveen' - -12.50 79.636 'Eerste zandlaag' + -11.09 12.283 'Hydrobiaklei' + -12.00 6.199 'Basisveen' + -12.50 79.955 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14344,7 +14480,7 @@ Layer name -10.79 5.57 'Grind' -11.09 2.61 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.57 'Eerste zandlaag' + -12.50 30.69 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14579,10 +14715,10 @@ PartialFactorSet=5 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 11.65 : Percentage mobilized resistance left - 11.69 : Percentage mobilized resistance right - 272.08 : Effective left - 272.08 : Effective right + 11.60 : Percentage mobilized resistance left + 11.64 : Percentage mobilized resistance right + 270.82 : Effective left + 270.82 : Effective right 1089.18 : Water pressure left 1089.18 : Water pressure right 2335.12 : Max effective resistance left @@ -14591,8 +14727,8 @@ PartialFactorSet=5 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 80.72 : Vertical force left - 80.72 : Vertical force right + 80.21 : Vertical force left + 80.21 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -14601,10 +14737,10 @@ PartialFactorSet=5 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --80.72 : Active force -80.72 : Passive force --80.72 : Plugged active force -80.72 : Plugged passive force +-80.21 : Active force +80.21 : Passive force +-80.21 : Plugged active force +80.21 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance @@ -14624,210 +14760,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.01149 - 0.00000 0.00000 0.01134 - 0.00000 0.00000 0.01120 - 0.00000 0.00000 0.01105 - 0.00000 0.00000 0.01091 - 0.00000 0.00000 0.01076 - 0.00000 0.00000 0.01076 - 0.00000 0.00000 0.01062 - 0.00000 0.00000 0.01047 - 0.00000 0.00000 0.01033 - 0.00000 0.00000 0.01018 - 0.00000 0.00000 0.01004 - 0.00000 0.00000 0.01004 - 0.00000 0.00000 0.00985 - 0.00000 0.00000 0.00965 - 0.00000 0.00000 0.00946 - 0.00000 0.00000 0.00927 - 0.00000 0.00000 0.00907 - 0.00000 0.00000 0.00907 - 0.00000 0.00000 0.00891 - 0.00000 0.00000 0.00875 - 0.00000 0.00000 0.00859 - 0.00000 0.00000 0.00843 - 0.00000 0.00000 0.00827 - 0.00000 0.00000 0.00827 - 0.00000 0.00000 0.00811 - 0.00000 0.00000 0.00795 - 0.00000 0.00000 0.00779 - 0.00000 0.00000 0.00763 - 0.00000 0.00000 0.00747 - 0.00000 0.00000 0.00747 - 0.00000 0.00000 0.00733 - 0.00000 0.00000 0.00719 - 0.00000 0.00000 0.00705 - 0.00000 0.00000 0.00691 - 0.00000 0.00000 0.00677 - 0.00000 0.00000 0.00677 - 0.00000 0.00000 0.00659 - 0.00000 0.00000 0.00641 - 0.00000 0.00000 0.00623 - 0.00000 0.00000 0.00604 - 0.00000 0.00000 0.00586 - 0.00000 0.00000 0.00586 - 0.00000 0.00000 0.00584 - 0.00000 0.00000 0.00582 + 0.00000 0.00000 0.01142 + 0.00000 0.00000 0.01128 + 0.00000 0.00000 0.01114 + 0.00000 0.00000 0.01099 + 0.00000 0.00000 0.01085 + 0.00000 0.00000 0.01070 + 0.00000 0.00000 0.01070 + 0.00000 0.00000 0.01056 + 0.00000 0.00000 0.01041 + 0.00000 0.00000 0.01027 + 0.00000 0.00000 0.01012 + 0.00000 0.00000 0.00998 + 0.00000 0.00000 0.00998 + 0.00000 0.00000 0.00979 + 0.00000 0.00000 0.00959 + 0.00000 0.00000 0.00940 + 0.00000 0.00000 0.00921 + 0.00000 0.00000 0.00901 + 0.00000 0.00000 0.00901 + 0.00000 0.00000 0.00885 + 0.00000 0.00000 0.00869 + 0.00000 0.00000 0.00853 + 0.00000 0.00000 0.00837 + 0.00000 0.00000 0.00821 + 0.00000 0.00000 0.00821 + 0.00000 0.00000 0.00805 + 0.00000 0.00000 0.00789 + 0.00000 0.00000 0.00773 + 0.00000 0.00000 0.00757 + 0.00000 0.00000 0.00741 + 0.00000 0.00000 0.00741 + 0.00000 0.00000 0.00727 + 0.00000 0.00000 0.00713 + 0.00000 0.00000 0.00699 + 0.00000 0.00000 0.00685 + 0.00000 0.00000 0.00672 + 0.00000 0.00000 0.00672 + 0.00000 0.00000 0.00653 + 0.00000 0.00000 0.00635 + 0.00000 0.00000 0.00617 + 0.00000 0.00000 0.00598 0.00000 0.00000 0.00580 - 0.00000 0.00000 0.00579 - 0.00000 0.00000 0.00577 - 0.00000 0.00000 0.00577 - 0.00000 0.00000 0.00566 - 0.00000 0.00000 0.00555 - 0.00000 0.00000 0.00544 - 0.00000 0.00000 0.00533 - 0.00000 0.00000 0.00522 - 0.00000 0.00000 0.00522 - 0.00000 0.00000 0.00518 - 0.00000 0.00000 0.00515 + 0.00000 0.00000 0.00580 + 0.00000 0.00000 0.00578 + 0.00000 0.00000 0.00576 + 0.00000 0.00000 0.00574 + 0.00000 0.00000 0.00573 + 0.00000 0.00000 0.00571 + 0.00000 0.00000 0.00571 + 0.00000 0.00000 0.00560 + 0.00000 0.00000 0.00549 + 0.00000 0.00000 0.00538 + 0.00000 0.00000 0.00527 + 0.00000 0.00000 0.00516 + 0.00000 0.00000 0.00516 0.00000 0.00000 0.00512 0.00000 0.00000 0.00509 - 0.00000 0.00000 0.00505 - 0.00000 0.00000 0.00505 - -0.00003 -0.00098 0.00493 - -0.00022 -0.00420 0.00480 - -0.00077 -0.00993 0.00467 - -0.00187 -0.01818 0.00454 - -0.00373 -0.02862 0.00441 - -0.00373 -0.02862 0.00441 - -0.00432 -0.03002 0.00438 - -0.00492 -0.02979 0.00435 - -0.00552 -0.02955 0.00432 - -0.00610 -0.02932 0.00428 - -0.00669 -0.02917 0.00425 - -0.00669 -0.02917 0.00425 - -0.00942 -0.02609 0.00409 - -0.01197 -0.02501 0.00393 - -0.01442 -0.02397 0.00378 - -0.01677 -0.02297 0.00362 - -0.01903 -0.02234 0.00347 - -0.01903 -0.02234 0.00347 - -0.02119 -0.02110 0.00331 - -0.02326 -0.02022 0.00316 - -0.02524 -0.01939 0.00301 - -0.02714 -0.01860 0.00287 - -0.02897 -0.01802 0.00272 - -0.02897 -0.01802 0.00272 - -0.03139 -0.01668 0.00253 - -0.03366 -0.01576 0.00233 - -0.03580 -0.01492 0.00215 - -0.03784 -0.01414 0.00197 - -0.03978 -0.01364 0.00180 - -0.03978 -0.01364 0.00180 - -0.04097 -0.00641 0.00165 - -0.04166 -0.00420 0.00150 - -0.04207 -0.00219 0.00136 - -0.04224 -0.00038 0.00123 - -0.04220 0.00083 0.00110 - -0.04220 0.00082 0.00110 - -0.04196 0.00272 0.00098 - -0.04152 0.00401 0.00087 - -0.04092 0.00516 0.00076 - -0.04018 0.00616 0.00066 - -0.03933 0.00679 0.00057 - -0.03933 0.00679 0.00057 - -0.03820 0.00828 0.00047 - -0.03688 0.00930 0.00038 - -0.03543 0.01010 0.00029 - -0.03387 0.01071 0.00021 - -0.03224 0.01101 0.00014 - -0.03224 0.01100 0.00014 - -0.03056 0.01141 0.00008 - -0.02885 0.01153 0.00002 - -0.02712 0.01153 -0.00003 - -0.02540 0.01140 -0.00007 - -0.02372 0.01107 -0.00011 - -0.02372 0.01107 -0.00011 - -0.02208 0.01085 -0.00015 - -0.02049 0.01046 -0.00018 - -0.01896 0.00999 -0.00021 - -0.01750 0.00946 -0.00023 - -0.01613 0.00881 -0.00025 - -0.01613 0.00880 -0.00025 - -0.01485 0.00827 -0.00026 - -0.01367 0.00762 -0.00027 - -0.01258 0.00695 -0.00028 - -0.01159 0.00625 -0.00029 - -0.01071 0.00548 -0.00029 - -0.01071 0.00547 -0.00029 - -0.01070 0.00546 -0.00029 - -0.01069 0.00545 -0.00029 - -0.01068 0.00545 -0.00029 - -0.01067 0.00544 -0.00029 - -0.01066 0.00543 -0.00029 - -0.01066 0.00543 -0.00029 - -0.01065 0.00542 -0.00029 - -0.01063 0.00542 -0.00029 - -0.01062 0.00542 -0.00029 - -0.01061 0.00542 -0.00029 - -0.01060 0.00542 -0.00029 - -0.01060 0.00542 -0.00029 - -0.01041 0.00539 -0.00030 - -0.01021 0.00536 -0.00030 - -0.01002 0.00534 -0.00030 - -0.00983 0.00531 -0.00030 - -0.00964 0.00527 -0.00030 - -0.00964 0.00527 -0.00030 - -0.00901 0.00522 -0.00030 - -0.00839 0.00512 -0.00029 - -0.00778 0.00502 -0.00029 - -0.00718 0.00493 -0.00029 - -0.00660 0.00480 -0.00028 - -0.00660 0.00480 -0.00028 - -0.00631 0.00477 -0.00028 - -0.00603 0.00472 -0.00028 - -0.00574 0.00468 -0.00027 - -0.00546 0.00463 -0.00027 - -0.00519 0.00458 -0.00027 - -0.00519 0.00458 -0.00027 - -0.00473 0.00453 -0.00026 - -0.00428 0.00446 -0.00025 - -0.00384 0.00440 -0.00025 - -0.00340 0.00433 -0.00024 - -0.00297 0.00424 -0.00023 - -0.00297 0.00424 -0.00023 - -0.00263 0.00421 -0.00023 - -0.00228 0.00416 -0.00022 - -0.00195 0.00411 -0.00021 - -0.00161 0.00406 -0.00021 - -0.00128 0.00401 -0.00020 - -0.00128 0.00401 -0.00020 - -0.00088 0.00402 -0.00019 - -0.00048 0.00392 -0.00018 - -0.00009 0.00383 -0.00017 - 0.00029 0.00374 -0.00016 - 0.00065 0.00355 -0.00015 - 0.00065 0.00356 -0.00015 - 0.00111 0.00294 -0.00014 - 0.00148 0.00233 -0.00013 - 0.00176 0.00177 -0.00012 - 0.00198 0.00126 -0.00011 - 0.00212 0.00077 -0.00010 - 0.00212 0.00077 -0.00010 - 0.00220 0.00040 -0.00008 - 0.00223 0.00004 -0.00007 - 0.00221 -0.00028 -0.00006 - 0.00215 -0.00054 -0.00005 - 0.00206 -0.00080 -0.00005 - 0.00206 -0.00080 -0.00005 - 0.00194 -0.00096 -0.00004 - 0.00179 -0.00110 -0.00003 - 0.00163 -0.00121 -0.00002 - 0.00146 -0.00129 -0.00001 - 0.00127 -0.00135 0.00000 - 0.00127 -0.00135 0.00000 - 0.00108 -0.00133 0.00000 - 0.00090 -0.00130 0.00001 - 0.00072 -0.00124 0.00002 - 0.00055 -0.00115 0.00002 - 0.00040 -0.00106 0.00003 - 0.00040 -0.00106 0.00003 - 0.00026 -0.00088 0.00004 - 0.00015 -0.00070 0.00004 - 0.00007 -0.00049 0.00005 - 0.00002 -0.00025 0.00006 - 0.00000 0.00000 0.00006 + 0.00000 0.00000 0.00506 + 0.00000 0.00000 0.00503 + 0.00000 0.00000 0.00500 + 0.00000 0.00000 0.00500 + -0.00003 -0.00098 0.00487 + -0.00022 -0.00421 0.00474 + -0.00077 -0.00995 0.00461 + -0.00188 -0.01820 0.00448 + -0.00374 -0.02865 0.00435 + -0.00374 -0.02865 0.00435 + -0.00433 -0.03005 0.00432 + -0.00493 -0.02982 0.00429 + -0.00552 -0.02959 0.00426 + -0.00611 -0.02936 0.00423 + -0.00670 -0.02921 0.00419 + -0.00670 -0.02921 0.00419 + -0.00943 -0.02615 0.00403 + -0.01199 -0.02508 0.00388 + -0.01445 -0.02406 0.00372 + -0.01681 -0.02308 0.00356 + -0.01908 -0.02246 0.00341 + -0.01908 -0.02246 0.00341 + -0.02126 -0.02124 0.00325 + -0.02334 -0.02038 0.00310 + -0.02533 -0.01956 0.00295 + -0.02725 -0.01878 0.00281 + -0.02910 -0.01822 0.00266 + -0.02910 -0.01822 0.00266 + -0.03155 -0.01690 0.00247 + -0.03385 -0.01601 0.00228 + -0.03603 -0.01518 0.00209 + -0.03810 -0.01442 0.00191 + -0.04008 -0.01394 0.00174 + -0.04008 -0.01395 0.00174 + -0.04128 -0.00623 0.00159 + -0.04194 -0.00409 0.00144 + -0.04235 -0.00216 0.00131 + -0.04252 -0.00042 0.00117 + -0.04249 0.00070 0.00105 + -0.04249 0.00070 0.00105 + -0.04227 0.00252 0.00093 + -0.04186 0.00374 0.00082 + -0.04130 0.00481 0.00071 + -0.04061 0.00574 0.00061 + -0.03982 0.00630 0.00052 + -0.03982 0.00629 0.00052 + -0.03858 0.00958 0.00042 + -0.03708 0.01048 0.00033 + -0.03546 0.01117 0.00024 + -0.03375 0.01167 0.00017 + -0.03199 0.01185 0.00010 + -0.03199 0.01184 0.00010 + -0.03019 0.01214 0.00004 + -0.02837 0.01216 -0.00002 + -0.02656 0.01205 -0.00007 + -0.02477 0.01182 -0.00012 + -0.02303 0.01139 -0.00015 + -0.02303 0.01139 -0.00015 + -0.02135 0.01108 -0.00019 + -0.01973 0.01058 -0.00022 + -0.01819 0.01002 -0.00025 + -0.01674 0.00940 -0.00027 + -0.01539 0.00864 -0.00029 + -0.01539 0.00864 -0.00029 + -0.01414 0.00801 -0.00030 + -0.01300 0.00726 -0.00031 + -0.01197 0.00649 -0.00032 + -0.01106 0.00569 -0.00033 + -0.01027 0.00481 -0.00034 + -0.01027 0.00481 -0.00034 + -0.01026 0.00480 -0.00034 + -0.01025 0.00479 -0.00034 + -0.01024 0.00478 -0.00034 + -0.01023 0.00477 -0.00034 + -0.01022 0.00476 -0.00034 + -0.01022 0.00476 -0.00034 + -0.01021 0.00473 -0.00034 + -0.01020 0.00473 -0.00034 + -0.01019 0.00473 -0.00034 + -0.01018 0.00472 -0.00034 + -0.01018 0.00472 -0.00034 + -0.01018 0.00472 -0.00034 + -0.01001 0.00469 -0.00034 + -0.00984 0.00466 -0.00034 + -0.00967 0.00463 -0.00034 + -0.00950 0.00459 -0.00034 + -0.00934 0.00456 -0.00034 + -0.00934 0.00456 -0.00034 + -0.00880 0.00448 -0.00034 + -0.00827 0.00437 -0.00034 + -0.00775 0.00426 -0.00034 + -0.00724 0.00415 -0.00034 + -0.00675 0.00401 -0.00033 + -0.00675 0.00401 -0.00033 + -0.00651 0.00397 -0.00033 + -0.00628 0.00391 -0.00033 + -0.00604 0.00386 -0.00032 + -0.00581 0.00381 -0.00032 + -0.00559 0.00375 -0.00032 + -0.00559 0.00375 -0.00032 + -0.00521 0.00369 -0.00031 + -0.00485 0.00360 -0.00031 + -0.00449 0.00352 -0.00030 + -0.00414 0.00344 -0.00029 + -0.00381 0.00334 -0.00029 + -0.00381 0.00334 -0.00029 + -0.00353 0.00329 -0.00028 + -0.00327 0.00323 -0.00027 + -0.00300 0.00317 -0.00027 + -0.00274 0.00312 -0.00026 + -0.00249 0.00305 -0.00025 + -0.00249 0.00305 -0.00025 + -0.00222 0.00259 -0.00024 + -0.00196 0.00246 -0.00023 + -0.00172 0.00234 -0.00022 + -0.00149 0.00222 -0.00021 + -0.00128 0.00201 -0.00021 + -0.00128 0.00201 -0.00021 + -0.00069 0.00517 -0.00019 + -0.00002 0.00433 -0.00018 + 0.00053 0.00355 -0.00016 + 0.00098 0.00284 -0.00015 + 0.00133 0.00215 -0.00014 + 0.00133 0.00215 -0.00014 + 0.00159 0.00160 -0.00012 + 0.00177 0.00106 -0.00011 + 0.00189 0.00059 -0.00010 + 0.00194 0.00017 -0.00009 + 0.00194 -0.00023 -0.00007 + 0.00194 -0.00023 -0.00007 + 0.00189 -0.00051 -0.00006 + 0.00180 -0.00076 -0.00005 + 0.00168 -0.00097 -0.00004 + 0.00153 -0.00113 -0.00003 + 0.00136 -0.00128 -0.00002 + 0.00136 -0.00128 -0.00002 + 0.00118 -0.00132 -0.00001 + 0.00099 -0.00134 0.00000 + 0.00080 -0.00132 0.00001 + 0.00062 -0.00125 0.00002 + 0.00045 -0.00117 0.00003 + 0.00045 -0.00117 0.00003 + 0.00030 -0.00099 0.00004 + 0.00018 -0.00080 0.00005 + 0.00008 -0.00057 0.00006 + 0.00002 -0.00029 0.00007 + 0.00000 0.00000 0.00007 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -15123,7 +15259,7 @@ Lambda passive -5.42000 0.59280 3.61326 0.00000 0.93623 0.00000 6.09524 -5.56000 0.64740 3.70599 0.00000 0.91978 0.00000 5.72442 -5.70000 0.70200 3.77554 0.00000 0.90589 0.00000 5.48492 - -5.70000 0.70200 21.94644 0.00000 0.90589 0.00000 21.21095 + -5.70000 0.70200 21.94644 0.00000 0.86400 0.00000 21.21095 -5.83000 2.03270 23.92362 0.00000 0.75296 0.00000 11.76938 -5.96000 3.36340 26.96744 0.00000 0.73173 0.00000 8.01791 -6.09000 4.69410 30.13966 0.00000 0.72253 0.00000 6.42075 @@ -15135,7 +15271,7 @@ Lambda passive -6.74000 11.34760 46.30484 0.00000 0.70891 0.00000 4.08058 -6.87000 12.67830 49.54969 0.00000 0.70790 0.00000 3.90823 -7.00000 14.00900 51.98374 0.00000 0.70708 0.00000 3.80100 - -7.00000 14.00900 60.68399 0.00000 0.70708 0.00000 4.24137 + -7.00000 14.00900 60.68399 0.00000 0.58517 0.00000 4.24137 -7.14950 15.20350 63.07474 0.00000 0.58331 0.00000 4.14870 -7.29900 16.39801 66.82094 0.00000 0.58287 0.00000 4.07494 -7.44850 17.59251 70.90341 0.00000 0.58250 0.00000 4.03032 @@ -15165,7 +15301,7 @@ Lambda passive -9.99600 37.94704 148.64625 13.11034 0.57976 0.34549 3.91720 -9.99800 37.96302 148.70853 13.11586 0.57975 0.34549 3.91719 -10.00000 37.97900 148.75511 13.12001 0.57975 0.34549 3.91718 - -10.00000 37.97900 113.43916 11.33683 0.57975 0.29848 2.98668 + -10.00000 37.97900 113.43916 11.33683 0.70167 0.29848 2.98668 -10.00200 37.98978 113.45766 11.34067 0.70217 0.29852 2.98653 -10.00400 38.00056 113.48234 11.34579 0.70216 0.29857 2.98633 -10.00600 38.01134 113.50702 11.35091 0.70216 0.29862 2.98614 @@ -15201,13 +15337,13 @@ Lambda passive -11.83600 47.87504 136.56535 16.01150 0.70157 0.33444 2.85254 -11.91800 48.31702 137.61383 16.21985 0.70155 0.33570 2.84814 -12.00000 48.75900 138.40075 16.37610 0.70153 0.33662 2.84491 - -12.00000 48.75900 97.83324 25.34087 0.70153 0.51136 1.97419 + -12.00000 48.75900 97.83324 25.34087 0.74342 0.51136 1.97419 -12.10000 51.94800 102.10553 26.74910 0.74341 0.51492 1.96553 -12.20000 55.13700 107.79056 28.62675 0.74328 0.51919 1.95496 -12.30000 58.32600 113.46194 30.50441 0.74316 0.52300 1.94531 -12.40000 61.51500 119.11973 32.38206 0.74306 0.52641 1.93643 -12.50000 64.70400 123.35463 33.79031 0.74297 0.52874 1.93023 - -12.50000 64.70400 389.77315 16.29285 0.74297 0.25043 5.99092 + -12.50000 64.70400 389.77315 16.29285 0.47187 0.25043 5.99092 -12.64000 66.13060 392.32319 16.58824 0.47119 0.25084 5.93255 -12.78000 67.55720 397.04633 16.98002 0.47117 0.25134 5.87719 -12.92000 68.98380 402.75372 17.36957 0.47114 0.25179 5.83838 @@ -15320,143 +15456,143 @@ Status character 0.00000 33.55020 0.00000 0.00000 -1 0 - 0.00000 34.33500 0.00000 0.00000 -1 0 - 0.00002 34.33500 0.00002 0.00002 302 100 P - 0.12579 34.53120 2.61970 0.12141 110 5 1 - 0.13153 34.72740 2.63295 0.12719 110 5 1 - 0.13728 34.92360 2.64619 0.13297 110 5 1 - 0.14303 35.11980 2.65944 0.13875 110 5 1 - 0.14156 35.31600 2.66938 0.13730 110 5 1 - 0.18491 35.31600 2.68925 0.18066 110 7 1 - 0.17753 36.29700 2.73893 0.17344 110 6 1 - 0.20628 37.27800 2.80516 0.20234 110 7 1 - 0.23502 38.25900 2.87140 0.23125 110 8 1 - 0.26377 39.24000 2.93764 0.26015 110 9 1 - 0.28048 40.22100 2.98732 0.27702 110 9 1 - 0.30457 40.22100 3.02043 0.30110 110 10 1 - 0.32128 41.20200 3.07011 0.31797 110 10 1 - 0.35003 42.18300 3.13635 0.34687 110 11 1 - 0.37879 43.16400 3.20259 0.37578 110 12 1 - 0.40755 44.14500 3.26883 0.40468 110 12 1 - 0.42646 45.12600 3.31850 0.42374 110 13 1 - 0.45011 45.12600 3.35825 0.44739 110 13 1 - 0.47658 46.49940 3.42780 0.47406 110 14 1 - 0.51686 47.87280 3.52053 0.51453 110 15 1 - 0.55715 49.24620 3.61326 0.55500 110 15 1 - 0.59744 50.61960 3.70599 0.59546 110 16 1 - 0.62537 51.99300 3.77554 0.62357 110 17 1 - 0.94450 51.99300 21.94644 0.93730 110 4 1 - 1.53713 52.76830 23.92362 1.53055 110 6 1 - 2.46710 53.54360 26.96744 2.46110 110 9 1 - 3.39709 54.31890 30.13966 3.39165 110 11 1 - 4.32711 55.09420 33.35251 4.32220 110 13 1 - 5.01958 55.86950 35.77346 5.01518 110 14 1 - 5.49472 55.86950 37.39074 5.49032 110 15 1 - 6.18722 56.64480 39.81961 6.18330 110 16 1 - 7.11732 57.42010 43.06115 7.11385 110 17 1 - 8.04745 58.19540 46.30484 8.04440 110 17 1 - 8.97760 58.97070 49.54969 8.97495 110 18 1 - 9.67254 59.74600 51.98374 9.67027 110 19 1 - 10.12006 59.74600 60.68399 10.11666 110 17 1 - 8.87110 61.21260 63.07474 8.86830 110 14 1 - 9.56023 62.67919 66.82094 9.55798 110 14 1 - 10.24941 64.14579 70.90341 10.24767 110 14 1 - 10.93863 65.61238 75.16611 10.93735 110 15 1 - 11.45413 67.07898 78.43513 11.45327 110 15 1 - 11.80167 67.07898 80.64205 11.80081 110 15 1 - 12.31720 68.54557 83.98342 12.31672 110 15 1 - 13.00655 70.01217 88.47856 13.00641 110 15 1 - 13.69593 71.47876 93.01007 13.69610 110 0 1 - 14.38534 72.94536 97.56866 14.38578 110 0 1 - 14.90133 74.41195 101.00090 14.90201 110 0 1 - 15.24824 74.41195 103.29490 15.24892 110 0 1 - 15.76426 75.87855 106.74317 15.76515 110 0 1 - 16.45376 77.34514 111.35110 16.45484 110 0 1 - 17.14329 78.81174 115.96914 17.14452 110 0 1 - 17.83284 80.27833 120.59537 17.83421 110 0 1 - 18.34915 81.74492 124.06932 18.35063 110 0 1 - 18.69568 81.74492 126.38726 18.69716 110 0 1 - 19.21201 83.21152 129.86673 19.21358 110 0 1 - 19.90162 84.67811 134.50975 19.90326 110 0 1 - 20.59125 86.14471 139.15661 20.59295 110 0 1 - 21.28089 87.61131 143.80670 21.28263 110 0 1 - 21.79742 89.07790 147.29602 21.79919 110 0 1 - 21.97287 89.07790 148.47506 21.97464 110 0 1 - 21.97978 89.09752 148.52169 21.98155 110 0 1 - 21.98901 89.11714 148.58397 21.99077 110 0 1 - 21.99823 89.13676 148.64625 22.00000 110 0 1 - 22.00746 89.15638 148.70853 22.00923 110 0 1 - 22.01437 89.17600 148.75511 22.01614 110 0 1 - 22.01972 89.17600 113.43916 22.02002 110 0 1 - 26.67483 89.19562 113.45766 26.67512 110 0 1 - 26.68237 89.21524 113.48234 26.68266 110 0 1 - 26.68991 89.23486 113.50702 26.69020 110 0 1 - 26.69744 89.25448 113.53170 26.69774 110 0 1 - 26.70309 89.27410 113.55021 26.70338 110 0 1 - 26.73904 89.27410 113.66747 26.73934 110 0 1 - 26.84067 89.62726 114.00093 26.84097 110 0 1 - 26.97636 89.98042 114.44599 26.97666 110 0 1 - 27.11205 90.33358 114.89155 27.11235 110 0 1 - 27.24774 90.68674 115.33760 27.24804 110 0 1 - 27.34938 91.03990 115.67244 27.34967 110 0 1 - 27.49696 91.03990 116.15663 27.49726 110 0 1 - 27.83574 92.21710 117.27606 27.83604 110 0 1 - 28.28804 93.39430 118.77259 28.28834 110 0 1 - 28.74035 94.57150 120.27355 28.74064 110 0 1 - 29.19266 95.74870 121.77860 29.19295 110 0 1 - 29.53147 96.92590 122.90977 29.53176 110 0 1 - 29.70171 96.92590 123.47616 29.70200 110 0 1 - 29.87112 97.51450 124.04308 29.87140 110 0 1 - 30.09727 98.10310 124.79969 30.09755 110 0 1 - 30.32343 98.69170 125.55712 30.32370 110 0 1 - 30.54958 99.28030 126.31533 30.54986 110 0 1 - 30.71900 99.86890 126.88447 30.71927 110 0 1 - 30.87031 99.86890 127.39076 30.87057 110 0 1 - 31.15267 100.84990 128.34095 31.15293 110 0 1 - 31.52959 101.83090 129.60946 31.52985 110 0 1 - 31.90652 102.81190 130.87980 31.90677 110 0 1 - 32.28345 103.79290 132.15188 32.28369 110 0 1 - 32.56583 104.77390 133.10696 32.56606 110 0 1 - 32.73790 104.77390 133.68684 32.73813 110 0 1 - 32.96945 105.57832 134.47117 32.96968 110 0 1 - 33.27853 106.38274 135.51778 33.27875 110 0 1 - 33.58762 107.18716 136.56535 33.58783 110 0 1 - 33.89670 107.99158 137.61383 33.89690 110 0 1 - 34.12826 108.79600 138.40075 34.12846 110 0 1 - 34.76488 108.79600 97.83324 34.76527 110 0 1 - 38.61811 106.77700 102.10553 38.61849 110 0 1 - 40.98176 104.75800 107.79056 40.98212 110 0 1 - 43.34540 102.73900 113.46194 43.34574 110 0 1 - 45.70905 100.72000 119.11973 45.70937 110 0 1 - 47.48036 98.70100 123.35463 47.48067 110 0 1 - 48.33613 98.70100 389.77315 48.33798 110 0 1 - 31.15835 100.07440 392.32319 31.16005 110 0 1 - 31.82912 101.44780 397.04633 31.83067 110 0 1 - 32.49987 102.82120 402.75372 32.50129 110 0 1 - 33.17063 104.19460 409.07453 33.17191 110 0 1 - 33.67336 105.56800 414.08187 33.67450 110 0 1 - 34.00940 105.56800 417.52767 34.01054 110 0 1 - 34.51213 106.94140 422.82201 34.51314 110 0 1 - 35.18287 108.31480 430.04802 35.18376 110 0 1 - 35.85361 109.68820 437.43040 35.85437 110 0 1 - 36.52434 111.06160 444.93273 36.52499 110 0 1 - 37.02708 112.43500 450.61974 37.02762 110 0 1 - 37.36305 112.43500 454.43802 37.36359 110 0 1 - 37.86579 113.80840 460.19966 37.86623 110 0 1 - 38.53650 115.18180 467.93066 38.53684 110 0 1 - 39.20722 116.55520 475.71086 39.20746 110 0 1 - 39.87793 117.92860 483.53168 39.87808 110 0 1 - 40.38068 119.30200 489.41893 40.38074 110 0 1 - 40.71660 119.30200 493.35388 40.71665 110 0 1 - 41.21934 120.67540 499.26963 41.21931 110 8 1 - 41.89004 122.04880 507.17704 41.88993 110 8 1 - 42.56074 123.42220 515.10509 42.56055 110 8 1 - 43.23144 124.79560 523.05089 43.23116 110 8 1 - 43.73421 126.16900 529.01998 43.73385 110 8 1 - 44.07008 126.16900 533.00407 44.06971 110 8 1 - 44.57284 127.54240 538.98649 44.57240 110 8 1 - 45.24353 128.91580 546.97261 45.24301 110 8 1 - 45.91423 130.28920 554.96893 45.91363 110 8 1 - 46.58493 131.66260 562.97429 46.58425 110 8 1 - 47.08771 133.03600 568.98335 47.08695 110 8 1 + 0.12573 34.53120 2.61970 0.12141 110 5 1 + 0.13148 34.72740 2.63295 0.12719 110 5 1 + 0.13723 34.92360 2.64619 0.13297 110 5 1 + 0.14297 35.11980 2.65944 0.13875 110 5 1 + 0.14150 35.31600 2.66938 0.13730 110 5 1 + 0.18486 35.31600 2.68925 0.18066 110 7 1 + 0.17747 36.29700 2.73893 0.17344 110 6 1 + 0.20622 37.27800 2.80516 0.20234 110 7 1 + 0.23497 38.25900 2.87140 0.23125 110 8 1 + 0.26372 39.24000 2.93764 0.26015 110 9 1 + 0.28042 40.22100 2.98732 0.27702 110 9 1 + 0.30451 40.22100 3.02043 0.30110 110 10 1 + 0.32122 41.20200 3.07011 0.31797 110 10 1 + 0.34998 42.18300 3.13635 0.34687 110 11 1 + 0.37873 43.16400 3.20259 0.37578 110 12 1 + 0.40749 44.14500 3.26883 0.40468 110 12 1 + 0.42640 45.12600 3.31850 0.42374 110 13 1 + 0.45005 45.12600 3.35825 0.44739 110 13 1 + 0.47653 46.49940 3.42780 0.47406 110 14 1 + 0.51680 47.87280 3.52053 0.51453 110 15 1 + 0.55709 49.24620 3.61326 0.55500 110 15 1 + 0.59738 50.61960 3.70599 0.59546 110 16 1 + 0.62531 51.99300 3.77554 0.62357 110 17 1 + 0.90093 51.99300 21.94644 0.89396 110 4 1 + 1.53691 52.76830 23.92362 1.53055 110 6 1 + 2.46687 53.54360 26.96744 2.46110 110 9 1 + 3.39687 54.31890 30.13966 3.39165 110 11 1 + 4.32689 55.09420 33.35251 4.32220 110 13 1 + 5.01936 55.86950 35.77346 5.01518 110 14 1 + 5.49451 55.86950 37.39074 5.49032 110 15 1 + 6.18701 56.64480 39.81961 6.18330 110 16 1 + 7.11711 57.42010 43.06115 7.11385 110 17 1 + 8.04724 58.19540 46.30484 8.04440 110 17 1 + 8.97739 58.97070 49.54969 8.97495 110 18 1 + 9.67234 59.74600 51.98374 9.67027 110 19 1 + 8.37548 59.74600 60.68399 8.37238 110 14 1 + 8.87080 61.21260 63.07474 8.86830 110 14 1 + 9.55994 62.67919 66.82094 9.55798 110 14 1 + 10.24913 64.14579 70.90341 10.24767 110 14 1 + 10.93836 65.61238 75.16611 10.93735 110 15 1 + 11.45386 67.07898 78.43513 11.45327 110 15 1 + 11.80139 67.07898 80.64205 11.80081 110 15 1 + 12.31694 68.54557 83.98342 12.31672 110 15 1 + 13.00629 70.01217 88.47856 13.00641 110 0 1 + 13.69567 71.47876 93.01007 13.69610 110 0 1 + 14.38509 72.94536 97.56866 14.38578 110 0 1 + 14.90108 74.41195 101.00090 14.90201 110 0 1 + 15.24800 74.41195 103.29490 15.24892 110 0 1 + 15.76402 75.87855 106.74317 15.76515 110 0 1 + 16.45352 77.34514 111.35110 16.45484 110 0 1 + 17.14305 78.81174 115.96914 17.14452 110 0 1 + 17.83260 80.27833 120.59537 17.83421 110 0 1 + 18.34891 81.74492 124.06932 18.35063 110 0 1 + 18.69544 81.74492 126.38726 18.69716 110 0 1 + 19.21177 83.21152 129.86673 19.21358 110 0 1 + 19.90138 84.67811 134.50975 19.90326 110 0 1 + 20.59100 86.14471 139.15661 20.59295 110 0 1 + 21.28064 87.61131 143.80670 21.28263 110 0 1 + 21.79717 89.07790 147.29602 21.79919 110 0 1 + 21.97261 89.07790 148.47506 21.97464 110 0 1 + 21.97952 89.09752 148.52169 21.98155 110 0 1 + 21.98875 89.11714 148.58397 21.99077 110 0 1 + 21.99798 89.13676 148.64625 22.00000 110 0 1 + 22.00720 89.15638 148.70853 22.00923 110 0 1 + 22.01411 89.17600 148.75511 22.01614 110 0 1 + 26.65012 89.17600 113.43916 26.65046 110 0 1 + 26.67479 89.19562 113.45766 26.67512 110 0 1 + 26.68232 89.21524 113.48234 26.68266 110 0 1 + 26.68986 89.23486 113.50702 26.69020 110 0 1 + 26.69740 89.25448 113.53170 26.69774 110 0 1 + 26.70305 89.27410 113.55021 26.70338 110 0 1 + 26.73900 89.27410 113.66747 26.73934 110 0 1 + 26.84063 89.62726 114.00093 26.84097 110 0 1 + 26.97632 89.98042 114.44599 26.97666 110 0 1 + 27.11201 90.33358 114.89155 27.11235 110 0 1 + 27.24770 90.68674 115.33760 27.24804 110 0 1 + 27.34933 91.03990 115.67244 27.34967 110 0 1 + 27.49692 91.03990 116.15663 27.49726 110 0 1 + 27.83569 92.21710 117.27606 27.83604 110 0 1 + 28.28800 93.39430 118.77259 28.28834 110 0 1 + 28.74030 94.57150 120.27355 28.74064 110 0 1 + 29.19261 95.74870 121.77860 29.19295 110 0 1 + 29.53142 96.92590 122.90977 29.53176 110 0 1 + 29.70166 96.92590 123.47616 29.70200 110 0 1 + 29.87107 97.51450 124.04308 29.87140 110 0 1 + 30.09723 98.10310 124.79969 30.09755 110 0 1 + 30.32338 98.69170 125.55712 30.32370 110 0 1 + 30.54954 99.28030 126.31533 30.54986 110 0 1 + 30.71895 99.86890 126.88447 30.71927 110 0 1 + 30.87026 99.86890 127.39076 30.87057 110 0 1 + 31.15262 100.84990 128.34095 31.15293 110 0 1 + 31.52954 101.83090 129.60946 31.52985 110 0 1 + 31.90647 102.81190 130.87980 31.90677 110 0 1 + 32.28339 103.79290 132.15188 32.28369 110 0 1 + 32.56577 104.77390 133.10696 32.56606 110 0 1 + 32.73785 104.77390 133.68684 32.73813 110 0 1 + 32.96940 105.57832 134.47117 32.96968 110 0 1 + 33.27848 106.38274 135.51778 33.27875 110 0 1 + 33.58756 107.18716 136.56535 33.58783 110 0 1 + 33.89664 107.99158 137.61383 33.89690 110 0 1 + 34.12821 108.79600 138.40075 34.12846 110 0 1 + 36.84052 108.79600 97.83324 36.84102 110 0 1 + 38.61801 106.77700 102.10553 38.61849 110 0 1 + 40.98165 104.75800 107.79056 40.98212 110 0 1 + 43.34530 102.73900 113.46194 43.34574 110 0 1 + 45.70894 100.72000 119.11973 45.70937 110 0 1 + 47.48026 98.70100 123.35463 47.48067 110 0 1 + 30.69756 98.70100 389.77315 30.70002 110 0 1 + 31.15775 100.07440 392.32319 31.16005 110 0 1 + 31.82854 101.44780 397.04633 31.83067 110 0 1 + 32.49932 102.82120 402.75372 32.50129 110 0 1 + 33.17010 104.19460 409.07453 33.17191 110 0 1 + 33.67286 105.56800 414.08187 33.67450 110 0 1 + 34.00890 105.56800 417.52767 34.01054 110 0 1 + 34.51165 106.94140 422.82201 34.51314 110 0 1 + 35.18242 108.31480 430.04802 35.18376 110 0 1 + 35.85319 109.68820 437.43040 35.85437 110 0 1 + 36.52396 111.06160 444.93273 36.52499 110 0 1 + 37.02673 112.43500 450.61974 37.02762 110 0 1 + 37.36270 112.43500 454.43802 37.36359 110 0 1 + 37.86547 113.80840 460.19966 37.86623 110 0 1 + 38.53622 115.18180 467.93066 38.53684 110 0 1 + 39.20697 116.55520 475.71086 39.20746 110 0 1 + 39.87771 117.92860 483.53168 39.87808 110 0 1 + 40.38050 119.30200 489.41893 40.38074 110 0 1 + 40.71641 119.30200 493.35388 40.71665 110 0 1 + 41.21919 120.67540 499.26963 41.21931 110 0 1 + 41.88993 122.04880 507.17704 41.88993 110 0 1 + 42.56066 123.42220 515.10509 42.56055 110 8 1 + 43.23139 124.79560 523.05089 43.23116 110 8 1 + 43.73419 126.16900 529.01998 43.73385 110 8 1 + 44.07006 126.16900 533.00407 44.06971 110 8 1 + 44.57285 127.54240 538.98649 44.57240 110 8 1 + 45.24358 128.91580 546.97261 45.24301 110 8 1 + 45.91431 130.28920 554.96893 45.91363 110 8 1 + 46.58503 131.66260 562.97429 46.58425 110 8 1 + 47.08784 133.03600 568.98335 47.08695 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -15472,11 +15608,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.682 'Hollandveen' - -5.70 6.841 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.868 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.289 'Eerste zandlaag' + -5.70 6.838 'Oude Zeeklei' + -7.00 45.296 'Wadzand' + -10.00 60.873 'Hydrobiaklei' + -12.00 21.081 'Basisveen' + -12.50 136.053 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -15495,10 +15631,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 1.45 'Oude Zeeklei' - -7.00 13.63 'Wadzand' + -7.00 13.59 'Wadzand' -10.00 12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 52.70 'Eerste zandlaag' + -12.50 52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -15809,7 +15945,7 @@ Lambda passive -5.42000 0.74880 3.87821 0.00000 0.74118 0.00000 5.17923 -5.56000 0.80340 3.97094 0.00000 0.74118 0.00000 4.94267 -5.70000 0.85800 4.04049 0.00000 0.74118 0.00000 4.78533 - -5.70000 0.85800 22.41287 0.00000 0.74118 0.00000 18.82366 + -5.70000 0.85800 22.41287 0.00000 0.69929 0.00000 18.82366 -5.83000 2.18870 24.40890 0.00000 0.69929 0.00000 11.15224 -5.96000 3.51940 27.43263 0.00000 0.69929 0.00000 7.79469 -6.09000 4.85010 30.58716 0.00000 0.69929 0.00000 6.30650 @@ -15821,7 +15957,7 @@ Lambda passive -6.74000 11.50360 46.71492 0.00000 0.69929 0.00000 4.06090 -6.87000 12.83430 49.95650 0.00000 0.69929 0.00000 3.89242 -7.00000 14.16500 52.38847 0.00000 0.69929 0.00000 3.78739 - -7.00000 14.16500 61.54218 0.00000 0.69929 0.00000 4.25496 + -7.00000 14.16500 61.54218 0.00000 0.57738 0.00000 4.25496 -7.14950 15.35950 63.88663 0.00000 0.57738 0.00000 4.15942 -7.29900 16.55401 67.59209 0.00000 0.57738 0.00000 4.08313 -7.44850 17.74851 71.64663 0.00000 0.57738 0.00000 4.03677 @@ -15851,7 +15987,7 @@ Lambda passive -9.99600 38.10304 149.27489 13.16445 0.57738 0.34550 3.91766 -9.99800 38.11902 149.33715 13.16997 0.57738 0.34550 3.91765 -10.00000 38.13500 149.38373 13.17412 0.57738 0.34550 3.91764 - -10.00000 38.13500 113.78299 11.41069 0.57738 0.29920 2.98348 + -10.00000 38.13500 113.78299 11.41069 0.69929 0.29920 2.98348 -10.00200 38.14578 113.80153 11.41453 0.69929 0.29923 2.98333 -10.00400 38.15656 113.82626 11.41965 0.69929 0.29928 2.98314 -10.00600 38.16734 113.85098 11.42476 0.69929 0.29933 2.98294 @@ -15887,13 +16023,13 @@ Lambda passive -11.83600 48.03104 136.93089 16.08474 0.69929 0.33488 2.85088 -11.91800 48.47302 137.97989 16.29308 0.69929 0.33613 2.84653 -12.00000 48.91500 138.76718 16.44933 0.69929 0.33705 2.84333 - -12.00000 48.91500 98.09256 25.43269 0.69929 0.51160 1.97321 + -12.00000 48.91500 98.09256 25.43269 0.74118 0.51160 1.97321 -12.10000 52.10400 102.36444 26.84092 0.74118 0.51514 1.96462 -12.20000 55.29300 108.04901 28.71857 0.74118 0.51939 1.95412 -12.30000 58.48200 113.72005 30.59623 0.74118 0.52317 1.94453 -12.40000 61.67100 119.37761 32.47388 0.74118 0.52657 1.93572 -12.50000 64.86000 123.61241 33.88213 0.74118 0.52889 1.92955 - -12.50000 64.86000 390.85160 16.33104 0.74118 0.25041 5.99313 + -12.50000 64.86000 390.85160 16.33104 0.47008 0.25041 5.99313 -12.64000 66.28660 393.38074 16.62633 0.47008 0.25082 5.93454 -12.78000 67.71320 398.08066 17.01801 0.47008 0.25132 5.87892 -12.92000 69.13980 403.76930 17.40749 0.47008 0.25177 5.83990 @@ -16000,149 +16136,149 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00008 0.00008 1 0 A - 0.01820 31.19580 2.65944 0.02312 110 0 1 - 0.04145 31.98060 2.71243 0.04625 110 0 1 - 0.06471 32.76540 2.76542 0.06937 110 0 1 - 0.08796 33.55020 2.81841 0.09250 110 0 1 - 0.10543 34.33500 2.85815 0.10984 110 0 1 - 0.11266 34.33500 2.87471 0.11707 110 0 1 - 0.11703 34.53120 2.88465 0.12141 110 0 1 - 0.12284 34.72740 2.89790 0.12719 110 0 1 - 0.12865 34.92360 2.91114 0.13297 110 0 1 - 0.13447 35.11980 2.92439 0.13875 110 0 1 - 0.13883 35.31600 2.93433 0.14308 110 0 1 - 0.14751 35.31600 2.95420 0.15176 110 0 1 - 0.16934 36.29700 3.00388 0.17344 110 0 1 - 0.19841 37.27800 3.07011 0.20234 110 0 1 - 0.22747 38.25900 3.13635 0.23125 110 0 1 - 0.25653 39.24000 3.20259 0.26015 110 0 1 - 0.27837 40.22100 3.25227 0.28183 110 0 1 - 0.29282 40.22100 3.28538 0.29629 110 0 1 - 0.31465 41.20200 3.33506 0.31797 110 0 1 - 0.34371 42.18300 3.40130 0.34687 110 0 1 - 0.37277 43.16400 3.46754 0.37578 110 0 1 - 0.40182 44.14500 3.53378 0.40468 110 0 1 - 0.42364 45.12600 3.58345 0.42636 110 0 1 - 0.44099 45.12600 3.62320 0.44371 110 0 1 - 0.47153 46.49940 3.69275 0.47406 110 0 1 - 0.51219 47.87280 3.78548 0.51453 110 0 1 - 0.55285 49.24620 3.87821 0.55500 110 0 1 - 0.59349 50.61960 3.97094 0.59546 110 0 1 - 0.62402 51.99300 4.04049 0.62582 110 0 1 - 0.87531 51.99300 22.41287 0.88251 110 0 1 - 1.52396 52.76830 24.40890 1.53055 110 0 1 - 2.45509 53.54360 27.43263 2.46110 110 0 1 - 3.38620 54.31890 30.58716 3.39165 110 0 1 - 4.31729 55.09420 33.78746 4.32220 110 0 1 - 5.01571 55.86950 36.20132 5.02011 110 0 1 - 5.48098 55.86950 37.81477 5.48539 110 0 1 - 6.17937 56.64480 40.23886 6.18330 110 0 1 - 7.11038 57.42010 43.47527 7.11385 110 0 1 - 8.04135 58.19540 46.71492 8.04440 110 0 1 - 8.97231 58.97070 49.95650 8.97495 110 0 1 - 9.67059 59.74600 52.38847 9.67286 110 0 1 - 10.11092 59.74600 61.54218 10.11433 110 0 1 - 8.86549 61.21260 63.88663 8.86830 110 0 1 - 9.55573 62.67919 67.59209 9.55798 110 0 1 - 10.24592 64.14579 71.64663 10.24767 110 0 1 - 10.93607 65.61238 75.88855 10.93735 110 0 1 - 11.45376 67.07898 79.14497 11.45462 110 0 1 - 11.79860 67.07898 81.34468 11.79946 110 0 1 - 12.31625 68.54557 84.67666 12.31672 110 0 1 - 13.00627 70.01217 89.16116 13.00641 110 0 1 - 13.69626 71.47876 93.68382 13.69610 110 15 1 - 14.38622 72.94536 98.23499 14.38578 110 15 1 - 14.90373 74.41195 101.66238 14.90304 110 15 1 - 15.24857 74.41195 103.95346 15.24789 110 15 1 - 15.76604 75.87855 107.39780 15.76515 110 15 1 - 16.45591 77.34514 112.00108 16.45484 110 15 1 - 17.14576 78.81174 116.61510 17.14452 110 15 1 - 17.83557 80.27833 121.23784 17.83421 110 15 1 - 18.35295 81.74492 124.70944 18.35147 110 15 1 - 18.69779 81.74492 127.02595 18.69631 110 15 1 - 19.21515 83.21152 130.50344 19.21358 110 15 1 - 19.90491 84.67811 135.14409 19.90326 110 15 1 - 20.59465 86.14471 139.78885 20.59295 110 15 1 - 21.28437 87.61131 144.43708 21.28263 110 15 1 - 21.80166 89.07790 147.92513 21.79990 110 15 1 - 21.97639 89.07790 149.10372 21.97463 110 15 1 - 21.98331 89.09752 149.15039 21.98155 110 15 1 - 21.99254 89.11714 149.21264 21.99077 110 15 1 - 22.00177 89.13676 149.27489 22.00000 110 15 1 - 22.01099 89.15638 149.33715 22.00923 110 15 1 - 22.01791 89.17600 149.38373 22.01615 110 15 1 - 22.02030 89.17600 113.78299 22.02001 110 19 1 - 26.67542 89.19562 113.80153 26.67512 110 23 1 - 26.68296 89.21524 113.82626 26.68266 110 23 1 - 26.69049 89.23486 113.85098 26.69020 110 23 1 - 26.69803 89.25448 113.87570 26.69774 110 23 1 - 26.70369 89.27410 113.89425 26.70339 110 23 1 - 26.73949 89.27410 114.01168 26.73920 110 23 1 - 26.84126 89.62726 114.34570 26.84097 110 23 1 - 26.97695 89.98042 114.79146 26.97666 110 24 1 - 27.11265 90.33358 115.23772 27.11235 110 24 1 - 27.24834 90.68674 115.68444 27.24804 110 24 1 - 27.35011 91.03990 116.01978 27.34981 110 24 1 - 27.49710 91.03990 116.50467 27.49681 110 24 1 - 27.83633 92.21710 117.62563 27.83604 110 24 1 - 28.28863 93.39430 119.12407 28.28834 110 24 1 - 28.74093 94.57150 120.62677 28.74064 110 24 1 - 29.19323 95.74870 122.13344 29.19295 110 24 1 - 29.53246 96.92590 123.26574 29.53217 110 24 1 - 29.70207 96.92590 123.83267 29.70179 110 24 1 - 29.87168 97.51450 124.40012 29.87140 110 24 1 - 30.09783 98.10310 125.15740 30.09755 110 24 1 - 30.32398 98.69170 125.91548 30.32370 110 24 1 - 30.55013 99.28030 126.67432 30.54986 110 24 1 - 30.71974 99.86890 127.24391 30.71947 110 24 1 - 30.87051 99.86890 127.75059 30.87024 110 24 1 - 31.15319 100.84990 128.70149 31.15293 110 24 1 - 31.53010 101.83090 129.97091 31.52985 110 24 1 - 31.90701 102.81190 131.24210 31.90677 110 24 1 - 32.28393 103.79290 132.51497 32.28369 110 24 1 - 32.56661 104.77390 133.47063 32.56638 110 24 1 - 32.73811 104.77390 134.05085 32.73787 110 24 1 - 32.96991 105.57832 134.83562 32.96968 110 24 1 - 33.27897 106.38274 135.88279 33.27875 110 24 1 - 33.58804 107.18716 136.93089 33.58783 110 25 1 - 33.89711 107.99158 137.97989 33.89690 110 25 1 - 34.12891 108.79600 138.76718 34.12871 110 25 1 - 34.76388 108.79600 98.09256 34.76349 110 35 1 - 38.61887 106.77700 102.36444 38.61849 110 38 1 - 40.98248 104.75800 108.04901 40.98212 110 38 1 - 43.34609 102.73900 113.72005 43.34574 110 38 1 - 45.70970 100.72000 119.37761 45.70937 110 38 1 - 47.48240 98.70100 123.61241 47.48209 110 38 1 - 48.33919 98.70100 390.85160 48.33734 110 12 1 - 31.16175 100.07440 393.38074 31.16005 110 8 1 - 31.83223 101.44780 398.08066 31.83067 110 8 1 - 32.50270 102.82120 403.76930 32.50129 110 8 1 - 33.17318 104.19460 410.07478 33.17191 110 8 1 - 33.67601 105.56800 415.07230 33.67487 110 8 1 - 34.01132 105.56800 418.51230 34.01018 110 8 1 - 34.51415 106.94140 423.79885 34.51314 110 8 1 - 35.18465 108.31480 431.01578 35.18376 110 8 1 - 35.85514 109.68820 438.39038 35.85437 110 8 1 - 36.52565 111.06160 445.88598 36.52499 110 8 1 - 37.02850 112.43500 451.56851 37.02795 110 8 1 - 37.36381 112.43500 455.38404 37.36326 110 8 1 - 37.86666 113.80840 461.14192 37.86623 110 8 1 - 38.53718 115.18180 468.86838 38.53684 110 8 1 - 39.20770 116.55520 476.64455 39.20746 110 8 1 - 39.87822 117.92860 484.46180 39.87808 110 8 1 - 40.38110 119.30200 490.34660 40.38104 110 8 1 - 40.71641 119.30200 494.28002 40.71635 110 8 1 - 41.21928 120.67540 500.19366 41.21931 110 0 1 - 41.88981 122.04880 508.09847 41.88993 110 0 1 - 42.56035 123.42220 516.02417 42.56055 110 0 1 - 43.23088 124.79560 523.96782 43.23116 110 0 1 - 43.73377 126.16900 529.93544 43.73413 110 0 1 - 44.06907 126.16900 533.91858 44.06943 110 0 1 - 44.57196 127.54240 539.89970 44.57240 110 0 1 - 45.24250 128.91580 547.88418 45.24301 110 0 1 - 45.91303 130.28920 555.87903 45.91363 110 0 1 - 46.58357 131.66260 563.88300 46.58425 110 0 1 - 47.08646 133.03600 569.89109 47.08721 110 0 1 + 0.01826 31.19580 2.65944 0.02312 110 0 1 + 0.04151 31.98060 2.71243 0.04625 110 0 1 + 0.06476 32.76540 2.76542 0.06937 110 0 1 + 0.08802 33.55020 2.81841 0.09250 110 0 1 + 0.10549 34.33500 2.85815 0.10984 110 0 1 + 0.11272 34.33500 2.87471 0.11707 110 0 1 + 0.11708 34.53120 2.88465 0.12141 110 0 1 + 0.12290 34.72740 2.89790 0.12719 110 0 1 + 0.12871 34.92360 2.91114 0.13297 110 0 1 + 0.13452 35.11980 2.92439 0.13875 110 0 1 + 0.13889 35.31600 2.93433 0.14308 110 0 1 + 0.14756 35.31600 2.95420 0.15176 110 0 1 + 0.16940 36.29700 3.00388 0.17344 110 0 1 + 0.19847 37.27800 3.07011 0.20234 110 0 1 + 0.22753 38.25900 3.13635 0.23125 110 0 1 + 0.25659 39.24000 3.20259 0.26015 110 0 1 + 0.27843 40.22100 3.25227 0.28183 110 0 1 + 0.29288 40.22100 3.28538 0.29629 110 0 1 + 0.31471 41.20200 3.33506 0.31797 110 0 1 + 0.34377 42.18300 3.40130 0.34687 110 0 1 + 0.37282 43.16400 3.46754 0.37578 110 0 1 + 0.40188 44.14500 3.53378 0.40468 110 0 1 + 0.42370 45.12600 3.58345 0.42636 110 0 1 + 0.44104 45.12600 3.62320 0.44371 110 0 1 + 0.47159 46.49940 3.69275 0.47406 110 0 1 + 0.51225 47.87280 3.78548 0.51453 110 0 1 + 0.55290 49.24620 3.87821 0.55500 110 0 1 + 0.59355 50.61960 3.97094 0.59546 110 0 1 + 0.62407 51.99300 4.04049 0.62582 110 0 1 + 0.82566 51.99300 22.41287 0.83263 110 0 1 + 1.52418 52.76830 24.40890 1.53055 110 0 1 + 2.45532 53.54360 27.43263 2.46110 110 0 1 + 3.38642 54.31890 30.58716 3.39165 110 0 1 + 4.31751 55.09420 33.78746 4.32220 110 0 1 + 5.01592 55.86950 36.20132 5.02011 110 0 1 + 5.48120 55.86950 37.81477 5.48539 110 0 1 + 6.17959 56.64480 40.23886 6.18330 110 0 1 + 7.11059 57.42010 43.47527 7.11385 110 0 1 + 8.04156 58.19540 46.71492 8.04440 110 0 1 + 8.97251 58.97070 49.95650 8.97495 110 0 1 + 9.67080 59.74600 52.38847 9.67286 110 0 1 + 8.34793 59.74600 61.54218 8.35103 110 0 1 + 8.86579 61.21260 63.88663 8.86830 110 0 1 + 9.55602 62.67919 67.59209 9.55798 110 0 1 + 10.24621 64.14579 71.64663 10.24767 110 0 1 + 10.93635 65.61238 75.88855 10.93735 110 0 1 + 11.45403 67.07898 79.14497 11.45462 110 0 1 + 11.79887 67.07898 81.34468 11.79946 110 0 1 + 12.31651 68.54557 84.67666 12.31672 110 0 1 + 13.00653 70.01217 89.16116 13.00641 110 15 1 + 13.69652 71.47876 93.68382 13.69610 110 15 1 + 14.38647 72.94536 98.23499 14.38578 110 15 1 + 14.90397 74.41195 101.66238 14.90304 110 15 1 + 15.24882 74.41195 103.95346 15.24789 110 15 1 + 15.76629 75.87855 107.39780 15.76515 110 15 1 + 16.45615 77.34514 112.00108 16.45484 110 15 1 + 17.14600 78.81174 116.61510 17.14452 110 15 1 + 17.83581 80.27833 121.23784 17.83421 110 15 1 + 18.35319 81.74492 124.70944 18.35147 110 15 1 + 18.69803 81.74492 127.02595 18.69631 110 15 1 + 19.21539 83.21152 130.50344 19.21358 110 15 1 + 19.90515 84.67811 135.14409 19.90326 110 15 1 + 20.59490 86.14471 139.78885 20.59295 110 15 1 + 21.28463 87.61131 144.43708 21.28263 110 15 1 + 21.80192 89.07790 147.92513 21.79990 110 15 1 + 21.97665 89.07790 149.10372 21.97463 110 15 1 + 21.98357 89.09752 149.15039 21.98155 110 15 1 + 21.99280 89.11714 149.21264 21.99077 110 15 1 + 22.00202 89.13676 149.27489 22.00000 110 15 1 + 22.01125 89.15638 149.33715 22.00923 110 15 1 + 22.01817 89.17600 149.38373 22.01615 110 15 1 + 26.66981 89.17600 113.78299 26.66947 110 23 1 + 26.67546 89.19562 113.80153 26.67512 110 23 1 + 26.68300 89.21524 113.82626 26.68266 110 23 1 + 26.69054 89.23486 113.85098 26.69020 110 23 1 + 26.69808 89.25448 113.87570 26.69774 110 23 1 + 26.70373 89.27410 113.89425 26.70339 110 23 1 + 26.73954 89.27410 114.01168 26.73920 110 23 1 + 26.84131 89.62726 114.34570 26.84097 110 23 1 + 26.97700 89.98042 114.79146 26.97666 110 24 1 + 27.11269 90.33358 115.23772 27.11235 110 24 1 + 27.24838 90.68674 115.68444 27.24804 110 24 1 + 27.35015 91.03990 116.01978 27.34981 110 24 1 + 27.49715 91.03990 116.50467 27.49681 110 24 1 + 27.83638 92.21710 117.62563 27.83604 110 24 1 + 28.28868 93.39430 119.12407 28.28834 110 24 1 + 28.74098 94.57150 120.62677 28.74064 110 24 1 + 29.19328 95.74870 122.13344 29.19295 110 24 1 + 29.53250 96.92590 123.26574 29.53217 110 24 1 + 29.70212 96.92590 123.83267 29.70179 110 24 1 + 29.87173 97.51450 124.40012 29.87140 110 24 1 + 30.09788 98.10310 125.15740 30.09755 110 24 1 + 30.32403 98.69170 125.91548 30.32370 110 24 1 + 30.55018 99.28030 126.67432 30.54986 110 24 1 + 30.71979 99.86890 127.24391 30.71947 110 24 1 + 30.87056 99.86890 127.75059 30.87024 110 24 1 + 31.15324 100.84990 128.70149 31.15293 110 24 1 + 31.53015 101.83090 129.97091 31.52985 110 24 1 + 31.90707 102.81190 131.24210 31.90677 110 24 1 + 32.28398 103.79290 132.51497 32.28369 110 24 1 + 32.56666 104.77390 133.47063 32.56638 110 24 1 + 32.73816 104.77390 134.05085 32.73787 110 24 1 + 32.96996 105.57832 134.83562 32.96968 110 24 1 + 33.27903 106.38274 135.88279 33.27875 110 24 1 + 33.58809 107.18716 136.93089 33.58783 110 25 1 + 33.89716 107.99158 137.97989 33.89690 110 25 1 + 34.12896 108.79600 138.76718 34.12871 110 25 1 + 36.84628 108.79600 98.09256 36.84577 110 38 1 + 38.61898 106.77700 102.36444 38.61849 110 38 1 + 40.98259 104.75800 108.04901 40.98212 110 38 1 + 43.34619 102.73900 113.72005 43.34574 110 38 1 + 45.70980 100.72000 119.37761 45.70937 110 38 1 + 47.48250 98.70100 123.61241 47.48209 110 38 1 + 30.65955 98.70100 390.85160 30.65709 110 8 1 + 31.16235 100.07440 393.38074 31.16005 110 8 1 + 31.83281 101.44780 398.08066 31.83067 110 8 1 + 32.50326 102.82120 403.76930 32.50129 110 8 1 + 33.17371 104.19460 410.07478 33.17191 110 8 1 + 33.67651 105.56800 415.07230 33.67487 110 8 1 + 34.01182 105.56800 418.51230 34.01018 110 8 1 + 34.51463 106.94140 423.79885 34.51314 110 8 1 + 35.18509 108.31480 431.01578 35.18376 110 8 1 + 35.85556 109.68820 438.39038 35.85437 110 8 1 + 36.52603 111.06160 445.88598 36.52499 110 8 1 + 37.02885 112.43500 451.56851 37.02795 110 8 1 + 37.36415 112.43500 455.38404 37.36326 110 8 1 + 37.86698 113.80840 461.14192 37.86623 110 8 1 + 38.53746 115.18180 468.86838 38.53684 110 8 1 + 39.20795 116.55520 476.64455 39.20746 110 8 1 + 39.87844 117.92860 484.46180 39.87808 110 8 1 + 40.38128 119.30200 490.34660 40.38104 110 8 1 + 40.71659 119.30200 494.28002 40.71635 110 8 1 + 41.21943 120.67540 500.19366 41.21931 110 8 1 + 41.88993 122.04880 508.09847 41.88993 110 8 1 + 42.56043 123.42220 516.02417 42.56055 110 0 1 + 43.23093 124.79560 523.96782 43.23116 110 0 1 + 43.73378 126.16900 529.93544 43.73413 110 0 1 + 44.06909 126.16900 533.91858 44.06943 110 0 1 + 44.57194 127.54240 539.89970 44.57240 110 0 1 + 45.24245 128.91580 547.88418 45.24301 110 0 1 + 45.91296 130.28920 555.87903 45.91363 110 0 1 + 46.58347 131.66260 563.88300 46.58425 110 0 1 + 47.08632 133.03600 569.89109 47.08721 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -16158,11 +16294,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.692 'Hollandveen' - -5.70 6.826 'Oude Zeeklei' - -7.00 45.428 'Wadzand' - -10.00 60.869 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.291 'Eerste zandlaag' + -5.70 6.823 'Oude Zeeklei' + -7.00 45.297 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.082 'Basisveen' + -12.50 136.055 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -16181,10 +16317,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -1.45 'Oude Zeeklei' - -7.00 -13.63 'Wadzand' + -7.00 -13.59 'Wadzand' -10.00 -12.94 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -52.70 'Eerste zandlaag' + -12.50 -52.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16449,39 +16585,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.86 : Percentage mobilized resistance left - 32.02 : Percentage mobilized resistance right - 341.46 : Effective left - 475.08 : Effective right + 14.85 : Percentage mobilized resistance left + 32.00 : Percentage mobilized resistance right + 341.21 : Effective left + 474.82 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2298.14 : Max effective resistance left 1483.68 : Max effective resistance right -24405.26 : Max moment left -16409.89 : Max moment right --4042.06 : Max mobilized moment left --4260.58 : Max mobilized moment right - 118.79 : Vertical force left - 136.33 : Vertical force right +-4039.43 : Max mobilized moment left +-4257.97 : Max mobilized moment right + 118.69 : Vertical force left + 136.26 : Vertical force right 16.6 : Max mobilized moment percentage left - 26.0 : Max mobilized moment percentage right + 25.9 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --118.79 : Active force -136.33 : Passive force --118.79 : Plugged active force -136.33 : Plugged passive force +-118.69 : Active force +136.26 : Passive force +-118.69 : Plugged active force +136.26 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance 1510.79 : Plugged resistance 1.00 : Vertical balance load factor -17.54 : Resulting Vertical Force Unplugged -17.54 : Resulting Vertical Force Plugged +17.57 : Resulting Vertical Force Unplugged +17.57 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -16494,210 +16630,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 613.34592 - 0.00000 0.00000 608.47842 - 0.00000 0.00000 603.61092 - 0.00000 0.00000 598.74342 - 0.00000 0.00000 593.87592 - 0.00000 0.00000 589.00841 - 0.00000 0.00000 589.00841 - 0.00000 0.00000 584.14091 - 0.00000 0.00000 579.27341 - 0.00000 0.00000 574.40591 - 0.00000 0.00000 569.53841 - 0.00000 0.00000 564.67091 - 0.00000 0.00000 564.67091 - -0.00381 -0.09535 558.18091 - -0.03051 -0.38141 551.69090 - -0.10298 -0.85818 545.20091 - -0.24410 -1.52565 538.71093 - -0.47677 -2.38383 532.22099 - -0.47677 -2.38383 532.22099 - -0.75709 -3.24466 526.81274 - -1.13011 -4.23792 521.40456 - -1.60909 -5.36362 515.99650 - -2.20725 -6.62175 510.58860 - -2.93785 -8.01232 505.18090 - -2.93785 -8.01232 505.18090 - -3.81413 -9.53532 499.77346 - -4.84933 -11.19076 494.36637 - -6.05669 -12.97863 488.95975 - -7.44947 -14.89894 483.55372 - -9.04090 -16.95168 478.14837 - -9.04090 -16.95168 478.14837 - -10.57850 -18.82296 473.50043 - -12.28125 -20.79219 468.85321 - -14.15757 -22.85937 464.20686 - -16.21587 -25.02449 459.56149 - -18.46459 -27.28757 454.91724 - -18.46459 -27.28757 454.91724 - -21.75334 -30.43844 448.76286 - -25.41109 -33.76142 442.61111 - -29.45748 -37.25651 436.46249 - -33.91212 -40.92371 430.31749 - -38.79463 -44.76303 424.17660 - -38.79463 -44.76303 424.17660 - -39.30717 -45.15643 423.56275 - -39.82420 -45.55155 422.94896 - -40.34575 -45.94839 422.33521 - -40.87183 -46.34695 421.72151 - -41.40246 -46.74723 421.10786 - -41.40246 -46.74723 421.10786 - -44.68574 -48.88234 417.41628 - -48.09638 -50.46029 413.72666 - -51.59615 -51.48093 410.03916 - -55.14682 -51.94428 406.35392 - -58.71193 -51.92777 402.67111 - -58.71193 -51.92777 402.67111 - -59.74916 -51.78888 401.59788 - -60.78322 -51.60919 400.52487 - -61.81321 -51.38213 399.45209 - -62.83819 -51.10771 398.37955 - -63.85724 -50.79250 397.30723 - -63.85724 -50.79249 397.30723 - -67.97178 -52.07461 393.02039 - -72.18980 -53.38000 388.73762 - -76.51313 -54.70605 384.45915 - -80.94319 -56.04769 380.18527 - -85.48105 -57.40012 375.91622 - -85.48105 -57.40012 375.91622 - -86.63245 -57.74018 374.84974 - -87.79066 -58.08070 373.78359 - -88.95568 -58.42171 372.71776 - -90.12753 -58.76319 371.65227 - -91.30621 -59.10505 370.58711 - -91.30621 -59.10505 370.58711 - -97.30247 -60.82118 365.26651 - -103.47065 -62.54342 359.95499 - -109.81132 -64.27071 354.65314 - -116.32490 -66.00122 349.36156 - -123.01162 -67.73340 344.08082 - -123.01162 -67.73340 344.08082 - -129.87160 -69.46624 338.81155 - -136.90485 -71.19853 333.55439 - -144.11127 -72.92951 328.31002 - -151.49068 -74.65844 323.07912 - -159.04288 -76.38512 317.86235 - -159.04288 -76.38512 317.86235 - -169.90559 -78.79560 310.58392 - -181.10534 -81.19939 303.33655 - -192.64103 -83.59468 296.12236 - -204.51141 -85.98059 288.94347 - -216.71518 -88.35772 281.80197 - -216.71518 -88.35772 281.80197 - -228.11351 -87.00439 275.20601 - -239.34113 -85.76208 268.64601 - -250.42041 -84.72201 262.12374 - -261.37759 -83.88351 255.64095 - -272.30831 -84.84935 249.19938 - -272.30831 -84.84935 249.19938 - -283.50069 -87.25212 242.80075 - -294.97074 -89.12137 236.44683 - -306.64913 -90.45710 230.13946 - -318.46647 -91.25931 223.88047 - -330.35343 -91.52800 217.67169 - -330.35343 -91.52801 217.67169 - -344.03703 -91.53023 210.59611 - -357.72097 -91.53245 203.59227 - -371.40523 -91.53467 196.66305 - -385.08983 -91.53689 189.81129 - -398.77476 -91.53911 183.03984 - -398.77476 -91.53912 183.03984 - -412.47049 -91.75139 176.35153 - -426.24685 -92.73475 169.74924 - -440.22822 -94.32089 163.23589 - -454.45296 -95.99048 156.81440 - -468.93302 -97.73306 150.48769 - -468.93302 -97.73307 150.48769 - -483.68562 -99.63783 144.25871 - -498.72851 -101.61846 138.13061 - -514.07362 -103.68099 132.10658 - -529.73321 -105.82544 126.18983 - -545.56183 -104.88758 120.38355 - -545.56183 -104.88759 120.38355 - -560.81256 -99.02930 114.69115 - -575.13462 -92.42922 109.11574 - -588.40682 -84.98491 103.66009 - -600.50317 -76.69895 98.32693 - -611.30315 -67.67743 93.11902 - -611.30315 -67.67742 93.11902 - -611.43838 -67.54961 93.05022 - -611.57335 -67.42167 92.98143 - -611.70807 -67.29358 92.91266 - -611.84253 -67.16533 92.84392 - -611.97673 -67.03696 92.77521 - -611.97673 -67.03695 92.77521 - -612.11071 -66.94126 92.70651 - -612.24449 -66.84561 92.63784 - -612.37809 -66.74998 92.56919 - -612.51149 -66.65438 92.50056 - -612.64471 -66.55882 92.43196 - -612.64471 -66.55883 92.43196 - -615.00990 -64.84277 91.20100 - -617.31351 -63.13662 89.97749 - -619.55585 -61.43958 88.76143 - -621.73726 -59.75154 87.55288 - -623.85808 -58.07314 86.35184 - -623.85800 -58.07387 86.35184 - -630.49321 -52.53164 82.40305 - -636.46969 -47.09172 78.53900 - -641.79885 -41.74252 74.76040 - -646.49138 -36.48044 71.06796 - -650.55782 -31.30989 67.46239 - -650.55789 -31.31072 67.46239 - -652.36041 -28.77037 65.69239 - -654.01035 -26.23075 63.94431 - -655.50848 -23.71023 62.21819 - -656.85595 -21.20836 60.51409 - -658.05389 -18.72671 58.83205 - -658.05386 -18.72724 58.83205 - -659.70095 -14.32410 56.07783 - -660.93039 -10.27232 53.38517 - -661.75692 -6.26559 50.75415 - -662.18494 -2.30178 48.18485 - -662.21883 1.61560 45.67735 - -662.21885 1.61493 45.67735 - -661.95534 4.80656 43.66734 - -661.43135 7.96958 41.69887 - -660.64898 11.10891 39.77188 - -659.61011 14.22572 37.88633 - -658.31665 17.31738 36.04217 - -658.31659 17.31628 36.04217 - -656.46311 19.74235 33.84911 - -654.36978 22.11871 31.71731 - -652.04045 24.46276 29.64656 - -649.47819 26.77796 27.63663 - -646.68615 29.05429 25.68731 - -646.68461 29.03976 25.68731 - -640.45198 59.72147 23.06005 - -630.03213 88.91319 20.54998 - -615.61232 116.90427 18.15448 - -597.34582 143.89072 15.87092 - -575.36621 169.94934 13.69668 - -575.42139 170.34720 13.69668 - -549.78542 195.74178 11.62847 - -520.68026 219.70995 9.66083 - -488.41120 240.58030 7.78791 - -453.50789 257.37683 6.00386 - -416.52729 270.28186 4.30284 - -416.53849 270.66480 4.30284 - -377.95956 279.85552 2.67833 - -338.36289 285.10458 1.12289 - -298.38731 284.84599 -0.37069 - -258.87917 278.73399 -1.80964 - -220.53151 268.55663 -3.20120 - -220.56476 268.20794 -3.20120 - -184.07025 253.18029 -4.55274 - -149.74001 236.74403 -5.87068 - -117.92261 217.29316 -7.16081 - -89.03597 194.88420 -8.42888 - -63.49072 169.56764 -9.68068 - -63.49165 169.55556 -9.68068 - -41.69557 141.34081 -10.92173 - -24.04952 110.26978 -12.15525 - -10.95298 76.34978 -13.38359 - -2.80411 39.58985 -14.60912 - 0.00015 0.00080 -15.83417 + 0.00000 0.00000 613.81681 + 0.00000 0.00000 608.94623 + 0.00000 0.00000 604.07565 + 0.00000 0.00000 599.20507 + 0.00000 0.00000 594.33449 + 0.00000 0.00000 589.46392 + 0.00000 0.00000 589.46392 + 0.00000 0.00000 584.59334 + 0.00000 0.00000 579.72276 + 0.00000 0.00000 574.85218 + 0.00000 0.00000 569.98160 + 0.00000 0.00000 565.11102 + 0.00000 0.00000 565.11102 + -0.00381 -0.09535 558.61691 + -0.03051 -0.38141 552.12280 + -0.10298 -0.85818 545.62870 + -0.24410 -1.52565 539.13462 + -0.47677 -2.38383 532.64057 + -0.47677 -2.38383 532.64057 + -0.75709 -3.24466 527.22890 + -1.13011 -4.23792 521.81730 + -1.60909 -5.36362 516.40582 + -2.20725 -6.62175 510.99449 + -2.93785 -8.01232 505.58337 + -2.93785 -8.01232 505.58337 + -3.81413 -9.53532 500.17251 + -4.84933 -11.19076 494.76200 + -6.05669 -12.97863 489.35196 + -7.44947 -14.89894 483.94250 + -9.04090 -16.95168 478.53374 + -9.04090 -16.95168 478.53374 + -10.57850 -18.82296 473.88285 + -12.28125 -20.79219 469.23270 + -14.15757 -22.85937 464.58340 + -16.21587 -25.02449 459.93509 + -18.46459 -27.28757 455.28790 + -18.46459 -27.28757 455.28790 + -21.75334 -30.43844 449.12962 + -25.41109 -33.76142 442.97397 + -29.45748 -37.25651 436.82145 + -33.91212 -40.92371 430.67255 + -38.79463 -44.76303 424.52775 + -38.79463 -44.76303 424.52775 + -39.30717 -45.15643 423.91352 + -39.82420 -45.55155 423.29933 + -40.34575 -45.94839 422.68519 + -40.87183 -46.34695 422.07111 + -41.40246 -46.74723 421.45707 + -41.40246 -46.74723 421.45707 + -44.68574 -48.88234 417.76314 + -48.09638 -50.46029 414.07117 + -51.59615 -51.48093 410.38132 + -55.14682 -51.94428 406.69374 + -58.71193 -51.92777 403.00858 + -58.71193 -51.92777 403.00858 + -59.74916 -51.78888 401.93467 + -60.78322 -51.60919 400.86098 + -61.81321 -51.38213 399.78751 + -62.83819 -51.10771 398.71428 + -63.85724 -50.79250 397.64128 + -63.85724 -50.79249 397.64128 + -67.97178 -52.07461 393.35171 + -72.18980 -53.38000 389.06619 + -76.51313 -54.70605 384.78499 + -80.94319 -56.04769 380.50837 + -85.48105 -57.40012 376.23658 + -85.48105 -57.40012 376.23658 + -86.63245 -57.74018 375.16942 + -87.79066 -58.08070 374.10258 + -88.95568 -58.42171 373.03607 + -90.12753 -58.76319 371.96990 + -91.30621 -59.10505 370.90405 + -91.30621 -59.10505 370.90405 + -97.30247 -60.82118 365.58003 + -103.47065 -62.54342 360.26509 + -109.81132 -64.27071 354.95982 + -116.32490 -66.00122 349.66482 + -123.01162 -67.73340 344.38066 + -123.01162 -67.73340 344.38066 + -129.87160 -69.46624 339.10797 + -136.90485 -71.19853 333.84739 + -144.11127 -72.92951 328.59960 + -151.49068 -74.65844 323.36528 + -159.04288 -76.38512 318.14509 + -159.04288 -76.38512 318.14509 + -169.90559 -78.79560 310.86186 + -181.10534 -81.19939 303.60970 + -192.64103 -83.59468 296.39073 + -204.51141 -85.98059 289.20705 + -216.71518 -88.35772 282.06076 + -216.71518 -88.35772 282.06076 + -228.11351 -87.00439 275.46034 + -239.34113 -85.76208 268.89590 + -250.42041 -84.72201 262.36919 + -261.37759 -83.88351 255.88195 + -272.30831 -84.84935 249.43593 + -272.30831 -84.84935 249.43593 + -283.50069 -87.25212 243.03285 + -294.97074 -89.12137 236.67449 + -306.64913 -90.45710 230.36267 + -318.46647 -91.25931 224.09923 + -330.35343 -91.52800 217.88601 + -330.35343 -91.52801 217.88601 + -344.03703 -91.53023 210.80530 + -357.72097 -91.53245 203.79636 + -371.40523 -91.53467 196.86202 + -385.08983 -91.53689 190.00514 + -398.77476 -91.53911 183.22858 + -398.77476 -91.53912 183.22858 + -412.47049 -91.75139 176.53516 + -426.24685 -92.73475 169.92775 + -440.22822 -94.32089 163.40929 + -454.45296 -95.99048 156.98268 + -468.93302 -97.73306 150.65085 + -468.93302 -97.73307 150.65085 + -483.68562 -99.63783 144.41676 + -498.72851 -101.61846 138.28355 + -514.07362 -103.68099 132.25440 + -529.73321 -105.82544 126.33253 + -545.56183 -104.88758 120.52114 + -545.56183 -104.88758 120.52114 + -560.81256 -99.02930 114.82363 + -575.13462 -92.42922 109.24311 + -588.40682 -84.98491 103.78234 + -600.50317 -76.69895 98.44406 + -611.30315 -67.67743 93.23105 + -611.30315 -67.67742 93.23105 + -611.43838 -67.54961 93.16217 + -611.57335 -67.42167 93.09331 + -611.70807 -67.29358 93.02448 + -611.84253 -67.16534 92.95567 + -611.97673 -67.03696 92.88688 + -611.97673 -67.03695 92.88688 + -612.11071 -66.94119 92.81812 + -612.24449 -66.84546 92.74938 + -612.37809 -66.74976 92.68066 + -612.51149 -66.65409 92.61197 + -612.64471 -66.55845 92.54329 + -612.64471 -66.55846 92.54329 + -615.00986 -64.84105 91.31111 + -617.31338 -63.13358 90.08636 + -619.55559 -61.43522 88.86908 + -621.73682 -59.74588 87.65929 + -623.85741 -58.06619 86.45701 + -623.85734 -58.06693 86.45701 + -630.49146 -52.52051 82.50413 + -636.46636 -47.07658 78.63597 + -641.79348 -41.72355 74.85326 + -646.48350 -36.45778 71.15671 + -650.54701 -31.28373 67.54704 + -650.54708 -31.28455 67.54704 + -652.34715 -28.72182 65.77498 + -653.99413 -26.18067 64.02484 + -655.48922 -23.65867 62.29667 + -656.83355 -21.15537 60.59051 + -658.02827 -18.67233 58.90642 + -658.02824 -18.67285 58.90642 + -659.68961 -14.56466 56.14877 + -660.94293 -10.50935 53.45268 + -661.79299 -6.49919 50.81823 + -662.24420 -2.53207 48.24551 + -662.30095 1.38851 45.73458 + -662.30097 1.38784 45.73458 + -662.05598 4.58201 43.72177 + -661.55031 7.74748 41.75050 + -660.78605 10.88919 39.82073 + -659.76510 14.00831 37.93240 + -658.48937 17.10219 36.08547 + -658.48932 17.10110 36.08547 + -656.65715 19.53130 33.88906 + -654.58472 21.91168 31.75392 + -652.27590 24.25951 29.67984 + -649.73378 26.57827 27.66661 + -646.96155 28.85794 25.71402 + -646.96001 28.84339 25.71402 + -640.75377 59.53997 23.08222 + -630.35852 88.74298 20.56766 + -615.96189 116.74283 18.16773 + -597.71753 143.73555 15.87980 + -575.75934 169.79799 13.70127 + -575.81464 170.19674 13.70127 + -550.19961 195.59273 11.62883 + -521.11550 219.55671 9.65704 + -488.86872 240.41386 7.78005 + -453.99016 257.18805 5.99202 + -417.03808 270.06182 4.28710 + -417.04931 270.44572 4.28710 + -378.50278 279.61033 2.65879 + -338.94399 284.79837 1.09965 + -299.01807 284.44003 -0.39753 + -259.57340 278.23969 -1.83997 + -221.29993 267.98975 -3.23488 + -221.33327 267.64020 -3.23488 + -184.76803 254.20107 -4.58964 + -150.30090 237.67762 -5.91067 + -118.35930 218.13267 -7.20378 + -89.36211 195.62295 -8.47476 + -63.72087 170.19911 -9.72941 + -63.72180 170.18698 -9.72941 + -41.84520 141.85853 -10.97326 + -24.13500 110.66747 -12.20956 + -10.99155 76.62116 -13.44067 + -2.81390 39.72866 -14.66894 + 0.00015 0.00080 -15.89675 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16992,65 +17128,65 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -3.12560 1.16620 6.69068 0.32582 0.59915 0.27938 5.73716 - -3.19420 2.33240 13.38135 0.65163 0.54957 0.27938 5.73716 - -3.26280 3.49860 20.07203 0.97745 0.53305 0.27938 5.73716 - -3.33140 4.66480 26.76270 1.30327 0.52479 0.27938 5.73716 - -3.40000 5.83100 31.78071 1.54763 0.51983 0.27938 5.73716 - -3.40000 5.83100 33.94104 1.65283 0.51983 0.27938 5.73716 - -3.42000 6.17100 35.40401 1.72408 0.51874 0.27938 5.73716 - -3.44000 6.51100 37.35465 1.81907 0.51776 0.27938 5.73716 - -3.46000 6.85100 39.30528 1.91406 0.51688 0.27938 5.73716 - -3.48000 7.19100 41.25592 2.00905 0.51608 0.27938 5.73716 - -3.50000 7.53100 42.71889 2.08029 0.51535 0.27938 5.73716 - -3.50000 7.53100 18.64569 2.88159 0.75653 0.38223 2.47330 - -3.58000 7.56220 18.43347 2.90406 0.75647 0.38402 2.43758 - -3.66000 7.59340 18.21464 2.92802 0.75641 0.38560 2.39875 - -3.74000 7.62460 18.05082 2.94915 0.75635 0.38679 2.36744 - -3.82000 7.65580 17.92599 2.96908 0.75628 0.38782 2.34149 - -3.90000 7.68700 17.85097 2.98364 0.75622 0.38854 2.32459 - -3.90000 7.68700 17.82388 2.98964 0.75622 0.38882 2.31812 + -3.12560 1.16620 6.69068 0.32582 0.57905 0.27938 5.73716 + -3.19420 2.33240 13.38135 0.65163 0.54039 0.27938 5.73716 + -3.26280 3.49860 20.07203 0.97745 0.52751 0.27938 5.73716 + -3.33140 4.66480 26.76270 1.30327 0.52106 0.27938 5.73716 + -3.40000 5.83100 31.78071 1.54763 0.51720 0.27938 5.73716 + -3.40000 5.83100 33.94104 1.65283 0.51720 0.27938 5.73716 + -3.42000 6.17100 35.40401 1.72408 0.51635 0.27938 5.73716 + -3.44000 6.51100 37.35465 1.81907 0.51558 0.27938 5.73716 + -3.46000 6.85100 39.30528 1.91406 0.51490 0.27938 5.73716 + -3.48000 7.19100 41.25592 2.00905 0.51427 0.27938 5.73716 + -3.50000 7.53100 42.71889 2.08029 0.51371 0.27938 5.73716 + -3.50000 7.53100 18.64569 2.88159 0.75489 0.38223 2.47330 + -3.58000 7.56220 18.43347 2.90406 0.75514 0.38402 2.43758 + -3.66000 7.59340 18.21464 2.92802 0.75540 0.38560 2.39875 + -3.74000 7.62460 18.05082 2.94915 0.75565 0.38679 2.36744 + -3.82000 7.65580 17.92599 2.96908 0.75590 0.38782 2.34149 + -3.90000 7.68700 17.85097 2.98364 0.75615 0.38854 2.32459 + -3.90000 7.68700 17.82388 2.98964 0.75615 0.38882 2.31812 -3.92000 7.69480 17.80882 2.99322 0.75621 0.38899 2.31440 -3.94000 7.70260 17.78978 2.99798 0.75619 0.38922 2.30958 -3.96000 7.71040 17.77195 3.00272 0.75618 0.38944 2.30493 -3.98000 7.71820 17.75525 3.00746 0.75616 0.38966 2.30044 -4.00000 7.72600 17.74339 3.01100 0.75615 0.38982 2.29716 - -4.00000 7.72600 17.72167 3.01806 0.75995 0.39014 2.29088 - -4.10000 7.76500 17.67620 3.03564 0.75523 0.39094 2.27639 - -4.20000 7.80400 17.63118 3.05895 0.75516 0.39197 2.25925 - -4.30000 7.84300 17.60131 3.08216 0.75509 0.39298 2.24421 - -4.40000 7.88200 17.58353 3.10531 0.75502 0.39397 2.23085 - -4.50000 7.92100 17.57648 3.12264 0.75495 0.39471 2.22171 - -4.50000 7.92100 17.57467 3.13418 0.75495 0.39519 2.21602 - -4.60000 7.96000 17.57572 3.15149 0.75489 0.39592 2.20801 - -4.70000 7.99900 17.58265 3.17454 0.75482 0.39687 2.19811 - -4.80000 8.03800 17.59531 3.19757 0.75475 0.39781 2.18902 - -4.90000 8.07700 17.61286 3.22059 0.75469 0.39874 2.18062 - -5.00000 8.11600 17.62870 3.23785 0.75462 0.39943 2.17471 - -5.00000 8.11600 17.64306 3.25165 0.96505 0.39997 2.17021 - -5.14000 8.17060 17.67127 3.27580 0.75220 0.40093 2.16279 - -5.28000 8.22520 17.71375 3.30799 0.75213 0.40218 2.15359 - -5.42000 8.27980 17.76125 3.34018 0.75206 0.40341 2.14513 - -5.56000 8.33440 17.81303 3.37235 0.75199 0.40463 2.13729 - -5.70000 8.38900 17.85419 3.39648 0.75192 0.40553 2.13175 - -5.70000 8.38900 38.17752 -2.65590 0.71003 0.00000 4.79516 - -5.83000 6.67970 35.02708 -3.25060 0.71278 0.00000 5.24381 - -5.96000 4.97040 30.83230 -4.04265 0.71742 0.00000 6.20318 - -6.09000 3.26110 26.64227 -4.83343 0.72691 0.00000 8.16972 - -6.22000 1.55180 22.45532 -5.62271 0.75734 0.00000 14.47050 + -4.00000 7.72600 17.72167 3.01806 0.75615 0.39014 2.29088 + -4.10000 7.76500 17.67620 3.03564 0.75607 0.39094 2.27639 + -4.20000 7.80400 17.63118 3.05895 0.75600 0.39197 2.25925 + -4.30000 7.84300 17.60131 3.08216 0.75592 0.39298 2.24421 + -4.40000 7.88200 17.58353 3.10531 0.75585 0.39397 2.23085 + -4.50000 7.92100 17.57648 3.12264 0.75578 0.39471 2.22171 + -4.50000 7.92100 17.57467 3.13418 0.75578 0.39519 2.21602 + -4.60000 7.96000 17.57572 3.15149 0.75571 0.39592 2.20801 + -4.70000 7.99900 17.58265 3.17454 0.75564 0.39687 2.19811 + -4.80000 8.03800 17.59531 3.19757 0.75557 0.39781 2.18902 + -4.90000 8.07700 17.61286 3.22059 0.75550 0.39874 2.18062 + -5.00000 8.11600 17.62870 3.23785 0.75543 0.39943 2.17471 + -5.00000 8.11600 17.64306 3.25165 0.75543 0.39997 2.17021 + -5.14000 8.17060 17.67127 3.27580 0.75533 0.40093 2.16279 + -5.28000 8.22520 17.71375 3.30799 0.75524 0.40218 2.15359 + -5.42000 8.27980 17.76125 3.34018 0.75515 0.40341 2.14513 + -5.56000 8.33440 17.81303 3.37235 0.75505 0.40463 2.13729 + -5.70000 8.38900 17.85419 3.39648 0.75496 0.40553 2.13175 + -5.70000 8.38900 38.17752 -2.65590 0.71308 0.00000 4.79516 + -5.83000 6.67970 35.02708 -3.25060 0.71563 0.00000 5.24381 + -5.96000 4.97040 30.83230 -4.04265 0.72124 0.00000 6.20318 + -6.09000 3.26110 26.64227 -4.83343 0.73275 0.00000 8.16972 + -6.22000 1.55180 22.45532 -5.62271 0.76959 0.00000 14.47050 -6.35000 0.00000 19.31639 -6.21359 0.00000 0.00000 0.00000 -6.35000 0.00000 17.22423 -6.60686 0.00000 0.00000 0.00000 -6.48000 0.00000 14.08644 -7.19567 0.00000 0.00000 0.00000 -6.61000 0.00000 9.90311 -7.97870 0.00000 0.00000 0.00000 -6.74000 0.00000 5.71984 -8.75890 0.00000 0.00000 0.00000 -6.87000 0.00000 1.53619 -7.47015 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 6.07969 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -17062,20 +17198,20 @@ Lambda passive -8.79400 5.63006 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 6.82456 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 8.01907 0.00000 0.00000 0.00000 0.00000 0.00000 - -9.24250 9.21357 31.25457 0.00000 0.58922 0.00000 3.50586 - -9.24250 9.21357 38.78231 0.00000 0.58922 0.00000 4.07711 - -9.39200 10.40808 42.24620 0.97279 0.58786 0.09346 4.05898 - -9.54150 11.60258 46.84351 3.99595 0.58678 0.34440 4.03733 - -9.69100 12.79709 51.42474 4.40854 0.58591 0.34450 4.01847 - -9.84050 13.99159 55.99831 4.82131 0.58518 0.34459 4.00228 - -9.99000 15.18610 59.42709 5.13098 0.58457 0.34465 3.99175 - -9.99000 15.18610 60.58540 5.23560 0.58457 0.34467 3.98848 - -9.99200 15.20208 60.63128 5.23975 0.58456 0.34467 3.98835 - -9.99400 15.21806 60.69245 5.24527 0.58455 0.34467 3.98819 - -9.99600 15.23404 60.75361 5.25080 0.58454 0.34468 3.98802 - -9.99800 15.25002 60.81478 5.25632 0.58454 0.34468 3.98785 - -10.00000 15.26600 60.86066 5.26047 0.58453 0.34468 3.98772 - -10.00000 15.26600 56.19237 0.74643 0.70644 0.04889 3.68023 + -9.24250 9.21357 31.25457 0.00000 0.57738 0.00000 3.50586 + -9.24250 9.21357 38.78231 0.00000 0.57738 0.00000 4.07711 + -9.39200 10.40808 42.24620 0.97279 0.57738 0.09346 4.05898 + -9.54150 11.60258 46.84351 3.99595 0.57738 0.34440 4.03733 + -9.69100 12.79709 51.42474 4.40854 0.57738 0.34450 4.01847 + -9.84050 13.99159 55.99831 4.82131 0.57738 0.34459 4.00228 + -9.99000 15.18610 59.42709 5.13098 0.57738 0.34465 3.99175 + -9.99000 15.18610 60.58540 5.23560 0.57738 0.34467 3.98848 + -9.99200 15.20208 60.63128 5.23975 0.57738 0.34467 3.98835 + -9.99400 15.21806 60.69245 5.24527 0.57738 0.34467 3.98819 + -9.99600 15.23404 60.75361 5.25080 0.58329 0.34468 3.98802 + -9.99800 15.25002 60.81478 5.25632 0.58329 0.34468 3.98785 + -10.00000 15.26600 60.86066 5.26047 0.58328 0.34468 3.98772 + -10.00000 15.26600 56.19237 0.74643 0.70519 0.04889 3.68023 -10.00200 15.27678 56.21166 0.75019 0.70644 0.04911 3.67955 -10.00400 15.28756 56.23739 0.75520 0.70643 0.04940 3.67864 -10.00600 15.29834 56.26312 0.76021 0.70643 0.04969 3.67773 @@ -17093,31 +17229,31 @@ Lambda passive -10.55000 18.23050 63.29175 2.12445 0.70528 0.11653 3.47175 -10.67000 18.87730 64.84871 2.42584 0.70507 0.12851 3.43527 -10.79000 19.52410 66.01759 2.65198 0.70488 0.13697 3.40958 - -10.79000 19.52410 66.60240 2.76507 0.60027 0.14104 3.39722 - -10.85000 19.84750 67.18746 2.87819 0.70512 0.14502 3.38519 - -10.91000 20.17090 67.96787 3.02905 0.70503 0.15017 3.36960 - -10.97000 20.49430 68.74864 3.17994 0.70494 0.15516 3.35452 - -11.03000 20.81770 69.52975 3.33086 0.70485 0.16000 3.33993 - -11.09000 21.14110 70.11580 3.44407 0.70476 0.16353 3.32930 - -11.09000 21.14110 70.63689 3.54471 1.53449 0.16661 3.32005 - -11.19000 21.68010 71.61431 3.73346 0.70268 0.17221 3.30323 - -11.29000 22.21910 72.91820 3.98519 0.70259 0.17936 3.28178 - -11.39000 22.75810 74.22282 4.23700 0.70252 0.18618 3.26138 - -11.49000 23.29710 75.52811 4.48888 0.70244 0.19268 3.24195 - -11.59000 23.83610 76.50747 4.67783 0.70237 0.19737 3.22798 - -11.59000 23.83610 77.10179 4.79248 0.70237 0.20013 3.21974 - -11.67200 24.27808 77.90530 4.94747 0.70231 0.20378 3.20887 - -11.75400 24.72006 78.97694 5.15417 0.70226 0.20850 3.19485 - -11.83600 25.16204 80.04891 5.36090 0.70221 0.21306 3.18134 - -11.91800 25.60402 81.12121 5.56768 0.70216 0.21745 3.16830 - -12.00000 26.04600 81.92561 5.72279 0.70211 0.22065 3.15882 - -12.00000 26.04600 54.92014 11.95931 0.74400 0.44552 2.04596 - -12.10000 29.23500 59.12384 13.36736 0.74369 0.45724 2.02236 - -12.20000 32.42400 64.71839 15.24483 0.74344 0.47017 1.99600 - -12.30000 35.61300 70.30038 17.12239 0.74324 0.48079 1.97401 - -12.40000 38.80200 75.86981 19.00001 0.74307 0.48967 1.95531 - -12.50000 41.99100 80.03909 20.40826 0.74293 0.49542 1.94299 - -12.50000 41.99100 269.34335 10.72368 0.47183 0.25323 6.36029 + -10.79000 19.52410 66.60240 2.76507 0.70488 0.14104 3.39722 + -10.85000 19.84750 67.18746 2.87819 0.70479 0.14502 3.38519 + -10.91000 20.17090 67.96787 3.02905 0.70470 0.15017 3.36960 + -10.97000 20.49430 68.74864 3.17994 0.70462 0.15516 3.35452 + -11.03000 20.81770 69.52975 3.33086 0.70453 0.16000 3.33993 + -11.09000 21.14110 70.11580 3.44407 0.70445 0.16353 3.32930 + -11.09000 21.14110 70.63689 3.54471 0.70445 0.16661 3.32005 + -11.19000 21.68010 71.61431 3.73346 0.70433 0.17221 3.30323 + -11.29000 22.21910 72.91820 3.98519 0.70420 0.17936 3.28178 + -11.39000 22.75810 74.22282 4.23700 0.70409 0.18618 3.26138 + -11.49000 23.29710 75.52811 4.48888 0.70398 0.19268 3.24195 + -11.59000 23.83610 76.50747 4.67783 0.70387 0.19737 3.22798 + -11.59000 23.83610 77.10179 4.79248 0.70387 0.20013 3.21974 + -11.67200 24.27808 77.90530 4.94747 0.70379 0.20378 3.20887 + -11.75400 24.72006 78.97694 5.15417 0.70371 0.20850 3.19485 + -11.83600 25.16204 80.04891 5.36090 0.70363 0.21306 3.18134 + -11.91800 25.60402 81.12121 5.56768 0.70355 0.21745 3.16830 + -12.00000 26.04600 81.92561 5.72279 0.70348 0.22065 3.15882 + -12.00000 26.04600 54.92014 11.95931 0.74537 0.44552 2.04596 + -12.10000 29.23500 59.12384 13.36736 0.74514 0.45724 2.02236 + -12.20000 32.42400 64.71839 15.24483 0.74475 0.47017 1.99600 + -12.30000 35.61300 70.30038 17.12239 0.74443 0.48079 1.97401 + -12.40000 38.80200 75.86981 19.00001 0.74416 0.48967 1.95531 + -12.50000 41.99100 80.03909 20.40826 0.74393 0.49542 1.94299 + -12.50000 41.99100 269.34335 10.72368 0.47283 0.25323 6.36029 -12.64000 43.41760 267.41943 11.00678 0.47177 0.25351 6.15924 -12.78000 44.84420 269.45740 11.38342 0.47172 0.25384 6.00875 -12.92000 46.27080 273.98283 11.75915 0.47167 0.25414 5.92129 @@ -17129,24 +17265,24 @@ Lambda passive -13.62000 53.40380 307.56005 13.62723 0.47145 0.25517 5.75914 -13.76000 54.83040 315.06961 13.99919 0.47142 0.25532 5.74626 -13.90000 56.25700 320.77211 14.27790 0.47138 0.25542 5.73828 - -13.90000 56.25700 324.60417 14.46357 0.47008 0.25548 5.73367 - -14.04000 57.68360 330.38979 14.74188 0.47008 0.25556 5.72762 - -14.18000 59.11020 338.15609 15.11268 0.47008 0.25567 5.72077 - -14.32000 60.53680 345.97352 15.48315 0.47008 0.25576 5.71509 - -14.46000 61.96340 353.83197 15.85333 0.47008 0.25585 5.71034 - -14.60000 63.39000 359.74715 16.13080 0.47008 0.25591 5.70725 - -14.60000 63.39000 363.70039 16.31569 0.47008 0.25595 5.70540 - -14.74000 64.81660 369.64295 16.59291 0.47008 0.25600 5.70291 - -14.88000 66.24320 377.58487 16.96235 0.47008 0.25606 5.69998 - -15.02000 67.66980 385.54580 17.33159 0.47008 0.25612 5.69746 - -15.16000 69.09640 393.52279 17.70064 0.47008 0.25617 5.69527 - -15.30000 70.52300 399.51422 17.97732 0.47008 0.25621 5.69382 - -15.30000 70.52300 403.51263 18.16172 0.47008 0.25623 5.69293 - -15.44000 71.94960 409.51572 18.43823 0.47008 0.25627 5.69170 - -15.58000 73.37620 417.52807 18.80680 0.47008 0.25631 5.69024 - -15.72000 74.80280 425.54909 19.17524 0.47008 0.25634 5.68895 - -15.86000 76.22940 433.57769 19.54355 0.47008 0.25638 5.68780 - -16.00000 77.65600 439.60333 19.81970 0.47008 0.25640 5.68702 + -13.90000 56.25700 324.60417 14.46357 0.47138 0.25548 5.73367 + -14.04000 57.68360 330.38979 14.74188 0.47135 0.25556 5.72762 + -14.18000 59.11020 338.15609 15.11268 0.47132 0.25567 5.72077 + -14.32000 60.53680 345.97352 15.48315 0.47129 0.25576 5.71509 + -14.46000 61.96340 353.83197 15.85333 0.47126 0.25585 5.71034 + -14.60000 63.39000 359.74715 16.13080 0.47124 0.25591 5.70725 + -14.60000 63.39000 363.70039 16.31569 0.47124 0.25595 5.70540 + -14.74000 64.81660 369.64295 16.59291 0.47121 0.25600 5.70291 + -14.88000 66.24320 377.58487 16.96235 0.47119 0.25606 5.69998 + -15.02000 67.66980 385.54580 17.33159 0.47116 0.25612 5.69746 + -15.16000 69.09640 393.52279 17.70064 0.47114 0.25617 5.69527 + -15.30000 70.52300 399.51422 17.97732 0.47112 0.25621 5.69382 + -15.30000 70.52300 403.51263 18.16172 0.47112 0.25623 5.69293 + -15.44000 71.94960 409.51572 18.43823 0.47110 0.25627 5.69170 + -15.58000 73.37620 417.52807 18.80680 0.47108 0.25631 5.69024 + -15.72000 74.80280 425.54909 19.17524 0.47106 0.25634 5.68895 + -15.86000 76.22940 433.57769 19.54355 0.47104 0.25638 5.68780 + -16.00000 77.65600 439.60333 19.81970 0.47103 0.25640 5.68702 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -17212,52 +17348,52 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00292 0.00000 0.00292 0.00292 302 100 P - 6.69068 0.00000 6.69068 0.69872 302 100 P - 13.38135 0.00000 13.38135 1.28182 302 100 P - 20.07203 0.00000 20.07203 1.86492 302 100 P - 26.76270 0.00000 26.76270 2.44802 302 100 P - 31.78071 0.00000 31.78071 2.87957 302 100 P - 33.94104 0.00000 33.94104 3.07531 302 100 P - 35.40401 0.00000 35.40401 3.20112 302 100 P - 37.35465 0.00000 37.35465 3.37112 302 100 P - 39.30528 0.00000 39.30528 3.54112 302 100 P - 41.25592 0.00000 41.25592 3.71112 302 100 P - 42.71889 0.00000 42.71889 3.83732 302 100 P - 18.64569 0.00000 18.64569 5.70336 302 100 P - 18.43347 0.78480 18.43347 5.72058 302 100 P - 18.21464 1.56960 18.21464 5.74371 302 100 P - 18.05082 2.35440 18.05082 5.76683 302 100 P - 17.92599 3.13920 17.92599 5.78996 302 100 P - 17.85097 3.92400 17.85097 5.80718 302 100 P - 17.82388 3.92400 17.82388 5.81456 302 100 P + 6.69068 0.00000 6.69068 0.67529 302 100 P + 13.38135 0.00000 13.38135 1.26042 302 100 P + 20.07203 0.00000 20.07203 1.84554 302 100 P + 26.76270 0.00000 26.76270 2.43066 302 100 P + 31.78071 0.00000 31.78071 2.86500 302 100 P + 33.94104 0.00000 33.94104 3.05975 302 100 P + 35.40401 0.00000 35.40401 3.18638 302 100 P + 37.35465 0.00000 37.35465 3.35697 302 100 P + 39.30528 0.00000 39.30528 3.52756 302 100 P + 41.25592 0.00000 41.25592 3.69815 302 100 P + 42.71889 0.00000 42.71889 3.82507 302 100 P + 18.64569 0.00000 18.64569 5.69096 302 100 P + 18.43347 0.78480 18.43347 5.71055 302 100 P + 18.21464 1.56960 18.21464 5.73604 302 100 P + 18.05082 2.35440 18.05082 5.76152 302 100 P + 17.92599 3.13920 17.92599 5.78701 302 100 P + 17.85097 3.92400 17.85097 5.80659 302 100 P + 17.82388 3.92400 17.82388 5.81397 302 100 P 17.80882 4.12020 17.80882 5.81886 302 100 P 17.78978 4.31640 17.78978 5.82464 302 100 P 17.77195 4.51260 17.77195 5.83043 302 100 P 17.75525 4.70880 17.75525 5.83621 302 100 P 17.74339 4.90500 17.74339 5.84051 302 100 P - 17.72167 4.90500 17.72167 5.87880 302 100 P - 17.67620 5.88600 17.67620 5.86436 302 100 P - 17.63118 6.86700 17.63118 5.89327 302 100 P - 17.60131 7.84800 17.60131 5.92217 302 100 P - 17.58353 8.82900 17.58353 5.95108 302 100 P - 17.57648 9.81000 17.57648 5.97262 302 100 P - 17.57467 9.81000 17.57467 5.98735 302 100 P - 17.57572 10.79100 17.57572 6.00889 302 100 P - 17.58265 11.77200 17.58265 6.03780 302 100 P - 17.59531 12.75300 17.59531 6.06670 302 100 P - 17.61286 13.73400 17.61286 6.09561 302 100 P - 17.62870 14.71500 17.62870 6.11716 302 100 P - 17.64306 14.71500 17.64306 7.84556 302 100 P - 17.67127 16.08840 17.67127 6.14596 302 100 P - 17.71375 17.46180 17.71375 6.18643 302 100 P - 17.76125 18.83520 17.76125 6.22690 302 100 P - 17.81303 20.20860 17.81303 6.26737 302 100 P - 17.85419 21.58200 17.85419 6.29757 302 100 P - 38.17752 21.58200 38.17752 5.65304 302 100 P - 35.02708 25.39730 35.02708 4.76115 302 100 P - 30.83230 29.21260 30.83230 3.56584 302 100 P - 26.64227 33.02790 26.64227 2.37054 302 100 P - 22.45532 36.84320 22.45532 1.17524 302 100 P + 17.72167 4.90500 17.72167 5.84936 302 100 P + 17.67620 5.88600 17.67620 5.87089 302 100 P + 17.63118 6.86700 17.63118 5.89980 302 100 P + 17.60131 7.84800 17.60131 5.92871 302 100 P + 17.58353 8.82900 17.58353 5.95761 302 100 P + 17.57648 9.81000 17.57648 5.97915 302 100 P + 17.57467 9.81000 17.57467 5.99389 302 100 P + 17.57572 10.79100 17.57572 6.01542 302 100 P + 17.58265 11.77200 17.58265 6.04433 302 100 P + 17.59531 12.75300 17.59531 6.07324 302 100 P + 17.61286 13.73400 17.61286 6.10214 302 100 P + 17.62870 14.71500 17.62870 6.12368 302 100 P + 17.64306 14.71500 17.64306 6.14136 302 100 P + 17.67127 16.08840 17.67127 6.17152 302 100 P + 17.71375 17.46180 17.71375 6.21199 302 100 P + 17.76125 18.83520 17.76125 6.25245 302 100 P + 17.81303 20.20860 17.81303 6.29292 302 100 P + 17.85419 21.58200 17.85419 6.32309 302 100 P + 38.17752 21.58200 38.17752 5.67729 302 100 P + 35.02708 25.39730 35.02708 4.78017 302 100 P + 30.83230 29.21260 30.83230 3.58486 302 100 P + 26.64227 33.02790 26.64227 2.38956 302 100 P + 22.45532 36.84320 22.45532 1.19425 302 100 P 0.00000 40.65850 0.00000 0.00000 302 0 P 0.00000 40.65850 0.00000 0.00000 302 0 P 0.00000 44.47380 0.00000 0.00000 302 0 P @@ -17281,92 +17417,92 @@ Status character 0.00000 75.86755 0.00000 0.00000 302 0 P 0.00000 77.33414 0.00000 0.00000 302 0 P 0.00000 78.80074 0.00000 0.00000 302 0 P - 0.00000 80.26733 0.00000 0.00000 302 100 P - 31.25457 81.73392 31.25457 5.25288 302 100 P - 38.78231 81.73392 38.78231 5.60480 302 100 P - 42.24620 83.20052 42.24620 6.11853 302 100 P - 46.84351 84.66711 46.84351 6.80821 302 100 P - 51.42474 86.13371 51.42474 7.49790 302 100 P - 55.99831 87.60031 55.99831 8.18758 302 100 P - 59.42709 89.06690 59.42709 8.70270 302 100 P - 60.58540 89.06690 60.58540 8.87960 302 100 P - 60.63128 89.08652 60.63128 8.88649 302 100 P - 60.69245 89.10614 60.69245 8.89572 302 100 P - 60.75361 89.12576 60.75361 8.90495 302 100 P - 60.81478 89.14538 60.81478 8.91417 302 100 P - 60.86066 89.16500 60.86066 8.92106 302 100 P - 46.96254 89.16500 56.19237 10.78642 220 84 2 - 46.95401 89.18462 56.21166 10.79205 220 84 2 - 46.94838 89.20424 56.23739 10.79959 220 83 2 - 46.94275 89.22386 56.26312 10.80713 220 83 2 - 46.93713 89.24348 56.28885 10.81467 220 83 2 - 46.92862 89.26310 56.30815 10.82030 220 83 2 - 46.98350 89.26310 56.43038 10.85648 220 83 2 - 46.83143 89.61626 56.77789 10.95790 220 82 2 - 46.73333 89.96942 57.24150 11.09359 220 82 2 - 46.63720 90.32258 57.70540 11.22928 220 81 2 - 46.54306 90.67574 58.16959 11.36497 220 80 2 - 46.39878 91.02890 58.51790 11.46641 220 79 2 - 46.62466 91.02890 59.02132 11.61482 220 79 2 - 46.15808 92.20610 60.18420 11.95297 220 77 2 - 45.88738 93.38330 61.73682 12.40527 220 74 2 - 45.63890 94.56050 63.29175 12.85757 220 72 2 - 45.41272 95.73770 64.84871 13.30988 220 70 2 - 45.03424 96.91490 66.01759 13.64820 220 68 2 - 44.78359 96.91490 66.60240 11.76836 220 67 2 - 45.11711 97.50350 67.18746 13.99487 220 67 2 - 45.02928 98.09210 67.96787 14.22102 220 66 2 - 44.94708 98.68070 68.74864 14.44717 220 65 2 - 44.87051 99.26930 69.52975 14.67332 220 65 2 - 44.71206 99.85790 70.11580 14.84249 220 64 2 - 49.35872 99.85790 70.63689 32.64751 220 70 2 - 44.68335 100.83890 71.61431 15.23410 220 62 2 - 44.59337 101.81990 72.91820 15.61102 220 61 2 - 44.51908 102.80090 74.22282 15.98794 220 60 2 - 44.46047 103.78190 75.52811 16.36486 220 59 2 - 44.27142 104.76290 76.50747 16.64713 220 58 2 - 44.53736 104.76290 77.10179 16.81939 220 58 2 - 44.39403 105.56732 77.90530 17.05085 220 57 2 - 44.38105 106.37174 78.97694 17.35993 220 56 2 - 44.37856 107.17616 80.04891 17.66900 220 55 2 - 44.38655 107.98058 81.12121 17.97808 220 55 2 - 44.28504 108.78500 81.92561 18.20957 220 54 2 - 43.60896 108.78500 54.92014 19.97128 220 79 2 - 44.53143 106.76600 59.12384 21.74176 220 75 2 - 46.15440 104.74700 64.71839 24.10538 220 71 2 - 47.80317 102.72800 70.30038 26.46901 220 68 2 - 49.47765 100.70900 75.86981 28.83264 220 65 2 - 50.50930 98.69000 80.03909 30.60396 220 63 2 - 183.06088 98.69000 269.34335 19.98077 220 68 2 - 174.58323 100.06340 267.41943 20.48311 220 65 2 - 167.98491 101.43680 269.45740 21.15373 220 62 2 - 162.66309 102.81020 273.98283 21.82434 220 59 2 - 158.13382 104.18360 279.72618 22.49496 220 57 2 - 153.52369 105.55700 284.49143 22.99739 220 54 2 - 154.86205 105.55700 287.83614 23.33377 220 54 2 - 150.73281 106.93040 293.03560 23.83620 220 51 2 - 140.43675 108.30380 300.19678 24.50681 110 47 1 - 118.63231 109.67720 307.56005 25.17743 110 39 1 - 97.89435 111.05060 315.06961 25.84805 110 31 1 - 77.98459 112.42400 320.77211 26.35055 110 24 1 - 78.24703 112.42400 324.60417 26.61299 110 24 1 - 59.25586 113.79740 330.38979 27.11595 110 18 1 - 41.26128 115.17080 338.15609 27.78657 110 12 1 - 24.00892 116.54420 345.97352 28.45718 110 0 1 - 15.85333 117.91760 353.83197 29.12780 1 0 A - 16.13080 119.29100 359.74715 29.63076 1 0 A - 16.31569 119.29100 363.70039 29.96607 1 0 A - 16.59291 120.66440 369.64295 30.46904 1 0 A - 16.96235 122.03780 377.58487 31.13965 1 0 A - 17.33159 123.41120 385.54580 31.81027 1 0 A - 17.70064 124.78460 393.52279 32.48089 1 0 A - 17.97732 126.15800 399.51422 32.98385 1 0 A - 18.16172 126.15800 403.51263 33.31916 1 0 A - 18.43823 127.53140 409.51572 33.82212 1 0 A - 18.80680 128.90480 417.52807 34.49274 1 0 A - 19.17524 130.27820 425.54909 35.16336 1 0 A - 19.54355 131.65160 433.57769 35.83397 1 0 A - 19.81970 133.02500 439.60333 36.33694 1 0 A + 0.00000 80.26733 0.00000 0.00000 302 0 P + 31.25457 81.73392 31.25457 5.14733 302 100 P + 38.78231 81.73392 38.78231 5.49217 302 100 P + 42.24620 83.20052 42.24620 6.00944 302 100 P + 46.84351 84.66711 46.84351 6.69912 302 100 P + 51.42474 86.13371 51.42474 7.38881 302 100 P + 55.99831 87.60031 55.99831 8.07849 302 100 P + 59.42709 89.06690 59.42709 8.59576 302 100 P + 60.58540 89.06690 60.58540 8.77048 302 100 P + 60.63128 89.08652 60.63128 8.77740 302 100 P + 60.69245 89.10614 60.69245 8.78663 302 100 P + 60.75361 89.12576 60.75361 8.88593 302 100 P + 60.81478 89.14538 60.81478 8.89515 302 100 P + 60.86066 89.16500 60.86066 8.90205 302 100 P + 46.98571 89.16500 56.19237 10.76740 220 84 2 + 46.98192 89.18462 56.21166 10.79205 220 84 2 + 46.97626 89.20424 56.23739 10.79959 220 84 2 + 46.97062 89.22386 56.26312 10.80713 220 83 2 + 46.96498 89.24348 56.28885 10.81467 220 83 2 + 46.95645 89.26310 56.30815 10.82030 220 83 2 + 47.01133 89.26310 56.43038 10.85648 220 83 2 + 46.85896 89.61626 56.77789 10.95790 220 83 2 + 46.76055 89.96942 57.24150 11.09359 220 82 2 + 46.66411 90.32258 57.70540 11.22928 220 81 2 + 46.56966 90.67574 58.16959 11.36497 220 80 2 + 46.42507 91.02890 58.51790 11.46641 220 79 2 + 46.65095 91.02890 59.02132 11.61482 220 79 2 + 46.18335 92.20610 60.18420 11.95297 220 77 2 + 45.91162 93.38330 61.73682 12.40527 220 74 2 + 45.66211 94.56050 63.29175 12.85757 220 72 2 + 45.43491 95.73770 64.84871 13.30988 220 70 2 + 45.05540 96.91490 66.01759 13.64820 220 68 2 + 45.31745 96.91490 66.60240 13.81917 220 68 2 + 45.13613 97.50350 67.18746 13.98833 220 67 2 + 45.04778 98.09210 67.96787 14.21448 220 66 2 + 44.96506 98.68070 68.74864 14.44064 220 65 2 + 44.88798 99.26930 69.52975 14.66679 220 65 2 + 44.72902 99.85790 70.11580 14.83598 220 64 2 + 44.96240 99.85790 70.63689 14.98786 220 64 2 + 44.71002 100.83890 71.61431 15.26986 220 62 2 + 44.61919 101.81990 72.91820 15.64678 220 61 2 + 44.54404 102.80090 74.22282 16.02370 220 60 2 + 44.48457 103.78190 75.52811 16.40062 220 59 2 + 44.29462 104.76290 76.50747 16.68269 220 58 2 + 44.56064 104.76290 77.10179 16.85531 220 58 2 + 44.41658 105.56732 77.90530 17.08661 220 57 2 + 44.40290 106.37174 78.97694 17.39568 220 56 2 + 44.39971 107.17616 80.04891 17.70476 220 55 2 + 44.40701 107.98058 81.12121 18.01383 220 55 2 + 44.30477 108.78500 81.92561 18.24518 220 54 2 + 43.63982 108.78500 54.92014 20.00813 220 79 2 + 44.56198 106.76600 59.12384 21.78405 220 75 2 + 46.18327 104.74700 64.71839 24.14768 220 71 2 + 47.83039 102.72800 70.30038 26.51130 220 68 2 + 49.50322 100.70900 75.86981 28.87493 220 65 2 + 50.53303 98.69000 80.03909 30.64545 220 63 2 + 183.15167 98.69000 269.34335 20.02342 220 68 2 + 174.64972 100.06340 267.41943 20.48311 220 65 2 + 168.03794 101.43680 269.45740 21.15373 220 62 2 + 162.70283 102.81020 273.98283 21.82434 220 59 2 + 158.16047 104.18360 279.72618 22.49496 220 57 2 + 153.53745 105.55700 284.49143 22.99739 220 54 2 + 154.87581 105.55700 287.83614 23.33377 220 54 2 + 150.73390 106.93040 293.03560 23.83620 220 51 2 + 140.39132 108.30380 300.19678 24.50681 110 47 1 + 118.53805 109.67720 307.56005 25.17743 110 39 1 + 97.75228 111.05060 315.06961 25.84805 110 31 1 + 77.79575 112.42400 320.77211 26.35055 110 24 1 + 78.13199 112.42400 324.60417 26.68678 110 24 1 + 59.09470 113.79740 330.38979 27.18928 110 18 1 + 41.05565 115.17080 338.15609 27.85990 110 12 1 + 23.76011 116.54420 345.97352 28.53052 110 0 1 + 15.85333 117.91760 353.83197 29.20113 1 0 A + 16.13080 119.29100 359.74715 29.70368 1 0 A + 16.31569 119.29100 363.70039 30.03982 1 0 A + 16.59291 120.66440 369.64295 30.54237 1 0 A + 16.96235 122.03780 377.58487 31.21298 1 0 A + 17.33159 123.41120 385.54580 31.88360 1 0 A + 17.70064 124.78460 393.52279 32.55422 1 0 A + 17.97732 126.15800 399.51422 33.05681 1 0 A + 18.16172 126.15800 403.51263 33.39286 1 0 A + 18.43823 127.53140 409.51572 33.89545 1 0 A + 18.80680 128.90480 417.52807 34.56607 1 0 A + 19.17524 130.27820 425.54909 35.23669 1 0 A + 19.54355 131.65160 433.57769 35.90731 1 0 A + 19.81970 133.02500 439.60333 36.40993 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17385,9 +17521,9 @@ Layer name -3.50 39.078 'Hollandveen' -5.70 17.426 'Oude Zeeklei' -7.00 39.663 'Wadzand' - -10.00 90.534 'Hydrobiaklei' - -12.00 23.503 'Basisveen' - -12.50 255.365 'Eerste zandlaag' + -10.00 90.375 'Hydrobiaklei' + -12.00 23.517 'Basisveen' + -12.50 255.252 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -17408,9 +17544,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 3.70 'Oude Zeeklei' -7.00 11.90 'Wadzand' - -10.00 19.24 'Hydrobiaklei' + -10.00 19.21 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 98.03 'Eerste zandlaag' + -12.50 97.98 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -17705,7 +17841,7 @@ Lambda passive -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 -7.59800 18.53417 71.41530 0.00000 0.56894 0.00000 3.85317 -7.74750 19.72676 74.67284 0.00000 0.56933 0.00000 3.84345 - -7.74750 19.72676 76.86751 0.00000 0.57116 0.00000 3.83860 + -7.74750 19.72676 76.86751 0.00000 0.56933 0.00000 3.83860 -7.89700 20.91931 80.18530 2.08151 0.56970 0.09950 3.83308 -8.04650 22.11182 84.98605 7.64125 0.57003 0.34557 3.84347 -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 @@ -17717,7 +17853,7 @@ Lambda passive -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 -9.09300 30.45903 118.14655 10.81720 0.57189 0.35514 3.87887 -9.24250 31.65149 121.57835 11.12159 0.57211 0.35472 3.87768 - -9.24250 31.65149 123.86751 11.32452 0.62666 0.35445 3.87697 + -9.24250 31.65149 123.86751 11.32452 0.57211 0.35445 3.87697 -9.39200 32.84396 127.30294 11.62892 0.57231 0.35407 3.87599 -9.54150 34.03645 131.92259 12.03479 0.57250 0.35359 3.87592 -9.69100 35.22896 136.58338 12.44151 0.57268 0.35316 3.87702 @@ -17747,7 +17883,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -17783,13 +17919,13 @@ Lambda passive -13.62000 75.79293 434.84979 19.24842 0.46818 0.25396 5.73734 -13.76000 77.21836 442.29337 19.51523 0.46823 0.25273 5.72783 -13.90000 78.64381 447.87370 19.78051 0.46828 0.25267 5.72089 - -13.90000 78.64381 451.61995 19.97027 0.44223 0.25279 5.71670 + -13.90000 78.64381 451.61995 19.97027 0.46828 0.25279 5.71670 -14.04000 80.06929 457.27233 20.25436 0.46833 0.25296 5.71096 -14.18000 81.49478 464.85577 20.63172 0.46837 0.25317 5.70412 -14.32000 82.92030 472.47626 21.00738 0.46842 0.25334 5.69796 -14.46000 84.34583 480.11294 21.38227 0.46846 0.25351 5.69220 -14.60000 85.77139 485.86065 21.66307 0.46850 0.25362 5.68824 - -14.60000 85.77139 489.70215 21.85009 0.67350 0.25369 5.68576 + -14.60000 85.77139 489.70215 21.85009 0.46850 0.25369 5.68576 -14.74000 87.19696 495.49874 22.13036 0.46853 0.25380 5.68252 -14.88000 88.62256 503.39465 22.50367 0.46857 0.25393 5.68021 -15.02000 90.04817 511.34019 22.87654 0.46861 0.25405 5.67852 @@ -17925,7 +18061,7 @@ Status character 0.00000 64.14579 67.15179 9.85907 1 0 A 0.00000 65.61238 71.41530 10.54492 1 0 A 0.00000 67.07898 74.67284 11.06137 1 0 A - 0.00000 67.07898 76.86751 11.43734 1 0 A + 0.00000 67.07898 76.86751 11.40086 1 0 A 2.08151 68.54557 80.18530 11.91764 1 0 A 7.64125 70.01217 84.98605 12.60448 1 0 A 8.05472 71.47876 90.80343 13.29161 1 0 A @@ -17937,7 +18073,7 @@ Status character 10.41135 78.81174 113.57458 16.73088 1 0 A 10.81720 80.27833 118.14655 17.41935 1 0 A 11.12159 81.74492 121.57835 17.93743 1 0 A - 11.32452 81.74492 123.86751 20.02170 1 0 A + 11.32452 81.74492 123.86751 18.27854 1 0 A 11.62892 83.21152 127.30294 18.79678 1 0 A 12.03479 84.67811 131.92259 19.48571 1 0 A 12.44151 86.14471 136.58338 20.17478 1 0 A @@ -17967,7 +18103,7 @@ Status character 12.88262 94.57150 118.41340 28.27341 1 0 A 13.18295 95.74870 119.90552 28.72573 1 0 A 13.40817 96.92590 121.02749 29.06585 1 0 A - 13.52077 96.92590 121.58944 24.57613 1 0 A + 13.52077 96.92590 121.58944 29.23421 1 0 A 13.63340 97.51450 122.15203 29.40428 1 0 A 13.78416 98.10310 122.90301 29.63048 1 0 A 13.93510 98.69170 123.65496 29.85670 1 0 A @@ -18003,24 +18139,24 @@ Status character 19.24842 109.68820 434.84979 35.48502 1 0 A 19.51523 111.06160 442.29337 36.15623 1 0 A 19.78051 112.43500 447.87370 36.66057 1 0 A - 19.97027 112.43500 451.61995 34.93615 1 0 A + 19.97027 112.43500 451.61995 36.99433 1 0 A 20.25436 113.80840 457.27233 37.49867 1 0 A - 24.69518 115.18180 464.85577 38.16989 110 0 1 - 43.28939 116.55520 472.47626 38.84112 110 9 1 - 61.22809 117.92860 480.11294 39.51236 110 13 1 - 78.43103 119.30200 485.86065 40.01662 110 16 1 - 96.42159 119.30200 489.70215 58.00718 110 20 1 - 95.48773 120.67540 495.49874 40.85483 110 19 1 - 111.97428 122.04880 503.39465 41.52606 110 22 1 - 128.12697 123.42220 511.34019 42.19730 110 25 1 - 144.01510 124.79560 519.30166 42.86854 110 28 1 - 159.54093 126.16900 525.28152 43.37274 110 30 1 - 159.87502 126.16900 529.27230 43.70683 110 30 1 - 175.27175 127.54240 535.26413 44.21102 110 33 1 - 190.74522 128.91580 543.26180 44.88226 110 35 1 - 206.15660 130.28920 551.26866 45.55350 110 37 1 - 221.53413 131.66260 559.28359 46.22474 110 40 1 - 236.73895 133.03600 565.29934 46.72887 110 42 1 + 24.97414 115.18180 464.85577 38.16989 110 0 1 + 43.61153 116.55520 472.47626 38.84112 110 9 1 + 61.59199 117.92860 480.11294 39.51236 110 13 1 + 78.83518 119.30200 485.86065 40.01662 110 16 1 + 79.16911 119.30200 489.70215 40.35056 110 16 1 + 95.93047 120.67540 495.49874 40.85483 110 19 1 + 112.45413 122.04880 503.39465 41.52606 110 22 1 + 128.64267 123.42220 511.34019 42.19730 110 25 1 + 144.56567 124.79560 519.30166 42.86854 110 28 1 + 160.12566 126.16900 525.28152 43.37274 110 30 1 + 160.45974 126.16900 529.27230 43.70683 110 30 1 + 175.89016 127.54240 535.26413 44.21102 110 33 1 + 191.39699 128.91580 543.26180 44.88226 110 35 1 + 206.84151 130.28920 551.26866 45.55350 110 38 1 + 222.25206 131.66260 559.28359 46.22474 110 40 1 + 237.48987 133.03600 565.29934 46.72887 110 42 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -18040,7 +18176,7 @@ Layer name -7.00 21.489 'Wadzand' -10.00 28.025 'Hydrobiaklei' -12.00 14.802 'Basisveen' - -12.50 277.148 'Eerste zandlaag' + -12.50 276.891 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -18062,7 +18198,7 @@ Layer name -7.00 -6.45 'Wadzand' -10.00 -5.96 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -106.39 'Eerste zandlaag' + -12.50 -106.29 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -18327,20 +18463,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 31.17 : Percentage mobilized resistance left + 31.16 : Percentage mobilized resistance left 30.03 : Percentage mobilized resistance right - 288.24 : Effective left - 445.55 : Effective right + 288.23 : Effective left + 445.54 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 924.88 : Max effective resistance left 1483.68 : Max effective resistance right -11007.55 : Max moment left -16409.89 : Max moment right --3595.41 : Max mobilized moment left --3962.43 : Max mobilized moment right +-3595.87 : Max mobilized moment left +-3962.88 : Max mobilized moment right 108.91 : Vertical force left - 126.15 : Vertical force right + 126.17 : Vertical force right 32.7 : Max mobilized moment percentage left 24.1 : Max mobilized moment percentage right -2.43 : Level of single support @@ -18349,17 +18485,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --126.15 : Active force +-126.17 : Active force 108.91 : Passive force --126.15 : Plugged active force +-126.17 : Plugged active force 108.91 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance 1510.79 : Plugged resistance 1.00 : Vertical balance load factor --17.23 : Resulting Vertical Force Unplugged --17.23 : Resulting Vertical Force Plugged +-17.26 : Resulting Vertical Force Unplugged +-17.26 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -18372,210 +18508,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 614.99391 - 0.00000 0.00000 610.07921 - 0.00000 0.00000 605.16451 - 0.00000 0.00000 600.24982 - 0.00000 0.00000 595.33512 - 0.00000 0.00000 590.42042 - 0.00000 0.00000 590.42042 - 0.00000 0.00000 585.50572 - 0.00000 0.00000 580.59102 - 0.00000 0.00000 575.67633 - 0.00000 0.00000 570.76163 - 0.00000 0.00000 565.84693 - 0.00000 0.00000 565.84693 - -0.00381 -0.09535 559.29399 - -0.03051 -0.38141 552.74106 - -0.10298 -0.85818 546.18813 - -0.24410 -1.52565 539.63523 - -0.47677 -2.38383 533.08236 - -0.47677 -2.38383 533.08236 - -0.75709 -3.24466 527.62167 - -1.13011 -4.23792 522.16105 - -1.60909 -5.36362 516.70054 - -2.20725 -6.62175 511.24020 - -2.93785 -8.01232 505.78006 - -2.93785 -8.01232 505.78006 - -3.81413 -9.53532 500.32018 - -4.84933 -11.19076 494.86065 - -6.05669 -12.97863 489.40159 - -7.44947 -14.89894 483.94311 - -9.04090 -16.95168 478.48532 - -9.04090 -16.95168 478.48532 - -10.57850 -18.82296 473.79228 - -12.28125 -20.79219 469.09996 - -14.15757 -22.85937 464.40851 - -16.21587 -25.02449 459.71804 - -18.46459 -27.28757 455.02869 - -18.46459 -27.28757 455.02869 - -21.75334 -30.43844 448.81453 - -25.41109 -33.76142 442.60300 - -29.45748 -37.25651 436.39459 - -33.91212 -40.92371 430.18981 - -38.79463 -44.76303 423.98913 - -38.79463 -44.76303 423.98913 - -39.30717 -45.15643 423.36931 - -39.82420 -45.55155 422.74953 - -40.34575 -45.94839 422.12980 - -40.87183 -46.34695 421.51013 - -41.40246 -46.74723 420.89050 - -41.40248 -46.74680 420.89050 - -44.68595 -48.89143 417.16294 - -48.09788 -50.48948 413.43735 - -51.60042 -51.53289 409.71387 - -55.15551 -52.02167 405.99266 - -58.72688 -52.03326 402.27387 - -58.72688 -52.03325 402.27387 - -59.76630 -51.90304 401.19016 - -60.80273 -51.73228 400.10666 - -61.83528 -51.51437 399.02339 - -62.86299 -51.24932 397.94036 - -63.88498 -50.94370 396.85756 - -63.88498 -50.94370 396.85756 - -68.01211 -52.23852 392.52877 - -72.24379 -53.55775 388.20404 - -76.58193 -54.89878 383.88364 - -81.02804 -56.25653 379.56781 - -85.58329 -57.62619 375.25683 - -85.58329 -57.62619 375.25683 - -86.73926 -57.97074 374.17987 - -87.90212 -58.31581 373.10323 - -89.07190 -58.66145 372.02692 - -90.24858 -59.00763 370.95095 - -91.43220 -59.35426 369.87531 - -91.43220 -59.35426 369.87531 - -97.45462 -61.09530 364.50231 - -103.65153 -62.84421 359.13841 - -110.02369 -64.59995 353.78419 - -116.57168 -66.36067 348.44026 - -123.29593 -68.12483 343.10720 - -123.29593 -68.12483 343.10720 - -130.19673 -69.89140 337.78563 - -137.27426 -71.65921 332.47620 - -144.52859 -73.42745 327.17960 - -151.95974 -75.19542 321.89651 - -159.56765 -76.96289 316.62759 - -159.56765 -76.96289 316.62759 - -170.51542 -79.43343 309.27622 - -181.80886 -81.90073 301.95604 - -193.44739 -84.36297 294.66917 - -205.43022 -86.81926 287.41774 - -217.75653 -89.27019 280.20388 - -217.75652 -89.27024 280.20388 - -229.29016 -88.18986 273.54087 - -240.69490 -87.31765 266.91403 - -252.00573 -86.74481 260.32513 - -263.26150 -86.47062 253.77596 - -274.56461 -87.96225 247.26832 - -274.56469 -87.96377 247.26832 - -286.19236 -90.84916 240.80395 - -298.16615 -93.28879 234.38472 - -310.42813 -95.28264 228.01256 - -322.92032 -96.83073 221.68938 - -335.58480 -97.93304 215.41712 - -335.58480 -97.93305 215.41712 - -350.30139 -98.94440 208.26953 - -365.16917 -99.95574 201.19499 - -380.18815 -100.96709 194.19664 - -395.35833 -101.97843 187.27762 - -410.67970 -102.98978 180.44105 - -410.67970 -102.98978 180.44105 - -426.15228 -104.00113 173.69009 - -441.77604 -105.01247 167.02801 - -457.55100 -106.02382 160.45810 - -473.47716 -107.03516 153.98364 - -489.55452 -108.04651 147.60793 - -489.55453 -108.04648 147.60793 - -505.78307 -109.05782 141.33429 - -522.16282 -110.06917 135.16613 - -538.69375 -111.08051 129.10690 - -555.37589 -112.09186 123.16005 - -572.07509 -110.41159 117.32903 - -572.07497 -110.41081 117.32903 - -588.12375 -104.17298 111.61745 - -603.18240 -97.12663 106.02856 - -617.11861 -89.15724 100.56526 - -629.79445 -80.26543 95.23043 - -641.07771 -70.56566 90.02696 - -641.07776 -70.56604 90.02696 - -641.21875 -70.42845 89.95825 - -641.35947 -70.29071 89.88956 - -641.49991 -70.15281 89.82090 - -641.64008 -70.01475 89.75227 - -641.77997 -69.87654 89.68365 - -641.77997 -69.87654 89.68365 - -641.91962 -69.76536 89.61507 - -642.05903 -69.65421 89.54650 - -642.19823 -69.54308 89.47796 - -642.33721 -69.43195 89.40945 - -642.47596 -69.32085 89.34095 - -642.47596 -69.32086 89.34095 - -644.93551 -67.32223 88.11219 - -647.32323 -65.32965 86.89123 - -649.63930 -63.34176 85.67810 - -651.88389 -61.35846 84.47283 - -654.05718 -59.38091 83.27543 - -654.05711 -59.38168 83.27543 - -660.78740 -52.80236 79.34147 - -666.73203 -46.28207 75.49630 - -671.89674 -39.80299 71.74063 - -676.28625 -33.36134 68.07515 - -679.90538 -26.96750 64.50056 - -679.90545 -26.96836 64.50056 - -681.42843 -23.79308 62.74753 - -682.76041 -20.60749 61.01740 - -683.90146 -17.42842 59.31019 - -684.85194 -14.25538 57.62596 - -685.61229 -11.09146 55.96473 - -685.61222 -11.09286 55.96473 - -686.41034 -5.03719 53.24725 - -686.63650 0.51316 50.59383 - -686.30785 6.05923 48.00443 - -685.42471 11.60356 45.47903 - -683.98745 17.13875 43.01759 - -683.98747 17.13794 43.01759 - -682.39530 21.69375 41.04689 - -680.42978 26.24644 39.11901 - -678.09075 30.80397 37.23380 - -675.37776 35.36766 35.39112 - -672.29044 39.93218 33.59081 - -672.29038 39.93098 33.59081 - -668.04198 45.06087 31.45244 - -663.27238 50.36543 29.37640 - -657.96564 55.76745 27.36222 - -652.11921 61.15984 25.40938 - -645.74670 66.16129 23.51741 - -645.74529 66.14757 23.51741 - -634.61513 92.61648 20.97018 - -619.87155 117.82373 18.53905 - -601.67003 142.05506 16.22073 - -580.13282 165.50038 14.01189 - -555.36342 188.22796 11.90921 - -555.41780 188.61250 11.90921 - -527.45854 210.60953 9.90875 - -496.57064 229.96009 8.00477 - -463.25727 245.29150 6.19121 - -428.06778 256.79215 4.46206 - -391.52644 264.62912 2.81126 - -391.53887 265.02646 2.81126 - -354.09125 269.36716 1.23228 - -316.27284 270.34854 -0.28198 - -278.57066 267.53695 -1.73836 - -241.53857 260.95220 -3.14369 - -205.65276 251.18058 -4.50482 - -205.68466 250.84206 -4.50482 - -171.43337 237.95460 -5.82868 - -139.19816 222.05030 -7.12125 - -109.39738 203.18686 -8.38795 - -82.44148 181.41679 -9.63417 - -58.72622 156.95655 -10.86532 - -58.72674 156.95080 -10.86532 - -38.60131 130.38677 -12.08654 - -22.30459 101.97674 -13.30078 - -10.17645 70.81032 -14.51024 - -2.60973 36.81474 -15.71708 - 0.00015 0.00078 -16.92348 + 0.00000 0.00000 615.44884 + 0.00000 0.00000 610.53104 + 0.00000 0.00000 605.61323 + 0.00000 0.00000 600.69542 + 0.00000 0.00000 595.77761 + 0.00000 0.00000 590.85981 + 0.00000 0.00000 590.85981 + 0.00000 0.00000 585.94200 + 0.00000 0.00000 581.02419 + 0.00000 0.00000 576.10639 + 0.00000 0.00000 571.18858 + 0.00000 0.00000 566.27077 + 0.00000 0.00000 566.27077 + -0.00381 -0.09535 559.71369 + -0.03051 -0.38141 553.15661 + -0.10298 -0.85818 546.59954 + -0.24410 -1.52565 540.04249 + -0.47677 -2.38383 533.48547 + -0.47677 -2.38383 533.48547 + -0.75709 -3.24466 528.02133 + -1.13011 -4.23792 522.55725 + -1.60909 -5.36362 517.09329 + -2.20725 -6.62175 511.62949 + -2.93785 -8.01232 506.16590 + -2.93785 -8.01232 506.16590 + -3.81413 -9.53532 500.70256 + -4.84933 -11.19076 495.23958 + -6.05669 -12.97863 489.77706 + -7.44947 -14.89894 484.31513 + -9.04090 -16.95168 478.85389 + -9.04090 -16.95168 478.85389 + -10.57850 -18.82296 474.15787 + -12.28125 -20.79219 469.46259 + -14.15757 -22.85937 464.76816 + -16.21587 -25.02449 460.07472 + -18.46459 -27.28757 455.38240 + -18.46459 -27.28757 455.38240 + -21.75334 -30.43844 449.16430 + -25.41109 -33.76142 442.94883 + -29.45748 -37.25651 436.73649 + -33.91212 -40.92371 430.52776 + -38.79463 -44.76303 424.32315 + -38.79463 -44.76303 424.32315 + -39.30717 -45.15643 423.70293 + -39.82420 -45.55155 423.08276 + -40.34575 -45.94839 422.46264 + -40.87183 -46.34695 421.84257 + -41.40246 -46.74723 421.22255 + -41.40248 -46.74680 421.22255 + -44.68596 -48.89206 417.49262 + -48.09798 -50.49139 413.76466 + -51.60070 -51.53607 410.03881 + -55.15605 -52.02613 406.31523 + -58.72777 -52.03900 402.59407 + -58.72777 -52.03899 402.59407 + -59.76731 -51.90916 401.50966 + -60.80386 -51.73877 400.42548 + -61.83654 -51.52123 399.34152 + -62.86440 -51.25655 398.25779 + -63.88653 -50.95131 397.17430 + -63.88653 -50.95131 397.17430 + -68.01429 -52.24660 392.84275 + -72.24664 -53.56630 388.51526 + -76.58548 -54.90779 384.19209 + -81.03233 -56.26601 379.87350 + -85.58836 -57.63615 375.55975 + -85.58836 -57.63615 375.55975 + -86.74453 -57.98081 374.48210 + -87.90759 -58.32600 373.40478 + -89.07757 -58.67176 372.32778 + -90.25447 -59.01805 371.25111 + -91.43830 -59.36481 370.17478 + -91.43830 -59.36481 370.17478 + -97.46179 -61.10643 364.79833 + -103.65985 -62.85594 359.43098 + -110.03321 -64.61226 354.07331 + -116.58246 -66.37358 348.72593 + -123.30804 -68.13833 343.38942 + -123.30804 -68.13833 343.38942 + -130.21022 -69.90550 338.06440 + -137.28918 -71.67390 332.75153 + -144.54501 -73.44274 327.45149 + -151.97772 -75.21130 322.16494 + -159.58725 -76.97938 316.89258 + -159.58725 -76.97938 316.89258 + -170.53739 -79.45076 309.53640 + -181.83332 -81.91890 302.21141 + -193.47444 -84.38198 294.91973 + -205.45999 -86.83911 287.66350 + -217.78914 -89.29088 280.44484 + -217.78913 -89.29093 280.44484 + -229.32563 -88.21305 273.77738 + -240.73355 -87.34335 267.14609 + -252.04787 -86.77301 260.55276 + -263.30747 -86.50132 253.99916 + -274.61468 -87.99420 247.48709 + -274.61476 -87.99571 247.48709 + -286.24658 -90.88111 241.01831 + -298.22453 -93.32074 234.59468 + -310.49066 -95.31459 228.21811 + -322.98701 -96.86268 221.89055 + -335.65564 -97.96499 215.61391 + -335.65564 -97.96500 215.61391 + -350.37700 -98.97634 208.46130 + -365.24956 -99.98769 201.38176 + -380.27332 -100.99903 194.37842 + -395.44827 -102.01038 187.45443 + -410.77442 -103.02172 180.61290 + -410.77442 -103.02173 180.61290 + -426.25177 -104.03307 173.85702 + -441.88031 -105.04442 167.19002 + -457.66005 -106.05576 160.61522 + -473.59099 -107.06711 154.13590 + -489.67312 -108.07846 147.75535 + -489.67313 -108.07843 147.75535 + -505.90645 -109.08977 141.47689 + -522.29097 -110.10112 135.30394 + -538.82668 -111.11246 129.23994 + -555.51359 -112.12381 123.28836 + -572.21768 -110.44565 117.45263 + -572.21756 -110.44490 117.45263 + -588.27174 -104.21124 111.73637 + -603.33642 -97.16892 106.14283 + -617.27925 -89.20342 100.67491 + -629.96227 -80.31535 95.33550 + -641.25326 -70.61915 90.12748 + -641.25331 -70.61952 90.12748 + -641.39441 -70.48198 90.05871 + -641.53524 -70.34429 89.98997 + -641.67579 -70.20644 89.92124 + -641.81606 -70.06842 89.85255 + -641.95606 -69.93025 89.78388 + -641.95606 -69.93025 89.78388 + -642.09581 -69.81902 89.71523 + -642.23534 -69.70780 89.64660 + -642.37464 -69.59659 89.57800 + -642.51373 -69.48540 89.50942 + -642.65259 -69.37423 89.44087 + -642.65258 -69.37424 89.44087 + -645.11404 -67.37441 88.21102 + -647.50362 -65.38064 86.98898 + -649.82150 -63.39157 85.77476 + -652.06786 -61.40710 84.56840 + -654.24288 -59.42839 83.36993 + -654.24280 -59.42916 83.36993 + -660.97857 -52.84608 79.43238 + -666.92823 -46.32219 75.58366 + -672.09755 -39.83964 71.82446 + -676.49125 -33.39467 68.15548 + -680.11419 -26.99765 64.57741 + -680.11426 -26.99851 64.57741 + -681.63817 -23.80099 62.82265 + -682.97059 -20.61403 61.09080 + -684.11199 -17.43362 59.38188 + -685.06274 -14.25928 57.69594 + -685.82328 -11.09409 56.03301 + -685.82321 -11.09550 56.03301 + -686.64135 -5.33535 53.31272 + -686.89718 0.21767 50.65650 + -686.59795 5.76641 48.06433 + -685.74396 11.31340 45.53619 + -684.33558 16.85126 43.07204 + -684.33561 16.85045 43.07204 + -682.76692 21.40845 41.09913 + -680.82471 25.96334 39.16907 + -678.50880 30.52307 37.28171 + -675.81875 35.08898 35.43690 + -672.75419 39.65573 33.63450 + -672.75413 39.65453 33.63450 + -668.53315 44.78883 31.49360 + -663.79053 50.09796 29.41509 + -658.51031 55.50462 27.39848 + -652.68993 60.90174 25.44328 + -646.34299 65.90800 23.54898 + -646.34157 65.89423 23.54898 + -635.24473 92.39375 20.99859 + -620.53018 117.63206 18.56443 + -602.35322 141.89612 16.24318 + -580.83586 165.37602 14.03154 + -556.08133 188.14026 11.92620 + -556.13580 188.52514 11.92620 + -528.18550 210.57341 9.92321 + -497.29816 229.98795 8.01682 + -463.97649 245.38206 6.20099 + -428.76999 256.94454 4.46969 + -392.20302 264.84286 2.81689 + -392.21555 265.24146 2.81689 + -354.73256 269.65730 1.23602 + -316.86826 270.71401 -0.28001 + -279.11138 267.94053 -1.73805 + -242.02282 261.35470 -3.14495 + -206.08094 251.57856 -4.50755 + -206.11286 251.23960 -4.50755 + -171.80642 238.34435 -5.83281 + -139.51737 222.42919 -7.12671 + -109.66448 203.55194 -8.39467 + -82.65860 181.76524 -9.64211 + -58.89552 157.29340 -10.87445 + -58.89601 157.28808 -10.87445 + -38.71991 130.75962 -12.09681 + -22.37357 102.29725 -13.31219 + -10.20760 71.02931 -14.52275 + -2.61764 36.92689 -15.73070 + 0.00015 0.00078 -16.93821 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18870,65 +19006,65 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -3.12560 1.16620 6.69068 0.32582 0.59915 0.27938 5.73716 - -3.19420 2.33240 13.38135 0.65163 0.54957 0.27938 5.73716 - -3.26280 3.49860 20.07203 0.97745 0.53305 0.27938 5.73716 - -3.33140 4.66480 26.76270 1.30327 0.52479 0.27938 5.73716 - -3.40000 5.83100 31.78071 1.54763 0.51983 0.27938 5.73716 - -3.40000 5.83100 33.94104 1.65283 0.51983 0.27938 5.73716 - -3.42000 6.17100 35.40401 1.72408 0.51874 0.27938 5.73716 - -3.44000 6.51100 37.35465 1.81907 0.51776 0.27938 5.73716 - -3.46000 6.85100 39.30528 1.91406 0.51688 0.27938 5.73716 - -3.48000 7.19100 41.25592 2.00905 0.51608 0.27938 5.73716 - -3.50000 7.53100 42.71889 2.08029 0.51535 0.27938 5.73716 - -3.50000 7.53100 18.64569 2.88159 0.75653 0.38223 2.47330 - -3.58000 7.56220 18.43347 2.90406 0.75647 0.38402 2.43758 - -3.66000 7.59340 18.21464 2.92802 0.75641 0.38560 2.39875 - -3.74000 7.62460 18.05082 2.94915 0.75635 0.38679 2.36744 - -3.82000 7.65580 17.92599 2.96908 0.75628 0.38782 2.34149 - -3.90000 7.68700 17.85097 2.98364 0.75622 0.38854 2.32459 - -3.90000 7.68700 17.82388 2.98964 0.75622 0.38882 2.31812 + -3.12560 1.16620 6.69068 0.32582 0.57905 0.27938 5.73716 + -3.19420 2.33240 13.38135 0.65163 0.54039 0.27938 5.73716 + -3.26280 3.49860 20.07203 0.97745 0.52751 0.27938 5.73716 + -3.33140 4.66480 26.76270 1.30327 0.52106 0.27938 5.73716 + -3.40000 5.83100 31.78071 1.54763 0.51720 0.27938 5.73716 + -3.40000 5.83100 33.94104 1.65283 0.51720 0.27938 5.73716 + -3.42000 6.17100 35.40401 1.72408 0.51635 0.27938 5.73716 + -3.44000 6.51100 37.35465 1.81907 0.51558 0.27938 5.73716 + -3.46000 6.85100 39.30528 1.91406 0.51490 0.27938 5.73716 + -3.48000 7.19100 41.25592 2.00905 0.51427 0.27938 5.73716 + -3.50000 7.53100 42.71889 2.08029 0.51371 0.27938 5.73716 + -3.50000 7.53100 18.64569 2.88159 0.75489 0.38223 2.47330 + -3.58000 7.56220 18.43347 2.90406 0.75514 0.38402 2.43758 + -3.66000 7.59340 18.21464 2.92802 0.75540 0.38560 2.39875 + -3.74000 7.62460 18.05082 2.94915 0.75565 0.38679 2.36744 + -3.82000 7.65580 17.92599 2.96908 0.75590 0.38782 2.34149 + -3.90000 7.68700 17.85097 2.98364 0.75615 0.38854 2.32459 + -3.90000 7.68700 17.82388 2.98964 0.75615 0.38882 2.31812 -3.92000 7.69480 17.80882 2.99322 0.75621 0.38899 2.31440 -3.94000 7.70260 17.78978 2.99798 0.75619 0.38922 2.30958 -3.96000 7.71040 17.77195 3.00272 0.75618 0.38944 2.30493 -3.98000 7.71820 17.75525 3.00746 0.75616 0.38966 2.30044 -4.00000 7.72600 17.74339 3.01100 0.75615 0.38982 2.29716 - -4.00000 7.72600 17.72167 3.01806 0.75995 0.39014 2.29088 - -4.10000 7.76500 17.67620 3.03564 0.75523 0.39094 2.27639 - -4.20000 7.80400 17.63118 3.05895 0.75516 0.39197 2.25925 - -4.30000 7.84300 17.60131 3.08216 0.75509 0.39298 2.24421 - -4.40000 7.88200 17.58353 3.10531 0.75502 0.39397 2.23085 - -4.50000 7.92100 17.57648 3.12264 0.75495 0.39471 2.22171 - -4.50000 7.92100 17.57467 3.13418 0.75495 0.39519 2.21602 - -4.60000 7.96000 17.57572 3.15149 0.75489 0.39592 2.20801 - -4.70000 7.99900 17.58265 3.17454 0.75482 0.39687 2.19811 - -4.80000 8.03800 17.59531 3.19757 0.75475 0.39781 2.18902 - -4.90000 8.07700 17.61286 3.22059 0.75469 0.39874 2.18062 - -5.00000 8.11600 17.62870 3.23785 0.75462 0.39943 2.17471 - -5.00000 8.11600 17.64306 3.25165 0.96505 0.39997 2.17021 - -5.14000 8.17060 17.67127 3.27580 0.75220 0.40093 2.16279 - -5.28000 8.22520 17.71375 3.30799 0.75213 0.40218 2.15359 - -5.42000 8.27980 17.76125 3.34018 0.75206 0.40341 2.14513 - -5.56000 8.33440 17.81303 3.37235 0.75199 0.40463 2.13729 - -5.70000 8.38900 17.85419 3.39648 0.75192 0.40553 2.13175 - -5.70000 8.38900 38.17752 -2.65590 0.71003 0.00000 4.79516 - -5.83000 6.67970 35.02708 -3.25060 0.71278 0.00000 5.24381 - -5.96000 4.97040 30.83230 -4.04265 0.71742 0.00000 6.20318 - -6.09000 3.26110 26.64227 -4.83343 0.72691 0.00000 8.16972 - -6.22000 1.55180 22.45532 -5.62271 0.75734 0.00000 14.47050 + -4.00000 7.72600 17.72167 3.01806 0.75615 0.39014 2.29088 + -4.10000 7.76500 17.67620 3.03564 0.75607 0.39094 2.27639 + -4.20000 7.80400 17.63118 3.05895 0.75600 0.39197 2.25925 + -4.30000 7.84300 17.60131 3.08216 0.75592 0.39298 2.24421 + -4.40000 7.88200 17.58353 3.10531 0.75585 0.39397 2.23085 + -4.50000 7.92100 17.57648 3.12264 0.75578 0.39471 2.22171 + -4.50000 7.92100 17.57467 3.13418 0.75578 0.39519 2.21602 + -4.60000 7.96000 17.57572 3.15149 0.75571 0.39592 2.20801 + -4.70000 7.99900 17.58265 3.17454 0.75564 0.39687 2.19811 + -4.80000 8.03800 17.59531 3.19757 0.75557 0.39781 2.18902 + -4.90000 8.07700 17.61286 3.22059 0.75550 0.39874 2.18062 + -5.00000 8.11600 17.62870 3.23785 0.75543 0.39943 2.17471 + -5.00000 8.11600 17.64306 3.25165 0.75543 0.39997 2.17021 + -5.14000 8.17060 17.67127 3.27580 0.75533 0.40093 2.16279 + -5.28000 8.22520 17.71375 3.30799 0.75524 0.40218 2.15359 + -5.42000 8.27980 17.76125 3.34018 0.75515 0.40341 2.14513 + -5.56000 8.33440 17.81303 3.37235 0.75505 0.40463 2.13729 + -5.70000 8.38900 17.85419 3.39648 0.75496 0.40553 2.13175 + -5.70000 8.38900 38.17752 -2.65590 0.71308 0.00000 4.79516 + -5.83000 6.67970 35.02708 -3.25060 0.71563 0.00000 5.24381 + -5.96000 4.97040 30.83230 -4.04265 0.72124 0.00000 6.20318 + -6.09000 3.26110 26.64227 -4.83343 0.73275 0.00000 8.16972 + -6.22000 1.55180 22.45532 -5.62271 0.76959 0.00000 14.47050 -6.35000 0.00000 19.31639 -6.21359 0.00000 0.00000 0.00000 -6.35000 0.00000 17.22423 -6.60686 0.00000 0.00000 0.00000 -6.48000 0.00000 14.08644 -7.19567 0.00000 0.00000 0.00000 -6.61000 0.00000 9.90311 -7.97870 0.00000 0.00000 0.00000 -6.74000 0.00000 5.71984 -8.75890 0.00000 0.00000 0.00000 -6.87000 0.00000 1.53619 -7.47015 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.48637 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 6.07969 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -18940,20 +19076,20 @@ Lambda passive -8.79400 5.63006 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 6.82456 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 8.01907 0.00000 0.00000 0.00000 0.00000 0.00000 - -9.24250 9.21357 31.25457 0.00000 0.58922 0.00000 3.50586 - -9.24250 9.21357 38.78231 0.00000 0.58922 0.00000 4.07711 - -9.39200 10.40808 42.24620 0.97279 0.58786 0.09346 4.05898 - -9.54150 11.60258 46.84351 3.99595 0.58678 0.34440 4.03733 - -9.69100 12.79709 51.42474 4.40854 0.58591 0.34450 4.01847 - -9.84050 13.99159 55.99831 4.82131 0.58518 0.34459 4.00228 - -9.99000 15.18610 59.42709 5.13098 0.58457 0.34465 3.99175 - -9.99000 15.18610 60.58540 5.23560 0.58457 0.34467 3.98848 - -9.99200 15.20208 60.63128 5.23975 0.58456 0.34467 3.98835 - -9.99400 15.21806 60.69245 5.24527 0.58455 0.34467 3.98819 - -9.99600 15.23404 60.75361 5.25080 0.58454 0.34468 3.98802 - -9.99800 15.25002 60.81478 5.25632 0.58454 0.34468 3.98785 - -10.00000 15.26600 60.86066 5.26047 0.58453 0.34468 3.98772 - -10.00000 15.26600 56.19237 0.74643 0.70644 0.04889 3.68023 + -9.24250 9.21357 31.25457 0.00000 0.57738 0.00000 3.50586 + -9.24250 9.21357 38.78231 0.00000 0.57738 0.00000 4.07711 + -9.39200 10.40808 42.24620 0.97279 0.57738 0.09346 4.05898 + -9.54150 11.60258 46.84351 3.99595 0.57738 0.34440 4.03733 + -9.69100 12.79709 51.42474 4.40854 0.57738 0.34450 4.01847 + -9.84050 13.99159 55.99831 4.82131 0.57738 0.34459 4.00228 + -9.99000 15.18610 59.42709 5.13098 0.57738 0.34465 3.99175 + -9.99000 15.18610 60.58540 5.23560 0.57738 0.34467 3.98848 + -9.99200 15.20208 60.63128 5.23975 0.57738 0.34467 3.98835 + -9.99400 15.21806 60.69245 5.24527 0.57738 0.34467 3.98819 + -9.99600 15.23404 60.75361 5.25080 0.58329 0.34468 3.98802 + -9.99800 15.25002 60.81478 5.25632 0.58329 0.34468 3.98785 + -10.00000 15.26600 60.86066 5.26047 0.58328 0.34468 3.98772 + -10.00000 15.26600 56.19237 0.74643 0.70519 0.04889 3.68023 -10.00200 15.27678 56.21166 0.75019 0.70644 0.04911 3.67955 -10.00400 15.28756 56.23739 0.75520 0.70643 0.04940 3.67864 -10.00600 15.29834 56.26312 0.76021 0.70643 0.04969 3.67773 @@ -18971,31 +19107,31 @@ Lambda passive -10.55000 18.23050 63.29175 2.12445 0.70528 0.11653 3.47175 -10.67000 18.87730 64.84871 2.42584 0.70507 0.12851 3.43527 -10.79000 19.52410 66.01759 2.65198 0.70488 0.13697 3.40958 - -10.79000 19.52410 66.60240 2.76507 0.60027 0.14104 3.39722 - -10.85000 19.84750 67.18746 2.87819 0.70512 0.14502 3.38519 - -10.91000 20.17090 67.96787 3.02905 0.70503 0.15017 3.36960 - -10.97000 20.49430 68.74864 3.17994 0.70494 0.15516 3.35452 - -11.03000 20.81770 69.52975 3.33086 0.70485 0.16000 3.33993 - -11.09000 21.14110 70.11580 3.44407 0.70476 0.16353 3.32930 - -11.09000 21.14110 70.63689 3.54471 1.53449 0.16661 3.32005 - -11.19000 21.68010 71.61431 3.73346 0.70268 0.17221 3.30323 - -11.29000 22.21910 72.91820 3.98519 0.70259 0.17936 3.28178 - -11.39000 22.75810 74.22282 4.23700 0.70252 0.18618 3.26138 - -11.49000 23.29710 75.52811 4.48888 0.70244 0.19268 3.24195 - -11.59000 23.83610 76.50747 4.67783 0.70237 0.19737 3.22798 - -11.59000 23.83610 77.10179 4.79248 0.70237 0.20013 3.21974 - -11.67200 24.27808 77.90530 4.94747 0.70231 0.20378 3.20887 - -11.75400 24.72006 78.97694 5.15417 0.70226 0.20850 3.19485 - -11.83600 25.16204 80.04891 5.36090 0.70221 0.21306 3.18134 - -11.91800 25.60402 81.12121 5.56768 0.70216 0.21745 3.16830 - -12.00000 26.04600 81.92561 5.72279 0.70211 0.22065 3.15882 - -12.00000 26.04600 54.92014 11.95931 0.74400 0.44552 2.04596 - -12.10000 29.23500 59.12384 13.36736 0.74369 0.45724 2.02236 - -12.20000 32.42400 64.71839 15.24483 0.74344 0.47017 1.99600 - -12.30000 35.61300 70.30038 17.12239 0.74324 0.48079 1.97401 - -12.40000 38.80200 75.86981 19.00001 0.74307 0.48967 1.95531 - -12.50000 41.99100 80.03909 20.40826 0.74293 0.49542 1.94299 - -12.50000 41.99100 269.34335 10.72368 0.47183 0.25323 6.36029 + -10.79000 19.52410 66.60240 2.76507 0.70488 0.14104 3.39722 + -10.85000 19.84750 67.18746 2.87819 0.70479 0.14502 3.38519 + -10.91000 20.17090 67.96787 3.02905 0.70470 0.15017 3.36960 + -10.97000 20.49430 68.74864 3.17994 0.70462 0.15516 3.35452 + -11.03000 20.81770 69.52975 3.33086 0.70453 0.16000 3.33993 + -11.09000 21.14110 70.11580 3.44407 0.70445 0.16353 3.32930 + -11.09000 21.14110 70.63689 3.54471 0.70445 0.16661 3.32005 + -11.19000 21.68010 71.61431 3.73346 0.70433 0.17221 3.30323 + -11.29000 22.21910 72.91820 3.98519 0.70420 0.17936 3.28178 + -11.39000 22.75810 74.22282 4.23700 0.70409 0.18618 3.26138 + -11.49000 23.29710 75.52811 4.48888 0.70398 0.19268 3.24195 + -11.59000 23.83610 76.50747 4.67783 0.70387 0.19737 3.22798 + -11.59000 23.83610 77.10179 4.79248 0.70387 0.20013 3.21974 + -11.67200 24.27808 77.90530 4.94747 0.70379 0.20378 3.20887 + -11.75400 24.72006 78.97694 5.15417 0.70371 0.20850 3.19485 + -11.83600 25.16204 80.04891 5.36090 0.70363 0.21306 3.18134 + -11.91800 25.60402 81.12121 5.56768 0.70355 0.21745 3.16830 + -12.00000 26.04600 81.92561 5.72279 0.70348 0.22065 3.15882 + -12.00000 26.04600 54.92014 11.95931 0.74537 0.44552 2.04596 + -12.10000 29.23500 59.12384 13.36736 0.74514 0.45724 2.02236 + -12.20000 32.42400 64.71839 15.24483 0.74475 0.47017 1.99600 + -12.30000 35.61300 70.30038 17.12239 0.74443 0.48079 1.97401 + -12.40000 38.80200 75.86981 19.00001 0.74416 0.48967 1.95531 + -12.50000 41.99100 80.03909 20.40826 0.74393 0.49542 1.94299 + -12.50000 41.99100 269.34335 10.72368 0.47283 0.25323 6.36029 -12.64000 43.41760 267.41943 11.00678 0.47177 0.25351 6.15924 -12.78000 44.84420 269.45740 11.38342 0.47172 0.25384 6.00875 -12.92000 46.27080 273.98283 11.75915 0.47167 0.25414 5.92129 @@ -19007,24 +19143,24 @@ Lambda passive -13.62000 53.40380 307.56005 13.62723 0.47145 0.25517 5.75914 -13.76000 54.83040 315.06961 13.99919 0.47142 0.25532 5.74626 -13.90000 56.25700 320.77211 14.27790 0.47138 0.25542 5.73828 - -13.90000 56.25700 324.60417 14.46357 0.47008 0.25548 5.73367 - -14.04000 57.68360 330.38979 14.74188 0.47008 0.25556 5.72762 - -14.18000 59.11020 338.15609 15.11268 0.47008 0.25567 5.72077 - -14.32000 60.53680 345.97352 15.48315 0.47008 0.25576 5.71509 - -14.46000 61.96340 353.83197 15.85333 0.47008 0.25585 5.71034 - -14.60000 63.39000 359.74715 16.13080 0.47008 0.25591 5.70725 - -14.60000 63.39000 363.70039 16.31569 0.47008 0.25595 5.70540 - -14.74000 64.81660 369.64295 16.59291 0.47008 0.25600 5.70291 - -14.88000 66.24320 377.58487 16.96235 0.47008 0.25606 5.69998 - -15.02000 67.66980 385.54580 17.33159 0.47008 0.25612 5.69746 - -15.16000 69.09640 393.52279 17.70064 0.47008 0.25617 5.69527 - -15.30000 70.52300 399.51422 17.97732 0.47008 0.25621 5.69382 - -15.30000 70.52300 403.51263 18.16172 0.47008 0.25623 5.69293 - -15.44000 71.94960 409.51572 18.43823 0.47008 0.25627 5.69170 - -15.58000 73.37620 417.52807 18.80680 0.47008 0.25631 5.69024 - -15.72000 74.80280 425.54909 19.17524 0.47008 0.25634 5.68895 - -15.86000 76.22940 433.57769 19.54355 0.47008 0.25638 5.68780 - -16.00000 77.65600 439.60333 19.81970 0.47008 0.25640 5.68702 + -13.90000 56.25700 324.60417 14.46357 0.47138 0.25548 5.73367 + -14.04000 57.68360 330.38979 14.74188 0.47135 0.25556 5.72762 + -14.18000 59.11020 338.15609 15.11268 0.47132 0.25567 5.72077 + -14.32000 60.53680 345.97352 15.48315 0.47129 0.25576 5.71509 + -14.46000 61.96340 353.83197 15.85333 0.47126 0.25585 5.71034 + -14.60000 63.39000 359.74715 16.13080 0.47124 0.25591 5.70725 + -14.60000 63.39000 363.70039 16.31569 0.47124 0.25595 5.70540 + -14.74000 64.81660 369.64295 16.59291 0.47121 0.25600 5.70291 + -14.88000 66.24320 377.58487 16.96235 0.47119 0.25606 5.69998 + -15.02000 67.66980 385.54580 17.33159 0.47116 0.25612 5.69746 + -15.16000 69.09640 393.52279 17.70064 0.47114 0.25617 5.69527 + -15.30000 70.52300 399.51422 17.97732 0.47112 0.25621 5.69382 + -15.30000 70.52300 403.51263 18.16172 0.47112 0.25623 5.69293 + -15.44000 71.94960 409.51572 18.43823 0.47110 0.25627 5.69170 + -15.58000 73.37620 417.52807 18.80680 0.47108 0.25631 5.69024 + -15.72000 74.80280 425.54909 19.17524 0.47106 0.25634 5.68895 + -15.86000 76.22940 433.57769 19.54355 0.47104 0.25638 5.68780 + -16.00000 77.65600 439.60333 19.81970 0.47103 0.25640 5.68702 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -19090,52 +19226,52 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00292 0.00292 1 0 A - 6.48801 0.00000 6.69068 0.69872 220 97 2 - 13.14990 0.00000 13.38135 1.28182 220 98 2 - 19.81180 0.00000 20.07203 1.86492 220 99 2 - 26.47369 0.00000 26.76270 2.44802 220 99 2 - 31.46292 0.00000 31.78071 2.87957 220 99 2 - 33.62325 0.00000 33.94104 3.07531 220 99 2 - 35.07783 0.00000 35.40401 3.20112 220 99 2 - 37.02008 0.00000 37.35465 3.37112 220 99 2 - 38.96232 0.00000 39.30528 3.54112 220 99 2 - 40.90457 0.00000 41.25592 3.71112 220 99 2 - 42.35915 0.00000 42.71889 3.83732 220 99 2 - 18.53327 0.00000 18.64569 5.70336 220 99 2 - 18.31056 0.78480 18.43347 5.72058 220 99 2 - 18.08125 1.56960 18.21464 5.74371 220 99 2 - 17.90694 2.35440 18.05082 5.76683 220 99 2 - 17.77163 3.13920 17.92599 5.78996 220 99 2 - 17.68612 3.92400 17.85097 5.80718 220 99 2 - 17.65903 3.92400 17.82388 5.81456 220 99 2 - 17.64135 4.12020 17.80882 5.81886 220 99 2 - 17.61969 4.31640 17.78978 5.82464 220 99 2 - 17.59924 4.51260 17.77195 5.83043 220 99 2 - 17.57992 4.70880 17.75525 5.83621 220 99 2 - 17.56544 4.90500 17.74339 5.84051 220 99 2 - 17.54372 4.90500 17.72167 5.87880 220 99 2 - 17.48515 5.88600 17.67620 5.86436 220 99 2 - 17.42704 6.86700 17.63118 5.89327 220 99 2 - 17.38407 7.84800 17.60131 5.92217 220 99 2 - 17.35320 8.82900 17.58353 5.95108 220 99 2 - 17.33307 9.81000 17.57648 5.97262 220 99 2 - 17.33126 9.81000 17.57467 5.98735 220 99 2 - 17.31924 10.79100 17.57572 6.00889 220 99 2 - 17.31310 11.77200 17.58265 6.03780 220 98 2 - 17.31270 12.75300 17.59531 6.06670 220 98 2 - 17.31720 13.73400 17.61286 6.09561 220 98 2 - 17.32001 14.71500 17.62870 6.11716 220 98 2 - 17.33437 14.71500 17.64306 7.84556 220 98 2 - 17.34435 16.08840 17.67127 6.14596 220 98 2 - 17.36862 17.46180 17.71375 6.18643 220 98 2 - 17.39795 18.83520 17.76125 6.22690 220 98 2 - 17.43159 20.20860 17.81303 6.26737 220 98 2 - 17.45466 21.58200 17.85419 6.29757 220 98 2 - 36.89904 21.58200 38.17752 5.65304 220 97 2 - 33.69498 25.39730 35.02708 4.76115 220 96 2 - 29.44671 29.21260 30.83230 3.56584 220 96 2 - 25.20338 33.02790 26.64227 2.37054 220 95 2 - 20.96333 36.84320 22.45532 1.17524 220 93 2 + 6.47426 0.00000 6.69068 0.67529 220 97 2 + 13.13614 0.00000 13.38135 1.26042 220 98 2 + 19.79802 0.00000 20.07203 1.84554 220 99 2 + 26.45989 0.00000 26.76270 2.43066 220 99 2 + 31.44910 0.00000 31.78071 2.86500 220 99 2 + 33.60943 0.00000 33.94104 3.05975 220 99 2 + 35.06401 0.00000 35.40401 3.18638 220 99 2 + 37.00625 0.00000 37.35465 3.35697 220 99 2 + 38.94849 0.00000 39.30528 3.52756 220 99 2 + 40.89073 0.00000 41.25592 3.69815 220 99 2 + 42.34531 0.00000 42.71889 3.82507 220 99 2 + 18.52894 0.00000 18.64569 5.69096 220 99 2 + 18.30623 0.78480 18.43347 5.71055 220 99 2 + 18.07691 1.56960 18.21464 5.73604 220 99 2 + 17.90259 2.35440 18.05082 5.76152 220 99 2 + 17.76728 3.13920 17.92599 5.78701 220 99 2 + 17.68176 3.92400 17.85097 5.80659 220 99 2 + 17.65467 3.92400 17.82388 5.81397 220 99 2 + 17.63699 4.12020 17.80882 5.81886 220 99 2 + 17.61533 4.31640 17.78978 5.82464 220 99 2 + 17.59488 4.51260 17.77195 5.83043 220 99 2 + 17.57555 4.70880 17.75525 5.83621 220 99 2 + 17.56107 4.90500 17.74339 5.84051 220 99 2 + 17.53935 4.90500 17.72167 5.84936 220 99 2 + 17.48078 5.88600 17.67620 5.87089 220 99 2 + 17.42265 6.86700 17.63118 5.89980 220 99 2 + 17.37968 7.84800 17.60131 5.92871 220 99 2 + 17.34881 8.82900 17.58353 5.95761 220 99 2 + 17.32867 9.81000 17.57648 5.97915 220 99 2 + 17.32686 9.81000 17.57467 5.99389 220 99 2 + 17.31483 10.79100 17.57572 6.01542 220 99 2 + 17.30869 11.77200 17.58265 6.04433 220 98 2 + 17.30828 12.75300 17.59531 6.07324 220 98 2 + 17.31278 13.73400 17.61286 6.10214 220 98 2 + 17.31558 14.71500 17.62870 6.12368 220 98 2 + 17.32994 14.71500 17.64306 6.14136 220 98 2 + 17.33991 16.08840 17.67127 6.17152 220 98 2 + 17.36417 17.46180 17.71375 6.21199 220 98 2 + 17.39350 18.83520 17.76125 6.25245 220 98 2 + 17.42714 20.20860 17.81303 6.29292 220 98 2 + 17.45020 21.58200 17.85419 6.32309 220 98 2 + 36.88478 21.58200 38.17752 5.67729 220 97 2 + 33.68071 25.39730 35.02708 4.78017 220 96 2 + 29.43245 29.21260 30.83230 3.58486 220 95 2 + 25.18913 33.02790 26.64227 2.38956 220 95 2 + 20.94909 36.84320 22.45532 1.19425 220 93 2 0.00000 40.65850 0.00000 0.00000 1 0 A 0.00000 40.65850 0.00000 0.00000 1 0 A 0.00000 44.47380 0.00000 0.00000 1 0 A @@ -19160,91 +19296,91 @@ Status character 0.00000 77.33414 0.00000 0.00000 1 0 A 0.00000 78.80074 0.00000 0.00000 1 0 A 0.00000 80.26733 0.00000 0.00000 1 0 A - 26.67280 81.73392 31.25457 5.25288 220 85 2 - 34.20054 81.73392 38.78231 5.60480 220 88 2 - 37.63566 83.20052 42.24620 6.11853 220 89 2 - 42.21274 84.66711 46.84351 6.80821 220 90 2 - 46.78250 86.13371 51.42474 7.49790 220 91 2 - 51.35356 87.60031 55.99831 8.18758 220 92 2 - 54.78899 89.06690 59.42709 8.70270 220 92 2 - 55.94730 89.06690 60.58540 8.87960 220 92 2 - 55.99333 89.08652 60.63128 8.88649 220 92 2 - 56.05465 89.10614 60.69245 8.89572 220 92 2 - 56.11597 89.12576 60.75361 8.90495 220 92 2 - 56.17729 89.14538 60.81478 8.91417 220 92 2 - 56.22333 89.16500 60.86066 8.92106 220 92 2 - 46.18966 89.16500 56.19237 10.78642 220 82 2 - 46.18115 89.18462 56.21166 10.79205 220 82 2 - 46.17554 89.20424 56.23739 10.79959 220 82 2 - 46.16994 89.22386 56.26312 10.80713 220 82 2 - 46.16435 89.24348 56.28885 10.81467 220 82 2 - 46.15587 89.26310 56.30815 10.82030 220 82 2 - 46.21075 89.26310 56.43038 10.85648 220 82 2 - 46.05923 89.61626 56.77789 10.95790 220 81 2 - 45.96177 89.96942 57.24150 11.09359 220 80 2 - 45.86637 90.32258 57.70540 11.22928 220 79 2 - 45.77305 90.67574 58.16959 11.36497 220 79 2 - 45.62968 91.02890 58.51790 11.46641 220 78 2 - 45.85556 91.02890 59.02132 11.61482 220 78 2 - 45.39268 92.20610 60.18420 11.95297 220 75 2 - 45.12670 93.38330 61.73682 12.40527 220 73 2 - 44.88396 94.56050 63.29175 12.85757 220 71 2 - 44.66452 95.73770 64.84871 13.30988 220 69 2 - 44.29378 96.91490 66.01759 13.64820 220 67 2 - 44.04313 96.91490 66.60240 11.76836 220 66 2 - 44.38090 97.50350 67.18746 13.99487 220 66 2 - 44.29755 98.09210 67.96787 14.22102 220 65 2 - 44.22008 98.68070 68.74864 14.44717 220 64 2 - 44.14848 99.26930 69.52975 14.67332 220 63 2 - 43.99523 99.85790 70.11580 14.84249 220 63 2 - 48.64189 99.85790 70.63689 32.64751 220 69 2 - 43.97570 100.83890 71.61431 15.23410 220 61 2 - 43.89554 101.81990 72.91820 15.61102 220 60 2 - 43.83165 102.80090 74.22282 15.98794 220 59 2 - 43.78401 103.78190 75.52811 16.36486 220 58 2 - 43.60648 104.76290 76.50747 16.64713 220 57 2 - 43.87242 104.76290 77.10179 16.81939 220 57 2 - 43.73892 105.56732 77.90530 17.05085 220 56 2 - 43.73609 106.37174 78.97694 17.35993 220 55 2 - 43.74404 107.17616 80.04891 17.66900 220 55 2 - 43.76275 107.98058 81.12121 17.97808 220 54 2 - 43.67220 108.78500 81.92561 18.20957 220 53 2 - 42.38328 108.78500 54.92014 19.97128 220 77 2 - 43.33310 106.76600 59.12384 21.74176 220 73 2 - 44.98394 104.74700 64.71839 24.10538 220 70 2 - 46.66100 102.72800 70.30038 26.46901 220 66 2 - 48.36403 100.70900 75.86981 28.83264 220 64 2 - 49.42435 98.69000 80.03909 30.60396 220 62 2 - 176.55118 98.69000 269.34335 19.98077 220 66 2 - 168.31359 100.06340 267.41943 20.48311 220 63 2 - 161.95212 101.43680 269.45740 21.15373 220 60 2 - 156.86183 102.81020 273.98283 21.82434 220 57 2 - 152.55672 104.18360 279.72618 22.49496 220 55 2 - 148.16126 105.55700 284.49143 22.99739 220 52 2 - 149.49962 105.55700 287.83614 23.33377 220 52 2 - 142.74125 106.93040 293.03560 23.83620 110 49 1 - 120.56403 108.30380 300.19678 24.50681 110 40 1 - 99.47200 109.67720 307.56005 25.17743 110 32 1 - 79.39274 111.05060 315.06961 25.84805 110 25 1 - 60.08571 112.42400 320.77211 26.35055 110 19 1 - 60.34815 112.42400 324.60417 26.61299 110 19 1 - 41.90331 113.79740 330.38979 27.11595 110 13 1 - 24.40278 115.17080 338.15609 27.78657 110 0 1 - 15.48315 116.54420 345.97352 28.45718 1 0 A - 15.85333 117.91760 353.83197 29.12780 1 0 A - 16.13080 119.29100 359.74715 29.63076 1 0 A - 16.31569 119.29100 363.70039 29.96607 1 0 A - 16.59291 120.66440 369.64295 30.46904 1 0 A - 16.96235 122.03780 377.58487 31.13965 1 0 A - 17.33159 123.41120 385.54580 31.81027 1 0 A - 17.70064 124.78460 393.52279 32.48089 1 0 A - 17.97732 126.15800 399.51422 32.98385 1 0 A - 18.16172 126.15800 403.51263 33.31916 1 0 A - 18.43823 127.53140 409.51572 33.82212 1 0 A - 18.80680 128.90480 417.52807 34.49274 1 0 A - 19.17524 130.27820 425.54909 35.16336 1 0 A - 19.54355 131.65160 433.57769 35.83397 1 0 A - 19.81970 133.02500 439.60333 36.33694 1 0 A + 26.65180 81.73392 31.25457 5.14733 220 85 2 + 34.17955 81.73392 38.78231 5.49217 220 88 2 + 37.61532 83.20052 42.24620 6.00944 220 89 2 + 42.19309 84.66711 46.84351 6.69912 220 90 2 + 46.76361 86.13371 51.42474 7.38881 220 91 2 + 51.33546 87.60031 55.99831 8.07849 220 92 2 + 54.77174 89.06690 59.42709 8.59576 220 92 2 + 55.93005 89.06690 60.58540 8.77048 220 92 2 + 55.97609 89.08652 60.63128 8.77740 220 92 2 + 56.03743 89.10614 60.69245 8.78663 220 92 2 + 56.09876 89.12576 60.75361 8.88593 220 92 2 + 56.16009 89.14538 60.81478 8.89515 220 92 2 + 56.20614 89.16500 60.86066 8.90205 220 92 2 + 46.20996 89.16500 56.19237 10.76740 220 82 2 + 46.20619 89.18462 56.21166 10.79205 220 82 2 + 46.20057 89.20424 56.23739 10.79959 220 82 2 + 46.19495 89.22386 56.26312 10.80713 220 82 2 + 46.18934 89.24348 56.28885 10.81467 220 82 2 + 46.18085 89.26310 56.30815 10.82030 220 82 2 + 46.23573 89.26310 56.43038 10.85648 220 82 2 + 46.08394 89.61626 56.77789 10.95790 220 81 2 + 45.98620 89.96942 57.24150 11.09359 220 80 2 + 45.89054 90.32258 57.70540 11.22928 220 80 2 + 45.79694 90.67574 58.16959 11.36497 220 79 2 + 45.65330 91.02890 58.51790 11.46641 220 78 2 + 45.87918 91.02890 59.02132 11.61482 220 78 2 + 45.41541 92.20610 60.18420 11.95297 220 75 2 + 45.14854 93.38330 61.73682 12.40527 220 73 2 + 44.90491 94.56050 63.29175 12.85757 220 71 2 + 44.68460 95.73770 64.84871 13.30988 220 69 2 + 44.31300 96.91490 66.01759 13.64820 220 67 2 + 44.57504 96.91490 66.60240 13.81917 220 67 2 + 44.39804 97.50350 67.18746 13.98833 220 66 2 + 44.31427 98.09210 67.96787 14.21448 220 65 2 + 44.23637 98.68070 68.74864 14.44064 220 64 2 + 44.16434 99.26930 69.52975 14.66679 220 64 2 + 44.01067 99.85790 70.11580 14.83598 220 63 2 + 44.24405 99.85790 70.63689 14.98786 220 63 2 + 44.00101 100.83890 71.61431 15.26986 220 61 2 + 43.92014 101.81990 72.91820 15.64678 220 60 2 + 43.85556 102.80090 74.22282 16.02370 220 59 2 + 43.80724 103.78190 75.52811 16.40062 220 58 2 + 43.62898 104.76290 76.50747 16.68269 220 57 2 + 43.89501 104.76290 77.10179 16.85531 220 57 2 + 43.76092 105.56732 77.90530 17.08661 220 56 2 + 43.75754 106.37174 78.97694 17.39568 220 55 2 + 43.76496 107.17616 80.04891 17.70476 220 55 2 + 43.78314 107.98058 81.12121 18.01383 220 54 2 + 43.69202 108.78500 81.92561 18.24518 220 53 2 + 42.41434 108.78500 54.92014 20.00813 220 77 2 + 43.36425 106.76600 59.12384 21.78405 220 73 2 + 45.01386 104.74700 64.71839 24.14768 220 70 2 + 46.68971 102.72800 70.30038 26.51130 220 66 2 + 48.39155 100.70900 75.86981 28.87493 220 64 2 + 49.45051 98.69000 80.03909 30.64545 220 62 2 + 176.65655 98.69000 269.34335 20.02342 220 66 2 + 168.39883 100.06340 267.41943 20.48311 220 63 2 + 162.02824 101.43680 269.45740 21.15373 220 60 2 + 156.92919 102.81020 273.98283 21.82434 220 57 2 + 152.61568 104.18360 279.72618 22.49496 220 55 2 + 148.21222 105.55700 284.49143 22.99739 220 52 2 + 149.55058 105.55700 287.83614 23.33377 220 52 2 + 142.91466 106.93040 293.03560 23.83620 110 49 1 + 120.70861 108.30380 300.19678 24.50681 110 40 1 + 99.58933 109.67720 307.56005 25.17743 110 32 1 + 79.48438 111.05060 315.06961 25.84805 110 25 1 + 60.15321 112.42400 320.77211 26.35055 110 19 1 + 60.48945 112.42400 324.60417 26.68678 110 19 1 + 42.02150 113.79740 330.38979 27.18928 110 13 1 + 24.49974 115.17080 338.15609 27.85990 110 0 1 + 15.48315 116.54420 345.97352 28.53052 1 0 A + 15.85333 117.91760 353.83197 29.20113 1 0 A + 16.13080 119.29100 359.74715 29.70368 1 0 A + 16.31569 119.29100 363.70039 30.03982 1 0 A + 16.59291 120.66440 369.64295 30.54237 1 0 A + 16.96235 122.03780 377.58487 31.21298 1 0 A + 17.33159 123.41120 385.54580 31.88360 1 0 A + 17.70064 124.78460 393.52279 32.55422 1 0 A + 17.97732 126.15800 399.51422 33.05681 1 0 A + 18.16172 126.15800 403.51263 33.39286 1 0 A + 18.43823 127.53140 409.51572 33.89545 1 0 A + 18.80680 128.90480 417.52807 34.56607 1 0 A + 19.17524 130.27820 425.54909 35.23669 1 0 A + 19.54355 131.65160 433.57769 35.90731 1 0 A + 19.81970 133.02500 439.60333 36.40993 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19259,13 +19395,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 9.401 'Ophooglaag zand' - -3.50 38.514 'Hollandveen' - -5.70 16.609 'Oude Zeeklei' - -7.00 35.815 'Wadzand' - -10.00 89.107 'Hydrobiaklei' - -12.00 22.925 'Basisveen' - -12.50 233.180 'Eerste zandlaag' + -3.00 9.395 'Ophooglaag zand' + -3.50 38.505 'Hollandveen' + -5.70 16.600 'Oude Zeeklei' + -7.00 35.799 'Wadzand' + -10.00 88.944 'Hydrobiaklei' + -12.00 22.939 'Basisveen' + -12.50 233.354 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19285,10 +19421,10 @@ Layer name -3.00 -3.42 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -3.53 'Oude Zeeklei' - -7.00 -10.75 'Wadzand' - -10.00 -18.94 'Hydrobiaklei' + -7.00 -10.74 'Wadzand' + -10.00 -18.91 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -89.51 'Eerste zandlaag' + -12.50 -89.58 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -19503,7 +19639,7 @@ Lambda passive -13.62000 37.26270 212.27871 9.55625 0.47008 0.25646 5.69681 -13.76000 38.68930 220.23553 9.92452 0.47008 0.25652 5.69241 -13.90000 40.11590 226.22528 10.20054 0.47008 0.25656 5.68988 - -13.90000 40.11590 230.22741 10.38446 0.47098 0.25658 5.68848 + -13.90000 40.11590 230.22741 10.38446 0.47008 0.25658 5.68848 -14.04000 41.54250 236.24102 10.66024 0.47008 0.25661 5.68673 -14.18000 42.96910 244.27295 11.02779 0.47008 0.25664 5.68485 -14.32000 44.39570 252.31767 11.39518 0.47008 0.25667 5.68338 @@ -19515,7 +19651,7 @@ Lambda passive -15.02000 51.52870 292.65001 13.23057 0.47008 0.25676 5.67936 -15.16000 52.95530 300.72910 13.59744 0.47008 0.25677 5.67892 -15.30000 54.38190 306.79002 13.87256 0.47008 0.25678 5.67864 - -15.30000 54.38190 310.83135 14.05596 0.50184 0.25678 5.67847 + -15.30000 54.38190 310.83135 14.05596 0.47008 0.25678 5.67847 -15.44000 55.80850 316.89433 14.33104 0.47008 0.25679 5.67824 -15.58000 57.23510 324.97970 14.69778 0.47008 0.25680 5.67798 -15.72000 58.66170 333.06652 15.06449 0.47008 0.25680 5.67775 @@ -19694,53 +19830,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 2.83058 100.84990 31.98295 3.87339 110 0 1 - 2.79134 101.83090 33.30354 4.25031 110 0 1 - 2.74972 102.81190 34.62384 4.62723 110 0 1 - 2.70582 103.79290 35.94384 5.00415 110 0 1 - 2.65976 104.77390 36.93367 5.28684 110 0 1 - 2.65976 104.77390 37.53409 5.45834 110 0 1 - 2.62045 105.57832 38.34556 5.69014 110 0 1 - 2.57986 106.38274 39.42738 5.99922 110 0 1 - 2.53808 107.18716 40.50904 6.30829 110 0 1 - 2.49521 107.99158 41.59055 6.61737 110 0 1 - 2.45136 108.79600 42.40159 6.84917 110 0 1 - 4.90271 108.79600 25.59840 7.93223 110 0 1 - 4.79335 106.77700 29.70475 9.70495 110 0 1 - 4.91561 104.75800 35.16081 12.06858 110 0 1 - 6.67744 102.73900 40.59674 14.43220 110 0 1 - 8.43823 100.72000 46.01595 16.79583 110 0 1 - 15.23263 98.70100 50.07174 18.56855 110 0 1 - 32.71251 98.70100 177.20934 12.31919 110 18 1 - 32.03603 100.07440 165.98087 12.82216 110 19 1 - 31.46428 101.44780 168.35015 13.49277 110 19 1 - 30.91143 102.82120 174.33058 14.16339 110 18 1 - 30.38655 104.19460 181.36358 14.83401 110 17 1 - 29.80591 105.56800 186.93725 15.33697 110 16 1 - 29.99097 105.56800 190.74477 15.67228 110 16 1 - 29.45508 106.94140 196.54307 16.17524 110 15 1 - 29.06033 108.31480 204.37210 16.84586 110 14 1 - 28.71656 109.68820 212.27871 17.51648 110 14 1 - 28.42614 111.06160 220.23553 18.18709 110 13 1 - 28.09942 112.43500 226.22528 18.69006 110 12 1 - 28.28334 112.43500 230.22741 19.06162 110 12 1 - 28.01279 113.80840 236.24102 19.52833 110 12 1 - 27.88629 115.18180 244.27295 20.19895 110 11 1 - 41.72989 116.55520 252.31767 20.86956 110 17 1 - 59.26452 117.92860 260.37206 21.54018 110 23 1 - 76.10102 119.30200 266.41766 22.04314 110 29 1 - 76.43633 119.30200 270.45017 22.37845 110 28 1 - 92.82560 120.67540 276.50161 22.88141 110 34 1 - 109.00708 122.04880 284.57394 23.55203 110 38 1 - 124.87802 123.42220 292.65001 24.22265 110 43 1 - 140.50328 124.79560 300.72910 24.89327 110 47 1 - 153.99128 126.16900 306.79002 25.39623 220 50 2 - 156.02516 126.16900 310.83135 27.46975 220 50 2 - 161.65360 127.54240 316.89433 26.23450 220 51 2 - 176.20468 128.91580 324.97970 26.90512 220 54 2 - 191.55876 130.28920 333.06652 27.57574 220 58 2 - 206.87962 131.66260 341.15457 28.24635 220 61 2 - 222.02731 133.03600 347.22126 28.74932 220 64 2 + 2.83605 100.84990 31.98295 3.87339 110 0 1 + 2.79618 101.83090 33.30354 4.25031 110 0 1 + 2.75390 102.81190 34.62384 4.62723 110 0 1 + 2.70932 103.79290 35.94384 5.00415 110 0 1 + 2.66254 104.77390 36.93367 5.28684 110 0 1 + 2.66254 104.77390 37.53409 5.45834 110 0 1 + 2.62264 105.57832 38.34556 5.69014 110 0 1 + 2.58143 106.38274 39.42738 5.99922 110 0 1 + 2.53902 107.18716 40.50904 6.30829 110 0 1 + 2.49550 107.99158 41.59055 6.61737 110 0 1 + 2.45098 108.79600 42.40159 6.84917 110 0 1 + 4.90195 108.79600 25.59840 7.93223 110 0 1 + 4.79091 106.77700 29.70475 9.70495 110 0 1 + 4.91144 104.75800 35.16081 12.06858 110 0 1 + 6.67147 102.73900 40.59674 14.43220 110 0 1 + 8.43041 100.72000 46.01595 16.79583 110 0 1 + 15.22290 98.70100 50.07174 18.56855 110 0 1 + 32.65417 98.70100 177.20934 12.31919 110 18 1 + 31.96105 100.07440 165.98087 12.82216 110 19 1 + 31.37194 101.44780 168.35015 13.49277 110 19 1 + 30.80100 102.82120 174.33058 14.16339 110 18 1 + 30.25731 104.19460 181.36358 14.83401 110 17 1 + 29.65713 105.56800 186.93725 15.33697 110 16 1 + 29.84219 105.56800 190.74477 15.67228 110 16 1 + 29.28603 106.94140 196.54307 16.17524 110 15 1 + 28.87032 108.31480 204.37210 16.84586 110 14 1 + 28.50498 109.68820 212.27871 17.51648 110 13 1 + 28.19242 111.06160 220.23553 18.18709 110 13 1 + 27.84308 112.43500 226.22528 18.69006 110 12 1 + 28.02701 112.43500 230.22741 19.02537 110 12 1 + 27.73344 113.80840 236.24102 19.52833 110 12 1 + 27.58370 115.18180 244.27295 20.19895 110 11 1 + 41.72621 116.55520 252.31767 20.86956 110 17 1 + 59.27960 117.92860 260.37206 21.54018 110 23 1 + 76.13379 119.30200 266.41766 22.04314 110 29 1 + 76.46910 119.30200 270.45017 22.37845 110 28 1 + 92.87512 120.67540 276.50161 22.88141 110 34 1 + 109.07254 122.04880 284.57394 23.55203 110 38 1 + 124.95870 123.42220 292.65001 24.22265 110 43 1 + 140.59860 124.79560 300.72910 24.89327 110 47 1 + 154.01865 126.16900 306.79002 25.39623 220 50 2 + 155.61798 126.16900 310.83135 25.73154 220 50 2 + 161.68443 127.54240 316.89433 26.23450 220 51 2 + 176.72772 128.91580 324.97970 26.90512 220 54 2 + 192.11000 130.28920 333.06652 27.57574 220 58 2 + 207.45895 131.66260 341.15457 28.24635 220 61 2 + 222.63469 133.03600 347.22126 28.74932 220 64 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19758,9 +19894,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 2.292 'Hydrobiaklei' - -12.00 3.489 'Basisveen' - -12.50 282.464 'Eerste zandlaag' + -10.00 2.294 'Hydrobiaklei' + -12.00 3.487 'Basisveen' + -12.50 282.450 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19782,7 +19918,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.49 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 108.43 'Eerste zandlaag' + -12.50 108.42 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -20022,7 +20158,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 422.37098 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 422.41999 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -20047,39 +20183,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.29 : Percentage mobilized resistance left - 32.18 : Percentage mobilized resistance right - 248.23 : Effective left - 297.60 : Effective right + 29.32 : Percentage mobilized resistance left + 32.20 : Percentage mobilized resistance right + 248.44 : Effective left + 297.84 : Effective right 1115.38 : Water pressure left 1112.88 : Water pressure right 847.43 : Max effective resistance left 924.88 : Max effective resistance right -10153.74 : Max moment left -11007.55 : Max moment right --3176.76 : Max mobilized moment left --3196.17 : Max mobilized moment right - 94.86 : Vertical force left - 102.39 : Vertical force right +-3179.56 : Max mobilized moment left +-3198.95 : Max mobilized moment right + 94.94 : Vertical force left + 102.48 : Vertical force right 31.3 : Max mobilized moment percentage left - 29.0 : Max mobilized moment percentage right + 29.1 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --94.86 : Active force -102.39 : Passive force --94.86 : Plugged active force -102.39 : Plugged passive force +-94.94 : Active force +102.48 : Passive force +-94.94 : Plugged active force +102.48 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance 1510.79 : Plugged resistance 1.00 : Vertical balance load factor -7.52 : Resulting Vertical Force Unplugged -7.52 : Resulting Vertical Force Plugged +7.54 : Resulting Vertical Force Unplugged +7.54 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -20092,210 +20228,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 602.40180 - 0.00000 0.00000 597.74348 - 0.00000 0.00000 593.08515 - 0.00000 0.00000 588.42683 - 0.00000 0.00000 583.76851 - 0.00000 0.00000 579.11019 - 0.00000 0.00000 579.11019 - 0.00000 0.00000 574.45186 - 0.00000 0.00000 569.79354 - 0.00000 0.00000 565.13522 - 0.00000 0.00000 560.47690 - 0.00000 0.00000 555.81858 - 0.00000 0.00000 555.81858 - 0.00000 0.00000 549.60748 - 0.00000 0.00000 543.39638 - 0.00000 0.00000 537.18529 - 0.00000 0.00000 530.97419 - 0.00000 0.00000 524.76309 - 0.00000 0.00000 524.76309 - 0.00000 0.00000 519.58718 - 0.00000 0.00000 514.41127 - 0.00000 0.00000 509.23535 - 0.00000 0.00000 504.05944 - 0.00000 0.00000 498.88352 - 0.00000 0.00000 498.88352 - 0.00000 0.00000 493.70761 - 0.00000 0.00000 488.53170 - 0.00000 0.00000 483.35578 - 0.00000 0.00000 478.17987 - 0.00000 0.00000 473.00396 - 0.00000 0.00000 473.00396 - 0.00000 0.00000 468.55267 - 0.00000 0.00000 464.10138 - 0.00000 0.00000 459.65010 - 0.00000 0.00000 455.19881 - 0.00000 0.00000 450.74753 - 0.00000 -63.74348 450.74753 - -7.26676 -63.74348 444.84713 - -14.53351 -63.74348 438.94762 - -21.80027 -63.74348 433.04987 - -29.06703 -63.74348 427.15476 - -36.33379 -63.74348 421.26318 - -36.33379 -63.74348 421.26318 - -37.06046 -63.74348 420.67425 - -37.78714 -63.74348 420.08536 - -38.51381 -63.74348 419.49652 - -39.24049 -63.74348 418.90773 - -39.96716 -63.74348 418.31898 - -39.96718 -63.74305 418.31898 - -44.33995 -63.74305 414.77724 - -48.71272 -63.74305 411.23744 - -53.08550 -63.74305 407.69978 - -57.45827 -63.74305 404.16445 - -61.83104 -63.74305 400.63164 - -61.83104 -63.74304 400.63164 - -63.10590 -63.74304 399.60217 - -64.38076 -63.74304 398.57294 - -65.65563 -63.74304 397.54395 - -66.93049 -63.74304 396.51520 - -68.20535 -63.74304 395.48670 - -68.20535 -63.74304 395.48670 - -73.30479 -63.74304 391.37529 - -78.40423 -63.74304 387.26827 - -83.50368 -63.74304 383.16593 - -88.60312 -63.74304 379.06857 - -93.70256 -63.74304 374.97651 - -93.70256 -63.74304 374.97651 - -94.97742 -63.74304 373.95435 - -96.25228 -63.74304 372.93256 - -97.52714 -63.74304 371.91112 - -98.80201 -63.74304 370.89004 - -100.07687 -63.74304 369.86933 - -100.07687 -63.74304 369.86933 - -106.45117 -63.74304 364.77150 - -112.82547 -63.74304 359.68359 - -119.19978 -63.74304 354.60622 - -125.57408 -63.74304 349.53997 - -131.94838 -63.74304 344.48544 - -131.94838 -63.74304 344.48544 - -138.32269 -63.74304 339.44322 - -144.69699 -63.74304 334.41391 - -151.07130 -63.74304 329.39810 - -157.44560 -63.74304 324.39638 - -163.81990 -63.74304 319.40936 - -163.81990 -63.74304 319.40936 - -172.74393 -63.74304 312.45335 - -181.66796 -63.74304 305.52893 - -190.59198 -63.74304 298.63774 - -199.51601 -63.74304 291.78141 - -208.44003 -63.74304 284.96157 - -208.44002 -63.74309 284.96157 - -216.72662 -63.74309 278.66296 - -225.01323 -63.74309 272.39853 - -233.29983 -63.74309 266.16959 - -241.58643 -63.74309 259.97744 - -249.87303 -63.74309 253.82338 - -249.87312 -63.74461 253.82338 - -258.15991 -63.74461 247.70874 - -266.44671 -63.74461 241.63480 - -274.73351 -63.74461 235.60289 - -283.02031 -63.74461 229.61430 - -291.30711 -63.74461 223.67034 - -291.30711 -63.74461 223.67034 - -300.83693 -63.74461 216.89167 - -310.36675 -63.74461 210.17574 - -319.89657 -63.74461 203.52454 - -329.42639 -63.74461 196.94006 - -338.95621 -63.74461 190.42429 - -338.95621 -63.74462 190.42429 - -348.48603 -63.74462 183.97921 - -358.01585 -63.74462 177.60681 - -367.54567 -63.74462 171.30908 - -377.07549 -63.74462 165.08800 - -386.60531 -63.74462 158.94557 - -386.60532 -63.74459 158.94557 - -396.13513 -63.74459 152.88378 - -405.66495 -63.74459 146.90460 - -415.19477 -63.74459 141.01003 - -424.72458 -63.74459 135.20205 - -434.25440 -63.74459 129.48265 - -434.25428 -63.74381 129.48265 - -443.78398 -63.74381 123.85383 - -453.31368 -63.74381 118.31756 - -462.84338 -63.74381 112.87583 - -472.37308 -63.74381 107.53064 - -481.90278 -63.74381 102.28397 - -481.90283 -63.74418 102.28397 - -482.03032 -63.74418 102.21445 - -482.15781 -63.74418 102.14496 - -482.28530 -63.74418 102.07548 - -482.41278 -63.74418 102.00602 - -482.54027 -63.74418 101.93658 - -482.54027 -63.74419 101.93658 - -482.66776 -63.74419 101.86716 - -482.79525 -63.74419 101.79775 - -482.92274 -63.74419 101.72837 - -483.05023 -63.74419 101.65900 - -483.17771 -63.74419 101.58965 - -483.17771 -63.74419 101.58965 - -485.47250 -63.74419 100.34443 - -487.76729 -63.74419 99.10507 - -490.06209 -63.74419 97.87162 - -492.35688 -63.74419 96.64409 - -494.65167 -63.74419 95.42252 - -494.65159 -63.74496 95.42252 - -502.30099 -63.74496 91.39398 - -509.95038 -63.74496 87.43293 - -517.59978 -63.74496 83.54040 - -525.24917 -63.74496 79.71743 - -532.89857 -63.74496 75.96504 - -532.89864 -63.74582 75.96504 - -536.72339 -63.74582 74.11563 - -540.54814 -63.74582 72.28425 - -544.37289 -63.74582 70.47103 - -548.19764 -63.74582 68.67610 - -552.02239 -63.74582 66.89959 - -552.02236 -63.74694 66.89959 - -558.35861 -62.25962 63.98003 - -564.39946 -58.52778 61.11258 - -570.05822 -54.61768 58.29776 - -575.31906 -50.58948 55.53610 - -580.17569 -46.54856 52.82814 - -580.17563 -46.54825 52.82814 - -583.83364 -42.67511 50.64801 - -587.17471 -38.81547 48.50453 - -590.19954 -34.96160 46.39786 - -592.90854 -31.11245 44.32821 - -595.30226 -27.27369 42.29577 - -595.30242 -27.27314 42.29577 - -597.84770 -23.54018 39.86778 - -599.98894 -19.16176 37.49559 - -601.65993 -14.17964 35.17935 - -602.82805 -9.29302 32.91921 - -603.53398 -4.86966 30.71533 - -603.53611 -4.86013 30.71533 - -602.00191 26.41452 27.72504 - -596.18206 56.78891 24.84492 - -586.10040 87.17646 22.07314 - -571.80748 116.81766 19.40784 - -553.44479 145.31589 16.84719 - -553.50104 145.74962 16.84719 - -531.16281 173.10194 14.38861 - -505.17523 197.39574 12.02719 - -476.05113 218.27977 9.75765 - -444.13021 237.59289 7.57469 - -409.65500 254.12270 5.47303 - -409.66860 254.70136 5.47303 - -373.12286 266.62180 3.44669 - -335.22302 274.07391 1.48856 - -296.59461 276.97355 -0.40837 - -257.90258 274.89831 -2.25107 - -219.86409 267.65865 -4.04655 - -219.85954 267.24590 -4.04655 - -183.24948 254.92213 -5.80211 - -148.69181 238.08822 -7.52423 - -116.76967 217.29237 -9.21870 - -87.99228 193.44668 -10.89130 - -62.70845 167.37555 -12.54783 - -62.72864 167.23947 -12.54783 - -41.25728 139.23071 -14.19374 - -23.84910 108.97071 -15.83221 - -10.88535 75.71354 -17.46556 - -2.79256 39.38661 -19.09611 - 0.00015 0.00079 -20.72619 + 0.00000 0.00000 602.87029 + 0.00000 0.00000 598.20842 + 0.00000 0.00000 593.54656 + 0.00000 0.00000 588.88470 + 0.00000 0.00000 584.22283 + 0.00000 0.00000 579.56097 + 0.00000 0.00000 579.56097 + 0.00000 0.00000 574.89911 + 0.00000 0.00000 570.23724 + 0.00000 0.00000 565.57538 + 0.00000 0.00000 560.91352 + 0.00000 0.00000 556.25165 + 0.00000 0.00000 556.25165 + 0.00000 0.00000 550.03584 + 0.00000 0.00000 543.82002 + 0.00000 0.00000 537.60420 + 0.00000 0.00000 531.38838 + 0.00000 0.00000 525.17257 + 0.00000 0.00000 525.17257 + 0.00000 0.00000 519.99272 + 0.00000 0.00000 514.81287 + 0.00000 0.00000 509.63302 + 0.00000 0.00000 504.45317 + 0.00000 0.00000 499.27333 + 0.00000 0.00000 499.27333 + 0.00000 0.00000 494.09348 + 0.00000 0.00000 488.91363 + 0.00000 0.00000 483.73378 + 0.00000 0.00000 478.55393 + 0.00000 0.00000 473.37409 + 0.00000 0.00000 473.37409 + 0.00000 0.00000 468.91942 + 0.00000 0.00000 464.46475 + 0.00000 0.00000 460.01008 + 0.00000 0.00000 455.55541 + 0.00000 0.00000 451.10074 + 0.00000 -63.79249 451.10074 + -7.27234 -63.79249 445.19586 + -14.54469 -63.79249 439.29186 + -21.81703 -63.79249 433.38963 + -29.08938 -63.79249 427.49004 + -36.36172 -63.79249 421.59398 + -36.36172 -63.79249 421.59398 + -37.08895 -63.79249 421.00460 + -37.81619 -63.79249 420.41527 + -38.54342 -63.79249 419.82598 + -39.27066 -63.79249 419.23674 + -39.99789 -63.79249 418.64755 + -39.99790 -63.79206 418.64755 + -44.37404 -63.79206 415.10311 + -48.75018 -63.79206 411.56062 + -53.12631 -63.79206 408.02027 + -57.50245 -63.79206 404.48226 + -61.87858 -63.79206 400.94676 + -61.87858 -63.79205 400.94676 + -63.15442 -63.79205 399.91651 + -64.43026 -63.79205 398.88650 + -65.70610 -63.79205 397.85672 + -66.98194 -63.79205 396.82719 + -68.25778 -63.79205 395.79791 + -68.25778 -63.79204 395.79791 + -73.36115 -63.79204 391.68338 + -78.46451 -63.79204 387.57323 + -83.56788 -63.79204 383.46777 + -88.67124 -63.79204 379.36730 + -93.77460 -63.79204 375.27213 + -93.77460 -63.79204 375.27213 + -95.05044 -63.79204 374.24920 + -96.32628 -63.79204 373.22662 + -97.60212 -63.79204 372.20441 + -98.87797 -63.79204 371.18256 + -100.15381 -63.79204 370.16107 + -100.15381 -63.79204 370.16107 + -106.53301 -63.79204 365.05936 + -112.91222 -63.79204 359.96760 + -119.29142 -63.79204 354.88636 + -125.67062 -63.79204 349.81626 + -132.04983 -63.79204 344.75789 + -132.04983 -63.79205 344.75789 + -138.42903 -63.79205 339.71184 + -144.80824 -63.79205 334.67870 + -151.18744 -63.79205 329.65908 + -157.56665 -63.79205 324.65357 + -163.94585 -63.79205 319.66276 + -163.94585 -63.79205 319.66276 + -172.87674 -63.79205 312.70146 + -181.80762 -63.79205 305.77178 + -190.73851 -63.79205 298.87536 + -199.66940 -63.79205 292.01382 + -208.60028 -63.79205 285.18880 + -208.60027 -63.79210 285.18880 + -216.89325 -63.79210 278.88541 + -225.18622 -63.79210 272.61622 + -233.47919 -63.79210 266.38254 + -241.77217 -63.79210 260.18569 + -250.06514 -63.79210 254.02696 + -250.06522 -63.79361 254.02696 + -258.35839 -63.79361 247.90768 + -266.65156 -63.79361 241.82913 + -274.94473 -63.79361 235.79264 + -283.23790 -63.79361 229.79950 + -291.53107 -63.79361 223.85104 + -291.53107 -63.79362 223.85104 + -301.06822 -63.79362 217.06722 + -310.60536 -63.79362 210.34619 + -320.14251 -63.79362 203.68995 + -329.67965 -63.79362 197.10047 + -339.21680 -63.79362 190.57976 + -339.21680 -63.79363 190.57976 + -348.75395 -63.79363 184.12979 + -358.29110 -63.79363 177.75256 + -367.82824 -63.79363 171.45005 + -377.36539 -63.79363 165.22427 + -386.90254 -63.79363 159.07718 + -386.90254 -63.79360 159.07718 + -396.43969 -63.79360 153.01079 + -405.97683 -63.79360 147.02708 + -415.51397 -63.79360 141.12804 + -425.05112 -63.79360 135.31567 + -434.58826 -63.79360 129.59194 + -434.58814 -63.79284 129.59194 + -444.12517 -63.79284 123.95886 + -453.66220 -63.79284 118.41840 + -463.19923 -63.79284 112.97256 + -472.73626 -63.79284 107.62332 + -482.27329 -63.79284 102.37268 + -482.27334 -63.79320 102.37268 + -482.40093 -63.79320 102.30312 + -482.52851 -63.79320 102.23357 + -482.65610 -63.79320 102.16404 + -482.78369 -63.79320 102.09453 + -482.91127 -63.79320 102.02504 + -482.91127 -63.79322 102.02504 + -483.03886 -63.79322 101.95556 + -483.16644 -63.79322 101.88610 + -483.29403 -63.79322 101.81666 + -483.42162 -63.79322 101.74724 + -483.54920 -63.79322 101.67784 + -483.54920 -63.79322 101.67784 + -485.84576 -63.79322 100.43168 + -488.14231 -63.79322 99.19139 + -490.43887 -63.79322 97.95700 + -492.73543 -63.79322 96.72855 + -495.03198 -63.79322 95.50605 + -495.03191 -63.79399 95.50605 + -502.68719 -63.79399 91.47447 + -510.34246 -63.79399 87.51042 + -517.99774 -63.79399 83.61496 + -525.65302 -63.79399 79.78910 + -533.30830 -63.79399 76.03388 + -533.30837 -63.79485 76.03388 + -537.13607 -63.79485 74.18308 + -540.96376 -63.79485 72.35032 + -544.79145 -63.79485 70.53574 + -548.61914 -63.79485 68.73945 + -552.44683 -63.79485 66.96160 + -552.44680 -63.79598 66.96160 + -558.78796 -62.30867 64.03984 + -564.83372 -58.57683 61.17023 + -570.49738 -54.66673 58.35329 + -575.76317 -50.63988 55.58956 + -580.62498 -46.60167 52.87955 + -580.62491 -46.60137 52.87955 + -584.28737 -42.73053 50.69779 + -587.63308 -38.87323 48.55269 + -590.66274 -35.02174 46.44445 + -593.37678 -31.17502 44.37325 + -595.77573 -27.33871 42.33928 + -595.77588 -27.33817 42.33928 + -598.32767 -23.60521 39.90948 + -600.47541 -19.22678 37.53552 + -602.15293 -14.24551 35.21755 + -603.32772 -9.36066 32.95573 + -604.04051 -4.93913 30.75021 + -604.04263 -4.92969 30.75021 + -602.51816 26.34496 27.75772 + -596.70805 56.71935 24.87548 + -586.63594 87.11099 22.10168 + -572.35164 116.75984 19.43446 + -553.99657 145.26470 16.87199 + -554.05291 145.69869 16.87199 + -531.72107 173.06665 14.41169 + -505.73639 197.38886 12.04865 + -476.61181 218.29064 9.77760 + -444.68810 237.62622 7.59323 + -410.20583 254.18986 5.49026 + -410.21952 254.76951 5.49026 + -373.66205 266.72086 3.46271 + -335.74633 274.20128 1.50346 + -297.09738 277.14560 -0.39447 + -258.37691 275.13235 -2.23810 + -220.30135 267.95413 -4.03443 + -220.29687 267.54104 -4.03443 + -183.64089 255.28178 -5.79074 + -149.02946 238.49046 -7.51354 + -117.04934 217.71814 -9.20864 + -88.21115 193.88655 -10.88181 + -62.86537 167.82064 -12.53887 + -62.88551 167.68519 -12.53887 + -41.36290 139.55817 -14.18529 + -23.91070 109.25663 -15.82424 + -10.91319 75.90911 -17.45806 + -2.79964 39.48686 -19.08908 + 0.00015 0.00080 -20.71963 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -20478,53 +20614,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 31.98295 0.00000 0.72017 0.00000 5.77414 - -11.29000 6.07800 33.30354 0.00000 0.71832 0.00000 5.47936 - -11.39000 6.61700 34.62384 0.00000 0.71677 0.00000 5.23256 - -11.49000 7.15600 35.94384 0.00000 0.71545 0.00000 5.02290 - -11.59000 7.69500 36.93367 0.00000 0.71432 0.00000 4.88524 - -11.59000 7.69500 37.53409 0.00000 0.71432 0.00000 4.80868 - -11.67200 8.13698 38.34556 0.00000 0.71350 0.00000 4.71250 - -11.75400 8.57896 39.42738 0.00000 0.71277 0.00000 4.59582 - -11.83600 9.02094 40.50904 0.00000 0.71211 0.00000 4.49056 - -11.91800 9.46292 41.59055 0.00000 0.71151 0.00000 4.39511 - -12.00000 9.90490 42.40159 0.00000 0.71097 0.00000 4.32916 - -12.00000 9.90490 25.59840 0.00000 0.75285 0.00000 2.39189 + -11.19000 5.53900 31.98295 0.00000 0.71899 0.00000 5.77414 + -11.29000 6.07800 33.30354 0.00000 0.71724 0.00000 5.47936 + -11.39000 6.61700 34.62384 0.00000 0.71578 0.00000 5.23256 + -11.49000 7.15600 35.94384 0.00000 0.71454 0.00000 5.02290 + -11.59000 7.69500 36.93367 0.00000 0.71347 0.00000 4.88524 + -11.59000 7.69500 37.53409 0.00000 0.71347 0.00000 4.80868 + -11.67200 8.13698 38.34556 0.00000 0.71270 0.00000 4.71250 + -11.75400 8.57896 39.42738 0.00000 0.71201 0.00000 4.59582 + -11.83600 9.02094 40.50904 0.00000 0.71139 0.00000 4.49056 + -11.91800 9.46292 41.59055 0.00000 0.71082 0.00000 4.39511 + -12.00000 9.90490 42.40159 0.00000 0.71031 0.00000 4.32916 + -12.00000 9.90490 25.59840 0.00000 0.75219 0.00000 2.39189 -12.10000 13.09390 29.70475 0.00000 0.75001 0.00000 2.26859 -12.20000 16.28290 35.16081 0.00000 0.74828 0.00000 2.15937 -12.30000 19.47190 40.59674 0.00000 0.74712 0.00000 2.08489 -12.40000 22.66090 46.01595 1.78977 0.74628 0.07898 2.03063 -12.50000 25.84990 50.07174 10.89282 0.74565 0.43480 1.99866 -12.50000 25.84990 177.20934 6.67370 0.47455 0.25466 6.76202 - -12.64000 27.27650 165.98087 6.95749 0.47432 0.25507 6.08512 - -12.78000 28.70310 168.35015 7.33312 0.47411 0.25548 5.86523 - -12.92000 30.12970 174.33058 7.70643 0.47392 0.25578 5.78600 - -13.06000 31.55630 181.36358 8.07815 0.47374 0.25599 5.74730 - -13.20000 32.98290 186.93725 8.35620 0.47359 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47448 0.25619 5.72128 - -13.34000 34.40950 196.54307 8.81848 0.47325 0.25628 5.71188 - -13.48000 35.83610 204.37210 9.18761 0.47312 0.25638 5.70297 - -13.62000 37.26270 212.27871 9.55625 0.47301 0.25646 5.69681 - -13.76000 38.68930 220.23553 9.92452 0.47290 0.25652 5.69241 - -13.90000 40.11590 226.22528 10.20054 0.47280 0.25656 5.68988 - -13.90000 40.11590 230.22741 10.38446 0.47280 0.25658 5.68848 - -14.04000 41.54250 236.24102 10.66024 0.47271 0.25661 5.68673 - -14.18000 42.96910 244.27295 11.02779 0.47262 0.25664 5.68485 - -14.32000 44.39570 252.31767 11.39518 0.47254 0.25667 5.68338 - -14.46000 45.82230 260.37206 11.76244 0.47246 0.25670 5.68221 - -14.60000 47.24890 266.41766 12.03782 0.47239 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50854 0.25672 5.68106 - -14.74000 48.67550 276.50161 12.49666 0.47193 0.25673 5.68051 - -14.88000 50.10210 284.57394 12.86365 0.47188 0.25675 5.67988 - -15.02000 51.52870 292.65001 13.23057 0.47183 0.25676 5.67936 - -15.16000 52.95530 300.72910 13.59744 0.47178 0.25677 5.67892 - -15.30000 54.38190 306.79002 13.87256 0.47174 0.25678 5.67864 - -15.30000 54.38190 310.83135 14.05596 0.47174 0.25678 5.67847 - -15.44000 55.80850 316.89433 14.33104 0.47169 0.25679 5.67824 - -15.58000 57.23510 324.97970 14.69778 0.47165 0.25680 5.67798 - -15.72000 58.66170 333.06652 15.06449 0.47162 0.25680 5.67775 - -15.86000 60.08830 341.15457 15.43118 0.47158 0.25681 5.67755 - -16.00000 61.51490 347.22126 15.70618 0.47008 0.25681 5.67742 + -12.64000 27.27650 165.98087 6.95749 0.47277 0.25507 6.08512 + -12.78000 28.70310 168.35015 7.33312 0.47264 0.25548 5.86523 + -12.92000 30.12970 174.33058 7.70643 0.47251 0.25578 5.78600 + -13.06000 31.55630 181.36358 8.07815 0.47240 0.25599 5.74730 + -13.20000 32.98290 186.93725 8.35620 0.47230 0.25612 5.72966 + -13.20000 32.98290 190.74477 8.54126 0.47230 0.25619 5.72128 + -13.34000 34.40950 196.54307 8.81848 0.47221 0.25628 5.71188 + -13.48000 35.83610 204.37210 9.18761 0.47213 0.25638 5.70297 + -13.62000 37.26270 212.27871 9.55625 0.47205 0.25646 5.69681 + -13.76000 38.68930 220.23553 9.92452 0.47198 0.25652 5.69241 + -13.90000 40.11590 226.22528 10.20054 0.47191 0.25656 5.68988 + -13.90000 40.11590 230.22741 10.38446 0.47191 0.25658 5.68848 + -14.04000 41.54250 236.24102 10.66024 0.47185 0.25661 5.68673 + -14.18000 42.96910 244.27295 11.02779 0.47179 0.25664 5.68485 + -14.32000 44.39570 252.31767 11.39518 0.47173 0.25667 5.68338 + -14.46000 45.82230 260.37206 11.76244 0.47168 0.25670 5.68221 + -14.60000 47.24890 266.41766 12.03782 0.47163 0.25671 5.68149 + -14.60000 47.24890 270.45017 12.22137 0.47163 0.25672 5.68106 + -14.74000 48.67550 276.50161 12.49666 0.47159 0.25673 5.68051 + -14.88000 50.10210 284.57394 12.86365 0.47154 0.25675 5.67988 + -15.02000 51.52870 292.65001 13.23057 0.47150 0.25676 5.67936 + -15.16000 52.95530 300.72910 13.59744 0.47147 0.25677 5.67892 + -15.30000 54.38190 306.79002 13.87256 0.47143 0.25678 5.67864 + -15.30000 54.38190 310.83135 14.05596 0.47143 0.25678 5.67847 + -15.44000 55.80850 316.89433 14.33104 0.47139 0.25679 5.67824 + -15.58000 57.23510 324.97970 14.69778 0.47136 0.25680 5.67798 + -15.72000 58.66170 333.06652 15.06449 0.47133 0.25680 5.67775 + -15.86000 60.08830 341.15457 15.43118 0.47130 0.25681 5.67755 + -16.00000 61.51490 347.22126 15.70618 0.47127 0.25681 5.67742 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -20698,53 +20834,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 31.98295 100.84990 31.98295 3.98901 302 100 P - 33.30354 101.83090 33.30354 4.36593 302 100 P - 34.62384 102.81190 34.62384 4.74285 302 100 P - 35.05320 103.79290 35.94384 5.11977 220 98 2 - 34.81242 104.77390 36.93367 5.40044 220 94 2 - 35.08129 104.77390 37.53409 5.57562 220 93 2 - 34.89412 105.57832 38.34556 5.80577 220 91 2 - 34.83738 106.38274 39.42738 6.11484 220 88 2 - 34.78997 107.18716 40.50904 6.42392 220 86 2 - 34.75194 107.99158 41.59055 6.73299 220 84 2 - 34.60237 108.79600 42.40159 6.96350 220 82 2 - 25.59840 108.79600 25.59840 8.05716 302 100 P + 31.98295 100.84990 31.98295 3.98248 302 100 P + 33.30354 101.83090 33.30354 4.35940 302 100 P + 34.62384 102.81190 34.62384 4.73632 302 100 P + 35.03321 103.79290 35.94384 5.11324 220 97 2 + 34.79219 104.77390 36.93367 5.39402 220 94 2 + 35.06057 104.77390 37.53409 5.56899 220 93 2 + 34.87321 105.57832 38.34556 5.79923 220 91 2 + 34.81607 106.38274 39.42738 6.10831 220 88 2 + 34.76827 107.18716 40.50904 6.41738 220 86 2 + 34.72984 107.99158 41.59055 6.72645 220 84 2 + 34.58009 108.79600 42.40159 6.95704 220 82 2 + 25.59840 108.79600 25.59840 8.05010 302 100 P 29.70475 106.77700 29.70475 9.82057 302 100 P 35.16081 104.75800 35.16081 12.18420 302 100 P - 38.64838 102.73900 40.59674 14.54783 220 95 2 - 40.19776 100.72000 46.01595 16.91145 220 87 2 - 41.09996 98.70100 50.07174 18.68061 220 82 2 + 38.63576 102.73900 40.59674 14.54783 220 95 2 + 40.18430 100.72000 46.01595 16.91145 220 87 2 + 41.08628 98.70100 50.07174 18.68061 220 82 2 177.20934 98.70100 177.20934 12.43641 302 100 P - 165.98087 100.07440 165.98087 12.93778 302 100 P - 168.35015 101.44780 168.35015 13.60840 302 100 P - 166.87372 102.82120 174.33058 14.27902 220 96 2 - 161.19924 104.19460 181.36358 14.94963 220 89 2 - 155.42917 105.56800 186.93725 15.45135 220 83 2 - 156.79869 105.56800 190.74477 15.81888 220 82 2 - 148.62895 106.94140 196.54307 16.28433 220 76 2 - 125.07943 108.31480 204.37210 16.95495 220 61 2 - 113.28385 109.68820 212.27871 17.62557 220 53 2 - 109.19248 111.06160 220.23553 18.29618 110 50 1 - 84.47457 112.43500 226.22528 18.79818 110 37 1 - 84.81182 112.43500 230.22741 19.13543 110 37 1 - 60.99773 113.80840 236.24102 19.63742 110 26 1 - 38.17074 115.18180 244.27295 20.30804 110 16 1 - 27.35512 116.55520 252.31767 20.97865 110 11 1 - 22.47392 117.92860 260.37206 21.64927 110 9 1 - 17.53704 119.30200 266.41766 22.15141 110 0 1 - 17.72059 119.30200 270.45017 24.20913 110 0 1 - 12.81551 120.67540 276.50161 22.97149 110 0 1 - 12.86365 122.04880 284.57394 23.64210 1 0 A - 13.23057 123.42220 292.65001 24.31272 1 0 A - 13.59744 124.79560 300.72910 24.98334 1 0 A - 13.87256 126.16900 306.79002 25.48571 1 0 A - 14.05596 126.16900 310.83135 25.82220 1 0 A - 14.33104 127.54240 316.89433 26.32457 1 0 A - 14.69778 128.91580 324.97970 26.99519 1 0 A - 15.06449 130.28920 333.06652 27.66581 1 0 A - 15.43118 131.66260 341.15457 28.33642 1 0 A - 15.70618 133.03600 347.22126 28.74932 1 0 A + 165.98087 100.07440 165.98087 12.89549 302 100 P + 168.35015 101.44780 168.35015 13.56611 302 100 P + 166.91705 102.82120 174.33058 14.23672 220 96 2 + 161.23681 104.19460 181.36358 14.90734 220 89 2 + 155.46173 105.56800 186.93725 15.40951 220 83 2 + 156.80061 105.56800 190.74477 15.74641 220 82 2 + 148.79249 106.94140 196.54307 16.24858 220 76 2 + 125.21650 108.31480 204.37210 16.91919 220 61 2 + 113.33476 109.68820 212.27871 17.58981 220 53 2 + 109.37916 111.06160 220.23553 18.26043 110 50 1 + 84.64584 112.43500 226.22528 18.76274 110 37 1 + 84.98245 112.43500 230.22741 19.09935 110 37 1 + 61.15418 113.80840 236.24102 19.60166 110 26 1 + 38.31386 115.18180 244.27295 20.27228 110 16 1 + 27.51814 116.55520 252.31767 20.94290 110 11 1 + 22.64460 117.92860 260.37206 21.61351 110 9 1 + 17.71536 119.30200 266.41766 22.11592 110 0 1 + 17.89891 119.30200 270.45017 22.45234 110 0 1 + 13.00150 120.67540 276.50161 22.95475 110 0 1 + 12.86365 122.04880 284.57394 23.62536 1 0 A + 13.23057 123.42220 292.65001 24.29598 1 0 A + 13.59744 124.79560 300.72910 24.96660 1 0 A + 13.87256 126.16900 306.79002 25.46908 1 0 A + 14.05596 126.16900 310.83135 25.80535 1 0 A + 14.33104 127.54240 316.89433 26.30783 1 0 A + 14.69778 128.91580 324.97970 26.97845 1 0 A + 15.06449 130.28920 333.06652 27.64907 1 0 A + 15.43118 131.66260 341.15457 28.31968 1 0 A + 15.70618 133.03600 347.22126 28.82222 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -20762,9 +20898,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 29.517 'Hydrobiaklei' - -12.00 17.706 'Basisveen' - -12.50 250.380 'Eerste zandlaag' + -10.00 29.505 'Hydrobiaklei' + -12.00 17.703 'Basisveen' + -12.50 250.632 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -20786,7 +20922,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 6.27 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 96.11 'Eerste zandlaag' + -12.50 96.21 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -20995,7 +21131,7 @@ Lambda passive -14.32000 41.70070 236.83492 10.70588 0.47008 0.25673 5.67940 -14.46000 43.12730 244.91238 11.07291 0.47008 0.25675 5.67882 -14.60000 44.55390 250.97279 11.34814 0.47008 0.25676 5.67847 - -14.60000 44.55390 255.01409 11.53159 0.47089 0.25677 5.67827 + -14.60000 44.55390 255.01409 11.53159 0.47008 0.25677 5.67827 -14.74000 45.98050 261.07729 11.80674 0.47008 0.25678 5.67800 -14.88000 47.40710 269.16333 12.17356 0.47008 0.25679 5.67770 -15.02000 48.83370 277.25111 12.54033 0.47008 0.25680 5.67745 @@ -21212,21 +21348,21 @@ Status character 9.69588 112.43500 214.65121 17.75850 1 0 A 9.97144 113.80840 220.69580 18.26146 1 0 A 10.33873 115.18180 228.76219 18.93208 1 0 A - 24.50308 116.55520 236.83492 19.60270 110 10 1 - 47.28617 117.92860 244.91238 20.27331 110 19 1 - 69.33493 119.30200 250.97279 20.77628 110 28 1 - 69.70647 119.30200 255.01409 21.14781 110 27 1 - 91.23988 120.67540 261.07729 21.61455 110 35 1 - 112.57594 122.04880 269.16333 22.28516 110 42 1 - 133.58019 123.42220 277.25111 22.95578 110 48 1 - 145.58313 124.79560 285.34030 23.62640 220 51 2 - 157.77193 126.16900 291.40793 24.12936 220 54 2 - 158.06760 126.16900 295.45335 24.46467 220 54 2 - 166.70836 127.54240 301.52192 24.96763 220 55 2 - 182.53210 128.91580 309.61398 25.63825 220 59 2 - 199.15786 130.28920 317.70670 26.30887 220 63 2 - 215.74985 131.66260 325.79997 26.97948 220 66 2 - 232.16858 133.03600 331.87021 27.48245 220 70 2 + 24.33638 116.55520 236.83492 19.60270 110 10 1 + 47.13057 117.92860 244.91238 20.27331 110 19 1 + 69.18939 119.30200 250.97279 20.77628 110 28 1 + 69.52469 119.30200 255.01409 21.11158 110 27 1 + 91.10341 120.67540 261.07729 21.61455 110 35 1 + 112.44769 122.04880 269.16333 22.28516 110 42 1 + 133.45943 123.42220 277.25111 22.95578 110 48 1 + 145.55466 124.79560 285.34030 23.62640 220 51 2 + 157.74506 126.16900 291.40793 24.12936 220 54 2 + 159.34439 126.16900 295.45335 24.46467 220 54 2 + 166.68301 127.54240 301.52192 24.96763 220 55 2 + 182.99703 128.91580 309.61398 25.63825 220 59 2 + 199.64907 130.28920 317.70670 26.30887 220 63 2 + 216.26722 131.66260 325.79997 26.97948 220 66 2 + 232.71208 133.03600 331.87021 27.48245 220 70 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21246,7 +21382,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 1.111 'Basisveen' - -12.50 247.122 'Eerste zandlaag' + -12.50 247.325 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -21268,7 +21404,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -94.86 'Eerste zandlaag' + -12.50 -94.94 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21508,8 +21644,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 590.67074 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 321.98456 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 590.71942 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 321.90791 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -21550,10 +21686,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 52.60 : Percentage mobilized resistance left - 32.70 : Percentage mobilized resistance right - 230.60 : Effective left - 302.43 : Effective right + 52.63 : Percentage mobilized resistance left + 32.71 : Percentage mobilized resistance right + 230.72 : Effective left + 302.53 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 438.39 : Max effective resistance left @@ -21562,8 +21698,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 85.60 : Vertical force left - 104.12 : Vertical force right + 85.64 : Vertical force left + 104.16 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -21572,10 +21708,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --104.12 : Active force -85.60 : Passive force --104.12 : Plugged active force -85.60 : Plugged passive force +-104.16 : Active force +85.64 : Passive force +-104.16 : Plugged active force +85.64 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance @@ -21595,210 +21731,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 614.98775 - 0.00000 0.00000 609.89152 - 0.00000 0.00000 604.79528 - 0.00000 0.00000 599.69905 - 0.00000 0.00000 594.60282 - 0.00000 0.00000 589.50659 - 0.00000 0.00000 589.50659 - 0.00000 0.00000 584.41036 - 0.00000 0.00000 579.31413 - 0.00000 0.00000 574.21790 - 0.00000 0.00000 569.12167 - 0.00000 0.00000 564.02544 - 0.00000 0.00000 564.02544 - 0.00381 0.09535 557.23047 - 0.03051 0.38141 550.43551 - 0.10298 0.85818 543.64053 - 0.24410 1.52565 536.84553 - 0.47677 2.38383 530.05049 - 0.47677 2.38383 530.05049 - 0.75709 3.24466 524.38793 - 1.13011 4.23792 518.72530 - 1.60909 5.36362 513.06255 - 2.20725 6.62175 507.39964 - 2.93785 8.01232 501.73653 - 2.93785 8.01232 501.73653 - 3.81413 9.53532 496.07315 - 4.84933 11.19076 490.40943 - 6.05669 12.97863 484.74524 - 7.44947 14.89894 479.08046 - 9.04090 16.95168 473.41499 - 9.04090 16.95168 473.41499 - 10.57850 18.82296 468.54204 - 12.28125 20.79219 463.66836 - 14.15757 22.85937 458.79382 - 16.21587 25.02449 453.91828 - 18.46459 27.28757 449.04164 - 18.46459 -204.75567 449.04164 - -4.69959 -201.60480 442.57582 - -27.49477 -198.28182 436.11059 - -49.90131 -194.78673 429.64864 - -71.89960 -191.11952 423.19270 - -93.47002 -187.28021 416.74549 - -93.47002 -187.28020 416.74549 - -95.60277 -186.88681 416.10135 - -97.73103 -186.49169 415.45733 - -99.85478 -186.09485 414.81342 - -101.97399 -185.69629 414.16964 - -104.08864 -185.29600 413.52598 - -104.08866 -185.29557 413.52598 - -116.71642 -182.85052 409.65550 - -129.17432 -180.34313 405.79014 - -141.45808 -177.77343 401.93045 - -153.56341 -175.14140 398.07696 - -165.48605 -172.44705 394.23022 - -165.48605 -172.44704 394.23022 - -168.92703 -171.64978 393.11007 - -172.35201 -170.84723 391.99054 - -175.76088 -170.03937 390.87166 - -179.15355 -169.22622 389.75344 - -182.52990 -168.40777 388.63589 - -182.52990 -168.40777 388.63589 - -195.87001 -165.08100 384.17262 - -208.94060 -161.66948 379.72105 - -221.73487 -158.17319 375.28195 - -234.24605 -154.59215 370.85607 - -246.46735 -150.92635 366.44418 - -246.46735 -150.92635 366.44418 - -249.47659 -149.99666 365.34348 - -252.46718 -149.06167 364.24372 - -255.43902 -148.12138 363.14489 - -258.39200 -147.17579 362.04702 - -261.32602 -146.22491 360.95012 - -261.32602 -146.22491 360.95012 - -275.71013 -141.45725 355.48046 - -289.61747 -136.68959 350.03654 - -303.04804 -131.92193 344.61961 - -316.00185 -127.15427 339.23091 - -328.47890 -122.38661 333.87171 - -328.47890 -122.38661 333.87171 - -340.47918 -117.61895 328.54321 - -352.00269 -112.85129 323.24649 - -363.04943 -108.08363 317.98257 - -373.61941 -103.31597 312.75249 - -383.71263 -98.54831 307.55729 - -383.71263 -98.54831 307.55729 - -397.04216 -91.87359 300.34450 - -409.43723 -85.19886 293.20435 - -420.89784 -78.52414 286.13892 - -431.42399 -71.84942 279.15032 - -441.01568 -65.17469 272.24064 - -441.01567 -65.17474 272.24064 - -449.08552 -58.97679 265.89688 - -456.34963 -52.77883 259.62395 - -462.80801 -46.58087 253.42288 - -468.46066 -40.38291 247.29467 - -473.30757 -34.18495 241.24035 - -473.30765 -34.18647 241.24035 - -477.34903 -27.98851 235.26083 - -480.58467 -21.79055 229.35661 - -483.01457 -15.59259 223.52805 - -484.63874 -9.39464 217.77556 - -485.45717 -3.19668 212.09950 - -485.45717 -3.19668 212.09950 - -485.40229 3.93097 205.66691 - -484.28181 11.05862 199.33558 - -482.09576 18.18627 193.10505 - -478.84412 25.31392 186.97486 - -474.52690 32.44158 180.94456 - -474.52690 32.44157 180.94456 - -469.14409 39.56922 175.01351 - -462.69570 46.69687 169.18032 - -455.18173 53.82452 163.44343 - -446.60217 60.95218 157.80127 - -436.95702 68.07983 152.25227 - -436.95703 68.07985 152.25227 - -426.24630 75.20751 146.79469 - -414.46999 82.33516 141.42602 - -401.62809 89.46281 136.14359 - -387.72061 96.59046 130.94472 - -372.74754 103.71811 125.82674 - -372.74742 103.71889 125.82674 - -356.70866 110.84654 120.78677 - -339.60431 117.97420 115.82122 - -321.43437 125.10185 110.92630 - -302.19885 132.22950 106.09821 - -281.89775 139.35715 101.33316 - -281.89780 139.35678 101.33316 - -281.61899 139.45214 101.26983 - -281.33999 139.54749 101.20650 - -281.06080 139.64284 101.14318 - -280.78142 139.73820 101.07988 - -280.50185 139.83355 101.01658 - -280.50185 139.83354 101.01658 - -280.22209 139.92890 100.95330 - -279.94213 140.02425 100.89003 - -279.66199 140.11960 100.82676 - -279.38166 140.21496 100.76351 - -279.10113 140.31031 100.70027 - -279.10113 140.31031 100.70027 - -274.02348 141.66472 99.56368 - -268.90537 142.67780 98.43041 - -263.75047 143.70802 97.30039 - -258.55818 144.75539 96.17356 - -253.32792 145.81667 95.04985 - -253.32784 -176.16867 95.04985 - -274.24678 -172.46049 91.32685 - -294.71218 -168.59776 87.64070 - -314.70262 -164.54452 83.99410 - -334.19524 -160.30077 80.38972 - -353.16862 -155.90247 76.83026 - -353.16869 -155.90333 76.83026 - -362.44899 -153.44172 75.06819 - -371.58193 -150.99178 73.31830 - -380.56827 -148.55518 71.58088 - -389.40882 -146.13191 69.85625 - -398.10434 -143.72031 68.14470 - -398.10433 -143.72111 68.14470 - -412.25089 -138.50172 65.32202 - -425.73189 -131.09896 62.53782 - -438.46683 -123.58076 59.79329 - -450.44539 -115.98277 57.08960 - -461.66427 -108.41134 54.42796 - -461.66422 -108.41030 54.42796 - -470.29590 -102.07470 52.27757 - -478.40164 -95.63541 50.15669 - -485.98161 -89.25122 48.06580 - -493.04032 -82.92129 46.00537 - -499.58235 -76.65145 43.97588 - -499.58251 -76.65071 43.97588 - -506.93126 -70.32764 41.54342 - -513.64570 -63.93420 39.15827 - -519.71530 -57.45677 36.82099 - -525.14307 -51.16000 34.53216 - -529.96103 -45.27503 32.29234 - -529.96389 -45.26101 32.29234 - -534.01195 -12.93064 29.24032 - -533.62636 18.50219 26.28603 - -528.81268 50.33467 23.42861 - -519.55075 81.77935 20.66716 - -505.97043 112.02483 18.00081 - -506.02623 112.46554 18.00081 - -488.22901 141.50371 15.42789 - -466.55103 167.41681 12.94428 - -441.51473 189.84925 10.54545 - -413.46698 210.70158 8.22685 - -382.63155 229.12682 5.98394 - -382.64814 229.77685 5.98394 - -349.44385 243.75610 3.81146 - -314.62065 252.93075 1.70286 - -278.82806 257.71652 -0.34834 - -242.69327 257.50422 -2.34862 - -207.00153 251.40646 -4.30444 - -206.98552 250.92136 -4.30444 - -172.58577 239.81479 -6.22264 - -140.02845 224.61367 -8.10936 - -109.88181 205.38695 -9.97004 - -82.66685 183.01579 -11.81015 - -58.74568 158.32393 -13.63515 - -58.76513 158.17700 -13.63515 - -38.47155 131.45180 -15.45022 - -22.06817 102.37930 -17.25835 - -9.94943 70.21930 -19.06172 - -2.51444 35.75182 -20.86249 - 0.00156 0.00882 -22.66285 + 0.00000 0.00000 615.45612 + 0.00000 0.00000 610.35635 + 0.00000 0.00000 605.25658 + 0.00000 0.00000 600.15681 + 0.00000 0.00000 595.05705 + 0.00000 0.00000 589.95728 + 0.00000 0.00000 589.95728 + 0.00000 0.00000 584.85751 + 0.00000 0.00000 579.75774 + 0.00000 0.00000 574.65798 + 0.00000 0.00000 569.55821 + 0.00000 0.00000 564.45844 + 0.00000 0.00000 564.45844 + 0.00381 0.09535 557.65876 + 0.03051 0.38141 550.85907 + 0.10298 0.85818 544.05938 + 0.24410 1.52565 537.25966 + 0.47677 2.38383 530.45991 + 0.47677 2.38383 530.45991 + 0.75709 3.24466 524.79342 + 1.13011 4.23792 519.12685 + 1.60909 5.36362 513.46018 + 2.20725 6.62175 507.79334 + 2.93785 8.01232 502.12629 + 2.93785 8.01232 502.12629 + 3.81413 9.53532 496.45899 + 4.84933 11.19076 490.79134 + 6.05669 12.97863 485.12321 + 7.44947 14.89894 479.45451 + 9.04090 16.95168 473.78511 + 9.04090 16.95168 473.78511 + 10.57850 18.82296 468.90878 + 12.28125 20.79219 464.03171 + 14.15757 22.85937 459.15379 + 16.21587 25.02449 454.27488 + 18.46459 27.28757 449.39485 + 18.46459 -204.80435 449.39485 + -4.70514 -201.65349 442.92456 + -27.50587 -198.33051 436.45484 + -49.91796 -194.83541 429.98842 + -71.92180 -191.16821 423.52801 + -93.49777 -187.32889 417.07632 + -93.49777 -187.32889 417.07632 + -95.63108 -186.93549 416.43173 + -97.75989 -186.54037 415.78726 + -99.88419 -186.14353 415.14291 + -102.00396 -185.74497 414.49868 + -104.11917 -185.34469 413.85458 + -104.11918 -185.34426 413.85458 + -116.75029 -182.89920 409.98140 + -129.21153 -180.39182 406.11336 + -141.49862 -177.82212 402.25098 + -153.60730 -175.19009 398.39481 + -165.53328 -172.49574 394.54538 + -165.53328 -172.49573 394.54538 + -168.97523 -171.69847 393.42445 + -172.40118 -170.89591 392.30414 + -175.81103 -170.08806 391.18448 + -179.20467 -169.27491 390.06548 + -182.58199 -168.45646 388.94714 + -182.58199 -168.45646 388.94714 + -195.92600 -165.12969 384.48075 + -209.00048 -161.71816 380.02607 + -221.79865 -158.22188 375.58385 + -234.31372 -154.64084 371.15486 + -246.53892 -150.97504 366.73986 + -246.53892 -150.97504 366.73986 + -249.54913 -150.04534 365.63839 + -252.54070 -149.11035 364.53785 + -255.51351 -148.17006 363.43825 + -258.46747 -147.22448 362.33960 + -261.40246 -146.27359 361.24192 + -261.40246 -146.27359 361.24192 + -275.79143 -141.50593 355.76840 + -289.70364 -136.73827 350.32062 + -303.13909 -131.97061 344.89983 + -316.09777 -127.20295 339.50728 + -328.57968 -122.43529 334.14424 + -328.57968 -122.43530 334.14424 + -340.58482 -117.66764 328.81192 + -352.11321 -112.89998 323.51138 + -363.16482 -108.13232 318.24365 + -373.73967 -103.36466 313.00978 + -383.83775 -98.59700 307.81078 + -383.83775 -98.59700 307.81078 + -397.17410 -91.92227 300.59272 + -409.57599 -85.24755 293.44731 + -421.04341 -78.57283 286.37665 + -431.57638 -71.89810 279.38285 + -441.17488 -65.22338 272.46799 + -441.17487 -65.22343 272.46799 + -449.25105 -59.02547 266.11945 + -456.52150 -52.82751 259.84177 + -462.98620 -46.62956 253.63596 + -468.64518 -40.43160 247.50306 + -473.49842 -34.23364 241.44407 + -473.49850 -34.23515 241.44407 + -477.54621 -28.03720 235.45991 + -480.78817 -21.83924 229.55107 + -483.22441 -15.64128 223.71794 + -484.85491 -9.44332 217.96090 + -485.67967 -3.24536 212.28033 + -485.67967 -3.24537 212.28033 + -485.63206 3.88228 205.84261 + -484.51887 11.00993 199.50618 + -482.34009 18.13759 193.27060 + -479.09573 25.26524 187.13542 + -474.78578 32.39289 181.10018 + -474.78579 32.39288 181.10018 + -469.41026 39.52053 175.16424 + -462.96915 46.64819 169.32622 + -455.46245 53.77584 163.58455 + -446.89017 60.90349 157.93768 + -437.25231 68.03114 152.38402 + -437.25231 68.03117 152.38402 + -426.54886 75.15882 146.92184 + -414.77983 82.28647 141.54864 + -401.94521 89.41412 136.26174 + -388.04500 96.54178 131.05847 + -373.07922 103.66943 125.93615 + -373.07910 103.67018 125.93615 + -357.04762 110.79784 120.89192 + -339.95055 117.92549 115.92218 + -321.78789 125.05314 111.02313 + -302.55966 132.18079 106.19099 + -282.26584 139.30844 101.42198 + -282.26589 139.30809 101.42198 + -281.98718 139.40345 101.35859 + -281.70827 139.49880 101.29521 + -281.42918 139.59415 101.23184 + -281.14990 139.68951 101.16848 + -280.87042 139.78486 101.10514 + -280.87042 139.78483 101.10514 + -280.59076 139.88018 101.04180 + -280.31090 139.97553 100.97847 + -280.03085 140.07089 100.91516 + -279.75062 140.16624 100.85185 + -279.47019 140.26159 100.78856 + -279.47019 140.26160 100.78856 + -274.39429 141.61601 99.65103 + -269.27793 142.62908 98.51682 + -264.12479 143.65931 97.38587 + -258.93426 144.70668 96.25810 + -253.70575 145.76795 95.13348 + -253.70567 -176.14073 95.13348 + -274.62125 -172.43255 91.40742 + -295.08330 -168.56982 87.71828 + -315.07039 -164.51658 84.06872 + -334.55966 -160.27283 80.46145 + -353.52968 -155.87453 76.89913 + -353.52976 -155.87539 76.89913 + -362.80838 -153.41378 75.13566 + -371.93964 -150.96384 73.38437 + -380.92431 -148.52724 71.64557 + -389.76318 -146.10397 69.91957 + -398.45702 -143.69237 68.20665 + -398.45701 -143.69319 68.20665 + -412.60078 -138.47381 65.38174 + -426.07899 -131.07106 62.59533 + -438.81114 -123.55288 59.84863 + -450.78696 -115.95628 57.14280 + -462.00333 -108.38761 54.47905 + -462.00328 -108.38658 54.47905 + -470.63311 -102.05331 52.32695 + -478.73719 -95.61636 50.20439 + -486.31570 -89.23457 48.11183 + -493.37314 -82.90709 46.04976 + -499.91411 -76.63973 44.01865 + -499.91427 -76.63899 44.01865 + -507.26184 -70.31592 41.58423 + -513.97511 -63.92248 39.19716 + -520.04357 -57.44594 36.85800 + -525.47035 -51.15102 34.56731 + -530.28750 -45.26798 32.32565 + -530.29036 -45.25403 32.32565 + -534.33744 -12.92366 29.27113 + -533.95087 18.50918 26.31440 + -529.13606 50.34502 23.45458 + -519.87223 81.79577 20.69081 + -506.28926 112.04606 18.02219 + -506.34516 112.48707 18.02219 + -488.54432 141.53880 15.44705 + -466.85955 167.47792 12.96129 + -441.81345 189.92544 10.56035 + -413.75458 210.78395 8.23971 + -382.90694 229.22097 5.99481 + -382.92365 229.87238 5.99481 + -349.70484 243.86729 3.82039 + -314.86523 253.05330 1.70990 + -279.05451 257.85509 -0.34315 + -242.89883 257.66330 -2.34523 + -207.18366 251.58139 -4.30283 + -207.16765 251.09553 -4.30283 + -172.74244 240.00535 -6.22277 + -140.15715 224.82243 -8.11119 + -109.98012 205.61185 -9.97355 + -82.73304 183.24678 -11.81533 + -58.77976 158.55151 -13.64199 + -58.79915 158.40513 -13.64199 + -38.48542 131.55239 -15.45871 + -22.07047 102.42842 -17.26848 + -9.94943 70.21936 -19.07349 + -2.51444 35.75187 -20.87591 + 0.00157 0.00888 -22.67791 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -21981,53 +22117,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 31.98295 0.00000 0.72017 0.00000 5.77414 - -11.29000 6.07800 33.30354 0.00000 0.71832 0.00000 5.47936 - -11.39000 6.61700 34.62384 0.00000 0.71677 0.00000 5.23256 - -11.49000 7.15600 35.94384 0.00000 0.71545 0.00000 5.02290 - -11.59000 7.69500 36.93367 0.00000 0.71432 0.00000 4.88524 - -11.59000 7.69500 37.53409 0.00000 0.71432 0.00000 4.80868 - -11.67200 8.13698 38.34556 0.00000 0.71350 0.00000 4.71250 - -11.75400 8.57896 39.42738 0.00000 0.71277 0.00000 4.59582 - -11.83600 9.02094 40.50904 0.00000 0.71211 0.00000 4.49056 - -11.91800 9.46292 41.59055 0.00000 0.71151 0.00000 4.39511 - -12.00000 9.90490 42.40159 0.00000 0.71097 0.00000 4.32916 - -12.00000 9.90490 25.59840 0.00000 0.75285 0.00000 2.39189 + -11.19000 5.53900 31.98295 0.00000 0.71899 0.00000 5.77414 + -11.29000 6.07800 33.30354 0.00000 0.71724 0.00000 5.47936 + -11.39000 6.61700 34.62384 0.00000 0.71578 0.00000 5.23256 + -11.49000 7.15600 35.94384 0.00000 0.71454 0.00000 5.02290 + -11.59000 7.69500 36.93367 0.00000 0.71347 0.00000 4.88524 + -11.59000 7.69500 37.53409 0.00000 0.71347 0.00000 4.80868 + -11.67200 8.13698 38.34556 0.00000 0.71270 0.00000 4.71250 + -11.75400 8.57896 39.42738 0.00000 0.71201 0.00000 4.59582 + -11.83600 9.02094 40.50904 0.00000 0.71139 0.00000 4.49056 + -11.91800 9.46292 41.59055 0.00000 0.71082 0.00000 4.39511 + -12.00000 9.90490 42.40159 0.00000 0.71031 0.00000 4.32916 + -12.00000 9.90490 25.59840 0.00000 0.75219 0.00000 2.39189 -12.10000 13.09390 29.70475 0.00000 0.75001 0.00000 2.26859 -12.20000 16.28290 35.16081 0.00000 0.74828 0.00000 2.15937 -12.30000 19.47190 40.59674 0.00000 0.74712 0.00000 2.08489 -12.40000 22.66090 46.01595 1.78977 0.74628 0.07898 2.03063 -12.50000 25.84990 50.07174 10.89282 0.74565 0.43480 1.99866 -12.50000 25.84990 177.20934 6.67370 0.47455 0.25466 6.76202 - -12.64000 27.27650 165.98087 6.95749 0.47432 0.25507 6.08512 - -12.78000 28.70310 168.35015 7.33312 0.47411 0.25548 5.86523 - -12.92000 30.12970 174.33058 7.70643 0.47392 0.25578 5.78600 - -13.06000 31.55630 181.36358 8.07815 0.47374 0.25599 5.74730 - -13.20000 32.98290 186.93725 8.35620 0.47359 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47448 0.25619 5.72128 - -13.34000 34.40950 196.54307 8.81848 0.47325 0.25628 5.71188 - -13.48000 35.83610 204.37210 9.18761 0.47312 0.25638 5.70297 - -13.62000 37.26270 212.27871 9.55625 0.47301 0.25646 5.69681 - -13.76000 38.68930 220.23553 9.92452 0.47290 0.25652 5.69241 - -13.90000 40.11590 226.22528 10.20054 0.47280 0.25656 5.68988 - -13.90000 40.11590 230.22741 10.38446 0.47280 0.25658 5.68848 - -14.04000 41.54250 236.24102 10.66024 0.47271 0.25661 5.68673 - -14.18000 42.96910 244.27295 11.02779 0.47262 0.25664 5.68485 - -14.32000 44.39570 252.31767 11.39518 0.47254 0.25667 5.68338 - -14.46000 45.82230 260.37206 11.76244 0.47246 0.25670 5.68221 - -14.60000 47.24890 266.41766 12.03782 0.47239 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50854 0.25672 5.68106 - -14.74000 48.67550 276.50161 12.49666 0.47193 0.25673 5.68051 - -14.88000 50.10210 284.57394 12.86365 0.47188 0.25675 5.67988 - -15.02000 51.52870 292.65001 13.23057 0.47183 0.25676 5.67936 - -15.16000 52.95530 300.72910 13.59744 0.47178 0.25677 5.67892 - -15.30000 54.38190 306.79002 13.87256 0.47174 0.25678 5.67864 - -15.30000 54.38190 310.83135 14.05596 0.47174 0.25678 5.67847 - -15.44000 55.80850 316.89433 14.33104 0.47169 0.25679 5.67824 - -15.58000 57.23510 324.97970 14.69778 0.47165 0.25680 5.67798 - -15.72000 58.66170 333.06652 15.06449 0.47162 0.25680 5.67775 - -15.86000 60.08830 341.15457 15.43118 0.47158 0.25681 5.67755 - -16.00000 61.51490 347.22126 15.70618 0.47008 0.25681 5.67742 + -12.64000 27.27650 165.98087 6.95749 0.47277 0.25507 6.08512 + -12.78000 28.70310 168.35015 7.33312 0.47264 0.25548 5.86523 + -12.92000 30.12970 174.33058 7.70643 0.47251 0.25578 5.78600 + -13.06000 31.55630 181.36358 8.07815 0.47240 0.25599 5.74730 + -13.20000 32.98290 186.93725 8.35620 0.47230 0.25612 5.72966 + -13.20000 32.98290 190.74477 8.54126 0.47230 0.25619 5.72128 + -13.34000 34.40950 196.54307 8.81848 0.47221 0.25628 5.71188 + -13.48000 35.83610 204.37210 9.18761 0.47213 0.25638 5.70297 + -13.62000 37.26270 212.27871 9.55625 0.47205 0.25646 5.69681 + -13.76000 38.68930 220.23553 9.92452 0.47198 0.25652 5.69241 + -13.90000 40.11590 226.22528 10.20054 0.47191 0.25656 5.68988 + -13.90000 40.11590 230.22741 10.38446 0.47191 0.25658 5.68848 + -14.04000 41.54250 236.24102 10.66024 0.47185 0.25661 5.68673 + -14.18000 42.96910 244.27295 11.02779 0.47179 0.25664 5.68485 + -14.32000 44.39570 252.31767 11.39518 0.47173 0.25667 5.68338 + -14.46000 45.82230 260.37206 11.76244 0.47168 0.25670 5.68221 + -14.60000 47.24890 266.41766 12.03782 0.47163 0.25671 5.68149 + -14.60000 47.24890 270.45017 12.22137 0.47163 0.25672 5.68106 + -14.74000 48.67550 276.50161 12.49666 0.47159 0.25673 5.68051 + -14.88000 50.10210 284.57394 12.86365 0.47154 0.25675 5.67988 + -15.02000 51.52870 292.65001 13.23057 0.47150 0.25676 5.67936 + -15.16000 52.95530 300.72910 13.59744 0.47147 0.25677 5.67892 + -15.30000 54.38190 306.79002 13.87256 0.47143 0.25678 5.67864 + -15.30000 54.38190 310.83135 14.05596 0.47143 0.25678 5.67847 + -15.44000 55.80850 316.89433 14.33104 0.47139 0.25679 5.67824 + -15.58000 57.23510 324.97970 14.69778 0.47136 0.25680 5.67798 + -15.72000 58.66170 333.06652 15.06449 0.47133 0.25680 5.67775 + -15.86000 60.08830 341.15457 15.43118 0.47130 0.25681 5.67755 + -16.00000 61.51490 347.22126 15.70618 0.47127 0.25681 5.67742 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -22201,53 +22337,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 31.98295 100.84990 31.98295 3.98901 302 100 P - 33.30354 101.83090 33.30354 4.36593 302 100 P - 34.62384 102.81190 34.62384 4.74285 302 100 P - 35.44157 103.79290 35.94384 5.11977 220 99 2 - 35.21238 104.77390 36.93367 5.40044 220 95 2 - 35.48124 104.77390 37.53409 5.57562 220 95 2 - 35.30151 105.57832 38.34556 5.80577 220 92 2 - 35.25042 106.38274 39.42738 6.11484 220 89 2 - 35.20696 107.18716 40.50904 6.42392 220 87 2 - 35.17123 107.99158 41.59055 6.73299 220 85 2 - 35.02240 108.79600 42.40159 6.96350 220 83 2 - 25.59840 108.79600 25.59840 8.05716 302 100 P + 31.98295 100.84990 31.98295 3.98248 302 100 P + 33.30354 101.83090 33.30354 4.35940 302 100 P + 34.62384 102.81190 34.62384 4.73632 302 100 P + 35.42152 103.79290 35.94384 5.11324 220 99 2 + 35.19207 104.77390 36.93367 5.39402 220 95 2 + 35.46044 104.77390 37.53409 5.56899 220 94 2 + 35.28050 105.57832 38.34556 5.79923 220 92 2 + 35.22899 106.38274 39.42738 6.10831 220 89 2 + 35.18511 107.18716 40.50904 6.41738 220 87 2 + 35.14897 107.99158 41.59055 6.72645 220 85 2 + 34.99993 108.79600 42.40159 6.95704 220 83 2 + 25.59840 108.79600 25.59840 8.05010 302 100 P 29.70475 106.77700 29.70475 9.82057 302 100 P 35.16081 104.75800 35.16081 12.18420 302 100 P - 39.46921 102.73900 40.59674 14.54783 220 97 2 - 41.00423 100.72000 46.01595 16.91145 220 89 2 - 41.88846 98.70100 50.07174 18.68061 220 84 2 + 39.45599 102.73900 40.59674 14.54783 220 97 2 + 40.99009 100.72000 46.01595 16.91145 220 89 2 + 41.87400 98.70100 50.07174 18.68061 220 84 2 177.20934 98.70100 177.20934 12.43641 302 100 P - 165.98087 100.07440 165.98087 12.93778 302 100 P - 168.35015 101.44780 168.35015 13.60840 302 100 P - 170.94015 102.82120 174.33058 14.27902 220 98 2 - 164.97722 104.19460 181.36358 14.94963 220 91 2 - 158.89003 105.56800 186.93725 15.45135 220 85 2 - 160.25955 105.56800 190.74477 15.81888 220 84 2 - 151.74679 106.94140 196.54307 16.28433 220 77 2 - 127.83070 108.31480 204.37210 16.95495 220 63 2 - 115.64725 109.68820 212.27871 17.62557 220 54 2 - 111.84291 111.06160 220.23553 18.29618 220 51 2 - 90.60544 112.43500 226.22528 18.79818 110 40 1 - 90.94269 112.43500 230.22741 19.13543 110 40 1 - 65.37494 113.80840 236.24102 19.63742 110 28 1 - 40.74235 115.18180 244.27295 20.30804 110 17 1 - 28.07543 116.55520 252.31767 20.97865 110 11 1 - 21.30339 117.92860 260.37206 21.64927 110 0 1 - 14.44236 119.30200 266.41766 22.15141 110 0 1 - 14.62591 119.30200 270.45017 24.20913 110 0 1 - 12.49666 120.67540 276.50161 22.97149 1 0 A - 12.86365 122.04880 284.57394 23.64210 1 0 A - 13.23057 123.42220 292.65001 24.31272 1 0 A - 13.59744 124.79560 300.72910 24.98334 1 0 A - 13.87256 126.16900 306.79002 25.48571 1 0 A - 14.05596 126.16900 310.83135 25.82220 1 0 A - 14.33104 127.54240 316.89433 26.32457 1 0 A - 14.69778 128.91580 324.97970 26.99519 1 0 A - 15.06449 130.28920 333.06652 27.66581 1 0 A - 15.43118 131.66260 341.15457 28.33642 1 0 A - 15.70618 133.03600 347.22126 28.74932 1 0 A + 165.98087 100.07440 165.98087 12.89549 302 100 P + 168.35015 101.44780 168.35015 13.56611 302 100 P + 170.97578 102.82120 174.33058 14.23672 220 98 2 + 165.00586 104.19460 181.36358 14.90734 220 91 2 + 158.91231 105.56800 186.93725 15.40951 220 85 2 + 160.25119 105.56800 190.74477 15.74641 220 84 2 + 151.89857 106.94140 196.54307 16.24858 220 77 2 + 127.95440 108.31480 204.37210 16.91919 220 63 2 + 115.68303 109.68820 212.27871 17.58981 220 54 2 + 111.87256 111.06160 220.23553 18.26043 220 51 2 + 90.70046 112.43500 226.22528 18.76274 110 40 1 + 91.03707 112.43500 230.22741 19.09935 110 40 1 + 65.44635 113.80840 236.24102 19.60166 110 28 1 + 40.79105 115.18180 244.27295 20.27228 110 17 1 + 28.13401 116.55520 252.31767 20.94290 110 11 1 + 21.35905 117.92860 260.37206 21.61351 110 0 1 + 14.49447 119.30200 266.41766 22.11592 110 0 1 + 14.67802 119.30200 270.45017 22.45234 110 0 1 + 12.49666 120.67540 276.50161 22.95475 1 0 A + 12.86365 122.04880 284.57394 23.62536 1 0 A + 13.23057 123.42220 292.65001 24.29598 1 0 A + 13.59744 124.79560 300.72910 24.96660 1 0 A + 13.87256 126.16900 306.79002 25.46908 1 0 A + 14.05596 126.16900 310.83135 25.80535 1 0 A + 14.33104 127.54240 316.89433 26.30783 1 0 A + 14.69778 128.91580 324.97970 26.97845 1 0 A + 15.06449 130.28920 333.06652 27.64907 1 0 A + 15.43118 131.66260 341.15457 28.31968 1 0 A + 15.70618 133.03600 347.22126 28.82222 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -22265,9 +22401,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 29.745 'Hydrobiaklei' - -12.00 17.908 'Basisveen' - -12.50 254.776 'Eerste zandlaag' + -10.00 29.733 'Hydrobiaklei' + -12.00 17.905 'Basisveen' + -12.50 254.887 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22289,7 +22425,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -6.32 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -97.80 'Eerste zandlaag' + -12.50 -97.84 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -22399,18 +22535,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 71.33900 32.23900 7.75511 7.14576 -10.88000 71.33900 32.23900 9.20719 7.20501 -10.94000 71.33900 32.23900 10.90136 7.27414 @@ -22510,7 +22646,7 @@ Lambda passive -11.83600 6.63504 35.39653 -3.24168 0.69929 0.00000 5.33479 -11.91800 6.62647 35.30418 -3.24558 0.69929 0.00000 5.32775 -12.00000 6.61790 35.24199 -3.24851 0.69929 0.00000 5.32353 - -12.00000 6.61790 18.93590 -0.13328 0.74661 0.00000 2.98196 + -12.00000 6.61790 18.93590 -0.13328 0.74118 0.00000 2.98196 -12.10000 5.54690 17.44494 -0.60097 0.74118 0.00000 3.14499 -12.20000 4.47590 15.47018 -1.22599 0.74118 0.00000 3.45633 -12.30000 3.40490 13.50874 -1.85226 0.74118 0.00000 3.96744 @@ -22522,7 +22658,7 @@ Lambda passive -12.92000 5.54270 33.29796 1.41797 0.47008 0.25583 6.00753 -13.06000 6.96930 41.40217 1.78348 0.47008 0.25591 5.94065 -13.20000 8.39590 47.41164 2.05778 0.47008 0.25597 5.89752 - -13.20000 8.39590 51.39502 2.24074 0.67576 0.25601 5.87201 + -13.20000 8.39590 51.39502 2.24074 0.47008 0.25601 5.87201 -13.34000 9.82250 57.35124 2.51530 0.47008 0.25608 5.83876 -13.48000 11.24910 65.27941 2.88156 0.47008 0.25616 5.80308 -13.62000 12.67570 73.20787 3.24801 0.47008 0.25624 5.77545 @@ -22718,19 +22854,19 @@ Status character 1.31679 72.37570 32.27064 2.44538 1 0 A 1.48141 72.96430 36.30522 2.75111 1 0 A 1.60489 73.55290 39.33115 2.98041 1 0 A - 3.44743 73.55290 38.56338 4.69253 110 0 1 - 3.34506 75.08335 37.56962 4.68705 110 0 1 - 3.25450 76.61380 36.79720 4.67975 110 0 1 - 3.17691 78.14425 36.32988 4.67244 110 0 1 - 3.11163 79.67470 36.01211 4.66513 110 0 1 - 3.05982 81.20515 35.82978 4.65965 110 0 1 - 3.00539 81.20515 35.73713 4.65632 110 0 1 + 3.44748 73.55290 38.56338 4.69253 110 0 1 + 3.34515 75.08335 37.56962 4.68705 110 0 1 + 3.25464 76.61380 36.79720 4.67975 110 0 1 + 3.17710 78.14425 36.32988 4.67244 110 0 1 + 3.11189 79.67470 36.01211 4.66513 110 0 1 + 3.06016 81.20515 35.82978 4.65965 110 0 1 + 3.00573 81.20515 35.73713 4.65632 110 0 1 0.00000 82.46012 35.62820 4.65183 1 0 A 0.00000 83.71509 35.50305 4.64584 1 0 A 0.00000 84.97006 35.39653 4.63984 1 0 A 0.00000 86.22503 35.30418 4.63385 1 0 A 0.00000 87.48000 35.24199 4.62936 1 0 A - 0.00000 87.48000 18.93590 4.74110 1 0 A + 0.00000 87.48000 18.93590 4.70661 1 0 A 0.00000 89.72100 17.44494 4.11126 1 0 A 0.00000 91.96200 15.47018 3.31745 1 0 A 0.00000 94.20300 13.50874 2.52365 1 0 A @@ -22742,7 +22878,7 @@ Status character 1.41797 102.80520 33.29796 2.60552 1 0 A 1.78348 104.17860 41.40217 3.27613 1 0 A 2.05778 105.55200 47.41164 3.77910 1 0 A - 2.24074 105.55200 51.39502 5.91465 1 0 A + 2.24074 105.55200 51.39502 4.11441 1 0 A 2.51530 106.92540 57.35124 4.61737 1 0 A 2.88156 108.29880 65.27941 5.28799 1 0 A 3.24801 109.67220 73.20787 5.95860 1 0 A @@ -22751,18 +22887,18 @@ Status character 4.07300 112.41900 91.09311 7.46749 1 0 A 4.34810 113.79240 97.07420 7.97045 1 0 A 4.71492 115.16580 105.06258 8.64107 1 0 A - 13.49177 116.53920 113.06599 9.31169 110 12 1 - 38.16569 117.91260 121.08270 9.98231 110 32 1 - 62.13860 119.28600 127.10259 10.48527 110 49 1 - 62.47391 119.28600 131.11934 10.82058 110 48 1 - 82.21047 120.65940 137.14912 11.32354 220 60 2 - 104.04030 122.03280 145.19569 11.99416 220 72 2 - 125.54319 123.40620 153.24941 12.66477 220 82 2 - 138.04866 124.77960 161.30917 13.33539 220 86 2 - 150.74290 126.15300 167.35725 13.83835 220 90 2 - 151.03856 126.15300 171.39084 14.17366 220 88 2 - 160.18679 127.52640 177.44326 14.67663 220 90 2 - 176.51952 128.89980 185.51614 15.34724 220 95 2 + 13.42950 116.53920 113.06599 9.31169 110 12 1 + 38.12512 117.91260 121.08270 9.98231 110 31 1 + 62.11927 119.28600 127.10259 10.48527 110 49 1 + 62.45458 119.28600 131.11934 10.82058 110 48 1 + 82.10850 120.65940 137.14912 11.32354 220 60 2 + 103.94962 122.03280 145.19569 11.99416 220 72 2 + 125.46317 123.40620 153.24941 12.66477 220 82 2 + 138.06421 124.77960 161.30917 13.33539 220 86 2 + 150.76341 126.15300 167.35725 13.83835 220 90 2 + 152.36274 126.15300 171.39084 14.17366 220 89 2 + 160.21225 127.52640 177.44326 14.67663 220 90 2 + 177.03874 128.89980 185.51614 15.34724 220 95 2 193.59215 130.27320 193.59215 16.01786 302 100 P 201.67083 131.64660 201.67083 16.68848 302 100 P 207.73129 133.02000 207.73129 17.19144 302 100 P @@ -22782,7 +22918,7 @@ Layer name -10.79 0.370 'Grind' -11.09 1.737 'Hydrobiaklei' -12.00 0.000 'Basisveen' - -12.50 221.639 'Eerste zandlaag' + -12.50 221.756 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22801,7 +22937,7 @@ Layer name -10.79 0.15 'Grind' -11.09 0.37 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 85.08 'Eerste zandlaag' + -12.50 85.12 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23041,8 +23177,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 637.35155 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 552.14744 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 637.40080 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 552.06570 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -23083,10 +23219,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 46.76 : Percentage mobilized resistance left - 35.55 : Percentage mobilized resistance right - 288.61 : Effective left - 328.76 : Effective right + 46.78 : Percentage mobilized resistance left + 35.56 : Percentage mobilized resistance right + 288.74 : Effective left + 328.86 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 617.26 : Max effective resistance left @@ -23095,8 +23231,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 86.18 : Vertical force left - 114.08 : Vertical force right + 86.23 : Vertical force left + 114.13 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -23105,10 +23241,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --114.08 : Active force -86.18 : Passive force --114.08 : Plugged active force -86.18 : Plugged passive force +-114.13 : Active force +86.23 : Passive force +-114.13 : Plugged active force +86.23 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance @@ -23128,210 +23264,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 623.71231 - 0.00000 0.00000 618.33356 - 0.00000 0.00000 612.95480 - 0.00000 0.00000 607.57605 - 0.00000 0.00000 602.19730 - 0.00000 0.00000 596.81854 - 0.00000 0.00000 596.81854 - 0.00000 0.00000 591.43979 - 0.00000 0.00000 586.06103 - 0.00000 0.00000 580.68228 - 0.00000 0.00000 575.30352 - 0.00000 0.00000 569.92477 - 0.00000 0.00000 569.92477 - 0.00381 0.09535 562.75310 - 0.03051 0.38141 555.58144 - 0.10298 0.85818 548.40976 - 0.24410 1.52565 541.23806 - 0.47677 2.38383 534.06633 - 0.47677 2.38383 534.06633 - 0.75709 3.24466 528.08985 - 1.13011 4.23792 522.11330 - 1.60909 5.36362 516.13664 - 2.20725 6.62175 510.15981 - 2.93785 8.01232 504.18278 - 2.93785 8.01232 504.18278 - 3.81413 9.53532 498.20550 - 4.84933 11.19076 492.22785 - 6.05669 12.97863 486.24975 - 7.44947 14.89894 480.27106 - 9.04090 16.95168 474.29167 - 9.04090 16.95168 474.29167 - 10.57850 18.82296 469.14875 - 12.28125 20.79219 464.00510 - 14.15757 22.85937 458.86059 - 16.21587 25.02449 453.71509 - 18.46459 27.28757 448.56848 - 18.46459 -251.43648 448.56848 - -10.02121 -248.28561 441.74491 - -38.13799 -244.96263 434.92256 - -65.86615 -241.46754 428.10480 - -93.18605 -237.80034 421.29497 - -120.07808 -233.96102 414.49645 - -120.07808 -233.96102 414.49645 - -122.74300 -233.56762 413.81735 - -125.40342 -233.17250 413.13840 - -128.05932 -232.77566 412.45960 - -130.71070 -232.37710 411.78096 - -133.35752 -231.97682 411.10247 - -133.35753 -231.97639 411.10247 - -149.18760 -229.53133 407.02318 - -164.84780 -227.02395 402.95044 - -180.33386 -224.45425 398.88494 - -195.64150 -221.82222 394.82734 - -210.76644 -219.12787 390.77834 - -210.76644 -219.12786 390.77834 - -215.14103 -218.33060 389.59959 - -219.49963 -217.52804 388.42164 - -223.84212 -216.72019 387.24451 - -228.16840 -215.90704 386.06822 - -232.47837 -215.08859 384.89277 - -232.47837 -215.08859 384.89277 - -249.55295 -211.76182 380.19985 - -266.35800 -208.35029 375.52183 - -282.88673 -204.85401 370.85971 - -299.13238 -201.27297 366.21446 - -315.08815 -197.60717 361.58708 - -315.08815 -197.60717 361.58708 - -319.03100 -196.67747 360.43314 - -322.95521 -195.74248 359.28040 - -326.86067 -194.80219 358.12885 - -330.74726 -193.85661 356.97853 - -334.61490 -192.90572 355.82944 - -334.61490 -192.90572 355.82944 - -353.66488 -188.07185 350.10306 - -372.22485 -183.10553 344.40967 - -390.28157 -178.00679 338.75099 - -407.82179 -172.77560 333.12867 - -424.83228 -167.41199 327.54442 - -424.83228 -167.41199 327.54442 - -441.29978 -161.91593 321.99987 - -457.21105 -156.28745 316.49651 - -472.55285 -150.52652 311.03576 - -487.31194 -144.63317 305.61906 - -501.47507 -138.60737 300.24784 - -501.47507 -138.60738 300.24784 - -520.27703 -129.94878 292.80723 - -537.84861 -121.03060 285.46180 - -554.15348 -111.85286 278.21453 - -569.15530 -102.41554 271.06840 - -582.81772 -92.71865 264.02638 - -582.81771 -92.71870 264.02638 - -594.27318 -83.48202 257.58302 - -604.51334 -74.02153 251.23339 - -613.50908 -64.33722 244.97892 - -621.23132 -54.42909 238.82102 - -627.65095 -44.29715 232.76111 - -627.65103 -44.29867 232.76111 - -632.73916 -33.94291 226.80044 - -636.46649 -23.36334 220.93957 - -638.80393 -12.55996 215.17888 - -639.72238 -1.53276 209.51872 - -639.19275 9.71826 203.95947 - -639.19275 9.71825 203.95947 - -636.75571 22.93361 197.69136 - -632.32085 36.44497 191.55610 - -625.84391 50.25232 185.55232 - -617.28065 64.35566 179.67868 - -606.58682 78.75500 173.93381 - -606.58682 78.75500 173.93381 - -593.71816 93.45033 168.31601 - -578.63042 108.44167 162.82209 - -561.27935 123.72899 157.44841 - -541.62070 139.31232 152.19136 - -519.61021 155.19164 147.04731 - -519.61022 155.19166 147.04731 - -495.20365 171.36698 142.01225 - -468.35675 187.83829 137.08052 - -439.02525 204.60560 132.24599 - -407.16492 221.66890 127.50255 - -372.73150 239.02819 122.84407 - -372.73138 239.02897 122.84407 - -335.68051 256.68426 118.26401 - -295.96804 274.63555 113.75400 - -253.54973 292.88284 109.30521 - -208.38132 311.42611 104.90878 - -160.41857 330.26539 100.55585 - -160.41862 330.26503 100.55585 - -159.75783 330.51907 100.49787 - -159.09654 330.77316 100.43990 - -158.43474 331.02730 100.38193 - -157.77243 331.28150 100.32397 - -157.10961 331.53575 100.26601 - -157.10961 331.53573 100.26601 - -156.44629 331.79003 100.20807 - -155.78245 332.04439 100.15012 - -155.11811 332.29879 100.09218 - -154.45326 332.55325 100.03425 - -153.78790 332.80777 99.97633 - -153.78790 332.80776 99.97633 - -141.74744 335.48370 98.93462 - -129.65538 336.30034 97.89462 - -117.53361 337.13413 96.85620 - -105.38152 337.98506 95.81919 - -93.19848 338.85314 94.78346 - -93.19841 -213.29507 94.78346 - -118.61467 -210.27766 91.33986 - -143.65742 -207.06972 87.91220 - -168.30379 -203.67127 84.50379 - -192.53091 -200.08231 81.11795 - -216.31592 -196.30281 77.75798 - -216.31599 -196.30367 77.75798 - -228.01592 -193.69552 76.08872 - -239.55969 -191.09904 74.42712 - -250.94807 -188.51590 72.77356 - -262.18186 -185.94609 71.12843 - -273.26183 -183.38795 69.49211 - -273.26184 -183.38854 69.49211 - -291.37740 -178.20571 66.78553 - -308.82874 -170.79581 64.10616 - -325.53152 -163.23475 61.45553 - -341.47091 -155.53018 58.83522 - -356.63611 -147.78211 56.24679 - -356.63607 -147.78093 56.24679 - -368.48977 -141.28481 54.14909 - -379.80323 -134.65878 52.07453 - -390.57475 -128.06689 50.02376 - -400.80713 -121.50912 47.99747 - -410.50324 -114.98776 45.99633 - -410.50339 -114.98689 45.99633 - -421.67631 -108.48624 43.59089 - -432.19961 -101.95486 41.22481 - -442.06253 -95.28102 38.89901 - -451.25988 -88.72921 36.61440 - -459.82408 -82.64869 34.37191 - -459.82716 -82.63363 34.37191 - -469.12077 -50.49448 31.30523 - -474.00748 -19.25255 28.32443 - -474.47787 12.70971 25.42959 - -470.44101 44.83822 22.62077 - -461.96897 75.98513 19.89806 - -462.02452 76.43141 19.89806 - -449.21094 106.33684 17.26076 - -432.39784 133.07866 14.70563 - -412.11332 156.29746 12.22901 - -388.71042 177.89041 9.82723 - -362.35950 198.29427 7.49661 - -362.37637 198.97866 7.49661 - -333.26185 216.09442 5.23278 - -302.10398 228.19492 3.02988 - -269.54511 236.48457 0.88202 - -236.07587 240.75482 -1.21671 - -202.40526 239.20724 -3.27220 - -202.38371 238.72498 -3.27220 - -169.43638 230.92229 -5.29082 - -137.97084 217.86164 -7.27852 - -108.63637 200.48850 -9.24061 - -81.99424 179.68302 -11.18240 - -58.44689 156.26841 -13.10920 - -58.46649 156.12081 -13.10920 - -38.38821 130.38424 -15.02609 - -22.08192 102.01170 -16.93605 - -9.98249 70.26296 -18.84126 - -2.52945 35.91800 -20.74387 - 0.00156 0.00882 -22.64607 + 0.00000 0.00000 624.18083 + 0.00000 0.00000 618.79853 + 0.00000 0.00000 613.41623 + 0.00000 0.00000 608.03394 + 0.00000 0.00000 602.65164 + 0.00000 0.00000 597.26935 + 0.00000 0.00000 597.26935 + 0.00000 0.00000 591.88705 + 0.00000 0.00000 586.50475 + 0.00000 0.00000 581.12246 + 0.00000 0.00000 575.74016 + 0.00000 0.00000 570.35787 + 0.00000 0.00000 570.35787 + 0.00381 0.09535 563.18148 + 0.03051 0.38141 556.00509 + 0.10298 0.85818 548.82869 + 0.24410 1.52565 541.65227 + 0.47677 2.38383 534.47581 + 0.47677 2.38383 534.47581 + 0.75709 3.24466 528.49540 + 1.13011 4.23792 522.51491 + 1.60909 5.36362 516.53431 + 2.20725 6.62175 510.55356 + 2.93785 8.01232 504.57259 + 2.93785 8.01232 504.57259 + 3.81413 9.53532 498.59137 + 4.84933 11.19076 492.60979 + 6.05669 12.97863 486.62775 + 7.44947 14.89894 480.64513 + 9.04090 16.95168 474.66181 + 9.04090 16.95168 474.66181 + 10.57850 18.82296 469.51550 + 12.28125 20.79219 464.36847 + 14.15757 22.85937 459.22057 + 16.21587 25.02449 454.07169 + 18.46459 27.28757 448.92169 + 18.46459 -251.48573 448.92169 + -10.02682 -248.33486 442.09364 + -38.14922 -245.01188 435.26680 + -65.88299 -241.51679 428.44455 + -93.20851 -237.84959 421.63025 + -120.10615 -234.01027 414.82725 + -120.10615 -234.01027 414.82725 + -122.77163 -233.61687 414.14770 + -125.43261 -233.22175 413.46830 + -128.08908 -232.82491 412.78905 + -130.74101 -232.42635 412.10996 + -133.38839 -232.02607 411.43103 + -133.38841 -232.02564 411.43103 + -149.22186 -229.58058 407.34904 + -164.88544 -227.07320 403.27361 + -180.37487 -224.50349 399.20542 + -195.68589 -221.87147 395.14514 + -210.81421 -219.17712 391.09345 + -210.81421 -219.17710 391.09345 + -215.18979 -218.37984 389.91392 + -219.54937 -217.57729 388.73518 + -223.89285 -216.76944 387.55727 + -228.22011 -215.95628 386.38020 + -232.53106 -215.13784 385.20397 + -232.53106 -215.13783 385.20397 + -249.60958 -211.81107 380.50792 + -266.41857 -208.39954 375.82678 + -282.95125 -204.90326 371.16154 + -299.20083 -201.32221 366.51318 + -315.16054 -197.65641 361.88269 + -315.16054 -197.65641 361.88269 + -319.10438 -196.72672 360.72797 + -323.02958 -195.79173 359.57445 + -326.93602 -194.85144 358.42213 + -330.82360 -193.90585 357.27103 + -334.69222 -192.95497 356.12117 + -334.69222 -192.95497 356.12117 + -353.74712 -188.12109 350.39090 + -372.31202 -183.15478 344.69366 + -390.37367 -178.05603 339.03111 + -407.91881 -172.82485 333.40494 + -424.93422 -167.46123 327.81685 + -424.93422 -167.46123 327.81685 + -441.40665 -161.96518 322.26847 + -457.32284 -156.33669 316.76128 + -472.66957 -150.57577 311.29673 + -487.43358 -144.68241 305.87623 + -501.60164 -138.65662 300.50122 + -501.60164 -138.65662 300.50122 + -520.41049 -129.99802 293.05532 + -537.98897 -121.07985 285.70463 + -554.30074 -111.90211 278.45212 + -569.30945 -102.46479 271.30078 + -582.97876 -92.76790 264.25358 + -582.97875 -92.76795 264.25358 + -594.44063 -83.53127 257.80544 + -604.68719 -74.07078 251.45106 + -613.68933 -64.38647 245.19186 + -621.41797 -54.47834 239.02926 + -627.84400 -44.34640 232.96467 + -627.84408 -44.34792 232.96467 + -632.93861 -33.99216 226.99936 + -636.67235 -23.41259 221.13388 + -639.01619 -12.60921 215.36861 + -639.94104 -1.58201 209.70391 + -639.41781 9.66901 204.14015 + -639.41781 9.66900 204.14015 + -636.98813 22.88436 197.86690 + -632.56064 36.39572 191.72655 + -626.09106 50.20307 185.71772 + -617.53517 64.30641 179.83909 + -606.84870 78.70576 174.08928 + -606.84870 78.70575 174.08928 + -593.98740 93.40109 168.46660 + -578.90702 108.39242 162.96785 + -561.56331 123.67975 157.58940 + -541.91203 139.26307 152.32764 + -519.90891 155.14239 147.17893 + -519.90891 155.14242 147.17893 + -495.50971 171.31773 142.13929 + -468.67016 187.78904 137.20303 + -439.34603 204.55635 132.36405 + -407.49306 221.61965 127.61621 + -373.06701 238.97894 122.95341 + -373.06689 238.97970 122.95341 + -336.02338 256.63499 118.36909 + -296.31828 274.58628 113.85491 + -253.90733 292.83356 109.40201 + -208.74629 311.37684 105.00154 + -160.79090 330.21612 100.64465 + -160.79095 330.21577 100.64465 + -160.13027 330.46981 100.58662 + -159.46907 330.72390 100.52859 + -158.80737 330.97804 100.47057 + -158.14516 331.23223 100.41256 + -157.48244 331.48648 100.35455 + -157.48244 331.48646 100.35455 + -156.81921 331.74076 100.29655 + -156.15548 331.99512 100.23856 + -155.49123 332.24953 100.18057 + -154.82648 332.50399 100.12258 + -154.16122 332.75850 100.06460 + -154.16122 332.75849 100.06460 + -142.12254 335.43443 99.02196 + -130.03225 336.25107 97.98103 + -117.91225 337.08486 96.94167 + -105.76193 337.93579 95.90374 + -93.58067 338.80387 94.86709 + -93.58060 -213.26260 94.86709 + -118.99297 -210.24520 91.42045 + -144.03182 -207.03726 87.98980 + -168.67429 -203.63880 84.57846 + -192.89751 -200.04984 81.18973 + -216.67863 -196.27034 77.82693 + -216.67870 -196.27120 77.82693 + -228.37668 -193.66305 76.15627 + -239.91850 -191.06657 74.49328 + -251.30494 -188.48343 72.83835 + -262.53678 -185.91362 71.19185 + -273.61480 -183.35548 69.55418 + -273.61481 -183.35609 69.55418 + -291.72712 -178.17325 66.84538 + -309.17522 -170.76335 64.16381 + -325.87475 -163.20229 61.51102 + -341.81094 -155.49908 58.88858 + -356.97316 -147.75375 56.29805 + -356.97313 -147.75257 56.29805 + -368.82460 -141.25876 54.19866 + -380.13601 -134.63506 52.12242 + -390.90568 -128.04553 50.06999 + -401.13641 -121.49017 48.04207 + -410.83107 -114.97126 46.03931 + -410.83122 -114.97040 46.03931 + -422.00249 -108.46975 43.63194 + -432.52414 -101.93837 41.26395 + -442.38544 -95.26541 38.93627 + -451.58132 -88.71542 36.64981 + -460.14424 -82.63682 34.40550 + -460.14731 -82.62183 34.40550 + -469.43927 -50.48268 31.33633 + -474.32433 -19.24075 28.35309 + -474.79306 12.72151 25.45586 + -470.75442 44.85282 22.64473 + -462.27998 76.00471 19.91976 + -462.33561 76.45129 19.91976 + -449.51864 106.37046 17.28024 + -432.69893 133.13850 14.72296 + -412.40478 156.37255 12.24424 + -388.99091 177.97187 9.84042 + -362.62787 198.38797 7.50781 + -362.64486 199.07374 7.50781 + -333.51584 216.20591 5.24204 + -302.34146 228.31849 3.03724 + -269.76455 236.61900 0.88753 + -236.27548 240.90495 -1.21302 + -202.58260 239.37461 -3.27029 + -202.56105 238.89159 -3.27029 + -169.58923 231.10640 -5.29064 + -138.09656 218.06478 -7.28006 + -108.73244 200.70857 -9.24385 + -82.05880 179.90996 -11.18732 + -58.47985 156.49269 -13.11578 + -58.49940 156.34564 -13.11578 + -38.40138 130.48225 -15.03433 + -22.08383 102.05893 -16.94594 + -9.98232 70.26179 -18.85280 + -2.52940 35.91746 -20.75708 + 0.00157 0.00888 -22.66093 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -23514,53 +23650,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 31.98295 0.00000 0.72017 0.00000 5.77414 - -11.29000 6.07800 33.30354 0.00000 0.71832 0.00000 5.47936 - -11.39000 6.61700 34.62384 0.00000 0.71677 0.00000 5.23256 - -11.49000 7.15600 35.94384 0.00000 0.71545 0.00000 5.02290 - -11.59000 7.69500 36.93367 0.00000 0.71432 0.00000 4.88524 - -11.59000 7.69500 37.53409 0.00000 0.71432 0.00000 4.80868 - -11.67200 8.13698 38.34556 0.00000 0.71350 0.00000 4.71250 - -11.75400 8.57896 39.42738 0.00000 0.71277 0.00000 4.59582 - -11.83600 9.02094 40.50904 0.00000 0.71211 0.00000 4.49056 - -11.91800 9.46292 41.59055 0.00000 0.71151 0.00000 4.39511 - -12.00000 9.90490 42.40159 0.00000 0.71097 0.00000 4.32916 - -12.00000 9.90490 25.59840 0.00000 0.75285 0.00000 2.39189 + -11.19000 5.53900 31.98295 0.00000 0.71899 0.00000 5.77414 + -11.29000 6.07800 33.30354 0.00000 0.71724 0.00000 5.47936 + -11.39000 6.61700 34.62384 0.00000 0.71578 0.00000 5.23256 + -11.49000 7.15600 35.94384 0.00000 0.71454 0.00000 5.02290 + -11.59000 7.69500 36.93367 0.00000 0.71347 0.00000 4.88524 + -11.59000 7.69500 37.53409 0.00000 0.71347 0.00000 4.80868 + -11.67200 8.13698 38.34556 0.00000 0.71270 0.00000 4.71250 + -11.75400 8.57896 39.42738 0.00000 0.71201 0.00000 4.59582 + -11.83600 9.02094 40.50904 0.00000 0.71139 0.00000 4.49056 + -11.91800 9.46292 41.59055 0.00000 0.71082 0.00000 4.39511 + -12.00000 9.90490 42.40159 0.00000 0.71031 0.00000 4.32916 + -12.00000 9.90490 25.59840 0.00000 0.75219 0.00000 2.39189 -12.10000 13.09390 29.70475 0.00000 0.75001 0.00000 2.26859 -12.20000 16.28290 35.16081 0.00000 0.74828 0.00000 2.15937 -12.30000 19.47190 40.59674 0.00000 0.74712 0.00000 2.08489 -12.40000 22.66090 46.01595 1.78977 0.74628 0.07898 2.03063 -12.50000 25.84990 50.07174 10.89282 0.74565 0.43480 1.99866 -12.50000 25.84990 177.20934 6.67370 0.47455 0.25466 6.76202 - -12.64000 27.27650 165.98087 6.95749 0.47432 0.25507 6.08512 - -12.78000 28.70310 168.35015 7.33312 0.47411 0.25548 5.86523 - -12.92000 30.12970 174.33058 7.70643 0.47392 0.25578 5.78600 - -13.06000 31.55630 181.36358 8.07815 0.47374 0.25599 5.74730 - -13.20000 32.98290 186.93725 8.35620 0.47359 0.25612 5.72966 - -13.20000 32.98290 190.74477 8.54126 0.47448 0.25619 5.72128 - -13.34000 34.40950 196.54307 8.81848 0.47325 0.25628 5.71188 - -13.48000 35.83610 204.37210 9.18761 0.47312 0.25638 5.70297 - -13.62000 37.26270 212.27871 9.55625 0.47301 0.25646 5.69681 - -13.76000 38.68930 220.23553 9.92452 0.47290 0.25652 5.69241 - -13.90000 40.11590 226.22528 10.20054 0.47280 0.25656 5.68988 - -13.90000 40.11590 230.22741 10.38446 0.47280 0.25658 5.68848 - -14.04000 41.54250 236.24102 10.66024 0.47271 0.25661 5.68673 - -14.18000 42.96910 244.27295 11.02779 0.47262 0.25664 5.68485 - -14.32000 44.39570 252.31767 11.39518 0.47254 0.25667 5.68338 - -14.46000 45.82230 260.37206 11.76244 0.47246 0.25670 5.68221 - -14.60000 47.24890 266.41766 12.03782 0.47239 0.25671 5.68149 - -14.60000 47.24890 270.45017 12.22137 0.50854 0.25672 5.68106 - -14.74000 48.67550 276.50161 12.49666 0.47193 0.25673 5.68051 - -14.88000 50.10210 284.57394 12.86365 0.47188 0.25675 5.67988 - -15.02000 51.52870 292.65001 13.23057 0.47183 0.25676 5.67936 - -15.16000 52.95530 300.72910 13.59744 0.47178 0.25677 5.67892 - -15.30000 54.38190 306.79002 13.87256 0.47174 0.25678 5.67864 - -15.30000 54.38190 310.83135 14.05596 0.47174 0.25678 5.67847 - -15.44000 55.80850 316.89433 14.33104 0.47169 0.25679 5.67824 - -15.58000 57.23510 324.97970 14.69778 0.47165 0.25680 5.67798 - -15.72000 58.66170 333.06652 15.06449 0.47162 0.25680 5.67775 - -15.86000 60.08830 341.15457 15.43118 0.47158 0.25681 5.67755 - -16.00000 61.51490 347.22126 15.70618 0.47008 0.25681 5.67742 + -12.64000 27.27650 165.98087 6.95749 0.47277 0.25507 6.08512 + -12.78000 28.70310 168.35015 7.33312 0.47264 0.25548 5.86523 + -12.92000 30.12970 174.33058 7.70643 0.47251 0.25578 5.78600 + -13.06000 31.55630 181.36358 8.07815 0.47240 0.25599 5.74730 + -13.20000 32.98290 186.93725 8.35620 0.47230 0.25612 5.72966 + -13.20000 32.98290 190.74477 8.54126 0.47230 0.25619 5.72128 + -13.34000 34.40950 196.54307 8.81848 0.47221 0.25628 5.71188 + -13.48000 35.83610 204.37210 9.18761 0.47213 0.25638 5.70297 + -13.62000 37.26270 212.27871 9.55625 0.47205 0.25646 5.69681 + -13.76000 38.68930 220.23553 9.92452 0.47198 0.25652 5.69241 + -13.90000 40.11590 226.22528 10.20054 0.47191 0.25656 5.68988 + -13.90000 40.11590 230.22741 10.38446 0.47191 0.25658 5.68848 + -14.04000 41.54250 236.24102 10.66024 0.47185 0.25661 5.68673 + -14.18000 42.96910 244.27295 11.02779 0.47179 0.25664 5.68485 + -14.32000 44.39570 252.31767 11.39518 0.47173 0.25667 5.68338 + -14.46000 45.82230 260.37206 11.76244 0.47168 0.25670 5.68221 + -14.60000 47.24890 266.41766 12.03782 0.47163 0.25671 5.68149 + -14.60000 47.24890 270.45017 12.22137 0.47163 0.25672 5.68106 + -14.74000 48.67550 276.50161 12.49666 0.47159 0.25673 5.68051 + -14.88000 50.10210 284.57394 12.86365 0.47154 0.25675 5.67988 + -15.02000 51.52870 292.65001 13.23057 0.47150 0.25676 5.67936 + -15.16000 52.95530 300.72910 13.59744 0.47147 0.25677 5.67892 + -15.30000 54.38190 306.79002 13.87256 0.47143 0.25678 5.67864 + -15.30000 54.38190 310.83135 14.05596 0.47143 0.25678 5.67847 + -15.44000 55.80850 316.89433 14.33104 0.47139 0.25679 5.67824 + -15.58000 57.23510 324.97970 14.69778 0.47136 0.25680 5.67798 + -15.72000 58.66170 333.06652 15.06449 0.47133 0.25680 5.67775 + -15.86000 60.08830 341.15457 15.43118 0.47130 0.25681 5.67755 + -16.00000 61.51490 347.22126 15.70618 0.47127 0.25681 5.67742 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -23734,53 +23870,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 31.98295 100.84990 31.98295 3.98901 302 100 P - 33.30354 101.83090 33.30354 4.36593 302 100 P - 34.62384 102.81190 34.62384 4.74285 302 100 P - 35.87798 103.79290 35.94384 5.11977 220 99 2 - 35.66709 104.77390 36.93367 5.40044 220 97 2 - 35.93595 104.77390 37.53409 5.57562 220 96 2 - 35.76939 105.57832 38.34556 5.80577 220 93 2 - 35.72988 106.38274 39.42738 6.11484 220 91 2 - 35.69645 107.18716 40.50904 6.42392 220 88 2 - 35.66925 107.99158 41.59055 6.73299 220 86 2 - 35.52751 108.79600 42.40159 6.96350 220 84 2 - 25.59840 108.79600 25.59840 8.05716 302 100 P + 31.98295 100.84990 31.98295 3.98248 302 100 P + 33.30354 101.83090 33.30354 4.35940 302 100 P + 34.62384 102.81190 34.62384 4.73632 302 100 P + 35.85796 103.79290 35.94384 5.11324 220 99 2 + 35.64682 104.77390 36.93367 5.39402 220 97 2 + 35.91519 104.77390 37.53409 5.56899 220 96 2 + 35.74843 105.57832 38.34556 5.79923 220 93 2 + 35.70850 106.38274 39.42738 6.10831 220 91 2 + 35.67465 107.18716 40.50904 6.41738 220 88 2 + 35.64705 107.99158 41.59055 6.72645 220 86 2 + 35.50510 108.79600 42.40159 6.95704 220 84 2 + 25.59840 108.79600 25.59840 8.05010 302 100 P 29.70475 106.77700 29.70475 9.82057 302 100 P 35.16081 104.75800 35.16081 12.18420 302 100 P - 40.50821 102.73900 40.59674 14.54783 220 99 2 - 42.04535 100.72000 46.01595 16.91145 220 91 2 - 42.92824 98.70100 50.07174 18.68061 220 86 2 + 40.49512 102.73900 40.59674 14.54783 220 99 2 + 42.03134 100.72000 46.01595 16.91145 220 91 2 + 42.91392 98.70100 50.07174 18.68061 220 86 2 177.20934 98.70100 177.20934 12.43641 302 100 P - 165.98087 100.07440 165.98087 12.93778 302 100 P - 168.35015 101.44780 168.35015 13.60840 302 100 P - 174.33058 102.82120 174.33058 14.27902 302 100 P - 170.83804 104.19460 181.36358 14.94963 220 94 2 - 164.58178 105.56800 186.93725 15.45135 220 88 2 - 165.95130 105.56800 190.74477 15.81888 220 87 2 - 157.24539 106.94140 196.54307 16.28433 220 80 2 - 133.11474 108.31480 204.37210 16.95495 220 65 2 - 120.69793 109.68820 212.27871 17.62557 220 57 2 - 116.64405 111.06160 220.23553 18.29618 220 53 2 - 108.75750 112.43500 226.22528 18.79818 110 48 1 - 109.09474 112.43500 230.22741 19.13543 110 47 1 - 82.43080 113.80840 236.24102 19.63742 110 35 1 - 56.66665 115.18180 244.27295 20.30804 110 23 1 - 42.83975 116.55520 252.31767 20.97865 110 17 1 - 34.88626 117.92860 260.37206 21.64927 110 13 1 - 26.82928 119.30200 266.41766 22.15141 110 10 1 - 27.01283 119.30200 270.45017 24.20913 110 10 1 - 23.67862 120.67540 276.50161 22.97149 110 9 1 - 22.83373 122.04880 284.57394 23.64210 110 0 1 - 21.98371 123.42220 292.65001 24.31272 110 0 1 - 21.13041 124.79560 300.72910 24.98334 110 0 1 - 20.18396 126.16900 306.79002 25.48571 110 0 1 - 20.36736 126.16900 310.83135 25.82220 110 0 1 - 19.42065 127.54240 316.89433 26.32457 110 0 1 - 18.56541 128.91580 324.97970 26.99519 110 0 1 - 17.71002 130.28920 333.06652 27.66581 110 0 1 - 16.85458 131.66260 341.15457 28.33642 110 0 1 - 15.90754 133.03600 347.22126 28.74932 110 0 1 + 165.98087 100.07440 165.98087 12.89549 302 100 P + 168.35015 101.44780 168.35015 13.56611 302 100 P + 174.33058 102.82120 174.33058 14.23672 302 100 P + 170.86762 104.19460 181.36358 14.90734 220 94 2 + 164.60502 105.56800 186.93725 15.40951 220 88 2 + 165.94390 105.56800 190.74477 15.74641 220 87 2 + 157.39814 106.94140 196.54307 16.24858 220 80 2 + 133.23942 108.31480 204.37210 16.91919 220 65 2 + 120.73470 109.68820 212.27871 17.58981 220 57 2 + 116.67468 111.06160 220.23553 18.26043 220 53 2 + 108.85644 112.43500 226.22528 18.76274 110 48 1 + 109.19305 112.43500 230.22741 19.09935 110 47 1 + 82.50611 113.80840 236.24102 19.60166 110 35 1 + 56.71920 115.18180 244.27295 20.27228 110 23 1 + 42.90213 116.55520 252.31767 20.94290 110 17 1 + 34.94565 117.92860 260.37206 21.61351 110 13 1 + 26.88503 119.30200 266.41766 22.11592 110 10 1 + 27.06858 119.30200 270.45017 22.45234 110 10 1 + 23.68217 120.67540 276.50161 22.95475 110 9 1 + 22.83718 122.04880 284.57394 23.62536 110 0 1 + 21.98705 123.42220 292.65001 24.29598 110 0 1 + 21.13363 124.79560 300.72910 24.96660 110 0 1 + 20.18706 126.16900 306.79002 25.46908 110 0 1 + 20.37046 126.16900 310.83135 25.80535 110 0 1 + 19.42363 127.54240 316.89433 26.30783 110 0 1 + 18.56826 128.91580 324.97970 26.97845 110 0 1 + 17.71275 130.28920 333.06652 27.64907 110 0 1 + 16.85719 131.66260 341.15457 28.31968 110 0 1 + 15.91003 133.03600 347.22126 28.82222 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23798,9 +23934,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 30.010 'Hydrobiaklei' - -12.00 18.168 'Basisveen' - -12.50 280.581 'Eerste zandlaag' + -10.00 29.998 'Hydrobiaklei' + -12.00 18.165 'Basisveen' + -12.50 280.695 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -23822,7 +23958,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -6.38 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -107.70 'Eerste zandlaag' + -12.50 -107.75 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23932,18 +24068,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 71.33900 32.23900 62.87577 60.92599 -10.88000 71.33900 32.23900 67.12279 61.09928 -10.94000 71.33900 32.23900 71.61188 61.28246 @@ -24043,7 +24179,7 @@ Lambda passive -11.83600 18.48574 65.12397 2.25061 0.69929 0.12175 3.52293 -11.91800 18.92772 66.07603 2.45749 0.69929 0.12984 3.49097 -12.00000 19.36970 66.80032 2.61259 0.69929 0.13565 3.46849 - -12.00000 19.36970 41.96423 7.14432 0.74304 0.38273 2.24805 + -12.00000 19.36970 41.96423 7.14432 0.74118 0.38273 2.24805 -12.10000 16.55870 38.00230 5.90473 0.74118 0.35659 2.29501 -12.20000 13.74770 32.76132 4.25142 0.74118 0.30925 2.38304 -12.30000 10.93670 27.56079 2.59770 0.74118 0.23752 2.52003 @@ -24055,7 +24191,7 @@ Lambda passive -12.92000 9.59450 56.28743 2.43576 0.47008 0.25387 5.86664 -13.06000 11.02110 64.29528 2.80043 0.47008 0.25410 5.83384 -13.20000 12.44770 70.28113 3.07435 0.47008 0.25427 5.81266 - -13.20000 12.44770 74.26549 3.25716 0.60881 0.25438 5.80002 + -13.20000 12.44770 74.26549 3.25716 0.47008 0.25438 5.80002 -13.34000 13.87430 80.23770 3.53166 0.47008 0.25455 5.78319 -13.48000 15.30090 88.19936 3.89807 0.47008 0.25476 5.76432 -13.62000 16.72750 96.16512 4.26488 0.47008 0.25496 5.74892 @@ -24242,7 +24378,7 @@ Status character 78.00210 0.00000 78.00210 78.00210 302 100 P 78.00300 0.00000 78.00300 78.00300 1 100 A 78.00420 0.00000 78.00420 78.00420 1 100 A - 78.00540 0.00000 78.00540 78.00540 1 0 A + 78.00540 0.00000 78.00540 78.00540 1 100 A 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00750 0.00000 78.00750 78.00750 1 100 A 2.76482 66.90000 67.75770 5.13449 1 0 A @@ -24251,19 +24387,19 @@ Status character 3.21754 68.66580 78.85280 5.97525 1 0 A 3.38217 69.25440 82.88738 6.28098 1 0 A 3.50565 69.84300 85.91332 6.51027 1 0 A - 7.61686 69.84300 58.91268 10.20938 110 0 1 - 7.68657 70.82400 59.11293 10.49207 110 0 1 + 7.61680 69.84300 58.91268 10.20938 110 0 1 + 7.68653 70.82400 59.11293 10.49207 110 0 1 7.87541 71.80500 59.68298 10.86899 110 0 1 - 8.08813 72.78600 60.47279 11.24591 110 0 1 - 8.32371 73.76700 61.39650 11.62283 110 0 1 - 8.48687 74.74800 62.14672 11.90552 110 0 1 - 8.60726 74.74800 62.62197 12.07702 110 0 1 - 5.78547 75.55242 63.28384 12.30882 110 0 1 - 6.05423 76.35684 64.19160 12.61790 110 0 1 - 6.32917 77.16126 65.12397 12.92697 110 0 1 - 6.61010 77.96568 66.07603 13.23604 110 0 1 - 6.81805 78.77010 66.80032 13.46785 110 0 1 - 7.14432 78.77010 41.96423 13.87022 1 0 A + 8.08818 72.78600 60.47279 11.24591 110 0 1 + 8.32380 73.76700 61.39650 11.62283 110 0 1 + 8.48702 74.74800 62.14672 11.90552 110 0 1 + 8.60742 74.74800 62.62197 12.07702 110 0 1 + 5.78528 75.55242 63.28384 12.30882 110 0 1 + 6.05403 76.35684 64.19160 12.61790 110 0 1 + 6.32896 77.16126 65.12397 12.92697 110 0 1 + 6.60989 77.96568 66.07603 13.23604 110 0 1 + 6.81783 78.77010 66.80032 13.46785 110 0 1 + 7.14432 78.77010 41.96423 13.83559 1 0 A 5.90473 82.75110 38.00230 12.27299 1 0 A 4.25142 86.73210 32.76132 10.18953 1 0 A 2.59770 90.71310 27.56079 8.10607 1 0 A @@ -24275,7 +24411,7 @@ Status character 2.43576 102.79530 56.28743 4.51019 1 0 A 2.80043 104.16870 64.29528 5.18081 1 0 A 3.07435 105.54210 70.28113 5.68377 1 0 A - 3.25716 105.54210 74.26549 7.79545 1 0 A + 3.25716 105.54210 74.26549 6.01908 1 0 A 3.53166 106.91550 80.23770 6.52204 1 0 A 3.89807 108.28890 88.19936 7.19266 1 0 A 4.26488 109.66230 96.16512 7.86328 1 0 A @@ -24285,20 +24421,20 @@ Status character 5.36697 113.78250 120.11708 9.87513 1 0 A 5.73465 115.15590 128.12204 10.54574 1 0 A 6.10241 116.52930 136.13700 11.21636 1 0 A - 26.48749 117.90270 144.16116 11.88698 110 18 1 - 51.65636 119.27610 150.18457 12.38994 110 34 1 - 51.99167 119.27610 154.20277 12.72525 110 34 1 - 81.31966 120.64950 160.23364 13.22821 220 51 2 - 103.45246 122.02290 168.28022 13.89883 220 61 2 - 125.25958 123.39630 176.33264 14.56945 220 71 2 - 138.07009 124.76970 184.39018 15.24006 220 75 2 - 151.06972 126.14310 190.43620 15.74303 220 79 2 - 151.36539 126.14310 194.46826 16.07834 220 78 2 - 160.81906 127.51650 200.51822 16.58130 220 80 2 - 177.45728 128.88990 208.58766 17.25192 220 85 2 - 194.83545 130.26330 216.66013 17.92253 220 90 2 - 203.21965 131.63670 224.73525 18.59315 220 90 2 - 209.58562 133.01010 230.79307 19.09611 220 91 2 + 26.44319 117.90270 144.16116 11.88698 110 18 1 + 51.63338 119.27610 150.18457 12.38994 110 34 1 + 51.96869 119.27610 154.20277 12.72525 110 34 1 + 81.21679 120.64950 160.23364 13.22821 220 51 2 + 103.36091 122.02290 168.28022 13.89883 220 61 2 + 125.17873 123.39630 176.33264 14.56945 220 71 2 + 138.08483 124.76970 184.39018 15.24006 220 75 2 + 151.08946 126.14310 190.43620 15.74303 220 79 2 + 152.68879 126.14310 194.46826 16.07834 220 79 2 + 160.84378 127.51650 200.51822 16.58130 220 80 2 + 177.97579 128.88990 208.58766 17.25192 220 85 2 + 194.83476 130.26330 216.66013 17.92253 220 90 2 + 203.21900 131.63670 224.73525 18.59315 220 90 2 + 209.58500 133.01010 230.79307 19.09611 220 91 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -24315,7 +24451,7 @@ Layer name -10.79 0.941 'Grind' -11.09 6.667 'Hydrobiaklei' -12.00 1.727 'Basisveen' - -12.50 219.826 'Eerste zandlaag' + -12.50 219.950 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -24334,7 +24470,7 @@ Layer name -10.79 0.38 'Grind' -11.09 1.42 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 84.38 'Eerste zandlaag' + -12.50 84.43 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -24574,8 +24710,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 723.86082 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 702.19507 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 723.90496 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 702.06161 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -24619,10 +24755,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 48.65 : Percentage mobilized resistance left - 46.05 : Percentage mobilized resistance right - 300.27 : Effective left - 285.58 : Effective right + 48.69 : Percentage mobilized resistance left + 46.08 : Percentage mobilized resistance right + 300.53 : Effective left + 285.77 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 617.26 : Max effective resistance left @@ -24631,8 +24767,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 90.04 : Vertical force left - 74.35 : Vertical force right + 90.14 : Vertical force left + 74.43 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -24641,17 +24777,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --74.35 : Active force -90.04 : Passive force --74.35 : Plugged active force -90.04 : Plugged passive force +-74.43 : Active force +90.14 : Passive force +-74.43 : Plugged active force +90.14 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 50.00 : Factor on resistance 1510.79 : Plugged resistance 1.00 : Vertical balance load factor -15.69 : Resulting Vertical Force Unplugged -15.69 : Resulting Vertical Force Plugged +15.71 : Resulting Vertical Force Unplugged +15.71 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -24664,210 +24800,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 600.38294 - 0.00000 0.00000 595.69276 - 0.00000 0.00000 591.00258 - 0.00000 0.00000 586.31240 - 0.00000 0.00000 581.62223 - 0.00000 0.00000 576.93205 - 0.00000 0.00000 576.93205 - 0.00000 0.00000 572.24187 - 0.00000 0.00000 567.55170 - 0.00000 0.00000 562.86152 - 0.00000 0.00000 558.17134 - 0.00000 0.00000 553.48117 - 0.00000 0.00000 553.48117 - 0.00000 0.00000 547.22760 - 0.00000 0.00000 540.97403 - 0.00000 0.00000 534.72046 - 0.00000 0.00000 528.46689 - 0.00000 0.00000 522.21332 - 0.00000 0.00000 522.21332 - 0.00000 0.00000 517.00201 - 0.00000 0.00000 511.79070 - 0.00000 0.00000 506.57940 - 0.00000 0.00000 501.36809 - 0.00000 0.00000 496.15678 - 0.00000 0.00000 496.15678 - 0.00000 0.00000 490.94547 - 0.00000 0.00000 485.73416 - 0.00000 0.00000 480.52286 - 0.00000 0.00000 475.31155 - 0.00000 0.00000 470.10024 - 0.00000 0.00000 470.10024 - 0.00000 0.00000 465.61852 - 0.00000 0.00000 461.13679 - 0.00000 0.00000 456.65507 - 0.00000 0.00000 452.17334 - 0.00000 0.00000 447.69162 - 0.00000 -70.60932 447.69162 - -8.04946 -70.60932 441.75089 - -16.09893 -70.60932 435.81114 - -24.14839 -70.60932 429.87334 - -32.19785 -70.60932 423.93847 - -40.24732 -70.60932 418.00750 - -40.24732 -70.60932 418.00750 - -41.05226 -70.60932 417.41466 - -41.85721 -70.60932 416.82186 - -42.66215 -70.60932 416.22912 - -43.46710 -70.60932 415.63643 - -44.27205 -70.60932 415.04379 - -44.27206 -70.60889 415.04379 - -49.11583 -70.60889 411.47872 - -53.95960 -70.60889 407.91581 - -58.80337 -70.60889 404.35528 - -63.64714 -70.60889 400.79732 - -68.49091 -70.60889 397.24216 - -68.49091 -70.60888 397.24216 - -69.90309 -70.60888 396.20623 - -71.31526 -70.60888 395.17055 - -72.72744 -70.60888 394.13515 - -74.13962 -70.60888 393.10001 - -75.55180 -70.60888 392.06515 - -75.55180 -70.60888 392.06515 - -81.20051 -70.60888 387.92859 - -86.84922 -70.60888 383.79688 - -92.49793 -70.60888 379.67036 - -98.14664 -70.60888 375.54936 - -103.79535 -70.60888 371.43423 - -103.79535 -70.60888 371.43423 - -105.20752 -70.60888 370.40640 - -106.61970 -70.60888 369.37896 - -108.03188 -70.60888 368.35192 - -109.44406 -70.60888 367.32529 - -110.85624 -70.60888 366.29906 - -110.85624 -70.60888 366.29906 - -117.91712 -70.60888 361.17424 - -124.97801 -70.60888 356.06042 - -132.03890 -70.60888 350.95827 - -139.09979 -70.60888 345.86844 - -146.16067 -70.60888 340.79159 - -146.16067 -70.60888 340.79159 - -153.22156 -70.60888 335.72837 - -160.28245 -70.60888 330.67946 - -167.34334 -70.60888 325.64550 - -174.40423 -70.60888 320.62715 - -181.46511 -70.60888 315.62509 - -181.46511 -70.60888 315.62509 - -191.35036 -70.60888 308.65079 - -201.23560 -70.60888 301.71148 - -211.12084 -70.60888 294.80899 - -221.00609 -70.60888 287.94511 - -230.89133 -70.60888 281.12165 - -230.89132 -70.60893 281.12165 - -240.07048 -70.60893 274.82335 - -249.24964 -70.60893 268.56291 - -258.42880 -70.60893 262.34179 - -267.60797 -70.60893 256.16141 - -276.78713 -70.60893 250.02324 - -276.78721 -70.61045 250.02324 - -285.96657 -70.61045 243.92872 - -295.14593 -70.61045 237.87930 - -304.32528 -70.61045 231.87642 - -313.50464 -70.61045 225.92154 - -322.68400 -70.61045 220.01610 - -322.68400 -70.61045 220.01610 - -333.24026 -70.61045 213.28784 - -343.79653 -70.61045 206.62908 - -354.35279 -70.61045 200.04203 - -364.90905 -70.61045 193.52888 - -375.46531 -70.61045 187.09184 - -375.46531 -70.61046 187.09184 - -386.02158 -70.61046 180.73310 - -396.57784 -70.61046 174.45488 - -407.13410 -70.61046 168.25937 - -417.69037 -70.61046 162.14877 - -428.24663 -70.61046 156.12528 - -428.24664 -70.61043 156.12528 - -438.80290 -70.61043 150.19111 - -449.35916 -70.61043 144.34846 - -459.91542 -70.61043 138.59953 - -470.47168 -70.61043 132.94653 - -481.02794 -70.61043 127.39164 - -481.02782 -70.60965 127.39164 - -491.58396 -70.60965 121.93708 - -502.14011 -70.60965 116.58504 - -512.69625 -70.60965 111.33774 - -523.25239 -70.60965 106.19736 - -533.80853 -70.60965 101.16611 - -533.80858 -70.60999 101.16611 - -533.94973 -70.50364 101.09955 - -534.09053 -70.29304 101.03302 - -534.23090 -70.08244 100.96650 - -534.37086 -69.87184 100.90000 - -534.51039 -69.66124 100.83352 - -534.51039 -69.66128 100.83352 - -534.64950 -69.45068 100.76706 - -534.78819 -69.24008 100.70063 - -534.92646 -69.02948 100.63421 - -535.06431 -68.81888 100.56781 - -535.20174 -68.60828 100.50143 - -535.20174 -68.60827 100.50143 - -537.62660 -66.73180 99.31004 - -540.02895 -66.73179 98.12516 - -542.43129 -66.73178 96.94680 - -544.83363 -66.73177 95.77500 - -547.23598 -66.73177 94.60980 - -547.23590 23.17139 94.60980 - -544.45533 23.17143 90.77349 - -541.67476 23.17146 87.01035 - -538.89418 23.17149 83.31999 - -536.11360 23.17152 79.70205 - -533.33302 23.17156 76.15615 - -533.33344 23.17513 76.15615 - -532.02025 20.57846 74.41009 - -530.86657 17.85427 72.68191 - -529.88039 14.99769 70.97156 - -529.06887 12.04005 69.27903 - -528.43697 9.01288 67.60426 - -528.43657 9.01385 67.60426 - -527.47591 10.86466 64.85244 - -526.19464 14.78556 62.14985 - -524.51383 18.85540 59.49632 - -522.41874 23.06984 56.89171 - -519.89827 27.33194 54.33585 - -519.89828 27.33221 54.33585 - -517.50457 31.06869 52.27629 - -514.80193 34.84486 50.24920 - -511.79075 38.59405 48.25439 - -508.47321 42.31739 46.29168 - -504.85144 46.01363 44.36088 - -504.85157 46.01383 44.36088 - -500.10855 48.89737 42.04912 - -495.06157 52.09663 39.78403 - -489.69116 55.23788 37.56511 - -484.02866 57.93931 35.39186 - -478.11650 60.24472 33.26378 - -478.11973 60.26011 33.26378 - -469.43674 64.04515 30.35944 - -460.10530 69.58276 27.54100 - -449.86399 77.03999 24.80654 - -438.44550 86.39589 22.15418 - -425.59393 97.44899 19.58200 - -425.65482 97.93177 19.58200 - -411.03303 111.19817 17.08805 - -394.44220 126.11733 14.66933 - -375.64175 142.71714 12.32238 - -354.41195 160.80532 10.04374 - -330.60220 179.19471 7.82993 - -330.60969 179.87000 7.82993 - -304.28520 195.35614 5.67700 - -276.11933 206.35611 3.57970 - -246.65437 214.16567 1.53269 - -216.29011 219.03586 -0.46936 - -185.54132 219.25632 -2.43181 - -185.52730 218.76293 -2.43181 - -155.29890 212.20006 -4.36044 - -126.34983 200.52546 -6.26074 - -99.36261 184.33280 -8.13759 - -74.88566 164.94703 -9.99587 - -53.28825 143.18699 -11.84045 - -53.30666 143.04599 -11.84045 - -34.92948 119.19594 -13.67600 - -20.04198 92.98493 -15.50526 - -9.03310 63.78686 -17.33018 - -2.28142 32.45094 -19.15275 - 0.00154 0.00874 -20.97495 + 0.00000 0.00000 600.85010 + 0.00000 0.00000 596.15642 + 0.00000 0.00000 591.46274 + 0.00000 0.00000 586.76907 + 0.00000 0.00000 582.07539 + 0.00000 0.00000 577.38172 + 0.00000 0.00000 577.38172 + 0.00000 0.00000 572.68804 + 0.00000 0.00000 567.99437 + 0.00000 0.00000 563.30069 + 0.00000 0.00000 558.60702 + 0.00000 0.00000 553.91334 + 0.00000 0.00000 553.91334 + 0.00000 0.00000 547.65511 + 0.00000 0.00000 541.39687 + 0.00000 0.00000 535.13864 + 0.00000 0.00000 528.88040 + 0.00000 0.00000 522.62217 + 0.00000 0.00000 522.62217 + 0.00000 0.00000 517.40697 + 0.00000 0.00000 512.19178 + 0.00000 0.00000 506.97658 + 0.00000 0.00000 501.76139 + 0.00000 0.00000 496.54619 + 0.00000 0.00000 496.54619 + 0.00000 0.00000 491.33100 + 0.00000 0.00000 486.11580 + 0.00000 0.00000 480.90061 + 0.00000 0.00000 475.68541 + 0.00000 0.00000 470.47022 + 0.00000 0.00000 470.47022 + 0.00000 0.00000 465.98515 + 0.00000 0.00000 461.50008 + 0.00000 0.00000 457.01502 + 0.00000 0.00000 452.52995 + 0.00000 0.00000 448.04488 + 0.00000 -70.65346 448.04488 + -8.05449 -70.65346 442.09972 + -16.10899 -70.65346 436.15554 + -24.16348 -70.65346 430.21331 + -32.21798 -70.65346 424.27401 + -40.27247 -70.65346 418.33862 + -40.27247 -70.65346 418.33862 + -41.07792 -70.65346 417.74533 + -41.88337 -70.65346 417.15210 + -42.68882 -70.65346 416.55891 + -43.49427 -70.65346 415.96577 + -44.29972 -70.65346 415.37269 + -44.29973 -70.65303 415.37269 + -49.14653 -70.65303 411.80497 + -53.99333 -70.65303 408.23940 + -58.84012 -70.65303 404.67620 + -63.68692 -70.65303 401.11559 + -68.53372 -70.65303 397.55778 + -68.53372 -70.65302 397.55778 + -69.94678 -70.65302 396.52107 + -71.35984 -70.65302 395.48463 + -72.77290 -70.65302 394.44845 + -74.18596 -70.65302 393.41254 + -75.59902 -70.65302 392.37691 + -75.59902 -70.65301 392.37691 + -81.25126 -70.65301 388.23726 + -86.90350 -70.65301 384.10246 + -92.55574 -70.65301 379.97286 + -98.20798 -70.65301 375.84878 + -103.86023 -70.65301 371.73056 + -103.86023 -70.65301 371.73056 + -105.27329 -70.65301 370.70197 + -106.68635 -70.65301 369.67376 + -108.09941 -70.65301 368.64596 + -109.51247 -70.65301 367.61855 + -110.92553 -70.65301 366.59156 + -110.92553 -70.65301 366.59156 + -117.99083 -70.65301 361.46291 + -125.05613 -70.65301 356.34526 + -132.12143 -70.65301 351.23929 + -139.18673 -70.65301 346.14565 + -146.25203 -70.65301 341.06499 + -146.25203 -70.65301 341.06499 + -153.31733 -70.65301 335.99798 + -160.38264 -70.65301 330.94528 + -167.44794 -70.65301 325.90755 + -174.51324 -70.65301 320.88544 + -181.57854 -70.65301 315.87961 + -181.57854 -70.65302 315.87961 + -191.46996 -70.65302 308.90007 + -201.36138 -70.65302 301.95555 + -211.25281 -70.65302 295.04786 + -221.14423 -70.65302 288.17880 + -231.03565 -70.65302 281.35020 + -231.03564 -70.65307 281.35020 + -240.22054 -70.65307 275.04714 + -249.40544 -70.65307 268.78198 + -258.59034 -70.65307 262.55614 + -267.77524 -70.65307 256.37108 + -276.96014 -70.65307 250.22826 + -276.96022 -70.65458 250.22826 + -286.14531 -70.65458 244.12911 + -295.33041 -70.65458 238.07509 + -304.51551 -70.65458 232.06764 + -313.70060 -70.65458 226.10822 + -322.88570 -70.65458 220.19826 + -322.88570 -70.65459 220.19826 + -333.44856 -70.65459 213.46486 + -344.01142 -70.65459 206.80100 + -354.57428 -70.65459 200.20888 + -365.13714 -70.65459 193.69072 + -375.70000 -70.65459 187.24872 + -375.70000 -70.65459 187.24872 + -386.26286 -70.65459 180.88507 + -396.82572 -70.65459 174.60198 + -407.38859 -70.65459 168.40165 + -417.95145 -70.65459 162.28629 + -428.51431 -70.65459 156.25810 + -428.51432 -70.65457 156.25810 + -439.07718 -70.65457 150.31928 + -449.64003 -70.65457 144.47203 + -460.20289 -70.65457 138.71857 + -470.76575 -70.65457 133.06108 + -481.32861 -70.65457 127.50178 + -481.32849 -70.65381 127.50178 + -491.89123 -70.65381 122.04287 + -502.45398 -70.65381 116.68655 + -513.01672 -70.65381 111.43502 + -523.57947 -70.65381 106.29049 + -534.14221 -70.65381 101.25516 + -534.14226 -70.65417 101.25516 + -534.28350 -70.54781 101.18854 + -534.42438 -70.33721 101.12195 + -534.56485 -70.12661 101.05538 + -534.70489 -69.91601 100.98883 + -534.84451 -69.70541 100.92230 + -534.84451 -69.70542 100.92230 + -534.98371 -69.49482 100.85578 + -535.12249 -69.28422 100.78929 + -535.26085 -69.07362 100.72282 + -535.39878 -68.86302 100.65637 + -535.53630 -68.65242 100.58993 + -535.53630 -68.65243 100.58993 + -537.96275 -66.77596 99.39757 + -540.36669 -66.77595 98.21172 + -542.77062 -66.77594 97.03240 + -545.17455 -66.77593 95.85964 + -547.57849 -66.77592 94.69348 + -547.57841 23.26069 94.69348 + -544.78713 23.26072 90.85402 + -541.99584 23.26075 87.08777 + -539.20455 23.26079 83.39435 + -536.41325 23.26082 79.77338 + -533.62195 23.26085 76.22450 + -533.62237 23.26444 76.22450 + -532.30384 20.66751 74.47697 + -531.14482 17.94303 72.74731 + -530.15333 15.08561 71.03551 + -529.33658 12.12654 69.34152 + -528.69954 9.09780 67.66531 + -528.69914 9.09876 67.66531 + -527.72998 10.94978 64.91111 + -526.44016 14.87135 62.20616 + -524.75074 18.94183 59.55031 + -522.64702 23.15553 56.94338 + -520.11810 27.41546 54.38523 + -520.11811 27.41573 54.38523 + -517.72280 31.05627 52.32380 + -515.02116 34.83265 50.29486 + -512.01098 38.58198 48.29822 + -508.69443 42.30539 46.33369 + -505.07364 46.00163 44.40108 + -505.07377 46.00183 44.40108 + -500.33183 48.88782 42.08713 + -495.28574 52.08774 39.81988 + -489.91627 55.22784 37.59881 + -484.25484 57.92802 35.42344 + -478.34387 60.23209 33.29326 + -478.34710 60.24741 33.29326 + -469.66673 64.02021 30.38601 + -460.33971 69.54437 27.56470 + -450.10478 76.98693 24.82742 + -438.69483 86.32688 22.17228 + -425.85411 97.36272 19.59737 + -425.91507 97.84569 19.59737 + -411.30661 111.09349 17.10074 + -394.73182 125.99268 14.67938 + -375.94978 142.58217 12.32985 + -354.73888 160.67036 10.04868 + -330.94723 179.07678 7.83241 + -330.95488 179.75349 7.83241 + -304.64439 195.27174 5.67707 + -276.48875 206.29090 3.57743 + -247.03269 214.10112 1.52816 + -216.67837 218.95555 -0.47610 + -185.94266 219.14874 -2.44067 + -185.92862 218.65463 -2.44067 + -155.65967 212.69481 -4.37136 + -126.64061 201.02353 -6.27365 + -99.58497 184.81163 -8.15244 + -75.04286 165.39589 -10.01262 + -53.38539 143.59578 -11.85907 + -53.40375 143.45530 -11.85907 + -34.98367 119.44039 -13.69648 + -20.06702 93.14160 -15.52757 + -9.04326 63.85913 -17.35433 + -2.28397 32.48736 -19.17873 + 0.00155 0.00879 -21.00276 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24974,30 +25110,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -25072,7 +25208,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -25091,7 +25227,7 @@ Lambda passive -10.55000 78.00560 78.00560 78.00560 1.00000 1.00000 1.00000 -10.67000 78.00680 78.00680 78.00680 1.00000 1.00000 1.00000 -10.79000 78.00800 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 11.10800 67.75891 2.76486 0.46842 0.24520 6.00921 + -10.79000 11.10800 67.75891 2.76486 0.46518 0.24520 6.00921 -10.85000 11.77940 70.78484 2.88834 0.46462 0.24520 6.00921 -10.91000 12.45080 74.81942 3.05296 0.46412 0.24520 6.00921 -10.97000 13.12220 78.85400 3.21759 0.46367 0.24520 6.00921 @@ -25103,48 +25239,48 @@ Lambda passive -11.39000 16.08200 60.47331 1.11956 0.70608 0.06962 3.76031 -11.49000 16.62100 61.39701 1.37508 0.70586 0.08273 3.69394 -11.59000 17.16000 62.14723 1.56561 0.70565 0.09196 3.65030 - -11.59000 17.16000 62.62248 1.68090 0.80518 0.09733 3.62598 - -11.67200 17.60198 63.28435 1.83649 0.70441 0.10433 3.59530 - -11.75400 18.04396 64.19211 2.04370 0.70429 0.11326 3.55754 - -11.83600 18.48594 65.12448 2.25070 0.70417 0.12175 3.52292 - -11.91800 18.92792 66.07654 2.45758 0.70405 0.12984 3.49096 - -12.00000 19.36990 66.80083 2.61269 0.70394 0.13566 3.46848 - -12.00000 19.36990 41.96461 7.14444 0.74583 0.38273 2.24805 - -12.10000 16.55890 38.00268 5.90484 0.74662 0.35660 2.29500 - -12.20000 13.74790 32.76169 4.25154 0.74773 0.30925 2.38303 - -12.30000 10.93690 27.56116 2.59782 0.74942 0.23753 2.52002 - -12.40000 8.12590 22.39249 0.94381 0.75227 0.11615 2.75569 - -12.50000 5.31490 18.53208 -0.29683 0.74118 0.00000 3.07962 - -12.50000 5.31490 33.91813 1.43664 0.47008 0.25331 5.98040 - -12.64000 6.74150 40.08908 1.70862 0.47008 0.25345 5.94661 - -12.78000 8.16810 48.22870 2.07185 0.47008 0.25365 5.90452 - -12.92000 9.59470 56.28858 2.43581 0.47008 0.25387 5.86663 - -13.06000 11.02130 64.29642 2.80048 0.47008 0.25410 5.83383 - -13.20000 12.44790 70.28227 3.07440 0.47008 0.25427 5.81266 - -13.20000 12.44790 74.26662 3.25721 0.47008 0.25438 5.80002 - -13.34000 13.87450 80.23883 3.53171 0.47008 0.25455 5.78319 - -13.48000 15.30110 88.20049 3.89812 0.47008 0.25476 5.76432 - -13.62000 16.72770 96.16625 4.26493 0.47008 0.25496 5.74892 - -13.76000 18.15430 104.14003 4.63207 0.47008 0.25515 5.73638 - -13.90000 19.58090 110.12653 4.90758 0.47008 0.25528 5.72852 - -13.90000 19.58090 114.12106 5.09133 0.47008 0.25536 5.72393 - -14.04000 21.00750 120.11821 5.36702 0.47008 0.25548 5.71787 - -14.18000 22.43410 128.12317 5.73470 0.47008 0.25562 5.71109 - -14.32000 23.86070 136.13813 6.10246 0.47386 0.25575 5.70554 - -14.46000 25.28730 144.16229 6.47026 0.47364 0.25587 5.70098 - -14.60000 26.71390 150.18570 6.74611 0.47345 0.25595 5.69808 - -14.60000 26.71390 154.20390 6.93000 0.30013 0.25600 5.69637 - -14.74000 28.14050 160.23477 7.20584 0.47396 0.25607 5.69410 - -14.88000 29.56710 168.28135 7.57358 0.47377 0.25615 5.69151 - -15.02000 30.99370 176.33377 7.94128 0.47360 0.25622 5.68934 - -15.16000 32.42030 184.39132 8.30893 0.47345 0.25629 5.68753 - -15.30000 33.84690 190.43734 8.58462 0.47330 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.47330 0.25636 5.68565 - -15.44000 35.27350 200.51935 9.04404 0.47317 0.25640 5.68470 - -15.58000 36.70010 208.58880 9.41150 0.47305 0.25644 5.68360 - -15.72000 38.12670 216.66126 9.77889 0.47294 0.25648 5.68267 - -15.86000 39.55330 224.73639 10.14623 0.47284 0.25652 5.68186 - -16.00000 40.97990 230.79421 10.42170 0.47274 0.25655 5.68133 + -11.59000 17.16000 62.62248 1.68090 0.70565 0.09733 3.62598 + -11.67200 17.60198 63.28435 1.83649 0.70549 0.10433 3.59530 + -11.75400 18.04396 64.19211 2.04370 0.70534 0.11326 3.55754 + -11.83600 18.48594 65.12448 2.25070 0.70520 0.12175 3.52292 + -11.91800 18.92792 66.07654 2.45758 0.70506 0.12984 3.49096 + -12.00000 19.36990 66.80083 2.61269 0.70493 0.13566 3.46848 + -12.00000 19.36990 41.96461 7.14444 0.74681 0.38273 2.24805 + -12.10000 16.55890 38.00268 5.90484 0.74816 0.35660 2.29500 + -12.20000 13.74790 32.76169 4.25154 0.74959 0.30925 2.38303 + -12.30000 10.93690 27.56116 2.59782 0.75175 0.23753 2.52002 + -12.40000 8.12590 22.39249 0.94381 0.75541 0.11615 2.75569 + -12.50000 5.31490 18.53208 -0.29683 0.76294 0.00000 3.07962 + -12.50000 5.31490 33.91813 1.43664 0.49184 0.25331 5.98040 + -12.64000 6.74150 40.08908 1.70862 0.48096 0.25345 5.94661 + -12.78000 8.16810 48.22870 2.07185 0.47906 0.25365 5.90452 + -12.92000 9.59470 56.28858 2.43581 0.47772 0.25387 5.86663 + -13.06000 11.02130 64.29642 2.80048 0.47673 0.25410 5.83383 + -13.20000 12.44790 70.28227 3.07440 0.47597 0.25427 5.81266 + -13.20000 12.44790 74.26662 3.25721 0.47597 0.25438 5.80002 + -13.34000 13.87450 80.23883 3.53171 0.47537 0.25455 5.78319 + -13.48000 15.30110 88.20049 3.89812 0.47487 0.25476 5.76432 + -13.62000 16.72770 96.16625 4.26493 0.47446 0.25496 5.74892 + -13.76000 18.15430 104.14003 4.63207 0.47412 0.25515 5.73638 + -13.90000 19.58090 110.12653 4.90758 0.47383 0.25528 5.72852 + -13.90000 19.58090 114.12106 5.09133 0.47383 0.25536 5.72393 + -14.04000 21.00750 120.11821 5.36702 0.47357 0.25548 5.71787 + -14.18000 22.43410 128.12317 5.73470 0.47335 0.25562 5.71109 + -14.32000 23.86070 136.13813 6.10246 0.47315 0.25575 5.70554 + -14.46000 25.28730 144.16229 6.47026 0.47298 0.25587 5.70098 + -14.60000 26.71390 150.18570 6.74611 0.47283 0.25595 5.69808 + -14.60000 26.71390 154.20390 6.93000 0.47283 0.25600 5.69637 + -14.74000 28.14050 160.23477 7.20584 0.47269 0.25607 5.69410 + -14.88000 29.56710 168.28135 7.57358 0.47256 0.25615 5.69151 + -15.02000 30.99370 176.33377 7.94128 0.47245 0.25622 5.68934 + -15.16000 32.42030 184.39132 8.30893 0.47234 0.25629 5.68753 + -15.30000 33.84690 190.43734 8.58462 0.47225 0.25633 5.68635 + -15.30000 33.84690 194.46939 8.76840 0.47225 0.25636 5.68565 + -15.44000 35.27350 200.51935 9.04404 0.47216 0.25640 5.68470 + -15.58000 36.70010 208.58880 9.41150 0.47208 0.25644 5.68360 + -15.72000 38.12670 216.66126 9.77889 0.47200 0.25648 5.68267 + -15.86000 39.55330 224.73639 10.14623 0.47193 0.25652 5.68186 + -16.00000 40.97990 230.79421 10.42170 0.47187 0.25655 5.68133 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -25292,7 +25428,7 @@ Status character 78.00004 0.00000 78.00004 78.00004 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P + 78.00010 0.00000 78.00010 78.00010 302 100 P 78.00011 0.00000 78.00011 78.00011 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00014 0.00000 78.00014 78.00014 302 100 P @@ -25311,60 +25447,60 @@ Status character 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00680 0.00000 78.00680 78.00680 1 100 A 78.00770 0.00000 78.00770 78.00770 1 100 A - 2.76486 66.90000 67.75891 5.28180 1 0 A + 2.76486 66.90000 67.75891 5.24532 1 0 A 2.88834 67.48860 70.78484 5.47297 1 0 A 3.05296 68.07720 74.81942 5.77870 1 0 A 3.21759 68.66580 78.85400 6.08443 1 0 A 3.38222 69.25440 82.88858 6.39016 1 0 A 3.50569 69.84300 85.91452 6.61819 1 0 A - 8.43178 69.84300 58.91319 10.31963 110 0 1 - 38.11196 70.82400 59.11344 10.60130 220 64 2 - 39.42675 71.80500 59.68350 10.97822 220 66 2 - 40.74632 72.78600 60.47331 11.35514 220 67 2 - 42.00438 73.76700 61.39701 11.73206 220 68 2 - 41.80281 74.74800 62.14723 12.01389 220 67 2 - 43.78841 74.74800 62.62248 13.90582 220 70 2 - 41.89445 75.55242 63.28435 12.39903 220 66 2 - 41.86681 76.35684 64.19211 12.70811 220 65 2 - 41.84737 77.16126 65.12448 13.01718 220 64 2 - 41.83607 77.96568 66.07654 13.32626 220 63 2 - 41.71270 78.77010 66.80083 13.55755 220 62 2 - 30.64605 78.77010 41.96461 13.92254 220 73 2 - 31.47651 82.75110 38.00268 12.36321 220 83 2 - 32.04130 86.73210 32.76169 10.27975 220 98 2 - 26.89421 90.71310 27.56116 8.19629 220 98 2 - 21.78122 94.69410 22.39249 6.11283 220 97 2 - 17.97802 98.67510 18.53208 4.46017 220 97 2 - 30.59377 98.67510 33.91813 2.66609 220 90 2 - 37.25171 100.04850 40.08908 3.16905 220 93 2 - 45.87838 101.42190 48.22870 3.83967 220 95 2 - 54.41944 102.79530 56.28858 4.51028 220 97 2 - 62.89664 104.16870 64.29642 5.18090 220 98 2 - 69.33408 105.54210 70.28227 5.68386 220 99 2 - 73.31843 105.54210 74.26662 6.01917 220 99 2 - 79.72073 106.91550 80.23883 6.52214 220 99 2 - 88.09161 108.28890 88.20049 7.19275 220 99 2 - 96.16625 109.66230 96.16625 7.86337 302 100 P - 104.14003 111.03570 104.14003 8.53399 302 100 P - 99.99623 112.40910 110.12653 9.03695 220 91 2 - 100.33154 112.40910 114.12106 9.37226 220 88 2 - 74.00125 113.78250 120.11821 9.87522 220 62 2 - 53.50221 115.15590 128.12317 10.54584 110 42 1 - 40.97570 116.52930 136.13813 11.30653 110 30 1 - 34.18233 117.90270 144.16229 11.97714 110 24 1 - 27.24152 119.27610 150.18570 12.47890 110 18 1 - 21.01314 119.27610 154.20390 8.12469 110 14 1 - 25.20906 120.64950 160.23477 13.33740 110 16 1 - 25.41295 122.02290 168.28135 14.00801 110 15 1 - 25.58584 123.39630 176.33377 14.67863 110 15 1 - 25.73472 124.76970 184.39132 15.34925 110 14 1 - 25.77431 126.14310 190.43734 15.85106 110 14 1 - 25.95883 126.14310 194.46939 16.18867 110 13 1 - 25.98758 127.51650 200.51935 16.69048 110 13 1 - 26.58104 128.88990 208.58880 17.36110 110 13 1 - 27.91180 130.26330 216.66126 18.03172 110 13 1 - 29.23966 131.63670 224.73639 18.70233 110 13 1 - 30.47512 133.01010 230.79421 19.20435 110 13 1 + 8.43076 69.84300 58.91319 10.31963 110 0 1 + 38.11820 70.82400 59.11344 10.60130 220 64 2 + 39.43295 71.80500 59.68350 10.97822 220 66 2 + 40.75248 72.78600 60.47331 11.35514 220 67 2 + 41.99048 73.76700 61.39701 11.73206 220 68 2 + 41.78848 74.74800 62.14723 12.01389 220 67 2 + 42.05494 74.74800 62.62248 12.18695 220 67 2 + 41.89853 75.55242 63.28435 12.41805 220 66 2 + 41.87043 76.35684 64.19211 12.72713 220 65 2 + 41.85053 77.16126 65.12448 13.03620 220 64 2 + 41.83877 77.96568 66.07654 13.34527 220 63 2 + 41.71495 78.77010 66.80083 13.57646 220 62 2 + 30.67005 78.77010 41.96461 13.94087 220 73 2 + 31.50054 82.75110 38.00268 12.38877 220 83 2 + 32.03966 86.73210 32.76169 10.30531 220 98 2 + 26.89243 90.71310 27.56116 8.22185 220 98 2 + 21.77930 94.69410 22.39249 6.13839 220 97 2 + 17.97597 98.67510 18.53208 4.59108 220 97 2 + 30.58142 98.67510 33.91813 2.78947 220 90 2 + 37.23813 100.04850 40.08908 3.24238 220 93 2 + 45.86352 101.42190 48.22870 3.91300 220 95 2 + 54.40325 102.79530 56.28858 4.58362 220 97 2 + 62.87908 104.16870 64.29642 5.25423 220 98 2 + 69.31511 105.54210 70.28227 5.75510 220 99 2 + 73.29947 105.54210 74.26662 6.09461 220 99 2 + 79.70033 106.91550 80.23883 6.59547 220 99 2 + 88.06976 108.28890 88.20049 7.26608 220 99 2 + 96.16625 109.66230 96.16625 7.93670 302 100 P + 104.14003 111.03570 104.14003 8.60732 302 100 P + 100.17644 112.40910 110.12653 9.10895 220 91 2 + 100.51442 112.40910 114.12106 9.44693 220 88 2 + 74.15809 113.78250 120.11821 9.94855 220 62 2 + 53.54835 115.15590 128.12317 10.61917 110 42 1 + 40.93660 116.52930 136.13813 11.28979 110 30 1 + 34.13559 117.90270 144.16229 11.96041 110 24 1 + 27.18687 119.27610 150.18570 12.46239 110 18 1 + 27.37128 119.27610 154.20390 12.79966 110 18 1 + 25.06046 120.64950 160.23477 13.30164 110 16 1 + 25.26094 122.02290 168.28135 13.97226 110 15 1 + 25.43078 123.39630 176.33377 14.64287 110 14 1 + 25.57689 124.76970 184.39132 15.31349 110 14 1 + 25.61418 126.14310 190.43734 15.81568 110 13 1 + 25.79817 126.14310 194.46939 16.15254 110 13 1 + 25.82474 127.51650 200.51935 16.65473 110 13 1 + 26.43201 128.88990 208.58880 17.32534 110 13 1 + 27.76060 130.26330 216.66126 17.99596 110 13 1 + 29.08632 131.63670 224.73639 18.66658 110 13 1 + 30.31965 133.01010 230.79421 19.16890 110 13 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -25379,9 +25515,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 35.777 'Hydrobiaklei' - -12.00 13.651 'Basisveen' - -12.50 172.887 'Eerste zandlaag' + -11.09 35.707 'Hydrobiaklei' + -12.00 13.653 'Basisveen' + -12.50 173.146 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25398,9 +25534,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.38 'Grind' - -11.09 -7.60 'Hydrobiaklei' + -11.09 -7.59 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -66.37 'Eerste zandlaag' + -12.50 -66.46 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -25510,18 +25646,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 71.33900 32.23900 62.87577 60.92599 -10.88000 71.33900 32.23900 67.12279 61.09928 -10.94000 71.33900 32.23900 71.61188 61.28246 @@ -25621,7 +25757,7 @@ Lambda passive -11.83600 18.48574 65.12397 2.25061 0.69929 0.12175 3.52293 -11.91800 18.92772 66.07603 2.45749 0.69929 0.12984 3.49097 -12.00000 19.36970 66.80032 2.61259 0.69929 0.13565 3.46849 - -12.00000 19.36970 41.96423 7.14432 0.74304 0.38273 2.24805 + -12.00000 19.36970 41.96423 7.14432 0.74118 0.38273 2.24805 -12.10000 16.55870 38.00230 5.90473 0.74118 0.35659 2.29501 -12.20000 13.74770 32.76132 4.25142 0.74118 0.30925 2.38304 -12.30000 10.93670 27.56079 2.59770 0.74118 0.23752 2.52003 @@ -25633,7 +25769,7 @@ Lambda passive -12.92000 9.59450 56.28743 2.43576 0.47008 0.25387 5.86664 -13.06000 11.02110 64.29528 2.80043 0.47008 0.25410 5.83384 -13.20000 12.44770 70.28113 3.07435 0.47008 0.25427 5.81266 - -13.20000 12.44770 74.26549 3.25716 0.60881 0.25438 5.80002 + -13.20000 12.44770 74.26549 3.25716 0.47008 0.25438 5.80002 -13.34000 13.87430 80.23770 3.53166 0.47008 0.25455 5.78319 -13.48000 15.30090 88.19936 3.89807 0.47008 0.25476 5.76432 -13.62000 16.72750 96.16512 4.26488 0.47008 0.25496 5.74892 @@ -25823,39 +25959,39 @@ Status character 78.00540 0.00000 78.00540 78.00540 302 100 P 78.00660 0.00000 78.00660 78.00660 302 100 P 78.00750 0.00000 78.00750 78.00750 302 100 P - 34.10949 66.90000 67.75770 5.13449 220 50 2 - 35.65907 67.48860 70.78364 5.36379 220 50 2 - 37.54611 68.07720 74.81822 5.66952 220 50 2 - 39.25750 68.66580 78.85280 5.97525 110 50 1 - 40.37027 69.25440 82.88738 6.28098 110 49 1 - 41.26259 69.84300 85.91332 6.51027 110 48 1 - 9.50471 69.84300 58.91268 10.20938 110 0 1 - 9.61966 70.82400 59.11293 10.49207 110 0 1 - 9.83172 71.80500 59.68298 10.86899 110 0 1 - 10.04734 72.78600 60.47279 11.24591 110 0 1 - 10.26722 73.76700 61.39650 11.62283 110 0 1 - 10.39781 74.74800 62.14672 11.90552 110 0 1 - 10.51820 74.74800 62.62197 12.07702 110 0 1 - 7.65828 75.55242 63.28384 12.30882 110 0 1 - 7.87955 76.35684 64.19160 12.61790 110 0 1 - 8.09853 77.16126 65.12397 12.92697 110 0 1 - 8.31588 77.96568 66.07603 13.23604 110 0 1 - 8.45350 78.77010 66.80032 13.46785 110 0 1 - 10.41522 78.77010 41.96423 13.87022 110 0 1 - 8.98827 82.75110 38.00230 12.27299 110 0 1 - 7.13299 86.73210 32.76132 10.18953 110 0 1 - 5.26550 90.71310 27.56079 8.10607 110 0 1 - 3.38877 94.69410 22.39211 6.02261 110 0 1 - 2.21624 98.67510 18.53171 4.46002 110 0 1 - 14.73404 98.67510 33.91695 2.66599 110 43 1 - 13.05804 100.04850 40.08791 3.16896 110 33 1 - 11.47305 101.42190 48.22754 3.83957 110 24 1 - 9.91230 102.79530 56.28743 4.51019 110 18 1 - 8.39955 104.16870 64.29528 5.18081 110 13 1 - 6.86711 105.54210 70.28113 5.68377 110 10 1 - 7.04993 105.54210 74.26549 7.79545 110 0 1 - 5.60408 106.91550 80.23770 6.52204 110 0 1 - 4.33358 108.28890 88.19936 7.19266 110 0 1 + 34.11249 66.90000 67.75770 5.13449 220 50 2 + 35.66245 67.48860 70.78364 5.36379 220 50 2 + 37.54990 68.07720 74.81822 5.66952 220 50 2 + 39.27432 68.66580 78.85280 5.97525 110 50 1 + 40.38881 69.25440 82.88738 6.28098 110 49 1 + 41.28291 69.84300 85.91332 6.51027 110 48 1 + 9.50567 69.84300 58.91268 10.20938 110 0 1 + 9.62080 70.82400 59.11293 10.49207 110 0 1 + 9.83305 71.80500 59.68298 10.86899 110 0 1 + 10.04889 72.78600 60.47279 11.24591 110 0 1 + 10.26901 73.76700 61.39650 11.62283 110 0 1 + 10.39984 74.74800 62.14672 11.90552 110 0 1 + 10.52024 74.74800 62.62197 12.07702 110 0 1 + 7.66014 75.55242 63.28384 12.30882 110 0 1 + 7.88158 76.35684 64.19160 12.61790 110 0 1 + 8.10073 77.16126 65.12397 12.92697 110 0 1 + 8.31826 77.96568 66.07603 13.23604 110 0 1 + 8.45606 78.77010 66.80032 13.46785 110 0 1 + 10.42080 78.77010 41.96423 13.83559 110 0 1 + 8.99434 82.75110 38.00230 12.27299 110 0 1 + 7.13958 86.73210 32.76132 10.18953 110 0 1 + 5.27261 90.71310 27.56079 8.10607 110 0 1 + 3.39643 94.69410 22.39211 6.02261 110 0 1 + 2.22447 98.67510 18.53171 4.46002 110 0 1 + 14.78342 98.67510 33.91695 2.66599 110 44 1 + 13.11237 100.04850 40.08791 3.16896 110 33 1 + 11.53251 101.42190 48.22754 3.83957 110 24 1 + 9.97708 102.79530 56.28743 4.51019 110 18 1 + 8.46980 104.16870 64.29528 5.18081 110 13 1 + 6.94297 105.54210 70.28113 5.68377 110 10 1 + 7.12579 105.54210 74.26549 6.01908 110 10 1 + 5.68568 106.91550 80.23770 6.52204 110 0 1 + 4.42098 108.28890 88.19936 7.19266 110 0 1 4.26488 109.66230 96.16512 7.86328 1 0 A 4.63202 111.03570 104.13890 8.53389 1 0 A 4.90753 112.40910 110.12540 9.03686 1 0 A @@ -25863,20 +25999,20 @@ Status character 5.36697 113.78250 120.11708 9.87513 1 0 A 5.73465 115.15590 128.12204 10.54574 1 0 A 6.10241 116.52930 136.13700 11.21636 1 0 A - 17.51930 117.90270 144.16116 11.88698 110 12 1 - 41.57161 119.27610 150.18457 12.38994 110 28 1 - 41.90692 119.27610 154.20277 12.72525 110 27 1 - 73.76364 120.64950 160.23364 13.22821 110 46 1 - 100.39913 122.02290 168.28022 13.89883 220 60 2 - 121.95053 123.39630 176.33264 14.56945 220 69 2 - 134.51049 124.76970 184.39018 15.24006 220 73 2 - 147.26347 126.14310 190.43620 15.74303 220 77 2 - 147.55914 126.14310 194.46826 16.07834 220 76 2 - 156.76881 127.51650 200.51822 16.58130 220 78 2 - 173.16490 128.88990 208.58766 17.25192 220 83 2 - 190.30222 130.26330 216.66013 17.92253 220 88 2 - 198.44630 131.63670 224.73525 18.59315 220 88 2 - 204.57227 133.01010 230.79307 19.09611 220 89 2 + 17.60014 117.90270 144.16116 11.88698 110 12 1 + 41.67800 119.27610 150.18457 12.38994 110 28 1 + 42.01331 119.27610 154.20277 12.72525 110 27 1 + 73.48531 120.64950 160.23364 13.22821 110 46 1 + 100.34169 122.02290 168.28022 13.89883 220 60 2 + 121.90452 123.39630 176.33264 14.56945 220 69 2 + 134.56074 124.76970 184.39018 15.24006 220 73 2 + 147.31933 126.14310 190.43620 15.74303 220 77 2 + 148.91865 126.14310 194.46826 16.07834 220 77 2 + 156.83022 127.51650 200.51822 16.58130 220 78 2 + 173.72067 128.88990 208.58766 17.25192 220 83 2 + 190.33934 130.26330 216.66013 17.92253 220 88 2 + 198.48398 131.63670 224.73525 18.59315 220 88 2 + 204.61051 133.01010 230.79307 19.09611 220 89 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -25890,10 +26026,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 11.431 'Grind' - -11.09 8.370 'Hydrobiaklei' - -12.00 3.109 'Basisveen' - -12.50 217.906 'Eerste zandlaag' + -10.79 11.434 'Grind' + -11.09 8.371 'Hydrobiaklei' + -12.00 3.113 'Basisveen' + -12.50 218.157 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25912,7 +26048,7 @@ Layer name -10.79 4.62 'Grind' -11.09 1.78 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 83.65 'Eerste zandlaag' + -12.50 83.74 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -26152,8 +26288,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 508.31909 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 849.04946 10000000.000 1 1 1 'Dek' + -10.19000 508.19628 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 849.09189 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -26214,10 +26350,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 54.51 : Percentage mobilized resistance left - 43.69 : Percentage mobilized resistance right - 336.46 : Effective left - 270.92 : Effective right + 54.55 : Percentage mobilized resistance left + 43.72 : Percentage mobilized resistance right + 336.71 : Effective left + 271.11 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 617.26 : Max effective resistance left @@ -26226,8 +26362,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 102.97 : Vertical force left - 68.98 : Vertical force right + 103.06 : Vertical force left + 69.07 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -26236,17 +26372,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --68.98 : Active force -102.97 : Passive force --68.98 : Plugged active force -102.97 : Plugged passive force +-69.07 : Active force +103.06 : Passive force +-69.07 : Plugged active force +103.06 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 50.00 : Factor on resistance 1510.79 : Plugged resistance 1.00 : Vertical balance load factor --66.01 : Resulting Vertical Force Unplugged --66.01 : Resulting Vertical Force Plugged +-66.00 : Resulting Vertical Force Unplugged +-66.00 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -26259,210 +26395,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 540.61347 - -0.44824 0.00000 537.29303 - -0.89648 0.00000 533.97263 - -1.34472 0.00000 530.65229 - -1.79296 0.00000 527.33206 - -2.24120 0.00000 524.01196 - -2.24120 0.00000 524.01196 - -2.68933 0.00000 520.69203 - -3.13746 0.00000 517.37230 - -3.58558 0.00000 514.05282 - -4.03371 0.00000 510.73360 - -4.48184 0.00000 507.41469 - -4.48184 0.00000 507.41469 - -5.07896 0.00000 502.99000 - -5.67609 0.00000 498.56600 - -6.27322 0.00000 494.14276 - -6.87034 0.00000 489.72036 - -7.46747 0.00000 485.29889 - -7.46747 0.00000 485.29889 - -7.96457 0.00000 481.61509 - -8.46167 0.00000 477.93204 - -8.95877 0.00000 474.24977 - -9.45587 0.00000 470.56835 - -9.95297 0.00000 466.88780 - -9.95297 0.00000 466.88780 - -10.44944 0.00000 463.20818 - -10.94591 0.00000 459.52954 - -11.44238 0.00000 455.85192 - -11.93886 0.00000 452.17537 - -12.43533 0.00000 448.49993 - -12.43533 0.00000 448.49993 - -12.86167 0.00000 445.33998 - -13.28802 0.00000 442.18091 - -13.71437 0.00000 439.02277 - -14.14071 0.00000 435.86557 - -14.56706 0.00000 432.70934 - -14.56706 653.25150 432.70934 - 59.33444 653.25150 428.52556 - 133.23594 653.25150 424.33458 - 207.13744 653.25150 420.12744 - 281.03893 653.25150 415.89519 - 354.94043 653.25150 411.62884 - 354.94043 653.25150 411.62884 - 362.32948 653.25150 411.19999 - 369.71853 653.25150 410.77070 - 377.10758 653.25150 410.34096 - 384.49663 653.25150 409.91076 - 391.88568 653.25150 409.48009 - 391.88567 653.25193 409.48009 - 436.34180 653.25193 406.87819 - 480.79792 653.25193 404.25713 - 525.25405 653.25193 401.61496 - 569.71017 653.25193 398.94972 - 614.16630 653.25193 396.25946 - 614.16630 -195.79752 396.25946 - 610.14318 -195.79752 395.47015 - 606.12006 -195.79752 394.67856 - 602.09695 -195.79752 393.88471 - 598.07383 -195.79752 393.08861 - 594.05071 -195.79752 392.29028 - 594.05071 -195.79751 392.29028 - 577.94378 -195.79751 389.07492 - 561.83684 -195.79751 385.82506 - 545.72991 -195.79751 382.54163 - 529.62298 -195.79751 379.22562 - 513.51604 -195.79751 375.87797 - 513.51604 -195.79751 375.87797 - 509.48595 -195.79751 375.03623 - 505.45585 -195.79751 374.19259 - 501.42576 -195.79751 373.34706 - 497.39566 -195.79751 372.49966 - 493.36557 -195.79751 371.65040 - 493.36557 -195.79751 371.65040 - 473.19747 -195.79751 367.37679 - 453.02936 -195.79751 363.05902 - 432.86126 -195.79751 358.69897 - 412.69316 -195.79751 354.29853 - 392.52505 -195.79751 349.85958 - 392.52505 -195.79751 349.85958 - 372.33223 -195.79751 345.38400 - 352.13940 -195.79751 340.87367 - 331.94657 -195.79751 336.33049 - 311.75374 -195.79751 331.75632 - 291.56092 -195.79751 327.15307 - 291.56092 -195.79752 327.15307 - 263.26153 -195.79752 320.66322 - 234.96215 -195.79752 314.12522 - 206.66276 -195.79752 307.54425 - 178.36338 -195.79752 300.92547 - 150.06399 -195.79752 294.27407 - 150.06400 -195.79757 294.27407 - 123.76903 -195.79757 288.07309 - 97.47407 -195.79757 281.85258 - 71.17910 -195.79757 275.61670 - 44.88413 -195.79757 269.36960 - 18.58916 -195.79757 263.11542 - 18.58908 -195.79908 263.11542 - -7.70806 -195.79908 256.85830 - -34.00520 -195.79908 250.60240 - -60.30235 -195.79908 244.35187 - -86.59949 -195.79908 238.11084 - -112.89663 -195.79908 231.88347 - -112.89663 -195.79909 231.88347 - -143.12263 -195.79909 224.74427 - -173.34862 -195.79909 217.63491 - -203.57462 -195.79909 210.56172 - -233.80061 -195.79909 203.53098 - -264.02660 -195.79909 196.54901 - -264.02660 -195.79909 196.54901 - -294.21543 -195.79909 189.62210 - -324.40426 -195.79909 182.75657 - -354.59309 -195.79909 175.95869 - -384.78191 -195.79909 169.23478 - -414.97074 -195.79909 162.59112 - -414.97075 -195.79907 162.59112 - -445.10116 -195.79907 156.03401 - -475.23156 -195.79907 149.56974 - -505.36197 -195.79907 143.20459 - -535.49238 -195.79907 136.94484 - -565.62279 -195.79907 130.79679 - -565.62267 -195.79829 130.79679 - -595.67333 -195.79829 124.76671 - -625.72400 -195.79829 118.86087 - -655.77467 -195.79829 113.08554 - -685.82534 -195.79829 107.44699 - -715.87600 -195.79829 101.95149 - -715.87605 -195.79863 101.95149 - -716.27736 -195.69227 101.87897 - -716.67832 -195.48167 101.80648 - -717.07885 -195.27107 101.73401 - -717.47897 -195.06047 101.66157 - -717.87866 -194.84987 101.58916 - -717.87866 -194.84991 101.58916 - -718.27791 -194.63931 101.51677 - -718.67675 -194.42871 101.44441 - -719.07516 -194.21811 101.37208 - -719.47315 -194.00751 101.29977 - -719.87072 -193.79691 101.22749 - -719.87072 -193.79691 101.22749 - -726.97499 -191.92042 99.93108 - -734.05674 -191.92041 98.64345 - -741.13850 -191.92040 97.36471 - -748.22025 -191.92039 96.09492 - -755.30201 -191.92038 94.83419 - -755.30193 91.85876 94.83419 - -744.76808 91.85879 90.69743 - -734.23423 91.85882 86.66076 - -723.70037 91.85886 82.72275 - -713.16652 91.85889 78.88199 - -702.63265 91.85892 75.13706 - -702.63305 91.86204 75.13706 - -697.41559 88.83422 73.30009 - -692.38457 85.64320 71.48655 - -687.55019 82.28117 69.69627 - -682.92250 78.75419 67.92909 - -678.51095 75.08217 66.18486 - -678.51046 75.08047 66.18486 - -671.24719 76.61107 63.32841 - -663.69139 80.26708 60.53459 - -655.76328 84.05774 57.80268 - -647.44942 87.98080 55.13194 - -638.73986 91.94134 52.52161 - -638.73990 91.94094 52.52161 - -631.24986 95.42386 50.42568 - -623.47186 98.94192 48.36937 - -615.40666 102.42944 46.35216 - -607.05666 105.88846 44.37354 - -598.42418 109.31861 42.43302 - -598.42427 109.31807 42.43302 - -587.57001 111.55029 40.11732 - -576.47694 114.09829 37.85646 - -565.12544 116.59098 35.64936 - -553.54648 118.64903 33.49499 - -541.78184 120.31852 31.39227 - -541.78394 120.32666 31.39227 - -525.06660 121.36230 28.53322 - -508.13207 123.46938 25.77023 - -490.81919 126.76698 23.10011 - -472.94774 131.54627 20.51967 - -454.28410 138.07645 18.02573 - -454.34714 138.53813 18.02573 - -434.46858 147.51065 15.61514 - -413.20530 158.37832 13.28406 - -390.28198 171.18008 11.02826 - -365.44276 185.73259 8.84354 - -338.49982 200.85542 6.72568 - -338.50458 201.50693 6.72568 - -309.44068 214.00038 4.67000 - -278.97110 221.51178 2.67090 - -247.73951 225.42311 0.72270 - -216.12297 226.84389 -1.18027 - -184.57336 224.06432 -3.04366 - -184.56350 223.58692 -3.04366 - -153.88577 214.47272 -4.87350 - -124.79676 201.04689 -6.67527 - -97.85450 183.81837 -8.45383 - -73.54805 163.67501 -10.21408 - -52.20775 141.43497 -11.96088 - -52.22493 141.30023 -11.96088 - -34.12324 117.24707 -13.69886 - -19.52031 91.10938 -15.43068 - -8.76641 62.26069 -17.15828 - -2.20150 31.54998 -18.88359 - 0.00154 0.00871 -20.60853 + 0.00000 0.00000 541.07895 + -0.44871 0.00000 537.75504 + -0.89742 0.00000 534.43117 + -1.34613 0.00000 531.10736 + -1.79484 0.00000 527.78366 + -2.24355 0.00000 524.46009 + -2.24355 0.00000 524.46009 + -2.69214 0.00000 521.13669 + -3.14074 0.00000 517.81349 + -3.58933 0.00000 514.49054 + -4.03793 0.00000 511.16785 + -4.48652 0.00000 507.84547 + -4.48652 0.00000 507.84547 + -5.08427 0.00000 503.41616 + -5.68202 0.00000 498.98753 + -6.27977 0.00000 494.55967 + -6.87752 0.00000 490.13265 + -7.47527 0.00000 485.70656 + -7.47527 0.00000 485.70656 + -7.97289 0.00000 482.01891 + -8.47051 0.00000 478.33201 + -8.96813 0.00000 474.64589 + -9.46575 0.00000 470.96062 + -9.96337 0.00000 467.27622 + -9.96337 0.00000 467.27622 + -10.46036 0.00000 463.59276 + -10.95735 0.00000 459.91027 + -11.45434 0.00000 456.22881 + -11.95133 0.00000 452.54841 + -12.44833 0.00000 448.86913 + -12.44833 0.00000 448.86913 + -12.87512 0.00000 445.70588 + -13.30191 0.00000 442.54351 + -13.72870 0.00000 439.38206 + -14.15549 0.00000 436.22156 + -14.58228 0.00000 433.06204 + -14.58228 653.25150 433.06204 + 59.31863 653.25150 428.87389 + 133.21953 653.25150 424.67854 + 207.12044 653.25150 420.46703 + 281.02135 653.25150 416.23041 + 354.92226 653.25150 411.95971 + 354.92226 653.25150 411.95971 + 362.31125 653.25150 411.53042 + 369.70024 653.25150 411.10069 + 377.08923 653.25150 410.67051 + 384.47822 653.25150 410.23987 + 391.86722 653.25150 409.80877 + 391.86720 653.25193 409.80877 + 436.32298 653.25193 407.20425 + 480.77875 653.25193 404.58057 + 525.23452 653.25193 401.93577 + 569.69029 653.25193 399.26791 + 614.14606 653.25193 396.57503 + 614.14606 -195.83995 396.57503 + 610.12199 -195.83995 395.78496 + 606.09792 -195.83995 394.99260 + 602.07385 -195.83995 394.19799 + 598.04978 -195.83995 393.40112 + 594.02571 -195.83995 392.60203 + 594.02571 -195.83994 392.60203 + 577.91497 -195.83994 389.38362 + 561.80423 -195.83994 386.13070 + 545.69349 -195.83994 382.84423 + 529.58276 -195.83994 379.52517 + 513.47202 -195.83994 376.17448 + 513.47202 -195.83994 376.17448 + 509.44097 -195.83994 375.33197 + 505.40992 -195.83994 374.48757 + 501.37888 -195.83994 373.64128 + 497.34783 -195.83994 372.79312 + 493.31679 -195.83994 371.94310 + 493.31679 -195.83994 371.94310 + 473.14393 -195.83994 367.66569 + 452.97107 -195.83994 363.34413 + 432.79821 -195.83994 358.98030 + 412.62535 -195.83994 354.57608 + 392.45250 -195.83994 350.13335 + 392.45250 -195.83995 350.13335 + 372.25492 -195.83995 345.65400 + 352.05734 -195.83995 341.13991 + 331.85977 -195.83995 336.59297 + 311.66219 -195.83995 332.01506 + 291.46461 -195.83995 327.40807 + 291.46461 -195.83995 327.40807 + 263.15859 -195.83995 320.91301 + 234.85256 -195.83995 314.36981 + 206.54654 -195.83995 307.78366 + 178.24052 -195.83995 301.15973 + 149.93449 -195.83995 294.50320 + 149.93450 -195.84000 294.50320 + 123.63338 -195.84000 288.29747 + 97.33226 -195.84000 282.07224 + 71.03115 -195.84000 275.83166 + 44.73003 -195.84000 269.57987 + 18.42891 -195.84000 263.32104 + 18.42883 -195.84151 263.32104 + -7.87445 -195.84151 257.05929 + -34.17773 -195.84151 250.79879 + -60.48100 -195.84151 244.54368 + -86.78428 -195.84151 238.29811 + -113.08756 -195.84151 232.06622 + -113.08756 -195.84152 232.06622 + -143.32058 -195.84152 224.92186 + -173.55360 -195.84152 217.80738 + -203.78662 -195.84152 210.72911 + -234.01965 -195.84152 203.69335 + -264.25267 -195.84152 196.70639 + -264.25267 -195.84153 196.70639 + -294.44849 -195.84153 189.77455 + -324.64432 -195.84153 182.90412 + -354.84014 -195.84153 176.10141 + -385.03597 -195.84153 169.37271 + -415.23179 -195.84153 162.72431 + -415.23180 -195.84150 162.72431 + -445.36917 -195.84150 156.16252 + -475.50653 -195.84150 149.69363 + -505.64390 -195.84150 143.32391 + -535.78127 -195.84150 137.05966 + -565.91863 -195.84150 130.90716 + -565.91852 -195.84074 130.90716 + -595.97611 -195.84074 124.87269 + -626.03369 -195.84074 118.96253 + -656.09128 -195.84074 113.18294 + -686.14887 -195.84074 107.54020 + -716.20646 -195.84074 102.04057 + -716.20651 -195.84110 102.04057 + -716.60791 -195.73475 101.96800 + -717.00896 -195.52415 101.89545 + -717.40959 -195.31354 101.82293 + -717.80979 -195.10294 101.75043 + -718.20958 -194.89234 101.67797 + -718.20958 -194.89235 101.67797 + -718.60893 -194.68175 101.60553 + -719.00785 -194.47115 101.53311 + -719.40636 -194.26055 101.46072 + -719.80444 -194.04994 101.38836 + -720.20210 -193.83934 101.31603 + -720.20210 -193.83937 101.31603 + -727.30803 -191.96288 100.01863 + -734.39145 -191.96287 98.73003 + -741.47486 -191.96286 97.45031 + -748.55827 -191.96285 96.17956 + -755.64168 -191.96284 94.91786 + -755.64161 91.93911 94.91786 + -745.09850 91.93914 90.77792 + -734.55540 91.93917 86.73810 + -724.01228 91.93920 82.79699 + -713.46917 91.93924 78.95318 + -702.92605 91.93927 75.20524 + -702.92645 91.94239 75.20524 + -697.70434 88.91425 73.36677 + -692.66871 85.72285 71.55175 + -687.82972 82.36042 69.76000 + -683.19746 78.83299 67.99136 + -678.78136 75.16048 66.24567 + -678.78087 75.15877 66.24567 + -671.51002 76.68952 63.38681 + -663.94659 80.34616 60.59062 + -656.01079 84.13741 57.85635 + -647.68923 88.05966 55.18327 + -638.97214 92.01798 52.57063 + -638.97218 92.01758 52.57063 + -631.48128 95.40451 50.47283 + -623.70504 98.92273 48.41465 + -615.64158 102.41034 46.39559 + -607.29332 105.86937 44.41514 + -598.66258 109.29946 42.47280 + -598.66268 109.29892 42.47280 + -587.81039 111.53345 40.15490 + -576.71913 114.08195 37.89185 + -565.36952 116.57333 35.68261 + -553.79257 118.62998 33.52610 + -542.03009 120.29798 31.42127 + -542.03218 120.30605 31.42127 + -525.31830 121.33625 28.55931 + -508.38803 123.43741 25.79345 + -491.08027 126.72859 23.12051 + -473.21513 131.49558 20.53730 + -454.56007 138.00718 18.04064 + -454.62317 138.46905 18.04064 + -434.75580 147.42168 15.62737 + -413.50659 158.26813 13.29367 + -390.59988 171.05836 11.03531 + -365.77793 185.60970 8.84808 + -338.85162 200.74846 6.72777 + -338.85654 201.40140 6.72777 + -309.80527 213.92590 4.66972 + -279.34469 221.45522 2.66830 + -248.12099 225.36575 0.71785 + -216.51357 226.76941 -1.18729 + -184.97640 223.96131 -3.05279 + -184.96652 223.48319 -3.05279 + -154.24772 214.97090 -4.88467 + -125.08835 201.54755 -6.68840 + -98.07740 184.29921 -8.46888 + -73.70559 164.12539 -10.23099 + -52.30511 141.84484 -11.97964 + -52.32222 141.71062 -11.97964 + -34.17752 117.49226 -13.71944 + -19.54538 91.26648 -15.45308 + -8.77657 62.33317 -17.18249 + -2.20403 31.58647 -18.90961 + 0.00155 0.00877 -20.63636 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -26569,30 +26705,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 71.33900 32.23900 64.43597 62.48615 -10.88000 71.33900 32.23900 68.68306 62.65945 -10.94000 71.33900 32.23900 73.17222 62.84262 @@ -26667,7 +26803,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -26686,7 +26822,7 @@ Lambda passive -10.55000 78.00560 78.00560 78.00560 1.00000 1.00000 1.00000 -10.67000 78.00680 78.00680 78.00680 1.00000 1.00000 1.00000 -10.79000 78.00800 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 11.10800 67.75891 2.76486 0.46842 0.24520 6.00921 + -10.79000 11.10800 67.75891 2.76486 0.46518 0.24520 6.00921 -10.85000 11.77940 70.78484 2.88834 0.46462 0.24520 6.00921 -10.91000 12.45080 74.81942 3.05296 0.46412 0.24520 6.00921 -10.97000 13.12220 78.85400 3.21759 0.46367 0.24520 6.00921 @@ -26698,48 +26834,48 @@ Lambda passive -11.39000 16.08200 60.47331 1.11956 0.70608 0.06962 3.76031 -11.49000 16.62100 61.39701 1.37508 0.70586 0.08273 3.69394 -11.59000 17.16000 62.14723 1.56561 0.70565 0.09196 3.65030 - -11.59000 17.16000 62.62248 1.68090 0.80518 0.09733 3.62598 - -11.67200 17.60198 63.28435 1.83649 0.70441 0.10433 3.59530 - -11.75400 18.04396 64.19211 2.04370 0.70429 0.11326 3.55754 - -11.83600 18.48594 65.12448 2.25070 0.70417 0.12175 3.52292 - -11.91800 18.92792 66.07654 2.45758 0.70405 0.12984 3.49096 - -12.00000 19.36990 66.80083 2.61269 0.70394 0.13566 3.46848 - -12.00000 19.36990 41.96461 7.14444 0.74583 0.38273 2.24805 - -12.10000 16.55890 38.00268 5.90484 0.74662 0.35660 2.29500 - -12.20000 13.74790 32.76169 4.25154 0.74773 0.30925 2.38303 - -12.30000 10.93690 27.56116 2.59782 0.74942 0.23753 2.52002 - -12.40000 8.12590 22.39249 0.94381 0.75227 0.11615 2.75569 - -12.50000 5.31490 18.53208 -0.29683 0.74118 0.00000 3.07962 - -12.50000 5.31490 33.91813 1.43664 0.47008 0.25331 5.98040 - -12.64000 6.74150 40.08908 1.70862 0.47008 0.25345 5.94661 - -12.78000 8.16810 48.22870 2.07185 0.47008 0.25365 5.90452 - -12.92000 9.59470 56.28858 2.43581 0.47008 0.25387 5.86663 - -13.06000 11.02130 64.29642 2.80048 0.47008 0.25410 5.83383 - -13.20000 12.44790 70.28227 3.07440 0.47008 0.25427 5.81266 - -13.20000 12.44790 74.26662 3.25721 0.47008 0.25438 5.80002 - -13.34000 13.87450 80.23883 3.53171 0.47008 0.25455 5.78319 - -13.48000 15.30110 88.20049 3.89812 0.47008 0.25476 5.76432 - -13.62000 16.72770 96.16625 4.26493 0.47008 0.25496 5.74892 - -13.76000 18.15430 104.14003 4.63207 0.47008 0.25515 5.73638 - -13.90000 19.58090 110.12653 4.90758 0.47008 0.25528 5.72852 - -13.90000 19.58090 114.12106 5.09133 0.47008 0.25536 5.72393 - -14.04000 21.00750 120.11821 5.36702 0.47008 0.25548 5.71787 - -14.18000 22.43410 128.12317 5.73470 0.47008 0.25562 5.71109 - -14.32000 23.86070 136.13813 6.10246 0.47386 0.25575 5.70554 - -14.46000 25.28730 144.16229 6.47026 0.47364 0.25587 5.70098 - -14.60000 26.71390 150.18570 6.74611 0.47345 0.25595 5.69808 - -14.60000 26.71390 154.20390 6.93000 0.30013 0.25600 5.69637 - -14.74000 28.14050 160.23477 7.20584 0.47396 0.25607 5.69410 - -14.88000 29.56710 168.28135 7.57358 0.47377 0.25615 5.69151 - -15.02000 30.99370 176.33377 7.94128 0.47360 0.25622 5.68934 - -15.16000 32.42030 184.39132 8.30893 0.47345 0.25629 5.68753 - -15.30000 33.84690 190.43734 8.58462 0.47330 0.25633 5.68635 - -15.30000 33.84690 194.46939 8.76840 0.47330 0.25636 5.68565 - -15.44000 35.27350 200.51935 9.04404 0.47317 0.25640 5.68470 - -15.58000 36.70010 208.58880 9.41150 0.47305 0.25644 5.68360 - -15.72000 38.12670 216.66126 9.77889 0.47294 0.25648 5.68267 - -15.86000 39.55330 224.73639 10.14623 0.47284 0.25652 5.68186 - -16.00000 40.97990 230.79421 10.42170 0.47274 0.25655 5.68133 + -11.59000 17.16000 62.62248 1.68090 0.70565 0.09733 3.62598 + -11.67200 17.60198 63.28435 1.83649 0.70549 0.10433 3.59530 + -11.75400 18.04396 64.19211 2.04370 0.70534 0.11326 3.55754 + -11.83600 18.48594 65.12448 2.25070 0.70520 0.12175 3.52292 + -11.91800 18.92792 66.07654 2.45758 0.70506 0.12984 3.49096 + -12.00000 19.36990 66.80083 2.61269 0.70493 0.13566 3.46848 + -12.00000 19.36990 41.96461 7.14444 0.74681 0.38273 2.24805 + -12.10000 16.55890 38.00268 5.90484 0.74816 0.35660 2.29500 + -12.20000 13.74790 32.76169 4.25154 0.74959 0.30925 2.38303 + -12.30000 10.93690 27.56116 2.59782 0.75175 0.23753 2.52002 + -12.40000 8.12590 22.39249 0.94381 0.75541 0.11615 2.75569 + -12.50000 5.31490 18.53208 -0.29683 0.76294 0.00000 3.07962 + -12.50000 5.31490 33.91813 1.43664 0.49184 0.25331 5.98040 + -12.64000 6.74150 40.08908 1.70862 0.48096 0.25345 5.94661 + -12.78000 8.16810 48.22870 2.07185 0.47906 0.25365 5.90452 + -12.92000 9.59470 56.28858 2.43581 0.47772 0.25387 5.86663 + -13.06000 11.02130 64.29642 2.80048 0.47673 0.25410 5.83383 + -13.20000 12.44790 70.28227 3.07440 0.47597 0.25427 5.81266 + -13.20000 12.44790 74.26662 3.25721 0.47597 0.25438 5.80002 + -13.34000 13.87450 80.23883 3.53171 0.47537 0.25455 5.78319 + -13.48000 15.30110 88.20049 3.89812 0.47487 0.25476 5.76432 + -13.62000 16.72770 96.16625 4.26493 0.47446 0.25496 5.74892 + -13.76000 18.15430 104.14003 4.63207 0.47412 0.25515 5.73638 + -13.90000 19.58090 110.12653 4.90758 0.47383 0.25528 5.72852 + -13.90000 19.58090 114.12106 5.09133 0.47383 0.25536 5.72393 + -14.04000 21.00750 120.11821 5.36702 0.47357 0.25548 5.71787 + -14.18000 22.43410 128.12317 5.73470 0.47335 0.25562 5.71109 + -14.32000 23.86070 136.13813 6.10246 0.47315 0.25575 5.70554 + -14.46000 25.28730 144.16229 6.47026 0.47298 0.25587 5.70098 + -14.60000 26.71390 150.18570 6.74611 0.47283 0.25595 5.69808 + -14.60000 26.71390 154.20390 6.93000 0.47283 0.25600 5.69637 + -14.74000 28.14050 160.23477 7.20584 0.47269 0.25607 5.69410 + -14.88000 29.56710 168.28135 7.57358 0.47256 0.25615 5.69151 + -15.02000 30.99370 176.33377 7.94128 0.47245 0.25622 5.68934 + -15.16000 32.42030 184.39132 8.30893 0.47234 0.25629 5.68753 + -15.30000 33.84690 190.43734 8.58462 0.47225 0.25633 5.68635 + -15.30000 33.84690 194.46939 8.76840 0.47225 0.25636 5.68565 + -15.44000 35.27350 200.51935 9.04404 0.47216 0.25640 5.68470 + -15.58000 36.70010 208.58880 9.41150 0.47208 0.25644 5.68360 + -15.72000 38.12670 216.66126 9.77889 0.47200 0.25648 5.68267 + -15.86000 39.55330 224.73639 10.14623 0.47193 0.25652 5.68186 + -16.00000 40.97990 230.79421 10.42170 0.47187 0.25655 5.68133 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -26887,7 +27023,7 @@ Status character 78.00004 0.00000 78.00004 78.00004 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P + 78.00010 0.00000 78.00010 78.00010 302 100 P 78.00011 0.00000 78.00011 78.00011 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00014 0.00000 78.00014 78.00014 302 100 P @@ -26906,60 +27042,60 @@ Status character 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00680 0.00000 78.00680 78.00680 1 100 A 78.00770 0.00000 78.00770 78.00770 1 100 A - 2.76486 66.90000 67.75891 5.28180 1 0 A + 2.76486 66.90000 67.75891 5.24532 1 0 A 2.88834 67.48860 70.78484 5.47297 1 0 A 3.05296 68.07720 74.81942 5.77870 1 0 A 3.21759 68.66580 78.85400 6.08443 1 0 A 3.38222 69.25440 82.88858 6.39016 1 0 A 3.50569 69.84300 85.91452 6.61819 1 0 A - 7.01238 69.84300 58.91319 10.31963 110 0 1 - 37.73095 70.82400 59.11344 10.60130 220 64 2 - 39.02294 71.80500 59.68350 10.97822 220 65 2 - 40.32291 72.78600 60.47331 11.35514 220 67 2 - 41.56444 73.76700 61.39701 11.73206 220 68 2 - 41.34925 74.74800 62.14723 12.01389 220 67 2 - 43.33485 74.74800 62.62248 13.90582 220 69 2 - 41.43180 75.55242 63.28435 12.39903 220 65 2 - 41.39686 76.35684 64.19211 12.70811 220 64 2 - 41.37181 77.16126 65.12448 13.01718 220 64 2 - 41.35654 77.96568 66.07654 13.32626 220 63 2 - 41.23073 78.77010 66.80083 13.55755 220 62 2 - 29.68213 78.77010 41.96461 13.92254 220 71 2 - 30.51061 82.75110 38.00268 12.36321 220 80 2 - 31.07752 86.73210 32.76169 10.27975 220 95 2 - 25.93634 90.71310 27.56116 8.19629 220 94 2 - 20.83278 94.69410 22.39249 6.11283 220 93 2 - 17.04227 98.67510 18.53208 4.46017 220 92 2 - 24.97923 98.67510 33.91813 2.66609 220 74 2 - 31.77305 100.04850 40.08908 3.16905 220 79 2 - 40.56609 101.42190 48.22870 3.83967 220 84 2 - 49.30015 102.79530 56.28858 4.51028 220 88 2 - 57.99313 104.16870 64.29642 5.18090 220 90 2 - 64.66527 105.54210 70.28227 5.68386 220 92 2 - 68.64962 105.54210 74.26662 6.01917 220 92 2 - 75.30198 106.91550 80.23883 6.52214 220 94 2 - 83.93577 108.28890 88.20049 7.19275 220 95 2 - 92.28389 109.66230 96.16625 7.86337 220 96 2 - 100.53946 111.03570 104.14003 8.53399 220 97 2 - 96.68347 112.40910 110.12653 9.03695 220 88 2 - 97.01877 112.40910 114.12106 9.37226 220 85 2 - 70.98026 113.78250 120.11821 9.87522 220 59 2 - 42.59661 115.15590 128.12317 10.54584 110 33 1 - 31.25575 116.52930 136.13813 11.30653 110 23 1 - 25.65145 117.90270 144.16229 11.97714 110 18 1 - 19.89922 119.27610 150.18570 12.47890 110 13 1 - 13.67084 119.27610 154.20390 8.12469 110 9 1 - 19.05227 120.64950 160.23477 13.33740 110 12 1 - 20.43863 122.02290 168.28135 14.00801 110 12 1 - 21.79094 123.39630 176.33377 14.67863 110 12 1 - 23.11622 124.76970 184.39132 15.34925 110 13 1 - 24.32921 126.14310 190.43734 15.85106 110 13 1 - 24.51373 126.14310 194.46939 16.18867 110 13 1 - 25.71333 127.51650 200.51935 16.69048 110 13 1 - 27.47592 128.88990 208.58880 17.36110 110 13 1 - 29.97460 130.26330 216.66126 18.03172 110 14 1 - 32.46966 131.63670 224.73639 18.70233 110 14 1 - 34.87212 133.01010 230.79421 19.20435 110 15 1 + 7.01112 69.84300 58.91319 10.31963 110 0 1 + 37.73712 70.82400 59.11344 10.60130 220 64 2 + 39.02907 71.80500 59.68350 10.97822 220 65 2 + 40.32899 72.78600 60.47331 11.35514 220 67 2 + 41.55046 73.76700 61.39701 11.73206 220 68 2 + 41.33483 74.74800 62.14723 12.01389 220 67 2 + 41.60129 74.74800 62.62248 12.18695 220 66 2 + 41.43579 75.55242 63.28435 12.41805 220 65 2 + 41.40038 76.35684 64.19211 12.72713 220 64 2 + 41.37487 77.16126 65.12448 13.03620 220 64 2 + 41.35914 77.96568 66.07654 13.34527 220 63 2 + 41.23288 78.77010 66.80083 13.57646 220 62 2 + 29.70591 78.77010 41.96461 13.94087 220 71 2 + 30.53443 82.75110 38.00268 12.38877 220 80 2 + 31.07565 86.73210 32.76169 10.30531 220 95 2 + 25.93433 90.71310 27.56116 8.22185 220 94 2 + 20.83063 94.69410 22.39249 6.13839 220 93 2 + 17.03997 98.67510 18.53208 4.59108 220 92 2 + 24.96546 98.67510 33.91813 2.78947 220 74 2 + 31.75803 100.04850 40.08908 3.24238 220 79 2 + 40.54978 101.42190 48.22870 3.91300 220 84 2 + 49.28252 102.79530 56.28858 4.58362 220 88 2 + 57.97415 104.16870 64.29642 5.25423 220 90 2 + 64.64491 105.54210 70.28227 5.75510 220 92 2 + 68.62927 105.54210 74.26662 6.09461 220 92 2 + 75.28023 106.91550 80.23883 6.59547 220 94 2 + 83.91261 108.28890 88.20049 7.26608 220 95 2 + 92.28263 109.66230 96.16625 7.93670 220 96 2 + 100.53826 111.03570 104.14003 8.60732 220 97 2 + 96.86254 112.40910 110.12653 9.10895 220 88 2 + 97.20052 112.40910 114.12106 9.44693 220 85 2 + 71.13604 113.78250 120.11821 9.94855 220 59 2 + 42.63873 115.15590 128.12317 10.61917 110 33 1 + 31.21291 116.52930 136.13813 11.28979 110 23 1 + 25.60124 117.90270 144.16229 11.96041 110 18 1 + 19.84140 119.27610 150.18570 12.46239 110 13 1 + 20.02581 119.27610 154.20390 12.79966 110 13 1 + 18.90081 120.64950 160.23477 13.30164 110 12 1 + 20.28405 122.02290 168.28135 13.97226 110 12 1 + 21.63361 123.39630 176.33377 14.64287 110 12 1 + 22.95642 124.76970 184.39132 15.31349 110 12 1 + 24.16741 126.14310 190.43734 15.81568 110 13 1 + 24.35139 126.14310 194.46939 16.15254 110 13 1 + 25.54912 127.51650 200.51935 16.65473 110 13 1 + 27.32582 128.88990 208.58880 17.32534 110 13 1 + 29.82263 130.26330 216.66126 17.99596 110 14 1 + 32.31586 131.63670 224.73639 18.66658 110 14 1 + 34.71649 133.01010 230.79421 19.16890 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -26974,9 +27110,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 35.325 'Hydrobiaklei' - -12.00 13.172 'Basisveen' - -12.50 159.159 'Eerste zandlaag' + -11.09 35.255 'Hydrobiaklei' + -12.00 13.175 'Basisveen' + -12.50 159.412 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -26993,9 +27129,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.38 'Grind' - -11.09 -7.51 'Hydrobiaklei' + -11.09 -7.49 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -61.10 'Eerste zandlaag' + -12.50 -61.19 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -27105,18 +27241,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 71.33900 32.23900 62.87577 60.92599 -10.88000 71.33900 32.23900 67.12279 61.09928 -10.94000 71.33900 32.23900 71.61188 61.28246 @@ -27216,7 +27352,7 @@ Lambda passive -11.83600 18.48574 65.12397 2.25061 0.69929 0.12175 3.52293 -11.91800 18.92772 66.07603 2.45749 0.69929 0.12984 3.49097 -12.00000 19.36970 66.80032 2.61259 0.69929 0.13565 3.46849 - -12.00000 19.36970 41.96423 7.14432 0.74304 0.38273 2.24805 + -12.00000 19.36970 41.96423 7.14432 0.74118 0.38273 2.24805 -12.10000 16.55870 38.00230 5.90473 0.74118 0.35659 2.29501 -12.20000 13.74770 32.76132 4.25142 0.74118 0.30925 2.38304 -12.30000 10.93670 27.56079 2.59770 0.74118 0.23752 2.52003 @@ -27228,7 +27364,7 @@ Lambda passive -12.92000 9.59450 56.28743 2.43576 0.47008 0.25387 5.86664 -13.06000 11.02110 64.29528 2.80043 0.47008 0.25410 5.83384 -13.20000 12.44770 70.28113 3.07435 0.47008 0.25427 5.81266 - -13.20000 12.44770 74.26549 3.25716 0.60881 0.25438 5.80002 + -13.20000 12.44770 74.26549 3.25716 0.47008 0.25438 5.80002 -13.34000 13.87430 80.23770 3.53166 0.47008 0.25455 5.78319 -13.48000 15.30090 88.19936 3.89807 0.47008 0.25476 5.76432 -13.62000 16.72750 96.16512 4.26488 0.47008 0.25496 5.74892 @@ -27412,66 +27548,66 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00210 0.00000 78.00210 78.00210 1 99 A + 78.00210 0.00000 78.00210 78.00210 1 100 A 78.00300 0.00000 78.00300 78.00300 302 100 P 78.00420 0.00000 78.00420 78.00420 302 100 P 78.00540 0.00000 78.00540 78.00540 302 100 P 78.00660 0.00000 78.00660 78.00660 302 100 P 78.00750 0.00000 78.00750 78.00750 302 100 P - 39.20495 66.90000 67.75770 5.13449 220 58 2 - 41.20909 67.48860 70.78364 5.36379 220 58 2 - 43.52293 68.07720 74.81822 5.66952 220 58 2 - 45.76066 68.66580 78.85280 5.97525 220 58 2 - 47.92499 69.25440 82.88738 6.28098 220 58 2 - 49.63012 69.84300 85.91332 6.51027 220 58 2 - 10.92411 69.84300 58.91268 10.20938 110 19 1 - 11.14369 70.82400 59.11293 10.49207 110 19 1 - 11.44697 71.80500 59.68298 10.86899 110 19 1 - 11.74098 72.78600 60.47279 11.24591 110 19 1 - 12.02700 73.76700 61.39650 11.62283 110 20 1 - 12.21205 74.74800 62.14672 11.90552 110 20 1 - 12.33244 74.74800 62.62197 12.07702 110 20 1 - 9.50888 75.55242 63.28384 12.30882 110 0 1 - 9.75938 76.35684 64.19160 12.61790 110 0 1 - 10.00077 77.16126 65.12397 12.92697 110 0 1 - 10.23402 77.96568 66.07603 13.23604 110 0 1 - 10.38135 78.77010 66.80032 13.46785 110 0 1 - 14.27093 78.77010 41.96423 13.87022 110 34 1 - 12.85186 82.75110 38.00230 12.27299 110 34 1 - 10.98814 86.73210 32.76132 10.18953 110 34 1 - 9.09699 90.71310 27.56079 8.10607 110 33 1 - 7.18251 94.69410 22.39211 6.02261 110 32 1 - 5.95927 98.67510 18.53171 4.46002 110 32 1 - 22.01691 98.67510 33.91695 2.66599 220 65 2 - 23.77614 100.04850 40.08791 3.16896 220 59 2 - 26.26588 101.42190 48.22754 3.83957 220 54 2 - 28.70516 102.79530 56.28743 4.51019 220 51 2 - 28.01361 104.16870 64.29528 5.18081 110 44 1 - 25.54235 105.54210 70.28113 5.68377 110 36 1 - 25.72517 105.54210 74.26549 7.79545 110 35 1 - 23.27908 106.91550 80.23770 6.52204 110 29 1 - 20.95694 108.28890 88.19936 7.19266 110 24 1 - 19.79430 109.66230 96.16512 7.86328 110 21 1 - 19.03432 111.03570 104.13890 8.53389 110 18 1 - 18.15860 112.40910 110.12540 9.03686 110 16 1 - 18.34235 112.40910 114.11993 9.37216 110 16 1 - 17.45090 113.78250 120.11708 9.87513 110 15 1 - 16.64025 115.15590 128.12204 10.54574 110 13 1 - 15.82236 116.52930 136.13700 11.21636 110 12 1 - 26.05019 117.90270 144.16116 11.88698 110 18 1 - 48.91391 119.27610 150.18457 12.38994 110 33 1 - 49.24922 119.27610 154.20277 12.72525 110 32 1 - 79.92043 120.64950 160.23364 13.22821 110 50 1 - 101.64271 122.02290 168.28022 13.89883 220 60 2 - 122.89925 123.39630 176.33264 14.56945 220 70 2 - 135.16511 124.76970 184.39018 15.24006 220 73 2 - 147.62474 126.14310 190.43620 15.74303 220 78 2 - 147.92041 126.14310 194.46826 16.07834 220 76 2 - 156.83737 127.51650 200.51822 16.58130 220 78 2 - 172.94118 128.88990 208.58766 17.25192 220 83 2 - 189.78652 130.26330 216.66013 17.92253 220 88 2 - 197.63880 131.63670 224.73525 18.59315 220 88 2 - 203.47302 133.01010 230.79307 19.09611 220 88 2 + 39.20880 66.90000 67.75770 5.13449 220 58 2 + 41.21341 67.48860 70.78364 5.36379 220 58 2 + 43.52773 68.07720 74.81822 5.66952 220 58 2 + 45.76595 68.66580 78.85280 5.97525 220 58 2 + 47.93078 69.25440 82.88738 6.28098 220 58 2 + 49.63643 69.84300 85.91332 6.51027 220 58 2 + 10.92531 69.84300 58.91268 10.20938 110 19 1 + 11.14510 70.82400 59.11293 10.49207 110 19 1 + 11.44860 71.80500 59.68298 10.86899 110 19 1 + 11.74285 72.78600 60.47279 11.24591 110 19 1 + 12.02912 73.76700 61.39650 11.62283 110 20 1 + 12.21444 74.74800 62.14672 11.90552 110 20 1 + 12.33484 74.74800 62.62197 12.07702 110 20 1 + 9.51112 75.55242 63.28384 12.30882 110 0 1 + 9.76180 76.35684 64.19160 12.61790 110 0 1 + 10.00337 77.16126 65.12397 12.92697 110 0 1 + 10.23681 77.96568 66.07603 13.23604 110 0 1 + 10.38434 78.77010 66.80032 13.46785 110 0 1 + 14.27736 78.77010 41.96423 13.83559 110 34 1 + 12.85881 82.75110 38.00230 12.27299 110 34 1 + 10.99562 86.73210 32.76132 10.18953 110 34 1 + 9.10502 90.71310 27.56079 8.10607 110 33 1 + 7.19111 94.69410 22.39211 6.02261 110 32 1 + 5.96845 98.67510 18.53171 4.46002 110 32 1 + 22.03067 98.67510 33.91695 2.66599 220 65 2 + 23.79116 100.04850 40.08791 3.16896 220 59 2 + 26.28219 101.42190 48.22754 3.83957 220 54 2 + 28.72278 102.79530 56.28743 4.51019 220 51 2 + 28.08952 104.16870 64.29528 5.18081 110 44 1 + 25.62377 105.54210 70.28113 5.68377 110 36 1 + 25.80658 105.54210 74.26549 6.01908 110 35 1 + 23.36607 106.91550 80.23770 6.52204 110 29 1 + 21.04956 108.28890 88.19936 7.19266 110 24 1 + 19.79933 109.66230 96.16512 7.86328 110 21 1 + 19.03911 111.03570 104.13890 8.53389 110 18 1 + 18.16316 112.40910 110.12540 9.03686 110 16 1 + 18.34690 112.40910 114.11993 9.37216 110 16 1 + 17.45519 113.78250 120.11708 9.87513 110 15 1 + 16.64427 115.15590 128.12204 10.54574 110 13 1 + 15.82611 116.52930 136.13700 11.21636 110 12 1 + 26.13448 117.90270 144.16116 11.88698 110 18 1 + 49.02347 119.27610 150.18457 12.38994 110 33 1 + 49.35878 119.27610 154.20277 12.72525 110 32 1 + 79.64497 120.64950 160.23364 13.22821 110 50 1 + 101.58591 122.02290 168.28022 13.89883 220 60 2 + 122.85381 123.39630 176.33264 14.56945 220 70 2 + 135.21586 124.76970 184.39018 15.24006 220 73 2 + 147.68102 126.14310 190.43620 15.74303 220 78 2 + 149.28035 126.14310 194.46826 16.07834 220 77 2 + 156.89913 127.51650 200.51822 16.58130 220 78 2 + 173.49721 128.88990 208.58766 17.25192 220 83 2 + 189.82383 130.26330 216.66013 17.92253 220 88 2 + 197.67659 131.63670 224.73525 18.59315 220 88 2 + 203.51130 133.01010 230.79307 19.09611 220 88 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -27485,10 +27621,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 13.370 'Grind' - -11.09 9.963 'Hydrobiaklei' - -12.00 5.023 'Basisveen' - -12.50 248.655 'Eerste zandlaag' + -10.79 13.372 'Grind' + -11.09 9.965 'Hydrobiaklei' + -12.00 5.027 'Basisveen' + -12.50 248.893 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -27507,7 +27643,7 @@ Layer name -10.79 5.40 'Grind' -11.09 2.12 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 95.45 'Eerste zandlaag' + -12.50 95.54 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -27742,10 +27878,10 @@ PartialFactorSet=6 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 15.17 : Percentage mobilized resistance left - 15.22 : Percentage mobilized resistance right - 272.08 : Effective left - 272.08 : Effective right + 15.10 : Percentage mobilized resistance left + 15.16 : Percentage mobilized resistance right + 270.98 : Effective left + 270.98 : Effective right 1089.18 : Water pressure left 1089.18 : Water pressure right 1794.02 : Max effective resistance left @@ -27754,8 +27890,8 @@ PartialFactorSet=6 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 65.73 : Vertical force left - 65.73 : Vertical force right + 65.36 : Vertical force left + 65.36 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 0.50 : Level of single support @@ -27764,10 +27900,10 @@ PartialFactorSet=6 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --65.73 : Active force -65.73 : Passive force --65.73 : Plugged active force -65.73 : Plugged passive force +-65.36 : Active force +65.36 : Passive force +-65.36 : Plugged active force +65.36 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance @@ -27787,210 +27923,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.01149 - 0.00000 0.00000 0.01134 - 0.00000 0.00000 0.01120 - 0.00000 0.00000 0.01105 - 0.00000 0.00000 0.01091 - 0.00000 0.00000 0.01076 - 0.00000 0.00000 0.01076 - 0.00000 0.00000 0.01062 - 0.00000 0.00000 0.01047 - 0.00000 0.00000 0.01033 - 0.00000 0.00000 0.01018 - 0.00000 0.00000 0.01004 - 0.00000 0.00000 0.01004 - 0.00000 0.00000 0.00985 - 0.00000 0.00000 0.00965 - 0.00000 0.00000 0.00946 - 0.00000 0.00000 0.00927 - 0.00000 0.00000 0.00907 - 0.00000 0.00000 0.00907 - 0.00000 0.00000 0.00891 - 0.00000 0.00000 0.00875 - 0.00000 0.00000 0.00859 - 0.00000 0.00000 0.00843 - 0.00000 0.00000 0.00827 - 0.00000 0.00000 0.00827 - 0.00000 0.00000 0.00811 - 0.00000 0.00000 0.00795 - 0.00000 0.00000 0.00779 - 0.00000 0.00000 0.00763 - 0.00000 0.00000 0.00747 - 0.00000 0.00000 0.00747 - 0.00000 0.00000 0.00733 - 0.00000 0.00000 0.00719 - 0.00000 0.00000 0.00705 - 0.00000 0.00000 0.00691 - 0.00000 0.00000 0.00677 - 0.00000 0.00000 0.00677 - 0.00000 0.00000 0.00659 - 0.00000 0.00000 0.00641 - 0.00000 0.00000 0.00623 - 0.00000 0.00000 0.00604 - 0.00000 0.00000 0.00586 - 0.00000 0.00000 0.00586 - 0.00000 0.00000 0.00584 - 0.00000 0.00000 0.00582 - 0.00000 0.00000 0.00580 + 0.00000 0.00000 0.01144 + 0.00000 0.00000 0.01129 + 0.00000 0.00000 0.01115 + 0.00000 0.00000 0.01100 + 0.00000 0.00000 0.01086 + 0.00000 0.00000 0.01071 + 0.00000 0.00000 0.01071 + 0.00000 0.00000 0.01057 + 0.00000 0.00000 0.01042 + 0.00000 0.00000 0.01028 + 0.00000 0.00000 0.01013 + 0.00000 0.00000 0.00999 + 0.00000 0.00000 0.00999 + 0.00000 0.00000 0.00980 + 0.00000 0.00000 0.00960 + 0.00000 0.00000 0.00941 + 0.00000 0.00000 0.00922 + 0.00000 0.00000 0.00902 + 0.00000 0.00000 0.00902 + 0.00000 0.00000 0.00886 + 0.00000 0.00000 0.00870 + 0.00000 0.00000 0.00854 + 0.00000 0.00000 0.00838 + 0.00000 0.00000 0.00822 + 0.00000 0.00000 0.00822 + 0.00000 0.00000 0.00806 + 0.00000 0.00000 0.00790 + 0.00000 0.00000 0.00774 + 0.00000 0.00000 0.00758 + 0.00000 0.00000 0.00742 + 0.00000 0.00000 0.00742 + 0.00000 0.00000 0.00728 + 0.00000 0.00000 0.00714 + 0.00000 0.00000 0.00700 + 0.00000 0.00000 0.00686 + 0.00000 0.00000 0.00673 + 0.00000 0.00000 0.00673 + 0.00000 0.00000 0.00654 + 0.00000 0.00000 0.00636 + 0.00000 0.00000 0.00618 + 0.00000 0.00000 0.00599 + 0.00000 0.00000 0.00581 + 0.00000 0.00000 0.00581 0.00000 0.00000 0.00579 0.00000 0.00000 0.00577 - 0.00000 0.00000 0.00577 - 0.00000 0.00000 0.00566 - 0.00000 0.00000 0.00555 - 0.00000 0.00000 0.00544 - 0.00000 0.00000 0.00533 - 0.00000 0.00000 0.00522 - 0.00000 0.00000 0.00522 - 0.00000 0.00000 0.00518 - 0.00000 0.00000 0.00515 - 0.00000 0.00000 0.00512 - 0.00000 0.00000 0.00509 - 0.00000 0.00000 0.00505 - 0.00000 0.00000 0.00505 - -0.00002 -0.00073 0.00493 - -0.00016 -0.00311 0.00480 - -0.00057 -0.00736 0.00467 - -0.00139 -0.01347 0.00454 - -0.00276 -0.02120 0.00441 - -0.00276 -0.02120 0.00441 - -0.00320 -0.02224 0.00438 - -0.00365 -0.02206 0.00435 - -0.00409 -0.02189 0.00432 - -0.00452 -0.02172 0.00428 - -0.00496 -0.02161 0.00425 - -0.00496 -0.02161 0.00425 - -0.00698 -0.01933 0.00409 - -0.00887 -0.01852 0.00393 - -0.01068 -0.01775 0.00378 - -0.01242 -0.01701 0.00362 - -0.01410 -0.01655 0.00347 - -0.01410 -0.01655 0.00347 - -0.01570 -0.01563 0.00331 - -0.01723 -0.01498 0.00316 - -0.01870 -0.01436 0.00301 - -0.02010 -0.01378 0.00287 - -0.02146 -0.01335 0.00272 - -0.02146 -0.01335 0.00272 - -0.02325 -0.01236 0.00253 - -0.02493 -0.01168 0.00233 - -0.02652 -0.01105 0.00215 - -0.02803 -0.01047 0.00197 - -0.02946 -0.01010 0.00180 - -0.02946 -0.01010 0.00180 - -0.03035 -0.00475 0.00165 - -0.03086 -0.00311 0.00150 - -0.03117 -0.00162 0.00136 - -0.03129 -0.00028 0.00123 - -0.03126 0.00061 0.00110 - -0.03126 0.00061 0.00110 - -0.03108 0.00201 0.00098 - -0.03075 0.00297 0.00087 - -0.03031 0.00382 0.00076 - -0.02976 0.00456 0.00066 - -0.02914 0.00503 0.00057 - -0.02914 0.00503 0.00057 - -0.02830 0.00613 0.00047 - -0.02732 0.00689 0.00038 - -0.02624 0.00748 0.00029 - -0.02509 0.00794 0.00021 - -0.02388 0.00815 0.00014 - -0.02388 0.00815 0.00014 - -0.02264 0.00845 0.00008 - -0.02137 0.00854 0.00002 - -0.02009 0.00854 -0.00003 - -0.01882 0.00845 -0.00007 - -0.01757 0.00820 -0.00011 - -0.01757 0.00820 -0.00011 - -0.01635 0.00804 -0.00015 - -0.01517 0.00774 -0.00018 - -0.01404 0.00740 -0.00021 - -0.01296 0.00701 -0.00023 - -0.01195 0.00652 -0.00025 - -0.01195 0.00652 -0.00025 - -0.01100 0.00613 -0.00026 - -0.01012 0.00565 -0.00027 - -0.00932 0.00515 -0.00028 - -0.00858 0.00463 -0.00029 - -0.00793 0.00406 -0.00029 - -0.00793 0.00405 -0.00029 - -0.00793 0.00405 -0.00029 - -0.00792 0.00404 -0.00029 - -0.00791 0.00403 -0.00029 - -0.00790 0.00403 -0.00029 - -0.00789 0.00402 -0.00029 - -0.00789 0.00402 -0.00029 - -0.00789 0.00402 -0.00029 - -0.00788 0.00402 -0.00029 - -0.00787 0.00402 -0.00029 - -0.00786 0.00401 -0.00029 - -0.00785 0.00401 -0.00029 - -0.00785 0.00401 -0.00029 - -0.00771 0.00399 -0.00030 - -0.00757 0.00397 -0.00030 - -0.00742 0.00395 -0.00030 - -0.00728 0.00393 -0.00030 - -0.00714 0.00391 -0.00030 - -0.00714 0.00391 -0.00030 - -0.00667 0.00386 -0.00030 - -0.00621 0.00379 -0.00029 - -0.00576 0.00372 -0.00029 - -0.00532 0.00365 -0.00029 - -0.00489 0.00356 -0.00028 - -0.00489 0.00356 -0.00028 - -0.00467 0.00353 -0.00028 - -0.00446 0.00350 -0.00028 - -0.00425 0.00346 -0.00027 - -0.00405 0.00343 -0.00027 - -0.00384 0.00339 -0.00027 - -0.00384 0.00339 -0.00027 - -0.00351 0.00336 -0.00026 - -0.00317 0.00331 -0.00025 - -0.00284 0.00326 -0.00025 - -0.00252 0.00321 -0.00024 - -0.00220 0.00314 -0.00023 - -0.00220 0.00314 -0.00023 - -0.00195 0.00312 -0.00023 - -0.00169 0.00308 -0.00022 - -0.00144 0.00305 -0.00021 - -0.00119 0.00301 -0.00021 - -0.00095 0.00297 -0.00020 - -0.00095 0.00297 -0.00020 - -0.00065 0.00298 -0.00019 - -0.00035 0.00291 -0.00018 - -0.00007 0.00283 -0.00017 - 0.00021 0.00277 -0.00016 - 0.00048 0.00263 -0.00015 - 0.00048 0.00263 -0.00015 - 0.00082 0.00218 -0.00014 - 0.00109 0.00173 -0.00013 - 0.00131 0.00131 -0.00012 - 0.00146 0.00093 -0.00011 - 0.00157 0.00057 -0.00010 - 0.00157 0.00057 -0.00010 - 0.00163 0.00029 -0.00008 - 0.00165 0.00003 -0.00007 - 0.00164 -0.00020 -0.00006 - 0.00160 -0.00040 -0.00005 - 0.00153 -0.00059 -0.00005 - 0.00153 -0.00059 -0.00005 - 0.00144 -0.00071 -0.00004 - 0.00133 -0.00082 -0.00003 - 0.00121 -0.00090 -0.00002 - 0.00108 -0.00095 -0.00001 - 0.00094 -0.00100 0.00000 - 0.00094 -0.00100 0.00000 - 0.00080 -0.00098 0.00000 - 0.00067 -0.00096 0.00001 - 0.00053 -0.00092 0.00002 - 0.00041 -0.00085 0.00002 - 0.00029 -0.00078 0.00003 - 0.00029 -0.00078 0.00003 - 0.00019 -0.00065 0.00004 - 0.00011 -0.00052 0.00004 - 0.00005 -0.00036 0.00005 - 0.00001 -0.00018 0.00006 - 0.00000 0.00000 0.00006 + 0.00000 0.00000 0.00575 + 0.00000 0.00000 0.00574 + 0.00000 0.00000 0.00572 + 0.00000 0.00000 0.00572 + 0.00000 0.00000 0.00561 + 0.00000 0.00000 0.00550 + 0.00000 0.00000 0.00539 + 0.00000 0.00000 0.00528 + 0.00000 0.00000 0.00517 + 0.00000 0.00000 0.00517 + 0.00000 0.00000 0.00513 + 0.00000 0.00000 0.00510 + 0.00000 0.00000 0.00507 + 0.00000 0.00000 0.00504 + 0.00000 0.00000 0.00501 + 0.00000 0.00000 0.00501 + -0.00002 -0.00073 0.00488 + -0.00016 -0.00312 0.00475 + -0.00057 -0.00737 0.00462 + -0.00139 -0.01348 0.00449 + -0.00277 -0.02122 0.00436 + -0.00277 -0.02122 0.00436 + -0.00321 -0.02226 0.00433 + -0.00365 -0.02209 0.00430 + -0.00409 -0.02191 0.00427 + -0.00453 -0.02174 0.00423 + -0.00496 -0.02163 0.00420 + -0.00496 -0.02163 0.00420 + -0.00699 -0.01936 0.00404 + -0.00888 -0.01857 0.00388 + -0.01070 -0.01781 0.00373 + -0.01245 -0.01708 0.00357 + -0.01413 -0.01662 0.00342 + -0.01413 -0.01662 0.00342 + -0.01574 -0.01571 0.00326 + -0.01728 -0.01508 0.00311 + -0.01876 -0.01447 0.00296 + -0.02017 -0.01389 0.00282 + -0.02154 -0.01347 0.00267 + -0.02154 -0.01347 0.00267 + -0.02335 -0.01249 0.00248 + -0.02505 -0.01183 0.00229 + -0.02666 -0.01121 0.00210 + -0.02819 -0.01065 0.00192 + -0.02966 -0.01029 0.00175 + -0.02966 -0.01030 0.00175 + -0.03054 -0.00464 0.00160 + -0.03104 -0.00305 0.00145 + -0.03134 -0.00161 0.00131 + -0.03146 -0.00031 0.00118 + -0.03144 0.00053 0.00106 + -0.03144 0.00053 0.00106 + -0.03127 0.00188 0.00094 + -0.03097 0.00280 0.00082 + -0.03055 0.00360 0.00072 + -0.03004 0.00429 0.00062 + -0.02945 0.00472 0.00052 + -0.02945 0.00471 0.00052 + -0.02854 0.00696 0.00042 + -0.02745 0.00764 0.00033 + -0.02626 0.00816 0.00025 + -0.02501 0.00854 0.00017 + -0.02372 0.00869 0.00010 + -0.02372 0.00869 0.00010 + -0.02240 0.00892 0.00004 + -0.02106 0.00894 -0.00001 + -0.01973 0.00887 -0.00006 + -0.01841 0.00872 -0.00011 + -0.01713 0.00841 -0.00015 + -0.01713 0.00840 -0.00015 + -0.01589 0.00818 -0.00018 + -0.01469 0.00782 -0.00021 + -0.01355 0.00742 -0.00024 + -0.01248 0.00697 -0.00026 + -0.01147 0.00641 -0.00028 + -0.01147 0.00641 -0.00028 + -0.01055 0.00596 -0.00030 + -0.00970 0.00541 -0.00031 + -0.00893 0.00485 -0.00032 + -0.00825 0.00427 -0.00033 + -0.00766 0.00362 -0.00033 + -0.00766 0.00362 -0.00033 + -0.00765 0.00362 -0.00033 + -0.00764 0.00361 -0.00033 + -0.00764 0.00360 -0.00033 + -0.00763 0.00359 -0.00033 + -0.00762 0.00358 -0.00033 + -0.00762 0.00358 -0.00033 + -0.00761 0.00357 -0.00033 + -0.00761 0.00356 -0.00033 + -0.00760 0.00356 -0.00033 + -0.00759 0.00356 -0.00033 + -0.00759 0.00356 -0.00033 + -0.00759 0.00356 -0.00033 + -0.00746 0.00354 -0.00033 + -0.00733 0.00351 -0.00033 + -0.00721 0.00349 -0.00033 + -0.00708 0.00347 -0.00033 + -0.00696 0.00344 -0.00034 + -0.00696 0.00344 -0.00034 + -0.00655 0.00339 -0.00034 + -0.00614 0.00331 -0.00033 + -0.00575 0.00323 -0.00033 + -0.00537 0.00315 -0.00033 + -0.00500 0.00304 -0.00033 + -0.00500 0.00304 -0.00033 + -0.00482 0.00301 -0.00032 + -0.00464 0.00297 -0.00032 + -0.00446 0.00293 -0.00032 + -0.00428 0.00290 -0.00031 + -0.00411 0.00285 -0.00031 + -0.00411 0.00285 -0.00031 + -0.00383 0.00281 -0.00031 + -0.00355 0.00275 -0.00030 + -0.00328 0.00269 -0.00029 + -0.00301 0.00263 -0.00029 + -0.00275 0.00256 -0.00028 + -0.00275 0.00256 -0.00028 + -0.00255 0.00252 -0.00027 + -0.00234 0.00248 -0.00027 + -0.00214 0.00243 -0.00026 + -0.00194 0.00239 -0.00025 + -0.00175 0.00234 -0.00025 + -0.00175 0.00234 -0.00025 + -0.00153 0.00206 -0.00024 + -0.00133 0.00197 -0.00023 + -0.00114 0.00188 -0.00022 + -0.00095 0.00179 -0.00021 + -0.00078 0.00164 -0.00020 + -0.00078 0.00164 -0.00020 + -0.00035 0.00363 -0.00019 + 0.00012 0.00303 -0.00017 + 0.00050 0.00248 -0.00016 + 0.00081 0.00197 -0.00015 + 0.00105 0.00147 -0.00013 + 0.00105 0.00147 -0.00013 + 0.00123 0.00108 -0.00012 + 0.00136 0.00070 -0.00011 + 0.00143 0.00036 -0.00009 + 0.00146 0.00006 -0.00008 + 0.00145 -0.00022 -0.00007 + 0.00145 -0.00022 -0.00007 + 0.00140 -0.00041 -0.00006 + 0.00133 -0.00060 -0.00005 + 0.00124 -0.00074 -0.00004 + 0.00113 -0.00085 -0.00003 + 0.00100 -0.00095 -0.00002 + 0.00100 -0.00095 -0.00002 + 0.00086 -0.00098 -0.00001 + 0.00073 -0.00099 0.00000 + 0.00059 -0.00097 0.00001 + 0.00046 -0.00092 0.00002 + 0.00033 -0.00086 0.00003 + 0.00033 -0.00086 0.00003 + 0.00022 -0.00073 0.00004 + 0.00013 -0.00058 0.00005 + 0.00006 -0.00041 0.00006 + 0.00001 -0.00021 0.00006 + 0.00000 0.00000 0.00007 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -28286,7 +28422,7 @@ Lambda passive -5.42000 0.59280 2.88652 0.00000 0.93623 0.00000 4.86930 -5.56000 0.64740 2.97008 0.00000 0.91978 0.00000 4.58770 -5.70000 0.70200 3.03274 0.00000 0.90589 0.00000 4.40582 - -5.70000 0.70200 15.37646 0.00000 0.90589 0.00000 14.86115 + -5.70000 0.70200 15.37646 0.00000 0.87091 0.00000 14.86115 -5.83000 2.03270 17.23524 0.00000 0.75296 0.00000 8.47899 -5.96000 3.36340 19.84392 0.00000 0.73173 0.00000 5.89996 -6.09000 4.69410 22.50054 0.00000 0.72253 0.00000 4.79337 @@ -28298,7 +28434,7 @@ Lambda passive -6.74000 11.34760 35.90274 0.00000 0.70891 0.00000 3.16391 -6.87000 12.67830 38.58714 0.00000 0.70790 0.00000 3.04356 -7.00000 14.00900 40.60043 0.00000 0.70708 0.00000 2.96867 - -7.00000 14.00900 43.47250 0.00000 0.70708 0.00000 3.03841 + -7.00000 14.00900 43.47250 0.00000 0.60214 0.00000 3.03841 -7.14950 15.20350 45.67781 0.00000 0.58331 0.00000 3.00443 -7.29900 16.39801 48.76956 0.00000 0.58287 0.00000 2.97411 -7.44850 17.59251 51.97043 0.00000 0.58250 0.00000 2.95412 @@ -28328,7 +28464,7 @@ Lambda passive -9.99600 37.94704 109.91880 15.85798 0.57976 0.41790 2.89664 -9.99800 37.96302 109.96490 15.86466 0.57975 0.41790 2.89663 -10.00000 37.97900 109.99947 15.86968 0.57975 0.41790 2.89663 - -10.00000 37.97900 90.48681 14.90486 0.57975 0.39242 2.38238 + -10.00000 37.97900 90.48681 14.90486 0.68469 0.39242 2.38238 -10.00200 37.98978 90.50251 14.90926 0.70217 0.39245 2.38229 -10.00400 38.00056 90.52342 14.91512 0.70216 0.39250 2.38216 -10.00600 38.01134 90.54434 14.92098 0.70216 0.39254 2.38203 @@ -28364,13 +28500,13 @@ Lambda passive -11.83600 47.87504 109.95726 20.27247 0.70157 0.42345 2.29676 -11.91800 48.31702 110.83521 20.51200 0.70155 0.42453 2.29392 -12.00000 48.75900 111.49395 20.69165 0.70153 0.42533 2.29183 - -12.00000 48.75900 84.60589 29.13338 0.70153 0.58789 1.70727 + -12.00000 48.75900 84.60589 29.13338 0.73651 0.58789 1.70727 -12.10000 51.94800 88.36985 30.69615 0.74341 0.59090 1.70112 -12.20000 55.13700 93.38137 32.77988 0.74328 0.59452 1.69362 -12.30000 58.32600 98.38441 34.86368 0.74316 0.59774 1.68680 -12.40000 61.51500 103.37904 36.94752 0.74306 0.60063 1.68055 -12.50000 64.70400 107.11982 38.51044 0.74297 0.60260 1.67619 - -12.50000 64.70400 301.97263 20.83350 0.74297 0.32022 4.64140 + -12.50000 64.70400 301.97263 20.83350 0.50543 0.32022 4.64140 -12.64000 66.13060 302.83782 21.19431 0.47119 0.32049 4.57939 -12.78000 67.55720 305.57755 21.67396 0.47117 0.32082 4.52324 -12.92000 68.98380 309.41571 22.15208 0.47114 0.32112 4.48534 @@ -28483,143 +28619,143 @@ Status character 0.00000 33.55020 0.00000 0.00000 -1 0 - 0.00000 34.33500 0.00000 0.00000 -1 0 - 0.00002 34.33500 0.00002 0.00002 302 100 P - 0.12579 34.53120 1.99126 0.12141 110 6 1 - 0.13153 34.72740 2.00320 0.12719 110 7 1 - 0.13728 34.92360 2.01513 0.13297 110 7 1 - 0.14303 35.11980 2.02707 0.13875 110 7 1 - 0.14156 35.31600 2.03602 0.13730 110 7 1 - 0.18491 35.31600 2.05393 0.18066 110 9 1 - 0.17753 36.29700 2.09869 0.17344 110 8 1 - 0.20628 37.27800 2.15837 0.20234 110 10 1 - 0.23502 38.25900 2.21806 0.23125 110 11 1 - 0.26377 39.24000 2.27774 0.26015 110 12 1 - 0.28048 40.22100 2.32250 0.27702 110 12 1 - 0.30457 40.22100 2.35235 0.30110 110 13 1 - 0.32128 41.20200 2.39711 0.31797 110 13 1 - 0.35003 42.18300 2.45679 0.34687 110 14 1 - 0.37879 43.16400 2.51648 0.37578 110 15 1 - 0.40755 44.14500 2.57616 0.40468 110 16 1 - 0.42646 45.12600 2.62092 0.42374 110 16 1 - 0.45011 45.12600 2.65673 0.44739 110 17 1 - 0.47658 46.49940 2.71940 0.47406 110 18 1 - 0.51686 47.87280 2.80296 0.51453 110 18 1 - 0.55715 49.24620 2.88652 0.55500 110 19 1 - 0.59744 50.61960 2.97008 0.59546 110 20 1 - 0.62537 51.99300 3.03274 0.62357 110 21 1 - 0.94450 51.99300 15.37646 0.93730 110 6 1 - 1.53713 52.76830 17.23524 1.53055 110 9 1 - 2.46710 53.54360 19.84392 2.46110 110 12 1 - 3.39709 54.31890 22.50054 3.39165 110 15 1 - 4.32711 55.09420 25.17328 4.32220 110 17 1 - 5.01958 55.86950 27.18230 5.01518 110 18 1 - 5.49472 55.86950 28.52292 5.49032 110 19 1 - 6.18722 56.64480 30.53490 6.18330 110 20 1 - 7.11732 57.42010 33.21854 7.11385 110 21 1 - 8.04745 58.19540 35.90274 8.04440 110 22 1 - 8.97760 58.97070 38.58714 8.97495 110 23 1 - 9.67254 59.74600 40.60043 9.67027 110 24 1 - 10.12006 59.74600 43.47250 10.11666 110 23 1 - 8.87110 61.21260 45.67781 8.86830 110 19 1 - 9.56023 62.67919 48.76956 9.55798 110 20 1 - 10.24941 64.14579 51.97043 10.24767 110 20 1 - 10.93863 65.61238 55.23823 10.93735 110 20 1 - 11.45413 67.07898 57.71808 11.45327 110 20 1 - 11.80167 67.07898 59.38300 11.80081 110 20 1 - 12.31720 68.54557 61.89404 12.31672 110 20 1 - 13.00655 70.01217 65.26028 13.00641 110 20 1 - 13.69593 71.47876 68.64357 13.69610 110 0 1 - 14.38534 72.94536 72.03991 14.38578 110 0 1 - 14.90133 74.41195 74.59372 14.90201 110 0 1 - 15.24824 74.41195 76.29918 15.24892 110 0 1 - 15.76426 75.87855 78.86107 15.76515 110 0 1 - 16.45376 77.34514 82.28217 16.45484 110 0 1 - 17.14329 78.81174 85.70853 17.14452 110 0 1 - 17.83284 80.27833 89.13919 17.83421 110 0 1 - 18.34915 81.74492 91.71446 18.35063 110 0 1 - 18.69568 81.74492 93.43236 18.69716 110 0 1 - 19.21201 83.21152 96.01059 19.21358 110 0 1 - 19.90162 84.67811 99.45024 19.90326 110 0 1 - 20.59125 86.14471 102.89199 20.59295 110 0 1 - 21.28089 87.61131 106.33552 21.28263 110 0 1 - 21.79742 89.07790 108.91913 21.79919 110 0 1 - 21.97287 89.07790 109.79205 21.97464 110 0 1 - 21.97978 89.09752 109.82659 21.98155 110 0 1 - 21.98901 89.11714 109.87269 21.99077 110 0 1 - 21.99823 89.13676 109.91880 22.00000 110 0 1 - 22.00746 89.15638 109.96490 22.00923 110 0 1 - 22.01437 89.17600 109.99947 22.01614 110 0 1 - 22.01972 89.17600 90.48681 22.02002 110 0 1 - 26.67483 89.19562 90.50251 26.67512 110 0 1 - 26.68237 89.21524 90.52342 26.68266 110 0 1 - 26.68991 89.23486 90.54434 26.69020 110 0 1 - 26.69744 89.25448 90.56527 26.69774 110 0 1 - 26.70309 89.27410 90.58097 26.70338 110 0 1 - 26.73904 89.27410 90.68041 26.73934 110 0 1 - 26.84067 89.62726 90.96313 26.84097 110 0 1 - 26.97636 89.98042 91.34033 26.97666 110 0 1 - 27.11205 90.33358 91.71782 27.11235 110 0 1 - 27.24774 90.68674 92.09558 27.24804 110 0 1 - 27.34938 91.03990 92.37907 27.34967 110 0 1 - 27.49696 91.03990 92.78886 27.49726 110 0 1 - 27.83574 92.21710 93.73569 27.83604 110 0 1 - 28.28804 93.39430 95.00032 28.28834 110 0 1 - 28.74035 94.57150 96.26741 28.74064 110 0 1 - 29.19266 95.74870 97.53673 29.19295 110 0 1 - 29.53147 96.92590 98.49003 29.53176 110 0 1 - 29.70171 96.92590 98.96711 29.70200 110 0 1 - 29.87112 97.51450 99.44448 29.87140 110 0 1 - 30.09727 98.10310 100.08135 30.09755 110 0 1 - 30.32343 98.69170 100.71867 30.32370 110 0 1 - 30.54958 99.28030 101.35640 30.54986 110 0 1 - 30.71900 99.86890 101.83496 30.71927 110 0 1 - 30.87031 99.86890 102.26055 30.87057 110 0 1 - 31.15267 100.84990 103.05900 31.15293 110 0 1 - 31.52959 101.83090 104.12445 31.52985 110 0 1 - 31.90652 102.81190 105.19085 31.90677 110 0 1 - 32.28345 103.79290 106.25815 32.28369 110 0 1 - 32.56583 104.77390 107.05917 32.56606 110 0 1 - 32.73790 104.77390 107.54535 32.73813 110 0 1 - 32.96945 105.57832 108.20278 32.96968 110 0 1 - 33.27853 106.38274 109.07977 33.27875 110 0 1 - 33.58762 107.18716 109.95726 33.58783 110 0 1 - 33.89670 107.99158 110.83521 33.89690 110 0 1 - 34.12826 108.79600 111.49395 34.12846 110 0 1 - 34.76488 108.79600 84.60589 34.76527 110 0 1 - 38.61811 106.77700 88.36985 38.61849 110 0 1 - 40.98176 104.75800 93.38137 40.98212 110 0 1 - 43.34540 102.73900 98.38441 43.34574 110 0 1 - 45.70905 100.72000 103.37904 45.70937 110 0 1 - 47.48036 98.70100 107.11982 47.48067 110 0 1 - 48.33613 98.70100 301.97263 48.33798 110 0 1 - 31.15835 100.07440 302.83782 31.16005 110 0 1 - 31.82912 101.44780 305.57755 31.83067 110 0 1 - 32.49987 102.82120 309.41571 32.50129 110 0 1 - 33.17063 104.19460 313.90116 33.17191 110 0 1 - 33.67336 105.56800 317.53717 33.67450 110 0 1 - 34.00940 105.56800 320.06841 34.01054 110 0 1 - 34.51213 106.94140 323.98844 34.51314 110 0 1 - 35.18287 108.31480 329.37657 35.18376 110 0 1 - 35.85361 109.68820 334.91397 35.85437 110 0 1 - 36.52434 111.06160 340.56440 36.52499 110 0 1 - 37.02708 112.43500 344.85850 37.02762 110 0 1 - 37.36305 112.43500 347.74620 37.36359 110 0 1 - 37.86579 113.80840 352.10929 37.86623 110 0 1 - 38.53650 115.18180 357.97148 38.53684 110 0 1 - 39.20722 116.55520 363.87852 39.20746 110 0 1 - 39.87793 117.92860 369.82241 39.87808 110 0 1 - 40.38068 119.30200 374.29985 40.38074 110 0 1 - 40.71660 119.30200 377.29390 40.71665 110 0 1 - 41.21934 120.67540 381.79696 41.21931 110 11 1 - 41.89004 122.04880 387.81867 41.88993 110 11 1 - 42.56074 123.42220 393.85880 42.56055 110 11 1 - 43.23144 124.79560 399.91470 43.23116 110 11 1 - 43.73421 126.16900 404.46527 43.73385 110 11 1 - 44.07008 126.16900 407.50312 44.06971 110 11 1 - 44.57284 127.54240 412.06549 44.57240 110 11 1 - 45.24353 128.91580 418.15704 45.24301 110 11 1 - 45.91423 130.28920 424.25761 45.91363 110 11 1 - 46.58493 131.66260 430.36609 46.58425 110 11 1 - 47.08771 133.03600 434.95188 47.08695 110 11 1 + 0.12574 34.53120 1.99126 0.12141 110 6 1 + 0.13149 34.72740 2.00320 0.12719 110 7 1 + 0.13723 34.92360 2.01513 0.13297 110 7 1 + 0.14298 35.11980 2.02707 0.13875 110 7 1 + 0.14151 35.31600 2.03602 0.13730 110 7 1 + 0.18487 35.31600 2.05393 0.18066 110 9 1 + 0.17748 36.29700 2.09869 0.17344 110 8 1 + 0.20623 37.27800 2.15837 0.20234 110 10 1 + 0.23498 38.25900 2.21806 0.23125 110 11 1 + 0.26373 39.24000 2.27774 0.26015 110 12 1 + 0.28043 40.22100 2.32250 0.27702 110 12 1 + 0.30452 40.22100 2.35235 0.30110 110 13 1 + 0.32123 41.20200 2.39711 0.31797 110 13 1 + 0.34999 42.18300 2.45679 0.34687 110 14 1 + 0.37874 43.16400 2.51648 0.37578 110 15 1 + 0.40750 44.14500 2.57616 0.40468 110 16 1 + 0.42641 45.12600 2.62092 0.42374 110 16 1 + 0.45006 45.12600 2.65673 0.44739 110 17 1 + 0.47654 46.49940 2.71940 0.47406 110 18 1 + 0.51681 47.87280 2.80296 0.51453 110 18 1 + 0.55710 49.24620 2.88652 0.55500 110 19 1 + 0.59739 50.61960 2.97008 0.59546 110 20 1 + 0.62532 51.99300 3.03274 0.62357 110 21 1 + 0.90811 51.99300 15.37646 0.90111 110 6 1 + 1.53694 52.76830 17.23524 1.53055 110 9 1 + 2.46691 53.54360 19.84392 2.46110 110 12 1 + 3.39690 54.31890 22.50054 3.39165 110 15 1 + 4.32692 55.09420 25.17328 4.32220 110 17 1 + 5.01940 55.86950 27.18230 5.01518 110 18 1 + 5.49454 55.86950 28.52292 5.49032 110 19 1 + 6.18704 56.64480 30.53490 6.18330 110 20 1 + 7.11714 57.42010 33.21854 7.11385 110 21 1 + 8.04727 58.19540 35.90274 8.04440 110 22 1 + 8.97742 58.97070 38.58714 8.97495 110 23 1 + 9.67237 59.74600 40.60043 9.67027 110 24 1 + 8.61836 59.74600 43.47250 8.61522 110 20 1 + 8.87085 61.21260 45.67781 8.86830 110 19 1 + 9.55998 62.67919 48.76956 9.55798 110 20 1 + 10.24917 64.14579 51.97043 10.24767 110 20 1 + 10.93839 65.61238 55.23823 10.93735 110 20 1 + 11.45390 67.07898 57.71808 11.45327 110 20 1 + 11.80143 67.07898 59.38300 11.80081 110 20 1 + 12.31697 68.54557 61.89404 12.31672 110 20 1 + 13.00632 70.01217 65.26028 13.00641 110 0 1 + 13.69571 71.47876 68.64357 13.69610 110 0 1 + 14.38512 72.94536 72.03991 14.38578 110 0 1 + 14.90111 74.41195 74.59372 14.90201 110 0 1 + 15.24803 74.41195 76.29918 15.24892 110 0 1 + 15.76405 75.87855 78.86107 15.76515 110 0 1 + 16.45355 77.34514 82.28217 16.45484 110 0 1 + 17.14308 78.81174 85.70853 17.14452 110 0 1 + 17.83263 80.27833 89.13919 17.83421 110 0 1 + 18.34894 81.74492 91.71446 18.35063 110 0 1 + 18.69547 81.74492 93.43236 18.69716 110 0 1 + 19.21180 83.21152 96.01059 19.21358 110 0 1 + 19.90141 84.67811 99.45024 19.90326 110 0 1 + 20.59103 86.14471 102.89199 20.59295 110 0 1 + 21.28067 87.61131 106.33552 21.28263 110 0 1 + 21.79720 89.07790 108.91913 21.79919 110 0 1 + 21.97264 89.07790 109.79205 21.97464 110 0 1 + 21.97956 89.09752 109.82659 21.98155 110 0 1 + 21.98878 89.11714 109.87269 21.99077 110 0 1 + 21.99801 89.13676 109.91880 22.00000 110 0 1 + 22.00723 89.15638 109.96490 22.00923 110 0 1 + 22.01414 89.17600 109.99947 22.01614 110 0 1 + 26.00547 89.17600 90.48681 26.00580 110 0 1 + 26.67479 89.19562 90.50251 26.67512 110 0 1 + 26.68233 89.21524 90.52342 26.68266 110 0 1 + 26.68987 89.23486 90.54434 26.69020 110 0 1 + 26.69741 89.25448 90.56527 26.69774 110 0 1 + 26.70305 89.27410 90.58097 26.70338 110 0 1 + 26.73901 89.27410 90.68041 26.73934 110 0 1 + 26.84063 89.62726 90.96313 26.84097 110 0 1 + 26.97632 89.98042 91.34033 26.97666 110 0 1 + 27.11202 90.33358 91.71782 27.11235 110 0 1 + 27.24771 90.68674 92.09558 27.24804 110 0 1 + 27.34934 91.03990 92.37907 27.34967 110 0 1 + 27.49692 91.03990 92.78886 27.49726 110 0 1 + 27.83570 92.21710 93.73569 27.83604 110 0 1 + 28.28800 93.39430 95.00032 28.28834 110 0 1 + 28.74031 94.57150 96.26741 28.74064 110 0 1 + 29.19262 95.74870 97.53673 29.19295 110 0 1 + 29.53143 96.92590 98.49003 29.53176 110 0 1 + 29.70167 96.92590 98.96711 29.70200 110 0 1 + 29.87108 97.51450 99.44448 29.87140 110 0 1 + 30.09723 98.10310 100.08135 30.09755 110 0 1 + 30.32339 98.69170 100.71867 30.32370 110 0 1 + 30.54954 99.28030 101.35640 30.54986 110 0 1 + 30.71896 99.86890 101.83496 30.71927 110 0 1 + 30.87026 99.86890 102.26055 30.87057 110 0 1 + 31.15262 100.84990 103.05900 31.15293 110 0 1 + 31.52955 101.83090 104.12445 31.52985 110 0 1 + 31.90647 102.81190 105.19085 31.90677 110 0 1 + 32.28340 103.79290 106.25815 32.28369 110 0 1 + 32.56578 104.77390 107.05917 32.56606 110 0 1 + 32.73785 104.77390 107.54535 32.73813 110 0 1 + 32.96941 105.57832 108.20278 32.96968 110 0 1 + 33.27849 106.38274 109.07977 33.27875 110 0 1 + 33.58757 107.18716 109.95726 33.58783 110 0 1 + 33.89665 107.99158 110.83521 33.89690 110 0 1 + 34.12821 108.79600 111.49395 34.12846 110 0 1 + 36.49828 108.79600 84.60589 36.49877 110 0 1 + 38.61802 106.77700 88.36985 38.61849 110 0 1 + 40.98166 104.75800 93.38137 40.98212 110 0 1 + 43.34531 102.73900 98.38441 43.34574 110 0 1 + 45.70895 100.72000 103.37904 45.70937 110 0 1 + 47.48027 98.70100 107.11982 47.48067 110 0 1 + 32.88102 98.70100 301.97263 32.88341 110 0 1 + 31.15782 100.07440 302.83782 31.16005 110 0 1 + 31.82860 101.44780 305.57755 31.83067 110 0 1 + 32.49938 102.82120 309.41571 32.50129 110 0 1 + 33.17016 104.19460 313.90116 33.17191 110 0 1 + 33.67292 105.56800 317.53717 33.67450 110 0 1 + 34.00895 105.56800 320.06841 34.01054 110 0 1 + 34.51171 106.94140 323.98844 34.51314 110 0 1 + 35.18248 108.31480 329.37657 35.18376 110 0 1 + 35.85324 109.68820 334.91397 35.85437 110 0 1 + 36.52400 111.06160 340.56440 36.52499 110 0 1 + 37.02677 112.43500 344.85850 37.02762 110 0 1 + 37.36274 112.43500 347.74620 37.36359 110 0 1 + 37.86551 113.80840 352.10929 37.86623 110 0 1 + 38.53626 115.18180 357.97148 38.53684 110 0 1 + 39.20700 116.55520 363.87852 39.20746 110 0 1 + 39.87774 117.92860 369.82241 39.87808 110 0 1 + 40.38052 119.30200 374.29985 40.38074 110 0 1 + 40.71643 119.30200 377.29390 40.71665 110 0 1 + 41.21921 120.67540 381.79696 41.21931 110 0 1 + 41.88994 122.04880 387.81867 41.88993 110 11 1 + 42.56067 123.42220 393.85880 42.56055 110 11 1 + 43.23140 124.79560 399.91470 43.23116 110 11 1 + 43.73419 126.16900 404.46527 43.73385 110 11 1 + 44.07006 126.16900 407.50312 44.06971 110 11 1 + 44.57285 127.54240 412.06549 44.57240 110 11 1 + 45.24357 128.91580 418.15704 45.24301 110 11 1 + 45.91430 130.28920 424.25761 45.91363 110 11 1 + 46.58502 131.66260 430.36609 46.58425 110 11 1 + 47.08783 133.03600 434.95188 47.08695 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -28635,11 +28771,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.682 'Hollandveen' - -5.70 6.841 'Oude Zeeklei' - -7.00 45.427 'Wadzand' - -10.00 60.868 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.289 'Eerste zandlaag' + -5.70 6.838 'Oude Zeeklei' + -7.00 45.314 'Wadzand' + -10.00 60.872 'Hydrobiaklei' + -12.00 21.064 'Basisveen' + -12.50 136.206 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -28658,10 +28794,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 1.17 'Oude Zeeklei' - -7.00 11.05 'Wadzand' + -7.00 11.02 'Wadzand' -10.00 10.41 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 43.10 'Eerste zandlaag' + -12.50 42.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -28972,7 +29108,7 @@ Lambda passive -5.42000 0.74880 3.12525 0.00000 0.74118 0.00000 4.17368 -5.56000 0.80340 3.20881 0.00000 0.74118 0.00000 3.99404 -5.70000 0.85800 3.27148 0.00000 0.74118 0.00000 3.87455 - -5.70000 0.85800 15.72683 0.00000 0.74118 0.00000 13.20833 + -5.70000 0.85800 15.72683 0.00000 0.70620 0.00000 13.20833 -5.83000 2.18870 17.59731 0.00000 0.69929 0.00000 8.04007 -5.96000 3.51940 20.20086 0.00000 0.69929 0.00000 5.73986 -6.09000 4.85010 22.85071 0.00000 0.69929 0.00000 4.71139 @@ -28984,7 +29120,7 @@ Lambda passive -6.74000 11.50360 36.23527 0.00000 0.69929 0.00000 3.14991 -6.87000 12.83430 38.91790 0.00000 0.69929 0.00000 3.03234 -7.00000 14.16500 40.93005 0.00000 0.69929 0.00000 2.95901 - -7.00000 14.16500 44.03218 0.00000 0.69929 0.00000 3.04434 + -7.00000 14.16500 44.03218 0.00000 0.59435 0.00000 3.04434 -7.14950 15.35950 46.22388 0.00000 0.57738 0.00000 3.00946 -7.29900 16.55401 49.30127 0.00000 0.57738 0.00000 2.97821 -7.44850 17.74851 52.49085 0.00000 0.57738 0.00000 2.95748 @@ -29014,7 +29150,7 @@ Lambda passive -9.99600 38.10304 110.38125 15.92325 0.57738 0.41790 2.89691 -9.99800 38.11902 110.42734 15.92993 0.57738 0.41790 2.89691 -10.00000 38.13500 110.46192 15.93494 0.57738 0.41790 2.89691 - -10.00000 38.13500 90.78038 14.98909 0.57738 0.39303 2.38033 + -10.00000 38.13500 90.78038 14.98909 0.68232 0.39303 2.38033 -10.00200 38.14578 90.79609 14.99349 0.69929 0.39306 2.38024 -10.00400 38.15656 90.81702 14.99935 0.69929 0.39310 2.38012 -10.00600 38.16734 90.83798 15.00521 0.69929 0.39314 2.37999 @@ -29050,13 +29186,13 @@ Lambda passive -11.83600 48.03104 110.26351 20.35661 0.69929 0.42382 2.29567 -11.91800 48.47302 111.14175 20.59614 0.69929 0.42490 2.29286 -12.00000 48.91500 111.80070 20.77579 0.69929 0.42569 2.29079 - -12.00000 48.91500 84.83882 29.23532 0.69929 0.58809 1.70660 + -12.00000 48.91500 84.83882 29.23532 0.73427 0.58809 1.70660 -12.10000 52.10400 88.60255 30.79808 0.74118 0.59109 1.70049 -12.20000 55.29300 93.61381 32.88181 0.74118 0.59468 1.69305 -12.30000 58.48200 98.61667 34.96560 0.74118 0.59789 1.68627 -12.40000 61.67100 103.61120 37.04944 0.74118 0.60076 1.68006 -12.50000 64.86000 107.35194 38.61235 0.74118 0.60273 1.67573 - -12.50000 64.86000 302.81957 20.88346 0.74118 0.32022 4.64329 + -12.50000 64.86000 302.81957 20.88346 0.50364 0.32022 4.64329 -12.64000 66.28660 303.66500 21.24418 0.47008 0.32049 4.58109 -12.78000 67.71320 306.38316 21.72373 0.47008 0.32082 4.52472 -12.92000 69.13980 310.20425 22.20178 0.47008 0.32111 4.48662 @@ -29163,149 +29299,149 @@ Status character 0.00000 30.21480 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00000 0.00000 -1 0 - 0.00000 30.41100 0.00008 0.00008 1 0 A - 0.01820 31.19580 2.02707 0.02312 110 0 1 - 0.04145 31.98060 2.07482 0.04625 110 0 1 - 0.06471 32.76540 2.12256 0.06937 110 0 1 - 0.08796 33.55020 2.17031 0.09250 110 0 1 - 0.10543 34.33500 2.20612 0.10984 110 0 1 - 0.11266 34.33500 2.22104 0.11707 110 0 1 - 0.11703 34.53120 2.22999 0.12141 110 0 1 - 0.12284 34.72740 2.24193 0.12719 110 0 1 - 0.12865 34.92360 2.25387 0.13297 110 0 1 - 0.13447 35.11980 2.26581 0.13875 110 0 1 - 0.13883 35.31600 2.27476 0.14308 110 0 1 - 0.14751 35.31600 2.29266 0.15176 110 0 1 - 0.16934 36.29700 2.33743 0.17344 110 0 1 - 0.19841 37.27800 2.39711 0.20234 110 0 1 - 0.22747 38.25900 2.45679 0.23125 110 0 1 - 0.25653 39.24000 2.51648 0.26015 110 0 1 - 0.27837 40.22100 2.56124 0.28183 110 0 1 - 0.29282 40.22100 2.59108 0.29629 110 0 1 - 0.31465 41.20200 2.63585 0.31797 110 0 1 - 0.34371 42.18300 2.69553 0.34687 110 0 1 - 0.37277 43.16400 2.75521 0.37578 110 0 1 - 0.40182 44.14500 2.81490 0.40468 110 0 1 - 0.42364 45.12600 2.85966 0.42636 110 0 1 - 0.44099 45.12600 2.89547 0.44371 110 0 1 - 0.47153 46.49940 2.95814 0.47406 110 0 1 - 0.51219 47.87280 3.04170 0.51453 110 0 1 - 0.55285 49.24620 3.12525 0.55500 110 0 1 - 0.59349 50.61960 3.20881 0.59546 110 0 1 - 0.62402 51.99300 3.27148 0.62582 110 0 1 - 0.87531 51.99300 15.72683 0.88251 110 0 1 - 1.52396 52.76830 17.59731 1.53055 110 0 1 - 2.45509 53.54360 20.20086 2.46110 110 0 1 - 3.38620 54.31890 22.85071 3.39165 110 0 1 - 4.31729 55.09420 25.51802 4.32220 110 0 1 - 5.01571 55.86950 27.52377 5.02011 110 0 1 - 5.48098 55.86950 28.86255 5.48539 110 0 1 - 6.17937 56.64480 30.87217 6.18330 110 0 1 - 7.11038 57.42010 33.55319 7.11385 110 0 1 - 8.04135 58.19540 36.23527 8.04440 110 0 1 - 8.97231 58.97070 38.91790 8.97495 110 0 1 - 9.67059 59.74600 40.93005 9.67286 110 0 1 - 10.11092 59.74600 44.03218 10.11433 110 0 1 - 8.86549 61.21260 46.22388 8.86830 110 0 1 - 9.55573 62.67919 49.30127 9.55798 110 0 1 - 10.24592 64.14579 52.49085 10.24767 110 0 1 - 10.93607 65.61238 55.74951 10.93735 110 0 1 - 11.45376 67.07898 58.22352 11.45462 110 0 1 - 11.79860 67.07898 59.88499 11.79946 110 0 1 - 12.31625 68.54557 62.39143 12.31672 110 0 1 - 13.00627 70.01217 65.75231 13.00641 110 0 1 - 13.69626 71.47876 69.13102 13.69610 110 20 1 - 14.38622 72.94536 72.52344 14.38578 110 20 1 - 14.90373 74.41195 75.07465 14.90304 110 20 1 - 15.24857 74.41195 76.77853 15.24789 110 20 1 - 15.76604 75.87855 79.33826 15.76515 110 20 1 - 16.45591 77.34514 82.75680 16.45484 110 20 1 - 17.14576 78.81174 86.18091 17.14452 110 20 1 - 17.83557 80.27833 89.60960 17.83421 110 20 1 - 18.35295 81.74492 92.18354 18.35147 110 20 1 - 18.69779 81.74492 93.90062 18.69631 110 20 1 - 19.21515 83.21152 96.47772 19.21358 110 20 1 - 19.90491 84.67811 99.91601 19.90326 110 20 1 - 20.59465 86.14471 103.35655 20.59295 110 20 1 - 21.28437 87.61131 106.79899 21.28263 110 20 1 - 21.80166 89.07790 109.38185 21.79990 110 20 1 - 21.97639 89.07790 110.25452 21.97463 110 20 1 - 21.98331 89.09752 110.28908 21.98155 110 20 1 - 21.99254 89.11714 110.33516 21.99077 110 20 1 - 22.00177 89.13676 110.38125 22.00000 110 20 1 - 22.01099 89.15638 110.42734 22.00923 110 20 1 - 22.01791 89.17600 110.46192 22.01615 110 20 1 - 22.02030 89.17600 90.78038 22.02001 110 24 1 - 26.67542 89.19562 90.79609 26.67512 110 29 1 - 26.68296 89.21524 90.81702 26.68266 110 29 1 - 26.69049 89.23486 90.83798 26.69020 110 29 1 - 26.69803 89.25448 90.85894 26.69774 110 29 1 - 26.70369 89.27410 90.87466 26.70339 110 29 1 - 26.73949 89.27410 90.97421 26.73920 110 29 1 - 26.84126 89.62726 91.25725 26.84097 110 29 1 - 26.97695 89.98042 91.63488 26.97666 110 29 1 - 27.11265 90.33358 92.01279 27.11235 110 29 1 - 27.24834 90.68674 92.39095 27.24804 110 29 1 - 27.35011 91.03990 92.67474 27.34981 110 30 1 - 27.49710 91.03990 93.08495 27.49681 110 30 1 - 27.83633 92.21710 94.03268 27.83604 110 30 1 - 28.28863 93.39430 95.29844 28.28834 110 30 1 - 28.74093 94.57150 96.56656 28.74064 110 30 1 - 29.19323 95.74870 97.83683 29.19295 110 30 1 - 29.53246 96.92590 98.79078 29.53217 110 30 1 - 29.70207 96.92590 99.26818 29.70179 110 30 1 - 29.87168 97.51450 99.74585 29.87140 110 30 1 - 30.09783 98.10310 100.38312 30.09755 110 30 1 - 30.32398 98.69170 101.02081 30.32370 110 30 1 - 30.55013 99.28030 101.65891 30.54986 110 30 1 - 30.71974 99.86890 102.13773 30.71947 110 30 1 - 30.87051 99.86890 102.56355 30.87024 110 30 1 - 31.15319 100.84990 103.36241 31.15293 110 30 1 - 31.53010 101.83090 104.42837 31.52985 110 30 1 - 31.90701 102.81190 105.49526 31.90677 110 30 1 - 32.28393 103.79290 106.56302 32.28369 110 30 1 - 32.56661 104.77390 107.36436 32.56638 110 30 1 - 32.73811 104.77390 107.85073 32.73787 110 30 1 - 32.96991 105.57832 108.50841 32.96968 110 30 1 - 33.27897 106.38274 109.38572 33.27875 110 30 1 - 33.58804 107.18716 110.26351 33.58783 110 30 1 - 33.89711 107.99158 111.14175 33.89690 110 30 1 - 34.12891 108.79600 111.80070 34.12871 110 31 1 - 34.76388 108.79600 84.83882 34.76349 110 41 1 - 38.61887 106.77700 88.60255 38.61849 110 44 1 - 40.98248 104.75800 93.61381 40.98212 110 44 1 - 43.34609 102.73900 98.61667 43.34574 110 44 1 - 45.70970 100.72000 103.61120 45.70937 110 44 1 - 47.48240 98.70100 107.35194 47.48209 110 44 1 - 48.33919 98.70100 302.81957 48.33734 110 16 1 - 31.16175 100.07440 303.66500 31.16005 110 10 1 - 31.83223 101.44780 306.38316 31.83067 110 10 1 - 32.50270 102.82120 310.20425 32.50129 110 10 1 - 33.17318 104.19460 314.67595 33.17191 110 11 1 - 33.67601 105.56800 318.30325 33.67487 110 11 1 - 34.01132 105.56800 320.82938 34.01018 110 11 1 - 34.51415 106.94140 324.74260 34.51314 110 11 1 - 35.18465 108.31480 330.12282 35.18376 110 11 1 - 35.85514 109.68820 335.65348 35.85437 110 11 1 - 36.52565 111.06160 341.29813 36.52499 110 11 1 - 37.02850 112.43500 345.58837 37.02795 110 11 1 - 37.36381 112.43500 348.47372 37.36326 110 11 1 - 37.86666 113.80840 352.83359 37.86623 110 11 1 - 38.53718 115.18180 358.69192 38.53684 110 11 1 - 39.20770 116.55520 364.59556 39.20746 110 11 1 - 39.87822 117.92860 370.53640 39.87808 110 11 1 - 40.38110 119.30200 375.01178 40.38104 110 11 1 - 40.71641 119.30200 378.00455 40.71635 110 11 1 - 41.21928 120.67540 382.50581 41.21931 110 0 1 - 41.88981 122.04880 388.52533 41.88993 110 0 1 - 42.56035 123.42220 394.56348 42.56055 110 0 1 - 43.23088 124.79560 400.61758 43.23116 110 0 1 - 43.73377 126.16900 405.16691 43.73413 110 0 1 - 44.06907 126.16900 408.20397 44.06943 110 0 1 - 44.57196 127.54240 412.76524 44.57240 110 0 1 - 45.24250 128.91580 418.85544 45.24301 110 0 1 - 45.91303 130.28920 424.95475 45.91363 110 0 1 - 46.58357 131.66260 431.06207 46.58425 110 0 1 - 47.08646 133.03600 435.64707 47.08721 110 0 1 + 0.01825 31.19580 2.02707 0.02312 110 0 1 + 0.04150 31.98060 2.07482 0.04625 110 0 1 + 0.06475 32.76540 2.12256 0.06937 110 0 1 + 0.08801 33.55020 2.17031 0.09250 110 0 1 + 0.10548 34.33500 2.20612 0.10984 110 0 1 + 0.11271 34.33500 2.22104 0.11707 110 0 1 + 0.11707 34.53120 2.22999 0.12141 110 0 1 + 0.12289 34.72740 2.24193 0.12719 110 0 1 + 0.12870 34.92360 2.25387 0.13297 110 0 1 + 0.13451 35.11980 2.26581 0.13875 110 0 1 + 0.13888 35.31600 2.27476 0.14308 110 0 1 + 0.14755 35.31600 2.29266 0.15176 110 0 1 + 0.16939 36.29700 2.33743 0.17344 110 0 1 + 0.19846 37.27800 2.39711 0.20234 110 0 1 + 0.22752 38.25900 2.45679 0.23125 110 0 1 + 0.25658 39.24000 2.51648 0.26015 110 0 1 + 0.27842 40.22100 2.56124 0.28183 110 0 1 + 0.29287 40.22100 2.59108 0.29629 110 0 1 + 0.31470 41.20200 2.63585 0.31797 110 0 1 + 0.34376 42.18300 2.69553 0.34687 110 0 1 + 0.37282 43.16400 2.75521 0.37578 110 0 1 + 0.40187 44.14500 2.81490 0.40468 110 0 1 + 0.42369 45.12600 2.85966 0.42636 110 0 1 + 0.44103 45.12600 2.89547 0.44371 110 0 1 + 0.47158 46.49940 2.95814 0.47406 110 0 1 + 0.51224 47.87280 3.04170 0.51453 110 0 1 + 0.55290 49.24620 3.12525 0.55500 110 0 1 + 0.59354 50.61960 3.20881 0.59546 110 0 1 + 0.62406 51.99300 3.27148 0.62582 110 0 1 + 0.83385 51.99300 15.72683 0.84086 110 0 1 + 1.52415 52.76830 17.59731 1.53055 110 0 1 + 2.45528 53.54360 20.20086 2.46110 110 0 1 + 3.38639 54.31890 22.85071 3.39165 110 0 1 + 4.31747 55.09420 25.51802 4.32220 110 0 1 + 5.01589 55.86950 27.52377 5.02011 110 0 1 + 5.48117 55.86950 28.86255 5.48539 110 0 1 + 6.17956 56.64480 30.87217 6.18330 110 0 1 + 7.11056 57.42010 33.55319 7.11385 110 0 1 + 8.04153 58.19540 36.23527 8.04440 110 0 1 + 8.97248 58.97070 38.91790 8.97495 110 0 1 + 9.67077 59.74600 40.93005 9.67286 110 0 1 + 8.59338 59.74600 44.03218 8.59652 110 0 1 + 8.86575 61.21260 46.22388 8.86830 110 0 1 + 9.55598 62.67919 49.30127 9.55798 110 0 1 + 10.24617 64.14579 52.49085 10.24767 110 0 1 + 10.93631 65.61238 55.74951 10.93735 110 0 1 + 11.45399 67.07898 58.22352 11.45462 110 0 1 + 11.79883 67.07898 59.88499 11.79946 110 0 1 + 12.31647 68.54557 62.39143 12.31672 110 0 1 + 13.00650 70.01217 65.75231 13.00641 110 20 1 + 13.69648 71.47876 69.13102 13.69610 110 20 1 + 14.38644 72.94536 72.52344 14.38578 110 20 1 + 14.90394 74.41195 75.07465 14.90304 110 20 1 + 15.24878 74.41195 76.77853 15.24789 110 20 1 + 15.76625 75.87855 79.33826 15.76515 110 20 1 + 16.45612 77.34514 82.75680 16.45484 110 20 1 + 17.14596 78.81174 86.18091 17.14452 110 20 1 + 17.83578 80.27833 89.60960 17.83421 110 20 1 + 18.35316 81.74492 92.18354 18.35147 110 20 1 + 18.69800 81.74492 93.90062 18.69631 110 20 1 + 19.21536 83.21152 96.47772 19.21358 110 20 1 + 19.90512 84.67811 99.91601 19.90326 110 20 1 + 20.59487 86.14471 103.35655 20.59295 110 20 1 + 21.28460 87.61131 106.79899 21.28263 110 20 1 + 21.80189 89.07790 109.38185 21.79990 110 20 1 + 21.97662 89.07790 110.25452 21.97463 110 20 1 + 21.98354 89.09752 110.28908 21.98155 110 20 1 + 21.99276 89.11714 110.33516 21.99077 110 20 1 + 22.00199 89.13676 110.38125 22.00000 110 20 1 + 22.01122 89.15638 110.42734 22.00923 110 20 1 + 22.01814 89.17600 110.46192 22.01615 110 20 1 + 26.02249 89.17600 90.78038 26.02216 110 29 1 + 26.67545 89.19562 90.79609 26.67512 110 29 1 + 26.68299 89.21524 90.81702 26.68266 110 29 1 + 26.69053 89.23486 90.83798 26.69020 110 29 1 + 26.69807 89.25448 90.85894 26.69774 110 29 1 + 26.70372 89.27410 90.87466 26.70339 110 29 1 + 26.73953 89.27410 90.97421 26.73920 110 29 1 + 26.84130 89.62726 91.25725 26.84097 110 29 1 + 26.97699 89.98042 91.63488 26.97666 110 29 1 + 27.11268 90.33358 92.01279 27.11235 110 29 1 + 27.24838 90.68674 92.39095 27.24804 110 29 1 + 27.35014 91.03990 92.67474 27.34981 110 30 1 + 27.49714 91.03990 93.08495 27.49681 110 30 1 + 27.83637 92.21710 94.03268 27.83604 110 30 1 + 28.28867 93.39430 95.29844 28.28834 110 30 1 + 28.74097 94.57150 96.56656 28.74064 110 30 1 + 29.19328 95.74870 97.83683 29.19295 110 30 1 + 29.53250 96.92590 98.79078 29.53217 110 30 1 + 29.70211 96.92590 99.26818 29.70179 110 30 1 + 29.87172 97.51450 99.74585 29.87140 110 30 1 + 30.09787 98.10310 100.38312 30.09755 110 30 1 + 30.32402 98.69170 101.02081 30.32370 110 30 1 + 30.55017 99.28030 101.65891 30.54986 110 30 1 + 30.71978 99.86890 102.13773 30.71947 110 30 1 + 30.87055 99.86890 102.56355 30.87024 110 30 1 + 31.15323 100.84990 103.36241 31.15293 110 30 1 + 31.53015 101.83090 104.42837 31.52985 110 30 1 + 31.90706 102.81190 105.49526 31.90677 110 30 1 + 32.28397 103.79290 106.56302 32.28369 110 30 1 + 32.56665 104.77390 107.36436 32.56638 110 30 1 + 32.73815 104.77390 107.85073 32.73787 110 30 1 + 32.96995 105.57832 108.50841 32.96968 110 30 1 + 33.27902 106.38274 109.38572 33.27875 110 30 1 + 33.58809 107.18716 110.26351 33.58783 110 30 1 + 33.89715 107.99158 111.14175 33.89690 110 30 1 + 34.12895 108.79600 111.80070 34.12871 110 31 1 + 36.50294 108.79600 84.83882 36.50245 110 43 1 + 38.61897 106.77700 88.60255 38.61849 110 44 1 + 40.98257 104.75800 93.61381 40.98212 110 44 1 + 43.34618 102.73900 98.61667 43.34574 110 44 1 + 45.70979 100.72000 103.61120 45.70937 110 44 1 + 47.48249 98.70100 107.35194 47.48209 110 44 1 + 32.84811 98.70100 302.81957 32.84572 110 11 1 + 31.16228 100.07440 303.66500 31.16005 110 10 1 + 31.83274 101.44780 306.38316 31.83067 110 10 1 + 32.50319 102.82120 310.20425 32.50129 110 10 1 + 33.17365 104.19460 314.67595 33.17191 110 11 1 + 33.67645 105.56800 318.30325 33.67487 110 11 1 + 34.01176 105.56800 320.82938 34.01018 110 11 1 + 34.51457 106.94140 324.74260 34.51314 110 11 1 + 35.18504 108.31480 330.12282 35.18376 110 11 1 + 35.85551 109.68820 335.65348 35.85437 110 11 1 + 36.52598 111.06160 341.29813 36.52499 110 11 1 + 37.02880 112.43500 345.58837 37.02795 110 11 1 + 37.36411 112.43500 348.47372 37.36326 110 11 1 + 37.86694 113.80840 352.83359 37.86623 110 11 1 + 38.53743 115.18180 358.69192 38.53684 110 11 1 + 39.20792 116.55520 364.59556 39.20746 110 11 1 + 39.87841 117.92860 370.53640 39.87808 110 11 1 + 40.38126 119.30200 375.01178 40.38104 110 11 1 + 40.71657 119.30200 378.00455 40.71635 110 11 1 + 41.21941 120.67540 382.50581 41.21931 110 11 1 + 41.88992 122.04880 388.52533 41.88993 110 0 1 + 42.56042 123.42220 394.56348 42.56055 110 0 1 + 43.23093 124.79560 400.61758 43.23116 110 0 1 + 43.73378 126.16900 405.16691 43.73413 110 0 1 + 44.06909 126.16900 408.20397 44.06943 110 0 1 + 44.57195 127.54240 412.76524 44.57240 110 0 1 + 45.24246 128.91580 418.85544 45.24301 110 0 1 + 45.91297 130.28920 424.95475 45.91363 110 0 1 + 46.58348 131.66260 431.06207 46.58425 110 0 1 + 47.08633 133.03600 435.64707 47.08721 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -29321,11 +29457,11 @@ Layer name 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' -3.00 0.692 'Hollandveen' - -5.70 6.826 'Oude Zeeklei' - -7.00 45.428 'Wadzand' - -10.00 60.869 'Hydrobiaklei' - -12.00 20.978 'Basisveen' - -12.50 137.291 'Eerste zandlaag' + -5.70 6.823 'Oude Zeeklei' + -7.00 45.315 'Wadzand' + -10.00 60.874 'Hydrobiaklei' + -12.00 21.065 'Basisveen' + -12.50 136.208 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -29344,10 +29480,10 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' -5.70 -1.17 'Oude Zeeklei' - -7.00 -11.05 'Wadzand' + -7.00 -11.02 'Wadzand' -10.00 -10.41 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -43.10 'Eerste zandlaag' + -12.50 -42.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -29612,39 +29748,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 27.07 : Percentage mobilized resistance left - 53.53 : Percentage mobilized resistance right - 477.99 : Effective left - 611.47 : Effective right + 26.93 : Percentage mobilized resistance left + 53.31 : Percentage mobilized resistance right + 475.55 : Effective left + 609.03 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 1765.75 : Max effective resistance left 1142.37 : Max effective resistance right -18763.80 : Max moment left -12613.00 : Max moment right --5704.79 : Max mobilized moment left --5922.62 : Max mobilized moment right - 137.60 : Vertical force left - 153.26 : Vertical force right - 30.4 : Max mobilized moment percentage left - 47.0 : Max mobilized moment percentage right +-5674.69 : Max mobilized moment left +-5892.54 : Max mobilized moment right + 136.83 : Vertical force left + 152.43 : Vertical force right + 30.2 : Max mobilized moment percentage left + 46.7 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --137.60 : Active force -153.26 : Passive force --137.60 : Plugged active force -153.26 : Plugged passive force +-136.83 : Active force +152.43 : Passive force +-136.83 : Plugged active force +152.43 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor -15.66 : Resulting Vertical Force Unplugged -15.66 : Resulting Vertical Force Plugged +15.60 : Resulting Vertical Force Unplugged +15.60 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -29657,210 +29793,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1136.05037 - 0.00000 0.00000 1127.85449 - 0.00000 0.00000 1119.65861 - 0.00000 0.00000 1111.46273 - 0.00000 0.00000 1103.26685 - 0.00000 0.00000 1095.07097 - 0.00000 0.00000 1095.07097 - 0.00000 0.00000 1086.87509 - 0.00000 0.00000 1078.67921 - 0.00000 0.00000 1070.48333 - 0.00000 0.00000 1062.28745 - 0.00000 0.00000 1054.09157 - 0.00000 0.00000 1054.09157 - -0.00283 -0.07063 1043.16372 - -0.02260 -0.28253 1032.23588 - -0.07628 -0.63569 1021.30804 - -0.18082 -1.13011 1010.38023 - -0.35316 -1.76580 999.45245 - -0.35316 -1.76580 999.45245 - -0.56081 -2.40345 990.34600 - -0.83712 -3.13920 981.23962 - -1.19192 -3.97305 972.13336 - -1.63500 -4.90500 963.02725 - -2.17619 -5.93505 953.92136 - -2.17619 -5.93505 953.92136 - -2.82528 -7.06320 944.81571 - -3.59210 -8.28945 935.71043 - -4.48644 -9.61380 926.60561 - -5.51813 -11.03625 917.50137 - -6.69696 -12.55680 908.39783 - -6.69696 -12.55680 908.39783 - -7.83593 -13.94293 900.56943 - -9.09722 -15.40162 892.74176 - -10.48709 -16.93286 884.91496 - -12.01176 -18.53666 877.08914 - -13.67747 -20.21301 869.26443 - -13.67747 -20.21301 869.26443 - -16.11358 -22.54699 858.89411 - -18.82303 -25.00846 848.52641 - -21.82035 -27.59741 838.16184 - -25.12009 -30.31386 827.80089 - -28.73676 -33.15780 817.44405 - -28.73676 -33.15780 817.44405 - -29.11642 -33.44921 816.40861 - -29.49941 -33.74189 815.37322 - -29.88574 -34.03584 814.33788 - -30.27543 -34.33107 813.30258 - -30.66849 -34.62758 812.26734 - -30.66849 -34.62758 812.26734 - -33.10228 -36.28459 806.03879 - -35.64075 -37.67977 799.81221 - -38.26595 -38.81303 793.58774 - -40.95991 -39.68436 787.36554 - -43.70554 -40.33228 781.14578 - -43.70554 -40.33228 781.14578 - -44.51346 -40.45737 779.33291 - -45.32370 -40.56346 777.52027 - -46.13585 -40.64729 775.70786 - -46.94945 -40.70886 773.89568 - -47.76408 -40.75144 772.08374 - -47.76408 -40.75144 772.08374 - -51.07311 -41.97615 764.83842 - -54.48053 -43.21100 757.59721 - -57.98710 -44.45432 750.36040 - -61.59338 -45.70352 743.12828 - -65.29976 -46.95645 735.90112 - -65.29976 -46.95645 735.90112 - -66.24203 -47.27029 734.09514 - -67.19057 -47.58426 732.28949 - -68.14540 -47.89836 730.48418 - -69.10651 -48.21258 728.67922 - -70.07390 -48.52690 726.87460 - -70.07390 -48.52690 726.87460 - -75.00523 -50.09978 717.85690 - -80.09388 -51.67334 708.84865 - -85.33989 -53.24679 699.85050 - -90.74321 -54.81931 690.86313 - -96.30371 -56.39048 681.88718 - -96.30371 -56.39048 681.88718 - -102.02120 -57.95897 672.92334 - -107.89543 -59.52515 663.97235 - -113.92613 -61.08838 655.03498 - -120.11299 -62.64835 646.11197 - -126.45570 -64.20526 637.20409 - -126.45570 -64.20526 637.20409 - -135.59652 -66.37700 624.75994 - -145.04093 -68.54179 612.34927 - -154.78784 -70.69830 599.97448 - -164.83605 -72.84615 587.63797 - -175.18440 -74.98620 575.34216 - -175.18440 -74.98620 575.34216 - -184.94332 -75.14138 563.96325 - -194.72106 -75.29432 552.62371 - -204.52218 -75.50128 541.32563 - -214.35374 -75.76244 530.07111 - -224.25819 -76.89530 518.86222 - -224.25819 -76.89530 518.86222 - -234.37455 -78.67513 507.70105 - -244.69660 -80.05976 496.58978 - -255.17297 -81.04919 485.53064 - -265.75227 -81.64342 474.52585 - -276.38313 -81.84245 463.57763 - -276.38313 -81.84246 463.57763 - -288.61870 -81.84410 451.06003 - -300.85452 -81.84575 438.62370 - -313.09058 -81.84739 426.27208 - -325.35331 -82.37921 414.00862 - -337.75220 -83.51774 401.83677 - -337.75220 -83.51775 401.83677 - -350.33312 -84.79828 389.75998 - -363.11015 -86.14427 377.78182 - -376.09467 -87.57877 365.90596 - -389.30095 -89.10864 354.13604 - -402.74173 -90.71032 342.47573 - -402.74173 -90.71032 342.47573 - -416.42882 -92.40375 330.92873 - -430.37366 -94.16141 319.49898 - -444.58674 -95.99247 308.19047 - -459.07906 -97.89693 297.00721 - -473.77499 -98.13705 285.95320 - -473.77499 -98.13706 285.95320 - -488.26974 -95.71832 275.03261 - -502.37584 -92.91991 264.24953 - -516.03124 -89.68896 253.60777 - -529.17133 -86.02625 243.11117 - -541.73427 -81.98591 232.76358 - -541.73427 -81.98592 232.76358 - -541.89818 -81.92821 232.62618 - -542.06198 -81.87044 232.48880 - -542.22567 -81.81258 232.35145 - -542.38923 -81.75465 232.21413 - -542.55268 -81.69665 232.07684 - -542.55268 -81.69671 232.07684 - -542.71602 -81.63905 231.93958 - -542.87924 -81.58136 231.80234 - -543.04234 -81.52364 231.66513 - -543.20533 -81.46589 231.52794 - -543.36821 -81.40811 231.39079 - -543.36821 -81.40809 231.39079 - -546.28008 -80.36130 228.92667 - -549.15411 -79.30552 226.47147 - -551.98995 -78.23945 224.02524 - -554.78723 -77.16310 221.58802 - -557.54559 -76.07775 219.15986 - -557.54559 -76.07775 219.15986 - -566.45313 -72.36698 211.13203 - -574.90966 -68.55606 203.20697 - -582.90200 -64.63059 195.38612 - -590.41642 -60.59061 187.67093 - -597.43974 -56.45044 180.06286 - -597.43974 -56.45044 180.06286 - -600.76316 -54.32667 176.29942 - -603.95844 -52.17784 172.56322 - -607.02393 -50.00036 168.85441 - -609.95791 -47.79423 165.17313 - -612.75874 -45.56302 161.51950 - -612.75949 -45.55783 161.51950 - -617.12586 -41.75953 155.49199 - -621.10908 -37.89153 149.54221 - -624.70151 -33.94388 143.67064 - -627.89527 -29.91890 137.87772 - -630.68618 -25.92064 132.16391 - -630.68440 -25.90217 132.16391 - -632.67700 -22.71209 127.53789 - -634.41147 -19.60548 122.96546 - -635.89451 -16.57966 118.44676 - -637.13271 -13.63353 113.98190 - -638.13260 -10.76756 109.57101 - -638.13262 -10.76779 109.57101 - -639.11434 -8.83054 104.26507 - -639.89032 -6.64124 99.03965 - -640.43300 -4.16453 93.89482 - -640.71367 -1.40115 88.83063 - -640.70489 1.61254 83.84716 - -640.70489 1.61254 83.84716 - -638.64750 27.70367 77.00649 - -632.95680 53.60332 70.32359 - -623.62809 79.72764 63.79615 - -610.61187 106.30593 57.42185 - -593.83966 133.37207 51.19840 - -593.88153 133.69249 51.19840 - -573.22018 161.55322 45.12269 - -548.68643 188.56111 39.18856 - -520.52552 213.37352 33.38910 - -489.04239 236.03132 27.71740 - -454.53612 256.55969 22.16655 - -454.66801 257.44768 22.16655 - -417.28215 276.28917 16.72875 - -377.40151 293.10642 11.39397 - -335.36433 306.66706 6.15193 - -291.85650 313.33269 0.99236 - -248.13188 309.26891 -4.09504 - -247.86245 308.70551 -4.09504 - -205.64842 293.35316 -9.12147 - -166.01027 271.85715 -14.09726 - -129.72999 246.04173 -19.03129 - -97.22779 217.88607 -23.93245 - -68.82904 187.43430 -28.80964 - -68.87553 187.20461 -28.80964 - -44.93976 154.35980 -33.67119 - -25.76134 119.23164 -38.52178 - -11.66293 81.78868 -43.36484 - -2.96844 42.03295 -48.20382 - 0.00004 0.00021 -53.04214 + 0.00000 0.00000 1135.12301 + 0.00000 0.00000 1126.93232 + 0.00000 0.00000 1118.74164 + 0.00000 0.00000 1110.55096 + 0.00000 0.00000 1102.36027 + 0.00000 0.00000 1094.16959 + 0.00000 0.00000 1094.16959 + 0.00000 0.00000 1085.97890 + 0.00000 0.00000 1077.78822 + 0.00000 0.00000 1069.59754 + 0.00000 0.00000 1061.40685 + 0.00000 0.00000 1053.21617 + 0.00000 0.00000 1053.21617 + -0.00283 -0.07063 1042.29525 + -0.02260 -0.28253 1031.37434 + -0.07628 -0.63569 1020.45343 + -0.18082 -1.13011 1009.53255 + -0.35316 -1.76580 998.61169 + -0.35316 -1.76580 998.61169 + -0.56081 -2.40345 989.51102 + -0.83712 -3.13920 980.41042 + -1.19192 -3.97305 971.30993 + -1.63500 -4.90500 962.20960 + -2.17619 -5.93505 953.10948 + -2.17619 -5.93505 953.10948 + -2.82528 -7.06320 944.00961 + -3.59210 -8.28945 934.91010 + -4.48644 -9.61380 925.81105 + -5.51813 -11.03625 916.71259 + -6.69696 -12.55680 907.61482 + -6.69696 -12.55680 907.61482 + -7.83593 -13.94293 899.79139 + -9.09722 -15.40162 891.96869 + -10.48709 -16.93286 884.14685 + -12.01176 -18.53666 876.32599 + -13.67747 -20.21301 868.50626 + -13.67747 -20.21301 868.50626 + -16.11358 -22.54699 858.14251 + -18.82303 -25.00846 847.78140 + -21.82035 -27.59741 837.42341 + -25.12009 -30.31386 827.06905 + -28.73676 -33.15780 816.71879 + -28.73676 -33.15780 816.71879 + -29.11642 -33.44921 815.68401 + -29.49941 -33.74189 814.64927 + -29.88574 -34.03584 813.61459 + -30.27543 -34.33107 812.57995 + -30.66849 -34.62758 811.54537 + -30.66849 -34.62758 811.54537 + -33.10228 -36.28459 805.32078 + -35.64075 -37.67977 799.09816 + -38.26595 -38.81303 792.87765 + -40.95991 -39.68436 786.65942 + -43.70554 -40.33228 780.44361 + -43.70554 -40.33228 780.44361 + -44.51346 -40.45737 778.63190 + -45.32370 -40.56346 776.82042 + -46.13585 -40.64729 775.00916 + -46.94945 -40.70886 773.19814 + -47.76408 -40.75144 771.38735 + -47.76408 -40.75144 771.38735 + -51.07311 -41.97615 764.14665 + -54.48053 -43.21100 756.91006 + -57.98710 -44.45432 749.67787 + -61.59338 -45.70352 742.45036 + -65.29976 -46.95645 735.22782 + -65.29976 -46.95645 735.22782 + -66.24203 -47.27029 733.42300 + -67.19057 -47.58426 731.61851 + -68.14540 -47.89836 729.81435 + -69.10651 -48.21258 728.01054 + -70.07390 -48.52690 726.20708 + -70.07390 -48.52690 726.20708 + -75.00523 -50.09978 717.19516 + -80.09388 -51.67334 708.19268 + -85.33989 -53.24679 699.20031 + -90.74321 -54.81931 690.21871 + -96.30371 -56.39048 681.24853 + -96.30371 -56.39048 681.24853 + -102.02120 -57.95897 672.29047 + -107.89543 -59.52515 663.34526 + -113.92613 -61.08838 654.41365 + -120.11299 -62.64835 645.49642 + -126.45570 -64.20526 636.59432 + -126.45570 -64.20526 636.59432 + -135.59652 -66.37700 624.15825 + -145.04093 -68.54179 611.75566 + -154.78784 -70.69830 599.38895 + -164.83605 -72.84615 587.06053 + -175.18440 -74.98620 574.77280 + -175.18440 -74.98620 574.77280 + -184.94332 -75.14138 563.40140 + -194.72106 -75.29432 552.06937 + -204.52218 -75.50128 540.77880 + -214.35374 -75.76244 529.53178 + -224.25819 -76.89530 518.33040 + -224.25819 -76.89530 518.33040 + -234.37455 -78.67513 507.17674 + -244.69660 -80.05976 496.07298 + -255.17297 -81.04919 485.02134 + -265.75227 -81.64342 474.02405 + -276.38313 -81.84245 463.08334 + -276.38313 -81.84246 463.08334 + -288.61870 -81.84410 450.57438 + -300.85452 -81.84575 438.14668 + -313.09058 -81.84739 425.80369 + -325.35331 -82.37921 413.54886 + -337.75220 -83.51774 401.38565 + -337.75220 -83.51775 401.38565 + -350.33312 -84.79828 389.31749 + -363.11015 -86.14427 377.34797 + -376.09467 -87.57877 365.48073 + -389.30095 -89.10864 353.71945 + -402.74173 -90.71032 342.06777 + -402.74173 -90.71032 342.06777 + -416.42883 -92.40375 330.52941 + -430.37366 -94.16141 319.10829 + -444.58674 -95.99247 307.80841 + -459.07906 -97.89693 296.63378 + -473.77499 -98.13705 285.58840 + -473.77499 -98.13706 285.58840 + -488.26974 -95.71832 274.67645 + -502.37584 -92.91991 263.90200 + -516.03124 -89.68896 253.26887 + -529.17133 -86.02625 242.78091 + -541.73427 -81.98591 232.44195 + -541.73427 -81.98588 232.44195 + -541.89818 -81.92817 232.30466 + -542.06198 -81.87040 232.16740 + -542.22567 -81.81254 232.03017 + -542.38923 -81.75461 231.89296 + -542.55268 -81.69661 231.75579 + -542.55268 -81.69670 231.75579 + -542.71602 -81.63904 231.61864 + -542.87924 -81.58135 231.48151 + -543.04234 -81.52363 231.34442 + -543.20533 -81.46588 231.20735 + -543.36821 -81.40810 231.07031 + -543.36821 -81.40809 231.07031 + -546.28008 -80.36130 228.60827 + -549.15411 -79.30552 226.15515 + -551.98995 -78.23945 223.71100 + -554.78723 -77.16310 221.27586 + -557.54559 -76.07775 218.84977 + -557.54559 -76.07775 218.84977 + -566.45313 -72.36698 210.82888 + -574.90966 -68.55605 202.91074 + -582.90200 -64.63059 195.09682 + -590.41642 -60.59061 187.38857 + -597.43974 -56.45044 179.78742 + -597.43974 -56.45044 179.78742 + -600.76316 -54.32667 176.02745 + -603.95844 -52.17784 172.29472 + -607.02393 -50.00036 168.58937 + -609.95791 -47.79423 164.91155 + -612.75874 -45.56302 161.26139 + -612.75884 -45.56236 161.26139 + -617.12566 -41.76405 155.23965 + -621.10933 -37.89606 149.29565 + -624.70222 -33.94841 143.42985 + -627.89636 -29.92108 137.64271 + -630.68602 -25.88146 131.93467 + -630.68505 -25.85865 131.93467 + -632.67140 -22.60303 127.31338 + -634.39417 -19.42902 122.74569 + -635.85992 -16.33380 118.23172 + -637.07504 -13.31625 113.77159 + -638.04592 -10.37702 109.36543 + -638.04594 -10.37725 109.36543 + -638.98860 -8.44000 104.06524 + -639.72554 -6.25071 98.84556 + -640.22916 -3.77400 93.70644 + -640.47078 -1.01061 88.64794 + -640.42294 2.00307 83.67013 + -640.42294 2.00307 83.67013 + -638.31088 28.09421 76.83733 + -632.56550 53.99385 70.16220 + -623.18211 80.11818 63.64244 + -610.11123 106.69647 57.27572 + -593.28434 133.76260 51.05972 + -593.32616 134.08264 51.05972 + -572.61018 161.94337 44.99132 + -548.02159 188.95618 39.06435 + -519.80461 213.77989 33.27188 + -488.26363 236.45189 27.60700 + -453.69733 256.99709 22.06278 + -453.82907 257.88408 22.06278 + -416.40111 276.45431 16.63139 + -376.51636 292.99954 11.30280 + -334.53249 305.87496 6.06674 + -291.20263 311.65193 0.91297 + -247.73509 307.46159 -4.16879 + -247.46596 306.89880 -4.16879 + -205.38056 292.91167 -9.18970 + -165.79716 271.50016 -14.16003 + -129.56431 245.72151 -19.08866 + -97.10424 217.60488 -23.98446 + -68.74200 187.19426 -28.85633 + -68.78843 186.96482 -28.85633 + -44.88321 154.16365 -33.71256 + -25.72907 119.08123 -38.55786 + -11.64838 81.68622 -43.39563 + -2.96475 41.98067 -48.22933 + 0.00004 0.00021 -53.06237 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -30155,52 +30291,52 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -3.12560 1.16620 4.49111 0.40666 0.67950 0.34870 3.85106 - -3.19420 2.33240 8.98222 0.81331 0.62993 0.34870 3.85106 - -3.26280 3.49860 13.47333 1.21997 0.61341 0.34870 3.85106 - -3.33140 4.66480 17.96445 1.62663 0.60514 0.34870 3.85106 - -3.40000 5.83100 21.33278 1.93162 0.60019 0.34870 3.85106 - -3.40000 5.83100 22.78290 2.06292 0.60019 0.34870 3.85106 - -3.42000 6.17100 23.76492 2.15184 0.59880 0.34870 3.85106 - -3.44000 6.51100 25.07428 2.27040 0.59756 0.34870 3.85106 - -3.46000 6.85100 26.38364 2.38896 0.59644 0.34870 3.85106 - -3.48000 7.19100 27.69300 2.50752 0.59543 0.34870 3.85106 - -3.50000 7.53100 28.67503 2.59644 0.59451 0.34870 3.85106 - -3.50000 7.53100 15.16627 3.62724 0.80423 0.48114 2.01176 - -3.58000 7.56220 15.03793 3.64454 0.80391 0.48194 1.98857 - -3.66000 7.59340 14.91285 3.66630 0.80361 0.48283 1.96392 - -3.74000 7.62460 14.82611 3.68739 0.80330 0.48362 1.94451 - -3.82000 7.65580 14.76580 3.70819 0.80300 0.48436 1.92871 - -3.90000 7.68700 14.73291 3.72368 0.80270 0.48491 1.91855 - -3.90000 7.68700 14.72194 3.73012 0.80270 0.48513 1.91469 - -3.92000 7.69480 14.71612 3.73398 0.80233 0.48526 1.91248 - -3.94000 7.70260 14.70905 3.73912 0.80197 0.48544 1.90962 - -3.96000 7.71040 14.70276 3.74426 0.80161 0.48561 1.90687 - -3.98000 7.71820 14.69718 3.74940 0.80125 0.48579 1.90422 - -4.00000 7.72600 14.69343 3.75324 0.80090 0.48592 1.90230 - -4.00000 7.72600 14.68719 3.76094 0.80407 0.48618 1.89861 - -4.10000 7.76500 14.67718 3.78015 0.78976 0.48682 1.89017 - -4.20000 7.80400 14.67358 3.80572 0.78019 0.48766 1.88026 - -4.30000 7.84300 14.67933 3.83128 0.77072 0.48850 1.87165 - -4.40000 7.88200 14.69244 3.85681 0.76134 0.48932 1.86405 - -4.50000 7.92100 14.70605 3.87596 0.75205 0.48993 1.85888 - -4.50000 7.92100 14.71686 3.88871 0.75205 0.49033 1.85567 - -4.60000 7.96000 14.73530 3.90785 0.74286 0.49094 1.85117 - -4.70000 7.99900 14.76313 3.93336 0.73375 0.49173 1.84562 - -4.80000 8.03800 14.79431 3.95886 0.72474 0.49252 1.84055 - -4.90000 8.07700 14.82833 3.98436 0.71581 0.49330 1.83587 - -5.00000 8.11600 14.85538 4.00348 0.70696 0.49388 1.83258 - -5.00000 8.11600 14.87798 4.01878 0.88810 0.49434 1.83009 - -5.14000 8.17060 14.91928 4.04555 0.66540 0.49514 1.82597 - -5.28000 8.22520 14.97708 4.08124 0.65562 0.49619 1.82088 - -5.42000 8.27980 15.03770 4.11693 0.64596 0.49723 1.81619 - -5.56000 8.33440 15.10068 4.15262 0.63643 0.49825 1.81185 - -5.70000 8.38900 15.14920 4.17938 0.62702 0.49901 1.80878 - -5.70000 8.38900 28.99264 -1.24264 0.59204 0.00000 3.64153 - -5.83000 6.67970 26.40204 -1.92982 0.53716 0.00000 3.95258 - -5.96000 4.97040 22.94704 -2.84515 0.44454 0.00000 4.61674 - -6.09000 3.26110 19.49087 -3.75928 0.25481 0.00000 5.97678 - -6.22000 1.55180 16.03334 -4.67201 0.00000 0.00000 10.33209 + -3.12560 1.16620 4.49111 0.40666 0.65948 0.34870 3.85106 + -3.19420 2.33240 8.98222 0.81331 0.62095 0.34870 3.85106 + -3.26280 3.49860 13.47333 1.21997 0.60810 0.34870 3.85106 + -3.33140 4.66480 17.96445 1.62663 0.60168 0.34870 3.85106 + -3.40000 5.83100 21.33278 1.93162 0.59783 0.34870 3.85106 + -3.40000 5.83100 22.78290 2.06292 0.59783 0.34870 3.85106 + -3.42000 6.17100 23.76492 2.15184 0.59698 0.34870 3.85106 + -3.44000 6.51100 25.07428 2.27040 0.59622 0.34870 3.85106 + -3.46000 6.85100 26.38364 2.38896 0.59553 0.34870 3.85106 + -3.48000 7.19100 27.69300 2.50752 0.59491 0.34870 3.85106 + -3.50000 7.53100 28.67503 2.59644 0.59435 0.34870 3.85106 + -3.50000 7.53100 15.16627 3.62724 0.80406 0.48114 2.01176 + -3.58000 7.56220 15.03793 3.64454 0.80432 0.48194 1.98857 + -3.66000 7.59340 14.91285 3.66630 0.80457 0.48283 1.96392 + -3.74000 7.62460 14.82611 3.68739 0.80482 0.48362 1.94451 + -3.82000 7.65580 14.76580 3.70819 0.80507 0.48436 1.92871 + -3.90000 7.68700 14.73291 3.72368 0.80532 0.48491 1.91855 + -3.90000 7.68700 14.72194 3.73012 0.80532 0.48513 1.91469 + -3.92000 7.69480 14.71612 3.73398 0.80538 0.48526 1.91248 + -3.94000 7.70260 14.70905 3.73912 0.80531 0.48544 1.90962 + -3.96000 7.71040 14.70276 3.74426 0.80525 0.48561 1.90687 + -3.98000 7.71820 14.69718 3.74940 0.80518 0.48579 1.90422 + -4.00000 7.72600 14.69343 3.75324 0.80512 0.48592 1.90230 + -4.00000 7.72600 14.68719 3.76094 0.80512 0.48618 1.89861 + -4.10000 7.76500 14.67718 3.78015 0.80480 0.48682 1.89017 + -4.20000 7.80400 14.67358 3.80572 0.80448 0.48766 1.88026 + -4.30000 7.84300 14.67933 3.83128 0.80417 0.48850 1.87165 + -4.40000 7.88200 14.69244 3.85681 0.80385 0.48932 1.86405 + -4.50000 7.92100 14.70605 3.87596 0.80355 0.48993 1.85888 + -4.50000 7.92100 14.71686 3.88871 0.80355 0.49033 1.85567 + -4.60000 7.96000 14.73530 3.90785 0.80324 0.49094 1.85117 + -4.70000 7.99900 14.76313 3.93336 0.80294 0.49173 1.84562 + -4.80000 8.03800 14.79431 3.95886 0.80264 0.49252 1.84055 + -4.90000 8.07700 14.82833 3.98436 0.80234 0.49330 1.83587 + -5.00000 8.11600 14.85538 4.00348 0.80205 0.49388 1.83258 + -5.00000 8.11600 14.87798 4.01878 0.80205 0.49434 1.83009 + -5.14000 8.17060 14.91928 4.04555 0.80164 0.49514 1.82597 + -5.28000 8.22520 14.97708 4.08124 0.80124 0.49619 1.82088 + -5.42000 8.27980 15.03770 4.11693 0.80084 0.49723 1.81619 + -5.56000 8.33440 15.10068 4.15262 0.80045 0.49825 1.81185 + -5.70000 8.38900 15.14920 4.17938 0.80007 0.49901 1.80878 + -5.70000 8.38900 28.99264 -1.24264 0.76509 0.00000 3.64153 + -5.83000 6.67970 26.40204 -1.92982 0.75467 0.00000 3.95258 + -5.96000 4.97040 22.94704 -2.84515 0.73939 0.00000 4.61674 + -6.09000 3.26110 19.49087 -3.75928 0.70808 0.00000 5.97678 + -6.22000 1.55180 16.03334 -4.67201 0.60781 0.00000 10.33209 -6.35000 0.00000 13.43923 -5.35558 0.00000 0.00000 0.00000 -6.35000 0.00000 11.70926 -5.81070 0.00000 0.00000 0.00000 -6.48000 0.00000 9.11334 -6.49241 0.00000 0.00000 0.00000 @@ -30225,91 +30361,91 @@ Lambda passive -8.79400 5.63006 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 6.82456 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 8.01907 0.00000 0.00000 0.00000 0.00000 0.00000 - -9.24250 9.21357 23.12477 3.17779 0.43063 0.35646 2.59393 - -9.24250 9.21357 28.68607 3.95537 0.43063 0.41582 3.01571 - -9.39200 10.40808 31.23759 4.32921 0.45482 0.41595 3.00128 - -9.54150 11.60258 34.62766 4.82798 0.47402 0.41611 2.98448 - -9.69100 12.79709 38.00976 5.32709 0.48964 0.41627 2.97019 - -9.84050 13.99159 41.38926 5.82649 0.50260 0.41643 2.95815 - -9.99000 15.18610 43.92430 6.20120 0.51351 0.41654 2.95042 - -9.99000 15.18610 44.78091 6.32779 0.51351 0.41657 2.94803 - -9.99200 15.20208 44.81484 6.33281 0.51127 0.41658 2.94794 - -9.99400 15.21806 44.86008 6.33950 0.50903 0.41658 2.94782 - -9.99600 15.23404 44.90533 6.34618 0.50679 0.41658 2.94770 - -9.99800 15.25002 44.95057 6.35287 0.50456 0.41658 2.94757 - -10.00000 15.26600 44.98450 6.35788 0.50234 0.41658 2.94748 - -10.00000 15.26600 43.82163 2.66837 0.60728 0.17476 2.87003 - -10.00200 15.27678 43.83783 2.67272 0.60619 0.17495 2.86957 - -10.00400 15.28756 43.85944 2.67850 0.60511 0.17521 2.86896 - -10.00600 15.29834 43.88104 2.68430 0.60403 0.17546 2.86835 - -10.00800 15.30912 43.90263 2.69008 0.60295 0.17572 2.86774 - -10.01000 15.31990 43.91885 2.69443 0.60187 0.17591 2.86729 - -10.01000 15.31990 44.02147 2.72193 0.60187 0.17711 2.86441 - -10.04600 15.51394 44.31318 2.80009 0.60184 0.18049 2.85635 - -10.08200 15.70798 44.70221 2.90433 0.60182 0.18490 2.84583 - -10.11800 15.90202 45.09134 3.00858 0.60179 0.18919 2.83557 - -10.15400 16.09606 45.48056 3.11284 0.60176 0.19339 2.82557 - -10.19000 16.29010 45.77253 3.19104 0.60173 0.19647 2.81823 - -10.19000 16.29010 46.19437 3.30402 0.60173 0.20083 2.80786 - -10.31000 16.93690 47.16819 3.56478 0.60614 0.21047 2.78494 - -10.43000 17.58370 48.46727 3.91258 0.61022 0.22251 2.75637 - -10.55000 18.23050 49.76704 4.26050 0.61401 0.23370 2.72988 - -10.67000 18.87730 51.06740 4.60854 0.61754 0.24413 2.70523 - -10.79000 19.52410 52.04299 4.86964 0.62084 0.25150 2.68784 - -10.79000 19.52410 52.53089 5.00021 0.53348 0.25505 2.67947 - -10.85000 19.84750 53.01885 5.13080 0.63242 0.25851 2.67131 - -10.91000 20.17090 53.66956 5.30494 0.62661 0.26300 2.66074 - -10.97000 20.49430 54.32035 5.47910 0.62098 0.26735 2.65051 - -11.03000 20.81770 54.97124 5.65329 0.61553 0.27156 2.64060 - -11.09000 21.14110 55.45946 5.78395 0.61025 0.27464 2.63337 - -11.09000 21.14110 55.89346 5.90010 1.33726 0.27731 2.62708 - -11.19000 21.68010 56.70732 6.11791 0.50630 0.28219 2.61564 - -11.29000 22.21910 57.79262 6.40837 0.50703 0.28842 2.60103 - -11.39000 22.75810 58.87808 6.69889 0.50772 0.29435 2.58713 - -11.49000 23.29710 59.96369 6.98947 0.50838 0.30001 2.57387 - -11.59000 23.83610 60.77797 7.20743 0.50902 0.30409 2.56433 - -11.59000 23.83610 61.27201 7.33968 0.50902 0.30650 2.55869 - -11.67200 24.27808 61.93981 7.51845 0.50864 0.30968 2.55126 - -11.75400 24.72006 62.83027 7.75683 0.50827 0.31379 2.54167 - -11.83600 25.16204 63.72080 7.99525 0.50792 0.31775 2.53242 - -11.91800 25.60402 64.61138 8.23370 0.50758 0.32158 2.52349 - -12.00000 26.04600 65.27935 8.41255 0.50725 0.32436 2.51699 - -12.00000 26.04600 47.38713 14.30649 0.54223 0.53296 1.76533 - -12.10000 29.23500 51.11058 15.86934 0.56526 0.54282 1.74827 - -12.20000 32.42400 56.06909 17.95316 0.58376 0.55370 1.72925 - -12.30000 35.61300 61.02029 20.03697 0.59895 0.56263 1.71343 - -12.40000 38.80200 65.96424 22.12080 0.61164 0.57009 1.70002 - -12.50000 41.99100 69.66773 23.68367 0.62241 0.57493 1.69122 - -12.50000 41.99100 208.79402 13.66035 0.38487 0.32258 4.93047 - -12.64000 43.41760 205.89098 14.01175 0.38767 0.32272 4.74211 - -12.78000 44.84420 206.74419 14.47982 0.39029 0.32289 4.61028 - -12.92000 46.27080 209.90982 14.94738 0.39275 0.32304 4.53655 - -13.06000 47.69740 214.14502 15.41450 0.39506 0.32317 4.48966 - -13.20000 49.12400 217.71253 15.76459 0.39724 0.32326 4.46431 - -13.20000 49.12400 220.23214 15.99786 0.39724 0.32332 4.45087 - -13.34000 50.55060 224.16343 16.34759 0.39929 0.32339 4.43444 - -13.48000 51.97720 229.59410 16.81364 0.40124 0.32348 4.41721 - -13.62000 53.40380 235.19066 17.27942 0.40308 0.32356 4.40401 - -13.76000 54.83040 240.90655 17.74493 0.40482 0.32363 4.39367 - -13.90000 56.25700 245.25060 18.09393 0.40647 0.32368 4.38728 - -13.90000 56.25700 248.17124 18.32652 0.55286 0.32371 4.38359 - -14.04000 57.68360 252.58250 18.67531 0.55286 0.32375 4.37876 - -14.18000 59.11020 258.50622 19.14021 0.55286 0.32381 4.37329 - -14.32000 60.53680 264.47107 19.60494 0.55286 0.32385 4.36877 - -14.46000 61.96340 270.46885 20.06952 0.55286 0.32389 4.36498 - -14.60000 63.39000 274.98428 20.41786 0.55286 0.32392 4.36252 - -14.60000 63.39000 278.00240 20.65005 0.55286 0.32394 4.36105 - -14.74000 64.81660 282.53975 20.99827 0.55286 0.32396 4.35906 - -14.88000 66.24320 288.60433 21.46247 0.55286 0.32400 4.35674 - -15.02000 67.66980 294.68409 21.92657 0.55286 0.32402 4.35474 - -15.16000 69.09640 300.77666 22.39057 0.55286 0.32405 4.35300 - -15.30000 70.52300 305.35301 22.73851 0.55286 0.32407 4.35184 - -15.30000 70.52300 308.40719 22.97045 0.55286 0.32408 4.35114 - -15.44000 71.94960 312.99283 23.31831 0.55286 0.32409 4.35017 - -15.58000 73.37620 319.11356 23.78207 0.55286 0.32411 4.34901 - -15.72000 74.80280 325.24120 24.24576 0.55286 0.32413 4.34798 - -15.86000 76.22940 331.37485 24.70939 0.55286 0.32415 4.34707 - -16.00000 77.65600 335.97842 25.05707 0.55286 0.32416 4.34646 + -9.24250 9.21357 23.12477 3.17779 0.65048 0.35646 2.59393 + -9.24250 9.21357 28.68607 3.95537 0.65048 0.41582 3.01571 + -9.39200 10.40808 31.23759 4.32921 0.65048 0.41595 3.00128 + -9.54150 11.60258 34.62766 4.82798 0.65048 0.41611 2.98448 + -9.69100 12.79709 38.00976 5.32709 0.65048 0.41627 2.97019 + -9.84050 13.99159 41.38926 5.82649 0.65048 0.41643 2.95815 + -9.99000 15.18610 43.92430 6.20120 0.65048 0.41654 2.95042 + -9.99000 15.18610 44.78091 6.32779 0.65048 0.41657 2.94803 + -9.99200 15.20208 44.81484 6.33281 0.65048 0.41658 2.94794 + -9.99400 15.21806 44.86008 6.33950 0.65048 0.41658 2.94782 + -9.99600 15.23404 44.90533 6.34618 0.47431 0.41658 2.94770 + -9.99800 15.25002 44.95057 6.35287 0.47441 0.41658 2.94757 + -10.00000 15.26600 44.98450 6.35788 0.47452 0.41658 2.94748 + -10.00000 15.26600 43.82163 2.66837 0.57946 0.17476 2.87003 + -10.00200 15.27678 43.83783 2.67272 0.62299 0.17495 2.86957 + -10.00400 15.28756 43.85944 2.67850 0.62304 0.17521 2.86896 + -10.00600 15.29834 43.88104 2.68430 0.62309 0.17546 2.86835 + -10.00800 15.30912 43.90263 2.69008 0.62315 0.17572 2.86774 + -10.01000 15.31990 43.91885 2.69443 0.62320 0.17591 2.86729 + -10.01000 15.31990 44.02147 2.72193 0.62320 0.17711 2.86441 + -10.04600 15.51394 44.31318 2.80009 0.62415 0.18049 2.85635 + -10.08200 15.70798 44.70221 2.90433 0.62508 0.18490 2.84583 + -10.11800 15.90202 45.09134 3.00858 0.62599 0.18919 2.83557 + -10.15400 16.09606 45.48056 3.11284 0.62687 0.19339 2.82557 + -10.19000 16.29010 45.77253 3.19104 0.62773 0.19647 2.81823 + -10.19000 16.29010 46.19437 3.30402 0.62773 0.20083 2.80786 + -10.31000 16.93690 47.16819 3.56478 0.63047 0.21047 2.78494 + -10.43000 17.58370 48.46727 3.91258 0.63300 0.22251 2.75637 + -10.55000 18.23050 49.76704 4.26050 0.63535 0.23370 2.72988 + -10.67000 18.87730 51.06740 4.60854 0.63754 0.24413 2.70523 + -10.79000 19.52410 52.04299 4.86964 0.63959 0.25150 2.68784 + -10.79000 19.52410 52.53089 5.00021 0.63959 0.25505 2.67947 + -10.85000 19.84750 53.01885 5.13080 0.64056 0.25851 2.67131 + -10.91000 20.17090 53.66956 5.30494 0.64150 0.26300 2.66074 + -10.97000 20.49430 54.32035 5.47910 0.64241 0.26735 2.65051 + -11.03000 20.81770 54.97124 5.65329 0.64330 0.27156 2.64060 + -11.09000 21.14110 55.45946 5.78395 0.64415 0.27464 2.63337 + -11.09000 21.14110 55.89346 5.90010 0.64415 0.27731 2.62708 + -11.19000 21.68010 56.70732 6.11791 0.64552 0.28219 2.61564 + -11.29000 22.21910 57.79262 6.40837 0.64683 0.28842 2.60103 + -11.39000 22.75810 58.87808 6.69889 0.64807 0.29435 2.58713 + -11.49000 23.29710 59.96369 6.98947 0.64926 0.30001 2.57387 + -11.59000 23.83610 60.77797 7.20743 0.65039 0.30409 2.56433 + -11.59000 23.83610 61.27201 7.33968 0.65039 0.30650 2.55869 + -11.67200 24.27808 61.93981 7.51845 0.65128 0.30968 2.55126 + -11.75400 24.72006 62.83027 7.75683 0.65214 0.31379 2.54167 + -11.83600 25.16204 63.72080 7.99525 0.65297 0.31775 2.53242 + -11.91800 25.60402 64.61138 8.23370 0.65376 0.32158 2.52349 + -12.00000 26.04600 65.27935 8.41255 0.65454 0.32436 2.51699 + -12.00000 26.04600 47.38713 14.30649 0.68952 0.53296 1.76533 + -12.10000 29.23500 51.11058 15.86934 0.70690 0.54282 1.74827 + -12.20000 32.42400 56.06909 17.95316 0.71027 0.55370 1.72925 + -12.30000 35.61300 61.02029 20.03697 0.71304 0.56263 1.71343 + -12.40000 38.80200 65.96424 22.12080 0.71535 0.57009 1.70002 + -12.50000 41.99100 69.66773 23.68367 0.71731 0.57493 1.69122 + -12.50000 41.99100 208.79402 13.66035 0.47977 0.32258 4.93047 + -12.64000 43.41760 205.89098 14.01175 0.42846 0.32272 4.74211 + -12.78000 44.84420 206.74419 14.47982 0.42979 0.32289 4.61028 + -12.92000 46.27080 209.90982 14.94738 0.43103 0.32304 4.53655 + -13.06000 47.69740 214.14502 15.41450 0.43220 0.32317 4.48966 + -13.20000 49.12400 217.71253 15.76459 0.43330 0.32326 4.46431 + -13.20000 49.12400 220.23214 15.99786 0.43330 0.32332 4.45087 + -13.34000 50.55060 224.16343 16.34759 0.43434 0.32339 4.43444 + -13.48000 51.97720 229.59410 16.81364 0.43532 0.32348 4.41721 + -13.62000 53.40380 235.19066 17.27942 0.43625 0.32356 4.40401 + -13.76000 54.83040 240.90655 17.74493 0.43713 0.32363 4.39367 + -13.90000 56.25700 245.25060 18.09393 0.43796 0.32368 4.38728 + -13.90000 56.25700 248.17124 18.32652 0.43796 0.32371 4.38359 + -14.04000 57.68360 252.58250 18.67531 0.43876 0.32375 4.37876 + -14.18000 59.11020 258.50622 19.14021 0.43951 0.32381 4.37329 + -14.32000 60.53680 264.47107 19.60494 0.44023 0.32385 4.36877 + -14.46000 61.96340 270.46885 20.06952 0.44092 0.32389 4.36498 + -14.60000 63.39000 274.98428 20.41786 0.44158 0.32392 4.36252 + -14.60000 63.39000 278.00240 20.65005 0.44158 0.32394 4.36105 + -14.74000 64.81660 282.53975 20.99827 0.44220 0.32396 4.35906 + -14.88000 66.24320 288.60433 21.46247 0.44280 0.32400 4.35674 + -15.02000 67.66980 294.68409 21.92657 0.44338 0.32402 4.35474 + -15.16000 69.09640 300.77666 22.39057 0.44393 0.32405 4.35300 + -15.30000 70.52300 305.35301 22.73851 0.44446 0.32407 4.35184 + -15.30000 70.52300 308.40719 22.97045 0.44446 0.32408 4.35114 + -15.44000 71.94960 312.99283 23.31831 0.44497 0.32409 4.35017 + -15.58000 73.37620 319.11356 23.78207 0.44546 0.32411 4.34901 + -15.72000 74.80280 325.24120 24.24576 0.44593 0.32413 4.34798 + -15.86000 76.22940 331.37485 24.70939 0.44638 0.32415 4.34707 + -16.00000 77.65600 335.97842 25.05707 0.44681 0.32416 4.34646 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -30375,52 +30511,52 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00292 0.00000 0.00292 0.00292 302 100 P - 4.49111 0.00000 4.49111 0.79244 302 100 P - 8.98222 0.00000 8.98222 1.46925 302 100 P - 13.47333 0.00000 13.47333 2.14606 302 100 P - 17.96445 0.00000 17.96445 2.82287 302 100 P - 21.33278 0.00000 21.33278 3.32470 302 100 P - 22.78290 0.00000 22.78290 3.55070 302 100 P - 23.76492 0.00000 23.76492 3.69520 302 100 P - 25.07428 0.00000 25.07428 3.89071 302 100 P - 26.38364 0.00000 26.38364 4.08623 302 100 P - 27.69300 0.00000 27.69300 4.28174 302 100 P - 28.67503 0.00000 28.67503 4.42672 302 100 P - 15.16627 0.00000 15.16627 6.06290 302 100 P - 15.03793 0.78480 15.03793 6.07937 302 100 P - 14.91285 1.56960 14.91285 6.10211 302 100 P - 14.82611 2.35440 14.82611 6.12485 302 100 P - 14.76580 3.13920 14.76580 6.14759 302 100 P - 14.73291 3.92400 14.73291 6.16407 302 100 P - 14.72194 3.92400 14.72194 6.17189 302 100 P - 14.71612 4.12020 14.71612 6.17381 302 100 P - 14.70905 4.31640 14.70905 6.17728 302 100 P - 14.70276 4.51260 14.70276 6.18076 302 100 P - 14.69718 4.70880 14.69718 6.18424 302 100 P - 14.69343 4.90500 14.69343 6.18616 302 100 P - 14.68719 4.90500 14.68719 6.22011 302 100 P - 14.67718 5.88600 14.67718 6.13247 302 100 P - 14.67358 6.86700 14.67358 6.08861 302 100 P - 14.67933 7.84800 14.67933 6.04475 302 100 P - 14.69244 8.82900 14.69244 6.00088 302 100 P - 14.70605 9.81000 14.70605 5.94969 302 100 P - 14.71686 9.81000 14.71686 5.96435 302 100 P - 14.73530 10.79100 14.73530 5.91316 302 100 P - 14.76313 11.77200 14.76313 5.86929 302 100 P - 14.79431 12.75300 14.79431 5.82543 302 100 P - 14.82833 13.73400 14.82833 5.78157 302 100 P - 14.85538 14.71500 14.85538 5.73081 302 100 P - 14.87798 14.71500 14.87798 7.21993 302 100 P - 14.91928 16.08840 14.91928 5.43675 302 100 P - 14.97708 17.46180 14.97708 5.39259 302 100 P - 15.03770 18.83520 15.03770 5.34842 302 100 P - 15.10068 20.20860 15.10068 5.30426 302 100 P - 15.14920 21.58200 15.14920 5.25154 302 100 P - 28.99264 21.58200 28.99264 4.71365 302 100 P - 26.40204 25.39730 26.40204 3.58809 302 100 P - 22.94704 29.21260 22.94704 2.20953 302 100 P - 19.49087 33.02790 19.49087 0.83097 302 100 P - 16.03334 36.84320 16.03334 0.00000 302 100 P + 4.49111 0.00000 4.49111 0.76908 302 100 P + 8.98222 0.00000 8.98222 1.44830 302 100 P + 13.47333 0.00000 13.47333 2.12751 302 100 P + 17.96445 0.00000 17.96445 2.80672 302 100 P + 21.33278 0.00000 21.33278 3.31164 302 100 P + 22.78290 0.00000 22.78290 3.53675 302 100 P + 23.76492 0.00000 23.76492 3.68395 302 100 P + 25.07428 0.00000 25.07428 3.88198 302 100 P + 26.38364 0.00000 26.38364 4.08000 302 100 P + 27.69300 0.00000 27.69300 4.27802 302 100 P + 28.67503 0.00000 28.67503 4.42552 302 100 P + 15.16627 0.00000 15.16627 6.06168 302 100 P + 15.03793 0.78480 15.03793 6.08242 302 100 P + 14.91285 1.56960 14.91285 6.10944 302 100 P + 14.82611 2.35440 14.82611 6.13645 302 100 P + 14.76580 3.13920 14.76580 6.16346 302 100 P + 14.73291 3.92400 14.73291 6.18419 302 100 P + 14.72194 3.92400 14.72194 6.19204 302 100 P + 14.71612 4.12020 14.71612 6.19723 302 100 P + 14.70905 4.31640 14.70905 6.20301 302 100 P + 14.70276 4.51260 14.70276 6.20879 302 100 P + 14.69718 4.70880 14.69718 6.21457 302 100 P + 14.69343 4.90500 14.69343 6.21878 302 100 P + 14.68719 4.90500 14.68719 6.22820 302 100 P + 14.67718 5.88600 14.67718 6.24926 302 100 P + 14.67358 6.86700 14.67358 6.27816 302 100 P + 14.67933 7.84800 14.67933 6.30707 302 100 P + 14.69244 8.82900 14.69244 6.33598 302 100 P + 14.70605 9.81000 14.70605 6.35705 302 100 P + 14.71686 9.81000 14.71686 6.37272 302 100 P + 14.73530 10.79100 14.73530 6.39379 302 100 P + 14.76313 11.77200 14.76313 6.42269 302 100 P + 14.79431 12.75300 14.79431 6.45160 302 100 P + 14.82833 13.73400 14.82833 6.48051 302 100 P + 14.85538 14.71500 14.85538 6.50159 302 100 P + 14.87798 14.71500 14.87798 6.52036 302 100 P + 14.91928 16.08840 14.91928 6.54988 302 100 P + 14.97708 17.46180 14.97708 6.59035 302 100 P + 15.03770 18.83520 15.03770 6.63082 302 100 P + 15.10068 20.20860 15.10068 6.67129 302 100 P + 15.14920 21.58200 15.14920 6.70083 302 100 P + 28.99264 21.58200 28.99264 6.09136 302 100 P + 26.40204 25.39730 26.40204 5.04099 302 100 P + 22.94704 29.21260 22.94704 3.67506 302 100 P + 19.49087 33.02790 19.49087 2.30913 302 100 P + 16.03334 36.84320 16.03334 0.94320 302 100 P 0.00000 40.65850 0.00000 0.00000 302 0 P 0.00000 40.65850 0.00000 0.00000 302 0 P 0.00000 44.47380 0.00000 0.00000 302 0 P @@ -30438,98 +30574,98 @@ Status character 0.00000 68.53457 0.00000 0.00000 302 0 P 0.00000 70.00117 0.00000 0.00000 302 0 P 0.00000 71.46776 0.00000 0.00000 302 0 P - 0.00000 72.93436 0.00000 0.00000 302 100 P + 0.00000 72.93436 0.00000 0.00000 302 0 P 0.00000 74.40095 0.00000 0.00000 302 0 P 0.00000 74.40095 0.00000 0.00000 302 0 P 0.00000 75.86755 0.00000 0.00000 302 0 P 0.00000 77.33414 0.00000 0.00000 302 0 P - 0.00000 78.80074 0.00000 0.00000 302 100 P - 0.00000 80.26733 0.00000 0.00000 302 100 P - 23.12477 81.73392 23.12477 3.83907 302 100 P - 28.68607 81.73392 28.68607 4.09627 302 100 P - 31.23759 83.20052 31.23759 4.73378 302 100 P - 34.62766 84.66711 34.62766 5.49989 302 100 P - 38.00976 86.13371 38.00976 6.26601 302 100 P - 41.38926 87.60031 41.38926 7.03212 302 100 P - 43.92430 89.06690 43.92430 7.64488 302 100 P - 44.78091 89.06690 44.78091 7.80028 302 100 P - 44.81484 89.08652 44.81484 7.77232 302 100 P - 44.86008 89.10614 44.86008 7.74642 302 100 P - 44.90533 89.12576 44.90533 7.72051 302 100 P - 44.95057 89.14538 44.95057 7.69460 302 100 P - 44.98450 89.16500 44.98450 7.66668 302 100 P - 43.82163 89.16500 43.82163 9.27233 302 100 P - 43.83783 89.18462 43.83783 9.26069 302 100 P - 43.85944 89.20424 43.85944 9.25068 302 100 P - 43.88104 89.22386 43.88104 9.24067 302 100 P - 43.90263 89.24348 43.90263 9.23067 302 100 P - 43.91885 89.26310 43.91885 9.21903 302 100 P - 44.02147 89.26310 44.02147 9.24985 302 100 P - 44.31318 89.61626 44.31318 9.33699 302 100 P - 44.70221 89.96942 44.70221 9.45332 302 100 P - 45.09134 90.32258 45.09134 9.56964 302 100 P - 45.48056 90.67574 45.48056 9.68597 302 100 P - 45.77253 91.02890 45.77253 9.77311 302 100 P - 46.19437 91.02890 46.19437 9.89960 302 100 P - 47.16819 92.20610 47.16819 10.26610 302 100 P - 48.46727 93.38330 48.46727 10.72990 302 100 P - 49.76704 94.56050 49.76704 11.19370 302 100 P - 51.06740 95.73770 51.06740 11.65750 302 100 P - 52.04299 96.91490 52.04299 12.02091 302 100 P - 52.53089 96.91490 52.53089 10.45882 302 100 P - 53.01885 97.50350 53.01885 12.55192 302 100 P - 53.66956 98.09210 53.66956 12.63925 302 100 P - 54.32035 98.68070 54.32035 12.72659 302 100 P - 54.97124 99.26930 54.97124 12.81393 302 100 P - 55.45946 99.85790 55.45946 12.85193 302 100 P - 55.89346 99.85790 55.89346 28.45130 302 100 P - 56.70732 100.83890 56.70732 10.97663 302 100 P - 57.79262 101.81990 57.79262 11.26570 302 100 P - 58.87808 102.80090 58.87808 11.55478 302 100 P - 59.91678 103.78190 59.96369 11.84386 220 99 2 - 58.84880 104.76290 60.77797 12.06435 220 97 2 - 59.06528 104.76290 61.27201 12.18918 220 96 2 - 58.19908 105.56732 61.93981 12.34872 220 94 2 - 57.44385 106.37174 62.83027 12.56451 220 91 2 - 56.70206 107.17616 63.72080 12.78030 220 89 2 - 55.97376 107.98058 64.61138 12.99608 220 87 2 - 55.16146 108.78500 65.27935 13.15582 220 85 2 - 47.38713 108.78500 47.38713 14.55527 302 100 P - 51.11058 106.76600 51.11058 16.52547 302 100 P - 56.06909 104.74700 56.06909 18.92797 302 100 P - 61.02029 102.72800 61.02029 21.33046 302 100 P - 65.96424 100.70900 65.96424 23.73296 302 100 P - 69.66773 98.69000 69.66773 25.63925 302 100 P - 208.79402 98.69000 208.79402 16.29814 302 100 P - 205.89098 100.06340 205.89098 16.83150 302 100 P - 206.74419 101.43680 206.74419 17.50212 302 100 P - 209.90982 102.81020 209.90982 18.17273 302 100 P - 214.14502 104.18360 214.14502 18.84335 302 100 P - 217.71253 105.55700 217.71253 19.37229 302 100 P - 220.23214 105.55700 220.23214 19.65564 302 100 P - 224.16343 106.93040 224.16343 20.18458 302 100 P - 208.87725 108.30380 229.59410 20.85520 220 91 2 - 193.74524 109.67720 235.19066 21.52582 220 82 2 - 179.04125 111.05060 240.90655 22.19644 220 74 2 - 164.14913 112.42400 245.25060 22.72208 220 67 2 - 167.38873 112.42400 248.17124 31.29949 220 67 2 - 152.87745 113.79740 252.58250 31.89102 220 61 2 - 139.29169 115.17080 258.50622 32.67974 220 54 2 - 107.29166 116.54420 264.47107 33.46845 110 41 1 - 46.16545 117.91760 270.46885 34.25716 110 17 1 - 20.41786 119.29100 274.98428 34.84869 1 0 A - 20.65005 119.29100 278.00240 35.24305 1 0 A - 20.99827 120.66440 282.53975 35.83458 1 0 A - 21.46247 122.03780 288.60433 36.62329 1 0 A - 21.92657 123.41120 294.68409 37.41201 1 0 A - 22.39057 124.78460 300.77666 38.20072 1 0 A - 22.73851 126.15800 305.35301 38.79225 1 0 A - 22.97045 126.15800 308.40719 39.18661 1 0 A - 23.31831 127.53140 312.99283 39.77814 1 0 A - 23.78207 128.90480 319.11356 40.56685 1 0 A - 24.24576 130.27820 325.24120 41.35557 1 0 A - 24.70939 131.65160 331.37485 42.14428 1 0 A - 25.05707 133.02500 335.97842 42.73581 1 0 A + 0.00000 78.80074 0.00000 0.00000 302 0 P + 0.00000 80.26733 0.00000 0.00000 302 0 P + 23.12477 81.73392 23.12477 5.79901 302 100 P + 28.68607 81.73392 28.68607 6.18752 302 100 P + 31.23759 83.20052 31.23759 6.77027 302 100 P + 34.62766 84.66711 34.62766 7.54727 302 100 P + 38.00976 86.13371 38.00976 8.32428 302 100 P + 41.38926 87.60031 41.38926 9.10128 302 100 P + 43.92430 89.06690 43.92430 9.68403 302 100 P + 44.78091 89.06690 44.78091 9.88088 302 100 P + 44.81484 89.08652 44.81484 9.88868 302 100 P + 44.86008 89.10614 44.86008 9.89907 302 100 P + 44.90533 89.12576 44.90533 7.22560 302 100 P + 44.95057 89.14538 44.95057 7.23483 302 100 P + 44.98450 89.16500 44.98450 7.24216 302 100 P + 43.82163 89.16500 43.82163 8.84762 302 100 P + 43.83783 89.18462 43.83783 9.51723 302 100 P + 43.85944 89.20424 43.85944 9.52477 302 100 P + 43.88104 89.22386 43.88104 9.53231 302 100 P + 43.90263 89.24348 43.90263 9.53985 302 100 P + 43.91885 89.26310 43.91885 9.54571 302 100 P + 44.02147 89.26310 44.02147 9.57762 302 100 P + 44.31318 89.61626 44.31318 9.68308 302 100 P + 44.70221 89.96942 44.70221 9.81877 302 100 P + 45.09134 90.32258 45.09134 9.95446 302 100 P + 45.48056 90.67574 45.48056 10.09015 302 100 P + 45.77253 91.02890 45.77253 10.19539 302 100 P + 46.19437 91.02890 46.19437 10.32735 302 100 P + 47.16819 92.20610 47.16819 10.67814 302 100 P + 48.46727 93.38330 48.46727 11.13045 302 100 P + 49.76704 94.56050 49.76704 11.58275 302 100 P + 51.06740 95.73770 51.06740 12.03505 302 100 P + 52.04299 96.91490 52.04299 12.38394 302 100 P + 52.53089 96.91490 52.53089 12.53907 302 100 P + 53.01885 97.50350 53.01885 12.71351 302 100 P + 53.66956 98.09210 53.66956 12.93966 302 100 P + 54.32035 98.68070 54.32035 13.16581 302 100 P + 54.97124 99.26930 54.97124 13.39197 302 100 P + 55.45946 99.85790 55.45946 13.56604 302 100 P + 55.89346 99.85790 55.89346 13.70492 302 100 P + 56.70732 100.83890 56.70732 13.99504 302 100 P + 57.79262 101.81990 57.79262 14.37196 302 100 P + 58.87808 102.80090 58.87808 14.74888 302 100 P + 59.96369 103.78190 59.96369 15.12580 302 100 P + 59.62918 104.76290 60.77797 15.41508 220 98 2 + 59.85432 104.76290 61.27201 15.57458 220 98 2 + 59.00872 105.56732 61.93981 15.81179 220 95 2 + 58.27799 106.37174 62.83027 16.12086 220 93 2 + 57.56071 107.17616 63.72080 16.42994 220 90 2 + 56.85692 107.98058 64.61138 16.73901 220 88 2 + 56.06505 108.78500 65.27935 16.97576 220 86 2 + 47.38713 108.78500 47.38713 18.50891 302 100 P + 51.11058 106.76600 51.11058 20.66609 302 100 P + 56.06909 104.74700 56.06909 23.02972 302 100 P + 61.02029 102.72800 61.02029 25.39334 302 100 P + 65.96424 100.70900 65.96424 27.75697 302 100 P + 69.66773 98.69000 69.66773 29.54872 302 100 P + 208.79402 98.69000 208.79402 20.31713 302 100 P + 205.89098 100.06340 205.89098 18.60292 302 100 P + 206.74419 101.43680 206.74419 19.27353 302 100 P + 209.90982 102.81020 209.90982 19.94415 302 100 P + 214.14502 104.18360 214.14502 20.61477 302 100 P + 217.71253 105.55700 217.71253 21.13085 302 100 P + 220.23214 105.55700 220.23214 21.43992 302 100 P + 224.16343 106.93040 224.16343 21.95600 302 100 P + 208.94748 108.30380 229.59410 22.62662 220 91 2 + 193.83645 109.67720 235.19066 23.29724 220 82 2 + 179.15293 111.05060 240.90655 23.96785 220 74 2 + 164.27788 112.42400 245.25060 24.48227 220 67 2 + 165.45122 112.42400 248.17124 24.79467 220 67 2 + 150.93989 113.79740 252.58250 25.30909 220 60 2 + 137.34316 115.17080 258.50622 25.97971 220 53 2 + 99.45124 116.54420 264.47107 26.65032 110 38 1 + 38.27653 117.91760 270.46885 27.32094 110 14 1 + 20.41786 119.29100 274.98428 27.83407 1 0 A + 20.65005 119.29100 278.00240 28.14905 1 0 A + 20.99827 120.66440 282.53975 28.66218 1 0 A + 21.46247 122.03780 288.60433 29.33279 1 0 A + 21.92657 123.41120 294.68409 30.00341 1 0 A + 22.39057 124.78460 300.77666 30.67403 1 0 A + 22.73851 126.15800 305.35301 31.18613 1 0 A + 22.97045 126.15800 308.40719 31.50316 1 0 A + 23.31831 127.53140 312.99283 32.01526 1 0 A + 23.78207 128.90480 319.11356 32.68588 1 0 A + 24.24576 130.27820 325.24120 33.35650 1 0 A + 24.70939 131.65160 331.37485 34.02711 1 0 A + 25.05707 133.02500 335.97842 34.53837 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -30548,9 +30684,9 @@ Layer name -3.50 32.669 'Hollandveen' -5.70 12.918 'Oude Zeeklei' -7.00 29.322 'Wadzand' - -10.00 106.661 'Hydrobiaklei' + -10.00 107.052 'Hydrobiaklei' -12.00 29.269 'Basisveen' - -12.50 394.244 'Eerste zandlaag' + -12.50 391.410 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -30571,9 +30707,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 2.21 'Oude Zeeklei' -7.00 7.13 'Wadzand' - -10.00 18.25 'Hydrobiaklei' + -10.00 18.31 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 123.78 'Eerste zandlaag' + -12.50 122.89 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -30839,131 +30975,131 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -4.60000 0.03900 2.03901 0.00000 0.55406 0.00000 52.28375 - -4.70000 0.07799 2.09869 0.00000 0.55439 0.00000 26.90945 - -4.80000 0.11697 2.15837 0.00000 0.55496 0.00000 18.45251 - -4.90000 0.15593 2.21806 0.00000 0.55574 0.00000 14.22495 - -5.00000 0.19486 2.26282 0.00000 0.55673 0.00000 12.22313 - -5.00000 0.19486 2.29863 0.00000 0.55673 0.00000 11.02613 - -5.14000 0.24931 2.36130 0.00000 0.56555 0.00000 9.47141 - -5.28000 0.30368 2.44486 0.00000 0.57222 0.00000 8.05077 - -5.42000 0.35796 2.52841 0.00000 0.57785 0.00000 7.06335 - -5.56000 0.41215 2.61197 0.00000 0.58297 0.00000 6.33749 - -5.70000 0.46622 2.67464 0.00000 0.58784 0.00000 5.90813 - -5.70000 0.46622 14.83680 0.00000 0.55272 0.00000 18.57495 - -5.83000 1.79634 16.68124 0.00000 0.69755 0.00000 9.28623 - -5.96000 3.12636 19.30646 0.00000 0.71928 0.00000 6.17538 - -6.09000 4.45628 21.97673 0.00000 0.72814 0.00000 4.93163 - -6.22000 5.78610 24.65883 0.00000 0.73300 0.00000 4.26173 - -6.35000 7.11583 26.67308 0.00000 0.73611 0.00000 3.93211 - -6.35000 7.11583 27.54755 0.00000 0.73611 0.00000 3.69853 - -6.48000 8.44547 29.19620 0.00000 0.73829 0.00000 3.45702 - -6.61000 9.77503 31.85203 0.00000 0.73992 0.00000 3.25851 - -6.74000 11.10450 34.50722 0.00000 0.74120 0.00000 3.10750 - -6.87000 12.43389 37.16185 0.00000 0.74224 0.00000 2.98875 - -7.00000 13.76322 39.15252 0.00000 0.74311 0.00000 2.91511 - -7.00000 13.76322 40.96268 0.00000 0.63808 0.00000 2.91312 - -7.14950 14.95606 43.20864 0.00000 0.63862 0.00000 2.88904 - -7.29900 16.14883 46.32406 0.00000 0.63912 0.00000 2.86857 - -7.44850 17.34153 49.51148 0.00000 0.63957 0.00000 2.85508 - -7.59800 18.53417 52.75278 7.09260 0.63999 0.38268 2.84624 - -7.74750 19.72676 55.20954 8.11659 0.64037 0.41777 2.84166 - -7.74750 19.72676 56.85775 8.36683 0.64189 0.41782 2.83935 - -7.89700 20.91931 59.34211 8.74212 0.63700 0.41790 2.83671 - -8.04650 22.11182 62.67047 9.24243 0.63428 0.41799 2.83425 - -8.19600 23.30431 66.01355 9.92611 0.63185 0.42593 2.83268 - -8.34550 24.49678 69.44440 10.51844 0.62967 0.42938 2.83484 - -8.49500 25.68924 72.87994 10.88667 0.62770 0.42876 2.87029 - -8.49500 25.68924 74.65284 11.13216 0.62770 0.42837 2.87266 - -8.64450 26.88169 77.18906 11.50040 0.62592 0.42782 2.87144 - -8.79400 28.07413 80.58763 11.99140 0.62429 0.42713 2.87053 - -8.94350 29.26658 83.99057 12.48240 0.62280 0.42651 2.86985 - -9.09300 30.45903 87.39595 12.97340 0.62144 0.42593 2.86930 - -9.24250 31.65149 89.95128 13.34166 0.62018 0.42553 2.86895 - -9.24250 31.65149 91.65542 13.58725 0.66715 0.42527 2.86875 - -9.39200 32.84396 94.21241 13.95673 0.61132 0.42494 2.86848 - -9.54150 34.03645 97.62287 14.44957 0.61014 0.42453 2.86819 - -9.69100 35.22896 101.03449 14.94241 0.60905 0.42415 2.86794 - -9.84050 36.42149 104.45303 15.43525 0.60803 0.42380 2.86790 - -9.99000 37.61404 107.03820 15.80489 0.60707 0.42354 2.86843 - -9.99000 37.61404 107.91279 15.92975 0.60707 0.42346 2.86865 - -9.99200 37.62999 107.94747 15.93470 0.60477 0.42346 2.86865 - -9.99400 37.64595 107.99365 15.94129 0.60247 0.42345 2.86867 - -9.99600 37.66190 108.03985 15.94788 0.60018 0.42345 2.86868 - -9.99800 37.67786 108.08601 15.95448 0.59788 0.42344 2.86869 - -10.00000 37.69381 108.12067 15.95942 0.59559 0.42344 2.86870 - -10.00000 37.69381 89.08922 14.98676 0.70067 0.39756 2.36333 - -10.00200 37.70456 89.10477 14.99107 0.69837 0.39759 2.36324 - -10.00400 37.71532 89.12549 14.99683 0.69607 0.39763 2.36311 - -10.00600 37.72607 89.14622 15.00258 0.69377 0.39767 2.36299 - -10.00800 37.73683 89.16694 15.00833 0.69148 0.39771 2.36286 - -10.01000 37.74758 89.18246 15.01264 0.68918 0.39774 2.36277 - -10.01000 37.74758 89.28092 15.03996 0.68918 0.39792 2.36218 - -10.04600 37.94115 89.56089 15.11759 0.68723 0.39845 2.36052 - -10.08200 38.13473 89.93449 15.22110 0.68529 0.39914 2.35834 - -10.11800 38.32831 90.30847 15.32460 0.68337 0.39982 2.35618 - -10.15400 38.52188 90.68279 15.42810 0.68148 0.40050 2.35406 - -10.19000 38.71546 90.96376 15.50572 0.67960 0.40101 2.35249 - -10.19000 38.71546 91.36999 15.61784 0.67960 0.40173 2.35025 - -10.31000 39.36074 92.30891 15.87655 0.68084 0.40336 2.34520 - -10.43000 40.00603 93.56364 16.22146 0.68204 0.40548 2.33874 - -10.55000 40.65134 94.82150 16.56650 0.68320 0.40753 2.33256 - -10.67000 41.29667 96.08222 16.91282 0.68433 0.40954 2.32663 - -10.79000 41.94202 97.02942 17.17277 0.68542 0.41102 2.32235 - -10.79000 41.94202 97.50357 17.30275 0.59001 0.41175 2.32026 - -10.85000 42.26470 97.97809 17.43271 0.70127 0.41247 2.31820 - -10.91000 42.58739 98.61126 17.60600 0.70168 0.41341 2.31550 - -10.97000 42.91008 99.24500 17.77929 0.70208 0.41434 2.31286 - -11.03000 43.23277 99.87926 17.95257 0.70248 0.41525 2.31027 - -11.09000 43.55547 100.35529 18.08253 0.70287 0.41593 2.30836 - -11.09000 43.55547 100.77867 18.19805 0.70287 0.41653 2.30668 - -11.19000 44.09331 101.57313 18.41464 0.70329 0.41763 2.30359 - -11.29000 44.63117 102.63347 18.70342 0.70370 0.41907 2.29959 - -11.39000 45.16904 103.69502 18.99221 0.70410 0.42047 2.29571 - -11.49000 45.70693 104.76021 19.28098 0.70449 0.42184 2.29200 - -11.59000 46.24482 105.57102 19.49756 0.70487 0.42285 2.28953 - -11.59000 46.24482 106.06492 19.62895 0.70487 0.42345 2.28810 - -11.67200 46.68591 106.73284 19.80655 0.70458 0.42425 2.28619 - -11.75400 47.12700 107.62393 20.04334 0.70431 0.42530 2.28370 - -11.83600 47.56811 108.51561 20.28013 0.70404 0.42634 2.28127 - -11.91800 48.00922 109.40789 20.51692 0.70377 0.42735 2.27889 - -12.00000 48.45034 110.07744 20.69451 0.70351 0.42810 2.27715 - -12.00000 48.45034 83.37275 29.08515 0.73855 0.59059 1.69294 - -12.10000 51.63831 87.15349 30.64556 0.74142 0.59347 1.68777 - -12.20000 54.82629 92.18659 32.72620 0.74396 0.59691 1.68143 - -12.30000 58.01428 97.21031 34.80696 0.74621 0.59997 1.67563 - -12.40000 61.20228 102.22476 36.88782 0.74824 0.60272 1.67028 - -12.50000 64.39030 105.97988 38.44852 0.75006 0.60460 1.66653 - -12.50000 64.39030 298.86534 20.80870 0.51223 0.32139 4.61592 - -12.64000 65.81554 299.99330 21.12381 0.51267 0.32095 4.55809 - -12.78000 67.24081 302.98530 21.49442 0.51309 0.31966 4.50597 - -12.92000 68.66611 306.97302 21.93299 0.51349 0.31942 4.47052 - -13.06000 70.09142 311.54362 22.40994 0.51388 0.31972 4.44482 - -13.20000 71.51677 315.23163 22.76656 0.51425 0.31993 4.42987 - -13.20000 71.51677 317.79272 23.00381 0.51425 0.32006 4.42158 - -13.34000 72.94213 321.75465 23.35924 0.51468 0.32024 4.41109 - -13.48000 74.36752 327.20535 23.83247 0.51509 0.32047 4.39984 - -13.62000 75.79293 332.80007 24.30497 0.51549 0.32068 4.39091 - -13.76000 77.21836 338.49682 24.77666 0.51588 0.32086 4.38363 - -13.90000 78.64381 342.76095 25.12930 0.51625 0.32099 4.37824 - -13.90000 78.64381 345.60404 25.36407 0.49449 0.32106 4.37472 - -14.04000 80.06929 349.89903 25.71596 0.51917 0.32117 4.36995 - -14.18000 81.49478 355.66865 26.18475 0.51785 0.32131 4.36431 - -14.32000 82.92030 361.48125 26.65310 0.51658 0.32143 4.35938 - -14.46000 84.34583 367.32844 27.12105 0.51534 0.32155 4.35503 - -14.60000 85.77139 371.72335 27.47179 0.51415 0.32163 4.35197 - -14.60000 85.77139 374.65808 28.02117 0.69378 0.32534 4.35003 - -14.74000 87.19696 379.07165 27.89748 0.48848 0.31994 4.34730 - -14.88000 88.62256 384.97332 28.52099 0.48820 0.32183 4.34397 - -15.02000 90.04817 390.95376 28.98638 0.48792 0.32190 4.34161 - -15.16000 91.47380 397.02372 29.45150 0.48766 0.32197 4.34030 - -15.30000 92.89944 401.58406 29.80018 0.48740 0.32201 4.33943 - -15.30000 92.89944 404.62798 30.03256 0.48740 0.32204 4.33890 - -15.44000 94.32511 409.19884 30.38101 0.48715 0.32209 4.33818 - -15.58000 95.75079 415.30084 30.84545 0.48690 0.32214 4.33731 - -15.72000 97.17649 421.41086 31.30970 0.48667 0.32219 4.33655 - -15.86000 98.60220 427.52797 31.77374 0.48644 0.32224 4.33589 - -16.00000 100.02793 432.11974 32.12109 0.48622 0.32227 4.33544 + -4.60000 0.03900 2.03901 0.00000 0.05199 0.00000 52.28375 + -4.70000 0.07799 2.09869 0.00000 0.29841 0.00000 26.90945 + -4.80000 0.11697 2.15837 0.00000 0.38100 0.00000 18.45251 + -4.90000 0.15593 2.21806 0.00000 0.42278 0.00000 14.22495 + -5.00000 0.19486 2.26282 0.00000 0.44837 0.00000 12.22313 + -5.00000 0.19486 2.29863 0.00000 0.44837 0.00000 11.02613 + -5.14000 0.24931 2.36130 0.00000 0.47162 0.00000 9.47141 + -5.28000 0.30368 2.44486 0.00000 0.48751 0.00000 8.05077 + -5.42000 0.35796 2.52841 0.00000 0.49955 0.00000 7.06335 + -5.56000 0.41215 2.61197 0.00000 0.50938 0.00000 6.33749 + -5.70000 0.46622 2.67464 0.00000 0.51784 0.00000 5.90813 + -5.70000 0.46622 14.83680 0.00000 0.48273 0.00000 18.57495 + -5.83000 1.79634 16.68124 0.00000 0.63557 0.00000 9.28623 + -5.96000 3.12636 19.30646 0.00000 0.66039 0.00000 6.17538 + -6.09000 4.45628 21.97673 0.00000 0.67050 0.00000 4.93163 + -6.22000 5.78610 24.65883 0.00000 0.67603 0.00000 4.26173 + -6.35000 7.11583 26.67308 0.00000 0.67956 0.00000 3.93211 + -6.35000 7.11583 27.54755 0.00000 0.67956 0.00000 3.69853 + -6.48000 8.44547 29.19620 0.00000 0.68203 0.00000 3.45702 + -6.61000 9.77503 31.85203 0.00000 0.68387 0.00000 3.25851 + -6.74000 11.10450 34.50722 0.00000 0.68531 0.00000 3.10750 + -6.87000 12.43389 37.16185 0.00000 0.68647 0.00000 2.98875 + -7.00000 13.76322 39.15252 0.00000 0.68743 0.00000 2.91511 + -7.00000 13.76322 40.96268 0.00000 0.58240 0.00000 2.91312 + -7.14950 14.95606 43.20864 0.00000 0.56566 0.00000 2.88904 + -7.29900 16.14883 46.32406 0.00000 0.56630 0.00000 2.86857 + -7.44850 17.34153 49.51148 0.00000 0.56688 0.00000 2.85508 + -7.59800 18.53417 52.75278 7.09260 0.56741 0.38268 2.84624 + -7.74750 19.72676 55.20954 8.11659 0.56789 0.41777 2.84166 + -7.74750 19.72676 56.85775 8.36683 0.56789 0.41782 2.83935 + -7.89700 20.91931 59.34211 8.74212 0.56833 0.41790 2.83671 + -8.04650 22.11182 62.67047 9.24243 0.56874 0.41799 2.83425 + -8.19600 23.30431 66.01355 9.92611 0.56913 0.42593 2.83268 + -8.34550 24.49678 69.44440 10.51844 0.56948 0.42938 2.83484 + -8.49500 25.68924 72.87994 10.88667 0.56982 0.42876 2.87029 + -8.49500 25.68924 74.65284 11.13216 0.56982 0.42837 2.87266 + -8.64450 26.88169 77.18906 11.50040 0.57013 0.42782 2.87144 + -8.79400 28.07413 80.58763 11.99140 0.57042 0.42713 2.87053 + -8.94350 29.26658 83.99057 12.48240 0.57070 0.42651 2.86985 + -9.09300 30.45903 87.39595 12.97340 0.57096 0.42593 2.86930 + -9.24250 31.65149 89.95128 13.34166 0.57120 0.42553 2.86895 + -9.24250 31.65149 91.65542 13.58725 0.57120 0.42527 2.86875 + -9.39200 32.84396 94.21241 13.95673 0.57144 0.42494 2.86848 + -9.54150 34.03645 97.62287 14.44957 0.57166 0.42453 2.86819 + -9.69100 35.22896 101.03449 14.94241 0.57187 0.42415 2.86794 + -9.84050 36.42149 104.45303 15.43525 0.57206 0.42380 2.86790 + -9.99000 37.61404 107.03820 15.80489 0.57225 0.42354 2.86843 + -9.99000 37.61404 107.91279 15.92975 0.57225 0.42346 2.86865 + -9.99200 37.62999 107.94747 15.93470 0.57226 0.42346 2.86865 + -9.99400 37.64595 107.99365 15.94129 0.57226 0.42345 2.86867 + -9.99600 37.66190 108.03985 15.94788 0.57226 0.42345 2.86868 + -9.99800 37.67786 108.08601 15.95448 0.57226 0.42344 2.86869 + -10.00000 37.69381 108.12067 15.95942 0.57227 0.42344 2.86870 + -10.00000 37.69381 89.08922 14.98676 0.67735 0.39756 2.36333 + -10.00200 37.70456 89.10477 14.99107 0.69452 0.39759 2.36324 + -10.00400 37.71532 89.12549 14.99683 0.69452 0.39763 2.36311 + -10.00600 37.72607 89.14622 15.00258 0.69452 0.39767 2.36299 + -10.00800 37.73683 89.16694 15.00833 0.69453 0.39771 2.36286 + -10.01000 37.74758 89.18246 15.01264 0.69453 0.39774 2.36277 + -10.01000 37.74758 89.28092 15.03996 0.69453 0.39792 2.36218 + -10.04600 37.94115 89.56089 15.11759 0.69456 0.39845 2.36052 + -10.08200 38.13473 89.93449 15.22110 0.69459 0.39914 2.35834 + -10.11800 38.32831 90.30847 15.32460 0.69462 0.39982 2.35618 + -10.15400 38.52188 90.68279 15.42810 0.69465 0.40050 2.35406 + -10.19000 38.71546 90.96376 15.50572 0.69468 0.40101 2.35249 + -10.19000 38.71546 91.36999 15.61784 0.69468 0.40173 2.35025 + -10.31000 39.36074 92.30891 15.87655 0.69478 0.40336 2.34520 + -10.43000 40.00603 93.56364 16.22146 0.69488 0.40548 2.33874 + -10.55000 40.65134 94.82150 16.56650 0.69497 0.40753 2.33256 + -10.67000 41.29667 96.08222 16.91282 0.69506 0.40954 2.32663 + -10.79000 41.94202 97.02942 17.17277 0.69515 0.41102 2.32235 + -10.79000 41.94202 97.50357 17.30275 0.69515 0.41175 2.32026 + -10.85000 42.26470 97.97809 17.43271 0.69520 0.41247 2.31820 + -10.91000 42.58739 98.61126 17.60600 0.69524 0.41341 2.31550 + -10.97000 42.91008 99.24500 17.77929 0.69529 0.41434 2.31286 + -11.03000 43.23277 99.87926 17.95257 0.69533 0.41525 2.31027 + -11.09000 43.55547 100.35529 18.08253 0.69537 0.41593 2.30836 + -11.09000 43.55547 100.77867 18.19805 0.69537 0.41653 2.30668 + -11.19000 44.09331 101.57313 18.41464 0.69544 0.41763 2.30359 + -11.29000 44.63117 102.63347 18.70342 0.69551 0.41907 2.29959 + -11.39000 45.16904 103.69502 18.99221 0.69558 0.42047 2.29571 + -11.49000 45.70693 104.76021 19.28098 0.69564 0.42184 2.29200 + -11.59000 46.24482 105.57102 19.49756 0.69571 0.42285 2.28953 + -11.59000 46.24482 106.06492 19.62895 0.69571 0.42345 2.28810 + -11.67200 46.68591 106.73284 19.80655 0.69576 0.42425 2.28619 + -11.75400 47.12700 107.62393 20.04334 0.69581 0.42530 2.28370 + -11.83600 47.56811 108.51561 20.28013 0.69586 0.42634 2.28127 + -11.91800 48.00922 109.40789 20.51692 0.69591 0.42735 2.27889 + -12.00000 48.45034 110.07744 20.69451 0.69596 0.42810 2.27715 + -12.00000 48.45034 83.37275 29.08515 0.73099 0.59059 1.69294 + -12.10000 51.63831 87.15349 30.64556 0.73818 0.59347 1.68777 + -12.20000 54.82629 92.18659 32.72620 0.73838 0.59691 1.68143 + -12.30000 58.01428 97.21031 34.80696 0.73855 0.59997 1.67563 + -12.40000 61.20228 102.22476 36.88782 0.73870 0.60272 1.67028 + -12.50000 64.39030 105.97988 38.44852 0.73884 0.60460 1.66653 + -12.50000 64.39030 298.86534 20.80870 0.50101 0.32139 4.61592 + -12.64000 65.81554 299.99330 21.12381 0.46728 0.32095 4.55809 + -12.78000 67.24081 302.98530 21.49442 0.46736 0.31966 4.50597 + -12.92000 68.66611 306.97302 21.93299 0.46743 0.31942 4.47052 + -13.06000 70.09142 311.54362 22.40994 0.46750 0.31972 4.44482 + -13.20000 71.51677 315.23163 22.76656 0.46757 0.31993 4.42987 + -13.20000 71.51677 317.79272 23.00381 0.46757 0.32006 4.42158 + -13.34000 72.94213 321.75465 23.35924 0.46764 0.32024 4.41109 + -13.48000 74.36752 327.20535 23.83247 0.46770 0.32047 4.39984 + -13.62000 75.79293 332.80007 24.30497 0.46776 0.32068 4.39091 + -13.76000 77.21836 338.49682 24.77666 0.46782 0.32086 4.38363 + -13.90000 78.64381 342.76095 25.12930 0.46787 0.32099 4.37824 + -13.90000 78.64381 345.60404 25.36407 0.46787 0.32106 4.37472 + -14.04000 80.06929 349.89903 25.71596 0.46792 0.32117 4.36995 + -14.18000 81.49478 355.66865 26.18475 0.46798 0.32131 4.36431 + -14.32000 82.92030 361.48125 26.65310 0.46803 0.32143 4.35938 + -14.46000 84.34583 367.32844 27.12105 0.46807 0.32155 4.35503 + -14.60000 85.77139 371.72335 27.47179 0.46812 0.32163 4.35197 + -14.60000 85.77139 374.65808 28.02117 0.46812 0.32534 4.35003 + -14.74000 87.19696 379.07165 27.89748 0.46816 0.31994 4.34730 + -14.88000 88.62256 384.97332 28.52099 0.46821 0.32183 4.34397 + -15.02000 90.04817 390.95376 28.98638 0.46825 0.32190 4.34161 + -15.16000 91.47380 397.02372 29.45150 0.46829 0.32197 4.34030 + -15.30000 92.89944 401.58406 29.80018 0.46833 0.32201 4.33943 + -15.30000 92.89944 404.62798 30.03256 0.46833 0.32204 4.33890 + -15.44000 94.32511 409.19884 30.38101 0.46837 0.32209 4.33818 + -15.58000 95.75079 415.30084 30.84545 0.46840 0.32214 4.33731 + -15.72000 97.17649 421.41086 31.30970 0.46844 0.32219 4.33655 + -15.86000 98.60220 427.52797 31.77374 0.46847 0.32224 4.33589 + -16.00000 100.02793 432.11974 32.12109 0.46851 0.32227 4.33544 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -31059,131 +31195,131 @@ Status character 0.00000 39.24000 0.00000 0.00000 -1 0 - 0.00000 40.22100 0.00000 0.00000 -1 0 - 0.00000 40.22100 0.00010 0.00010 1 0 A - 0.00000 41.20200 2.03901 0.02161 1 0 A - 0.00000 42.18300 2.09869 0.04324 1 0 A - 0.00000 43.16400 2.15837 0.06491 1 0 A - 0.00000 44.14500 2.21806 0.08665 1 0 A - 0.00000 45.12600 2.26282 0.10307 1 0 A - 0.00000 45.12600 2.29863 0.11606 1 0 A - 0.00000 46.49940 2.36130 0.14100 1 0 A - 0.00000 47.87280 2.44486 0.17377 1 0 A - 0.00000 49.24620 2.52841 0.20685 1 0 A - 0.00000 50.61960 2.61197 0.24027 1 0 A - 0.00000 51.99300 2.67464 0.26612 1 0 A - 0.00000 51.99300 14.83680 0.44149 1 0 A - 0.00000 52.76830 16.68124 1.25303 1 0 A - 0.00000 53.54360 19.30646 2.24873 1 0 A - 0.00000 54.31890 21.97673 3.24479 1 0 A - 0.00000 55.09420 24.65883 4.24123 1 0 A - 0.00000 55.86950 26.67308 4.99333 1 0 A - 0.00000 55.86950 27.54755 5.48273 1 0 A - 0.00000 56.64480 29.19620 6.23522 1 0 A - 0.00000 57.42010 31.85203 7.23277 1 0 A - 0.00000 58.19540 34.50722 8.23068 1 0 A - 0.00000 58.97070 37.16185 9.22895 1 0 A - 0.00000 59.74600 39.15252 9.98059 1 0 A - 0.00000 59.74600 40.96268 8.97229 1 0 A - 0.00000 61.21260 43.20864 9.55131 1 0 A - 0.00000 62.67919 46.32406 10.32102 1 0 A - 0.00000 64.14579 49.51148 11.09113 1 0 A - 7.09260 65.61238 52.75278 11.86160 1 0 A - 8.11659 67.07898 55.20954 12.44151 1 0 A - 8.36683 67.07898 56.85775 12.85382 1 0 A - 8.74212 68.54557 59.34211 13.32567 1 0 A - 9.24243 70.01217 62.67047 14.02513 1 0 A - 9.92611 71.47876 66.01355 14.72489 1 0 A - 10.51844 72.94536 69.44440 15.42491 1 0 A - 10.88667 74.41195 72.87994 15.93805 1 0 A - 11.13216 74.41195 74.65284 16.31231 1 0 A - 11.50040 75.87855 77.18906 16.82568 1 0 A - 11.99140 77.34514 80.58763 17.52640 1 0 A - 12.48240 78.81174 83.99057 18.22731 1 0 A - 12.97340 80.27833 87.39595 18.92841 1 0 A - 13.34166 81.74492 89.95128 19.44479 1 0 A - 13.58725 81.74492 91.65542 21.31503 1 0 A - 13.95673 83.21152 94.21241 20.07805 1 0 A - 14.44957 84.67811 97.62287 20.76698 1 0 A - 14.94241 86.14471 101.03449 21.45605 1 0 A - 15.43525 87.61131 104.45303 22.14523 1 0 A - 15.80489 89.07790 107.03820 22.65354 1 0 A - 15.92975 89.07790 107.91279 22.83695 1 0 A - 15.93470 89.09752 107.94747 22.75760 1 0 A - 15.94129 89.11714 107.99365 22.68067 1 0 A - 15.94788 89.13676 108.03985 22.60374 1 0 A - 15.95448 89.15638 108.08601 22.52682 1 0 A - 15.95942 89.17600 108.12067 22.44751 1 0 A - 14.98676 89.17600 89.08922 26.41271 1 0 A - 14.99107 89.19562 89.10477 26.33165 1 0 A - 14.99683 89.21524 89.12549 26.25247 1 0 A - 15.00258 89.23486 89.14622 26.17329 1 0 A - 15.00833 89.25448 89.16694 26.09411 1 0 A - 15.01264 89.27410 89.18246 26.01308 1 0 A - 15.03996 89.27410 89.28092 26.04828 1 0 A - 15.11759 89.62726 89.56089 26.07412 1 0 A - 15.22110 89.98042 89.93449 26.13332 1 0 A - 15.32460 90.33358 90.30847 26.19251 1 0 A - 15.42810 90.68674 90.68279 26.25172 1 0 A - 15.50572 91.03990 90.96376 26.27804 1 0 A - 15.61784 91.03990 91.36999 26.42056 1 0 A - 15.87655 92.21710 92.30891 26.79823 1 0 A - 16.22146 93.39430 93.56364 27.28558 1 0 A - 16.56650 94.57150 94.82150 27.77299 1 0 A - 16.91282 95.74870 96.08222 28.26044 1 0 A - 17.17277 96.92590 97.02942 28.63735 1 0 A - 17.30275 96.92590 97.50357 24.79366 1 0 A - 17.43271 97.51450 97.97809 29.63893 1 0 A - 17.60600 98.10310 98.61126 29.88268 1 0 A - 17.77929 98.69170 99.24500 30.12644 1 0 A - 17.95257 99.28030 99.87926 30.37021 1 0 A - 18.08253 99.86890 100.35529 30.55729 1 0 A - 18.19805 99.86890 100.77867 30.70850 1 0 A - 18.41464 100.84990 101.57313 31.01042 1 0 A - 18.70342 101.83090 102.63347 31.40688 1 0 A - 18.99221 102.81190 103.69502 31.80335 1 0 A - 19.28098 103.79290 104.76021 32.19985 1 0 A - 19.49756 104.77390 105.57102 32.50157 1 0 A - 19.62895 104.77390 106.06492 32.67409 1 0 A - 19.80655 105.57832 106.73284 32.89414 1 0 A - 20.04334 106.38274 107.62393 33.19193 1 0 A - 20.28013 107.18716 108.51561 33.48973 1 0 A - 20.51692 107.99158 109.40789 33.78754 1 0 A - 20.69451 108.79600 110.07744 34.00778 1 0 A - 29.08515 108.79600 83.37275 36.37140 1 0 A - 30.64556 106.77700 87.15349 38.28554 1 0 A - 32.72620 104.75800 92.18659 40.78830 1 0 A - 34.80696 102.73900 97.21031 43.29107 1 0 A - 36.88782 100.72000 102.22476 45.79385 1 0 A - 38.44852 98.70100 105.97988 47.69883 1 0 A - 20.80870 98.70100 298.86534 33.16489 1 0 A - 21.12381 100.07440 299.99330 33.74134 1 0 A - 21.49442 101.44780 302.98530 34.50032 1 0 A - 21.93299 102.82120 306.97302 35.25931 1 0 A - 22.40994 104.19460 311.54362 36.01832 1 0 A - 22.76656 105.56800 315.23163 36.59409 1 0 A - 23.00381 105.56800 317.79272 36.96058 1 0 A - 23.35924 106.94140 321.75465 37.54181 1 0 A - 23.83247 108.31480 327.20535 38.30629 1 0 A - 24.30497 109.68820 332.80007 39.07078 1 0 A - 24.77666 111.06160 338.49682 39.83528 1 0 A - 25.12930 112.43500 342.76095 40.41581 1 0 A - 25.36407 112.43500 345.60404 39.06493 1 0 A - 25.71596 113.80840 349.89903 41.56995 1 0 A - 26.18475 115.18180 355.66865 42.20230 1 0 A - 26.65310 116.55520 361.48125 42.83466 1 0 A - 31.55873 117.92860 367.32844 43.46702 110 0 1 - 93.05657 119.30200 371.72335 43.91615 110 25 1 - 108.89396 119.30200 374.65808 59.75354 110 29 1 - 152.05162 120.67540 379.07165 42.59396 110 40 1 - 197.47307 122.04880 384.97332 43.26520 220 51 2 - 214.68563 123.42220 390.95376 43.93644 220 55 2 - 231.83317 124.79560 397.02372 44.60768 220 58 2 - 248.29926 126.16900 401.58406 45.10520 220 62 2 - 249.52758 126.16900 404.62798 45.45263 220 62 2 - 265.95068 127.54240 409.19884 45.95016 220 65 2 - 282.95850 128.91580 415.30084 46.62140 220 68 2 - 299.94676 130.28920 421.41086 47.29264 220 71 2 - 316.92541 131.66260 427.52797 47.96387 220 74 2 - 333.28677 133.03600 432.11974 48.46181 220 77 2 + 0.00000 41.20200 2.03901 0.00203 1 0 A + 0.00000 42.18300 2.09869 0.02327 1 0 A + 0.00000 43.16400 2.15837 0.04456 1 0 A + 0.00000 44.14500 2.21806 0.06592 1 0 A + 0.00000 45.12600 2.26282 0.08300 1 0 A + 0.00000 45.12600 2.29863 0.09347 1 0 A + 0.00000 46.49940 2.36130 0.11758 1 0 A + 0.00000 47.87280 2.44486 0.14805 1 0 A + 0.00000 49.24620 2.52841 0.17882 1 0 A + 0.00000 50.61960 2.61197 0.20994 1 0 A + 0.00000 51.99300 2.67464 0.23443 1 0 A + 0.00000 51.99300 14.83680 0.38558 1 0 A + 0.00000 52.76830 16.68124 1.14170 1 0 A + 0.00000 53.54360 19.30646 2.06463 1 0 A + 0.00000 54.31890 21.97673 2.98793 1 0 A + 0.00000 55.09420 24.65883 3.91159 1 0 A + 0.00000 55.86950 26.67308 4.60973 1 0 A + 0.00000 55.86950 27.54755 5.06153 1 0 A + 0.00000 56.64480 29.19620 5.76005 1 0 A + 0.00000 57.42010 31.85203 6.68483 1 0 A + 0.00000 58.19540 34.50722 7.60997 1 0 A + 0.00000 58.97070 37.16185 8.53547 1 0 A + 0.00000 59.74600 39.15252 9.23284 1 0 A + 0.00000 59.74600 40.96268 8.18944 1 0 A + 0.00000 61.21260 43.20864 8.46000 1 0 A + 0.00000 62.67919 46.32406 9.14508 1 0 A + 0.00000 64.14579 49.51148 9.83056 1 0 A + 7.09260 65.61238 52.75278 10.51641 1 0 A + 8.11659 67.07898 55.20954 11.03329 1 0 A + 8.36683 67.07898 56.85775 11.37192 1 0 A + 8.74212 68.54557 59.34211 11.88914 1 0 A + 9.24243 70.01217 62.67047 12.57597 1 0 A + 9.92611 71.47876 66.01355 13.26310 1 0 A + 10.51844 72.94536 69.44440 13.95049 1 0 A + 10.88667 74.41195 72.87994 14.46826 1 0 A + 11.13216 74.41195 74.65284 14.80800 1 0 A + 11.50040 75.87855 77.18906 15.32600 1 0 A + 11.99140 77.34514 80.58763 16.01409 1 0 A + 12.48240 78.81174 83.99057 16.70237 1 0 A + 12.97340 80.27833 87.39595 17.39084 1 0 A + 13.34166 81.74492 89.95128 17.90919 1 0 A + 13.58725 81.74492 91.65542 18.24976 1 0 A + 13.95673 83.21152 94.21241 18.76827 1 0 A + 14.44957 84.67811 97.62287 19.45720 1 0 A + 14.94241 86.14471 101.03449 20.14627 1 0 A + 15.43525 87.61131 104.45303 20.83545 1 0 A + 15.80489 89.07790 107.03820 21.35414 1 0 A + 15.92975 89.07790 107.91279 21.52703 1 0 A + 15.93470 89.09752 107.94747 21.53397 1 0 A + 15.94129 89.11714 107.99365 21.54319 1 0 A + 15.94788 89.13676 108.03985 21.55242 1 0 A + 15.95448 89.15638 108.08601 21.56164 1 0 A + 15.95942 89.17600 108.12067 21.56858 1 0 A + 14.98676 89.17600 89.08922 25.53362 1 0 A + 14.99107 89.19562 89.10477 26.18660 1 0 A + 14.99683 89.21524 89.12549 26.19413 1 0 A + 15.00258 89.23486 89.14622 26.20167 1 0 A + 15.00833 89.25448 89.16694 26.20920 1 0 A + 15.01264 89.27410 89.18246 26.21487 1 0 A + 15.03996 89.27410 89.28092 26.25035 1 0 A + 15.11759 89.62726 89.56089 26.35235 1 0 A + 15.22110 89.98042 89.93449 26.48797 1 0 A + 15.32460 90.33358 90.30847 26.62360 1 0 A + 15.42810 90.68674 90.68279 26.75923 1 0 A + 15.50572 91.03990 90.96376 26.86125 1 0 A + 15.61784 91.03990 91.36999 27.00694 1 0 A + 15.87655 92.21710 92.30891 27.34704 1 0 A + 16.22146 93.39430 93.56364 27.79925 1 0 A + 16.56650 94.57150 94.82150 28.25152 1 0 A + 16.91282 95.74870 96.08222 28.70384 1 0 A + 17.17277 96.92590 97.02942 29.04404 1 0 A + 17.30275 96.92590 97.50357 29.21227 1 0 A + 17.43271 97.51450 97.97809 29.38239 1 0 A + 17.60600 98.10310 98.61126 29.60860 1 0 A + 17.77929 98.69170 99.24500 29.83481 1 0 A + 17.95257 99.28030 99.87926 30.06103 1 0 A + 18.08253 99.86890 100.35529 30.23116 1 0 A + 18.19805 99.86890 100.77867 30.38076 1 0 A + 18.41464 100.84990 101.57313 30.66433 1 0 A + 18.70342 101.83090 102.63347 31.04143 1 0 A + 18.99221 102.81190 103.69502 31.41854 1 0 A + 19.28098 103.79290 104.76021 31.79567 1 0 A + 19.49756 104.77390 105.57102 32.07927 1 0 A + 19.62895 104.77390 106.06492 32.24954 1 0 A + 19.80655 105.57832 106.73284 32.48210 1 0 A + 20.04334 106.38274 107.62393 32.79139 1 0 A + 20.28013 107.18716 108.51561 33.10068 1 0 A + 20.51692 107.99158 109.40789 33.40999 1 0 A + 20.69451 108.79600 110.07744 33.64256 1 0 A + 29.08515 108.79600 83.37275 35.99933 1 0 A + 30.64556 106.77700 87.15349 38.11849 1 0 A + 32.72620 104.75800 92.18659 40.48243 1 0 A + 34.80696 102.73900 97.21031 42.84639 1 0 A + 36.88782 100.72000 102.22476 45.21035 1 0 A + 38.44852 98.70100 105.97988 46.98547 1 0 A + 20.80870 98.70100 298.86534 32.43858 1 0 A + 21.12381 100.07440 299.99330 30.75453 1 0 A + 21.49442 101.44780 302.98530 31.42567 1 0 A + 21.93299 102.82120 306.97302 32.09682 1 0 A + 22.40994 104.19460 311.54362 32.76798 1 0 A + 22.76656 105.56800 315.23163 33.27254 1 0 A + 23.00381 105.56800 317.79272 33.60577 1 0 A + 23.35924 106.94140 321.75465 34.11034 1 0 A + 23.83247 108.31480 327.20535 34.78154 1 0 A + 24.30497 109.68820 332.80007 35.45274 1 0 A + 24.77666 111.06160 338.49682 36.12395 1 0 A + 25.12930 112.43500 342.76095 36.62843 1 0 A + 25.36407 112.43500 345.60404 36.96190 1 0 A + 25.71596 113.80840 349.89903 37.46639 1 0 A + 26.18475 115.18180 355.66865 38.13761 1 0 A + 26.65310 116.55520 361.48125 38.80884 1 0 A + 28.52448 117.92860 367.32844 39.48007 110 0 1 + 90.00993 119.30200 371.72335 39.98447 110 24 1 + 90.34360 119.30200 374.65808 40.31814 110 24 1 + 151.09893 120.67540 379.07165 40.82254 110 40 1 + 197.21853 122.04880 384.97332 41.49378 220 51 2 + 214.41489 123.42220 390.95376 42.16502 220 55 2 + 231.54635 124.79560 397.02372 42.83626 220 58 2 + 247.99815 126.16900 401.58406 43.34058 220 62 2 + 249.22308 126.16900 404.62798 43.67442 220 62 2 + 265.63194 127.54240 409.19884 44.17874 220 65 2 + 282.62388 128.91580 415.30084 44.84998 220 68 2 + 299.59628 130.28920 421.41086 45.52122 220 71 2 + 316.55908 131.66260 427.52797 46.19245 220 74 2 + 332.90617 133.03600 432.11974 46.69670 220 77 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -31203,7 +31339,7 @@ Layer name -7.00 29.143 'Wadzand' -10.00 35.734 'Hydrobiaklei' -12.00 16.883 'Basisveen' - -12.50 396.234 'Eerste zandlaag' + -12.50 393.789 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -31225,7 +31361,7 @@ Layer name -7.00 -7.09 'Wadzand' -10.00 -6.11 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -124.40 'Eerste zandlaag' + -12.50 -123.63 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -31465,7 +31601,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 0.92544 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 0.88684 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -31490,39 +31626,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 59.24 : Percentage mobilized resistance left - 50.58 : Percentage mobilized resistance right - 419.69 : Effective left - 577.80 : Effective right + 58.94 : Percentage mobilized resistance left + 50.39 : Percentage mobilized resistance right + 417.52 : Effective left + 575.60 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 708.45 : Max effective resistance left 1142.37 : Max effective resistance right -8428.29 : Max moment left -12613.00 : Max moment right --5220.99 : Max mobilized moment left --5587.53 : Max mobilized moment right - 129.27 : Vertical force left - 143.98 : Vertical force right - 61.9 : Max mobilized moment percentage left - 44.3 : Max mobilized moment percentage right +-5193.77 : Max mobilized moment left +-5560.35 : Max mobilized moment right + 128.75 : Vertical force left + 143.23 : Vertical force right + 61.6 : Max mobilized moment percentage left + 44.1 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --143.98 : Active force -129.27 : Passive force --143.98 : Plugged active force -129.27 : Plugged passive force +-143.23 : Active force +128.75 : Passive force +-143.23 : Plugged active force +128.75 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor --14.71 : Resulting Vertical Force Unplugged --14.71 : Resulting Vertical Force Plugged +-14.48 : Resulting Vertical Force Unplugged +-14.48 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -31535,210 +31671,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1138.21168 - 0.00000 0.00000 1129.94903 - 0.00000 0.00000 1121.68637 - 0.00000 0.00000 1113.42371 - 0.00000 0.00000 1105.16105 - 0.00000 0.00000 1096.89839 - 0.00000 0.00000 1096.89839 - 0.00000 0.00000 1088.63574 - 0.00000 0.00000 1080.37308 - 0.00000 0.00000 1072.11042 - 0.00000 0.00000 1063.84776 - 0.00000 0.00000 1055.58511 - 0.00000 0.00000 1055.58511 - -0.00283 -0.07063 1044.56822 - -0.02260 -0.28253 1033.55134 - -0.07628 -0.63569 1022.53447 - -0.18082 -1.13011 1011.51762 - -0.35316 -1.76580 1000.50080 - -0.35316 -1.76580 1000.50080 - -0.56081 -2.40345 991.32016 - -0.83712 -3.13920 982.13958 - -1.19192 -3.97305 972.95912 - -1.63500 -4.90500 963.77882 - -2.17619 -5.93505 954.59872 - -2.17619 -5.93505 954.59872 - -2.82528 -7.06320 945.41889 - -3.59210 -8.28945 936.23940 - -4.48644 -9.61380 927.06039 - -5.51813 -11.03625 917.88195 - -6.69696 -12.55680 908.70421 - -6.69696 -12.55680 908.70421 - -7.83593 -13.94293 900.81200 - -9.09722 -15.40162 892.92053 - -10.48709 -16.93286 885.02991 - -12.01176 -18.53666 877.14028 - -13.67747 -20.21301 869.25177 - -13.67747 -21.13845 869.25177 - -16.21908 -23.47243 858.79686 - -19.03403 -25.93390 848.34460 - -22.13686 -28.52285 837.89550 - -25.54209 -31.23930 827.45007 - -29.26426 -34.08324 817.00882 - -29.26426 -34.08324 817.00882 - -29.65447 -34.37465 815.96495 - -30.04801 -34.66733 814.92112 - -30.44489 -34.96128 813.87734 - -30.84513 -35.25651 812.83362 - -31.24874 -35.55302 811.78994 - -31.24876 -35.55257 811.78994 - -33.74633 -37.22417 805.51067 - -36.35029 -38.64973 799.23340 - -39.04315 -39.81614 792.95829 - -41.80713 -40.72341 786.68549 - -44.62535 -41.41003 780.41518 - -44.62535 -41.41002 780.41518 - -45.45495 -41.54691 778.58759 - -46.28710 -41.66505 776.76023 - -47.12140 -41.76116 774.93310 - -47.95740 -41.83524 773.10621 - -48.79469 -41.89057 771.27956 - -48.79469 -41.89057 771.27956 - -52.19551 -43.13195 763.97546 - -55.69610 -44.38465 756.67556 - -59.29731 -45.64699 749.38017 - -62.99981 -46.91638 742.08956 - -66.80406 -48.19067 734.80404 - -66.80406 -48.19067 734.80404 - -67.77107 -48.51003 732.98348 - -68.74446 -48.82959 731.16327 - -69.72425 -49.14936 729.34340 - -70.71044 -49.46932 727.52389 - -71.70303 -49.78945 725.70473 - -71.70303 -49.78945 725.70473 - -76.76210 -51.39249 716.61445 - -81.98161 -52.99801 707.53383 - -87.36176 -54.60524 698.46356 - -92.90268 -56.21332 689.40432 - -98.60444 -57.82187 680.35678 - -98.60444 -57.82187 680.35678 - -104.46701 -59.42951 671.32163 - -110.49033 -61.03662 662.29964 - -116.67430 -62.64255 653.29159 - -123.01879 -64.24698 644.29826 - -129.52365 -65.85011 635.32042 - -129.52365 -65.85012 635.32042 - -138.89945 -68.08949 622.77898 - -148.58854 -70.32530 610.27183 - -158.59030 -72.55619 597.80144 - -168.90402 -74.78176 585.37028 - -179.52898 -77.00281 572.98081 - -179.52897 -77.00289 572.98081 - -189.56763 -77.44061 561.51589 - -199.66664 -77.95000 550.09132 - -209.84017 -78.58720 538.70928 - -220.10485 -79.35227 527.37193 - -230.50646 -80.91799 516.08144 - -230.50653 -80.91938 516.08144 - -241.16856 -83.05671 504.83999 - -252.08697 -84.86384 493.64988 - -263.21885 -86.34077 482.51349 - -274.52126 -87.48750 471.43316 - -285.95129 -88.30403 460.41128 - -285.95129 -88.30404 460.41128 - -299.20874 -89.05318 447.81148 - -312.57819 -89.80233 435.29592 - -326.05964 -90.55147 422.86839 - -339.65308 -91.30062 410.53271 - -353.35852 -92.04976 398.29265 - -353.35852 -92.04977 398.29265 - -367.17596 -92.79891 386.15205 - -381.10540 -93.54805 374.11482 - -395.14683 -94.29720 362.18493 - -409.30026 -95.04634 350.36632 - -423.56569 -95.79549 338.66296 - -423.56569 -95.79548 338.66296 - -437.94311 -96.54463 327.07881 - -452.43253 -97.29377 315.61797 - -467.03395 -98.04291 304.28455 - -481.74736 -98.79206 293.08265 - -496.50863 -98.25404 282.01639 - -496.50857 -98.25395 282.01639 - -510.98948 -95.40729 271.09000 - -525.01324 -92.11707 260.30751 - -538.50722 -88.31978 249.67270 - -551.39556 -84.01481 239.18935 - -563.60543 -79.26404 228.86127 - -563.60547 -79.26437 228.86127 - -563.76393 -79.19650 228.72417 - -563.92225 -79.12855 228.58710 - -564.08044 -79.06051 228.45006 - -564.23849 -78.99238 228.31304 - -564.39641 -78.92417 228.17606 - -564.39641 -78.92420 228.17606 - -564.55418 -78.84852 228.03910 - -564.71180 -78.77279 227.90217 - -564.86927 -78.69702 227.76528 - -565.02659 -78.62121 227.62840 - -565.18376 -78.54536 227.49156 - -565.18376 -78.54535 227.49156 - -567.98668 -77.17079 225.03327 - -570.73991 -75.78392 222.58425 - -573.44295 -74.38299 220.14455 - -576.09531 -72.96798 217.71421 - -578.69650 -71.54066 215.29327 - -578.69650 -71.54068 215.29327 - -586.98947 -66.65584 207.29204 - -594.68841 -61.63378 199.39730 - -601.77530 -56.45483 191.61033 - -608.23129 -51.11879 183.93243 - -614.03830 -45.64504 176.36487 - -614.03830 -45.64506 176.36487 - -616.69284 -42.83454 172.62284 - -619.17776 -39.98953 168.90878 - -621.49079 -37.10514 165.22279 - -623.62959 -34.18135 161.56498 - -625.59186 -31.22303 157.93545 - -625.59259 -31.21854 157.93545 - -628.44421 -25.85838 151.94938 - -630.76681 -20.57463 146.04249 - -632.55534 -15.17690 140.21499 - -633.79847 -9.66740 134.46712 - -634.48868 -4.15369 128.79910 - -634.48691 -4.13526 128.79910 - -634.64252 0.32873 124.21102 - -634.43471 4.73014 119.67670 - -633.86835 9.07407 115.19609 - -632.94810 13.36163 110.76914 - -631.67866 17.58989 106.39582 - -631.67868 17.58973 106.39582 - -629.72450 21.53234 101.13495 - -627.36343 25.73856 95.95342 - -624.57122 30.11188 90.85088 - -621.33550 34.65172 85.82696 - -617.63221 39.45128 80.88132 - -617.63261 39.45464 80.88132 - -610.59025 61.09139 74.08855 - -600.53203 82.62079 67.44661 - -587.44271 104.44406 60.95226 - -571.26375 126.78054 54.60226 - -551.91943 149.64712 48.39337 - -551.96142 149.97637 48.39337 - -529.31290 173.65892 42.32169 - -503.37680 196.48688 36.38074 - -474.40018 217.09472 30.56340 - -442.69307 235.49981 24.86256 - -408.56298 251.70319 19.27113 - -408.69508 252.60334 19.27113 - -372.29565 267.02358 13.78117 - -334.02857 279.29906 8.38309 - -294.34126 286.23136 3.06723 - -254.25294 285.25320 -2.17609 - -214.80761 277.04833 -7.35652 - -214.53980 276.45961 -7.35652 - -176.80171 261.73280 -12.48435 - -141.53192 241.06372 -17.56865 - -109.50790 216.02239 -22.61727 - -81.15744 188.58565 -27.63803 - -56.78328 159.44845 -32.63879 - -56.83020 159.21069 -32.63879 - -36.65762 128.86905 -37.62675 - -20.77954 97.82733 -42.60576 - -9.30331 65.98536 -47.57863 - -2.34099 33.34301 -52.54819 - 0.00004 0.00021 -57.51726 + 0.00000 0.00000 1137.25995 + 0.00000 0.00000 1129.00325 + 0.00000 0.00000 1120.74655 + 0.00000 0.00000 1112.48986 + 0.00000 0.00000 1104.23316 + 0.00000 0.00000 1095.97647 + 0.00000 0.00000 1095.97647 + 0.00000 0.00000 1087.71977 + 0.00000 0.00000 1079.46307 + 0.00000 0.00000 1071.20638 + 0.00000 0.00000 1062.94968 + 0.00000 0.00000 1054.69299 + 0.00000 0.00000 1054.69299 + -0.00283 -0.07063 1043.68405 + -0.02260 -0.28253 1032.67512 + -0.07628 -0.63569 1021.66620 + -0.18082 -1.13011 1010.65729 + -0.35316 -1.76580 999.64843 + -0.35316 -1.76580 999.64843 + -0.56081 -2.40345 990.47441 + -0.83712 -3.13920 981.30045 + -1.19192 -3.97305 972.12662 + -1.63500 -4.90500 962.95294 + -2.17619 -5.93505 953.77947 + -2.17619 -5.93505 953.77947 + -2.82528 -7.06320 944.60626 + -3.59210 -8.28945 935.43340 + -4.48644 -9.61380 926.26101 + -5.51813 -11.03625 917.08919 + -6.69696 -12.55680 907.91808 + -6.69696 -12.55680 907.91808 + -7.83593 -13.94293 900.03157 + -9.09722 -15.40162 892.14579 + -10.48709 -16.93286 884.26087 + -12.01176 -18.53666 876.37694 + -13.67747 -20.21301 868.49412 + -13.67747 -21.09986 868.49412 + -16.21468 -23.43383 858.04676 + -19.02523 -25.89530 847.60206 + -22.12365 -28.48426 837.16051 + -25.52449 -31.20070 826.72262 + -29.24226 -34.04464 816.28892 + -29.24226 -34.04464 816.28892 + -29.63203 -34.33605 815.24580 + -30.02513 -34.62873 814.20272 + -30.42157 -34.92268 813.15970 + -30.82137 -35.21792 812.11673 + -31.22454 -35.51442 811.07380 + -31.22455 -35.51397 811.07380 + -33.71948 -37.18540 804.79907 + -36.32076 -38.61059 798.52633 + -39.01092 -39.77660 792.25575 + -41.77218 -40.68344 785.98749 + -44.58764 -41.36961 779.72171 + -44.58764 -41.36959 779.72171 + -45.41643 -41.50635 777.89544 + -46.24777 -41.62434 776.06940 + -47.08126 -41.72030 774.24359 + -47.91644 -41.79424 772.41802 + -48.75290 -41.84941 770.59269 + -48.75290 -41.84941 770.59269 + -52.15042 -43.09060 763.29386 + -55.64770 -44.34308 755.99924 + -59.24557 -45.60520 748.70911 + -62.94472 -46.87436 741.42377 + -66.74560 -48.14840 734.14350 + -66.74560 -48.14840 734.14350 + -67.71176 -48.46769 732.32426 + -68.68431 -48.78719 730.50536 + -69.66325 -49.10690 728.68681 + -70.64859 -49.42679 726.86861 + -71.64032 -49.74685 725.05076 + -71.64032 -49.74685 725.05076 + -76.69512 -51.34954 715.96704 + -81.91031 -52.95470 706.89298 + -87.28612 -54.56154 697.82925 + -92.82265 -56.16921 688.77654 + -98.51997 -57.77733 679.73552 + -98.51997 -57.77733 679.73552 + -104.37807 -59.38453 670.70688 + -110.39686 -60.99118 661.69139 + -116.57626 -62.59663 652.68983 + -122.91614 -64.20056 643.70298 + -129.41633 -65.80318 634.73160 + -129.41633 -65.80319 634.73160 + -138.78551 -68.04180 622.19919 + -148.46787 -70.27683 609.70103 + -158.46279 -72.50691 597.23961 + -168.76955 -74.73163 584.81739 + -179.38743 -76.95181 572.43682 + -179.38742 -76.95188 572.43682 + -189.41928 -77.38694 560.98014 + -199.51113 -77.89357 549.56378 + -209.67714 -78.52795 538.18990 + -219.93393 -79.29013 526.86069 + -230.32733 -80.85439 515.57830 + -230.32741 -80.85578 515.57830 + -240.98116 -82.99311 504.34491 + -251.89131 -84.80024 493.16283 + -263.01492 -86.27717 482.03441 + -274.30906 -87.42390 470.96202 + -285.73082 -88.24043 459.94803 + -285.73082 -88.24043 459.94803 + -298.97876 -88.98957 447.35725 + -312.33870 -89.73872 434.85064 + -325.81064 -90.48786 422.43200 + -339.39457 -91.23701 410.10513 + -353.09051 -91.98615 397.87382 + -353.09051 -91.98616 397.87382 + -366.89843 -92.73530 385.74188 + -380.81836 -93.48445 373.71325 + -394.85028 -94.23359 361.79186 + -408.99420 -94.98273 349.98168 + -423.25012 -95.73188 338.28665 + -423.25012 -95.73187 338.28665 + -437.61804 -96.48102 326.71076 + -452.09795 -97.23016 315.25808 + -466.68986 -97.97930 303.93272 + -481.39376 -98.72845 292.73879 + -496.14536 -98.18720 281.68039 + -496.14529 -98.18708 281.68039 + -510.61573 -95.33405 270.76177 + -524.62808 -92.03768 259.98693 + -538.10974 -88.23447 249.35967 + -550.98490 -83.92383 238.88377 + -563.18077 -79.16767 228.56301 + -563.18080 -79.16793 228.56301 + -563.33907 -79.09999 228.42601 + -563.49720 -79.03197 228.28904 + -563.65520 -78.96386 228.15209 + -563.81306 -78.89566 228.01517 + -563.97078 -78.82738 227.87829 + -563.97078 -78.82748 227.87829 + -564.12836 -78.75178 227.74143 + -564.28579 -78.67604 227.60460 + -564.44306 -78.60026 227.46779 + -564.60019 -78.52444 227.33102 + -564.75716 -78.44858 227.19427 + -564.75716 -78.44857 227.19427 + -567.55660 -77.07380 224.73772 + -570.30633 -75.68673 222.29044 + -573.00587 -74.28559 219.85246 + -575.65472 -72.87039 217.42385 + -578.25239 -71.44287 215.00463 + -578.25239 -71.44289 215.00463 + -586.53358 -66.55743 207.00905 + -594.22069 -61.53479 199.11988 + -601.29566 -56.35529 191.33841 + -607.73967 -51.01876 183.66591 + -613.53465 -45.54455 176.10367 + -613.53466 -45.54457 176.10367 + -616.18316 -42.73384 172.36426 + -618.66203 -39.88864 168.65280 + -620.96901 -37.00407 164.96939 + -623.10173 -34.08011 161.31413 + -625.05793 -31.12164 157.68714 + -625.05801 -31.12165 157.68714 + -627.89992 -25.76085 151.70523 + -630.21271 -20.47618 145.80243 + -631.99136 -15.07776 139.97895 + -633.22447 -9.56543 134.23504 + -633.90301 -4.01010 128.57089 + -633.90204 -3.98733 128.57089 + -634.04284 0.54223 123.98594 + -633.81478 5.01088 119.45469 + -633.22258 9.42391 114.97711 + -632.27075 13.78238 110.55313 + -630.96384 18.08322 106.18272 + -630.96387 18.08307 106.18272 + -628.95260 22.20094 100.92532 + -626.51284 26.64382 95.74716 + -623.62226 31.13391 90.64788 + -620.28454 35.66978 85.62711 + -616.47967 40.46472 80.68448 + -616.48008 40.46819 80.68448 + -609.29892 62.05924 73.89567 + -599.10890 83.53451 67.25738 + -585.89596 105.29470 60.76633 + -569.60287 127.55863 54.41925 + -550.15528 150.34256 48.21287 + -550.19722 150.67169 48.21287 + -527.45777 174.26091 42.14326 + -501.44435 196.98913 36.20391 + -472.40468 217.49163 30.38771 + -440.64994 235.78165 24.68753 + -406.48906 251.85930 19.09623 + -406.62119 252.76278 19.09623 + -370.22921 266.75527 13.60589 + -332.04225 278.33613 8.20690 + -292.56715 284.08725 2.88967 + -252.84863 282.32114 -2.35542 + -213.81795 274.11090 -7.53798 + -213.55136 273.51547 -7.53798 + -176.19967 259.26080 -12.66819 + -141.22333 239.32776 -17.75501 + -109.39404 214.97746 -22.80625 + -81.14120 188.23671 -27.82969 + -56.78330 159.44875 -32.83312 + -56.83020 159.21069 -32.83312 + -36.65762 128.86905 -37.82373 + -20.77954 97.82733 -42.80540 + -9.30331 65.98536 -47.78093 + -2.34099 33.34301 -52.75315 + 0.00004 0.00021 -57.72487 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -32033,52 +32169,52 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -3.12560 1.16620 4.49111 0.40666 0.67950 0.34870 3.85106 - -3.19420 2.33240 8.98222 0.81331 0.62993 0.34870 3.85106 - -3.26280 3.49860 13.47333 1.21997 0.61341 0.34870 3.85106 - -3.33140 4.66480 17.96445 1.62663 0.60514 0.34870 3.85106 - -3.40000 5.83100 21.33278 1.93162 0.60019 0.34870 3.85106 - -3.40000 5.83100 22.78290 2.06292 0.60019 0.34870 3.85106 - -3.42000 6.17100 23.76492 2.15184 0.59880 0.34870 3.85106 - -3.44000 6.51100 25.07428 2.27040 0.59756 0.34870 3.85106 - -3.46000 6.85100 26.38364 2.38896 0.59644 0.34870 3.85106 - -3.48000 7.19100 27.69300 2.50752 0.59543 0.34870 3.85106 - -3.50000 7.53100 28.67503 2.59644 0.59451 0.34870 3.85106 - -3.50000 7.53100 15.16627 3.62724 0.80423 0.48114 2.01176 - -3.58000 7.56220 15.03793 3.64454 0.80391 0.48194 1.98857 - -3.66000 7.59340 14.91285 3.66630 0.80361 0.48283 1.96392 - -3.74000 7.62460 14.82611 3.68739 0.80330 0.48362 1.94451 - -3.82000 7.65580 14.76580 3.70819 0.80300 0.48436 1.92871 - -3.90000 7.68700 14.73291 3.72368 0.80270 0.48491 1.91855 - -3.90000 7.68700 14.72194 3.73012 0.80270 0.48513 1.91469 - -3.92000 7.69480 14.71612 3.73398 0.80233 0.48526 1.91248 - -3.94000 7.70260 14.70905 3.73912 0.80197 0.48544 1.90962 - -3.96000 7.71040 14.70276 3.74426 0.80161 0.48561 1.90687 - -3.98000 7.71820 14.69718 3.74940 0.80125 0.48579 1.90422 - -4.00000 7.72600 14.69343 3.75324 0.80090 0.48592 1.90230 - -4.00000 7.72600 14.68719 3.76094 0.80407 0.48618 1.89861 - -4.10000 7.76500 14.67718 3.78015 0.78976 0.48682 1.89017 - -4.20000 7.80400 14.67358 3.80572 0.78019 0.48766 1.88026 - -4.30000 7.84300 14.67933 3.83128 0.77072 0.48850 1.87165 - -4.40000 7.88200 14.69244 3.85681 0.76134 0.48932 1.86405 - -4.50000 7.92100 14.70605 3.87596 0.75205 0.48993 1.85888 - -4.50000 7.92100 14.71686 3.88871 0.75205 0.49033 1.85567 - -4.60000 7.96000 14.73530 3.90785 0.74286 0.49094 1.85117 - -4.70000 7.99900 14.76313 3.93336 0.73375 0.49173 1.84562 - -4.80000 8.03800 14.79431 3.95886 0.72474 0.49252 1.84055 - -4.90000 8.07700 14.82833 3.98436 0.71581 0.49330 1.83587 - -5.00000 8.11600 14.85538 4.00348 0.70696 0.49388 1.83258 - -5.00000 8.11600 14.87798 4.01878 0.88810 0.49434 1.83009 - -5.14000 8.17060 14.91928 4.04555 0.66540 0.49514 1.82597 - -5.28000 8.22520 14.97708 4.08124 0.65562 0.49619 1.82088 - -5.42000 8.27980 15.03770 4.11693 0.64596 0.49723 1.81619 - -5.56000 8.33440 15.10068 4.15262 0.63643 0.49825 1.81185 - -5.70000 8.38900 15.14920 4.17938 0.62702 0.49901 1.80878 - -5.70000 8.38900 28.99264 -1.24264 0.59204 0.00000 3.64153 - -5.83000 6.67970 26.40204 -1.92982 0.53716 0.00000 3.95258 - -5.96000 4.97040 22.94704 -2.84515 0.44454 0.00000 4.61674 - -6.09000 3.26110 19.49087 -3.75928 0.25481 0.00000 5.97678 - -6.22000 1.55180 16.03334 -4.67201 0.00000 0.00000 10.33209 + -3.12560 1.16620 4.49111 0.40666 0.65948 0.34870 3.85106 + -3.19420 2.33240 8.98222 0.81331 0.62095 0.34870 3.85106 + -3.26280 3.49860 13.47333 1.21997 0.60810 0.34870 3.85106 + -3.33140 4.66480 17.96445 1.62663 0.60168 0.34870 3.85106 + -3.40000 5.83100 21.33278 1.93162 0.59783 0.34870 3.85106 + -3.40000 5.83100 22.78290 2.06292 0.59783 0.34870 3.85106 + -3.42000 6.17100 23.76492 2.15184 0.59698 0.34870 3.85106 + -3.44000 6.51100 25.07428 2.27040 0.59622 0.34870 3.85106 + -3.46000 6.85100 26.38364 2.38896 0.59553 0.34870 3.85106 + -3.48000 7.19100 27.69300 2.50752 0.59491 0.34870 3.85106 + -3.50000 7.53100 28.67503 2.59644 0.59435 0.34870 3.85106 + -3.50000 7.53100 15.16627 3.62724 0.80406 0.48114 2.01176 + -3.58000 7.56220 15.03793 3.64454 0.80432 0.48194 1.98857 + -3.66000 7.59340 14.91285 3.66630 0.80457 0.48283 1.96392 + -3.74000 7.62460 14.82611 3.68739 0.80482 0.48362 1.94451 + -3.82000 7.65580 14.76580 3.70819 0.80507 0.48436 1.92871 + -3.90000 7.68700 14.73291 3.72368 0.80532 0.48491 1.91855 + -3.90000 7.68700 14.72194 3.73012 0.80532 0.48513 1.91469 + -3.92000 7.69480 14.71612 3.73398 0.80538 0.48526 1.91248 + -3.94000 7.70260 14.70905 3.73912 0.80531 0.48544 1.90962 + -3.96000 7.71040 14.70276 3.74426 0.80525 0.48561 1.90687 + -3.98000 7.71820 14.69718 3.74940 0.80518 0.48579 1.90422 + -4.00000 7.72600 14.69343 3.75324 0.80512 0.48592 1.90230 + -4.00000 7.72600 14.68719 3.76094 0.80512 0.48618 1.89861 + -4.10000 7.76500 14.67718 3.78015 0.80480 0.48682 1.89017 + -4.20000 7.80400 14.67358 3.80572 0.80448 0.48766 1.88026 + -4.30000 7.84300 14.67933 3.83128 0.80417 0.48850 1.87165 + -4.40000 7.88200 14.69244 3.85681 0.80385 0.48932 1.86405 + -4.50000 7.92100 14.70605 3.87596 0.80355 0.48993 1.85888 + -4.50000 7.92100 14.71686 3.88871 0.80355 0.49033 1.85567 + -4.60000 7.96000 14.73530 3.90785 0.80324 0.49094 1.85117 + -4.70000 7.99900 14.76313 3.93336 0.80294 0.49173 1.84562 + -4.80000 8.03800 14.79431 3.95886 0.80264 0.49252 1.84055 + -4.90000 8.07700 14.82833 3.98436 0.80234 0.49330 1.83587 + -5.00000 8.11600 14.85538 4.00348 0.80205 0.49388 1.83258 + -5.00000 8.11600 14.87798 4.01878 0.80205 0.49434 1.83009 + -5.14000 8.17060 14.91928 4.04555 0.80164 0.49514 1.82597 + -5.28000 8.22520 14.97708 4.08124 0.80124 0.49619 1.82088 + -5.42000 8.27980 15.03770 4.11693 0.80084 0.49723 1.81619 + -5.56000 8.33440 15.10068 4.15262 0.80045 0.49825 1.81185 + -5.70000 8.38900 15.14920 4.17938 0.80007 0.49901 1.80878 + -5.70000 8.38900 28.99264 -1.24264 0.76509 0.00000 3.64153 + -5.83000 6.67970 26.40204 -1.92982 0.75467 0.00000 3.95258 + -5.96000 4.97040 22.94704 -2.84515 0.73939 0.00000 4.61674 + -6.09000 3.26110 19.49087 -3.75928 0.70808 0.00000 5.97678 + -6.22000 1.55180 16.03334 -4.67201 0.60781 0.00000 10.33209 -6.35000 0.00000 13.43923 -5.35558 0.00000 0.00000 0.00000 -6.35000 0.00000 11.70926 -5.81070 0.00000 0.00000 0.00000 -6.48000 0.00000 9.11334 -6.49241 0.00000 0.00000 0.00000 @@ -32103,91 +32239,91 @@ Lambda passive -8.79400 5.63006 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 6.82456 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 8.01907 0.00000 0.00000 0.00000 0.00000 0.00000 - -9.24250 9.21357 23.12477 3.17779 0.43063 0.35646 2.59393 - -9.24250 9.21357 28.68607 3.95537 0.43063 0.41582 3.01571 - -9.39200 10.40808 31.23759 4.32921 0.45482 0.41595 3.00128 - -9.54150 11.60258 34.62766 4.82798 0.47402 0.41611 2.98448 - -9.69100 12.79709 38.00976 5.32709 0.48964 0.41627 2.97019 - -9.84050 13.99159 41.38926 5.82649 0.50260 0.41643 2.95815 - -9.99000 15.18610 43.92430 6.20120 0.51351 0.41654 2.95042 - -9.99000 15.18610 44.78091 6.32779 0.51351 0.41657 2.94803 - -9.99200 15.20208 44.81484 6.33281 0.51127 0.41658 2.94794 - -9.99400 15.21806 44.86008 6.33950 0.50903 0.41658 2.94782 - -9.99600 15.23404 44.90533 6.34618 0.50679 0.41658 2.94770 - -9.99800 15.25002 44.95057 6.35287 0.50456 0.41658 2.94757 - -10.00000 15.26600 44.98450 6.35788 0.50234 0.41658 2.94748 - -10.00000 15.26600 43.82163 2.66837 0.60728 0.17476 2.87003 - -10.00200 15.27678 43.83783 2.67272 0.60619 0.17495 2.86957 - -10.00400 15.28756 43.85944 2.67850 0.60511 0.17521 2.86896 - -10.00600 15.29834 43.88104 2.68430 0.60403 0.17546 2.86835 - -10.00800 15.30912 43.90263 2.69008 0.60295 0.17572 2.86774 - -10.01000 15.31990 43.91885 2.69443 0.60187 0.17591 2.86729 - -10.01000 15.31990 44.02147 2.72193 0.60187 0.17711 2.86441 - -10.04600 15.51394 44.31318 2.80009 0.60184 0.18049 2.85635 - -10.08200 15.70798 44.70221 2.90433 0.60182 0.18490 2.84583 - -10.11800 15.90202 45.09134 3.00858 0.60179 0.18919 2.83557 - -10.15400 16.09606 45.48056 3.11284 0.60176 0.19339 2.82557 - -10.19000 16.29010 45.77253 3.19104 0.60173 0.19647 2.81823 - -10.19000 16.29010 46.19437 3.30402 0.60173 0.20083 2.80786 - -10.31000 16.93690 47.16819 3.56478 0.60614 0.21047 2.78494 - -10.43000 17.58370 48.46727 3.91258 0.61022 0.22251 2.75637 - -10.55000 18.23050 49.76704 4.26050 0.61401 0.23370 2.72988 - -10.67000 18.87730 51.06740 4.60854 0.61754 0.24413 2.70523 - -10.79000 19.52410 52.04299 4.86964 0.62084 0.25150 2.68784 - -10.79000 19.52410 52.53089 5.00021 0.53348 0.25505 2.67947 - -10.85000 19.84750 53.01885 5.13080 0.63242 0.25851 2.67131 - -10.91000 20.17090 53.66956 5.30494 0.62661 0.26300 2.66074 - -10.97000 20.49430 54.32035 5.47910 0.62098 0.26735 2.65051 - -11.03000 20.81770 54.97124 5.65329 0.61553 0.27156 2.64060 - -11.09000 21.14110 55.45946 5.78395 0.61025 0.27464 2.63337 - -11.09000 21.14110 55.89346 5.90010 1.33726 0.27731 2.62708 - -11.19000 21.68010 56.70732 6.11791 0.50630 0.28219 2.61564 - -11.29000 22.21910 57.79262 6.40837 0.50703 0.28842 2.60103 - -11.39000 22.75810 58.87808 6.69889 0.50772 0.29435 2.58713 - -11.49000 23.29710 59.96369 6.98947 0.50838 0.30001 2.57387 - -11.59000 23.83610 60.77797 7.20743 0.50902 0.30409 2.56433 - -11.59000 23.83610 61.27201 7.33968 0.50902 0.30650 2.55869 - -11.67200 24.27808 61.93981 7.51845 0.50864 0.30968 2.55126 - -11.75400 24.72006 62.83027 7.75683 0.50827 0.31379 2.54167 - -11.83600 25.16204 63.72080 7.99525 0.50792 0.31775 2.53242 - -11.91800 25.60402 64.61138 8.23370 0.50758 0.32158 2.52349 - -12.00000 26.04600 65.27935 8.41255 0.50725 0.32436 2.51699 - -12.00000 26.04600 47.38713 14.30649 0.54223 0.53296 1.76533 - -12.10000 29.23500 51.11058 15.86934 0.56526 0.54282 1.74827 - -12.20000 32.42400 56.06909 17.95316 0.58376 0.55370 1.72925 - -12.30000 35.61300 61.02029 20.03697 0.59895 0.56263 1.71343 - -12.40000 38.80200 65.96424 22.12080 0.61164 0.57009 1.70002 - -12.50000 41.99100 69.66773 23.68367 0.62241 0.57493 1.69122 - -12.50000 41.99100 208.79402 13.66035 0.38487 0.32258 4.93047 - -12.64000 43.41760 205.89098 14.01175 0.38767 0.32272 4.74211 - -12.78000 44.84420 206.74419 14.47982 0.39029 0.32289 4.61028 - -12.92000 46.27080 209.90982 14.94738 0.39275 0.32304 4.53655 - -13.06000 47.69740 214.14502 15.41450 0.39506 0.32317 4.48966 - -13.20000 49.12400 217.71253 15.76459 0.39724 0.32326 4.46431 - -13.20000 49.12400 220.23214 15.99786 0.39724 0.32332 4.45087 - -13.34000 50.55060 224.16343 16.34759 0.39929 0.32339 4.43444 - -13.48000 51.97720 229.59410 16.81364 0.40124 0.32348 4.41721 - -13.62000 53.40380 235.19066 17.27942 0.40308 0.32356 4.40401 - -13.76000 54.83040 240.90655 17.74493 0.40482 0.32363 4.39367 - -13.90000 56.25700 245.25060 18.09393 0.40647 0.32368 4.38728 - -13.90000 56.25700 248.17124 18.32652 0.55286 0.32371 4.38359 - -14.04000 57.68360 252.58250 18.67531 0.55286 0.32375 4.37876 - -14.18000 59.11020 258.50622 19.14021 0.55286 0.32381 4.37329 - -14.32000 60.53680 264.47107 19.60494 0.55286 0.32385 4.36877 - -14.46000 61.96340 270.46885 20.06952 0.55286 0.32389 4.36498 - -14.60000 63.39000 274.98428 20.41786 0.55286 0.32392 4.36252 - -14.60000 63.39000 278.00240 20.65005 0.55286 0.32394 4.36105 - -14.74000 64.81660 282.53975 20.99827 0.55286 0.32396 4.35906 - -14.88000 66.24320 288.60433 21.46247 0.55286 0.32400 4.35674 - -15.02000 67.66980 294.68409 21.92657 0.55286 0.32402 4.35474 - -15.16000 69.09640 300.77666 22.39057 0.55286 0.32405 4.35300 - -15.30000 70.52300 305.35301 22.73851 0.55286 0.32407 4.35184 - -15.30000 70.52300 308.40719 22.97045 0.55286 0.32408 4.35114 - -15.44000 71.94960 312.99283 23.31831 0.55286 0.32409 4.35017 - -15.58000 73.37620 319.11356 23.78207 0.55286 0.32411 4.34901 - -15.72000 74.80280 325.24120 24.24576 0.55286 0.32413 4.34798 - -15.86000 76.22940 331.37485 24.70939 0.55286 0.32415 4.34707 - -16.00000 77.65600 335.97842 25.05707 0.55286 0.32416 4.34646 + -9.24250 9.21357 23.12477 3.17779 0.65048 0.35646 2.59393 + -9.24250 9.21357 28.68607 3.95537 0.65048 0.41582 3.01571 + -9.39200 10.40808 31.23759 4.32921 0.65048 0.41595 3.00128 + -9.54150 11.60258 34.62766 4.82798 0.65048 0.41611 2.98448 + -9.69100 12.79709 38.00976 5.32709 0.65048 0.41627 2.97019 + -9.84050 13.99159 41.38926 5.82649 0.65048 0.41643 2.95815 + -9.99000 15.18610 43.92430 6.20120 0.65048 0.41654 2.95042 + -9.99000 15.18610 44.78091 6.32779 0.65048 0.41657 2.94803 + -9.99200 15.20208 44.81484 6.33281 0.65048 0.41658 2.94794 + -9.99400 15.21806 44.86008 6.33950 0.65048 0.41658 2.94782 + -9.99600 15.23404 44.90533 6.34618 0.47431 0.41658 2.94770 + -9.99800 15.25002 44.95057 6.35287 0.47441 0.41658 2.94757 + -10.00000 15.26600 44.98450 6.35788 0.47452 0.41658 2.94748 + -10.00000 15.26600 43.82163 2.66837 0.57946 0.17476 2.87003 + -10.00200 15.27678 43.83783 2.67272 0.62299 0.17495 2.86957 + -10.00400 15.28756 43.85944 2.67850 0.62304 0.17521 2.86896 + -10.00600 15.29834 43.88104 2.68430 0.62309 0.17546 2.86835 + -10.00800 15.30912 43.90263 2.69008 0.62315 0.17572 2.86774 + -10.01000 15.31990 43.91885 2.69443 0.62320 0.17591 2.86729 + -10.01000 15.31990 44.02147 2.72193 0.62320 0.17711 2.86441 + -10.04600 15.51394 44.31318 2.80009 0.62415 0.18049 2.85635 + -10.08200 15.70798 44.70221 2.90433 0.62508 0.18490 2.84583 + -10.11800 15.90202 45.09134 3.00858 0.62599 0.18919 2.83557 + -10.15400 16.09606 45.48056 3.11284 0.62687 0.19339 2.82557 + -10.19000 16.29010 45.77253 3.19104 0.62773 0.19647 2.81823 + -10.19000 16.29010 46.19437 3.30402 0.62773 0.20083 2.80786 + -10.31000 16.93690 47.16819 3.56478 0.63047 0.21047 2.78494 + -10.43000 17.58370 48.46727 3.91258 0.63300 0.22251 2.75637 + -10.55000 18.23050 49.76704 4.26050 0.63535 0.23370 2.72988 + -10.67000 18.87730 51.06740 4.60854 0.63754 0.24413 2.70523 + -10.79000 19.52410 52.04299 4.86964 0.63959 0.25150 2.68784 + -10.79000 19.52410 52.53089 5.00021 0.63959 0.25505 2.67947 + -10.85000 19.84750 53.01885 5.13080 0.64056 0.25851 2.67131 + -10.91000 20.17090 53.66956 5.30494 0.64150 0.26300 2.66074 + -10.97000 20.49430 54.32035 5.47910 0.64241 0.26735 2.65051 + -11.03000 20.81770 54.97124 5.65329 0.64330 0.27156 2.64060 + -11.09000 21.14110 55.45946 5.78395 0.64415 0.27464 2.63337 + -11.09000 21.14110 55.89346 5.90010 0.64415 0.27731 2.62708 + -11.19000 21.68010 56.70732 6.11791 0.64552 0.28219 2.61564 + -11.29000 22.21910 57.79262 6.40837 0.64683 0.28842 2.60103 + -11.39000 22.75810 58.87808 6.69889 0.64807 0.29435 2.58713 + -11.49000 23.29710 59.96369 6.98947 0.64926 0.30001 2.57387 + -11.59000 23.83610 60.77797 7.20743 0.65039 0.30409 2.56433 + -11.59000 23.83610 61.27201 7.33968 0.65039 0.30650 2.55869 + -11.67200 24.27808 61.93981 7.51845 0.65128 0.30968 2.55126 + -11.75400 24.72006 62.83027 7.75683 0.65214 0.31379 2.54167 + -11.83600 25.16204 63.72080 7.99525 0.65297 0.31775 2.53242 + -11.91800 25.60402 64.61138 8.23370 0.65376 0.32158 2.52349 + -12.00000 26.04600 65.27935 8.41255 0.65454 0.32436 2.51699 + -12.00000 26.04600 47.38713 14.30649 0.68952 0.53296 1.76533 + -12.10000 29.23500 51.11058 15.86934 0.70690 0.54282 1.74827 + -12.20000 32.42400 56.06909 17.95316 0.71027 0.55370 1.72925 + -12.30000 35.61300 61.02029 20.03697 0.71304 0.56263 1.71343 + -12.40000 38.80200 65.96424 22.12080 0.71535 0.57009 1.70002 + -12.50000 41.99100 69.66773 23.68367 0.71731 0.57493 1.69122 + -12.50000 41.99100 208.79402 13.66035 0.47977 0.32258 4.93047 + -12.64000 43.41760 205.89098 14.01175 0.42846 0.32272 4.74211 + -12.78000 44.84420 206.74419 14.47982 0.42979 0.32289 4.61028 + -12.92000 46.27080 209.90982 14.94738 0.43103 0.32304 4.53655 + -13.06000 47.69740 214.14502 15.41450 0.43220 0.32317 4.48966 + -13.20000 49.12400 217.71253 15.76459 0.43330 0.32326 4.46431 + -13.20000 49.12400 220.23214 15.99786 0.43330 0.32332 4.45087 + -13.34000 50.55060 224.16343 16.34759 0.43434 0.32339 4.43444 + -13.48000 51.97720 229.59410 16.81364 0.43532 0.32348 4.41721 + -13.62000 53.40380 235.19066 17.27942 0.43625 0.32356 4.40401 + -13.76000 54.83040 240.90655 17.74493 0.43713 0.32363 4.39367 + -13.90000 56.25700 245.25060 18.09393 0.43796 0.32368 4.38728 + -13.90000 56.25700 248.17124 18.32652 0.43796 0.32371 4.38359 + -14.04000 57.68360 252.58250 18.67531 0.43876 0.32375 4.37876 + -14.18000 59.11020 258.50622 19.14021 0.43951 0.32381 4.37329 + -14.32000 60.53680 264.47107 19.60494 0.44023 0.32385 4.36877 + -14.46000 61.96340 270.46885 20.06952 0.44092 0.32389 4.36498 + -14.60000 63.39000 274.98428 20.41786 0.44158 0.32392 4.36252 + -14.60000 63.39000 278.00240 20.65005 0.44158 0.32394 4.36105 + -14.74000 64.81660 282.53975 20.99827 0.44220 0.32396 4.35906 + -14.88000 66.24320 288.60433 21.46247 0.44280 0.32400 4.35674 + -15.02000 67.66980 294.68409 21.92657 0.44338 0.32402 4.35474 + -15.16000 69.09640 300.77666 22.39057 0.44393 0.32405 4.35300 + -15.30000 70.52300 305.35301 22.73851 0.44446 0.32407 4.35184 + -15.30000 70.52300 308.40719 22.97045 0.44446 0.32408 4.35114 + -15.44000 71.94960 312.99283 23.31831 0.44497 0.32409 4.35017 + -15.58000 73.37620 319.11356 23.78207 0.44546 0.32411 4.34901 + -15.72000 74.80280 325.24120 24.24576 0.44593 0.32413 4.34798 + -15.86000 76.22940 331.37485 24.70939 0.44638 0.32415 4.34707 + -16.00000 77.65600 335.97842 25.05707 0.44681 0.32416 4.34646 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -32253,52 +32389,52 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00292 0.00292 1 0 A - 4.06861 0.00000 4.49111 0.79244 220 91 2 - 8.51917 0.00000 8.98222 1.46925 220 95 2 - 12.96977 0.00000 13.47333 2.14606 220 96 2 - 17.42040 0.00000 17.96445 2.82287 220 97 2 - 20.74830 0.00000 21.33278 3.32470 220 97 2 - 22.19842 0.00000 22.78290 3.55070 220 97 2 - 23.16866 0.00000 23.76492 3.69520 220 97 2 - 24.46624 0.00000 25.07428 3.89071 220 98 2 - 25.76383 0.00000 26.38364 4.08623 220 98 2 - 27.06142 0.00000 27.69300 4.28174 220 98 2 - 28.03168 0.00000 28.67503 4.42672 220 98 2 - 14.96523 0.00000 15.16627 6.06290 220 99 2 - 14.82219 0.78480 15.03793 6.07937 220 99 2 - 14.68243 1.56960 14.91285 6.10211 220 98 2 - 14.58105 2.35440 14.82611 6.12485 220 98 2 - 14.50612 3.13920 14.76580 6.14759 220 98 2 - 14.45864 3.92400 14.73291 6.16407 220 98 2 - 14.44767 3.92400 14.72194 6.17189 220 98 2 - 14.43821 4.12020 14.71612 6.17381 220 98 2 - 14.42750 4.31640 14.70905 6.17728 220 98 2 - 14.41756 4.51260 14.70276 6.18076 220 98 2 - 14.40835 4.70880 14.69718 6.18424 220 98 2 - 14.40096 4.90500 14.69343 6.18616 220 98 2 - 14.39473 4.90500 14.68719 6.22011 220 98 2 - 14.36657 5.88600 14.67718 6.13247 220 98 2 - 14.34488 6.86700 14.67358 6.08861 220 98 2 - 14.33259 7.84800 14.67933 6.04475 220 98 2 - 14.32773 8.82900 14.69244 6.00088 220 98 2 - 14.32345 9.81000 14.70605 5.94969 220 97 2 - 14.33426 9.81000 14.71686 5.96435 220 97 2 - 14.33487 10.79100 14.73530 5.91316 220 97 2 - 14.34495 11.77200 14.76313 5.86929 220 97 2 - 14.35847 12.75300 14.79431 5.82543 220 97 2 - 14.37490 13.73400 14.82833 5.78157 220 97 2 - 14.38446 14.71500 14.85538 5.73081 220 97 2 - 14.40706 14.71500 14.87798 7.21993 220 97 2 - 14.42404 16.08840 14.91928 5.43675 220 97 2 - 14.45772 17.46180 14.97708 5.39259 220 97 2 - 14.49444 18.83520 15.03770 5.34842 220 96 2 - 14.53376 20.20860 15.10068 5.30426 220 96 2 - 14.55886 21.58200 15.14920 5.25154 220 96 2 - 27.10357 21.58200 28.99264 4.71365 220 93 2 - 24.44415 25.39730 26.40204 3.58809 220 93 2 - 20.92113 29.21260 22.94704 2.20953 220 91 2 - 17.39778 33.02790 19.49087 0.83097 220 89 2 - 13.87400 36.84320 16.03334 0.00000 220 87 2 + 4.07374 0.00000 4.49111 0.76908 220 91 2 + 8.52476 0.00000 8.98222 1.44830 220 95 2 + 12.97582 0.00000 13.47333 2.12751 220 96 2 + 17.42691 0.00000 17.96445 2.80672 220 97 2 + 20.75526 0.00000 21.33278 3.31164 220 97 2 + 22.20538 0.00000 22.78290 3.53675 220 97 2 + 23.17575 0.00000 23.76492 3.68395 220 98 2 + 24.47346 0.00000 25.07428 3.88198 220 98 2 + 25.77118 0.00000 26.38364 4.08000 220 98 2 + 27.06891 0.00000 27.69300 4.27802 220 98 2 + 28.03930 0.00000 28.67503 4.42552 220 98 2 + 14.96761 0.00000 15.16627 6.06168 220 99 2 + 14.82473 0.78480 15.03793 6.08242 220 99 2 + 14.68514 1.56960 14.91285 6.10944 220 98 2 + 14.58392 2.35440 14.82611 6.13645 220 98 2 + 14.50915 3.13920 14.76580 6.16346 220 98 2 + 14.46183 3.92400 14.73291 6.18419 220 98 2 + 14.45086 3.92400 14.72194 6.19204 220 98 2 + 14.44144 4.12020 14.71612 6.19723 220 98 2 + 14.43077 4.31640 14.70905 6.20301 220 98 2 + 14.42087 4.51260 14.70276 6.20879 220 98 2 + 14.41170 4.70880 14.69718 6.21457 220 98 2 + 14.40435 4.90500 14.69343 6.21878 220 98 2 + 14.39811 4.90500 14.68719 6.22820 220 98 2 + 14.37015 5.88600 14.67718 6.24926 220 98 2 + 14.34866 6.86700 14.67358 6.27816 220 98 2 + 14.33656 7.84800 14.67933 6.30707 220 98 2 + 14.33189 8.82900 14.69244 6.33598 220 98 2 + 14.32780 9.81000 14.70605 6.35705 220 97 2 + 14.33860 9.81000 14.71686 6.37272 220 97 2 + 14.33940 10.79100 14.73530 6.39379 220 97 2 + 14.34967 11.77200 14.76313 6.42269 220 97 2 + 14.36336 12.75300 14.79431 6.45160 220 97 2 + 14.37996 13.73400 14.82833 6.48051 220 97 2 + 14.38970 14.71500 14.85538 6.50159 220 97 2 + 14.41230 14.71500 14.87798 6.52036 220 97 2 + 14.42951 16.08840 14.91928 6.54988 220 97 2 + 14.46343 17.46180 14.97708 6.59035 220 97 2 + 14.50036 18.83520 15.03770 6.63082 220 96 2 + 14.53989 20.20860 15.10068 6.67129 220 96 2 + 14.56520 21.58200 15.14920 6.70083 220 96 2 + 27.12386 21.58200 28.99264 6.09136 220 94 2 + 24.46503 25.39730 26.40204 5.04099 220 93 2 + 20.94256 29.21260 22.94704 3.67506 220 91 2 + 17.41975 33.02790 19.49087 2.30913 220 89 2 + 13.89647 36.84320 16.03334 0.94320 220 87 2 0.00000 40.65850 0.00000 0.00000 1 0 A 0.00000 40.65850 0.00000 0.00000 1 0 A 0.00000 44.47380 0.00000 0.00000 1 0 A @@ -32316,98 +32452,98 @@ Status character 0.00000 68.53457 0.00000 0.00000 1 0 A 0.00000 70.00117 0.00000 0.00000 1 0 A 0.00000 71.46776 0.00000 0.00000 1 0 A - 0.00000 72.93436 0.00000 0.00000 1 100 A + 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A 0.00000 77.33414 0.00000 0.00000 1 0 A 0.00000 78.80074 0.00000 0.00000 1 0 A 0.00000 80.26733 0.00000 0.00000 1 0 A - 17.21956 81.73392 23.12477 3.83907 220 74 2 - 22.78086 81.73392 28.68607 4.09627 220 79 2 - 25.32367 83.20052 31.23759 4.73378 220 81 2 - 28.71463 84.66711 34.62766 5.49989 220 83 2 - 32.10715 86.13371 38.00976 6.26601 220 84 2 - 35.50653 87.60031 41.38926 7.03212 220 86 2 - 38.07083 89.06690 43.92430 7.64488 220 87 2 - 38.92745 89.06690 44.78091 7.80028 220 87 2 - 38.96184 89.08652 44.81484 7.77232 220 87 2 - 39.00753 89.10614 44.86008 7.74642 220 87 2 - 39.05323 89.12576 44.90533 7.72051 220 87 2 - 39.09894 89.14538 44.95057 7.69460 220 87 2 - 39.13332 89.16500 44.98450 7.66668 220 87 2 - 42.84643 89.16500 43.82163 9.27233 220 98 2 - 42.86271 89.18462 43.83783 9.26069 220 98 2 - 42.88439 89.20424 43.85944 9.25068 220 98 2 - 42.90608 89.22386 43.88104 9.24067 220 98 2 - 42.92775 89.24348 43.90263 9.23067 220 98 2 - 42.94405 89.26310 43.91885 9.21903 220 98 2 - 43.04666 89.26310 44.02147 9.24985 220 98 2 - 43.33983 89.61626 44.31318 9.33699 220 98 2 - 43.73040 89.96942 44.70221 9.45332 220 98 2 - 44.12116 90.32258 45.09134 9.56964 220 98 2 - 44.51211 90.67574 45.48056 9.68597 220 98 2 - 44.80589 91.02890 45.77253 9.77311 220 98 2 - 45.22772 91.02890 46.19437 9.89960 220 98 2 - 46.20819 92.20610 47.16819 10.26610 220 98 2 - 47.51485 93.38330 48.46727 10.72990 220 98 2 - 48.82309 94.56050 49.76704 11.19370 220 98 2 - 50.13277 95.73770 51.06740 11.65750 220 98 2 - 51.11849 96.91490 52.04299 12.02091 220 98 2 - 51.60639 96.91490 52.53089 10.45882 220 98 2 - 52.09971 97.50350 53.01885 12.55192 220 98 2 - 52.75595 98.09210 53.66956 12.63925 220 98 2 - 53.41245 98.68070 54.32035 12.72659 220 98 2 - 54.06920 99.26930 54.97124 12.81393 220 98 2 - 54.56344 99.85790 55.45946 12.85193 220 98 2 - 54.99745 99.85790 55.89346 28.45130 220 98 2 - 55.82167 100.83890 56.70732 10.97663 220 98 2 - 56.91769 101.81990 57.79262 11.26570 220 98 2 - 58.01417 102.80090 58.87808 11.55478 220 99 2 - 59.06413 103.78190 59.96369 11.84386 220 98 2 - 58.00760 104.76290 60.77797 12.06435 220 95 2 - 58.22407 104.76290 61.27201 12.18918 220 95 2 - 57.36736 105.56732 61.93981 12.34872 220 93 2 - 56.62165 106.37174 62.83027 12.56451 220 90 2 - 55.88940 107.17616 63.72080 12.78030 220 88 2 - 55.17057 107.98058 64.61138 12.99608 220 85 2 - 54.36767 108.78500 65.27935 13.15582 220 83 2 - 45.79953 108.78500 47.38713 14.55527 220 97 2 - 49.54552 106.76600 51.11058 16.52547 220 97 2 - 54.52598 104.74700 56.06909 18.92797 220 97 2 - 59.49832 102.72800 61.02029 21.33046 220 98 2 - 64.46240 100.70900 65.96424 23.73296 220 98 2 - 68.18481 98.69000 69.66773 25.63925 220 98 2 - 199.89650 98.69000 208.79402 16.29814 220 96 2 - 197.13716 100.06340 205.89098 16.83150 220 96 2 - 198.11325 101.43680 206.74419 17.50212 220 96 2 - 201.37816 102.81020 209.90982 18.17273 220 96 2 - 205.68624 104.18360 214.14502 18.84335 220 96 2 - 209.29745 105.55700 217.71253 19.37229 220 96 2 - 211.81706 105.55700 220.23214 19.65564 220 96 2 - 215.76044 106.93040 224.16343 20.18458 220 96 2 - 200.45379 108.30380 229.59410 20.85520 220 87 2 - 185.26814 109.67720 235.19066 21.52582 220 79 2 - 170.47676 111.05060 240.90655 22.19644 220 71 2 - 155.46287 112.42400 245.25060 22.72208 220 63 2 - 158.70247 112.42400 248.17124 31.29949 220 64 2 - 144.03472 113.79740 252.58250 31.89102 220 57 2 - 130.25905 115.17080 258.50622 32.67974 220 50 2 - 70.27517 116.54420 264.47107 33.46845 110 27 1 - 20.06952 117.91760 270.46885 34.25716 1 0 A - 20.41786 119.29100 274.98428 34.84869 1 0 A - 20.65005 119.29100 278.00240 35.24305 1 0 A - 20.99827 120.66440 282.53975 35.83458 1 0 A - 21.46247 122.03780 288.60433 36.62329 1 0 A - 21.92657 123.41120 294.68409 37.41201 1 0 A - 22.39057 124.78460 300.77666 38.20072 1 0 A - 22.73851 126.15800 305.35301 38.79225 1 0 A - 22.97045 126.15800 308.40719 39.18661 1 0 A - 23.31831 127.53140 312.99283 39.77814 1 0 A - 23.78207 128.90480 319.11356 40.56685 1 0 A - 24.24576 130.27820 325.24120 41.35557 1 0 A - 24.70939 131.65160 331.37485 42.14428 1 0 A - 25.05707 133.02500 335.97842 42.73581 1 0 A + 17.26275 81.73392 23.12477 5.79901 220 75 2 + 22.82405 81.73392 28.68607 6.18752 220 80 2 + 25.36557 83.20052 31.23759 6.77027 220 81 2 + 28.75506 84.66711 34.62766 7.54727 220 83 2 + 32.14596 86.13371 38.00976 8.32428 220 85 2 + 35.54355 87.60031 41.38926 9.10128 220 86 2 + 38.10589 89.06690 43.92430 9.68403 220 87 2 + 38.96251 89.06690 44.78091 9.88088 220 87 2 + 38.99687 89.08652 44.81484 9.88868 220 87 2 + 39.04254 89.10614 44.86008 9.89907 220 87 2 + 39.08821 89.12576 44.90533 7.22560 220 87 2 + 39.13388 89.14538 44.95057 7.23483 220 87 2 + 39.16825 89.16500 44.98450 7.24216 220 87 2 + 42.85225 89.16500 43.82163 8.84762 220 98 2 + 42.86853 89.18462 43.83783 9.51723 220 98 2 + 42.89021 89.20424 43.85944 9.52477 220 98 2 + 42.91188 89.22386 43.88104 9.53231 220 98 2 + 42.93355 89.24348 43.90263 9.53985 220 98 2 + 42.94984 89.26310 43.91885 9.54571 220 98 2 + 43.05246 89.26310 44.02147 9.57762 220 98 2 + 43.34554 89.61626 44.31318 9.68308 220 98 2 + 43.73603 89.96942 44.70221 9.81877 220 98 2 + 44.12670 90.32258 45.09134 9.95446 220 98 2 + 44.51756 90.67574 45.48056 10.09015 220 98 2 + 44.81124 91.02890 45.77253 10.19539 220 98 2 + 45.23308 91.02890 46.19437 10.32735 220 98 2 + 46.21323 92.20610 47.16819 10.67814 220 98 2 + 47.51955 93.38330 48.46727 11.13045 220 98 2 + 48.82744 94.56050 49.76704 11.58275 220 98 2 + 50.13673 95.73770 51.06740 12.03505 220 98 2 + 51.12205 96.91490 52.04299 12.38394 220 98 2 + 51.60995 96.91490 52.53089 12.53907 220 98 2 + 52.10306 97.50350 53.01885 12.71351 220 98 2 + 52.75908 98.09210 53.66956 12.93966 220 98 2 + 53.41536 98.68070 54.32035 13.16581 220 98 2 + 54.07189 99.26930 54.97124 13.39197 220 98 2 + 54.56589 99.85790 55.45946 13.56604 220 98 2 + 54.99990 99.85790 55.89346 13.70492 220 98 2 + 55.82372 100.83890 56.70732 13.99504 220 98 2 + 56.91931 101.81990 57.79262 14.37196 220 98 2 + 58.01535 102.80090 58.87808 14.74888 220 99 2 + 59.11177 103.78190 59.96369 15.12580 220 99 2 + 58.78823 104.76290 60.77797 15.41508 220 97 2 + 59.01337 104.76290 61.27201 15.57458 220 96 2 + 58.17686 105.56732 61.93981 15.81179 220 94 2 + 57.45524 106.37174 62.83027 16.12086 220 91 2 + 56.74706 107.17616 63.72080 16.42994 220 89 2 + 56.05230 107.98058 64.61138 16.73901 220 87 2 + 55.26938 108.78500 65.27935 16.97576 220 85 2 + 45.79577 108.78500 47.38713 18.50891 220 97 2 + 49.54062 106.76600 51.11058 20.66609 220 97 2 + 54.51990 104.74700 56.06909 23.02972 220 97 2 + 59.49101 102.72800 61.02029 25.39334 220 97 2 + 64.45382 100.70900 65.96424 27.75697 220 98 2 + 68.17490 98.69000 69.66773 29.54872 220 98 2 + 199.83705 98.69000 208.79402 20.31713 220 96 2 + 197.06603 100.06340 205.89098 18.60292 220 96 2 + 198.02973 101.43680 206.74419 19.27353 220 96 2 + 201.28148 102.81020 209.90982 19.94415 220 96 2 + 205.57561 104.18360 214.14502 20.61477 220 96 2 + 209.17199 105.55700 217.71253 21.13085 220 96 2 + 211.69160 105.55700 220.23214 21.43992 220 96 2 + 215.61925 106.93040 224.16343 21.95600 220 96 2 + 200.36618 108.30380 229.59410 22.62662 220 87 2 + 185.18394 109.67720 235.19066 23.29724 220 79 2 + 170.39450 111.05060 240.90655 23.96785 220 71 2 + 155.37824 112.42400 245.25060 24.48227 220 63 2 + 156.55158 112.42400 248.17124 24.79467 220 63 2 + 141.86338 113.79740 252.58250 25.30909 220 56 2 + 124.46255 115.17080 258.50622 25.97971 110 48 1 + 61.32635 116.54420 264.47107 26.65032 110 23 1 + 20.06952 117.91760 270.46885 27.32094 1 0 A + 20.41786 119.29100 274.98428 27.83407 1 0 A + 20.65005 119.29100 278.00240 28.14905 1 0 A + 20.99827 120.66440 282.53975 28.66218 1 0 A + 21.46247 122.03780 288.60433 29.33279 1 0 A + 21.92657 123.41120 294.68409 30.00341 1 0 A + 22.39057 124.78460 300.77666 30.67403 1 0 A + 22.73851 126.15800 305.35301 31.18613 1 0 A + 22.97045 126.15800 308.40719 31.50316 1 0 A + 23.31831 127.53140 312.99283 32.01526 1 0 A + 23.78207 128.90480 319.11356 32.68588 1 0 A + 24.24576 130.27820 325.24120 33.35650 1 0 A + 24.70939 131.65160 331.37485 34.02711 1 0 A + 25.05707 133.02500 335.97842 34.53837 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -32422,13 +32558,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 6.171 'Ophooglaag zand' - -3.50 31.792 'Hollandveen' - -5.70 11.725 'Oude Zeeklei' - -7.00 24.413 'Wadzand' - -10.00 104.865 'Hydrobiaklei' - -12.00 28.502 'Basisveen' - -12.50 370.335 'Eerste zandlaag' + -3.00 6.174 'Ophooglaag zand' + -3.50 31.802 'Hollandveen' + -5.70 11.737 'Oude Zeeklei' + -7.00 24.446 'Wadzand' + -10.00 105.261 'Hydrobiaklei' + -12.00 28.499 'Basisveen' + -12.50 367.683 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -32449,9 +32585,9 @@ Layer name -3.50 0.00 'Hollandveen' -5.70 -2.01 'Oude Zeeklei' -7.00 -5.94 'Wadzand' - -10.00 -17.94 'Hydrobiaklei' + -10.00 -18.01 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -116.27 'Eerste zandlaag' + -12.50 -115.44 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -32637,53 +32773,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 24.08394 0.00000 0.75514 0.00000 4.34807 - -11.29000 6.07800 25.17538 0.00000 0.75492 0.00000 4.14205 - -11.39000 6.61700 26.26658 0.00000 0.75473 0.00000 3.96956 - -11.49000 7.15600 27.35754 0.00000 0.75456 0.00000 3.82302 - -11.59000 7.69500 28.17562 0.00000 0.75442 0.00000 3.72681 - -11.59000 7.69500 28.67186 0.00000 0.75442 0.00000 3.67329 - -11.67200 8.13698 29.34253 0.00000 0.75443 0.00000 3.60607 - -11.75400 8.57896 30.23665 0.00000 0.75444 0.00000 3.52451 - -11.83600 9.02094 31.13064 0.00000 0.75444 0.00000 3.45093 - -11.91800 9.46292 32.02452 0.00000 0.75445 0.00000 3.38421 - -12.00000 9.90490 32.69484 0.00000 0.75445 0.00000 3.33811 - -12.00000 9.90490 21.80621 0.00000 0.78943 0.00000 2.03755 - -12.10000 13.09390 25.48563 0.00000 0.78952 0.00000 1.94637 - -12.20000 16.28290 30.38078 0.88100 0.78958 0.05411 1.86581 - -12.30000 19.47190 35.26488 9.48096 0.78961 0.48690 1.81107 - -12.40000 22.66090 40.14015 11.56572 0.78964 0.51038 1.77134 - -12.50000 25.84990 43.79223 13.12928 0.78966 0.52407 1.74801 - -12.50000 25.84990 133.47489 8.47969 0.55212 0.32357 5.09319 - -12.64000 27.27650 126.38669 8.83018 0.55209 0.32373 4.63354 - -12.78000 28.70310 128.48999 9.29639 0.55206 0.32388 4.47652 - -12.92000 30.12970 133.14140 9.76168 0.55203 0.32399 4.41894 - -13.06000 31.55630 138.55047 10.22635 0.55201 0.32407 4.39058 - -13.20000 32.98290 142.82437 10.57458 0.55199 0.32411 4.37759 - -13.20000 32.98290 145.74060 10.80661 0.55199 0.32414 4.37140 - -13.34000 34.40950 150.17871 11.15452 0.55195 0.32417 4.36445 - -13.48000 35.83610 156.16817 11.61821 0.55191 0.32420 4.35785 - -13.62000 37.26270 162.21477 12.08172 0.55187 0.32423 4.35327 - -13.76000 38.68930 168.29847 12.54510 0.55184 0.32425 4.35000 - -13.90000 40.11590 172.87762 12.89256 0.55181 0.32427 4.34811 - -13.90000 40.11590 175.93702 13.12418 0.55256 0.32427 4.34707 - -14.04000 41.54250 180.53387 13.47156 0.54990 0.32428 4.34576 - -14.18000 42.96910 186.67323 13.93467 0.54826 0.32430 4.34436 - -14.32000 44.39570 192.82209 14.39774 0.54673 0.32430 4.34326 - -14.46000 45.82230 198.97816 14.86076 0.54529 0.32431 4.34239 - -14.60000 47.24890 203.59879 15.20800 0.54394 0.32432 4.34184 - -14.60000 47.24890 206.68078 15.43948 0.54394 0.32432 4.34153 - -14.74000 48.67550 211.30577 15.78669 0.54267 0.32433 4.34111 - -14.88000 50.10210 217.47521 16.24961 0.54146 0.32433 4.34064 - -15.02000 51.52870 223.64744 16.71251 0.54033 0.32433 4.34025 - -15.16000 52.95530 229.82194 17.17539 0.53926 0.32434 4.33992 - -15.30000 54.38190 234.45399 17.52254 0.53824 0.32434 4.33971 - -15.30000 54.38190 237.54259 17.75397 0.56558 0.32434 4.33958 - -15.44000 55.80850 242.17619 18.10111 0.53274 0.32434 4.33941 - -15.58000 57.23510 248.35538 18.56395 0.53172 0.32435 4.33921 - -15.72000 58.66170 254.53565 19.02678 0.53074 0.32435 4.33904 - -15.86000 60.08830 260.71685 19.48960 0.52982 0.32435 4.33890 - -16.00000 61.51490 265.35324 19.83672 0.52893 0.32435 4.33880 + -11.19000 5.53900 24.08394 0.00000 0.30400 0.00000 4.34807 + -11.29000 6.07800 25.17538 0.00000 0.33905 0.00000 4.14205 + -11.39000 6.61700 26.26658 0.00000 0.36840 0.00000 3.96956 + -11.49000 7.15600 27.35754 0.00000 0.39332 0.00000 3.82302 + -11.59000 7.69500 28.17562 0.00000 0.41475 0.00000 3.72681 + -11.59000 7.69500 28.67186 0.00000 0.41475 0.00000 3.67329 + -11.67200 8.13698 29.34253 0.00000 0.43021 0.00000 3.60607 + -11.75400 8.57896 30.23665 0.00000 0.44407 0.00000 3.52451 + -11.83600 9.02094 31.13064 0.00000 0.45658 0.00000 3.45093 + -11.91800 9.46292 32.02452 0.00000 0.46791 0.00000 3.38421 + -12.00000 9.90490 32.69484 0.00000 0.47824 0.00000 3.33811 + -12.00000 9.90490 21.80621 0.00000 0.51322 0.00000 2.03755 + -12.10000 13.09390 25.48563 0.00000 0.59454 0.00000 1.94637 + -12.20000 16.28290 30.38078 0.88100 0.62326 0.05411 1.86581 + -12.30000 19.47190 35.26488 9.48096 0.64257 0.48690 1.81107 + -12.40000 22.66090 40.14015 11.56572 0.65645 0.51038 1.77134 + -12.50000 25.84990 43.79223 13.12928 0.66690 0.52407 1.74801 + -12.50000 25.84990 133.47489 8.47969 0.42936 0.32357 5.09319 + -12.64000 27.27650 126.38669 8.83018 0.35169 0.32373 4.63354 + -12.78000 28.70310 128.48999 9.29639 0.35757 0.32388 4.47652 + -12.92000 30.12970 133.14140 9.76168 0.36290 0.32399 4.41894 + -13.06000 31.55630 138.55047 10.22635 0.36775 0.32407 4.39058 + -13.20000 32.98290 142.82437 10.57458 0.37217 0.32411 4.37759 + -13.20000 32.98290 145.74060 10.80661 0.37217 0.32414 4.37140 + -13.34000 34.40950 150.17871 11.15452 0.37623 0.32417 4.36445 + -13.48000 35.83610 156.16817 11.61821 0.37997 0.32420 4.35785 + -13.62000 37.26270 162.21477 12.08172 0.38342 0.32423 4.35327 + -13.76000 38.68930 168.29847 12.54510 0.38661 0.32425 4.35000 + -13.90000 40.11590 172.87762 12.89256 0.38958 0.32427 4.34811 + -13.90000 40.11590 175.93702 13.12418 0.38958 0.32427 4.34707 + -14.04000 41.54250 180.53387 13.47156 0.39235 0.32428 4.34576 + -14.18000 42.96910 186.67323 13.93467 0.39493 0.32430 4.34436 + -14.32000 44.39570 192.82209 14.39774 0.39734 0.32430 4.34326 + -14.46000 45.82230 198.97816 14.86076 0.39961 0.32431 4.34239 + -14.60000 47.24890 203.59879 15.20800 0.40173 0.32432 4.34184 + -14.60000 47.24890 206.68078 15.43948 0.40173 0.32432 4.34153 + -14.74000 48.67550 211.30577 15.78669 0.40374 0.32433 4.34111 + -14.88000 50.10210 217.47521 16.24961 0.40563 0.32433 4.34064 + -15.02000 51.52870 223.64744 16.71251 0.40741 0.32433 4.34025 + -15.16000 52.95530 229.82194 17.17539 0.40910 0.32434 4.33992 + -15.30000 54.38190 234.45399 17.52254 0.41070 0.32434 4.33971 + -15.30000 54.38190 237.54259 17.75397 0.41070 0.32434 4.33958 + -15.44000 55.80850 242.17619 18.10111 0.41222 0.32434 4.33941 + -15.58000 57.23510 248.35538 18.56395 0.41366 0.32435 4.33921 + -15.72000 58.66170 254.53565 19.02678 0.41503 0.32435 4.33904 + -15.86000 60.08830 260.71685 19.48960 0.41634 0.32435 4.33890 + -16.00000 61.51490 265.35324 19.83672 0.41758 0.32435 4.33880 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -32857,53 +32993,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 3.54260 100.84990 24.08394 4.18274 110 0 1 - 3.49973 101.83090 25.17538 4.58838 110 0 1 - 3.45565 102.81190 26.26658 4.99402 110 0 1 - 3.41060 103.79290 27.35754 5.39965 110 0 1 - 3.36481 104.77390 28.17562 5.70363 110 0 1 - 3.36481 104.77390 28.67186 5.88865 110 0 1 - 3.32687 105.57832 29.34253 6.13879 110 0 1 - 3.28877 106.38274 30.23665 6.47229 110 0 1 - 3.25067 107.18716 31.13064 6.80578 110 0 1 - 3.21275 107.99158 32.02452 7.13928 110 0 1 - 3.17519 108.79600 32.69484 7.38941 110 0 1 - 7.51275 108.79600 21.80621 8.44863 110 0 1 - 8.95819 106.77700 25.48563 10.33793 110 0 1 - 10.96697 104.75800 30.38078 12.85660 110 0 1 - 15.56884 102.73900 35.26488 15.37527 110 44 1 - 17.57306 100.72000 40.14015 17.89395 110 0 1 - 19.06096 98.70100 43.79223 19.78306 110 0 1 - 44.06979 98.70100 133.47489 14.46912 110 33 1 - 43.84546 100.07440 126.38669 15.05900 110 35 1 - 43.82013 101.44780 128.48999 15.84579 110 34 1 - 43.88831 102.82120 133.14140 16.63259 110 33 1 - 44.06146 104.19460 138.55047 17.41938 110 32 1 - 44.23491 105.56800 142.82437 18.00930 110 31 1 - 44.46694 105.56800 145.74060 18.40304 110 31 1 - 44.76648 106.94140 150.17871 18.99220 110 30 1 - 45.31205 108.31480 156.16817 19.77822 110 29 1 - 45.99010 109.68820 162.21477 20.56424 110 28 1 - 46.80307 111.06160 168.29847 21.35027 110 28 1 - 47.63760 112.43500 172.87762 21.93949 110 28 1 - 47.86921 112.43500 175.93702 22.36338 110 27 1 - 48.84250 113.80840 180.53387 22.84439 110 27 1 - 50.06523 115.18180 186.67323 23.55841 110 27 1 - 51.41423 116.55520 192.82209 24.27244 110 27 1 - 52.88214 117.92860 198.97816 24.98646 110 27 1 - 104.79573 119.30200 203.59879 25.50649 220 51 2 - 106.04848 119.30200 206.68078 25.89448 220 51 2 - 145.96081 120.67540 211.30577 26.41451 220 69 2 - 191.75058 122.04880 217.47521 27.12853 220 88 2 - 209.34968 123.42220 223.64744 27.84255 220 94 2 - 226.89881 124.79560 229.82194 28.55657 220 99 2 - 234.45399 126.16900 234.45399 29.07863 302 100 P - 237.54259 126.16900 237.54259 30.95878 302 100 P - 242.17619 127.54240 242.17619 29.73157 302 100 P - 248.35538 128.91580 248.35538 30.43296 302 100 P - 254.53565 130.28920 254.53565 31.13436 302 100 P - 260.71685 131.66260 260.71685 31.83575 302 100 P - 265.35324 133.03600 265.35324 32.34850 302 100 P + 3.53442 100.84990 24.08394 1.68386 110 15 1 + 3.49322 101.83090 25.17538 2.06078 110 14 1 + 3.45090 102.81190 26.26658 2.43769 110 13 1 + 3.40767 103.79290 27.35754 2.81461 110 12 1 + 3.36377 104.77390 28.17562 3.13565 110 12 1 + 3.36377 104.77390 28.67186 3.23736 110 12 1 + 3.32744 105.57832 29.34253 3.50061 110 0 1 + 3.29100 106.38274 30.23665 3.80968 110 0 1 + 3.25461 107.18716 31.13064 4.11876 110 0 1 + 3.21846 107.99158 32.02452 4.42783 110 0 1 + 3.18271 108.79600 32.69484 4.68406 110 0 1 + 6.36542 108.79600 21.80621 5.49255 110 29 1 + 6.59174 106.77700 25.48563 7.78483 110 0 1 + 8.58902 104.75800 30.38078 10.14845 110 0 1 + 15.59808 102.73900 35.26488 12.51208 110 44 1 + 17.60740 100.72000 40.14015 14.87571 110 44 1 + 19.10059 98.70100 43.79223 16.70765 110 44 1 + 44.30758 98.70100 133.47489 11.25206 110 33 1 + 44.12999 100.07440 126.38669 9.59288 110 35 1 + 44.15423 101.44780 128.48999 10.26350 110 34 1 + 44.27502 102.82120 133.14140 10.93412 110 33 1 + 44.50402 104.19460 138.55047 11.60473 110 32 1 + 44.73675 105.56800 142.82437 12.14262 110 31 1 + 44.96878 105.56800 145.74060 12.40809 110 31 1 + 45.33123 106.94140 150.17871 12.94597 110 30 1 + 45.94341 108.31480 156.16817 13.61659 110 29 1 + 46.69177 109.68820 162.21477 14.28720 110 29 1 + 47.57879 111.06160 168.29847 14.95782 110 28 1 + 48.49112 112.43500 172.87762 15.48949 110 28 1 + 48.72273 112.43500 175.93702 15.76738 110 28 1 + 49.77760 113.80840 180.53387 16.29905 110 28 1 + 51.08542 115.18180 186.67323 16.96967 110 27 1 + 52.52262 116.55520 192.82209 17.64029 110 27 1 + 54.08144 117.92860 198.97816 18.31091 110 27 1 + 103.67306 119.30200 203.59879 18.83824 220 51 2 + 104.90045 119.30200 206.68078 19.12480 220 51 2 + 140.36401 120.67540 211.30577 19.65214 220 66 2 + 186.83246 122.04880 217.47521 20.32276 220 86 2 + 204.39602 123.42220 223.64744 20.99338 220 91 2 + 221.90975 124.79560 229.82194 21.66399 220 97 2 + 234.45399 126.16900 234.45399 22.18813 302 100 P + 237.54259 126.16900 237.54259 22.48109 302 100 P + 242.17619 127.54240 242.17619 23.00523 302 100 P + 248.35538 128.91580 248.35538 23.67584 302 100 P + 254.53565 130.28920 254.53565 24.34646 302 100 P + 260.71685 131.66260 260.71685 25.01708 302 100 P + 265.35324 133.03600 265.35324 25.53876 302 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -32921,9 +33057,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 2.902 'Hydrobiaklei' - -12.00 6.635 'Basisveen' - -12.50 410.154 'Eerste zandlaag' + -10.00 2.901 'Hydrobiaklei' + -12.00 6.112 'Basisveen' + -12.50 408.511 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -32945,7 +33081,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.50 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 128.77 'Eerste zandlaag' + -12.50 128.26 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -33170,7 +33306,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=4 +IterationCount=5 PartialFactorSet=6 [ANCHOR DATA] [TABLE] @@ -33185,7 +33321,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 362.96436 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 362.88527 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -33210,39 +33346,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 49.56 : Percentage mobilized resistance left - 52.61 : Percentage mobilized resistance right - 321.61 : Effective left - 372.70 : Effective right + 49.14 : Percentage mobilized resistance left + 52.21 : Percentage mobilized resistance right + 318.88 : Effective left + 369.89 : Effective right 1115.38 : Water pressure left 1112.88 : Water pressure right 648.98 : Max effective resistance left 708.45 : Max effective resistance right -7773.07 : Max moment left -8428.29 : Max moment right --4113.07 : Max mobilized moment left --4132.48 : Max mobilized moment right - 100.21 : Vertical force left - 108.39 : Vertical force right - 52.9 : Max mobilized moment percentage left - 49.0 : Max mobilized moment percentage right +-4079.28 : Max mobilized moment left +-4098.68 : Max mobilized moment right + 99.35 : Vertical force left + 107.51 : Vertical force right + 52.5 : Max mobilized moment percentage left + 48.6 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support 1 : Moment present 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --100.21 : Active force -108.39 : Passive force --100.21 : Plugged active force -108.39 : Plugged passive force +-99.35 : Active force +107.51 : Passive force +-99.35 : Plugged active force +107.51 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor -8.18 : Resulting Vertical Force Unplugged -8.18 : Resulting Vertical Force Plugged +8.16 : Resulting Vertical Force Unplugged +8.16 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -33255,210 +33391,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1117.00761 - 0.00000 0.00000 1109.24519 - 0.00000 0.00000 1101.48277 - 0.00000 0.00000 1093.72035 - 0.00000 0.00000 1085.95793 - 0.00000 0.00000 1078.19551 - 0.00000 0.00000 1078.19551 - 0.00000 0.00000 1070.43310 - 0.00000 0.00000 1062.67068 - 0.00000 0.00000 1054.90826 - 0.00000 0.00000 1047.14584 - 0.00000 0.00000 1039.38342 - 0.00000 0.00000 1039.38342 - 0.00000 0.00000 1029.03353 - 0.00000 0.00000 1018.68364 - 0.00000 0.00000 1008.33375 - 0.00000 0.00000 997.98386 - 0.00000 0.00000 987.63397 - 0.00000 0.00000 987.63397 - 0.00000 0.00000 979.00906 - 0.00000 0.00000 970.38415 - 0.00000 0.00000 961.75924 - 0.00000 0.00000 953.13433 - 0.00000 0.00000 944.50942 - 0.00000 0.00000 944.50942 - 0.00000 0.00000 935.88451 - 0.00000 0.00000 927.25960 - 0.00000 0.00000 918.63469 - 0.00000 0.00000 910.00978 - 0.00000 0.00000 901.38487 - 0.00000 0.00000 901.38487 - 0.00000 0.00000 893.96745 - 0.00000 0.00000 886.55003 - 0.00000 0.00000 879.13261 - 0.00000 0.00000 871.71518 - 0.00000 0.00000 864.29776 - 0.00000 -49.01436 864.29776 - -5.58764 -49.01436 854.46552 - -11.17527 -49.01436 844.63419 - -16.76291 -49.01436 834.80469 - -22.35055 -49.01436 824.97793 - -27.93819 -49.01436 815.15484 - -27.93819 -49.01436 815.15484 - -28.49695 -49.01436 814.17276 - -29.05571 -49.01436 813.19074 - -29.61448 -49.01436 812.20876 - -30.17324 -49.01436 811.22683 - -30.73201 -49.01436 810.24495 - -30.73202 -49.01391 810.24495 - -34.09437 -49.01391 804.33753 - -37.45673 -49.01391 798.43213 - -40.81908 -49.01391 792.52896 - -44.18144 -49.01391 786.62820 - -47.54379 -49.01391 780.73007 - -47.54379 -49.01390 780.73007 - -48.52407 -49.01390 779.01101 - -49.50435 -49.01390 777.29221 - -50.48462 -49.01390 775.57365 - -51.46490 -49.01390 773.85535 - -52.44518 -49.01390 772.13730 - -52.44518 -49.01390 772.13730 - -56.36629 -49.01390 765.26782 - -60.28740 -49.01390 758.40288 - -64.20852 -49.01390 751.54280 - -68.12963 -49.01390 744.68790 - -72.05074 -49.01390 737.83849 - -72.05074 -49.01390 737.83849 - -73.03102 -49.01390 736.12704 - -74.01129 -49.01390 734.41595 - -74.99157 -49.01390 732.70523 - -75.97185 -49.01390 730.99489 - -76.95213 -49.01390 729.28494 - -76.95213 -49.01390 729.28494 - -81.85352 -49.01390 720.74108 - -86.75491 -49.01390 712.20753 - -91.65630 -49.01390 703.68491 - -96.55769 -49.01390 695.17384 - -101.45908 -49.01390 686.67493 - -101.45908 -49.01390 686.67493 - -106.36047 -49.01390 678.18880 - -111.26186 -49.01390 669.71607 - -116.16325 -49.01390 661.25736 - -121.06464 -49.01390 652.81328 - -125.96603 -49.01390 644.38446 - -125.96603 -49.01391 644.38446 - -132.82798 -49.01391 632.61090 - -139.68993 -49.01391 620.87013 - -146.55187 -49.01391 609.16386 - -153.41382 -49.01391 597.49377 - -160.27577 -49.01391 585.86157 - -160.27576 -49.01398 585.86157 - -166.64758 -49.01398 575.09563 - -173.01939 -49.01398 564.36518 - -179.39121 -49.01398 553.67156 - -185.76303 -49.01398 543.01613 - -192.13485 -49.01398 532.40025 - -192.13492 -49.01538 532.40025 - -198.50692 -49.01538 521.82528 - -204.87892 -49.01538 511.29256 - -211.25092 -49.01538 500.80347 - -217.62292 -49.01538 490.35935 - -223.99492 -49.01538 479.96157 - -223.99492 -49.01538 479.96157 - -231.32272 -49.01538 468.06316 - -238.65052 -49.01538 456.22987 - -245.97832 -49.01538 444.46378 - -253.30612 -49.01538 432.76695 - -260.63392 -49.01538 421.14144 - -260.63392 -49.01539 421.14144 - -267.96172 -49.01539 409.58932 - -275.28952 -49.01539 398.11264 - -282.61732 -49.01539 386.71347 - -289.94512 -49.01539 375.39388 - -297.27293 -49.01539 364.15592 - -297.27293 -49.01538 364.15592 - -304.60073 -49.01538 353.00166 - -311.92853 -49.01538 341.93317 - -319.25633 -49.01538 330.95250 - -326.58413 -49.01538 320.06173 - -333.91193 -49.01538 309.26290 - -333.91186 -49.01530 309.26290 - -341.23965 -49.01530 298.55809 - -348.56744 -49.01530 287.94937 - -355.89523 -49.01530 277.43878 - -363.22301 -49.01530 267.02840 - -370.55080 -49.01530 256.72029 - -370.55084 -49.01558 256.72029 - -370.64887 -49.01558 256.58309 - -370.74690 -49.01558 256.44591 - -370.84493 -49.01558 256.30875 - -370.94296 -49.01558 256.17161 - -371.04099 -49.01558 256.03449 - -371.04099 -49.01565 256.03449 - -371.13902 -49.01565 255.89738 - -371.23705 -49.01565 255.76029 - -371.33509 -49.01565 255.62323 - -371.43312 -49.01565 255.48618 - -371.53115 -49.01565 255.34915 - -371.53115 -49.01564 255.34915 - -373.29571 -49.01564 252.88581 - -375.06027 -49.01564 250.42856 - -376.82484 -49.01564 247.97744 - -378.58940 -49.01564 245.53248 - -380.35396 -49.01564 243.09369 - -380.35396 -49.01566 243.09369 - -386.23584 -49.01566 235.00941 - -392.11772 -49.01566 226.99520 - -397.99960 -49.01566 219.05211 - -403.88148 -49.01566 211.18123 - -409.76335 -49.01566 203.38362 - -409.76336 -49.01568 203.38362 - -412.70430 -49.01568 199.51262 - -415.64524 -49.01568 195.66034 - -418.58618 -49.01568 191.82690 - -421.52712 -49.01568 188.01245 - -424.46806 -49.01568 184.21712 - -424.46879 -49.01119 184.21712 - -429.35460 -48.30443 177.93443 - -434.08780 -46.34146 171.70583 - -438.61925 -44.26936 165.53189 - -442.93804 -42.08816 159.41318 - -447.03370 -39.81150 153.35027 - -447.03193 -39.79307 153.35027 - -450.19781 -37.41448 148.42072 - -453.16615 -34.97174 143.52929 - -455.93117 -32.45568 138.67624 - -458.48688 -29.86631 133.86179 - -460.82750 -27.21282 129.08618 - -460.82752 -27.21297 129.08618 - -463.43365 -24.84838 123.31515 - -465.78467 -22.10799 117.60250 - -467.85182 -19.26469 111.94850 - -469.63592 -16.37084 106.35341 - -471.11786 -13.23308 100.81748 - -471.11826 -13.22972 100.81748 - -471.76120 3.87123 93.16732 - -470.05327 20.56591 85.63370 - -465.98373 37.66812 78.21560 - -459.47637 55.40945 70.91201 - -450.44011 73.77168 63.72192 - -450.48210 74.10094 63.72192 - -438.76370 93.40010 56.64387 - -424.29865 113.37240 49.67422 - -406.98314 134.12233 42.80869 - -386.70780 155.65653 36.04298 - -363.36713 177.88039 29.37281 - -363.51588 178.91433 29.37281 - -336.91117 200.81421 22.79317 - -307.39284 220.46538 16.29672 - -275.35974 236.28369 9.87563 - -241.43696 247.74030 3.52207 - -206.30672 252.46256 -2.77176 - -205.98098 252.12475 -2.77176 - -170.94869 246.58809 -9.01481 - -137.38389 231.46067 -15.21579 - -106.45324 209.61461 -21.38223 - -78.88796 183.56500 -27.52167 - -55.16017 155.26265 -33.64163 - -55.23074 154.63785 -33.64163 - -35.63422 125.21224 -39.74910 - -20.20401 95.08580 -45.84787 - -9.04758 64.15833 -51.94068 - -2.27707 32.42977 -58.03026 - 0.00004 0.00021 -64.11937 + 0.00000 0.00000 1116.07291 + 0.00000 0.00000 1108.31594 + 0.00000 0.00000 1100.55898 + 0.00000 0.00000 1092.80202 + 0.00000 0.00000 1085.04506 + 0.00000 0.00000 1077.28809 + 0.00000 0.00000 1077.28809 + 0.00000 0.00000 1069.53113 + 0.00000 0.00000 1061.77417 + 0.00000 0.00000 1054.01720 + 0.00000 0.00000 1046.26024 + 0.00000 0.00000 1038.50328 + 0.00000 0.00000 1038.50328 + 0.00000 0.00000 1028.16066 + 0.00000 0.00000 1017.81804 + 0.00000 0.00000 1007.47543 + 0.00000 0.00000 997.13281 + 0.00000 0.00000 986.79019 + 0.00000 0.00000 986.79019 + 0.00000 0.00000 978.17134 + 0.00000 0.00000 969.55250 + 0.00000 0.00000 960.93365 + 0.00000 0.00000 952.31480 + 0.00000 0.00000 943.69595 + 0.00000 0.00000 943.69595 + 0.00000 0.00000 935.07710 + 0.00000 0.00000 926.45826 + 0.00000 0.00000 917.83941 + 0.00000 0.00000 909.22056 + 0.00000 0.00000 900.60171 + 0.00000 0.00000 900.60171 + 0.00000 0.00000 893.18950 + 0.00000 0.00000 885.77729 + 0.00000 0.00000 878.36509 + 0.00000 0.00000 870.95288 + 0.00000 0.00000 863.54067 + 0.00000 -48.93527 863.54067 + -5.57862 -48.93527 853.71533 + -11.15724 -48.93527 843.89091 + -16.73586 -48.93527 834.06832 + -22.31448 -48.93527 824.24846 + -27.89310 -48.93527 814.43226 + -27.89310 -48.93527 814.43226 + -28.45096 -48.93527 813.45088 + -29.00883 -48.93527 812.46954 + -29.56669 -48.93527 811.48825 + -30.12455 -48.93527 810.50701 + -30.68241 -48.93527 809.52582 + -30.68243 -48.93482 809.52582 + -34.03935 -48.93482 803.62254 + -37.39628 -48.93482 797.72129 + -40.75321 -48.93482 791.82225 + -44.11014 -48.93482 785.92562 + -47.46707 -48.93482 780.03162 + -47.46707 -48.93481 780.03162 + -48.44576 -48.93481 778.31377 + -49.42446 -48.93481 776.59616 + -50.40316 -48.93481 774.87881 + -51.38185 -48.93481 773.16171 + -52.36055 -48.93481 771.44486 + -52.36055 -48.93481 771.44486 + -56.27533 -48.93481 764.58018 + -60.19012 -48.93481 757.72003 + -64.10490 -48.93481 750.86474 + -68.01969 -48.93481 744.01462 + -71.93447 -48.93481 737.16998 + -71.93447 -48.93481 737.16998 + -72.91317 -48.93481 735.45971 + -73.89186 -48.93481 733.74981 + -74.87056 -48.93481 732.04028 + -75.84926 -48.93481 730.33113 + -76.82795 -48.93481 728.62237 + -76.82795 -48.93481 728.62237 + -81.72143 -48.93481 720.08444 + -86.61491 -48.93481 711.55680 + -91.50840 -48.93481 703.04008 + -96.40188 -48.93481 694.53489 + -101.29536 -48.93481 686.04183 + -101.29536 -48.93481 686.04183 + -106.18884 -48.93481 677.56154 + -111.08232 -48.93481 669.09463 + -115.97580 -48.93481 660.64171 + -120.86928 -48.93481 652.20340 + -125.76276 -48.93481 643.78032 + -125.76276 -48.93482 643.78032 + -132.61364 -48.93482 632.01476 + -139.46451 -48.93482 620.28195 + -146.31539 -48.93482 608.58357 + -153.16626 -48.93482 596.92131 + -160.01714 -48.93482 585.29688 + -160.01713 -48.93489 585.29688 + -166.37866 -48.93489 574.53810 + -172.74020 -48.93489 563.81475 + -179.10173 -48.93489 553.12817 + -185.46327 -48.93489 542.47972 + -191.82481 -48.93489 531.87076 + -191.82488 -48.93628 531.87076 + -198.18660 -48.93628 521.30264 + -204.54831 -48.93628 510.77671 + -210.91003 -48.93628 500.29433 + -217.27175 -48.93628 489.85686 + -223.63346 -48.93628 479.46564 + -223.63346 -48.93628 479.46564 + -230.94944 -48.93628 467.57468 + -238.26541 -48.93628 455.74874 + -245.58138 -48.93628 443.98990 + -252.89736 -48.93628 432.30020 + -260.21333 -48.93628 420.68170 + -260.21333 -48.93629 420.68170 + -267.52931 -48.93629 409.13647 + -274.84528 -48.93629 397.66657 + -282.16126 -48.93629 386.27405 + -289.47723 -48.93629 374.96097 + -296.79321 -48.93629 363.72941 + -296.79321 -48.93628 363.72941 + -304.10918 -48.93628 352.58140 + -311.42516 -48.93628 341.51903 + -318.74113 -48.93628 330.54433 + -326.05710 -48.93628 319.65939 + -333.37308 -48.93628 308.86624 + -333.37302 -48.93616 308.86624 + -340.68897 -48.93616 298.16696 + -348.00493 -48.93616 287.56361 + -355.32088 -48.93616 277.05824 + -362.63684 -48.93616 266.65291 + -369.95279 -48.93616 256.34969 + -369.95283 -48.93643 256.34969 + -370.05070 -48.93643 256.21256 + -370.14858 -48.93643 256.07544 + -370.24645 -48.93643 255.93835 + -370.34432 -48.93643 255.80127 + -370.44220 -48.93643 255.66421 + -370.44219 -48.93648 255.66421 + -370.54007 -48.93648 255.52717 + -370.63794 -48.93648 255.39015 + -370.73581 -48.93648 255.25314 + -370.83369 -48.93648 255.11616 + -370.93156 -48.93648 254.97919 + -370.93156 -48.93649 254.97919 + -372.69327 -48.93649 252.51700 + -374.45499 -48.93649 250.06089 + -376.21670 -48.93649 247.61090 + -377.97841 -48.93649 245.16705 + -379.74013 -48.93649 242.72937 + -379.74013 -48.93651 242.72937 + -385.61251 -48.93651 234.64871 + -391.48489 -48.93651 226.63800 + -397.35727 -48.93651 218.69831 + -403.22965 -48.93651 210.83070 + -409.10203 -48.93651 203.03624 + -409.10204 -48.93654 203.03624 + -412.03823 -48.93654 199.16677 + -414.97442 -48.93654 195.31599 + -417.91061 -48.93654 191.48403 + -420.84681 -48.93654 187.67102 + -423.78300 -48.93654 183.87710 + -423.78307 -48.93655 183.87710 + -428.66142 -48.22978 177.59669 + -433.38716 -46.26682 171.37028 + -437.91114 -44.19472 165.19845 + -442.22246 -42.01351 159.08176 + -446.31066 -39.73685 153.02078 + -446.30969 -39.71409 153.02078 + -449.46910 -37.33550 148.09273 + -452.43096 -34.89275 143.20276 + -455.18951 -32.37669 138.35110 + -457.73873 -29.78733 133.53797 + -460.07288 -27.13383 128.76362 + -460.07290 -27.13398 128.76362 + -462.67114 -24.76939 122.99404 + -465.01425 -22.02900 117.28275 + -467.07350 -19.18570 111.63001 + -468.84971 -16.29184 106.03608 + -470.32374 -13.15408 100.50121 + -470.32416 -13.15061 100.50121 + -470.95602 3.95034 92.85237 + -469.23702 20.64501 85.31987 + -465.15640 37.74722 77.90269 + -458.63797 55.48855 70.59982 + -449.59063 73.85079 63.41023 + -449.63257 74.17992 63.41023 + -437.90312 93.47908 56.33247 + -423.42702 113.45137 49.36291 + -406.10045 134.20131 42.49725 + -385.81405 155.73551 35.73119 + -362.46232 177.95936 29.06045 + -362.61109 178.99663 29.06045 + -336.00207 200.74204 22.48001 + -306.52706 219.83574 15.98253 + -274.62795 235.07473 9.56021 + -240.89627 246.23954 3.20527 + -205.97810 251.03523 -3.09010 + -205.63883 250.61698 -3.09010 + -170.78539 245.56322 -9.33476 + -137.32774 230.93920 -15.53740 + -106.43797 209.55341 -21.70552 + -78.86531 183.61350 -27.84666 + -55.14213 155.18897 -33.96832 + -55.23074 154.63785 -33.96832 + -35.63422 125.21224 -40.07748 + -20.20401 95.08580 -46.17794 + -9.04758 64.15833 -52.27244 + -2.27707 32.42977 -58.36372 + 0.00004 0.00021 -64.45452 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -33641,53 +33777,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 24.08394 0.00000 0.77623 0.00000 4.34807 - -11.29000 6.07800 25.17538 0.00000 0.77432 0.00000 4.14205 - -11.39000 6.61700 26.26658 0.00000 0.77272 0.00000 3.96956 - -11.49000 7.15600 27.35754 0.00000 0.77136 0.00000 3.82302 - -11.59000 7.69500 28.17562 0.00000 0.77020 0.00000 3.72681 - -11.59000 7.69500 28.67186 0.00000 0.77020 0.00000 3.67329 - -11.67200 8.13698 29.34253 0.00000 0.76916 0.00000 3.60607 - -11.75400 8.57896 30.23665 0.00000 0.76823 0.00000 3.52451 - -11.83600 9.02094 31.13064 0.00000 0.76739 0.00000 3.45093 - -11.91800 9.46292 32.02452 0.00000 0.76663 0.00000 3.38421 - -12.00000 9.90490 32.69484 0.00000 0.76593 0.00000 3.33811 - -12.00000 9.90490 21.80621 0.00000 0.80091 0.00000 2.03755 - -12.10000 13.09390 25.48563 0.00000 0.79821 0.00000 1.94637 - -12.20000 16.28290 30.38078 0.88100 0.79656 0.05411 1.86581 - -12.30000 19.47190 35.26488 9.48096 0.79545 0.48690 1.81107 - -12.40000 22.66090 40.14015 11.56572 0.79466 0.51038 1.77134 - -12.50000 25.84990 43.79223 13.12928 0.79406 0.52407 1.74801 - -12.50000 25.84990 133.47489 8.47969 0.55652 0.32357 5.09319 - -12.64000 27.27650 126.38669 8.83018 0.55623 0.32373 4.63354 - -12.78000 28.70310 128.48999 9.29639 0.55597 0.32388 4.47652 - -12.92000 30.12970 133.14140 9.76168 0.55573 0.32399 4.41894 - -13.06000 31.55630 138.55047 10.22635 0.55552 0.32407 4.39058 - -13.20000 32.98290 142.82437 10.57458 0.55532 0.32411 4.37759 - -13.20000 32.98290 145.74060 10.80661 0.55606 0.32414 4.37140 - -13.34000 34.40950 150.17871 11.15452 0.55272 0.32417 4.36445 - -13.48000 35.83610 156.16817 11.61821 0.55064 0.32420 4.35785 - -13.62000 37.26270 162.21477 12.08172 0.54872 0.32423 4.35327 - -13.76000 38.68930 168.29847 12.54510 0.54694 0.32425 4.35000 - -13.90000 40.11590 172.87762 12.89256 0.54529 0.32427 4.34811 - -13.90000 40.11590 175.93702 13.12418 0.54529 0.32427 4.34707 - -14.04000 41.54250 180.53387 13.47156 0.54375 0.32428 4.34576 - -14.18000 42.96910 186.67323 13.93467 0.54232 0.32430 4.34436 - -14.32000 44.39570 192.82209 14.39774 0.54097 0.32430 4.34326 - -14.46000 45.82230 198.97816 14.86076 0.53971 0.32431 4.34239 - -14.60000 47.24890 203.59879 15.20800 0.53853 0.32432 4.34184 - -14.60000 47.24890 206.68078 15.43948 0.56964 0.32432 4.34153 - -14.74000 48.67550 211.30577 15.78669 0.53188 0.32433 4.34111 - -14.88000 50.10210 217.47521 16.24961 0.53073 0.32433 4.34064 - -15.02000 51.52870 223.64744 16.71251 0.52965 0.32433 4.34025 - -15.16000 52.95530 229.82194 17.17539 0.52863 0.32434 4.33992 - -15.30000 54.38190 234.45399 17.52254 0.52766 0.32434 4.33971 - -15.30000 54.38190 237.54259 17.75397 0.52766 0.32434 4.33958 - -15.44000 55.80850 242.17619 18.10111 0.52674 0.32434 4.33941 - -15.58000 57.23510 248.35538 18.56395 0.52586 0.32435 4.33921 - -15.72000 58.66170 254.53565 19.02678 0.52503 0.32435 4.33904 - -15.86000 60.08830 260.71685 19.48960 0.52424 0.32435 4.33890 - -16.00000 61.51490 265.35324 19.83672 0.55286 0.32435 4.33880 + -11.19000 5.53900 24.08394 0.00000 0.32528 0.00000 4.34807 + -11.29000 6.07800 25.17538 0.00000 0.35844 0.00000 4.14205 + -11.39000 6.61700 26.26658 0.00000 0.38621 0.00000 3.96956 + -11.49000 7.15600 27.35754 0.00000 0.40979 0.00000 3.82302 + -11.59000 7.69500 28.17562 0.00000 0.43007 0.00000 3.72681 + -11.59000 7.69500 28.67186 0.00000 0.43007 0.00000 3.67329 + -11.67200 8.13698 29.34253 0.00000 0.44469 0.00000 3.60607 + -11.75400 8.57896 30.23665 0.00000 0.45781 0.00000 3.52451 + -11.83600 9.02094 31.13064 0.00000 0.46964 0.00000 3.45093 + -11.91800 9.46292 32.02452 0.00000 0.48037 0.00000 3.38421 + -12.00000 9.90490 32.69484 0.00000 0.49014 0.00000 3.33811 + -12.00000 9.90490 21.80621 0.00000 0.52512 0.00000 2.03755 + -12.10000 13.09390 25.48563 0.00000 0.60396 0.00000 1.94637 + -12.20000 16.28290 30.38078 0.88100 0.63083 0.05411 1.86581 + -12.30000 19.47190 35.26488 9.48096 0.64890 0.48690 1.81107 + -12.40000 22.66090 40.14015 11.56572 0.66189 0.51038 1.77134 + -12.50000 25.84990 43.79223 13.12928 0.67167 0.52407 1.74801 + -12.50000 25.84990 133.47489 8.47969 0.43413 0.32357 5.09319 + -12.64000 27.27650 126.38669 8.83018 0.35485 0.32373 4.63354 + -12.78000 28.70310 128.48999 9.29639 0.36058 0.32388 4.47652 + -12.92000 30.12970 133.14140 9.76168 0.36576 0.32399 4.41894 + -13.06000 31.55630 138.55047 10.22635 0.37048 0.32407 4.39058 + -13.20000 32.98290 142.82437 10.57458 0.37479 0.32411 4.37759 + -13.20000 32.98290 145.74060 10.80661 0.37479 0.32414 4.37140 + -13.34000 34.40950 150.17871 11.15452 0.37874 0.32417 4.36445 + -13.48000 35.83610 156.16817 11.61821 0.38238 0.32420 4.35785 + -13.62000 37.26270 162.21477 12.08172 0.38573 0.32423 4.35327 + -13.76000 38.68930 168.29847 12.54510 0.38884 0.32425 4.35000 + -13.90000 40.11590 172.87762 12.89256 0.39173 0.32427 4.34811 + -13.90000 40.11590 175.93702 13.12418 0.39173 0.32427 4.34707 + -14.04000 41.54250 180.53387 13.47156 0.39442 0.32428 4.34576 + -14.18000 42.96910 186.67323 13.93467 0.39693 0.32430 4.34436 + -14.32000 44.39570 192.82209 14.39774 0.39928 0.32430 4.34326 + -14.46000 45.82230 198.97816 14.86076 0.40149 0.32431 4.34239 + -14.60000 47.24890 203.59879 15.20800 0.40356 0.32432 4.34184 + -14.60000 47.24890 206.68078 15.43948 0.40356 0.32432 4.34153 + -14.74000 48.67550 211.30577 15.78669 0.40551 0.32433 4.34111 + -14.88000 50.10210 217.47521 16.24961 0.40735 0.32433 4.34064 + -15.02000 51.52870 223.64744 16.71251 0.40909 0.32433 4.34025 + -15.16000 52.95530 229.82194 17.17539 0.41073 0.32434 4.33992 + -15.30000 54.38190 234.45399 17.52254 0.41229 0.32434 4.33971 + -15.30000 54.38190 237.54259 17.75397 0.41229 0.32434 4.33958 + -15.44000 55.80850 242.17619 18.10111 0.41376 0.32434 4.33941 + -15.58000 57.23510 248.35538 18.56395 0.41517 0.32435 4.33921 + -15.72000 58.66170 254.53565 19.02678 0.41650 0.32435 4.33904 + -15.86000 60.08830 260.71685 19.48960 0.41777 0.32435 4.33890 + -16.00000 61.51490 265.35324 19.83672 0.41899 0.32435 4.33880 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -33861,53 +33997,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 24.08394 100.84990 24.08394 4.29952 302 100 P - 25.17538 101.83090 25.17538 4.70631 302 100 P - 26.26658 102.81190 26.26658 5.11310 302 100 P - 27.35754 103.79290 27.35754 5.51989 302 100 P - 28.17562 104.77390 28.17562 5.82289 302 100 P - 28.67186 104.77390 28.67186 6.01178 302 100 P - 29.34253 105.57832 29.34253 6.25864 302 100 P - 30.23665 106.38274 30.23665 6.59060 302 100 P - 31.13064 107.18716 31.13064 6.92256 302 100 P - 32.02452 107.99158 32.02452 7.25452 302 100 P - 32.69484 108.79600 32.69484 7.50185 302 100 P - 21.80621 108.79600 21.80621 8.57149 302 100 P - 25.48563 106.77700 25.48563 10.45163 302 100 P - 30.38078 104.75800 30.38078 12.97031 302 100 P - 35.26488 102.73900 35.26488 15.48898 302 100 P - 40.14015 100.72000 40.14015 18.00765 302 100 P - 43.79223 98.70100 43.79223 19.89326 302 100 P - 133.47489 98.70100 133.47489 14.58440 302 100 P - 126.38669 100.07440 126.38669 15.17194 302 100 P - 128.48999 101.44780 128.48999 15.95796 302 100 P - 133.14140 102.82120 133.14140 16.74399 302 100 P - 138.55047 104.19460 138.55047 17.53001 302 100 P - 142.82437 105.56800 142.82437 18.11798 302 100 P - 145.74060 105.56800 145.74060 18.53891 302 100 P - 150.17871 106.94140 150.17871 19.01868 302 100 P - 156.16817 108.31480 156.16817 19.73270 302 100 P - 162.21477 109.68820 162.21477 20.44672 302 100 P - 168.29847 111.06160 168.29847 21.16075 302 100 P - 172.87762 112.43500 172.87762 21.68029 302 100 P - 175.93702 112.43500 175.93702 22.06925 302 100 P - 161.76847 113.80840 180.53387 22.58879 220 90 2 - 144.62299 115.18180 186.67323 23.30282 220 77 2 - 107.93937 116.55520 192.82209 24.01684 220 56 2 - 83.23873 117.92860 198.97816 24.73086 110 42 1 - 70.22511 119.30200 203.59879 25.25282 110 34 1 - 70.45659 119.30200 206.68078 27.11815 110 34 1 - 57.42123 120.67540 211.30577 25.88949 110 27 1 - 44.48399 122.04880 217.47521 26.59088 110 20 1 - 31.53290 123.42220 223.64744 27.29227 110 14 1 - 18.57171 124.79560 229.82194 27.99367 110 0 1 - 17.52254 126.16900 234.45399 28.50687 1 0 A - 17.75397 126.16900 237.54259 28.88325 1 0 A - 18.10111 127.54240 242.17619 29.39645 1 0 A - 18.56395 128.91580 248.35538 30.09784 1 0 A - 19.02678 130.28920 254.53565 30.79924 1 0 A - 19.48960 131.66260 260.71685 31.50063 1 0 A - 19.83672 133.03600 265.35324 33.81202 1 0 A + 24.08394 100.84990 24.08394 1.80170 302 100 P + 25.17538 101.83090 25.17538 2.17862 302 100 P + 26.26658 102.81190 26.26658 2.55554 302 100 P + 27.35754 103.79290 27.35754 2.93246 302 100 P + 28.17562 104.77390 28.17562 3.25143 302 100 P + 28.67186 104.77390 28.67186 3.35690 302 100 P + 29.34253 105.57832 29.34253 3.61845 302 100 P + 30.23665 106.38274 30.23665 3.92753 302 100 P + 31.13064 107.18716 31.13064 4.23660 302 100 P + 32.02452 107.99158 32.02452 4.54568 302 100 P + 32.69484 108.79600 32.69484 4.80059 302 100 P + 21.80621 108.79600 21.80621 5.61988 302 100 P + 25.48563 106.77700 25.48563 7.90813 302 100 P + 30.38078 104.75800 30.38078 10.27176 302 100 P + 35.26488 102.73900 35.26488 12.63538 302 100 P + 40.14015 100.72000 40.14015 14.99901 302 100 P + 43.79223 98.70100 43.79223 16.82715 302 100 P + 133.47489 98.70100 133.47489 11.37706 302 100 P + 126.38669 100.07440 126.38669 9.67913 302 100 P + 128.48999 101.44780 128.48999 10.34975 302 100 P + 133.14140 102.82120 133.14140 11.02036 302 100 P + 138.55047 104.19460 138.55047 11.69098 302 100 P + 142.82437 105.56800 142.82437 12.22793 302 100 P + 145.74060 105.56800 145.74060 12.49527 302 100 P + 150.17871 106.94140 150.17871 13.03222 302 100 P + 156.16817 108.31480 156.16817 13.70283 302 100 P + 162.21477 109.68820 162.21477 14.37345 302 100 P + 168.29847 111.06160 168.29847 15.04407 302 100 P + 172.87762 112.43500 172.87762 15.57497 302 100 P + 175.93702 112.43500 175.93702 15.85440 302 100 P + 159.56195 113.80840 180.53387 16.38530 220 88 2 + 138.86564 115.18180 186.67323 17.05592 220 74 2 + 105.42055 116.55520 192.82209 17.72654 220 55 2 + 81.58903 117.92860 198.97816 18.39715 110 41 1 + 68.58258 119.30200 203.59879 18.92384 110 34 1 + 68.81406 119.30200 206.68078 19.21170 110 33 1 + 55.78785 120.67540 211.30577 19.73839 110 26 1 + 42.86103 122.04880 217.47521 20.40900 110 20 1 + 29.92121 123.42220 223.64744 21.07962 110 13 1 + 17.17539 124.79560 229.82194 21.75024 1 0 A + 17.52254 126.16900 234.45399 22.27381 1 0 A + 17.75397 126.16900 237.54259 22.56790 1 0 A + 18.10111 127.54240 242.17619 23.09147 1 0 A + 18.56395 128.91580 248.35538 23.76209 1 0 A + 19.02678 130.28920 254.53565 24.43271 1 0 A + 19.48960 131.66260 260.71685 25.10332 1 0 A + 19.83672 133.03600 265.35324 25.62451 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -33927,7 +34063,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 24.280 'Hydrobiaklei' -12.00 16.407 'Basisveen' - -12.50 332.012 'Eerste zandlaag' + -12.50 329.206 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -33949,7 +34085,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 4.15 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 104.24 'Eerste zandlaag' + -12.50 103.36 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -34129,47 +34265,47 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.67200 5.44198 23.88746 0.00000 0.75514 0.00000 4.38948 - -11.75400 5.88396 24.78250 0.00000 0.75490 0.00000 4.21187 - -11.83600 6.32594 25.67737 0.00000 0.75469 0.00000 4.05906 - -11.91800 6.76792 26.57207 0.00000 0.75451 0.00000 3.92618 - -12.00000 7.20990 27.24301 0.00000 0.75436 0.00000 3.83736 - -12.00000 7.20990 17.58499 0.00000 0.78934 0.00000 2.19616 - -12.10000 10.39890 21.23888 0.00000 0.78963 0.00000 2.04242 - -12.20000 13.58790 26.10091 1.05856 0.78978 0.07790 1.92089 - -12.30000 16.77690 30.95593 7.72121 0.78988 0.46023 1.84515 - -12.40000 19.96590 35.80787 9.80667 0.78994 0.49117 1.79345 - -12.50000 23.15490 39.44638 11.37053 0.78999 0.50857 1.76433 - -12.50000 23.15490 119.57461 7.60516 0.55245 0.32346 5.08578 - -12.64000 24.58150 112.08360 7.95713 0.55239 0.32370 4.55967 - -12.78000 26.00810 115.15505 8.42424 0.55234 0.32391 4.42766 - -12.92000 27.43470 120.33577 8.88982 0.55230 0.32404 4.38626 - -13.06000 28.86130 126.05526 9.35451 0.55226 0.32412 4.36762 - -13.20000 30.28790 130.48682 9.70267 0.55223 0.32417 4.35955 - -13.20000 30.28790 133.48269 9.93464 0.55223 0.32419 4.35584 - -13.34000 31.71450 138.01449 10.28243 0.55220 0.32422 4.35178 - -13.48000 33.14110 144.09843 10.74596 0.55217 0.32425 4.34803 - -13.62000 34.56770 150.21436 11.20931 0.55214 0.32427 4.34551 - -13.76000 35.99430 156.35040 11.67253 0.55211 0.32429 4.34375 - -13.90000 37.42090 160.96110 12.01989 0.55209 0.32430 4.34276 - -13.90000 37.42090 164.03836 12.25144 0.55209 0.32430 4.34222 - -14.04000 38.84750 168.65821 12.59872 0.55205 0.32431 4.34155 - -14.18000 40.27410 174.82318 13.06173 0.55201 0.32432 4.34083 - -14.32000 41.70070 180.99289 13.52469 0.55198 0.32433 4.34028 - -14.46000 43.12730 187.16614 13.98761 0.55194 0.32433 4.33985 - -14.60000 44.55390 191.79781 14.33479 0.55191 0.32434 4.33959 - -14.60000 44.55390 194.88636 14.56623 0.55259 0.32434 4.33943 - -14.74000 45.98050 199.52012 14.91338 0.55019 0.32434 4.33923 - -14.88000 47.40710 205.69979 15.37624 0.54869 0.32434 4.33901 - -15.02000 48.83370 211.88078 15.83908 0.54729 0.32435 4.33882 - -15.16000 50.26030 218.06282 16.30190 0.54596 0.32435 4.33867 - -15.30000 51.68690 222.69990 16.64902 0.54470 0.32435 4.33857 - -15.30000 51.68690 225.79154 16.88042 0.54470 0.32435 4.33851 - -15.44000 53.11350 230.42933 17.22753 0.54352 0.32435 4.33843 - -15.58000 54.54010 236.61353 17.69033 0.54239 0.32435 4.33834 - -15.72000 55.96670 242.79821 18.15312 0.54132 0.32436 4.33826 - -15.86000 57.39330 248.98331 18.61591 0.54031 0.32436 4.33819 - -16.00000 58.81990 253.62236 18.96299 0.53934 0.32436 4.33815 + -11.67200 5.44198 23.88746 0.00000 0.26916 0.00000 4.38948 + -11.75400 5.88396 24.78250 0.00000 0.30147 0.00000 4.21187 + -11.83600 6.32594 25.67737 0.00000 0.32926 0.00000 4.05906 + -11.91800 6.76792 26.57207 0.00000 0.35343 0.00000 3.92618 + -12.00000 7.20990 27.24301 0.00000 0.37463 0.00000 3.83736 + -12.00000 7.20990 17.58499 0.00000 0.40961 0.00000 2.19616 + -12.10000 10.39890 21.23888 0.00000 0.54378 0.00000 2.04242 + -12.20000 13.58790 26.10091 1.05856 0.59011 0.07790 1.92089 + -12.30000 16.77690 30.95593 7.72121 0.61882 0.46023 1.84515 + -12.40000 19.96590 35.80787 9.80667 0.63837 0.49117 1.79345 + -12.50000 23.15490 39.44638 11.37053 0.65253 0.50857 1.76433 + -12.50000 23.15490 119.57461 7.60516 0.41499 0.32346 5.08578 + -12.64000 24.58150 112.08360 7.95713 0.32963 0.32370 4.55967 + -12.78000 26.00810 115.15505 8.42424 0.33734 0.32391 4.42766 + -12.92000 27.43470 120.33577 8.88982 0.34424 0.32404 4.38626 + -13.06000 28.86130 126.05526 9.35451 0.35046 0.32412 4.36762 + -13.20000 30.28790 130.48682 9.70267 0.35610 0.32417 4.35955 + -13.20000 30.28790 133.48269 9.93464 0.35610 0.32419 4.35584 + -13.34000 31.71450 138.01449 10.28243 0.36122 0.32422 4.35178 + -13.48000 33.14110 144.09843 10.74596 0.36591 0.32425 4.34803 + -13.62000 34.56770 150.21436 11.20931 0.37021 0.32427 4.34551 + -13.76000 35.99430 156.35040 11.67253 0.37417 0.32429 4.34375 + -13.90000 37.42090 160.96110 12.01989 0.37782 0.32430 4.34276 + -13.90000 37.42090 164.03836 12.25144 0.37782 0.32430 4.34222 + -14.04000 38.84750 168.65821 12.59872 0.38121 0.32431 4.34155 + -14.18000 40.27410 174.82318 13.06173 0.38436 0.32432 4.34083 + -14.32000 41.70070 180.99289 13.52469 0.38729 0.32433 4.34028 + -14.46000 43.12730 187.16614 13.98761 0.39003 0.32433 4.33985 + -14.60000 44.55390 191.79781 14.33479 0.39259 0.32434 4.33959 + -14.60000 44.55390 194.88636 14.56623 0.39259 0.32434 4.33943 + -14.74000 45.98050 199.52012 14.91338 0.39500 0.32434 4.33923 + -14.88000 47.40710 205.69979 15.37624 0.39726 0.32434 4.33901 + -15.02000 48.83370 211.88078 15.83908 0.39938 0.32435 4.33882 + -15.16000 50.26030 218.06282 16.30190 0.40139 0.32435 4.33867 + -15.30000 51.68690 222.69990 16.64902 0.40329 0.32435 4.33857 + -15.30000 51.68690 225.79154 16.88042 0.40329 0.32435 4.33851 + -15.44000 53.11350 230.42933 17.22753 0.40508 0.32435 4.33843 + -15.58000 54.54010 236.61353 17.69033 0.40678 0.32435 4.33834 + -15.72000 55.96670 242.79821 18.15312 0.40839 0.32436 4.33826 + -15.86000 57.39330 248.98331 18.61591 0.40993 0.32436 4.33819 + -16.00000 58.81990 253.62236 18.96299 0.41139 0.32436 4.33815 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -34349,47 +34485,47 @@ Status character 0.00000 108.79290 0.00000 0.00000 -1 0 - 0.00000 109.77390 0.00000 0.00000 -1 0 - 0.00000 104.77390 0.05110 0.05110 1 0 A - 0.00000 105.57832 23.88746 4.10945 1 0 A - 0.00000 106.38274 24.78250 4.44180 1 0 A - 0.00000 107.18716 25.67737 4.77414 1 0 A - 0.00000 107.99158 26.57207 5.10649 1 0 A - 0.00000 108.79600 27.24301 5.35548 1 0 A - 0.00000 108.79600 17.58499 6.32034 1 0 A - 0.00000 106.77700 21.23888 8.21125 1 0 A - 1.05856 104.75800 26.10091 10.73146 1 0 A - 7.72121 102.73900 30.95593 13.25167 1 0 A - 9.80667 100.72000 35.80787 15.77187 1 0 A - 11.37053 98.70100 39.44638 17.66227 1 0 A - 7.60516 98.70100 119.57461 12.98888 1 0 A - 7.95713 100.07440 112.08360 13.57864 1 0 A - 8.42424 101.44780 115.15505 14.36543 1 0 A - 8.88982 102.82120 120.33577 15.15222 1 0 A - 9.35451 104.19460 126.05526 15.93902 1 0 A - 9.70267 105.56800 130.48682 16.52886 1 0 A - 9.93464 105.56800 133.48269 16.92276 1 0 A - 10.28243 106.94140 138.01449 17.51260 1 0 A - 10.74596 108.31480 144.09843 18.29939 1 0 A - 11.20931 109.68820 150.21436 19.08618 1 0 A - 11.67253 111.06160 156.35040 19.87298 1 0 A - 12.01989 112.43500 160.96110 20.46287 1 0 A - 12.25144 112.43500 164.03836 20.85667 1 0 A - 12.59872 113.80840 168.65821 21.44579 1 0 A - 13.06173 115.18180 174.82318 22.23182 1 0 A - 13.52469 116.55520 180.99289 23.01784 1 0 A - 13.98761 117.92860 187.16614 23.80387 1 0 A - 72.01536 119.30200 191.79781 24.39305 110 38 1 - 72.53730 119.30200 194.88636 24.81698 110 37 1 - 134.43565 120.67540 199.52012 25.29799 220 67 2 - 183.57547 122.04880 205.69979 26.01201 220 89 2 - 204.52807 123.42220 211.88078 26.72603 220 97 2 - 217.71374 124.79560 218.06282 27.44006 220 99 2 - 222.69990 126.16900 222.69990 27.95981 302 100 P - 225.79154 126.16900 225.79154 28.34835 302 100 P - 230.42933 127.54240 230.42933 28.86810 302 100 P - 236.61353 128.91580 236.61353 29.58213 302 100 P - 242.79821 130.28920 242.79821 30.29615 302 100 P - 248.98331 131.66260 248.98331 31.01017 302 100 P - 253.62236 133.03600 253.62236 31.53184 302 100 P + 0.00000 105.57832 23.88746 1.46475 1 0 A + 0.00000 106.38274 24.78250 1.77382 1 0 A + 0.00000 107.18716 25.67737 2.08289 1 0 A + 0.00000 107.99158 26.57207 2.39197 1 0 A + 0.00000 108.79600 27.24301 2.65965 1 0 A + 0.00000 108.79600 17.58499 3.27981 1 0 A + 0.00000 106.77700 21.23888 5.65470 1 0 A + 1.05856 104.75800 26.10091 8.01832 1 0 A + 7.72121 102.73900 30.95593 10.38195 1 0 A + 9.80667 100.72000 35.80787 12.74557 1 0 A + 11.37053 98.70100 39.44638 14.58897 1 0 A + 7.60516 98.70100 119.57461 9.75697 1 0 A + 7.95713 100.07440 112.08360 8.10292 1 0 A + 8.42424 101.44780 115.15505 8.77354 1 0 A + 8.88982 102.82120 120.33577 9.44416 1 0 A + 9.35451 104.19460 126.05526 10.11477 1 0 A + 9.70267 105.56800 130.48682 10.65839 1 0 A + 9.93464 105.56800 133.48269 10.91239 1 0 A + 10.28243 106.94140 138.01449 11.45601 1 0 A + 10.74596 108.31480 144.09843 12.12663 1 0 A + 11.20931 109.68820 150.21436 12.79724 1 0 A + 11.67253 111.06160 156.35040 13.46786 1 0 A + 12.01989 112.43500 160.96110 14.00373 1 0 A + 12.25144 112.43500 164.03836 14.27323 1 0 A + 12.59872 113.80840 168.65821 14.80909 1 0 A + 13.06173 115.18180 174.82318 15.47971 1 0 A + 13.52469 116.55520 180.99289 16.15033 1 0 A + 13.98761 117.92860 187.16614 16.82095 1 0 A + 67.67412 119.30200 191.79781 17.35154 110 35 1 + 67.92478 119.30200 194.88636 17.63158 110 35 1 + 128.87375 120.67540 199.52012 18.16218 220 65 2 + 178.68964 122.04880 205.69979 18.83280 220 87 2 + 199.60388 123.42220 211.88078 19.50341 220 94 2 + 218.06282 124.79560 218.06282 20.17403 302 100 P + 222.69990 126.16900 222.69990 20.70082 302 100 P + 225.79154 126.16900 225.79154 20.98848 302 100 P + 230.42933 127.54240 230.42933 21.51527 302 100 P + 236.61353 128.91580 236.61353 22.18588 302 100 P + 242.79821 130.28920 242.79821 22.85650 302 100 P + 248.98331 131.66260 248.98331 23.52712 302 100 P + 253.62236 133.03600 253.62236 24.05101 302 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -34409,7 +34545,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 2.427 'Basisveen' - -12.50 319.183 'Eerste zandlaag' + -12.50 316.453 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -34431,7 +34567,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -100.21 'Eerste zandlaag' + -12.50 -99.35 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -34671,8 +34807,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 485.29593 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 208.75178 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 485.27808 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 210.05669 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -34713,10 +34849,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 79.81 : Percentage mobilized resistance left - 43.81 : Percentage mobilized resistance right - 268.81 : Effective left - 310.35 : Effective right + 79.03 : Percentage mobilized resistance left + 43.62 : Percentage mobilized resistance right + 266.18 : Effective left + 309.01 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 336.82 : Max effective resistance left @@ -34725,8 +34861,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 81.68 : Vertical force left - 88.86 : Vertical force right + 81.07 : Vertical force left + 88.44 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -34735,17 +34871,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --88.86 : Active force -81.68 : Passive force --88.86 : Plugged active force -81.68 : Plugged passive force +-88.44 : Active force +81.07 : Passive force +-88.44 : Plugged active force +81.07 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor --7.19 : Resulting Vertical Force Unplugged --7.19 : Resulting Vertical Force Plugged +-7.37 : Resulting Vertical Force Unplugged +-7.37 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -34758,210 +34894,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1128.75504 - 0.00000 0.00000 1120.58145 - 0.00000 0.00000 1112.40787 - 0.00000 0.00000 1104.23428 - 0.00000 0.00000 1096.06069 - 0.00000 0.00000 1087.88710 - 0.00000 0.00000 1087.88710 - 0.00000 0.00000 1079.71351 - 0.00000 0.00000 1071.53992 - 0.00000 0.00000 1063.36633 - 0.00000 0.00000 1055.19274 - 0.00000 0.00000 1047.01916 - 0.00000 0.00000 1047.01916 - 0.00283 0.07063 1036.12104 - 0.02260 0.28253 1025.22293 - 0.07628 0.63569 1014.32481 - 0.18082 1.13011 1003.42666 - 0.35316 1.76580 992.52849 - 0.35316 1.76580 992.52849 - 0.56080 2.40345 983.44663 - 0.83712 3.13920 974.36471 - 1.19191 3.97305 965.28268 - 1.63500 4.90500 956.20048 - 2.17618 5.93505 947.11808 - 2.17618 5.93505 947.11808 - 2.82528 7.06320 938.03542 - 3.59209 8.28945 928.95241 - 4.48644 9.61380 919.86893 - 5.51812 11.03625 910.78487 - 6.69696 12.55680 901.70012 - 6.69696 12.55680 901.70012 - 7.83593 13.94293 893.88657 - 9.09722 15.40162 886.07230 - 10.48709 16.93286 878.25718 - 12.01176 18.53666 870.44106 - 13.67747 20.21301 862.62382 - 13.67747 -151.13291 862.62382 - -3.41985 -148.79894 852.26002 - -20.24384 -146.33747 841.89679 - -36.77995 -143.74851 831.53682 - -53.01366 -141.03206 821.18283 - -68.93042 -138.18813 810.83753 - -68.93042 -138.18812 810.83753 - -70.50410 -137.89672 809.80358 - -72.07446 -137.60404 808.76974 - -73.64147 -137.31008 807.73603 - -75.20512 -137.01485 806.70243 - -76.76540 -136.71835 805.66896 - -76.76542 -136.71790 805.66896 - -86.08241 -134.90674 799.45274 - -95.27357 -133.04942 793.24163 - -104.33573 -131.14594 787.03616 - -113.26573 -129.19629 780.83687 - -122.06041 -127.20047 774.64429 - -122.06040 -127.20046 774.64429 - -124.59851 -126.60990 772.84021 - -127.12477 -126.01541 771.03677 - -129.63911 -125.41700 769.23396 - -132.14143 -124.81467 767.43181 - -134.63167 -124.20841 765.63032 - -134.63167 -124.20841 765.63032 - -144.47019 -121.74414 758.43129 - -154.10905 -119.21708 751.24391 - -163.54325 -116.62724 744.06893 - -172.76774 -113.97462 736.90713 - -181.77751 -111.25921 729.75926 - -181.77751 -111.25921 729.75926 - -183.99581 -110.57055 727.97456 - -186.20031 -109.87796 726.19078 - -188.39091 -109.18145 724.40794 - -190.56754 -108.48102 722.62605 - -192.73012 -107.77666 720.84513 - -192.73012 -107.77666 720.84513 - -203.33121 -104.24506 711.95530 - -213.57913 -100.71346 703.09109 - -223.47390 -97.18186 694.25374 - -233.01551 -93.65026 685.44451 - -242.20395 -90.11866 676.66463 - -242.20395 -90.11867 676.66463 - -251.03924 -86.58707 667.91532 - -259.52137 -83.05547 659.19765 - -267.65033 -79.52387 650.51262 - -275.42614 -75.99227 641.86127 - -282.84879 -72.46067 633.24462 - -282.84878 -72.46067 633.24462 - -292.64718 -67.51643 621.24153 - -301.75339 -62.57219 609.31070 - -310.16740 -57.62795 597.45423 - -317.88921 -52.68371 585.67419 - -324.91884 -47.73947 573.97265 - -324.91883 -47.73954 573.97265 - -330.82655 -43.14846 563.17891 - -336.13743 -38.55738 552.45562 - -340.85147 -33.96630 541.80377 - -344.96867 -29.37522 531.22438 - -348.48903 -24.78414 520.71844 - -348.48910 -24.78554 520.71844 - -351.41280 -20.19446 510.28685 - -353.73966 -15.60338 499.93009 - -355.46968 -11.01230 489.64852 - -356.60286 -6.42122 479.44252 - -357.13920 -1.83014 469.31245 - -357.13920 -1.83015 469.31245 - -357.01815 3.44960 457.75710 - -356.10777 8.72934 446.30229 - -354.40807 14.00908 434.94754 - -351.91906 19.28882 423.69237 - -348.64072 24.56856 412.53631 - -348.64072 24.56856 412.53631 - -344.57306 29.84830 401.47869 - -339.71607 35.12804 390.51811 - -334.06977 40.40778 379.65297 - -327.63415 45.68753 368.88169 - -320.40920 50.96727 358.20268 - -320.40920 50.96728 358.20268 - -312.39494 56.24702 347.61416 - -303.59135 61.52676 337.11362 - -293.99843 66.80650 326.69835 - -283.61620 72.08624 316.36566 - -272.44465 77.36599 306.11284 - -272.44459 77.36607 306.11284 - -260.48370 82.64581 295.93701 - -247.73349 87.92556 285.83454 - -234.19396 93.20530 275.80161 - -219.86510 98.48504 265.83443 - -204.74693 103.76478 255.92916 - -204.74697 103.76450 255.92916 - -204.53937 103.83513 255.79705 - -204.33163 103.90577 255.66495 - -204.12374 103.97640 255.53287 - -203.91572 104.04703 255.40079 - -203.70756 104.11766 255.26872 - -203.70756 104.11761 255.26872 - -203.49925 104.18824 255.13666 - -203.29080 104.25888 255.00461 - -203.08221 104.32951 254.87258 - -202.87349 104.40014 254.74055 - -202.66461 104.47077 254.60853 - -202.66461 104.47076 254.60853 - -198.88405 105.47403 252.23396 - -195.07352 106.22446 249.86263 - -191.23574 106.98759 247.49449 - -187.37026 107.76342 245.12947 - -183.47665 108.54955 242.76751 - -183.47665 -100.20226 242.76751 - -195.33699 -97.45546 234.91639 - -206.86138 -94.59418 227.10071 - -218.03395 -91.59178 219.32249 - -228.83776 -88.44826 211.58377 - -239.25695 -85.19026 203.88656 - -239.25695 -85.19028 203.88656 - -244.31407 -83.38190 200.05414 - -249.26300 -81.58451 196.23281 - -254.10446 -79.79966 192.42277 - -258.83921 -78.02737 188.62425 - -263.46797 -76.26605 184.83747 - -263.46873 -76.26115 184.83747 - -270.94601 -72.89293 178.55286 - -278.00728 -68.32375 172.30240 - -284.60902 -63.70258 166.08690 - -290.74613 -59.03139 159.90721 - -296.41416 -54.32586 153.76414 - -296.41233 -54.30711 153.76414 - -300.70042 -50.22291 148.75471 - -304.64340 -45.93786 143.77076 - -308.23269 -41.59654 138.81258 - -311.46390 -37.20651 133.88048 - -314.33390 -32.79234 128.97477 - -314.33401 -32.79048 128.97477 - -317.40418 -28.62118 123.02831 - -320.05819 -24.45017 117.12184 - -322.29318 -20.24798 111.25564 - -324.10757 -16.03917 105.42999 - -325.50299 -11.88991 99.64517 - -325.50406 -11.87930 99.64517 - -325.99396 4.61701 91.61574 - -324.25778 20.11729 83.66683 - -320.37245 35.37481 75.79750 - -314.35446 50.59753 68.00679 - -306.20721 65.77586 60.29375 - -306.24918 66.11751 60.29375 - -295.91910 81.43837 52.65697 - -283.44866 96.71152 45.09331 - -268.84016 111.97858 37.59915 - -252.09598 127.21726 30.17088 - -233.22482 142.33823 22.80491 - -233.37805 143.41763 22.80491 - -212.29617 157.27733 15.49695 - -189.48559 168.02558 8.24134 - -165.61793 170.86840 1.03234 - -142.01886 165.64515 -6.13577 - -119.40139 156.90548 -13.26872 - -119.08052 156.41847 -13.26872 - -97.95966 144.97092 -20.37248 - -78.55445 132.11363 -27.45211 - -61.00503 118.45956 -34.51192 - -45.42299 104.00805 -41.55623 - -31.91535 88.85836 -48.58935 - -31.98630 88.23188 -48.58935 - -20.75719 72.08409 -55.61525 - -11.83538 55.23724 -62.63609 - -5.32806 37.59116 -69.65345 - -1.34716 19.14557 -76.66893 - 0.00004 0.00021 -83.68412 + 0.00000 0.00000 1127.84265 + 0.00000 0.00000 1119.67381 + 0.00000 0.00000 1111.50496 + 0.00000 0.00000 1103.33612 + 0.00000 0.00000 1095.16727 + 0.00000 0.00000 1086.99843 + 0.00000 0.00000 1086.99843 + 0.00000 0.00000 1078.82958 + 0.00000 0.00000 1070.66074 + 0.00000 0.00000 1062.49190 + 0.00000 0.00000 1054.32305 + 0.00000 0.00000 1046.15421 + 0.00000 0.00000 1046.15421 + 0.00283 0.07063 1035.26242 + 0.02260 0.28253 1024.37063 + 0.07628 0.63569 1013.47884 + 0.18082 1.13011 1002.58702 + 0.35316 1.76580 991.69517 + 0.35316 1.76580 991.69517 + 0.56080 2.40345 982.61859 + 0.83712 3.13920 973.54194 + 1.19191 3.97305 964.46518 + 1.63500 4.90500 955.38825 + 2.17618 5.93505 946.31112 + 2.17618 5.93505 946.31112 + 2.82528 7.06320 937.23374 + 3.59209 8.28945 928.15599 + 4.48644 9.61380 919.07779 + 5.51812 11.03625 909.99900 + 6.69696 12.55680 900.91951 + 6.69696 12.55680 900.91951 + 7.83593 13.94293 893.11051 + 9.09722 15.40162 885.30077 + 10.48709 16.93286 877.49017 + 12.01176 18.53666 869.67859 + 13.67747 20.21301 861.86589 + 13.67747 -151.11506 861.86589 + -3.41782 -148.78109 851.50810 + -20.23977 -146.31962 841.15087 + -36.77385 -143.73066 830.79692 + -53.00552 -141.01422 820.44894 + -68.92024 -138.17028 810.10964 + -68.92024 -138.17028 810.10964 + -70.49373 -137.87887 809.07629 + -72.06388 -137.58619 808.04305 + -73.63069 -137.29224 807.00994 + -75.19414 -136.99701 805.97694 + -76.75421 -136.70050 804.94407 + -76.75423 -136.70005 804.94407 + -86.06999 -134.88890 798.73147 + -95.25993 -133.03158 792.52397 + -104.32087 -131.12810 786.32211 + -113.24965 -129.17845 780.12643 + -122.04310 -127.18263 773.93746 + -122.04309 -127.18262 773.93746 + -124.58085 -126.59206 772.13443 + -127.10675 -125.99757 770.33204 + -129.62072 -125.39916 768.53028 + -132.12269 -124.79683 766.72918 + -134.61257 -124.19057 764.92875 + -134.61257 -124.19057 764.92875 + -144.44966 -121.72630 757.73392 + -154.08710 -119.19924 750.55074 + -163.51987 -116.60940 743.37997 + -172.74293 -113.95678 736.22237 + -181.75128 -111.24137 729.07870 + -181.75128 -111.24137 729.07870 + -183.96923 -110.55271 727.29505 + -186.17336 -109.86012 725.51232 + -188.36360 -109.16361 723.73053 + -190.53988 -108.46318 721.94969 + -192.70211 -107.75882 720.16981 + -192.70211 -107.75882 720.16981 + -203.30141 -104.22722 711.28523 + -213.54755 -100.69562 702.42625 + -223.44053 -97.16402 693.59414 + -232.98035 -93.63242 684.79014 + -242.16702 -90.10082 676.01549 + -242.16702 -90.10082 676.01549 + -251.00052 -86.56922 667.27140 + -259.48086 -83.03762 658.55894 + -267.60804 -79.50602 649.87913 + -275.38207 -75.97442 641.23298 + -282.80293 -72.44282 632.62153 + -282.80293 -72.44283 632.62153 + -292.59883 -67.49859 620.62571 + -301.70253 -62.55435 608.70214 + -310.11405 -57.61011 596.85292 + -317.83336 -52.66587 585.08011 + -324.86049 -47.72163 573.38579 + -324.86048 -47.72170 573.38579 + -330.76588 -43.13062 562.59874 + -336.07444 -38.53954 551.88213 + -340.78616 -33.94846 541.23695 + -344.90104 -29.35738 530.66420 + -348.41908 -24.76630 520.16490 + -348.41916 -24.76769 520.16490 + -351.34054 -20.17661 509.73993 + -353.66507 -15.58553 499.38978 + -355.39277 -10.99445 489.11480 + -356.52363 -6.40337 478.91537 + -357.05765 -1.81229 468.79185 + -357.05765 -1.81229 468.79185 + -356.93393 3.46745 457.24402 + -356.02088 8.74719 445.79670 + -354.31851 14.02693 434.44943 + -351.82683 19.30668 423.20171 + -348.54582 24.58642 412.05306 + -348.54582 24.58641 412.05306 + -344.47549 29.86615 401.00284 + -339.61584 35.14590 390.04962 + -333.96687 40.42564 379.19182 + -327.52857 45.70538 368.42785 + -320.30096 50.98512 357.75612 + -320.30096 50.98513 357.75612 + -312.28402 56.26487 347.17484 + -303.47776 61.54461 336.68152 + -293.88218 66.82436 326.27344 + -283.49728 72.10410 315.94789 + -272.32306 77.38384 305.70219 + -272.32299 77.38396 305.70219 + -260.35943 82.66370 295.53345 + -247.60655 87.94344 285.43802 + -234.06434 93.22319 275.41211 + -219.73281 98.50293 265.45190 + -204.61197 103.78267 255.55358 + -204.61200 103.78240 255.55358 + -204.40437 103.85303 255.42156 + -204.19659 103.92366 255.28955 + -203.98867 103.99429 255.15756 + -203.78061 104.06493 255.02557 + -203.57241 104.13556 254.89360 + -203.57241 104.13551 254.89360 + -203.36407 104.20614 254.76163 + -203.15559 104.27678 254.62968 + -202.94696 104.34741 254.49773 + -202.73820 104.41804 254.36580 + -202.52929 104.48867 254.23387 + -202.52929 104.48866 254.23387 + -198.74809 105.49193 251.86096 + -194.93691 106.24235 249.49130 + -191.09848 107.00548 247.12482 + -187.23236 107.78131 244.76146 + -183.33811 108.56744 242.40115 + -183.33810 -101.48927 242.40115 + -195.35289 -98.74247 234.55554 + -207.03172 -95.88119 226.74536 + -218.35873 -92.87879 218.97269 + -229.31698 -89.73527 211.23956 + -239.89061 -86.47727 203.54804 + -239.89062 -86.47729 203.54804 + -245.02495 -84.66891 199.71851 + -250.05111 -82.87152 195.90008 + -254.96979 -81.08667 192.09300 + -259.78176 -79.31438 188.29747 + -264.48773 -77.55306 184.51372 + -264.48784 -77.55267 184.51372 + -272.08189 -73.93620 178.23428 + -279.23495 -69.11561 171.98912 + -285.90317 -64.23986 165.77909 + -292.08115 -59.31091 159.60501 + -297.76410 -54.34437 153.46773 + -297.76308 -54.32128 153.46773 + -302.04644 -50.12919 148.46317 + -305.98171 -45.84351 143.48421 + -309.56323 -41.50135 138.53113 + -312.78661 -37.11085 133.60425 + -315.64869 -32.69404 128.70386 + -315.64880 -32.69222 128.70386 + -318.70848 -28.50935 122.76404 + -321.35057 -24.32346 116.86438 + -323.57208 -20.10498 111.00515 + -325.37130 -15.87841 105.18664 + -326.74970 -11.70988 99.40912 + -326.75077 -11.69926 99.40912 + -327.21057 4.86828 91.39016 + -325.43377 20.44768 83.45203 + -321.49616 35.79264 75.59376 + -315.41304 51.11153 67.81439 + -307.18658 66.39515 60.11294 + -307.22850 66.73651 60.11294 + -296.80384 82.17217 52.48802 + -284.22206 97.56999 44.93642 + -269.48405 112.97196 37.45451 + -252.59074 128.35611 30.03865 + -233.54932 143.63341 22.68521 + -233.70248 144.71541 22.68521 + -212.43454 158.58811 15.38985 + -189.46129 168.95772 8.14687 + -165.51360 171.02980 0.95051 + -141.93244 165.39855 -6.20496 + -119.34037 156.80220 -13.32530 + -119.00588 156.23732 -13.32530 + -97.90036 144.89721 -20.41648 + -78.50546 132.03992 -27.48355 + -60.96636 118.38585 -34.53080 + -45.39464 103.93435 -41.56256 + -31.89733 88.78465 -48.58315 + -31.98630 88.23188 -48.58315 + -20.75719 72.08409 -55.59651 + -11.83538 55.23724 -62.60482 + -5.32806 37.59116 -69.60965 + -1.34716 19.14557 -76.61259 + 0.00004 0.00021 -83.61525 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -35144,53 +35280,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 24.08394 0.00000 0.77623 0.00000 4.34807 - -11.29000 6.07800 25.17538 0.00000 0.77432 0.00000 4.14205 - -11.39000 6.61700 26.26658 0.00000 0.77272 0.00000 3.96956 - -11.49000 7.15600 27.35754 0.00000 0.77136 0.00000 3.82302 - -11.59000 7.69500 28.17562 0.00000 0.77020 0.00000 3.72681 - -11.59000 7.69500 28.67186 0.00000 0.77020 0.00000 3.67329 - -11.67200 8.13698 29.34253 0.00000 0.76916 0.00000 3.60607 - -11.75400 8.57896 30.23665 0.00000 0.76823 0.00000 3.52451 - -11.83600 9.02094 31.13064 0.00000 0.76739 0.00000 3.45093 - -11.91800 9.46292 32.02452 0.00000 0.76663 0.00000 3.38421 - -12.00000 9.90490 32.69484 0.00000 0.76593 0.00000 3.33811 - -12.00000 9.90490 21.80621 0.00000 0.80091 0.00000 2.03755 - -12.10000 13.09390 25.48563 0.00000 0.79821 0.00000 1.94637 - -12.20000 16.28290 30.38078 0.88100 0.79656 0.05411 1.86581 - -12.30000 19.47190 35.26488 9.48096 0.79545 0.48690 1.81107 - -12.40000 22.66090 40.14015 11.56572 0.79466 0.51038 1.77134 - -12.50000 25.84990 43.79223 13.12928 0.79406 0.52407 1.74801 - -12.50000 25.84990 133.47489 8.47969 0.55652 0.32357 5.09319 - -12.64000 27.27650 126.38669 8.83018 0.55623 0.32373 4.63354 - -12.78000 28.70310 128.48999 9.29639 0.55597 0.32388 4.47652 - -12.92000 30.12970 133.14140 9.76168 0.55573 0.32399 4.41894 - -13.06000 31.55630 138.55047 10.22635 0.55552 0.32407 4.39058 - -13.20000 32.98290 142.82437 10.57458 0.55532 0.32411 4.37759 - -13.20000 32.98290 145.74060 10.80661 0.55606 0.32414 4.37140 - -13.34000 34.40950 150.17871 11.15452 0.55272 0.32417 4.36445 - -13.48000 35.83610 156.16817 11.61821 0.55064 0.32420 4.35785 - -13.62000 37.26270 162.21477 12.08172 0.54872 0.32423 4.35327 - -13.76000 38.68930 168.29847 12.54510 0.54694 0.32425 4.35000 - -13.90000 40.11590 172.87762 12.89256 0.54529 0.32427 4.34811 - -13.90000 40.11590 175.93702 13.12418 0.54529 0.32427 4.34707 - -14.04000 41.54250 180.53387 13.47156 0.54375 0.32428 4.34576 - -14.18000 42.96910 186.67323 13.93467 0.54232 0.32430 4.34436 - -14.32000 44.39570 192.82209 14.39774 0.54097 0.32430 4.34326 - -14.46000 45.82230 198.97816 14.86076 0.53971 0.32431 4.34239 - -14.60000 47.24890 203.59879 15.20800 0.53853 0.32432 4.34184 - -14.60000 47.24890 206.68078 15.43948 0.56964 0.32432 4.34153 - -14.74000 48.67550 211.30577 15.78669 0.53188 0.32433 4.34111 - -14.88000 50.10210 217.47521 16.24961 0.53073 0.32433 4.34064 - -15.02000 51.52870 223.64744 16.71251 0.52965 0.32433 4.34025 - -15.16000 52.95530 229.82194 17.17539 0.52863 0.32434 4.33992 - -15.30000 54.38190 234.45399 17.52254 0.52766 0.32434 4.33971 - -15.30000 54.38190 237.54259 17.75397 0.52766 0.32434 4.33958 - -15.44000 55.80850 242.17619 18.10111 0.52674 0.32434 4.33941 - -15.58000 57.23510 248.35538 18.56395 0.52586 0.32435 4.33921 - -15.72000 58.66170 254.53565 19.02678 0.52503 0.32435 4.33904 - -15.86000 60.08830 260.71685 19.48960 0.52424 0.32435 4.33890 - -16.00000 61.51490 265.35324 19.83672 0.55286 0.32435 4.33880 + -11.19000 5.53900 24.08394 0.00000 0.32528 0.00000 4.34807 + -11.29000 6.07800 25.17538 0.00000 0.35844 0.00000 4.14205 + -11.39000 6.61700 26.26658 0.00000 0.38621 0.00000 3.96956 + -11.49000 7.15600 27.35754 0.00000 0.40979 0.00000 3.82302 + -11.59000 7.69500 28.17562 0.00000 0.43007 0.00000 3.72681 + -11.59000 7.69500 28.67186 0.00000 0.43007 0.00000 3.67329 + -11.67200 8.13698 29.34253 0.00000 0.44469 0.00000 3.60607 + -11.75400 8.57896 30.23665 0.00000 0.45781 0.00000 3.52451 + -11.83600 9.02094 31.13064 0.00000 0.46964 0.00000 3.45093 + -11.91800 9.46292 32.02452 0.00000 0.48037 0.00000 3.38421 + -12.00000 9.90490 32.69484 0.00000 0.49014 0.00000 3.33811 + -12.00000 9.90490 21.80621 0.00000 0.52512 0.00000 2.03755 + -12.10000 13.09390 25.48563 0.00000 0.60396 0.00000 1.94637 + -12.20000 16.28290 30.38078 0.88100 0.63083 0.05411 1.86581 + -12.30000 19.47190 35.26488 9.48096 0.64890 0.48690 1.81107 + -12.40000 22.66090 40.14015 11.56572 0.66189 0.51038 1.77134 + -12.50000 25.84990 43.79223 13.12928 0.67167 0.52407 1.74801 + -12.50000 25.84990 133.47489 8.47969 0.43413 0.32357 5.09319 + -12.64000 27.27650 126.38669 8.83018 0.35485 0.32373 4.63354 + -12.78000 28.70310 128.48999 9.29639 0.36058 0.32388 4.47652 + -12.92000 30.12970 133.14140 9.76168 0.36576 0.32399 4.41894 + -13.06000 31.55630 138.55047 10.22635 0.37048 0.32407 4.39058 + -13.20000 32.98290 142.82437 10.57458 0.37479 0.32411 4.37759 + -13.20000 32.98290 145.74060 10.80661 0.37479 0.32414 4.37140 + -13.34000 34.40950 150.17871 11.15452 0.37874 0.32417 4.36445 + -13.48000 35.83610 156.16817 11.61821 0.38238 0.32420 4.35785 + -13.62000 37.26270 162.21477 12.08172 0.38573 0.32423 4.35327 + -13.76000 38.68930 168.29847 12.54510 0.38884 0.32425 4.35000 + -13.90000 40.11590 172.87762 12.89256 0.39173 0.32427 4.34811 + -13.90000 40.11590 175.93702 13.12418 0.39173 0.32427 4.34707 + -14.04000 41.54250 180.53387 13.47156 0.39442 0.32428 4.34576 + -14.18000 42.96910 186.67323 13.93467 0.39693 0.32430 4.34436 + -14.32000 44.39570 192.82209 14.39774 0.39928 0.32430 4.34326 + -14.46000 45.82230 198.97816 14.86076 0.40149 0.32431 4.34239 + -14.60000 47.24890 203.59879 15.20800 0.40356 0.32432 4.34184 + -14.60000 47.24890 206.68078 15.43948 0.40356 0.32432 4.34153 + -14.74000 48.67550 211.30577 15.78669 0.40551 0.32433 4.34111 + -14.88000 50.10210 217.47521 16.24961 0.40735 0.32433 4.34064 + -15.02000 51.52870 223.64744 16.71251 0.40909 0.32433 4.34025 + -15.16000 52.95530 229.82194 17.17539 0.41073 0.32434 4.33992 + -15.30000 54.38190 234.45399 17.52254 0.41229 0.32434 4.33971 + -15.30000 54.38190 237.54259 17.75397 0.41229 0.32434 4.33958 + -15.44000 55.80850 242.17619 18.10111 0.41376 0.32434 4.33941 + -15.58000 57.23510 248.35538 18.56395 0.41517 0.32435 4.33921 + -15.72000 58.66170 254.53565 19.02678 0.41650 0.32435 4.33904 + -15.86000 60.08830 260.71685 19.48960 0.41777 0.32435 4.33890 + -16.00000 61.51490 265.35324 19.83672 0.41899 0.32435 4.33880 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -35364,53 +35500,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 24.08394 100.84990 24.08394 4.29952 302 100 P - 25.17538 101.83090 25.17538 4.70631 302 100 P - 26.26658 102.81190 26.26658 5.11310 302 100 P - 27.35754 103.79290 27.35754 5.51989 302 100 P - 28.17562 104.77390 28.17562 5.82289 302 100 P - 28.67186 104.77390 28.67186 6.01178 302 100 P - 29.34253 105.57832 29.34253 6.25864 302 100 P - 30.23665 106.38274 30.23665 6.59060 302 100 P - 31.13064 107.18716 31.13064 6.92256 302 100 P - 32.02452 107.99158 32.02452 7.25452 302 100 P - 32.66699 108.79600 32.69484 7.50185 220 99 2 - 21.75050 108.79600 21.80621 8.57149 220 99 2 - 25.34221 106.77700 25.48563 10.45163 220 99 2 - 30.14044 104.75800 30.38078 12.97031 220 99 2 - 34.91845 102.73900 35.26488 15.48898 220 99 2 - 39.67845 100.72000 40.14015 18.00765 220 99 2 - 43.20608 98.70100 43.79223 19.89326 220 99 2 - 129.95798 98.70100 133.47489 14.58440 220 97 2 - 121.73194 100.07440 126.38669 15.17194 220 96 2 - 122.58938 101.44780 128.48999 15.95796 220 95 2 - 125.88710 102.82120 133.14140 16.74399 220 95 2 - 129.83480 104.19460 138.55047 17.53001 220 94 2 - 132.53985 105.56800 142.82437 18.11798 220 93 2 - 135.45608 105.56800 145.74060 18.53891 220 93 2 - 138.21803 106.94140 150.17871 19.01868 220 92 2 - 142.42543 108.31480 156.16817 19.73270 220 91 2 - 146.58615 109.68820 162.21477 20.44672 220 90 2 - 150.68217 111.06160 168.29847 21.16075 220 90 2 - 153.17392 112.43500 172.87762 21.68029 220 89 2 - 156.23333 112.43500 175.93702 22.06925 220 89 2 - 139.87983 113.80840 180.53387 22.58879 220 77 2 - 120.45687 115.18180 186.67323 23.30282 220 65 2 - 36.40495 116.55520 192.82209 24.01684 110 19 1 - 14.86076 117.92860 198.97816 24.73086 1 0 A - 15.20800 119.30200 203.59879 25.25282 1 0 A - 15.43948 119.30200 206.68078 27.11815 1 0 A - 15.78669 120.67540 211.30577 25.88949 1 0 A - 16.24961 122.04880 217.47521 26.59088 1 0 A - 16.71251 123.42220 223.64744 27.29227 1 0 A - 17.17539 124.79560 229.82194 27.99367 1 0 A - 17.52254 126.16900 234.45399 28.50687 1 0 A - 17.75397 126.16900 237.54259 28.88325 1 0 A - 18.10111 127.54240 242.17619 29.39645 1 0 A - 18.56395 128.91580 248.35538 30.09784 1 0 A - 19.02678 130.28920 254.53565 30.79924 1 0 A - 19.48960 131.66260 260.71685 31.50063 1 0 A - 19.83672 133.03600 265.35324 33.81202 1 0 A + 24.08394 100.84990 24.08394 1.80170 302 100 P + 25.17538 101.83090 25.17538 2.17862 302 100 P + 26.26658 102.81190 26.26658 2.55554 302 100 P + 27.35754 103.79290 27.35754 2.93246 302 100 P + 28.17562 104.77390 28.17562 3.25143 302 100 P + 28.67186 104.77390 28.67186 3.35690 302 100 P + 29.34253 105.57832 29.34253 3.61845 302 100 P + 30.23665 106.38274 30.23665 3.92753 302 100 P + 31.13064 107.18716 31.13064 4.23660 302 100 P + 32.02452 107.99158 32.02452 4.54568 302 100 P + 32.67990 108.79600 32.69484 4.80059 220 99 2 + 21.77632 108.79600 21.80621 5.61988 220 99 2 + 25.37063 106.77700 25.48563 7.90813 220 99 2 + 30.17159 104.75800 30.38078 10.27176 220 99 2 + 34.95245 102.73900 35.26488 12.63538 220 99 2 + 39.71544 100.72000 40.14015 14.99901 220 99 2 + 43.24619 98.70100 43.79223 16.82715 220 99 2 + 130.19862 98.70100 133.47489 11.37706 220 98 2 + 122.00005 100.07440 126.38669 9.67913 220 97 2 + 122.88646 101.44780 128.48999 10.34975 220 96 2 + 126.21461 102.82120 133.14140 11.02036 220 95 2 + 130.19418 104.19460 138.55047 11.69098 220 94 2 + 132.93251 105.56800 142.82437 12.22793 220 93 2 + 135.84874 105.56800 145.74060 12.49527 220 93 2 + 138.64534 106.94140 150.17871 13.03222 220 92 2 + 142.88869 108.31480 156.16817 13.70283 220 91 2 + 147.08655 109.68820 162.21477 14.37345 220 91 2 + 151.22083 111.06160 168.29847 15.04407 220 90 2 + 153.75188 112.43500 172.87762 15.57497 220 89 2 + 156.81129 112.43500 175.93702 15.85440 220 89 2 + 138.29149 113.80840 180.53387 16.38530 220 77 2 + 115.35867 115.18180 186.67323 17.05592 220 62 2 + 29.13271 116.55520 192.82209 17.72654 110 15 1 + 14.86076 117.92860 198.97816 18.39715 1 0 A + 15.20800 119.30200 203.59879 18.92384 1 0 A + 15.43948 119.30200 206.68078 19.21170 1 0 A + 15.78669 120.67540 211.30577 19.73839 1 0 A + 16.24961 122.04880 217.47521 20.40900 1 0 A + 16.71251 123.42220 223.64744 21.07962 1 0 A + 17.17539 124.79560 229.82194 21.75024 1 0 A + 17.52254 126.16900 234.45399 22.27381 1 0 A + 17.75397 126.16900 237.54259 22.56790 1 0 A + 18.10111 127.54240 242.17619 23.09147 1 0 A + 18.56395 128.91580 248.35538 23.76209 1 0 A + 19.02678 130.28920 254.53565 24.43271 1 0 A + 19.48960 131.66260 260.71685 25.10332 1 0 A + 19.83672 133.03600 265.35324 25.62451 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -35429,8 +35565,8 @@ Layer name -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' -10.00 24.279 'Hydrobiaklei' - -12.00 16.256 'Basisveen' - -12.50 269.811 'Eerste zandlaag' + -12.00 16.272 'Basisveen' + -12.50 268.455 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -35452,7 +35588,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -4.15 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -84.71 'Eerste zandlaag' + -12.50 -84.28 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -35562,18 +35698,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 2.70000 45.00000 0.26580 0.26580 - -10.06400 25.00000 25.50000 0.78302 0.78302 - -10.10000 4.00000 10.00000 1.28106 1.28106 - -10.13600 59.60000 60.30000 1.75992 1.75992 - -10.17200 51.30000 51.40000 2.21959 2.21959 - -10.19000 15.70000 2.00000 2.44224 2.44224 - -10.25000 23.60000 63.00000 3.14976 3.14976 - -10.37000 2.30000 16.00000 4.40496 4.40496 - -10.49000 5.99000 73.00000 5.44704 5.44704 - -10.61000 18.07000 18.00000 6.27600 6.27600 - -10.73000 86.80000 47.00000 6.89184 6.89184 - -10.79000 66.00900 1.00000 7.11984 7.11984 + -10.02800 1.00000 1.00000 0.26580 0.26580 + -10.06400 1.00000 1.00000 0.78302 0.78302 + -10.10000 1.00000 1.00000 1.28106 1.28106 + -10.13600 1.00000 1.00000 1.75992 1.75992 + -10.17200 1.00000 1.00000 2.21959 2.21959 + -10.19000 1.00000 1.00000 2.44224 2.44224 + -10.25000 1.00000 1.00000 3.14976 3.14976 + -10.37000 1.00000 1.00000 4.40496 4.40496 + -10.49000 1.00000 1.00000 5.44704 5.44704 + -10.61000 1.00000 1.00000 6.27600 6.27600 + -10.73000 1.00000 1.00000 6.89184 6.89184 + -10.79000 1.00000 1.00000 7.11984 7.11984 -10.82000 70.13300 35.53000 7.61456 7.15278 -10.88000 70.13300 35.53000 8.74539 7.22806 -10.94000 70.13300 35.53000 10.06474 7.31590 @@ -35655,60 +35791,60 @@ Lambda passive -10.55000 6.90800 6.90800 6.90800 1.00000 1.00000 1.00000 -10.67000 5.13200 5.13200 5.13200 1.00000 1.00000 1.00000 -10.79000 3.35600 3.80000 3.80000 1.00000 1.00000 1.00000 - -10.79000 3.35600 16.49071 1.09790 0.53612 0.31156 4.67974 - -10.85000 4.02740 18.84719 1.25479 0.53612 0.31156 4.67974 - -10.91000 4.69880 21.98917 1.46398 0.53612 0.31156 4.67974 - -10.97000 5.37020 25.13115 1.67316 0.53612 0.31156 4.67974 - -11.03000 6.04160 28.27313 1.88234 0.53612 0.31156 4.67974 - -11.09000 6.71300 30.62961 2.03923 0.53612 0.31156 4.67974 - -11.09000 6.71300 29.36615 -1.90559 0.75256 0.00000 4.37622 - -11.19000 6.70255 28.59009 -1.90723 0.75227 0.00000 4.26555 - -11.29000 6.69210 27.98570 -1.91181 0.75198 0.00000 4.18190 - -11.39000 6.68165 27.61905 -1.91705 0.75169 0.00000 4.13357 - -11.49000 6.67120 27.36904 -1.92246 0.75139 0.00000 4.10257 - -11.59000 6.66075 27.22525 -1.92657 0.75110 0.00000 4.08581 - -11.59000 6.66075 27.15204 -1.92907 0.75110 0.00000 4.07774 - -11.67200 6.65218 27.06584 -1.93247 0.75069 0.00000 4.06872 - -11.75400 6.64361 26.96662 -1.93701 0.75028 0.00000 4.05903 - -11.83600 6.63504 26.88198 -1.94155 0.74987 0.00000 4.05152 - -11.91800 6.62647 26.80843 -1.94610 0.74945 0.00000 4.04566 - -12.00000 6.61790 26.75882 -1.94952 0.74904 0.00000 4.04209 - -12.00000 6.61790 15.71615 0.90252 0.78856 0.14213 2.47493 - -12.10000 5.54690 14.40273 0.37956 0.76826 0.06843 2.59654 - -12.20000 4.47590 12.66091 -0.31821 0.74627 0.00000 2.82868 - -12.30000 3.40490 10.92857 -1.01643 0.71045 0.00000 3.20966 - -12.40000 2.33390 9.20402 -1.71496 0.64176 0.00000 3.94362 - -12.50000 1.26290 7.91473 -2.23901 0.45657 0.00000 5.17083 + -10.79000 3.35600 16.49071 1.09790 0.31156 0.31156 4.67974 + -10.85000 4.02740 18.84719 1.25479 0.31156 0.31156 4.67974 + -10.91000 4.69880 21.98917 1.46398 0.31156 0.31156 4.67974 + -10.97000 5.37020 25.13115 1.67316 0.31156 0.31156 4.67974 + -11.03000 6.04160 28.27313 1.88234 0.31156 0.31156 4.67974 + -11.09000 6.71300 30.62961 2.03923 0.31156 0.31156 4.67974 + -11.09000 6.71300 29.36615 -1.90559 0.38745 0.00000 4.37622 + -11.19000 6.70255 28.59009 -1.90723 0.38237 0.00000 4.26555 + -11.29000 6.69210 27.98570 -1.91181 0.37726 0.00000 4.18190 + -11.39000 6.68165 27.61905 -1.91705 0.37214 0.00000 4.13357 + -11.49000 6.67120 27.36904 -1.92246 0.36701 0.00000 4.10257 + -11.59000 6.66075 27.22525 -1.92657 0.36186 0.00000 4.08581 + -11.59000 6.66075 27.15204 -1.92907 0.36186 0.00000 4.07774 + -11.67200 6.65218 27.06584 -1.93247 0.35762 0.00000 4.06872 + -11.75400 6.64361 26.96662 -1.93701 0.35337 0.00000 4.05903 + -11.83600 6.63504 26.88198 -1.94155 0.34912 0.00000 4.05152 + -11.91800 6.62647 26.80843 -1.94610 0.34485 0.00000 4.04566 + -12.00000 6.61790 26.75882 -1.94952 0.34057 0.00000 4.04209 + -12.00000 6.61790 15.71615 0.90252 0.37555 0.14213 2.47493 + -12.10000 5.54690 14.40273 0.37956 0.32805 0.06843 2.59654 + -12.20000 4.47590 12.66091 -0.31821 0.18235 0.00000 2.82868 + -12.30000 3.40490 10.92857 -1.01643 0.00000 0.00000 3.20966 + -12.40000 2.33390 9.20402 -1.71496 0.00000 0.00000 3.94362 + -12.50000 1.26290 7.91473 -2.23901 0.00000 0.00000 5.17083 -12.50000 1.26290 7.58425 0.52472 0.32399 0.32399 4.68294 - -12.64000 2.68950 12.52153 0.87141 0.36833 0.32400 4.65571 - -12.78000 4.11610 18.98293 1.33370 0.41414 0.32402 4.61187 - -12.92000 5.54270 25.30104 1.79607 0.43637 0.32404 4.56475 - -13.06000 6.96930 31.50671 2.25853 0.44950 0.32407 4.52079 - -13.20000 8.39590 36.11229 2.60542 0.45817 0.32409 4.49200 - -13.20000 8.39590 39.16575 2.83672 0.63521 0.32410 4.47478 - -13.34000 9.82250 43.73122 3.18370 0.43855 0.32412 4.45215 - -13.48000 11.24910 49.80669 3.64640 0.44529 0.32415 4.42762 - -13.62000 12.67570 55.88000 4.10916 0.45051 0.32418 4.40843 - -13.76000 14.10230 61.95921 4.57196 0.45467 0.32420 4.39355 - -13.90000 15.52890 66.52458 4.91908 0.45807 0.32422 4.38462 - -13.90000 15.52890 69.57182 5.15050 0.45807 0.32423 4.37957 - -14.04000 16.95550 74.14832 5.49765 0.46089 0.32424 4.37311 - -14.18000 18.38210 80.25950 5.96051 0.46328 0.32426 4.36618 - -14.32000 19.80870 86.38097 6.42339 0.46532 0.32427 4.36076 - -14.46000 21.23530 92.51165 6.88626 0.46709 0.32428 4.35650 - -14.60000 22.66190 97.11479 7.23341 0.46864 0.32429 4.35390 - -14.60000 22.66190 100.18600 7.46485 0.46864 0.32430 4.35240 - -14.74000 24.08850 104.79610 7.81200 0.47000 0.32430 4.35046 - -14.88000 25.51510 110.94775 8.27485 0.47121 0.32431 4.34832 - -15.02000 26.94170 117.10448 8.73771 0.47229 0.32432 4.34659 - -15.16000 28.36830 123.26551 9.20055 0.47327 0.32432 4.34519 - -15.30000 29.79490 127.88862 9.54768 0.47415 0.32433 4.34430 - -15.30000 29.79490 130.97178 9.77909 0.47415 0.32433 4.34378 - -15.44000 31.22150 135.59799 10.12621 0.47495 0.32433 4.34310 - -15.58000 32.64810 141.76843 10.58903 0.47568 0.32434 4.34232 - -15.72000 34.07470 147.94111 11.05184 0.47635 0.32434 4.34167 - -15.86000 35.50130 154.11572 11.51465 0.47696 0.32434 4.34113 - -16.00000 36.92790 158.74772 11.86175 0.47753 0.32435 4.34078 + -12.64000 2.68950 12.52153 0.87141 0.32400 0.32400 4.65571 + -12.78000 4.11610 18.98293 1.33370 0.32402 0.32402 4.61187 + -12.92000 5.54270 25.30104 1.79607 0.32404 0.32404 4.56475 + -13.06000 6.96930 31.50671 2.25853 0.32407 0.32407 4.52079 + -13.20000 8.39590 36.11229 2.60542 0.32409 0.32409 4.49200 + -13.20000 8.39590 39.16575 2.83672 0.32410 0.32410 4.47478 + -13.34000 9.82250 43.73122 3.18370 0.32412 0.32412 4.45215 + -13.48000 11.24910 49.80669 3.64640 0.32415 0.32415 4.42762 + -13.62000 12.67570 55.88000 4.10916 0.32418 0.32418 4.40843 + -13.76000 14.10230 61.95921 4.57196 0.32420 0.32420 4.39355 + -13.90000 15.52890 66.52458 4.91908 0.32422 0.32422 4.38462 + -13.90000 15.52890 69.57182 5.15050 0.32423 0.32423 4.37957 + -14.04000 16.95550 74.14832 5.49765 0.32424 0.32424 4.37311 + -14.18000 18.38210 80.25950 5.96051 0.32426 0.32426 4.36618 + -14.32000 19.80870 86.38097 6.42339 0.32427 0.32427 4.36076 + -14.46000 21.23530 92.51165 6.88626 0.32428 0.32428 4.35650 + -14.60000 22.66190 97.11479 7.23341 0.32429 0.32429 4.35390 + -14.60000 22.66190 100.18600 7.46485 0.32430 0.32430 4.35240 + -14.74000 24.08850 104.79610 7.81200 0.32430 0.32430 4.35046 + -14.88000 25.51510 110.94775 8.27485 0.32431 0.32431 4.34832 + -15.02000 26.94170 117.10448 8.73771 0.32432 0.32432 4.34659 + -15.16000 28.36830 123.26551 9.20055 0.32432 0.32432 4.34519 + -15.30000 29.79490 127.88862 9.54768 0.32433 0.32433 4.34430 + -15.30000 29.79490 130.97178 9.77909 0.32433 0.32433 4.34378 + -15.44000 31.22150 135.59799 10.12621 0.32433 0.32433 4.34310 + -15.58000 32.64810 141.76843 10.58903 0.32434 0.32434 4.34232 + -15.72000 34.07470 147.94111 11.05184 0.32434 0.32434 4.34167 + -15.86000 35.50130 154.11572 11.51465 0.32434 0.32434 4.34113 + -16.00000 36.92790 158.74772 11.86175 0.32752 0.32435 4.34078 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -35875,60 +36011,60 @@ Status character 6.90800 67.05550 6.90800 6.90800 1 100 A 5.13200 68.83270 5.13200 5.13200 1 100 A 3.80000 70.60990 3.80000 3.80000 1 100 A - 1.09790 70.60990 16.49071 1.88920 1 0 A - 1.25479 71.19850 18.84719 2.15916 1 0 A - 1.46398 71.78710 21.98917 2.51911 1 0 A - 1.67316 72.37570 25.13115 2.87906 1 0 A - 1.88234 72.96430 28.27313 3.23901 1 0 A - 2.03923 73.55290 30.62961 3.50898 1 0 A - 4.42964 73.55290 29.36615 5.04998 110 0 1 - 4.42370 75.08335 28.59009 5.04213 110 0 1 - 4.43575 76.61380 27.98570 5.03232 110 0 1 - 4.46749 78.14425 27.61905 5.02251 110 0 1 - 4.51867 79.67470 27.36904 5.01269 110 0 1 - 4.59097 81.20515 27.22525 5.00484 110 0 1 - 4.53630 81.20515 27.15204 5.00127 110 0 1 - 0.55027 82.46012 27.06584 4.99372 110 0 1 - 0.30129 83.71509 26.96662 4.98456 110 0 1 - 0.06491 84.97006 26.88198 4.97539 110 0 1 - 0.00000 86.22503 26.80843 4.96623 1 0 A - 0.11141 87.48000 26.75882 4.95868 110 0 1 - 1.12534 87.48000 15.71615 5.00745 110 0 1 - 0.95324 89.72100 14.40273 4.26144 110 0 1 - 0.96134 91.96200 12.66091 3.34023 110 0 1 - 1.38573 94.20300 10.92857 2.41902 110 0 1 - 1.84684 96.44400 9.20402 1.49781 110 20 1 - 2.34460 98.68500 7.91473 0.69884 110 30 1 - 6.49218 98.68500 7.58425 0.52472 220 86 2 - 9.56817 100.05840 12.52153 0.99063 220 76 2 - 13.35263 101.43180 18.98293 1.70465 220 70 2 - 17.19121 102.80520 25.30104 2.41868 220 68 2 - 21.09532 104.17860 31.50671 3.13270 220 67 2 - 24.47798 105.55200 36.11229 3.68332 220 68 2 - 25.68086 105.55200 39.16575 5.55974 220 66 2 - 29.15581 106.92540 43.73122 4.30769 220 67 2 - 33.33185 108.29880 49.80669 5.00909 220 67 2 - 37.61091 109.67220 55.88000 5.71048 220 67 2 - 41.99399 111.04560 61.95921 6.41187 220 68 2 - 45.88019 112.41900 66.52458 6.94990 220 69 2 - 47.08075 112.41900 69.57182 7.27664 220 68 2 - 51.06867 113.79240 74.14832 7.81466 220 69 2 - 55.75356 115.16580 80.25950 8.51605 220 69 2 - 60.52856 116.53920 86.38097 9.21745 220 70 2 - 65.38696 117.91260 92.51165 9.91884 220 71 2 - 89.56626 119.28600 97.11479 10.45309 220 92 2 - 89.99855 119.28600 100.18600 10.78737 220 90 2 - 104.79610 120.65940 104.79610 11.32163 302 100 P - 110.94775 122.03280 110.94775 12.02302 302 100 P - 117.10448 123.40620 117.10448 12.72441 302 100 P - 123.26551 124.77960 123.26551 13.42581 302 100 P - 127.88862 126.15300 127.88862 13.95809 302 100 P - 130.97178 126.15300 130.97178 14.29630 302 100 P - 135.59799 127.52640 135.59799 14.82859 302 100 P - 141.76843 128.89980 141.76843 15.52999 302 100 P - 147.94111 130.27320 147.94111 16.23138 302 100 P - 154.11572 131.64660 154.11572 16.93277 302 100 P - 158.74772 133.02000 158.74772 17.46385 302 100 P + 1.09790 70.60990 16.49071 1.09790 1 7 A + 1.25479 71.19850 18.84719 1.25479 1 7 A + 1.46398 71.78710 21.98917 1.46398 1 7 A + 1.67316 72.37570 25.13115 1.67316 1 7 A + 1.88234 72.96430 28.27313 1.88234 1 7 A + 2.03923 73.55290 30.62961 2.03923 1 7 A + 1.96334 73.55290 29.36615 2.59996 110 0 1 + 1.92523 75.08335 28.59009 2.56283 110 0 1 + 1.90584 76.61380 27.98570 2.52468 110 0 1 + 1.90590 78.14425 27.61905 2.48653 110 0 1 + 1.92513 79.67470 27.36904 2.44838 110 0 1 + 1.96423 81.20515 27.22525 2.41118 110 0 1 + 1.91140 81.20515 27.15204 2.40946 110 0 1 + 0.54377 82.46012 27.06584 2.37896 110 0 1 + 0.29241 83.71509 26.96662 2.34768 110 0 1 + 0.05347 84.97006 26.88198 2.31639 110 0 1 + 0.00000 86.22503 26.80843 2.28511 1 0 A + 0.05976 87.48000 26.75882 2.25456 110 0 1 + 1.02204 87.48000 15.71615 2.38478 110 0 1 + 0.83956 89.72100 14.40273 1.81966 110 0 1 + 0.83674 91.96200 12.66091 0.81618 110 7 1 + 1.24972 94.20300 10.92857 0.00000 110 11 1 + 1.69888 96.44400 9.20402 0.00000 110 18 1 + 2.18418 98.68500 7.91473 0.00000 110 28 1 + 6.25155 98.68500 7.58425 0.52472 220 82 2 + 9.30007 100.05840 12.52153 0.87141 220 74 2 + 13.05555 101.43180 18.98293 1.33370 220 69 2 + 16.86370 102.80520 25.30104 1.79607 220 67 2 + 20.73593 104.17860 31.50671 2.25853 220 66 2 + 24.08532 105.55200 36.11229 2.60542 220 67 2 + 25.28819 105.55200 39.16575 2.83672 220 65 2 + 28.72850 106.92540 43.73122 3.18370 220 66 2 + 32.86859 108.29880 49.80669 3.64640 220 66 2 + 37.11051 109.67220 55.88000 4.10916 220 66 2 + 41.45532 111.04560 61.95921 4.57196 220 67 2 + 45.30223 112.41900 66.52458 4.91908 220 68 2 + 46.50279 112.41900 69.57182 5.15050 220 67 2 + 50.45050 113.79240 74.14832 5.49765 220 68 2 + 55.09441 115.16580 80.25950 5.96051 220 69 2 + 59.82780 116.53920 86.38097 6.42339 220 69 2 + 64.64411 117.91260 92.51165 6.88626 220 70 2 + 88.26158 119.28600 97.11479 7.23341 220 91 2 + 88.46364 119.28600 100.18600 7.46485 220 88 2 + 104.79610 120.65940 104.79610 7.81200 302 100 P + 110.94775 122.03280 110.94775 8.27485 302 100 P + 117.10448 123.40620 117.10448 8.73771 302 100 P + 123.26551 124.77960 123.26551 9.20055 302 100 P + 127.88862 126.15300 127.88862 9.54768 302 100 P + 130.97178 126.15300 130.97178 9.77909 302 100 P + 135.59799 127.52640 135.59799 10.12621 302 100 P + 141.76843 128.89980 141.76843 10.58903 302 100 P + 147.94111 130.27320 147.94111 11.05184 302 100 P + 154.11572 131.64660 154.11572 11.51465 302 100 P + 158.74772 133.02000 158.74772 11.97769 302 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -35943,9 +36079,9 @@ Layer name [DATA] -9.99 6.857 'OWB' -10.79 0.471 'Grind' - -11.09 2.501 'Hydrobiaklei' - -12.00 0.688 'Basisveen' - -12.50 258.295 'Eerste zandlaag' + -11.09 1.116 'Hydrobiaklei' + -12.00 0.623 'Basisveen' + -12.50 257.118 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -35962,9 +36098,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.16 'Grind' - -11.09 0.43 'Hydrobiaklei' + -11.09 0.19 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 81.09 'Eerste zandlaag' + -12.50 80.72 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -36189,7 +36325,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=6 CalculationStatus=0 -IterationCount=3 +IterationCount=4 PartialFactorSet=6 [ANCHOR DATA] [TABLE] @@ -36204,8 +36340,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 519.40677 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 384.80853 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 519.29195 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 386.83673 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -36246,10 +36382,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 64.64 : Percentage mobilized resistance left - 46.68 : Percentage mobilized resistance right - 315.72 : Effective left - 330.67 : Effective right + 63.51 : Percentage mobilized resistance left + 46.17 : Percentage mobilized resistance right + 310.20 : Effective left + 327.09 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 488.40 : Max effective resistance left @@ -36258,8 +36394,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 78.51 : Vertical force left - 95.20 : Vertical force right + 77.02 : Vertical force left + 94.07 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -36268,17 +36404,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --95.20 : Active force -78.51 : Passive force --95.20 : Plugged active force -78.51 : Plugged passive force +-94.07 : Active force +77.02 : Passive force +-94.07 : Plugged active force +77.02 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor --16.69 : Resulting Vertical Force Unplugged --16.69 : Resulting Vertical Force Plugged +-17.06 : Resulting Vertical Force Unplugged +-17.06 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -36291,210 +36427,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1137.31851 - 0.00000 0.00000 1128.86754 - 0.00000 0.00000 1120.41657 - 0.00000 0.00000 1111.96560 - 0.00000 0.00000 1103.51464 - 0.00000 0.00000 1095.06367 - 0.00000 0.00000 1095.06367 - 0.00000 0.00000 1086.61270 - 0.00000 0.00000 1078.16173 - 0.00000 0.00000 1069.71077 - 0.00000 0.00000 1061.25980 - 0.00000 0.00000 1052.80883 - 0.00000 0.00000 1052.80883 - 0.00283 0.07063 1041.54088 - 0.02260 0.28253 1030.27293 - 0.07628 0.63569 1019.00497 - 0.18082 1.13011 1007.73698 - 0.35316 1.76580 996.46897 - 0.35316 1.76580 996.46897 - 0.56080 2.40345 987.07892 - 0.83712 3.13920 977.68880 - 1.19191 3.97305 968.29856 - 1.63500 4.90500 958.90817 - 2.17618 5.93505 949.51757 - 2.17618 5.93505 949.51757 - 2.82528 7.06320 940.12671 - 3.59209 8.28945 930.73550 - 4.48644 9.61380 921.34382 - 5.51812 11.03625 911.95156 - 6.69696 12.55680 902.55861 - 6.69696 12.55680 902.55861 - 7.83593 13.94293 894.48002 - 9.09722 15.40162 886.40070 - 10.48709 16.93286 878.32052 - 12.01176 18.53666 870.23935 - 13.67747 20.21301 862.15706 - 13.67747 -185.24376 862.15706 - -7.30849 -182.90978 851.44202 - -28.02111 -180.44831 840.72818 - -48.44586 -177.85936 830.01889 - -68.56820 -175.14291 819.31748 - -88.37360 -172.29897 808.62730 - -88.37360 -172.29897 808.62730 - -90.33615 -172.00756 807.55902 - -92.29537 -171.71488 806.49090 - -94.25124 -171.42093 805.42293 - -96.20376 -171.12570 804.35511 - -98.15290 -170.82919 803.28745 - -98.15292 -170.82874 803.28745 - -109.80991 -169.01759 796.86626 - -121.34107 -167.16027 790.45158 - -132.74324 -165.25679 784.04409 - -144.01325 -163.30714 777.64446 - -155.14793 -161.31132 771.25337 - -155.14792 -161.31131 771.25337 - -158.36825 -160.72075 769.39178 - -161.57673 -160.12626 767.53099 - -164.77328 -159.52785 765.67101 - -167.95782 -158.92552 763.81187 - -171.13027 -158.31926 761.95357 - -171.13027 -158.31926 761.95357 - -183.69766 -155.85498 754.52916 - -196.06539 -153.32793 747.11957 - -208.22845 -150.73809 739.72577 - -220.18181 -148.08546 732.34875 - -231.92045 -145.37006 724.98948 - -231.92045 -145.37006 724.98948 - -234.82097 -144.68139 723.15255 - -237.70768 -143.98881 721.31680 - -240.58050 -143.29230 719.48225 - -243.43935 -142.59186 717.64891 - -246.28415 -141.88751 715.81680 - -246.28415 -141.88751 715.81680 - -260.29468 -138.30686 706.67518 - -273.94225 -134.62811 697.56636 - -287.21704 -130.85126 688.49200 - -300.10923 -126.97631 679.45378 - -312.60903 -123.00326 670.45337 - -312.60903 -123.00326 670.45337 - -324.70661 -118.93211 661.49240 - -336.39218 -114.76286 652.57235 - -347.65592 -110.49551 643.69462 - -358.48801 -106.13006 634.86064 - -368.87866 -101.66651 626.07183 - -368.87866 -101.66652 626.07183 - -382.66525 -95.25274 613.84604 - -395.54045 -88.64669 601.71476 - -407.47735 -81.84836 589.68093 - -418.44902 -74.85775 577.74749 - -428.42855 -67.67487 565.91739 - -428.42854 -67.67494 565.91739 - -436.78335 -60.83296 555.02723 - -444.23792 -53.82518 544.23007 - -450.77071 -46.65162 533.52732 - -456.36016 -39.31227 522.92035 - -460.98471 -31.80713 512.41056 - -460.98479 -31.80853 512.41056 - -464.62309 -24.13760 501.99917 - -467.25338 -16.30088 491.68672 - -468.85413 -8.29837 481.47354 - -469.40377 -0.13007 471.35999 - -468.88076 8.20401 461.34638 - -468.88076 8.20401 461.34638 - -466.92526 17.99316 449.95455 - -463.48988 28.00157 438.69424 - -458.54186 38.22924 427.56403 - -452.04841 48.67616 416.56253 - -443.97676 59.34234 405.68834 - -443.97676 59.34234 405.68834 - -434.29413 70.22777 394.93972 - -422.96773 81.33246 384.31343 - -409.96480 92.65641 373.80580 - -395.25254 104.19961 363.41315 - -378.79819 115.96207 353.13183 - -378.79819 115.96208 353.13183 - -360.56896 127.94379 342.95779 - -340.53207 140.14476 332.88531 - -318.65475 152.56499 322.90824 - -294.90421 165.20447 313.02041 - -269.24768 178.06321 303.21565 - -269.24762 178.06330 303.21565 - -241.65231 191.14129 293.48739 - -212.08545 204.43854 283.82721 - -180.51426 217.95505 274.22623 - -146.90596 231.69081 264.67555 - -111.22778 245.64583 255.16628 - -111.22782 245.64553 255.16628 - -110.73634 245.83370 255.03931 - -110.24448 246.02192 254.91234 - -109.75225 246.21017 254.78538 - -109.25964 246.39847 254.65842 - -108.76666 246.58680 254.53147 - -108.76666 246.58678 254.53147 - -108.27330 246.77515 254.40452 - -107.77956 246.96356 254.27758 - -107.28544 247.15201 254.15064 - -106.79095 247.34050 254.02371 - -106.29608 247.52903 253.89679 - -106.29608 247.52901 253.89679 - -97.34105 249.51119 251.61303 - -88.34780 250.11610 249.33086 - -79.33254 250.73372 247.05014 - -70.29482 251.36404 244.77071 - -61.23418 252.00707 242.49243 - -61.23418 -132.80148 242.49243 - -77.03766 -130.56637 234.90597 - -92.56446 -128.19012 227.33350 - -107.79764 -125.67274 219.77776 - -122.72027 -123.01425 212.24154 - -137.31542 -120.21462 204.72757 - -137.31542 -120.21465 204.72757 - -144.47167 -118.32858 200.97979 - -151.51507 -116.45350 197.23856 - -158.44634 -114.59097 193.50419 - -165.26624 -112.74100 189.77701 - -171.97548 -110.90200 186.05732 - -171.97626 -110.89687 186.05732 - -182.92169 -107.61459 179.87537 - -193.45820 -103.10302 173.71646 - -203.53983 -98.51740 167.58187 - -213.15931 -93.86074 161.47287 - -222.30999 -89.14455 155.39073 - -222.30815 -89.12549 155.39073 - -229.45085 -85.02598 150.42427 - -236.24649 -80.70983 145.47725 - -242.68540 -76.32558 140.55021 - -248.76225 -71.88127 135.64370 - -254.47285 -67.39727 130.75826 - -254.47296 -67.39530 130.75826 - -260.99972 -63.15563 124.82969 - -267.10444 -58.92651 118.93400 - -272.78260 -54.62476 113.07192 - -278.02820 -50.28738 107.24414 - -282.84320 -46.04360 101.45140 - -282.84461 -46.03046 101.45140 - -288.02277 -28.11679 93.40198 - -290.73829 -10.65262 85.42373 - -290.99331 7.07302 77.51670 - -288.73800 25.22383 69.68096 - -283.92336 43.53058 61.91656 - -283.96389 43.88637 61.91656 - -276.54000 62.07680 54.22303 - -266.60928 79.69100 46.59781 - -254.25611 96.67109 39.03788 - -239.57075 113.02180 31.54020 - -222.62969 128.95081 24.10173 - -222.78576 130.02854 24.10173 - -203.52548 144.63333 16.71872 - -182.43659 156.06321 9.38589 - -160.16844 160.19336 2.09791 - -137.93303 156.81118 -5.15058 - -116.43332 149.74303 -12.36492 - -116.11096 149.26494 -12.36492 - -95.88465 139.31666 -19.55075 - -77.17614 127.78608 -26.71295 - -60.14984 115.28491 -33.85572 - -44.94172 101.81184 -40.98323 - -31.68325 87.46597 -48.09966 - -31.75419 86.83958 -48.09966 - -20.67398 71.32016 -55.20890 - -11.82532 54.92687 -62.31311 - -5.33992 37.55928 -69.41385 - -1.35421 19.21709 -76.51271 - 0.00004 0.00021 -83.61128 + 0.00000 0.00000 1136.37244 + 0.00000 0.00000 1127.92730 + 0.00000 0.00000 1119.48215 + 0.00000 0.00000 1111.03700 + 0.00000 0.00000 1102.59185 + 0.00000 0.00000 1094.14670 + 0.00000 0.00000 1094.14670 + 0.00000 0.00000 1085.70156 + 0.00000 0.00000 1077.25641 + 0.00000 0.00000 1068.81126 + 0.00000 0.00000 1060.36611 + 0.00000 0.00000 1051.92096 + 0.00000 0.00000 1051.92096 + 0.00283 0.07063 1040.66077 + 0.02260 0.28253 1029.40058 + 0.07628 0.63569 1018.14038 + 0.18082 1.13011 1006.88015 + 0.35316 1.76580 995.61990 + 0.35316 1.76580 995.61990 + 0.56080 2.40345 986.23631 + 0.83712 3.13920 976.85266 + 1.19191 3.97305 967.46889 + 1.63500 4.90500 958.08496 + 2.17618 5.93505 948.70083 + 2.17618 5.93505 948.70083 + 2.82528 7.06320 939.31644 + 3.59209 8.28945 929.93169 + 4.48644 9.61380 920.54648 + 5.51812 11.03625 911.16069 + 6.69696 12.55680 901.77420 + 6.69696 12.55680 901.77420 + 7.83593 13.94293 893.70117 + 9.09722 15.40162 885.62741 + 10.48709 16.93286 877.55279 + 12.01176 18.53666 869.47718 + 13.67747 20.21301 861.40046 + 13.67747 -185.12893 861.40046 + -7.29540 -182.79496 850.69279 + -27.99493 -180.33349 839.98632 + -48.40659 -177.74453 829.28438 + -68.51584 -175.02808 818.59033 + -88.30815 -172.18415 807.90750 + -88.30815 -172.18415 807.90750 + -90.26939 -171.89274 806.83997 + -92.22730 -171.60006 805.77258 + -94.18187 -171.30610 804.70534 + -96.13307 -171.01087 803.63825 + -98.08091 -170.71437 802.57132 + -98.08092 -170.71392 802.57132 + -109.73004 -168.90277 796.15455 + -121.25333 -167.04545 789.74428 + -132.64762 -165.14197 783.34119 + -143.90975 -163.19232 776.94596 + -155.03655 -161.19650 770.55926 + -155.03655 -161.19649 770.55926 + -158.25458 -160.60593 768.69895 + -161.46076 -160.01144 766.83944 + -164.65501 -159.41303 764.98074 + -167.83725 -158.81070 763.12288 + -171.00741 -158.20444 761.26585 + -171.00741 -158.20444 761.26585 + -183.56561 -155.74016 753.84655 + -195.92416 -153.21311 746.44205 + -208.07804 -150.62327 739.05333 + -220.02221 -147.97064 731.68137 + -231.75166 -145.25524 724.32716 + -231.75166 -145.25524 724.32716 + -234.64989 -144.56658 722.49149 + -237.53430 -143.87399 720.65700 + -240.40482 -143.17748 718.82371 + -243.26137 -142.47705 716.99163 + -246.10388 -141.77269 715.16078 + -246.10388 -141.77269 715.16078 + -260.10293 -138.19204 706.02544 + -273.73902 -134.51329 696.92286 + -287.00232 -130.73644 687.85473 + -299.88303 -126.86149 678.82271 + -312.37135 -122.88844 669.82847 + -312.37135 -122.88844 669.82847 + -324.45745 -118.81729 660.87365 + -336.13154 -114.64804 651.95970 + -347.38379 -110.38069 643.08805 + -358.20440 -106.01524 634.26012 + -368.58357 -101.55169 625.47731 + -368.58357 -101.55170 625.47731 + -382.35408 -95.13792 613.25987 + -395.21321 -88.53187 601.13685 + -407.13403 -81.73354 589.11121 + -418.08963 -74.74293 577.18588 + -428.05308 -67.56005 565.36379 + -428.05307 -67.56012 565.36379 + -436.39295 -60.71813 554.48099 + -443.83260 -53.71036 543.69112 + -450.35046 -46.53680 532.99555 + -455.92499 -39.19745 522.39569 + -460.53462 -31.69231 511.89290 + -460.53469 -31.69369 511.89290 + -464.15806 -24.02276 501.48842 + -466.77343 -16.18605 491.18279 + -468.35925 -8.18354 480.97633 + -468.89396 -0.01524 470.86937 + -468.35602 8.31884 460.86227 + -468.35602 8.31884 460.86227 + -466.38335 18.10799 449.47777 + -462.93081 28.11641 438.22464 + -457.96562 38.34407 427.10145 + -451.45500 48.79100 416.10681 + -443.36619 59.45717 405.23932 + -443.36619 59.45717 405.23932 + -433.66638 70.34260 394.49723 + -422.32282 81.44729 383.87728 + -409.30272 92.77124 373.37581 + -394.57329 104.31444 362.98914 + -378.10177 116.07690 352.71361 + -378.10177 116.07691 352.71361 + -359.85537 128.05862 342.54516 + -339.80132 140.25960 332.47807 + -317.90683 152.67982 322.50619 + -294.13913 165.31930 312.62333 + -268.46543 178.17804 302.82333 + -268.46537 178.17816 302.82333 + -240.85288 191.25616 293.09960 + -211.26885 204.55341 283.44374 + -179.68049 218.06991 273.84684 + -146.05502 231.80568 264.30001 + -110.35967 245.76069 254.79435 + -110.35970 245.76043 254.79435 + -109.86799 245.94860 254.66742 + -109.37591 246.13682 254.54050 + -108.88345 246.32507 254.41358 + -108.39061 246.51337 254.28667 + -107.89739 246.70170 254.15976 + -107.89739 246.70162 254.15976 + -107.40380 246.89000 254.03286 + -106.90983 247.07841 253.90597 + -106.41549 247.26686 253.77908 + -105.92077 247.45535 253.65219 + -105.42567 247.64387 253.52532 + -105.42567 247.64388 253.52532 + -96.46651 249.62606 251.24238 + -87.46912 250.23098 248.96103 + -78.44972 250.84860 246.68110 + -69.40787 251.47892 244.40245 + -60.34309 252.12194 242.12494 + -60.34309 -134.71482 242.12494 + -76.37617 -132.47970 234.54094 + -92.13257 -130.10345 226.97080 + -107.59535 -127.58608 219.41733 + -122.74758 -124.92759 211.88333 + -137.57233 -122.12796 204.37159 + -137.57233 -122.12798 204.37159 + -144.84338 -120.24192 200.62494 + -152.00158 -118.36684 196.88485 + -159.04765 -116.50431 193.15166 + -165.98235 -114.65433 189.42567 + -172.80639 -112.81533 185.70721 + -172.80652 -112.81471 185.70721 + -183.93141 -109.28578 179.52739 + -194.62265 -104.52589 173.37075 + -204.83402 -99.68909 167.23856 + -214.55800 -94.77838 161.13213 + -223.78765 -89.80625 155.05273 + -223.78662 -89.78285 155.05273 + -230.97743 -85.57824 150.08866 + -237.81848 -81.26518 145.14416 + -244.30306 -76.88401 140.21977 + -250.42584 -72.44334 135.31605 + -256.18266 -67.96222 130.43354 + -256.18277 -67.96030 130.43354 + -262.76603 -63.72063 124.50874 + -268.92725 -59.49152 118.61705 + -274.66192 -55.18977 112.75918 + -279.96282 -50.81637 106.93586 + -284.82562 -46.45588 101.14782 + -284.82707 -46.44273 101.14782 + -290.06296 -28.52906 93.10540 + -292.83594 -11.05970 85.13466 + -293.14716 6.67784 77.23566 + -290.94616 24.84368 69.40848 + -286.18241 43.19203 61.65318 + -286.22339 43.55083 61.65318 + -278.83384 61.97844 53.96931 + -268.88227 80.13082 46.35434 + -256.42018 97.79101 38.80519 + -241.53271 114.76717 31.31881 + -224.31613 131.08426 23.89212 + -224.47150 132.16113 23.89212 + -204.90432 146.83510 16.52132 + -183.52414 157.94176 9.20103 + -161.04224 161.29972 1.92587 + -138.69650 157.45170 -5.30956 + -117.10201 150.46977 -12.51065 + -116.76604 149.91364 -12.51065 + -96.44274 140.01773 -19.68308 + -77.63986 128.43358 -26.83176 + -60.52654 115.88092 -33.96087 + -45.23845 102.35869 -41.07464 + -31.90676 87.96518 -48.17726 + -31.99558 87.41180 -48.17726 + -20.83914 71.83258 -55.27263 + -11.92448 55.35301 -62.36292 + -5.38699 37.87296 -69.44973 + -1.36675 19.39218 -76.53463 + 0.00134 0.02252 -83.61924 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -36677,53 +36813,53 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - -11.19000 5.53900 24.08394 0.00000 0.77623 0.00000 4.34807 - -11.29000 6.07800 25.17538 0.00000 0.77432 0.00000 4.14205 - -11.39000 6.61700 26.26658 0.00000 0.77272 0.00000 3.96956 - -11.49000 7.15600 27.35754 0.00000 0.77136 0.00000 3.82302 - -11.59000 7.69500 28.17562 0.00000 0.77020 0.00000 3.72681 - -11.59000 7.69500 28.67186 0.00000 0.77020 0.00000 3.67329 - -11.67200 8.13698 29.34253 0.00000 0.76916 0.00000 3.60607 - -11.75400 8.57896 30.23665 0.00000 0.76823 0.00000 3.52451 - -11.83600 9.02094 31.13064 0.00000 0.76739 0.00000 3.45093 - -11.91800 9.46292 32.02452 0.00000 0.76663 0.00000 3.38421 - -12.00000 9.90490 32.69484 0.00000 0.76593 0.00000 3.33811 - -12.00000 9.90490 21.80621 0.00000 0.80091 0.00000 2.03755 - -12.10000 13.09390 25.48563 0.00000 0.79821 0.00000 1.94637 - -12.20000 16.28290 30.38078 0.88100 0.79656 0.05411 1.86581 - -12.30000 19.47190 35.26488 9.48096 0.79545 0.48690 1.81107 - -12.40000 22.66090 40.14015 11.56572 0.79466 0.51038 1.77134 - -12.50000 25.84990 43.79223 13.12928 0.79406 0.52407 1.74801 - -12.50000 25.84990 133.47489 8.47969 0.55652 0.32357 5.09319 - -12.64000 27.27650 126.38669 8.83018 0.55623 0.32373 4.63354 - -12.78000 28.70310 128.48999 9.29639 0.55597 0.32388 4.47652 - -12.92000 30.12970 133.14140 9.76168 0.55573 0.32399 4.41894 - -13.06000 31.55630 138.55047 10.22635 0.55552 0.32407 4.39058 - -13.20000 32.98290 142.82437 10.57458 0.55532 0.32411 4.37759 - -13.20000 32.98290 145.74060 10.80661 0.55606 0.32414 4.37140 - -13.34000 34.40950 150.17871 11.15452 0.55272 0.32417 4.36445 - -13.48000 35.83610 156.16817 11.61821 0.55064 0.32420 4.35785 - -13.62000 37.26270 162.21477 12.08172 0.54872 0.32423 4.35327 - -13.76000 38.68930 168.29847 12.54510 0.54694 0.32425 4.35000 - -13.90000 40.11590 172.87762 12.89256 0.54529 0.32427 4.34811 - -13.90000 40.11590 175.93702 13.12418 0.54529 0.32427 4.34707 - -14.04000 41.54250 180.53387 13.47156 0.54375 0.32428 4.34576 - -14.18000 42.96910 186.67323 13.93467 0.54232 0.32430 4.34436 - -14.32000 44.39570 192.82209 14.39774 0.54097 0.32430 4.34326 - -14.46000 45.82230 198.97816 14.86076 0.53971 0.32431 4.34239 - -14.60000 47.24890 203.59879 15.20800 0.53853 0.32432 4.34184 - -14.60000 47.24890 206.68078 15.43948 0.56964 0.32432 4.34153 - -14.74000 48.67550 211.30577 15.78669 0.53188 0.32433 4.34111 - -14.88000 50.10210 217.47521 16.24961 0.53073 0.32433 4.34064 - -15.02000 51.52870 223.64744 16.71251 0.52965 0.32433 4.34025 - -15.16000 52.95530 229.82194 17.17539 0.52863 0.32434 4.33992 - -15.30000 54.38190 234.45399 17.52254 0.52766 0.32434 4.33971 - -15.30000 54.38190 237.54259 17.75397 0.52766 0.32434 4.33958 - -15.44000 55.80850 242.17619 18.10111 0.52674 0.32434 4.33941 - -15.58000 57.23510 248.35538 18.56395 0.52586 0.32435 4.33921 - -15.72000 58.66170 254.53565 19.02678 0.52503 0.32435 4.33904 - -15.86000 60.08830 260.71685 19.48960 0.52424 0.32435 4.33890 - -16.00000 61.51490 265.35324 19.83672 0.55286 0.32435 4.33880 + -11.19000 5.53900 24.08394 0.00000 0.32528 0.00000 4.34807 + -11.29000 6.07800 25.17538 0.00000 0.35844 0.00000 4.14205 + -11.39000 6.61700 26.26658 0.00000 0.38621 0.00000 3.96956 + -11.49000 7.15600 27.35754 0.00000 0.40979 0.00000 3.82302 + -11.59000 7.69500 28.17562 0.00000 0.43007 0.00000 3.72681 + -11.59000 7.69500 28.67186 0.00000 0.43007 0.00000 3.67329 + -11.67200 8.13698 29.34253 0.00000 0.44469 0.00000 3.60607 + -11.75400 8.57896 30.23665 0.00000 0.45781 0.00000 3.52451 + -11.83600 9.02094 31.13064 0.00000 0.46964 0.00000 3.45093 + -11.91800 9.46292 32.02452 0.00000 0.48037 0.00000 3.38421 + -12.00000 9.90490 32.69484 0.00000 0.49014 0.00000 3.33811 + -12.00000 9.90490 21.80621 0.00000 0.52512 0.00000 2.03755 + -12.10000 13.09390 25.48563 0.00000 0.60396 0.00000 1.94637 + -12.20000 16.28290 30.38078 0.88100 0.63083 0.05411 1.86581 + -12.30000 19.47190 35.26488 9.48096 0.64890 0.48690 1.81107 + -12.40000 22.66090 40.14015 11.56572 0.66189 0.51038 1.77134 + -12.50000 25.84990 43.79223 13.12928 0.67167 0.52407 1.74801 + -12.50000 25.84990 133.47489 8.47969 0.43413 0.32357 5.09319 + -12.64000 27.27650 126.38669 8.83018 0.35485 0.32373 4.63354 + -12.78000 28.70310 128.48999 9.29639 0.36058 0.32388 4.47652 + -12.92000 30.12970 133.14140 9.76168 0.36576 0.32399 4.41894 + -13.06000 31.55630 138.55047 10.22635 0.37048 0.32407 4.39058 + -13.20000 32.98290 142.82437 10.57458 0.37479 0.32411 4.37759 + -13.20000 32.98290 145.74060 10.80661 0.37479 0.32414 4.37140 + -13.34000 34.40950 150.17871 11.15452 0.37874 0.32417 4.36445 + -13.48000 35.83610 156.16817 11.61821 0.38238 0.32420 4.35785 + -13.62000 37.26270 162.21477 12.08172 0.38573 0.32423 4.35327 + -13.76000 38.68930 168.29847 12.54510 0.38884 0.32425 4.35000 + -13.90000 40.11590 172.87762 12.89256 0.39173 0.32427 4.34811 + -13.90000 40.11590 175.93702 13.12418 0.39173 0.32427 4.34707 + -14.04000 41.54250 180.53387 13.47156 0.39442 0.32428 4.34576 + -14.18000 42.96910 186.67323 13.93467 0.39693 0.32430 4.34436 + -14.32000 44.39570 192.82209 14.39774 0.39928 0.32430 4.34326 + -14.46000 45.82230 198.97816 14.86076 0.40149 0.32431 4.34239 + -14.60000 47.24890 203.59879 15.20800 0.40356 0.32432 4.34184 + -14.60000 47.24890 206.68078 15.43948 0.40356 0.32432 4.34153 + -14.74000 48.67550 211.30577 15.78669 0.40551 0.32433 4.34111 + -14.88000 50.10210 217.47521 16.24961 0.40735 0.32433 4.34064 + -15.02000 51.52870 223.64744 16.71251 0.40909 0.32433 4.34025 + -15.16000 52.95530 229.82194 17.17539 0.41073 0.32434 4.33992 + -15.30000 54.38190 234.45399 17.52254 0.41229 0.32434 4.33971 + -15.30000 54.38190 237.54259 17.75397 0.41229 0.32434 4.33958 + -15.44000 55.80850 242.17619 18.10111 0.41376 0.32434 4.33941 + -15.58000 57.23510 248.35538 18.56395 0.41517 0.32435 4.33921 + -15.72000 58.66170 254.53565 19.02678 0.41650 0.32435 4.33904 + -15.86000 60.08830 260.71685 19.48960 0.41777 0.32435 4.33890 + -16.00000 61.51490 265.35324 19.83672 0.41899 0.32435 4.33880 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -36897,53 +37033,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05135 99.86890 0.05135 0.05135 302 100 P - 24.08394 100.84990 24.08394 4.29952 302 100 P - 25.17538 101.83090 25.17538 4.70631 302 100 P - 26.26658 102.81190 26.26658 5.11310 302 100 P - 27.35754 103.79290 27.35754 5.51989 302 100 P - 28.17562 104.77390 28.17562 5.82289 302 100 P - 28.67186 104.77390 28.67186 6.01178 302 100 P - 29.34253 105.57832 29.34253 6.25864 302 100 P - 30.23665 106.38274 30.23665 6.59060 302 100 P - 31.13064 107.18716 31.13064 6.92256 302 100 P - 32.02452 107.99158 32.02452 7.25452 302 100 P - 32.69484 108.79600 32.69484 7.50185 302 100 P - 21.80621 108.79600 21.80621 8.57149 302 100 P - 25.48563 106.77700 25.48563 10.45163 302 100 P - 30.38078 104.75800 30.38078 12.97031 302 100 P - 35.26488 102.73900 35.26488 15.48898 302 100 P - 40.14015 100.72000 40.14015 18.00765 302 100 P - 43.79223 98.70100 43.79223 19.89326 302 100 P - 133.47489 98.70100 133.47489 14.58440 302 100 P - 126.38669 100.07440 126.38669 15.17194 302 100 P - 127.86007 101.44780 128.48999 15.95796 220 99 2 - 131.04470 102.82120 133.14140 16.74399 220 98 2 - 134.85731 104.19460 138.55047 17.53001 220 97 2 - 137.40830 105.56800 142.82437 18.11798 220 96 2 - 140.32453 105.56800 145.74060 18.53891 220 96 2 - 142.91619 106.94140 150.17871 19.01868 220 95 2 - 146.93895 108.31480 156.16817 19.73270 220 94 2 - 150.90235 109.68820 162.21477 20.44672 220 93 2 - 154.79012 111.06160 168.29847 21.16075 220 92 2 - 157.06438 112.43500 172.87762 21.68029 220 91 2 - 160.12378 112.43500 175.93702 22.06925 220 91 2 - 143.54512 113.80840 180.53387 22.58879 220 80 2 - 123.89053 115.18180 186.67323 23.30282 220 66 2 - 49.19174 116.55520 192.82209 24.01684 110 26 1 - 26.68301 117.92860 198.97816 24.73086 110 13 1 - 26.05359 119.30200 203.59879 25.25282 110 13 1 - 26.28507 119.30200 206.68078 27.11815 110 0 1 - 25.64749 120.67540 211.30577 25.88949 110 0 1 - 25.11949 122.04880 217.47521 26.59088 110 0 1 - 24.58692 123.42220 223.64744 27.29227 110 0 1 - 24.05139 124.79560 229.82194 27.99367 110 0 1 - 23.39876 126.16900 234.45399 28.50687 110 0 1 - 23.63019 126.16900 237.54259 28.88325 110 0 1 - 22.97723 127.54240 242.17619 29.39645 110 0 1 - 22.43972 128.91580 248.35538 30.09784 110 0 1 - 21.90203 130.28920 254.53565 30.79924 110 0 1 - 21.36429 131.66260 260.71685 31.50063 110 0 1 - 20.71089 133.03600 265.35324 33.81202 110 0 1 + 24.08394 100.84990 24.08394 1.80170 302 100 P + 25.17538 101.83090 25.17538 2.17862 302 100 P + 26.26658 102.81190 26.26658 2.55554 302 100 P + 27.35754 103.79290 27.35754 2.93246 302 100 P + 28.17562 104.77390 28.17562 3.25143 302 100 P + 28.67186 104.77390 28.67186 3.35690 302 100 P + 29.34253 105.57832 29.34253 3.61845 302 100 P + 30.23665 106.38274 30.23665 3.92753 302 100 P + 31.13064 107.18716 31.13064 4.23660 302 100 P + 32.02452 107.99158 32.02452 4.54568 302 100 P + 32.69484 108.79600 32.69484 4.80059 302 100 P + 21.80621 108.79600 21.80621 5.61988 302 100 P + 25.48563 106.77700 25.48563 7.90813 302 100 P + 30.38078 104.75800 30.38078 10.27176 302 100 P + 35.26488 102.73900 35.26488 12.63538 302 100 P + 40.14015 100.72000 40.14015 14.99901 302 100 P + 43.79223 98.70100 43.79223 16.82715 302 100 P + 133.47489 98.70100 133.47489 11.37706 302 100 P + 126.38669 100.07440 126.38669 9.67913 302 100 P + 127.93436 101.44780 128.48999 10.34975 220 99 2 + 131.14030 102.82120 133.14140 11.02036 220 98 2 + 134.97644 104.19460 138.55047 11.69098 220 97 2 + 137.55321 105.56800 142.82437 12.22793 220 96 2 + 140.46944 105.56800 145.74060 12.49527 220 96 2 + 143.08923 106.94140 150.17871 13.03222 220 95 2 + 147.14245 108.31480 156.16817 13.70283 220 94 2 + 151.13861 109.68820 162.21477 14.37345 220 93 2 + 155.06131 111.06160 168.29847 15.04407 220 92 2 + 157.37263 112.43500 172.87762 15.57497 220 91 2 + 160.43204 112.43500 175.93702 15.85440 220 91 2 + 141.68588 113.80840 180.53387 16.38530 220 78 2 + 118.52115 115.18180 186.67323 17.05592 220 63 2 + 40.83702 116.55520 192.82209 17.72654 110 21 1 + 25.60562 117.92860 198.97816 18.39715 110 13 1 + 24.98383 119.30200 203.59879 18.92384 110 12 1 + 25.21531 119.30200 206.68078 19.21170 110 12 1 + 24.58750 120.67540 211.30577 19.73839 110 12 1 + 24.07109 122.04880 217.47521 20.40900 110 11 1 + 23.55166 123.42220 223.64744 21.07962 110 11 1 + 23.03051 124.79560 229.82194 21.75024 110 10 1 + 22.39323 126.16900 234.45399 22.27381 110 10 1 + 22.62465 126.16900 237.54259 22.56790 110 10 1 + 21.98772 127.54240 242.17619 23.09147 110 0 1 + 21.46670 128.91580 248.35538 23.76209 110 0 1 + 20.94585 130.28920 254.53565 24.43271 110 0 1 + 20.42513 131.66260 260.71685 25.10332 110 0 1 + 19.83672 133.03600 265.35324 25.62451 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -36963,7 +37099,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 24.280 'Hydrobiaklei' -12.00 16.407 'Basisveen' - -12.50 289.987 'Eerste zandlaag' + -12.50 286.407 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -36985,7 +37121,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -4.15 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -91.04 'Eerste zandlaag' + -12.50 -89.92 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37095,18 +37231,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 70.13300 35.53000 62.42606 60.94843 -10.88000 70.13300 35.53000 65.73347 61.16863 -10.94000 70.13300 35.53000 69.22941 61.40138 @@ -37188,60 +37324,60 @@ Lambda passive -10.55000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.67000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.79000 78.00780 78.00750 78.00750 1.00000 1.00000 1.00000 - -10.79000 11.10780 52.76713 3.51308 0.53811 0.31156 4.67974 - -10.85000 11.77920 55.12361 3.66997 0.53800 0.31156 4.67974 - -10.91000 12.45060 58.26559 3.87915 0.53790 0.31156 4.67974 - -10.97000 13.12200 61.40757 4.08834 0.53781 0.31156 4.67974 - -11.03000 13.79340 64.54955 4.29752 0.53773 0.31156 4.67974 - -11.09000 14.46480 66.90603 4.45441 0.53765 0.31156 4.67974 - -11.09000 14.46480 46.13720 2.27861 0.75409 0.15607 3.16018 - -11.19000 15.00380 46.33948 2.51451 0.75401 0.16759 3.08852 - -11.29000 15.54280 46.84522 2.81502 0.75394 0.18111 3.01395 - -11.39000 16.08180 47.52212 3.10969 0.75387 0.19337 2.95502 - -11.49000 16.62080 48.30334 3.40222 0.75380 0.20470 2.90620 - -11.59000 17.15980 48.93401 3.62096 0.75374 0.21268 2.87424 - -11.59000 17.15980 49.33230 3.75349 0.75374 0.21734 2.85648 - -11.67200 17.60178 49.88585 3.93249 0.75363 0.22341 2.83414 - -11.75400 18.04376 50.64361 4.17102 0.75353 0.23116 2.80671 - -11.83600 18.48574 51.42059 4.40943 0.75343 0.23853 2.78164 - -11.91800 18.92772 52.21292 4.64777 0.75333 0.24555 2.75854 - -12.00000 19.36970 52.81517 4.82651 0.75324 0.25061 2.74233 - -12.00000 19.36970 36.01071 8.96387 0.78977 0.48020 1.92912 - -12.10000 16.55870 32.52395 7.58633 0.78298 0.45815 1.96416 - -12.20000 13.74770 27.90549 5.74959 0.77603 0.41822 2.02983 - -12.30000 10.93670 23.31663 3.91283 0.76551 0.35777 2.13196 - -12.40000 8.12570 18.75096 2.07605 0.74771 0.25549 2.30761 - -12.50000 5.31470 15.33841 0.69846 0.71107 0.11607 2.54899 - -12.50000 5.31470 25.72539 1.82911 0.47353 0.32252 4.53603 - -12.64000 6.74130 30.43947 2.17470 0.47924 0.32259 4.51537 - -12.78000 8.16790 36.66750 2.63581 0.48296 0.32270 4.48922 - -12.92000 9.59450 42.84191 3.09731 0.48557 0.32282 4.46526 - -13.06000 11.02110 48.97973 3.55919 0.48750 0.32294 4.44418 - -13.20000 12.44770 53.56826 3.90582 0.48899 0.32303 4.43041 - -13.20000 12.44770 56.62235 4.13701 0.60841 0.32309 4.42212 - -13.34000 13.87430 61.19951 4.48395 0.47194 0.32318 4.41100 - -13.48000 15.30090 67.29997 4.94673 0.47377 0.32330 4.39843 - -13.62000 16.72750 73.40166 5.40973 0.47530 0.32340 4.38808 - -13.76000 18.15410 79.50762 5.87288 0.47658 0.32350 4.37960 - -13.90000 19.58070 84.09069 6.22033 0.47768 0.32357 4.37424 - -13.90000 19.58070 87.14823 6.45199 0.47768 0.32361 4.37110 - -14.04000 21.00730 91.73791 6.79952 0.47863 0.32367 4.36695 - -14.18000 22.43390 97.86308 7.26294 0.47946 0.32375 4.36229 - -14.32000 23.86050 103.99476 7.72639 0.48019 0.32382 4.35845 - -14.46000 25.28710 110.13252 8.18985 0.48084 0.32387 4.35528 - -14.60000 26.71370 114.73936 8.53744 0.48141 0.32391 4.35327 - -14.60000 26.71370 117.81233 8.76916 0.48141 0.32394 4.35208 - -14.74000 28.14030 122.42419 9.11674 0.48193 0.32397 4.35049 - -14.88000 29.56690 128.57702 9.58016 0.48240 0.32402 4.34868 - -15.02000 30.99350 134.73382 10.04355 0.48283 0.32405 4.34716 - -15.16000 32.42010 140.89414 10.50691 0.48322 0.32409 4.34589 - -15.30000 33.84670 145.51635 10.85440 0.48357 0.32411 4.34506 - -15.30000 33.84670 148.59877 11.08606 0.48357 0.32412 4.34457 - -15.44000 35.27330 153.22370 11.43352 0.48390 0.32414 4.34390 - -15.58000 36.69990 159.39224 11.89677 0.48420 0.32416 4.34312 - -15.72000 38.12650 165.56288 12.36000 0.48448 0.32418 4.34246 - -15.86000 39.55310 171.73536 12.82319 0.48474 0.32420 4.34189 - -16.00000 40.97970 176.36576 13.17056 0.48498 0.32421 4.34152 + -10.79000 11.10780 52.76713 3.51308 0.32477 0.31156 4.67974 + -10.85000 11.77920 55.12361 3.66997 0.33544 0.31156 4.67974 + -10.91000 12.45060 58.26559 3.87915 0.34495 0.31156 4.67974 + -10.97000 13.12200 61.40757 4.08834 0.35350 0.31156 4.67974 + -11.03000 13.79340 64.54955 4.29752 0.36121 0.31156 4.67974 + -11.09000 14.46480 66.90603 4.45441 0.36821 0.31156 4.67974 + -11.09000 14.46480 46.13720 2.27861 0.58465 0.15607 3.16018 + -11.19000 15.00380 46.33948 2.51451 0.58877 0.16759 3.08852 + -11.29000 15.54280 46.84522 2.81502 0.59260 0.18111 3.01395 + -11.39000 16.08180 47.52212 3.10969 0.59618 0.19337 2.95502 + -11.49000 16.62080 48.30334 3.40222 0.59952 0.20470 2.90620 + -11.59000 17.15980 48.93401 3.62096 0.60266 0.21268 2.87424 + -11.59000 17.15980 49.33230 3.75349 0.60266 0.21734 2.85648 + -11.67200 17.60178 49.88585 3.93249 0.60508 0.22341 2.83414 + -11.75400 18.04376 50.64361 4.17102 0.60739 0.23116 2.80671 + -11.83600 18.48574 51.42059 4.40943 0.60959 0.23853 2.78164 + -11.91800 18.92772 52.21292 4.64777 0.61168 0.24555 2.75854 + -12.00000 19.36970 52.81517 4.82651 0.61368 0.25061 2.74233 + -12.00000 19.36970 36.01071 8.96387 0.64866 0.48020 1.92912 + -12.10000 16.55870 32.52395 7.58633 0.63552 0.45815 1.96416 + -12.20000 13.74770 27.90549 5.74959 0.59244 0.41822 2.02983 + -12.30000 10.93670 23.31663 3.91283 0.52720 0.35777 2.13196 + -12.40000 8.12570 18.75096 2.07605 0.41683 0.25549 2.30761 + -12.50000 5.31470 15.33841 0.69846 0.18971 0.11607 2.54899 + -12.50000 5.31470 25.72539 1.82911 0.32252 0.32252 4.53603 + -12.64000 6.74130 30.43947 2.17470 0.32259 0.32259 4.51537 + -12.78000 8.16790 36.66750 2.63581 0.32270 0.32270 4.48922 + -12.92000 9.59450 42.84191 3.09731 0.32282 0.32282 4.46526 + -13.06000 11.02110 48.97973 3.55919 0.32294 0.32294 4.44418 + -13.20000 12.44770 53.56826 3.90582 0.32303 0.32303 4.43041 + -13.20000 12.44770 56.62235 4.13701 0.32309 0.32309 4.42212 + -13.34000 13.87430 61.19951 4.48395 0.32318 0.32318 4.41100 + -13.48000 15.30090 67.29997 4.94673 0.32330 0.32330 4.39843 + -13.62000 16.72750 73.40166 5.40973 0.32340 0.32340 4.38808 + -13.76000 18.15410 79.50762 5.87288 0.32350 0.32350 4.37960 + -13.90000 19.58070 84.09069 6.22033 0.32357 0.32357 4.37424 + -13.90000 19.58070 87.14823 6.45199 0.32361 0.32361 4.37110 + -14.04000 21.00730 91.73791 6.79952 0.32367 0.32367 4.36695 + -14.18000 22.43390 97.86308 7.26294 0.32375 0.32375 4.36229 + -14.32000 23.86050 103.99476 7.72639 0.32382 0.32382 4.35845 + -14.46000 25.28710 110.13252 8.18985 0.32387 0.32387 4.35528 + -14.60000 26.71370 114.73936 8.53744 0.32391 0.32391 4.35327 + -14.60000 26.71370 117.81233 8.76916 0.32394 0.32394 4.35208 + -14.74000 28.14030 122.42419 9.11674 0.32397 0.32397 4.35049 + -14.88000 29.56690 128.57702 9.58016 0.32402 0.32402 4.34868 + -15.02000 30.99350 134.73382 10.04355 0.32405 0.32405 4.34716 + -15.16000 32.42010 140.89414 10.50691 0.32409 0.32409 4.34589 + -15.30000 33.84670 145.51635 10.85440 0.32445 0.32411 4.34506 + -15.30000 33.84670 148.59877 11.08606 0.32445 0.32412 4.34457 + -15.44000 35.27330 153.22370 11.43352 0.33034 0.32414 4.34390 + -15.58000 36.69990 159.39224 11.89677 0.33577 0.32416 4.34312 + -15.72000 38.12650 165.56288 12.36000 0.34080 0.32418 4.34246 + -15.86000 39.55310 171.73536 12.82319 0.34546 0.32420 4.34189 + -16.00000 40.97970 176.36576 13.17056 0.34980 0.32421 4.34152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -37405,63 +37541,63 @@ Status character 78.00210 0.00000 78.00210 78.00210 302 100 P 78.00300 0.00000 78.00300 78.00300 302 100 P 78.00420 0.00000 78.00420 78.00420 1 100 A - 78.00540 0.00000 78.00540 78.00540 1 99 A + 78.00540 0.00000 78.00540 78.00540 1 100 A 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00750 0.00000 78.00750 78.00750 1 100 A - 3.51308 66.90000 52.76713 6.06759 1 0 A - 3.66997 67.48860 55.12361 6.33722 1 0 A - 3.87915 68.07720 58.26559 6.69717 1 0 A - 4.08834 68.66580 61.40757 7.05712 1 0 A - 4.29752 69.25440 64.54955 7.41707 1 0 A - 4.45441 69.84300 66.90603 7.68677 1 0 A - 9.16924 69.84300 46.13720 11.00944 110 0 1 - 9.37214 70.82400 46.33948 11.31308 110 0 1 - 9.70770 71.80500 46.84522 11.71833 110 0 1 - 10.07360 72.78600 47.52212 12.12358 110 0 1 - 10.46915 73.76700 48.30334 12.52884 110 0 1 - 10.79207 74.74800 48.93401 12.83252 110 0 1 - 10.92581 74.74800 49.33230 13.01737 110 0 1 - 7.15228 75.55242 49.88585 13.26528 110 0 1 - 7.20672 76.35684 50.64361 13.59648 110 0 1 - 7.27956 77.16126 51.42059 13.92767 110 0 1 - 7.52941 77.96568 52.21292 14.25886 110 0 1 - 7.87607 78.77010 52.81517 14.50683 110 0 1 - 8.96387 78.77010 36.01071 14.74262 1 0 A - 7.58633 82.75110 32.52395 12.96518 1 0 A - 5.74959 86.73210 27.90549 10.66868 1 0 A - 3.91283 90.71310 23.31663 8.37217 1 0 A - 2.79638 94.69410 18.75096 6.07566 110 0 1 - 2.31217 98.67510 15.33841 4.27886 110 0 1 - 1.82911 98.67510 25.72539 2.68558 1 0 A - 2.17470 100.04850 30.43947 3.23071 1 0 A - 2.63581 101.42190 36.66750 3.94474 1 0 A - 3.09731 102.79530 42.84191 4.65876 1 0 A - 3.55919 104.16870 48.97973 5.37278 1 0 A - 7.23328 105.54210 53.56826 5.91241 110 14 1 - 8.43758 105.54210 56.62235 7.79026 110 15 1 - 14.99168 106.91550 61.19951 6.54778 110 24 1 - 23.28372 108.28890 67.29997 7.24917 110 35 1 - 32.03667 109.66230 73.40166 7.95056 110 44 1 - 40.12612 111.03570 79.50762 8.65196 220 50 2 - 44.22282 112.40910 84.09069 9.18299 220 53 2 - 45.43738 112.40910 87.14823 9.52372 220 52 2 - 49.64347 113.78250 91.73791 10.05474 220 54 2 - 54.55999 115.15590 97.86308 10.75614 220 56 2 - 59.57194 116.52930 103.99476 11.45753 220 57 2 - 64.67148 117.90270 110.13252 12.15892 220 59 2 - 89.09039 119.27610 114.73936 12.68862 220 78 2 - 89.53179 119.27610 117.81233 13.03201 220 76 2 - 104.57098 120.64950 122.42419 13.56171 220 85 2 - 110.97037 122.02290 128.57702 14.26310 220 86 2 - 117.37596 123.39630 134.73382 14.96450 220 87 2 - 123.78660 124.76970 140.89414 15.66589 220 88 2 - 128.65628 126.14310 145.51635 16.19482 220 88 2 - 131.74617 126.14310 148.59877 16.53975 220 89 2 - 136.61905 127.51650 153.22370 17.06867 220 89 2 - 143.03957 128.88990 159.39224 17.77007 220 90 2 - 149.46238 130.26330 165.56288 18.47146 220 90 2 - 155.88713 131.63670 171.73536 19.17285 220 91 2 - 160.76660 133.01010 176.36576 19.70128 220 91 2 + 3.51308 66.90000 52.76713 3.66196 1 0 A + 3.66997 67.48860 55.12361 3.95117 1 0 A + 3.87915 68.07720 58.26559 4.29489 1 0 A + 4.08834 68.66580 61.40757 4.63860 1 0 A + 4.29752 69.25440 64.54955 4.98232 1 0 A + 4.45441 69.84300 66.90603 5.26424 1 0 A + 6.70552 69.84300 46.13720 8.53563 110 0 1 + 6.90307 70.82400 46.33948 8.83377 110 0 1 + 7.21023 71.80500 46.84522 9.21069 110 0 1 + 7.54749 72.78600 47.52212 9.58761 110 0 1 + 7.91416 73.76700 48.30334 9.96453 110 0 1 + 8.22829 74.74800 48.93401 10.26024 110 0 1 + 8.32498 74.74800 49.33230 10.40804 110 0 1 + 7.18985 75.55242 49.88585 10.65052 110 0 1 + 7.24438 76.35684 50.64361 10.95960 110 0 1 + 7.31710 77.16126 51.42059 11.26867 110 0 1 + 7.58083 77.96568 52.21292 11.57774 110 0 1 + 7.89453 78.77010 52.81517 11.81901 110 0 1 + 8.96387 78.77010 36.01071 12.10853 1 0 A + 7.58633 82.75110 32.52395 10.52341 1 0 A + 5.74959 86.73210 27.90549 8.14463 1 0 A + 3.91283 90.71310 23.31663 5.76584 1 0 A + 2.07605 94.69410 18.75096 3.38705 1 0 A + 0.69846 98.67510 15.33841 1.14159 1 0 A + 1.82911 98.67510 25.72539 1.82911 1 7 A + 2.17470 100.04850 30.43947 2.17470 1 7 A + 2.63581 101.42190 36.66750 2.63581 1 7 A + 3.09731 102.79530 42.84191 3.09731 1 7 A + 3.55919 104.16870 48.97973 3.55919 1 7 A + 6.90293 105.54210 53.56826 3.90582 110 13 1 + 8.10570 105.54210 56.62235 4.13701 110 14 1 + 12.25319 106.91550 61.19951 4.48395 110 20 1 + 18.71069 108.28890 67.29997 4.94673 110 28 1 + 27.33361 109.66230 73.40166 5.40973 110 37 1 + 36.40166 111.03570 79.50762 5.87288 110 46 1 + 42.98272 112.40910 84.09069 6.22033 220 51 2 + 44.18353 112.40910 87.14823 6.45199 220 51 2 + 48.35798 113.78250 91.73791 6.79952 220 53 2 + 53.23435 115.15590 97.86308 7.26294 220 54 2 + 58.20472 116.52930 103.99476 7.72639 220 56 2 + 63.26148 117.90270 110.13252 8.18985 220 57 2 + 87.12165 119.27610 114.73936 8.53744 220 76 2 + 87.32400 119.27610 117.81233 8.76916 220 74 2 + 103.90064 120.64950 122.42419 9.11674 220 85 2 + 110.29769 122.02290 128.57702 9.58016 220 86 2 + 116.70054 123.39630 134.73382 10.04355 220 87 2 + 123.10809 124.76970 140.89414 10.50691 220 87 2 + 127.98905 126.14310 145.51635 10.86578 220 88 2 + 131.07223 126.14310 148.59877 11.09721 220 88 2 + 136.15224 127.51650 153.22370 11.65211 220 89 2 + 142.77644 128.88990 159.39224 12.32273 220 90 2 + 149.40285 130.26330 165.56288 12.99335 220 90 2 + 156.03115 131.63670 171.73536 13.66396 220 91 2 + 160.99184 133.01010 176.36576 14.20983 220 91 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37476,9 +37612,9 @@ Layer name [DATA] -9.99 59.453 'OWB' -10.79 1.195 'Grind' - -11.09 8.123 'Hydrobiaklei' - -12.00 2.568 'Basisveen' - -12.50 244.376 'Eerste zandlaag' + -11.09 6.774 'Hydrobiaklei' + -12.00 2.416 'Basisveen' + -12.50 240.358 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -37495,9 +37631,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.40 'Grind' - -11.09 1.39 'Hydrobiaklei' + -11.09 1.16 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 76.72 'Eerste zandlaag' + -12.50 75.46 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37737,8 +37873,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 623.49628 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 604.52357 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 623.28814 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 607.20880 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -37782,10 +37918,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 64.49 : Percentage mobilized resistance left - 56.45 : Percentage mobilized resistance right - 314.98 : Effective left - 277.33 : Effective right + 63.68 : Percentage mobilized resistance left + 56.15 : Percentage mobilized resistance right + 310.99 : Effective left + 275.84 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 488.40 : Max effective resistance left @@ -37794,8 +37930,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 77.82 : Vertical force left - 59.71 : Vertical force right + 76.78 : Vertical force left + 59.04 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -37804,17 +37940,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --59.71 : Active force -77.82 : Passive force --59.71 : Plugged active force -77.82 : Plugged passive force +-59.04 : Active force +76.78 : Passive force +-59.04 : Plugged active force +76.78 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor -18.11 : Resulting Vertical Force Unplugged -18.11 : Resulting Vertical Force Plugged +17.74 : Resulting Vertical Force Unplugged +17.74 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -37827,210 +37963,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1113.42073 - 0.00000 0.00000 1105.65898 - 0.00000 0.00000 1097.89723 - 0.00000 0.00000 1090.13549 - 0.00000 0.00000 1082.37374 - 0.00000 0.00000 1074.61199 - 0.00000 0.00000 1074.61199 - 0.00000 0.00000 1066.85025 - 0.00000 0.00000 1059.08850 - 0.00000 0.00000 1051.32675 - 0.00000 0.00000 1043.56500 - 0.00000 0.00000 1035.80326 - 0.00000 0.00000 1035.80326 - 0.00000 0.00000 1025.45426 - 0.00000 0.00000 1015.10526 - 0.00000 0.00000 1004.75627 - 0.00000 0.00000 994.40727 - 0.00000 0.00000 984.05828 - 0.00000 0.00000 984.05828 - 0.00000 0.00000 975.43411 - 0.00000 0.00000 966.80995 - 0.00000 0.00000 958.18579 - 0.00000 0.00000 949.56162 - 0.00000 0.00000 940.93746 - 0.00000 0.00000 940.93746 - 0.00000 0.00000 932.31330 - 0.00000 0.00000 923.68913 - 0.00000 0.00000 915.06497 - 0.00000 0.00000 906.44081 - 0.00000 0.00000 897.81664 - 0.00000 0.00000 897.81664 - 0.00000 0.00000 890.39986 - 0.00000 0.00000 882.98308 - 0.00000 0.00000 875.56630 - 0.00000 0.00000 868.14952 - 0.00000 0.00000 860.73274 - 0.00000 -51.62628 860.73274 - -5.88540 -51.62628 850.90135 - -11.77079 -51.62628 841.07093 - -17.65619 -51.62628 831.24244 - -23.54159 -51.62628 821.41683 - -29.42698 -51.62628 811.59508 - -29.42698 -51.62628 811.59508 - -30.01552 -51.62628 810.61316 - -30.60406 -51.62628 809.63128 - -31.19260 -51.62628 808.64945 - -31.78114 -51.62628 807.66768 - -32.36968 -51.62628 806.68595 - -32.36969 -51.62583 806.68595 - -35.91122 -51.62583 800.77954 - -39.45276 -51.62583 794.87526 - -42.99429 -51.62583 788.97331 - -46.53582 -51.62583 783.07392 - -50.07735 -51.62583 777.17728 - -50.07735 -51.62582 777.17728 - -51.10987 -51.62582 775.45870 - -52.14238 -51.62582 773.74037 - -53.17490 -51.62582 772.02230 - -54.20742 -51.62582 770.30450 - -55.23993 -51.62582 768.58698 - -55.23993 -51.62582 768.58698 - -59.37000 -51.62582 761.71971 - -63.50006 -51.62582 754.85724 - -67.63013 -51.62582 747.99988 - -71.76020 -51.62582 741.14797 - -75.89026 -51.62582 734.30185 - -75.89026 -51.62582 734.30185 - -76.92278 -51.62582 732.59127 - -77.95529 -51.62582 730.88107 - -78.98781 -51.62582 729.17126 - -80.02033 -51.62582 727.46185 - -81.05284 -51.62582 725.75285 - -81.05284 -51.62582 725.75285 - -86.21543 -51.62582 717.21405 - -91.37801 -51.62582 708.68612 - -96.54059 -51.62582 700.16970 - -101.70317 -51.62582 691.66544 - -106.86575 -51.62582 683.17399 - -106.86575 -51.62582 683.17399 - -112.02834 -51.62582 674.69600 - -117.19092 -51.62582 666.23213 - -122.35350 -51.62582 657.78302 - -127.51608 -51.62582 649.34932 - -132.67867 -51.62582 640.93169 - -132.67866 -51.62583 640.93169 - -139.90628 -51.62583 629.17523 - -147.13390 -51.62583 617.45332 - -154.36151 -51.62583 605.76773 - -161.58913 -51.62583 594.12026 - -168.81675 -51.62583 582.51269 - -168.81674 -51.62590 582.51269 - -175.52810 -51.62590 571.77151 - -182.23947 -51.62590 561.06771 - -188.95084 -51.62590 550.40270 - -195.66221 -51.62590 539.77792 - -202.37357 -51.62590 529.19480 - -202.37365 -51.62730 529.19480 - -209.08520 -51.62730 518.65476 - -215.79675 -51.62730 508.15924 - -222.50830 -51.62730 497.70966 - -229.21985 -51.62730 487.30745 - -235.93140 -51.62730 476.95405 - -235.93140 -51.62730 476.95405 - -243.64968 -51.62730 465.10981 - -251.36796 -51.62730 453.33418 - -259.08624 -51.62730 441.62933 - -266.80452 -51.62730 429.99742 - -274.52281 -51.62730 418.44064 - -274.52281 -51.62731 418.44064 - -282.24109 -51.62731 406.96115 - -289.95937 -51.62731 395.56112 - -297.67765 -51.62731 384.24274 - -305.39594 -51.62731 373.00817 - -313.11422 -51.62731 361.85959 - -313.11422 -51.62730 361.85959 - -320.83250 -51.62730 350.79917 - -328.55079 -51.62730 339.82909 - -336.26907 -51.62730 328.95151 - -343.98735 -51.62730 318.16861 - -351.70563 -51.62730 307.48256 - -351.70557 -51.62722 307.48256 - -359.42384 -51.62722 296.89554 - -367.14211 -51.62722 286.40972 - -374.86038 -51.62722 276.02727 - -382.57865 -51.62722 265.75037 - -390.29691 -51.62722 255.58119 - -390.29695 -51.62753 255.58119 - -390.40015 -51.54875 255.44589 - -390.50310 -51.39275 255.31060 - -390.60572 -51.23675 255.17534 - -390.70804 -51.08075 255.04010 - -390.81005 -50.92475 254.90487 - -390.81005 -50.92475 254.90487 - -390.91174 -50.76875 254.76967 - -391.01312 -50.61275 254.63449 - -391.11419 -50.45675 254.49932 - -391.21495 -50.30075 254.36418 - -391.31540 -50.14475 254.22905 - -391.31539 -50.14477 254.22905 - -393.08725 -48.75480 251.80017 - -394.84242 -48.75479 249.37771 - -396.59759 -48.75479 246.96170 - -398.35276 -48.75478 244.55216 - -400.10794 -48.75477 242.14912 - -400.10793 40.14164 242.14912 - -395.29094 40.14166 234.18602 - -390.47393 40.14169 226.29463 - -385.65693 40.14171 218.47407 - -380.83992 40.14174 210.72347 - -376.02291 40.14176 203.04195 - -376.02288 40.14110 203.04195 - -373.66112 38.57317 199.22683 - -371.39555 36.93297 195.42865 - -369.23071 35.21590 191.64732 - -367.17112 33.42489 187.88274 - -365.22099 31.57042 184.13481 - -365.22174 31.57399 184.13481 - -362.04043 32.40591 177.92503 - -358.70406 34.33269 171.76087 - -355.17165 36.32674 165.64187 - -351.43649 38.38754 159.56759 - -347.49221 40.50623 153.53759 - -347.49040 40.52460 153.53759 - -344.08615 42.54268 148.62570 - -340.50945 44.70554 143.74295 - -336.75258 46.93653 138.88904 - -332.81019 49.22849 134.06363 - -328.67797 51.56218 129.26642 - -328.67807 51.56362 129.26642 - -323.44906 53.04428 123.45383 - -318.06275 54.71880 117.68199 - -312.50370 56.44139 111.95020 - -306.78174 57.94583 106.25775 - -300.92402 59.16567 100.60396 - -300.92559 59.17902 100.60396 - -292.50695 61.25843 92.75228 - -283.72069 64.46371 84.97285 - -274.40019 68.88873 77.26335 - -264.37547 74.52191 69.62145 - -253.49509 80.99017 62.04483 - -253.53507 81.36382 62.04483 - -241.65624 88.33790 54.53104 - -228.80032 95.31492 47.07695 - -214.97082 102.23285 39.67913 - -200.18157 109.01262 32.33417 - -184.46192 115.47871 25.03866 - -184.61654 116.57234 25.03866 - -167.83896 123.05932 17.78893 - -150.16149 129.51290 10.58061 - -131.73713 132.49972 3.40923 - -113.31309 130.09667 -3.72964 - -95.47105 124.24388 -10.84047 - -95.15130 123.75430 -10.84047 - -78.42261 115.01603 -17.92796 - -62.99408 105.26482 -24.99612 - -48.98415 94.74891 -32.04841 - -36.50045 83.46028 -39.08825 - -25.64690 71.49376 -46.11911 - -25.71773 70.86880 -46.11911 - -16.69466 57.94384 -53.14416 - -9.52120 44.42423 -60.16513 - -4.28668 30.24451 -67.18331 - -1.08361 15.40332 -74.19997 - 0.00002 0.00012 -81.21640 + 0.00000 0.00000 1112.44224 + 0.00000 0.00000 1104.68735 + 0.00000 0.00000 1096.93246 + 0.00000 0.00000 1089.17756 + 0.00000 0.00000 1081.42267 + 0.00000 0.00000 1073.66778 + 0.00000 0.00000 1073.66778 + 0.00000 0.00000 1065.91289 + 0.00000 0.00000 1058.15799 + 0.00000 0.00000 1050.40310 + 0.00000 0.00000 1042.64821 + 0.00000 0.00000 1034.89332 + 0.00000 0.00000 1034.89332 + 0.00000 0.00000 1024.55346 + 0.00000 0.00000 1014.21360 + 0.00000 0.00000 1003.87375 + 0.00000 0.00000 993.53389 + 0.00000 0.00000 983.19403 + 0.00000 0.00000 983.19403 + 0.00000 0.00000 974.57749 + 0.00000 0.00000 965.96094 + 0.00000 0.00000 957.34439 + 0.00000 0.00000 948.72785 + 0.00000 0.00000 940.11130 + 0.00000 0.00000 940.11130 + 0.00000 0.00000 931.49475 + 0.00000 0.00000 922.87820 + 0.00000 0.00000 914.26166 + 0.00000 0.00000 905.64511 + 0.00000 0.00000 897.02856 + 0.00000 0.00000 897.02856 + 0.00000 0.00000 889.61833 + 0.00000 0.00000 882.20810 + 0.00000 0.00000 874.79787 + 0.00000 0.00000 867.38764 + 0.00000 0.00000 859.97741 + 0.00000 -51.41814 859.97741 + -5.86167 -51.41814 850.15471 + -11.72334 -51.41814 840.33296 + -17.58500 -51.41814 830.51314 + -23.44667 -51.41814 820.69619 + -29.30834 -51.41814 810.88308 + -29.30834 -51.41814 810.88308 + -29.89451 -51.41814 809.90202 + -30.48067 -51.41814 808.92101 + -31.06684 -51.41814 807.94004 + -31.65301 -51.41814 806.95913 + -32.23917 -51.41814 805.97827 + -32.23919 -51.41769 805.97827 + -35.76644 -51.41769 800.07704 + -39.29369 -51.41769 794.17794 + -42.82095 -51.41769 788.28116 + -46.34820 -51.41769 782.38692 + -49.87545 -51.41769 776.49543 + -49.87545 -51.41768 776.49543 + -50.90381 -51.41768 774.77834 + -51.93216 -51.41768 773.06151 + -52.96051 -51.41768 771.34494 + -53.98887 -51.41768 769.62864 + -55.01722 -51.41768 767.91261 + -55.01722 -51.41768 767.91261 + -59.13064 -51.41768 761.05131 + -63.24405 -51.41768 754.19477 + -67.35746 -51.41768 747.34334 + -71.47088 -51.41768 740.49734 + -75.58429 -51.41768 733.65710 + -75.58429 -51.41768 733.65710 + -76.61265 -51.41768 731.94798 + -77.64100 -51.41768 730.23924 + -78.66935 -51.41768 728.53090 + -79.69771 -51.41768 726.82295 + -80.72606 -51.41768 725.11540 + -80.72606 -51.41768 725.11540 + -85.86783 -51.41768 716.58388 + -91.00960 -51.41768 708.06318 + -96.15136 -51.41768 699.55393 + -101.29313 -51.41768 691.05681 + -106.43490 -51.41768 682.57244 + -106.43490 -51.41768 682.57244 + -111.57667 -51.41768 674.10148 + -116.71844 -51.41768 665.64458 + -121.86021 -51.41768 657.20238 + -127.00197 -51.41768 648.77553 + -132.14374 -51.41768 640.36468 + -132.14374 -51.41769 640.36468 + -139.34222 -51.41769 628.61761 + -146.54070 -51.41769 616.90493 + -153.73917 -51.41769 605.22845 + -160.93765 -51.41769 593.58992 + -168.13613 -51.41769 581.99113 + -168.13612 -51.41776 581.99113 + -174.82043 -51.41776 571.25796 + -181.50473 -51.41776 560.56201 + -188.18904 -51.41776 549.90470 + -194.87335 -51.41776 539.28746 + -201.55766 -51.41776 528.71171 + -201.55774 -51.41915 528.71171 + -208.24223 -51.41915 518.17886 + -214.92672 -51.41915 507.69036 + -221.61121 -51.41915 497.24761 + -228.29570 -51.41915 486.85204 + -234.98018 -51.41915 476.50507 + -234.98018 -51.41915 476.50507 + -242.66735 -51.41915 464.66800 + -250.35451 -51.41915 452.89925 + -258.04167 -51.41915 441.20099 + -265.72884 -51.41915 429.57538 + -273.41600 -51.41915 418.02460 + -273.41600 -51.41916 418.02460 + -281.10317 -51.41916 406.55079 + -288.79033 -51.41916 395.15614 + -296.47749 -51.41916 383.84279 + -304.16466 -51.41916 372.61292 + -311.85182 -51.41916 361.46870 + -311.85182 -51.41915 361.46870 + -319.53899 -51.41915 350.41227 + -327.22615 -51.41915 339.44582 + -334.91331 -51.41915 328.57150 + -342.60048 -51.41915 317.79148 + -350.28764 -51.41915 307.10792 + -350.28758 -51.41903 307.10792 + -357.97472 -51.41903 296.52299 + -365.66187 -51.41903 286.03885 + -373.34901 -51.41903 275.65767 + -381.03616 -51.41903 265.38160 + -388.72330 -51.41903 255.21283 + -388.72334 -51.41929 255.21283 + -388.82612 -51.34051 255.07753 + -388.92865 -51.18451 254.94224 + -389.03086 -51.02850 254.80698 + -389.13276 -50.87250 254.67174 + -389.23435 -50.71650 254.53652 + -389.23435 -50.71658 254.53652 + -389.33563 -50.56058 254.40132 + -389.43659 -50.40458 254.26614 + -389.53725 -50.24858 254.13097 + -389.63759 -50.09258 253.99583 + -389.73762 -49.93658 253.86071 + -389.73762 -49.93658 253.86071 + -391.50197 -48.54661 251.43185 + -393.24965 -48.54660 249.00938 + -394.99733 -48.54659 246.59333 + -396.74501 -48.54659 244.18373 + -398.49268 -48.54658 241.78060 + -398.49268 37.66459 241.78060 + -393.97293 37.66462 233.81703 + -389.45317 37.66464 225.92493 + -384.93341 37.66467 218.10347 + -380.41365 37.66469 210.35184 + -375.89389 37.66471 202.66923 + -375.89386 37.66406 202.66923 + -373.68088 36.09084 198.85354 + -371.56441 34.44485 195.05479 + -369.54904 32.72148 191.27291 + -367.63933 30.92365 187.50778 + -365.83949 29.06183 183.75933 + -365.83958 29.06086 183.75933 + -362.90356 30.05642 177.54876 + -359.78733 32.28088 171.38390 + -356.44481 34.58254 165.26435 + -352.86827 36.96088 159.18967 + -349.05045 39.40447 153.15945 + -349.04945 39.42719 153.15945 + -345.72979 41.56540 148.24753 + -342.22962 43.81710 143.36489 + -338.54174 46.14370 138.51123 + -334.66022 48.53746 133.68623 + -330.58028 50.97952 128.88957 + -330.58037 50.98090 128.88957 + -325.40189 52.61319 123.07789 + -320.05224 54.41031 117.30720 + -314.52085 56.17680 111.57680 + -308.82493 57.70174 105.88601 + -302.98732 59.02207 100.23413 + -302.98894 59.03542 100.23413 + -294.60033 60.97160 92.38556 + -285.86473 64.02549 84.60975 + -276.61666 68.29098 76.90441 + -266.68726 73.75653 69.26722 + -255.92432 80.09021 61.69587 + -255.96475 80.46657 61.69587 + -244.21063 87.50865 54.18798 + -231.44863 94.84424 46.74041 + -217.65088 102.25209 39.34975 + -202.82389 109.53460 32.01260 + -186.99525 116.51571 24.72555 + -187.15033 117.60236 24.72555 + -170.19680 124.50543 17.48491 + -152.29944 131.18078 10.28626 + -133.65192 133.87618 3.12509 + -115.06286 131.24099 -4.00310 + -97.04173 125.66388 -11.10282 + -96.70733 125.10130 -11.10282 + -79.74926 116.78500 -18.17881 + -64.07832 106.95162 -25.23515 + -49.84047 96.31105 -32.27535 + -37.14925 84.85579 -39.30289 + -26.11410 72.68815 -46.32128 + -26.20281 72.13615 -46.32128 + -17.01717 59.00227 -53.33375 + -9.71019 45.26812 -60.34207 + -4.37435 30.84275 -67.34754 + -1.10654 15.72483 -74.35146 + 0.00133 0.02243 -81.35515 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -38137,30 +38273,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 70.13300 35.53000 63.98624 62.50859 -10.88000 70.13300 35.53000 67.29371 62.72880 -10.94000 70.13300 35.53000 70.78971 62.96155 @@ -38235,7 +38371,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -38254,60 +38390,60 @@ Lambda passive -10.55000 78.00560 78.00560 78.00560 1.00000 1.00000 1.00000 -10.67000 78.00680 78.00680 78.00680 1.00000 1.00000 1.00000 -10.79000 78.00800 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 11.10800 52.76806 3.51315 0.54849 0.31156 4.67974 - -10.85000 11.77940 55.12455 3.67003 0.53855 0.31156 4.67974 - -10.91000 12.45080 58.26653 3.87922 0.53258 0.31156 4.67974 - -10.97000 13.12220 61.40850 4.08840 0.52721 0.31156 4.67974 - -11.03000 13.79360 64.55048 4.29758 0.52237 0.31156 4.67974 - -11.09000 14.46500 66.90697 4.45447 0.51798 0.31156 4.67974 - -11.09000 14.46500 46.13762 2.27872 0.73442 0.15608 3.16017 - -11.19000 15.00400 46.33990 2.51462 0.73020 0.16760 3.08850 - -11.29000 15.54300 46.84564 2.81513 0.72627 0.18112 3.01394 - -11.39000 16.08200 47.52254 3.10980 0.72260 0.19337 2.95501 - -11.49000 16.62100 48.30376 3.40232 0.71917 0.20470 2.90619 - -11.59000 17.16000 48.93443 3.62107 0.71596 0.21269 2.87423 - -11.59000 17.16000 49.33272 3.75360 0.80163 0.21734 2.85647 - -11.67200 17.60198 49.88627 3.93260 0.69740 0.22342 2.83413 - -11.75400 18.04396 50.64403 4.17112 0.69398 0.23116 2.80670 - -11.83600 18.48594 51.42100 4.40953 0.69073 0.23853 2.78163 - -11.91800 18.92792 52.21334 4.64788 0.68762 0.24556 2.75854 - -12.00000 19.36990 52.81559 4.82661 0.68466 0.25061 2.74233 - -12.00000 19.36990 36.01105 8.96400 0.71964 0.48020 1.92911 - -12.10000 16.55890 32.52429 7.58646 0.70236 0.45815 1.96416 - -12.20000 13.74790 27.90583 5.74972 0.67801 0.41823 2.02982 - -12.30000 10.93690 23.31696 3.91296 0.64113 0.35778 2.13195 - -12.40000 8.12590 18.75129 2.07618 0.57875 0.25550 2.30760 - -12.50000 5.31490 15.33874 0.69859 0.79040 0.11609 2.54896 - -12.50000 5.31490 25.72629 1.82917 0.55286 0.32252 4.53602 - -12.64000 6.74150 30.44036 2.17477 0.55286 0.32259 4.51537 - -12.78000 8.16810 36.66838 2.63588 0.55286 0.32270 4.48922 - -12.92000 9.59470 42.84278 3.09738 0.55286 0.32282 4.46525 - -13.06000 11.02130 48.98060 3.55926 0.55286 0.32294 4.44418 - -13.20000 12.44790 53.56913 3.90589 0.55286 0.32303 4.43040 - -13.20000 12.44790 56.62322 4.13708 0.55286 0.32309 4.42212 - -13.34000 13.87450 61.20037 4.48401 0.55286 0.32318 4.41100 - -13.48000 15.30110 67.30083 4.94680 0.55286 0.32330 4.39843 - -13.62000 16.72770 73.40253 5.40979 0.55286 0.32340 4.38808 - -13.76000 18.15430 79.50848 5.87295 0.55286 0.32350 4.37959 - -13.90000 19.58090 84.09155 6.22039 0.55286 0.32357 4.37424 - -13.90000 19.58090 87.14909 6.45206 0.55286 0.32361 4.37110 - -14.04000 21.00750 91.73877 6.79959 0.55286 0.32367 4.36695 - -14.18000 22.43410 97.86395 7.26300 0.55286 0.32375 4.36229 - -14.32000 23.86070 103.99563 7.72645 0.44038 0.32382 4.35845 - -14.46000 25.28730 110.13339 8.18991 0.44668 0.32387 4.35528 - -14.60000 26.71390 114.74023 8.53750 0.45231 0.32391 4.35327 + -10.79000 11.10800 52.76806 3.51315 0.33538 0.31156 4.67974 + -10.85000 11.77940 55.12455 3.67003 0.34544 0.31156 4.67974 + -10.91000 12.45080 58.26653 3.87922 0.35442 0.31156 4.67974 + -10.97000 13.12220 61.40850 4.08840 0.36248 0.31156 4.67974 + -11.03000 13.79360 64.55048 4.29758 0.36976 0.31156 4.67974 + -11.09000 14.46500 66.90697 4.45447 0.37636 0.31156 4.67974 + -11.09000 14.46500 46.13762 2.27872 0.59280 0.15608 3.16017 + -11.19000 15.00400 46.33990 2.51462 0.59663 0.16760 3.08850 + -11.29000 15.54300 46.84564 2.81513 0.60019 0.18112 3.01394 + -11.39000 16.08200 47.52254 3.10980 0.60351 0.19337 2.95501 + -11.49000 16.62100 48.30376 3.40232 0.60661 0.20470 2.90619 + -11.59000 17.16000 48.93443 3.62107 0.60952 0.21269 2.87423 + -11.59000 17.16000 49.33272 3.75360 0.60952 0.21734 2.85647 + -11.67200 17.60198 49.88627 3.93260 0.61178 0.22342 2.83413 + -11.75400 18.04396 50.64403 4.17112 0.61392 0.23116 2.80670 + -11.83600 18.48594 51.42100 4.40953 0.61596 0.23853 2.78163 + -11.91800 18.92792 52.21334 4.64788 0.61791 0.24556 2.75854 + -12.00000 19.36990 52.81559 4.82661 0.61977 0.25061 2.74233 + -12.00000 19.36990 36.01105 8.96400 0.65475 0.48020 1.92911 + -12.10000 16.55890 32.52429 7.58646 0.64297 0.45815 1.96416 + -12.20000 13.74790 27.90583 5.74972 0.60141 0.41823 2.02982 + -12.30000 10.93690 23.31696 3.91296 0.53848 0.35778 2.13195 + -12.40000 8.12590 18.75129 2.07618 0.43202 0.25550 2.30760 + -12.50000 5.31490 15.33874 0.69859 0.21294 0.11609 2.54896 + -12.50000 5.31490 25.72629 1.82917 0.32252 0.32252 4.53602 + -12.64000 6.74150 30.44036 2.17477 0.32259 0.32259 4.51537 + -12.78000 8.16810 36.66838 2.63588 0.32270 0.32270 4.48922 + -12.92000 9.59470 42.84278 3.09738 0.32282 0.32282 4.46525 + -13.06000 11.02130 48.98060 3.55926 0.32294 0.32294 4.44418 + -13.20000 12.44790 53.56913 3.90589 0.32303 0.32303 4.43040 + -13.20000 12.44790 56.62322 4.13708 0.32309 0.32309 4.42212 + -13.34000 13.87450 61.20037 4.48401 0.32318 0.32318 4.41100 + -13.48000 15.30110 67.30083 4.94680 0.32330 0.32330 4.39843 + -13.62000 16.72770 73.40253 5.40979 0.32340 0.32340 4.38808 + -13.76000 18.15430 79.50848 5.87295 0.32350 0.32350 4.37959 + -13.90000 19.58090 84.09155 6.22039 0.32357 0.32357 4.37424 + -13.90000 19.58090 87.14909 6.45206 0.32361 0.32361 4.37110 + -14.04000 21.00750 91.73877 6.79959 0.32367 0.32367 4.36695 + -14.18000 22.43410 97.86395 7.26300 0.32375 0.32375 4.36229 + -14.32000 23.86070 103.99563 7.72645 0.32382 0.32382 4.35845 + -14.46000 25.28730 110.13339 8.18991 0.32387 0.32387 4.35528 + -14.60000 26.71390 114.74023 8.53750 0.32391 0.32391 4.35327 -14.60000 26.71390 117.81320 8.76923 0.32394 0.32394 4.35208 - -14.74000 28.14050 122.42506 9.11681 0.48097 0.32397 4.35049 - -14.88000 29.56710 128.57788 9.58022 0.48441 0.32402 4.34868 - -15.02000 30.99370 134.73469 10.04361 0.48755 0.32405 4.34716 - -15.16000 32.42030 140.89501 10.50697 0.49040 0.32409 4.34589 - -15.30000 33.84690 145.51722 10.85447 0.49302 0.32411 4.34506 - -15.30000 33.84690 148.59964 11.08612 0.49302 0.32412 4.34457 - -15.44000 35.27350 153.22457 11.43358 0.49513 0.32414 4.34390 - -15.58000 36.70010 159.39310 11.89684 0.49707 0.32416 4.34312 - -15.72000 38.12670 165.56374 12.36006 0.49888 0.32418 4.34246 - -15.86000 39.55330 171.73623 12.82325 0.50055 0.32420 4.34189 - -16.00000 40.97990 176.36663 13.17062 0.50210 0.32421 4.34152 + -14.74000 28.14050 122.42506 9.11681 0.32397 0.32397 4.35049 + -14.88000 29.56710 128.57788 9.58022 0.32402 0.32402 4.34868 + -15.02000 30.99370 134.73469 10.04361 0.32405 0.32405 4.34716 + -15.16000 32.42030 140.89501 10.50697 0.32409 0.32409 4.34589 + -15.30000 33.84690 145.51722 10.85447 0.32700 0.32411 4.34506 + -15.30000 33.84690 148.59964 11.08612 0.32700 0.32412 4.34457 + -15.44000 35.27350 153.22457 11.43358 0.33278 0.32414 4.34390 + -15.58000 36.70010 159.39310 11.89684 0.33812 0.32416 4.34312 + -15.72000 38.12670 165.56374 12.36006 0.34306 0.32418 4.34246 + -15.86000 39.55330 171.73623 12.82325 0.34764 0.32420 4.34189 + -16.00000 40.97990 176.36663 13.17062 0.35190 0.32421 4.34152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -38453,9 +38589,9 @@ Status character 0.78000 0.00000 0.78000 0.78000 302 100 P 78.00002 0.00000 78.00002 78.00002 302 100 P 78.00004 0.00000 78.00004 78.00004 302 100 P - 78.00012 0.00000 78.00012 78.00012 302 100 P + 78.00012 0.00000 78.00012 78.00006 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P + 78.00010 0.00000 78.00010 78.00009 302 100 P 78.00011 0.00000 78.00011 78.00011 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00014 0.00000 78.00014 78.00014 302 100 P @@ -38474,60 +38610,60 @@ Status character 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00680 0.00000 78.00680 78.00680 1 100 A 78.00770 0.00000 78.00770 78.00770 1 100 A - 3.51315 66.90000 52.76806 6.18466 1 0 A - 3.67003 67.48860 55.12455 6.34384 1 0 A - 3.87922 68.07720 58.26653 6.63102 1 0 A - 4.08840 68.66580 61.40850 6.91820 1 0 A - 4.29758 69.25440 64.55048 7.20539 1 0 A - 4.45447 69.84300 66.90697 7.40562 1 0 A - 8.79986 69.84300 46.13762 10.72238 110 0 1 - 30.25274 70.82400 46.33990 10.95590 220 65 2 - 31.26856 71.80500 46.84564 11.28839 220 67 2 - 32.28935 72.78600 47.52254 11.62087 220 68 2 - 33.31469 73.76700 48.30376 11.95335 220 69 2 - 34.07881 74.74800 48.93443 12.18936 220 70 2 - 36.04131 74.74800 49.33272 13.84451 220 73 2 - 34.90986 75.55242 49.88627 12.27561 220 70 2 - 35.73465 76.35684 50.64403 12.52217 220 71 2 - 36.56153 77.16126 51.42100 12.76873 220 71 2 - 37.39027 77.96568 52.21334 13.01529 220 72 2 - 38.00624 78.77010 52.81559 13.18621 220 72 2 - 25.92249 78.77010 36.01105 13.43370 220 72 2 - 25.97636 82.75110 32.52429 11.63029 220 80 2 - 26.10561 86.73210 27.90583 9.32115 220 94 2 - 22.75610 90.71310 23.31696 7.01201 220 98 2 - 18.25810 94.69410 18.75129 4.70287 220 97 2 - 14.91502 98.67510 15.33874 4.75636 220 97 2 - 23.18398 98.67510 25.72629 3.13558 220 90 2 - 28.49127 100.04850 30.44036 3.72711 220 94 2 - 35.31576 101.42190 36.66838 4.51583 220 96 2 - 42.08273 102.79530 42.84278 5.30454 220 98 2 - 48.80206 104.16870 48.98060 6.09325 220 99 2 - 53.56913 105.54210 53.56913 6.68478 302 100 P - 56.62322 105.54210 56.62322 7.07914 302 100 P - 61.20037 106.91550 61.20037 7.67067 302 100 P - 67.30083 108.28890 67.30083 8.45938 302 100 P - 73.40253 109.66230 73.40253 9.24810 302 100 P - 79.50848 111.03570 79.50848 10.03681 302 100 P - 84.09155 112.40910 84.09155 10.62834 302 100 P - 87.14909 112.40910 87.14909 11.02270 302 100 P - 91.73877 113.78250 91.73877 11.61423 302 100 P - 97.86395 115.15590 97.86395 12.40294 302 100 P - 51.41860 116.52930 103.99563 10.50779 110 49 1 - 30.29877 117.90270 110.13339 11.29533 110 28 1 - 31.01567 119.27610 114.74023 11.92156 110 27 1 - 27.06257 119.27610 117.81320 8.76923 110 23 1 - 32.76610 120.64950 122.42506 13.53461 110 27 1 - 33.45333 122.02290 128.57788 14.32272 110 26 1 - 34.09324 123.39630 134.73469 15.11083 110 25 1 - 34.69632 124.76970 140.89501 15.89893 110 25 1 - 35.16970 126.14310 145.51722 16.51121 110 24 1 - 35.37642 126.14310 148.59964 16.86287 110 24 1 - 36.21056 127.51650 153.22457 17.46486 110 24 1 - 37.67256 128.88990 159.39310 18.24268 110 24 1 - 39.12653 130.26330 165.56374 19.02050 110 24 1 - 40.57609 131.63670 171.73623 19.79832 110 24 1 - 41.90910 133.01010 176.36663 20.39707 110 24 1 + 3.51315 66.90000 52.76806 3.78170 1 0 A + 3.67003 67.48860 55.12455 4.06912 1 0 A + 3.87922 68.07720 58.26653 4.41284 1 0 A + 4.08840 68.66580 61.40850 4.75656 1 0 A + 4.29758 69.25440 64.55048 5.10028 1 0 A + 4.45447 69.84300 66.90697 5.38082 1 0 A + 6.70685 69.84300 46.13762 8.65473 110 0 1 + 30.73935 70.82400 46.33990 8.95177 220 66 2 + 31.82874 71.80500 46.84564 9.32869 220 68 2 + 32.92309 72.78600 47.52254 9.70561 220 69 2 + 34.02199 73.76700 48.30376 10.08253 220 70 2 + 34.82818 74.74800 48.93443 10.37731 220 71 2 + 35.36844 74.74800 49.33272 10.52679 220 72 2 + 36.03232 75.55242 49.88627 10.76852 220 72 2 + 36.94190 76.35684 50.64403 11.07759 220 73 2 + 37.85357 77.16126 51.42100 11.38667 220 74 2 + 38.76712 77.96568 52.21334 11.69574 220 74 2 + 39.44459 78.77010 52.81559 11.93633 220 75 2 + 27.63661 78.77010 36.01105 12.22226 220 77 2 + 27.50895 82.75110 32.52429 10.64687 220 85 2 + 27.25090 86.73210 27.90583 8.26809 220 98 2 + 22.72577 90.71310 23.31696 5.88930 220 97 2 + 18.22637 94.69410 18.75129 3.51052 220 97 2 + 14.88189 98.67510 15.33874 1.28137 220 97 2 + 22.98521 98.67510 25.72629 1.82917 220 89 2 + 28.28082 100.04850 30.44036 2.17477 220 93 2 + 35.09366 101.42190 36.66838 2.63588 220 96 2 + 41.84903 102.79530 42.84278 3.09738 220 98 2 + 48.55683 104.16870 48.98060 3.55926 220 99 2 + 53.56913 105.54210 53.56913 3.90589 302 100 P + 56.62322 105.54210 56.62322 4.13708 302 100 P + 61.20037 106.91550 61.20037 4.48401 302 100 P + 67.30083 108.28890 67.30083 4.94680 302 100 P + 73.40253 109.66230 73.40253 5.40979 302 100 P + 79.50848 111.03570 79.50848 5.87295 302 100 P + 84.09155 112.40910 84.09155 6.22039 302 100 P + 87.14909 112.40910 87.14909 6.45206 302 100 P + 91.73877 113.78250 91.73877 6.79959 302 100 P + 97.86395 115.15590 97.86395 7.26300 302 100 P + 45.22758 116.52930 103.99563 7.72645 110 43 1 + 31.07588 117.90270 110.13339 8.18991 110 28 1 + 31.49147 119.27610 114.74023 8.53750 110 27 1 + 31.66681 119.27610 117.81320 8.76923 110 27 1 + 32.01722 120.64950 122.42506 9.11681 110 26 1 + 32.40158 122.02290 128.57788 9.58022 110 25 1 + 32.74199 123.39630 134.73469 10.04361 110 24 1 + 33.04824 124.76970 140.89501 10.50697 110 23 1 + 33.34238 126.14310 145.51722 10.95123 110 23 1 + 33.51297 126.14310 148.59964 11.18447 110 23 1 + 34.70018 127.51650 153.22457 11.73847 110 23 1 + 36.14712 128.88990 159.39310 12.40909 110 23 1 + 37.58634 130.26330 165.56374 13.07970 110 23 1 + 39.02132 131.63670 171.73623 13.75032 110 23 1 + 40.33978 133.01010 176.36663 14.29543 110 23 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -38542,9 +38678,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 1.195 'Grind' - -11.09 29.749 'Hydrobiaklei' - -12.00 11.351 'Basisveen' - -12.50 172.703 'Eerste zandlaag' + -11.09 30.362 'Hydrobiaklei' + -12.00 11.697 'Basisveen' + -12.50 170.261 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -38561,9 +38697,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.40 'Grind' - -11.09 -5.09 'Hydrobiaklei' + -11.09 -5.19 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -54.22 'Eerste zandlaag' + -12.50 -53.45 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -38673,18 +38809,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 70.13300 35.53000 62.42606 60.94843 -10.88000 70.13300 35.53000 65.73347 61.16863 -10.94000 70.13300 35.53000 69.22941 61.40138 @@ -38766,60 +38902,60 @@ Lambda passive -10.55000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.67000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.79000 78.00780 78.00750 78.00750 1.00000 1.00000 1.00000 - -10.79000 11.10780 52.76713 3.51308 0.53811 0.31156 4.67974 - -10.85000 11.77920 55.12361 3.66997 0.53800 0.31156 4.67974 - -10.91000 12.45060 58.26559 3.87915 0.53790 0.31156 4.67974 - -10.97000 13.12200 61.40757 4.08834 0.53781 0.31156 4.67974 - -11.03000 13.79340 64.54955 4.29752 0.53773 0.31156 4.67974 - -11.09000 14.46480 66.90603 4.45441 0.53765 0.31156 4.67974 - -11.09000 14.46480 46.13720 2.27861 0.75409 0.15607 3.16018 - -11.19000 15.00380 46.33948 2.51451 0.75401 0.16759 3.08852 - -11.29000 15.54280 46.84522 2.81502 0.75394 0.18111 3.01395 - -11.39000 16.08180 47.52212 3.10969 0.75387 0.19337 2.95502 - -11.49000 16.62080 48.30334 3.40222 0.75380 0.20470 2.90620 - -11.59000 17.15980 48.93401 3.62096 0.75374 0.21268 2.87424 - -11.59000 17.15980 49.33230 3.75349 0.75374 0.21734 2.85648 - -11.67200 17.60178 49.88585 3.93249 0.75363 0.22341 2.83414 - -11.75400 18.04376 50.64361 4.17102 0.75353 0.23116 2.80671 - -11.83600 18.48574 51.42059 4.40943 0.75343 0.23853 2.78164 - -11.91800 18.92772 52.21292 4.64777 0.75333 0.24555 2.75854 - -12.00000 19.36970 52.81517 4.82651 0.75324 0.25061 2.74233 - -12.00000 19.36970 36.01071 8.96387 0.78977 0.48020 1.92912 - -12.10000 16.55870 32.52395 7.58633 0.78298 0.45815 1.96416 - -12.20000 13.74770 27.90549 5.74959 0.77603 0.41822 2.02983 - -12.30000 10.93670 23.31663 3.91283 0.76551 0.35777 2.13196 - -12.40000 8.12570 18.75096 2.07605 0.74771 0.25549 2.30761 - -12.50000 5.31470 15.33841 0.69846 0.71107 0.11607 2.54899 - -12.50000 5.31470 25.72539 1.82911 0.47353 0.32252 4.53603 - -12.64000 6.74130 30.43947 2.17470 0.47924 0.32259 4.51537 - -12.78000 8.16790 36.66750 2.63581 0.48296 0.32270 4.48922 - -12.92000 9.59450 42.84191 3.09731 0.48557 0.32282 4.46526 - -13.06000 11.02110 48.97973 3.55919 0.48750 0.32294 4.44418 - -13.20000 12.44770 53.56826 3.90582 0.48899 0.32303 4.43041 - -13.20000 12.44770 56.62235 4.13701 0.60841 0.32309 4.42212 - -13.34000 13.87430 61.19951 4.48395 0.47194 0.32318 4.41100 - -13.48000 15.30090 67.29997 4.94673 0.47377 0.32330 4.39843 - -13.62000 16.72750 73.40166 5.40973 0.47530 0.32340 4.38808 - -13.76000 18.15410 79.50762 5.87288 0.47658 0.32350 4.37960 - -13.90000 19.58070 84.09069 6.22033 0.47768 0.32357 4.37424 - -13.90000 19.58070 87.14823 6.45199 0.47768 0.32361 4.37110 - -14.04000 21.00730 91.73791 6.79952 0.47863 0.32367 4.36695 - -14.18000 22.43390 97.86308 7.26294 0.47946 0.32375 4.36229 - -14.32000 23.86050 103.99476 7.72639 0.48019 0.32382 4.35845 - -14.46000 25.28710 110.13252 8.18985 0.48084 0.32387 4.35528 - -14.60000 26.71370 114.73936 8.53744 0.48141 0.32391 4.35327 - -14.60000 26.71370 117.81233 8.76916 0.48141 0.32394 4.35208 - -14.74000 28.14030 122.42419 9.11674 0.48193 0.32397 4.35049 - -14.88000 29.56690 128.57702 9.58016 0.48240 0.32402 4.34868 - -15.02000 30.99350 134.73382 10.04355 0.48283 0.32405 4.34716 - -15.16000 32.42010 140.89414 10.50691 0.48322 0.32409 4.34589 - -15.30000 33.84670 145.51635 10.85440 0.48357 0.32411 4.34506 - -15.30000 33.84670 148.59877 11.08606 0.48357 0.32412 4.34457 - -15.44000 35.27330 153.22370 11.43352 0.48390 0.32414 4.34390 - -15.58000 36.69990 159.39224 11.89677 0.48420 0.32416 4.34312 - -15.72000 38.12650 165.56288 12.36000 0.48448 0.32418 4.34246 - -15.86000 39.55310 171.73536 12.82319 0.48474 0.32420 4.34189 - -16.00000 40.97970 176.36576 13.17056 0.48498 0.32421 4.34152 + -10.79000 11.10780 52.76713 3.51308 0.32477 0.31156 4.67974 + -10.85000 11.77920 55.12361 3.66997 0.33544 0.31156 4.67974 + -10.91000 12.45060 58.26559 3.87915 0.34495 0.31156 4.67974 + -10.97000 13.12200 61.40757 4.08834 0.35350 0.31156 4.67974 + -11.03000 13.79340 64.54955 4.29752 0.36121 0.31156 4.67974 + -11.09000 14.46480 66.90603 4.45441 0.36821 0.31156 4.67974 + -11.09000 14.46480 46.13720 2.27861 0.58465 0.15607 3.16018 + -11.19000 15.00380 46.33948 2.51451 0.58877 0.16759 3.08852 + -11.29000 15.54280 46.84522 2.81502 0.59260 0.18111 3.01395 + -11.39000 16.08180 47.52212 3.10969 0.59618 0.19337 2.95502 + -11.49000 16.62080 48.30334 3.40222 0.59952 0.20470 2.90620 + -11.59000 17.15980 48.93401 3.62096 0.60266 0.21268 2.87424 + -11.59000 17.15980 49.33230 3.75349 0.60266 0.21734 2.85648 + -11.67200 17.60178 49.88585 3.93249 0.60508 0.22341 2.83414 + -11.75400 18.04376 50.64361 4.17102 0.60739 0.23116 2.80671 + -11.83600 18.48574 51.42059 4.40943 0.60959 0.23853 2.78164 + -11.91800 18.92772 52.21292 4.64777 0.61168 0.24555 2.75854 + -12.00000 19.36970 52.81517 4.82651 0.61368 0.25061 2.74233 + -12.00000 19.36970 36.01071 8.96387 0.64866 0.48020 1.92912 + -12.10000 16.55870 32.52395 7.58633 0.63552 0.45815 1.96416 + -12.20000 13.74770 27.90549 5.74959 0.59244 0.41822 2.02983 + -12.30000 10.93670 23.31663 3.91283 0.52720 0.35777 2.13196 + -12.40000 8.12570 18.75096 2.07605 0.41683 0.25549 2.30761 + -12.50000 5.31470 15.33841 0.69846 0.18971 0.11607 2.54899 + -12.50000 5.31470 25.72539 1.82911 0.32252 0.32252 4.53603 + -12.64000 6.74130 30.43947 2.17470 0.32259 0.32259 4.51537 + -12.78000 8.16790 36.66750 2.63581 0.32270 0.32270 4.48922 + -12.92000 9.59450 42.84191 3.09731 0.32282 0.32282 4.46526 + -13.06000 11.02110 48.97973 3.55919 0.32294 0.32294 4.44418 + -13.20000 12.44770 53.56826 3.90582 0.32303 0.32303 4.43041 + -13.20000 12.44770 56.62235 4.13701 0.32309 0.32309 4.42212 + -13.34000 13.87430 61.19951 4.48395 0.32318 0.32318 4.41100 + -13.48000 15.30090 67.29997 4.94673 0.32330 0.32330 4.39843 + -13.62000 16.72750 73.40166 5.40973 0.32340 0.32340 4.38808 + -13.76000 18.15410 79.50762 5.87288 0.32350 0.32350 4.37960 + -13.90000 19.58070 84.09069 6.22033 0.32357 0.32357 4.37424 + -13.90000 19.58070 87.14823 6.45199 0.32361 0.32361 4.37110 + -14.04000 21.00730 91.73791 6.79952 0.32367 0.32367 4.36695 + -14.18000 22.43390 97.86308 7.26294 0.32375 0.32375 4.36229 + -14.32000 23.86050 103.99476 7.72639 0.32382 0.32382 4.35845 + -14.46000 25.28710 110.13252 8.18985 0.32387 0.32387 4.35528 + -14.60000 26.71370 114.73936 8.53744 0.32391 0.32391 4.35327 + -14.60000 26.71370 117.81233 8.76916 0.32394 0.32394 4.35208 + -14.74000 28.14030 122.42419 9.11674 0.32397 0.32397 4.35049 + -14.88000 29.56690 128.57702 9.58016 0.32402 0.32402 4.34868 + -15.02000 30.99350 134.73382 10.04355 0.32405 0.32405 4.34716 + -15.16000 32.42010 140.89414 10.50691 0.32409 0.32409 4.34589 + -15.30000 33.84670 145.51635 10.85440 0.32445 0.32411 4.34506 + -15.30000 33.84670 148.59877 11.08606 0.32445 0.32412 4.34457 + -15.44000 35.27330 153.22370 11.43352 0.33034 0.32414 4.34390 + -15.58000 36.69990 159.39224 11.89677 0.33577 0.32416 4.34312 + -15.72000 38.12650 165.56288 12.36000 0.34080 0.32418 4.34246 + -15.86000 39.55310 171.73536 12.82319 0.34546 0.32420 4.34189 + -16.00000 40.97970 176.36576 13.17056 0.34980 0.32421 4.34152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -38986,60 +39122,60 @@ Status character 78.00540 0.00000 78.00540 78.00540 302 100 P 78.00660 0.00000 78.00660 78.00660 302 100 P 78.00750 0.00000 78.00750 78.00750 302 100 P - 29.09403 66.90000 52.76713 6.06759 220 55 2 - 30.35365 67.48860 55.12361 6.33722 220 55 2 - 31.86892 68.07720 58.26559 6.69717 220 55 2 - 33.33430 68.66580 61.40757 7.05712 220 54 2 - 34.75183 69.25440 64.54955 7.41707 220 54 2 - 35.81595 69.84300 66.90603 7.68677 220 54 2 - 11.09176 69.84300 46.13720 11.00944 110 24 1 - 11.32248 70.82400 46.33948 11.31308 110 24 1 - 11.66329 71.80500 46.84522 11.71833 110 0 1 - 12.01360 72.78600 47.52212 12.12358 110 0 1 - 12.37443 73.76700 48.30334 12.52884 110 0 1 - 12.64521 74.74800 48.93401 12.83252 110 0 1 - 12.77896 74.74800 49.33230 13.01737 110 0 1 - 8.95085 75.55242 49.88585 13.26528 110 0 1 - 8.94102 76.35684 50.64361 13.59648 110 0 1 - 8.94073 77.16126 51.42059 13.92767 110 0 1 - 9.10948 77.96568 52.21292 14.25886 110 0 1 - 9.36791 78.77010 52.81517 14.50683 110 0 1 - 11.94756 78.77010 36.01071 14.74262 110 0 1 - 10.33805 82.75110 32.52395 12.96518 110 0 1 - 8.25362 86.73210 27.90549 10.66868 110 0 1 - 6.15626 90.71310 23.31663 8.37217 110 0 1 - 4.76915 94.69410 18.75096 6.07566 110 0 1 - 4.00704 98.67510 15.33841 4.27886 110 0 1 - 11.99835 98.67510 25.72539 2.68558 110 47 1 - 9.97105 100.04850 30.43947 3.23071 110 33 1 - 8.04629 101.42190 36.66750 3.94474 110 22 1 - 6.13753 102.79530 42.84191 4.65876 110 14 1 - 4.27334 104.16870 48.97973 5.37278 110 0 1 - 5.69412 105.54210 53.56826 5.91241 110 0 1 - 6.89843 105.54210 56.62235 7.79026 110 0 1 - 11.29546 106.91550 61.19951 6.54778 110 18 1 - 17.53405 108.28890 67.29997 7.24917 110 26 1 - 24.34169 109.66230 73.40166 7.95056 110 33 1 - 31.71539 111.03570 79.50762 8.65196 110 40 1 - 39.51200 112.40910 84.09069 9.18299 110 47 1 - 39.78393 112.40910 87.14823 9.52372 110 46 1 - 46.43283 113.78250 91.73791 10.05474 220 51 2 - 50.97586 115.15590 97.86308 10.75614 220 52 2 - 55.63797 116.52930 103.99476 11.45753 220 54 2 - 60.40866 117.90270 110.13252 12.15892 220 55 2 - 84.51705 119.27610 114.73936 12.68862 220 74 2 - 84.95845 119.27610 117.81233 13.03201 220 72 2 - 99.70261 120.64950 122.42419 13.56171 220 81 2 - 105.81987 122.02290 128.57702 14.26310 220 82 2 - 111.95402 123.39630 134.73382 14.96450 220 83 2 - 118.10168 124.76970 140.89414 15.66589 220 84 2 - 122.71463 126.14310 145.51635 16.19482 220 84 2 - 125.80452 126.14310 148.59877 16.53975 220 85 2 - 130.42480 127.51650 153.22370 17.06867 220 85 2 - 136.59564 128.88990 159.39224 17.77007 220 86 2 - 142.77077 130.26330 165.56288 18.47146 220 86 2 - 148.94892 131.63670 171.73536 19.17285 220 87 2 - 153.58198 133.01010 176.36576 19.70128 220 87 2 + 29.17778 66.90000 52.76713 3.66196 220 55 2 + 30.44586 67.48860 55.12361 3.95117 220 55 2 + 31.96969 68.07720 58.26559 4.29489 220 55 2 + 33.44369 68.66580 61.40757 4.63860 220 54 2 + 34.86991 69.25440 64.54955 4.98232 220 54 2 + 35.94277 69.84300 66.90603 5.26424 220 54 2 + 8.65340 69.84300 46.13720 8.53563 110 19 1 + 8.88170 70.82400 46.33948 8.83377 110 19 1 + 9.19707 71.80500 46.84522 9.21069 110 0 1 + 9.52171 72.78600 47.52212 9.58761 110 0 1 + 9.85662 73.76700 48.30334 9.96453 110 0 1 + 10.12157 74.74800 48.93401 10.26024 110 0 1 + 10.21826 74.74800 49.33230 10.40804 110 0 1 + 9.03098 75.55242 49.88585 10.65052 110 0 1 + 9.02365 76.35684 50.64361 10.95960 110 0 1 + 9.02564 77.16126 51.42059 11.26867 110 0 1 + 9.21065 77.96568 52.21292 11.57774 110 0 1 + 9.43850 78.77010 52.81517 11.81901 110 0 1 + 12.05181 78.77010 36.01071 12.10853 110 0 1 + 10.44804 82.75110 32.52395 10.52341 110 0 1 + 8.36929 86.73210 27.90549 8.14463 110 30 1 + 6.27758 90.71310 23.31663 5.76584 110 27 1 + 4.17575 94.69410 18.75096 3.38705 110 22 1 + 2.52585 98.67510 15.33841 1.14159 110 16 1 + 12.79341 98.67510 25.72539 1.82911 110 50 1 + 10.81286 100.04850 30.43947 2.17470 110 36 1 + 8.93470 101.42190 36.66750 2.63581 110 24 1 + 7.07233 102.79530 42.84191 3.09731 110 17 1 + 5.25428 104.16870 48.97973 3.55919 110 11 1 + 6.39055 105.54210 53.56826 3.90582 110 12 1 + 7.59332 105.54210 56.62235 4.13701 110 13 1 + 9.62917 106.91550 61.19951 4.48395 110 16 1 + 14.07788 108.28890 67.29997 4.94673 110 21 1 + 20.79895 109.66230 73.40166 5.40973 110 28 1 + 28.07620 111.03570 79.50762 5.87288 110 35 1 + 35.79373 112.40910 84.09069 6.22033 110 43 1 + 36.01065 112.40910 87.14823 6.45199 110 41 1 + 44.26194 113.78250 91.73791 6.79952 110 48 1 + 49.97866 115.15590 97.86308 7.26294 220 51 2 + 54.60706 116.52930 103.99476 7.72639 220 53 2 + 59.34211 117.90270 110.13252 8.18985 220 54 2 + 82.89816 119.27610 114.73936 8.53744 220 72 2 + 83.10050 119.27610 117.81233 8.76916 220 71 2 + 99.38781 120.64950 122.42419 9.11674 220 81 2 + 105.50787 122.02290 128.57702 9.58016 220 82 2 + 111.64395 123.39630 134.73382 10.04355 220 83 2 + 117.79284 124.76970 140.89414 10.50691 220 84 2 + 122.42112 126.14310 145.51635 10.86578 220 84 2 + 125.50430 126.14310 148.59877 11.09721 220 84 2 + 130.33560 127.51650 153.22370 11.65211 220 85 2 + 136.71387 128.88990 159.39224 12.32273 220 86 2 + 143.09628 130.26330 165.56288 12.99335 220 86 2 + 149.48163 131.63670 171.73536 13.66396 220 87 2 + 154.19955 133.01010 176.36576 14.20983 220 87 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -39053,10 +39189,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 9.766 'Grind' - -11.09 9.780 'Hydrobiaklei' - -12.00 3.749 'Basisveen' - -12.50 232.235 'Eerste zandlaag' + -10.79 9.797 'Grind' + -11.09 8.466 'Hydrobiaklei' + -12.00 3.656 'Basisveen' + -12.50 229.622 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -39072,10 +39208,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 3.23 'Grind' - -11.09 1.67 'Hydrobiaklei' + -10.79 3.24 'Grind' + -11.09 1.45 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 72.91 'Eerste zandlaag' + -12.50 72.09 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -39315,8 +39451,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 443.88205 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 726.20757 10000000.000 1 1 1 'Dek' + -10.19000 446.32362 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 726.01924 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -39377,10 +39513,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 71.42 : Percentage mobilized resistance left - 51.55 : Percentage mobilized resistance right - 348.81 : Effective left - 253.25 : Effective right + 70.81 : Percentage mobilized resistance left + 51.41 : Percentage mobilized resistance right + 345.85 : Effective left + 252.58 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 488.40 : Max effective resistance left @@ -39389,8 +39525,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 87.45 : Vertical force left - 52.42 : Vertical force right + 86.73 : Vertical force left + 52.01 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -39399,17 +39535,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --52.42 : Active force -87.45 : Passive force --52.42 : Plugged active force -87.45 : Plugged passive force +-52.01 : Active force +86.73 : Passive force +-52.01 : Plugged active force +86.73 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 38.46 : Factor on resistance 1162.15 : Plugged resistance 1.30 : Vertical balance load factor --64.97 : Resulting Vertical Force Unplugged --64.97 : Resulting Vertical Force Plugged +-65.28 : Resulting Vertical Force Unplugged +-65.28 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -39422,210 +39558,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 1045.33493 - -0.62087 0.00000 1039.12598 - -1.24174 0.00000 1032.91710 - -1.86261 0.00000 1026.70834 - -2.48348 0.00000 1020.49977 - -3.10435 0.00000 1014.29145 - -3.10435 0.00000 1014.29145 - -3.72506 0.00000 1008.08345 - -4.34577 0.00000 1001.87583 - -4.96648 0.00000 995.66865 - -5.58719 0.00000 989.46198 - -6.20791 0.00000 983.25588 - -6.20791 0.00000 983.25588 - -7.03500 0.00000 974.98208 - -7.86210 0.00000 966.70955 - -8.68919 0.00000 958.43845 - -9.51629 0.00000 950.16893 - -10.34338 0.00000 941.90113 - -10.34338 0.00000 941.90113 - -11.03193 0.00000 935.01273 - -11.72047 0.00000 928.12571 - -12.40902 0.00000 921.24018 - -13.09756 0.00000 914.35620 - -13.78611 0.00000 907.47388 - -13.78611 0.00000 907.47388 - -14.47378 0.00000 900.59329 - -15.16146 0.00000 893.71452 - -15.84914 0.00000 886.83767 - -16.53681 0.00000 879.96281 - -17.22449 0.00000 873.09004 - -17.22449 0.00000 873.09004 - -17.81503 0.00000 867.18118 - -18.40557 0.00000 861.27399 - -18.99612 0.00000 855.36851 - -19.58666 0.00000 849.46480 - -20.17720 0.00000 843.56291 - -20.17720 571.87000 843.56291 - 44.23019 571.87000 835.74061 - 108.63758 571.87000 827.91107 - 173.04498 571.87000 820.06374 - 237.45237 571.87000 812.18808 - 301.85976 571.87000 804.27355 - 301.85976 571.87000 804.27355 - 308.29958 571.87000 803.47955 - 314.73939 571.87000 802.68505 - 321.17921 571.87000 801.89003 - 327.61902 571.87000 801.09448 - 334.05884 571.87000 800.29840 - 334.05882 571.87045 800.29840 - 372.80402 571.87045 795.49604 - 411.54922 571.87045 790.67157 - 450.29441 571.87045 785.82270 - 489.03961 571.87045 780.94714 - 527.78481 571.87045 776.04258 - 527.78481 -154.33710 776.04258 - 524.55397 -154.33710 774.60691 - 521.32314 -154.33710 773.16859 - 518.09230 -154.33710 771.72764 - 514.86147 -154.33710 770.28408 - 511.63063 -154.33710 768.83793 - 511.63063 -154.33710 768.83793 - 498.69481 -154.33710 763.02771 - 485.75899 -154.33710 757.17728 - 472.82316 -154.33710 751.28768 - 459.88734 -154.33710 745.35996 - 446.95152 -154.33710 739.39516 - 446.95152 -154.33710 739.39516 - 443.71464 -154.33710 737.89829 - 440.47777 -154.33710 736.39919 - 437.24090 -154.33710 734.89786 - 434.00402 -154.33710 733.39433 - 430.76715 -154.33710 731.88861 - 430.76715 -154.33710 731.88861 - 414.56732 -154.33710 724.32780 - 398.36749 -154.33710 716.71475 - 382.16766 -154.33710 709.05152 - 365.96783 -154.33710 701.34015 - 349.76800 -154.33710 693.58267 - 349.76800 -154.33711 693.58267 - 333.54614 -154.33711 685.78112 - 317.32428 -154.33711 677.93756 - 301.10242 -154.33711 670.05402 - 284.88056 -154.33711 662.13255 - 268.65870 -154.33711 654.17519 - 268.65870 -154.33711 654.17519 - 245.92081 -154.33711 642.97848 - 223.18293 -154.33711 631.72104 - 200.44504 -154.33711 620.40850 - 177.70715 -154.33711 609.04647 - 154.96926 -154.33711 597.64055 - 154.96927 -154.33718 597.64055 - 133.83808 -154.33718 587.01495 - 112.70688 -154.33718 576.36087 - 91.57569 -154.33718 565.68278 - 70.44450 -154.33718 554.98520 - 49.31331 -154.33718 544.27262 - 49.31323 -154.33858 544.27262 - 28.17661 -154.33858 533.54954 - 7.03998 -154.33858 522.82047 - -14.09664 -154.33858 512.08989 - -35.23326 -154.33858 501.36231 - -56.36989 -154.33858 490.64224 - -56.36989 -154.33859 490.64224 - -80.66889 -154.33859 478.32927 - -104.96790 -154.33859 466.03902 - -129.26690 -154.33859 453.77832 - -153.56590 -154.33859 441.55402 - -177.86491 -154.33859 429.37296 - -177.86491 -154.33859 429.37296 - -202.13888 -154.33859 417.24198 - -226.41284 -154.33859 405.16792 - -250.68681 -154.33859 393.15761 - -274.96078 -154.33859 381.21789 - -299.23474 -154.33859 369.35559 - -299.23475 -154.33858 369.35559 - -323.46659 -154.33858 357.57755 - -347.69843 -154.33858 345.89059 - -371.93027 -154.33858 334.30153 - -396.16211 -154.33858 322.81720 - -420.39396 -154.33858 311.44442 - -420.39389 -154.33850 311.44442 - -444.56654 -154.33850 300.19001 - -468.73919 -154.33850 289.06078 - -492.91184 -154.33850 278.06353 - -517.08449 -154.33850 267.20508 - -541.25714 -154.33850 256.49223 - -541.25718 -154.33880 256.49223 - -541.58003 -154.26002 256.34993 - -541.90262 -154.10402 256.20766 - -542.22489 -153.94802 256.06542 - -542.54686 -153.79202 255.92320 - -542.86851 -153.63602 255.78101 - -542.86851 -153.63605 255.78101 - -543.18983 -153.48005 255.63885 - -543.51085 -153.32405 255.49672 - -543.83155 -153.16805 255.35461 - -544.15194 -153.01205 255.21253 - -544.47202 -152.85605 255.07048 - -544.47202 -152.85606 255.07048 - -550.19489 -151.46607 252.51826 - -555.90107 -151.46606 249.97502 - -561.60726 -151.46605 247.44085 - -567.31344 -151.46605 244.91586 - -573.01963 -151.46604 242.40012 - -573.01962 98.07188 242.40012 - -561.99781 98.07191 234.08153 - -550.97599 98.07193 225.86489 - -539.95417 98.07196 217.74821 - -528.93234 98.07198 209.72948 - -517.91051 98.07200 201.80670 - -517.91046 98.07096 201.80670 - -512.41212 96.11581 197.88067 - -507.03418 94.05607 193.97787 - -501.78307 91.88899 190.09807 - -496.66508 89.61935 186.24104 - -491.68608 87.25938 182.40653 - -491.68674 87.26054 182.40653 - -483.43620 87.80339 176.06513 - -475.05598 89.49041 169.78464 - -466.50439 91.23108 163.56397 - -457.77599 93.02666 157.40206 - -448.86552 94.87002 151.29781 - -448.86374 94.88782 151.29781 - -441.35446 96.67369 146.33460 - -433.69196 98.59950 141.40877 - -425.86891 100.58944 136.51967 - -417.88024 102.63712 131.66662 - -409.72188 104.72407 126.84898 - -409.72196 104.72494 126.84898 - -399.56584 105.59929 121.02073 - -389.31320 106.66477 115.24281 - -378.94876 107.77793 109.51392 - -368.48199 108.68384 103.83277 - -357.93739 109.35208 98.19803 - -357.93874 109.36329 98.19803 - -343.05446 109.11697 90.38489 - -328.15949 109.53942 82.65647 - -313.15359 110.70228 75.00904 - -297.93289 112.60822 67.43890 - -282.40027 115.10817 59.94232 - -282.44034 115.47925 59.94232 - -266.35822 118.58613 52.51557 - -249.81704 122.04971 45.15461 - -232.76375 125.89927 37.85522 - -215.14541 130.11931 30.61317 - -196.91426 134.62951 23.42426 - -197.06681 135.70998 23.42426 - -177.92764 140.68789 16.28409 - -158.07479 145.92446 9.18780 - -137.67639 146.98361 2.13048 - -117.61325 142.01655 -4.89280 - -98.47402 133.84360 -11.88699 - -98.15640 133.34140 -11.88699 - -80.35522 122.52862 -18.85717 - -64.12737 110.94973 -25.80755 - -49.55665 98.85385 -32.74172 - -36.71600 86.23348 -39.66326 - -25.67454 73.18371 -46.57577 - -25.74538 72.55871 -46.57577 - -16.58738 58.79900 -53.48250 - -9.37846 44.69306 -60.38519 - -4.17318 30.17541 -67.28510 - -1.02928 15.24461 -74.18352 - 0.00002 0.00011 -81.08172 + 0.00000 0.00000 1044.39402 + -0.62027 0.00000 1038.19107 + -1.24054 0.00000 1031.98819 + -1.86081 0.00000 1025.78543 + -2.48108 0.00000 1019.58287 + -3.10135 0.00000 1013.38055 + -3.10135 0.00000 1013.38055 + -3.72146 0.00000 1007.17856 + -4.34157 0.00000 1000.97694 + -4.96168 0.00000 994.77577 + -5.58179 0.00000 988.57510 + -6.20190 0.00000 982.37500 + -6.20190 0.00000 982.37500 + -7.02820 0.00000 974.10920 + -7.85449 0.00000 965.84467 + -8.68079 0.00000 957.58157 + -9.50708 0.00000 949.32004 + -10.33338 0.00000 941.06024 + -10.33338 0.00000 941.06024 + -11.02126 0.00000 934.17850 + -11.70914 0.00000 927.29814 + -12.39702 0.00000 920.41926 + -13.08489 0.00000 913.54195 + -13.77277 0.00000 906.66628 + -13.77277 0.00000 906.66628 + -14.45979 0.00000 899.79234 + -15.14680 0.00000 892.92023 + -15.83381 0.00000 886.05003 + -16.52082 0.00000 879.18182 + -17.20783 0.00000 872.31569 + -17.20783 0.00000 872.31569 + -17.79780 0.00000 866.41255 + -18.38778 0.00000 860.51107 + -18.97775 0.00000 854.61130 + -19.56772 0.00000 848.71330 + -20.15769 0.00000 842.81712 + -20.15769 571.87000 842.81712 + 44.25046 571.87000 835.00238 + 108.65861 571.87000 827.18040 + 173.06676 571.87000 819.34063 + 237.47490 571.87000 811.47252 + 301.88305 571.87000 803.56553 + 301.88305 571.87000 803.56553 + 308.32294 571.87000 802.77229 + 314.76283 571.87000 801.97854 + 321.20272 571.87000 801.18428 + 327.64261 571.87000 800.38949 + 334.08250 571.87000 799.59416 + 334.08249 571.87045 799.59416 + 372.82814 571.87045 794.79634 + 411.57379 571.87045 789.97641 + 450.31944 571.87045 785.13208 + 489.06509 571.87045 780.26105 + 527.81074 571.87045 775.36103 + 527.81074 -154.14878 775.36103 + 524.58381 -154.14878 773.92667 + 521.35687 -154.14878 772.48968 + 518.12993 -154.14878 771.05005 + 514.90300 -154.14878 769.60781 + 511.67606 -154.14878 768.16298 + 511.67606 -154.14878 768.16298 + 498.75583 -154.14878 762.35804 + 485.83560 -154.14878 756.51288 + 472.91537 -154.14878 750.62856 + 459.99514 -154.14878 744.70610 + 447.07491 -154.14878 738.74655 + 447.07491 -154.14878 738.74655 + 443.84193 -154.14878 737.25099 + 440.60896 -154.14878 735.75320 + 437.37598 -154.14878 734.25318 + 434.14300 -154.14878 732.75096 + 430.91003 -154.14878 731.24656 + 430.91003 -154.14878 731.24656 + 414.72968 -154.14878 723.69227 + 398.54933 -154.14878 716.08574 + 382.36899 -154.14878 708.42900 + 366.18864 -154.14878 700.72410 + 350.00829 -154.14878 692.97305 + 350.00829 -154.14878 692.97305 + 333.80590 -154.14878 685.17792 + 317.60350 -154.14878 677.34073 + 301.40111 -154.14878 669.46353 + 285.19871 -154.14878 661.54836 + 268.99632 -154.14878 653.59726 + 268.99632 -154.14879 653.59726 + 246.28565 -154.14879 642.40925 + 223.57497 -154.14879 631.16042 + 200.86430 -154.14879 619.85639 + 178.15363 -154.14879 608.50275 + 155.44295 -154.14879 597.10513 + 155.44296 -154.14886 597.10513 + 134.33699 -154.14886 586.48713 + 113.23102 -154.14886 575.84054 + 92.12505 -154.14886 565.16983 + 71.01907 -154.14886 554.47951 + 49.91310 -154.14886 543.77407 + 49.91302 -154.15025 543.77407 + 28.80156 -154.15025 533.05801 + 7.69009 -154.15025 522.33581 + -13.42137 -154.15025 511.61197 + -34.53284 -154.15025 500.89100 + -55.64431 -154.15025 490.17737 + -55.64431 -154.15025 490.17737 + -79.91448 -154.15025 477.87162 + -104.18465 -154.15025 465.58838 + -128.45482 -154.15025 453.33447 + -152.72499 -154.15025 441.11674 + -176.99516 -154.15025 428.94200 + -176.99516 -154.15026 428.94200 + -201.24041 -154.15026 416.81710 + -225.48567 -154.15026 404.74887 + -249.73092 -154.15026 392.74413 + -273.97618 -154.15026 380.80971 + -298.22143 -154.15026 368.95243 + -298.22143 -154.15025 368.95243 + -322.42471 -154.15025 357.17912 + -346.62798 -154.15025 345.49660 + -370.83125 -154.15025 333.91169 + -395.03452 -154.15025 322.43119 + -419.23779 -154.15025 311.06192 + -419.23773 -154.15013 311.06192 + -443.38197 -154.15013 299.81069 + -467.52621 -154.15013 288.68432 + -491.67044 -154.15013 277.68959 + -515.81468 -154.15013 266.83330 + -539.95892 -154.15013 256.12225 + -539.95896 -154.15036 256.12225 + -540.28143 -154.07158 255.97997 + -540.60363 -153.91558 255.83772 + -540.92553 -153.75958 255.69550 + -541.24712 -153.60358 255.55331 + -541.56839 -153.44758 255.41114 + -541.56839 -153.44769 255.41114 + -541.88934 -153.29169 255.26900 + -542.20997 -153.13569 255.12689 + -542.53030 -152.97969 254.98480 + -542.85031 -152.82369 254.84274 + -543.17001 -152.66769 254.70071 + -543.17001 -152.66768 254.70071 + -548.88606 -151.27769 252.14886 + -554.58543 -151.27768 249.60597 + -560.28480 -151.27768 247.07213 + -565.98417 -151.27767 244.54744 + -571.68354 -151.27766 242.03199 + -571.68354 95.81869 242.03199 + -560.93206 95.81872 233.71419 + -550.18058 95.81874 225.49815 + -539.42909 95.81877 217.38192 + -528.67760 95.81879 209.36354 + -517.92611 95.81881 201.44108 + -517.92606 95.81777 201.44108 + -512.56299 93.85958 197.51520 + -507.32050 91.79651 193.61257 + -502.20505 89.62581 189.73295 + -497.22296 87.35223 185.87611 + -492.38009 84.98804 182.04182 + -492.38011 84.98467 182.04182 + -484.35097 85.69298 175.70086 + -476.16686 87.67927 169.42092 + -467.78094 89.72927 163.20095 + -459.18678 91.84429 157.03988 + -450.37819 94.01460 150.93666 + -450.37721 94.03674 150.93666 + -442.93216 95.94453 145.97443 + -435.32568 97.96109 141.04973 + -427.55095 100.04863 136.16188 + -419.60231 102.20022 131.31024 + -411.47521 104.39775 126.49414 + -411.47527 104.39848 126.49414 + -401.34361 105.43010 120.66798 + -391.10099 106.62413 114.89237 + -380.73696 107.78742 109.16602 + -370.26864 108.71122 103.48762 + -359.71856 109.43447 97.85587 + -359.71998 109.44535 97.85587 + -344.82625 109.16560 90.04729 + -329.92664 109.55252 82.32386 + -314.92123 110.67772 74.68187 + -299.70645 112.54379 67.11759 + -284.18439 115.02530 59.62732 + -284.22491 115.39915 59.62732 + -268.15146 118.55191 52.20732 + -251.60714 122.13466 44.85356 + -234.53102 126.13671 37.56179 + -216.86825 130.51274 30.32781 + -198.57059 135.18213 23.14738 + -198.72362 136.25575 23.14738 + -179.49632 141.39764 16.01611 + -159.53214 146.80172 8.92912 + -139.01787 147.62129 1.88144 + -118.88774 142.49505 -5.13187 + -99.65733 134.66915 -12.11576 + -99.32505 134.09409 -12.11576 + -81.37261 123.77283 -19.07535 + -64.97087 112.17934 -26.01490 + -50.23145 100.02421 -32.93803 + -37.23348 87.30038 -39.84836 + -26.05194 74.11033 -46.74953 + -26.14066 73.55830 -46.74953 + -16.85339 59.64812 -53.64484 + -9.53624 45.38366 -60.53603 + -4.24726 30.67392 -67.42440 + -1.04890 15.51750 -74.31126 + 0.00132 0.02242 -81.19790 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -39732,30 +39868,30 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.00100 17.00000 33.00000 0.85800 0.85800 - -10.00300 5.00000 1.00000 1.01400 1.01400 - -10.00500 49.00000 65.00000 1.17000 1.17000 - -10.00700 77.00000 16.00000 1.32600 1.32600 - -10.00900 4.00000 26.00000 1.48200 1.48200 - -10.01000 61.00000 20.00000 1.56000 1.56000 - -10.02800 14.00000 58.00000 2.96401 2.96401 - -10.06400 2.70000 2.00000 5.77203 5.77203 - -10.10000 19.00000 2.00000 8.58006 8.58006 - -10.13600 4.00000 1.00000 11.38811 11.38811 - -10.17200 18.20000 5.60000 14.19617 14.19617 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.00100 1.00000 1.00000 0.85800 0.85800 + -10.00300 1.00000 1.00000 1.01400 1.01400 + -10.00500 1.00000 1.00000 1.17000 1.17000 + -10.00700 1.00000 1.00000 1.32600 1.32600 + -10.00900 1.00000 1.00000 1.48200 1.48200 + -10.01000 1.00000 1.00000 1.56000 1.56000 + -10.02800 1.00000 1.00000 2.96401 2.96401 + -10.06400 1.00000 1.00000 5.77203 5.77203 + -10.10000 1.00000 1.00000 8.58006 8.58006 + -10.13600 1.00000 1.00000 11.38811 11.38811 + -10.17200 1.00000 1.00000 14.19617 14.19617 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 70.13300 35.53000 63.98624 62.50859 -10.88000 70.13300 35.53000 67.29371 62.72880 -10.94000 70.13300 35.53000 70.78971 62.96155 @@ -39830,7 +39966,7 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 -10.00000 78.00010 78.00011 78.00011 1.00000 1.00000 1.00000 -10.00200 78.00012 78.00012 78.00012 1.00000 1.00000 1.00000 -10.00400 78.00014 78.00014 78.00014 1.00000 1.00000 1.00000 @@ -39849,60 +39985,60 @@ Lambda passive -10.55000 78.00560 78.00560 78.00560 1.00000 1.00000 1.00000 -10.67000 78.00680 78.00680 78.00680 1.00000 1.00000 1.00000 -10.79000 78.00800 78.00770 78.00770 1.00000 1.00000 1.00000 - -10.79000 11.10800 52.76806 3.51315 0.54849 0.31156 4.67974 - -10.85000 11.77940 55.12455 3.67003 0.53855 0.31156 4.67974 - -10.91000 12.45080 58.26653 3.87922 0.53258 0.31156 4.67974 - -10.97000 13.12220 61.40850 4.08840 0.52721 0.31156 4.67974 - -11.03000 13.79360 64.55048 4.29758 0.52237 0.31156 4.67974 - -11.09000 14.46500 66.90697 4.45447 0.51798 0.31156 4.67974 - -11.09000 14.46500 46.13762 2.27872 0.73442 0.15608 3.16017 - -11.19000 15.00400 46.33990 2.51462 0.73020 0.16760 3.08850 - -11.29000 15.54300 46.84564 2.81513 0.72627 0.18112 3.01394 - -11.39000 16.08200 47.52254 3.10980 0.72260 0.19337 2.95501 - -11.49000 16.62100 48.30376 3.40232 0.71917 0.20470 2.90619 - -11.59000 17.16000 48.93443 3.62107 0.71596 0.21269 2.87423 - -11.59000 17.16000 49.33272 3.75360 0.80163 0.21734 2.85647 - -11.67200 17.60198 49.88627 3.93260 0.69740 0.22342 2.83413 - -11.75400 18.04396 50.64403 4.17112 0.69398 0.23116 2.80670 - -11.83600 18.48594 51.42100 4.40953 0.69073 0.23853 2.78163 - -11.91800 18.92792 52.21334 4.64788 0.68762 0.24556 2.75854 - -12.00000 19.36990 52.81559 4.82661 0.68466 0.25061 2.74233 - -12.00000 19.36990 36.01105 8.96400 0.71964 0.48020 1.92911 - -12.10000 16.55890 32.52429 7.58646 0.70236 0.45815 1.96416 - -12.20000 13.74790 27.90583 5.74972 0.67801 0.41823 2.02982 - -12.30000 10.93690 23.31696 3.91296 0.64113 0.35778 2.13195 - -12.40000 8.12590 18.75129 2.07618 0.57875 0.25550 2.30760 - -12.50000 5.31490 15.33874 0.69859 0.79040 0.11609 2.54896 - -12.50000 5.31490 25.72629 1.82917 0.55286 0.32252 4.53602 - -12.64000 6.74150 30.44036 2.17477 0.55286 0.32259 4.51537 - -12.78000 8.16810 36.66838 2.63588 0.55286 0.32270 4.48922 - -12.92000 9.59470 42.84278 3.09738 0.55286 0.32282 4.46525 - -13.06000 11.02130 48.98060 3.55926 0.55286 0.32294 4.44418 - -13.20000 12.44790 53.56913 3.90589 0.55286 0.32303 4.43040 - -13.20000 12.44790 56.62322 4.13708 0.55286 0.32309 4.42212 - -13.34000 13.87450 61.20037 4.48401 0.55286 0.32318 4.41100 - -13.48000 15.30110 67.30083 4.94680 0.55286 0.32330 4.39843 - -13.62000 16.72770 73.40253 5.40979 0.55286 0.32340 4.38808 - -13.76000 18.15430 79.50848 5.87295 0.55286 0.32350 4.37959 - -13.90000 19.58090 84.09155 6.22039 0.55286 0.32357 4.37424 - -13.90000 19.58090 87.14909 6.45206 0.55286 0.32361 4.37110 - -14.04000 21.00750 91.73877 6.79959 0.55286 0.32367 4.36695 - -14.18000 22.43410 97.86395 7.26300 0.55286 0.32375 4.36229 - -14.32000 23.86070 103.99563 7.72645 0.44038 0.32382 4.35845 - -14.46000 25.28730 110.13339 8.18991 0.44668 0.32387 4.35528 - -14.60000 26.71390 114.74023 8.53750 0.45231 0.32391 4.35327 + -10.79000 11.10800 52.76806 3.51315 0.33538 0.31156 4.67974 + -10.85000 11.77940 55.12455 3.67003 0.34544 0.31156 4.67974 + -10.91000 12.45080 58.26653 3.87922 0.35442 0.31156 4.67974 + -10.97000 13.12220 61.40850 4.08840 0.36248 0.31156 4.67974 + -11.03000 13.79360 64.55048 4.29758 0.36976 0.31156 4.67974 + -11.09000 14.46500 66.90697 4.45447 0.37636 0.31156 4.67974 + -11.09000 14.46500 46.13762 2.27872 0.59280 0.15608 3.16017 + -11.19000 15.00400 46.33990 2.51462 0.59663 0.16760 3.08850 + -11.29000 15.54300 46.84564 2.81513 0.60019 0.18112 3.01394 + -11.39000 16.08200 47.52254 3.10980 0.60351 0.19337 2.95501 + -11.49000 16.62100 48.30376 3.40232 0.60661 0.20470 2.90619 + -11.59000 17.16000 48.93443 3.62107 0.60952 0.21269 2.87423 + -11.59000 17.16000 49.33272 3.75360 0.60952 0.21734 2.85647 + -11.67200 17.60198 49.88627 3.93260 0.61178 0.22342 2.83413 + -11.75400 18.04396 50.64403 4.17112 0.61392 0.23116 2.80670 + -11.83600 18.48594 51.42100 4.40953 0.61596 0.23853 2.78163 + -11.91800 18.92792 52.21334 4.64788 0.61791 0.24556 2.75854 + -12.00000 19.36990 52.81559 4.82661 0.61977 0.25061 2.74233 + -12.00000 19.36990 36.01105 8.96400 0.65475 0.48020 1.92911 + -12.10000 16.55890 32.52429 7.58646 0.64297 0.45815 1.96416 + -12.20000 13.74790 27.90583 5.74972 0.60141 0.41823 2.02982 + -12.30000 10.93690 23.31696 3.91296 0.53848 0.35778 2.13195 + -12.40000 8.12590 18.75129 2.07618 0.43202 0.25550 2.30760 + -12.50000 5.31490 15.33874 0.69859 0.21294 0.11609 2.54896 + -12.50000 5.31490 25.72629 1.82917 0.32252 0.32252 4.53602 + -12.64000 6.74150 30.44036 2.17477 0.32259 0.32259 4.51537 + -12.78000 8.16810 36.66838 2.63588 0.32270 0.32270 4.48922 + -12.92000 9.59470 42.84278 3.09738 0.32282 0.32282 4.46525 + -13.06000 11.02130 48.98060 3.55926 0.32294 0.32294 4.44418 + -13.20000 12.44790 53.56913 3.90589 0.32303 0.32303 4.43040 + -13.20000 12.44790 56.62322 4.13708 0.32309 0.32309 4.42212 + -13.34000 13.87450 61.20037 4.48401 0.32318 0.32318 4.41100 + -13.48000 15.30110 67.30083 4.94680 0.32330 0.32330 4.39843 + -13.62000 16.72770 73.40253 5.40979 0.32340 0.32340 4.38808 + -13.76000 18.15430 79.50848 5.87295 0.32350 0.32350 4.37959 + -13.90000 19.58090 84.09155 6.22039 0.32357 0.32357 4.37424 + -13.90000 19.58090 87.14909 6.45206 0.32361 0.32361 4.37110 + -14.04000 21.00750 91.73877 6.79959 0.32367 0.32367 4.36695 + -14.18000 22.43410 97.86395 7.26300 0.32375 0.32375 4.36229 + -14.32000 23.86070 103.99563 7.72645 0.32382 0.32382 4.35845 + -14.46000 25.28730 110.13339 8.18991 0.32387 0.32387 4.35528 + -14.60000 26.71390 114.74023 8.53750 0.32391 0.32391 4.35327 -14.60000 26.71390 117.81320 8.76923 0.32394 0.32394 4.35208 - -14.74000 28.14050 122.42506 9.11681 0.48097 0.32397 4.35049 - -14.88000 29.56710 128.57788 9.58022 0.48441 0.32402 4.34868 - -15.02000 30.99370 134.73469 10.04361 0.48755 0.32405 4.34716 - -15.16000 32.42030 140.89501 10.50697 0.49040 0.32409 4.34589 - -15.30000 33.84690 145.51722 10.85447 0.49302 0.32411 4.34506 - -15.30000 33.84690 148.59964 11.08612 0.49302 0.32412 4.34457 - -15.44000 35.27350 153.22457 11.43358 0.49513 0.32414 4.34390 - -15.58000 36.70010 159.39310 11.89684 0.49707 0.32416 4.34312 - -15.72000 38.12670 165.56374 12.36006 0.49888 0.32418 4.34246 - -15.86000 39.55330 171.73623 12.82325 0.50055 0.32420 4.34189 - -16.00000 40.97990 176.36663 13.17062 0.50210 0.32421 4.34152 + -14.74000 28.14050 122.42506 9.11681 0.32397 0.32397 4.35049 + -14.88000 29.56710 128.57788 9.58022 0.32402 0.32402 4.34868 + -15.02000 30.99370 134.73469 10.04361 0.32405 0.32405 4.34716 + -15.16000 32.42030 140.89501 10.50697 0.32409 0.32409 4.34589 + -15.30000 33.84690 145.51722 10.85447 0.32700 0.32411 4.34506 + -15.30000 33.84690 148.59964 11.08612 0.32700 0.32412 4.34457 + -15.44000 35.27350 153.22457 11.43358 0.33278 0.32414 4.34390 + -15.58000 36.70010 159.39310 11.89684 0.33812 0.32416 4.34312 + -15.72000 38.12670 165.56374 12.36006 0.34306 0.32418 4.34246 + -15.86000 39.55330 171.73623 12.82325 0.34764 0.32420 4.34189 + -16.00000 40.97990 176.36663 13.17062 0.35190 0.32421 4.34152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -40048,9 +40184,9 @@ Status character 0.78000 0.00000 0.78000 0.78000 302 100 P 78.00002 0.00000 78.00002 78.00002 302 100 P 78.00004 0.00000 78.00004 78.00004 302 100 P - 78.00012 0.00000 78.00012 78.00012 302 100 P + 78.00012 0.00000 78.00012 78.00006 302 100 P 78.00008 0.00000 78.00008 78.00008 302 100 P - 78.00009 0.00000 78.00009 78.00009 302 100 P + 78.00010 0.00000 78.00010 78.00009 302 100 P 78.00011 0.00000 78.00011 78.00011 302 100 P 78.00012 0.00000 78.00012 78.00012 302 100 P 78.00014 0.00000 78.00014 78.00014 302 100 P @@ -40069,60 +40205,60 @@ Status character 78.00560 0.00000 78.00560 78.00560 1 100 A 78.00680 0.00000 78.00680 78.00680 1 100 A 78.00770 0.00000 78.00770 78.00770 1 100 A - 3.51315 66.90000 52.76806 6.18466 1 0 A - 3.67003 67.48860 55.12455 6.34384 1 0 A - 3.87922 68.07720 58.26653 6.63102 1 0 A - 4.08840 68.66580 61.40850 6.91820 1 0 A - 4.29758 69.25440 64.55048 7.20539 1 0 A - 4.45447 69.84300 66.90697 7.40562 1 0 A - 7.07159 69.84300 46.13762 10.72238 110 0 1 - 29.78777 70.82400 46.33990 10.95590 220 64 2 - 30.77451 71.80500 46.84564 11.28839 220 66 2 - 31.76988 72.78600 47.52254 11.62087 220 67 2 - 32.77330 73.76700 48.30376 11.95335 220 68 2 - 33.51886 74.74800 48.93443 12.18936 220 68 2 - 35.48137 74.74800 49.33272 13.84451 220 72 2 - 34.33709 75.55242 49.88627 12.27561 220 69 2 - 35.15111 76.35684 50.64403 12.52217 220 69 2 - 35.96918 77.16126 51.42100 12.76873 220 70 2 - 36.79102 77.96568 52.21334 13.01529 220 70 2 - 37.40188 78.77010 52.81559 13.18621 220 71 2 - 24.71377 78.77010 36.01105 13.43370 220 69 2 - 24.75981 82.75110 32.52429 11.63029 220 76 2 - 24.88602 86.73210 27.90583 9.32115 220 89 2 - 21.53796 90.71310 23.31696 7.01201 220 92 2 - 17.04560 94.69410 18.75129 4.70287 220 91 2 - 13.71205 98.67510 15.33874 4.75636 220 89 2 - 15.96618 98.67510 25.72629 3.13558 220 62 2 - 21.38909 100.04850 30.44036 3.72711 220 70 2 - 28.36659 101.42190 36.66838 4.51583 220 77 2 - 35.31980 102.79530 42.84278 5.30454 220 82 2 - 42.25441 104.16870 48.98060 6.09325 220 86 2 - 47.26160 105.54210 53.56913 6.68478 220 88 2 - 50.31569 105.54210 56.62322 7.07914 220 89 2 - 55.15396 106.91550 61.20037 7.67067 220 90 2 - 61.53382 108.28890 67.30083 8.45938 220 91 2 - 67.93079 109.66230 73.40253 9.24810 220 93 2 - 74.34548 111.03570 79.50848 10.03681 220 94 2 - 79.24834 112.40910 84.09155 10.62834 220 94 2 - 82.30588 112.40910 87.14909 11.02270 220 94 2 - 87.22424 113.78250 91.73877 11.61423 220 95 2 - 93.68555 115.15590 97.86395 12.40294 220 96 2 - 36.07360 116.52930 103.99563 10.50779 110 35 1 - 16.34079 117.90270 110.13339 11.29533 110 15 1 - 18.45746 119.27610 114.74023 11.92156 110 16 1 - 14.50436 119.27610 117.81320 8.76923 110 12 1 - 21.61557 120.64950 122.42506 13.53461 110 18 1 - 23.71620 122.02290 128.57788 14.32272 110 18 1 - 25.77350 123.39630 134.73469 15.11083 110 19 1 - 27.79624 124.76970 140.89501 15.89893 110 20 1 - 29.68981 126.14310 145.51722 16.51121 110 20 1 - 29.89653 126.14310 148.59964 16.86287 110 20 1 - 32.15042 127.51650 153.22457 17.46486 110 21 1 - 35.03188 128.88990 159.39310 18.24268 110 22 1 - 37.90504 130.26330 165.56374 19.02050 110 23 1 - 40.77355 131.63670 171.73623 19.79832 110 24 1 - 43.52530 133.01010 176.36663 20.39707 110 25 1 + 3.51315 66.90000 52.76806 3.78170 1 0 A + 3.67003 67.48860 55.12455 4.06912 1 0 A + 3.87922 68.07720 58.26653 4.41284 1 0 A + 4.08840 68.66580 61.40850 4.75656 1 0 A + 4.29758 69.25440 64.55048 5.10028 1 0 A + 4.45447 69.84300 66.90697 5.38082 1 0 A + 4.98933 69.84300 46.13762 8.65473 110 0 1 + 30.27737 70.82400 46.33990 8.95177 220 65 2 + 31.33799 71.80500 46.84564 9.32869 220 67 2 + 32.40724 72.78600 47.52254 9.70561 220 68 2 + 33.48454 73.76700 48.30376 10.08253 220 69 2 + 34.27249 74.74800 48.93443 10.37731 220 70 2 + 34.81274 74.74800 49.33272 10.52679 220 71 2 + 35.46404 75.55242 49.88627 10.76852 220 71 2 + 36.36311 76.35684 50.64403 11.07759 220 72 2 + 37.26624 77.16126 51.42100 11.38667 220 72 2 + 38.17313 77.96568 52.21334 11.69574 220 73 2 + 38.84574 78.77010 52.81559 11.93633 220 74 2 + 26.43889 78.77010 36.01105 12.22226 220 73 2 + 26.30399 82.75110 32.52429 10.64687 220 81 2 + 26.04349 86.73210 27.90583 8.26809 220 93 2 + 21.52038 90.71310 23.31696 5.88930 220 92 2 + 17.02717 94.69410 18.75129 3.51052 220 91 2 + 13.69276 98.67510 15.33874 1.28137 220 89 2 + 15.85045 98.67510 25.72629 1.82917 220 62 2 + 21.26602 100.04850 30.44036 2.17477 220 70 2 + 28.23598 101.42190 36.66838 2.63588 220 77 2 + 35.18141 102.79530 42.84278 3.09738 220 82 2 + 42.10796 104.16870 48.98060 3.55926 220 86 2 + 47.36346 105.54210 53.56913 3.90589 220 88 2 + 50.41754 105.54210 56.62322 4.13708 220 89 2 + 55.25840 106.91550 61.20037 4.48401 220 90 2 + 61.64027 108.28890 67.30083 4.94680 220 92 2 + 68.03866 109.66230 73.40253 5.40979 220 93 2 + 74.45411 111.03570 79.50848 5.87295 220 94 2 + 79.35705 112.40910 84.09155 6.22039 220 94 2 + 82.41459 112.40910 87.14909 6.45206 220 95 2 + 87.33237 113.78250 91.73877 6.79959 220 95 2 + 93.79251 115.15590 97.86395 7.26300 220 96 2 + 30.30373 116.52930 103.99563 7.72645 110 29 1 + 17.53065 117.90270 110.13339 8.18991 110 16 1 + 19.33618 119.27610 114.74023 8.53750 110 17 1 + 19.51153 119.27610 117.81320 8.76923 110 17 1 + 21.25868 120.64950 122.42506 9.11681 110 17 1 + 23.04458 122.02290 128.57788 9.58022 110 18 1 + 24.78978 123.39630 134.73469 10.04361 110 18 1 + 26.50254 124.76970 140.89501 10.50697 110 19 1 + 28.20333 126.14310 145.51722 10.95123 110 19 1 + 28.37393 126.14310 148.59964 11.18447 110 19 1 + 30.96710 127.51650 153.22457 11.73847 110 20 1 + 33.81955 128.88990 159.39310 12.40909 110 21 1 + 36.66391 130.26330 165.56374 13.07970 110 22 1 + 39.50373 131.63670 171.73623 13.75032 110 23 1 + 42.22681 133.01010 176.36663 14.29543 110 24 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40137,9 +40273,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 1.195 'Grind' - -11.09 29.193 'Hydrobiaklei' - -12.00 10.744 'Basisveen' - -12.50 149.795 'Eerste zandlaag' + -11.09 29.810 'Hydrobiaklei' + -12.00 11.096 'Basisveen' + -12.50 148.151 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40156,9 +40292,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.40 'Grind' - -11.09 -4.99 'Hydrobiaklei' + -11.09 -5.10 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -47.03 'Eerste zandlaag' + -12.50 -46.51 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -40268,18 +40404,18 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.02800 6.00000 1.00000 1.40400 1.40400 - -10.06400 3.94000 1.00000 4.21201 4.21201 - -10.10000 9.00000 8.30000 7.02004 7.02004 - -10.13600 8.92000 3.00000 9.82808 9.82808 - -10.17200 12.00000 17.60000 12.63613 12.63613 - -10.19000 3.00600 71.00000 14.04016 14.04016 - -10.25000 1.00000 13.00000 18.72029 18.72029 - -10.37000 9.00000 51.00000 28.08065 28.08065 - -10.49000 82.00000 26.00000 37.44115 37.44115 - -10.61000 4.00000 16.00000 46.80180 46.80180 - -10.73000 51.00000 51.20000 56.16259 56.16259 - -10.79000 10.90000 10.80000 60.84304 60.84304 + -10.02800 1.00000 1.00000 1.40400 1.40400 + -10.06400 1.00000 1.00000 4.21201 4.21201 + -10.10000 1.00000 1.00000 7.02004 7.02004 + -10.13600 1.00000 1.00000 9.82808 9.82808 + -10.17200 1.00000 1.00000 12.63613 12.63613 + -10.19000 1.00000 1.00000 14.04016 14.04016 + -10.25000 1.00000 1.00000 18.72029 18.72029 + -10.37000 1.00000 1.00000 28.08065 28.08065 + -10.49000 1.00000 1.00000 37.44115 37.44115 + -10.61000 1.00000 1.00000 46.80180 46.80180 + -10.73000 1.00000 1.00000 56.16259 56.16259 + -10.79000 1.00000 1.00000 60.84304 60.84304 -10.82000 70.13300 35.53000 62.42606 60.94843 -10.88000 70.13300 35.53000 65.73347 61.16863 -10.94000 70.13300 35.53000 69.22941 61.40138 @@ -40361,60 +40497,60 @@ Lambda passive -10.55000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.67000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.79000 78.00780 78.00750 78.00750 1.00000 1.00000 1.00000 - -10.79000 11.10780 52.76713 3.51308 0.53811 0.31156 4.67974 - -10.85000 11.77920 55.12361 3.66997 0.53800 0.31156 4.67974 - -10.91000 12.45060 58.26559 3.87915 0.53790 0.31156 4.67974 - -10.97000 13.12200 61.40757 4.08834 0.53781 0.31156 4.67974 - -11.03000 13.79340 64.54955 4.29752 0.53773 0.31156 4.67974 - -11.09000 14.46480 66.90603 4.45441 0.53765 0.31156 4.67974 - -11.09000 14.46480 46.13720 2.27861 0.75409 0.15607 3.16018 - -11.19000 15.00380 46.33948 2.51451 0.75401 0.16759 3.08852 - -11.29000 15.54280 46.84522 2.81502 0.75394 0.18111 3.01395 - -11.39000 16.08180 47.52212 3.10969 0.75387 0.19337 2.95502 - -11.49000 16.62080 48.30334 3.40222 0.75380 0.20470 2.90620 - -11.59000 17.15980 48.93401 3.62096 0.75374 0.21268 2.87424 - -11.59000 17.15980 49.33230 3.75349 0.75374 0.21734 2.85648 - -11.67200 17.60178 49.88585 3.93249 0.75363 0.22341 2.83414 - -11.75400 18.04376 50.64361 4.17102 0.75353 0.23116 2.80671 - -11.83600 18.48574 51.42059 4.40943 0.75343 0.23853 2.78164 - -11.91800 18.92772 52.21292 4.64777 0.75333 0.24555 2.75854 - -12.00000 19.36970 52.81517 4.82651 0.75324 0.25061 2.74233 - -12.00000 19.36970 36.01071 8.96387 0.78977 0.48020 1.92912 - -12.10000 16.55870 32.52395 7.58633 0.78298 0.45815 1.96416 - -12.20000 13.74770 27.90549 5.74959 0.77603 0.41822 2.02983 - -12.30000 10.93670 23.31663 3.91283 0.76551 0.35777 2.13196 - -12.40000 8.12570 18.75096 2.07605 0.74771 0.25549 2.30761 - -12.50000 5.31470 15.33841 0.69846 0.71107 0.11607 2.54899 - -12.50000 5.31470 25.72539 1.82911 0.47353 0.32252 4.53603 - -12.64000 6.74130 30.43947 2.17470 0.47924 0.32259 4.51537 - -12.78000 8.16790 36.66750 2.63581 0.48296 0.32270 4.48922 - -12.92000 9.59450 42.84191 3.09731 0.48557 0.32282 4.46526 - -13.06000 11.02110 48.97973 3.55919 0.48750 0.32294 4.44418 - -13.20000 12.44770 53.56826 3.90582 0.48899 0.32303 4.43041 - -13.20000 12.44770 56.62235 4.13701 0.60841 0.32309 4.42212 - -13.34000 13.87430 61.19951 4.48395 0.47194 0.32318 4.41100 - -13.48000 15.30090 67.29997 4.94673 0.47377 0.32330 4.39843 - -13.62000 16.72750 73.40166 5.40973 0.47530 0.32340 4.38808 - -13.76000 18.15410 79.50762 5.87288 0.47658 0.32350 4.37960 - -13.90000 19.58070 84.09069 6.22033 0.47768 0.32357 4.37424 - -13.90000 19.58070 87.14823 6.45199 0.47768 0.32361 4.37110 - -14.04000 21.00730 91.73791 6.79952 0.47863 0.32367 4.36695 - -14.18000 22.43390 97.86308 7.26294 0.47946 0.32375 4.36229 - -14.32000 23.86050 103.99476 7.72639 0.48019 0.32382 4.35845 - -14.46000 25.28710 110.13252 8.18985 0.48084 0.32387 4.35528 - -14.60000 26.71370 114.73936 8.53744 0.48141 0.32391 4.35327 - -14.60000 26.71370 117.81233 8.76916 0.48141 0.32394 4.35208 - -14.74000 28.14030 122.42419 9.11674 0.48193 0.32397 4.35049 - -14.88000 29.56690 128.57702 9.58016 0.48240 0.32402 4.34868 - -15.02000 30.99350 134.73382 10.04355 0.48283 0.32405 4.34716 - -15.16000 32.42010 140.89414 10.50691 0.48322 0.32409 4.34589 - -15.30000 33.84670 145.51635 10.85440 0.48357 0.32411 4.34506 - -15.30000 33.84670 148.59877 11.08606 0.48357 0.32412 4.34457 - -15.44000 35.27330 153.22370 11.43352 0.48390 0.32414 4.34390 - -15.58000 36.69990 159.39224 11.89677 0.48420 0.32416 4.34312 - -15.72000 38.12650 165.56288 12.36000 0.48448 0.32418 4.34246 - -15.86000 39.55310 171.73536 12.82319 0.48474 0.32420 4.34189 - -16.00000 40.97970 176.36576 13.17056 0.48498 0.32421 4.34152 + -10.79000 11.10780 52.76713 3.51308 0.32477 0.31156 4.67974 + -10.85000 11.77920 55.12361 3.66997 0.33544 0.31156 4.67974 + -10.91000 12.45060 58.26559 3.87915 0.34495 0.31156 4.67974 + -10.97000 13.12200 61.40757 4.08834 0.35350 0.31156 4.67974 + -11.03000 13.79340 64.54955 4.29752 0.36121 0.31156 4.67974 + -11.09000 14.46480 66.90603 4.45441 0.36821 0.31156 4.67974 + -11.09000 14.46480 46.13720 2.27861 0.58465 0.15607 3.16018 + -11.19000 15.00380 46.33948 2.51451 0.58877 0.16759 3.08852 + -11.29000 15.54280 46.84522 2.81502 0.59260 0.18111 3.01395 + -11.39000 16.08180 47.52212 3.10969 0.59618 0.19337 2.95502 + -11.49000 16.62080 48.30334 3.40222 0.59952 0.20470 2.90620 + -11.59000 17.15980 48.93401 3.62096 0.60266 0.21268 2.87424 + -11.59000 17.15980 49.33230 3.75349 0.60266 0.21734 2.85648 + -11.67200 17.60178 49.88585 3.93249 0.60508 0.22341 2.83414 + -11.75400 18.04376 50.64361 4.17102 0.60739 0.23116 2.80671 + -11.83600 18.48574 51.42059 4.40943 0.60959 0.23853 2.78164 + -11.91800 18.92772 52.21292 4.64777 0.61168 0.24555 2.75854 + -12.00000 19.36970 52.81517 4.82651 0.61368 0.25061 2.74233 + -12.00000 19.36970 36.01071 8.96387 0.64866 0.48020 1.92912 + -12.10000 16.55870 32.52395 7.58633 0.63552 0.45815 1.96416 + -12.20000 13.74770 27.90549 5.74959 0.59244 0.41822 2.02983 + -12.30000 10.93670 23.31663 3.91283 0.52720 0.35777 2.13196 + -12.40000 8.12570 18.75096 2.07605 0.41683 0.25549 2.30761 + -12.50000 5.31470 15.33841 0.69846 0.18971 0.11607 2.54899 + -12.50000 5.31470 25.72539 1.82911 0.32252 0.32252 4.53603 + -12.64000 6.74130 30.43947 2.17470 0.32259 0.32259 4.51537 + -12.78000 8.16790 36.66750 2.63581 0.32270 0.32270 4.48922 + -12.92000 9.59450 42.84191 3.09731 0.32282 0.32282 4.46526 + -13.06000 11.02110 48.97973 3.55919 0.32294 0.32294 4.44418 + -13.20000 12.44770 53.56826 3.90582 0.32303 0.32303 4.43041 + -13.20000 12.44770 56.62235 4.13701 0.32309 0.32309 4.42212 + -13.34000 13.87430 61.19951 4.48395 0.32318 0.32318 4.41100 + -13.48000 15.30090 67.29997 4.94673 0.32330 0.32330 4.39843 + -13.62000 16.72750 73.40166 5.40973 0.32340 0.32340 4.38808 + -13.76000 18.15410 79.50762 5.87288 0.32350 0.32350 4.37960 + -13.90000 19.58070 84.09069 6.22033 0.32357 0.32357 4.37424 + -13.90000 19.58070 87.14823 6.45199 0.32361 0.32361 4.37110 + -14.04000 21.00730 91.73791 6.79952 0.32367 0.32367 4.36695 + -14.18000 22.43390 97.86308 7.26294 0.32375 0.32375 4.36229 + -14.32000 23.86050 103.99476 7.72639 0.32382 0.32382 4.35845 + -14.46000 25.28710 110.13252 8.18985 0.32387 0.32387 4.35528 + -14.60000 26.71370 114.73936 8.53744 0.32391 0.32391 4.35327 + -14.60000 26.71370 117.81233 8.76916 0.32394 0.32394 4.35208 + -14.74000 28.14030 122.42419 9.11674 0.32397 0.32397 4.35049 + -14.88000 29.56690 128.57702 9.58016 0.32402 0.32402 4.34868 + -15.02000 30.99350 134.73382 10.04355 0.32405 0.32405 4.34716 + -15.16000 32.42010 140.89414 10.50691 0.32409 0.32409 4.34589 + -15.30000 33.84670 145.51635 10.85440 0.32445 0.32411 4.34506 + -15.30000 33.84670 148.59877 11.08606 0.32445 0.32412 4.34457 + -15.44000 35.27330 153.22370 11.43352 0.33034 0.32414 4.34390 + -15.58000 36.69990 159.39224 11.89677 0.33577 0.32416 4.34312 + -15.72000 38.12650 165.56288 12.36000 0.34080 0.32418 4.34246 + -15.86000 39.55310 171.73536 12.82319 0.34546 0.32420 4.34189 + -16.00000 40.97970 176.36576 13.17056 0.34980 0.32421 4.34152 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -40575,66 +40711,66 @@ Status character 78.00108 0.00000 78.00108 78.00108 1 100 A 78.00144 0.00000 78.00144 78.00144 1 100 A 78.00171 0.00000 78.00171 78.00171 1 100 A - 78.00210 0.00000 78.00210 78.00210 1 99 A + 78.00210 0.00000 78.00210 78.00210 1 100 A 78.00300 0.00000 78.00300 78.00300 302 100 P 78.00420 0.00000 78.00420 78.00420 302 100 P 78.00540 0.00000 78.00540 78.00540 302 100 P 78.00660 0.00000 78.00660 78.00660 302 100 P 78.00750 0.00000 78.00750 78.00750 302 100 P - 35.27031 66.90000 52.76713 6.06759 220 67 2 - 37.08447 67.48860 55.12361 6.33722 220 67 2 - 39.12283 68.07720 58.26559 6.69717 220 67 2 - 41.08052 68.66580 61.40757 7.05712 220 67 2 - 42.96031 69.25440 64.54955 7.41707 220 67 2 - 44.45733 69.84300 66.90603 7.68677 220 66 2 - 12.82003 69.84300 46.13720 11.00944 110 28 1 - 13.18238 70.82400 46.33948 11.31308 110 28 1 - 13.63952 71.80500 46.84522 11.71833 110 29 1 - 14.09150 72.78600 47.52212 12.12358 110 30 1 - 14.53996 73.76700 48.30334 12.52884 110 30 1 - 14.88498 74.74800 48.93401 12.83252 110 30 1 - 15.01873 74.74800 49.33230 13.01737 110 30 1 - 11.24195 75.55242 49.88585 13.26528 110 0 1 - 11.27520 76.35684 50.64361 13.59648 110 0 1 - 11.31010 77.16126 51.42059 13.92767 110 0 1 - 11.50649 77.96568 52.21292 14.25886 110 0 1 - 11.78535 78.77010 52.81517 14.50683 110 0 1 - 16.78244 78.77010 36.01071 14.74262 110 47 1 - 15.20426 82.75110 32.52395 12.96518 110 47 1 - 13.13198 86.73210 27.90549 10.66868 110 47 1 - 11.02881 90.71310 23.31663 8.37217 110 47 1 - 9.43640 94.69410 18.75096 6.07566 220 50 2 - 7.95663 98.67510 15.33841 4.27886 220 52 2 - 19.86440 98.67510 25.72539 2.68558 220 77 2 - 21.00975 100.04850 30.43947 3.23071 220 69 2 - 22.71105 101.42190 36.66750 3.94474 220 62 2 - 24.36302 102.79530 42.84191 4.65876 220 57 2 - 25.98339 104.16870 48.97973 5.37278 220 53 2 - 27.81916 105.54210 53.56826 5.91241 220 52 2 - 29.26552 105.54210 56.62235 7.79026 220 52 2 - 31.82010 106.91550 61.19951 6.54778 220 52 2 - 35.38801 108.28890 67.29997 7.24917 220 53 2 - 39.08278 109.66230 73.40166 7.95056 220 53 2 - 42.90720 111.03570 79.50762 8.65196 220 54 2 - 46.25523 112.40910 84.09069 9.18299 220 55 2 - 47.46979 112.40910 87.14823 9.52372 220 54 2 - 50.94736 113.78250 91.73791 10.05474 220 56 2 - 55.15426 115.15590 97.86308 10.75614 220 56 2 - 59.47422 116.52930 103.99476 11.45753 220 57 2 - 63.89815 117.90270 110.13252 12.15892 220 58 2 - 87.65660 119.27610 114.73936 12.68862 220 76 2 - 88.09801 119.27610 117.81233 13.03201 220 75 2 - 102.49024 120.64950 122.42419 13.56171 220 84 2 - 108.25415 122.02290 128.57702 14.26310 220 84 2 - 114.03395 123.39630 134.73382 14.96450 220 85 2 - 119.82670 124.76970 140.89414 15.66589 220 85 2 - 124.08461 126.14310 145.51635 16.19482 220 85 2 - 127.17450 126.14310 148.59877 16.53975 220 86 2 - 131.43984 127.51650 153.22370 17.06867 220 86 2 - 137.25581 128.88990 159.39224 17.77007 220 86 2 - 143.07614 130.26330 165.56288 18.47146 220 86 2 - 148.89956 131.63670 171.73536 19.17285 220 87 2 - 153.17793 133.01010 176.36576 19.70128 220 87 2 + 35.31850 66.90000 52.76713 3.66196 220 67 2 + 37.13754 67.48860 55.12361 3.95117 220 67 2 + 39.18082 68.07720 58.26559 4.29489 220 67 2 + 41.14349 68.66580 61.40757 4.63860 220 67 2 + 43.02829 69.25440 64.54955 4.98232 220 67 2 + 44.53035 69.84300 66.90603 5.26424 220 67 2 + 10.37092 69.84300 46.13720 8.53563 110 22 1 + 10.72960 70.82400 46.33948 8.83377 110 23 1 + 11.16005 71.80500 46.84522 9.21069 110 24 1 + 11.58511 72.78600 47.52212 9.58761 110 24 1 + 12.00641 73.76700 48.30334 9.96453 110 25 1 + 12.34436 74.74800 48.93401 10.26024 110 25 1 + 12.44105 74.74800 49.33230 10.40804 110 25 1 + 11.30407 75.55242 49.88585 10.65052 110 23 1 + 11.33881 76.35684 50.64361 10.95960 110 22 1 + 11.37499 77.16126 51.42059 11.26867 110 22 1 + 11.58664 77.96568 52.21292 11.57774 110 22 1 + 11.83393 78.77010 52.81517 11.81901 110 22 1 + 16.84267 78.77010 36.01071 12.10853 110 47 1 + 15.26786 82.75110 32.52395 10.52341 110 47 1 + 13.19894 86.73210 27.90549 8.14463 110 47 1 + 11.09914 90.71310 23.31663 5.76584 110 48 1 + 8.97253 94.69410 18.75096 3.38705 110 48 1 + 7.28236 98.67510 15.33841 1.14159 110 47 1 + 19.98014 98.67510 25.72539 1.82911 220 78 2 + 21.13282 100.04850 30.43947 2.17470 220 69 2 + 22.84166 101.42190 36.66750 2.63581 220 62 2 + 24.50142 102.79530 42.84191 3.09731 220 57 2 + 26.12984 104.16870 48.97973 3.55919 220 53 2 + 27.89141 105.54210 53.56826 3.90582 220 52 2 + 29.33738 105.54210 56.62235 4.13701 220 52 2 + 31.29908 106.91550 61.19951 4.48395 220 51 2 + 34.41751 108.28890 67.29997 4.94673 220 51 2 + 38.08923 109.66230 73.40166 5.40973 220 52 2 + 41.88877 111.03570 79.50762 5.87288 220 53 2 + 45.21694 112.40910 84.09069 6.22033 220 54 2 + 46.41775 112.40910 87.14823 6.45199 220 53 2 + 49.87360 113.78250 91.73791 6.79952 220 54 2 + 54.05011 115.15590 97.86308 7.26294 220 55 2 + 58.33802 116.52930 103.99476 7.72639 220 56 2 + 62.72842 117.90270 110.13252 8.18985 220 57 2 + 85.93698 119.27610 114.73936 8.53744 220 75 2 + 86.13932 119.27610 117.81233 8.76916 220 73 2 + 102.07745 120.64950 122.42419 9.11674 220 83 2 + 107.84712 122.02290 128.57702 9.58016 220 84 2 + 113.63200 123.39630 134.73382 10.04355 220 84 2 + 119.42927 124.76970 140.89414 10.50691 220 85 2 + 123.70588 126.14310 145.51635 10.86578 220 85 2 + 126.78906 126.14310 148.59877 11.09721 220 85 2 + 131.26886 127.51650 153.22370 11.65211 220 86 2 + 137.29576 128.88990 159.39224 12.32273 220 86 2 + 143.32689 130.26330 165.56288 12.99335 220 87 2 + 149.36103 131.63670 171.73536 13.66396 220 87 2 + 153.72779 133.01010 176.36576 14.20983 220 87 2 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40648,10 +40784,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 59.453 'OWB' - -10.79 12.007 'Grind' - -11.09 11.747 'Hydrobiaklei' - -12.00 6.117 'Basisveen' - -12.50 259.483 'Eerste zandlaag' + -10.79 12.025 'Grind' + -11.09 10.419 'Hydrobiaklei' + -12.00 6.060 'Basisveen' + -12.50 257.894 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40667,10 +40803,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 3.97 'Grind' - -11.09 2.01 'Hydrobiaklei' + -10.79 3.98 'Grind' + -11.09 1.78 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 81.47 'Eerste zandlaag' + -12.50 80.97 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -40696,30 +40832,30 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 11.64883 1 3 0 1.000 0 0 - -0.04224 -0.03002 0.01149 0.00000 11.69331 1 6 5 1.000 0 0 - -0.03129 -0.02224 0.01149 0.00000 15.22064 1 7 6 1.000 0 0 - 109.31975 148.14320 -16.85913 14.32592 17.55539 2 3 0 1.000 2 0 - -662.21885 285.10458 613.34592 25.96347 32.02058 2 6 5 1.000 2 0 - -640.71367 313.33269 1136.05037 46.95647 53.52634 2 7 6 1.000 2 0 - 108.06939 148.14320 -14.88871 10.50685 13.40614 3 3 0 1.000 2 0 - -686.63650 270.34854 614.99391 32.66308 31.16579 3 6 5 1.000 0 0 - -634.64252 286.23136 1138.21168 61.94603 59.24110 3 7 6 1.000 0 0 - 9.33732 -6.18473 -4.89616 9.79090 10.08821 4 3 0 1.000 2 0 - -603.53611 276.97355 602.40180 29.03612 32.17758 4 6 5 1.000 2 0 - -471.76120 252.46256 1117.00761 49.03107 52.60791 4 7 6 1.000 2 0 - 195.08150 156.84134 -13.86272 0.00000 12.32495 5 3 0 1.000 0 0 - -534.01195 257.71652 614.98775 0.00000 52.60239 5 6 5 1.000 0 0 - -357.13920 170.86840 1128.75504 0.00000 79.80886 5 7 6 1.000 0 0 - 321.48472 298.52754 -21.78941 0.00000 17.61479 6 3 0 1.000 0 0 - -639.72238 338.85314 623.71231 0.00000 46.75713 6 6 5 1.000 0 0 - -469.40377 252.00707 1137.31851 0.00000 64.64225 6 7 6 1.000 0 0 - 14.96854 12.20146 -8.20417 0.00000 24.30912 7 3 0 1.000 2 0 - -547.23598 219.25632 600.38294 0.00000 48.64532 7 6 5 1.000 2 0 - -400.10794 132.49972 1113.42073 0.00000 64.49229 7 7 6 1.000 2 0 - 432.08663 439.90000 -59.95299 0.00000 28.10901 8 3 0 1.000 1 0 - -755.30201 653.25193 540.61347 0.00000 54.50926 8 6 5 1.000 1 0 - -573.01963 571.87045 1045.33493 0.00000 71.41770 8 7 6 1.000 1 0 + 0.00000 0.00000 0.00000 0.00000 11.59829 1 3 0 1.000 0 0 + -0.04252 -0.03005 0.01142 0.00000 11.63909 1 6 5 1.000 0 0 + -0.03146 -0.02226 0.01144 0.00000 15.15867 1 7 6 1.000 0 0 + 109.40263 148.14320 -16.88601 14.27100 17.50031 2 3 0 1.000 2 0 + -662.30097 284.79837 613.81681 25.94758 32.00320 2 6 5 1.000 2 0 + -640.47078 311.65193 1135.12301 46.71801 53.31241 2 7 6 1.000 2 0 + 108.11718 148.14320 -14.90904 10.48670 13.38439 3 3 0 1.000 2 0 + -686.89718 270.71401 615.44884 32.66733 31.16435 3 6 5 1.000 0 0 + -634.04284 284.08725 1137.25995 61.62309 58.93518 3 7 6 1.000 0 0 + 9.35111 -6.21141 -4.89757 9.77735 10.07546 4 3 0 1.000 2 0 + -604.04263 277.14560 602.87029 29.06145 32.20327 4 6 5 1.000 2 0 + -470.95602 251.03523 1116.07291 48.63004 52.21190 4 7 6 1.000 2 0 + 195.11073 156.84505 -13.86060 0.00000 12.33148 5 3 0 1.000 0 0 + -534.33744 257.85509 615.45612 0.00000 52.62917 5 6 5 1.000 0 0 + -357.05765 171.02980 1127.84265 0.00000 79.02855 5 7 6 1.000 0 0 + 321.50569 298.53019 -21.78755 0.00000 17.62783 6 3 0 1.000 0 0 + -639.94104 338.80387 624.18083 0.00000 46.77720 6 6 5 1.000 0 0 + -468.89396 252.12194 1136.37244 0.00000 63.51236 6 7 6 1.000 0 0 + 14.92463 12.17985 -8.20559 0.00000 24.35007 7 3 0 1.000 2 0 + -547.57849 219.14874 600.85010 0.00000 48.68733 7 6 5 1.000 2 0 + -398.49268 133.87618 1112.44224 0.00000 63.67579 7 7 6 1.000 2 0 + 432.08677 439.90000 -59.95396 0.00000 28.14703 8 3 0 1.000 1 0 + -755.64168 653.25193 541.07895 0.00000 54.54914 8 6 5 1.000 1 0 + -571.68354 571.87045 1044.39402 0.00000 70.81250 8 7 6 1.000 1 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -40740,39 +40876,39 @@ CalculationStatus AnchorName [END OF COLUMN INDICATION] [DATA] - 2 3 7 0 1.000 94.38245 1 1 0 0 'Stempelraam boven dek' + 2 3 7 0 1.000 94.35084 1 1 0 0 'Stempelraam boven dek' 2 6 7 5 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 2 7 7 6 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' - 3 3 7 0 1.000 94.65482 1 1 0 0 'Stempelraam boven dek' + 3 3 7 0 1.000 94.63746 1 1 0 0 'Stempelraam boven dek' 3 6 7 5 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' - 3 7 7 6 1.000 0.92544 1 1 0 0 'Stempelraam boven dek' - 4 3 7 0 1.000 240.64153 1 1 0 0 'Stempelraam boven dek' - 4 6 7 5 1.000 422.37098 1 1 0 0 'Stempelraam boven dek' - 4 7 7 6 1.000 362.96436 1 1 0 0 'Stempelraam boven dek' - 5 3 7 0 1.000 364.05324 1 1 0 0 'Stempelraam boven dek' - 5 3 7 0 1.000 256.57314 1 1 0 0 'Onderwaterbeton 2-laags' - 5 6 7 5 1.000 590.67074 1 1 0 0 'Stempelraam boven dek' - 5 6 7 5 1.000 321.98456 1 1 0 0 'Onderwaterbeton 2-laags' - 5 7 7 6 1.000 485.29593 1 1 0 0 'Stempelraam boven dek' - 5 7 7 6 1.000 208.75178 1 1 0 0 'Onderwaterbeton 2-laags' - 6 3 7 0 1.000 397.57381 1 1 0 0 'Stempelraam boven dek' - 6 3 7 0 1.000 436.54719 1 1 0 0 'Onderwaterbeton 2-laags' - 6 6 7 5 1.000 637.35155 1 1 0 0 'Stempelraam boven dek' - 6 6 7 5 1.000 552.14744 1 1 0 0 'Onderwaterbeton 2-laags' - 6 7 7 6 1.000 519.40677 1 1 0 0 'Stempelraam boven dek' - 6 7 7 6 1.000 384.80853 1 1 0 0 'Onderwaterbeton 2-laags' - 7 3 7 0 1.000 439.39446 1 1 0 0 'Stempelraam boven dek' - 7 3 7 0 1.000 521.71299 1 1 0 0 'Onderwaterbeton 2-laags' - 7 6 7 5 1.000 723.86082 1 1 0 0 'Stempelraam boven dek' - 7 6 7 5 1.000 702.19507 1 1 0 0 'Onderwaterbeton 2-laags' - 7 7 7 6 1.000 623.49628 1 1 0 0 'Stempelraam boven dek' - 7 7 7 6 1.000 604.52357 1 1 0 0 'Onderwaterbeton 2-laags' - 8 3 7 0 1.000 394.77247 1 1 0 0 'Onderwaterbeton 2-laags' - 8 3 7 0 1.000 522.76134 1 1 0 0 'Dek' - 8 6 7 5 1.000 508.31909 1 1 0 0 'Onderwaterbeton 2-laags' - 8 6 7 5 1.000 849.04946 1 1 0 0 'Dek' - 8 7 7 6 1.000 443.88205 1 1 0 0 'Onderwaterbeton 2-laags' - 8 7 7 6 1.000 726.20757 1 1 0 0 'Dek' + 3 7 7 6 1.000 0.88684 1 1 0 0 'Stempelraam boven dek' + 4 3 7 0 1.000 240.63970 1 1 0 0 'Stempelraam boven dek' + 4 6 7 5 1.000 422.41999 1 1 0 0 'Stempelraam boven dek' + 4 7 7 6 1.000 362.88527 1 1 0 0 'Stempelraam boven dek' + 5 3 7 0 1.000 364.04948 1 1 0 0 'Stempelraam boven dek' + 5 3 7 0 1.000 256.65272 1 1 0 0 'Onderwaterbeton 2-laags' + 5 6 7 5 1.000 590.71942 1 1 0 0 'Stempelraam boven dek' + 5 6 7 5 1.000 321.90791 1 1 0 0 'Onderwaterbeton 2-laags' + 5 7 7 6 1.000 485.27808 1 1 0 0 'Stempelraam boven dek' + 5 7 7 6 1.000 210.05669 1 1 0 0 'Onderwaterbeton 2-laags' + 6 3 7 0 1.000 397.57110 1 1 0 0 'Stempelraam boven dek' + 6 3 7 0 1.000 436.62574 1 1 0 0 'Onderwaterbeton 2-laags' + 6 6 7 5 1.000 637.40080 1 1 0 0 'Stempelraam boven dek' + 6 6 7 5 1.000 552.06570 1 1 0 0 'Onderwaterbeton 2-laags' + 6 7 7 6 1.000 519.29195 1 1 0 0 'Stempelraam boven dek' + 6 7 7 6 1.000 386.83673 1 1 0 0 'Onderwaterbeton 2-laags' + 7 3 7 0 1.000 439.39257 1 1 0 0 'Stempelraam boven dek' + 7 3 7 0 1.000 521.73644 1 1 0 0 'Onderwaterbeton 2-laags' + 7 6 7 5 1.000 723.90496 1 1 0 0 'Stempelraam boven dek' + 7 6 7 5 1.000 702.06161 1 1 0 0 'Onderwaterbeton 2-laags' + 7 7 7 6 1.000 623.28814 1 1 0 0 'Stempelraam boven dek' + 7 7 7 6 1.000 607.20880 1 1 0 0 'Onderwaterbeton 2-laags' + 8 3 7 0 1.000 394.79156 1 1 0 0 'Onderwaterbeton 2-laags' + 8 3 7 0 1.000 522.75985 1 1 0 0 'Dek' + 8 6 7 5 1.000 508.19628 1 1 0 0 'Onderwaterbeton 2-laags' + 8 6 7 5 1.000 849.09189 1 1 0 0 'Dek' + 8 7 7 6 1.000 446.32362 1 1 0 0 'Onderwaterbeton 2-laags' + 8 7 7 6 1.000 726.01924 1 1 0 0 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -40784,18 +40920,18 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Stempelraam boven dek' 723.86082 -'Onderwaterbeton 2-laags' 702.19507 -'Dek' 849.04946 +'Stempelraam boven dek' 723.90496 +'Onderwaterbeton 2-laags' 702.06161 +'Dek' 849.09189 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-755.30201 +MaximumMoment=-755.64168 MaximumShearForce=653.25193 -MaximumDisplacement=-59.95299 -MaximumPercentageMobilisedMoment=61.94603 -MaximumPercentageMobilisedResistance=79.80886 +MaximumDisplacement=-59.95396 +MaximumPercentageMobilisedMoment=61.62309 +MaximumPercentageMobilisedResistance=79.02855 VerticalBalanceSummary=1 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shi index a18848ba..7698e693 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects18.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:04:22 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects18.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:52:00 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects18.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1278,6 +1278,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1287,6 +1288,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1296,6 +1298,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1305,6 +1308,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1314,6 +1318,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1323,6 +1328,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1332,6 +1338,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1341,6 +1348,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1364,7 +1372,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1375,8 +1383,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1387,7 +1397,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1406,6 +1416,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1433,6 +1444,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1460,6 +1472,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1487,6 +1500,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1514,6 +1528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1541,6 +1556,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1568,6 +1584,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1595,6 +1612,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1605,7 +1623,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1620,8 +1694,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1631,8 +1706,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1649,6 +1724,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1658,7 +1734,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1676,6 +1808,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1703,6 +1836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1730,6 +1864,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shd index 82e66964..85e75b47 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:06:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects19.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:53:42 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects19.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1279,6 +1279,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1288,6 +1289,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1297,6 +1299,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1306,6 +1309,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1315,6 +1319,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1324,6 +1329,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1333,6 +1339,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1342,6 +1349,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1365,7 +1373,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1376,8 +1384,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1388,7 +1398,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1407,6 +1417,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1434,6 +1445,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1461,6 +1473,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1488,6 +1501,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1515,6 +1529,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1542,6 +1557,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1569,6 +1585,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1596,6 +1613,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1606,7 +1624,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1621,8 +1695,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1632,8 +1707,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1650,6 +1725,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1659,7 +1735,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1677,6 +1809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1704,6 +1837,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1731,6 +1865,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1803,6 +1938,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1821,13 +1957,13 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 4 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 5 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 6 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 7 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 8 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 4 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 5 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 6 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 7 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 8 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2046,7 +2182,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 106.43686 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 106.42705 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -2071,20 +2207,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.47 : Percentage mobilized resistance left - 15.56 : Percentage mobilized resistance right - 195.98 : Effective left - 275.61 : Effective right + 7.44 : Percentage mobilized resistance left + 15.52 : Percentage mobilized resistance right + 195.25 : Effective left + 274.88 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2624.30 : Max effective resistance left - 1770.89 : Max effective resistance right + 1770.88 : Max effective resistance right -28277.17 : Max moment left --19652.96 : Max moment right --2073.37 : Max mobilized moment left --2363.27 : Max mobilized moment right - 59.17 : Vertical force left - 72.41 : Vertical force right +-19652.89 : Max moment right +-2065.12 : Max mobilized moment left +-2355.07 : Max mobilized moment right + 58.89 : Vertical force left + 72.20 : Vertical force right 7.3 : Max mobilized moment percentage left 12.0 : Max mobilized moment percentage right -2.43 : Level of single support @@ -2093,17 +2229,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --59.17 : Active force -72.41 : Passive force --59.17 : Plugged active force -72.41 : Plugged passive force +-58.89 : Active force +72.20 : Passive force +-58.89 : Plugged active force +72.20 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.24 : Resulting Vertical Force Unplugged -13.24 : Resulting Vertical Force Plugged +13.31 : Resulting Vertical Force Unplugged +13.31 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -2116,192 +2252,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -13.37794 - 0.00000 0.00000 -13.01202 - 0.00000 0.00000 -12.64610 - 0.00000 0.00000 -12.28017 - 0.00000 0.00000 -11.91425 - 0.00000 0.00000 -11.54833 - 0.00000 0.00000 -11.54833 - 0.00000 0.00000 -11.18240 - 0.00000 0.00000 -10.81648 - 0.00000 0.00000 -10.45056 - 0.00000 0.00000 -10.08464 - 0.00000 0.00000 -9.71871 - 0.00000 0.00000 -9.71871 - -0.00283 -0.07063 -9.23082 - -0.02260 -0.28253 -8.74293 - -0.07628 -0.63569 -8.25503 - -0.18082 -1.13011 -7.76710 - -0.35316 -1.76580 -7.27915 - -0.35316 -1.76580 -7.27915 - -0.56080 -2.40345 -6.87248 - -0.83712 -3.13920 -6.46574 - -1.19191 -3.97305 -6.05889 - -1.63500 -4.90500 -5.65188 - -2.17618 -5.93505 -5.24466 - -2.17618 -5.93505 -5.24466 - -2.82528 -7.06320 -4.83719 - -3.59209 -8.28945 -4.42936 - -4.48644 -9.61380 -4.02107 - -5.51812 -11.03625 -3.61219 - -6.69696 -12.55680 -3.20262 - -6.69696 148.14320 -3.20262 - 5.98427 146.75707 -2.84995 - 18.54318 145.29838 -2.49784 - 30.97351 143.76714 -2.14745 - 43.26904 142.16334 -1.79993 - 55.42353 140.48699 -1.45644 - 55.42353 34.05013 -1.45644 - 59.17342 31.71615 -1.00898 - 62.64997 29.25469 -0.57121 - 65.83864 26.66573 -0.14366 - 68.72491 23.94928 0.27317 - 71.29423 21.10534 0.67873 - 71.29520 21.08640 0.67873 - 72.90727 19.30009 0.95637 - 74.39428 17.92885 1.22813 - 75.78350 16.84282 1.49390 - 77.09571 16.00336 1.75356 - 78.34992 15.38461 2.00700 - 78.34964 15.38256 2.00700 - 78.65618 15.27281 2.06938 - 78.96065 15.17661 2.13136 - 79.26334 15.09535 2.19295 - 79.56456 15.02899 2.25413 - 79.86459 14.97605 2.31491 - 79.86455 14.97649 2.31491 - 81.27569 13.25525 2.61275 - 82.51740 11.58784 2.90034 - 83.59501 9.97314 3.17756 - 84.51376 8.41044 3.44426 - 85.27880 6.89869 3.70032 - 85.27862 6.90413 3.70032 - 85.89516 5.43139 3.94561 - 86.36564 3.98092 4.18008 - 86.69188 2.54669 4.40368 - 86.87551 1.12863 4.61638 - 86.91814 -0.27346 4.81813 - 86.91816 -0.27296 4.81813 - 86.82144 -1.65908 5.00891 - 86.58684 -3.03036 5.18876 - 86.21586 -4.38692 5.35771 - 85.70993 -5.72930 5.51581 - 85.07044 -7.05830 5.66312 - 85.07040 -7.05764 5.66312 - 83.95337 -8.89595 5.85131 - 82.58062 -10.71099 6.01877 - 80.95532 -12.50416 6.16589 - 79.08039 -14.27731 6.29308 - 76.95849 -16.03296 6.40074 - 76.95842 -16.03147 6.40074 - 74.84797 -16.41213 6.48365 - 72.69878 -16.61929 6.55062 - 70.53547 -16.63003 6.60212 - 68.38254 -16.46619 6.63860 - 66.26058 -16.15636 6.66052 - 66.26075 -16.15507 6.66052 - 64.11055 -17.12799 6.66831 - 61.78963 -18.51262 6.66245 - 59.31439 -19.50205 6.64347 - 56.73622 -20.09628 6.61188 - 54.10649 -20.29531 6.56821 - 54.10649 -20.29531 6.56821 - 51.07221 -20.29695 6.50376 - 48.03770 -20.29860 6.42493 - 45.00293 -20.30024 6.33258 - 41.96792 -20.30189 6.22755 - 38.93267 -20.30353 6.11071 - 38.93267 -20.30353 6.11071 - 35.88941 -20.46077 5.98288 - 32.78659 -21.18613 5.84493 - 29.53267 -22.35492 5.69780 - 26.09923 -23.58858 5.54239 - 22.47683 -24.87939 5.37963 - 22.47588 -24.87456 5.37963 - 18.65231 -26.28549 5.21050 - 14.61372 -27.75262 5.03614 - 10.41773 -27.94649 4.85769 - 6.35049 -26.27882 4.67629 - 2.58921 -24.03221 4.49307 - 2.59052 -24.02313 4.49307 - -0.83335 -21.74386 4.30920 - -3.90331 -19.31229 4.12558 - -6.60366 -16.79932 3.94295 - -8.92224 -14.20483 3.76209 - -10.84938 -11.57963 3.58375 - -10.84860 -11.56693 3.58375 - -10.87170 -11.53181 3.58139 - -10.89472 -11.49672 3.57902 - -10.91768 -11.46164 3.57666 - -10.94057 -11.42659 3.57429 - -10.96339 -11.39156 3.57193 - -10.96339 -11.39157 3.57193 - -11.38645 -10.87715 3.52714 - -11.79022 -10.37631 3.48255 - -12.17522 -9.88899 3.43818 - -12.54196 -9.41512 3.39403 - -12.89094 -8.95465 3.35011 - -12.89089 -8.95518 3.35011 - -13.88215 -7.58786 3.21299 - -14.71719 -6.35100 3.07839 - -15.41151 -5.24208 2.94644 - -15.98030 -4.25850 2.81726 - -16.43846 -3.39759 2.69099 - -16.43851 -3.39824 2.69099 - -16.62511 -2.87319 2.62897 - -16.78668 -2.51750 2.56771 - -16.92779 -2.19103 2.50721 - -17.05018 -1.89342 2.44748 - -17.15557 -1.62431 2.38851 - -17.15555 -1.62466 2.38851 - -17.29246 -1.36369 2.30058 - -17.40282 -1.07238 2.21445 - -17.48951 -0.84313 2.13013 - -17.55812 -0.67462 2.04763 - -17.61410 -0.56553 1.96697 - -17.61419 -0.56375 1.96697 - -17.61851 0.21621 1.88814 - -17.59867 0.21050 1.81116 - -17.58188 0.14940 1.73601 - -17.57312 0.03423 1.66269 - -17.57725 -0.13369 1.59120 - -17.57724 -0.13409 1.59120 - -17.63814 -1.08896 1.51476 - -17.79605 -2.07413 1.44053 - -18.05394 -3.08856 1.36856 - -18.41470 -4.13136 1.29887 - -18.88113 -5.20170 1.23151 - -18.88220 -5.18035 1.23151 - -19.42757 -2.64206 1.14124 - -19.63308 -0.34169 1.05576 - -19.53627 1.67945 0.97507 - -19.17512 3.43740 0.89915 - -18.58534 4.94807 0.82796 - -18.58523 4.94248 0.82796 - -17.78767 6.36596 0.76143 - -16.81958 7.42899 0.69929 - -15.71698 8.29007 0.64127 - -14.50716 8.96260 0.58711 - -13.21566 9.45904 0.53653 - -13.21576 9.45447 0.53653 - -11.98244 8.55009 0.48924 - -10.77123 8.72806 0.44491 - -9.54533 8.76146 0.40323 - -8.32437 8.65870 0.36391 - -7.12690 8.42716 0.32665 - -7.12699 8.42467 0.32665 - -5.97091 8.07088 0.29114 - -4.87261 7.60010 0.25710 - -3.84813 7.01690 0.22428 - -2.91295 6.32496 0.19242 - -2.08209 5.52707 0.16129 - -2.08215 5.52628 0.16129 - -1.37038 4.62459 0.13064 - -0.79205 3.62033 0.10031 - -0.36143 2.51449 0.07022 - -0.09271 1.30766 0.04026 - 0.00001 0.00005 0.01031 + 0.00000 0.00000 -13.39028 + 0.00000 0.00000 -13.02398 + 0.00000 0.00000 -12.65767 + 0.00000 0.00000 -12.29136 + 0.00000 0.00000 -11.92506 + 0.00000 0.00000 -11.55875 + 0.00000 0.00000 -11.55875 + 0.00000 0.00000 -11.19245 + 0.00000 0.00000 -10.82614 + 0.00000 0.00000 -10.45983 + 0.00000 0.00000 -10.09353 + 0.00000 0.00000 -9.72722 + 0.00000 0.00000 -9.72722 + -0.00283 -0.07063 -9.23882 + -0.02260 -0.28253 -8.75042 + -0.07628 -0.63569 -8.26200 + -0.18082 -1.13011 -7.77357 + -0.35316 -1.76580 -7.28510 + -0.35316 -1.76580 -7.28510 + -0.56080 -2.40345 -6.87801 + -0.83712 -3.13920 -6.47085 + -1.19191 -3.97305 -6.06357 + -1.63500 -4.90500 -5.65613 + -2.17618 -5.93505 -5.24849 + -2.17618 -5.93505 -5.24849 + -2.82528 -7.06320 -4.84059 + -3.59209 -8.28945 -4.43234 + -4.48644 -9.61380 -4.02361 + -5.51812 -11.03625 -3.61431 + -6.69696 -12.55680 -3.20432 + -6.69696 148.14320 -3.20432 + 5.98427 146.75707 -2.85128 + 18.54318 145.29838 -2.49880 + 30.97351 143.76714 -2.14805 + 43.26904 142.16334 -1.80016 + 55.42353 140.48699 -1.45631 + 55.42353 34.05993 -1.45631 + 59.17453 31.72596 -1.00836 + 62.65220 29.26449 -0.57011 + 65.84199 26.67554 -0.14207 + 68.72938 23.95909 0.27524 + 71.29982 21.11515 0.68129 + 71.30079 21.09619 0.68129 + 72.91366 19.31021 0.95927 + 74.40151 17.94010 1.23136 + 75.79169 16.85571 1.49747 + 77.10501 16.01804 1.75747 + 78.36047 15.40125 2.01125 + 78.36019 15.39920 2.01125 + 78.66706 15.28995 2.07371 + 78.97188 15.19428 2.13578 + 79.27494 15.11356 2.19744 + 79.57652 15.04774 2.25871 + 79.87693 14.99535 2.31958 + 79.87690 14.99579 2.31958 + 81.29001 13.27553 2.61783 + 82.53380 11.60917 2.90584 + 83.61360 9.99562 3.18347 + 84.53466 8.43414 3.45059 + 85.30213 6.92370 3.70705 + 85.30195 6.92915 3.70705 + 85.92105 5.45737 3.95275 + 86.39416 4.00748 4.18762 + 86.72309 2.57387 4.41162 + 86.90947 1.15646 4.62471 + 86.95491 -0.24495 4.82686 + 86.95494 -0.24444 4.82686 + 86.86107 -1.63022 5.01802 + 86.62940 -3.00075 5.19825 + 86.26142 -4.35653 5.36757 + 85.75857 -5.69811 5.52605 + 85.12224 -7.02628 5.67372 + 85.12220 -7.02562 5.67372 + 84.00974 -8.86271 5.86241 + 82.64173 -10.67648 6.03035 + 81.02135 -12.46833 6.17794 + 79.15153 -14.24010 6.30559 + 77.03494 -15.99432 6.41368 + 77.03487 -15.99283 6.41368 + 74.92502 -16.42364 6.49697 + 72.77456 -16.62728 6.56432 + 70.61045 -16.63442 6.61617 + 68.45714 -16.46800 6.65299 + 66.33505 -16.15665 6.67523 + 66.33521 -16.15536 6.67523 + 64.18497 -17.12828 6.68333 + 61.86401 -18.51291 6.67777 + 59.38874 -19.50234 6.65906 + 56.81053 -20.09657 6.62773 + 54.18076 -20.29560 6.58430 + 54.18076 -20.29560 6.58430 + 51.14644 -20.29724 6.52012 + 48.11188 -20.29889 6.44153 + 45.07708 -20.30053 6.34939 + 42.04202 -20.30218 6.24456 + 39.00672 -20.30382 6.12790 + 39.00672 -20.30382 6.12790 + 35.96343 -20.46106 6.00023 + 32.86040 -21.18948 5.86242 + 29.60552 -22.36440 5.71539 + 26.17037 -23.60113 5.56008 + 22.54609 -24.89193 5.39739 + 22.54514 -24.88710 5.39739 + 18.71970 -26.29803 5.22832 + 14.67923 -27.76517 5.05400 + 10.48146 -27.95703 4.87557 + 6.41304 -26.28335 4.69416 + 2.65169 -24.02872 4.51093 + 2.65299 -24.01964 4.51093 + -0.76066 -21.64119 4.32702 + -3.81468 -19.20163 4.14334 + -6.49789 -16.68072 3.96064 + -8.79815 -14.07832 3.77966 + -10.70559 -11.44137 3.60118 + -10.70481 -11.42865 3.60118 + -10.72763 -11.39332 3.59881 + -10.75038 -11.35802 3.59644 + -10.77306 -11.32274 3.59407 + -10.79567 -11.28748 3.59171 + -10.81821 -11.25224 3.58934 + -10.81821 -11.25225 3.58934 + -11.23588 -10.73254 3.54451 + -11.63406 -10.22643 3.49987 + -12.01326 -9.73385 3.45545 + -12.37400 -9.25474 3.41125 + -12.71679 -8.78903 3.36727 + -12.71674 -8.78956 3.36727 + -13.68714 -7.40585 3.22996 + -14.49937 -6.15282 3.09513 + -15.16895 -5.02796 2.96290 + -15.71110 -4.02873 2.83341 + -16.14076 -3.15250 2.70677 + -16.14081 -3.15313 2.70677 + -16.31807 -2.76030 2.64455 + -16.47264 -2.39718 2.58307 + -16.60631 -2.06339 2.52234 + -16.72083 -1.75857 2.46236 + -16.81792 -1.48238 2.40314 + -16.81790 -1.48273 2.40314 + -16.93572 -1.11752 2.31478 + -17.02322 -0.81604 2.22819 + -17.08613 -0.57697 2.14337 + -17.13008 -0.39901 2.06033 + -17.16057 -0.28090 1.97908 + -17.16057 -0.28144 1.97908 + -17.18303 -0.22180 1.89962 + -17.20267 -0.21939 1.82195 + -17.22465 -0.27290 1.74608 + -17.25400 -0.38101 1.67201 + -17.29561 -0.54244 1.59973 + -17.29562 -0.54289 1.59973 + -17.39723 -1.49454 1.52238 + -17.59555 -2.47684 1.44722 + -17.89359 -3.48879 1.37429 + -18.29427 -4.52950 1.30362 + -18.80042 -5.59813 1.23526 + -18.80151 -5.57640 1.23526 + -19.40185 -3.03101 1.14358 + -19.66137 -0.72514 1.05670 + -19.61814 1.29678 0.97460 + -19.31078 3.05080 0.89728 + -18.77567 4.55293 0.82475 + -18.77555 4.54728 0.82475 + -18.04763 5.81362 0.75690 + -17.15803 6.85936 0.69352 + -16.13662 7.69911 0.63434 + -15.01126 8.34660 0.57913 + -13.80795 8.81466 0.52762 + -13.80804 8.80992 0.52762 + -12.55171 9.11070 0.47954 + -11.26435 9.25501 0.43456 + -9.96715 9.25276 0.39236 + -8.68000 9.11277 0.35262 + -7.42164 8.84273 0.31503 + -7.42174 8.84014 0.31503 + -6.21025 8.44685 0.27926 + -5.06212 7.93579 0.24501 + -3.99350 7.31172 0.21204 + -3.01993 6.57845 0.18007 + -2.15649 5.73889 0.14884 + -2.15655 5.73807 0.14884 + -1.41807 4.79443 0.11811 + -0.81891 3.74799 0.08773 + -0.37339 2.59976 0.05758 + -0.09570 1.35038 0.02757 + 0.00001 0.00005 -0.00243 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2629,7 +2765,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -2641,7 +2777,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -2652,17 +2788,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -2671,7 +2807,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -2701,13 +2837,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -2808,47 +2944,47 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00340 0.00000 0.00340 0.00340 402 100 P - 7.13544 0.00000 7.80254 0.68000 330 91 3 - 11.95004 0.00000 15.60507 1.36000 220 77 2 - 15.83527 0.00000 23.40761 2.04000 220 68 2 - 19.68389 0.00000 31.21015 2.72000 220 63 2 - 22.92254 0.00000 37.06205 3.23000 220 62 2 - 23.63836 0.00000 39.50034 3.44250 220 60 2 - 24.44212 0.00000 40.96332 3.57000 220 60 2 - 25.38667 0.00000 42.91395 3.74000 220 59 2 - 26.32882 0.00000 44.86459 3.91000 220 59 2 - 27.26858 0.00000 46.81522 4.08000 220 58 2 - 28.06278 0.00000 48.27820 4.20750 220 58 2 - 12.92515 0.00000 20.56677 6.30726 220 63 2 - 13.47212 0.98100 20.32861 6.32894 220 66 2 - 14.00157 1.96200 20.08785 6.35785 220 70 2 - 14.52645 2.94300 19.91182 6.38676 220 73 2 - 15.04161 3.92400 19.78100 6.41566 220 76 2 - 15.54536 4.90500 19.70421 6.43734 220 79 2 - 15.54207 4.90500 19.66214 6.45179 220 79 2 - 15.82514 5.88600 19.61027 6.47347 330 81 3 - 15.98743 6.86700 19.55671 6.50238 330 82 3 - 16.14993 7.84800 19.51850 6.53129 330 83 3 - 16.31092 8.82900 19.49272 6.56019 330 84 3 - 16.46923 9.81000 19.47992 6.58187 330 85 3 - 16.47612 9.81000 19.47440 6.63230 330 85 3 - 16.62339 10.79100 19.47010 6.61800 330 85 3 - 16.77312 11.77200 19.47023 6.64691 330 86 3 - 16.91768 12.75300 19.47646 6.67582 330 87 3 - 17.05661 13.73400 19.48795 6.70472 330 88 3 - 17.18547 14.71500 19.49947 6.72640 330 88 3 - 17.19534 14.71500 19.51051 6.74375 330 88 3 - 17.36512 16.08840 19.53319 6.77410 330 89 3 - 17.52780 17.46180 19.56875 6.81457 330 90 3 - 17.67743 18.83520 19.60984 6.85503 330 90 3 - 17.81385 20.20860 19.65566 6.89550 330 91 3 - 17.92748 21.58200 19.69261 6.92585 330 91 3 - 26.91088 21.58200 40.65119 7.89320 220 66 2 - 25.01476 25.39730 37.49247 5.34869 220 67 2 - 23.50021 29.21260 33.28909 4.15339 220 71 2 - 21.95647 33.02790 29.09277 2.95808 220 75 2 - 20.10622 36.84320 24.90135 1.76278 330 81 3 - 18.12248 40.65850 21.76001 0.86630 330 83 3 + 7.14413 0.00000 7.80254 0.68000 330 92 3 + 11.96944 0.00000 15.60507 1.36000 220 77 2 + 15.85670 0.00000 23.40761 2.04000 220 68 2 + 19.70734 0.00000 31.21015 2.72000 220 63 2 + 22.94801 0.00000 37.06205 3.23000 220 62 2 + 23.66383 0.00000 39.50034 3.44250 220 60 2 + 24.46809 0.00000 40.96332 3.57000 220 60 2 + 25.41314 0.00000 42.91395 3.74000 220 59 2 + 26.35580 0.00000 44.86459 3.91000 220 59 2 + 27.29607 0.00000 46.81522 4.08000 220 58 2 + 28.09076 0.00000 48.27820 4.20750 220 58 2 + 12.93448 0.00000 20.56677 6.30726 220 63 2 + 13.48228 0.98100 20.32861 6.32894 220 66 2 + 14.01256 1.96200 20.08785 6.35785 220 70 2 + 14.53827 2.94300 19.91182 6.38676 220 73 2 + 15.05425 3.92400 19.78100 6.41566 220 76 2 + 15.55883 4.90500 19.70421 6.43734 220 79 2 + 15.55554 4.90500 19.66214 6.45179 220 79 2 + 15.83085 5.88600 19.61027 6.47347 330 81 3 + 15.99346 6.86700 19.55671 6.50238 330 82 3 + 16.15628 7.84800 19.51850 6.53129 330 83 3 + 16.31759 8.82900 19.49272 6.56019 330 84 3 + 16.47621 9.81000 19.47992 6.58187 330 85 3 + 16.47590 9.81000 19.47440 6.59633 330 85 3 + 16.63068 10.79100 19.47010 6.61800 330 85 3 + 16.78071 11.77200 19.47023 6.64691 330 86 3 + 16.92557 12.75300 19.47646 6.67582 330 87 3 + 17.06480 13.73400 19.48795 6.70472 330 88 3 + 17.19395 14.71500 19.49947 6.72640 330 88 3 + 17.20382 14.71500 19.51051 6.74375 330 88 3 + 17.37399 16.08840 19.53319 6.77410 330 89 3 + 17.53707 17.46180 19.56875 6.81457 330 90 3 + 17.68707 18.83520 19.60984 6.85503 330 90 3 + 17.82385 20.20860 19.65566 6.89550 330 91 3 + 17.93783 21.58200 19.69261 6.92585 330 91 3 + 26.11274 21.58200 40.65119 6.24517 220 64 2 + 25.04141 25.39730 37.49247 5.34869 220 67 2 + 23.52760 29.21260 33.28909 4.15339 220 71 2 + 21.98458 33.02790 29.09277 2.95808 220 76 2 + 20.11773 36.84320 24.90135 1.76278 330 81 3 + 18.13425 40.65850 21.76001 0.86630 330 83 3 12.41397 40.65850 12.41397 0.26865 402 100 P 0.00000 44.47380 0.00000 0.00000 402 0 P 0.00000 48.28910 0.00000 0.00000 402 0 P @@ -2863,94 +2999,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 68.53457 0.00000 0.00000 402 0 P - 0.04098 70.00117 0.04098 0.04098 402 100 P - 0.04098 71.46776 0.04098 0.04098 402 100 P + 0.00000 70.00117 0.00000 0.00000 402 0 P + 0.00000 71.46776 0.00000 0.00000 402 0 P 0.00000 72.93436 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P - 0.00000 75.86755 0.00000 0.00000 402 100 P - 0.00000 77.33414 0.00000 0.00000 402 100 P - 17.84529 78.80074 17.96911 4.49986 330 99 3 - 25.71521 80.26733 36.36631 5.18955 220 71 2 - 26.30062 81.73392 39.87198 5.70681 220 66 2 - 25.83517 81.73392 42.19987 3.61198 220 61 2 - 27.63222 83.20052 45.68064 6.56892 220 60 2 - 28.58289 84.66711 50.30746 7.25860 220 57 2 - 29.53363 86.13371 54.92251 7.94829 220 54 2 - 30.48794 87.60031 59.53073 8.63797 220 51 2 - 30.65774 89.06690 62.98476 9.15524 110 49 1 - 30.83247 89.06690 64.15130 9.32997 110 48 1 - 30.82520 89.08652 64.19752 9.33689 110 48 1 - 30.82024 89.10614 64.25913 9.34611 110 48 1 - 30.81528 89.12576 64.32073 9.35534 110 48 1 - 30.81032 89.14538 64.38231 9.36457 110 48 1 - 30.80306 89.16500 64.42851 9.37149 110 48 1 - 25.67657 89.16500 58.82727 11.38885 110 44 1 - 25.60482 89.53778 59.19268 11.49627 110 43 1 - 25.56970 89.91056 59.68017 11.63950 110 43 1 - 25.53545 90.28334 60.16799 11.78273 110 42 1 - 25.50207 90.65612 60.65612 11.92596 110 42 1 - 25.43381 91.02890 61.02242 12.03338 110 42 1 - 25.58269 91.02890 61.53041 12.18226 110 42 1 - 25.37345 92.20610 62.68904 12.52149 110 40 1 - 25.28736 93.38330 64.23606 12.97380 110 39 1 - 25.21186 94.56050 65.78549 13.42610 110 38 1 - 25.14746 95.73770 67.33709 13.87840 110 37 1 - 24.98159 96.91490 68.50203 14.21763 110 36 1 - 25.15120 96.91490 69.08491 14.38724 110 36 1 - 25.07275 97.50350 69.66807 14.55686 110 36 1 - 25.05386 98.09210 70.44596 14.78301 110 36 1 - 25.03800 98.68070 71.22427 15.00916 110 35 1 - 25.02522 99.26930 72.00296 15.23531 110 35 1 - 24.95899 99.85790 72.58721 15.40493 110 34 1 - 23.04102 99.85790 73.07750 13.48696 110 32 1 - 25.00678 100.75061 73.96428 15.80446 110 34 1 - 25.00525 101.64332 75.14728 16.14746 110 33 1 - 25.01097 102.53603 76.33100 16.49046 110 33 1 - 25.02399 103.42874 77.51539 16.83345 110 32 1 - 24.95858 104.32145 78.40407 17.09070 110 32 1 - 41.14989 104.32145 78.99672 34.93354 220 52 2 - 25.07203 105.21416 79.88599 17.51945 110 31 1 - 25.10707 106.10687 81.07214 17.86244 110 31 1 - 25.14946 106.99958 82.25880 18.20544 110 31 1 - 25.19919 107.89229 83.44594 18.54844 110 30 1 - 25.17050 108.78500 84.33659 18.80568 110 30 1 - 23.79632 108.78500 56.86688 20.61391 110 42 1 - 25.41615 106.76600 61.08371 22.38663 110 42 1 - 27.63132 104.74700 66.69564 24.75026 110 41 1 - 29.85100 102.72800 72.29483 27.11388 110 41 1 - 32.07525 100.70900 77.88124 29.47751 110 41 1 - 33.71324 98.69000 82.06310 31.25023 110 41 1 - 35.14039 98.69000 360.69726 20.36232 110 10 1 - 34.56011 100.06340 341.63118 20.86529 110 10 1 - 34.20508 101.43680 336.23428 21.53590 110 10 1 - 33.90741 102.81020 338.27314 22.20652 110 10 1 - 33.66689 104.18360 343.27433 22.87714 110 10 1 - 33.31565 105.55700 348.03239 23.38010 110 10 1 - 33.65096 105.55700 351.55313 23.71541 110 10 1 - 33.35552 106.93040 357.19802 24.21837 110 9 1 - 33.28044 108.30380 365.16698 24.88899 110 9 1 - 33.25485 109.67720 373.51597 25.55961 110 9 1 - 33.27551 111.05060 382.13262 26.23022 110 9 1 - 33.17157 112.42400 388.72127 26.73319 110 9 1 - 33.50688 112.42400 393.16743 27.06849 110 9 1 - 33.44234 113.79740 399.90218 27.57146 110 8 1 - 33.58096 115.17080 408.97197 28.24207 110 8 1 - 33.75148 116.54420 418.12917 28.91269 110 8 1 - 33.95028 117.91760 427.35573 29.58331 110 8 1 - 34.00612 119.29100 434.31142 30.08627 110 8 1 - 34.34143 119.29100 438.96483 30.42158 110 8 1 - 34.41823 120.66440 445.96600 30.92454 110 8 1 - 34.68034 122.03780 455.33132 31.59516 110 8 1 - 34.95710 123.41120 464.72780 32.26578 110 8 1 - 35.24549 124.78460 474.15039 32.93639 110 7 1 - 35.37486 126.15800 481.23140 33.43936 110 7 1 - 35.71017 126.15800 485.95872 33.77467 110 7 1 - 35.84526 127.53140 493.05853 34.27763 110 7 1 - 36.15202 128.90480 502.53810 34.94825 110 7 1 - 36.46154 130.27820 512.03155 35.61886 110 7 1 - 36.77255 131.65160 521.53703 36.28948 110 7 1 - 36.91617 133.02500 528.67279 36.79244 110 7 1 + 0.00000 75.86755 0.00000 0.00000 402 0 P + 0.00000 77.33414 0.00000 0.00000 402 0 P + 17.87210 78.80074 17.96911 4.49986 330 99 3 + 25.76884 80.26733 36.36631 5.18955 220 71 2 + 26.35418 81.73392 39.87198 5.70681 220 66 2 + 27.10858 81.73392 42.19987 6.05165 220 64 2 + 27.68568 83.20052 45.68064 6.56892 220 61 2 + 28.63619 84.66711 50.30746 7.25860 220 57 2 + 29.58668 86.13371 54.92251 7.94829 220 54 2 + 30.54066 87.60031 59.53073 8.63797 220 51 2 + 30.76229 89.06690 62.98476 9.15524 110 49 1 + 30.93702 89.06690 64.15130 9.32997 110 48 1 + 30.92974 89.08652 64.19752 9.33689 110 48 1 + 30.92476 89.10614 64.25913 9.34611 110 48 1 + 30.91979 89.12576 64.32073 9.35534 110 48 1 + 30.91482 89.14538 64.38231 9.36457 110 48 1 + 30.90755 89.16500 64.42851 9.37149 110 48 1 + 25.74622 89.16500 58.82727 11.38885 110 44 1 + 25.67430 89.53778 59.19268 11.49627 110 43 1 + 25.63900 89.91056 59.68017 11.63950 110 43 1 + 25.60454 90.28334 60.16799 11.78273 110 43 1 + 25.57096 90.65612 60.65612 11.92596 110 42 1 + 25.50247 91.02890 61.02242 12.03338 110 42 1 + 25.65135 91.02890 61.53041 12.18226 110 42 1 + 25.44132 92.20610 62.68904 12.52149 110 41 1 + 25.35430 93.38330 64.23606 12.97380 110 39 1 + 25.27771 94.56050 65.78549 13.42610 110 38 1 + 25.21205 95.73770 67.33709 13.87840 110 37 1 + 25.04471 96.91490 68.50203 14.21763 110 37 1 + 25.21433 96.91490 69.08491 14.38724 110 36 1 + 25.13507 97.50350 69.66807 14.55686 110 36 1 + 25.11531 98.09210 70.44596 14.78301 110 36 1 + 25.09853 98.68070 71.22427 15.00916 110 35 1 + 25.08477 99.26930 72.00296 15.23531 110 35 1 + 25.01750 99.85790 72.58721 15.40493 110 34 1 + 25.15978 99.85790 73.07750 15.54721 110 34 1 + 25.06359 100.75061 73.96428 15.80446 110 34 1 + 25.06022 101.64332 75.14728 16.14746 110 33 1 + 25.06394 102.53603 76.33100 16.49046 110 33 1 + 25.07478 103.42874 77.51539 16.83345 110 32 1 + 25.00702 104.32145 78.40407 17.09070 110 32 1 + 25.17852 104.32145 78.99672 17.26220 110 32 1 + 25.11793 105.21416 79.88599 17.51945 110 31 1 + 25.15026 106.10687 81.07214 17.86244 110 31 1 + 25.18976 106.99958 82.25880 18.20544 110 31 1 + 25.23646 107.89229 83.44594 18.54844 110 30 1 + 25.20461 108.78500 84.33659 18.80568 110 30 1 + 23.81337 108.78500 56.86688 20.61391 110 42 1 + 25.43139 106.76600 61.08371 22.38663 110 42 1 + 27.64470 104.74700 66.69564 24.75026 110 41 1 + 29.86246 102.72800 72.29483 27.11388 110 41 1 + 32.08475 100.70900 77.88124 29.47751 110 41 1 + 33.72075 98.69000 82.06310 31.25023 110 41 1 + 35.18545 98.69000 360.69726 20.36232 110 10 1 + 34.58827 100.06340 341.63118 20.86529 110 10 1 + 34.21626 101.43680 336.23428 21.53590 110 10 1 + 33.90170 102.81020 338.27314 22.20652 110 10 1 + 33.64454 104.18360 343.27433 22.87714 110 10 1 + 33.27704 105.55700 348.03239 23.38010 110 10 1 + 33.61235 105.55700 351.55313 23.71541 110 10 1 + 33.30123 106.93040 357.19802 24.21837 110 9 1 + 33.21123 108.30380 365.16698 24.88899 110 9 1 + 33.17173 109.67720 373.51597 25.55961 110 9 1 + 33.17975 111.05060 382.13262 26.23022 110 9 1 + 33.06464 112.42400 388.72127 26.73319 110 9 1 + 33.39995 112.42400 393.16743 27.06849 110 8 1 + 33.32598 113.79740 399.90218 27.57146 110 8 1 + 33.45682 115.17080 408.97197 28.24207 110 8 1 + 33.62103 116.54420 418.12917 28.91269 110 8 1 + 33.81479 117.91760 427.35573 29.58331 110 8 1 + 33.86663 119.29100 434.31142 30.08627 110 8 1 + 34.20194 119.29100 438.96483 30.42158 110 8 1 + 34.27561 120.66440 445.96600 30.92454 110 8 1 + 34.53529 122.03780 455.33132 31.59516 110 8 1 + 34.81020 123.41120 464.72780 32.26578 110 7 1 + 35.09719 124.78460 474.15039 32.93639 110 7 1 + 35.22547 126.15800 481.23140 33.43936 110 7 1 + 35.56078 126.15800 485.95872 33.77467 110 7 1 + 35.69499 127.53140 493.05853 34.27763 110 7 1 + 36.00100 128.90480 502.53810 34.94825 110 7 1 + 36.30986 130.27820 512.03155 35.61886 110 7 1 + 36.62027 131.65160 521.53703 36.28948 110 7 1 + 36.76329 133.02500 528.67279 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2965,13 +3101,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.871 'Ophooglaag zand' - -3.50 35.888 'Hollandveen' - -5.70 15.509 'Oude Zeeklei' - -7.00 30.399 'Wadzand' - -10.00 50.980 'Hydrobiaklei' - -12.00 14.373 'Basisveen' - -12.50 120.586 'Eerste zandlaag' + -3.00 7.880 'Ophooglaag zand' + -3.50 35.907 'Hollandveen' + -5.70 15.470 'Oude Zeeklei' + -7.00 30.539 'Wadzand' + -10.00 50.459 'Hydrobiaklei' + -12.00 14.379 'Basisveen' + -12.50 120.240 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -2988,13 +3124,13 @@ Layer name [DATA] 0.80 0.00 'Ophooglaag zand' -1.00 0.00 'Geulse klei' - -3.00 2.86 'Ophooglaag zand' + -3.00 2.87 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.30 'Oude Zeeklei' - -7.00 9.12 'Wadzand' - -10.00 10.84 'Hydrobiaklei' + -5.70 3.29 'Oude Zeeklei' + -7.00 9.16 'Wadzand' + -10.00 10.73 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 46.29 'Eerste zandlaag' + -12.50 46.16 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3297,7 +3433,7 @@ Lambda passive -6.74000 11.10450 44.38498 0.00000 0.68728 0.00000 3.99703 -6.87000 12.43389 47.59701 0.00000 0.68823 0.00000 3.82801 -7.00000 13.76322 50.00567 0.00000 0.68902 0.00000 3.72318 - -7.00000 13.76322 56.56939 0.00000 0.56962 0.00000 4.02302 + -7.00000 13.76322 56.56939 0.00000 0.56701 0.00000 4.02302 -7.14950 14.95606 59.17756 0.00000 0.56756 0.00000 3.95676 -7.29900 16.14883 63.03696 0.00000 0.56807 0.00000 3.90350 -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 @@ -3309,7 +3445,7 @@ Lambda passive -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 -8.34550 24.49678 95.35621 8.46813 0.57065 0.34568 3.89260 -8.49500 25.68924 98.76054 8.77815 0.57093 0.34572 3.88957 - -8.49500 25.68924 101.03367 9.25368 0.63815 0.35608 3.88780 + -8.49500 25.68924 101.03367 9.25368 0.57093 0.35608 3.88780 -8.64450 26.88169 104.44831 9.59969 0.57119 0.35711 3.88548 -8.79400 28.07413 109.00806 10.00551 0.57144 0.35640 3.88286 -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 @@ -3339,7 +3475,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -3369,13 +3505,13 @@ Lambda passive -12.92000 68.66611 486.65498 17.40762 0.46790 0.25351 7.08727 -13.06000 70.09142 491.41455 17.79637 0.46796 0.25390 7.01105 -13.20000 71.51677 495.92032 18.08658 0.46802 0.25417 6.96905 - -13.20000 71.51677 499.27697 18.27940 0.43937 0.25433 6.94665 + -13.20000 71.51677 499.27697 18.27940 0.46802 0.25433 6.94665 -13.34000 72.94213 504.68261 18.56772 0.46808 0.25455 6.91895 -13.48000 74.36752 512.35669 18.94839 0.46813 0.25479 6.88952 -13.62000 75.79293 520.33863 19.24842 0.46818 0.25396 6.86527 -13.76000 77.21836 528.43529 19.51523 0.46823 0.25273 6.84339 -13.90000 78.64381 534.65323 19.78051 0.46828 0.25267 6.82936 - -13.90000 78.64381 538.86276 19.97027 0.69187 0.25279 6.82103 + -13.90000 78.64381 538.86276 19.97027 0.46828 0.25279 6.82103 -14.04000 80.06929 545.25490 20.25436 0.46833 0.25296 6.80979 -14.18000 81.49478 553.86165 20.63172 0.46837 0.25317 6.79628 -14.32000 82.92030 562.56811 21.00738 0.46842 0.25334 6.78444 @@ -3499,7 +3635,7 @@ Status character 0.00000 58.19540 44.38498 7.63186 1 0 A 0.00000 58.97070 47.59701 8.55736 1 0 A 0.00000 59.74600 50.00567 9.25421 1 0 A - 0.00000 59.74600 56.56939 8.00965 1 0 A + 0.00000 59.74600 56.56939 7.97293 1 0 A 0.00000 61.21260 59.17756 8.48851 1 0 A 0.00000 62.67919 63.03696 9.17359 1 0 A 0.00000 64.14579 67.15179 9.85907 1 0 A @@ -3511,7 +3647,7 @@ Status character 8.05472 71.47876 90.80343 13.29161 1 0 A 8.46813 72.94536 95.35621 13.97900 1 0 A 8.77815 74.41195 98.76054 14.49644 1 0 A - 9.25368 74.41195 101.03367 16.58377 1 0 A + 9.25368 74.41195 101.03367 14.83684 1 0 A 9.59969 75.87855 104.44831 15.35451 1 0 A 10.00551 77.34514 109.00806 16.04260 1 0 A 10.41135 78.81174 113.57458 16.73088 1 0 A @@ -3529,72 +3665,72 @@ Status character 13.27311 89.13676 146.09646 21.58092 1 0 A 13.27857 89.15638 146.15875 21.59015 1 0 A 13.28266 89.17600 146.20565 21.59708 1 0 A - 11.94874 89.17600 111.76003 26.23646 110 0 1 - 12.23556 89.54878 112.10767 26.34410 110 0 1 - 12.55705 89.92156 112.57177 26.48726 110 0 1 - 12.87770 90.29434 113.03656 26.63042 110 0 1 - 13.19747 90.66712 113.50202 26.77359 110 0 1 - 13.48082 91.03990 113.85153 26.88125 110 0 1 - 13.62849 91.03990 114.33661 27.02892 110 0 1 - 14.51697 92.21710 115.44439 27.36892 110 0 1 - 15.50758 93.39430 116.92621 27.82114 110 0 1 - 16.48765 94.57150 118.41340 28.27341 110 0 1 - 17.45667 95.74870 119.90552 28.72573 110 0 1 - 18.30189 96.92590 121.02749 29.06585 110 0 1 - 13.81218 96.92590 121.58944 24.57613 110 0 1 - 18.88839 97.51450 122.15203 29.40428 110 0 1 - 19.35964 98.10310 122.90301 29.63048 110 0 1 - 19.82786 98.69170 123.65496 29.85670 110 0 1 - 20.29302 99.28030 124.40787 30.08292 110 0 1 - 20.69895 99.86890 124.97311 30.25301 110 0 1 - 20.84024 99.86890 125.44772 30.39430 110 0 1 - 21.44997 100.76161 126.30668 30.65229 110 0 1 - 22.13765 101.65432 127.45492 30.99544 110 0 1 - 22.81809 102.54703 128.63081 31.33861 110 0 1 - 23.49126 103.43974 129.81818 31.68179 110 0 1 - 24.07192 104.33245 130.70972 31.93980 110 0 1 - 24.24230 104.33245 131.30460 32.11018 110 0 1 - 24.81563 105.22516 132.19767 32.36821 110 0 1 - 25.46681 106.11787 133.38964 32.71144 110 0 1 - 26.11066 107.01058 134.58301 33.05468 110 0 1 - 26.74718 107.90329 135.77771 33.39793 110 0 1 - 27.29115 108.79600 136.67455 33.65597 110 0 1 - 33.17981 108.79600 96.36922 36.36222 110 0 1 - 35.10817 106.77700 100.67195 38.13768 110 0 1 - 37.62056 104.75800 106.39642 40.50163 110 0 1 - 40.12846 102.73900 112.10591 42.86558 110 0 1 - 42.63180 100.72000 117.80054 45.22955 110 0 1 - 44.54141 98.70100 122.06230 47.00442 110 0 1 + 11.87909 89.17600 111.76003 26.23646 110 0 1 + 12.16608 89.54878 112.10767 26.34410 110 0 1 + 12.48776 89.92156 112.57177 26.48726 110 0 1 + 12.80861 90.29434 113.03656 26.63042 110 0 1 + 13.12859 90.66712 113.50202 26.77359 110 0 1 + 13.41216 91.03990 113.85153 26.88125 110 0 1 + 13.55983 91.03990 114.33661 27.02892 110 0 1 + 14.44910 92.21710 115.44439 27.36892 110 0 1 + 15.44063 93.39430 116.92621 27.82114 110 0 1 + 16.42180 94.57150 118.41340 28.27341 110 0 1 + 17.39208 95.74870 119.90552 28.72573 110 0 1 + 18.23876 96.92590 121.02749 29.06585 110 0 1 + 18.40712 96.92590 121.58944 29.23421 110 0 1 + 18.82607 97.51450 122.15203 29.40428 110 0 1 + 19.29819 98.10310 122.90301 29.63048 110 0 1 + 19.76733 98.69170 123.65496 29.85670 110 0 1 + 20.23347 99.28030 124.40787 30.08292 110 0 1 + 20.64044 99.86890 124.97311 30.25301 110 0 1 + 20.78173 99.86890 125.44772 30.39430 110 0 1 + 21.39316 100.76161 126.30668 30.65229 110 0 1 + 22.08268 101.65432 127.45492 30.99544 110 0 1 + 22.76512 102.54703 128.63081 31.33861 110 0 1 + 23.44046 103.43974 129.81818 31.68179 110 0 1 + 24.02348 104.33245 130.70972 31.93980 110 0 1 + 24.19386 104.33245 131.30460 32.11018 110 0 1 + 24.76972 105.22516 132.19767 32.36821 110 0 1 + 25.42362 106.11787 133.38964 32.71144 110 0 1 + 26.07035 107.01058 134.58301 33.05468 110 0 1 + 26.70991 107.90329 135.77771 33.39793 110 0 1 + 27.25704 108.79600 136.67455 33.65597 110 0 1 + 33.16275 108.79600 96.36922 36.36222 110 0 1 + 35.09292 106.77700 100.67195 38.13768 110 0 1 + 37.60719 104.75800 106.39642 40.50163 110 0 1 + 40.11700 102.73900 112.10591 42.86558 110 0 1 + 42.62230 100.72000 117.80054 45.22955 110 0 1 + 44.53390 98.70100 122.06230 47.00442 110 0 1 16.32529 98.70100 496.34863 30.28234 1 0 A - 17.09199 100.07440 487.13326 30.78681 110 0 1 - 18.78878 101.44780 484.35728 31.45795 110 0 1 - 20.42821 102.82120 486.65498 32.12910 110 0 1 - 22.01051 104.19460 491.41455 32.80027 110 0 1 - 23.36912 105.56800 495.92032 33.30467 110 0 1 - 21.64357 105.56800 499.27697 31.57912 110 0 1 - 25.00547 106.94140 504.68261 34.14263 110 0 1 - 26.42237 108.31480 512.35669 34.81382 110 0 1 - 27.78978 109.68820 520.33863 35.48502 110 0 1 - 29.11094 111.06160 528.43529 36.15623 110 0 1 - 30.22219 112.43500 534.65323 36.66057 110 0 1 - 48.21918 112.43500 538.86276 54.65757 110 0 1 - 31.62779 113.80840 545.25490 37.49867 110 0 1 - 32.83101 115.18180 553.86165 38.16989 110 0 1 - 34.00234 116.55520 562.56811 38.84112 110 0 1 - 35.14538 117.92860 571.36317 39.51236 110 0 1 - 36.09678 119.30200 578.09634 40.01662 110 0 1 - 36.43071 119.30200 582.69734 40.35056 110 0 1 - 37.36114 120.67540 589.62506 40.85483 110 0 1 - 38.44088 122.04880 598.90021 41.52606 110 0 1 - 39.50598 123.42220 608.21488 42.19730 110 0 1 - 40.55945 124.79560 617.56306 42.86854 110 0 1 - 41.43724 126.16900 624.59244 43.37274 110 0 1 - 41.77133 126.16900 629.28734 43.70683 110 0 1 - 42.64339 127.54240 636.34134 44.21102 110 0 1 - 43.67849 128.91580 645.76408 44.88226 110 0 1 - 44.71083 130.28920 655.20535 45.55350 110 0 1 - 45.74167 131.66260 664.66280 46.22474 110 0 1 - 46.60515 133.03600 671.76491 46.72887 110 0 1 + 17.06382 100.07440 487.13326 30.78681 110 0 1 + 18.77759 101.44780 484.35728 31.45795 110 0 1 + 20.43392 102.82120 486.65498 32.12910 110 0 1 + 22.03287 104.19460 491.41455 32.80027 110 0 1 + 23.40773 105.56800 495.92032 33.30467 110 0 1 + 23.74128 105.56800 499.27697 33.63822 110 0 1 + 25.05977 106.94140 504.68261 34.14263 110 0 1 + 26.49158 108.31480 512.35669 34.81382 110 0 1 + 27.87290 109.68820 520.33863 35.48502 110 0 1 + 29.20671 111.06160 528.43529 36.15623 110 0 1 + 30.32911 112.43500 534.65323 36.66057 110 0 1 + 30.66287 112.43500 538.86276 36.99433 110 0 1 + 31.74415 113.80840 545.25490 37.49867 110 0 1 + 32.95514 115.18180 553.86165 38.16989 110 0 1 + 34.13278 116.55520 562.56811 38.84112 110 0 1 + 35.28088 117.92860 571.36317 39.51236 110 0 1 + 36.23627 119.30200 578.09634 40.01662 110 0 1 + 36.57020 119.30200 582.69734 40.35056 110 0 1 + 37.50376 120.67540 589.62506 40.85483 110 0 1 + 38.58593 122.04880 598.90021 41.52606 110 0 1 + 39.65288 123.42220 608.21488 42.19730 110 0 1 + 40.70775 124.79560 617.56306 42.86854 110 0 1 + 41.58663 126.16900 624.59244 43.37274 110 0 1 + 41.92072 126.16900 629.28734 43.70683 110 0 1 + 42.79367 127.54240 636.34134 44.21102 110 0 1 + 43.82951 128.91580 645.76408 44.88226 110 0 1 + 44.86251 130.28920 655.20535 45.55350 110 0 1 + 45.89395 131.66260 664.66280 46.22474 110 0 1 + 46.75802 133.03600 671.76491 46.72887 110 7 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3612,9 +3748,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 21.489 'Wadzand' - -10.00 39.700 'Hydrobiaklei' - -12.00 19.435 'Basisveen' - -12.50 115.354 'Eerste zandlaag' + -10.00 39.726 'Hydrobiaklei' + -12.00 19.429 'Basisveen' + -12.50 114.611 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -3636,7 +3772,7 @@ Layer name -7.00 -6.45 'Wadzand' -10.00 -8.44 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -44.28 'Eerste zandlaag' + -12.50 -44.00 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -3858,7 +3994,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 104.67560 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 104.67293 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -3883,21 +4019,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.98 : Percentage mobilized resistance left - 11.88 : Percentage mobilized resistance right - 108.84 : Effective left - 210.40 : Effective right + 9.95 : Percentage mobilized resistance left + 11.87 : Percentage mobilized resistance right + 108.56 : Effective left + 210.13 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 1090.76 : Max effective resistance left - 1770.89 : Max effective resistance right + 1770.88 : Max effective resistance right -13001.37 : Max moment left --19652.96 : Max moment right --1269.34 : Max mobilized moment left --1707.90 : Max mobilized moment right - 38.14 : Vertical force left - 51.52 : Vertical force right - 9.8 : Max mobilized moment percentage left +-19652.89 : Max moment right +-1266.37 : Max mobilized moment left +-1704.93 : Max mobilized moment right + 38.04 : Vertical force left + 51.49 : Vertical force right + 9.7 : Max mobilized moment percentage left 8.7 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support @@ -3905,17 +4041,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.14 : Active force -51.52 : Passive force --38.14 : Plugged active force -51.52 : Plugged passive force +-38.04 : Active force +51.49 : Passive force +-38.04 : Plugged active force +51.49 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.39 : Resulting Vertical Force Unplugged -13.39 : Resulting Vertical Force Plugged +13.45 : Resulting Vertical Force Unplugged +13.45 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -3928,192 +4064,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -12.88135 - 0.00000 0.00000 -12.52994 - 0.00000 0.00000 -12.17853 - 0.00000 0.00000 -11.82712 - 0.00000 0.00000 -11.47571 - 0.00000 0.00000 -11.12430 - 0.00000 0.00000 -11.12430 - 0.00000 0.00000 -10.77290 - 0.00000 0.00000 -10.42149 - 0.00000 0.00000 -10.07008 - 0.00000 0.00000 -9.71867 - 0.00000 0.00000 -9.36726 - 0.00000 0.00000 -9.36726 - -0.00283 -0.07063 -8.89872 - -0.02260 -0.28253 -8.43017 - -0.07628 -0.63569 -7.96162 - -0.18082 -1.13011 -7.49305 - -0.35316 -1.76580 -7.02445 - -0.35316 -1.76580 -7.02445 - -0.56080 -2.40345 -6.63390 - -0.83712 -3.13920 -6.24329 - -1.19191 -3.97305 -5.85257 - -1.63500 -4.90500 -5.46168 - -2.17618 -5.93505 -5.07059 - -2.17618 -5.93505 -5.07059 - -2.82528 -7.06320 -4.67924 - -3.59209 -8.28945 -4.28754 - -4.48644 -9.61380 -3.89537 - -5.51812 -11.03625 -3.50262 - -6.69696 -12.55680 -3.10918 - -6.69696 148.14320 -3.10918 - 5.98427 146.75707 -2.77038 - 18.54318 145.29838 -2.43214 - 30.97351 143.76714 -2.09561 - 43.26904 142.16334 -1.76196 - 55.42353 140.48699 -1.43234 - 55.42353 35.81138 -1.43234 - 59.37420 33.47740 -1.00327 - 63.05153 31.01594 -0.58392 - 66.44099 28.42698 -0.17485 - 69.52804 25.71053 0.22338 - 72.29815 22.86660 0.61023 - 72.29906 22.84859 0.61023 - 74.05184 21.05233 0.87464 - 75.67790 19.64847 1.13307 - 77.20277 18.51360 1.38541 - 78.64648 17.61881 1.63153 - 80.02749 16.93821 1.87131 - 80.02724 16.93630 1.87131 - 80.36468 16.81006 1.93025 - 80.69973 16.69696 1.98879 - 81.03266 16.59838 2.04692 - 81.36376 16.51429 2.10464 - 81.69331 16.44320 2.16195 - 81.69328 16.44365 2.16195 - 83.24954 14.69007 2.44227 - 84.63297 12.98678 2.71211 - 85.84853 11.33264 2.97131 - 86.90111 9.72686 3.21971 - 87.79548 8.16834 3.45717 - 87.79533 8.17350 3.45717 - 88.53665 6.66051 3.68353 - 89.12861 5.18285 3.89875 - 89.57389 3.72532 4.10275 - 89.87416 2.28239 4.29548 - 90.03085 0.85382 4.47689 - 90.03086 0.85425 4.47689 - 90.04546 -0.56000 4.64694 - 89.91930 -1.96108 4.80564 - 89.65368 -3.34915 4.95303 - 89.24988 -4.72479 5.08914 - 88.70911 -6.08882 5.21401 - 88.70907 -6.08813 5.21401 - 87.72416 -7.97854 5.37001 - 86.47599 -9.84934 5.50434 - 84.96719 -11.70204 5.61739 - 83.20017 -13.53858 5.70951 - 81.17702 -15.36161 5.78108 - 81.17695 -15.36008 5.78108 - 79.14171 -15.93883 5.82954 - 77.03716 -16.41816 5.86115 - 74.87828 -16.77538 5.87636 - 72.68068 -17.01452 5.87565 - 70.46030 -17.11997 5.85946 - 70.46045 -17.12026 5.85946 - 68.15864 -18.49233 5.82823 - 65.63359 -20.29946 5.78249 - 62.89509 -21.77639 5.72282 - 59.98604 -22.92312 5.64979 - 56.94938 -23.73965 5.56399 - 56.94938 -23.73967 5.56399 - 53.34430 -24.48882 5.45032 - 49.62722 -25.23796 5.32162 - 45.79815 -25.98710 5.17899 - 41.85708 -26.73625 5.02348 - 37.80401 -27.48539 4.85619 - 37.80401 -27.48539 4.85619 - 33.63895 -28.23454 4.67821 - 29.36188 -28.98368 4.49076 - 24.97282 -29.73283 4.29508 - 20.47177 -30.48197 4.09239 - 15.85871 -31.23112 3.88393 - 15.85757 -31.22528 3.88393 - 11.13339 -31.97443 3.67100 - 6.29722 -32.72357 3.45494 - 1.40646 -32.32049 3.23712 - -3.28934 -30.36687 3.01886 - -7.65158 -27.97884 2.80150 - -7.64993 -27.96871 2.80150 - -11.65284 -25.54036 2.58639 - -15.28246 -23.03090 2.37457 - -18.54331 -20.60646 2.16695 - -21.44782 -18.26284 1.96447 - -24.00832 -16.00792 1.76803 - -24.00762 -15.99586 1.76803 - -24.03958 -15.96601 1.76545 - -24.07148 -15.93618 1.76286 - -24.10333 -15.90636 1.76028 - -24.13511 -15.87655 1.75771 - -24.16683 -15.84676 1.75513 - -24.16683 -15.84678 1.75513 - -24.75936 -15.33931 1.70638 - -25.33265 -14.83445 1.65808 - -25.88680 -14.33145 1.61025 - -26.42187 -13.83025 1.56288 - -26.93793 -13.33144 1.51600 - -26.93785 -13.33225 1.51600 - -28.44300 -11.75841 1.37122 - -29.76070 -10.20533 1.23161 - -30.89274 -8.66371 1.09737 - -31.84034 -7.13090 0.96870 - -32.60467 -5.61098 0.84580 - -32.60475 -5.61194 0.84580 - -32.91854 -4.84839 0.78658 - -33.18660 -4.08701 0.72885 - -33.40898 -3.32572 0.67262 - -33.58568 -2.56419 0.61791 - -33.71671 -1.80372 0.56472 - -33.71665 -1.80495 0.56472 - -33.82313 -0.61419 0.48697 - -33.83547 0.34439 0.41275 - -33.76017 1.31245 0.34206 - -33.59626 2.29190 0.27488 - -33.34276 3.28072 0.21120 - -33.34285 3.28199 0.21120 - -32.94944 5.09782 0.15102 - -32.43904 6.12270 0.09427 - -31.83453 7.16641 0.04089 - -31.13413 8.23069 -0.00917 - -30.33665 9.29173 -0.05598 - -30.33665 9.29100 -0.05598 - -29.34563 10.52612 -0.10376 - -28.23204 11.74286 -0.14784 - -26.99763 12.94269 -0.18838 - -25.64402 14.12697 -0.22553 - -24.17271 15.29704 -0.25945 - -24.17376 15.31801 -0.25945 - -22.10012 14.31208 -0.30187 - -20.16403 13.35640 -0.33884 - -18.35728 12.46597 -0.37080 - -16.67013 11.64910 -0.39820 - -15.09203 10.90733 -0.42148 - -15.09199 10.90277 -0.42148 - -13.61170 10.25723 -0.44107 - -12.21601 9.69650 -0.45730 - -10.89317 9.21097 -0.47050 - -9.63640 8.73696 -0.48099 - -8.44828 8.23170 -0.48910 - -8.44837 8.22874 -0.48910 - -7.33315 7.69968 -0.49516 - -6.29327 7.15333 -0.49940 - -5.33076 6.59537 -0.50207 - -4.44688 6.03067 -0.50340 - -3.64229 5.46333 -0.50364 - -3.64235 5.46203 -0.50364 - -2.92873 4.77356 -0.50301 - -2.29992 4.21023 -0.50165 - -1.74961 3.65245 -0.49971 - -1.27689 3.10195 -0.49731 - -0.88066 2.56002 -0.49461 - -0.88069 2.55967 -0.49461 - -0.55972 2.02716 -0.49171 - -0.31262 1.50463 -0.48867 - -0.13794 0.99246 -0.48554 - -0.03423 0.49089 -0.48236 - 0.00000 0.00002 -0.47917 + 0.00000 0.00000 -12.88930 + 0.00000 0.00000 -12.53765 + 0.00000 0.00000 -12.18599 + 0.00000 0.00000 -11.83434 + 0.00000 0.00000 -11.48268 + 0.00000 0.00000 -11.13103 + 0.00000 0.00000 -11.13103 + 0.00000 0.00000 -10.77937 + 0.00000 0.00000 -10.42772 + 0.00000 0.00000 -10.07606 + 0.00000 0.00000 -9.72441 + 0.00000 0.00000 -9.37275 + 0.00000 0.00000 -9.37275 + -0.00283 -0.07063 -8.90389 + -0.02260 -0.28253 -8.43502 + -0.07628 -0.63569 -7.96614 + -0.18082 -1.13011 -7.49724 + -0.35316 -1.76580 -7.02831 + -0.35316 -1.76580 -7.02831 + -0.56080 -2.40345 -6.63749 + -0.83712 -3.13920 -6.24661 + -1.19191 -3.97305 -5.85561 + -1.63500 -4.90500 -5.46445 + -2.17618 -5.93505 -5.07309 + -2.17618 -5.93505 -5.07309 + -2.82528 -7.06320 -4.68147 + -3.59209 -8.28945 -4.28950 + -4.48644 -9.61380 -3.89705 + -5.51812 -11.03625 -3.50403 + -6.69696 -12.55680 -3.11031 + -6.69696 148.14320 -3.11031 + 5.98427 146.75707 -2.77128 + 18.54318 145.29838 -2.43280 + 30.97351 143.76714 -2.09604 + 43.26904 142.16334 -1.76216 + 55.42353 140.48699 -1.43231 + 55.42353 35.81406 -1.43231 + 59.37450 33.48008 -1.00292 + 63.05214 31.01862 -0.58326 + 66.44190 28.42966 -0.17389 + 69.52926 25.71321 0.22466 + 72.29967 22.86927 0.61182 + 72.30059 22.85126 0.61182 + 74.05359 21.05521 0.87644 + 75.67990 19.65206 1.13509 + 77.20510 18.51820 1.38765 + 78.64922 17.62455 1.63399 + 80.03074 16.94518 1.87399 + 80.03048 16.94327 1.87399 + 80.36807 16.81735 1.93298 + 80.70327 16.70458 1.99157 + 81.03635 16.60634 2.04975 + 81.36762 16.52259 2.10753 + 81.69734 16.45185 2.16489 + 81.69730 16.45230 2.16489 + 83.25446 14.69934 2.44549 + 84.63885 12.99672 2.71560 + 85.85544 11.34330 2.97507 + 86.90912 9.73830 3.22374 + 87.80468 8.18061 3.46146 + 87.80453 8.18578 3.46146 + 88.54713 6.67367 3.68809 + 89.14043 5.19666 3.90357 + 89.58712 3.73953 4.10783 + 89.88883 2.29702 4.30083 + 90.04700 0.86888 4.48250 + 90.04701 0.86931 4.48250 + 90.06312 -0.54484 4.65280 + 89.93850 -1.94544 4.81176 + 89.67447 -3.33301 4.95940 + 89.27231 -4.70813 5.09576 + 88.73323 -6.07162 5.22088 + 88.73319 -6.07093 5.22088 + 87.75075 -7.96056 5.37722 + 86.50515 -9.83053 5.51189 + 84.99905 -11.68236 5.62526 + 83.23484 -13.51801 5.71770 + 81.21464 -15.34010 5.78958 + 81.21457 -15.33857 5.78958 + 79.17763 -15.96863 5.83832 + 77.06936 -16.44564 5.87020 + 74.90706 -16.80048 5.88568 + 72.70635 -17.03715 5.88523 + 70.48316 -17.14085 5.86929 + 70.48331 -17.14113 5.86929 + 68.17876 -18.51346 5.83831 + 65.65097 -20.32059 5.79282 + 62.90971 -21.79752 5.73339 + 59.99792 -22.94425 5.66060 + 56.95852 -23.76078 5.57503 + 56.95851 -23.76080 5.57503 + 53.35027 -24.50994 5.46163 + 49.63004 -25.25909 5.33321 + 45.79781 -26.00823 5.19083 + 41.85358 -26.75738 5.03560 + 37.79735 -27.50652 4.86857 + 37.79735 -27.50652 4.86857 + 33.62913 -28.25567 4.69087 + 29.34891 -29.00481 4.50369 + 24.95669 -29.75396 4.30828 + 20.45247 -30.50310 4.10587 + 15.83626 -31.25225 3.89770 + 15.83512 -31.24642 3.89770 + 11.10778 -31.99556 3.68506 + 6.26844 -32.74471 3.46930 + 1.37461 -32.33998 3.25178 + -3.32377 -30.38136 3.03384 + -7.68768 -27.98654 2.81681 + -7.68617 -27.97412 2.81681 + -11.67758 -25.41877 2.60204 + -15.28796 -22.89513 2.39056 + -18.52744 -20.45619 2.18329 + -21.40837 -18.09776 1.98114 + -23.94308 -15.82774 1.78503 + -23.94236 -15.81560 1.78503 + -23.97396 -15.78555 1.78245 + -24.00550 -15.75552 1.77987 + -24.03698 -15.72549 1.77730 + -24.06840 -15.69548 1.77472 + -24.09976 -15.66549 1.77215 + -24.09976 -15.66551 1.77215 + -24.68535 -15.15544 1.72348 + -25.25161 -14.64798 1.67526 + -25.79862 -14.14236 1.62751 + -26.32645 -13.63853 1.58022 + -26.83518 -13.13708 1.53341 + -26.83510 -13.13788 1.53341 + -28.31642 -11.55563 1.38885 + -29.60928 -9.99405 1.24944 + -30.71545 -8.44382 1.11537 + -31.63614 -6.90234 0.98684 + -32.37252 -5.37368 0.86405 + -32.37260 -5.37464 0.86405 + -32.67202 -4.60671 0.80486 + -32.92545 -3.84093 0.74715 + -33.13294 -3.07525 0.69094 + -33.29447 -2.30932 0.63622 + -33.41007 -1.54446 0.58302 + -33.41002 -1.54570 0.58302 + -33.48690 -0.25381 0.50523 + -33.46607 0.71294 0.43093 + -33.35685 1.68928 0.36011 + -33.15828 2.67709 0.29277 + -32.86933 3.67435 0.22889 + -32.86934 3.67330 0.22889 + -32.48871 4.69356 0.16844 + -32.01471 5.72697 0.11139 + -31.44583 6.77921 0.05767 + -30.78027 7.85204 0.00722 + -30.01681 8.92315 -0.04002 + -30.01682 8.92236 -0.04002 + -29.06236 10.16376 -0.08831 + -27.98469 11.38658 -0.13294 + -26.78561 12.59225 -0.17405 + -25.46677 13.78215 -0.21180 + -24.02966 14.95759 -0.24634 + -24.03075 14.97895 -0.24634 + -22.00194 14.01044 -0.28967 + -20.10551 13.09147 -0.32756 + -18.33333 12.23697 -0.36046 + -16.67576 11.45523 -0.38880 + -15.12240 10.74770 -0.41304 + -15.12236 10.74315 -0.41304 + -13.66207 10.13092 -0.43356 + -12.28179 9.60252 -0.45072 + -10.97017 9.14243 -0.46482 + -9.72173 8.68600 -0.47621 + -8.53969 8.19536 -0.48519 + -8.53978 8.19237 -0.48519 + -7.42879 7.67504 -0.49209 + -6.39171 7.13762 -0.49715 + -5.43093 6.58586 -0.50062 + -4.54810 6.02473 -0.50273 + -3.74425 5.45838 -0.50372 + -3.74431 5.45704 -0.50372 + -3.02009 4.88889 -0.50381 + -2.37537 4.32169 -0.50315 + -1.80987 3.75771 -0.50189 + -1.32298 3.19874 -0.50017 + -0.91392 2.64610 -0.49812 + -0.91395 2.64574 -0.49812 + -0.58182 2.10034 -0.49587 + -0.32550 1.56274 -0.49348 + -0.14387 1.03334 -0.49098 + -0.03577 0.51240 -0.48844 + 0.00000 0.00002 -0.48589 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4441,7 +4577,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -4453,7 +4589,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -4464,17 +4600,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -4483,7 +4619,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -4513,13 +4649,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -4620,48 +4756,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 6.89024 0.00000 7.80254 0.68000 330 88 3 - 11.37969 0.00000 15.60507 1.36000 220 73 2 - 15.18436 0.00000 23.40761 2.04000 220 65 2 - 18.95173 0.00000 31.21015 2.72000 220 61 2 - 22.10838 0.00000 37.06205 3.23000 220 60 2 - 22.82421 0.00000 39.50034 3.44250 220 58 2 - 23.60734 0.00000 40.96332 3.57000 220 58 2 - 24.53121 0.00000 42.91395 3.74000 220 57 2 - 25.45264 0.00000 44.86459 3.91000 220 57 2 - 26.37162 0.00000 46.81522 4.08000 220 56 2 - 27.14497 0.00000 48.27820 4.20750 220 56 2 - 12.61921 0.00000 20.56677 6.30726 220 61 2 - 13.13117 0.98100 20.32861 6.32894 220 65 2 - 13.62512 1.96200 20.08785 6.35785 220 68 2 - 14.11396 2.94300 19.91182 6.38676 220 71 2 - 14.59251 3.92400 19.78100 6.41566 220 74 2 - 15.05906 4.90500 19.70421 6.43734 220 76 2 - 15.05577 4.90500 19.66214 6.45179 220 77 2 - 15.50637 5.88600 19.61027 6.47347 220 79 2 - 15.76236 6.86700 19.55671 6.50238 330 81 3 - 15.90919 7.84800 19.51850 6.53129 330 82 3 - 16.05420 8.82900 19.49272 6.56019 330 82 3 - 16.19624 9.81000 19.47992 6.58187 330 83 3 - 16.20313 9.81000 19.47440 6.63230 330 83 3 - 16.33381 10.79100 19.47010 6.61800 330 84 3 - 16.46663 11.77200 19.47023 6.64691 330 85 3 - 16.59393 12.75300 19.47646 6.67582 330 85 3 - 16.71527 13.73400 19.48795 6.70472 330 86 3 - 16.82618 14.71500 19.49947 6.72640 330 86 3 - 16.83605 14.71500 19.51051 6.74375 330 86 3 - 16.98007 16.08840 19.53319 6.77410 330 87 3 - 17.11626 17.46180 19.56875 6.81457 330 87 3 - 17.23862 18.83520 19.60984 6.85503 330 88 3 - 17.34699 20.20860 19.65566 6.89550 330 88 3 - 17.43175 21.58200 19.69261 6.92585 330 89 3 - 25.67156 21.58200 40.65119 7.89320 220 63 2 - 23.70654 25.39730 37.49247 5.34869 220 63 2 - 22.12126 29.21260 33.28909 4.15339 220 66 2 - 20.50496 33.02790 29.09277 2.95808 220 70 2 - 18.85802 36.84320 24.90135 1.76278 220 76 2 - 17.48163 40.65850 21.76001 0.86630 330 80 3 - 11.77312 40.65850 12.41397 0.26865 330 95 3 + 6.89566 0.00000 7.80254 0.68000 330 88 3 + 11.39184 0.00000 15.60507 1.36000 220 73 2 + 15.19782 0.00000 23.40761 2.04000 220 65 2 + 18.96648 0.00000 31.21015 2.72000 220 61 2 + 22.12444 0.00000 37.06205 3.23000 220 60 2 + 22.84026 0.00000 39.50034 3.44250 220 58 2 + 23.62372 0.00000 40.96332 3.57000 220 58 2 + 24.54792 0.00000 42.91395 3.74000 220 57 2 + 25.46967 0.00000 44.86459 3.91000 220 57 2 + 26.38897 0.00000 46.81522 4.08000 220 56 2 + 27.16265 0.00000 48.27820 4.20750 220 56 2 + 12.62511 0.00000 20.56677 6.30726 220 61 2 + 13.13761 0.98100 20.32861 6.32894 220 65 2 + 13.63209 1.96200 20.08785 6.35785 220 68 2 + 14.12147 2.94300 19.91182 6.38676 220 71 2 + 14.60056 3.92400 19.78100 6.41566 220 74 2 + 15.06764 4.90500 19.70421 6.43734 220 76 2 + 15.06435 4.90500 19.66214 6.45179 220 77 2 + 15.51548 5.88600 19.61027 6.47347 220 79 2 + 15.76622 6.86700 19.55671 6.50238 330 81 3 + 15.91325 7.84800 19.51850 6.53129 330 82 3 + 16.05848 8.82900 19.49272 6.56019 330 82 3 + 16.20072 9.81000 19.47992 6.58187 330 83 3 + 16.20042 9.81000 19.47440 6.59633 330 83 3 + 16.33850 10.79100 19.47010 6.61800 330 84 3 + 16.47152 11.77200 19.47023 6.64691 330 85 3 + 16.59903 12.75300 19.47646 6.67582 330 85 3 + 16.72057 13.73400 19.48795 6.70472 330 86 3 + 16.83167 14.71500 19.49947 6.72640 330 86 3 + 16.84154 14.71500 19.51051 6.74375 330 86 3 + 16.98584 16.08840 19.53319 6.77410 330 87 3 + 17.12230 17.46180 19.56875 6.81457 330 87 3 + 17.24492 18.83520 19.60984 6.85503 330 88 3 + 17.35354 20.20860 19.65566 6.89550 330 88 3 + 17.43855 21.58200 19.69261 6.92585 330 89 3 + 24.86454 21.58200 40.65119 6.24517 220 61 2 + 23.72410 25.39730 37.49247 5.34869 220 63 2 + 22.13937 29.21260 33.28909 4.15339 220 67 2 + 20.52360 33.02790 29.09277 2.95808 220 71 2 + 18.87718 36.84320 24.90135 1.76278 220 76 2 + 17.48950 40.65850 21.76001 0.86630 330 80 3 + 11.76921 40.65850 12.41397 0.26865 330 95 3 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -4675,94 +4811,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 15.41442 78.80074 17.96911 4.49986 330 86 3 - 20.74292 80.26733 36.36631 5.18955 220 57 2 - 21.22591 81.73392 39.87198 5.70681 220 53 2 - 20.42101 81.73392 42.19987 3.61198 110 48 1 - 22.08727 83.20052 45.68064 6.56892 110 48 1 - 21.50601 84.66711 50.30746 7.25860 110 43 1 - 20.95001 86.13371 54.92251 7.94829 110 38 1 - 20.42478 87.60031 59.53073 8.63797 110 34 1 - 19.76341 89.06690 62.98476 9.15524 110 31 1 - 19.93814 89.06690 64.15130 9.32997 110 31 1 - 19.92956 89.08652 64.19752 9.33689 110 31 1 - 19.92330 89.10614 64.25913 9.34611 110 31 1 - 19.91704 89.12576 64.32073 9.35534 110 31 1 - 19.91080 89.14538 64.38231 9.36457 110 31 1 - 19.90225 89.16500 64.42851 9.37149 110 31 1 - 18.40936 89.16500 58.82727 11.38885 110 31 1 - 18.32179 89.53778 59.19268 11.49627 110 31 1 - 18.27184 89.91056 59.68017 11.63950 110 31 1 - 18.22372 90.28334 60.16799 11.78273 110 30 1 - 18.17749 90.65612 60.65612 11.92596 110 30 1 - 18.09737 91.02890 61.02242 12.03338 110 30 1 - 18.24626 91.02890 61.53041 12.18226 110 30 1 - 18.00638 92.20610 62.68904 12.52149 110 29 1 - 17.90024 93.38330 64.23606 12.97380 110 28 1 - 17.81557 94.56050 65.78549 13.42610 110 27 1 - 17.75319 95.73770 67.33709 13.87840 110 26 1 - 17.60085 96.91490 68.50203 14.21763 110 26 1 - 17.77046 96.91490 69.08491 14.38724 110 26 1 - 17.70318 97.50350 69.66807 14.55686 110 25 1 - 17.69841 98.09210 70.44596 14.78301 110 25 1 - 17.69965 98.68070 71.22427 15.00916 110 25 1 - 17.70694 99.26930 72.00296 15.23531 110 25 1 - 17.66379 99.85790 72.58721 15.40493 110 24 1 - 15.74582 99.85790 73.07750 13.48696 110 22 1 - 17.75234 100.75061 73.96428 15.80446 110 24 1 - 17.79848 101.64332 75.14728 16.14746 110 24 1 - 17.85869 102.53603 76.33100 16.49046 110 23 1 - 17.93296 103.42874 77.51539 16.83345 110 23 1 - 17.93550 104.32145 78.40407 17.09070 110 23 1 - 35.77834 104.32145 78.99672 34.93354 110 45 1 - 18.12351 105.21416 79.88599 17.51945 110 23 1 - 18.23951 106.10687 81.07214 17.86244 110 22 1 - 18.36901 106.99958 82.25880 18.20544 110 22 1 - 18.51176 107.89229 83.44594 18.54844 110 0 1 - 18.58176 108.78500 84.33659 18.80568 110 0 1 - 20.50195 108.78500 56.86688 20.61391 110 0 1 - 22.17911 106.76600 61.08371 22.38663 110 0 1 - 24.45457 104.74700 66.69564 24.75026 110 0 1 - 26.73712 102.72800 72.29483 27.11388 110 0 1 - 29.02644 100.70900 77.88124 29.47751 110 0 1 - 30.73132 98.69000 82.06310 31.25023 110 0 1 - 17.24889 98.69000 360.69726 20.36232 110 0 1 - 17.24279 100.06340 341.63118 20.86529 110 0 1 - 17.46982 101.43680 336.23428 21.53590 110 0 1 - 17.75693 102.81020 338.27314 22.20652 110 0 1 - 18.09876 104.18360 343.27433 22.87714 110 0 1 - 18.32229 105.55700 348.03239 23.38010 110 0 1 - 18.65760 105.55700 351.55313 23.71541 110 0 1 - 18.92549 106.93040 357.19802 24.21837 110 0 1 - 19.40135 108.30380 365.16698 24.88899 110 0 1 - 19.91361 109.67720 373.51597 25.55961 110 0 1 - 20.45833 111.05060 382.13262 26.23022 110 0 1 - 20.86393 112.42400 388.72127 26.73319 110 0 1 - 21.19924 112.42400 393.16743 27.06849 110 0 1 - 21.62960 113.79740 399.90218 27.57146 110 0 1 - 22.24931 115.17080 408.97197 28.24207 110 0 1 - 22.88789 116.54420 418.12917 28.91269 110 0 1 - 23.54247 117.91760 427.35573 29.58331 110 0 1 - 24.04256 119.29100 434.31142 30.08627 110 0 1 - 24.37787 119.29100 438.96483 30.42158 110 0 1 - 24.88846 120.66440 445.96600 30.92454 110 0 1 - 25.57536 122.03780 455.33132 31.59516 110 0 1 - 26.26930 123.41120 464.72780 32.26578 110 0 1 - 26.96863 124.78460 474.15039 32.93639 110 0 1 - 27.50407 126.15800 481.23140 33.43936 110 0 1 - 27.83937 126.15800 485.95872 33.77467 110 0 1 - 28.37714 127.53140 493.05853 34.27763 110 0 1 - 29.08421 128.90480 502.53810 34.94825 110 0 1 - 29.79240 130.27820 512.03155 35.61886 110 0 1 - 30.50119 131.65160 521.53703 36.28948 110 0 1 - 31.04241 133.02500 528.67279 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 15.43642 78.80074 17.96911 4.49986 330 86 3 + 20.78787 80.26733 36.36631 5.18955 220 57 2 + 21.27184 81.73392 39.87198 5.70681 220 53 2 + 22.02623 81.73392 42.19987 6.05165 220 52 2 + 22.18114 83.20052 45.68064 6.56892 110 49 1 + 21.60194 84.66711 50.30746 7.25860 110 43 1 + 21.04800 86.13371 54.92251 7.94829 110 38 1 + 20.52481 87.60031 59.53073 8.63797 110 34 1 + 19.86541 89.06690 62.98476 9.15524 110 32 1 + 20.04014 89.06690 64.15130 9.32997 110 31 1 + 20.03159 89.08652 64.19752 9.33689 110 31 1 + 20.02535 89.10614 64.25913 9.34611 110 31 1 + 20.01912 89.12576 64.32073 9.35534 110 31 1 + 20.01290 89.14538 64.38231 9.36457 110 31 1 + 20.00438 89.16500 64.42851 9.37149 110 31 1 + 18.47744 89.16500 58.82727 11.38885 110 31 1 + 18.39020 89.53778 59.19268 11.49627 110 31 1 + 18.34056 89.91056 59.68017 11.63950 110 31 1 + 18.29276 90.28334 60.16799 11.78273 110 30 1 + 18.24683 90.65612 60.65612 11.92596 110 30 1 + 18.16701 91.02890 61.02242 12.03338 110 30 1 + 18.31589 91.02890 61.53041 12.18226 110 30 1 + 18.07691 92.20610 62.68904 12.52149 110 29 1 + 17.97156 93.38330 64.23606 12.97380 110 28 1 + 17.88757 94.56050 65.78549 13.42610 110 27 1 + 17.82575 95.73770 67.33709 13.87840 110 26 1 + 17.67382 96.91490 68.50203 14.21763 110 26 1 + 17.84343 96.91490 69.08491 14.38724 110 26 1 + 17.77629 97.50350 69.66807 14.55686 110 26 1 + 17.77162 98.09210 70.44596 14.78301 110 25 1 + 17.77291 98.68070 71.22427 15.00916 110 25 1 + 17.78021 99.26930 72.00296 15.23531 110 25 1 + 17.73701 99.85790 72.58721 15.40493 110 24 1 + 17.87929 99.85790 73.07750 15.54721 110 24 1 + 17.82537 100.75061 73.96428 15.80446 110 24 1 + 17.87118 101.64332 75.14728 16.14746 110 24 1 + 17.93091 102.53603 76.33100 16.49046 110 23 1 + 18.00453 103.42874 77.51539 16.83345 110 23 1 + 18.00624 104.32145 78.40407 17.09070 110 23 1 + 18.17774 104.32145 78.99672 17.26220 110 23 1 + 18.19322 105.21416 79.88599 17.51945 110 23 1 + 18.30800 106.10687 81.07214 17.86244 110 23 1 + 18.43611 106.99958 82.25880 18.20544 110 22 1 + 18.57730 107.89229 83.44594 18.54844 110 22 1 + 18.64559 108.78500 84.33659 18.80568 110 0 1 + 20.53386 108.78500 56.86688 20.61391 110 0 1 + 22.21001 106.76600 61.08371 22.38663 110 0 1 + 24.48439 104.74700 66.69564 24.75026 110 0 1 + 26.76579 102.72800 72.29483 27.11388 110 0 1 + 29.05391 100.70900 77.88124 29.47751 110 0 1 + 30.75754 98.69000 82.06310 31.25023 110 0 1 + 17.40619 98.69000 360.69726 20.36232 110 0 1 + 17.38929 100.06340 341.63118 20.86529 110 0 1 + 17.60521 101.43680 336.23428 21.53590 110 0 1 + 17.88104 102.81020 338.27314 22.20652 110 0 1 + 18.21150 104.18360 343.27433 22.87714 110 0 1 + 18.42367 105.55700 348.03239 23.38010 110 0 1 + 18.75898 105.55700 351.55313 23.71541 110 0 1 + 19.01562 106.93040 357.19802 24.21837 110 0 1 + 19.48039 108.30380 365.16698 24.88899 110 0 1 + 19.98173 109.67720 373.51597 25.55961 110 0 1 + 20.51576 111.05060 382.13262 26.23022 110 0 1 + 20.91091 112.42400 388.72127 26.73319 110 0 1 + 21.24622 112.42400 393.16743 27.06849 110 0 1 + 21.66642 113.79740 399.90218 27.57146 110 0 1 + 22.27626 115.17080 408.97197 28.24207 110 0 1 + 22.90524 116.54420 418.12917 28.91269 110 0 1 + 23.55053 117.91760 427.35573 29.58331 110 0 1 + 24.04162 119.29100 434.31142 30.08627 110 0 1 + 24.37693 119.29100 438.96483 30.42158 110 0 1 + 24.87883 120.66440 445.96600 30.92454 110 0 1 + 25.55731 122.03780 455.33132 31.59516 110 0 1 + 26.24304 123.41120 464.72780 32.26578 110 0 1 + 26.93435 124.78460 474.15039 32.93639 110 0 1 + 27.46191 126.15800 481.23140 33.43936 110 0 1 + 27.79722 126.15800 485.95872 33.77467 110 0 1 + 28.32720 127.53140 493.05853 34.27763 110 0 1 + 29.02654 128.90480 502.53810 34.94825 110 0 1 + 29.72705 130.27820 512.03155 35.61886 110 0 1 + 30.42818 131.65160 521.53703 36.28948 110 0 1 + 30.96175 133.02500 528.67279 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4777,13 +4913,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.576 'Ophooglaag zand' - -3.50 35.093 'Hollandveen' - -5.70 14.645 'Oude Zeeklei' - -7.00 22.898 'Wadzand' - -10.00 36.670 'Hydrobiaklei' - -12.00 12.801 'Basisveen' - -12.50 80.722 'Eerste zandlaag' + -3.00 7.582 'Ophooglaag zand' + -3.50 35.106 'Hollandveen' + -5.70 14.602 'Oude Zeeklei' + -7.00 23.098 'Wadzand' + -10.00 36.101 'Hydrobiaklei' + -12.00 12.816 'Basisveen' + -12.50 80.821 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -4802,11 +4938,11 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 2.76 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.11 'Oude Zeeklei' - -7.00 6.87 'Wadzand' - -10.00 7.79 'Hydrobiaklei' + -5.70 3.10 'Oude Zeeklei' + -7.00 6.93 'Wadzand' + -10.00 7.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.99 'Eerste zandlaag' + -12.50 31.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5035,7 +5171,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -5047,7 +5183,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -5214,53 +5350,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.25443 100.76161 31.86408 3.83947 110 23 1 - 7.20677 101.65432 33.06586 4.18246 110 22 1 - 7.15228 102.54703 34.26739 4.52546 110 21 1 - 7.09103 103.43974 35.46867 4.86846 110 20 1 - 7.02308 104.33245 36.36949 5.12571 110 19 1 - 7.02308 104.33245 36.96996 5.29720 110 19 1 - 6.94852 105.22516 37.87056 5.55445 110 18 1 - 6.86756 106.11787 39.07118 5.89745 110 18 1 - 6.78045 107.01058 40.27161 6.24045 110 17 1 - 6.68742 107.90329 41.47185 6.58344 110 16 1 - 7.06461 108.79600 42.37192 6.84069 110 17 1 - 8.04419 108.79600 25.59840 7.93223 110 31 1 - 9.91247 106.77700 29.70475 9.70495 110 33 1 - 12.36426 104.75800 35.16081 12.06858 110 35 1 - 14.80896 102.73900 40.59674 14.43220 110 36 1 - 17.24689 100.72000 46.01595 16.79583 110 37 1 - 19.08745 98.70100 50.07174 18.56855 110 38 1 - 24.56520 98.70100 229.88374 12.31919 110 11 1 - 24.27480 100.07440 200.26957 12.82216 110 12 1 - 24.06838 101.44780 200.90889 13.49277 110 12 1 - 23.85691 102.82120 207.46715 14.16339 110 11 1 - 23.64628 104.19460 215.59855 14.83401 110 11 1 - 23.34956 105.56800 222.12669 15.33697 110 11 1 - 23.53462 105.56800 226.60771 15.70861 110 10 1 - 23.24852 106.94140 233.44973 16.17524 110 10 1 - 23.06670 108.31480 242.70650 16.84586 110 10 1 - 23.16247 109.68820 252.06828 17.51648 110 9 1 - 23.95899 111.06160 261.49732 18.18709 110 9 1 - 24.55931 112.43500 268.59852 18.69006 110 9 1 - 24.89462 112.43500 273.34448 19.02537 110 9 1 - 25.47019 113.80840 280.47714 19.52833 110 9 1 - 26.19171 115.18180 290.00539 20.19895 110 9 1 - 26.89437 116.55520 299.55031 20.86956 110 9 1 - 27.58102 117.92860 309.10779 21.54018 110 9 1 - 28.08686 119.30200 316.28211 22.04314 110 9 1 - 30.16209 119.30200 321.06773 24.11838 110 9 1 - 28.91750 120.67540 328.24957 22.88141 110 9 1 - 29.57183 122.04880 337.83018 23.55203 110 9 1 - 30.21913 123.42220 347.41558 24.22265 110 9 1 - 30.86103 124.79560 357.00485 24.89327 110 9 1 - 31.33152 126.16900 364.19883 25.39623 110 9 1 - 31.66683 126.16900 368.99576 25.73154 110 9 1 - 32.13499 127.54240 376.19237 26.23450 110 9 1 - 32.76915 128.91580 385.78963 26.90512 110 8 1 - 33.40220 130.28920 395.38873 27.57574 110 8 1 - 34.03464 131.66260 404.98939 28.24635 110 8 1 - 34.49935 133.03600 412.19072 28.74932 110 8 1 + 7.23822 100.76161 31.86408 3.83947 110 23 1 + 7.18904 101.65432 33.06586 4.18246 110 22 1 + 7.13303 102.54703 34.26739 4.52546 110 21 1 + 7.07025 103.43974 35.46867 4.86846 110 20 1 + 7.00078 104.33245 36.36949 5.12571 110 19 1 + 7.00078 104.33245 36.96996 5.29720 110 19 1 + 6.92472 105.22516 37.87056 5.55445 110 18 1 + 6.84226 106.11787 39.07118 5.89745 110 18 1 + 6.75366 107.01058 40.27161 6.24045 110 17 1 + 6.65916 107.90329 41.47185 6.58344 110 16 1 + 7.00078 108.79600 42.37192 6.84069 110 17 1 + 8.01228 108.79600 25.59840 7.93223 110 31 1 + 9.88157 106.77700 29.70475 9.70495 110 33 1 + 12.33445 104.75800 35.16081 12.06858 110 35 1 + 14.78030 102.73900 40.59674 14.43220 110 36 1 + 17.21943 100.72000 46.01595 16.79583 110 37 1 + 19.06124 98.70100 50.07174 18.56855 110 38 1 + 24.45296 98.70100 229.88374 12.31919 110 11 1 + 24.15647 100.07440 200.26957 12.82216 110 12 1 + 23.94417 101.44780 200.90889 13.49277 110 12 1 + 23.72710 102.82120 207.46715 14.16339 110 11 1 + 23.51119 104.19460 215.59855 14.83401 110 11 1 + 23.20957 105.56800 222.12669 15.33697 110 10 1 + 23.39463 105.56800 226.60771 15.67228 110 10 1 + 23.10409 106.94140 233.44973 16.17524 110 10 1 + 22.91845 108.31480 242.70650 16.84586 110 9 1 + 23.09435 109.68820 252.06828 17.51648 110 9 1 + 23.90156 111.06160 261.49732 18.18709 110 9 1 + 24.51233 112.43500 268.59852 18.69006 110 9 1 + 24.84764 112.43500 273.34448 19.02537 110 9 1 + 25.43337 113.80840 280.47714 19.52833 110 9 1 + 26.16476 115.18180 290.00539 20.19895 110 9 1 + 26.87701 116.55520 299.55031 20.86956 110 9 1 + 27.57296 117.92860 309.10779 21.54018 110 9 1 + 28.08779 119.30200 316.28211 22.04314 110 9 1 + 28.42310 119.30200 321.06773 22.37845 110 9 1 + 28.92713 120.67540 328.24957 22.88141 110 9 1 + 29.58988 122.04880 337.83018 23.55203 110 9 1 + 30.24538 123.42220 347.41558 24.22265 110 9 1 + 30.89531 124.79560 357.00485 24.89327 110 9 1 + 31.37368 126.16900 364.19883 25.39623 110 9 1 + 31.70899 126.16900 368.99576 25.73154 110 9 1 + 32.18493 127.54240 376.19237 26.23450 110 9 1 + 32.82683 128.91580 385.78963 26.90512 110 9 1 + 33.46755 130.28920 395.38873 27.57574 110 8 1 + 34.10765 131.66260 404.98939 28.24635 110 8 1 + 34.58001 133.03600 412.19072 28.74932 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5278,9 +5414,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.058 'Hydrobiaklei' - -12.00 6.790 'Basisveen' - -12.50 95.992 'Eerste zandlaag' + -10.00 6.037 'Hydrobiaklei' + -12.00 6.775 'Basisveen' + -12.50 95.752 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -5300,9 +5436,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.29 'Hydrobiaklei' + -10.00 -1.28 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -36.85 'Eerste zandlaag' + -12.50 -36.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -5524,7 +5660,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 240.73439 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 240.73239 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -5549,20 +5685,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.98 : Percentage mobilized resistance left - 7.91 : Percentage mobilized resistance right - 87.05 : Effective left - 86.25 : Effective right + 7.97 : Percentage mobilized resistance left + 7.90 : Percentage mobilized resistance right + 86.94 : Effective left + 86.13 : Effective right 1112.88 : Water pressure left 1112.88 : Water pressure right 1090.76 : Max effective resistance left 1090.76 : Max effective resistance right -13001.37 : Max moment left -13001.37 : Max moment right --1009.94 : Max mobilized moment left --1009.54 : Max mobilized moment right - 29.77 : Vertical force left - 29.72 : Vertical force right +-1008.52 : Max mobilized moment left +-1008.11 : Max mobilized moment right + 29.72 : Vertical force left + 29.68 : Vertical force right 7.8 : Max mobilized moment percentage left 7.8 : Max mobilized moment percentage right -2.43 : Level of single support @@ -5571,10 +5707,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.72 : Active force -29.77 : Passive force --29.72 : Plugged active force -29.77 : Plugged passive force +-29.68 : Active force +29.72 : Passive force +-29.68 : Plugged active force +29.72 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -5594,192 +5730,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.75013 - 0.00000 0.00000 -4.70541 - 0.00000 0.00000 -4.66068 - 0.00000 0.00000 -4.61596 - 0.00000 0.00000 -4.57124 - 0.00000 0.00000 -4.52651 - 0.00000 0.00000 -4.52651 - 0.00000 0.00000 -4.48179 - 0.00000 0.00000 -4.43706 - 0.00000 0.00000 -4.39234 - 0.00000 0.00000 -4.34762 - 0.00000 0.00000 -4.30289 - 0.00000 0.00000 -4.30289 - 0.00000 0.00000 -4.24326 - 0.00000 0.00000 -4.18363 - 0.00000 0.00000 -4.12400 - 0.00000 0.00000 -4.06437 - 0.00000 0.00000 -4.00473 - 0.00000 0.00000 -4.00473 - 0.00000 0.00000 -3.95504 - 0.00000 0.00000 -3.90535 - 0.00000 0.00000 -3.85565 - 0.00000 0.00000 -3.80596 - 0.00000 0.00000 -3.75627 - 0.00000 0.00000 -3.75627 - 0.00000 0.00000 -3.70657 - 0.00000 0.00000 -3.65688 - 0.00000 0.00000 -3.60719 - 0.00000 0.00000 -3.55750 - 0.00000 0.00000 -3.50780 - 0.00000 0.00000 -3.50780 - 0.00000 0.00000 -3.46507 - 0.00000 0.00000 -3.42233 - 0.00000 0.00000 -3.37959 - 0.00000 0.00000 -3.33686 - 0.00000 0.00000 -3.29412 - 0.00000 0.76561 -3.29412 - 0.08728 0.76561 -3.23747 - 0.17456 0.76561 -3.18084 - 0.26184 0.76561 -3.12424 - 0.34912 0.76561 -3.06767 - 0.43640 0.76561 -3.01117 - 0.43731 0.74761 -3.01117 - 0.49712 0.74761 -2.97156 - 0.55693 0.74761 -2.93199 - 0.61674 0.74761 -2.89246 - 0.67655 0.74761 -2.85299 - 0.73636 0.74761 -2.81356 - 0.73610 0.74570 -2.81356 - 0.75101 0.74570 -2.80372 - 0.76593 0.74570 -2.79387 - 0.78084 0.74570 -2.78404 - 0.79575 0.74570 -2.77420 - 0.81067 0.74570 -2.76437 - 0.81063 0.74615 -2.76437 - 0.88524 0.74615 -2.71528 - 0.95986 0.74615 -2.66630 - 1.03447 0.74615 -2.61744 - 1.10909 0.74615 -2.56871 - 1.18370 0.74615 -2.52013 - 1.18355 0.75131 -2.52013 - 1.25868 0.75131 -2.47169 - 1.33382 0.75131 -2.42341 - 1.40895 0.75131 -2.37529 - 1.48408 0.75131 -2.32736 - 1.55921 0.75131 -2.27961 - 1.55922 0.75174 -2.27961 - 1.63439 0.75174 -2.23206 - 1.70957 0.75174 -2.18471 - 1.78474 0.75174 -2.13758 - 1.85992 0.75174 -2.09068 - 1.93509 0.75174 -2.04401 - 1.93505 0.75243 -2.04401 - 2.04039 0.75243 -1.97908 - 2.14573 0.75243 -1.91465 - 2.25107 0.75243 -1.85076 - 2.35641 0.75243 -1.78742 - 2.46175 0.75243 -1.72466 - 2.46168 0.75397 -1.72466 - 2.55970 0.75397 -1.66693 - 2.65771 0.75397 -1.60975 - 2.75573 0.75397 -1.55313 - 2.85374 0.75397 -1.49710 - 2.95176 0.75397 -1.44167 - 2.95191 0.75368 -1.44167 - 3.04989 0.75368 -1.38687 - 3.14787 0.75368 -1.33273 - 3.24585 0.75368 -1.27925 - 3.34383 0.75368 -1.22646 - 3.44180 0.75368 -1.17439 - 3.44180 0.75366 -1.17439 - 3.55447 0.75366 -1.11541 - 3.66715 0.75366 -1.05743 - 3.77982 0.75366 -1.00049 - 3.89249 0.75366 -0.94461 - 4.00516 0.75366 -0.88982 - 4.00516 0.75366 -0.88982 - 4.11784 0.75366 -0.83616 - 4.23051 0.75366 -0.78366 - 4.34318 0.75366 -0.73236 - 4.45585 0.75366 -0.68227 - 4.56853 0.75366 -0.63344 - 4.56738 0.75950 -0.63344 - 4.68093 0.75950 -0.58590 - 4.79447 0.75950 -0.53968 - 4.90802 0.75950 -0.49480 - 5.02156 0.75950 -0.45131 - 5.13511 0.75950 -0.40923 - 5.13676 0.76963 -0.40923 - 5.25182 0.76963 -0.36860 - 5.36688 0.76963 -0.32944 - 5.48194 0.76963 -0.29180 - 5.59700 0.76963 -0.25570 - 5.71206 0.76963 -0.22117 - 5.71276 0.78170 -0.22117 - 5.71433 0.78170 -0.22072 - 5.71589 0.78170 -0.22027 - 5.71745 0.78170 -0.21982 - 5.71902 0.78170 -0.21937 - 5.72058 0.78170 -0.21892 - 5.72058 0.78168 -0.21892 - 5.75029 0.78168 -0.21043 - 5.77999 0.78168 -0.20204 - 5.80969 0.78168 -0.19376 - 5.83940 0.78168 -0.18558 - 5.86910 0.78168 -0.17751 - 5.86918 0.78087 -0.17751 - 5.96289 0.78087 -0.15272 - 6.05659 0.78087 -0.12902 - 6.15029 0.78087 -0.10642 - 6.24400 0.78087 -0.08493 - 6.33770 0.78087 -0.06457 - 6.33762 0.77991 -0.06457 - 6.38442 0.77991 -0.05483 - 6.43121 0.77991 -0.04537 - 6.47801 0.77991 -0.03620 - 6.52480 0.77991 -0.02733 - 6.57160 0.77991 -0.01875 - 6.57201 0.76856 -0.01875 - 6.63434 0.51992 -0.00631 - 6.66032 0.06286 0.00543 - 6.64792 -0.32366 0.01648 - 6.60351 -0.64082 0.02684 - 6.53324 -0.89368 0.03652 - 6.53310 -0.89146 0.03652 - 6.44344 -1.06949 0.04551 - 6.34034 -1.18554 0.05382 - 6.22963 -1.23688 0.06148 - 6.11715 -1.22465 0.06849 - 6.00786 -1.17554 0.07485 - 6.00787 -1.17531 0.07485 - 5.89188 -1.14412 0.08113 - 5.77913 -1.11056 0.08666 - 5.66984 -1.07493 0.09147 - 5.56420 -1.03753 0.09556 - 5.46238 -0.99862 0.09895 - 5.46084 -0.97279 0.09895 - 5.26295 -1.82171 0.10253 - 4.95979 -2.47715 0.10481 - 4.57806 -2.94593 0.10589 - 4.14310 -3.23967 0.10584 - 3.67835 -3.37504 0.10477 - 3.67854 -3.37305 0.10477 - 3.20690 -3.34274 0.10279 - 2.74885 -3.17796 0.10002 - 2.32240 -2.89902 0.09656 - 1.93893 -2.58135 0.09252 - 1.59895 -2.27806 0.08801 - 1.59898 -2.27748 0.08801 - 1.30044 -1.99002 0.08310 - 1.04098 -1.71956 0.07788 - 0.81813 -1.46710 0.07239 - 0.62931 -1.23343 0.06670 - 0.47186 -1.01916 0.06084 - 0.47187 -1.01898 0.06084 - 0.34306 -0.82455 0.05488 - 0.24006 -0.65029 0.04884 - 0.16002 -0.49645 0.04273 - 0.10009 -0.36321 0.03658 - 0.05736 -0.25068 0.03040 - 0.05736 -0.25065 0.03040 - 0.02894 -0.15889 0.02422 - 0.01190 -0.08793 0.01802 - 0.00335 -0.03779 0.01182 - 0.00035 -0.00848 0.00562 - 0.00000 0.00000 -0.00058 + 0.00000 0.00000 -4.75165 + 0.00000 0.00000 -4.70688 + 0.00000 0.00000 -4.66211 + 0.00000 0.00000 -4.61733 + 0.00000 0.00000 -4.57256 + 0.00000 0.00000 -4.52779 + 0.00000 0.00000 -4.52779 + 0.00000 0.00000 -4.48302 + 0.00000 0.00000 -4.43825 + 0.00000 0.00000 -4.39348 + 0.00000 0.00000 -4.34871 + 0.00000 0.00000 -4.30394 + 0.00000 0.00000 -4.30394 + 0.00000 0.00000 -4.24424 + 0.00000 0.00000 -4.18455 + 0.00000 0.00000 -4.12485 + 0.00000 0.00000 -4.06516 + 0.00000 0.00000 -4.00546 + 0.00000 0.00000 -4.00546 + 0.00000 0.00000 -3.95571 + 0.00000 0.00000 -3.90597 + 0.00000 0.00000 -3.85622 + 0.00000 0.00000 -3.80648 + 0.00000 0.00000 -3.75673 + 0.00000 0.00000 -3.75673 + 0.00000 0.00000 -3.70698 + 0.00000 0.00000 -3.65724 + 0.00000 0.00000 -3.60749 + 0.00000 0.00000 -3.55775 + 0.00000 0.00000 -3.50800 + 0.00000 0.00000 -3.50800 + 0.00000 0.00000 -3.46522 + 0.00000 0.00000 -3.42244 + 0.00000 0.00000 -3.37966 + 0.00000 0.00000 -3.33688 + 0.00000 0.00000 -3.29409 + 0.00000 0.76761 -3.29409 + 0.08751 0.76761 -3.23739 + 0.17501 0.76761 -3.18069 + 0.26252 0.76761 -3.12403 + 0.35003 0.76761 -3.06741 + 0.43754 0.76761 -3.01084 + 0.43845 0.74959 -3.01084 + 0.49842 0.74959 -2.97119 + 0.55839 0.74959 -2.93158 + 0.61836 0.74959 -2.89201 + 0.67832 0.74959 -2.85249 + 0.73829 0.74959 -2.81303 + 0.73803 0.74768 -2.81303 + 0.75298 0.74768 -2.80317 + 0.76794 0.74768 -2.79332 + 0.78289 0.74768 -2.78347 + 0.79785 0.74768 -2.77363 + 0.81280 0.74768 -2.76378 + 0.81276 0.74813 -2.76378 + 0.88757 0.74813 -2.71464 + 0.96239 0.74813 -2.66561 + 1.03720 0.74813 -2.61670 + 1.11201 0.74813 -2.56793 + 1.18683 0.74813 -2.51929 + 1.18668 0.75330 -2.51929 + 1.26201 0.75330 -2.47080 + 1.33734 0.75330 -2.42247 + 1.41267 0.75330 -2.37431 + 1.48799 0.75330 -2.32632 + 1.56332 0.75330 -2.27853 + 1.56333 0.75373 -2.27853 + 1.63871 0.75373 -2.23093 + 1.71408 0.75373 -2.18354 + 1.78945 0.75373 -2.13636 + 1.86483 0.75373 -2.08941 + 1.94020 0.75373 -2.04269 + 1.94016 0.75442 -2.04269 + 2.04578 0.75442 -1.97771 + 2.15139 0.75442 -1.91322 + 2.25701 0.75442 -1.84927 + 2.36263 0.75442 -1.78587 + 2.46825 0.75442 -1.72306 + 2.46818 0.75596 -1.72306 + 2.56646 0.75596 -1.66528 + 2.66473 0.75596 -1.60804 + 2.76301 0.75596 -1.55138 + 2.86128 0.75596 -1.49530 + 2.95955 0.75596 -1.43983 + 2.95970 0.75568 -1.43983 + 3.05794 0.75568 -1.38499 + 3.15618 0.75568 -1.33080 + 3.25442 0.75568 -1.27728 + 3.35266 0.75568 -1.22446 + 3.45089 0.75568 -1.17235 + 3.45089 0.75566 -1.17235 + 3.56386 0.75566 -1.11333 + 3.67683 0.75566 -1.05532 + 3.78980 0.75566 -0.99834 + 3.90277 0.75566 -0.94243 + 4.01574 0.75566 -0.88762 + 4.01574 0.75566 -0.88762 + 4.12872 0.75566 -0.83393 + 4.24169 0.75566 -0.78142 + 4.35466 0.75566 -0.73009 + 4.46763 0.75566 -0.67999 + 4.58060 0.75566 -0.63115 + 4.57946 0.76148 -0.63115 + 4.69330 0.76148 -0.58360 + 4.80714 0.76148 -0.53737 + 4.92098 0.76148 -0.49249 + 5.03482 0.76148 -0.44900 + 5.14866 0.76148 -0.40693 + 5.15017 0.77390 -0.40693 + 5.26587 0.77390 -0.36631 + 5.38157 0.77390 -0.32717 + 5.49727 0.77390 -0.28954 + 5.61296 0.77390 -0.25346 + 5.72866 0.77390 -0.21897 + 5.72938 0.78604 -0.21897 + 5.73095 0.78604 -0.21851 + 5.73252 0.78604 -0.21806 + 5.73410 0.78604 -0.21761 + 5.73567 0.78604 -0.21716 + 5.73724 0.78604 -0.21671 + 5.73724 0.78602 -0.21671 + 5.76711 0.78602 -0.20823 + 5.79698 0.78602 -0.19985 + 5.82685 0.78602 -0.19157 + 5.85672 0.78602 -0.18341 + 5.88658 0.78602 -0.17534 + 5.88667 0.78522 -0.17534 + 5.98089 0.78522 -0.15059 + 6.07512 0.78522 -0.12692 + 6.16934 0.78522 -0.10435 + 6.26357 0.78522 -0.08290 + 6.35780 0.78522 -0.06259 + 6.35772 0.78426 -0.06259 + 6.40477 0.78426 -0.05287 + 6.45183 0.78426 -0.04343 + 6.49888 0.78426 -0.03429 + 6.54594 0.78426 -0.02545 + 6.59300 0.78426 -0.01690 + 6.59341 0.77290 -0.01690 + 6.65607 0.52233 -0.00450 + 6.68210 0.06149 0.00720 + 6.66941 -0.32868 0.01820 + 6.62439 -0.64932 0.02851 + 6.55319 -0.90550 0.03814 + 6.55314 -0.90562 0.03814 + 6.46204 -1.08678 0.04707 + 6.35723 -1.20577 0.05533 + 6.24456 -1.25984 0.06293 + 6.12988 -1.25010 0.06988 + 6.01821 -1.20169 0.07618 + 6.01822 -1.20153 0.07618 + 5.89963 -1.16982 0.08239 + 5.78433 -1.13577 0.08786 + 5.67254 -1.09968 0.09259 + 5.56445 -1.06184 0.09661 + 5.46022 -1.02253 0.09993 + 5.45865 -0.99632 0.09993 + 5.25732 -1.84721 0.10342 + 4.95056 -2.50258 0.10560 + 4.56540 -2.96923 0.10659 + 4.12744 -3.25881 0.10645 + 3.66042 -3.38801 0.10530 + 3.66062 -3.38602 0.10530 + 3.18747 -3.35013 0.10323 + 2.72906 -3.17536 0.10039 + 2.30351 -2.89047 0.09686 + 1.92130 -2.57194 0.09275 + 1.58268 -2.26800 0.08817 + 1.58271 -2.26743 0.08817 + 1.28562 -1.97953 0.08320 + 1.02764 -1.70883 0.07793 + 0.80630 -1.45630 0.07239 + 0.61899 -1.22274 0.06664 + 0.46302 -1.00874 0.06074 + 0.46303 -1.00856 0.06074 + 0.33565 -0.81456 0.05474 + 0.23400 -0.64088 0.04865 + 0.15524 -0.48775 0.04250 + 0.09647 -0.35536 0.03631 + 0.05477 -0.24381 0.03009 + 0.05477 -0.24378 0.03009 + 0.02723 -0.15314 0.02386 + 0.01092 -0.08343 0.01763 + 0.00290 -0.03466 0.01140 + 0.00023 -0.00685 0.00516 + 0.00000 0.00000 -0.00108 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6005,7 +6141,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -6017,7 +6153,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -6184,53 +6320,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.00000 99.86890 0.05123 0.05123 1 0 A - 3.81421 100.76161 31.86408 3.83947 110 0 1 - 4.20418 101.65432 33.06586 4.18246 110 13 1 - 4.59139 102.54703 34.26739 4.52546 110 13 1 - 4.97584 103.43974 35.46867 4.86846 110 14 1 - 5.27178 104.33245 36.36949 5.12571 110 14 1 - 5.44327 104.33245 36.96996 5.29720 110 15 1 - 5.73648 105.22516 37.87056 5.55445 110 15 1 - 6.11274 106.11787 39.07118 5.89745 110 16 1 - 6.48636 107.01058 40.27161 6.24045 110 16 1 - 6.85739 107.90329 41.47185 6.58344 110 17 1 - 7.14011 108.79600 42.37192 6.84069 110 17 1 - 8.08194 108.79600 25.59840 7.93223 110 32 1 - 9.86721 106.77700 29.70475 9.70495 110 33 1 - 12.24190 104.75800 35.16081 12.06858 110 35 1 - 14.61514 102.73900 40.59674 14.43220 110 36 1 - 16.98694 100.72000 46.01595 16.79583 110 37 1 - 18.76644 98.70100 50.07174 18.56855 110 37 1 - 13.50656 98.70100 229.88374 12.31919 110 6 1 - 14.05249 100.07440 200.26957 12.82216 110 7 1 - 14.75050 101.44780 200.90889 13.49277 110 7 1 - 15.43402 102.82120 207.46715 14.16339 110 7 1 - 16.10413 104.19460 215.59855 14.83401 110 7 1 - 16.59427 105.56800 222.12669 15.33697 110 7 1 - 16.96590 105.56800 226.60771 15.70861 110 7 1 - 17.40876 106.94140 233.44973 16.17524 110 7 1 - 18.04612 108.31480 242.70650 16.84586 110 7 1 - 18.67525 109.68820 252.06828 17.51648 110 7 1 - 19.29739 111.06160 261.49732 18.18709 110 7 1 - 19.74613 112.43500 268.59852 18.69006 110 7 1 - 20.08144 112.43500 273.34448 19.02537 110 7 1 - 20.52558 113.80840 280.47714 19.52833 110 7 1 - 21.13353 115.18180 290.00539 20.19895 110 7 1 - 21.73829 116.55520 299.55031 20.86956 110 7 1 - 22.34054 117.92860 309.10779 21.54018 110 7 1 - 22.77328 119.30200 316.28211 22.04314 110 7 1 - 24.84851 119.30200 321.06773 24.11838 110 8 1 - 23.54003 120.67540 328.24957 22.88141 110 7 1 - 24.13812 122.04880 337.83018 23.55203 110 7 1 - 24.73543 123.42220 347.41558 24.22265 110 7 1 - 25.33222 124.79560 357.00485 24.89327 110 7 1 - 25.76106 126.16900 364.19883 25.39623 110 7 1 - 26.09637 126.16900 368.99576 25.73154 110 7 1 - 26.52509 127.54240 376.19237 26.23450 110 7 1 - 27.12139 128.91580 385.78963 26.90512 110 7 1 - 27.71762 130.28920 395.38873 27.57574 110 7 1 - 28.31383 131.66260 404.98939 28.24635 110 7 1 - 28.74239 133.03600 412.19072 28.74932 110 0 1 + 3.82146 100.76161 31.86408 3.83947 110 0 1 + 4.21125 101.65432 33.06586 4.18246 110 13 1 + 4.59827 102.54703 34.26739 4.52546 110 13 1 + 4.98251 103.43974 35.46867 4.86846 110 14 1 + 5.27825 104.33245 36.36949 5.12571 110 15 1 + 5.44975 104.33245 36.96996 5.29720 110 15 1 + 5.74273 105.22516 37.87056 5.55445 110 15 1 + 6.11877 106.11787 39.07118 5.89745 110 16 1 + 6.49216 107.01058 40.27161 6.24045 110 16 1 + 6.86295 107.90329 41.47185 6.58344 110 17 1 + 7.14543 108.79600 42.37192 6.84069 110 17 1 + 8.08460 108.79600 25.59840 7.93223 110 32 1 + 9.86973 106.77700 29.70475 9.70495 110 33 1 + 12.24429 104.75800 35.16081 12.06858 110 35 1 + 14.61739 102.73900 40.59674 14.43220 110 36 1 + 16.98905 100.72000 46.01595 16.79583 110 37 1 + 18.76841 98.70100 50.07174 18.56855 110 37 1 + 13.51838 98.70100 229.88374 12.31919 110 6 1 + 14.06315 100.07440 200.26957 12.82216 110 7 1 + 14.76002 101.44780 200.90889 13.49277 110 7 1 + 15.44241 102.82120 207.46715 14.16339 110 7 1 + 16.11144 104.19460 215.59855 14.83401 110 7 1 + 16.60054 105.56800 222.12669 15.33697 110 7 1 + 16.93585 105.56800 226.60771 15.67228 110 7 1 + 17.41405 106.94140 233.44973 16.17524 110 7 1 + 18.05049 108.31480 242.70650 16.84586 110 7 1 + 18.67874 109.68820 252.06828 17.51648 110 7 1 + 19.30007 111.06160 261.49732 18.18709 110 7 1 + 19.74805 112.43500 268.59852 18.69006 110 7 1 + 20.08336 112.43500 273.34448 19.02537 110 7 1 + 20.52679 113.80840 280.47714 19.52833 110 7 1 + 21.13406 115.18180 290.00539 20.19895 110 7 1 + 21.73820 116.55520 299.55031 20.86956 110 7 1 + 22.33985 117.92860 309.10779 21.54018 110 7 1 + 22.77203 119.30200 316.28211 22.04314 110 7 1 + 23.10734 119.30200 321.06773 22.37845 110 7 1 + 23.53825 120.67540 328.24957 22.88141 110 7 1 + 24.13582 122.04880 337.83018 23.55203 110 7 1 + 24.73264 123.42220 347.41558 24.22265 110 7 1 + 25.32894 124.79560 357.00485 24.89327 110 7 1 + 25.75731 126.16900 364.19883 25.39623 110 7 1 + 26.09262 126.16900 368.99576 25.73154 110 7 1 + 26.52088 127.54240 376.19237 26.23450 110 7 1 + 27.11671 128.91580 385.78963 26.90512 110 7 1 + 27.71249 130.28920 395.38873 27.57574 110 7 1 + 28.30824 131.66260 404.98939 28.24635 110 7 1 + 28.73634 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6248,9 +6384,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.705 'Hydrobiaklei' - -12.00 6.714 'Basisveen' - -12.50 74.828 'Eerste zandlaag' + -10.00 4.711 'Hydrobiaklei' + -12.00 6.715 'Basisveen' + -12.50 74.708 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6272,7 +6408,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.72 'Eerste zandlaag' + -12.50 -28.68 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6501,7 +6637,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -6513,7 +6649,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -6680,53 +6816,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 9.22757 100.76161 31.86408 3.83947 110 29 1 - 8.83607 101.65432 33.06586 4.18246 110 27 1 - 8.45459 102.54703 34.26739 4.52546 110 25 1 - 8.08316 103.43974 35.46867 4.86846 110 23 1 - 7.72181 104.33245 36.36949 5.12571 110 21 1 - 7.72181 104.33245 36.96996 5.29720 110 21 1 - 7.37055 105.22516 37.87056 5.55445 110 19 1 - 7.02934 106.11787 39.07118 5.89745 110 18 1 - 6.69810 107.01058 40.27161 6.24045 110 17 1 - 6.37681 107.90329 41.47185 6.58344 110 0 1 - 6.54127 108.79600 42.37192 6.84069 110 0 1 - 7.78252 108.79600 25.59840 7.93223 110 0 1 - 9.54269 106.77700 29.70475 9.70495 110 0 1 - 11.89525 104.75800 35.16081 12.06858 110 0 1 - 14.24927 102.73900 40.59674 14.43220 110 0 1 - 16.60471 100.72000 46.01595 16.79583 110 0 1 - 18.37065 98.70100 50.07174 18.56855 110 0 1 - 20.26440 98.70100 229.88374 12.31919 110 9 1 - 19.42197 100.07440 200.26957 12.82216 110 10 1 - 18.74456 101.44780 200.90889 13.49277 110 9 1 - 18.13669 102.82120 207.46715 14.16339 110 9 1 - 17.59778 104.19460 215.59855 14.83401 110 8 1 - 17.03445 105.56800 222.12669 15.33697 110 8 1 - 17.21951 105.56800 226.60771 15.70861 110 8 1 - 16.72212 106.94140 233.44973 16.17524 110 7 1 - 16.37880 108.31480 242.70650 16.84586 110 0 1 - 16.35770 109.68820 252.06828 17.51648 110 0 1 - 17.07680 111.06160 261.49732 18.18709 110 0 1 - 17.63398 112.43500 268.59852 18.69006 110 0 1 - 17.96929 112.43500 273.34448 19.02537 110 0 1 - 18.53108 113.80840 280.47714 19.52833 110 0 1 - 19.26436 115.18180 290.00539 20.19895 110 0 1 - 20.00083 116.55520 299.55031 20.86956 110 0 1 - 20.73982 117.92860 309.10779 21.54018 110 0 1 - 21.31301 119.30200 316.28211 22.04314 110 0 1 - 23.38824 119.30200 321.06773 24.11838 110 0 1 - 22.22280 120.67540 328.24957 22.88141 110 0 1 - 22.96594 122.04880 337.83018 23.55203 110 0 1 - 23.70986 123.42220 347.41558 24.22265 110 0 1 - 24.45431 124.79560 357.00485 24.89327 110 0 1 - 25.03140 126.16900 364.19883 25.39623 110 0 1 - 25.36671 126.16900 368.99576 25.73154 110 0 1 - 25.94391 127.54240 376.19237 26.23450 110 0 1 - 26.68885 128.91580 385.78963 26.90512 110 0 1 - 27.43385 130.28920 395.38873 27.57574 110 0 1 - 28.17888 131.66260 404.98939 28.24635 110 0 1 - 28.75624 133.03600 412.19072 28.74932 110 7 1 + 9.27714 100.76161 31.86408 3.83947 110 29 1 + 8.88398 101.65432 33.06586 4.18246 110 27 1 + 8.50068 102.54703 34.26739 4.52546 110 25 1 + 8.12727 103.43974 35.46867 4.86846 110 23 1 + 7.76378 104.33245 36.36949 5.12571 110 21 1 + 7.76378 104.33245 36.96996 5.29720 110 21 1 + 7.41020 105.22516 37.87056 5.55445 110 20 1 + 7.06649 106.11787 39.07118 5.89745 110 18 1 + 6.73261 107.01058 40.27161 6.24045 110 17 1 + 6.40852 107.90329 41.47185 6.58344 110 0 1 + 6.53595 108.79600 42.37192 6.84069 110 0 1 + 7.77986 108.79600 25.59840 7.93223 110 0 1 + 9.54017 106.77700 29.70475 9.70495 110 0 1 + 11.89286 104.75800 35.16081 12.06858 110 0 1 + 14.24702 102.73900 40.59674 14.43220 110 0 1 + 16.60260 100.72000 46.01595 16.79583 110 0 1 + 18.36868 98.70100 50.07174 18.56855 110 0 1 + 20.29764 98.70100 229.88374 12.31919 110 9 1 + 19.43948 100.07440 200.26957 12.82216 110 10 1 + 18.74623 101.44780 200.90889 13.49277 110 9 1 + 18.12259 102.82120 207.46715 14.16339 110 9 1 + 17.56812 104.19460 215.59855 14.83401 110 8 1 + 16.98958 105.56800 222.12669 15.33697 110 8 1 + 17.17464 105.56800 226.60771 15.67228 110 8 1 + 16.66253 106.94140 233.44973 16.17524 110 7 1 + 16.30523 108.31480 242.70650 16.84586 110 0 1 + 16.35421 109.68820 252.06828 17.51648 110 0 1 + 17.07412 111.06160 261.49732 18.18709 110 0 1 + 17.63207 112.43500 268.59852 18.69006 110 0 1 + 17.96737 112.43500 273.34448 19.02537 110 0 1 + 18.52987 113.80840 280.47714 19.52833 110 0 1 + 19.26383 115.18180 290.00539 20.19895 110 0 1 + 20.00093 116.55520 299.55031 20.86956 110 0 1 + 20.74051 117.92860 309.10779 21.54018 110 0 1 + 21.31426 119.30200 316.28211 22.04314 110 0 1 + 21.64957 119.30200 321.06773 22.37845 110 0 1 + 22.22458 120.67540 328.24957 22.88141 110 0 1 + 22.96825 122.04880 337.83018 23.55203 110 0 1 + 23.71266 123.42220 347.41558 24.22265 110 0 1 + 24.45760 124.79560 357.00485 24.89327 110 0 1 + 25.03515 126.16900 364.19883 25.39623 110 0 1 + 25.37046 126.16900 368.99576 25.73154 110 0 1 + 25.94813 127.54240 376.19237 26.23450 110 0 1 + 26.69353 128.91580 385.78963 26.90512 110 0 1 + 27.43898 130.28920 395.38873 27.57574 110 0 1 + 28.18447 131.66260 404.98939 28.24635 110 0 1 + 28.76229 133.03600 412.19072 28.74932 110 7 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6744,9 +6880,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.652 'Hydrobiaklei' - -12.00 6.537 'Basisveen' - -12.50 73.858 'Eerste zandlaag' + -10.00 6.685 'Hydrobiaklei' + -12.00 6.536 'Basisveen' + -12.50 73.715 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -6766,9 +6902,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 1.41 'Hydrobiaklei' + -10.00 1.42 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.35 'Eerste zandlaag' + -12.50 28.30 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -6990,8 +7126,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 364.05184 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 259.52759 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 364.04980 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 259.58754 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -7032,10 +7168,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.24 : Percentage mobilized resistance left - 8.33 : Percentage mobilized resistance right - 47.05 : Effective left - 90.87 : Effective right + 9.26 : Percentage mobilized resistance left + 8.34 : Percentage mobilized resistance right + 47.12 : Effective left + 91.02 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 508.96 : Max effective resistance left @@ -7044,8 +7180,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.68 : Vertical force left - 30.51 : Vertical force right + 14.73 : Vertical force left + 30.56 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -7054,10 +7190,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.51 : Active force -14.68 : Passive force --30.51 : Plugged active force -14.68 : Plugged passive force +-30.56 : Active force +14.73 : Passive force +-30.56 : Plugged active force +14.73 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -7077,192 +7213,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.37390 - 0.00000 0.00000 6.99547 - 0.00000 0.00000 6.61704 - 0.00000 0.00000 6.23861 - 0.00000 0.00000 5.86019 - 0.00000 0.00000 5.48176 - 0.00000 0.00000 5.48176 - 0.00000 0.00000 5.10333 - 0.00000 0.00000 4.72490 - 0.00000 0.00000 4.34647 - 0.00000 0.00000 3.96804 - 0.00000 0.00000 3.58962 - 0.00000 0.00000 3.58962 - 0.00283 0.07063 3.08505 - 0.02260 0.28253 2.58048 - 0.07628 0.63569 2.07591 - 0.18082 1.13011 1.57131 - 0.35316 1.76580 1.06668 - 0.35316 1.76580 1.06668 - 0.56080 2.40345 0.64612 - 0.83712 3.13920 0.22548 - 1.19191 3.97305 -0.19526 - 1.63500 4.90500 -0.61617 - 2.17618 5.93505 -1.03728 - 2.17618 5.93505 -1.03728 - 2.82528 7.06320 -1.45865 - 3.59209 8.28945 -1.88037 - 4.48644 9.61380 -2.30256 - 5.51812 11.03625 -2.72534 - 6.69696 12.55680 -3.14880 - 6.69696 12.55680 -3.14880 - 7.83593 13.94293 -3.51363 - 9.09722 15.40162 -3.87920 - 10.48709 16.93286 -4.24562 - 12.01176 18.53666 -4.61303 - 13.67747 20.21301 -4.98155 - 13.67747 -102.33882 -4.98155 - 2.14267 -100.00485 -5.47164 - -9.11879 -97.54338 -5.96206 - -20.09237 -94.95443 -6.45104 - -30.76355 -92.23798 -6.93678 - -41.11779 -89.39404 -7.41747 - -41.11687 -89.41204 -7.41747 - -48.18738 -87.34017 -7.75085 - -55.08962 -85.20551 -8.08034 - -61.81858 -83.00807 -8.40541 - -68.36924 -80.74785 -8.72550 - -74.73657 -78.42484 -9.04008 - -74.73682 -78.42675 -9.04008 - -76.29946 -77.83619 -9.11780 - -77.85025 -77.24170 -9.19514 - -79.38910 -76.64329 -9.27208 - -80.91595 -76.04096 -9.34863 - -82.43071 -75.43470 -9.42476 - -82.43075 -75.43425 -9.42476 - -89.82049 -72.34410 -9.79904 - -96.89630 -69.15585 -10.16199 - -103.64839 -65.86950 -10.51278 - -110.06693 -62.48505 -10.85054 - -116.14213 -59.00250 -11.17444 - -116.14228 -58.99734 -11.17444 - -121.86543 -55.46574 -11.48366 - -127.23542 -51.93414 -11.77751 - -132.25226 -48.40254 -12.05538 - -136.91593 -44.87094 -12.31663 - -141.22644 -41.33934 -12.56063 - -141.22643 -41.33890 -12.56063 - -145.18374 -37.80730 -12.78678 - -148.78790 -34.27570 -12.99464 - -152.03889 -30.74410 -13.18379 - -154.93672 -27.21250 -13.35383 - -157.48139 -23.68090 -13.50435 - -157.48143 -23.68021 -13.50435 - -160.45056 -18.73597 -13.68154 - -162.72750 -13.79173 -13.81909 - -164.31225 -8.84749 -13.91662 - -165.20480 -3.90325 -13.97374 - -165.40516 1.04099 -13.99005 - -165.40523 1.04252 -13.99005 - -164.97128 5.63360 -13.96845 - -163.94049 10.22468 -13.91171 - -162.31286 14.81576 -13.82019 - -160.08839 19.40684 -13.69423 - -157.26708 23.99792 -13.53417 - -157.26693 23.99764 -13.53417 - -153.84882 28.58872 -13.34048 - -149.83387 33.17980 -13.11401 - -145.22207 37.77088 -12.85577 - -140.01344 42.36196 -12.56672 - -134.20796 46.95304 -12.24786 - -134.20797 46.95302 -12.24786 - -126.79383 52.23276 -11.84569 - -118.59037 57.51250 -11.40780 - -109.59759 62.79224 -10.93673 - -99.81549 68.07199 -10.43500 - -89.24407 73.35173 -9.90515 - -89.24407 73.35173 -9.90515 - -77.88333 78.63147 -9.34990 - -65.73326 83.91121 -8.77269 - -52.79387 89.19095 -8.17719 - -39.06517 94.47070 -7.56702 - -24.54714 99.75044 -6.94583 - -24.54828 99.75627 -6.94583 - -9.24006 105.03601 -6.31746 - 6.85749 110.31576 -5.68646 - 23.74435 115.59550 -5.05760 - 41.42054 120.87524 -4.43563 - 59.88605 126.15498 -3.82530 - 59.88770 126.16512 -3.82530 - 79.14405 131.44486 -3.23156 - 99.18972 136.72460 -2.66008 - 120.02470 142.00434 -2.11673 - 141.64902 147.28409 -1.60738 - 164.06265 152.56383 -1.13790 - 164.06335 152.57589 -1.13790 - 164.36856 152.63137 -1.13191 - 164.67387 152.67201 -1.12594 - 164.97925 152.71270 -1.11997 - 165.28472 152.75347 -1.11401 - 165.59026 152.79427 -1.10806 - 165.59026 152.79425 -1.10806 - 171.41134 153.57973 -0.99660 - 177.26247 154.37668 -0.88826 - 183.14415 155.18779 -0.78315 - 189.05692 156.01306 -0.68136 - 195.00129 156.84980 -0.58302 - 195.00137 -102.67860 -0.58302 - 182.84528 -99.90828 -0.29528 - 171.02796 -97.02348 -0.04070 - 159.56529 -93.99756 0.18280 - 148.47419 -90.83052 0.37729 - 137.77054 -87.54900 0.54484 - 137.77046 -87.54996 0.54484 - 132.57229 -85.72367 0.61916 - 127.48345 -83.90601 0.68746 - 122.50337 -82.09824 0.74997 - 117.63146 -80.30034 0.80692 - 112.86716 -78.51109 0.85854 - 112.86759 -78.52439 0.85854 - 105.82915 -76.13818 0.92715 - 99.01441 -73.62130 0.98472 - 92.43270 -71.01772 1.03195 - 86.09157 -68.33539 1.06950 - 79.99759 -65.58964 1.09808 - 79.99747 -65.58521 1.09808 - 74.15745 -62.75937 1.11834 - 68.57678 -59.88358 1.13087 - 63.26020 -56.95607 1.13622 - 58.21217 -53.98252 1.13494 - 53.43570 -50.99857 1.12760 - 53.43575 -50.99820 1.12760 - 48.47316 -48.25870 1.11316 - 43.78155 -45.59318 1.09261 - 39.35053 -43.04724 1.06652 - 35.16723 -40.64731 1.03544 - 31.21395 -38.46095 0.99993 - 31.21309 -38.45003 0.99993 - 26.05627 -35.20322 0.94383 - 21.35693 -31.94067 0.88129 - 17.10977 -28.74493 0.81338 - 13.30485 -25.62418 0.74115 - 9.93095 -22.59017 0.66564 - 9.93102 -22.58683 0.66564 - 6.97735 -19.62576 0.58781 - 4.43126 -16.76213 0.50826 - 2.27966 -13.99054 0.42753 - 0.50954 -11.31254 0.34615 - -0.89258 -8.73584 0.26466 - -0.89126 -8.71499 0.26466 - -1.94115 -6.32888 0.18348 - -2.67604 -4.21472 0.10278 - -3.13388 -2.37068 0.02269 - -3.35233 -0.79456 -0.05669 - -3.36873 0.51626 -0.13523 - -3.36874 0.51519 -0.13523 - -3.20881 1.68539 -0.21289 - -2.91462 2.47419 -0.28976 - -2.52803 3.00589 -0.36592 - -2.08487 3.28269 -0.44148 - -1.62069 3.30649 -0.51652 - -1.62072 3.30593 -0.51652 - -1.14016 3.40762 -0.59116 - -0.69364 2.92963 -0.66553 - -0.33151 2.20207 -0.73970 - -0.08868 1.22548 -0.81377 - 0.00001 0.00005 -0.88782 + 0.00000 0.00000 7.37240 + 0.00000 0.00000 6.99402 + 0.00000 0.00000 6.61564 + 0.00000 0.00000 6.23726 + 0.00000 0.00000 5.85888 + 0.00000 0.00000 5.48049 + 0.00000 0.00000 5.48049 + 0.00000 0.00000 5.10211 + 0.00000 0.00000 4.72373 + 0.00000 0.00000 4.34535 + 0.00000 0.00000 3.96697 + 0.00000 0.00000 3.58859 + 0.00000 0.00000 3.58859 + 0.00283 0.07063 3.08408 + 0.02260 0.28253 2.57958 + 0.07628 0.63569 2.07507 + 0.18082 1.13011 1.57053 + 0.35316 1.76580 1.06596 + 0.35316 1.76580 1.06596 + 0.56080 2.40345 0.64545 + 0.83712 3.13920 0.22487 + 1.19191 3.97305 -0.19582 + 1.63500 4.90500 -0.61668 + 2.17618 5.93505 -1.03774 + 2.17618 5.93505 -1.03774 + 2.82528 7.06320 -1.45905 + 3.59209 8.28945 -1.88073 + 4.48644 9.61380 -2.30286 + 5.51812 11.03625 -2.72558 + 6.69696 12.55680 -3.14900 + 6.69696 12.55680 -3.14900 + 7.83593 13.94293 -3.51379 + 9.09722 15.40162 -3.87930 + 10.48709 16.93286 -4.24568 + 12.01176 18.53666 -4.61304 + 13.67747 20.21301 -4.98152 + 13.67747 -102.33678 -4.98152 + 2.14291 -100.00281 -5.47155 + -9.11832 -97.54134 -5.96192 + -20.09168 -94.95238 -6.45084 + -30.76262 -92.23594 -6.93651 + -41.11662 -89.39200 -7.41715 + -41.11571 -89.41001 -7.41715 + -48.18605 -87.33814 -7.75049 + -55.08813 -85.20348 -8.07994 + -61.81693 -83.00604 -8.40496 + -68.36743 -80.74582 -8.72501 + -74.73459 -78.42281 -9.03955 + -74.73485 -78.42472 -9.03955 + -76.29744 -77.83416 -9.11726 + -77.84819 -77.23968 -9.19459 + -79.38701 -76.64127 -9.27152 + -80.91381 -76.03893 -9.34806 + -82.42854 -75.43267 -9.42418 + -82.42857 -75.43222 -9.42418 + -89.81811 -72.34207 -9.79841 + -96.89372 -69.15382 -10.16131 + -103.64560 -65.86747 -10.51205 + -110.06394 -62.48302 -10.84976 + -116.13894 -59.00047 -11.17361 + -116.13909 -58.99530 -11.17361 + -121.86204 -55.46370 -11.48278 + -127.23183 -51.93210 -11.77659 + -132.24846 -48.40050 -12.05441 + -136.91193 -44.86890 -12.31561 + -141.22224 -41.33730 -12.55956 + -141.22223 -41.33687 -12.55956 + -145.17934 -37.80527 -12.78566 + -148.78328 -34.27367 -12.99348 + -152.03407 -30.74207 -13.18258 + -154.93170 -27.21047 -13.35258 + -157.47616 -23.67887 -13.50306 + -157.47621 -23.67818 -13.50306 + -160.44506 -18.73394 -13.68018 + -162.72171 -13.78970 -13.81768 + -164.30617 -8.84546 -13.91515 + -165.19844 -3.90122 -13.97221 + -165.39852 1.04302 -13.98847 + -165.39858 1.04455 -13.98847 + -164.96437 5.63563 -13.96682 + -163.93332 10.22671 -13.91003 + -162.30543 14.81779 -13.81846 + -160.08069 19.40887 -13.69246 + -157.25912 23.99995 -13.53236 + -157.25897 23.99967 -13.53236 + -153.84059 28.59075 -13.33862 + -149.82537 33.18183 -13.11212 + -145.21331 37.77291 -12.85384 + -140.00441 42.36399 -12.56476 + -134.19868 46.95507 -12.24586 + -134.19868 46.95506 -12.24586 + -126.78424 52.23480 -11.84365 + -118.58047 57.51454 -11.40573 + -109.58739 62.79428 -10.93463 + -99.80498 68.07402 -10.43287 + -89.23326 73.35377 -9.90300 + -89.23326 73.35377 -9.90300 + -77.87221 78.63351 -9.34772 + -65.72184 83.91325 -8.77050 + -52.78215 89.19299 -8.17497 + -39.05313 94.47273 -7.56479 + -24.53480 99.75248 -6.94360 + -24.53594 99.75830 -6.94360 + -9.22742 105.03804 -6.31522 + 6.87043 110.31779 -5.68422 + 23.75760 115.59753 -5.05536 + 41.43409 120.87727 -4.43339 + 59.89991 126.15701 -3.82307 + 59.90141 126.16943 -3.82307 + 79.15840 131.44917 -3.22934 + 99.20471 136.72891 -2.65788 + 120.04035 142.00865 -2.11456 + 141.66530 147.28840 -1.60523 + 164.07958 152.56814 -1.13578 + 164.08030 152.58028 -1.13578 + 164.38552 152.63576 -1.12979 + 164.69083 152.67639 -1.12382 + 164.99622 152.71708 -1.11785 + 165.30170 152.75785 -1.11189 + 165.60725 152.79865 -1.10594 + 165.60725 152.79863 -1.10594 + 171.42850 153.58411 -0.99449 + 177.27979 154.38107 -0.88616 + 183.16164 155.19218 -0.78106 + 189.07458 156.01744 -0.67928 + 195.01911 156.85418 -0.58095 + 195.01919 -102.73416 -0.58095 + 182.85643 -99.96384 -0.29324 + 171.03245 -97.07904 -0.03869 + 159.56311 -94.05312 0.18477 + 148.46534 -90.88608 0.37922 + 137.75503 -87.60456 0.54674 + 137.75495 -87.60551 0.54674 + 132.55344 -85.77922 0.62104 + 127.46127 -83.96157 0.68932 + 122.47786 -82.15379 0.75182 + 117.60262 -80.35589 0.80876 + 112.83498 -78.56664 0.86037 + 112.83541 -78.57996 0.86037 + 105.79196 -76.19405 0.92897 + 98.97195 -73.68094 0.98653 + 92.38466 -71.08096 1.03374 + 86.03761 -68.40204 1.07130 + 79.93742 -65.65950 1.09988 + 79.93739 -65.65741 1.09988 + 74.09066 -62.83454 1.12015 + 68.50302 -59.96148 1.13270 + 63.17925 -57.03643 1.13807 + 58.12380 -54.06504 1.13683 + 53.33977 -51.08175 1.12953 + 53.33981 -51.08144 1.12953 + 48.37445 -48.25841 1.11515 + 43.68291 -45.59208 1.09467 + 39.25204 -43.04530 1.06866 + 35.06897 -40.64472 1.03768 + 31.11597 -38.45791 1.00228 + 31.11509 -38.44654 1.00228 + 25.95828 -35.20380 0.94635 + 21.25916 -31.93685 0.88401 + 17.01286 -28.73635 0.81632 + 13.20950 -25.61046 0.74433 + 9.83791 -22.57087 0.66909 + 9.83811 -22.56814 0.66909 + 6.88724 -19.60357 0.59155 + 4.34471 -16.73339 0.51232 + 2.19762 -13.95471 0.43192 + 0.43305 -11.26904 0.35090 + -0.96233 -8.68234 0.26977 + -0.96223 -8.68241 0.26977 + -2.00632 -6.27844 0.18899 + -2.73282 -4.14508 0.10870 + -3.17948 -2.28045 0.02903 + -3.38378 -0.68230 -0.04992 + -3.38284 0.65201 -0.12802 + -3.38284 0.65094 -0.12802 + -3.21355 1.72432 -0.20523 + -2.91208 2.53959 -0.28165 + -2.51439 3.09925 -0.35738 + -2.05612 3.40551 -0.43250 + -1.57259 3.46022 -0.50710 + -1.57262 3.45968 -0.50710 + -1.09903 3.26437 -0.58132 + -0.67022 2.82013 -0.65527 + -0.32098 2.12772 -0.72904 + -0.08602 1.18762 -0.80271 + 0.00001 0.00005 -0.87635 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -7488,7 +7624,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -7500,7 +7636,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -7667,53 +7803,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.54808 100.76161 31.86408 3.83947 110 24 1 - 8.12136 101.65432 33.06586 4.18246 110 25 1 - 8.65324 102.54703 34.26739 4.52546 110 25 1 - 9.14646 103.43974 35.46867 4.86846 110 26 1 - 9.51801 104.33245 36.36949 5.12571 110 26 1 - 9.68951 104.33245 36.96996 5.29720 110 26 1 - 10.02781 105.22516 37.87056 5.55445 110 26 1 - 10.42093 106.11787 39.07118 5.89745 110 27 1 - 10.78532 107.01058 40.27161 6.24045 110 27 1 - 11.12322 107.90329 41.47185 6.58344 110 27 1 - 11.35109 108.79600 42.37192 6.84069 110 27 1 - 10.18743 108.79600 25.59840 7.93223 110 40 1 - 11.93126 106.77700 29.70475 9.70495 110 40 1 - 14.25379 104.75800 35.16081 12.06858 110 41 1 - 16.56524 102.73900 40.59674 14.43220 110 41 1 - 18.86670 100.72000 46.01595 16.79583 110 41 1 - 20.56841 98.70100 50.07174 18.56855 110 41 1 - 24.31839 98.70100 229.88374 12.31919 110 11 1 - 24.14806 100.07440 200.26957 12.82216 110 12 1 - 24.06828 101.44780 200.90889 13.49277 110 12 1 - 23.92400 102.82120 207.46715 14.16339 110 12 1 - 23.72782 104.19460 215.59855 14.83401 110 11 1 - 23.32468 105.56800 222.12669 15.33697 110 11 1 - 23.69632 105.56800 226.60771 15.70861 110 10 1 - 23.22897 106.94140 233.44973 16.17524 110 10 1 - 22.94502 108.31480 242.70650 16.84586 110 9 1 - 22.64687 109.68820 252.06828 17.51648 110 9 1 - 22.34093 111.06160 261.49732 18.18709 110 9 1 - 21.86593 112.43500 268.59852 18.69006 110 8 1 - 22.20123 112.43500 273.34448 19.02537 110 8 1 - 21.73008 113.80840 280.47714 19.52833 110 8 1 - 21.43236 115.18180 290.00539 20.19895 110 7 1 - 21.14182 116.55520 299.55031 20.86956 110 7 1 - 20.85991 117.92860 309.10779 21.54018 110 0 1 - 20.42038 119.30200 316.28211 22.04314 110 0 1 - 22.49561 119.30200 321.06773 24.11838 110 0 1 - 20.32675 120.67540 328.24957 22.88141 110 0 1 - 20.07496 122.04880 337.83018 23.55203 110 0 1 - 19.83156 123.42220 347.41558 24.22265 110 0 1 - 19.59549 124.79560 357.00485 24.89327 110 0 1 - 19.19799 126.16900 364.19883 25.39623 110 0 1 - 19.53330 126.16900 368.99576 25.73154 110 0 1 - 19.14055 127.54240 376.19237 26.23450 110 0 1 - 18.91877 128.91580 385.78963 26.90512 110 0 1 - 18.69928 130.28920 395.38873 27.57574 110 0 1 - 18.48108 131.66260 404.98939 28.24635 110 0 1 - 18.09551 133.03600 412.19072 28.74932 110 0 1 + 7.55534 100.76161 31.86408 3.83947 110 24 1 + 8.12858 101.65432 33.06586 4.18246 110 25 1 + 8.66043 102.54703 34.26739 4.52546 110 25 1 + 9.15365 103.43974 35.46867 4.86846 110 26 1 + 9.52522 104.33245 36.36949 5.12571 110 26 1 + 9.69671 104.33245 36.96996 5.29720 110 26 1 + 10.03506 105.22516 37.87056 5.55445 110 26 1 + 10.42824 106.11787 39.07118 5.89745 110 27 1 + 10.79274 107.01058 40.27161 6.24045 110 27 1 + 11.13077 107.90329 41.47185 6.58344 110 27 1 + 11.35881 108.79600 42.37192 6.84069 110 27 1 + 10.19129 108.79600 25.59840 7.93223 110 40 1 + 11.93524 106.77700 29.70475 9.70495 110 40 1 + 14.25792 104.75800 35.16081 12.06858 110 41 1 + 16.56952 102.73900 40.59674 14.43220 110 41 1 + 18.87119 100.72000 46.01595 16.79583 110 41 1 + 20.57311 98.70100 50.07174 18.56855 110 41 1 + 24.34658 98.70100 229.88374 12.31919 110 11 1 + 24.17832 100.07440 200.26957 12.82216 110 12 1 + 24.10090 101.44780 200.90889 13.49277 110 12 1 + 23.95927 102.82120 207.46715 14.16339 110 12 1 + 23.76602 104.19460 215.59855 14.83401 110 11 1 + 23.36610 105.56800 222.12669 15.33697 110 11 1 + 23.70140 105.56800 226.60771 15.67228 110 10 1 + 23.27388 106.94140 233.44973 16.17524 110 10 1 + 22.99369 108.31480 242.70650 16.84586 110 9 1 + 22.69956 109.68820 252.06828 17.51648 110 9 1 + 22.39787 111.06160 261.49732 18.18709 110 9 1 + 21.92735 112.43500 268.59852 18.69006 110 8 1 + 22.26266 112.43500 273.34448 19.02537 110 8 1 + 21.79621 113.80840 280.47714 19.52833 110 8 1 + 21.50338 115.18180 290.00539 20.19895 110 7 1 + 21.21790 116.55520 299.55031 20.86956 110 7 1 + 20.94117 117.92860 309.10779 21.54018 110 0 1 + 20.50692 119.30200 316.28211 22.04314 110 0 1 + 20.84222 119.30200 321.06773 22.37845 110 0 1 + 20.41862 120.67540 328.24957 22.88141 110 0 1 + 20.17217 122.04880 337.83018 23.55203 110 0 1 + 19.93411 123.42220 347.41558 24.22265 110 0 1 + 19.70332 124.79560 357.00485 24.89327 110 0 1 + 19.31102 126.16900 364.19883 25.39623 110 0 1 + 19.64633 126.16900 368.99576 25.73154 110 0 1 + 19.25865 127.54240 376.19237 26.23450 110 0 1 + 19.04183 128.91580 385.78963 26.90512 110 0 1 + 18.82722 130.28920 395.38873 27.57574 110 0 1 + 18.61386 131.66260 404.98939 28.24635 110 0 1 + 18.23311 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -7731,9 +7867,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.293 'Hydrobiaklei' - -12.00 7.699 'Basisveen' - -12.50 74.877 'Eerste zandlaag' + -10.00 8.299 'Hydrobiaklei' + -12.00 7.702 'Basisveen' + -12.50 75.022 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -7755,7 +7891,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.76 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.74 'Eerste zandlaag' + -12.50 -28.80 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -7879,24 +8015,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 73.99800 32.23900 8.01233 7.28848 -10.88000 73.99800 32.23900 9.73545 7.34485 -10.94000 73.99800 32.23900 11.76053 7.41109 @@ -7990,7 +8126,7 @@ Lambda passive -10.97000 5.17420 38.78382 1.26873 0.45536 0.24520 7.49562 -11.03000 5.84560 43.81638 1.43335 0.45536 0.24520 7.49562 -11.09000 6.51700 47.59079 1.55683 0.45536 0.24520 7.49562 - -11.09000 6.51700 41.02524 -3.30713 0.70481 0.00000 6.29741 + -11.09000 6.51700 41.02524 -3.30713 0.69929 0.00000 6.29741 -11.18100 6.50749 39.68572 -3.30434 0.69929 0.00000 6.09847 -11.27200 6.49798 38.55749 -3.30632 0.69929 0.00000 5.93377 -11.36300 6.48847 37.82695 -3.30987 0.69929 0.00000 5.82987 @@ -8002,7 +8138,7 @@ Lambda passive -11.81800 6.44092 36.13488 -3.33088 0.69929 0.00000 5.61020 -11.90900 6.43141 35.95282 -3.33521 0.69929 0.00000 5.59019 -12.00000 6.42190 35.83155 -3.33847 0.69929 0.00000 5.57752 - -12.00000 6.42190 19.45965 -0.24957 1.01009 0.00000 3.16204 + -12.00000 6.42190 19.45965 -0.24957 0.74118 0.00000 3.16204 -12.10000 5.35090 17.91518 -0.71711 0.74118 0.00000 3.34807 -12.20000 4.27990 15.87147 -1.34197 0.74118 0.00000 3.70837 -12.30000 3.20890 13.84360 -1.96811 0.74118 0.00000 4.31413 @@ -8032,7 +8168,7 @@ Lambda passive -15.02000 26.74570 180.61205 6.86581 0.47008 0.25671 6.75294 -15.16000 28.17230 190.17767 7.23257 0.47008 0.25673 6.75052 -15.30000 29.59890 197.35603 7.50762 0.47008 0.25674 6.74900 - -15.30000 29.59890 202.14355 7.69098 0.31301 0.25675 6.74812 + -15.30000 29.59890 202.14355 7.69098 0.47008 0.25675 6.74812 -15.44000 31.02550 209.32739 7.96601 0.47008 0.25676 6.74695 -15.58000 32.45210 218.90961 8.33270 0.47008 0.25677 6.74562 -15.72000 33.87870 228.49576 8.69937 0.47008 0.25678 6.74453 @@ -8185,32 +8321,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 24.94429 1.51537 1 0 A 0.93947 71.19850 28.71871 1.74467 1 0 A 1.10410 71.78710 33.75126 2.05040 1 0 A 1.26873 72.37570 38.78382 2.35613 1 0 A 1.43335 72.96430 43.81638 2.66186 1 0 A 1.55683 73.55290 47.59079 2.89116 1 0 A - 1.08239 73.55290 41.02524 4.59156 110 0 1 - 6.20489 74.94561 39.68572 4.55065 110 16 1 - 5.28043 76.33832 38.55749 4.54400 110 14 1 - 4.40462 77.73103 37.82695 4.53735 110 0 1 - 3.57477 79.12374 37.30689 4.53070 110 0 1 - 2.87558 80.51645 36.99983 4.52571 110 0 1 - 2.70076 80.51645 36.82662 4.52239 110 0 1 - 2.04217 81.90916 36.60200 4.51740 110 0 1 - 1.33445 83.30187 36.34781 4.51075 110 0 1 - 0.66280 84.69458 36.13488 4.50410 110 0 1 - 0.02498 86.08729 35.95282 4.49745 110 0 1 + 1.04657 73.55290 41.02524 4.55564 110 0 1 + 6.25444 74.94561 39.68572 4.55065 110 16 1 + 5.32818 76.33832 38.55749 4.54400 110 14 1 + 4.45040 77.73103 37.82695 4.53735 110 0 1 + 3.61838 79.12374 37.30689 4.53070 110 0 1 + 2.91682 80.51645 36.99983 4.52571 110 0 1 + 2.74200 80.51645 36.82662 4.52239 110 0 1 + 2.08083 81.90916 36.60200 4.51740 110 0 1 + 1.37032 83.30187 36.34781 4.51075 110 0 1 + 0.69568 84.69458 36.13488 4.50410 110 0 1 + 0.05470 86.08729 35.95282 4.49745 110 0 1 0.00000 87.48000 35.83155 4.49246 1 0 A - 3.96103 87.48000 19.45965 6.21623 110 0 1 - 1.73967 89.72100 17.91518 3.96599 110 0 1 - 0.98696 91.96200 15.87147 3.17218 110 0 1 - 0.24534 94.20300 13.84360 2.37838 110 0 1 + 2.30228 87.48000 19.45965 4.56134 110 0 1 + 1.73569 89.72100 17.91518 3.96599 110 0 1 + 0.98284 91.96200 15.87147 3.17218 110 0 1 + 0.24105 94.20300 13.84360 2.37838 110 0 1 0.00000 96.44400 11.82887 1.58457 1 0 A 0.00000 98.68500 10.32482 0.98922 1 0 A - 1.47768 98.68500 10.55621 0.66918 110 14 1 + 1.59428 98.68500 10.55621 0.66918 110 15 1 0.63774 100.05840 18.35701 1.17215 1 0 A 1.00279 101.43180 28.51250 1.84276 1 0 A 1.36806 102.80520 38.37429 2.51338 1 0 A @@ -8221,25 +8357,25 @@ Status character 2.83165 108.29880 76.29925 5.19585 1 0 A 3.19808 109.67220 85.68817 5.86647 1 0 A 3.56466 111.04560 95.09275 6.53708 1 0 A - 3.86418 112.41900 102.15965 7.04005 110 0 1 - 4.19949 112.41900 106.87870 7.37536 110 0 1 - 5.67657 113.79240 113.96887 7.87832 110 0 1 - 7.31553 115.16580 123.44084 8.54894 110 0 1 - 8.94729 116.53920 132.93294 9.21955 110 0 1 - 10.57044 117.91260 142.44269 9.89017 110 7 1 - 12.01590 119.28600 149.58467 10.39313 110 8 1 - 12.35120 119.28600 154.35055 10.72844 110 8 1 - 13.78606 120.65940 161.50543 11.23140 110 9 1 - 15.37910 122.03280 171.05415 11.90202 110 9 1 - 16.96372 123.40620 180.61205 12.57264 110 9 1 - 18.54104 124.77960 190.17767 13.24326 110 10 1 - 19.94446 126.15300 197.35603 13.74622 110 10 1 - 15.57461 126.15300 202.14355 9.37638 110 8 1 - 21.67844 127.52640 209.32739 14.58449 110 10 1 - 23.24146 128.89980 218.90961 15.25511 110 11 1 - 24.80218 130.27320 228.49576 15.92572 110 11 1 - 26.36161 131.64660 238.08523 16.59634 110 11 1 - 27.75311 133.02000 245.27914 17.09930 110 11 1 + 3.83967 112.41900 102.15965 7.04005 1 0 A + 4.13806 112.41900 106.87870 7.37536 110 0 1 + 5.61044 113.79240 113.96887 7.87832 110 0 1 + 7.24450 115.16580 123.44084 8.54894 110 0 1 + 8.87121 116.53920 132.93294 9.21955 110 0 1 + 10.48918 117.91260 142.44269 9.89017 110 7 1 + 11.92936 119.28600 149.58467 10.39313 110 8 1 + 12.26467 119.28600 154.35055 10.72844 110 8 1 + 13.69420 120.65940 161.50543 11.23140 110 8 1 + 15.28188 122.03280 171.05415 11.90202 110 9 1 + 16.86118 123.40620 180.61205 12.57264 110 9 1 + 18.43321 124.77960 190.17767 13.24326 110 10 1 + 19.83143 126.15300 197.35603 13.74622 110 10 1 + 20.16674 126.15300 202.14355 14.08153 110 10 1 + 21.56034 127.52640 209.32739 14.58449 110 10 1 + 23.11840 128.89980 218.90961 15.25511 110 11 1 + 24.67424 130.27320 228.49576 15.92572 110 11 1 + 26.22883 131.64660 238.08523 16.59634 110 11 1 + 27.61551 133.02000 245.27914 17.09930 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8254,9 +8390,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 2.444 'Hydrobiaklei' - -12.00 0.495 'Basisveen' - -12.50 36.506 'Eerste zandlaag' + -11.09 2.476 'Hydrobiaklei' + -12.00 0.411 'Basisveen' + -12.50 36.632 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -8273,9 +8409,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.14 'Grind' - -11.09 0.52 'Hydrobiaklei' + -11.09 0.53 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.01 'Eerste zandlaag' + -12.50 14.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -8497,8 +8633,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 397.54874 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 441.95386 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 397.54716 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 442.01361 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -8539,10 +8675,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.70 : Percentage mobilized resistance left - 11.75 : Percentage mobilized resistance right - 105.21 : Effective left - 128.20 : Effective right + 14.71 : Percentage mobilized resistance left + 11.77 : Percentage mobilized resistance right + 105.31 : Effective left + 128.38 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 715.81 : Max effective resistance left @@ -8551,8 +8687,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.92 : Vertical force left - 43.47 : Vertical force right + 14.99 : Vertical force left + 43.53 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -8561,10 +8697,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --43.47 : Active force -14.92 : Passive force --43.47 : Plugged active force -14.92 : Plugged passive force +-43.53 : Active force +14.99 : Passive force +-43.53 : Plugged active force +14.99 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -8584,192 +8720,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.72527 - 0.00000 0.00000 15.07624 - 0.00000 0.00000 14.42720 - 0.00000 0.00000 13.77817 - 0.00000 0.00000 13.12913 - 0.00000 0.00000 12.48010 - 0.00000 0.00000 12.48010 - 0.00000 0.00000 11.83106 - 0.00000 0.00000 11.18203 - 0.00000 0.00000 10.53299 - 0.00000 0.00000 9.88396 - 0.00000 0.00000 9.23493 - 0.00000 0.00000 9.23493 - 0.00283 0.07063 8.36955 - 0.02260 0.28253 7.50418 - 0.07628 0.63569 6.63879 - 0.18082 1.13011 5.77339 - 0.35316 1.76580 4.90795 - 0.35316 1.76580 4.90795 - 0.56080 2.40345 4.18671 - 0.83712 3.13920 3.46541 - 1.19191 3.97305 2.74399 - 1.63500 4.90500 2.02241 - 2.17618 5.93505 1.30062 - 2.17618 5.93505 1.30062 - 2.82528 7.06320 0.57858 - 3.59209 8.28945 -0.14382 - 4.48644 9.61380 -0.86668 - 5.51812 11.03625 -1.59013 - 6.69696 12.55680 -2.31427 - 6.69696 12.55680 -2.31427 - 7.83593 13.94293 -2.93768 - 9.09722 15.40162 -3.56182 - 10.48709 16.93286 -4.18682 - 12.01176 18.53666 -4.81281 - 13.67747 20.21301 -5.43991 - 13.67747 -135.83572 -5.43991 - -1.67597 -133.50175 -6.27266 - -16.75608 -131.04028 -7.10512 - -31.54831 -128.45132 -7.93489 - -46.03814 -125.73488 -8.75954 - -60.21102 -122.89094 -9.57665 - -60.21010 -122.90894 -9.57665 - -69.96036 -120.83707 -10.14427 - -79.54236 -118.70241 -10.70626 - -88.95107 -116.50497 -11.26185 - -98.18148 -114.24475 -11.81027 - -107.22856 -111.92174 -12.35078 - -107.22882 -111.92365 -12.35078 - -109.46139 -111.33309 -12.48459 - -111.68211 -110.73860 -12.61784 - -113.89091 -110.14019 -12.75053 - -116.08770 -109.53786 -12.88264 - -118.27240 -108.93160 -13.01417 - -118.27243 -108.93115 -13.01417 - -129.01186 -105.84100 -13.66263 - -139.43736 -102.65275 -14.29484 - -149.53914 -99.36640 -14.90952 - -159.30737 -95.98195 -15.50540 - -168.73226 -92.49940 -16.08120 - -168.73241 -92.49423 -16.08120 - -177.80362 -88.91358 -16.63570 - -186.51185 -85.23483 -17.16779 - -194.84731 -81.45798 -17.67643 - -202.80018 -77.58303 -18.16056 - -210.36065 -73.60998 -18.61915 - -210.36064 -73.60955 -18.61915 - -217.51886 -69.53840 -19.05117 - -224.26505 -65.36915 -19.45578 - -230.58942 -61.10180 -19.83219 - -236.48214 -56.73635 -20.17960 - -241.93342 -52.27280 -20.49722 - -241.93346 -52.27211 -20.49722 - -248.80483 -45.85833 -20.89034 - -254.76482 -39.25228 -21.22200 - -259.78650 -32.45395 -21.49097 - -263.84295 -25.46334 -21.69602 - -266.90726 -18.28046 -21.83590 - -266.90733 -18.27893 -21.83590 - -268.84066 -11.43694 -21.90653 - -269.87375 -4.42917 -21.91991 - -269.98506 2.74439 -21.87601 - -269.15303 10.08374 -21.77482 - -267.35610 17.58888 -21.61630 - -267.35595 17.58860 -21.61630 - -264.57262 25.25953 -21.40061 - -260.78129 33.09625 -21.12857 - -255.96041 41.09876 -20.80121 - -250.08843 49.26705 -20.41956 - -243.14379 57.60114 -19.98465 - -243.14380 57.60112 -19.98465 - -233.80342 67.39027 -19.42017 - -222.98318 77.39868 -18.78983 - -210.65029 87.62635 -18.09710 - -196.77197 98.07327 -17.34546 - -181.31545 108.73945 -16.53837 - -181.31545 108.73945 -16.53837 - -164.24795 119.62489 -15.67968 - -145.53668 130.72958 -14.77469 - -125.14888 142.05353 -13.82916 - -103.05175 153.59673 -12.84883 - -79.21253 165.35919 -11.83945 - -79.21368 165.36502 -11.83945 - -53.59870 177.34674 -10.80714 - -26.17608 189.54771 -9.75969 - 3.08699 201.96793 -8.70535 - 34.22326 214.60742 -7.65237 - 67.26553 227.46615 -6.60897 - 67.26718 227.47629 -6.60897 - 102.24974 240.55428 -5.58384 - 139.20384 253.85153 -4.58744 - 178.16227 267.36804 -3.63076 - 219.15781 281.10380 -2.72476 - 262.22323 295.05882 -1.88043 - 262.22394 295.07088 -1.88043 - 262.81421 295.18028 -1.86960 - 263.40461 295.21249 -1.85878 - 263.99506 295.24475 -1.84798 - 264.58559 295.27704 -1.83720 - 265.17617 295.30937 -1.82642 - 265.17617 295.30935 -1.82642 - 276.40970 295.93111 -1.62428 - 287.66712 296.56702 -1.42717 - 298.94897 297.21708 -1.23529 - 310.25579 297.88130 -1.04886 - 321.58813 298.55966 -0.86806 - 321.58821 -143.39501 -0.86806 - 304.51350 -141.15992 -0.33487 - 287.71547 -138.78369 0.14308 - 271.21106 -136.26634 0.56879 - 255.01720 -133.60787 0.94526 - 239.15082 -130.80827 1.27546 - 239.15074 -130.80923 1.27546 - 231.36018 -128.87727 1.42413 - 223.68529 -126.95396 1.56232 - 216.12550 -125.04052 1.69035 - 208.68023 -123.13696 1.80858 - 201.34890 -121.24205 1.91734 - 201.34941 -121.25883 1.91734 - 190.43871 -118.43108 2.06501 - 179.80695 -115.20792 2.19281 - 169.47537 -111.83633 2.30183 - 159.45682 -108.33025 2.39313 - 149.76282 -104.70675 2.46780 - 149.76270 -104.70025 2.46780 - 140.40444 -100.96001 2.52690 - 131.39081 -97.12642 2.57135 - 122.73004 -93.20657 2.60205 - 114.42952 -89.21080 2.61993 - 106.49489 -85.17517 2.62586 - 106.49498 -85.17349 2.62586 - 98.13987 -81.94290 2.61965 - 90.10236 -78.83338 2.60108 - 82.36778 -75.88610 2.57113 - 74.91869 -73.13250 2.53076 - 67.73197 -70.65834 2.48096 - 67.73085 -70.64439 2.48096 - 58.23678 -65.00333 2.39726 - 49.52455 -59.47727 2.29919 - 41.57697 -54.08341 2.18872 - 34.37413 -48.84102 2.06781 - 27.89342 -43.77142 1.93844 - 27.89361 -43.76490 1.93844 - 22.11206 -38.86234 1.80239 - 17.00290 -34.15818 1.66089 - 12.53849 -29.65282 1.51504 - 8.69053 -25.35268 1.36597 - 5.42970 -21.26762 1.21476 - 5.43096 -21.24503 1.21476 - 2.73109 -17.36193 1.06238 - 0.55938 -13.69828 0.90933 - -1.11446 -10.24955 0.75604 - -2.32053 -7.01581 0.60291 - -3.08992 -4.01850 0.45037 - -3.08871 -3.99933 0.45037 - -3.44836 -1.26402 0.29870 - -3.47204 0.84131 0.14789 - -3.23638 2.44124 -0.00213 - -2.81195 3.53838 -0.15140 - -2.26898 4.13517 -0.29995 - -2.26902 4.13443 -0.29995 - -1.64680 4.56190 -0.44794 - -1.03021 4.16395 -0.59552 - -0.50402 3.27057 -0.74283 - -0.13753 1.88250 -0.88998 - 0.00001 0.00007 -1.03710 + 0.00000 0.00000 15.72393 + 0.00000 0.00000 15.07494 + 0.00000 0.00000 14.42595 + 0.00000 0.00000 13.77696 + 0.00000 0.00000 13.12796 + 0.00000 0.00000 12.47897 + 0.00000 0.00000 12.47897 + 0.00000 0.00000 11.82998 + 0.00000 0.00000 11.18098 + 0.00000 0.00000 10.53199 + 0.00000 0.00000 9.88300 + 0.00000 0.00000 9.23401 + 0.00000 0.00000 9.23401 + 0.00283 0.07063 8.36869 + 0.02260 0.28253 7.50337 + 0.07628 0.63569 6.63804 + 0.18082 1.13011 5.77269 + 0.35316 1.76580 4.90731 + 0.35316 1.76580 4.90731 + 0.56080 2.40345 4.18612 + 0.83712 3.13920 3.46486 + 1.19191 3.97305 2.74349 + 1.63500 4.90500 2.02195 + 2.17618 5.93505 1.30021 + 2.17618 5.93505 1.30021 + 2.82528 7.06320 0.57822 + 3.59209 8.28945 -0.14413 + 4.48644 9.61380 -0.86695 + 5.51812 11.03625 -1.59035 + 6.69696 12.55680 -2.31444 + 6.69696 12.55680 -2.31444 + 7.83593 13.94293 -2.93781 + 9.09722 15.40162 -3.56192 + 10.48709 16.93286 -4.18688 + 12.01176 18.53666 -4.81282 + 13.67747 20.21301 -5.43989 + 13.67747 -135.83414 -5.43989 + -1.67579 -133.50017 -6.27258 + -16.75572 -131.03870 -7.10500 + -31.54777 -128.44974 -7.93471 + -46.03742 -125.73329 -8.75931 + -60.21012 -122.88936 -9.57636 + -60.20920 -122.90737 -9.57636 + -69.95933 -120.83550 -10.14395 + -79.54120 -118.70084 -10.70590 + -88.94979 -116.50340 -11.26145 + -98.18008 -114.24318 -11.80984 + -107.22703 -111.92017 -12.35032 + -107.22729 -111.92208 -12.35032 + -109.45983 -111.33152 -12.48411 + -111.68052 -110.73703 -12.61735 + -113.88928 -110.13862 -12.75003 + -116.08604 -109.53629 -12.88214 + -118.27071 -108.93003 -13.01366 + -118.27075 -108.92958 -13.01366 + -129.01002 -105.83943 -13.66207 + -139.43536 -102.65118 -14.29424 + -149.53698 -99.36483 -14.90887 + -159.30506 -95.98038 -15.50470 + -168.72979 -92.49783 -16.08047 + -168.72994 -92.49266 -16.08047 + -177.80099 -88.91201 -16.63492 + -186.50907 -85.23326 -17.16696 + -194.84437 -81.45641 -17.67556 + -202.79708 -77.58146 -18.15965 + -210.35740 -73.60841 -18.61820 + -210.35738 -73.60798 -18.61820 + -217.51544 -69.53683 -19.05017 + -224.26148 -65.36758 -19.45475 + -230.58569 -61.10023 -19.83112 + -236.47826 -56.73478 -20.17849 + -241.92938 -52.27123 -20.49606 + -241.92942 -52.27054 -20.49606 + -248.80057 -45.85676 -20.88913 + -254.76034 -39.25071 -21.22073 + -259.78180 -32.45238 -21.48965 + -263.83803 -25.46177 -21.69465 + -266.90212 -18.27889 -21.83448 + -266.90219 -18.27735 -21.83448 + -268.83531 -11.43537 -21.90506 + -269.86820 -4.42760 -21.91839 + -269.97930 2.74597 -21.87445 + -269.14707 10.08532 -21.77322 + -267.34994 17.59046 -21.61466 + -267.34979 17.59018 -21.61466 + -264.56625 25.26111 -21.39893 + -260.77471 33.09783 -21.12685 + -255.95363 41.10033 -20.79945 + -250.08144 49.26863 -20.41777 + -243.13660 57.60272 -19.98282 + -243.13661 57.60270 -19.98282 + -233.79600 67.39185 -19.41831 + -222.97552 77.40026 -18.78794 + -210.64239 87.62793 -18.09517 + -196.76384 98.07485 -17.34349 + -181.30708 108.74103 -16.53639 + -181.30708 108.74103 -16.53639 + -164.23934 119.62647 -15.67766 + -145.52784 130.73116 -14.77265 + -125.13980 142.05510 -13.82710 + -103.04244 153.59831 -12.84675 + -79.20298 165.36076 -11.83735 + -79.20413 165.36659 -11.83735 + -53.58892 177.34831 -10.80503 + -26.16606 189.54928 -9.75757 + 3.09724 201.96950 -8.70323 + 34.23375 214.60898 -7.65023 + 67.27625 227.46772 -6.60684 + 67.27776 227.48014 -6.60684 + 102.26089 240.55813 -5.58170 + 139.21557 253.85538 -4.58531 + 178.17458 267.37189 -3.62863 + 219.17069 281.10765 -2.72265 + 262.23669 295.06267 -1.87833 + 262.23741 295.07481 -1.87833 + 262.82769 295.18420 -1.86750 + 263.41809 295.21642 -1.85669 + 264.00856 295.24867 -1.84589 + 264.59909 295.28096 -1.83510 + 265.18968 295.31330 -1.82433 + 265.18968 295.31328 -1.82433 + 276.42336 295.93503 -1.62219 + 287.68093 296.57095 -1.42509 + 298.96293 297.22101 -1.23321 + 310.26990 297.88522 -1.04678 + 321.60238 298.56359 -0.86599 + 321.60246 -143.45082 -0.86599 + 304.52106 -141.21573 -0.33282 + 287.71633 -138.83950 0.14512 + 271.20522 -136.32215 0.57081 + 255.00466 -133.66368 0.94725 + 239.13159 -130.86408 1.27744 + 239.13151 -130.86503 1.27744 + 231.33760 -128.93308 1.42610 + 223.65936 -127.00976 1.56428 + 216.09623 -125.09632 1.69231 + 208.64761 -123.19276 1.81054 + 201.31293 -121.29785 1.91930 + 201.31344 -121.31466 1.91930 + 190.39770 -118.48711 2.06696 + 179.76068 -115.26761 2.19477 + 169.42350 -111.89951 2.30379 + 159.39906 -108.39671 2.39511 + 149.69887 -104.77628 2.46981 + 149.69884 -104.77211 2.46981 + 140.33390 -101.03470 2.52893 + 131.31336 -97.20367 2.57341 + 122.64546 -93.28610 2.60416 + 114.33760 -89.29231 2.62208 + 106.39552 -85.25713 2.62808 + 106.39560 -85.25552 2.62808 + 98.03786 -81.94108 2.62195 + 90.00058 -78.83076 2.60347 + 82.26631 -75.88251 2.57362 + 74.81762 -73.12810 2.53338 + 67.63137 -70.65333 2.48371 + 67.63023 -70.63893 2.48371 + 58.13724 -64.99309 2.40021 + 49.42681 -59.46190 2.30236 + 41.48176 -54.06249 2.19214 + 34.28226 -48.81411 2.07151 + 27.80577 -43.73804 1.94244 + 27.80610 -43.73212 1.94244 + 22.02938 -38.82511 1.80671 + 16.92595 -34.11340 1.66555 + 12.46838 -29.59991 1.52007 + 8.62843 -25.29102 1.37136 + 5.37688 -21.19657 1.22055 + 5.37692 -21.19490 1.22055 + 2.68477 -17.30174 1.06857 + 0.52223 -13.62733 0.91595 + -1.14088 -10.16712 0.76308 + -2.33457 -6.92120 0.61038 + -3.08951 -3.90433 0.45828 + -3.08830 -3.88516 0.45828 + -3.44144 -1.24436 0.30705 + -3.46037 0.88974 0.15666 + -3.21583 2.51988 0.00708 + -2.77820 3.64867 -0.14176 + -2.21749 4.27853 -0.28990 + -2.21753 4.27780 -0.28990 + -1.60354 4.41085 -0.43748 + -1.00560 4.04870 -0.58467 + -0.49296 3.19244 -0.73159 + -0.13474 1.84279 -0.87836 + 0.00001 0.00007 -1.02509 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8995,7 +9131,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -9007,7 +9143,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -9174,53 +9310,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 12.09950 100.76161 31.86408 3.83947 110 38 1 - 12.95371 101.65432 33.06586 4.18246 110 39 1 - 13.73276 102.54703 34.26739 4.52546 110 40 1 - 14.44098 103.43974 35.46867 4.86846 110 41 1 - 14.99692 104.33245 36.36949 5.12571 110 41 1 - 15.16842 104.33245 36.96996 5.29720 110 41 1 - 15.66204 105.22516 37.87056 5.55445 110 41 1 - 16.18283 106.11787 39.07118 5.89745 110 41 1 - 16.64866 107.01058 40.27161 6.24045 110 41 1 - 17.06314 107.90329 41.47185 6.58344 110 41 1 - 17.34414 108.79600 42.37192 6.84069 110 41 1 - 12.95310 108.79600 25.59840 7.93223 220 51 2 - 14.88913 106.77700 29.70475 9.70495 220 50 2 - 17.27074 104.75800 35.16081 12.06858 110 49 1 - 19.57446 102.73900 40.59674 14.43220 110 48 1 - 21.85735 100.72000 46.01595 16.79583 110 47 1 - 23.53047 98.70100 50.07174 18.56855 110 47 1 - 42.09076 98.70100 229.88374 12.31919 110 18 1 - 41.58927 100.07440 200.26957 12.82216 110 21 1 - 41.08304 101.44780 200.90889 13.49277 110 20 1 - 40.42800 102.82120 207.46715 14.16339 110 19 1 - 39.64775 104.19460 215.59855 14.83401 110 18 1 - 38.59819 105.56800 222.12669 15.33697 110 17 1 - 38.96983 105.56800 226.60771 15.70861 110 17 1 - 37.80387 106.94140 233.44973 16.17524 110 16 1 - 36.77650 108.31480 242.70650 16.84586 110 15 1 - 35.69701 109.68820 252.06828 17.51648 110 14 1 - 34.57869 111.06160 261.49732 18.18709 110 13 1 - 33.26715 112.43500 268.59852 18.69006 110 12 1 - 33.60246 112.43500 273.34448 19.02537 110 12 1 - 32.27689 113.80840 280.47714 19.52833 110 12 1 - 31.11096 115.18180 290.00539 20.19895 110 11 1 - 29.94204 116.55520 299.55031 20.86956 110 10 1 - 28.77514 117.92860 309.10779 21.54018 110 9 1 - 27.44762 119.30200 316.28211 22.04314 110 9 1 - 29.52285 119.30200 321.06773 24.11838 110 9 1 - 26.46587 120.67540 328.24957 22.88141 110 8 1 - 25.32666 122.04880 337.83018 23.55203 110 7 1 - 24.19707 123.42220 347.41558 24.22265 110 0 1 - 23.07652 124.79560 357.00485 24.89327 110 0 1 - 21.79678 126.16900 364.19883 25.39623 110 0 1 - 22.13209 126.16900 368.99576 25.73154 110 0 1 - 20.85926 127.54240 376.19237 26.23450 110 0 1 - 19.75884 128.91580 385.78963 26.90512 110 0 1 - 18.66175 130.28920 395.38873 27.57574 110 0 1 - 17.56656 131.66260 404.98939 28.24635 110 0 1 - 16.30416 133.03600 412.19072 28.74932 110 0 1 + 12.10732 100.76161 31.86408 3.83947 110 38 1 + 12.96154 101.65432 33.06586 4.18246 110 39 1 + 13.74063 102.54703 34.26739 4.52546 110 40 1 + 14.44891 103.43974 35.46867 4.86846 110 41 1 + 15.00493 104.33245 36.36949 5.12571 110 41 1 + 15.17643 104.33245 36.96996 5.29720 110 41 1 + 15.67016 105.22516 37.87056 5.55445 110 41 1 + 16.19109 106.11787 39.07118 5.89745 110 41 1 + 16.65709 107.01058 40.27161 6.24045 110 41 1 + 17.07178 107.90329 41.47185 6.58344 110 41 1 + 17.35302 108.79600 42.37192 6.84069 110 41 1 + 12.95488 108.79600 25.59840 7.93223 220 51 2 + 14.89097 106.77700 29.70475 9.70495 220 50 2 + 17.27552 104.75800 35.16081 12.06858 110 49 1 + 19.57945 102.73900 40.59674 14.43220 110 48 1 + 21.86258 100.72000 46.01595 16.79583 110 48 1 + 23.53596 98.70100 50.07174 18.56855 110 47 1 + 42.12368 98.70100 229.88374 12.31919 110 18 1 + 41.62463 100.07440 200.26957 12.82216 110 21 1 + 41.12114 101.44780 200.90889 13.49277 110 20 1 + 40.46913 102.82120 207.46715 14.16339 110 20 1 + 39.69218 104.19460 215.59855 14.83401 110 18 1 + 38.64621 105.56800 222.12669 15.33697 110 17 1 + 38.98152 105.56800 226.60771 15.67228 110 17 1 + 37.85573 106.94140 233.44973 16.17524 110 16 1 + 36.83245 108.31480 242.70650 16.84586 110 15 1 + 35.75727 109.68820 252.06828 17.51648 110 14 1 + 34.64346 111.06160 261.49732 18.18709 110 13 1 + 33.33662 112.43500 268.59852 18.69006 110 12 1 + 33.67193 112.43500 273.34448 19.02537 110 12 1 + 32.35123 113.80840 280.47714 19.52833 110 12 1 + 31.19031 115.18180 290.00539 20.19895 110 11 1 + 30.02650 116.55520 299.55031 20.86956 110 10 1 + 28.86478 117.92860 309.10779 21.54018 110 9 1 + 27.54248 119.30200 316.28211 22.04314 110 9 1 + 27.87779 119.30200 321.06773 22.37845 110 9 1 + 26.56597 120.67540 328.24957 22.88141 110 8 1 + 25.43199 122.04880 337.83018 23.55203 110 8 1 + 24.30757 123.42220 347.41558 24.22265 110 7 1 + 23.19212 124.79560 357.00485 24.89327 110 0 1 + 21.91739 126.16900 364.19883 25.39623 110 0 1 + 22.25270 126.16900 368.99576 25.73154 110 0 1 + 20.98473 127.54240 376.19237 26.23450 110 0 1 + 19.88907 128.91580 385.78963 26.90512 110 0 1 + 18.79665 130.28920 395.38873 27.57574 110 0 1 + 17.70607 131.66260 404.98939 28.24635 110 0 1 + 16.44829 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9238,9 +9374,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.973 'Hydrobiaklei' - -12.00 9.183 'Basisveen' - -12.50 106.048 'Eerste zandlaag' + -10.00 12.980 'Hydrobiaklei' + -12.00 9.185 'Basisveen' + -12.50 106.218 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9262,7 +9398,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.76 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -40.71 'Eerste zandlaag' + -12.50 -40.77 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -9386,24 +9522,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -9478,8 +9614,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -9497,7 +9633,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -9509,7 +9645,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -9539,7 +9675,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -9680,13 +9816,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -9699,24 +9835,24 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 2.49291 69.84300 62.88631 10.23728 110 0 1 - 7.56110 70.73571 62.76725 10.45829 110 0 1 - 6.70537 71.62842 62.93711 10.80128 110 0 1 - 5.93204 72.52113 63.36356 11.14428 110 0 1 - 5.23683 73.41384 63.95712 11.48728 110 0 1 - 4.61548 74.30655 64.47739 11.74453 110 0 1 - 4.61548 74.30655 64.85531 11.91602 110 0 1 - 4.06381 75.19926 65.45935 12.17327 110 0 1 - 3.57806 76.09197 66.31521 12.51627 110 0 1 - 3.15462 76.98468 67.21959 12.85927 110 0 1 - 2.78987 77.87739 68.16229 13.20226 110 0 1 - 2.97400 78.77010 68.88908 13.45951 110 0 1 - 10.24825 78.77010 43.93101 15.49997 110 0 1 - 7.03384 82.75110 39.79998 12.27314 110 0 1 - 4.98752 86.73210 34.34186 10.18968 110 0 1 - 2.96397 90.71310 28.93258 8.10622 110 0 1 - 1.44754 94.69410 23.56199 6.02276 110 0 1 - 0.50889 98.67510 19.55369 4.46017 110 0 1 + 2.45626 69.84300 62.88631 10.20104 110 0 1 + 7.61010 70.73571 62.76725 10.45829 110 0 1 + 6.75251 71.62842 62.93711 10.80128 110 0 1 + 5.97713 72.52113 63.36356 11.14428 110 0 1 + 5.27970 73.41384 63.95712 11.48728 110 0 1 + 4.65592 74.30655 64.47739 11.74453 110 0 1 + 4.65592 74.30655 64.85531 11.91602 110 0 1 + 4.10160 75.19926 65.45935 12.17327 110 0 1 + 3.61299 76.09197 66.31521 12.51627 110 0 1 + 3.18650 76.98468 67.21959 12.85927 110 0 1 + 2.81851 77.87739 68.16229 13.20226 110 0 1 + 2.97285 78.77010 68.88908 13.45951 110 0 1 + 8.57957 78.77010 43.93101 13.83574 110 0 1 + 7.02924 82.75110 39.79998 12.27314 110 0 1 + 4.98273 86.73210 34.34186 10.18968 110 0 1 + 2.95898 90.71310 28.93258 8.10622 110 0 1 + 1.44680 94.69410 23.56199 6.02276 110 0 1 + 0.50810 98.67510 19.55369 4.46017 110 0 1 1.43664 98.67510 40.26142 2.66609 1 0 A 1.70862 100.04850 47.59458 3.16905 1 0 A 2.07185 101.42190 57.26566 3.83967 1 0 A @@ -9734,19 +9870,19 @@ Status character 5.73470 115.15590 152.09823 10.54584 1 0 A 6.10246 116.52930 161.61132 11.21646 1 0 A 6.47026 117.90270 171.13564 11.88707 1 0 A - 6.98556 119.27610 178.28533 12.39004 110 0 1 - 7.32087 119.27610 183.05493 12.72534 110 0 1 - 9.64385 120.64950 190.21367 13.22831 110 0 1 - 12.12429 122.02290 199.76524 13.89892 110 0 1 - 14.59512 123.39630 209.32386 14.56954 110 7 1 - 17.05690 124.76970 218.88869 15.24016 110 8 1 - 19.34257 126.14310 226.06575 15.74312 110 9 1 - 14.97976 126.14310 230.85212 11.38031 110 6 1 - 21.95664 127.51650 238.03393 16.58139 110 9 1 - 24.39829 128.88990 247.61307 17.25201 110 10 1 - 26.83661 130.26330 257.19585 17.92263 110 10 1 - 29.27304 131.63670 266.78180 18.59324 110 11 1 - 31.54136 133.01010 273.97304 19.09621 110 12 1 + 6.89070 119.27610 178.28533 12.39004 110 0 1 + 7.22600 119.27610 183.05493 12.72534 110 0 1 + 9.54375 120.64950 190.21367 13.22831 110 0 1 + 12.01897 122.02290 199.76524 13.89892 110 0 1 + 14.48462 123.39630 209.32386 14.56954 110 0 1 + 16.94130 124.76970 218.88869 15.24016 110 8 1 + 19.22196 126.14310 226.06575 15.74312 110 9 1 + 19.55727 126.14310 230.85212 16.07843 110 8 1 + 21.83116 127.51650 238.03393 16.58139 110 9 1 + 24.26806 128.88990 247.61307 17.25201 110 10 1 + 26.70172 130.26330 257.19585 17.92263 110 10 1 + 29.13353 131.63670 266.78180 18.59324 110 11 1 + 31.39723 133.01010 273.97304 19.09621 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9761,9 +9897,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 4.220 'Hydrobiaklei' - -12.00 2.181 'Basisveen' - -12.50 35.542 'Eerste zandlaag' + -11.09 4.251 'Hydrobiaklei' + -12.00 2.096 'Basisveen' + -12.50 35.696 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -9782,7 +9918,7 @@ Layer name -10.79 0.38 'Grind' -11.09 0.90 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.64 'Eerste zandlaag' + -12.50 13.70 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10004,8 +10140,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 439.99795 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 514.06293 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 439.99749 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 514.06257 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -10049,10 +10185,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 21.04 : Percentage mobilized resistance left - 18.35 : Percentage mobilized resistance right - 150.58 : Effective left - 131.35 : Effective right + 21.08 : Percentage mobilized resistance left + 18.39 : Percentage mobilized resistance right + 150.86 : Effective left + 131.61 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 715.81 : Max effective resistance left @@ -10061,8 +10197,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 30.07 : Vertical force left - 22.99 : Vertical force right + 30.20 : Vertical force left + 23.12 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -10071,10 +10207,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --22.99 : Active force -30.07 : Passive force --22.99 : Plugged active force -30.07 : Plugged passive force +-23.12 : Active force +30.20 : Passive force +-23.12 : Plugged active force +30.20 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -10094,192 +10230,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.88312 - 0.00000 0.00000 -7.82591 - 0.00000 0.00000 -7.76871 - 0.00000 0.00000 -7.71150 - 0.00000 0.00000 -7.65430 - 0.00000 0.00000 -7.59709 - 0.00000 0.00000 -7.59709 - 0.00000 0.00000 -7.53989 - 0.00000 0.00000 -7.48268 - 0.00000 0.00000 -7.42548 - 0.00000 0.00000 -7.36827 - 0.00000 0.00000 -7.31107 - 0.00000 0.00000 -7.31107 - 0.00000 0.00000 -7.23479 - 0.00000 0.00000 -7.15852 - 0.00000 0.00000 -7.08224 - 0.00000 0.00000 -7.00597 - 0.00000 0.00000 -6.92970 - 0.00000 0.00000 -6.92970 - 0.00000 0.00000 -6.86614 - 0.00000 0.00000 -6.80257 - 0.00000 0.00000 -6.73901 - 0.00000 0.00000 -6.67545 - 0.00000 0.00000 -6.61189 - 0.00000 0.00000 -6.61189 - 0.00000 0.00000 -6.54833 - 0.00000 0.00000 -6.48477 - 0.00000 0.00000 -6.42121 - 0.00000 0.00000 -6.35765 - 0.00000 0.00000 -6.29408 - 0.00000 0.00000 -6.29408 - 0.00000 0.00000 -6.23942 - 0.00000 0.00000 -6.18476 - 0.00000 0.00000 -6.13010 - 0.00000 0.00000 -6.07543 - 0.00000 0.00000 -6.02077 - 0.00000 -0.09795 -6.02077 - -0.01117 -0.09795 -5.94831 - -0.02233 -0.09795 -5.87585 - -0.03350 -0.09795 -5.80338 - -0.04467 -0.09795 -5.73091 - -0.05583 -0.09795 -5.65843 - -0.05492 -0.11595 -5.65843 - -0.06419 -0.11595 -5.60757 - -0.07347 -0.11595 -5.55669 - -0.08274 -0.11595 -5.50582 - -0.09202 -0.11595 -5.45493 - -0.10130 -0.11595 -5.40404 - -0.10156 -0.11786 -5.40404 - -0.10391 -0.11786 -5.39131 - -0.10627 -0.11786 -5.37859 - -0.10863 -0.11786 -5.36586 - -0.11099 -0.11786 -5.35314 - -0.11334 -0.11786 -5.34041 - -0.11338 -0.11741 -5.34041 - -0.12512 -0.11741 -5.27677 - -0.13686 -0.11741 -5.21311 - -0.14860 -0.11741 -5.14944 - -0.16035 -0.11741 -5.08574 - -0.17209 -0.11741 -5.02203 - -0.17224 -0.11225 -5.02203 - -0.18346 -0.11225 -4.95829 - -0.19469 -0.11225 -4.89454 - -0.20591 -0.11225 -4.83075 - -0.21714 -0.11225 -4.76694 - -0.22836 -0.11225 -4.70311 - -0.22835 -0.11182 -4.70311 - -0.23953 -0.11182 -4.63924 - -0.25072 -0.11182 -4.57535 - -0.26190 -0.11182 -4.51142 - -0.27308 -0.11182 -4.44746 - -0.28426 -0.11182 -4.38347 - -0.28430 -0.11113 -4.38347 - -0.29986 -0.11113 -4.29382 - -0.31542 -0.11113 -4.20409 - -0.33098 -0.11113 -4.11429 - -0.34654 -0.11113 -4.02440 - -0.36209 -0.11113 -3.93443 - -0.36216 -0.10959 -3.93443 - -0.37641 -0.10959 -3.85080 - -0.39066 -0.10959 -3.76710 - -0.40490 -0.10959 -3.68331 - -0.41915 -0.10959 -3.59944 - -0.43340 -0.10959 -3.51547 - -0.43325 -0.10988 -3.51547 - -0.44753 -0.10988 -3.43142 - -0.46182 -0.10988 -3.34727 - -0.47610 -0.10988 -3.26302 - -0.49038 -0.10988 -3.17867 - -0.50467 -0.10988 -3.09421 - -0.50467 -0.10990 -3.09421 - -0.52110 -0.10990 -2.99695 - -0.53753 -0.10990 -2.89955 - -0.55396 -0.10990 -2.80200 - -0.57039 -0.10990 -2.70429 - -0.58682 -0.10990 -2.60641 - -0.58682 -0.10990 -2.60641 - -0.60325 -0.10990 -2.50838 - -0.61968 -0.10990 -2.41017 - -0.63611 -0.10990 -2.31179 - -0.65254 -0.10990 -2.21323 - -0.66897 -0.10990 -2.11449 - -0.67011 -0.10406 -2.11449 - -0.68567 -0.10406 -2.01556 - -0.70123 -0.10406 -1.91643 - -0.71679 -0.10406 -1.81711 - -0.73234 -0.10406 -1.71758 - -0.74790 -0.10406 -1.61785 - -0.74625 -0.09393 -1.61785 - -0.76029 -0.09393 -1.51791 - -0.77433 -0.09393 -1.41776 - -0.78837 -0.09393 -1.31738 - -0.80242 -0.09393 -1.21679 - -0.81646 -0.09393 -1.11597 - -0.81576 -0.08186 -1.11597 - -0.81592 -0.08186 -1.11462 - -0.81608 -0.08186 -1.11327 - -0.81625 -0.08186 -1.11192 - -0.81641 -0.08186 -1.11057 - -0.81657 -0.08186 -1.10922 - -0.81657 -0.08188 -1.10922 - -0.81968 -0.08188 -1.08355 - -0.82280 -0.08188 -1.05787 - -0.82591 -0.08188 -1.03217 - -0.82902 -0.08188 -1.00646 - -0.83213 -0.08188 -0.98073 - -0.83205 19.25438 -0.98073 - 1.47848 19.25438 -0.89946 - 3.78900 19.25438 -0.81845 - 6.09953 19.25438 -0.73814 - 8.41005 19.25438 -0.65893 - 10.72058 19.25438 -0.58124 - 10.72062 19.25098 -0.58124 - 11.80751 16.95662 -0.54311 - 12.75288 14.53558 -0.50551 - 13.54948 11.99958 -0.46848 - 14.19076 9.35990 -0.43206 - 14.67081 6.62734 -0.39629 - 14.67142 6.60562 -0.39629 - 15.23162 5.74685 -0.34331 - 15.72252 5.05888 -0.29193 - 16.15534 4.46996 -0.24218 - 16.53900 3.97822 -0.19411 - 16.88215 3.57785 -0.14777 - 16.88198 3.58013 -0.14777 - 17.19352 3.28090 -0.10319 - 17.48176 3.06914 -0.06041 - 17.75481 2.94676 -0.01945 - 18.02072 2.91176 0.01966 - 18.28654 2.93574 0.05689 - 18.28657 2.93503 0.05689 - 18.58060 2.95122 0.09560 - 18.87770 2.99398 0.13197 - 19.17996 3.05357 0.16596 - 19.48804 3.10195 0.19753 - 19.79907 3.11194 0.22665 - 19.80032 3.10610 0.22665 - 20.15870 1.89852 0.26317 - 20.29992 0.00545 0.29471 - 20.14263 -2.26475 0.32130 - 19.67150 -4.41241 0.34298 - 18.92173 -6.24770 0.35980 - 18.92070 -6.24866 0.35980 - 17.93665 -7.75906 0.37188 - 16.76233 -8.96588 0.37953 - 15.44033 -9.86995 0.38308 - 14.01255 -10.47823 0.38284 - 12.51962 -10.80372 0.37914 - 12.52076 -10.77902 0.37914 - 11.00614 -10.81412 0.37233 - 9.50523 -10.58297 0.36281 - 8.05522 -10.08805 0.35093 - 6.69254 -9.33662 0.33704 - 5.45159 -8.35753 0.32150 - 5.45284 -8.33556 0.32150 - 4.36016 -7.28362 0.30465 - 3.41070 -6.29013 0.28672 - 2.59604 -5.35835 0.26792 - 1.90736 -4.49086 0.24844 - 1.33551 -3.68959 0.22850 - 1.33758 -3.72388 0.22850 - 0.87400 -2.93008 0.20827 - 0.51117 -2.26465 0.18782 - 0.23920 -1.61426 0.16722 - 0.06324 -0.87691 0.14655 - 0.00022 0.00097 0.12586 + 0.00000 0.00000 -7.88409 + 0.00000 0.00000 -7.82686 + 0.00000 0.00000 -7.76962 + 0.00000 0.00000 -7.71239 + 0.00000 0.00000 -7.65515 + 0.00000 0.00000 -7.59792 + 0.00000 0.00000 -7.59792 + 0.00000 0.00000 -7.54068 + 0.00000 0.00000 -7.48345 + 0.00000 0.00000 -7.42621 + 0.00000 0.00000 -7.36898 + 0.00000 0.00000 -7.31174 + 0.00000 0.00000 -7.31174 + 0.00000 0.00000 -7.23543 + 0.00000 0.00000 -7.15911 + 0.00000 0.00000 -7.08280 + 0.00000 0.00000 -7.00649 + 0.00000 0.00000 -6.93017 + 0.00000 0.00000 -6.93017 + 0.00000 0.00000 -6.86658 + 0.00000 0.00000 -6.80298 + 0.00000 0.00000 -6.73939 + 0.00000 0.00000 -6.67579 + 0.00000 0.00000 -6.61220 + 0.00000 0.00000 -6.61220 + 0.00000 0.00000 -6.54860 + 0.00000 0.00000 -6.48501 + 0.00000 0.00000 -6.42141 + 0.00000 0.00000 -6.35782 + 0.00000 0.00000 -6.29422 + 0.00000 0.00000 -6.29422 + 0.00000 0.00000 -6.23953 + 0.00000 0.00000 -6.18484 + 0.00000 0.00000 -6.13015 + 0.00000 0.00000 -6.07546 + 0.00000 0.00000 -6.02076 + 0.00000 -0.09749 -6.02076 + -0.01111 -0.09749 -5.94827 + -0.02223 -0.09749 -5.87577 + -0.03334 -0.09749 -5.80326 + -0.04446 -0.09749 -5.73075 + -0.05557 -0.09749 -5.65824 + -0.05465 -0.11551 -5.65824 + -0.06389 -0.11551 -5.60734 + -0.07313 -0.11551 -5.55644 + -0.08237 -0.11551 -5.50554 + -0.09161 -0.11551 -5.45463 + -0.10086 -0.11551 -5.40371 + -0.10111 -0.11742 -5.40371 + -0.10346 -0.11742 -5.39098 + -0.10581 -0.11742 -5.37824 + -0.10816 -0.11742 -5.36551 + -0.11051 -0.11742 -5.35278 + -0.11286 -0.11742 -5.34005 + -0.11289 -0.11697 -5.34005 + -0.12459 -0.11697 -5.27637 + -0.13629 -0.11697 -5.21268 + -0.14798 -0.11697 -5.14897 + -0.15968 -0.11697 -5.08525 + -0.17138 -0.11697 -5.02150 + -0.17153 -0.11180 -5.02150 + -0.18271 -0.11180 -4.95773 + -0.19389 -0.11180 -4.89394 + -0.20507 -0.11180 -4.83013 + -0.21625 -0.11180 -4.76628 + -0.22743 -0.11180 -4.70242 + -0.22742 -0.11137 -4.70242 + -0.23856 -0.11137 -4.63852 + -0.24969 -0.11137 -4.57459 + -0.26083 -0.11137 -4.51063 + -0.27197 -0.11137 -4.44664 + -0.28310 -0.11137 -4.38261 + -0.28315 -0.11068 -4.38261 + -0.29864 -0.11068 -4.29292 + -0.31414 -0.11068 -4.20315 + -0.32963 -0.11068 -4.11330 + -0.34513 -0.11068 -4.02337 + -0.36062 -0.11068 -3.93336 + -0.36069 -0.10914 -3.93336 + -0.37488 -0.10914 -3.84969 + -0.38907 -0.10914 -3.76595 + -0.40326 -0.10914 -3.68212 + -0.41744 -0.10914 -3.59821 + -0.43163 -0.10914 -3.51421 + -0.43148 -0.10942 -3.51421 + -0.44571 -0.10942 -3.43011 + -0.45993 -0.10942 -3.34592 + -0.47416 -0.10942 -3.26164 + -0.48838 -0.10942 -3.17725 + -0.50261 -0.10942 -3.09276 + -0.50261 -0.10944 -3.09276 + -0.51897 -0.10944 -2.99546 + -0.53533 -0.10944 -2.89802 + -0.55169 -0.10944 -2.80042 + -0.56806 -0.10944 -2.70267 + -0.58442 -0.10944 -2.60476 + -0.58442 -0.10944 -2.60476 + -0.60078 -0.10944 -2.50669 + -0.61714 -0.10944 -2.40845 + -0.63350 -0.10944 -2.31003 + -0.64986 -0.10944 -2.21143 + -0.66622 -0.10944 -2.11266 + -0.66737 -0.10361 -2.11266 + -0.68286 -0.10361 -2.01369 + -0.69835 -0.10361 -1.91453 + -0.71384 -0.10361 -1.81518 + -0.72933 -0.10361 -1.71562 + -0.74482 -0.10361 -1.61586 + -0.74331 -0.09120 -1.61586 + -0.75695 -0.09120 -1.51589 + -0.77058 -0.09120 -1.41570 + -0.78421 -0.09120 -1.31530 + -0.79785 -0.09120 -1.21468 + -0.81148 -0.09120 -1.11384 + -0.81076 -0.07906 -1.11384 + -0.81092 -0.07906 -1.11248 + -0.81108 -0.07906 -1.11113 + -0.81124 -0.07906 -1.10978 + -0.81140 -0.07906 -1.10843 + -0.81155 -0.07906 -1.10708 + -0.81155 -0.07908 -1.10708 + -0.81456 -0.07908 -1.08141 + -0.81756 -0.07908 -1.05572 + -0.82057 -0.07908 -1.03002 + -0.82357 -0.07908 -1.00430 + -0.82658 -0.07908 -0.97857 + -0.82650 19.25755 -0.97857 + 1.48441 19.25755 -0.89728 + 3.79531 19.25755 -0.81625 + 6.10622 19.25755 -0.73592 + 8.41712 19.25755 -0.65670 + 10.72803 19.25755 -0.57900 + 10.72807 19.25415 -0.57900 + 11.81516 16.96011 -0.54086 + 12.76075 14.53942 -0.50325 + 13.55759 12.00378 -0.46622 + 14.19913 9.36446 -0.42980 + 14.67947 6.63228 -0.39402 + 14.68007 6.61053 -0.39402 + 15.24068 5.75014 -0.34104 + 15.73173 5.05875 -0.28965 + 16.16438 4.46658 -0.23990 + 16.54760 3.97178 -0.19182 + 16.89002 3.56856 -0.14548 + 16.88994 3.56851 -0.14548 + 17.20030 3.26665 -0.10090 + 17.48714 3.05250 -0.05812 + 17.75858 2.92800 -0.01716 + 18.02269 2.89114 0.02195 + 18.28660 2.91475 0.05918 + 18.28661 2.91397 0.05918 + 18.57858 2.93081 0.09789 + 18.87367 2.97435 0.13426 + 19.17401 3.03485 0.16825 + 19.48026 3.08393 0.19983 + 19.78951 3.09438 0.22895 + 19.79073 3.08903 0.22895 + 20.14772 1.89425 0.26548 + 20.28891 0.00920 0.29702 + 20.13256 -2.25609 0.32362 + 19.66278 -4.40191 0.34532 + 18.91458 -6.23579 0.36215 + 18.91369 -6.23733 0.36215 + 17.93130 -7.74679 0.37425 + 16.75874 -8.95316 0.38192 + 15.43851 -9.85732 0.38549 + 14.01246 -10.46623 0.38527 + 12.52114 -10.79294 0.38158 + 12.52105 -10.78915 0.38158 + 11.00491 -10.82606 0.37479 + 9.50215 -10.59736 0.36529 + 8.04993 -10.10551 0.35344 + 6.68455 -9.35781 0.33957 + 5.44064 -8.37646 0.32405 + 5.44189 -8.35450 0.32405 + 4.34716 -7.29394 0.30723 + 3.39686 -6.29174 0.28933 + 2.58260 -5.35113 0.27056 + 1.89555 -4.47471 0.25112 + 1.32659 -3.66437 0.23122 + 1.32664 -3.66384 0.23122 + 0.86650 -2.92086 0.21103 + 0.50561 -2.24609 0.19062 + 0.23646 -1.59564 0.17007 + 0.06244 -0.86786 0.14944 + -0.00001 -0.00003 0.12880 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -10400,24 +10536,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -10492,8 +10628,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -10511,7 +10647,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -10523,7 +10659,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -10553,7 +10689,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -10694,13 +10830,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -10713,54 +10849,54 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 0.98277 69.84300 62.88631 10.23728 110 0 1 - 9.08503 70.73571 62.76725 10.45829 110 0 1 - 9.63356 71.62842 62.93711 10.80128 110 0 1 - 10.17556 72.52113 63.36356 11.14428 110 0 1 - 10.71083 73.41384 63.95712 11.48728 110 0 1 - 11.15344 74.30655 64.47739 11.74453 110 0 1 - 11.32494 74.30655 64.85531 11.91602 110 0 1 - 11.76049 75.19926 65.45935 12.17327 110 0 1 - 12.27462 76.09197 66.31521 12.51627 110 0 1 - 12.78146 76.98468 67.21959 12.85927 110 0 1 - 13.28090 77.87739 68.16229 13.20226 110 19 1 - 13.68706 78.77010 68.88908 13.45951 110 20 1 - 15.38290 78.77010 43.93101 15.49997 110 0 1 - 12.40921 82.75110 39.79998 12.27314 110 31 1 - 10.45362 86.73210 34.34186 10.18968 110 30 1 - 8.43814 90.71310 28.93258 8.10622 110 29 1 - 6.41782 94.69410 23.56199 6.02276 110 27 1 - 4.91347 98.67510 19.55369 4.46017 110 25 1 - 18.14986 98.67510 40.26142 2.66609 110 45 1 - 14.46598 100.04850 47.59458 3.16905 110 30 1 - 10.17325 101.42190 57.26566 3.83967 110 18 1 - 8.36583 102.79530 66.83887 4.51028 110 13 1 - 9.29665 104.16870 76.34704 5.18090 110 12 1 - 10.00145 105.54210 83.45275 5.68386 110 12 1 - 10.33676 105.54210 88.18188 6.01917 110 12 1 - 10.98470 106.91550 95.26984 6.52214 110 12 1 - 11.74717 108.28890 104.71836 7.19275 110 11 1 - 12.46035 109.66230 114.17154 7.86337 110 11 1 - 13.12809 111.03570 123.63438 8.53399 110 11 1 - 13.58657 112.40910 130.73900 9.03695 110 10 1 - 13.92188 112.40910 135.47972 9.37226 110 10 1 - 14.34317 113.78250 142.59735 9.87522 110 10 1 - 14.89955 115.15590 152.09823 10.54584 110 10 1 - 15.42762 116.52930 161.61132 11.21646 110 10 1 - 15.93160 117.90270 171.13564 11.88707 110 9 1 - 16.24807 119.27610 178.28533 12.39004 110 9 1 - 16.58338 119.27610 183.05493 12.72534 110 9 1 - 16.88408 120.64950 190.21367 13.22831 110 9 1 - 17.33954 122.02290 199.76524 13.89892 110 9 1 - 17.78453 123.39630 209.32386 14.56954 110 8 1 - 18.22148 124.76970 218.88869 15.24016 110 8 1 - 18.48517 126.14310 226.06575 15.74312 110 8 1 - 15.10990 126.14310 230.85212 11.38031 110 7 1 - 19.08063 127.51650 238.03393 16.58139 110 8 1 - 19.50586 128.88990 247.61307 17.25201 110 8 1 - 20.69957 130.26330 257.19585 17.92263 110 8 1 - 22.58459 131.63670 266.78180 18.59324 110 8 1 - 24.37712 133.01010 273.97304 19.09621 110 9 1 + 0.94779 69.84300 62.88631 10.20104 110 0 1 + 9.09414 70.73571 62.76725 10.45829 110 0 1 + 9.64269 71.62842 62.93711 10.80128 110 0 1 + 10.18470 72.52113 63.36356 11.14428 110 0 1 + 10.71998 73.41384 63.95712 11.48728 110 0 1 + 11.16261 74.30655 64.47739 11.74453 110 0 1 + 11.33411 74.30655 64.85531 11.91602 110 0 1 + 11.76967 75.19926 65.45935 12.17327 110 0 1 + 12.28380 76.09197 66.31521 12.51627 110 0 1 + 12.79064 76.98468 67.21959 12.85927 110 0 1 + 13.29008 77.87739 68.16229 13.20226 110 19 1 + 13.69624 78.77010 68.88908 13.45951 110 20 1 + 13.72059 78.77010 43.93101 13.83574 110 0 1 + 12.41104 82.75110 39.79998 12.27314 110 31 1 + 10.45821 86.73210 34.34186 10.18968 110 30 1 + 8.44273 90.71310 28.93258 8.10622 110 29 1 + 6.42242 94.69410 23.56199 6.02276 110 27 1 + 4.91807 98.67510 19.55369 4.46017 110 25 1 + 18.27620 98.67510 40.26142 2.66609 110 45 1 + 14.52900 100.04850 47.59458 3.16905 110 31 1 + 10.23910 101.42190 57.26566 3.83967 110 18 1 + 8.39371 102.79530 66.83887 4.51028 110 13 1 + 9.32469 104.16870 76.34704 5.18090 110 12 1 + 10.02967 105.54210 83.45275 5.68386 110 12 1 + 10.36498 105.54210 88.18188 6.01917 110 12 1 + 11.01313 106.91550 95.26984 6.52214 110 12 1 + 11.77581 108.28890 104.71836 7.19275 110 11 1 + 12.48922 109.66230 114.17154 7.86337 110 11 1 + 13.15720 111.03570 123.63438 8.53399 110 11 1 + 13.61592 112.40910 130.73900 9.03695 110 10 1 + 13.95123 112.40910 135.47972 9.37226 110 10 1 + 14.37275 113.78250 142.59735 9.87522 110 10 1 + 14.92937 115.15590 152.09823 10.54584 110 10 1 + 15.45769 116.52930 161.61132 11.21646 110 10 1 + 15.96193 117.90270 171.13564 11.88707 110 9 1 + 16.27869 119.27610 178.28533 12.39004 110 9 1 + 16.61400 119.27610 183.05493 12.72534 110 9 1 + 16.91503 120.64950 190.21367 13.22831 110 9 1 + 17.37085 122.02290 199.76524 13.89892 110 9 1 + 17.81624 123.39630 209.32386 14.56954 110 9 1 + 18.25362 124.76970 218.88869 15.24016 110 8 1 + 18.51778 126.14310 226.06575 15.74312 110 8 1 + 18.85309 126.14310 230.85212 16.07843 110 8 1 + 19.11374 127.51650 238.03393 16.58139 110 8 1 + 19.53950 128.88990 247.61307 17.25201 110 8 1 + 20.59885 130.26330 257.19585 17.92263 110 8 1 + 22.47980 131.63670 266.78180 18.59324 110 8 1 + 24.26827 133.01010 273.97304 19.09621 110 9 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10775,9 +10911,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 9.853 'Hydrobiaklei' - -12.00 4.787 'Basisveen' - -12.50 53.441 'Eerste zandlaag' + -11.09 9.859 'Hydrobiaklei' + -12.00 4.705 'Basisveen' + -12.50 53.776 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -10794,9 +10930,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.38 'Grind' - -11.09 -2.09 'Hydrobiaklei' + -11.09 -2.10 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -20.51 'Eerste zandlaag' + -12.50 -20.64 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -10920,24 +11056,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -11012,8 +11148,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -11031,7 +11167,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -11043,7 +11179,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -11073,7 +11209,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -11214,73 +11350,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 39.89886 66.90000 84.51945 5.13458 110 47 1 - 42.23313 67.48860 88.29387 5.36388 110 48 1 - 44.40945 68.07720 93.32642 5.66961 110 48 1 - 46.39422 68.66580 98.35898 5.97534 110 47 1 - 48.19503 69.25440 103.39154 6.28107 110 47 1 - 49.77829 69.84300 107.16595 6.51036 110 46 1 - 11.74742 69.84300 62.88631 10.23728 110 19 1 - 17.19439 70.73571 62.76725 10.45829 110 27 1 - 16.64433 71.62842 62.93711 10.80128 110 26 1 - 16.10806 72.52113 63.36356 11.14428 110 25 1 - 15.58581 73.41384 63.95712 11.48728 110 24 1 - 15.07778 74.30655 64.47739 11.74453 110 23 1 - 15.07778 74.30655 64.85531 11.91602 110 23 1 - 14.58418 75.19926 65.45935 12.17327 110 22 1 - 14.10509 76.09197 66.31521 12.51627 110 21 1 - 13.64064 76.98468 67.21959 12.85927 110 20 1 - 13.19094 77.87739 68.16229 13.20226 110 0 1 - 13.24989 78.77010 68.88908 13.45951 110 0 1 - 15.38620 78.77010 43.93101 15.49997 110 0 1 - 12.08195 82.75110 39.79998 12.27314 110 0 1 - 9.92575 86.73210 34.34186 10.18968 110 0 1 - 7.77431 90.71310 28.93258 8.10622 110 0 1 - 6.11401 94.69410 23.56199 6.02276 110 26 1 - 5.01752 98.67510 19.55369 4.46017 110 26 1 - 24.30956 98.67510 40.26142 2.66609 220 60 2 - 25.55747 100.04850 47.59458 3.16905 220 54 2 - 26.12563 101.42190 57.26566 3.83967 110 46 1 - 24.84487 102.79530 66.83887 4.51028 110 37 1 - 23.49847 104.16870 76.34704 5.18090 110 31 1 - 22.01803 105.54210 83.45275 5.68386 110 26 1 - 22.20085 105.54210 88.18188 6.01917 110 25 1 - 20.69777 106.91550 95.26984 6.52214 110 22 1 - 19.27434 108.28890 104.71836 7.19275 110 18 1 - 17.84849 109.66230 114.17154 7.86337 110 16 1 - 16.42956 111.03570 123.63438 8.53399 110 13 1 - 14.93505 112.40910 130.73900 9.03695 110 11 1 - 15.11879 112.40910 135.47972 9.37226 110 11 1 - 13.64763 113.78250 142.59735 9.87522 110 10 1 - 12.29301 115.15590 152.09823 10.54584 110 8 1 - 10.96378 116.52930 161.61132 11.21646 110 0 1 - 9.66069 117.90270 171.13564 11.88707 110 0 1 - 8.53200 119.27610 178.28533 12.39004 110 0 1 - 8.86731 119.27610 183.05493 12.72534 110 0 1 - 9.57253 120.64950 190.21367 13.22831 110 0 1 - 10.45831 122.02290 199.76524 13.89892 110 0 1 - 11.35455 123.39630 209.32386 14.56954 110 0 1 - 12.25883 124.76970 218.88869 15.24016 110 0 1 - 13.00107 126.14310 226.06575 15.74312 110 0 1 - 8.76840 126.14310 230.85212 11.38031 1 0 A - 14.08216 127.51650 238.03393 16.58139 110 0 1 - 14.99816 128.88990 247.61307 17.25201 110 0 1 - 15.91593 130.26330 257.19585 17.92263 110 0 1 - 16.83468 131.63670 266.78180 18.59324 110 0 1 - 17.58594 133.01010 273.97304 19.09621 110 0 1 + 39.89355 66.90000 84.51945 5.13458 110 47 1 + 42.22756 67.48860 88.29387 5.36388 110 48 1 + 44.40364 68.07720 93.32642 5.66961 110 48 1 + 46.38821 68.66580 98.35898 5.97534 110 47 1 + 48.18884 69.25440 103.39154 6.28107 110 47 1 + 49.77197 69.84300 107.16595 6.51036 110 46 1 + 11.70952 69.84300 62.88631 10.20104 110 19 1 + 17.24210 70.73571 62.76725 10.45829 110 27 1 + 16.69017 71.62842 62.93711 10.80128 110 27 1 + 16.15188 72.52113 63.36356 11.14428 110 25 1 + 15.62744 73.41384 63.95712 11.48728 110 24 1 + 15.11706 74.30655 64.47739 11.74453 110 23 1 + 15.11706 74.30655 64.85531 11.91602 110 23 1 + 14.62091 75.19926 65.45935 12.17327 110 22 1 + 14.13910 76.09197 66.31521 12.51627 110 21 1 + 13.67177 76.98468 67.21959 12.85927 110 20 1 + 13.21903 77.87739 68.16229 13.20226 110 19 1 + 13.24844 78.77010 68.88908 13.45951 110 0 1 + 13.71737 78.77010 43.93101 13.83574 110 0 1 + 12.07736 82.75110 39.79998 12.27314 110 0 1 + 9.92116 86.73210 34.34186 10.18968 110 0 1 + 7.76972 90.71310 28.93258 8.10622 110 0 1 + 6.11389 94.69410 23.56199 6.02276 110 26 1 + 5.01762 98.67510 19.55369 4.46017 110 26 1 + 24.31222 98.67510 40.26142 2.66609 220 60 2 + 25.56133 100.04850 47.59458 3.16905 220 54 2 + 26.13598 101.42190 57.26566 3.83967 110 46 1 + 24.85812 102.79530 66.83887 4.51028 110 37 1 + 23.51487 104.16870 76.34704 5.18090 110 31 1 + 22.03783 105.54210 83.45275 5.68386 110 26 1 + 22.22064 105.54210 88.18188 6.01917 110 25 1 + 20.72121 106.91550 95.26984 6.52214 110 22 1 + 19.30164 108.28890 104.71836 7.19275 110 18 1 + 17.87987 109.66230 114.17154 7.86337 110 16 1 + 16.46523 111.03570 123.63438 8.53399 110 13 1 + 14.97518 112.40910 130.73900 9.03695 110 11 1 + 15.15892 112.40910 135.47972 9.37226 110 11 1 + 13.69239 113.78250 142.59735 9.87522 110 10 1 + 12.34253 115.15590 152.09823 10.54584 110 8 1 + 11.01817 116.52930 161.61132 11.21646 110 0 1 + 9.72000 117.90270 171.13564 11.88707 110 0 1 + 8.50138 119.27610 178.28533 12.39004 110 0 1 + 8.83668 119.27610 183.05493 12.72534 110 0 1 + 9.54159 120.64950 190.21367 13.22831 110 0 1 + 10.42700 122.02290 199.76524 13.89892 110 0 1 + 11.32285 123.39630 209.32386 14.56954 110 0 1 + 12.22669 124.76970 218.88869 15.24016 110 0 1 + 12.96846 126.14310 226.06575 15.74312 110 0 1 + 13.30377 126.14310 230.85212 16.07843 110 0 1 + 14.04905 127.51650 238.03393 16.58139 110 0 1 + 14.96452 128.88990 247.61307 17.25201 110 0 1 + 15.88176 130.26330 257.19585 17.92263 110 0 1 + 16.79995 131.63670 266.78180 18.59324 110 0 1 + 17.55066 133.01010 273.97304 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -11294,10 +11430,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 13.564 'Grind' - -11.09 13.525 'Hydrobiaklei' - -12.00 4.610 'Basisveen' - -12.50 56.558 'Eerste zandlaag' + -10.79 13.562 'Grind' + -11.09 13.555 'Hydrobiaklei' + -12.00 4.525 'Basisveen' + -12.50 56.890 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -11314,9 +11450,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 5.48 'Grind' - -11.09 2.87 'Hydrobiaklei' + -11.09 2.88 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 21.71 'Eerste zandlaag' + -12.50 21.84 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -11538,8 +11674,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 378.59079 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.98470 10000000.000 1 1 1 'Dek' + -10.19000 378.57890 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.98557 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -11600,10 +11736,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 25.07 : Percentage mobilized resistance left - 15.19 : Percentage mobilized resistance right - 179.44 : Effective left - 108.75 : Effective right + 25.10 : Percentage mobilized resistance left + 15.22 : Percentage mobilized resistance right + 179.70 : Effective left + 108.97 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 715.81 : Max effective resistance left @@ -11612,8 +11748,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 39.87 : Vertical force left - 15.62 : Vertical force right + 40.00 : Vertical force left + 15.74 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -11622,17 +11758,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.62 : Active force -39.87 : Passive force --15.62 : Plugged active force -39.87 : Plugged passive force +-15.74 : Active force +40.00 : Passive force +-15.74 : Plugged active force +40.00 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --75.75 : Resulting Vertical Force Unplugged --75.75 : Resulting Vertical Force Plugged +-75.74 : Resulting Vertical Force Unplugged +-75.74 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -11645,192 +11781,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.50184 - 0.12529 0.00000 -58.24888 - 0.25058 0.00000 -56.99592 - 0.37587 0.00000 -55.74300 - 0.50117 0.00000 -54.49011 - 0.62646 0.00000 -53.23727 - 0.62646 0.00000 -53.23727 - 0.75172 0.00000 -51.98450 - 0.87698 0.00000 -50.73181 - 1.00223 0.00000 -49.47920 - 1.12749 0.00000 -48.22670 - 1.25275 0.00000 -46.97431 - 1.25275 0.00000 -46.97431 - 1.41966 0.00000 -45.30466 - 1.58657 0.00000 -43.63526 - 1.75348 0.00000 -41.96616 - 1.92038 0.00000 -40.29737 - 2.08729 0.00000 -38.62893 - 2.08729 0.00000 -38.62893 - 2.22624 0.00000 -37.23885 - 2.36519 0.00000 -35.84906 - 2.50414 0.00000 -34.45956 - 2.64308 0.00000 -33.07037 - 2.78203 0.00000 -31.68152 - 2.78203 0.00000 -31.68152 - 2.92080 0.00000 -30.29302 - 3.05958 0.00000 -28.90489 - 3.19835 0.00000 -27.51714 - 3.33712 0.00000 -26.12980 - 3.47590 0.00000 -24.74287 - 3.47590 0.00000 -24.74287 - 3.59507 0.00000 -23.55047 - 3.71424 0.00000 -22.35840 - 3.83341 0.00000 -21.16667 - 3.95258 0.00000 -19.97531 - 4.07175 0.00000 -18.78431 - 4.07175 439.90000 -18.78431 - 54.37461 439.90000 -17.20750 - 104.67746 439.90000 -15.63959 - 154.98031 439.90000 -14.08882 - 205.28317 439.90000 -12.56343 - 255.58602 439.90000 -11.07164 - 255.58694 439.88200 -11.07164 - 290.87448 439.88200 -10.04927 - 326.16201 439.88200 -9.05035 - 361.44955 439.88200 -8.07773 - 396.73709 439.88200 -7.13425 - 432.02463 439.88200 -6.22276 - 432.02437 -84.10461 -6.22276 - 430.36410 -84.10461 -6.00021 - 428.70383 -84.10461 -5.77983 - 427.04356 -84.10461 -5.56161 - 425.38329 -84.10461 -5.34554 - 423.72302 -84.10461 -5.13162 - 423.72298 -84.10416 -5.13162 - 415.40609 -84.10416 -4.09385 - 407.08919 -84.10416 -3.10841 - 398.77229 -84.10416 -2.17426 - 390.45540 -84.10416 -1.29035 - 382.13850 -84.10416 -0.45562 - 382.13835 -84.09900 -0.45562 - 373.79790 -84.09900 0.33096 - 365.45745 -84.09900 1.07045 - 357.11700 -84.09900 1.76391 - 348.77655 -84.09900 2.41237 - 340.43610 -84.09900 3.01689 - 340.43611 -84.09857 3.01689 - 332.07426 -84.09857 3.57853 - 323.71241 -84.09857 4.09833 - 315.35056 -84.09857 4.57735 - 306.98872 -84.09857 5.01664 - 298.62687 -84.09857 5.41726 - 298.62682 -84.09788 5.41726 - 286.88932 -84.09788 5.91516 - 275.15182 -84.09788 6.34222 - 263.41432 -84.09788 6.70134 - 251.67682 -84.09788 6.99541 - 239.93932 -84.09788 7.22734 - 239.93925 -84.09634 7.22734 - 229.01366 -84.09634 7.38959 - 218.08808 -84.09634 7.50308 - 207.16249 -84.09634 7.57014 - 196.23690 -84.09634 7.59309 - 185.31132 -84.09634 7.57426 - 185.31147 -84.09663 7.57426 - 174.36612 -84.09663 7.51597 - 163.42077 -84.09663 7.42056 - 152.47542 -84.09663 7.29036 - 141.53007 -84.09663 7.12770 - 130.58472 -84.09663 6.93490 - 130.58472 -84.09665 6.93490 - 117.98074 -84.09665 6.67895 - 105.37676 -84.09665 6.38979 - 92.77279 -84.09665 6.07095 - 80.16881 -84.09665 5.72599 - 67.56483 -84.09665 5.35846 - 67.56483 -84.09665 5.35846 - 54.95134 -84.09665 4.97190 - 42.33786 -84.09665 4.56987 - 29.72437 -84.09665 4.15592 - 17.11088 -84.09665 3.73360 - 4.49739 -84.09665 3.30646 - 4.49624 -84.09081 3.30646 - -8.11701 -84.09081 2.87805 - -20.73025 -84.09081 2.45193 - -33.34350 -84.09081 2.03165 - -45.95675 -84.09081 1.62076 - -58.57000 -84.09081 1.22280 - -58.56835 -84.08068 1.22280 - -71.17184 -84.08068 0.84134 - -83.77533 -84.08068 0.47992 - -96.37882 -84.08068 0.14208 - -108.98231 -84.08068 -0.16861 - -121.58580 -84.08068 -0.44862 - -121.58510 -84.06861 -0.44862 - -121.75358 -84.06861 -0.45214 - -121.92207 -84.06861 -0.45566 - -122.09056 -84.06861 -0.45917 - -122.25905 -84.06861 -0.46267 - -122.42754 -84.06861 -0.46617 - -122.42754 -84.06863 -0.46617 - -125.62810 -84.06863 -0.53143 - -128.82866 -84.06863 -0.59441 - -132.02922 -84.06863 -0.65505 - -135.22978 -84.06863 -0.71328 - -138.43034 -84.06863 -0.76906 - -138.43025 70.73977 -0.76906 - -129.95210 70.73977 -0.92894 - -121.47394 70.73977 -1.06525 - -112.99579 70.73977 -1.17952 - -104.51763 70.73977 -1.27329 - -96.03948 70.73977 -1.34811 - -96.03941 70.73579 -1.34811 - -91.88156 67.89651 -1.37889 - -87.89896 64.89222 -1.40550 - -84.10163 61.72275 -1.42812 - -80.49921 58.39643 -1.44692 - -77.10070 54.93009 -1.46207 - -77.10018 54.91070 -1.46207 - -72.17041 53.41655 -1.47844 - -67.38000 51.88029 -1.48728 - -62.72678 50.40239 -1.48908 - -58.20522 48.98714 -1.48432 - -53.80957 47.63457 -1.47350 - -53.80975 47.63473 -1.47350 - -49.53164 46.36012 -1.45707 - -45.36645 45.15502 -1.43548 - -41.30747 44.02627 -1.40914 - -37.34763 42.97650 -1.37849 - -33.48043 41.98166 -1.34394 - -33.48044 41.97955 -1.34394 - -29.30693 41.43607 -1.30197 - -25.18622 40.92166 -1.25631 - -21.11584 40.42891 -1.20747 - -17.09455 39.93191 -1.15596 - -13.12441 39.40540 -1.10231 - -13.12317 39.40425 -1.10231 - -7.90184 35.09089 -1.02463 - -3.29821 30.58839 -0.94501 - 0.66395 25.92945 -0.86443 - 3.96557 21.16729 -0.78387 - 6.60599 16.55198 -0.70430 - 6.60424 16.54241 -0.70430 - 8.62075 12.28222 -0.62654 - 10.06611 8.38402 -0.55091 - 10.99133 4.85224 -0.47765 - 11.44789 1.68909 -0.40700 - 11.48762 -1.10138 -0.33919 - 11.48755 -1.09640 -0.33919 - 11.16691 -3.42466 -0.27432 - 10.55578 -5.24591 -0.21221 - 9.72506 -6.56303 -0.15265 - 8.74476 -7.38424 -0.09546 - 7.68269 -7.73983 -0.04044 - 7.68392 -7.71719 -0.04044 - 6.59904 -7.76387 0.01266 - 5.52000 -7.63486 0.06413 - 4.47101 -7.33519 0.11424 - 3.47567 -6.86905 0.16323 - 2.55705 -6.23974 0.21136 - 2.55915 -6.27361 0.21136 - 1.74015 -5.42358 0.25889 - 1.04571 -4.47457 0.30600 - 0.49770 -3.31385 0.35281 - 0.13300 -1.83982 0.39946 - 0.00021 0.00093 0.44608 + 0.00000 0.00000 -59.50227 + 0.12529 0.00000 -58.24929 + 0.25059 0.00000 -56.99632 + 0.37588 0.00000 -55.74338 + 0.50117 0.00000 -54.49047 + 0.62647 0.00000 -53.23762 + 0.62647 0.00000 -53.23762 + 0.75173 0.00000 -51.98483 + 0.87699 0.00000 -50.73211 + 1.00225 0.00000 -49.47949 + 1.12751 0.00000 -48.22697 + 1.25277 0.00000 -46.97456 + 1.25277 0.00000 -46.97456 + 1.41968 0.00000 -45.30489 + 1.58659 0.00000 -43.63547 + 1.75350 0.00000 -41.96634 + 1.92041 0.00000 -40.29753 + 2.08732 0.00000 -38.62907 + 2.08732 0.00000 -38.62907 + 2.22627 0.00000 -37.23897 + 2.36522 0.00000 -35.84915 + 2.50417 0.00000 -34.45964 + 2.64312 0.00000 -33.07043 + 2.78207 0.00000 -31.68156 + 2.78207 0.00000 -31.68156 + 2.92085 0.00000 -30.29304 + 3.05962 0.00000 -28.90489 + 3.19840 0.00000 -27.51712 + 3.33717 0.00000 -26.12976 + 3.47595 0.00000 -24.74282 + 3.47595 0.00000 -24.74282 + 3.59512 0.00000 -23.55039 + 3.71429 0.00000 -22.35831 + 3.83346 0.00000 -21.16657 + 3.95264 0.00000 -19.97518 + 4.07181 0.00000 -18.78417 + 4.07181 439.90000 -18.78417 + 54.37467 439.90000 -17.20734 + 104.67752 439.90000 -15.63941 + 154.98038 439.90000 -14.08861 + 205.28323 439.90000 -12.56320 + 255.58609 439.90000 -11.07139 + 255.58701 439.88198 -11.07139 + 290.87455 439.88198 -10.04900 + 326.16208 439.88198 -9.05007 + 361.44962 439.88198 -8.07743 + 396.73716 439.88198 -7.13394 + 432.02470 439.88198 -6.22243 + 432.02444 -84.10549 -6.22243 + 430.36415 -84.10549 -5.99988 + 428.70386 -84.10549 -5.77949 + 427.04358 -84.10549 -5.56127 + 425.38329 -84.10549 -5.34520 + 423.72301 -84.10549 -5.13127 + 423.72297 -84.10504 -5.13127 + 415.40599 -84.10504 -4.09348 + 407.08900 -84.10504 -3.10802 + 398.77202 -84.10504 -2.17385 + 390.45504 -84.10504 -1.28992 + 382.13806 -84.10504 -0.45518 + 382.13791 -84.09987 -0.45518 + 373.79737 -84.09987 0.33143 + 365.45684 -84.09987 1.07094 + 357.11630 -84.09987 1.76441 + 348.77577 -84.09987 2.41289 + 340.43523 -84.09987 3.01744 + 340.43524 -84.09944 3.01744 + 332.07331 -84.09944 3.57909 + 323.71137 -84.09944 4.09892 + 315.34944 -84.09944 4.57796 + 306.98750 -84.09944 5.01727 + 298.62557 -84.09944 5.41791 + 298.62552 -84.09875 5.41791 + 286.88790 -84.09875 5.91584 + 275.15028 -84.09875 6.34293 + 263.41266 -84.09875 6.70207 + 251.67504 -84.09875 6.99618 + 239.93742 -84.09875 7.22813 + 239.93735 -84.09721 7.22813 + 229.01166 -84.09721 7.39041 + 218.08596 -84.09721 7.50393 + 207.16026 -84.09721 7.57102 + 196.23457 -84.09721 7.59400 + 185.30887 -84.09721 7.57520 + 185.30902 -84.09749 7.57520 + 174.36356 -84.09749 7.51695 + 163.41810 -84.09749 7.42157 + 152.47265 -84.09749 7.29140 + 141.52719 -84.09749 7.12877 + 130.58173 -84.09749 6.93600 + 130.58173 -84.09751 6.93600 + 117.97762 -84.09751 6.68010 + 105.37352 -84.09751 6.39097 + 92.76942 -84.09751 6.07218 + 80.16531 -84.09751 5.72726 + 67.56121 -84.09751 5.35977 + 67.56121 -84.09751 5.35977 + 54.94760 -84.09751 4.97326 + 42.33398 -84.09751 4.57127 + 29.72037 -84.09751 4.15737 + 17.10676 -84.09751 3.73509 + 4.49314 -84.09751 3.30800 + 4.49200 -84.09169 3.30800 + -8.12138 -84.09169 2.87965 + -20.73475 -84.09169 2.45358 + -33.34813 -84.09169 2.03335 + -45.96150 -84.09169 1.62251 + -58.57488 -84.09169 1.22461 + -58.57337 -84.07927 1.22461 + -71.17664 -84.07927 0.84320 + -83.77992 -84.07927 0.48184 + -96.38319 -84.07927 0.14406 + -108.98646 -84.07927 -0.16657 + -121.58974 -84.07927 -0.44652 + -121.58902 -84.06713 -0.44652 + -121.75750 -84.06713 -0.45004 + -121.92599 -84.06713 -0.45356 + -122.09447 -84.06713 -0.45707 + -122.26296 -84.06713 -0.46057 + -122.43144 -84.06713 -0.46406 + -122.43144 -84.06715 -0.46406 + -125.63194 -84.06715 -0.52931 + -128.83245 -84.06715 -0.59228 + -132.03295 -84.06715 -0.65290 + -135.23345 -84.06715 -0.71111 + -138.43395 -84.06715 -0.76687 + -138.43387 70.75314 -0.76687 + -129.95411 70.75314 -0.92671 + -121.47434 70.75314 -1.06296 + -112.99458 70.75314 -1.17718 + -104.51482 70.75314 -1.27090 + -96.03505 70.75314 -1.34567 + -96.03498 70.74917 -1.34567 + -91.87631 67.91018 -1.37642 + -87.89289 64.90620 -1.40301 + -84.09471 61.73705 -1.42561 + -80.49142 58.41107 -1.44439 + -77.09201 54.94509 -1.45951 + -77.09150 54.92567 -1.45951 + -72.16030 53.43166 -1.47584 + -67.36866 51.89222 -1.48465 + -62.71449 50.41134 -1.48642 + -58.19224 48.99332 -1.48163 + -53.79615 47.63821 -1.47077 + -53.79623 47.63603 -1.47077 + -49.51811 46.35913 -1.45431 + -45.35310 45.15199 -1.43269 + -41.29448 44.02148 -1.40633 + -37.33514 42.97024 -1.37565 + -33.46853 41.97542 -1.34108 + -33.46855 41.97325 -1.34108 + -29.29562 41.43065 -1.29908 + -25.17541 40.91726 -1.25340 + -21.10541 40.42568 -1.20454 + -17.08439 39.92963 -1.15301 + -13.11444 39.40385 -1.09934 + -13.11323 39.40319 -1.09934 + -7.89116 35.09930 -1.02163 + -3.28635 30.59676 -0.94199 + 0.67697 25.93759 -0.86139 + 3.97968 21.17472 -0.78081 + 6.62106 16.55808 -0.70123 + 6.61945 16.54794 -0.70123 + 8.63661 12.28592 -0.62346 + 10.08233 8.38534 -0.54783 + 11.00753 4.85061 -0.47457 + 11.46362 1.68388 -0.40392 + 11.50245 -1.10825 -0.33612 + 11.50117 -1.12417 -0.33612 + 11.17667 -3.45218 -0.27126 + 10.56166 -5.27393 -0.20916 + 9.72694 -6.59230 -0.14962 + 8.74240 -7.41551 -0.09244 + 7.67607 -7.76726 -0.03744 + 7.67731 -7.74462 -0.03744 + 6.58930 -7.78122 0.01565 + 5.50852 -7.64216 0.06712 + 4.45921 -7.33248 0.11722 + 3.46496 -6.85634 0.16620 + 2.54881 -6.21704 0.21433 + 2.54888 -6.21610 0.21433 + 1.73304 -5.41610 0.26186 + 1.04034 -4.45710 0.30897 + 0.49503 -3.29583 0.35579 + 0.13222 -1.83099 0.40244 + -0.00001 -0.00007 0.44907 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -11951,24 +12087,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -12043,8 +12179,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12062,7 +12198,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -12074,7 +12210,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -12104,7 +12240,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -12245,13 +12381,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -12264,25 +12400,25 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 0.36256 69.84300 62.88631 10.23728 1 0 A - 4.54452 70.73571 62.76725 10.45829 110 0 1 - 4.85215 71.62842 62.93711 10.80128 110 0 1 - 5.18795 72.52113 63.36356 11.14428 110 0 1 - 5.54998 73.41384 63.95712 11.48728 110 0 1 - 5.85054 74.30655 64.47739 11.74453 110 0 1 - 6.02204 74.30655 64.85531 11.91602 110 0 1 - 6.34499 75.19926 65.45935 12.17327 110 0 1 - 6.77436 76.09197 66.31521 12.51627 110 0 1 - 7.22270 76.98468 67.21959 12.85927 110 0 1 - 7.68832 77.87739 68.16229 13.20226 110 0 1 - 8.08376 78.77010 68.88908 13.45951 110 0 1 - 12.58125 78.77010 43.93101 15.49997 110 0 1 - 9.61408 82.75110 39.79998 12.27314 110 0 1 - 7.67707 86.73210 34.34186 10.18968 110 0 1 - 5.69128 90.71310 28.93258 8.10622 110 0 1 - 3.71083 94.69410 23.56199 6.02276 110 0 1 - 2.25555 98.67510 19.55369 4.46017 110 0 1 - 2.20238 98.67510 40.26142 2.66609 110 0 1 + 0.36256 69.84300 62.88631 10.20104 1 0 A + 4.55491 70.73571 62.76725 10.45829 110 0 1 + 4.86268 71.62842 62.93711 10.80128 110 0 1 + 5.19861 72.52113 63.36356 11.14428 110 0 1 + 5.56077 73.41384 63.95712 11.48728 110 0 1 + 5.86145 74.30655 64.47739 11.74453 110 0 1 + 6.03295 74.30655 64.85531 11.91602 110 0 1 + 6.35602 75.19926 65.45935 12.17327 110 0 1 + 6.78550 76.09197 66.31521 12.51627 110 0 1 + 7.23395 76.98468 67.21959 12.85927 110 0 1 + 7.69966 77.87739 68.16229 13.20226 110 0 1 + 8.09521 78.77010 68.88908 13.45951 110 0 1 + 10.92007 78.77010 43.93101 13.83574 110 0 1 + 9.61709 82.75110 39.79998 12.27314 110 0 1 + 7.68288 86.73210 34.34186 10.18968 110 0 1 + 5.69715 90.71310 28.93258 8.10622 110 0 1 + 3.71674 94.69410 23.56199 6.02276 110 0 1 + 2.26150 98.67510 19.55369 4.46017 110 0 1 + 2.33678 98.67510 40.26142 2.66609 110 0 1 1.70862 100.04850 47.59458 3.16905 1 0 A 2.07185 101.42190 57.26566 3.83967 1 0 A 2.43581 102.79530 66.83887 4.51028 1 0 A @@ -12293,25 +12429,25 @@ Status character 3.89812 108.28890 104.71836 7.19275 1 0 A 4.26493 109.66230 114.17154 7.86337 1 0 A 4.63207 111.03570 123.63438 8.53399 1 0 A - 4.96668 112.40910 130.73900 9.03695 110 0 1 - 5.30199 112.40910 135.47972 9.37226 110 0 1 - 6.58337 113.78250 142.59735 9.87522 110 0 1 - 7.99935 115.15590 152.09823 10.54584 110 0 1 - 9.38461 116.52930 161.61132 11.21646 110 0 1 - 10.74151 117.90270 171.13564 11.88707 110 0 1 - 11.90471 119.27610 178.28533 12.39004 110 0 1 - 12.24002 119.27610 183.05493 12.72534 110 0 1 - 13.38021 120.64950 190.21367 13.22831 110 7 1 - 14.66853 122.02290 199.76524 13.89892 110 7 1 - 15.94041 123.39630 209.32386 14.56954 110 8 1 - 17.19890 124.76970 218.88869 15.24016 110 8 1 - 18.27943 126.14310 226.06575 15.74312 110 8 1 - 14.90416 126.14310 230.85212 11.38031 110 6 1 - 19.68807 127.51650 238.03393 16.58139 110 8 1 - 20.92398 128.88990 247.61307 17.25201 110 8 1 - 22.92661 130.26330 257.19585 17.92263 110 9 1 - 25.61957 131.63670 266.78180 18.59324 110 10 1 - 28.21981 133.01010 273.97304 19.09621 110 10 1 + 5.00354 112.40910 130.73900 9.03695 110 0 1 + 5.33885 112.40910 135.47972 9.37226 110 0 1 + 6.62011 113.78250 142.59735 9.87522 110 0 1 + 8.03594 115.15590 152.09823 10.54584 110 0 1 + 9.42103 116.52930 161.61132 11.21646 110 0 1 + 10.77775 117.90270 171.13564 11.88707 110 0 1 + 11.94079 119.27610 178.28533 12.39004 110 0 1 + 12.27610 119.27610 183.05493 12.72534 110 0 1 + 13.41614 120.64950 190.21367 13.22831 110 7 1 + 14.70435 122.02290 199.76524 13.89892 110 7 1 + 15.97614 123.39630 209.32386 14.56954 110 8 1 + 17.23458 124.76970 218.88869 15.24016 110 8 1 + 18.31509 126.14310 226.06575 15.74312 110 8 1 + 18.65039 126.14310 230.85212 16.07843 110 8 1 + 19.72373 127.51650 238.03393 16.58139 110 8 1 + 20.95967 128.88990 247.61307 17.25201 110 8 1 + 22.82745 130.26330 257.19585 17.92263 110 9 1 + 25.51584 131.63670 266.78180 18.59324 110 10 1 + 28.11152 133.01010 273.97304 19.09621 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12326,9 +12462,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.308 'Hydrobiaklei' - -12.00 3.411 'Basisveen' - -12.50 36.760 'Eerste zandlaag' + -11.09 5.317 'Hydrobiaklei' + -12.00 3.330 'Basisveen' + -12.50 37.059 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12347,7 +12483,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.13 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.11 'Eerste zandlaag' + -12.50 -14.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -12471,24 +12607,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -12563,8 +12699,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -12582,7 +12718,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -12594,7 +12730,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -12624,7 +12760,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -12765,73 +12901,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 48.74794 66.90000 84.51945 5.13458 220 58 2 - 51.54785 67.48860 88.29387 5.36388 220 58 2 - 54.53630 68.07720 93.32642 5.66961 220 58 2 - 57.38331 68.66580 98.35898 5.97534 220 58 2 - 60.09403 69.25440 103.39154 6.28107 220 58 2 - 62.33850 69.84300 107.16595 6.51036 220 58 2 - 16.01057 69.84300 62.88631 10.23728 110 25 1 - 21.73491 70.73571 62.76725 10.45829 110 35 1 - 21.42574 71.62842 62.93711 10.80128 110 34 1 - 21.09567 72.52113 63.36356 11.14428 110 33 1 - 20.74665 73.41384 63.95712 11.48728 110 32 1 - 20.38069 74.30655 64.47739 11.74453 110 32 1 - 20.38069 74.30655 64.85531 11.91602 110 31 1 - 19.99968 75.19926 65.45935 12.17327 110 31 1 - 19.60536 76.09197 66.31521 12.51627 110 30 1 - 19.19941 76.98468 67.21959 12.85927 110 29 1 - 18.78352 77.87739 68.16229 13.20226 110 28 1 - 18.85319 78.77010 68.88908 13.45951 110 27 1 - 18.18785 78.77010 43.93101 15.49997 110 41 1 - 14.87708 82.75110 39.79998 12.27314 110 37 1 - 12.70230 86.73210 34.34186 10.18968 110 37 1 - 10.52116 90.71310 28.93258 8.10622 110 36 1 - 8.82100 94.69410 23.56199 6.02276 110 37 1 - 7.67543 98.67510 19.55369 4.46017 110 39 1 - 32.24622 98.67510 40.26142 2.66609 330 80 3 - 33.28426 100.04850 47.59458 3.16905 220 70 2 - 34.81752 101.42190 57.26566 3.83967 220 61 2 - 36.24651 102.79530 66.83887 4.51028 220 54 2 - 37.02063 104.16870 76.34704 5.18090 110 48 1 - 34.78718 105.54210 83.45275 5.68386 110 42 1 - 34.97000 105.54210 88.18188 6.01917 110 40 1 - 32.67877 106.91550 95.26984 6.52214 110 34 1 - 30.43966 108.28890 104.71836 7.19275 110 29 1 - 28.17728 109.66230 114.17154 7.86337 110 25 1 - 25.90765 111.03570 123.63438 8.53399 110 21 1 - 23.55494 112.40910 130.73900 9.03695 110 18 1 - 23.73869 112.40910 135.47972 9.37226 110 18 1 - 21.40743 113.78250 142.59735 9.87522 110 15 1 - 19.19321 115.15590 152.09823 10.54584 110 13 1 - 17.00679 116.52930 161.61132 11.21646 110 11 1 - 14.85079 117.90270 171.13564 11.88707 110 9 1 - 12.87536 119.27610 178.28533 12.39004 110 7 1 - 13.21067 119.27610 183.05493 12.72534 110 7 1 - 13.07641 120.64950 190.21367 13.22831 110 0 1 - 13.12932 122.02290 199.76524 13.89892 110 0 1 - 13.19867 123.39630 209.32386 14.56954 110 0 1 - 13.28141 124.76970 218.88869 15.24016 110 0 1 - 13.20681 126.14310 226.06575 15.74312 110 0 1 - 8.97414 126.14310 230.85212 11.38031 110 0 1 - 13.47471 127.51650 238.03393 16.58139 110 0 1 - 13.58004 128.88990 247.61307 17.25201 110 0 1 - 13.68889 130.26330 257.19585 17.92263 110 0 1 - 13.79970 131.63670 266.78180 18.59324 110 0 1 - 13.74325 133.01010 273.97304 19.09621 110 0 1 + 48.74332 66.90000 84.51945 5.13458 220 58 2 + 51.54291 67.48860 88.29387 5.36388 220 58 2 + 54.53105 68.07720 93.32642 5.66961 220 58 2 + 57.37776 68.66580 98.35898 5.97534 220 58 2 + 60.08821 69.25440 103.39154 6.28107 220 58 2 + 62.33242 69.84300 107.16595 6.51036 220 58 2 + 15.97150 69.84300 62.88631 10.20104 110 25 1 + 21.78133 70.73571 62.76725 10.45829 110 35 1 + 21.47018 71.62842 62.93711 10.80128 110 34 1 + 21.13797 72.52113 63.36356 11.14428 110 33 1 + 20.78666 73.41384 63.95712 11.48728 110 33 1 + 20.41822 74.30655 64.47739 11.74453 110 32 1 + 20.41822 74.30655 64.85531 11.91602 110 31 1 + 20.03455 75.19926 65.45935 12.17327 110 31 1 + 19.63740 76.09197 66.31521 12.51627 110 30 1 + 19.22846 76.98468 67.21959 12.85927 110 29 1 + 18.80944 77.87739 68.16229 13.20226 110 28 1 + 18.84947 78.77010 68.88908 13.45951 110 27 1 + 16.51789 78.77010 43.93101 13.83574 110 38 1 + 14.87131 82.75110 39.79998 12.27314 110 37 1 + 12.69648 86.73210 34.34186 10.18968 110 37 1 + 10.51530 90.71310 28.93258 8.10622 110 36 1 + 8.81958 94.69410 23.56199 6.02276 110 37 1 + 7.67419 98.67510 19.55369 4.46017 110 39 1 + 32.24554 98.67510 40.26142 2.66609 330 80 3 + 33.28396 100.04850 47.59458 3.16905 220 70 2 + 34.81846 101.42190 57.26566 3.83967 220 61 2 + 36.24885 102.79530 66.83887 4.51028 220 54 2 + 37.02842 104.16870 76.34704 5.18090 110 49 1 + 34.79840 105.54210 83.45275 5.68386 110 42 1 + 34.98121 105.54210 88.18188 6.01917 110 40 1 + 32.69372 106.91550 95.26984 6.52214 110 34 1 + 30.45864 108.28890 104.71836 7.19275 110 29 1 + 28.20056 109.66230 114.17154 7.86337 110 25 1 + 25.93549 111.03570 123.63438 8.53399 110 21 1 + 23.58756 112.40910 130.73900 9.03695 110 18 1 + 23.77130 112.40910 135.47972 9.37226 110 18 1 + 21.44503 113.78250 142.59735 9.87522 110 15 1 + 19.23597 115.15590 152.09823 10.54584 110 13 1 + 17.05483 116.52930 161.61132 11.21646 110 11 1 + 14.90418 117.90270 171.13564 11.88707 110 9 1 + 12.83928 119.27610 178.28533 12.39004 110 7 1 + 13.17459 119.27610 183.05493 12.72534 110 7 1 + 13.04047 120.64950 190.21367 13.22831 110 0 1 + 13.09350 122.02290 199.76524 13.89892 110 0 1 + 13.16294 123.39630 209.32386 14.56954 110 0 1 + 13.24574 124.76970 218.88869 15.24016 110 0 1 + 13.17116 126.14310 226.06575 15.74312 110 0 1 + 13.50647 126.14310 230.85212 16.07843 110 0 1 + 13.43905 127.51650 238.03393 16.58139 110 0 1 + 13.54435 128.88990 247.61307 17.25201 110 0 1 + 13.65316 130.26330 257.19585 17.92263 110 0 1 + 13.76391 131.63670 266.78180 18.59324 110 0 1 + 13.70741 133.01010 273.97304 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -12845,10 +12981,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 16.746 'Grind' - -11.09 18.237 'Hydrobiaklei' - -12.00 5.985 'Basisveen' - -12.50 76.148 'Eerste zandlaag' + -10.79 16.745 'Grind' + -11.09 18.265 'Hydrobiaklei' + -12.00 5.900 'Basisveen' + -12.50 76.460 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -12867,7 +13003,7 @@ Layer name -10.79 6.77 'Grind' -11.09 3.88 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 29.23 'Eerste zandlaag' + -12.50 29.35 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -13091,7 +13227,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 127.72423 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 127.71246 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -13116,20 +13252,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.47 : Percentage mobilized resistance left - 15.56 : Percentage mobilized resistance right - 195.98 : Effective left - 275.61 : Effective right + 7.44 : Percentage mobilized resistance left + 15.52 : Percentage mobilized resistance right + 195.25 : Effective left + 274.88 : Effective right 1089.18 : Water pressure left 955.27 : Water pressure right 2624.30 : Max effective resistance left - 1770.89 : Max effective resistance right + 1770.88 : Max effective resistance right -28277.17 : Max moment left --19652.96 : Max moment right --2073.37 : Max mobilized moment left --2363.27 : Max mobilized moment right - 59.17 : Vertical force left - 72.41 : Vertical force right +-19652.89 : Max moment right +-2065.12 : Max mobilized moment left +-2355.07 : Max mobilized moment right + 58.89 : Vertical force left + 72.20 : Vertical force right 7.3 : Max mobilized moment percentage left 12.0 : Max mobilized moment percentage right -2.43 : Level of single support @@ -13138,17 +13274,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --59.17 : Active force -72.41 : Passive force --59.17 : Plugged active force -72.41 : Plugged passive force +-58.89 : Active force +72.20 : Passive force +-58.89 : Plugged active force +72.20 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.24 : Resulting Vertical Force Unplugged -13.24 : Resulting Vertical Force Plugged +13.31 : Resulting Vertical Force Unplugged +13.31 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -13161,192 +13297,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -13.37794 - 0.00000 0.00000 -13.01202 - 0.00000 0.00000 -12.64610 - 0.00000 0.00000 -12.28017 - 0.00000 0.00000 -11.91425 - 0.00000 0.00000 -11.54833 - 0.00000 0.00000 -11.54833 - 0.00000 0.00000 -11.18240 - 0.00000 0.00000 -10.81648 - 0.00000 0.00000 -10.45056 - 0.00000 0.00000 -10.08464 - 0.00000 0.00000 -9.71871 - 0.00000 0.00000 -9.71871 - -0.00339 -0.08476 -9.23082 - -0.02712 -0.33903 -8.74293 - -0.09154 -0.76283 -8.25503 - -0.21698 -1.35613 -7.76710 - -0.42379 -2.11896 -7.27915 - -0.42379 -2.11896 -7.27915 - -0.67297 -2.88414 -6.87248 - -1.00454 -3.76704 -6.46574 - -1.43030 -4.76766 -6.05889 - -1.96200 -5.88600 -5.65188 - -2.61142 -7.12206 -5.24466 - -2.61142 -7.12206 -5.24466 - -3.39034 -8.47584 -4.83719 - -4.31051 -9.94734 -4.42936 - -5.38373 -11.53656 -4.02107 - -6.62175 -13.24350 -3.61219 - -8.03635 -15.06816 -3.20262 - -8.03635 177.77184 -3.20262 - 7.18113 176.10848 -2.84995 - 22.25181 174.35805 -2.49784 - 37.16822 172.52056 -2.14745 - 51.92285 170.59601 -1.79993 - 66.50823 168.58438 -1.45644 - 66.50823 40.86016 -1.45644 - 71.00810 38.05939 -1.00898 - 75.17996 35.10563 -0.57121 - 79.00637 31.99888 -0.14366 - 82.46989 28.73914 0.27317 - 85.55308 25.32641 0.67873 - 85.55424 25.30369 0.67873 - 87.48873 23.16010 0.95637 - 89.27314 21.51462 1.22813 - 90.94019 20.21139 1.49390 - 92.51485 19.20404 1.75356 - 94.01990 18.46154 2.00700 - 94.01957 18.45907 2.00700 - 94.38741 18.32737 2.06938 - 94.75278 18.21193 2.13136 - 95.11601 18.11442 2.19295 - 95.47747 18.03479 2.25413 - 95.83751 17.97126 2.31491 - 95.83747 17.97178 2.31491 - 97.53082 15.90630 2.61275 - 99.02088 13.90540 2.90034 - 100.31401 11.96776 3.17756 - 101.41651 10.09253 3.44426 - 102.33456 8.27843 3.70032 - 102.33434 8.28496 3.70032 - 103.07419 6.51767 3.94561 - 103.63876 4.77710 4.18008 - 104.03026 3.05602 4.40368 - 104.25062 1.35436 4.61638 - 104.30177 -0.32815 4.81813 - 104.30180 -0.32755 4.81813 - 104.18573 -1.99090 5.00891 - 103.90421 -3.63643 5.18876 - 103.45903 -5.26430 5.35771 - 102.85192 -6.87517 5.51581 - 102.08453 -8.46996 5.66312 - 102.08448 -8.46917 5.66312 - 100.74405 -10.67514 5.85131 - 99.09675 -12.85318 6.01877 - 97.14638 -15.00499 6.16589 - 94.89647 -17.13277 6.29308 - 92.35018 -19.23955 6.40074 - 92.35010 -19.23776 6.40074 - 89.81756 -19.69456 6.48365 - 87.23854 -19.94315 6.55062 - 84.64256 -19.95604 6.60212 - 82.05904 -19.75943 6.63860 - 79.51270 -19.38763 6.66052 - 79.51289 -19.38608 6.66052 - 76.93266 -20.55359 6.66831 - 74.14755 -22.21514 6.66245 - 71.17727 -23.40246 6.64347 - 68.08346 -24.11553 6.61188 - 64.92778 -24.35437 6.56821 - 64.92778 -24.35437 6.56821 - 61.28666 -24.35634 6.50376 - 57.64524 -24.35832 6.42493 - 54.00352 -24.36029 6.33258 - 50.36151 -24.36226 6.22755 - 46.71920 -24.36424 6.11071 - 46.71920 -24.36424 6.11071 - 43.06730 -24.55292 5.98288 - 39.34391 -25.42335 5.84493 - 35.43920 -26.82590 5.69780 - 31.31908 -28.30630 5.54239 - 26.97220 -29.85527 5.37963 - 26.97106 -29.84947 5.37963 - 22.38278 -31.54259 5.21050 - 17.53646 -33.30315 5.03614 - 12.50128 -33.53579 4.85769 - 7.62058 -31.53459 4.67629 - 3.10705 -28.83865 4.49307 - 3.10862 -28.82776 4.49307 - -1.00002 -26.09263 4.30920 - -4.68397 -23.17474 4.12558 - -7.92440 -20.15919 3.94295 - -10.70669 -17.04580 3.76209 - -13.01925 -13.89556 3.58375 - -13.01832 -13.88031 3.58375 - -13.04603 -13.83817 3.58139 - -13.07367 -13.79606 3.57902 - -13.10122 -13.75397 3.57666 - -13.12868 -13.71191 3.57429 - -13.15607 -13.66987 3.57193 - -13.15607 -13.66989 3.57193 - -13.66374 -13.05258 3.52714 - -14.14827 -12.45157 3.48255 - -14.61027 -11.86679 3.43818 - -15.05035 -11.29815 3.39403 - -15.46913 -10.74558 3.35011 - -15.46906 -10.74621 3.35011 - -16.65858 -9.10543 3.21299 - -17.66063 -7.62120 3.07839 - -18.49381 -6.29050 2.94644 - -19.17637 -5.11020 2.81726 - -19.72615 -4.07711 2.69099 - -19.72621 -4.07788 2.69099 - -19.95013 -3.44783 2.62897 - -20.14402 -3.02100 2.56771 - -20.31335 -2.62923 2.50721 - -20.46022 -2.27210 2.44748 - -20.58668 -1.94917 2.38851 - -20.58666 -1.94959 2.38851 - -20.75095 -1.63643 2.30058 - -20.88339 -1.28686 2.21445 - -20.98742 -1.01176 2.13013 - -21.06974 -0.80954 2.04763 - -21.13692 -0.67864 1.96697 - -21.13702 -0.67650 1.96697 - -21.14221 0.25945 1.88814 - -21.11840 0.25261 1.81116 - -21.09825 0.17928 1.73601 - -21.08774 0.04108 1.66269 - -21.09270 -0.16043 1.59120 - -21.09269 -0.16091 1.59120 - -21.16577 -1.30676 1.51476 - -21.35525 -2.48895 1.44053 - -21.66473 -3.70628 1.36856 - -22.09764 -4.95764 1.29887 - -22.65736 -6.24204 1.23151 - -22.65864 -6.21642 1.23151 - -23.31308 -3.17048 1.14124 - -23.55970 -0.41003 1.05576 - -23.44353 2.01534 0.97507 - -23.01014 4.12488 0.89915 - -22.30241 5.93768 0.82796 - -22.30228 5.93097 0.82796 - -21.34520 7.63915 0.76143 - -20.18350 8.91479 0.69929 - -18.86037 9.94808 0.64127 - -17.40860 10.75512 0.58711 - -15.85880 11.35085 0.53653 - -15.85892 11.34536 0.53653 - -14.37893 10.26010 0.48924 - -12.92547 10.47367 0.44491 - -11.45439 10.51375 0.40323 - -9.98925 10.39044 0.36391 - -8.55228 10.11259 0.32665 - -8.55239 10.10960 0.32665 - -7.16509 9.68505 0.29114 - -5.84713 9.12011 0.25710 - -4.61776 8.42027 0.22428 - -3.49554 7.58995 0.19242 - -2.49851 6.63249 0.16129 - -2.49858 6.63154 0.16129 - -1.64446 5.54951 0.13064 - -0.95046 4.34440 0.10031 - -0.43372 3.01739 0.07022 - -0.11125 1.56919 0.04026 - 0.00001 0.00006 0.01031 + 0.00000 0.00000 -13.39028 + 0.00000 0.00000 -13.02398 + 0.00000 0.00000 -12.65767 + 0.00000 0.00000 -12.29136 + 0.00000 0.00000 -11.92506 + 0.00000 0.00000 -11.55875 + 0.00000 0.00000 -11.55875 + 0.00000 0.00000 -11.19245 + 0.00000 0.00000 -10.82614 + 0.00000 0.00000 -10.45983 + 0.00000 0.00000 -10.09353 + 0.00000 0.00000 -9.72722 + 0.00000 0.00000 -9.72722 + -0.00339 -0.08476 -9.23882 + -0.02712 -0.33903 -8.75042 + -0.09154 -0.76283 -8.26200 + -0.21698 -1.35613 -7.77357 + -0.42379 -2.11896 -7.28510 + -0.42379 -2.11896 -7.28510 + -0.67297 -2.88414 -6.87801 + -1.00454 -3.76704 -6.47085 + -1.43030 -4.76766 -6.06357 + -1.96200 -5.88600 -5.65613 + -2.61142 -7.12206 -5.24849 + -2.61142 -7.12206 -5.24849 + -3.39034 -8.47584 -4.84059 + -4.31051 -9.94734 -4.43234 + -5.38373 -11.53656 -4.02361 + -6.62175 -13.24350 -3.61431 + -8.03635 -15.06816 -3.20432 + -8.03635 177.77184 -3.20432 + 7.18113 176.10848 -2.85128 + 22.25181 174.35805 -2.49880 + 37.16822 172.52056 -2.14805 + 51.92285 170.59601 -1.80016 + 66.50823 168.58438 -1.45631 + 66.50823 40.87192 -1.45631 + 71.00944 38.07115 -1.00836 + 75.18264 35.11739 -0.57011 + 79.01039 32.01064 -0.14207 + 82.47525 28.75090 0.27524 + 85.55978 25.33818 0.68129 + 85.56095 25.31542 0.68129 + 87.49639 23.17226 0.95927 + 89.28182 21.52812 1.23136 + 90.95003 20.22685 1.49747 + 92.52601 19.22165 1.75747 + 94.03256 18.48150 2.01125 + 94.03223 18.47904 2.01125 + 94.40048 18.34794 2.07371 + 94.76626 18.23314 2.13578 + 95.12992 18.13627 2.19744 + 95.49183 18.05729 2.25871 + 95.85232 17.99443 2.31958 + 95.85228 17.99495 2.31958 + 97.54801 15.93064 2.61783 + 99.04056 13.93101 2.90584 + 100.33632 11.99474 3.18347 + 101.44159 10.12097 3.45059 + 102.36256 8.30844 3.70705 + 102.36234 8.31498 3.70705 + 103.10526 6.54884 3.95275 + 103.67299 4.80898 4.18762 + 104.06771 3.08864 4.41162 + 104.29136 1.38775 4.62471 + 104.34590 -0.29394 4.82686 + 104.34592 -0.29333 4.82686 + 104.23329 -1.95626 5.01802 + 103.95528 -3.60089 5.19825 + 103.51370 -5.22784 5.36757 + 102.91028 -6.83774 5.52605 + 102.14669 -8.43153 5.67372 + 102.14664 -8.43074 5.67372 + 100.81169 -10.63525 5.86241 + 99.17008 -12.81177 6.03035 + 97.22562 -14.96199 6.17794 + 94.98184 -17.08812 6.30559 + 92.44193 -19.19319 6.41368 + 92.44184 -19.19140 6.41368 + 89.91003 -19.70837 6.49697 + 87.32948 -19.95274 6.56432 + 84.73253 -19.96131 6.61617 + 82.14856 -19.76160 6.65299 + 79.60205 -19.38798 6.67523 + 79.60225 -19.38643 6.67523 + 77.02197 -20.55394 6.68333 + 74.23682 -22.21549 6.67777 + 71.26649 -23.40281 6.65906 + 68.17264 -24.11588 6.62773 + 65.01691 -24.35472 6.58430 + 65.01691 -24.35472 6.58430 + 61.37573 -24.35669 6.52012 + 57.73426 -24.35867 6.44153 + 54.09249 -24.36064 6.34939 + 50.45043 -24.36261 6.24456 + 46.80807 -24.36459 6.12790 + 46.80807 -24.36459 6.12790 + 43.15611 -24.55327 6.00023 + 39.43248 -25.42738 5.86242 + 35.52663 -26.83728 5.71539 + 31.40444 -28.32135 5.56008 + 27.05531 -29.87032 5.39739 + 27.05417 -29.86452 5.39739 + 22.46364 -31.55764 5.22832 + 17.61507 -33.31820 5.05400 + 12.57775 -33.54844 4.87557 + 7.69565 -31.54002 4.69416 + 3.18203 -28.83447 4.51093 + 3.18359 -28.82357 4.51093 + -0.91279 -25.96942 4.32702 + -4.57761 -23.04196 4.14334 + -7.79747 -20.01687 3.96064 + -10.55778 -16.89399 3.77966 + -12.84671 -13.72964 3.60118 + -12.84577 -13.71438 3.60118 + -12.87316 -13.67199 3.59881 + -12.90046 -13.62962 3.59644 + -12.92767 -13.58729 3.59407 + -12.95481 -13.54497 3.59171 + -12.98185 -13.50269 3.58934 + -12.98185 -13.50270 3.58934 + -13.48305 -12.87904 3.54451 + -13.96087 -12.27171 3.49987 + -14.41591 -11.68062 3.45545 + -14.84880 -11.10569 3.41125 + -15.26015 -10.54684 3.36727 + -15.26008 -10.54747 3.36727 + -16.42457 -8.88702 3.22996 + -17.39924 -7.38338 3.09513 + -18.20273 -6.03356 2.96290 + -18.85333 -4.83448 2.83341 + -19.36891 -3.78300 2.70677 + -19.36898 -3.78375 2.70677 + -19.58168 -3.31236 2.64455 + -19.76717 -2.87662 2.58307 + -19.92758 -2.47607 2.52234 + -20.06500 -2.11029 2.46236 + -20.18150 -1.77886 2.40314 + -20.18148 -1.77927 2.40314 + -20.32287 -1.34103 2.31478 + -20.42787 -0.97925 2.22819 + -20.50336 -0.69236 2.14337 + -20.55610 -0.47881 2.06033 + -20.59268 -0.33708 1.97908 + -20.59268 -0.33773 1.97908 + -20.61963 -0.26616 1.89962 + -20.64321 -0.26327 1.82195 + -20.66958 -0.32748 1.74608 + -20.70480 -0.45721 1.67201 + -20.75474 -0.65092 1.59973 + -20.75474 -0.65147 1.59973 + -20.87668 -1.79345 1.52238 + -21.11466 -2.97221 1.44722 + -21.47231 -4.18655 1.37429 + -21.95312 -5.43540 1.30362 + -22.56050 -6.71776 1.23526 + -22.56181 -6.69168 1.23526 + -23.28222 -3.63722 1.14358 + -23.59365 -0.87016 1.05670 + -23.54176 1.55613 0.97460 + -23.17293 3.66096 0.89728 + -22.53080 5.46351 0.82475 + -22.53066 5.45674 0.82475 + -21.65715 6.97634 0.75690 + -20.58964 8.23123 0.69352 + -19.36394 9.23893 0.63434 + -18.01351 10.01592 0.57913 + -16.56953 10.57759 0.52762 + -16.56965 10.57190 0.52762 + -15.06205 10.93284 0.47954 + -13.51722 11.10601 0.43456 + -11.96058 11.10331 0.39236 + -10.41600 10.93533 0.35262 + -8.90597 10.61128 0.31503 + -8.90609 10.60817 0.31503 + -7.45229 10.13622 0.27926 + -6.07454 9.52295 0.24501 + -4.79220 8.77406 0.21204 + -3.62392 7.89414 0.18007 + -2.58779 6.88667 0.14884 + -2.58786 6.88569 0.14884 + -1.70169 5.75332 0.11811 + -0.98269 4.49758 0.08773 + -0.44806 3.11972 0.05758 + -0.11484 1.62046 0.02757 + 0.00001 0.00007 -0.00243 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -13674,7 +13810,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -13686,7 +13822,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -13697,17 +13833,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -13716,7 +13852,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -13746,13 +13882,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -13853,47 +13989,47 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00340 0.00000 0.00340 0.00340 402 100 P - 7.13544 0.00000 7.80254 0.68000 330 91 3 - 11.95004 0.00000 15.60507 1.36000 220 77 2 - 15.83527 0.00000 23.40761 2.04000 220 68 2 - 19.68389 0.00000 31.21015 2.72000 220 63 2 - 22.92254 0.00000 37.06205 3.23000 220 62 2 - 23.63836 0.00000 39.50034 3.44250 220 60 2 - 24.44212 0.00000 40.96332 3.57000 220 60 2 - 25.38667 0.00000 42.91395 3.74000 220 59 2 - 26.32882 0.00000 44.86459 3.91000 220 59 2 - 27.26858 0.00000 46.81522 4.08000 220 58 2 - 28.06278 0.00000 48.27820 4.20750 220 58 2 - 12.92515 0.00000 20.56677 6.30726 220 63 2 - 13.47212 0.98100 20.32861 6.32894 220 66 2 - 14.00157 1.96200 20.08785 6.35785 220 70 2 - 14.52645 2.94300 19.91182 6.38676 220 73 2 - 15.04161 3.92400 19.78100 6.41566 220 76 2 - 15.54536 4.90500 19.70421 6.43734 220 79 2 - 15.54207 4.90500 19.66214 6.45179 220 79 2 - 15.82514 5.88600 19.61027 6.47347 330 81 3 - 15.98743 6.86700 19.55671 6.50238 330 82 3 - 16.14993 7.84800 19.51850 6.53129 330 83 3 - 16.31092 8.82900 19.49272 6.56019 330 84 3 - 16.46923 9.81000 19.47992 6.58187 330 85 3 - 16.47612 9.81000 19.47440 6.63230 330 85 3 - 16.62339 10.79100 19.47010 6.61800 330 85 3 - 16.77312 11.77200 19.47023 6.64691 330 86 3 - 16.91768 12.75300 19.47646 6.67582 330 87 3 - 17.05661 13.73400 19.48795 6.70472 330 88 3 - 17.18547 14.71500 19.49947 6.72640 330 88 3 - 17.19534 14.71500 19.51051 6.74375 330 88 3 - 17.36512 16.08840 19.53319 6.77410 330 89 3 - 17.52780 17.46180 19.56875 6.81457 330 90 3 - 17.67743 18.83520 19.60984 6.85503 330 90 3 - 17.81385 20.20860 19.65566 6.89550 330 91 3 - 17.92748 21.58200 19.69261 6.92585 330 91 3 - 26.91088 21.58200 40.65119 7.89320 220 66 2 - 25.01476 25.39730 37.49247 5.34869 220 67 2 - 23.50021 29.21260 33.28909 4.15339 220 71 2 - 21.95647 33.02790 29.09277 2.95808 220 75 2 - 20.10622 36.84320 24.90135 1.76278 330 81 3 - 18.12248 40.65850 21.76001 0.86630 330 83 3 + 7.14413 0.00000 7.80254 0.68000 330 92 3 + 11.96944 0.00000 15.60507 1.36000 220 77 2 + 15.85670 0.00000 23.40761 2.04000 220 68 2 + 19.70734 0.00000 31.21015 2.72000 220 63 2 + 22.94801 0.00000 37.06205 3.23000 220 62 2 + 23.66383 0.00000 39.50034 3.44250 220 60 2 + 24.46809 0.00000 40.96332 3.57000 220 60 2 + 25.41314 0.00000 42.91395 3.74000 220 59 2 + 26.35580 0.00000 44.86459 3.91000 220 59 2 + 27.29607 0.00000 46.81522 4.08000 220 58 2 + 28.09076 0.00000 48.27820 4.20750 220 58 2 + 12.93448 0.00000 20.56677 6.30726 220 63 2 + 13.48228 0.98100 20.32861 6.32894 220 66 2 + 14.01256 1.96200 20.08785 6.35785 220 70 2 + 14.53827 2.94300 19.91182 6.38676 220 73 2 + 15.05425 3.92400 19.78100 6.41566 220 76 2 + 15.55883 4.90500 19.70421 6.43734 220 79 2 + 15.55554 4.90500 19.66214 6.45179 220 79 2 + 15.83085 5.88600 19.61027 6.47347 330 81 3 + 15.99346 6.86700 19.55671 6.50238 330 82 3 + 16.15628 7.84800 19.51850 6.53129 330 83 3 + 16.31759 8.82900 19.49272 6.56019 330 84 3 + 16.47621 9.81000 19.47992 6.58187 330 85 3 + 16.47590 9.81000 19.47440 6.59633 330 85 3 + 16.63068 10.79100 19.47010 6.61800 330 85 3 + 16.78071 11.77200 19.47023 6.64691 330 86 3 + 16.92557 12.75300 19.47646 6.67582 330 87 3 + 17.06480 13.73400 19.48795 6.70472 330 88 3 + 17.19395 14.71500 19.49947 6.72640 330 88 3 + 17.20382 14.71500 19.51051 6.74375 330 88 3 + 17.37399 16.08840 19.53319 6.77410 330 89 3 + 17.53707 17.46180 19.56875 6.81457 330 90 3 + 17.68707 18.83520 19.60984 6.85503 330 90 3 + 17.82385 20.20860 19.65566 6.89550 330 91 3 + 17.93783 21.58200 19.69261 6.92585 330 91 3 + 26.11274 21.58200 40.65119 6.24517 220 64 2 + 25.04141 25.39730 37.49247 5.34869 220 67 2 + 23.52760 29.21260 33.28909 4.15339 220 71 2 + 21.98458 33.02790 29.09277 2.95808 220 76 2 + 20.11773 36.84320 24.90135 1.76278 330 81 3 + 18.13425 40.65850 21.76001 0.86630 330 83 3 12.41397 40.65850 12.41397 0.26865 402 100 P 0.00000 44.47380 0.00000 0.00000 402 0 P 0.00000 48.28910 0.00000 0.00000 402 0 P @@ -13908,94 +14044,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 67.06798 0.00000 0.00000 402 0 P 0.00000 68.53457 0.00000 0.00000 402 0 P - 0.04098 70.00117 0.04098 0.04098 402 100 P - 0.04098 71.46776 0.04098 0.04098 402 100 P + 0.00000 70.00117 0.00000 0.00000 402 0 P + 0.00000 71.46776 0.00000 0.00000 402 0 P 0.00000 72.93436 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P 0.00000 74.40095 0.00000 0.00000 402 0 P - 0.00000 75.86755 0.00000 0.00000 402 100 P - 0.00000 77.33414 0.00000 0.00000 402 100 P - 17.84529 78.80074 17.96911 4.49986 330 99 3 - 25.71521 80.26733 36.36631 5.18955 220 71 2 - 26.30062 81.73392 39.87198 5.70681 220 66 2 - 25.83517 81.73392 42.19987 3.61198 220 61 2 - 27.63222 83.20052 45.68064 6.56892 220 60 2 - 28.58289 84.66711 50.30746 7.25860 220 57 2 - 29.53363 86.13371 54.92251 7.94829 220 54 2 - 30.48794 87.60031 59.53073 8.63797 220 51 2 - 30.65774 89.06690 62.98476 9.15524 110 49 1 - 30.83247 89.06690 64.15130 9.32997 110 48 1 - 30.82520 89.08652 64.19752 9.33689 110 48 1 - 30.82024 89.10614 64.25913 9.34611 110 48 1 - 30.81528 89.12576 64.32073 9.35534 110 48 1 - 30.81032 89.14538 64.38231 9.36457 110 48 1 - 30.80306 89.16500 64.42851 9.37149 110 48 1 - 25.67657 89.16500 58.82727 11.38885 110 44 1 - 25.60482 89.53778 59.19268 11.49627 110 43 1 - 25.56970 89.91056 59.68017 11.63950 110 43 1 - 25.53545 90.28334 60.16799 11.78273 110 42 1 - 25.50207 90.65612 60.65612 11.92596 110 42 1 - 25.43381 91.02890 61.02242 12.03338 110 42 1 - 25.58269 91.02890 61.53041 12.18226 110 42 1 - 25.37345 92.20610 62.68904 12.52149 110 40 1 - 25.28736 93.38330 64.23606 12.97380 110 39 1 - 25.21186 94.56050 65.78549 13.42610 110 38 1 - 25.14746 95.73770 67.33709 13.87840 110 37 1 - 24.98159 96.91490 68.50203 14.21763 110 36 1 - 25.15120 96.91490 69.08491 14.38724 110 36 1 - 25.07275 97.50350 69.66807 14.55686 110 36 1 - 25.05386 98.09210 70.44596 14.78301 110 36 1 - 25.03800 98.68070 71.22427 15.00916 110 35 1 - 25.02522 99.26930 72.00296 15.23531 110 35 1 - 24.95899 99.85790 72.58721 15.40493 110 34 1 - 23.04102 99.85790 73.07750 13.48696 110 32 1 - 25.00678 100.75061 73.96428 15.80446 110 34 1 - 25.00525 101.64332 75.14728 16.14746 110 33 1 - 25.01097 102.53603 76.33100 16.49046 110 33 1 - 25.02399 103.42874 77.51539 16.83345 110 32 1 - 24.95858 104.32145 78.40407 17.09070 110 32 1 - 41.14989 104.32145 78.99672 34.93354 220 52 2 - 25.07203 105.21416 79.88599 17.51945 110 31 1 - 25.10707 106.10687 81.07214 17.86244 110 31 1 - 25.14946 106.99958 82.25880 18.20544 110 31 1 - 25.19919 107.89229 83.44594 18.54844 110 30 1 - 25.17050 108.78500 84.33659 18.80568 110 30 1 - 23.79632 108.78500 56.86688 20.61391 110 42 1 - 25.41615 106.76600 61.08371 22.38663 110 42 1 - 27.63132 104.74700 66.69564 24.75026 110 41 1 - 29.85100 102.72800 72.29483 27.11388 110 41 1 - 32.07525 100.70900 77.88124 29.47751 110 41 1 - 33.71324 98.69000 82.06310 31.25023 110 41 1 - 35.14039 98.69000 360.69726 20.36232 110 10 1 - 34.56011 100.06340 341.63118 20.86529 110 10 1 - 34.20508 101.43680 336.23428 21.53590 110 10 1 - 33.90741 102.81020 338.27314 22.20652 110 10 1 - 33.66689 104.18360 343.27433 22.87714 110 10 1 - 33.31565 105.55700 348.03239 23.38010 110 10 1 - 33.65096 105.55700 351.55313 23.71541 110 10 1 - 33.35552 106.93040 357.19802 24.21837 110 9 1 - 33.28044 108.30380 365.16698 24.88899 110 9 1 - 33.25485 109.67720 373.51597 25.55961 110 9 1 - 33.27551 111.05060 382.13262 26.23022 110 9 1 - 33.17157 112.42400 388.72127 26.73319 110 9 1 - 33.50688 112.42400 393.16743 27.06849 110 9 1 - 33.44234 113.79740 399.90218 27.57146 110 8 1 - 33.58096 115.17080 408.97197 28.24207 110 8 1 - 33.75148 116.54420 418.12917 28.91269 110 8 1 - 33.95028 117.91760 427.35573 29.58331 110 8 1 - 34.00612 119.29100 434.31142 30.08627 110 8 1 - 34.34143 119.29100 438.96483 30.42158 110 8 1 - 34.41823 120.66440 445.96600 30.92454 110 8 1 - 34.68034 122.03780 455.33132 31.59516 110 8 1 - 34.95710 123.41120 464.72780 32.26578 110 8 1 - 35.24549 124.78460 474.15039 32.93639 110 7 1 - 35.37486 126.15800 481.23140 33.43936 110 7 1 - 35.71017 126.15800 485.95872 33.77467 110 7 1 - 35.84526 127.53140 493.05853 34.27763 110 7 1 - 36.15202 128.90480 502.53810 34.94825 110 7 1 - 36.46154 130.27820 512.03155 35.61886 110 7 1 - 36.77255 131.65160 521.53703 36.28948 110 7 1 - 36.91617 133.02500 528.67279 36.79244 110 7 1 + 0.00000 75.86755 0.00000 0.00000 402 0 P + 0.00000 77.33414 0.00000 0.00000 402 0 P + 17.87210 78.80074 17.96911 4.49986 330 99 3 + 25.76884 80.26733 36.36631 5.18955 220 71 2 + 26.35418 81.73392 39.87198 5.70681 220 66 2 + 27.10858 81.73392 42.19987 6.05165 220 64 2 + 27.68568 83.20052 45.68064 6.56892 220 61 2 + 28.63619 84.66711 50.30746 7.25860 220 57 2 + 29.58668 86.13371 54.92251 7.94829 220 54 2 + 30.54066 87.60031 59.53073 8.63797 220 51 2 + 30.76229 89.06690 62.98476 9.15524 110 49 1 + 30.93702 89.06690 64.15130 9.32997 110 48 1 + 30.92974 89.08652 64.19752 9.33689 110 48 1 + 30.92476 89.10614 64.25913 9.34611 110 48 1 + 30.91979 89.12576 64.32073 9.35534 110 48 1 + 30.91482 89.14538 64.38231 9.36457 110 48 1 + 30.90755 89.16500 64.42851 9.37149 110 48 1 + 25.74622 89.16500 58.82727 11.38885 110 44 1 + 25.67430 89.53778 59.19268 11.49627 110 43 1 + 25.63900 89.91056 59.68017 11.63950 110 43 1 + 25.60454 90.28334 60.16799 11.78273 110 43 1 + 25.57096 90.65612 60.65612 11.92596 110 42 1 + 25.50247 91.02890 61.02242 12.03338 110 42 1 + 25.65135 91.02890 61.53041 12.18226 110 42 1 + 25.44132 92.20610 62.68904 12.52149 110 41 1 + 25.35430 93.38330 64.23606 12.97380 110 39 1 + 25.27771 94.56050 65.78549 13.42610 110 38 1 + 25.21205 95.73770 67.33709 13.87840 110 37 1 + 25.04471 96.91490 68.50203 14.21763 110 37 1 + 25.21433 96.91490 69.08491 14.38724 110 36 1 + 25.13507 97.50350 69.66807 14.55686 110 36 1 + 25.11531 98.09210 70.44596 14.78301 110 36 1 + 25.09853 98.68070 71.22427 15.00916 110 35 1 + 25.08477 99.26930 72.00296 15.23531 110 35 1 + 25.01750 99.85790 72.58721 15.40493 110 34 1 + 25.15978 99.85790 73.07750 15.54721 110 34 1 + 25.06359 100.75061 73.96428 15.80446 110 34 1 + 25.06022 101.64332 75.14728 16.14746 110 33 1 + 25.06394 102.53603 76.33100 16.49046 110 33 1 + 25.07478 103.42874 77.51539 16.83345 110 32 1 + 25.00702 104.32145 78.40407 17.09070 110 32 1 + 25.17852 104.32145 78.99672 17.26220 110 32 1 + 25.11793 105.21416 79.88599 17.51945 110 31 1 + 25.15026 106.10687 81.07214 17.86244 110 31 1 + 25.18976 106.99958 82.25880 18.20544 110 31 1 + 25.23646 107.89229 83.44594 18.54844 110 30 1 + 25.20461 108.78500 84.33659 18.80568 110 30 1 + 23.81337 108.78500 56.86688 20.61391 110 42 1 + 25.43139 106.76600 61.08371 22.38663 110 42 1 + 27.64470 104.74700 66.69564 24.75026 110 41 1 + 29.86246 102.72800 72.29483 27.11388 110 41 1 + 32.08475 100.70900 77.88124 29.47751 110 41 1 + 33.72075 98.69000 82.06310 31.25023 110 41 1 + 35.18545 98.69000 360.69726 20.36232 110 10 1 + 34.58827 100.06340 341.63118 20.86529 110 10 1 + 34.21626 101.43680 336.23428 21.53590 110 10 1 + 33.90170 102.81020 338.27314 22.20652 110 10 1 + 33.64454 104.18360 343.27433 22.87714 110 10 1 + 33.27704 105.55700 348.03239 23.38010 110 10 1 + 33.61235 105.55700 351.55313 23.71541 110 10 1 + 33.30123 106.93040 357.19802 24.21837 110 9 1 + 33.21123 108.30380 365.16698 24.88899 110 9 1 + 33.17173 109.67720 373.51597 25.55961 110 9 1 + 33.17975 111.05060 382.13262 26.23022 110 9 1 + 33.06464 112.42400 388.72127 26.73319 110 9 1 + 33.39995 112.42400 393.16743 27.06849 110 8 1 + 33.32598 113.79740 399.90218 27.57146 110 8 1 + 33.45682 115.17080 408.97197 28.24207 110 8 1 + 33.62103 116.54420 418.12917 28.91269 110 8 1 + 33.81479 117.91760 427.35573 29.58331 110 8 1 + 33.86663 119.29100 434.31142 30.08627 110 8 1 + 34.20194 119.29100 438.96483 30.42158 110 8 1 + 34.27561 120.66440 445.96600 30.92454 110 8 1 + 34.53529 122.03780 455.33132 31.59516 110 8 1 + 34.81020 123.41120 464.72780 32.26578 110 7 1 + 35.09719 124.78460 474.15039 32.93639 110 7 1 + 35.22547 126.15800 481.23140 33.43936 110 7 1 + 35.56078 126.15800 485.95872 33.77467 110 7 1 + 35.69499 127.53140 493.05853 34.27763 110 7 1 + 36.00100 128.90480 502.53810 34.94825 110 7 1 + 36.30986 130.27820 512.03155 35.61886 110 7 1 + 36.62027 131.65160 521.53703 36.28948 110 7 1 + 36.76329 133.02500 528.67279 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14010,13 +14146,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.871 'Ophooglaag zand' - -3.50 35.888 'Hollandveen' - -5.70 15.509 'Oude Zeeklei' - -7.00 30.399 'Wadzand' - -10.00 50.980 'Hydrobiaklei' - -12.00 14.373 'Basisveen' - -12.50 120.586 'Eerste zandlaag' + -3.00 7.880 'Ophooglaag zand' + -3.50 35.907 'Hollandveen' + -5.70 15.470 'Oude Zeeklei' + -7.00 30.539 'Wadzand' + -10.00 50.459 'Hydrobiaklei' + -12.00 14.379 'Basisveen' + -12.50 120.240 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14033,13 +14169,13 @@ Layer name [DATA] 0.80 0.00 'Ophooglaag zand' -1.00 0.00 'Geulse klei' - -3.00 2.86 'Ophooglaag zand' + -3.00 2.87 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.30 'Oude Zeeklei' - -7.00 9.12 'Wadzand' - -10.00 10.84 'Hydrobiaklei' + -5.70 3.29 'Oude Zeeklei' + -7.00 9.16 'Wadzand' + -10.00 10.73 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 46.29 'Eerste zandlaag' + -12.50 46.16 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14342,7 +14478,7 @@ Lambda passive -6.74000 11.10450 44.38498 0.00000 0.68728 0.00000 3.99703 -6.87000 12.43389 47.59701 0.00000 0.68823 0.00000 3.82801 -7.00000 13.76322 50.00567 0.00000 0.68902 0.00000 3.72318 - -7.00000 13.76322 56.56939 0.00000 0.56962 0.00000 4.02302 + -7.00000 13.76322 56.56939 0.00000 0.56701 0.00000 4.02302 -7.14950 14.95606 59.17756 0.00000 0.56756 0.00000 3.95676 -7.29900 16.14883 63.03696 0.00000 0.56807 0.00000 3.90350 -7.44850 17.34153 67.15179 0.00000 0.56852 0.00000 3.87231 @@ -14354,7 +14490,7 @@ Lambda passive -8.19600 23.30431 90.80343 8.05472 0.57035 0.34563 3.89642 -8.34550 24.49678 95.35621 8.46813 0.57065 0.34568 3.89260 -8.49500 25.68924 98.76054 8.77815 0.57093 0.34572 3.88957 - -8.49500 25.68924 101.03367 9.25368 0.63815 0.35608 3.88780 + -8.49500 25.68924 101.03367 9.25368 0.57093 0.35608 3.88780 -8.64450 26.88169 104.44831 9.59969 0.57119 0.35711 3.88548 -8.79400 28.07413 109.00806 10.00551 0.57144 0.35640 3.88286 -8.94350 29.26658 113.57458 10.41135 0.57167 0.35574 3.88069 @@ -14384,7 +14520,7 @@ Lambda passive -10.55000 40.65134 118.41340 12.88262 0.69551 0.31691 2.91290 -10.67000 41.29667 119.90552 13.18295 0.69559 0.31923 2.90352 -10.79000 41.94202 121.02749 13.40817 0.69568 0.32092 2.89673 - -10.79000 41.94202 121.58944 13.52077 0.58483 0.32175 2.89342 + -10.79000 41.94202 121.58944 13.52077 0.69568 0.32175 2.89342 -10.85000 42.26470 122.15203 13.63340 0.69572 0.32257 2.89017 -10.91000 42.58739 122.90301 13.78416 0.69576 0.32367 2.88590 -10.97000 42.91008 123.65496 13.93510 0.69580 0.32475 2.88172 @@ -14414,13 +14550,13 @@ Lambda passive -12.92000 68.66611 486.65498 17.40762 0.46790 0.25351 7.08727 -13.06000 70.09142 491.41455 17.79637 0.46796 0.25390 7.01105 -13.20000 71.51677 495.92032 18.08658 0.46802 0.25417 6.96905 - -13.20000 71.51677 499.27697 18.27940 0.43937 0.25433 6.94665 + -13.20000 71.51677 499.27697 18.27940 0.46802 0.25433 6.94665 -13.34000 72.94213 504.68261 18.56772 0.46808 0.25455 6.91895 -13.48000 74.36752 512.35669 18.94839 0.46813 0.25479 6.88952 -13.62000 75.79293 520.33863 19.24842 0.46818 0.25396 6.86527 -13.76000 77.21836 528.43529 19.51523 0.46823 0.25273 6.84339 -13.90000 78.64381 534.65323 19.78051 0.46828 0.25267 6.82936 - -13.90000 78.64381 538.86276 19.97027 0.69187 0.25279 6.82103 + -13.90000 78.64381 538.86276 19.97027 0.46828 0.25279 6.82103 -14.04000 80.06929 545.25490 20.25436 0.46833 0.25296 6.80979 -14.18000 81.49478 553.86165 20.63172 0.46837 0.25317 6.79628 -14.32000 82.92030 562.56811 21.00738 0.46842 0.25334 6.78444 @@ -14544,7 +14680,7 @@ Status character 0.00000 58.19540 44.38498 7.63186 1 0 A 0.00000 58.97070 47.59701 8.55736 1 0 A 0.00000 59.74600 50.00567 9.25421 1 0 A - 0.00000 59.74600 56.56939 8.00965 1 0 A + 0.00000 59.74600 56.56939 7.97293 1 0 A 0.00000 61.21260 59.17756 8.48851 1 0 A 0.00000 62.67919 63.03696 9.17359 1 0 A 0.00000 64.14579 67.15179 9.85907 1 0 A @@ -14556,7 +14692,7 @@ Status character 8.05472 71.47876 90.80343 13.29161 1 0 A 8.46813 72.94536 95.35621 13.97900 1 0 A 8.77815 74.41195 98.76054 14.49644 1 0 A - 9.25368 74.41195 101.03367 16.58377 1 0 A + 9.25368 74.41195 101.03367 14.83684 1 0 A 9.59969 75.87855 104.44831 15.35451 1 0 A 10.00551 77.34514 109.00806 16.04260 1 0 A 10.41135 78.81174 113.57458 16.73088 1 0 A @@ -14574,72 +14710,72 @@ Status character 13.27311 89.13676 146.09646 21.58092 1 0 A 13.27857 89.15638 146.15875 21.59015 1 0 A 13.28266 89.17600 146.20565 21.59708 1 0 A - 11.94874 89.17600 111.76003 26.23646 110 0 1 - 12.23556 89.54878 112.10767 26.34410 110 0 1 - 12.55705 89.92156 112.57177 26.48726 110 0 1 - 12.87770 90.29434 113.03656 26.63042 110 0 1 - 13.19747 90.66712 113.50202 26.77359 110 0 1 - 13.48082 91.03990 113.85153 26.88125 110 0 1 - 13.62849 91.03990 114.33661 27.02892 110 0 1 - 14.51697 92.21710 115.44439 27.36892 110 0 1 - 15.50758 93.39430 116.92621 27.82114 110 0 1 - 16.48765 94.57150 118.41340 28.27341 110 0 1 - 17.45667 95.74870 119.90552 28.72573 110 0 1 - 18.30189 96.92590 121.02749 29.06585 110 0 1 - 13.81218 96.92590 121.58944 24.57613 110 0 1 - 18.88839 97.51450 122.15203 29.40428 110 0 1 - 19.35964 98.10310 122.90301 29.63048 110 0 1 - 19.82786 98.69170 123.65496 29.85670 110 0 1 - 20.29302 99.28030 124.40787 30.08292 110 0 1 - 20.69895 99.86890 124.97311 30.25301 110 0 1 - 20.84024 99.86890 125.44772 30.39430 110 0 1 - 21.44997 100.76161 126.30668 30.65229 110 0 1 - 22.13765 101.65432 127.45492 30.99544 110 0 1 - 22.81809 102.54703 128.63081 31.33861 110 0 1 - 23.49126 103.43974 129.81818 31.68179 110 0 1 - 24.07192 104.33245 130.70972 31.93980 110 0 1 - 24.24230 104.33245 131.30460 32.11018 110 0 1 - 24.81563 105.22516 132.19767 32.36821 110 0 1 - 25.46681 106.11787 133.38964 32.71144 110 0 1 - 26.11066 107.01058 134.58301 33.05468 110 0 1 - 26.74718 107.90329 135.77771 33.39793 110 0 1 - 27.29115 108.79600 136.67455 33.65597 110 0 1 - 33.17981 108.79600 96.36922 36.36222 110 0 1 - 35.10817 106.77700 100.67195 38.13768 110 0 1 - 37.62056 104.75800 106.39642 40.50163 110 0 1 - 40.12846 102.73900 112.10591 42.86558 110 0 1 - 42.63180 100.72000 117.80054 45.22955 110 0 1 - 44.54141 98.70100 122.06230 47.00442 110 0 1 + 11.87909 89.17600 111.76003 26.23646 110 0 1 + 12.16608 89.54878 112.10767 26.34410 110 0 1 + 12.48776 89.92156 112.57177 26.48726 110 0 1 + 12.80861 90.29434 113.03656 26.63042 110 0 1 + 13.12859 90.66712 113.50202 26.77359 110 0 1 + 13.41216 91.03990 113.85153 26.88125 110 0 1 + 13.55983 91.03990 114.33661 27.02892 110 0 1 + 14.44910 92.21710 115.44439 27.36892 110 0 1 + 15.44063 93.39430 116.92621 27.82114 110 0 1 + 16.42180 94.57150 118.41340 28.27341 110 0 1 + 17.39208 95.74870 119.90552 28.72573 110 0 1 + 18.23876 96.92590 121.02749 29.06585 110 0 1 + 18.40712 96.92590 121.58944 29.23421 110 0 1 + 18.82607 97.51450 122.15203 29.40428 110 0 1 + 19.29819 98.10310 122.90301 29.63048 110 0 1 + 19.76733 98.69170 123.65496 29.85670 110 0 1 + 20.23347 99.28030 124.40787 30.08292 110 0 1 + 20.64044 99.86890 124.97311 30.25301 110 0 1 + 20.78173 99.86890 125.44772 30.39430 110 0 1 + 21.39316 100.76161 126.30668 30.65229 110 0 1 + 22.08268 101.65432 127.45492 30.99544 110 0 1 + 22.76512 102.54703 128.63081 31.33861 110 0 1 + 23.44046 103.43974 129.81818 31.68179 110 0 1 + 24.02348 104.33245 130.70972 31.93980 110 0 1 + 24.19386 104.33245 131.30460 32.11018 110 0 1 + 24.76972 105.22516 132.19767 32.36821 110 0 1 + 25.42362 106.11787 133.38964 32.71144 110 0 1 + 26.07035 107.01058 134.58301 33.05468 110 0 1 + 26.70991 107.90329 135.77771 33.39793 110 0 1 + 27.25704 108.79600 136.67455 33.65597 110 0 1 + 33.16275 108.79600 96.36922 36.36222 110 0 1 + 35.09292 106.77700 100.67195 38.13768 110 0 1 + 37.60719 104.75800 106.39642 40.50163 110 0 1 + 40.11700 102.73900 112.10591 42.86558 110 0 1 + 42.62230 100.72000 117.80054 45.22955 110 0 1 + 44.53390 98.70100 122.06230 47.00442 110 0 1 16.32529 98.70100 496.34863 30.28234 1 0 A - 17.09199 100.07440 487.13326 30.78681 110 0 1 - 18.78878 101.44780 484.35728 31.45795 110 0 1 - 20.42821 102.82120 486.65498 32.12910 110 0 1 - 22.01051 104.19460 491.41455 32.80027 110 0 1 - 23.36912 105.56800 495.92032 33.30467 110 0 1 - 21.64357 105.56800 499.27697 31.57912 110 0 1 - 25.00547 106.94140 504.68261 34.14263 110 0 1 - 26.42237 108.31480 512.35669 34.81382 110 0 1 - 27.78978 109.68820 520.33863 35.48502 110 0 1 - 29.11094 111.06160 528.43529 36.15623 110 0 1 - 30.22219 112.43500 534.65323 36.66057 110 0 1 - 48.21918 112.43500 538.86276 54.65757 110 0 1 - 31.62779 113.80840 545.25490 37.49867 110 0 1 - 32.83101 115.18180 553.86165 38.16989 110 0 1 - 34.00234 116.55520 562.56811 38.84112 110 0 1 - 35.14538 117.92860 571.36317 39.51236 110 0 1 - 36.09678 119.30200 578.09634 40.01662 110 0 1 - 36.43071 119.30200 582.69734 40.35056 110 0 1 - 37.36114 120.67540 589.62506 40.85483 110 0 1 - 38.44088 122.04880 598.90021 41.52606 110 0 1 - 39.50598 123.42220 608.21488 42.19730 110 0 1 - 40.55945 124.79560 617.56306 42.86854 110 0 1 - 41.43724 126.16900 624.59244 43.37274 110 0 1 - 41.77133 126.16900 629.28734 43.70683 110 0 1 - 42.64339 127.54240 636.34134 44.21102 110 0 1 - 43.67849 128.91580 645.76408 44.88226 110 0 1 - 44.71083 130.28920 655.20535 45.55350 110 0 1 - 45.74167 131.66260 664.66280 46.22474 110 0 1 - 46.60515 133.03600 671.76491 46.72887 110 0 1 + 17.06382 100.07440 487.13326 30.78681 110 0 1 + 18.77759 101.44780 484.35728 31.45795 110 0 1 + 20.43392 102.82120 486.65498 32.12910 110 0 1 + 22.03287 104.19460 491.41455 32.80027 110 0 1 + 23.40773 105.56800 495.92032 33.30467 110 0 1 + 23.74128 105.56800 499.27697 33.63822 110 0 1 + 25.05977 106.94140 504.68261 34.14263 110 0 1 + 26.49158 108.31480 512.35669 34.81382 110 0 1 + 27.87290 109.68820 520.33863 35.48502 110 0 1 + 29.20671 111.06160 528.43529 36.15623 110 0 1 + 30.32911 112.43500 534.65323 36.66057 110 0 1 + 30.66287 112.43500 538.86276 36.99433 110 0 1 + 31.74415 113.80840 545.25490 37.49867 110 0 1 + 32.95514 115.18180 553.86165 38.16989 110 0 1 + 34.13278 116.55520 562.56811 38.84112 110 0 1 + 35.28088 117.92860 571.36317 39.51236 110 0 1 + 36.23627 119.30200 578.09634 40.01662 110 0 1 + 36.57020 119.30200 582.69734 40.35056 110 0 1 + 37.50376 120.67540 589.62506 40.85483 110 0 1 + 38.58593 122.04880 598.90021 41.52606 110 0 1 + 39.65288 123.42220 608.21488 42.19730 110 0 1 + 40.70775 124.79560 617.56306 42.86854 110 0 1 + 41.58663 126.16900 624.59244 43.37274 110 0 1 + 41.92072 126.16900 629.28734 43.70683 110 0 1 + 42.79367 127.54240 636.34134 44.21102 110 0 1 + 43.82951 128.91580 645.76408 44.88226 110 0 1 + 44.86251 130.28920 655.20535 45.55350 110 0 1 + 45.89395 131.66260 664.66280 46.22474 110 0 1 + 46.75802 133.03600 671.76491 46.72887 110 7 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -14657,9 +14793,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 21.489 'Wadzand' - -10.00 39.700 'Hydrobiaklei' - -12.00 19.435 'Basisveen' - -12.50 115.354 'Eerste zandlaag' + -10.00 39.726 'Hydrobiaklei' + -12.00 19.429 'Basisveen' + -12.50 114.611 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -14681,7 +14817,7 @@ Layer name -7.00 -6.45 'Wadzand' -10.00 -8.44 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -44.28 'Eerste zandlaag' + -12.50 -44.00 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -14903,7 +15039,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 125.61073 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 125.60751 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -14928,21 +15064,21 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.98 : Percentage mobilized resistance left - 11.88 : Percentage mobilized resistance right - 108.84 : Effective left - 210.40 : Effective right + 9.95 : Percentage mobilized resistance left + 11.87 : Percentage mobilized resistance right + 108.56 : Effective left + 210.13 : Effective right 1112.88 : Water pressure left 955.27 : Water pressure right 1090.76 : Max effective resistance left - 1770.89 : Max effective resistance right + 1770.88 : Max effective resistance right -13001.37 : Max moment left --19652.96 : Max moment right --1269.34 : Max mobilized moment left --1707.90 : Max mobilized moment right - 38.14 : Vertical force left - 51.52 : Vertical force right - 9.8 : Max mobilized moment percentage left +-19652.89 : Max moment right +-1266.37 : Max mobilized moment left +-1704.93 : Max mobilized moment right + 38.04 : Vertical force left + 51.49 : Vertical force right + 9.7 : Max mobilized moment percentage left 8.7 : Max mobilized moment percentage right -2.43 : Level of single support 7 : Node of single support @@ -14950,17 +15086,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --38.14 : Active force -51.52 : Passive force --38.14 : Plugged active force -51.52 : Plugged passive force +-38.04 : Active force +51.49 : Passive force +-38.04 : Plugged active force +51.49 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.39 : Resulting Vertical Force Unplugged -13.39 : Resulting Vertical Force Plugged +13.45 : Resulting Vertical Force Unplugged +13.45 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -14973,192 +15109,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -12.88135 - 0.00000 0.00000 -12.52994 - 0.00000 0.00000 -12.17853 - 0.00000 0.00000 -11.82712 - 0.00000 0.00000 -11.47571 - 0.00000 0.00000 -11.12430 - 0.00000 0.00000 -11.12430 - 0.00000 0.00000 -10.77290 - 0.00000 0.00000 -10.42149 - 0.00000 0.00000 -10.07008 - 0.00000 0.00000 -9.71867 - 0.00000 0.00000 -9.36726 - 0.00000 0.00000 -9.36726 - -0.00339 -0.08476 -8.89872 - -0.02712 -0.33903 -8.43017 - -0.09154 -0.76283 -7.96162 - -0.21698 -1.35613 -7.49305 - -0.42379 -2.11896 -7.02445 - -0.42379 -2.11896 -7.02445 - -0.67297 -2.88414 -6.63390 - -1.00454 -3.76704 -6.24329 - -1.43030 -4.76766 -5.85257 - -1.96200 -5.88600 -5.46168 - -2.61142 -7.12206 -5.07059 - -2.61142 -7.12206 -5.07059 - -3.39034 -8.47584 -4.67924 - -4.31051 -9.94734 -4.28754 - -5.38373 -11.53656 -3.89537 - -6.62175 -13.24350 -3.50262 - -8.03635 -15.06816 -3.10918 - -8.03635 177.77184 -3.10918 - 7.18113 176.10848 -2.77038 - 22.25181 174.35805 -2.43214 - 37.16822 172.52056 -2.09561 - 51.92285 170.59601 -1.76196 - 66.50823 168.58438 -1.43234 - 66.50823 42.97366 -1.43234 - 71.24904 40.17289 -1.00327 - 75.66184 37.21913 -0.58392 - 79.72919 34.11238 -0.17485 - 83.43365 30.85264 0.22338 - 86.75777 27.43991 0.61023 - 86.75888 27.41831 0.61023 - 88.86221 25.26280 0.87464 - 90.81348 23.57817 1.13307 - 92.64333 22.21631 1.38541 - 94.37577 21.14258 1.63153 - 96.03299 20.32585 1.87131 - 96.03268 20.32356 1.87131 - 96.43762 20.17207 1.93025 - 96.83967 20.03635 1.98879 - 97.23919 19.91806 2.04692 - 97.63651 19.81715 2.10464 - 98.03198 19.73184 2.16195 - 98.03193 19.73238 2.16195 - 99.89944 17.62808 2.44227 - 101.55956 15.58414 2.71211 - 103.01824 13.59917 2.97131 - 104.28133 11.67223 3.21971 - 105.35457 9.80201 3.45717 - 105.35439 9.80820 3.45717 - 106.24398 7.99261 3.68353 - 106.95433 6.21942 3.89875 - 107.48867 4.47039 4.10275 - 107.84899 2.73887 4.29548 - 108.03702 1.02458 4.47689 - 108.03703 1.02510 4.47689 - 108.05456 -0.67200 4.64694 - 107.90316 -2.35330 4.80564 - 107.58442 -4.01898 4.95303 - 107.09986 -5.66975 5.08914 - 106.45093 -7.30659 5.21401 - 106.45088 -7.30576 5.21401 - 105.26900 -9.57425 5.37001 - 103.77119 -11.81921 5.50434 - 101.96063 -14.04245 5.61739 - 99.84021 -16.24630 5.70951 - 97.41242 -18.43394 5.78108 - 97.41234 -18.43209 5.78108 - 94.97006 -19.12660 5.82954 - 92.44460 -19.70179 5.86115 - 89.85394 -20.13046 5.87636 - 87.21682 -20.41742 5.87565 - 84.55236 -20.54396 5.85946 - 84.55254 -20.54431 5.85946 - 81.79036 -22.19080 5.82823 - 78.76031 -24.35935 5.78249 - 75.47410 -26.13167 5.72282 - 71.98325 -27.50775 5.64979 - 68.33926 -28.48758 5.56399 - 68.33925 -28.48761 5.56399 - 64.01316 -29.38658 5.45032 - 59.55267 -30.28555 5.32162 - 54.95778 -31.18453 5.17899 - 50.22849 -32.08350 5.02348 - 45.36481 -32.98247 4.85619 - 45.36481 -32.98247 4.85619 - 40.36673 -33.88145 4.67821 - 35.23426 -34.78042 4.49076 - 29.96739 -35.67939 4.29508 - 24.56612 -36.57837 4.09239 - 19.03046 -37.47734 3.88393 - 19.02908 -37.47034 3.88393 - 13.36007 -38.36931 3.67100 - 7.55666 -39.26828 3.45494 - 1.68776 -38.78458 3.23712 - -3.94721 -36.44024 3.01886 - -9.18190 -33.57461 2.80150 - -9.17992 -33.56245 2.80150 - -13.98340 -30.64843 2.58639 - -18.33895 -27.63709 2.37457 - -22.25198 -24.72775 2.16695 - -25.73738 -21.91541 1.96447 - -28.80999 -19.20950 1.76803 - -28.80914 -19.19503 1.76803 - -28.84750 -19.15921 1.76545 - -28.88578 -19.12341 1.76286 - -28.92399 -19.08763 1.76028 - -28.96213 -19.05187 1.75771 - -29.00020 -19.01612 1.75513 - -29.00020 -19.01614 1.75513 - -29.71123 -18.40717 1.70638 - -30.39918 -17.80134 1.65808 - -31.06416 -17.19774 1.61025 - -31.70624 -16.59630 1.56288 - -32.32551 -15.99773 1.51600 - -32.32542 -15.99870 1.51600 - -34.13160 -14.11009 1.37122 - -35.71284 -12.24640 1.23161 - -37.07129 -10.39645 1.09737 - -38.20841 -8.55708 0.96870 - -39.12560 -6.73317 0.84580 - -39.12570 -6.73433 0.84580 - -39.50225 -5.81807 0.78658 - -39.82392 -4.90441 0.72885 - -40.09078 -3.99087 0.67262 - -40.30282 -3.07702 0.61791 - -40.46005 -2.16447 0.56472 - -40.45998 -2.16594 0.56472 - -40.58776 -0.73703 0.48697 - -40.60257 0.41326 0.41275 - -40.51220 1.57494 0.34206 - -40.31551 2.75028 0.27488 - -40.01131 3.93686 0.21120 - -40.01142 3.93839 0.21120 - -39.53932 6.11738 0.15102 - -38.92685 7.34724 0.09427 - -38.20144 8.59969 0.04089 - -37.36095 9.87683 -0.00917 - -36.40398 11.15007 -0.05598 - -36.40398 11.14920 -0.05598 - -35.21476 12.63134 -0.10376 - -33.87845 14.09144 -0.14784 - -32.39715 15.53123 -0.18838 - -30.77282 16.95237 -0.22553 - -29.00725 18.35645 -0.25945 - -29.00852 18.38161 -0.25945 - -26.52015 17.17450 -0.30187 - -24.19684 16.02769 -0.33884 - -22.02874 14.95916 -0.37080 - -20.00416 13.97892 -0.39820 - -18.11044 13.08879 -0.42148 - -18.11039 13.08332 -0.42148 - -16.33404 12.30867 -0.44107 - -14.65921 11.63580 -0.45730 - -13.07180 11.05316 -0.47050 - -11.56368 10.48435 -0.48099 - -10.13794 9.87804 -0.48910 - -10.13805 9.87448 -0.48910 - -8.79978 9.23961 -0.49516 - -7.55192 8.58399 -0.49940 - -6.39691 7.91444 -0.50207 - -5.33626 7.23681 -0.50340 - -4.37075 6.55600 -0.50364 - -4.37082 6.55443 -0.50364 - -3.51447 5.72827 -0.50301 - -2.75990 5.05228 -0.50165 - -2.09953 4.38294 -0.49971 - -1.53227 3.72234 -0.49731 - -1.05679 3.07203 -0.49461 - -1.05683 3.07161 -0.49461 - -0.67167 2.43259 -0.49171 - -0.37514 1.80555 -0.48867 - -0.16553 1.19095 -0.48554 - -0.04108 0.58907 -0.48236 - 0.00000 0.00002 -0.47917 + 0.00000 0.00000 -12.88930 + 0.00000 0.00000 -12.53765 + 0.00000 0.00000 -12.18599 + 0.00000 0.00000 -11.83434 + 0.00000 0.00000 -11.48268 + 0.00000 0.00000 -11.13103 + 0.00000 0.00000 -11.13103 + 0.00000 0.00000 -10.77937 + 0.00000 0.00000 -10.42772 + 0.00000 0.00000 -10.07606 + 0.00000 0.00000 -9.72441 + 0.00000 0.00000 -9.37275 + 0.00000 0.00000 -9.37275 + -0.00339 -0.08476 -8.90389 + -0.02712 -0.33903 -8.43502 + -0.09154 -0.76283 -7.96614 + -0.21698 -1.35613 -7.49724 + -0.42379 -2.11896 -7.02831 + -0.42379 -2.11896 -7.02831 + -0.67297 -2.88414 -6.63749 + -1.00454 -3.76704 -6.24661 + -1.43030 -4.76766 -5.85561 + -1.96200 -5.88600 -5.46445 + -2.61142 -7.12206 -5.07309 + -2.61142 -7.12206 -5.07309 + -3.39034 -8.47584 -4.68147 + -4.31051 -9.94734 -4.28950 + -5.38373 -11.53656 -3.89705 + -6.62175 -13.24350 -3.50403 + -8.03635 -15.06816 -3.11031 + -8.03635 177.77184 -3.11031 + 7.18113 176.10848 -2.77128 + 22.25181 174.35805 -2.43280 + 37.16822 172.52056 -2.09604 + 51.92285 170.59601 -1.76216 + 66.50823 168.58438 -1.43231 + 66.50823 42.97687 -1.43231 + 71.24940 40.17610 -1.00292 + 75.66257 37.22234 -0.58326 + 79.73029 34.11559 -0.17389 + 83.43511 30.85585 0.22466 + 86.75961 27.44313 0.61182 + 86.76071 27.42151 0.61182 + 88.86431 25.26625 0.87644 + 90.81588 23.58247 1.13509 + 92.64612 22.22184 1.38765 + 94.37906 21.14946 1.63399 + 96.03689 20.33421 1.87399 + 96.03658 20.33192 1.87399 + 96.44169 20.18081 1.93298 + 96.84392 20.04549 1.99157 + 97.24362 19.92761 2.04975 + 97.64114 19.82711 2.10753 + 98.03681 19.74222 2.16489 + 98.03676 19.74276 2.16489 + 99.90535 17.63921 2.44549 + 101.56662 15.59607 2.71560 + 103.02653 13.61196 2.97507 + 104.29095 11.68596 3.22374 + 105.36562 9.81674 3.46146 + 105.36544 9.82294 3.46146 + 106.25655 8.00841 3.68809 + 106.96852 6.23599 3.90357 + 107.50455 4.48744 4.10783 + 107.86659 2.75642 4.30083 + 108.05641 1.04265 4.48250 + 108.05642 1.04317 4.48250 + 108.07575 -0.65381 4.65280 + 107.92620 -2.33453 4.81176 + 107.60936 -3.99962 4.95940 + 107.12677 -5.64976 5.09576 + 106.47988 -7.28595 5.22088 + 106.47982 -7.28512 5.22088 + 105.30090 -9.55267 5.37722 + 103.80618 -11.79663 5.51189 + 101.99885 -14.01883 5.62526 + 99.88181 -16.22161 5.71770 + 97.45756 -18.40812 5.78958 + 97.45748 -18.40628 5.78958 + 95.01315 -19.16236 5.83832 + 92.48323 -19.73477 5.87020 + 89.88847 -20.16057 5.88568 + 87.24762 -20.44459 5.88523 + 84.57979 -20.56902 5.86929 + 84.57997 -20.56936 5.86929 + 81.81451 -22.21615 5.83831 + 78.78116 -24.38471 5.79282 + 75.49166 -26.15703 5.73339 + 71.99751 -27.53310 5.66060 + 68.35022 -28.51294 5.57503 + 68.35022 -28.51296 5.57503 + 64.02033 -29.41193 5.46163 + 59.55605 -30.31091 5.33321 + 54.95737 -31.20988 5.19083 + 50.22429 -32.10885 5.03560 + 45.35682 -33.00783 4.86857 + 45.35682 -33.00783 4.86857 + 40.35495 -33.90680 4.69087 + 35.21869 -34.80577 4.50369 + 29.94803 -35.70475 4.30828 + 24.54297 -36.60372 4.10587 + 19.00351 -37.50269 3.89770 + 19.00214 -37.49570 3.89770 + 13.32934 -38.39468 3.68506 + 7.52213 -39.29365 3.46930 + 1.64954 -38.80798 3.25178 + -3.98853 -36.45763 3.03384 + -9.22521 -33.58385 2.81681 + -9.22340 -33.56895 2.81681 + -14.01309 -30.50252 2.60204 + -18.34555 -27.47415 2.39056 + -22.23293 -24.54743 2.18329 + -25.69005 -21.71732 1.98114 + -28.73169 -18.99329 1.78503 + -28.73083 -18.97872 1.78503 + -28.76875 -18.94266 1.78245 + -28.80660 -18.90662 1.77987 + -28.84438 -18.87059 1.77730 + -28.88208 -18.83458 1.77472 + -28.91972 -18.79859 1.77215 + -28.91972 -18.79861 1.77215 + -29.62242 -18.18653 1.72348 + -30.30193 -17.57757 1.67526 + -30.95834 -16.97083 1.62751 + -31.59174 -16.36623 1.58022 + -32.20221 -15.76450 1.53341 + -32.20212 -15.76546 1.53341 + -33.97971 -13.86676 1.38885 + -35.53113 -11.99286 1.24944 + -36.85854 -10.13258 1.11537 + -37.96337 -8.28281 0.98684 + -38.84703 -6.44842 0.86405 + -38.84712 -6.44957 0.86405 + -39.20643 -5.52805 0.80486 + -39.51054 -4.60912 0.74715 + -39.75952 -3.69030 0.69094 + -39.95337 -2.77118 0.63622 + -40.09209 -1.85336 0.58302 + -40.09202 -1.85484 0.58302 + -40.18428 -0.30457 0.50523 + -40.15929 0.85553 0.43093 + -40.02822 2.02714 0.36011 + -39.78993 3.21251 0.29277 + -39.44320 4.40922 0.22889 + -39.44321 4.40796 0.22889 + -38.98645 5.63228 0.16844 + -38.41765 6.87237 0.11139 + -37.73500 8.13506 0.05767 + -36.93632 9.42245 0.00722 + -36.02017 10.70778 -0.04002 + -36.02019 10.70683 -0.04002 + -34.87483 12.19652 -0.08831 + -33.58163 13.66390 -0.13294 + -32.14273 15.11070 -0.17405 + -30.56012 16.53858 -0.21180 + -28.83560 17.94911 -0.24634 + -28.83689 17.97474 -0.24634 + -26.40233 16.81252 -0.28967 + -24.12661 15.70976 -0.32756 + -21.99999 14.68437 -0.36046 + -20.01092 13.74628 -0.38880 + -18.14688 12.89724 -0.41304 + -18.14683 12.89178 -0.41304 + -16.39448 12.15710 -0.43356 + -14.73814 11.52303 -0.45072 + -13.16421 10.97092 -0.46482 + -11.66608 10.42321 -0.47621 + -10.24762 9.83443 -0.48519 + -10.24774 9.83084 -0.48519 + -8.91455 9.21005 -0.49209 + -7.67005 8.56514 -0.49715 + -6.51711 7.90303 -0.50062 + -5.45772 7.22967 -0.50273 + -4.49310 6.55006 -0.50372 + -4.49317 6.54845 -0.50372 + -3.62411 5.86667 -0.50381 + -2.85045 5.18603 -0.50315 + -2.17184 4.50925 -0.50189 + -1.58758 3.83848 -0.50017 + -1.09671 3.17533 -0.49812 + -1.09675 3.17489 -0.49812 + -0.69818 2.52041 -0.49587 + -0.39059 1.87528 -0.49348 + -0.17264 1.24001 -0.49098 + -0.04292 0.61488 -0.48844 + 0.00001 0.00003 -0.48589 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -15486,7 +15622,7 @@ Lambda passive -4.30000 8.81200 19.51850 3.65228 0.74118 0.41447 2.21499 -4.40000 8.85100 19.49272 3.67549 0.74118 0.41526 2.20232 -4.50000 8.89000 19.47992 3.69286 0.74118 0.41585 2.19362 - -4.50000 8.89000 19.47440 3.70443 0.74522 0.41624 2.18820 + -4.50000 8.89000 19.47440 3.70443 0.74118 0.41624 2.18820 -4.60000 8.92900 19.47010 3.72176 0.74118 0.41682 2.18055 -4.70000 8.96800 19.47023 3.74484 0.74118 0.41758 2.17108 -4.80000 9.00700 19.47646 3.76790 0.74118 0.41833 2.16237 @@ -15498,7 +15634,7 @@ Lambda passive -5.42000 9.24880 19.60984 3.91061 0.74118 0.42282 2.12026 -5.56000 9.30340 19.65566 3.94280 0.74118 0.42380 2.11274 -5.70000 9.35800 19.69261 3.96693 0.74118 0.42453 2.10744 - -5.70000 9.35800 40.65119 -2.20269 0.88383 0.00000 4.55186 + -5.70000 9.35800 40.65119 -2.20269 0.69929 0.00000 4.55186 -5.83000 7.64870 37.49247 -2.79831 0.69929 0.00000 4.90181 -5.96000 5.93940 33.28909 -3.59161 0.69929 0.00000 5.60479 -6.09000 4.23010 29.09277 -4.38375 0.69929 0.00000 6.87756 @@ -15509,17 +15645,17 @@ Lambda passive -6.61000 0.00000 12.34378 -7.53655 0.00000 0.00000 0.00000 -6.74000 0.00000 8.16089 -8.31950 0.00000 0.00000 0.00000 -6.87000 0.00000 3.97861 -9.09965 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 -9.68275 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.04098 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.62653 0.04098 0.00000 0.06540 0.00000 0.06540 - -8.19600 1.82104 0.04098 0.00000 0.02250 0.00000 0.02250 + -7.00000 0.00000 0.84206 -9.68275 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.62653 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 1.82104 0.00000 0.00000 0.00000 0.00000 0.00000 -8.34550 3.01554 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 -8.49500 4.21005 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -15528,7 +15664,7 @@ Lambda passive -8.94350 7.79356 17.96911 1.52496 0.57738 0.19567 2.30563 -9.09300 8.98807 36.36631 3.09670 0.57738 0.34453 4.04606 -9.24250 10.18257 39.87198 3.40583 0.57738 0.34458 4.03401 - -9.24250 10.18257 42.19987 3.61198 0.34462 0.34462 4.02624 + -9.24250 10.18257 42.19987 3.61198 0.57738 0.34462 4.02624 -9.39200 11.37708 45.68064 3.92128 0.57738 0.34467 4.01515 -9.54150 12.57158 50.30746 4.33381 0.57738 0.34473 4.00168 -9.69100 13.76609 54.92251 4.74648 0.57738 0.34479 3.98970 @@ -15558,13 +15694,13 @@ Lambda passive -10.97000 21.46330 71.22427 3.63423 0.69929 0.16932 3.31842 -11.03000 21.78670 72.00296 3.78520 0.69929 0.17374 3.30490 -11.09000 22.11010 72.58721 3.89845 0.69929 0.17697 3.29504 - -11.09000 22.11010 73.07750 3.99346 0.60663 0.17962 3.28693 + -11.09000 22.11010 73.07750 3.99346 0.69929 0.17962 3.28693 -11.18100 22.60059 73.96428 4.16528 0.69929 0.18430 3.27267 -11.27200 23.09108 75.14728 4.39441 0.69929 0.19031 3.25439 -11.36300 23.58157 76.33100 4.62361 0.69929 0.19607 3.23689 -11.45400 24.07206 77.51539 4.85287 0.69929 0.20160 3.22014 -11.54500 24.56255 78.40407 5.02484 0.69929 0.20560 3.20803 - -11.54500 24.56255 78.99672 5.13951 1.41516 0.20820 3.20017 + -11.54500 24.56255 78.99672 5.13951 0.69929 0.20820 3.20017 -11.63600 25.05304 79.88599 5.31154 0.69929 0.21201 3.18867 -11.72700 25.54353 81.07214 5.54096 0.69929 0.21692 3.17388 -11.81800 26.03402 82.25880 5.77043 0.69929 0.22165 3.15967 @@ -15665,48 +15801,48 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00340 0.00340 1 0 A - 6.89024 0.00000 7.80254 0.68000 330 88 3 - 11.37969 0.00000 15.60507 1.36000 220 73 2 - 15.18436 0.00000 23.40761 2.04000 220 65 2 - 18.95173 0.00000 31.21015 2.72000 220 61 2 - 22.10838 0.00000 37.06205 3.23000 220 60 2 - 22.82421 0.00000 39.50034 3.44250 220 58 2 - 23.60734 0.00000 40.96332 3.57000 220 58 2 - 24.53121 0.00000 42.91395 3.74000 220 57 2 - 25.45264 0.00000 44.86459 3.91000 220 57 2 - 26.37162 0.00000 46.81522 4.08000 220 56 2 - 27.14497 0.00000 48.27820 4.20750 220 56 2 - 12.61921 0.00000 20.56677 6.30726 220 61 2 - 13.13117 0.98100 20.32861 6.32894 220 65 2 - 13.62512 1.96200 20.08785 6.35785 220 68 2 - 14.11396 2.94300 19.91182 6.38676 220 71 2 - 14.59251 3.92400 19.78100 6.41566 220 74 2 - 15.05906 4.90500 19.70421 6.43734 220 76 2 - 15.05577 4.90500 19.66214 6.45179 220 77 2 - 15.50637 5.88600 19.61027 6.47347 220 79 2 - 15.76236 6.86700 19.55671 6.50238 330 81 3 - 15.90919 7.84800 19.51850 6.53129 330 82 3 - 16.05420 8.82900 19.49272 6.56019 330 82 3 - 16.19624 9.81000 19.47992 6.58187 330 83 3 - 16.20313 9.81000 19.47440 6.63230 330 83 3 - 16.33381 10.79100 19.47010 6.61800 330 84 3 - 16.46663 11.77200 19.47023 6.64691 330 85 3 - 16.59393 12.75300 19.47646 6.67582 330 85 3 - 16.71527 13.73400 19.48795 6.70472 330 86 3 - 16.82618 14.71500 19.49947 6.72640 330 86 3 - 16.83605 14.71500 19.51051 6.74375 330 86 3 - 16.98007 16.08840 19.53319 6.77410 330 87 3 - 17.11626 17.46180 19.56875 6.81457 330 87 3 - 17.23862 18.83520 19.60984 6.85503 330 88 3 - 17.34699 20.20860 19.65566 6.89550 330 88 3 - 17.43175 21.58200 19.69261 6.92585 330 89 3 - 25.67156 21.58200 40.65119 7.89320 220 63 2 - 23.70654 25.39730 37.49247 5.34869 220 63 2 - 22.12126 29.21260 33.28909 4.15339 220 66 2 - 20.50496 33.02790 29.09277 2.95808 220 70 2 - 18.85802 36.84320 24.90135 1.76278 220 76 2 - 17.48163 40.65850 21.76001 0.86630 330 80 3 - 11.77312 40.65850 12.41397 0.26865 330 95 3 + 6.89566 0.00000 7.80254 0.68000 330 88 3 + 11.39184 0.00000 15.60507 1.36000 220 73 2 + 15.19782 0.00000 23.40761 2.04000 220 65 2 + 18.96648 0.00000 31.21015 2.72000 220 61 2 + 22.12444 0.00000 37.06205 3.23000 220 60 2 + 22.84026 0.00000 39.50034 3.44250 220 58 2 + 23.62372 0.00000 40.96332 3.57000 220 58 2 + 24.54792 0.00000 42.91395 3.74000 220 57 2 + 25.46967 0.00000 44.86459 3.91000 220 57 2 + 26.38897 0.00000 46.81522 4.08000 220 56 2 + 27.16265 0.00000 48.27820 4.20750 220 56 2 + 12.62511 0.00000 20.56677 6.30726 220 61 2 + 13.13761 0.98100 20.32861 6.32894 220 65 2 + 13.63209 1.96200 20.08785 6.35785 220 68 2 + 14.12147 2.94300 19.91182 6.38676 220 71 2 + 14.60056 3.92400 19.78100 6.41566 220 74 2 + 15.06764 4.90500 19.70421 6.43734 220 76 2 + 15.06435 4.90500 19.66214 6.45179 220 77 2 + 15.51548 5.88600 19.61027 6.47347 220 79 2 + 15.76622 6.86700 19.55671 6.50238 330 81 3 + 15.91325 7.84800 19.51850 6.53129 330 82 3 + 16.05848 8.82900 19.49272 6.56019 330 82 3 + 16.20072 9.81000 19.47992 6.58187 330 83 3 + 16.20042 9.81000 19.47440 6.59633 330 83 3 + 16.33850 10.79100 19.47010 6.61800 330 84 3 + 16.47152 11.77200 19.47023 6.64691 330 85 3 + 16.59903 12.75300 19.47646 6.67582 330 85 3 + 16.72057 13.73400 19.48795 6.70472 330 86 3 + 16.83167 14.71500 19.49947 6.72640 330 86 3 + 16.84154 14.71500 19.51051 6.74375 330 86 3 + 16.98584 16.08840 19.53319 6.77410 330 87 3 + 17.12230 17.46180 19.56875 6.81457 330 87 3 + 17.24492 18.83520 19.60984 6.85503 330 88 3 + 17.35354 20.20860 19.65566 6.89550 330 88 3 + 17.43855 21.58200 19.69261 6.92585 330 89 3 + 24.86454 21.58200 40.65119 6.24517 220 61 2 + 23.72410 25.39730 37.49247 5.34869 220 63 2 + 22.13937 29.21260 33.28909 4.15339 220 67 2 + 20.52360 33.02790 29.09277 2.95808 220 71 2 + 18.87718 36.84320 24.90135 1.76278 220 76 2 + 17.48950 40.65850 21.76001 0.86630 330 80 3 + 11.76921 40.65850 12.41397 0.26865 330 95 3 0.00000 44.47380 0.00000 0.00000 1 0 A 0.00000 48.28910 0.00000 0.00000 1 0 A 0.00000 52.10440 0.00000 0.00000 1 0 A @@ -15720,94 +15856,94 @@ Status character 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 67.06798 0.00000 0.00000 1 0 A 0.00000 68.53457 0.00000 0.00000 1 0 A - 0.00000 70.00117 0.04098 0.04098 1 0 A - 0.00000 71.46776 0.04098 0.04098 1 0 A + 0.00000 70.00117 0.00000 0.00000 1 0 A + 0.00000 71.46776 0.00000 0.00000 1 0 A 0.00000 72.93436 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 74.40095 0.00000 0.00000 1 0 A 0.00000 75.86755 0.00000 0.00000 1 0 A - 0.00000 77.33414 0.00000 0.00000 1 100 A - 15.41442 78.80074 17.96911 4.49986 330 86 3 - 20.74292 80.26733 36.36631 5.18955 220 57 2 - 21.22591 81.73392 39.87198 5.70681 220 53 2 - 20.42101 81.73392 42.19987 3.61198 110 48 1 - 22.08727 83.20052 45.68064 6.56892 110 48 1 - 21.50601 84.66711 50.30746 7.25860 110 43 1 - 20.95001 86.13371 54.92251 7.94829 110 38 1 - 20.42478 87.60031 59.53073 8.63797 110 34 1 - 19.76341 89.06690 62.98476 9.15524 110 31 1 - 19.93814 89.06690 64.15130 9.32997 110 31 1 - 19.92956 89.08652 64.19752 9.33689 110 31 1 - 19.92330 89.10614 64.25913 9.34611 110 31 1 - 19.91704 89.12576 64.32073 9.35534 110 31 1 - 19.91080 89.14538 64.38231 9.36457 110 31 1 - 19.90225 89.16500 64.42851 9.37149 110 31 1 - 18.40936 89.16500 58.82727 11.38885 110 31 1 - 18.32179 89.53778 59.19268 11.49627 110 31 1 - 18.27184 89.91056 59.68017 11.63950 110 31 1 - 18.22372 90.28334 60.16799 11.78273 110 30 1 - 18.17749 90.65612 60.65612 11.92596 110 30 1 - 18.09737 91.02890 61.02242 12.03338 110 30 1 - 18.24626 91.02890 61.53041 12.18226 110 30 1 - 18.00638 92.20610 62.68904 12.52149 110 29 1 - 17.90024 93.38330 64.23606 12.97380 110 28 1 - 17.81557 94.56050 65.78549 13.42610 110 27 1 - 17.75319 95.73770 67.33709 13.87840 110 26 1 - 17.60085 96.91490 68.50203 14.21763 110 26 1 - 17.77046 96.91490 69.08491 14.38724 110 26 1 - 17.70318 97.50350 69.66807 14.55686 110 25 1 - 17.69841 98.09210 70.44596 14.78301 110 25 1 - 17.69965 98.68070 71.22427 15.00916 110 25 1 - 17.70694 99.26930 72.00296 15.23531 110 25 1 - 17.66379 99.85790 72.58721 15.40493 110 24 1 - 15.74582 99.85790 73.07750 13.48696 110 22 1 - 17.75234 100.75061 73.96428 15.80446 110 24 1 - 17.79848 101.64332 75.14728 16.14746 110 24 1 - 17.85869 102.53603 76.33100 16.49046 110 23 1 - 17.93296 103.42874 77.51539 16.83345 110 23 1 - 17.93550 104.32145 78.40407 17.09070 110 23 1 - 35.77834 104.32145 78.99672 34.93354 110 45 1 - 18.12351 105.21416 79.88599 17.51945 110 23 1 - 18.23951 106.10687 81.07214 17.86244 110 22 1 - 18.36901 106.99958 82.25880 18.20544 110 22 1 - 18.51176 107.89229 83.44594 18.54844 110 0 1 - 18.58176 108.78500 84.33659 18.80568 110 0 1 - 20.50195 108.78500 56.86688 20.61391 110 0 1 - 22.17911 106.76600 61.08371 22.38663 110 0 1 - 24.45457 104.74700 66.69564 24.75026 110 0 1 - 26.73712 102.72800 72.29483 27.11388 110 0 1 - 29.02644 100.70900 77.88124 29.47751 110 0 1 - 30.73132 98.69000 82.06310 31.25023 110 0 1 - 17.24889 98.69000 360.69726 20.36232 110 0 1 - 17.24279 100.06340 341.63118 20.86529 110 0 1 - 17.46982 101.43680 336.23428 21.53590 110 0 1 - 17.75693 102.81020 338.27314 22.20652 110 0 1 - 18.09876 104.18360 343.27433 22.87714 110 0 1 - 18.32229 105.55700 348.03239 23.38010 110 0 1 - 18.65760 105.55700 351.55313 23.71541 110 0 1 - 18.92549 106.93040 357.19802 24.21837 110 0 1 - 19.40135 108.30380 365.16698 24.88899 110 0 1 - 19.91361 109.67720 373.51597 25.55961 110 0 1 - 20.45833 111.05060 382.13262 26.23022 110 0 1 - 20.86393 112.42400 388.72127 26.73319 110 0 1 - 21.19924 112.42400 393.16743 27.06849 110 0 1 - 21.62960 113.79740 399.90218 27.57146 110 0 1 - 22.24931 115.17080 408.97197 28.24207 110 0 1 - 22.88789 116.54420 418.12917 28.91269 110 0 1 - 23.54247 117.91760 427.35573 29.58331 110 0 1 - 24.04256 119.29100 434.31142 30.08627 110 0 1 - 24.37787 119.29100 438.96483 30.42158 110 0 1 - 24.88846 120.66440 445.96600 30.92454 110 0 1 - 25.57536 122.03780 455.33132 31.59516 110 0 1 - 26.26930 123.41120 464.72780 32.26578 110 0 1 - 26.96863 124.78460 474.15039 32.93639 110 0 1 - 27.50407 126.15800 481.23140 33.43936 110 0 1 - 27.83937 126.15800 485.95872 33.77467 110 0 1 - 28.37714 127.53140 493.05853 34.27763 110 0 1 - 29.08421 128.90480 502.53810 34.94825 110 0 1 - 29.79240 130.27820 512.03155 35.61886 110 0 1 - 30.50119 131.65160 521.53703 36.28948 110 0 1 - 31.04241 133.02500 528.67279 36.79244 110 0 1 + 0.00000 77.33414 0.00000 0.00000 1 0 A + 15.43642 78.80074 17.96911 4.49986 330 86 3 + 20.78787 80.26733 36.36631 5.18955 220 57 2 + 21.27184 81.73392 39.87198 5.70681 220 53 2 + 22.02623 81.73392 42.19987 6.05165 220 52 2 + 22.18114 83.20052 45.68064 6.56892 110 49 1 + 21.60194 84.66711 50.30746 7.25860 110 43 1 + 21.04800 86.13371 54.92251 7.94829 110 38 1 + 20.52481 87.60031 59.53073 8.63797 110 34 1 + 19.86541 89.06690 62.98476 9.15524 110 32 1 + 20.04014 89.06690 64.15130 9.32997 110 31 1 + 20.03159 89.08652 64.19752 9.33689 110 31 1 + 20.02535 89.10614 64.25913 9.34611 110 31 1 + 20.01912 89.12576 64.32073 9.35534 110 31 1 + 20.01290 89.14538 64.38231 9.36457 110 31 1 + 20.00438 89.16500 64.42851 9.37149 110 31 1 + 18.47744 89.16500 58.82727 11.38885 110 31 1 + 18.39020 89.53778 59.19268 11.49627 110 31 1 + 18.34056 89.91056 59.68017 11.63950 110 31 1 + 18.29276 90.28334 60.16799 11.78273 110 30 1 + 18.24683 90.65612 60.65612 11.92596 110 30 1 + 18.16701 91.02890 61.02242 12.03338 110 30 1 + 18.31589 91.02890 61.53041 12.18226 110 30 1 + 18.07691 92.20610 62.68904 12.52149 110 29 1 + 17.97156 93.38330 64.23606 12.97380 110 28 1 + 17.88757 94.56050 65.78549 13.42610 110 27 1 + 17.82575 95.73770 67.33709 13.87840 110 26 1 + 17.67382 96.91490 68.50203 14.21763 110 26 1 + 17.84343 96.91490 69.08491 14.38724 110 26 1 + 17.77629 97.50350 69.66807 14.55686 110 26 1 + 17.77162 98.09210 70.44596 14.78301 110 25 1 + 17.77291 98.68070 71.22427 15.00916 110 25 1 + 17.78021 99.26930 72.00296 15.23531 110 25 1 + 17.73701 99.85790 72.58721 15.40493 110 24 1 + 17.87929 99.85790 73.07750 15.54721 110 24 1 + 17.82537 100.75061 73.96428 15.80446 110 24 1 + 17.87118 101.64332 75.14728 16.14746 110 24 1 + 17.93091 102.53603 76.33100 16.49046 110 23 1 + 18.00453 103.42874 77.51539 16.83345 110 23 1 + 18.00624 104.32145 78.40407 17.09070 110 23 1 + 18.17774 104.32145 78.99672 17.26220 110 23 1 + 18.19322 105.21416 79.88599 17.51945 110 23 1 + 18.30800 106.10687 81.07214 17.86244 110 23 1 + 18.43611 106.99958 82.25880 18.20544 110 22 1 + 18.57730 107.89229 83.44594 18.54844 110 22 1 + 18.64559 108.78500 84.33659 18.80568 110 0 1 + 20.53386 108.78500 56.86688 20.61391 110 0 1 + 22.21001 106.76600 61.08371 22.38663 110 0 1 + 24.48439 104.74700 66.69564 24.75026 110 0 1 + 26.76579 102.72800 72.29483 27.11388 110 0 1 + 29.05391 100.70900 77.88124 29.47751 110 0 1 + 30.75754 98.69000 82.06310 31.25023 110 0 1 + 17.40619 98.69000 360.69726 20.36232 110 0 1 + 17.38929 100.06340 341.63118 20.86529 110 0 1 + 17.60521 101.43680 336.23428 21.53590 110 0 1 + 17.88104 102.81020 338.27314 22.20652 110 0 1 + 18.21150 104.18360 343.27433 22.87714 110 0 1 + 18.42367 105.55700 348.03239 23.38010 110 0 1 + 18.75898 105.55700 351.55313 23.71541 110 0 1 + 19.01562 106.93040 357.19802 24.21837 110 0 1 + 19.48039 108.30380 365.16698 24.88899 110 0 1 + 19.98173 109.67720 373.51597 25.55961 110 0 1 + 20.51576 111.05060 382.13262 26.23022 110 0 1 + 20.91091 112.42400 388.72127 26.73319 110 0 1 + 21.24622 112.42400 393.16743 27.06849 110 0 1 + 21.66642 113.79740 399.90218 27.57146 110 0 1 + 22.27626 115.17080 408.97197 28.24207 110 0 1 + 22.90524 116.54420 418.12917 28.91269 110 0 1 + 23.55053 117.91760 427.35573 29.58331 110 0 1 + 24.04162 119.29100 434.31142 30.08627 110 0 1 + 24.37693 119.29100 438.96483 30.42158 110 0 1 + 24.87883 120.66440 445.96600 30.92454 110 0 1 + 25.55731 122.03780 455.33132 31.59516 110 0 1 + 26.24304 123.41120 464.72780 32.26578 110 0 1 + 26.93435 124.78460 474.15039 32.93639 110 0 1 + 27.46191 126.15800 481.23140 33.43936 110 0 1 + 27.79722 126.15800 485.95872 33.77467 110 0 1 + 28.32720 127.53140 493.05853 34.27763 110 0 1 + 29.02654 128.90480 502.53810 34.94825 110 0 1 + 29.72705 130.27820 512.03155 35.61886 110 0 1 + 30.42818 131.65160 521.53703 36.28948 110 0 1 + 30.96175 133.02500 528.67279 36.79244 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -15822,13 +15958,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 7.576 'Ophooglaag zand' - -3.50 35.093 'Hollandveen' - -5.70 14.645 'Oude Zeeklei' - -7.00 22.898 'Wadzand' - -10.00 36.670 'Hydrobiaklei' - -12.00 12.801 'Basisveen' - -12.50 80.722 'Eerste zandlaag' + -3.00 7.582 'Ophooglaag zand' + -3.50 35.106 'Hollandveen' + -5.70 14.602 'Oude Zeeklei' + -7.00 23.098 'Wadzand' + -10.00 36.101 'Hydrobiaklei' + -12.00 12.816 'Basisveen' + -12.50 80.821 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -15847,11 +15983,11 @@ Layer name -1.00 0.00 'Geulse klei' -3.00 2.76 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 3.11 'Oude Zeeklei' - -7.00 6.87 'Wadzand' - -10.00 7.79 'Hydrobiaklei' + -5.70 3.10 'Oude Zeeklei' + -7.00 6.93 'Wadzand' + -10.00 7.67 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.99 'Eerste zandlaag' + -12.50 31.02 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16080,7 +16216,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -16092,7 +16228,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -16259,53 +16395,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.25443 100.76161 31.86408 3.83947 110 23 1 - 7.20677 101.65432 33.06586 4.18246 110 22 1 - 7.15228 102.54703 34.26739 4.52546 110 21 1 - 7.09103 103.43974 35.46867 4.86846 110 20 1 - 7.02308 104.33245 36.36949 5.12571 110 19 1 - 7.02308 104.33245 36.96996 5.29720 110 19 1 - 6.94852 105.22516 37.87056 5.55445 110 18 1 - 6.86756 106.11787 39.07118 5.89745 110 18 1 - 6.78045 107.01058 40.27161 6.24045 110 17 1 - 6.68742 107.90329 41.47185 6.58344 110 16 1 - 7.06461 108.79600 42.37192 6.84069 110 17 1 - 8.04419 108.79600 25.59840 7.93223 110 31 1 - 9.91247 106.77700 29.70475 9.70495 110 33 1 - 12.36426 104.75800 35.16081 12.06858 110 35 1 - 14.80896 102.73900 40.59674 14.43220 110 36 1 - 17.24689 100.72000 46.01595 16.79583 110 37 1 - 19.08745 98.70100 50.07174 18.56855 110 38 1 - 24.56520 98.70100 229.88374 12.31919 110 11 1 - 24.27480 100.07440 200.26957 12.82216 110 12 1 - 24.06838 101.44780 200.90889 13.49277 110 12 1 - 23.85691 102.82120 207.46715 14.16339 110 11 1 - 23.64628 104.19460 215.59855 14.83401 110 11 1 - 23.34956 105.56800 222.12669 15.33697 110 11 1 - 23.53462 105.56800 226.60771 15.70861 110 10 1 - 23.24852 106.94140 233.44973 16.17524 110 10 1 - 23.06670 108.31480 242.70650 16.84586 110 10 1 - 23.16247 109.68820 252.06828 17.51648 110 9 1 - 23.95899 111.06160 261.49732 18.18709 110 9 1 - 24.55931 112.43500 268.59852 18.69006 110 9 1 - 24.89462 112.43500 273.34448 19.02537 110 9 1 - 25.47019 113.80840 280.47714 19.52833 110 9 1 - 26.19171 115.18180 290.00539 20.19895 110 9 1 - 26.89437 116.55520 299.55031 20.86956 110 9 1 - 27.58102 117.92860 309.10779 21.54018 110 9 1 - 28.08686 119.30200 316.28211 22.04314 110 9 1 - 30.16209 119.30200 321.06773 24.11838 110 9 1 - 28.91750 120.67540 328.24957 22.88141 110 9 1 - 29.57183 122.04880 337.83018 23.55203 110 9 1 - 30.21913 123.42220 347.41558 24.22265 110 9 1 - 30.86103 124.79560 357.00485 24.89327 110 9 1 - 31.33152 126.16900 364.19883 25.39623 110 9 1 - 31.66683 126.16900 368.99576 25.73154 110 9 1 - 32.13499 127.54240 376.19237 26.23450 110 9 1 - 32.76915 128.91580 385.78963 26.90512 110 8 1 - 33.40220 130.28920 395.38873 27.57574 110 8 1 - 34.03464 131.66260 404.98939 28.24635 110 8 1 - 34.49935 133.03600 412.19072 28.74932 110 8 1 + 7.23822 100.76161 31.86408 3.83947 110 23 1 + 7.18904 101.65432 33.06586 4.18246 110 22 1 + 7.13303 102.54703 34.26739 4.52546 110 21 1 + 7.07025 103.43974 35.46867 4.86846 110 20 1 + 7.00078 104.33245 36.36949 5.12571 110 19 1 + 7.00078 104.33245 36.96996 5.29720 110 19 1 + 6.92472 105.22516 37.87056 5.55445 110 18 1 + 6.84226 106.11787 39.07118 5.89745 110 18 1 + 6.75366 107.01058 40.27161 6.24045 110 17 1 + 6.65916 107.90329 41.47185 6.58344 110 16 1 + 7.00078 108.79600 42.37192 6.84069 110 17 1 + 8.01228 108.79600 25.59840 7.93223 110 31 1 + 9.88157 106.77700 29.70475 9.70495 110 33 1 + 12.33445 104.75800 35.16081 12.06858 110 35 1 + 14.78030 102.73900 40.59674 14.43220 110 36 1 + 17.21943 100.72000 46.01595 16.79583 110 37 1 + 19.06124 98.70100 50.07174 18.56855 110 38 1 + 24.45296 98.70100 229.88374 12.31919 110 11 1 + 24.15647 100.07440 200.26957 12.82216 110 12 1 + 23.94417 101.44780 200.90889 13.49277 110 12 1 + 23.72710 102.82120 207.46715 14.16339 110 11 1 + 23.51119 104.19460 215.59855 14.83401 110 11 1 + 23.20957 105.56800 222.12669 15.33697 110 10 1 + 23.39463 105.56800 226.60771 15.67228 110 10 1 + 23.10409 106.94140 233.44973 16.17524 110 10 1 + 22.91845 108.31480 242.70650 16.84586 110 9 1 + 23.09435 109.68820 252.06828 17.51648 110 9 1 + 23.90156 111.06160 261.49732 18.18709 110 9 1 + 24.51233 112.43500 268.59852 18.69006 110 9 1 + 24.84764 112.43500 273.34448 19.02537 110 9 1 + 25.43337 113.80840 280.47714 19.52833 110 9 1 + 26.16476 115.18180 290.00539 20.19895 110 9 1 + 26.87701 116.55520 299.55031 20.86956 110 9 1 + 27.57296 117.92860 309.10779 21.54018 110 9 1 + 28.08779 119.30200 316.28211 22.04314 110 9 1 + 28.42310 119.30200 321.06773 22.37845 110 9 1 + 28.92713 120.67540 328.24957 22.88141 110 9 1 + 29.58988 122.04880 337.83018 23.55203 110 9 1 + 30.24538 123.42220 347.41558 24.22265 110 9 1 + 30.89531 124.79560 357.00485 24.89327 110 9 1 + 31.37368 126.16900 364.19883 25.39623 110 9 1 + 31.70899 126.16900 368.99576 25.73154 110 9 1 + 32.18493 127.54240 376.19237 26.23450 110 9 1 + 32.82683 128.91580 385.78963 26.90512 110 9 1 + 33.46755 130.28920 395.38873 27.57574 110 8 1 + 34.10765 131.66260 404.98939 28.24635 110 8 1 + 34.58001 133.03600 412.19072 28.74932 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -16323,9 +16459,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.058 'Hydrobiaklei' - -12.00 6.790 'Basisveen' - -12.50 95.992 'Eerste zandlaag' + -10.00 6.037 'Hydrobiaklei' + -12.00 6.775 'Basisveen' + -12.50 95.752 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -16345,9 +16481,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.29 'Hydrobiaklei' + -10.00 -1.28 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -36.85 'Eerste zandlaag' + -12.50 -36.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -16569,7 +16705,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 288.88127 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 288.87887 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -16594,20 +16730,20 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 7.98 : Percentage mobilized resistance left - 7.91 : Percentage mobilized resistance right - 87.05 : Effective left - 86.25 : Effective right + 7.97 : Percentage mobilized resistance left + 7.90 : Percentage mobilized resistance right + 86.94 : Effective left + 86.13 : Effective right 1112.88 : Water pressure left 1112.88 : Water pressure right 1090.76 : Max effective resistance left 1090.76 : Max effective resistance right -13001.37 : Max moment left -13001.37 : Max moment right --1009.94 : Max mobilized moment left --1009.54 : Max mobilized moment right - 29.77 : Vertical force left - 29.72 : Vertical force right +-1008.52 : Max mobilized moment left +-1008.11 : Max mobilized moment right + 29.72 : Vertical force left + 29.68 : Vertical force right 7.8 : Max mobilized moment percentage left 7.8 : Max mobilized moment percentage right -2.43 : Level of single support @@ -16616,10 +16752,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --29.72 : Active force -29.77 : Passive force --29.72 : Plugged active force -29.77 : Plugged passive force +-29.68 : Active force +29.72 : Passive force +-29.68 : Plugged active force +29.72 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -16639,192 +16775,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -4.75013 - 0.00000 0.00000 -4.70541 - 0.00000 0.00000 -4.66068 - 0.00000 0.00000 -4.61596 - 0.00000 0.00000 -4.57124 - 0.00000 0.00000 -4.52651 - 0.00000 0.00000 -4.52651 - 0.00000 0.00000 -4.48179 - 0.00000 0.00000 -4.43706 - 0.00000 0.00000 -4.39234 - 0.00000 0.00000 -4.34762 - 0.00000 0.00000 -4.30289 - 0.00000 0.00000 -4.30289 - 0.00000 0.00000 -4.24326 - 0.00000 0.00000 -4.18363 - 0.00000 0.00000 -4.12400 - 0.00000 0.00000 -4.06437 - 0.00000 0.00000 -4.00473 - 0.00000 0.00000 -4.00473 - 0.00000 0.00000 -3.95504 - 0.00000 0.00000 -3.90535 - 0.00000 0.00000 -3.85565 - 0.00000 0.00000 -3.80596 - 0.00000 0.00000 -3.75627 - 0.00000 0.00000 -3.75627 - 0.00000 0.00000 -3.70657 - 0.00000 0.00000 -3.65688 - 0.00000 0.00000 -3.60719 - 0.00000 0.00000 -3.55750 - 0.00000 0.00000 -3.50780 - 0.00000 0.00000 -3.50780 - 0.00000 0.00000 -3.46507 - 0.00000 0.00000 -3.42233 - 0.00000 0.00000 -3.37959 - 0.00000 0.00000 -3.33686 - 0.00000 0.00000 -3.29412 - 0.00000 0.91873 -3.29412 - 0.10473 0.91873 -3.23747 - 0.20947 0.91873 -3.18084 - 0.31420 0.91873 -3.12424 - 0.41894 0.91873 -3.06767 - 0.52367 0.91873 -3.01117 - 0.52478 0.89713 -3.01117 - 0.59655 0.89713 -2.97156 - 0.66832 0.89713 -2.93199 - 0.74009 0.89713 -2.89246 - 0.81186 0.89713 -2.85299 - 0.88363 0.89713 -2.81356 - 0.88332 0.89484 -2.81356 - 0.90121 0.89484 -2.80372 - 0.91911 0.89484 -2.79387 - 0.93701 0.89484 -2.78404 - 0.95490 0.89484 -2.77420 - 0.97280 0.89484 -2.76437 - 0.97276 0.89538 -2.76437 - 1.06229 0.89538 -2.71528 - 1.15183 0.89538 -2.66630 - 1.24137 0.89538 -2.61744 - 1.33091 0.89538 -2.56871 - 1.42044 0.89538 -2.52013 - 1.42026 0.90157 -2.52013 - 1.51042 0.90157 -2.47169 - 1.60058 0.90157 -2.42341 - 1.69074 0.90157 -2.37529 - 1.78089 0.90157 -2.32736 - 1.87105 0.90157 -2.27961 - 1.87106 0.90209 -2.27961 - 1.96127 0.90209 -2.23206 - 2.05148 0.90209 -2.18471 - 2.14169 0.90209 -2.13758 - 2.23190 0.90209 -2.09068 - 2.32211 0.90209 -2.04401 - 2.32206 0.90292 -2.04401 - 2.44847 0.90292 -1.97908 - 2.57487 0.90292 -1.91465 - 2.70128 0.90292 -1.85076 - 2.82769 0.90292 -1.78742 - 2.95410 0.90292 -1.72466 - 2.95402 0.90476 -1.72466 - 3.07164 0.90476 -1.66693 - 3.18926 0.90476 -1.60975 - 3.30687 0.90476 -1.55313 - 3.42449 0.90476 -1.49710 - 3.54211 0.90476 -1.44167 - 3.54229 0.90442 -1.44167 - 3.65987 0.90442 -1.38687 - 3.77744 0.90442 -1.33273 - 3.89502 0.90442 -1.27925 - 4.01259 0.90442 -1.22646 - 4.13016 0.90442 -1.17439 - 4.13016 0.90440 -1.17439 - 4.26537 0.90440 -1.11541 - 4.40057 0.90440 -1.05743 - 4.53578 0.90440 -1.00049 - 4.67099 0.90440 -0.94461 - 4.80620 0.90440 -0.88982 - 4.80620 0.90440 -0.88982 - 4.94140 0.90440 -0.83616 - 5.07661 0.90440 -0.78366 - 5.21182 0.90440 -0.73236 - 5.34703 0.90440 -0.68227 - 5.48223 0.90440 -0.63344 - 5.48086 0.91140 -0.63344 - 5.61711 0.91140 -0.58590 - 5.75337 0.91140 -0.53968 - 5.88962 0.91140 -0.49480 - 6.02587 0.91140 -0.45131 - 6.16213 0.91140 -0.40923 - 6.16411 0.92356 -0.40923 - 6.30218 0.92356 -0.36860 - 6.44026 0.92356 -0.32944 - 6.57833 0.92356 -0.29180 - 6.71640 0.92356 -0.25570 - 6.85447 0.92356 -0.22117 - 6.85532 0.93804 -0.22117 - 6.85719 0.93804 -0.22072 - 6.85907 0.93804 -0.22027 - 6.86094 0.93804 -0.21982 - 6.86282 0.93804 -0.21937 - 6.86470 0.93804 -0.21892 - 6.86470 0.93801 -0.21892 - 6.90034 0.93801 -0.21043 - 6.93599 0.93801 -0.20204 - 6.97163 0.93801 -0.19376 - 7.00728 0.93801 -0.18558 - 7.04292 0.93801 -0.17751 - 7.04302 0.93704 -0.17751 - 7.15546 0.93704 -0.15272 - 7.26791 0.93704 -0.12902 - 7.38035 0.93704 -0.10642 - 7.49280 0.93704 -0.08493 - 7.60524 0.93704 -0.06457 - 7.60515 0.93589 -0.06457 - 7.66130 0.93589 -0.05483 - 7.71746 0.93589 -0.04537 - 7.77361 0.93589 -0.03620 - 7.82976 0.93589 -0.02733 - 7.88591 0.93589 -0.01875 - 7.88641 0.92227 -0.01875 - 7.96121 0.62391 -0.00631 - 7.99238 0.07544 0.00543 - 7.97750 -0.38840 0.01648 - 7.92422 -0.76899 0.02684 - 7.83989 -1.07242 0.03652 - 7.83972 -1.06976 0.03652 - 7.73212 -1.28339 0.04551 - 7.60840 -1.42265 0.05382 - 7.47556 -1.48426 0.06148 - 7.34058 -1.46958 0.06849 - 7.20943 -1.41065 0.07485 - 7.20945 -1.41037 0.07485 - 7.07026 -1.37294 0.08113 - 6.93496 -1.33267 0.08666 - 6.80381 -1.28992 0.09147 - 6.67704 -1.24503 0.09556 - 6.55486 -1.19835 0.09895 - 6.55300 -1.16735 0.09895 - 6.31554 -2.18605 0.10253 - 5.95174 -2.97259 0.10481 - 5.49367 -3.53511 0.10589 - 4.97171 -3.88760 0.10584 - 4.41401 -4.05004 0.10477 - 4.41425 -4.04766 0.10477 - 3.84828 -4.01129 0.10279 - 3.29862 -3.81355 0.10002 - 2.78688 -3.47883 0.09656 - 2.32672 -3.09762 0.09252 - 1.91874 -2.73367 0.08801 - 1.91877 -2.73298 0.08801 - 1.56053 -2.38802 0.08310 - 1.24917 -2.06347 0.07788 - 0.98175 -1.76052 0.07239 - 0.75517 -1.48011 0.06670 - 0.56623 -1.22299 0.06084 - 0.56625 -1.22277 0.06084 - 0.41167 -0.98946 0.05488 - 0.28807 -0.78035 0.04884 - 0.19203 -0.59574 0.04273 - 0.12011 -0.43585 0.03658 - 0.06883 -0.30081 0.03040 - 0.06884 -0.30078 0.03040 - 0.03473 -0.19067 0.02422 - 0.01428 -0.10552 0.01802 - 0.00401 -0.04535 0.01182 - 0.00042 -0.01017 0.00562 - 0.00000 0.00000 -0.00058 + 0.00000 0.00000 -4.75165 + 0.00000 0.00000 -4.70688 + 0.00000 0.00000 -4.66211 + 0.00000 0.00000 -4.61733 + 0.00000 0.00000 -4.57256 + 0.00000 0.00000 -4.52779 + 0.00000 0.00000 -4.52779 + 0.00000 0.00000 -4.48302 + 0.00000 0.00000 -4.43825 + 0.00000 0.00000 -4.39348 + 0.00000 0.00000 -4.34871 + 0.00000 0.00000 -4.30394 + 0.00000 0.00000 -4.30394 + 0.00000 0.00000 -4.24424 + 0.00000 0.00000 -4.18455 + 0.00000 0.00000 -4.12485 + 0.00000 0.00000 -4.06516 + 0.00000 0.00000 -4.00546 + 0.00000 0.00000 -4.00546 + 0.00000 0.00000 -3.95571 + 0.00000 0.00000 -3.90597 + 0.00000 0.00000 -3.85622 + 0.00000 0.00000 -3.80648 + 0.00000 0.00000 -3.75673 + 0.00000 0.00000 -3.75673 + 0.00000 0.00000 -3.70698 + 0.00000 0.00000 -3.65724 + 0.00000 0.00000 -3.60749 + 0.00000 0.00000 -3.55775 + 0.00000 0.00000 -3.50800 + 0.00000 0.00000 -3.50800 + 0.00000 0.00000 -3.46522 + 0.00000 0.00000 -3.42244 + 0.00000 0.00000 -3.37966 + 0.00000 0.00000 -3.33688 + 0.00000 0.00000 -3.29409 + 0.00000 0.92113 -3.29409 + 0.10501 0.92113 -3.23739 + 0.21002 0.92113 -3.18069 + 0.31503 0.92113 -3.12403 + 0.42003 0.92113 -3.06741 + 0.52504 0.92113 -3.01084 + 0.52615 0.89951 -3.01084 + 0.59811 0.89951 -2.97119 + 0.67007 0.89951 -2.93158 + 0.74203 0.89951 -2.89201 + 0.81399 0.89951 -2.85249 + 0.88595 0.89951 -2.81303 + 0.88564 0.89721 -2.81303 + 0.90358 0.89721 -2.80317 + 0.92153 0.89721 -2.79332 + 0.93947 0.89721 -2.78347 + 0.95741 0.89721 -2.77363 + 0.97536 0.89721 -2.76378 + 0.97531 0.89775 -2.76378 + 1.06509 0.89775 -2.71464 + 1.15487 0.89775 -2.66561 + 1.24464 0.89775 -2.61670 + 1.33442 0.89775 -2.56793 + 1.42419 0.89775 -2.51929 + 1.42401 0.90396 -2.51929 + 1.51441 0.90396 -2.47080 + 1.60480 0.90396 -2.42247 + 1.69520 0.90396 -2.37431 + 1.78559 0.90396 -2.32632 + 1.87599 0.90396 -2.27853 + 1.87600 0.90448 -2.27853 + 1.96645 0.90448 -2.23093 + 2.05690 0.90448 -2.18354 + 2.14734 0.90448 -2.13636 + 2.23779 0.90448 -2.08941 + 2.32824 0.90448 -2.04269 + 2.32819 0.90530 -2.04269 + 2.45493 0.90530 -1.97771 + 2.58167 0.90530 -1.91322 + 2.70842 0.90530 -1.84927 + 2.83516 0.90530 -1.78587 + 2.96190 0.90530 -1.72306 + 2.96182 0.90715 -1.72306 + 3.07975 0.90715 -1.66528 + 3.19768 0.90715 -1.60804 + 3.31561 0.90715 -1.55138 + 3.43354 0.90715 -1.49530 + 3.55146 0.90715 -1.43983 + 3.55165 0.90681 -1.43983 + 3.66953 0.90681 -1.38499 + 3.78742 0.90681 -1.33080 + 3.90530 0.90681 -1.27728 + 4.02319 0.90681 -1.22446 + 4.14107 0.90681 -1.17235 + 4.14107 0.90679 -1.17235 + 4.27663 0.90679 -1.11333 + 4.41220 0.90679 -1.05532 + 4.54776 0.90679 -0.99834 + 4.68333 0.90679 -0.94243 + 4.81889 0.90679 -0.88762 + 4.81889 0.90679 -0.88762 + 4.95446 0.90679 -0.83393 + 5.09002 0.90679 -0.78142 + 5.22559 0.90679 -0.73009 + 5.36115 0.90679 -0.67999 + 5.49672 0.90679 -0.63115 + 5.49535 0.91378 -0.63115 + 5.63196 0.91378 -0.58360 + 5.76857 0.91378 -0.53737 + 5.90518 0.91378 -0.49249 + 6.04179 0.91378 -0.44900 + 6.17840 0.91378 -0.40693 + 6.18021 0.92868 -0.40693 + 6.31904 0.92868 -0.36631 + 6.45788 0.92868 -0.32717 + 6.59672 0.92868 -0.28954 + 6.73556 0.92868 -0.25346 + 6.87439 0.92868 -0.21897 + 6.87526 0.94325 -0.21897 + 6.87714 0.94325 -0.21851 + 6.87903 0.94325 -0.21806 + 6.88092 0.94325 -0.21761 + 6.88280 0.94325 -0.21716 + 6.88469 0.94325 -0.21671 + 6.88469 0.94322 -0.21671 + 6.92053 0.94322 -0.20823 + 6.95637 0.94322 -0.19985 + 6.99222 0.94322 -0.19157 + 7.02806 0.94322 -0.18341 + 7.06390 0.94322 -0.17534 + 7.06400 0.94226 -0.17534 + 7.17707 0.94226 -0.15059 + 7.29014 0.94226 -0.12692 + 7.40321 0.94226 -0.10435 + 7.51628 0.94226 -0.08290 + 7.62935 0.94226 -0.06259 + 7.62926 0.94112 -0.06259 + 7.68573 0.94112 -0.05287 + 7.74219 0.94112 -0.04343 + 7.79866 0.94112 -0.03429 + 7.85513 0.94112 -0.02545 + 7.91159 0.94112 -0.01690 + 7.91209 0.92748 -0.01690 + 7.98729 0.62680 -0.00450 + 8.01852 0.07379 0.00720 + 8.00329 -0.39441 0.01820 + 7.94927 -0.77919 0.02851 + 7.86383 -1.08660 0.03814 + 7.86377 -1.08675 0.03814 + 7.75445 -1.30414 0.04707 + 7.62868 -1.44693 0.05533 + 7.49347 -1.51180 0.06293 + 7.35585 -1.50012 0.06988 + 7.22186 -1.44203 0.07618 + 7.22186 -1.44184 0.07618 + 7.07955 -1.40378 0.08239 + 6.94120 -1.36292 0.08786 + 6.80705 -1.31961 0.09259 + 6.67734 -1.27420 0.09661 + 6.55227 -1.22703 0.09993 + 6.55039 -1.19558 0.09993 + 6.30878 -2.21665 0.10342 + 5.94067 -3.00310 0.10560 + 5.47848 -3.56308 0.10659 + 4.95293 -3.91057 0.10645 + 4.39250 -4.06561 0.10530 + 4.39274 -4.06323 0.10530 + 3.82496 -4.02016 0.10323 + 3.27487 -3.81043 0.10039 + 2.76421 -3.46856 0.09686 + 2.30556 -3.08632 0.09275 + 1.89922 -2.72160 0.08817 + 1.89925 -2.72092 0.08817 + 1.54274 -2.37543 0.08320 + 1.23317 -2.05059 0.07793 + 0.96756 -1.74756 0.07239 + 0.74279 -1.46729 0.06664 + 0.55562 -1.21049 0.06074 + 0.55564 -1.21028 0.06074 + 0.40278 -0.97747 0.05474 + 0.28081 -0.76905 0.04865 + 0.18629 -0.58530 0.04250 + 0.11576 -0.42643 0.03631 + 0.06572 -0.29257 0.03009 + 0.06573 -0.29254 0.03009 + 0.03268 -0.18377 0.02386 + 0.01310 -0.10011 0.01763 + 0.00347 -0.04159 0.01140 + 0.00028 -0.00822 0.00516 + 0.00000 0.00000 -0.00108 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -17050,7 +17186,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -17062,7 +17198,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -17229,53 +17365,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.00000 99.86890 0.05123 0.05123 1 0 A - 3.81421 100.76161 31.86408 3.83947 110 0 1 - 4.20418 101.65432 33.06586 4.18246 110 13 1 - 4.59139 102.54703 34.26739 4.52546 110 13 1 - 4.97584 103.43974 35.46867 4.86846 110 14 1 - 5.27178 104.33245 36.36949 5.12571 110 14 1 - 5.44327 104.33245 36.96996 5.29720 110 15 1 - 5.73648 105.22516 37.87056 5.55445 110 15 1 - 6.11274 106.11787 39.07118 5.89745 110 16 1 - 6.48636 107.01058 40.27161 6.24045 110 16 1 - 6.85739 107.90329 41.47185 6.58344 110 17 1 - 7.14011 108.79600 42.37192 6.84069 110 17 1 - 8.08194 108.79600 25.59840 7.93223 110 32 1 - 9.86721 106.77700 29.70475 9.70495 110 33 1 - 12.24190 104.75800 35.16081 12.06858 110 35 1 - 14.61514 102.73900 40.59674 14.43220 110 36 1 - 16.98694 100.72000 46.01595 16.79583 110 37 1 - 18.76644 98.70100 50.07174 18.56855 110 37 1 - 13.50656 98.70100 229.88374 12.31919 110 6 1 - 14.05249 100.07440 200.26957 12.82216 110 7 1 - 14.75050 101.44780 200.90889 13.49277 110 7 1 - 15.43402 102.82120 207.46715 14.16339 110 7 1 - 16.10413 104.19460 215.59855 14.83401 110 7 1 - 16.59427 105.56800 222.12669 15.33697 110 7 1 - 16.96590 105.56800 226.60771 15.70861 110 7 1 - 17.40876 106.94140 233.44973 16.17524 110 7 1 - 18.04612 108.31480 242.70650 16.84586 110 7 1 - 18.67525 109.68820 252.06828 17.51648 110 7 1 - 19.29739 111.06160 261.49732 18.18709 110 7 1 - 19.74613 112.43500 268.59852 18.69006 110 7 1 - 20.08144 112.43500 273.34448 19.02537 110 7 1 - 20.52558 113.80840 280.47714 19.52833 110 7 1 - 21.13353 115.18180 290.00539 20.19895 110 7 1 - 21.73829 116.55520 299.55031 20.86956 110 7 1 - 22.34054 117.92860 309.10779 21.54018 110 7 1 - 22.77328 119.30200 316.28211 22.04314 110 7 1 - 24.84851 119.30200 321.06773 24.11838 110 8 1 - 23.54003 120.67540 328.24957 22.88141 110 7 1 - 24.13812 122.04880 337.83018 23.55203 110 7 1 - 24.73543 123.42220 347.41558 24.22265 110 7 1 - 25.33222 124.79560 357.00485 24.89327 110 7 1 - 25.76106 126.16900 364.19883 25.39623 110 7 1 - 26.09637 126.16900 368.99576 25.73154 110 7 1 - 26.52509 127.54240 376.19237 26.23450 110 7 1 - 27.12139 128.91580 385.78963 26.90512 110 7 1 - 27.71762 130.28920 395.38873 27.57574 110 7 1 - 28.31383 131.66260 404.98939 28.24635 110 7 1 - 28.74239 133.03600 412.19072 28.74932 110 0 1 + 3.82146 100.76161 31.86408 3.83947 110 0 1 + 4.21125 101.65432 33.06586 4.18246 110 13 1 + 4.59827 102.54703 34.26739 4.52546 110 13 1 + 4.98251 103.43974 35.46867 4.86846 110 14 1 + 5.27825 104.33245 36.36949 5.12571 110 15 1 + 5.44975 104.33245 36.96996 5.29720 110 15 1 + 5.74273 105.22516 37.87056 5.55445 110 15 1 + 6.11877 106.11787 39.07118 5.89745 110 16 1 + 6.49216 107.01058 40.27161 6.24045 110 16 1 + 6.86295 107.90329 41.47185 6.58344 110 17 1 + 7.14543 108.79600 42.37192 6.84069 110 17 1 + 8.08460 108.79600 25.59840 7.93223 110 32 1 + 9.86973 106.77700 29.70475 9.70495 110 33 1 + 12.24429 104.75800 35.16081 12.06858 110 35 1 + 14.61739 102.73900 40.59674 14.43220 110 36 1 + 16.98905 100.72000 46.01595 16.79583 110 37 1 + 18.76841 98.70100 50.07174 18.56855 110 37 1 + 13.51838 98.70100 229.88374 12.31919 110 6 1 + 14.06315 100.07440 200.26957 12.82216 110 7 1 + 14.76002 101.44780 200.90889 13.49277 110 7 1 + 15.44241 102.82120 207.46715 14.16339 110 7 1 + 16.11144 104.19460 215.59855 14.83401 110 7 1 + 16.60054 105.56800 222.12669 15.33697 110 7 1 + 16.93585 105.56800 226.60771 15.67228 110 7 1 + 17.41405 106.94140 233.44973 16.17524 110 7 1 + 18.05049 108.31480 242.70650 16.84586 110 7 1 + 18.67874 109.68820 252.06828 17.51648 110 7 1 + 19.30007 111.06160 261.49732 18.18709 110 7 1 + 19.74805 112.43500 268.59852 18.69006 110 7 1 + 20.08336 112.43500 273.34448 19.02537 110 7 1 + 20.52679 113.80840 280.47714 19.52833 110 7 1 + 21.13406 115.18180 290.00539 20.19895 110 7 1 + 21.73820 116.55520 299.55031 20.86956 110 7 1 + 22.33985 117.92860 309.10779 21.54018 110 7 1 + 22.77203 119.30200 316.28211 22.04314 110 7 1 + 23.10734 119.30200 321.06773 22.37845 110 7 1 + 23.53825 120.67540 328.24957 22.88141 110 7 1 + 24.13582 122.04880 337.83018 23.55203 110 7 1 + 24.73264 123.42220 347.41558 24.22265 110 7 1 + 25.32894 124.79560 357.00485 24.89327 110 7 1 + 25.75731 126.16900 364.19883 25.39623 110 7 1 + 26.09262 126.16900 368.99576 25.73154 110 7 1 + 26.52088 127.54240 376.19237 26.23450 110 7 1 + 27.11671 128.91580 385.78963 26.90512 110 7 1 + 27.71249 130.28920 395.38873 27.57574 110 7 1 + 28.30824 131.66260 404.98939 28.24635 110 7 1 + 28.73634 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17293,9 +17429,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 4.705 'Hydrobiaklei' - -12.00 6.714 'Basisveen' - -12.50 74.828 'Eerste zandlaag' + -10.00 4.711 'Hydrobiaklei' + -12.00 6.715 'Basisveen' + -12.50 74.708 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -17317,7 +17453,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.72 'Eerste zandlaag' + -12.50 -28.68 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -17546,7 +17682,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -17558,7 +17694,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -17725,53 +17861,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 9.22757 100.76161 31.86408 3.83947 110 29 1 - 8.83607 101.65432 33.06586 4.18246 110 27 1 - 8.45459 102.54703 34.26739 4.52546 110 25 1 - 8.08316 103.43974 35.46867 4.86846 110 23 1 - 7.72181 104.33245 36.36949 5.12571 110 21 1 - 7.72181 104.33245 36.96996 5.29720 110 21 1 - 7.37055 105.22516 37.87056 5.55445 110 19 1 - 7.02934 106.11787 39.07118 5.89745 110 18 1 - 6.69810 107.01058 40.27161 6.24045 110 17 1 - 6.37681 107.90329 41.47185 6.58344 110 0 1 - 6.54127 108.79600 42.37192 6.84069 110 0 1 - 7.78252 108.79600 25.59840 7.93223 110 0 1 - 9.54269 106.77700 29.70475 9.70495 110 0 1 - 11.89525 104.75800 35.16081 12.06858 110 0 1 - 14.24927 102.73900 40.59674 14.43220 110 0 1 - 16.60471 100.72000 46.01595 16.79583 110 0 1 - 18.37065 98.70100 50.07174 18.56855 110 0 1 - 20.26440 98.70100 229.88374 12.31919 110 9 1 - 19.42197 100.07440 200.26957 12.82216 110 10 1 - 18.74456 101.44780 200.90889 13.49277 110 9 1 - 18.13669 102.82120 207.46715 14.16339 110 9 1 - 17.59778 104.19460 215.59855 14.83401 110 8 1 - 17.03445 105.56800 222.12669 15.33697 110 8 1 - 17.21951 105.56800 226.60771 15.70861 110 8 1 - 16.72212 106.94140 233.44973 16.17524 110 7 1 - 16.37880 108.31480 242.70650 16.84586 110 0 1 - 16.35770 109.68820 252.06828 17.51648 110 0 1 - 17.07680 111.06160 261.49732 18.18709 110 0 1 - 17.63398 112.43500 268.59852 18.69006 110 0 1 - 17.96929 112.43500 273.34448 19.02537 110 0 1 - 18.53108 113.80840 280.47714 19.52833 110 0 1 - 19.26436 115.18180 290.00539 20.19895 110 0 1 - 20.00083 116.55520 299.55031 20.86956 110 0 1 - 20.73982 117.92860 309.10779 21.54018 110 0 1 - 21.31301 119.30200 316.28211 22.04314 110 0 1 - 23.38824 119.30200 321.06773 24.11838 110 0 1 - 22.22280 120.67540 328.24957 22.88141 110 0 1 - 22.96594 122.04880 337.83018 23.55203 110 0 1 - 23.70986 123.42220 347.41558 24.22265 110 0 1 - 24.45431 124.79560 357.00485 24.89327 110 0 1 - 25.03140 126.16900 364.19883 25.39623 110 0 1 - 25.36671 126.16900 368.99576 25.73154 110 0 1 - 25.94391 127.54240 376.19237 26.23450 110 0 1 - 26.68885 128.91580 385.78963 26.90512 110 0 1 - 27.43385 130.28920 395.38873 27.57574 110 0 1 - 28.17888 131.66260 404.98939 28.24635 110 0 1 - 28.75624 133.03600 412.19072 28.74932 110 7 1 + 9.27714 100.76161 31.86408 3.83947 110 29 1 + 8.88398 101.65432 33.06586 4.18246 110 27 1 + 8.50068 102.54703 34.26739 4.52546 110 25 1 + 8.12727 103.43974 35.46867 4.86846 110 23 1 + 7.76378 104.33245 36.36949 5.12571 110 21 1 + 7.76378 104.33245 36.96996 5.29720 110 21 1 + 7.41020 105.22516 37.87056 5.55445 110 20 1 + 7.06649 106.11787 39.07118 5.89745 110 18 1 + 6.73261 107.01058 40.27161 6.24045 110 17 1 + 6.40852 107.90329 41.47185 6.58344 110 0 1 + 6.53595 108.79600 42.37192 6.84069 110 0 1 + 7.77986 108.79600 25.59840 7.93223 110 0 1 + 9.54017 106.77700 29.70475 9.70495 110 0 1 + 11.89286 104.75800 35.16081 12.06858 110 0 1 + 14.24702 102.73900 40.59674 14.43220 110 0 1 + 16.60260 100.72000 46.01595 16.79583 110 0 1 + 18.36868 98.70100 50.07174 18.56855 110 0 1 + 20.29764 98.70100 229.88374 12.31919 110 9 1 + 19.43948 100.07440 200.26957 12.82216 110 10 1 + 18.74623 101.44780 200.90889 13.49277 110 9 1 + 18.12259 102.82120 207.46715 14.16339 110 9 1 + 17.56812 104.19460 215.59855 14.83401 110 8 1 + 16.98958 105.56800 222.12669 15.33697 110 8 1 + 17.17464 105.56800 226.60771 15.67228 110 8 1 + 16.66253 106.94140 233.44973 16.17524 110 7 1 + 16.30523 108.31480 242.70650 16.84586 110 0 1 + 16.35421 109.68820 252.06828 17.51648 110 0 1 + 17.07412 111.06160 261.49732 18.18709 110 0 1 + 17.63207 112.43500 268.59852 18.69006 110 0 1 + 17.96737 112.43500 273.34448 19.02537 110 0 1 + 18.52987 113.80840 280.47714 19.52833 110 0 1 + 19.26383 115.18180 290.00539 20.19895 110 0 1 + 20.00093 116.55520 299.55031 20.86956 110 0 1 + 20.74051 117.92860 309.10779 21.54018 110 0 1 + 21.31426 119.30200 316.28211 22.04314 110 0 1 + 21.64957 119.30200 321.06773 22.37845 110 0 1 + 22.22458 120.67540 328.24957 22.88141 110 0 1 + 22.96825 122.04880 337.83018 23.55203 110 0 1 + 23.71266 123.42220 347.41558 24.22265 110 0 1 + 24.45760 124.79560 357.00485 24.89327 110 0 1 + 25.03515 126.16900 364.19883 25.39623 110 0 1 + 25.37046 126.16900 368.99576 25.73154 110 0 1 + 25.94813 127.54240 376.19237 26.23450 110 0 1 + 26.69353 128.91580 385.78963 26.90512 110 0 1 + 27.43898 130.28920 395.38873 27.57574 110 0 1 + 28.18447 131.66260 404.98939 28.24635 110 0 1 + 28.76229 133.03600 412.19072 28.74932 110 7 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -17789,9 +17925,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 6.652 'Hydrobiaklei' - -12.00 6.537 'Basisveen' - -12.50 73.858 'Eerste zandlaag' + -10.00 6.685 'Hydrobiaklei' + -12.00 6.536 'Basisveen' + -12.50 73.715 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -17811,9 +17947,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 1.41 'Hydrobiaklei' + -10.00 1.42 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.35 'Eerste zandlaag' + -12.50 28.30 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -18035,8 +18171,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 436.86221 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 311.43311 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 436.85976 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 311.50505 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -18077,10 +18213,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 9.24 : Percentage mobilized resistance left - 8.33 : Percentage mobilized resistance right - 47.05 : Effective left - 90.87 : Effective right + 9.26 : Percentage mobilized resistance left + 8.34 : Percentage mobilized resistance right + 47.12 : Effective left + 91.02 : Effective right 774.66 : Water pressure left 1112.88 : Water pressure right 508.96 : Max effective resistance left @@ -18089,8 +18225,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.68 : Vertical force left - 30.51 : Vertical force right + 14.73 : Vertical force left + 30.56 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -18099,10 +18235,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --30.51 : Active force -14.68 : Passive force --30.51 : Plugged active force -14.68 : Plugged passive force +-30.56 : Active force +14.73 : Passive force +-30.56 : Plugged active force +14.73 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -18122,192 +18258,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.37390 - 0.00000 0.00000 6.99547 - 0.00000 0.00000 6.61704 - 0.00000 0.00000 6.23861 - 0.00000 0.00000 5.86019 - 0.00000 0.00000 5.48176 - 0.00000 0.00000 5.48176 - 0.00000 0.00000 5.10333 - 0.00000 0.00000 4.72490 - 0.00000 0.00000 4.34647 - 0.00000 0.00000 3.96804 - 0.00000 0.00000 3.58962 - 0.00000 0.00000 3.58962 - 0.00339 0.08476 3.08505 - 0.02712 0.33903 2.58048 - 0.09154 0.76283 2.07591 - 0.21698 1.35613 1.57131 - 0.42379 2.11896 1.06668 - 0.42379 2.11896 1.06668 - 0.67297 2.88414 0.64612 - 1.00454 3.76704 0.22548 - 1.43030 4.76766 -0.19526 - 1.96200 5.88600 -0.61617 - 2.61142 7.12206 -1.03728 - 2.61142 7.12206 -1.03728 - 3.39034 8.47584 -1.45865 - 4.31051 9.94734 -1.88037 - 5.38373 11.53656 -2.30256 - 6.62175 13.24350 -2.72534 - 8.03635 15.06816 -3.14880 - 8.03635 15.06816 -3.14880 - 9.40311 16.73152 -3.51363 - 10.91667 18.48195 -3.87920 - 12.58450 20.31944 -4.24562 - 14.41411 22.24399 -4.61303 - 16.41297 24.25562 -4.98155 - 16.41297 -122.80659 -4.98155 - 2.57121 -120.00582 -5.47164 - -10.94255 -117.05206 -5.96206 - -24.11085 -113.94531 -6.45104 - -36.91626 -110.68557 -6.93678 - -49.34135 -107.27285 -7.41747 - -49.34024 -107.29445 -7.41747 - -57.82485 -104.80820 -7.75085 - -66.10755 -102.24661 -8.08034 - -74.18230 -99.60969 -8.40541 - -82.04309 -96.89742 -8.72550 - -89.68388 -94.10981 -9.04008 - -89.68419 -94.11210 -9.04008 - -91.55935 -93.40342 -9.11780 - -93.42030 -92.69004 -9.19514 - -95.26692 -91.97195 -9.27208 - -97.09914 -91.24915 -9.34863 - -98.91686 -90.52164 -9.42476 - -98.91690 -90.52110 -9.42476 - -107.78458 -86.81292 -9.79904 - -116.27556 -82.98702 -10.16199 - -124.37806 -79.04340 -10.51278 - -132.08032 -74.98206 -10.85054 - -139.37055 -70.80300 -11.17444 - -139.37073 -70.79680 -11.17444 - -146.23852 -66.55888 -11.48366 - -152.68251 -62.32096 -11.77751 - -158.70271 -58.08304 -12.05538 - -164.29912 -53.84512 -12.31663 - -169.47173 -49.60720 -12.56063 - -169.47172 -49.60668 -12.56063 - -174.22049 -45.36876 -12.78678 - -178.54547 -41.13084 -12.99464 - -182.44666 -36.89292 -13.18379 - -185.92406 -32.65500 -13.35383 - -188.97766 -28.41708 -13.50435 - -188.97771 -28.41626 -13.50435 - -192.54067 -22.48317 -13.68154 - -195.27300 -16.55008 -13.81909 - -197.17470 -10.61699 -13.91662 - -198.24576 -4.68390 -13.97374 - -198.48619 1.24918 -13.99005 - -198.48627 1.25103 -13.99005 - -197.96553 6.76032 -13.96845 - -196.72859 12.26962 -13.91171 - -194.77543 17.77891 -13.82019 - -192.10607 23.28821 -13.69423 - -188.72050 28.79751 -13.53417 - -188.72032 28.79716 -13.53417 - -184.61858 34.30646 -13.34048 - -179.80064 39.81576 -13.11401 - -174.26649 45.32505 -12.85577 - -168.01613 50.83435 -12.56672 - -161.04956 56.34364 -12.24786 - -161.04956 56.34362 -12.24786 - -152.15260 62.67931 -11.84569 - -142.30845 69.01500 -11.40780 - -131.51711 75.35069 -10.93673 - -119.77859 81.68638 -10.43500 - -107.09288 88.02207 -9.90515 - -107.09288 88.02207 -9.90515 - -93.45999 94.35776 -9.34990 - -78.87991 100.69345 -8.77269 - -63.35265 107.02914 -8.17719 - -46.87820 113.36483 -7.56702 - -29.45656 119.70053 -6.94583 - -29.45794 119.70753 -6.94583 - -11.08807 126.04322 -6.31746 - 8.22899 132.37891 -5.68646 - 28.49322 138.71460 -5.05760 - 49.70465 145.05029 -4.43563 - 71.86326 151.38598 -3.82530 - 71.86524 151.39814 -3.82530 - 94.97286 157.73383 -3.23156 - 119.02766 164.06952 -2.66008 - 144.02965 170.40521 -2.11673 - 169.97882 176.74090 -1.60738 - 196.87518 183.07659 -1.13790 - 196.87602 183.09107 -1.13790 - 197.24227 183.15765 -1.13191 - 197.60864 183.20641 -1.12594 - 197.97510 183.25524 -1.11997 - 198.34166 183.30416 -1.11401 - 198.70832 183.35312 -1.10806 - 198.70832 183.35310 -1.10806 - 205.69361 184.29567 -0.99660 - 212.71496 185.25202 -0.88826 - 219.77298 186.22535 -0.78315 - 226.86830 187.21567 -0.68136 - 234.00154 188.21976 -0.58302 - 234.00164 -123.21432 -0.58302 - 219.41433 -119.88993 -0.29528 - 205.23355 -116.42817 -0.04070 - 191.47834 -112.79707 0.18280 - 178.16903 -108.99662 0.37729 - 165.32465 -105.05880 0.54484 - 165.32455 -105.05995 0.54484 - 159.08675 -102.86840 0.61916 - 152.98014 -100.68722 0.68746 - 147.00405 -98.51789 0.74997 - 141.15776 -96.36041 0.80692 - 135.44059 -94.21330 0.85854 - 135.44111 -94.22926 0.85854 - 126.99498 -91.36582 0.92715 - 118.81729 -88.34556 0.98472 - 110.91924 -85.22126 1.03195 - 103.30988 -82.00247 1.06950 - 95.99710 -78.70757 1.09808 - 95.99696 -78.70225 1.09808 - 88.98894 -75.31124 1.11834 - 82.29213 -71.86030 1.13087 - 75.91224 -68.34728 1.13622 - 69.85460 -64.77902 1.13494 - 64.12284 -61.19828 1.12760 - 64.12291 -61.19783 1.12760 - 58.16779 -57.91044 1.11316 - 52.53786 -54.71181 1.09261 - 47.22064 -51.65669 1.06652 - 42.20068 -48.77677 1.03544 - 37.45674 -46.15314 0.99993 - 37.45571 -46.14004 0.99993 - 31.26753 -42.24386 0.94383 - 25.62831 -38.32881 0.88129 - 20.53172 -34.49392 0.81338 - 15.96582 -30.74901 0.74115 - 11.91714 -27.10820 0.66564 - 11.91722 -27.10420 0.66564 - 8.37282 -23.55091 0.58781 - 5.31751 -20.11455 0.50826 - 2.73559 -16.78865 0.42753 - 0.61145 -13.57505 0.34615 - -1.07110 -10.48301 0.26466 - -1.06951 -10.45799 0.26466 - -2.32938 -7.59466 0.18348 - -3.21125 -5.05766 0.10278 - -3.76065 -2.84482 0.02269 - -4.02280 -0.95347 -0.05669 - -4.04248 0.61951 -0.13523 - -4.04248 0.61823 -0.13523 - -3.85057 2.02247 -0.21289 - -3.49755 2.96903 -0.28976 - -3.03364 3.60707 -0.36592 - -2.50185 3.93923 -0.44148 - -1.94482 3.96779 -0.51652 - -1.94487 3.96711 -0.51652 - -1.36819 4.08915 -0.59116 - -0.83237 3.51555 -0.66553 - -0.39781 2.64249 -0.73970 - -0.10642 1.47057 -0.81377 - 0.00001 0.00006 -0.88782 + 0.00000 0.00000 7.37240 + 0.00000 0.00000 6.99402 + 0.00000 0.00000 6.61564 + 0.00000 0.00000 6.23726 + 0.00000 0.00000 5.85888 + 0.00000 0.00000 5.48049 + 0.00000 0.00000 5.48049 + 0.00000 0.00000 5.10211 + 0.00000 0.00000 4.72373 + 0.00000 0.00000 4.34535 + 0.00000 0.00000 3.96697 + 0.00000 0.00000 3.58859 + 0.00000 0.00000 3.58859 + 0.00339 0.08476 3.08408 + 0.02712 0.33903 2.57958 + 0.09154 0.76283 2.07507 + 0.21698 1.35613 1.57053 + 0.42379 2.11896 1.06596 + 0.42379 2.11896 1.06596 + 0.67297 2.88414 0.64545 + 1.00454 3.76704 0.22487 + 1.43030 4.76766 -0.19582 + 1.96200 5.88600 -0.61668 + 2.61142 7.12206 -1.03774 + 2.61142 7.12206 -1.03774 + 3.39034 8.47584 -1.45905 + 4.31051 9.94734 -1.88073 + 5.38373 11.53656 -2.30286 + 6.62175 13.24350 -2.72558 + 8.03635 15.06816 -3.14900 + 8.03635 15.06816 -3.14900 + 9.40311 16.73152 -3.51379 + 10.91667 18.48195 -3.87930 + 12.58450 20.31944 -4.24568 + 14.41411 22.24399 -4.61304 + 16.41297 24.25562 -4.98152 + 16.41297 -122.80414 -4.98152 + 2.57149 -120.00337 -5.47155 + -10.94199 -117.04961 -5.96192 + -24.11001 -113.94286 -6.45084 + -36.91515 -110.68312 -6.93651 + -49.33995 -107.27040 -7.41715 + -49.33885 -107.29202 -7.41715 + -57.82326 -104.80577 -7.75049 + -66.10576 -102.24418 -8.07994 + -74.18032 -99.60725 -8.40496 + -82.04091 -96.89498 -8.72501 + -89.68151 -94.10738 -9.03955 + -89.68182 -94.10967 -9.03955 + -91.55693 -93.40099 -9.11726 + -93.41783 -92.68761 -9.19459 + -95.26441 -91.96952 -9.27152 + -97.09658 -91.24672 -9.34806 + -98.91424 -90.51921 -9.42418 + -98.91429 -90.51867 -9.42418 + -107.78173 -86.81049 -9.79841 + -116.27246 -82.98459 -10.16131 + -124.37472 -79.04097 -10.51205 + -132.07673 -74.97963 -10.84976 + -139.36672 -70.80057 -11.17361 + -139.36690 -70.79437 -11.17361 + -146.23444 -66.55645 -11.48278 + -152.67819 -62.31853 -11.77659 + -158.69815 -58.08061 -12.05441 + -164.29431 -53.84269 -12.31561 + -169.46669 -49.60477 -12.55956 + -169.46667 -49.60425 -12.55956 + -174.21520 -45.36633 -12.78566 + -178.53994 -41.12841 -12.99348 + -182.44088 -36.89049 -13.18258 + -185.91804 -32.65257 -13.35258 + -188.97140 -28.41465 -13.50306 + -188.97145 -28.41382 -13.50306 + -192.53407 -22.48073 -13.68018 + -195.26605 -16.54764 -13.81768 + -197.16741 -10.61456 -13.91515 + -198.23813 -4.68147 -13.97221 + -198.47822 1.25162 -13.98847 + -198.47830 1.25347 -13.98847 + -197.95725 6.76276 -13.96682 + -196.71998 12.27206 -13.91003 + -194.76651 17.78135 -13.81846 + -192.09683 23.29065 -13.69246 + -188.71094 28.79995 -13.53236 + -188.71076 28.79961 -13.53236 + -184.60871 34.30891 -13.33862 + -179.79045 39.81820 -13.11212 + -174.25598 45.32750 -12.85384 + -168.00530 50.83679 -12.56476 + -161.03841 56.34609 -12.24586 + -161.03841 56.34607 -12.24586 + -152.14108 62.68176 -11.84365 + -142.29657 69.01745 -11.40573 + -131.50487 75.35314 -10.93463 + -119.76598 81.68883 -10.43287 + -107.07991 88.02452 -9.90300 + -107.07991 88.02452 -9.90300 + -93.44665 94.36021 -9.34772 + -78.86621 100.69590 -8.77050 + -63.33858 107.03159 -8.17497 + -46.86376 113.36728 -7.56479 + -29.44176 119.70297 -6.94360 + -29.44313 119.70996 -6.94360 + -11.07290 126.04565 -6.31522 + 8.24452 132.38134 -5.68422 + 28.50912 138.71703 -5.05536 + 49.72091 145.05272 -4.43339 + 71.87989 151.38841 -3.82307 + 71.88169 151.40331 -3.82307 + 94.99008 157.73900 -3.22934 + 119.04566 164.07469 -2.65788 + 144.04842 170.41038 -2.11456 + 169.99836 176.74607 -1.60523 + 196.89549 183.08176 -1.13578 + 196.89635 183.09633 -1.13578 + 197.26262 183.16291 -1.12979 + 197.62899 183.21167 -1.12382 + 197.99547 183.26050 -1.11785 + 198.36204 183.30942 -1.11189 + 198.72870 183.35838 -1.10594 + 198.72870 183.35836 -1.10594 + 205.71420 184.30093 -0.99449 + 212.73575 185.25728 -0.88616 + 219.79397 186.23061 -0.78106 + 226.88949 187.22093 -0.67928 + 234.02293 188.22502 -0.58095 + 234.02303 -123.28099 -0.58095 + 219.42772 -119.95661 -0.29324 + 205.23894 -116.49485 -0.03869 + 191.47573 -112.86374 0.18477 + 178.15841 -109.06330 0.37922 + 165.30603 -105.12547 0.54674 + 165.30594 -105.12662 0.54674 + 159.06413 -102.93506 0.62104 + 152.95352 -100.75388 0.68932 + 146.97343 -98.58455 0.75182 + 141.12314 -96.42707 0.80876 + 135.40197 -94.27997 0.86037 + 135.40249 -94.29595 0.86037 + 126.95035 -91.43286 0.92897 + 118.76634 -88.41712 0.98653 + 110.86159 -85.29715 1.03374 + 103.24514 -82.08245 1.07130 + 95.92490 -78.79140 1.09988 + 95.92487 -78.78889 1.09988 + 88.90879 -75.40145 1.12015 + 82.20363 -71.95378 1.13270 + 75.81510 -68.44371 1.13807 + 69.74856 -64.87805 1.13683 + 64.00773 -61.29810 1.12953 + 64.00778 -61.29773 1.12953 + 58.04933 -57.91010 1.11515 + 52.41949 -54.71050 1.09467 + 47.10245 -51.65436 1.06866 + 42.08277 -48.77367 1.03768 + 37.33917 -46.14949 1.00228 + 37.33811 -46.13584 1.00228 + 31.14994 -42.24455 0.94635 + 25.51099 -38.32422 0.88401 + 20.41543 -34.48362 0.81632 + 15.85140 -30.73255 0.74433 + 11.80549 -27.08505 0.66909 + 11.80574 -27.08177 0.66909 + 8.26469 -23.52428 0.59155 + 5.21365 -20.08007 0.51232 + 2.63714 -16.74565 0.43192 + 0.51966 -13.52285 0.35090 + -1.15479 -10.41880 0.26977 + -1.15467 -10.41889 0.26977 + -2.40759 -7.53413 0.18899 + -3.27938 -4.97409 0.10870 + -3.81538 -2.73654 0.02903 + -4.06054 -0.81876 -0.04992 + -4.05941 0.78241 -0.12802 + -4.05941 0.78113 -0.12802 + -3.85626 2.06918 -0.20523 + -3.49450 3.04750 -0.28165 + -3.01727 3.71910 -0.35738 + -2.46734 4.08661 -0.43250 + -1.88711 4.15227 -0.50710 + -1.88715 4.15161 -0.50710 + -1.31884 3.91724 -0.58132 + -0.80426 3.38416 -0.65527 + -0.38517 2.55326 -0.72904 + -0.10322 1.42514 -0.80271 + 0.00001 0.00005 -0.87635 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -18533,7 +18669,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -18545,7 +18681,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -18712,53 +18848,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 7.54808 100.76161 31.86408 3.83947 110 24 1 - 8.12136 101.65432 33.06586 4.18246 110 25 1 - 8.65324 102.54703 34.26739 4.52546 110 25 1 - 9.14646 103.43974 35.46867 4.86846 110 26 1 - 9.51801 104.33245 36.36949 5.12571 110 26 1 - 9.68951 104.33245 36.96996 5.29720 110 26 1 - 10.02781 105.22516 37.87056 5.55445 110 26 1 - 10.42093 106.11787 39.07118 5.89745 110 27 1 - 10.78532 107.01058 40.27161 6.24045 110 27 1 - 11.12322 107.90329 41.47185 6.58344 110 27 1 - 11.35109 108.79600 42.37192 6.84069 110 27 1 - 10.18743 108.79600 25.59840 7.93223 110 40 1 - 11.93126 106.77700 29.70475 9.70495 110 40 1 - 14.25379 104.75800 35.16081 12.06858 110 41 1 - 16.56524 102.73900 40.59674 14.43220 110 41 1 - 18.86670 100.72000 46.01595 16.79583 110 41 1 - 20.56841 98.70100 50.07174 18.56855 110 41 1 - 24.31839 98.70100 229.88374 12.31919 110 11 1 - 24.14806 100.07440 200.26957 12.82216 110 12 1 - 24.06828 101.44780 200.90889 13.49277 110 12 1 - 23.92400 102.82120 207.46715 14.16339 110 12 1 - 23.72782 104.19460 215.59855 14.83401 110 11 1 - 23.32468 105.56800 222.12669 15.33697 110 11 1 - 23.69632 105.56800 226.60771 15.70861 110 10 1 - 23.22897 106.94140 233.44973 16.17524 110 10 1 - 22.94502 108.31480 242.70650 16.84586 110 9 1 - 22.64687 109.68820 252.06828 17.51648 110 9 1 - 22.34093 111.06160 261.49732 18.18709 110 9 1 - 21.86593 112.43500 268.59852 18.69006 110 8 1 - 22.20123 112.43500 273.34448 19.02537 110 8 1 - 21.73008 113.80840 280.47714 19.52833 110 8 1 - 21.43236 115.18180 290.00539 20.19895 110 7 1 - 21.14182 116.55520 299.55031 20.86956 110 7 1 - 20.85991 117.92860 309.10779 21.54018 110 0 1 - 20.42038 119.30200 316.28211 22.04314 110 0 1 - 22.49561 119.30200 321.06773 24.11838 110 0 1 - 20.32675 120.67540 328.24957 22.88141 110 0 1 - 20.07496 122.04880 337.83018 23.55203 110 0 1 - 19.83156 123.42220 347.41558 24.22265 110 0 1 - 19.59549 124.79560 357.00485 24.89327 110 0 1 - 19.19799 126.16900 364.19883 25.39623 110 0 1 - 19.53330 126.16900 368.99576 25.73154 110 0 1 - 19.14055 127.54240 376.19237 26.23450 110 0 1 - 18.91877 128.91580 385.78963 26.90512 110 0 1 - 18.69928 130.28920 395.38873 27.57574 110 0 1 - 18.48108 131.66260 404.98939 28.24635 110 0 1 - 18.09551 133.03600 412.19072 28.74932 110 0 1 + 7.55534 100.76161 31.86408 3.83947 110 24 1 + 8.12858 101.65432 33.06586 4.18246 110 25 1 + 8.66043 102.54703 34.26739 4.52546 110 25 1 + 9.15365 103.43974 35.46867 4.86846 110 26 1 + 9.52522 104.33245 36.36949 5.12571 110 26 1 + 9.69671 104.33245 36.96996 5.29720 110 26 1 + 10.03506 105.22516 37.87056 5.55445 110 26 1 + 10.42824 106.11787 39.07118 5.89745 110 27 1 + 10.79274 107.01058 40.27161 6.24045 110 27 1 + 11.13077 107.90329 41.47185 6.58344 110 27 1 + 11.35881 108.79600 42.37192 6.84069 110 27 1 + 10.19129 108.79600 25.59840 7.93223 110 40 1 + 11.93524 106.77700 29.70475 9.70495 110 40 1 + 14.25792 104.75800 35.16081 12.06858 110 41 1 + 16.56952 102.73900 40.59674 14.43220 110 41 1 + 18.87119 100.72000 46.01595 16.79583 110 41 1 + 20.57311 98.70100 50.07174 18.56855 110 41 1 + 24.34658 98.70100 229.88374 12.31919 110 11 1 + 24.17832 100.07440 200.26957 12.82216 110 12 1 + 24.10090 101.44780 200.90889 13.49277 110 12 1 + 23.95927 102.82120 207.46715 14.16339 110 12 1 + 23.76602 104.19460 215.59855 14.83401 110 11 1 + 23.36610 105.56800 222.12669 15.33697 110 11 1 + 23.70140 105.56800 226.60771 15.67228 110 10 1 + 23.27388 106.94140 233.44973 16.17524 110 10 1 + 22.99369 108.31480 242.70650 16.84586 110 9 1 + 22.69956 109.68820 252.06828 17.51648 110 9 1 + 22.39787 111.06160 261.49732 18.18709 110 9 1 + 21.92735 112.43500 268.59852 18.69006 110 8 1 + 22.26266 112.43500 273.34448 19.02537 110 8 1 + 21.79621 113.80840 280.47714 19.52833 110 8 1 + 21.50338 115.18180 290.00539 20.19895 110 7 1 + 21.21790 116.55520 299.55031 20.86956 110 7 1 + 20.94117 117.92860 309.10779 21.54018 110 0 1 + 20.50692 119.30200 316.28211 22.04314 110 0 1 + 20.84222 119.30200 321.06773 22.37845 110 0 1 + 20.41862 120.67540 328.24957 22.88141 110 0 1 + 20.17217 122.04880 337.83018 23.55203 110 0 1 + 19.93411 123.42220 347.41558 24.22265 110 0 1 + 19.70332 124.79560 357.00485 24.89327 110 0 1 + 19.31102 126.16900 364.19883 25.39623 110 0 1 + 19.64633 126.16900 368.99576 25.73154 110 0 1 + 19.25865 127.54240 376.19237 26.23450 110 0 1 + 19.04183 128.91580 385.78963 26.90512 110 0 1 + 18.82722 130.28920 395.38873 27.57574 110 0 1 + 18.61386 131.66260 404.98939 28.24635 110 0 1 + 18.23311 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -18776,9 +18912,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.293 'Hydrobiaklei' - -12.00 7.699 'Basisveen' - -12.50 74.877 'Eerste zandlaag' + -10.00 8.299 'Hydrobiaklei' + -12.00 7.702 'Basisveen' + -12.50 75.022 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -18800,7 +18936,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -1.76 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.74 'Eerste zandlaag' + -12.50 -28.80 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -18924,24 +19060,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 61.00000 1.50000 0.01499 0.01500 - -9.99300 27.60000 1.00600 0.04493 0.04498 - -9.99500 34.00000 1.00000 0.07482 0.07494 - -9.99700 88.00000 27.00000 0.10464 0.10464 - -9.99900 22.00100 21.20000 0.13440 0.13440 - -10.00000 88.00000 53.00000 0.14926 0.14926 - -10.01900 44.00000 43.35000 0.42878 0.42878 - -10.05700 38.95000 71.80000 0.97178 0.97178 - -10.09500 44.08700 44.08000 1.49341 1.49341 - -10.13300 5.00000 5.80000 1.99368 1.99368 - -10.17100 17.00000 8.00000 2.47257 2.47257 - -10.19000 1.92000 76.00000 2.70400 2.70400 - -10.25000 22.99700 11.00000 3.39976 3.39976 - -10.37000 28.00000 30.00000 4.63144 4.63144 - -10.49000 73.00000 72.99700 5.65000 5.65000 - -10.61000 5.00000 5.07000 6.45544 6.45544 - -10.73000 67.00000 8.30000 7.04776 7.04776 - -10.79000 3.90000 1.00000 7.26400 7.26400 + -9.99100 6.00000 1.00000 0.01499 0.01500 + -9.99300 2.00000 1.00000 0.04493 0.04498 + -9.99500 2.00000 1.00000 0.07482 0.07494 + -9.99700 1.00000 1.00000 0.10464 0.10464 + -9.99900 1.00000 1.00000 0.13440 0.13440 + -10.00000 1.00000 1.00000 0.14926 0.14926 + -10.01900 1.00000 1.00000 0.42878 0.42878 + -10.05700 1.00000 1.00000 0.97178 0.97178 + -10.09500 1.00000 1.00000 1.49341 1.49341 + -10.13300 1.00000 1.00000 1.99368 1.99368 + -10.17100 1.00000 1.00000 2.47257 2.47257 + -10.19000 1.00000 1.00000 2.70400 2.70400 + -10.25000 1.00000 1.00000 3.39976 3.39976 + -10.37000 1.00000 1.00000 4.63144 4.63144 + -10.49000 1.00000 1.00000 5.65000 5.65000 + -10.61000 1.00000 1.00000 6.45544 6.45544 + -10.73000 1.00000 1.00000 7.04776 7.04776 + -10.79000 1.00000 1.00000 7.26400 7.26400 -10.82000 73.99800 32.23900 8.01233 7.28848 -10.88000 73.99800 32.23900 9.73545 7.34485 -10.94000 73.99800 32.23900 11.76053 7.41109 @@ -19035,7 +19171,7 @@ Lambda passive -10.97000 5.17420 38.78382 1.26873 0.45536 0.24520 7.49562 -11.03000 5.84560 43.81638 1.43335 0.45536 0.24520 7.49562 -11.09000 6.51700 47.59079 1.55683 0.45536 0.24520 7.49562 - -11.09000 6.51700 41.02524 -3.30713 0.70481 0.00000 6.29741 + -11.09000 6.51700 41.02524 -3.30713 0.69929 0.00000 6.29741 -11.18100 6.50749 39.68572 -3.30434 0.69929 0.00000 6.09847 -11.27200 6.49798 38.55749 -3.30632 0.69929 0.00000 5.93377 -11.36300 6.48847 37.82695 -3.30987 0.69929 0.00000 5.82987 @@ -19047,7 +19183,7 @@ Lambda passive -11.81800 6.44092 36.13488 -3.33088 0.69929 0.00000 5.61020 -11.90900 6.43141 35.95282 -3.33521 0.69929 0.00000 5.59019 -12.00000 6.42190 35.83155 -3.33847 0.69929 0.00000 5.57752 - -12.00000 6.42190 19.45965 -0.24957 1.01009 0.00000 3.16204 + -12.00000 6.42190 19.45965 -0.24957 0.74118 0.00000 3.16204 -12.10000 5.35090 17.91518 -0.71711 0.74118 0.00000 3.34807 -12.20000 4.27990 15.87147 -1.34197 0.74118 0.00000 3.70837 -12.30000 3.20890 13.84360 -1.96811 0.74118 0.00000 4.31413 @@ -19077,7 +19213,7 @@ Lambda passive -15.02000 26.74570 180.61205 6.86581 0.47008 0.25671 6.75294 -15.16000 28.17230 190.17767 7.23257 0.47008 0.25673 6.75052 -15.30000 29.59890 197.35603 7.50762 0.47008 0.25674 6.74900 - -15.30000 29.59890 202.14355 7.69098 0.31301 0.25675 6.74812 + -15.30000 29.59890 202.14355 7.69098 0.47008 0.25675 6.74812 -15.44000 31.02550 209.32739 7.96601 0.47008 0.25676 6.74695 -15.58000 32.45210 218.90961 8.33270 0.47008 0.25677 6.74562 -15.72000 33.87870 228.49576 8.69937 0.47008 0.25678 6.74453 @@ -19230,32 +19366,32 @@ Status character 8.48800 65.27830 8.48800 8.48800 1 100 A 6.71200 67.05550 6.71200 6.71200 1 100 A 4.93600 68.83270 4.93600 4.93600 1 100 A - 3.60400 70.60990 3.60400 3.60400 1 0 A + 3.60400 70.60990 3.60400 3.60400 1 100 A 0.81600 70.60990 24.94429 1.51537 1 0 A 0.93947 71.19850 28.71871 1.74467 1 0 A 1.10410 71.78710 33.75126 2.05040 1 0 A 1.26873 72.37570 38.78382 2.35613 1 0 A 1.43335 72.96430 43.81638 2.66186 1 0 A 1.55683 73.55290 47.59079 2.89116 1 0 A - 1.08239 73.55290 41.02524 4.59156 110 0 1 - 6.20489 74.94561 39.68572 4.55065 110 16 1 - 5.28043 76.33832 38.55749 4.54400 110 14 1 - 4.40462 77.73103 37.82695 4.53735 110 0 1 - 3.57477 79.12374 37.30689 4.53070 110 0 1 - 2.87558 80.51645 36.99983 4.52571 110 0 1 - 2.70076 80.51645 36.82662 4.52239 110 0 1 - 2.04217 81.90916 36.60200 4.51740 110 0 1 - 1.33445 83.30187 36.34781 4.51075 110 0 1 - 0.66280 84.69458 36.13488 4.50410 110 0 1 - 0.02498 86.08729 35.95282 4.49745 110 0 1 + 1.04657 73.55290 41.02524 4.55564 110 0 1 + 6.25444 74.94561 39.68572 4.55065 110 16 1 + 5.32818 76.33832 38.55749 4.54400 110 14 1 + 4.45040 77.73103 37.82695 4.53735 110 0 1 + 3.61838 79.12374 37.30689 4.53070 110 0 1 + 2.91682 80.51645 36.99983 4.52571 110 0 1 + 2.74200 80.51645 36.82662 4.52239 110 0 1 + 2.08083 81.90916 36.60200 4.51740 110 0 1 + 1.37032 83.30187 36.34781 4.51075 110 0 1 + 0.69568 84.69458 36.13488 4.50410 110 0 1 + 0.05470 86.08729 35.95282 4.49745 110 0 1 0.00000 87.48000 35.83155 4.49246 1 0 A - 3.96103 87.48000 19.45965 6.21623 110 0 1 - 1.73967 89.72100 17.91518 3.96599 110 0 1 - 0.98696 91.96200 15.87147 3.17218 110 0 1 - 0.24534 94.20300 13.84360 2.37838 110 0 1 + 2.30228 87.48000 19.45965 4.56134 110 0 1 + 1.73569 89.72100 17.91518 3.96599 110 0 1 + 0.98284 91.96200 15.87147 3.17218 110 0 1 + 0.24105 94.20300 13.84360 2.37838 110 0 1 0.00000 96.44400 11.82887 1.58457 1 0 A 0.00000 98.68500 10.32482 0.98922 1 0 A - 1.47768 98.68500 10.55621 0.66918 110 14 1 + 1.59428 98.68500 10.55621 0.66918 110 15 1 0.63774 100.05840 18.35701 1.17215 1 0 A 1.00279 101.43180 28.51250 1.84276 1 0 A 1.36806 102.80520 38.37429 2.51338 1 0 A @@ -19266,25 +19402,25 @@ Status character 2.83165 108.29880 76.29925 5.19585 1 0 A 3.19808 109.67220 85.68817 5.86647 1 0 A 3.56466 111.04560 95.09275 6.53708 1 0 A - 3.86418 112.41900 102.15965 7.04005 110 0 1 - 4.19949 112.41900 106.87870 7.37536 110 0 1 - 5.67657 113.79240 113.96887 7.87832 110 0 1 - 7.31553 115.16580 123.44084 8.54894 110 0 1 - 8.94729 116.53920 132.93294 9.21955 110 0 1 - 10.57044 117.91260 142.44269 9.89017 110 7 1 - 12.01590 119.28600 149.58467 10.39313 110 8 1 - 12.35120 119.28600 154.35055 10.72844 110 8 1 - 13.78606 120.65940 161.50543 11.23140 110 9 1 - 15.37910 122.03280 171.05415 11.90202 110 9 1 - 16.96372 123.40620 180.61205 12.57264 110 9 1 - 18.54104 124.77960 190.17767 13.24326 110 10 1 - 19.94446 126.15300 197.35603 13.74622 110 10 1 - 15.57461 126.15300 202.14355 9.37638 110 8 1 - 21.67844 127.52640 209.32739 14.58449 110 10 1 - 23.24146 128.89980 218.90961 15.25511 110 11 1 - 24.80218 130.27320 228.49576 15.92572 110 11 1 - 26.36161 131.64660 238.08523 16.59634 110 11 1 - 27.75311 133.02000 245.27914 17.09930 110 11 1 + 3.83967 112.41900 102.15965 7.04005 1 0 A + 4.13806 112.41900 106.87870 7.37536 110 0 1 + 5.61044 113.79240 113.96887 7.87832 110 0 1 + 7.24450 115.16580 123.44084 8.54894 110 0 1 + 8.87121 116.53920 132.93294 9.21955 110 0 1 + 10.48918 117.91260 142.44269 9.89017 110 7 1 + 11.92936 119.28600 149.58467 10.39313 110 8 1 + 12.26467 119.28600 154.35055 10.72844 110 8 1 + 13.69420 120.65940 161.50543 11.23140 110 8 1 + 15.28188 122.03280 171.05415 11.90202 110 9 1 + 16.86118 123.40620 180.61205 12.57264 110 9 1 + 18.43321 124.77960 190.17767 13.24326 110 10 1 + 19.83143 126.15300 197.35603 13.74622 110 10 1 + 20.16674 126.15300 202.14355 14.08153 110 10 1 + 21.56034 127.52640 209.32739 14.58449 110 10 1 + 23.11840 128.89980 218.90961 15.25511 110 11 1 + 24.67424 130.27320 228.49576 15.92572 110 11 1 + 26.22883 131.64660 238.08523 16.59634 110 11 1 + 27.61551 133.02000 245.27914 17.09930 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -19299,9 +19435,9 @@ Layer name [DATA] -9.99 7.249 'OWB' -10.79 0.356 'Grind' - -11.09 2.444 'Hydrobiaklei' - -12.00 0.495 'Basisveen' - -12.50 36.506 'Eerste zandlaag' + -11.09 2.476 'Hydrobiaklei' + -12.00 0.411 'Basisveen' + -12.50 36.632 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -19318,9 +19454,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.14 'Grind' - -11.09 0.52 'Hydrobiaklei' + -11.09 0.53 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 14.01 'Eerste zandlaag' + -12.50 14.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -19542,8 +19678,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 477.05849 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 530.34464 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 477.05659 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 530.41633 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -19584,10 +19720,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.70 : Percentage mobilized resistance left - 11.75 : Percentage mobilized resistance right - 105.21 : Effective left - 128.20 : Effective right + 14.71 : Percentage mobilized resistance left + 11.77 : Percentage mobilized resistance right + 105.31 : Effective left + 128.38 : Effective right 537.94 : Water pressure left 1112.88 : Water pressure right 715.81 : Max effective resistance left @@ -19596,8 +19732,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.92 : Vertical force left - 43.47 : Vertical force right + 14.99 : Vertical force left + 43.53 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -19606,10 +19742,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --43.47 : Active force -14.92 : Passive force --43.47 : Plugged active force -14.92 : Plugged passive force +-43.53 : Active force +14.99 : Passive force +-43.53 : Plugged active force +14.99 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -19629,192 +19765,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.72527 - 0.00000 0.00000 15.07624 - 0.00000 0.00000 14.42720 - 0.00000 0.00000 13.77817 - 0.00000 0.00000 13.12913 - 0.00000 0.00000 12.48010 - 0.00000 0.00000 12.48010 - 0.00000 0.00000 11.83106 - 0.00000 0.00000 11.18203 - 0.00000 0.00000 10.53299 - 0.00000 0.00000 9.88396 - 0.00000 0.00000 9.23493 - 0.00000 0.00000 9.23493 - 0.00339 0.08476 8.36955 - 0.02712 0.33903 7.50418 - 0.09154 0.76283 6.63879 - 0.21698 1.35613 5.77339 - 0.42379 2.11896 4.90795 - 0.42379 2.11896 4.90795 - 0.67297 2.88414 4.18671 - 1.00454 3.76704 3.46541 - 1.43030 4.76766 2.74399 - 1.96200 5.88600 2.02241 - 2.61142 7.12206 1.30062 - 2.61142 7.12206 1.30062 - 3.39034 8.47584 0.57858 - 4.31051 9.94734 -0.14382 - 5.38373 11.53656 -0.86668 - 6.62175 13.24350 -1.59013 - 8.03635 15.06816 -2.31427 - 8.03635 15.06816 -2.31427 - 9.40311 16.73152 -2.93768 - 10.91667 18.48195 -3.56182 - 12.58450 20.31944 -4.18682 - 14.41411 22.24399 -4.81281 - 16.41297 24.25562 -5.43991 - 16.41297 -163.00287 -5.43991 - -2.01117 -160.20210 -6.27266 - -20.10730 -157.24834 -7.10512 - -37.85798 -154.14159 -7.93489 - -55.24577 -150.88185 -8.75954 - -72.25322 -147.46913 -9.57665 - -72.25212 -147.49073 -9.57665 - -83.95243 -145.00448 -10.14427 - -95.45083 -142.44289 -10.70626 - -106.74129 -139.80597 -11.26185 - -117.81778 -137.09370 -11.81027 - -128.67427 -134.30609 -12.35078 - -128.67458 -134.30838 -12.35078 - -131.35367 -133.59970 -12.48459 - -134.01854 -132.88632 -12.61784 - -136.66909 -132.16823 -12.75053 - -139.30523 -131.44543 -12.88264 - -141.92688 -130.71792 -13.01417 - -141.92692 -130.71738 -13.01417 - -154.81423 -127.00920 -13.66263 - -167.32484 -123.18330 -14.29484 - -179.44697 -119.23968 -14.90952 - -191.16885 -115.17834 -15.50540 - -202.47871 -110.99928 -16.08120 - -202.47889 -110.99308 -16.08120 - -213.36434 -106.69630 -16.63570 - -223.81423 -102.28180 -17.16779 - -233.81678 -97.74958 -17.67643 - -243.36022 -93.09964 -18.16056 - -252.43278 -88.33198 -18.61915 - -252.43277 -88.33146 -18.61915 - -261.02263 -83.44608 -19.05117 - -269.11806 -78.44298 -19.45578 - -276.70730 -73.32216 -19.83219 - -283.77857 -68.08362 -20.17960 - -290.32010 -62.72736 -20.49722 - -290.32015 -62.72654 -20.49722 - -298.56580 -55.03000 -20.89034 - -305.71778 -47.10274 -21.22200 - -311.74380 -38.94474 -21.49097 - -316.61154 -30.55601 -21.69602 - -320.28872 -21.93656 -21.83590 - -320.28880 -21.93471 -21.83590 - -322.60879 -13.72433 -21.90653 - -323.84850 -5.31500 -21.91991 - -323.98207 3.29327 -21.87601 - -322.98363 12.10049 -21.77482 - -320.82732 21.10666 -21.61630 - -320.82714 21.10632 -21.61630 - -317.48714 30.31144 -21.40061 - -312.93755 39.71550 -21.12857 - -307.15249 49.31851 -20.80121 - -300.10611 59.12046 -20.41956 - -291.77255 69.12137 -19.98465 - -291.77256 69.12134 -19.98465 - -280.56411 80.86833 -19.42017 - -267.57981 92.87842 -18.78983 - -252.78035 105.15162 -18.09710 - -236.12637 117.68793 -17.34546 - -217.57854 130.48734 -16.53837 - -217.57854 130.48734 -16.53837 - -197.09754 143.54987 -15.67968 - -174.64402 156.87549 -14.77469 - -150.17865 170.46423 -13.82916 - -123.66211 184.31607 -12.84883 - -95.05504 198.43102 -11.83945 - -95.05641 198.43803 -11.83945 - -64.31844 212.81608 -10.80714 - -31.41129 227.45725 -9.75969 - 3.70438 242.36152 -8.70535 - 41.06791 257.52890 -7.65237 - 80.71864 272.95938 -6.60897 - 80.72062 272.97155 -6.60897 - 122.69968 288.66514 -5.58384 - 167.04461 304.62184 -4.58744 - 213.79472 320.84165 -3.63076 - 262.98937 337.32456 -2.72476 - 314.66788 354.07058 -1.88043 - 314.66872 354.08506 -1.88043 - 315.37706 354.21633 -1.86960 - 316.08553 354.25499 -1.85878 - 316.79408 354.29370 -1.84798 - 317.50270 354.33245 -1.83720 - 318.21141 354.37125 -1.82642 - 318.21141 354.37122 -1.82642 - 331.69164 355.11733 -1.62428 - 345.20054 355.88043 -1.42717 - 358.73876 356.66050 -1.23529 - 372.30695 357.45756 -1.04886 - 385.90575 358.27160 -0.86806 - 385.90585 -172.07401 -0.86806 - 365.41620 -169.39190 -0.33487 - 345.25857 -166.54043 0.14308 - 325.45327 -163.51961 0.56879 - 306.02063 -160.32945 0.94526 - 286.98098 -156.96992 1.27546 - 286.98088 -156.97108 1.27546 - 277.63221 -154.65273 1.42413 - 268.42235 -152.34475 1.56232 - 259.35061 -150.04863 1.69035 - 250.41628 -147.76436 1.80858 - 241.61868 -145.49046 1.91734 - 241.61930 -145.51060 1.91734 - 228.52645 -142.11729 2.06501 - 215.76834 -138.24951 2.19281 - 203.37044 -134.20360 2.30183 - 191.34818 -129.99630 2.39313 - 179.71539 -125.64810 2.46780 - 179.71524 -125.64030 2.46780 - 168.48532 -121.15202 2.52690 - 157.66897 -116.55170 2.57135 - 147.27605 -111.84788 2.60205 - 137.31542 -107.05296 2.61993 - 127.79387 -102.21020 2.62586 - 127.79398 -102.20819 2.62586 - 117.76784 -98.33148 2.61965 - 108.12284 -94.60006 2.60108 - 98.84134 -91.06333 2.57113 - 89.90243 -87.75900 2.53076 - 81.27836 -84.79001 2.48096 - 81.27702 -84.77327 2.48096 - 69.88413 -78.00399 2.39726 - 59.42947 -71.37273 2.29919 - 49.89237 -64.90009 2.18872 - 41.24896 -58.60923 2.06781 - 33.47211 -52.52571 1.93844 - 33.47233 -52.51788 1.93844 - 26.53447 -46.63481 1.80239 - 20.40348 -40.98981 1.66089 - 15.04619 -35.58338 1.51504 - 10.42864 -30.42322 1.36597 - 6.51564 -25.52115 1.21476 - 6.51716 -25.49404 1.21476 - 3.27731 -20.83432 1.06238 - 0.67126 -16.43794 0.90933 - -1.33735 -12.29945 0.75604 - -2.78463 -8.41897 0.60291 - -3.70790 -4.82219 0.45037 - -3.70645 -4.79919 0.45037 - -4.13803 -1.51682 0.29870 - -4.16644 1.00958 0.14789 - -3.88365 2.92949 -0.00213 - -3.37434 4.24605 -0.15140 - -2.72278 4.96221 -0.29995 - -2.72282 4.96131 -0.29995 - -1.97616 5.47428 -0.44794 - -1.23625 4.99673 -0.59552 - -0.60482 3.92468 -0.74283 - -0.16504 2.25900 -0.88998 - 0.00002 0.00008 -1.03710 + 0.00000 0.00000 15.72393 + 0.00000 0.00000 15.07494 + 0.00000 0.00000 14.42595 + 0.00000 0.00000 13.77696 + 0.00000 0.00000 13.12796 + 0.00000 0.00000 12.47897 + 0.00000 0.00000 12.47897 + 0.00000 0.00000 11.82998 + 0.00000 0.00000 11.18098 + 0.00000 0.00000 10.53199 + 0.00000 0.00000 9.88300 + 0.00000 0.00000 9.23401 + 0.00000 0.00000 9.23401 + 0.00339 0.08476 8.36869 + 0.02712 0.33903 7.50337 + 0.09154 0.76283 6.63804 + 0.21698 1.35613 5.77269 + 0.42379 2.11896 4.90731 + 0.42379 2.11896 4.90731 + 0.67297 2.88414 4.18612 + 1.00454 3.76704 3.46486 + 1.43030 4.76766 2.74349 + 1.96200 5.88600 2.02195 + 2.61142 7.12206 1.30021 + 2.61142 7.12206 1.30021 + 3.39034 8.47584 0.57822 + 4.31051 9.94734 -0.14413 + 5.38373 11.53656 -0.86695 + 6.62175 13.24350 -1.59035 + 8.03635 15.06816 -2.31444 + 8.03635 15.06816 -2.31444 + 9.40311 16.73152 -2.93781 + 10.91667 18.48195 -3.56192 + 12.58450 20.31944 -4.18688 + 14.41411 22.24399 -4.81282 + 16.41297 24.25562 -5.43989 + 16.41297 -163.00097 -5.43989 + -2.01095 -160.20020 -6.27258 + -20.10686 -157.24644 -7.10500 + -37.85733 -154.13969 -7.93471 + -55.24490 -150.87995 -8.75931 + -72.25214 -147.46723 -9.57636 + -72.25104 -147.48885 -9.57636 + -83.95120 -145.00260 -10.14395 + -95.44945 -142.44101 -10.70590 + -106.73975 -139.80408 -11.26145 + -117.81609 -137.09181 -11.80984 + -128.67243 -134.30421 -12.35032 + -128.67274 -134.30650 -12.35032 + -131.35179 -133.59782 -12.48411 + -134.01663 -132.88444 -12.61735 + -136.66714 -132.16635 -12.75003 + -139.30325 -131.44355 -12.88214 + -141.92485 -130.71604 -13.01366 + -141.92490 -130.71550 -13.01366 + -154.81202 -127.00732 -13.66207 + -167.32244 -123.18142 -14.29424 + -179.44438 -119.23780 -14.90887 + -191.16607 -115.17646 -15.50470 + -202.47575 -110.99740 -16.08047 + -202.47593 -110.99120 -16.08047 + -213.36119 -106.69442 -16.63492 + -223.81089 -102.27992 -17.16696 + -233.81325 -97.74770 -17.67556 + -243.35650 -93.09776 -18.15965 + -252.42887 -88.33010 -18.61820 + -252.42886 -88.32958 -18.61820 + -261.01853 -83.44420 -19.05017 + -269.11378 -78.44110 -19.45475 + -276.70283 -73.32028 -19.83112 + -283.77391 -68.08174 -20.17849 + -290.31525 -62.72548 -20.49606 + -290.31530 -62.72465 -20.49606 + -298.56069 -55.02812 -20.88913 + -305.71241 -47.10085 -21.22073 + -311.73816 -38.94286 -21.48965 + -316.60564 -30.55413 -21.69465 + -320.28255 -21.93467 -21.83448 + -320.28263 -21.93282 -21.83448 + -322.60238 -13.72244 -21.90506 + -323.84184 -5.31312 -21.91839 + -323.97517 3.29516 -21.87445 + -322.97648 12.10238 -21.77322 + -320.81993 21.10855 -21.61466 + -320.81974 21.10821 -21.61466 + -317.47950 30.31333 -21.39893 + -312.92966 39.71739 -21.12685 + -307.14436 49.32040 -20.79945 + -300.09773 59.12236 -20.41777 + -291.76392 69.12326 -19.98282 + -291.76393 69.12324 -19.98282 + -280.55519 80.87022 -19.41831 + -267.57062 92.88032 -18.78794 + -252.77087 105.15352 -18.09517 + -236.11661 117.68982 -17.34349 + -217.56850 130.48924 -16.53639 + -217.56850 130.48924 -16.53639 + -197.08721 143.55176 -15.67766 + -174.63341 156.87739 -14.77265 + -150.16776 170.46612 -13.82710 + -123.65093 184.31797 -12.84675 + -95.04358 198.43292 -11.83735 + -95.04495 198.43991 -11.83735 + -64.30670 212.81797 -10.80503 + -31.39927 227.45913 -9.75757 + 3.71669 242.36340 -8.70323 + 41.08050 257.53078 -7.65023 + 80.73150 272.96127 -6.60684 + 80.73331 272.97617 -6.60684 + 122.71307 288.66976 -5.58170 + 167.05868 304.62646 -4.58531 + 213.80949 320.84627 -3.62863 + 263.00483 337.32918 -2.72265 + 314.68403 354.07520 -1.87833 + 314.68489 354.08977 -1.87833 + 315.39323 354.22104 -1.86750 + 316.10171 354.25970 -1.85669 + 316.81027 354.29841 -1.84589 + 317.51891 354.33716 -1.83510 + 318.22762 354.37596 -1.82433 + 318.22762 354.37593 -1.82433 + 331.70803 355.12204 -1.62219 + 345.21711 355.88514 -1.42509 + 358.75551 356.66521 -1.23321 + 372.32388 357.46227 -1.04678 + 385.92286 358.27631 -0.86599 + 385.92296 -172.14098 -0.86599 + 365.42527 -169.45887 -0.33282 + 345.25960 -166.60740 0.14512 + 325.44627 -163.58658 0.57081 + 306.00560 -160.39642 0.94725 + 286.95790 -157.03689 1.27744 + 286.95781 -157.03804 1.27744 + 277.60512 -154.71969 1.42610 + 268.39124 -152.41171 1.56428 + 259.31548 -150.11559 1.69231 + 250.37713 -147.83132 1.81054 + 241.57551 -145.55742 1.91930 + 241.57613 -145.57759 1.91930 + 228.47724 -142.18453 2.06696 + 215.71282 -138.32114 2.19477 + 203.30820 -134.27941 2.30379 + 191.27887 -130.07605 2.39511 + 179.63864 -125.73153 2.46981 + 179.63860 -125.72653 2.46981 + 168.40068 -121.24164 2.52893 + 157.57603 -116.64441 2.57341 + 147.17455 -111.94332 2.60416 + 137.20512 -107.15077 2.62208 + 127.67462 -102.30855 2.62808 + 127.67472 -102.30662 2.62808 + 117.64544 -98.32929 2.62195 + 108.00069 -94.59691 2.60347 + 98.71957 -91.05901 2.57362 + 89.78114 -87.75373 2.53338 + 81.15764 -84.78400 2.48371 + 81.15627 -84.76672 2.48371 + 69.76469 -77.99171 2.40021 + 59.31217 -71.35428 2.30236 + 49.77811 -64.87499 2.19214 + 41.13872 -58.57693 2.07151 + 33.36692 -52.48565 1.94244 + 33.36732 -52.47855 1.94244 + 26.43525 -46.59014 1.80671 + 20.31114 -40.93608 1.66555 + 14.96205 -35.51989 1.52007 + 10.35412 -30.34923 1.37136 + 6.45226 -25.43588 1.22055 + 6.45231 -25.43388 1.22055 + 3.22172 -20.76209 1.06857 + 0.62667 -16.35279 0.91595 + -1.36906 -12.20055 0.76308 + -2.80148 -8.30544 0.61038 + -3.70741 -4.68520 0.45828 + -3.70596 -4.66220 0.45828 + -4.12973 -1.49323 0.30705 + -4.15244 1.06768 0.15666 + -3.85900 3.02386 0.00708 + -3.33384 4.37840 -0.14176 + -2.66099 5.13424 -0.28990 + -2.66103 5.13336 -0.28990 + -1.92424 5.29302 -0.43748 + -1.20672 4.85844 -0.58467 + -0.59155 3.83093 -0.73159 + -0.16169 2.21135 -0.87836 + 0.00001 0.00008 -1.02509 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -20040,7 +20176,7 @@ Lambda passive -12.92000 30.12970 207.46715 7.70643 0.47008 0.25578 6.88580 -13.06000 31.55630 215.59855 8.07815 0.47008 0.25599 6.83219 -13.20000 32.98290 222.12669 8.35620 0.47008 0.25612 6.80822 - -13.20000 32.98290 226.60771 8.54126 0.47117 0.25619 6.79696 + -13.20000 32.98290 226.60771 8.54126 0.47008 0.25619 6.79696 -13.34000 34.40950 233.44973 8.81848 0.47008 0.25628 6.78446 -13.48000 35.83610 242.70650 9.18761 0.47008 0.25638 6.77268 -13.62000 37.26270 252.06828 9.55625 0.47008 0.25646 6.76463 @@ -20052,7 +20188,7 @@ Lambda passive -14.32000 44.39570 299.55031 11.39518 0.47008 0.25667 6.74728 -14.46000 45.82230 309.10779 11.76244 0.47008 0.25670 6.74579 -14.60000 47.24890 316.28211 12.03782 0.47008 0.25671 6.74487 - -14.60000 47.24890 321.06773 12.22137 0.50663 0.25672 6.74433 + -14.60000 47.24890 321.06773 12.22137 0.47008 0.25672 6.74433 -14.74000 48.67550 328.24957 12.49666 0.47008 0.25673 6.74363 -14.88000 50.10210 337.83018 12.86365 0.47008 0.25675 6.74283 -15.02000 51.52870 347.41558 13.23057 0.47008 0.25676 6.74218 @@ -20219,53 +20355,53 @@ Status character 0.00000 104.28030 0.00000 0.00000 -1 0 - 0.00000 104.86890 0.00000 0.00000 -1 0 - 0.05123 99.86890 0.05123 0.05123 402 100 P - 12.09950 100.76161 31.86408 3.83947 110 38 1 - 12.95371 101.65432 33.06586 4.18246 110 39 1 - 13.73276 102.54703 34.26739 4.52546 110 40 1 - 14.44098 103.43974 35.46867 4.86846 110 41 1 - 14.99692 104.33245 36.36949 5.12571 110 41 1 - 15.16842 104.33245 36.96996 5.29720 110 41 1 - 15.66204 105.22516 37.87056 5.55445 110 41 1 - 16.18283 106.11787 39.07118 5.89745 110 41 1 - 16.64866 107.01058 40.27161 6.24045 110 41 1 - 17.06314 107.90329 41.47185 6.58344 110 41 1 - 17.34414 108.79600 42.37192 6.84069 110 41 1 - 12.95310 108.79600 25.59840 7.93223 220 51 2 - 14.88913 106.77700 29.70475 9.70495 220 50 2 - 17.27074 104.75800 35.16081 12.06858 110 49 1 - 19.57446 102.73900 40.59674 14.43220 110 48 1 - 21.85735 100.72000 46.01595 16.79583 110 47 1 - 23.53047 98.70100 50.07174 18.56855 110 47 1 - 42.09076 98.70100 229.88374 12.31919 110 18 1 - 41.58927 100.07440 200.26957 12.82216 110 21 1 - 41.08304 101.44780 200.90889 13.49277 110 20 1 - 40.42800 102.82120 207.46715 14.16339 110 19 1 - 39.64775 104.19460 215.59855 14.83401 110 18 1 - 38.59819 105.56800 222.12669 15.33697 110 17 1 - 38.96983 105.56800 226.60771 15.70861 110 17 1 - 37.80387 106.94140 233.44973 16.17524 110 16 1 - 36.77650 108.31480 242.70650 16.84586 110 15 1 - 35.69701 109.68820 252.06828 17.51648 110 14 1 - 34.57869 111.06160 261.49732 18.18709 110 13 1 - 33.26715 112.43500 268.59852 18.69006 110 12 1 - 33.60246 112.43500 273.34448 19.02537 110 12 1 - 32.27689 113.80840 280.47714 19.52833 110 12 1 - 31.11096 115.18180 290.00539 20.19895 110 11 1 - 29.94204 116.55520 299.55031 20.86956 110 10 1 - 28.77514 117.92860 309.10779 21.54018 110 9 1 - 27.44762 119.30200 316.28211 22.04314 110 9 1 - 29.52285 119.30200 321.06773 24.11838 110 9 1 - 26.46587 120.67540 328.24957 22.88141 110 8 1 - 25.32666 122.04880 337.83018 23.55203 110 7 1 - 24.19707 123.42220 347.41558 24.22265 110 0 1 - 23.07652 124.79560 357.00485 24.89327 110 0 1 - 21.79678 126.16900 364.19883 25.39623 110 0 1 - 22.13209 126.16900 368.99576 25.73154 110 0 1 - 20.85926 127.54240 376.19237 26.23450 110 0 1 - 19.75884 128.91580 385.78963 26.90512 110 0 1 - 18.66175 130.28920 395.38873 27.57574 110 0 1 - 17.56656 131.66260 404.98939 28.24635 110 0 1 - 16.30416 133.03600 412.19072 28.74932 110 0 1 + 12.10732 100.76161 31.86408 3.83947 110 38 1 + 12.96154 101.65432 33.06586 4.18246 110 39 1 + 13.74063 102.54703 34.26739 4.52546 110 40 1 + 14.44891 103.43974 35.46867 4.86846 110 41 1 + 15.00493 104.33245 36.36949 5.12571 110 41 1 + 15.17643 104.33245 36.96996 5.29720 110 41 1 + 15.67016 105.22516 37.87056 5.55445 110 41 1 + 16.19109 106.11787 39.07118 5.89745 110 41 1 + 16.65709 107.01058 40.27161 6.24045 110 41 1 + 17.07178 107.90329 41.47185 6.58344 110 41 1 + 17.35302 108.79600 42.37192 6.84069 110 41 1 + 12.95488 108.79600 25.59840 7.93223 220 51 2 + 14.89097 106.77700 29.70475 9.70495 220 50 2 + 17.27552 104.75800 35.16081 12.06858 110 49 1 + 19.57945 102.73900 40.59674 14.43220 110 48 1 + 21.86258 100.72000 46.01595 16.79583 110 48 1 + 23.53596 98.70100 50.07174 18.56855 110 47 1 + 42.12368 98.70100 229.88374 12.31919 110 18 1 + 41.62463 100.07440 200.26957 12.82216 110 21 1 + 41.12114 101.44780 200.90889 13.49277 110 20 1 + 40.46913 102.82120 207.46715 14.16339 110 20 1 + 39.69218 104.19460 215.59855 14.83401 110 18 1 + 38.64621 105.56800 222.12669 15.33697 110 17 1 + 38.98152 105.56800 226.60771 15.67228 110 17 1 + 37.85573 106.94140 233.44973 16.17524 110 16 1 + 36.83245 108.31480 242.70650 16.84586 110 15 1 + 35.75727 109.68820 252.06828 17.51648 110 14 1 + 34.64346 111.06160 261.49732 18.18709 110 13 1 + 33.33662 112.43500 268.59852 18.69006 110 12 1 + 33.67193 112.43500 273.34448 19.02537 110 12 1 + 32.35123 113.80840 280.47714 19.52833 110 12 1 + 31.19031 115.18180 290.00539 20.19895 110 11 1 + 30.02650 116.55520 299.55031 20.86956 110 10 1 + 28.86478 117.92860 309.10779 21.54018 110 9 1 + 27.54248 119.30200 316.28211 22.04314 110 9 1 + 27.87779 119.30200 321.06773 22.37845 110 9 1 + 26.56597 120.67540 328.24957 22.88141 110 8 1 + 25.43199 122.04880 337.83018 23.55203 110 8 1 + 24.30757 123.42220 347.41558 24.22265 110 7 1 + 23.19212 124.79560 357.00485 24.89327 110 0 1 + 21.91739 126.16900 364.19883 25.39623 110 0 1 + 22.25270 126.16900 368.99576 25.73154 110 0 1 + 20.98473 127.54240 376.19237 26.23450 110 0 1 + 19.88907 128.91580 385.78963 26.90512 110 0 1 + 18.79665 130.28920 395.38873 27.57574 110 0 1 + 17.70607 131.66260 404.98939 28.24635 110 0 1 + 16.44829 133.03600 412.19072 28.74932 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -20283,9 +20419,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.973 'Hydrobiaklei' - -12.00 9.183 'Basisveen' - -12.50 106.048 'Eerste zandlaag' + -10.00 12.980 'Hydrobiaklei' + -12.00 9.185 'Basisveen' + -12.50 106.218 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -20307,7 +20443,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -2.76 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -40.71 'Eerste zandlaag' + -12.50 -40.77 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -20431,24 +20567,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -20523,8 +20659,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -20542,7 +20678,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -20554,7 +20690,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -20584,7 +20720,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -20725,13 +20861,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -20744,24 +20880,24 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 2.49291 69.84300 62.88631 10.23728 110 0 1 - 7.56110 70.73571 62.76725 10.45829 110 0 1 - 6.70537 71.62842 62.93711 10.80128 110 0 1 - 5.93204 72.52113 63.36356 11.14428 110 0 1 - 5.23683 73.41384 63.95712 11.48728 110 0 1 - 4.61548 74.30655 64.47739 11.74453 110 0 1 - 4.61548 74.30655 64.85531 11.91602 110 0 1 - 4.06381 75.19926 65.45935 12.17327 110 0 1 - 3.57806 76.09197 66.31521 12.51627 110 0 1 - 3.15462 76.98468 67.21959 12.85927 110 0 1 - 2.78987 77.87739 68.16229 13.20226 110 0 1 - 2.97400 78.77010 68.88908 13.45951 110 0 1 - 10.24825 78.77010 43.93101 15.49997 110 0 1 - 7.03384 82.75110 39.79998 12.27314 110 0 1 - 4.98752 86.73210 34.34186 10.18968 110 0 1 - 2.96397 90.71310 28.93258 8.10622 110 0 1 - 1.44754 94.69410 23.56199 6.02276 110 0 1 - 0.50889 98.67510 19.55369 4.46017 110 0 1 + 2.45626 69.84300 62.88631 10.20104 110 0 1 + 7.61010 70.73571 62.76725 10.45829 110 0 1 + 6.75251 71.62842 62.93711 10.80128 110 0 1 + 5.97713 72.52113 63.36356 11.14428 110 0 1 + 5.27970 73.41384 63.95712 11.48728 110 0 1 + 4.65592 74.30655 64.47739 11.74453 110 0 1 + 4.65592 74.30655 64.85531 11.91602 110 0 1 + 4.10160 75.19926 65.45935 12.17327 110 0 1 + 3.61299 76.09197 66.31521 12.51627 110 0 1 + 3.18650 76.98468 67.21959 12.85927 110 0 1 + 2.81851 77.87739 68.16229 13.20226 110 0 1 + 2.97285 78.77010 68.88908 13.45951 110 0 1 + 8.57957 78.77010 43.93101 13.83574 110 0 1 + 7.02924 82.75110 39.79998 12.27314 110 0 1 + 4.98273 86.73210 34.34186 10.18968 110 0 1 + 2.95898 90.71310 28.93258 8.10622 110 0 1 + 1.44680 94.69410 23.56199 6.02276 110 0 1 + 0.50810 98.67510 19.55369 4.46017 110 0 1 1.43664 98.67510 40.26142 2.66609 1 0 A 1.70862 100.04850 47.59458 3.16905 1 0 A 2.07185 101.42190 57.26566 3.83967 1 0 A @@ -20779,19 +20915,19 @@ Status character 5.73470 115.15590 152.09823 10.54584 1 0 A 6.10246 116.52930 161.61132 11.21646 1 0 A 6.47026 117.90270 171.13564 11.88707 1 0 A - 6.98556 119.27610 178.28533 12.39004 110 0 1 - 7.32087 119.27610 183.05493 12.72534 110 0 1 - 9.64385 120.64950 190.21367 13.22831 110 0 1 - 12.12429 122.02290 199.76524 13.89892 110 0 1 - 14.59512 123.39630 209.32386 14.56954 110 7 1 - 17.05690 124.76970 218.88869 15.24016 110 8 1 - 19.34257 126.14310 226.06575 15.74312 110 9 1 - 14.97976 126.14310 230.85212 11.38031 110 6 1 - 21.95664 127.51650 238.03393 16.58139 110 9 1 - 24.39829 128.88990 247.61307 17.25201 110 10 1 - 26.83661 130.26330 257.19585 17.92263 110 10 1 - 29.27304 131.63670 266.78180 18.59324 110 11 1 - 31.54136 133.01010 273.97304 19.09621 110 12 1 + 6.89070 119.27610 178.28533 12.39004 110 0 1 + 7.22600 119.27610 183.05493 12.72534 110 0 1 + 9.54375 120.64950 190.21367 13.22831 110 0 1 + 12.01897 122.02290 199.76524 13.89892 110 0 1 + 14.48462 123.39630 209.32386 14.56954 110 0 1 + 16.94130 124.76970 218.88869 15.24016 110 8 1 + 19.22196 126.14310 226.06575 15.74312 110 9 1 + 19.55727 126.14310 230.85212 16.07843 110 8 1 + 21.83116 127.51650 238.03393 16.58139 110 9 1 + 24.26806 128.88990 247.61307 17.25201 110 10 1 + 26.70172 130.26330 257.19585 17.92263 110 10 1 + 29.13353 131.63670 266.78180 18.59324 110 11 1 + 31.39723 133.01010 273.97304 19.09621 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -20806,9 +20942,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 4.220 'Hydrobiaklei' - -12.00 2.181 'Basisveen' - -12.50 35.542 'Eerste zandlaag' + -11.09 4.251 'Hydrobiaklei' + -12.00 2.096 'Basisveen' + -12.50 35.696 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -20827,7 +20963,7 @@ Layer name -10.79 0.38 'Grind' -11.09 0.90 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 13.64 'Eerste zandlaag' + -12.50 13.70 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21049,8 +21185,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 527.99754 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 616.87551 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 527.99699 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 616.87509 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -21094,10 +21230,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 21.04 : Percentage mobilized resistance left - 18.35 : Percentage mobilized resistance right - 150.58 : Effective left - 131.35 : Effective right + 21.08 : Percentage mobilized resistance left + 18.39 : Percentage mobilized resistance right + 150.86 : Effective left + 131.61 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 715.81 : Max effective resistance left @@ -21106,8 +21242,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 30.07 : Vertical force left - 22.99 : Vertical force right + 30.20 : Vertical force left + 23.12 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -21116,10 +21252,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --22.99 : Active force -30.07 : Passive force --22.99 : Plugged active force -30.07 : Plugged passive force +-23.12 : Active force +30.20 : Passive force +-23.12 : Plugged active force +30.20 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -21139,192 +21275,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.88312 - 0.00000 0.00000 -7.82591 - 0.00000 0.00000 -7.76871 - 0.00000 0.00000 -7.71150 - 0.00000 0.00000 -7.65430 - 0.00000 0.00000 -7.59709 - 0.00000 0.00000 -7.59709 - 0.00000 0.00000 -7.53989 - 0.00000 0.00000 -7.48268 - 0.00000 0.00000 -7.42548 - 0.00000 0.00000 -7.36827 - 0.00000 0.00000 -7.31107 - 0.00000 0.00000 -7.31107 - 0.00000 0.00000 -7.23479 - 0.00000 0.00000 -7.15852 - 0.00000 0.00000 -7.08224 - 0.00000 0.00000 -7.00597 - 0.00000 0.00000 -6.92970 - 0.00000 0.00000 -6.92970 - 0.00000 0.00000 -6.86614 - 0.00000 0.00000 -6.80257 - 0.00000 0.00000 -6.73901 - 0.00000 0.00000 -6.67545 - 0.00000 0.00000 -6.61189 - 0.00000 0.00000 -6.61189 - 0.00000 0.00000 -6.54833 - 0.00000 0.00000 -6.48477 - 0.00000 0.00000 -6.42121 - 0.00000 0.00000 -6.35765 - 0.00000 0.00000 -6.29408 - 0.00000 0.00000 -6.29408 - 0.00000 0.00000 -6.23942 - 0.00000 0.00000 -6.18476 - 0.00000 0.00000 -6.13010 - 0.00000 0.00000 -6.07543 - 0.00000 0.00000 -6.02077 - 0.00000 -0.11754 -6.02077 - -0.01340 -0.11754 -5.94831 - -0.02680 -0.11754 -5.87585 - -0.04020 -0.11754 -5.80338 - -0.05360 -0.11754 -5.73091 - -0.06700 -0.11754 -5.65843 - -0.06590 -0.13915 -5.65843 - -0.07703 -0.13915 -5.60757 - -0.08816 -0.13915 -5.55669 - -0.09929 -0.13915 -5.50582 - -0.11043 -0.13915 -5.45493 - -0.12156 -0.13915 -5.40404 - -0.12187 -0.14144 -5.40404 - -0.12470 -0.14144 -5.39131 - -0.12752 -0.14144 -5.37859 - -0.13035 -0.14144 -5.36586 - -0.13318 -0.14144 -5.35314 - -0.13601 -0.14144 -5.34041 - -0.13606 -0.14090 -5.34041 - -0.15015 -0.14090 -5.27677 - -0.16424 -0.14090 -5.21311 - -0.17832 -0.14090 -5.14944 - -0.19241 -0.14090 -5.08574 - -0.20650 -0.14090 -5.02203 - -0.20668 -0.13470 -5.02203 - -0.22015 -0.13470 -4.95829 - -0.23362 -0.13470 -4.89454 - -0.24709 -0.13470 -4.83075 - -0.26056 -0.13470 -4.76694 - -0.27403 -0.13470 -4.70311 - -0.27402 -0.13418 -4.70311 - -0.28744 -0.13418 -4.63924 - -0.30086 -0.13418 -4.57535 - -0.31428 -0.13418 -4.51142 - -0.32769 -0.13418 -4.44746 - -0.34111 -0.13418 -4.38347 - -0.34116 -0.13335 -4.38347 - -0.35983 -0.13335 -4.29382 - -0.37850 -0.13335 -4.20409 - -0.39717 -0.13335 -4.11429 - -0.41584 -0.13335 -4.02440 - -0.43451 -0.13335 -3.93443 - -0.43459 -0.13151 -3.93443 - -0.45169 -0.13151 -3.85080 - -0.46879 -0.13151 -3.76710 - -0.48588 -0.13151 -3.68331 - -0.50298 -0.13151 -3.59944 - -0.52008 -0.13151 -3.51547 - -0.51990 -0.13185 -3.51547 - -0.53704 -0.13185 -3.43142 - -0.55418 -0.13185 -3.34727 - -0.57132 -0.13185 -3.26302 - -0.58846 -0.13185 -3.17867 - -0.60560 -0.13185 -3.09421 - -0.60561 -0.13188 -3.09421 - -0.62532 -0.13188 -2.99695 - -0.64504 -0.13188 -2.89955 - -0.66475 -0.13188 -2.80200 - -0.68447 -0.13188 -2.70429 - -0.70418 -0.13188 -2.60641 - -0.70418 -0.13188 -2.60641 - -0.72390 -0.13188 -2.50838 - -0.74362 -0.13188 -2.41017 - -0.76333 -0.13188 -2.31179 - -0.78305 -0.13188 -2.21323 - -0.80276 -0.13188 -2.11449 - -0.80414 -0.12487 -2.11449 - -0.82281 -0.12487 -2.01556 - -0.84147 -0.12487 -1.91643 - -0.86014 -0.12487 -1.81711 - -0.87881 -0.12487 -1.71758 - -0.89748 -0.12487 -1.61785 - -0.89550 -0.11271 -1.61785 - -0.91235 -0.11271 -1.51791 - -0.92920 -0.11271 -1.41776 - -0.94605 -0.11271 -1.31738 - -0.96290 -0.11271 -1.21679 - -0.97975 -0.11271 -1.11597 - -0.97891 -0.09824 -1.11597 - -0.97910 -0.09823 -1.11462 - -0.97930 -0.09823 -1.11327 - -0.97950 -0.09823 -1.11192 - -0.97969 -0.09823 -1.11057 - -0.97989 -0.09823 -1.10922 - -0.97989 -0.09826 -1.10922 - -0.98362 -0.09826 -1.08355 - -0.98736 -0.09826 -1.05787 - -0.99109 -0.09826 -1.03217 - -0.99482 -0.09826 -1.00646 - -0.99856 -0.09826 -0.98073 - -0.99846 23.10526 -0.98073 - 1.77417 23.10526 -0.89946 - 4.54680 23.10526 -0.81845 - 7.31943 23.10526 -0.73814 - 10.09206 23.10526 -0.65893 - 12.86470 23.10526 -0.58124 - 12.86475 23.10118 -0.58124 - 14.16902 20.34794 -0.54311 - 15.30346 17.44269 -0.50551 - 16.25938 14.39950 -0.46848 - 17.02891 11.23188 -0.43206 - 17.60498 7.95281 -0.39629 - 17.60570 7.92674 -0.39629 - 18.27794 6.89622 -0.34331 - 18.86703 6.07066 -0.29193 - 19.38641 5.36396 -0.24218 - 19.84680 4.77387 -0.19411 - 20.25858 4.29342 -0.14777 - 20.25838 4.29616 -0.14777 - 20.63222 3.93708 -0.10319 - 20.97811 3.68296 -0.06041 - 21.30577 3.53611 -0.01945 - 21.62486 3.49411 0.01966 - 21.94385 3.52289 0.05689 - 21.94388 3.52203 0.05689 - 22.29672 3.54147 0.09560 - 22.65324 3.59278 0.13197 - 23.01595 3.66428 0.16596 - 23.38564 3.72234 0.19753 - 23.75888 3.73432 0.22665 - 23.76038 3.72732 0.22665 - 24.19044 2.27822 0.26317 - 24.35990 0.00654 0.29471 - 24.17115 -2.71770 0.32130 - 23.60581 -5.29489 0.34298 - 22.70607 -7.49724 0.35980 - 22.70484 -7.49839 0.35980 - 21.52398 -9.31088 0.37188 - 20.11480 -10.75906 0.37953 - 18.52840 -11.84394 0.38308 - 16.81506 -12.57387 0.38284 - 15.02355 -12.96447 0.37914 - 15.02491 -12.93483 0.37914 - 13.20737 -12.97695 0.37233 - 11.40627 -12.69957 0.36281 - 9.66627 -12.10566 0.35093 - 8.03105 -11.20394 0.33704 - 6.54191 -10.02903 0.32150 - 6.54341 -10.00267 0.32150 - 5.23219 -8.74035 0.30465 - 4.09284 -7.54816 0.28672 - 3.11525 -6.43001 0.26792 - 2.28883 -5.38903 0.24844 - 1.60261 -4.42751 0.22850 - 1.60510 -4.46865 0.22850 - 1.04880 -3.51610 0.20827 - 0.61340 -2.71758 0.18782 - 0.28703 -1.93711 0.16722 - 0.07588 -1.05229 0.14655 - 0.00026 0.00116 0.12586 + 0.00000 0.00000 -7.88409 + 0.00000 0.00000 -7.82686 + 0.00000 0.00000 -7.76962 + 0.00000 0.00000 -7.71239 + 0.00000 0.00000 -7.65515 + 0.00000 0.00000 -7.59792 + 0.00000 0.00000 -7.59792 + 0.00000 0.00000 -7.54068 + 0.00000 0.00000 -7.48345 + 0.00000 0.00000 -7.42621 + 0.00000 0.00000 -7.36898 + 0.00000 0.00000 -7.31174 + 0.00000 0.00000 -7.31174 + 0.00000 0.00000 -7.23543 + 0.00000 0.00000 -7.15911 + 0.00000 0.00000 -7.08280 + 0.00000 0.00000 -7.00649 + 0.00000 0.00000 -6.93017 + 0.00000 0.00000 -6.93017 + 0.00000 0.00000 -6.86658 + 0.00000 0.00000 -6.80298 + 0.00000 0.00000 -6.73939 + 0.00000 0.00000 -6.67579 + 0.00000 0.00000 -6.61220 + 0.00000 0.00000 -6.61220 + 0.00000 0.00000 -6.54860 + 0.00000 0.00000 -6.48501 + 0.00000 0.00000 -6.42141 + 0.00000 0.00000 -6.35782 + 0.00000 0.00000 -6.29422 + 0.00000 0.00000 -6.29422 + 0.00000 0.00000 -6.23953 + 0.00000 0.00000 -6.18484 + 0.00000 0.00000 -6.13015 + 0.00000 0.00000 -6.07546 + 0.00000 0.00000 -6.02076 + 0.00000 -0.11699 -6.02076 + -0.01334 -0.11699 -5.94827 + -0.02667 -0.11699 -5.87577 + -0.04001 -0.11699 -5.80326 + -0.05335 -0.11699 -5.73075 + -0.06669 -0.11699 -5.65824 + -0.06558 -0.13861 -5.65824 + -0.07667 -0.13861 -5.60734 + -0.08776 -0.13861 -5.55644 + -0.09885 -0.13861 -5.50554 + -0.10994 -0.13861 -5.45463 + -0.12103 -0.13861 -5.40371 + -0.12134 -0.14090 -5.40371 + -0.12416 -0.14090 -5.39098 + -0.12697 -0.14090 -5.37824 + -0.12979 -0.14090 -5.36551 + -0.13261 -0.14090 -5.35278 + -0.13543 -0.14090 -5.34005 + -0.13547 -0.14036 -5.34005 + -0.14951 -0.14036 -5.27637 + -0.16354 -0.14036 -5.21268 + -0.17758 -0.14036 -5.14897 + -0.19162 -0.14036 -5.08525 + -0.20565 -0.14036 -5.02150 + -0.20583 -0.13416 -5.02150 + -0.21925 -0.13416 -4.95773 + -0.23267 -0.13416 -4.89394 + -0.24608 -0.13416 -4.83013 + -0.25950 -0.13416 -4.76628 + -0.27292 -0.13416 -4.70242 + -0.27290 -0.13364 -4.70242 + -0.28627 -0.13364 -4.63852 + -0.29963 -0.13364 -4.57459 + -0.31300 -0.13364 -4.51063 + -0.32636 -0.13364 -4.44664 + -0.33972 -0.13364 -4.38261 + -0.33978 -0.13281 -4.38261 + -0.35837 -0.13281 -4.29292 + -0.37696 -0.13281 -4.20315 + -0.39556 -0.13281 -4.11330 + -0.41415 -0.13281 -4.02337 + -0.43275 -0.13281 -3.93336 + -0.43283 -0.13097 -3.93336 + -0.44985 -0.13097 -3.84969 + -0.46688 -0.13097 -3.76595 + -0.48391 -0.13097 -3.68212 + -0.50093 -0.13097 -3.59821 + -0.51796 -0.13097 -3.51421 + -0.51778 -0.13131 -3.51421 + -0.53485 -0.13131 -3.43011 + -0.55192 -0.13131 -3.34592 + -0.56899 -0.13131 -3.26164 + -0.58606 -0.13131 -3.17725 + -0.60313 -0.13131 -3.09276 + -0.60313 -0.13133 -3.09276 + -0.62277 -0.13133 -2.99546 + -0.64240 -0.13133 -2.89802 + -0.66203 -0.13133 -2.80042 + -0.68167 -0.13133 -2.70267 + -0.70130 -0.13133 -2.60476 + -0.70130 -0.13133 -2.60476 + -0.72093 -0.13133 -2.50669 + -0.74057 -0.13133 -2.40845 + -0.76020 -0.13133 -2.31003 + -0.77983 -0.13133 -2.21143 + -0.79947 -0.13133 -2.11266 + -0.80084 -0.12434 -2.11266 + -0.81943 -0.12434 -2.01369 + -0.83802 -0.12434 -1.91453 + -0.85661 -0.12434 -1.81518 + -0.87519 -0.12434 -1.71562 + -0.89378 -0.12434 -1.61586 + -0.89197 -0.10944 -1.61586 + -0.90834 -0.10944 -1.51589 + -0.92470 -0.10944 -1.41570 + -0.94106 -0.10944 -1.31530 + -0.95742 -0.10944 -1.21468 + -0.97378 -0.10944 -1.11384 + -0.97292 -0.09487 -1.11384 + -0.97311 -0.09487 -1.11248 + -0.97330 -0.09487 -1.11113 + -0.97349 -0.09487 -1.10978 + -0.97368 -0.09487 -1.10843 + -0.97387 -0.09487 -1.10708 + -0.97387 -0.09490 -1.10708 + -0.97747 -0.09490 -1.08141 + -0.98108 -0.09490 -1.05572 + -0.98468 -0.09490 -1.03002 + -0.98829 -0.09490 -1.00430 + -0.99190 -0.09490 -0.97857 + -0.99180 23.10905 -0.97857 + 1.78129 23.10905 -0.89728 + 4.55437 23.10905 -0.81625 + 7.32746 23.10905 -0.73592 + 10.10055 23.10905 -0.65670 + 12.87363 23.10905 -0.57900 + 12.87369 23.10498 -0.57900 + 14.17820 20.35214 -0.54086 + 15.31290 17.44730 -0.50325 + 16.26911 14.40453 -0.46622 + 17.03896 11.23735 -0.42980 + 17.61537 7.95873 -0.39402 + 17.61609 7.93264 -0.39402 + 18.28882 6.90017 -0.34104 + 18.87807 6.07049 -0.28965 + 19.39726 5.35989 -0.23990 + 19.85712 4.76614 -0.19182 + 20.26803 4.28228 -0.14548 + 20.26793 4.28221 -0.14548 + 20.64036 3.91998 -0.10090 + 20.98456 3.66300 -0.05812 + 21.31029 3.51360 -0.01716 + 21.62723 3.46937 0.02195 + 21.94392 3.49770 0.05918 + 21.94394 3.49676 0.05918 + 22.29429 3.51698 0.09789 + 22.64840 3.56922 0.13426 + 23.00882 3.64182 0.16825 + 23.37631 3.70072 0.19983 + 23.74741 3.71325 0.22895 + 23.74888 3.70684 0.22895 + 24.17727 2.27310 0.26548 + 24.34669 0.01105 0.29702 + 24.15907 -2.70730 0.32362 + 23.59534 -5.28229 0.34532 + 22.69749 -7.48295 0.36215 + 22.69643 -7.48479 0.36215 + 21.51756 -9.29615 0.37425 + 20.11048 -10.74380 0.38192 + 18.52622 -11.82878 0.38549 + 16.81496 -12.55947 0.38527 + 15.02537 -12.95152 0.38158 + 15.02526 -12.94698 0.38158 + 13.20589 -12.99127 0.37479 + 11.40258 -12.71683 0.36529 + 9.65991 -12.12662 0.35344 + 8.02146 -11.22937 0.33957 + 6.52877 -10.05176 0.32405 + 6.53026 -10.02540 0.32405 + 5.21659 -8.75273 0.30723 + 4.07623 -7.55008 0.28933 + 3.09911 -6.42135 0.27056 + 2.27466 -5.36965 0.25112 + 1.59191 -4.39724 0.23122 + 1.59196 -4.39661 0.23122 + 1.03980 -3.50504 0.21103 + 0.60673 -2.69530 0.19062 + 0.28375 -1.91477 0.17007 + 0.07493 -1.04143 0.14944 + -0.00001 -0.00004 0.12880 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -21445,24 +21581,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -21537,8 +21673,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -21556,7 +21692,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -21568,7 +21704,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -21598,7 +21734,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -21739,13 +21875,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -21758,54 +21894,54 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 0.98277 69.84300 62.88631 10.23728 110 0 1 - 9.08503 70.73571 62.76725 10.45829 110 0 1 - 9.63356 71.62842 62.93711 10.80128 110 0 1 - 10.17556 72.52113 63.36356 11.14428 110 0 1 - 10.71083 73.41384 63.95712 11.48728 110 0 1 - 11.15344 74.30655 64.47739 11.74453 110 0 1 - 11.32494 74.30655 64.85531 11.91602 110 0 1 - 11.76049 75.19926 65.45935 12.17327 110 0 1 - 12.27462 76.09197 66.31521 12.51627 110 0 1 - 12.78146 76.98468 67.21959 12.85927 110 0 1 - 13.28090 77.87739 68.16229 13.20226 110 19 1 - 13.68706 78.77010 68.88908 13.45951 110 20 1 - 15.38290 78.77010 43.93101 15.49997 110 0 1 - 12.40921 82.75110 39.79998 12.27314 110 31 1 - 10.45362 86.73210 34.34186 10.18968 110 30 1 - 8.43814 90.71310 28.93258 8.10622 110 29 1 - 6.41782 94.69410 23.56199 6.02276 110 27 1 - 4.91347 98.67510 19.55369 4.46017 110 25 1 - 18.14986 98.67510 40.26142 2.66609 110 45 1 - 14.46598 100.04850 47.59458 3.16905 110 30 1 - 10.17325 101.42190 57.26566 3.83967 110 18 1 - 8.36583 102.79530 66.83887 4.51028 110 13 1 - 9.29665 104.16870 76.34704 5.18090 110 12 1 - 10.00145 105.54210 83.45275 5.68386 110 12 1 - 10.33676 105.54210 88.18188 6.01917 110 12 1 - 10.98470 106.91550 95.26984 6.52214 110 12 1 - 11.74717 108.28890 104.71836 7.19275 110 11 1 - 12.46035 109.66230 114.17154 7.86337 110 11 1 - 13.12809 111.03570 123.63438 8.53399 110 11 1 - 13.58657 112.40910 130.73900 9.03695 110 10 1 - 13.92188 112.40910 135.47972 9.37226 110 10 1 - 14.34317 113.78250 142.59735 9.87522 110 10 1 - 14.89955 115.15590 152.09823 10.54584 110 10 1 - 15.42762 116.52930 161.61132 11.21646 110 10 1 - 15.93160 117.90270 171.13564 11.88707 110 9 1 - 16.24807 119.27610 178.28533 12.39004 110 9 1 - 16.58338 119.27610 183.05493 12.72534 110 9 1 - 16.88408 120.64950 190.21367 13.22831 110 9 1 - 17.33954 122.02290 199.76524 13.89892 110 9 1 - 17.78453 123.39630 209.32386 14.56954 110 8 1 - 18.22148 124.76970 218.88869 15.24016 110 8 1 - 18.48517 126.14310 226.06575 15.74312 110 8 1 - 15.10990 126.14310 230.85212 11.38031 110 7 1 - 19.08063 127.51650 238.03393 16.58139 110 8 1 - 19.50586 128.88990 247.61307 17.25201 110 8 1 - 20.69957 130.26330 257.19585 17.92263 110 8 1 - 22.58459 131.63670 266.78180 18.59324 110 8 1 - 24.37712 133.01010 273.97304 19.09621 110 9 1 + 0.94779 69.84300 62.88631 10.20104 110 0 1 + 9.09414 70.73571 62.76725 10.45829 110 0 1 + 9.64269 71.62842 62.93711 10.80128 110 0 1 + 10.18470 72.52113 63.36356 11.14428 110 0 1 + 10.71998 73.41384 63.95712 11.48728 110 0 1 + 11.16261 74.30655 64.47739 11.74453 110 0 1 + 11.33411 74.30655 64.85531 11.91602 110 0 1 + 11.76967 75.19926 65.45935 12.17327 110 0 1 + 12.28380 76.09197 66.31521 12.51627 110 0 1 + 12.79064 76.98468 67.21959 12.85927 110 0 1 + 13.29008 77.87739 68.16229 13.20226 110 19 1 + 13.69624 78.77010 68.88908 13.45951 110 20 1 + 13.72059 78.77010 43.93101 13.83574 110 0 1 + 12.41104 82.75110 39.79998 12.27314 110 31 1 + 10.45821 86.73210 34.34186 10.18968 110 30 1 + 8.44273 90.71310 28.93258 8.10622 110 29 1 + 6.42242 94.69410 23.56199 6.02276 110 27 1 + 4.91807 98.67510 19.55369 4.46017 110 25 1 + 18.27620 98.67510 40.26142 2.66609 110 45 1 + 14.52900 100.04850 47.59458 3.16905 110 31 1 + 10.23910 101.42190 57.26566 3.83967 110 18 1 + 8.39371 102.79530 66.83887 4.51028 110 13 1 + 9.32469 104.16870 76.34704 5.18090 110 12 1 + 10.02967 105.54210 83.45275 5.68386 110 12 1 + 10.36498 105.54210 88.18188 6.01917 110 12 1 + 11.01313 106.91550 95.26984 6.52214 110 12 1 + 11.77581 108.28890 104.71836 7.19275 110 11 1 + 12.48922 109.66230 114.17154 7.86337 110 11 1 + 13.15720 111.03570 123.63438 8.53399 110 11 1 + 13.61592 112.40910 130.73900 9.03695 110 10 1 + 13.95123 112.40910 135.47972 9.37226 110 10 1 + 14.37275 113.78250 142.59735 9.87522 110 10 1 + 14.92937 115.15590 152.09823 10.54584 110 10 1 + 15.45769 116.52930 161.61132 11.21646 110 10 1 + 15.96193 117.90270 171.13564 11.88707 110 9 1 + 16.27869 119.27610 178.28533 12.39004 110 9 1 + 16.61400 119.27610 183.05493 12.72534 110 9 1 + 16.91503 120.64950 190.21367 13.22831 110 9 1 + 17.37085 122.02290 199.76524 13.89892 110 9 1 + 17.81624 123.39630 209.32386 14.56954 110 9 1 + 18.25362 124.76970 218.88869 15.24016 110 8 1 + 18.51778 126.14310 226.06575 15.74312 110 8 1 + 18.85309 126.14310 230.85212 16.07843 110 8 1 + 19.11374 127.51650 238.03393 16.58139 110 8 1 + 19.53950 128.88990 247.61307 17.25201 110 8 1 + 20.59885 130.26330 257.19585 17.92263 110 8 1 + 22.47980 131.63670 266.78180 18.59324 110 8 1 + 24.26827 133.01010 273.97304 19.09621 110 9 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -21820,9 +21956,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 9.853 'Hydrobiaklei' - -12.00 4.787 'Basisveen' - -12.50 53.441 'Eerste zandlaag' + -11.09 9.859 'Hydrobiaklei' + -12.00 4.705 'Basisveen' + -12.50 53.776 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -21839,9 +21975,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.38 'Grind' - -11.09 -2.09 'Hydrobiaklei' + -11.09 -2.10 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -20.51 'Eerste zandlaag' + -12.50 -20.64 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -21965,24 +22101,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -22057,8 +22193,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -22076,7 +22212,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -22088,7 +22224,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -22118,7 +22254,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -22259,73 +22395,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 39.89886 66.90000 84.51945 5.13458 110 47 1 - 42.23313 67.48860 88.29387 5.36388 110 48 1 - 44.40945 68.07720 93.32642 5.66961 110 48 1 - 46.39422 68.66580 98.35898 5.97534 110 47 1 - 48.19503 69.25440 103.39154 6.28107 110 47 1 - 49.77829 69.84300 107.16595 6.51036 110 46 1 - 11.74742 69.84300 62.88631 10.23728 110 19 1 - 17.19439 70.73571 62.76725 10.45829 110 27 1 - 16.64433 71.62842 62.93711 10.80128 110 26 1 - 16.10806 72.52113 63.36356 11.14428 110 25 1 - 15.58581 73.41384 63.95712 11.48728 110 24 1 - 15.07778 74.30655 64.47739 11.74453 110 23 1 - 15.07778 74.30655 64.85531 11.91602 110 23 1 - 14.58418 75.19926 65.45935 12.17327 110 22 1 - 14.10509 76.09197 66.31521 12.51627 110 21 1 - 13.64064 76.98468 67.21959 12.85927 110 20 1 - 13.19094 77.87739 68.16229 13.20226 110 0 1 - 13.24989 78.77010 68.88908 13.45951 110 0 1 - 15.38620 78.77010 43.93101 15.49997 110 0 1 - 12.08195 82.75110 39.79998 12.27314 110 0 1 - 9.92575 86.73210 34.34186 10.18968 110 0 1 - 7.77431 90.71310 28.93258 8.10622 110 0 1 - 6.11401 94.69410 23.56199 6.02276 110 26 1 - 5.01752 98.67510 19.55369 4.46017 110 26 1 - 24.30956 98.67510 40.26142 2.66609 220 60 2 - 25.55747 100.04850 47.59458 3.16905 220 54 2 - 26.12563 101.42190 57.26566 3.83967 110 46 1 - 24.84487 102.79530 66.83887 4.51028 110 37 1 - 23.49847 104.16870 76.34704 5.18090 110 31 1 - 22.01803 105.54210 83.45275 5.68386 110 26 1 - 22.20085 105.54210 88.18188 6.01917 110 25 1 - 20.69777 106.91550 95.26984 6.52214 110 22 1 - 19.27434 108.28890 104.71836 7.19275 110 18 1 - 17.84849 109.66230 114.17154 7.86337 110 16 1 - 16.42956 111.03570 123.63438 8.53399 110 13 1 - 14.93505 112.40910 130.73900 9.03695 110 11 1 - 15.11879 112.40910 135.47972 9.37226 110 11 1 - 13.64763 113.78250 142.59735 9.87522 110 10 1 - 12.29301 115.15590 152.09823 10.54584 110 8 1 - 10.96378 116.52930 161.61132 11.21646 110 0 1 - 9.66069 117.90270 171.13564 11.88707 110 0 1 - 8.53200 119.27610 178.28533 12.39004 110 0 1 - 8.86731 119.27610 183.05493 12.72534 110 0 1 - 9.57253 120.64950 190.21367 13.22831 110 0 1 - 10.45831 122.02290 199.76524 13.89892 110 0 1 - 11.35455 123.39630 209.32386 14.56954 110 0 1 - 12.25883 124.76970 218.88869 15.24016 110 0 1 - 13.00107 126.14310 226.06575 15.74312 110 0 1 - 8.76840 126.14310 230.85212 11.38031 1 0 A - 14.08216 127.51650 238.03393 16.58139 110 0 1 - 14.99816 128.88990 247.61307 17.25201 110 0 1 - 15.91593 130.26330 257.19585 17.92263 110 0 1 - 16.83468 131.63670 266.78180 18.59324 110 0 1 - 17.58594 133.01010 273.97304 19.09621 110 0 1 + 39.89355 66.90000 84.51945 5.13458 110 47 1 + 42.22756 67.48860 88.29387 5.36388 110 48 1 + 44.40364 68.07720 93.32642 5.66961 110 48 1 + 46.38821 68.66580 98.35898 5.97534 110 47 1 + 48.18884 69.25440 103.39154 6.28107 110 47 1 + 49.77197 69.84300 107.16595 6.51036 110 46 1 + 11.70952 69.84300 62.88631 10.20104 110 19 1 + 17.24210 70.73571 62.76725 10.45829 110 27 1 + 16.69017 71.62842 62.93711 10.80128 110 27 1 + 16.15188 72.52113 63.36356 11.14428 110 25 1 + 15.62744 73.41384 63.95712 11.48728 110 24 1 + 15.11706 74.30655 64.47739 11.74453 110 23 1 + 15.11706 74.30655 64.85531 11.91602 110 23 1 + 14.62091 75.19926 65.45935 12.17327 110 22 1 + 14.13910 76.09197 66.31521 12.51627 110 21 1 + 13.67177 76.98468 67.21959 12.85927 110 20 1 + 13.21903 77.87739 68.16229 13.20226 110 19 1 + 13.24844 78.77010 68.88908 13.45951 110 0 1 + 13.71737 78.77010 43.93101 13.83574 110 0 1 + 12.07736 82.75110 39.79998 12.27314 110 0 1 + 9.92116 86.73210 34.34186 10.18968 110 0 1 + 7.76972 90.71310 28.93258 8.10622 110 0 1 + 6.11389 94.69410 23.56199 6.02276 110 26 1 + 5.01762 98.67510 19.55369 4.46017 110 26 1 + 24.31222 98.67510 40.26142 2.66609 220 60 2 + 25.56133 100.04850 47.59458 3.16905 220 54 2 + 26.13598 101.42190 57.26566 3.83967 110 46 1 + 24.85812 102.79530 66.83887 4.51028 110 37 1 + 23.51487 104.16870 76.34704 5.18090 110 31 1 + 22.03783 105.54210 83.45275 5.68386 110 26 1 + 22.22064 105.54210 88.18188 6.01917 110 25 1 + 20.72121 106.91550 95.26984 6.52214 110 22 1 + 19.30164 108.28890 104.71836 7.19275 110 18 1 + 17.87987 109.66230 114.17154 7.86337 110 16 1 + 16.46523 111.03570 123.63438 8.53399 110 13 1 + 14.97518 112.40910 130.73900 9.03695 110 11 1 + 15.15892 112.40910 135.47972 9.37226 110 11 1 + 13.69239 113.78250 142.59735 9.87522 110 10 1 + 12.34253 115.15590 152.09823 10.54584 110 8 1 + 11.01817 116.52930 161.61132 11.21646 110 0 1 + 9.72000 117.90270 171.13564 11.88707 110 0 1 + 8.50138 119.27610 178.28533 12.39004 110 0 1 + 8.83668 119.27610 183.05493 12.72534 110 0 1 + 9.54159 120.64950 190.21367 13.22831 110 0 1 + 10.42700 122.02290 199.76524 13.89892 110 0 1 + 11.32285 123.39630 209.32386 14.56954 110 0 1 + 12.22669 124.76970 218.88869 15.24016 110 0 1 + 12.96846 126.14310 226.06575 15.74312 110 0 1 + 13.30377 126.14310 230.85212 16.07843 110 0 1 + 14.04905 127.51650 238.03393 16.58139 110 0 1 + 14.96452 128.88990 247.61307 17.25201 110 0 1 + 15.88176 130.26330 257.19585 17.92263 110 0 1 + 16.79995 131.63670 266.78180 18.59324 110 0 1 + 17.55066 133.01010 273.97304 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -22339,10 +22475,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 13.564 'Grind' - -11.09 13.525 'Hydrobiaklei' - -12.00 4.610 'Basisveen' - -12.50 56.558 'Eerste zandlaag' + -10.79 13.562 'Grind' + -11.09 13.555 'Hydrobiaklei' + -12.00 4.525 'Basisveen' + -12.50 56.890 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -22359,9 +22495,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 5.48 'Grind' - -11.09 2.87 'Hydrobiaklei' + -11.09 2.88 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 21.71 'Eerste zandlaag' + -12.50 21.84 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -22583,8 +22719,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 454.30895 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 628.78164 10000000.000 1 1 1 'Dek' + -10.19000 454.29469 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 628.78268 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -22645,10 +22781,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 25.07 : Percentage mobilized resistance left - 15.19 : Percentage mobilized resistance right - 179.44 : Effective left - 108.75 : Effective right + 25.10 : Percentage mobilized resistance left + 15.22 : Percentage mobilized resistance right + 179.70 : Effective left + 108.97 : Effective right 537.94 : Water pressure left 537.94 : Water pressure right 715.81 : Max effective resistance left @@ -22657,8 +22793,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 39.87 : Vertical force left - 15.62 : Vertical force right + 40.00 : Vertical force left + 15.74 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -22667,17 +22803,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.62 : Active force -39.87 : Passive force --15.62 : Plugged active force -39.87 : Plugged passive force +-15.74 : Active force +40.00 : Passive force +-15.74 : Plugged active force +40.00 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --75.75 : Resulting Vertical Force Unplugged --75.75 : Resulting Vertical Force Plugged +-75.74 : Resulting Vertical Force Unplugged +-75.74 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -22690,192 +22826,192 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.50184 - 0.15035 0.00000 -58.24888 - 0.30070 0.00000 -56.99592 - 0.45105 0.00000 -55.74300 - 0.60140 0.00000 -54.49011 - 0.75175 0.00000 -53.23727 - 0.75175 0.00000 -53.23727 - 0.90206 0.00000 -51.98450 - 1.05237 0.00000 -50.73181 - 1.20268 0.00000 -49.47920 - 1.35299 0.00000 -48.22670 - 1.50330 0.00000 -46.97431 - 1.50330 0.00000 -46.97431 - 1.70359 0.00000 -45.30466 - 1.90388 0.00000 -43.63526 - 2.10417 0.00000 -41.96616 - 2.30446 0.00000 -40.29737 - 2.50475 0.00000 -38.62893 - 2.50475 0.00000 -38.62893 - 2.67149 0.00000 -37.23885 - 2.83822 0.00000 -35.84906 - 3.00496 0.00000 -34.45956 - 3.17170 0.00000 -33.07037 - 3.33844 0.00000 -31.68152 - 3.33844 0.00000 -31.68152 - 3.50497 0.00000 -30.29302 - 3.67149 0.00000 -28.90489 - 3.83802 0.00000 -27.51714 - 4.00455 0.00000 -26.12980 - 4.17108 0.00000 -24.74287 - 4.17108 0.00000 -24.74287 - 4.31408 0.00000 -23.55047 - 4.45709 0.00000 -22.35840 - 4.60009 0.00000 -21.16667 - 4.74310 0.00000 -19.97531 - 4.88610 0.00000 -18.78431 - 4.88610 527.88000 -18.78431 - 65.24953 527.88000 -17.20750 - 125.61295 527.88000 -15.63959 - 185.97638 527.88000 -14.08882 - 246.33980 527.88000 -12.56343 - 306.70322 527.88000 -11.07164 - 306.70433 527.85840 -11.07164 - 349.04937 527.85840 -10.04927 - 391.39442 527.85840 -9.05035 - 433.73946 527.85840 -8.07773 - 476.08451 527.85840 -7.13425 - 518.42955 527.85840 -6.22276 - 518.42924 -100.92554 -6.22276 - 516.43692 -100.92554 -6.00021 - 514.44459 -100.92554 -5.77983 - 512.45227 -100.92554 -5.56161 - 510.45995 -100.92554 -5.34554 - 508.46762 -100.92554 -5.13162 - 508.46758 -100.92500 -5.13162 - 498.48730 -100.92500 -4.09385 - 488.50703 -100.92500 -3.10841 - 478.52675 -100.92500 -2.17426 - 468.54648 -100.92500 -1.29035 - 458.56620 -100.92500 -0.45562 - 458.56602 -100.91880 -0.45562 - 448.55748 -100.91880 0.33096 - 438.54894 -100.91880 1.07045 - 428.54040 -100.91880 1.76391 - 418.53186 -100.91880 2.41237 - 408.52332 -100.91880 3.01689 - 408.52334 -100.91828 3.01689 - 398.48912 -100.91828 3.57853 - 388.45490 -100.91828 4.09833 - 378.42068 -100.91828 4.57735 - 368.38646 -100.91828 5.01664 - 358.35224 -100.91828 5.41726 - 358.35219 -100.91745 5.41726 - 344.26719 -100.91745 5.91516 - 330.18218 -100.91745 6.34222 - 316.09718 -100.91745 6.70134 - 302.01218 -100.91745 6.99541 - 287.92718 -100.91745 7.22734 - 287.92710 -100.91561 7.22734 - 274.81639 -100.91561 7.38959 - 261.70569 -100.91561 7.50308 - 248.59499 -100.91561 7.57014 - 235.48428 -100.91561 7.59309 - 222.37358 -100.91561 7.57426 - 222.37376 -100.91595 7.57426 - 209.23934 -100.91595 7.51597 - 196.10492 -100.91595 7.42056 - 182.97050 -100.91595 7.29036 - 169.83609 -100.91595 7.12770 - 156.70167 -100.91595 6.93490 - 156.70166 -100.91598 6.93490 - 141.57689 -100.91598 6.67895 - 126.45212 -100.91598 6.38979 - 111.32734 -100.91598 6.07095 - 96.20257 -100.91598 5.72599 - 81.07780 -100.91598 5.35846 - 81.07780 -100.91598 5.35846 - 65.94161 -100.91598 4.97190 - 50.80543 -100.91598 4.56987 - 35.66924 -100.91598 4.15592 - 20.53305 -100.91598 3.73360 - 5.39687 -100.91598 3.30646 - 5.39549 -100.90897 3.30646 - -9.74041 -100.90897 2.87805 - -24.87631 -100.90897 2.45193 - -40.01221 -100.90897 2.03165 - -55.14810 -100.90897 1.62076 - -70.28400 -100.90897 1.22280 - -70.28202 -100.89681 1.22280 - -85.40621 -100.89681 0.84134 - -100.53040 -100.89681 0.47992 - -115.65458 -100.89681 0.14208 - -130.77877 -100.89681 -0.16861 - -145.90296 -100.89681 -0.44862 - -145.90211 -100.88233 -0.44862 - -146.10430 -100.88233 -0.45214 - -146.30649 -100.88233 -0.45566 - -146.50867 -100.88233 -0.45917 - -146.71086 -100.88233 -0.46267 - -146.91304 -100.88233 -0.46617 - -146.91304 -100.88236 -0.46617 - -150.75371 -100.88236 -0.53143 - -154.59439 -100.88236 -0.59441 - -158.43506 -100.88236 -0.65505 - -162.27573 -100.88236 -0.71328 - -166.11640 -100.88236 -0.76906 - -166.11631 84.88772 -0.76906 - -155.94252 84.88772 -0.92894 - -145.76873 84.88772 -1.06525 - -135.59495 84.88772 -1.17952 - -125.42116 84.88772 -1.27329 - -115.24738 84.88772 -1.34811 - -115.24729 84.88294 -1.34811 - -110.25787 81.47581 -1.37889 - -105.47876 77.87067 -1.40550 - -100.92196 74.06730 -1.42812 - -96.59905 70.07571 -1.44692 - -92.52084 65.91611 -1.46207 - -92.52022 65.89284 -1.46207 - -86.60449 64.09986 -1.47844 - -80.85600 62.25635 -1.48728 - -75.27214 60.48287 -1.48908 - -69.84627 58.78457 -1.48432 - -64.57149 57.16148 -1.47350 - -64.57169 57.16168 -1.47350 - -59.43797 55.63215 -1.45707 - -54.43974 54.18603 -1.43548 - -49.56896 52.83153 -1.40914 - -44.81715 51.57180 -1.37849 - -40.17652 50.37799 -1.34394 - -40.17653 50.37547 -1.34394 - -35.16831 49.72329 -1.30197 - -30.22347 49.10600 -1.25631 - -25.33901 48.51469 -1.20747 - -20.51346 47.91829 -1.15596 - -15.74930 47.28648 -1.10231 - -15.74781 47.28510 -1.10231 - -9.48221 42.10906 -1.02463 - -3.95785 36.70607 -0.94501 - 0.79675 31.11534 -0.86443 - 4.75868 25.40075 -0.78387 - 7.92719 19.86238 -0.70430 - 7.92509 19.85089 -0.70430 - 10.34490 14.73866 -0.62654 - 12.07933 10.06082 -0.55091 - 13.18959 5.82269 -0.47765 - 13.73747 2.02691 -0.40700 - 13.78514 -1.32166 -0.33919 - 13.78506 -1.31568 -0.33919 - 13.40030 -4.10959 -0.27432 - 12.66694 -6.29509 -0.21221 - 11.67008 -7.87564 -0.15265 - 10.49371 -8.86108 -0.09546 - 9.21922 -9.28780 -0.04044 - 9.22070 -9.26063 -0.04044 - 7.91885 -9.31665 0.01266 - 6.62399 -9.16183 0.06413 - 5.36521 -8.80223 0.11424 - 4.17080 -8.24286 0.16323 - 3.06846 -7.48769 0.21136 - 3.07097 -7.52833 0.21136 - 2.08818 -6.50829 0.25889 - 1.25485 -5.36948 0.30600 - 0.59724 -3.97662 0.35281 - 0.15960 -2.20778 0.39946 - 0.00025 0.00112 0.44608 + 0.00000 0.00000 -59.50227 + 0.15035 0.00000 -58.24929 + 0.30070 0.00000 -56.99632 + 0.45106 0.00000 -55.74338 + 0.60141 0.00000 -54.49047 + 0.75176 0.00000 -53.23762 + 0.75176 0.00000 -53.23762 + 0.90207 0.00000 -51.98483 + 1.05239 0.00000 -50.73211 + 1.20270 0.00000 -49.47949 + 1.35301 0.00000 -48.22697 + 1.50333 0.00000 -46.97456 + 1.50333 0.00000 -46.97456 + 1.70362 0.00000 -45.30489 + 1.90391 0.00000 -43.63547 + 2.10420 0.00000 -41.96634 + 2.30449 0.00000 -40.29753 + 2.50478 0.00000 -38.62907 + 2.50478 0.00000 -38.62907 + 2.67152 0.00000 -37.23897 + 2.83826 0.00000 -35.84915 + 3.00500 0.00000 -34.45964 + 3.17175 0.00000 -33.07043 + 3.33849 0.00000 -31.68156 + 3.33849 0.00000 -31.68156 + 3.50502 0.00000 -30.29304 + 3.67155 0.00000 -28.90489 + 3.83807 0.00000 -27.51712 + 4.00460 0.00000 -26.12976 + 4.17113 0.00000 -24.74282 + 4.17113 0.00000 -24.74282 + 4.31414 0.00000 -23.55039 + 4.45715 0.00000 -22.35831 + 4.60016 0.00000 -21.16657 + 4.74316 0.00000 -19.97518 + 4.88617 0.00000 -18.78417 + 4.88617 527.88000 -18.78417 + 65.24960 527.88000 -17.20734 + 125.61303 527.88000 -15.63941 + 185.97645 527.88000 -14.08861 + 246.33988 527.88000 -12.56320 + 306.70331 527.88000 -11.07139 + 306.70441 527.85838 -11.07139 + 349.04945 527.85838 -10.04900 + 391.39450 527.85838 -9.05007 + 433.73955 527.85838 -8.07743 + 476.08459 527.85838 -7.13394 + 518.42964 527.85838 -6.22243 + 518.42933 -100.92659 -6.22243 + 516.43698 -100.92659 -5.99988 + 514.44464 -100.92659 -5.77949 + 512.45229 -100.92659 -5.56127 + 510.45995 -100.92659 -5.34520 + 508.46761 -100.92659 -5.13127 + 508.46756 -100.92605 -5.13127 + 498.48718 -100.92605 -4.09348 + 488.50680 -100.92605 -3.10802 + 478.52642 -100.92605 -2.17385 + 468.54605 -100.92605 -1.28992 + 458.56567 -100.92605 -0.45518 + 458.56549 -100.91985 -0.45518 + 448.55684 -100.91985 0.33143 + 438.54820 -100.91985 1.07094 + 428.53956 -100.91985 1.76441 + 418.53092 -100.91985 2.41289 + 408.52228 -100.91985 3.01744 + 408.52229 -100.91933 3.01744 + 398.48797 -100.91933 3.57909 + 388.45365 -100.91933 4.09892 + 378.41932 -100.91933 4.57796 + 368.38500 -100.91933 5.01727 + 358.35068 -100.91933 5.41791 + 358.35063 -100.91850 5.41791 + 344.26548 -100.91850 5.91584 + 330.18034 -100.91850 6.34293 + 316.09519 -100.91850 6.70207 + 302.01005 -100.91850 6.99618 + 287.92490 -100.91850 7.22813 + 287.92482 -100.91666 7.22813 + 274.81399 -100.91666 7.39041 + 261.70315 -100.91666 7.50393 + 248.59232 -100.91666 7.57102 + 235.48148 -100.91666 7.59400 + 222.37064 -100.91666 7.57520 + 222.37082 -100.91699 7.57520 + 209.23627 -100.91699 7.51695 + 196.10172 -100.91699 7.42157 + 182.96718 -100.91699 7.29140 + 169.83263 -100.91699 7.12877 + 156.69808 -100.91699 6.93600 + 156.69807 -100.91702 6.93600 + 141.57315 -100.91702 6.68010 + 126.44822 -100.91702 6.39097 + 111.32330 -100.91702 6.07218 + 96.19838 -100.91702 5.72726 + 81.07345 -100.91702 5.35977 + 81.07345 -100.91702 5.35977 + 65.93712 -100.91702 4.97326 + 50.80078 -100.91702 4.57127 + 35.66444 -100.91702 4.15737 + 20.52811 -100.91702 3.73509 + 5.39177 -100.91702 3.30800 + 5.39040 -100.91002 3.30800 + -9.74565 -100.91002 2.87965 + -24.88170 -100.91002 2.45358 + -40.01775 -100.91002 2.03335 + -55.15380 -100.91002 1.62251 + -70.28985 -100.91002 1.22461 + -70.28804 -100.89513 1.22461 + -85.41197 -100.89513 0.84320 + -100.53590 -100.89513 0.48184 + -115.65983 -100.89513 0.14406 + -130.78376 -100.89513 -0.16657 + -145.90768 -100.89513 -0.44652 + -145.90682 -100.88056 -0.44652 + -146.10900 -100.88056 -0.45004 + -146.31119 -100.88056 -0.45356 + -146.51337 -100.88056 -0.45707 + -146.71555 -100.88056 -0.46057 + -146.91773 -100.88056 -0.46406 + -146.91773 -100.88058 -0.46406 + -150.75833 -100.88058 -0.52931 + -154.59894 -100.88058 -0.59228 + -158.43954 -100.88058 -0.65290 + -162.28014 -100.88058 -0.71111 + -166.12074 -100.88058 -0.76687 + -166.12065 84.90377 -0.76687 + -155.94493 84.90377 -0.92671 + -145.76921 84.90377 -1.06296 + -135.59350 84.90377 -1.17718 + -125.41778 84.90377 -1.27090 + -115.24206 84.90377 -1.34567 + -115.24197 84.89900 -1.34567 + -110.25158 81.49221 -1.37642 + -105.47147 77.88744 -1.40301 + -100.91365 74.08446 -1.42561 + -96.58970 70.09328 -1.44439 + -92.51041 65.93410 -1.45951 + -92.50980 65.91081 -1.45951 + -86.59236 64.11799 -1.47584 + -80.84240 62.27066 -1.48465 + -75.25738 60.49360 -1.48642 + -69.83069 58.79198 -1.48163 + -64.55538 57.16585 -1.47077 + -64.55547 57.16324 -1.47077 + -59.42173 55.63095 -1.45431 + -54.42372 54.18239 -1.43269 + -49.55337 52.82578 -1.40633 + -44.80217 51.56428 -1.37565 + -40.16224 50.37051 -1.34108 + -40.16226 50.36791 -1.34108 + -35.15475 49.71678 -1.29908 + -30.21049 49.10072 -1.25340 + -25.32649 48.51081 -1.20454 + -20.50127 47.91555 -1.15301 + -15.73733 47.28462 -1.09934 + -15.73588 47.28382 -1.09934 + -9.46939 42.11916 -1.02163 + -3.94362 36.71612 -0.94199 + 0.81236 31.12511 -0.86139 + 4.77562 25.40966 -0.78081 + 7.94527 19.86970 -0.70123 + 7.94334 19.85752 -0.70123 + 10.36393 14.74310 -0.62346 + 12.09879 10.06241 -0.54783 + 13.20904 5.82073 -0.47457 + 13.75635 2.02065 -0.40392 + 13.80294 -1.32989 -0.33612 + 13.80140 -1.34900 -0.33612 + 13.41200 -4.14262 -0.27126 + 12.67399 -6.32872 -0.20916 + 11.67232 -7.91076 -0.14962 + 10.49088 -8.89862 -0.09244 + 9.21129 -9.32071 -0.03744 + 9.21277 -9.29355 -0.03744 + 7.90716 -9.33746 0.01565 + 6.61023 -9.17060 0.06712 + 5.35106 -8.79898 0.11722 + 4.15795 -8.22760 0.16620 + 3.05857 -7.46045 0.21433 + 3.05866 -7.45932 0.21433 + 2.07964 -6.49932 0.26186 + 1.24841 -5.34852 0.30897 + 0.59404 -3.95499 0.35579 + 0.15866 -2.19719 0.40244 + -0.00002 -0.00008 0.44907 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -22996,24 +23132,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -23088,8 +23224,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -23107,7 +23243,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -23119,7 +23255,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -23149,7 +23285,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -23290,13 +23426,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00230 0.00000 78.00230 78.00230 402 100 P 78.00320 0.00000 78.00320 78.00320 1 100 A 78.00440 0.00000 78.00440 78.00440 1 100 A @@ -23309,25 +23445,25 @@ Status character 3.21759 68.66580 98.35898 5.97534 1 0 A 3.38222 69.25440 103.39154 6.28107 1 0 A 3.50569 69.84300 107.16595 6.51036 1 0 A - 0.36256 69.84300 62.88631 10.23728 1 0 A - 4.54452 70.73571 62.76725 10.45829 110 0 1 - 4.85215 71.62842 62.93711 10.80128 110 0 1 - 5.18795 72.52113 63.36356 11.14428 110 0 1 - 5.54998 73.41384 63.95712 11.48728 110 0 1 - 5.85054 74.30655 64.47739 11.74453 110 0 1 - 6.02204 74.30655 64.85531 11.91602 110 0 1 - 6.34499 75.19926 65.45935 12.17327 110 0 1 - 6.77436 76.09197 66.31521 12.51627 110 0 1 - 7.22270 76.98468 67.21959 12.85927 110 0 1 - 7.68832 77.87739 68.16229 13.20226 110 0 1 - 8.08376 78.77010 68.88908 13.45951 110 0 1 - 12.58125 78.77010 43.93101 15.49997 110 0 1 - 9.61408 82.75110 39.79998 12.27314 110 0 1 - 7.67707 86.73210 34.34186 10.18968 110 0 1 - 5.69128 90.71310 28.93258 8.10622 110 0 1 - 3.71083 94.69410 23.56199 6.02276 110 0 1 - 2.25555 98.67510 19.55369 4.46017 110 0 1 - 2.20238 98.67510 40.26142 2.66609 110 0 1 + 0.36256 69.84300 62.88631 10.20104 1 0 A + 4.55491 70.73571 62.76725 10.45829 110 0 1 + 4.86268 71.62842 62.93711 10.80128 110 0 1 + 5.19861 72.52113 63.36356 11.14428 110 0 1 + 5.56077 73.41384 63.95712 11.48728 110 0 1 + 5.86145 74.30655 64.47739 11.74453 110 0 1 + 6.03295 74.30655 64.85531 11.91602 110 0 1 + 6.35602 75.19926 65.45935 12.17327 110 0 1 + 6.78550 76.09197 66.31521 12.51627 110 0 1 + 7.23395 76.98468 67.21959 12.85927 110 0 1 + 7.69966 77.87739 68.16229 13.20226 110 0 1 + 8.09521 78.77010 68.88908 13.45951 110 0 1 + 10.92007 78.77010 43.93101 13.83574 110 0 1 + 9.61709 82.75110 39.79998 12.27314 110 0 1 + 7.68288 86.73210 34.34186 10.18968 110 0 1 + 5.69715 90.71310 28.93258 8.10622 110 0 1 + 3.71674 94.69410 23.56199 6.02276 110 0 1 + 2.26150 98.67510 19.55369 4.46017 110 0 1 + 2.33678 98.67510 40.26142 2.66609 110 0 1 1.70862 100.04850 47.59458 3.16905 1 0 A 2.07185 101.42190 57.26566 3.83967 1 0 A 2.43581 102.79530 66.83887 4.51028 1 0 A @@ -23338,25 +23474,25 @@ Status character 3.89812 108.28890 104.71836 7.19275 1 0 A 4.26493 109.66230 114.17154 7.86337 1 0 A 4.63207 111.03570 123.63438 8.53399 1 0 A - 4.96668 112.40910 130.73900 9.03695 110 0 1 - 5.30199 112.40910 135.47972 9.37226 110 0 1 - 6.58337 113.78250 142.59735 9.87522 110 0 1 - 7.99935 115.15590 152.09823 10.54584 110 0 1 - 9.38461 116.52930 161.61132 11.21646 110 0 1 - 10.74151 117.90270 171.13564 11.88707 110 0 1 - 11.90471 119.27610 178.28533 12.39004 110 0 1 - 12.24002 119.27610 183.05493 12.72534 110 0 1 - 13.38021 120.64950 190.21367 13.22831 110 7 1 - 14.66853 122.02290 199.76524 13.89892 110 7 1 - 15.94041 123.39630 209.32386 14.56954 110 8 1 - 17.19890 124.76970 218.88869 15.24016 110 8 1 - 18.27943 126.14310 226.06575 15.74312 110 8 1 - 14.90416 126.14310 230.85212 11.38031 110 6 1 - 19.68807 127.51650 238.03393 16.58139 110 8 1 - 20.92398 128.88990 247.61307 17.25201 110 8 1 - 22.92661 130.26330 257.19585 17.92263 110 9 1 - 25.61957 131.63670 266.78180 18.59324 110 10 1 - 28.21981 133.01010 273.97304 19.09621 110 10 1 + 5.00354 112.40910 130.73900 9.03695 110 0 1 + 5.33885 112.40910 135.47972 9.37226 110 0 1 + 6.62011 113.78250 142.59735 9.87522 110 0 1 + 8.03594 115.15590 152.09823 10.54584 110 0 1 + 9.42103 116.52930 161.61132 11.21646 110 0 1 + 10.77775 117.90270 171.13564 11.88707 110 0 1 + 11.94079 119.27610 178.28533 12.39004 110 0 1 + 12.27610 119.27610 183.05493 12.72534 110 0 1 + 13.41614 120.64950 190.21367 13.22831 110 7 1 + 14.70435 122.02290 199.76524 13.89892 110 7 1 + 15.97614 123.39630 209.32386 14.56954 110 8 1 + 17.23458 124.76970 218.88869 15.24016 110 8 1 + 18.31509 126.14310 226.06575 15.74312 110 8 1 + 18.65039 126.14310 230.85212 16.07843 110 8 1 + 19.72373 127.51650 238.03393 16.58139 110 8 1 + 20.95967 128.88990 247.61307 17.25201 110 8 1 + 22.82745 130.26330 257.19585 17.92263 110 9 1 + 25.51584 131.63670 266.78180 18.59324 110 10 1 + 28.11152 133.01010 273.97304 19.09621 110 10 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23371,9 +23507,9 @@ Layer name [DATA] -9.99 62.326 'OWB' -10.79 0.941 'Grind' - -11.09 5.308 'Hydrobiaklei' - -12.00 3.411 'Basisveen' - -12.50 36.760 'Eerste zandlaag' + -11.09 5.317 'Hydrobiaklei' + -12.00 3.330 'Basisveen' + -12.50 37.059 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -23392,7 +23528,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.13 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.11 'Eerste zandlaag' + -12.50 -14.23 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -23516,24 +23652,24 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.25000 17.00000 39.00000 20.28034 20.28034 - -10.37000 21.00000 16.00000 29.64072 29.64072 - -10.49000 42.00000 1.00000 39.00125 39.00125 - -10.61000 2.00000 3.00000 48.36192 48.36192 - -10.73000 79.00000 32.00000 57.72274 57.72274 - -10.79000 31.09000 37.00000 62.40320 62.40320 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.25000 1.00000 1.00000 20.28034 20.28034 + -10.37000 1.00000 1.00000 29.64072 29.64072 + -10.49000 1.00000 1.00000 39.00125 39.00125 + -10.61000 1.00000 1.00000 48.36192 48.36192 + -10.73000 1.00000 1.00000 57.72274 57.72274 + -10.79000 1.00000 1.00000 62.40320 62.40320 -10.82000 73.99800 32.23900 64.93878 62.48615 -10.88000 73.99800 32.23900 70.23642 62.65945 -10.94000 73.99800 32.23900 75.83600 62.84262 @@ -23608,8 +23744,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -23627,7 +23763,7 @@ Lambda passive -10.97000 13.12220 98.35898 3.21759 0.45536 0.24520 7.49562 -11.03000 13.79360 103.39154 3.38222 0.45536 0.24520 7.49562 -11.09000 14.46500 107.16595 3.50569 0.45536 0.24520 7.49562 - -11.09000 14.46500 62.88631 0.36256 0.70178 0.02485 4.31094 + -11.09000 14.46500 62.88631 0.36256 0.69929 0.02485 4.31094 -11.18100 14.95549 62.76725 0.56577 0.69929 0.03783 4.19694 -11.27200 15.44598 62.93711 0.81299 0.69929 0.05263 4.07466 -11.36300 15.93647 63.36356 1.05010 0.69929 0.06589 3.97601 @@ -23639,7 +23775,7 @@ Lambda passive -11.81800 18.38892 67.21959 2.20527 0.69929 0.11992 3.65544 -11.90900 18.87941 68.16229 2.43488 0.69929 0.12897 3.61040 -12.00000 19.36990 68.88908 2.60701 0.69929 0.13545 3.57916 - -12.00000 19.36990 43.93101 7.14444 0.83033 0.38273 2.35339 + -12.00000 19.36990 43.93101 7.14444 0.74118 0.38273 2.35339 -12.10000 16.55890 39.79998 5.90484 0.74118 0.35660 2.40354 -12.20000 13.74790 34.34186 4.25154 0.74118 0.30925 2.49797 -12.30000 10.93690 28.93258 2.59782 0.74118 0.23753 2.64541 @@ -23669,7 +23805,7 @@ Lambda passive -15.02000 30.99370 209.32386 7.94128 0.47008 0.25622 6.75376 -15.16000 32.42030 218.88869 8.30893 0.47008 0.25629 6.75159 -15.30000 33.84690 226.06575 8.58462 0.47008 0.25633 6.75020 - -15.30000 33.84690 230.85212 8.76840 0.33272 0.25636 6.74936 + -15.30000 33.84690 230.85212 8.76840 0.47008 0.25636 6.74936 -15.44000 35.27350 238.03393 9.04404 0.47008 0.25640 6.74824 -15.58000 36.70010 247.61307 9.41150 0.47008 0.25644 6.74693 -15.72000 38.12670 257.19585 9.77889 0.47008 0.25648 6.74582 @@ -23810,73 +23946,73 @@ Status character 78.00004 0.00000 78.00004 78.00004 1 100 A 78.00006 0.00000 78.00012 78.00006 1 99 A 78.00008 0.00000 78.00008 78.00008 1 100 A - 78.00009 0.00000 78.00009 78.00009 1 100 A - 78.00020 0.00000 78.00020 78.00020 1 100 A + 78.00009 0.00000 78.00010 78.00010 1 100 A + 78.00019 0.00000 78.00019 78.00020 1 100 A 78.00048 0.00000 78.00048 78.00048 1 100 A 78.00086 0.00000 78.00086 78.00086 1 100 A 78.00124 0.00000 78.00124 78.00124 1 100 A 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00230 0.00000 78.00230 78.00230 1 100 A 78.00320 0.00000 78.00320 78.00320 402 100 P 78.00440 0.00000 78.00440 78.00440 402 100 P 78.00560 0.00000 78.00560 78.00560 402 100 P 78.00680 0.00000 78.00680 78.00680 402 100 P 78.00770 0.00000 78.00770 78.00770 402 100 P - 48.74794 66.90000 84.51945 5.13458 220 58 2 - 51.54785 67.48860 88.29387 5.36388 220 58 2 - 54.53630 68.07720 93.32642 5.66961 220 58 2 - 57.38331 68.66580 98.35898 5.97534 220 58 2 - 60.09403 69.25440 103.39154 6.28107 220 58 2 - 62.33850 69.84300 107.16595 6.51036 220 58 2 - 16.01057 69.84300 62.88631 10.23728 110 25 1 - 21.73491 70.73571 62.76725 10.45829 110 35 1 - 21.42574 71.62842 62.93711 10.80128 110 34 1 - 21.09567 72.52113 63.36356 11.14428 110 33 1 - 20.74665 73.41384 63.95712 11.48728 110 32 1 - 20.38069 74.30655 64.47739 11.74453 110 32 1 - 20.38069 74.30655 64.85531 11.91602 110 31 1 - 19.99968 75.19926 65.45935 12.17327 110 31 1 - 19.60536 76.09197 66.31521 12.51627 110 30 1 - 19.19941 76.98468 67.21959 12.85927 110 29 1 - 18.78352 77.87739 68.16229 13.20226 110 28 1 - 18.85319 78.77010 68.88908 13.45951 110 27 1 - 18.18785 78.77010 43.93101 15.49997 110 41 1 - 14.87708 82.75110 39.79998 12.27314 110 37 1 - 12.70230 86.73210 34.34186 10.18968 110 37 1 - 10.52116 90.71310 28.93258 8.10622 110 36 1 - 8.82100 94.69410 23.56199 6.02276 110 37 1 - 7.67543 98.67510 19.55369 4.46017 110 39 1 - 32.24622 98.67510 40.26142 2.66609 330 80 3 - 33.28426 100.04850 47.59458 3.16905 220 70 2 - 34.81752 101.42190 57.26566 3.83967 220 61 2 - 36.24651 102.79530 66.83887 4.51028 220 54 2 - 37.02063 104.16870 76.34704 5.18090 110 48 1 - 34.78718 105.54210 83.45275 5.68386 110 42 1 - 34.97000 105.54210 88.18188 6.01917 110 40 1 - 32.67877 106.91550 95.26984 6.52214 110 34 1 - 30.43966 108.28890 104.71836 7.19275 110 29 1 - 28.17728 109.66230 114.17154 7.86337 110 25 1 - 25.90765 111.03570 123.63438 8.53399 110 21 1 - 23.55494 112.40910 130.73900 9.03695 110 18 1 - 23.73869 112.40910 135.47972 9.37226 110 18 1 - 21.40743 113.78250 142.59735 9.87522 110 15 1 - 19.19321 115.15590 152.09823 10.54584 110 13 1 - 17.00679 116.52930 161.61132 11.21646 110 11 1 - 14.85079 117.90270 171.13564 11.88707 110 9 1 - 12.87536 119.27610 178.28533 12.39004 110 7 1 - 13.21067 119.27610 183.05493 12.72534 110 7 1 - 13.07641 120.64950 190.21367 13.22831 110 0 1 - 13.12932 122.02290 199.76524 13.89892 110 0 1 - 13.19867 123.39630 209.32386 14.56954 110 0 1 - 13.28141 124.76970 218.88869 15.24016 110 0 1 - 13.20681 126.14310 226.06575 15.74312 110 0 1 - 8.97414 126.14310 230.85212 11.38031 110 0 1 - 13.47471 127.51650 238.03393 16.58139 110 0 1 - 13.58004 128.88990 247.61307 17.25201 110 0 1 - 13.68889 130.26330 257.19585 17.92263 110 0 1 - 13.79970 131.63670 266.78180 18.59324 110 0 1 - 13.74325 133.01010 273.97304 19.09621 110 0 1 + 48.74332 66.90000 84.51945 5.13458 220 58 2 + 51.54291 67.48860 88.29387 5.36388 220 58 2 + 54.53105 68.07720 93.32642 5.66961 220 58 2 + 57.37776 68.66580 98.35898 5.97534 220 58 2 + 60.08821 69.25440 103.39154 6.28107 220 58 2 + 62.33242 69.84300 107.16595 6.51036 220 58 2 + 15.97150 69.84300 62.88631 10.20104 110 25 1 + 21.78133 70.73571 62.76725 10.45829 110 35 1 + 21.47018 71.62842 62.93711 10.80128 110 34 1 + 21.13797 72.52113 63.36356 11.14428 110 33 1 + 20.78666 73.41384 63.95712 11.48728 110 33 1 + 20.41822 74.30655 64.47739 11.74453 110 32 1 + 20.41822 74.30655 64.85531 11.91602 110 31 1 + 20.03455 75.19926 65.45935 12.17327 110 31 1 + 19.63740 76.09197 66.31521 12.51627 110 30 1 + 19.22846 76.98468 67.21959 12.85927 110 29 1 + 18.80944 77.87739 68.16229 13.20226 110 28 1 + 18.84947 78.77010 68.88908 13.45951 110 27 1 + 16.51789 78.77010 43.93101 13.83574 110 38 1 + 14.87131 82.75110 39.79998 12.27314 110 37 1 + 12.69648 86.73210 34.34186 10.18968 110 37 1 + 10.51530 90.71310 28.93258 8.10622 110 36 1 + 8.81958 94.69410 23.56199 6.02276 110 37 1 + 7.67419 98.67510 19.55369 4.46017 110 39 1 + 32.24554 98.67510 40.26142 2.66609 330 80 3 + 33.28396 100.04850 47.59458 3.16905 220 70 2 + 34.81846 101.42190 57.26566 3.83967 220 61 2 + 36.24885 102.79530 66.83887 4.51028 220 54 2 + 37.02842 104.16870 76.34704 5.18090 110 49 1 + 34.79840 105.54210 83.45275 5.68386 110 42 1 + 34.98121 105.54210 88.18188 6.01917 110 40 1 + 32.69372 106.91550 95.26984 6.52214 110 34 1 + 30.45864 108.28890 104.71836 7.19275 110 29 1 + 28.20056 109.66230 114.17154 7.86337 110 25 1 + 25.93549 111.03570 123.63438 8.53399 110 21 1 + 23.58756 112.40910 130.73900 9.03695 110 18 1 + 23.77130 112.40910 135.47972 9.37226 110 18 1 + 21.44503 113.78250 142.59735 9.87522 110 15 1 + 19.23597 115.15590 152.09823 10.54584 110 13 1 + 17.05483 116.52930 161.61132 11.21646 110 11 1 + 14.90418 117.90270 171.13564 11.88707 110 9 1 + 12.83928 119.27610 178.28533 12.39004 110 7 1 + 13.17459 119.27610 183.05493 12.72534 110 7 1 + 13.04047 120.64950 190.21367 13.22831 110 0 1 + 13.09350 122.02290 199.76524 13.89892 110 0 1 + 13.16294 123.39630 209.32386 14.56954 110 0 1 + 13.24574 124.76970 218.88869 15.24016 110 0 1 + 13.17116 126.14310 226.06575 15.74312 110 0 1 + 13.50647 126.14310 230.85212 16.07843 110 0 1 + 13.43905 127.51650 238.03393 16.58139 110 0 1 + 13.54435 128.88990 247.61307 17.25201 110 0 1 + 13.65316 130.26330 257.19585 17.92263 110 0 1 + 13.76391 131.63670 266.78180 18.59324 110 0 1 + 13.70741 133.01010 273.97304 19.09621 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -23890,10 +24026,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 62.326 'OWB' - -10.79 16.746 'Grind' - -11.09 18.237 'Hydrobiaklei' - -12.00 5.985 'Basisveen' - -12.50 76.148 'Eerste zandlaag' + -10.79 16.745 'Grind' + -11.09 18.265 'Hydrobiaklei' + -12.00 5.900 'Basisveen' + -12.50 76.460 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -23912,7 +24048,7 @@ Layer name -10.79 6.77 'Grind' -11.09 3.88 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 29.23 'Eerste zandlaag' + -12.50 29.35 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -24179,21 +24315,21 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 33.10 : Percentage mobilized resistance left - 68.07 : Percentage mobilized resistance right - 670.78 : Effective left - 836.70 : Effective right + 33.09 : Percentage mobilized resistance left + 68.06 : Percentage mobilized resistance right + 670.51 : Effective left + 836.45 : Effective right 1096.84 : Water pressure left 930.94 : Water pressure right 2026.33 : Max effective resistance left - 1229.22 : Max effective resistance right + 1228.97 : Max effective resistance right -21603.66 : Max moment left --13860.19 : Max moment right --8285.19 : Max mobilized moment left --8761.56 : Max mobilized moment right - 215.19 : Vertical force left - 244.73 : Vertical force right - 38.4 : Max mobilized moment percentage left +-13858.63 : Max moment right +-8281.82 : Max mobilized moment left +-8759.99 : Max mobilized moment right + 215.09 : Vertical force left + 244.66 : Vertical force right + 38.3 : Max mobilized moment percentage left 63.2 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support @@ -24201,17 +24337,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --215.19 : Active force -244.73 : Passive force --215.19 : Plugged active force -244.73 : Plugged passive force +-215.09 : Active force +244.66 : Passive force +-215.09 : Plugged active force +244.66 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -29.54 : Resulting Vertical Force Unplugged -29.54 : Resulting Vertical Force Plugged +29.57 : Resulting Vertical Force Unplugged +29.57 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -24224,210 +24360,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 224438.23805 - 0.00000 0.00000 223195.87990 - 0.00000 0.00000 221953.52174 - 0.00000 0.00000 220711.16359 - 0.00000 0.00000 219468.80543 - 0.00000 0.00000 218226.44728 - 0.00000 0.00000 218226.44728 - 0.00000 0.00000 216984.08912 - 0.00000 0.00000 215741.73097 - 0.00000 0.00000 214499.37281 - 0.00000 0.00000 213257.01466 - 0.00000 0.00000 212014.65651 - 0.00000 -0.00003 212014.65651 - 0.00000 -0.00052 211868.49672 - -0.00001 -0.00199 211722.33694 - -0.00004 -0.00444 211576.17716 - -0.00011 -0.00787 211430.01737 - -0.00021 -0.01229 211283.85759 - -0.00020 -0.01226 211283.85759 - -0.00803 -0.14175 209529.94019 - -0.03988 -0.41251 207776.02279 - -0.11269 -0.82453 206022.10540 - -0.24341 -1.37781 204268.18805 - -0.44901 -2.07236 202514.27074 - -0.44901 -2.07236 202514.27074 - -0.68977 -2.75906 201052.67303 - -1.00409 -3.54386 199591.07540 - -1.40181 -4.42676 198129.47791 - -1.89272 -5.40776 196667.88061 - -2.48663 -6.48686 195206.28354 - -2.48663 -6.48686 195206.28354 - -3.19336 -7.66406 193744.68678 - -4.02271 -8.93936 192283.09041 - -4.98450 -10.31276 190821.49456 - -6.08854 -11.78426 189359.89936 - -7.34462 -13.35386 187898.30492 - -7.34462 -13.35386 187898.30492 - -8.55395 -14.78218 186641.33442 - -9.88924 -16.28305 185384.36472 - -11.35672 -17.85648 184127.39595 - -12.96263 -19.50246 182870.42825 - -14.71322 -21.22099 181613.46176 - -14.71322 -21.22099 181613.46176 - -17.26743 -23.61089 179947.25246 - -20.10135 -26.12827 178281.04599 - -23.22952 -28.77314 176614.84285 - -26.66647 -31.54551 174948.64355 - -30.42674 -34.44536 173282.44863 - -30.42674 -34.44536 173282.44863 - -32.54061 -36.02281 172405.50587 - -34.75018 -37.63557 171528.56459 - -37.05758 -39.28365 170651.62488 - -39.46493 -40.96705 169774.68686 - -41.97433 -42.68576 168897.75064 - -41.97433 -42.68576 168897.75064 - -42.83375 -43.25152 168605.43898 - -43.70422 -43.79124 168313.12753 - -44.58522 -44.30491 168020.81631 - -45.47624 -44.79253 167728.50531 - -46.37678 -45.25786 167436.19454 - -46.37678 -45.25781 167436.19454 - -47.28628 -45.68959 167143.88400 - -48.20421 -46.09907 166851.57371 - -49.13007 -46.48251 166559.26365 - -50.06334 -46.83989 166266.95384 - -51.00352 -47.17498 165974.64429 - -51.00352 -47.17500 165974.64429 - -52.90766 -48.03243 165390.02595 - -54.84610 -48.88922 164805.40868 - -56.81873 -49.74118 164220.79252 - -58.82532 -50.58693 163636.17750 - -60.86563 -51.42854 163051.56367 - -60.86563 -51.42853 163051.56367 - -63.98900 -52.68427 162174.64524 - -67.18781 -53.94336 161297.72970 - -70.46225 -55.20499 160420.81722 - -73.81244 -56.46813 159543.90793 - -77.23844 -57.73199 158667.00200 - -77.23844 -57.73200 158667.00200 - -83.11698 -59.83875 157205.49994 - -89.20616 -61.94448 155744.00835 - -95.50581 -64.04809 154282.52803 - -102.01568 -66.14879 152821.05976 - -108.73546 -68.24649 151359.60434 - -108.73546 -68.24649 151359.60434 - -115.66478 -70.33927 149898.16258 - -122.80319 -72.42828 148436.73540 - -130.15028 -74.51276 146975.32371 - -137.70559 -76.59249 145513.92844 - -145.46864 -78.66794 144052.55051 - -145.46864 -78.66794 144052.55051 - -156.68489 -81.56288 142006.65234 - -168.30583 -84.44882 139960.79284 - -180.33007 -87.32426 137914.97500 - -192.75612 -90.18900 135869.20177 - -205.58254 -93.04425 133823.47613 - -205.58254 -93.04425 133823.47613 - -217.70593 -93.46481 131923.91906 - -229.88481 -93.91813 130024.40834 - -242.12861 -94.46314 128124.94657 - -254.49272 -96.10407 126225.53638 - -267.15263 -98.59792 124326.18037 - -267.15263 -98.59792 124326.18037 - -280.11105 -100.69658 122426.88121 - -293.31661 -102.40003 120527.64167 - -306.71794 -103.70829 118628.46463 - -320.26364 -104.62134 116729.35291 - -333.90236 -105.13920 114830.30937 - -333.90236 -105.13920 114830.30937 - -349.64820 -105.50749 112646.49733 - -365.44910 -105.87578 110462.78373 - -381.30506 -106.24408 108279.17304 - -397.21608 -106.61237 106095.66973 - -413.18216 -106.98066 103912.27825 - -413.18216 -106.98066 103912.27825 - -429.22819 -107.84852 101729.00306 - -445.46104 -109.36198 99545.84871 - -461.93644 -111.05643 97362.81985 - -478.67139 -112.84074 95179.92112 - -495.67809 -114.67053 92997.15716 - -495.67809 -114.67053 92997.15716 - -512.96101 -116.54771 90814.53266 - -530.52884 -118.48492 88632.05259 - -548.39353 -120.53299 86449.72196 - -566.57373 -122.69193 84267.54583 - -585.08140 -124.91090 82085.52921 - -585.08140 -124.91089 82085.52921 - -603.92722 -127.21564 79903.67724 - -623.12188 -129.58055 77721.99533 - -642.63273 -131.16134 75540.48893 - -662.19062 -129.76222 73359.16348 - -681.31589 -126.04043 71178.02444 - -681.31602 -126.03826 71178.02444 - -681.56804 -125.98479 71148.84661 - -681.81996 -125.93125 71119.66881 - -682.07177 -125.87764 71090.49105 - -682.32347 -125.82394 71061.31333 - -682.57506 -125.77017 71032.13563 - -682.57495 -125.78874 71032.13563 - -687.33327 -124.64743 70477.76604 - -692.04802 -123.49487 69923.40895 - -696.71872 -122.32947 69369.06444 - -701.34489 -121.15122 68814.73261 - -705.92607 -119.96173 68260.41354 - -705.92607 -119.96173 68260.41354 - -720.09074 -116.10004 66510.01701 - -733.78560 -112.12628 64759.75112 - -746.99592 -108.02446 63009.61826 - -759.70635 -103.79462 61259.62083 - -771.90215 -99.45283 59509.76122 - -771.90215 -99.45283 59509.76122 - -777.80252 -97.22202 58634.88383 - -783.56823 -94.96325 57760.04170 - -789.19747 -92.67254 56885.23511 - -794.68830 -90.34989 56010.46430 - -800.03889 -87.99928 55135.72954 - -800.03889 -87.99928 55135.72954 - -807.88157 -84.35800 53809.11783 - -815.39010 -80.65244 52482.59040 - -822.55809 -76.87342 51156.14800 - -829.37884 -73.02095 49829.79138 - -835.84595 -69.10422 48503.52129 - -835.84595 -69.10422 48503.52129 - -841.95246 -65.09568 47177.33843 - -847.69141 -61.02289 45851.24342 - -853.05640 -56.87666 44525.23680 - -858.04074 -52.65702 43199.31913 - -862.63803 -48.37313 41873.49098 - -862.63803 -48.37313 41873.49098 - -867.38683 -46.56376 40416.64081 - -871.94167 -44.48099 38959.89992 - -876.27263 -42.08640 37503.26885 - -880.34858 -39.38071 36046.74813 - -884.13972 -36.40335 34590.33832 - -884.13972 -36.40335 34590.33832 - -887.05491 -5.55218 32551.55248 - -885.74868 24.13424 30512.98574 - -880.30258 53.70796 28474.63677 - -870.69229 83.67099 26436.50422 - -856.85065 114.14941 24398.58673 - -856.85065 114.14941 24398.58673 - -838.68072 145.51522 22360.88216 - -816.07467 177.56062 20323.38478 - -788.92586 210.41772 18286.08786 - -757.11844 244.11634 16248.98469 - -720.53816 278.56782 14212.06855 - -720.53816 278.56782 14212.06855 - -679.05794 314.11758 12175.33183 - -632.54881 350.44786 10138.76290 - -580.89056 387.67773 8102.34898 - -523.95673 425.81436 6066.07731 - -461.62531 464.74884 4029.93510 - -465.00215 527.01848 4029.93510 - -388.42194 567.09945 1993.90703 - -308.16123 565.46060 -42.02579 - -232.46355 513.02369 -2077.88149 - -164.94366 451.39253 -4113.67822 - -106.11132 388.95391 -6149.43410 - -115.62650 326.68843 -6149.43410 - -74.33369 263.09299 -8185.16462 - -41.99834 198.68580 -10220.87698 - -18.74502 133.34945 -12256.57691 - -4.70393 67.08241 -14292.27013 - 0.00000 0.00000 -16327.96237 + 0.00000 0.00000 236565.91413 + 0.00000 0.00000 235256.53204 + 0.00000 0.00000 233947.14995 + 0.00000 0.00000 232637.76786 + 0.00000 0.00000 231328.38577 + 0.00000 0.00000 230019.00368 + 0.00000 0.00000 230019.00368 + 0.00000 0.00000 228709.62159 + 0.00000 0.00000 227400.23950 + 0.00000 0.00000 226090.85742 + 0.00000 0.00000 224781.47533 + 0.00000 0.00000 223472.09324 + 0.00000 0.00014 223472.09324 + 0.00000 -0.00035 223318.04829 + -0.00001 -0.00182 223164.00334 + -0.00004 -0.00427 223009.95838 + -0.00010 -0.00770 222855.91343 + -0.00020 -0.01212 222701.86848 + -0.00020 -0.01226 222701.86848 + -0.00803 -0.14175 220853.32906 + -0.03988 -0.41251 219004.78963 + -0.11269 -0.82453 217156.25022 + -0.24341 -1.37781 215307.71084 + -0.44901 -2.07236 213459.17150 + -0.44901 -2.07236 213459.17150 + -0.68977 -2.75906 211918.72211 + -1.00409 -3.54386 210378.27279 + -1.40181 -4.42676 208837.82362 + -1.89272 -5.40776 207297.37463 + -2.48663 -6.48686 205756.92587 + -2.48663 -6.48686 205756.92587 + -3.19336 -7.66406 204216.47742 + -4.02271 -8.93936 202676.02936 + -4.98450 -10.31276 201135.58183 + -6.08854 -11.78426 199595.13494 + -7.34462 -13.35386 198054.68882 + -7.34462 -13.35386 198054.68882 + -8.55395 -14.78218 196729.90587 + -9.88924 -16.28305 195405.12372 + -11.35672 -17.85648 194080.34249 + -12.96263 -19.50246 192755.56234 + -14.71322 -21.22099 191430.78340 + -14.71322 -21.22099 191430.78340 + -17.26743 -23.61089 189674.68318 + -20.10135 -26.12827 187918.58578 + -23.22952 -28.77314 186162.49172 + -26.66647 -31.54551 184406.40150 + -30.42674 -34.44536 182650.31565 + -30.42674 -34.44536 182650.31565 + -32.54061 -36.02281 181726.06188 + -34.75018 -37.63557 180801.80958 + -37.05758 -39.28365 179877.55887 + -39.46493 -40.96705 178953.30984 + -41.97433 -42.68576 178029.06260 + -41.97433 -42.68573 178029.06260 + -42.83375 -43.25149 177720.98060 + -43.70422 -43.79121 177412.89882 + -44.58522 -44.30488 177104.81726 + -45.47624 -44.79250 176796.73592 + -46.37677 -45.25783 176488.65481 + -46.37678 -45.25781 176488.65481 + -47.28628 -45.68960 176180.57394 + -48.20421 -46.09908 175872.49331 + -49.13007 -46.48251 175564.41291 + -50.06334 -46.83990 175256.33277 + -51.00352 -47.17498 174948.25288 + -51.00352 -47.17499 174948.25288 + -52.90766 -48.03243 174332.09387 + -54.84610 -48.88922 173715.93592 + -56.81873 -49.74117 173099.77908 + -58.82531 -50.58693 172483.62339 + -60.86563 -51.42854 171867.46889 + -60.86563 -51.42852 171867.46889 + -63.98899 -52.68426 170943.23944 + -67.18781 -53.94335 170019.01289 + -70.46225 -55.20499 169094.78940 + -73.81244 -56.46812 168170.56910 + -77.23844 -57.73199 167246.35215 + -77.23844 -57.73199 167246.35215 + -83.11698 -59.83875 165705.99840 + -89.20615 -61.94448 164165.65513 + -95.50580 -64.04809 162625.32312 + -102.01567 -66.14879 161085.00316 + -108.73546 -68.24649 159544.69606 + -108.73546 -68.24649 159544.69606 + -115.66478 -70.33927 158004.40261 + -122.80319 -72.42828 156464.12374 + -130.15028 -74.51276 154923.86036 + -137.70558 -76.59249 153383.61340 + -145.46864 -78.66794 151843.38379 + -145.46864 -78.66794 151843.38379 + -156.68488 -81.56288 149687.09326 + -168.30582 -84.44882 147530.84140 + -180.33006 -87.32426 145374.63119 + -192.75611 -90.18900 143218.46560 + -205.58254 -93.04424 141062.34760 + -205.58254 -93.04424 141062.34760 + -217.70592 -93.46481 139060.28334 + -229.88481 -93.91813 137058.26542 + -242.12861 -94.46314 135056.29646 + -254.49271 -96.10406 133054.37907 + -267.15262 -98.59792 131052.51588 + -267.15262 -98.59792 131052.51588 + -280.11105 -100.69657 129050.70952 + -293.31661 -102.40003 127048.96279 + -306.71793 -103.70828 125047.27855 + -320.26363 -104.62134 123045.65964 + -333.90235 -105.13919 121044.10891 + -333.90235 -105.13919 121044.10891 + -349.64819 -105.50749 118742.41359 + -365.44909 -105.87578 116440.81672 + -381.30505 -106.24407 114139.32276 + -397.21607 -106.61237 111837.93617 + -413.18215 -106.98066 109536.66143 + -413.18215 -106.98066 109536.66143 + -429.22818 -107.84852 107235.50296 + -445.46103 -109.36197 104934.46534 + -461.93643 -111.05643 102633.55321 + -478.67137 -112.84074 100332.77120 + -495.68010 -114.71117 98032.12397 + -495.68010 -114.71117 98032.12397 + -512.97542 -116.67286 95731.61620 + -530.56828 -118.69459 93431.25286 + -548.46852 -120.78492 91131.03898 + -566.68639 -122.94385 88830.97961 + -585.23172 -125.16282 86531.07979 + -585.23172 -125.16282 86531.07979 + -604.11520 -127.46757 84231.34466 + -623.34752 -129.83248 81931.77965 + -642.89604 -131.41327 79632.39020 + -662.49159 -130.01415 77333.18178 + -681.65452 -126.29236 75034.15985 + -681.65456 -126.31108 75034.15985 + -681.90713 -126.25762 75003.40499 + -682.15959 -126.20408 74972.65017 + -682.41194 -126.15046 74941.89538 + -682.66419 -126.09677 74911.14063 + -682.91633 -126.04300 74880.38591 + -682.91618 -126.05985 74880.38591 + -687.68480 -124.91854 74296.05279 + -692.40984 -123.76598 73711.73217 + -697.09085 -122.60058 73127.42416 + -701.72733 -121.42233 72543.12882 + -706.31880 -120.23285 71958.84625 + -706.31880 -120.23284 71958.84625 + -720.51600 -116.37115 70113.82819 + -734.24340 -112.39739 68268.94085 + -747.48626 -108.29557 66424.18662 + -760.22921 -104.06573 64579.56791 + -772.45755 -99.72394 62735.08711 + -772.45755 -99.72394 62735.08711 + -778.37418 -97.49313 61812.89916 + -784.15617 -95.23436 60890.74651 + -789.80167 -92.94365 59968.62941 + -795.30877 -90.62100 59046.54813 + -800.67563 -88.27039 58124.50292 + -800.67563 -88.27039 58124.50292 + -808.54298 -84.62911 56726.13708 + -816.07618 -80.92355 55327.85560 + -823.26883 -77.14453 53929.65922 + -830.11426 -73.29206 52531.54869 + -836.60604 -69.37533 51133.52476 + -836.60604 -69.37533 51133.52476 + -842.73722 -65.36679 49735.58816 + -848.50085 -61.29400 48337.73947 + -853.89050 -57.14777 46939.97926 + -858.89951 -52.92813 45542.30810 + -863.52147 -48.64424 44144.72654 + -863.52147 -48.64424 44144.72654 + -868.29738 -46.83487 42609.02658 + -872.87933 -44.75210 41073.43601 + -877.23741 -42.35751 39537.95537 + -881.34047 -39.65182 38002.58522 + -885.15872 -36.67446 36467.32609 + -885.15872 -36.67446 36467.32609 + -888.11186 -5.82329 34318.15142 + -886.84359 23.86313 32169.19612 + -881.43544 53.43685 30020.45886 + -871.86311 83.39988 27871.93829 + -858.05943 113.87830 25723.63308 + -858.05943 113.87830 25723.63308 + -839.92745 145.24411 23575.54108 + -817.35936 177.28951 21427.65658 + -790.24851 210.14661 19279.97286 + -758.47904 243.84523 17132.48322 + -721.93671 278.29671 14985.18094 + -721.93671 278.29671 14985.18094 + -680.49445 313.84647 12838.05843 + -634.02328 350.17675 10691.10406 + -582.40298 387.40662 8544.30507 + -525.50711 425.54325 6397.64869 + -463.21364 464.47773 4251.12217 + -466.77355 530.12341 4251.12217 + -389.75865 570.20438 2104.71018 + -309.05692 568.70108 -41.60623 + -232.89293 516.39972 -2187.84531 + -164.90039 454.76857 -4334.02531 + -105.59541 392.32995 -6480.16446 + -115.62650 326.68843 -6480.16446 + -74.33369 263.09299 -8626.27830 + -41.99834 198.68580 -10772.37398 + -18.74502 133.34945 -12918.45724 + -4.70393 67.08241 -15064.53378 + 0.00000 0.00000 -17210.60934 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24767,7 +24903,7 @@ Lambda passive -4.30000 5.67400 11.84027 1.98756 0.77308 0.35029 2.08676 -4.40000 5.71300 11.87273 2.01214 0.77308 0.35220 2.07819 -4.50000 5.75200 11.90027 2.03057 0.77308 0.35362 2.07240 - -4.50000 5.75200 11.92001 2.04286 0.77933 0.35456 2.06882 + -4.50000 5.75200 11.92001 2.04286 0.77308 0.35456 2.06882 -4.60000 5.79100 11.95133 2.06130 0.77308 0.35595 2.06378 -4.70000 5.83000 11.99547 2.08587 0.77308 0.35778 2.05754 -4.80000 5.86900 12.04198 2.11045 0.77308 0.35959 2.05179 @@ -24779,7 +24915,7 @@ Lambda passive -5.42000 6.11080 12.36251 2.26282 0.77308 0.37030 2.02306 -5.56000 6.16540 12.43963 2.29722 0.77308 0.37260 2.01765 -5.70000 6.22000 12.49817 2.32302 0.77308 0.37430 2.01377 - -5.70000 6.22000 29.52407 -3.74934 1.01322 0.00000 5.09679 + -5.70000 6.22000 29.52407 -3.74934 0.73559 0.00000 5.09679 -5.83000 4.51070 26.69275 -4.39816 0.73559 0.00000 5.91765 -5.96000 2.80140 22.94010 -5.26256 0.73559 0.00000 8.18880 -6.09000 1.09210 19.20204 -6.12564 0.73559 0.00000 17.58268 @@ -24790,22 +24926,22 @@ Lambda passive -6.61000 0.00000 7.38689 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.81929 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81836 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.49500 1.07205 0.56530 0.00000 0.62423 0.00000 0.70308 - -8.49500 1.07205 0.56530 0.00000 0.41243 0.00000 0.41243 - -8.64450 2.26655 0.56530 0.00000 0.24941 0.00000 0.24941 - -8.79400 3.46106 0.56530 0.00000 0.16333 0.00000 0.16333 + -7.00000 0.00000 16.81775 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.64450 2.26655 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.79400 3.46106 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 4.65556 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 5.85007 0.00000 0.00000 0.00000 0.00000 0.00000 -9.24250 7.04457 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -24839,13 +24975,13 @@ Lambda passive -10.97000 18.32530 56.43541 0.00000 0.73559 0.00000 3.07964 -11.03000 18.64870 57.13269 0.00000 0.73559 0.00000 3.06363 -11.09000 18.97210 57.65563 0.00000 0.73559 0.00000 3.05198 - -11.09000 18.97210 58.09430 0.00000 0.62759 0.00000 3.04243 + -11.09000 18.97210 58.09430 0.00000 0.73559 0.00000 3.04243 -11.18100 19.46259 58.88737 0.00000 0.73559 0.00000 3.02567 -11.27200 19.95308 59.94473 0.00000 0.73559 0.00000 3.00428 -11.36300 20.44357 61.00202 0.00000 0.73559 0.00000 2.98392 -11.45400 20.93406 62.05925 2.32973 0.73559 0.11129 2.96451 -11.54500 21.42455 62.85213 4.16637 0.73559 0.19559 2.95054 - -11.54500 21.42455 63.38070 4.29186 1.55631 0.19918 2.94149 + -11.54500 21.42455 63.38070 4.29186 0.73559 0.19918 2.94149 -11.63600 21.91504 64.17351 4.48013 0.73559 0.20443 2.92829 -11.72700 22.40553 65.23056 4.73120 0.73559 0.21116 2.91136 -11.81800 22.89602 66.28754 4.98233 0.73559 0.21761 2.89516 @@ -24987,7 +25123,7 @@ Status character 11.84027 5.88600 11.84027 4.38645 402 100 P 11.87273 6.86700 11.87273 4.41660 402 100 P 11.90027 7.84800 11.90027 4.43921 402 100 P - 11.92001 7.84800 11.92001 4.49029 402 100 P + 11.92001 7.84800 11.92001 4.45429 402 100 P 11.95133 8.82900 11.95133 4.47690 402 100 P 11.99547 9.81000 11.99547 4.50705 402 100 P 12.04198 10.79100 12.04198 4.53720 402 100 P @@ -24999,7 +25135,7 @@ Status character 12.36251 16.87320 12.36251 4.72413 402 100 P 12.43963 18.24660 12.43963 4.76634 402 100 P 12.49817 19.62000 12.49817 4.79800 402 100 P - 29.52407 19.62000 29.52407 5.86926 402 100 P + 29.52407 19.62000 29.52407 4.26101 402 100 P 26.69275 23.43530 26.69275 3.31800 402 100 P 22.94010 27.25060 22.94010 2.06067 402 100 P 19.20204 31.06590 19.20204 0.80333 402 100 P @@ -25022,16 +25158,16 @@ Status character 0.00000 68.03916 0.00000 0.00000 402 0 P 0.00000 69.50576 0.00000 0.00000 402 0 P 0.00000 70.97236 0.00000 0.00000 402 0 P - 0.54378 72.43895 0.54378 0.48280 402 100 P - 0.56530 72.43895 0.56530 0.56530 402 100 P - 0.56530 73.90555 0.56530 0.56530 402 100 P - 0.56530 75.37214 0.56530 0.56530 402 100 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 73.90555 0.00000 0.00000 402 0 P + 0.00000 75.37214 0.00000 0.00000 402 0 P 0.00000 76.83873 0.00000 0.00000 402 0 P 0.00000 78.30533 0.00000 0.00000 402 0 P 0.00000 79.77192 0.00000 0.00000 402 0 P 0.00000 79.77192 0.00000 0.00000 402 0 P - 0.00000 81.23852 0.00000 0.00000 402 100 P - 0.00000 82.70511 0.00000 0.00000 402 100 P + 0.00000 81.23852 0.00000 0.00000 402 0 P + 0.00000 82.70511 0.00000 0.00000 402 0 P 11.41116 84.17171 11.41116 6.63439 402 100 P 40.78651 85.63831 40.78651 7.38004 402 100 P 43.29000 87.10490 43.29000 7.93927 402 100 P @@ -25059,13 +25195,13 @@ Status character 56.43541 96.71870 56.43541 13.47982 402 100 P 57.13269 97.30730 57.13269 13.71771 402 100 P 57.65563 97.89590 57.65563 13.89612 402 100 P - 58.09430 97.89590 58.09430 11.98366 402 100 P + 58.09430 97.89590 58.09430 14.04580 402 100 P 58.88737 98.78861 58.88737 14.31639 402 100 P 59.94473 99.68132 59.94473 14.67719 402 100 P 61.00202 100.57403 61.00202 15.03799 402 100 P 62.05925 101.46674 62.05925 15.39878 402 100 P 62.85213 102.35945 62.85213 15.66938 402 100 P - 63.38070 102.35945 63.38070 33.53398 402 100 P + 63.38070 102.35945 63.38070 15.84978 402 100 P 64.17351 103.25216 64.17351 16.12038 402 100 P 65.23056 104.14487 65.23056 16.48118 402 100 P 66.28754 105.03758 66.28754 16.84197 402 100 P @@ -25124,7 +25260,7 @@ Layer name -3.00 1.495 'Ophooglaag zand' -3.50 26.234 'Hollandveen' -5.70 10.868 'Oude Zeeklei' - -7.00 11.734 'Wadzand' + -7.00 11.482 'Wadzand' -10.00 113.565 'Hydrobiaklei' -12.00 29.099 'Basisveen' -12.50 643.708 'Eerste zandlaag' @@ -25147,7 +25283,7 @@ Layer name -3.00 0.48 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 2.02 'Oude Zeeklei' - -7.00 3.09 'Wadzand' + -7.00 3.02 'Wadzand' -10.00 21.08 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 218.07 'Eerste zandlaag' @@ -25459,7 +25595,7 @@ Lambda passive -7.44850 17.34153 54.87934 0.00000 0.61542 0.00000 3.16462 -7.59800 18.53417 58.42642 0.00000 0.61584 0.00000 3.15236 -7.74750 19.72676 61.12178 0.00000 0.61623 0.00000 3.14597 - -7.74750 19.72676 62.93285 0.00000 0.61806 0.00000 3.14273 + -7.74750 19.72676 62.93285 0.00000 0.61623 0.00000 3.14273 -7.89700 20.91931 65.66598 6.68316 0.61660 0.31947 3.13901 -8.04650 22.11182 69.33207 8.63672 0.61694 0.39059 3.13552 -8.19600 23.30431 73.01861 9.10452 0.61725 0.39068 3.13327 @@ -25471,7 +25607,7 @@ Lambda passive -8.94350 29.26658 93.14862 11.74809 0.61858 0.40142 3.18276 -9.09300 30.45903 96.91091 12.20700 0.61880 0.40077 3.18168 -9.24250 31.65149 99.73462 12.55119 0.61902 0.40031 3.18099 - -9.24250 31.65149 101.61803 12.78066 0.67358 0.40003 3.18057 + -9.24250 31.65149 101.61803 12.78066 0.61902 0.40003 3.18057 -9.39200 32.84396 104.44435 13.12505 0.61922 0.39962 3.18002 -9.54150 34.03645 108.21456 13.58554 0.61941 0.39915 3.17937 -9.69100 35.22896 111.98944 14.04630 0.61959 0.39871 3.17890 @@ -25501,7 +25637,7 @@ Lambda passive -10.97000 42.91008 109.30400 15.52719 0.73214 0.36185 2.54728 -11.03000 43.23277 109.97577 15.69208 0.73218 0.36297 2.54381 -11.09000 43.55547 110.48005 15.81576 0.73222 0.36379 2.54124 - -11.09000 43.55547 110.90340 15.91950 0.62548 0.36448 2.53912 + -11.09000 43.55547 110.90340 15.91950 0.73222 0.36448 2.53912 -11.18100 44.04491 111.66949 16.10707 0.73228 0.36570 2.53536 -11.27200 44.53436 112.69216 16.35716 0.73233 0.36729 2.53045 -11.36300 45.02382 113.71622 16.60725 0.73239 0.36885 2.52569 @@ -25531,13 +25667,13 @@ Lambda passive -13.62000 75.79293 387.37661 22.32812 0.52073 0.29459 5.11099 -13.76000 77.21836 393.78535 22.76376 0.52078 0.29480 5.09963 -13.90000 78.64381 398.58566 23.09009 0.52083 0.29494 5.09131 - -13.90000 78.64381 401.81942 23.30727 0.49477 0.29503 5.08631 + -13.90000 78.64381 401.81942 23.30727 0.52083 0.29503 5.08631 -14.04000 80.06929 406.71497 23.63203 0.52087 0.29514 5.07954 -14.18000 81.49478 413.30564 24.06458 0.52092 0.29529 5.07156 -14.32000 82.92030 419.95819 24.49665 0.52096 0.29542 5.06460 -14.46000 84.34583 426.64391 24.92830 0.52100 0.29555 5.05827 -14.60000 85.77139 431.68055 25.25179 0.52104 0.29564 5.05392 - -14.60000 85.77139 435.05094 25.46732 0.72604 0.29569 5.05123 + -14.60000 85.77139 435.05094 25.46732 0.52104 0.29569 5.05123 -14.74000 87.19696 440.12309 25.79045 0.52108 0.29577 5.04746 -14.88000 88.62256 447.00372 26.22101 0.52111 0.29587 5.04390 -15.02000 90.04817 453.99552 26.65107 0.52115 0.29596 5.04170 @@ -25679,7 +25815,7 @@ Status character 0.00000 64.63629 54.87934 10.67231 1 0 A 0.00000 66.10288 58.42642 11.41412 1 0 A 0.00000 67.56948 61.12178 11.97256 1 0 A - 0.00000 67.56948 62.93285 12.37649 1 0 A + 0.00000 67.56948 62.93285 12.34001 1 0 A 6.68316 69.03607 65.66598 12.89878 1 0 A 8.63672 70.50267 69.33207 13.64157 1 0 A 9.10452 71.96926 73.01861 14.38466 1 0 A @@ -25691,7 +25827,7 @@ Status character 11.74809 79.30224 93.14862 18.10375 1 0 A 12.20700 80.76883 96.91091 18.84818 1 0 A 12.55119 82.23543 99.73462 19.40824 1 0 A - 12.78066 82.23543 101.61803 21.52047 1 0 A + 12.78066 82.23543 101.61803 19.77732 1 0 A 13.12505 83.70202 104.44435 20.33753 1 0 A 13.58554 85.16862 108.21456 21.08243 1 0 A 14.04630 86.63521 111.98944 21.82746 1 0 A @@ -25721,7 +25857,7 @@ Status character 15.52719 99.18220 109.30400 31.41624 1 0 A 15.69208 99.77080 109.97577 31.65420 1 0 A 15.81576 100.35940 110.48005 31.83310 1 0 A - 15.91950 100.35940 110.90340 27.31957 1 0 A + 15.91950 100.35940 110.90340 31.98176 1 0 A 16.10707 101.25211 111.66949 32.25310 1 0 A 16.35716 102.14482 112.69216 32.61406 1 0 A 16.60725 103.03753 113.71622 32.97503 1 0 A @@ -25751,15 +25887,15 @@ Status character 22.32812 110.17870 387.37661 39.46758 1 0 A 22.76376 111.55210 393.78535 40.21366 1 0 A 23.09009 112.92550 398.58566 40.77415 1 0 A - 23.30727 112.92550 401.81942 39.08718 1 0 A + 23.30727 112.92550 401.81942 41.14536 1 0 A 23.63203 114.29890 406.71497 41.70584 1 0 A 24.06458 115.67230 413.30564 42.45194 1 0 A 24.49665 117.04570 419.95819 43.19804 1 0 A 24.92830 118.41910 426.64391 43.94415 1 0 A 25.25179 119.79250 431.68055 44.50456 1 0 A - 25.46732 119.79250 435.05094 62.53257 1 0 A + 25.46732 119.79250 435.05094 44.87595 1 0 A 25.79045 121.16590 440.12309 45.43636 1 0 A - 328.80733 122.53930 447.00372 46.18247 220 74 2 + 326.87091 122.53930 447.00372 46.18247 220 73 2 453.99552 123.91270 453.99552 46.92858 402 100 P 461.00762 125.28610 461.00762 47.67470 402 100 P 466.27782 126.65950 466.27782 48.23504 402 100 P @@ -25788,7 +25924,7 @@ Layer name -7.00 24.977 'Wadzand' -10.00 31.222 'Hydrobiaklei' -12.00 15.898 'Basisveen' - -12.50 598.687 'Eerste zandlaag' + -12.50 598.416 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -25810,7 +25946,7 @@ Layer name -7.00 -6.57 'Wadzand' -10.00 -5.79 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -202.82 'Eerste zandlaag' + -12.50 -202.73 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -26076,15 +26212,15 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 5.67 : Percentage mobilized resistance left - 96.29 : Percentage mobilized resistance right + 96.31 : Percentage mobilized resistance right 46.63 : Effective left 1183.63 : Effective right 1120.54 : Water pressure left 930.94 : Water pressure right 822.37 : Max effective resistance left - 1229.22 : Max effective resistance right + 1228.97 : Max effective resistance right -9783.03 : Max moment left --13860.19 : Max moment right +-13858.63 : Max moment right -560.16 : Max mobilized moment left -13688.36 : Max mobilized moment right 15.45 : Vertical force left @@ -26120,210 +26256,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -5.54077 25.49512 -4.9938299324E13 - -3.46787 25.49512 -4.95338712086E13 - -1.39497 25.49512 -4.91294430933E13 - 0.67793 25.49512 -4.87250149779E13 - 2.75083 25.49512 -4.83205868626E13 - 4.82373 25.49512 -4.79161587472E13 - 17.43115 -84.21973 -4.79161587472E13 - 10.17402 -84.21973 -4.75117306318E13 - 2.91689 -84.21973 -4.71073025165E13 - -4.34023 -84.21973 -4.67028744011E13 - -11.59736 -84.21973 -4.62984462857E13 - -18.85449 -84.21973 -4.58940181704E13 - -1008.93949 40394.19118 -4.58940181704E13 - -604.77579 40394.19069 -4.58464383921E13 - -200.61209 40394.18922 -4.57988586138E13 - 203.55159 40394.18676 -4.57512788356E13 - 607.71524 40394.18333 -4.57036990573E13 - 1011.87884 40394.17892 -4.5656119279E13 - 13.03364 4.44505 -4.5656119279E13 - 13.56368 4.31556 -4.50851619397E13 - 14.06969 4.04480 -4.45142046003E13 - 14.53474 3.63278 -4.3943247261E13 - 14.94188 3.07950 -4.33722899217E13 - 15.27414 2.38495 -4.28013325823E13 - 19.80185 96.45230 -4.28013325823E13 - 29.41513 95.76560 -4.23255347996E13 - 38.95483 94.98080 -4.18497370168E13 - 48.41114 94.09790 -4.1373939234E13 - 57.77426 93.11690 -4.08981414512E13 - 67.03438 92.03780 -4.04223436684E13 - 65.43892 26.80550 -4.04223436684E13 - 68.05987 25.62830 -3.99465458857E13 - 70.55819 24.35300 -3.94707481029E13 - 72.92407 22.97960 -3.89949503201E13 - 75.14771 21.50810 -3.85191525373E13 - 77.21930 19.93850 -3.80433547545E13 - 55.34128 192.88894 -3.80433547545E13 - 72.01743 191.46063 -3.76341686614E13 - 88.56763 189.95976 -3.72249825682E13 - 104.98563 188.38633 -3.6815796475E13 - 121.26519 186.74035 -3.64066103818E13 - 137.40008 185.02182 -3.59974242886E13 - 105.77587 -9925.46866 -3.59974242886E13 - -1025.94377 -9927.85856 -3.54550148162E13 - -2157.94314 -9930.37594 -3.49126053439E13 - -3290.23675 -9933.02081 -3.43701958715E13 - -4422.83914 -9935.79318 -3.38277863991E13 - -5555.76485 -9938.69303 -3.32853769268E13 - -5565.14326 -9973.63018 -3.32853769268E13 - -6163.89419 -9975.20762 -3.29998982571E13 - -6762.74083 -9976.82039 -3.27144195874E13 - -7361.68530 -9978.46847 -3.24289409178E13 - -7960.72971 -9980.15186 -3.21434622481E13 - -8559.87618 -9981.87058 -3.18579835784E13 - -8452.06869 -14626.67176 -3.18579835784E13 - -8744.01876 -14627.25128 -3.17628240219E13 - -9035.98043 -14627.83253 -3.16676644653E13 - -9327.95375 -14628.41566 -3.15725049087E13 - -9619.93875 -14629.00051 -3.14773453522E13 - -9911.93547 -14629.58737 -3.13821857956E13 --10035.84249 -3043.69701 -3.13821857956E13 --10096.12815 -3044.28505 -3.12870262391E13 --10156.42559 -3044.87510 -3.11918666825E13 --10216.73484 -3045.46689 -3.1096707126E13 --10277.05595 -3046.06041 -3.10015475694E13 --10337.38895 -3046.65593 -3.09063880128E13 --10682.80567 1955.65170 -3.09063880128E13 --10604.31062 1954.43621 -3.07160688997E13 --10525.86433 1953.21413 -3.05257497866E13 --10447.46704 1951.98667 -3.03354306735E13 --10369.11895 1950.75382 -3.01451115604E13 --10290.82030 1949.51428 -2.99547924473E13 --10367.24881 1829.94504 -2.99547924473E13 --10257.79394 1828.08417 -2.96693137776E13 --10148.45071 1826.22408 -2.93838351079E13 --10039.21905 1824.36488 -2.90983564383E13 - -9930.09892 1822.50657 -2.88128777686E13 - -9821.09026 1820.64903 -2.85273990989E13 - -9803.53255 2108.01404 -2.85273990989E13 - -9592.88585 2104.92061 -2.80516013161E13 - -9382.54840 2101.82933 -2.75758035333E13 - -9172.51996 2098.74050 -2.71000057505E13 - -8962.80027 2095.65414 -2.66242079677E13 - -8753.38911 2092.56992 -2.61484101849E13 - -8757.92659 2138.87882 -2.61484101849E13 - -8544.19205 2135.79768 -2.56726124021E13 - -8330.76552 2132.71869 -2.51968146193E13 - -8117.64677 2129.64215 -2.47210168365E13 - -7904.83554 2126.56808 -2.42452190537E13 - -7692.33161 2123.49615 -2.37694212709E13 - -7693.06378 2173.12225 -2.37694212709E13 - -7389.01319 2168.82672 -2.3103304375E13 - -7085.56369 2164.53539 -2.24371874791E13 - -6782.71464 2160.24889 -2.17710705832E13 - -6480.46537 2155.96720 -2.11049536872E13 - -6178.81522 2151.68973 -2.04388367913E13 - -6180.75805 2208.44021 -2.04388367913E13 - -5894.13551 2204.33306 -1.98202996736E13 - -5608.02543 2200.55610 -1.9201762556E13 - -5322.38490 2197.10935 -1.85832254383E13 - -5037.17098 2193.99279 -1.79646883207E13 - -4752.34076 2191.20644 -1.7346151203E13 - -4746.15074 2181.85471 -1.7346151203E13 - -4462.56723 2179.39855 -1.67276140854E13 - -4179.28155 2177.27260 -1.61090769677E13 - -3896.25079 2175.47684 -1.549053985E13 - -3613.43201 2174.01129 -1.48720027324E13 - -3330.78228 2172.87593 -1.42534656147E13 - -3330.75951 2192.87713 -1.42534656147E13 - -3003.10643 2191.76134 -1.35421479294E13 - -2675.62016 2190.64554 -1.28308302441E13 - -2348.30070 2189.52975 -1.21195125588E13 - -2021.14806 2188.41396 -1.14081948735E13 - -1694.16222 2187.29816 -1.06968771882E13 - -1690.51207 2200.99163 -1.06968771882E13 - -1361.64613 2199.87584 -9.98555950284E12 - -1032.94699 2198.76005 -9.27424181753E12 - -704.41467 2197.64425 -8.56292413221E12 - -376.04915 2196.52846 -7.8516064469E12 - -47.85045 2195.41267 -7.14028876158E12 - -45.24767 2191.98382 -7.14028876158E12 - 282.62184 2190.86803 -6.42897107627E12 - 610.32454 2189.75223 -5.71765339095E12 - 937.86043 2188.63644 -5.00633570564E12 - 1265.22951 2187.52065 -4.29501802032E12 - 1592.43177 2186.40485 -3.58370033501E12 - 1593.85792 2187.33807 -3.58370033501E12 - 1920.68283 2186.22227 -2.87238264969E12 - 2247.34092 2185.10648 -2.16106496438E12 - 2573.83221 2183.99069 -1.44974727907E12 - 2900.15668 2182.87489 -738429593754.00000 - 3226.31434 2181.75910 -27111908442.70000 - 3302.69537 4135.99468 -27111908442.70000 - 3310.95628 4135.97975 -17595952786.40000 - 3319.21716 4135.96483 -8079997130.03000 - 3327.47804 4135.99418 1435958526.30000 - 3335.73904 4136.06785 10951914182.60000 - 3344.00019 4136.14161 20467869839.00000 - 3463.55626 -855.55609 20467869839.00000 - 3430.99524 -854.11322 201271027309.00000 - 3398.48931 -852.65567 382074184780.00000 - 3366.03908 -851.18131 562877342250.00000 - 3333.64520 -849.69016 743680499720.00000 - 3301.30828 -848.18431 924483657190.00000 - 3302.84874 -829.14865 924483657190.00000 - 3203.49694 -824.25552 1.49544099657E12 - 3104.74068 -819.21588 2.06639833595E12 - 3006.59923 -814.00880 2.63735567532E12 - 2909.09268 -808.63431 3.2083130147E12 - 2812.24027 -803.11334 3.77927035408E12 - 2811.91023 -773.80723 3.77927035408E12 - 2765.85858 -770.96829 4.06474902377E12 - 2719.97831 -768.09273 4.35022769345E12 - 2674.27182 -765.17534 4.63570636314E12 - 2628.74164 -762.21610 4.92118503283E12 - 2583.39016 -759.22026 5.20666370252E12 - 2590.94581 -774.66951 5.20666370252E12 - 2520.88008 -769.57103 5.63963968488E12 - 2451.28196 -764.38834 6.07261566724E12 - 2382.15985 -759.10944 6.50559164959E12 - 2313.52249 -753.73434 6.93856763195E12 - 2245.37829 -748.27505 7.37154361431E12 - 2256.03590 -796.01270 7.37154361431E12 - 2184.05067 -790.43316 7.80451959667E12 - 2112.57683 -784.76945 8.23749557903E12 - 2041.62276 -779.00956 8.67047156139E12 - 1971.19721 -773.15348 9.10344754374E12 - 1901.30858 -767.21324 9.5364235261E12 - 1890.94141 -757.57232 9.5364235261E12 - 1815.41197 -752.95961 1.00122213089E13 - 1740.36518 -747.89794 1.04880190917E13 - 1665.85019 -742.32380 1.09638168745E13 - 1591.91102 -736.45382 1.14396146573E13 - 1518.55540 -730.72657 1.19154124401E13 - 1520.23827 -784.38887 1.19154124401E13 - 1412.68972 -751.94712 1.25815293361E13 - 1309.58538 -720.66831 1.3247646232E13 - 1210.84394 -689.50147 1.39137631279E13 - 1116.48938 -657.95235 1.45798800239E13 - 1026.58731 -625.90053 1.52459969198E13 - 1035.65095 -711.21345 1.52459969198E13 - 938.32724 -678.28120 1.59121138157E13 - 845.65904 -644.66800 1.65782307117E13 - 757.75320 -610.24168 1.72443476076E13 - 674.72575 -574.97255 1.79104645035E13 - 596.69112 -538.94948 1.85765813995E13 - 597.60018 -567.24301 1.85765813995E13 - 520.75035 -530.12030 1.92426982954E13 - 449.14971 -492.21628 1.99088151913E13 - 382.91856 -453.41184 2.05749320872E13 - 322.18350 -413.69984 2.12410489832E13 - 267.06663 -373.18934 2.19071658791E13 - 268.52278 -396.69359 2.19071658791E13 - 215.83994 -355.03574 2.2573282775E13 - 169.04297 -312.57101 2.3239399671E13 - 128.25575 -269.18156 2.39055165669E13 - 93.60795 -224.86479 2.45716334628E13 - 65.22409 -179.73494 2.52377503588E13 - 69.66086 -216.82335 2.52377503588E13 - 42.51212 -170.52929 2.59038672547E13 - 21.89897 -123.41873 2.65699841506E13 - 7.94668 -75.37389 2.72361010465E13 - 0.78614 -26.39359 2.79022179425E13 - 0.54291 23.40601 2.85683348384E13 + 4.01758 -19.45020 -4.98036821681E13 + 2.26797 -19.45020 -4.94003461668E13 + 0.51836 -19.45020 -4.89970101655E13 + -1.23125 -19.45020 -4.85936741642E13 + -2.98086 -19.45020 -4.81903381628E13 + -4.73047 -19.45020 -4.77870021615E13 + 26.98157 -129.19629 -4.77870021615E13 + 15.90356 -129.19629 -4.73836661602E13 + 4.82556 -129.19629 -4.69803301589E13 + -6.25244 -129.19629 -4.65769941576E13 + -17.33044 -129.19629 -4.61736581563E13 + -28.40845 -129.19629 -4.5770322155E13 + 954.11910 -38095.99632 -4.5770322155E13 + 573.14765 -38095.99681 -4.57228708607E13 + 192.17619 -38095.99828 -4.56754195664E13 + -188.79529 -38096.00074 -4.56279682721E13 + -569.76680 -38096.00417 -4.55805169779E13 + -950.73834 -38096.00858 -4.55330656836E13 + 4.96101 31.38255 -4.55330656836E13 + 8.71978 31.25306 -4.49636501523E13 + 12.45453 30.98230 -4.43942346211E13 + 16.14832 30.57028 -4.38248190898E13 + 19.78419 30.01700 -4.32554035585E13 + 23.34519 29.32245 -4.26859880273E13 + 12.84860 123.68667 -4.26859880273E13 + 25.18383 122.99997 -4.22114750845E13 + 37.44548 122.21517 -4.17369621418E13 + 49.62374 121.33227 -4.12624491991E13 + 61.70881 120.35127 -4.07879362564E13 + 73.69087 119.27217 -4.03134233136E13 + 45.44893 104.93343 -4.03134233136E13 + 55.88418 103.75623 -3.98389103709E13 + 66.19681 102.48093 -3.93643974282E13 + 76.37700 101.10753 -3.88898844855E13 + 86.41495 99.63603 -3.84153715427E13 + 96.30084 98.06643 -3.79408586E13 + 75.83152 96.75418 -3.79408586E13 + 84.24165 95.32586 -3.75327774693E13 + 92.52583 93.82499 -3.71246963385E13 + 100.67781 92.25157 -3.67166152078E13 + 108.69136 90.60559 -3.63085340771E13 + 116.56024 88.88705 -3.59004529463E13 + 106.82702 -9930.06583 -3.59004529463E13 + -1025.41941 -9932.45572 -3.53595081916E13 + -2157.94555 -9934.97311 -3.48185634369E13 + -3290.76595 -9937.61798 -3.42776186822E13 + -4423.89513 -9940.39035 -3.37366739275E13 + -5557.34762 -9943.29020 -3.31957291728E13 + -5569.68086 -9946.78057 -3.31957291728E13 + -6166.81861 -9948.35801 -3.29110214072E13 + -6764.05206 -9949.97078 -3.26263136415E13 + -7361.38335 -9951.61886 -3.23416058759E13 + -7958.81457 -9953.30225 -3.20568981102E13 + -8556.34786 -9955.02097 -3.17721903446E13 + -8518.85434 -13308.12489 -3.17721903446E13 + -8784.40802 -13308.70441 -3.16772877561E13 + -9049.97330 -13309.28566 -3.15823851675E13 + -9315.55024 -13309.86878 -3.1487482579E13 + -9581.13885 -13310.45364 -3.13925799904E13 + -9846.73918 -13311.04050 -3.12976774019E13 +-10099.37765 -1771.15013 -3.12976774019E13 +-10134.21721 -1771.73818 -3.12027748133E13 +-10169.06856 -1772.32823 -3.11078722248E13 +-10203.93172 -1772.92001 -3.10129696362E13 +-10238.80673 -1773.51353 -3.09180670477E13 +-10273.69364 -1774.10906 -3.08231644591E13 +-10752.47193 2614.23373 -3.08231644591E13 +-10647.62087 2613.01824 -3.06333592821E13 +-10542.81858 2611.79616 -3.0443554105E13 +-10438.06528 2610.56870 -3.02537489279E13 +-10333.36119 2609.33585 -3.00639437508E13 +-10228.70653 2608.09631 -2.98741385737E13 +-10370.75833 1777.73410 -2.98741385737E13 +-10264.44150 1775.87323 -2.9589430808E13 +-10158.23630 1774.01314 -2.93047230424E13 +-10052.14268 1772.15394 -2.90200152768E13 + -9946.16059 1770.29563 -2.87353075111E13 + -9840.28996 1768.43809 -2.84505997455E13 + -9812.31233 2046.23963 -2.84505997455E13 + -9607.84308 2043.14619 -2.79760868027E13 + -9403.68307 2040.05491 -2.750157386E13 + -9199.83207 2036.96609 -2.70270609173E13 + -8996.28982 2033.87972 -2.65525479745E13 + -8793.05610 2030.79551 -2.60780350318E13 + -8791.84017 2111.63370 -2.60780350318E13 + -8580.83170 2108.55256 -2.5603522089E13 + -8370.13124 2105.47357 -2.51290091463E13 + -8159.73856 2102.39704 -2.46544962035E13 + -7949.65341 2099.32296 -2.41799832608E13 + -7739.87556 2096.25104 -2.37054703181E13 + -7745.50183 2150.21747 -2.37054703181E13 + -7444.65716 2145.92193 -2.30411521982E13 + -7144.41358 2141.63061 -2.23768340784E13 + -6844.77046 2137.34410 -2.17125159585E13 + -6545.72710 2133.06242 -2.10481978387E13 + -6247.28287 2128.78494 -2.03838797188E13 + -6255.03893 2182.20242 -2.03838797188E13 + -5971.82716 2178.09527 -1.97670128932E13 + -5689.12785 2174.31831 -1.91501460676E13 + -5406.89809 2170.87156 -1.85332792421E13 + -5125.09494 2167.75500 -1.79164124165E13 + -4843.67547 2164.96865 -1.72995455909E13 + -4839.54100 2148.13449 -1.72995455909E13 + -4560.34247 2145.67834 -1.66826787653E13 + -4281.44178 2143.55238 -1.60658119397E13 + -4002.79600 2141.75663 -1.54489451141E13 + -3724.36221 2140.29107 -1.48320782885E13 + -3446.09747 2139.15572 -1.42152114629E13 + -3443.79198 2153.88299 -1.42152114629E13 + -3121.96825 2152.76720 -1.35058146135E13 + -2800.31132 2151.65140 -1.27964177641E13 + -2478.82121 2150.53561 -1.20870209146E13 + -2157.49791 2149.41982 -1.13776240652E13 + -1836.34142 2148.30402 -1.06682272158E13 + -1832.27965 2173.84808 -1.06682272158E13 + -1507.47132 2172.73228 -9.95883036635E12 + -1182.82980 2171.61649 -9.24943351692E12 + -858.35510 2170.50070 -8.54003666748E12 + -534.04720 2169.38490 -7.83063981805E12 + -209.90612 2168.26911 -7.12124296861E12 + -208.86718 2172.91375 -7.12124296861E12 + 116.15060 2171.79796 -6.41184611918E12 + 441.00157 2170.68216 -5.70244926975E12 + 765.68572 2169.56637 -4.99305242031E12 + 1090.20307 2168.45058 -4.28365557088E12 + 1414.55360 2167.33478 -3.57425872144E12 + 1415.80104 2170.85174 -3.57425872144E12 + 1740.16142 2169.73595 -2.86486187201E12 + 2064.35499 2168.62015 -2.15546502258E12 + 2388.38174 2167.50436 -1.44606817315E12 + 2712.24169 2166.38857 -736671323715.00000 + 3035.93483 2165.27277 -27274474284.50000 + 3131.89849 1955.99468 -27274474284.50000 + 3135.80315 1955.97975 -17784215429.30000 + 3139.70779 1955.96483 -8293956574.01000 + 3143.61242 1955.99418 1196302281.24000 + 3147.51717 1956.06785 10686561136.50000 + 3151.42206 1956.14161 20176819991.70000 + 3283.86998 -771.76702 20176819991.70000 + 3254.49319 -770.32416 200491738242.00000 + 3225.17148 -768.86660 380806656491.00000 + 3195.90549 -767.39225 561121574741.00000 + 3166.69584 -765.90109 741436492991.00000 + 3137.54315 -764.39525 921751411240.00000 + 3139.62059 -742.21847 921751411240.00000 + 3050.70089 -737.32535 1.49116694255E12 + 2962.37674 -732.28570 2.06058247387E12 + 2874.66740 -727.07862 2.62999800518E12 + 2787.59295 -721.70413 3.19941353649E12 + 2701.17264 -716.18316 3.7688290678E12 + 2695.78548 -657.40879 3.7688290678E12 + 2656.71766 -654.56985 4.05353683346E12 + 2617.82123 -651.69429 4.33824459912E12 + 2579.09858 -648.77690 4.62295236477E12 + 2540.55223 -645.81767 4.90766013043E12 + 2502.18459 -642.82183 5.19236789608E12 + 2507.63086 -696.59920 5.19236789608E12 + 2444.66973 -691.50071 5.62417467399E12 + 2382.17620 -686.31803 6.0559814519E12 + 2320.15868 -681.03913 6.48778822981E12 + 2258.62591 -675.66402 6.91959500772E12 + 2197.58629 -670.20473 7.35140178563E12 + 2204.96144 -717.03906 7.35140178563E12 + 2140.16229 -711.45953 7.78320856354E12 + 2075.87453 -705.79582 8.21501534145E12 + 2012.10654 -700.03592 8.64682211936E12 + 1948.86709 -694.17985 9.07862889727E12 + 1886.16454 -688.23961 9.51043567517E12 + 1879.43481 -748.48638 9.51043567517E12 + 1804.81402 -743.87367 9.98494861793E12 + 1730.67588 -738.81201 1.04594615607E13 + 1657.06953 -733.23787 1.09339745034E13 + 1584.03899 -727.36788 1.14084874462E13 + 1511.59203 -721.64063 1.1883000389E13 + 1512.21337 -784.94551 1.1883000389E13 + 1404.58718 -752.50376 1.25473185088E13 + 1301.40520 -721.22496 1.32116366287E13 + 1202.58613 -690.05812 1.38759547485E13 + 1108.15393 -658.50899 1.45402728684E13 + 1018.17423 -626.45717 1.52045909882E13 + 1028.00538 -703.88679 1.52045909882E13 + 931.70671 -670.95454 1.58689091081E13 + 840.06355 -637.34134 1.65332272279E13 + 753.18274 -602.91502 1.71975453478E13 + 671.18033 -567.64589 1.78618634677E13 + 594.17073 -531.62282 1.85261815875E13 + 597.73244 -573.49545 1.85261815875E13 + 520.00794 -536.37274 1.91904997074E13 + 447.53263 -498.46872 1.98548178272E13 + 380.42682 -459.66428 2.05191359471E13 + 318.81708 -419.95228 2.11834540669E13 + 262.82554 -379.44178 2.18477721868E13 + 268.78511 -396.52269 2.18477721868E13 + 216.12691 -354.86484 2.25120903066E13 + 169.35457 -312.40012 2.31764084265E13 + 128.59198 -269.01067 2.38407265463E13 + 93.96881 -224.69389 2.45050446662E13 + 65.60959 -179.56404 2.51693627861E13 + 71.71024 -221.74424 2.51693627861E13 + 43.87172 -175.45019 2.58336809059E13 + 22.56878 -128.33963 2.64979990258E13 + 7.92671 -80.29478 2.71623171456E13 + 0.07638 -31.31448 2.78266352655E13 + -0.85662 18.48511 2.84909533853E13 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -26663,7 +26799,7 @@ Lambda passive -4.30000 5.67400 11.84027 1.98756 0.77308 0.35029 2.08676 -4.40000 5.71300 11.87273 2.01214 0.77308 0.35220 2.07819 -4.50000 5.75200 11.90027 2.03057 0.77308 0.35362 2.07240 - -4.50000 5.75200 11.92001 2.04286 0.77933 0.35456 2.06882 + -4.50000 5.75200 11.92001 2.04286 0.77308 0.35456 2.06882 -4.60000 5.79100 11.95133 2.06130 0.77308 0.35595 2.06378 -4.70000 5.83000 11.99547 2.08587 0.77308 0.35778 2.05754 -4.80000 5.86900 12.04198 2.11045 0.77308 0.35959 2.05179 @@ -26675,7 +26811,7 @@ Lambda passive -5.42000 6.11080 12.36251 2.26282 0.77308 0.37030 2.02306 -5.56000 6.16540 12.43963 2.29722 0.77308 0.37260 2.01765 -5.70000 6.22000 12.49817 2.32302 0.77308 0.37430 2.01377 - -5.70000 6.22000 29.52407 -3.74934 1.01322 0.00000 5.09679 + -5.70000 6.22000 29.52407 -3.74934 0.73559 0.00000 5.09679 -5.83000 4.51070 26.69275 -4.39816 0.73559 0.00000 5.91765 -5.96000 2.80140 22.94010 -5.26256 0.73559 0.00000 8.18880 -6.09000 1.09210 19.20204 -6.12564 0.73559 0.00000 17.58268 @@ -26686,22 +26822,22 @@ Lambda passive -6.61000 0.00000 7.38689 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.81929 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81836 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.49500 1.07205 0.56530 0.00000 0.62423 0.00000 0.70308 - -8.49500 1.07205 0.56530 0.00000 0.41243 0.00000 0.41243 - -8.64450 2.26655 0.56530 0.00000 0.24941 0.00000 0.24941 - -8.79400 3.46106 0.56530 0.00000 0.16333 0.00000 0.16333 + -7.00000 0.00000 16.81775 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.64450 2.26655 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.79400 3.46106 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 4.65556 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 5.85007 0.00000 0.00000 0.00000 0.00000 0.00000 -9.24250 7.04457 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -26735,13 +26871,13 @@ Lambda passive -10.97000 18.32530 56.43541 0.00000 0.73559 0.00000 3.07964 -11.03000 18.64870 57.13269 0.00000 0.73559 0.00000 3.06363 -11.09000 18.97210 57.65563 0.00000 0.73559 0.00000 3.05198 - -11.09000 18.97210 58.09430 0.00000 0.62759 0.00000 3.04243 + -11.09000 18.97210 58.09430 0.00000 0.73559 0.00000 3.04243 -11.18100 19.46259 58.88737 0.00000 0.73559 0.00000 3.02567 -11.27200 19.95308 59.94473 0.00000 0.73559 0.00000 3.00428 -11.36300 20.44357 61.00202 0.00000 0.73559 0.00000 2.98392 -11.45400 20.93406 62.05925 2.32973 0.73559 0.11129 2.96451 -11.54500 21.42455 62.85213 4.16637 0.73559 0.19559 2.95054 - -11.54500 21.42455 63.38070 4.29186 1.55631 0.19918 2.94149 + -11.54500 21.42455 63.38070 4.29186 0.73559 0.19918 2.94149 -11.63600 21.91504 64.17351 4.48013 0.73559 0.20443 2.92829 -11.72700 22.40553 65.23056 4.73120 0.73559 0.21116 2.91136 -11.81800 22.89602 66.28754 4.98233 0.73559 0.21761 2.89516 @@ -26883,7 +27019,7 @@ Status character 1.98756 5.88600 11.84027 4.38645 1 0 A 2.01214 6.86700 11.87273 4.41660 1 0 A 2.03057 7.84800 11.90027 4.43921 1 0 A - 2.04286 7.84800 11.92001 4.49029 1 0 A + 2.04286 7.84800 11.92001 4.45429 1 0 A 2.06130 8.82900 11.95133 4.47690 1 0 A 2.08587 9.81000 11.99547 4.50705 1 0 A 2.11045 10.79100 12.04198 4.53720 1 0 A @@ -26895,7 +27031,7 @@ Status character 2.26282 16.87320 12.36251 4.72413 1 0 A 2.29722 18.24660 12.43963 4.76634 1 0 A 2.32302 19.62000 12.49817 4.79800 1 0 A - 0.00000 19.62000 29.52407 5.86926 1 0 A + 0.00000 19.62000 29.52407 4.26101 1 0 A 0.00000 23.43530 26.69275 3.31800 1 0 A 0.00000 27.25060 22.94010 2.06067 1 0 A 0.00000 31.06590 19.20204 0.80333 1 0 A @@ -26918,10 +27054,10 @@ Status character 0.00000 68.03916 0.00000 0.00000 1 0 A 0.00000 69.50576 0.00000 0.00000 1 0 A 0.00000 70.97236 0.00000 0.00000 1 0 A - 0.00000 72.43895 0.54378 0.48280 1 0 A - 0.00000 72.43895 0.56530 0.56530 1 0 A - 0.00000 73.90555 0.56530 0.56530 1 0 A - 0.00000 75.37214 0.56530 0.56530 1 0 A + 0.00000 72.43895 0.00000 0.00000 1 0 A + 0.00000 72.43895 0.00000 0.00000 1 0 A + 0.00000 73.90555 0.00000 0.00000 1 0 A + 0.00000 75.37214 0.00000 0.00000 1 0 A 0.00000 76.83873 0.00000 0.00000 1 0 A 0.00000 78.30533 0.00000 0.00000 1 0 A 0.00000 79.77192 0.00000 0.00000 1 0 A @@ -26955,13 +27091,13 @@ Status character 56.43541 96.71870 56.43541 13.47982 402 100 P 57.13269 97.30730 57.13269 13.71771 402 100 P 57.65563 97.89590 57.65563 13.89612 402 100 P - 58.09430 97.89590 58.09430 11.98366 402 100 P + 58.09430 97.89590 58.09430 14.04580 402 100 P 58.88737 98.78861 58.88737 14.31639 402 100 P 59.94473 99.68132 59.94473 14.67719 402 100 P 61.00202 100.57403 61.00202 15.03799 402 100 P 62.05925 101.46674 62.05925 15.39878 402 100 P 62.85213 102.35945 62.85213 15.66938 402 100 P - 63.38070 102.35945 63.38070 33.53398 402 100 P + 63.38070 102.35945 63.38070 15.84978 402 100 P 64.17351 103.25216 64.17351 16.12038 402 100 P 65.23056 104.14487 65.23056 16.48118 402 100 P 66.28754 105.03758 66.28754 16.84197 402 100 P @@ -27281,7 +27417,7 @@ Lambda passive -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 -13.76000 38.68930 195.38331 11.54129 0.52256 0.29831 5.05006 -13.90000 40.11590 200.68154 11.86119 0.52256 0.29833 5.04742 - -13.90000 40.11590 204.22293 12.07442 0.52346 0.29834 5.04596 + -13.90000 40.11590 204.22293 12.07442 0.52256 0.29834 5.04596 -14.04000 41.54250 209.54580 12.39421 0.52256 0.29835 5.04413 -14.18000 42.96910 216.65723 12.82053 0.52256 0.29837 5.04216 -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 @@ -27293,7 +27429,7 @@ Lambda passive -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 -15.16000 52.95530 266.67927 15.80326 0.52256 0.29843 5.03593 -15.30000 54.38190 272.05135 16.12275 0.52256 0.29843 5.03563 - -15.30000 54.38190 275.63352 16.33573 0.55432 0.29843 5.03546 + -15.30000 54.38190 275.63352 16.33573 0.52256 0.29843 5.03546 -15.44000 55.80850 281.00777 16.65520 0.52256 0.29843 5.03521 -15.58000 57.23510 288.17492 17.08114 0.52256 0.29844 5.03493 -15.72000 58.66170 295.34358 17.50706 0.52256 0.29844 5.03469 @@ -27501,7 +27637,7 @@ Status character 11.11464 110.17870 188.34940 19.47214 1 0 A 11.54129 111.55210 195.38331 20.21763 1 0 A 11.86119 112.92550 200.68154 20.77674 1 0 A - 12.07442 112.92550 204.22293 21.18575 1 0 A + 12.07442 112.92550 204.22293 21.14949 1 0 A 12.39421 114.29890 209.54580 21.70860 1 0 A 12.82053 115.67230 216.65723 22.45409 1 0 A 13.24677 117.04570 223.78193 23.19958 1 0 A @@ -27513,7 +27649,7 @@ Status character 15.37726 123.91270 259.51871 26.92703 1 0 A 15.80326 125.28610 266.67927 27.67252 1 0 A 16.12275 126.65950 272.05135 28.23164 1 0 A - 16.33573 126.65950 275.63352 30.34260 1 0 A + 16.33573 126.65950 275.63352 28.60438 1 0 A 16.65520 128.03290 281.00777 29.16350 1 0 A 17.08114 129.40630 288.17492 29.90899 1 0 A 17.50706 130.77970 295.34358 30.65448 1 0 A @@ -27779,7 +27915,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=4 CalculationStatus=0 -IterationCount=2 +IterationCount=3 PartialFactorSet=2 [ANCHOR DATA] [TABLE] @@ -27794,7 +27930,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 257.00953 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 257.01005 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -27819,20 +27955,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.04 : Percentage mobilized resistance left - 9.80 : Percentage mobilized resistance right - 101.70 : Effective left - 80.63 : Effective right + 13.03 : Percentage mobilized resistance left + 9.79 : Percentage mobilized resistance right + 101.60 : Effective left + 80.53 : Effective right 1083.97 : Water pressure left 1120.54 : Water pressure right 779.80 : Max effective resistance left 822.80 : Max effective resistance right -9316.87 : Max moment left -9786.82 : Max moment right --1175.33 : Max mobilized moment left - -967.22 : Max mobilized moment right - 31.17 : Vertical force left - 25.06 : Vertical force right +-1173.99 : Max mobilized moment left + -965.90 : Max mobilized moment right + 31.14 : Vertical force left + 25.03 : Vertical force right 12.6 : Max mobilized moment percentage left 9.9 : Max mobilized moment percentage right -2.43 : Level of single support @@ -27841,10 +27977,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --25.06 : Active force -31.17 : Passive force --25.06 : Plugged active force -31.17 : Plugged passive force +-25.03 : Active force +31.14 : Passive force +-25.03 : Plugged active force +31.14 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -27864,204 +28000,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -2.42363 - 0.00000 0.00000 -2.45479 - 0.00000 0.00000 -2.48595 - 0.00000 0.00000 -2.51712 - 0.00000 0.00000 -2.54828 - 0.00000 0.00000 -2.57945 - 0.00000 0.00000 -2.57945 - 0.00000 0.00000 -2.61061 - 0.00000 0.00000 -2.64177 - 0.00000 0.00000 -2.67294 - 0.00000 0.00000 -2.70410 - 0.00000 0.00000 -2.73527 - 0.00000 0.00000 -2.73527 - 0.00000 0.00049 -2.73893 - 0.00001 0.00196 -2.74260 - 0.00004 0.00441 -2.74626 - 0.00010 0.00785 -2.74993 - 0.00020 0.01226 -2.75360 - 0.00020 0.01226 -2.75360 - 0.00119 0.03973 -2.76826 - 0.00359 0.08289 -2.78293 - 0.00803 0.14175 -2.79759 - 0.01514 0.21631 -2.81226 - 0.02555 0.30656 -2.82693 - 0.02555 0.30656 -2.82693 - 0.05792 0.50276 -2.85626 - 0.10599 0.69896 -2.88560 - 0.16975 0.89516 -2.91494 - 0.24921 1.09136 -2.94430 - 0.34437 1.28756 -2.97369 - 0.34437 1.28756 -2.97369 - 0.48539 1.53281 -3.01045 - 0.65093 1.77806 -3.04728 - 0.84100 2.02331 -3.08419 - 1.05560 2.26856 -3.12121 - 1.29472 2.51381 -3.15836 - 1.29472 2.51381 -3.15836 - 1.55836 2.75906 -3.19567 - 1.84653 3.00431 -3.23318 - 2.15922 3.24956 -3.27092 - 2.49644 3.49481 -3.30894 - 2.85818 3.74006 -3.34727 - 2.85818 3.74006 -3.34727 - 3.18890 3.95098 -3.38052 - 3.53775 4.16189 -3.41406 - 3.90474 4.37281 -3.44794 - 4.28988 4.58372 -3.48218 - 4.69314 4.79464 -3.51682 - 4.69314 -10.71489 -3.51682 - 3.48758 -10.43531 -3.56337 - 2.31389 -10.15572 -3.61049 - 1.17208 -9.87614 -3.65799 - 0.06213 -9.59655 -3.70569 - -1.01594 -9.31697 -3.75340 - -1.01502 -9.33496 -3.75340 - -1.75397 -9.13876 -3.78679 - -2.47722 -8.94256 -3.82004 - -3.18478 -8.74636 -3.85308 - -3.87664 -8.55016 -3.88587 - -4.55280 -8.35396 -3.91835 - -4.55306 -8.35587 -3.91835 - -4.71969 -8.30682 -3.92642 - -4.88534 -8.25777 -3.93446 - -5.05000 -8.20872 -3.94248 - -5.21368 -8.15967 -3.95047 - -5.37639 -8.11062 -3.95843 - -5.37642 -8.11017 -3.95843 - -6.17518 -7.86492 -3.99783 - -6.94941 -7.61967 -4.03645 - -7.69911 -7.37442 -4.07419 - -8.42429 -7.12917 -4.11097 - -9.12495 -6.88392 -4.14669 - -9.12510 -6.87876 -4.14669 - -9.80071 -6.63351 -4.18125 - -10.45180 -6.38826 -4.21458 - -11.07836 -6.14301 -4.24660 - -11.68040 -5.89776 -4.27722 - -12.25792 -5.65251 -4.30637 - -12.25791 -5.65208 -4.30637 - -12.81085 -5.40683 -4.33397 - -13.33927 -5.16158 -4.35996 - -13.84317 -4.91633 -4.38427 - -14.32254 -4.67108 -4.40684 - -14.77738 -4.42583 -4.42761 - -14.77742 -4.42514 -4.42761 - -15.37291 -4.08179 -4.45353 - -15.92033 -3.73844 -4.47565 - -16.41967 -3.39509 -4.49386 - -16.87095 -3.05174 -4.50802 - -17.27416 -2.70839 -4.51801 - -17.27423 -2.70685 -4.51801 - -17.60539 -2.38803 -4.52346 - -17.89511 -2.06920 -4.52516 - -18.14339 -1.75038 -4.52306 - -18.35021 -1.43155 -4.51711 - -18.51559 -1.11273 -4.50725 - -18.51544 -1.11302 -4.50725 - -18.63941 -0.79419 -4.49343 - -18.72193 -0.47537 -4.47565 - -18.76301 -0.15654 -4.45389 - -18.76263 0.16228 -4.42814 - -18.72081 0.48111 -4.39840 - -18.72082 0.48109 -4.39840 - -18.62149 0.84774 -4.35925 - -18.46734 1.21439 -4.31486 - -18.25839 1.58103 -4.26528 - -17.99461 1.94768 -4.21058 - -17.67603 2.31433 -4.15080 - -17.67603 2.31433 -4.15080 - -17.30263 2.68098 -4.08604 - -16.87442 3.04763 -4.01639 - -16.39139 3.41428 -3.94202 - -15.85355 3.78093 -3.86304 - -15.26089 4.14758 -3.77959 - -15.26204 4.15341 -3.77959 - -14.61369 4.52006 -3.69183 - -13.91054 4.88671 -3.59996 - -13.15257 5.25336 -3.50418 - -12.33978 5.62001 -3.40471 - -11.47218 5.98666 -3.30177 - -11.47053 5.99680 -3.30177 - -10.54660 6.36345 -3.19557 - -9.56786 6.73010 -3.08641 - -8.53430 7.09674 -2.97457 - -7.44593 7.46339 -2.86033 - -6.30275 7.83004 -2.74400 - -6.30205 7.84210 -2.74400 - -6.28636 7.84701 -2.74243 - -6.27066 7.85191 -2.74086 - -6.25495 7.85682 -2.73930 - -6.23923 7.86172 -2.73773 - -6.22350 7.86663 -2.73615 - -6.22350 7.86661 -2.73615 - -5.92280 7.95980 -2.70626 - -5.61856 8.05300 -2.67625 - -5.31077 8.14619 -2.64615 - -4.99945 8.23939 -2.61594 - -4.68458 8.33258 -2.58565 - -4.68450 8.33177 -2.58565 - -3.66703 8.62607 -2.48945 - -2.61424 8.92037 -2.39258 - -1.52614 9.21467 -2.29525 - -0.40272 9.50897 -2.19764 - 0.75601 9.80327 -2.09996 - 0.75593 9.80230 -2.09996 - 1.34849 9.94945 -2.05116 - 1.94987 10.09660 -2.00241 - 2.56008 10.24375 -1.95376 - 3.17912 10.39090 -1.90522 - 3.80699 10.53805 -1.85683 - 3.80700 10.53746 -1.85683 - 4.43467 10.38461 -1.80861 - 5.05316 10.23176 -1.76059 - 5.66248 10.07891 -1.71280 - 6.26263 9.92606 -1.66526 - 6.85368 9.77679 -1.61801 - 6.85395 9.76695 -1.61801 - 8.03863 9.43274 -1.52294 - 9.13180 8.51468 -1.42937 - 10.12267 7.75557 -1.33749 - 11.03055 7.15381 -1.24750 - 11.87308 6.67192 -1.15958 - 11.87304 6.67179 -1.15958 - 12.54089 6.68815 -1.08918 - 13.21124 6.72171 -1.02036 - 13.88580 6.77231 -0.95320 - 14.56626 6.83974 -0.88779 - 15.25430 6.92376 -0.82422 - 15.25496 6.93610 -0.82422 - 16.03551 4.25507 -0.73851 - 16.45746 1.81138 -0.65676 - 16.55450 -0.37939 -0.57901 - 16.36553 -2.26378 -0.50528 - 15.93583 -3.82256 -0.43559 - 15.93384 -3.83117 -0.43559 - 15.30820 -5.05860 -0.36991 - 14.53100 -5.99541 -0.30800 - 13.64194 -6.66549 -0.24966 - 12.67338 -7.14861 -0.19467 - 11.64644 -7.50062 -0.14281 - 11.64648 -7.49823 -0.14281 - 10.57918 -7.72775 -0.09383 - 9.48841 -7.83531 -0.04748 - 8.39063 -7.82855 -0.00346 - 7.30153 -7.71206 0.03849 - 6.23618 -7.48991 0.07863 - 6.23623 -7.48853 0.07863 - 5.22073 -7.04246 0.11724 - 4.26328 -6.61911 0.15457 - 3.37189 -6.09920 0.19082 - 2.55992 -5.48482 0.22623 - 1.84047 -4.77759 0.26100 - 1.84051 -4.77714 0.26100 - 1.21521 -4.09993 0.29536 - 0.70245 -3.21014 0.32942 - 0.32059 -2.23003 0.36327 - 0.08224 -1.15994 0.39701 - -0.00001 -0.00003 0.43074 + 0.00000 0.00000 -2.42313 + 0.00000 0.00000 -2.45431 + 0.00000 0.00000 -2.48549 + 0.00000 0.00000 -2.51667 + 0.00000 0.00000 -2.54784 + 0.00000 0.00000 -2.57902 + 0.00000 0.00000 -2.57902 + 0.00000 0.00000 -2.61020 + 0.00000 0.00000 -2.64138 + 0.00000 0.00000 -2.67256 + 0.00000 0.00000 -2.70374 + 0.00000 0.00000 -2.73492 + 0.00000 0.00000 -2.73492 + 0.00000 0.00049 -2.73858 + 0.00001 0.00196 -2.74225 + 0.00004 0.00441 -2.74592 + 0.00010 0.00785 -2.74959 + 0.00020 0.01226 -2.75326 + 0.00020 0.01226 -2.75326 + 0.00119 0.03973 -2.76793 + 0.00359 0.08289 -2.78260 + 0.00803 0.14175 -2.79727 + 0.01514 0.21631 -2.81195 + 0.02555 0.30656 -2.82662 + 0.02555 0.30656 -2.82662 + 0.05792 0.50276 -2.85596 + 0.10599 0.69896 -2.88532 + 0.16975 0.89516 -2.91468 + 0.24921 1.09136 -2.94405 + 0.34437 1.28756 -2.97345 + 0.34437 1.28756 -2.97345 + 0.48539 1.53281 -3.01023 + 0.65093 1.77806 -3.04707 + 0.84100 2.02331 -3.08400 + 1.05560 2.26856 -3.12104 + 1.29472 2.51381 -3.15821 + 1.29472 2.51381 -3.15821 + 1.55836 2.75906 -3.19553 + 1.84653 3.00431 -3.23306 + 2.15922 3.24956 -3.27082 + 2.49644 3.49481 -3.30885 + 2.85818 3.74006 -3.34720 + 2.85818 3.74006 -3.34720 + 3.18890 3.95098 -3.38047 + 3.53775 4.16189 -3.41403 + 3.90474 4.37281 -3.44792 + 4.28988 4.58372 -3.48217 + 4.69314 4.79464 -3.51683 + 4.69314 -10.71541 -3.51683 + 3.48752 -10.43583 -3.56340 + 2.31378 -10.15624 -3.61054 + 1.17190 -9.87666 -3.65806 + 0.06190 -9.59707 -3.70578 + -1.01623 -9.31749 -3.75351 + -1.01531 -9.33551 -3.75351 + -1.75430 -9.13931 -3.78691 + -2.47760 -8.94311 -3.82017 + -3.18520 -8.74691 -3.85323 + -3.87711 -8.55071 -3.88603 + -4.55331 -8.35451 -3.91853 + -4.55357 -8.35642 -3.91853 + -4.72021 -8.30737 -3.92659 + -4.88587 -8.25832 -3.93464 + -5.05054 -8.20927 -3.94266 + -5.21424 -8.16022 -3.95065 + -5.37695 -8.11117 -3.95862 + -5.37699 -8.11072 -3.95862 + -6.17580 -7.86547 -3.99803 + -6.95008 -7.62022 -4.03667 + -7.69984 -7.37497 -4.07443 + -8.42508 -7.12972 -4.11123 + -9.12578 -6.88447 -4.14696 + -9.12594 -6.87930 -4.14696 + -9.80160 -6.63405 -4.18154 + -10.45274 -6.38880 -4.21489 + -11.07936 -6.14355 -4.24692 + -11.68145 -5.89830 -4.27755 + -12.25902 -5.65305 -4.30672 + -12.25901 -5.65261 -4.30672 + -12.81201 -5.40736 -4.33434 + -13.34048 -5.16211 -4.36034 + -13.84443 -4.91686 -4.38467 + -14.32386 -4.67161 -4.40725 + -14.77876 -4.42636 -4.42803 + -14.77880 -4.42567 -4.42803 + -15.37436 -4.08232 -4.45398 + -15.92185 -3.73897 -4.47612 + -16.42127 -3.39562 -4.49435 + -16.87262 -3.05227 -4.50853 + -17.27591 -2.70892 -4.51854 + -17.27598 -2.70739 -4.51854 + -17.60721 -2.38856 -4.52401 + -17.89700 -2.06974 -4.52573 + -18.14535 -1.75091 -4.52365 + -18.35224 -1.43209 -4.51771 + -18.51769 -1.11326 -4.50786 + -18.51754 -1.11354 -4.50786 + -18.64157 -0.79471 -4.49406 + -18.72416 -0.47589 -4.47629 + -18.76531 -0.15706 -4.45455 + -18.76500 0.16176 -4.42881 + -18.72325 0.48059 -4.39908 + -18.72325 0.48057 -4.39908 + -18.62400 0.84722 -4.35995 + -18.46993 1.21386 -4.31557 + -18.26105 1.58051 -4.26601 + -17.99736 1.94716 -4.21131 + -17.67885 2.31381 -4.15155 + -17.67885 2.31381 -4.15155 + -17.30553 2.68046 -4.08680 + -16.87739 3.04711 -4.01717 + -16.39445 3.41376 -3.94280 + -15.85668 3.78041 -3.86383 + -15.26410 4.14705 -3.78039 + -15.26525 4.15288 -3.78039 + -14.61698 4.51953 -3.69264 + -13.91391 4.88618 -3.60077 + -13.15602 5.25283 -3.50499 + -12.34331 5.61947 -3.40553 + -11.47579 5.98612 -3.30259 + -11.47429 5.99854 -3.30259 + -10.55010 6.36518 -3.19640 + -9.57110 6.73183 -3.08723 + -8.53728 7.09848 -2.97539 + -7.44865 7.46513 -2.86116 + -6.30521 7.83178 -2.74483 + -6.30449 7.84392 -2.74483 + -6.28880 7.84882 -2.74326 + -6.27309 7.85373 -2.74169 + -6.25738 7.85863 -2.74012 + -6.24166 7.86354 -2.73855 + -6.22593 7.86844 -2.73698 + -6.22593 7.86842 -2.73698 + -5.92516 7.96162 -2.70708 + -5.62084 8.05481 -2.67708 + -5.31299 8.14801 -2.64697 + -5.00160 8.24120 -2.61677 + -4.68666 8.33440 -2.58647 + -4.68658 8.33360 -2.58647 + -3.66889 8.62790 -2.49027 + -2.61588 8.92220 -2.39340 + -1.52756 9.21650 -2.29606 + -0.40392 9.51080 -2.19845 + 0.75503 9.80510 -2.10077 + 0.75495 9.80414 -2.10077 + 1.34761 9.95129 -2.05196 + 1.94911 10.09844 -2.00322 + 2.55943 10.24559 -1.95456 + 3.17858 10.39274 -1.90602 + 3.80656 10.53989 -1.85762 + 3.80657 10.53930 -1.85762 + 4.43435 10.38645 -1.80940 + 5.05295 10.23360 -1.76138 + 5.66238 10.08075 -1.71359 + 6.26264 9.92790 -1.66605 + 6.85381 9.77936 -1.61880 + 6.85431 9.76514 -1.61880 + 8.03881 9.43056 -1.52372 + 9.13149 8.50897 -1.43014 + 10.12148 7.74673 -1.33827 + 11.02811 7.14228 -1.24827 + 11.86923 6.66170 -1.16035 + 11.86917 6.66144 -1.16035 + 12.53609 6.67984 -1.08994 + 13.20571 6.71536 -1.02111 + 13.87973 6.76784 -0.95395 + 14.55983 6.83706 -0.88853 + 15.24769 6.92277 -0.82495 + 15.24835 6.93545 -0.82495 + 16.02836 4.24847 -0.73923 + 16.44911 1.80127 -0.65747 + 16.54475 -0.38788 -0.57970 + 16.35502 -2.26587 -0.50595 + 15.92559 -3.81644 -0.43625 + 15.92357 -3.82520 -0.43625 + 15.29898 -5.04776 -0.37054 + 14.52408 -5.97295 -0.30861 + 13.63887 -6.63409 -0.25024 + 12.67508 -7.11220 -0.19522 + 11.65353 -7.46016 -0.14333 + 11.65357 -7.45777 -0.14333 + 10.59240 -7.68162 -0.09434 + 9.50825 -7.78695 -0.04795 + 8.41735 -7.77883 -0.00392 + 7.33526 -7.66184 0.03804 + 6.27692 -7.44005 0.07818 + 6.27697 -7.43868 0.07818 + 5.25701 -7.11563 0.11678 + 4.28918 -6.69434 0.15409 + 3.38706 -6.17735 0.19033 + 2.56389 -5.56673 0.22571 + 1.83267 -4.86410 0.26046 + 1.83270 -4.86365 0.26046 + 1.20628 -4.07017 0.29478 + 0.69726 -3.18662 0.32882 + 0.31820 -2.21355 0.36265 + 0.08163 -1.15131 0.39637 + -0.00001 -0.00003 0.43007 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -28287,7 +28423,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -28299,7 +28435,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -28482,49 +28618,49 @@ Status character 0.00000 101.53660 29.05287 4.15370 1 0 A 0.00000 102.12520 29.75242 4.39159 1 0 A 0.00000 102.71380 30.45188 4.62948 1 0 A - 0.11942 103.30240 30.97641 4.80790 110 0 1 - 0.29982 103.30240 31.50672 4.98829 110 0 1 - 0.87428 104.49922 32.57300 5.35107 110 0 1 - 1.57084 105.69604 33.99442 5.83478 110 0 1 - 2.26787 106.89286 35.41550 6.31849 110 0 1 - 2.96467 108.08968 36.83628 6.80219 110 0 1 - 3.53962 109.28650 37.90169 7.16497 110 0 1 - 6.46093 109.28650 23.90815 8.27361 110 0 1 - 8.39631 107.26750 27.72769 10.12262 110 0 1 - 10.94731 105.24850 32.80815 12.58797 110 0 1 - 13.49739 103.22950 37.87590 15.05332 110 0 1 - 16.04634 101.21050 42.93327 17.51866 110 0 1 - 17.97761 99.19150 46.72104 19.36768 110 0 1 + 0.14387 103.30240 30.97641 4.80790 110 0 1 + 0.32427 103.30240 31.50672 4.98829 110 0 1 + 0.89820 104.49922 32.57300 5.35107 110 0 1 + 1.59411 105.69604 33.99442 5.83478 110 0 1 + 2.29040 106.89286 35.41550 6.31849 110 0 1 + 2.98637 108.08968 36.83628 6.80219 110 0 1 + 3.56041 109.28650 37.90169 7.16497 110 0 1 + 6.47133 109.28650 23.90815 8.27361 110 0 1 + 8.40632 107.26750 27.72769 10.12262 110 0 1 + 10.95691 105.24850 32.80815 12.58797 110 0 1 + 13.50655 103.22950 37.87590 15.05332 110 0 1 + 16.05506 101.21050 42.93327 17.51866 110 0 1 + 17.98589 99.19150 46.72104 19.36768 110 0 1 7.79559 99.19150 161.29178 13.69459 1 0 A 8.11883 100.56490 148.60114 14.25371 1 0 A 8.54870 101.93830 150.00588 14.99920 1 0 A - 9.36231 103.31170 155.04644 15.74469 110 0 1 - 10.71347 104.68510 161.14420 16.49018 110 0 1 - 11.85223 106.05850 166.01892 17.04930 110 0 1 - 12.26130 106.05850 169.36158 17.45837 110 0 1 - 13.33707 107.43190 174.46398 17.98116 110 0 1 - 14.60993 108.80530 181.36703 18.72665 110 0 1 - 15.85827 110.17870 188.34940 19.47214 110 0 1 - 17.08317 111.55210 195.38331 20.21763 110 0 1 - 18.09933 112.92550 200.68154 20.77674 110 0 1 - 18.47207 112.92550 204.22293 21.14949 110 0 1 - 19.46724 114.29890 209.54580 21.70860 110 0 1 - 20.62966 115.67230 216.65723 22.45409 110 0 1 - 21.77480 117.04570 223.78193 23.19958 110 0 1 - 22.90447 118.41910 230.91669 23.94507 110 0 1 - 23.83413 119.79250 236.27276 24.50419 110 0 1 - 25.94680 119.79250 239.84569 26.61686 110 0 1 - 25.12483 121.16590 245.20785 25.43605 110 0 1 - 26.21927 122.53930 252.36133 26.18154 110 10 1 - 27.30545 123.91270 259.51871 26.92703 110 11 1 - 28.38503 125.28610 266.67927 27.67252 110 11 1 - 29.27326 126.65950 272.05135 28.23164 110 11 1 - 29.64600 126.65950 275.63352 28.60438 110 11 1 - 30.53087 128.03290 281.00777 29.16350 110 11 1 - 31.59976 129.40630 288.17492 29.90899 110 11 1 - 32.66702 130.77970 295.34358 30.65448 110 11 1 - 33.73340 132.15310 302.51355 31.39997 110 11 1 - 34.61325 133.52650 307.89172 31.95908 110 11 1 + 9.40039 103.31170 155.04644 15.74469 110 0 1 + 10.74769 104.68510 161.14420 16.49018 110 0 1 + 11.88266 106.05850 166.01892 17.04930 110 0 1 + 12.25541 106.05850 169.36158 17.42204 110 0 1 + 13.36378 107.43190 174.46398 17.98116 110 0 1 + 14.63303 108.80530 181.36703 18.72665 110 0 1 + 15.87785 110.17870 188.34940 19.47214 110 0 1 + 17.09932 111.55210 195.38331 20.21763 110 0 1 + 18.11215 112.92550 200.68154 20.77674 110 0 1 + 18.48489 112.92550 204.22293 21.14949 110 0 1 + 19.47681 114.29890 209.54580 21.70860 110 0 1 + 20.63607 115.67230 216.65723 22.45409 110 0 1 + 21.77809 117.04570 223.78193 23.19958 110 0 1 + 22.90469 118.41910 230.91669 23.94507 110 0 1 + 23.83130 119.79250 236.27276 24.50419 110 0 1 + 24.20405 119.79250 239.84569 24.87693 110 0 1 + 25.11896 121.16590 245.20785 25.43605 110 0 1 + 26.21036 122.53930 252.36133 26.18154 110 10 1 + 27.29352 123.91270 259.51871 26.92703 110 11 1 + 28.37009 125.28610 266.67927 27.67252 110 11 1 + 29.25535 126.65950 272.05135 28.23164 110 11 1 + 29.62809 126.65950 275.63352 28.60438 110 11 1 + 30.51004 128.03290 281.00777 29.16350 110 11 1 + 31.57604 129.40630 288.17492 29.90899 110 11 1 + 32.64044 130.77970 295.34358 30.65448 110 11 1 + 33.70397 132.15310 302.51355 31.39997 110 11 1 + 34.58098 133.52650 307.89172 31.95908 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -28542,9 +28678,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 1.174 'Hydrobiaklei' - -12.00 6.111 'Basisveen' - -12.50 73.342 'Eerste zandlaag' + -10.00 1.189 'Hydrobiaklei' + -12.00 6.115 'Basisveen' + -12.50 73.223 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -28566,7 +28702,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 -0.22 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -24.85 'Eerste zandlaag' + -12.50 -24.81 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -28789,7 +28925,7 @@ Lambda passive -13.62000 35.64570 179.93328 10.63334 0.52256 0.29831 5.04783 -13.76000 37.07230 187.01307 11.05990 0.52256 0.29833 5.04455 -13.90000 38.49890 192.33909 11.37974 0.52256 0.29835 5.04268 - -13.90000 38.49890 195.89626 11.59292 0.52350 0.29836 5.04165 + -13.90000 38.49890 195.89626 11.59292 0.52256 0.29836 5.04165 -14.04000 39.92550 201.23952 11.91265 0.52256 0.29837 5.04038 -14.18000 41.35210 208.37374 12.33889 0.52256 0.29839 5.03901 -14.32000 42.77870 215.51706 12.76506 0.52256 0.29840 5.03795 @@ -28801,7 +28937,7 @@ Lambda passive -15.02000 49.91170 251.31018 14.89527 0.52256 0.29843 5.03510 -15.16000 51.33830 258.47759 15.32122 0.52256 0.29844 5.03479 -15.30000 52.76490 263.85424 15.64068 0.52256 0.29844 5.03459 - -15.30000 52.76490 267.43918 15.85364 0.55529 0.29844 5.03448 + -15.30000 52.76490 267.43918 15.85364 0.52256 0.29844 5.03448 -15.44000 54.19150 272.81725 16.17308 0.52256 0.29844 5.03432 -15.58000 55.61810 279.98897 16.59899 0.52256 0.29845 5.03413 -15.72000 57.04470 287.16168 17.02488 0.52256 0.29845 5.03398 @@ -28980,47 +29116,47 @@ Status character 0.00000 105.26130 0.00000 0.00000 -1 0 - 0.00000 105.84990 0.00000 0.00000 -1 0 - 0.05164 100.84990 0.05164 0.05164 402 100 P - 11.50634 102.04672 29.07617 4.16163 110 40 1 - 10.89393 103.24354 30.49850 4.64534 110 36 1 - 10.29431 104.44036 31.92043 5.12904 110 32 1 - 9.70815 105.63718 33.34200 5.61275 110 29 1 - 9.60088 106.83400 34.40797 5.97553 110 28 1 - 8.83621 106.83400 21.27297 7.02354 110 42 1 - 10.59885 104.81500 25.07846 8.87255 110 42 1 - 12.97855 102.79600 30.13953 11.33790 110 43 1 - 15.35917 100.77700 35.18863 13.80325 110 44 1 - 17.74092 98.75800 40.22935 16.26860 110 44 1 - 19.50767 96.73900 44.00630 18.11761 110 44 1 - 30.26663 96.73900 150.84533 12.84961 110 20 1 - 28.85318 98.11240 138.22786 13.40872 110 21 1 - 27.62928 99.48580 140.46436 14.15421 110 20 1 - 26.48333 100.85920 145.94610 14.89970 110 18 1 - 25.41731 102.23260 152.30435 15.64519 110 17 1 - 24.32173 103.60600 157.31255 16.20431 110 15 1 - 24.50790 103.60600 160.72312 16.57705 110 15 1 - 23.53015 104.97940 165.90590 17.13617 110 14 1 - 22.70484 106.35280 172.89057 17.88166 110 13 1 - 22.24101 107.72620 179.93328 18.62715 110 12 1 - 22.50709 109.09960 187.01307 19.37264 110 12 1 - 22.60917 110.47300 192.33909 19.93176 110 12 1 - 23.01819 110.47300 195.89626 20.34077 110 12 1 - 23.10498 111.84640 201.23952 20.86362 110 11 1 - 23.43354 113.21980 208.37374 21.60911 110 11 1 - 23.77938 114.59320 215.51706 22.35460 110 11 1 - 24.14069 115.96660 222.66722 23.10009 110 11 1 - 24.32926 117.34000 228.03323 23.65920 110 11 1 - 24.70201 117.34000 231.61205 24.03195 110 11 1 - 24.90229 118.71340 236.98213 24.59107 110 11 1 - 25.29883 120.08680 244.14486 25.33656 110 0 1 - 25.70362 121.46020 251.31018 26.08204 110 0 1 - 26.11502 122.83360 258.47759 26.82753 110 0 1 - 26.34503 124.20700 263.85424 27.38665 110 0 1 - 28.45634 124.20700 267.43918 29.49796 110 0 1 - 26.95114 125.58040 272.81725 28.31851 110 0 1 - 27.37323 126.95380 279.98897 29.06400 110 0 1 - 27.79695 128.32720 287.16168 29.80949 110 0 1 - 28.22155 129.70060 294.33522 30.55498 110 0 1 - 28.45994 131.07400 299.71583 31.11410 110 0 1 + 11.56080 102.04672 29.07617 4.16163 110 40 1 + 10.94449 103.24354 30.49850 4.64534 110 36 1 + 10.34070 104.44036 31.92043 5.12904 110 32 1 + 9.75013 105.63718 33.34200 5.61275 110 29 1 + 9.58009 106.83400 34.40797 5.97553 110 28 1 + 8.82582 106.83400 21.27297 7.02354 110 41 1 + 10.58885 104.81500 25.07846 8.87255 110 42 1 + 12.96896 102.79600 30.13953 11.33790 110 43 1 + 15.35001 100.77700 35.18863 13.80325 110 44 1 + 17.73220 98.75800 40.22935 16.26860 110 44 1 + 19.49939 96.73900 44.00630 18.11761 110 44 1 + 30.31795 96.73900 150.84533 12.84961 110 20 1 + 28.88694 98.11240 138.22786 13.40872 110 21 1 + 27.64552 99.48580 140.46436 14.15421 110 20 1 + 26.48223 100.85920 145.94610 14.89970 110 18 1 + 25.39922 102.23260 152.30435 15.64519 110 17 1 + 24.28712 103.60600 157.31255 16.20431 110 15 1 + 24.50961 103.60600 160.72312 16.57705 110 15 1 + 23.47964 104.97940 165.90590 17.13617 110 14 1 + 22.63927 106.35280 172.89057 17.88166 110 13 1 + 22.22143 107.72620 179.93328 18.62715 110 12 1 + 22.49094 109.09960 187.01307 19.37264 110 12 1 + 22.59635 110.47300 192.33909 19.93176 110 12 1 + 22.96910 110.47300 195.89626 20.30450 110 12 1 + 23.09541 111.84640 201.23952 20.86362 110 11 1 + 23.42713 113.21980 208.37374 21.60911 110 11 1 + 23.77609 114.59320 215.51706 22.35460 110 11 1 + 24.14047 115.96660 222.66722 23.10009 110 11 1 + 24.33209 117.34000 228.03323 23.65920 110 11 1 + 24.70483 117.34000 231.61205 24.03195 110 11 1 + 24.90816 118.71340 236.98213 24.59107 110 11 1 + 25.30774 120.08680 244.14486 25.33656 110 0 1 + 25.71556 121.46020 251.31018 26.08204 110 0 1 + 26.12997 122.83360 258.47759 26.82753 110 0 1 + 26.36294 124.20700 263.85424 27.38665 110 0 1 + 26.73568 124.20700 267.43918 27.75940 110 0 1 + 26.97197 125.58040 272.81725 28.31851 110 0 1 + 27.39695 126.95380 279.98897 29.06400 110 0 1 + 27.82353 128.32720 287.16168 29.80949 110 0 1 + 28.25098 129.70060 294.33522 30.55498 110 0 1 + 28.49220 131.07400 299.71583 31.11410 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -29038,9 +29174,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 5.762 'Hydrobiaklei' - -12.00 7.085 'Basisveen' - -12.50 88.857 'Eerste zandlaag' + -10.00 5.784 'Hydrobiaklei' + -12.00 7.080 'Basisveen' + -12.50 88.738 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -29062,7 +29198,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 1.07 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.10 'Eerste zandlaag' + -12.50 30.06 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -29287,7 +29423,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=2 [ANCHOR DATA] [TABLE] @@ -29302,8 +29438,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 370.32294 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 277.59571 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 370.31726 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 277.62306 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -29344,10 +29480,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.95 : Percentage mobilized resistance left - 11.57 : Percentage mobilized resistance right - 58.23 : Effective left - 95.14 : Effective right + 12.93 : Percentage mobilized resistance left + 11.56 : Percentage mobilized resistance right + 58.13 : Effective left + 95.07 : Effective right 751.09 : Water pressure left 1120.54 : Water pressure right 449.72 : Max effective resistance left @@ -29356,8 +29492,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 16.93 : Vertical force left - 28.37 : Vertical force right + 16.89 : Vertical force left + 28.34 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -29366,17 +29502,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --28.37 : Active force -16.93 : Passive force --28.37 : Plugged active force -16.93 : Plugged passive force +-28.34 : Active force +16.89 : Passive force +-28.34 : Plugged active force +16.89 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --11.43 : Resulting Vertical Force Unplugged --11.43 : Resulting Vertical Force Plugged +-11.45 : Resulting Vertical Force Unplugged +-11.45 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -29389,210 +29525,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 8.16008 - 0.00000 0.00000 7.77751 - 0.00000 0.00000 7.39494 - 0.00000 0.00000 7.01237 - 0.00000 0.00000 6.62980 - 0.00000 0.00000 6.24724 - 0.00000 0.00000 6.24724 - 0.00000 0.00000 5.86467 - 0.00000 0.00000 5.48210 - 0.00000 0.00000 5.09953 - 0.00000 0.00000 4.71696 - 0.00000 0.00000 4.33440 - 0.00000 0.00000 4.33440 - 0.00000 0.00049 4.28939 - 0.00001 0.00196 4.24438 - 0.00004 0.00441 4.19937 - 0.00010 0.00785 4.15436 - 0.00020 0.01226 4.10936 - 0.00020 0.01226 4.10936 - 0.00803 0.14175 3.56927 - 0.03988 0.41251 3.02917 - 0.11269 0.82453 2.48907 - 0.24341 1.37781 1.94894 - 0.44901 2.07236 1.40876 - 0.44901 2.07236 1.40876 - 0.68977 2.75906 0.95856 - 1.00409 3.54386 0.50828 - 1.40181 4.42676 0.05786 - 1.89272 5.40776 -0.39275 - 2.48663 6.48686 -0.84360 - 2.48663 6.48686 -0.84360 - 3.19336 7.66406 -1.29474 - 4.02271 8.93936 -1.74628 - 4.98450 10.31276 -2.19834 - 6.08854 11.78426 -2.65105 - 7.34462 13.35386 -3.10452 - 7.34462 13.35386 -3.10452 - 8.55395 14.78218 -3.49522 - 9.88924 16.28305 -3.88672 - 11.35672 17.85648 -4.27915 - 12.96263 19.50246 -4.67266 - 14.71322 21.22099 -5.06736 - 14.71322 -107.60194 -5.06736 - 2.58161 -105.21205 -5.59228 - -9.27028 -102.69467 -6.11762 - -20.82793 -100.04979 -6.64148 - -32.07679 -97.27743 -7.16198 - -43.00234 -94.37757 -7.67722 - -43.00142 -94.39557 -7.67722 - -50.46904 -92.28446 -8.03467 - -57.76526 -90.11057 -8.38804 - -64.88505 -87.87389 -8.73677 - -71.82341 -85.57442 -9.08028 - -78.57529 -83.21217 -9.41800 - -78.57555 -83.21408 -9.41800 - -80.23383 -82.61371 -9.50146 - -81.88007 -82.00941 -9.58452 - -83.51418 -81.40119 -9.66716 - -85.13609 -80.78905 -9.74938 - -86.74572 -80.17298 -9.83117 - -86.74575 -80.17253 -9.83117 - -94.60687 -77.03333 -10.23339 - -102.14915 -73.79603 -10.62368 - -109.36280 -70.46063 -11.00114 - -116.23801 -67.02713 -11.36487 - -122.76496 -63.49553 -11.71395 - -122.76493 -63.49430 -11.71395 - -125.27595 -62.05420 -11.84928 - -127.72906 -60.59839 -11.98209 - -130.12362 -59.12689 -12.11233 - -132.45900 -57.63970 -12.23995 - -134.73458 -56.13680 -12.36489 - -134.73459 -56.13678 -12.36489 - -138.03481 -53.87067 -12.54720 - -141.19907 -51.60456 -12.72324 - -144.22736 -49.33845 -12.89289 - -147.11968 -47.07234 -13.05600 - -149.87604 -44.80623 -13.21244 - -149.87605 -44.80600 -13.21244 - -154.16781 -41.02915 -13.45797 - -158.08188 -37.25230 -13.68408 - -161.61827 -33.47545 -13.89031 - -164.77697 -29.69860 -14.07623 - -167.55799 -25.92175 -14.24139 - -167.55803 -25.92106 -14.24139 - -170.81685 -20.63347 -14.43691 - -173.33540 -15.34588 -14.59025 - -175.11369 -10.05829 -14.70095 - -176.15172 -4.77070 -14.76859 - -176.44949 0.51689 -14.79271 - -176.44956 0.51843 -14.79271 - -176.06302 5.42833 -14.77591 - -175.03819 10.33824 -14.72161 - -173.37507 15.24814 -14.63018 - -171.07367 20.15805 -14.50195 - -168.13398 25.06795 -14.33730 - -168.13383 25.06767 -14.33730 - -164.55589 29.97757 -14.13667 - -160.33966 34.88748 -13.90100 - -155.48515 39.79738 -13.63132 - -149.99234 44.70729 -13.32867 - -143.86125 49.61719 -12.99406 - -143.86126 49.61717 -12.99406 - -136.02142 55.26356 -12.57125 - -127.33745 60.90995 -12.11011 - -117.80935 66.55635 -11.61334 - -107.43710 72.20274 -11.08361 - -96.22073 77.84913 -10.52362 - -96.22073 77.84913 -10.52362 - -84.16022 83.49552 -9.93624 - -71.25557 89.14191 -9.32514 - -57.50679 94.78830 -8.69419 - -42.91387 100.43469 -8.04728 - -27.47681 106.08108 -7.38826 - -27.47796 106.08692 -7.38826 - -11.19590 111.73331 -6.72120 - 5.93030 117.37970 -6.05098 - 23.90063 123.02609 -5.38264 - 42.71510 128.67248 -4.72125 - 62.37370 134.31887 -4.07186 - 62.37536 134.32901 -4.07186 - 82.87961 139.97540 -3.43974 - 104.22800 145.62179 -2.83094 - 126.42053 151.26818 -2.25170 - 149.45719 156.91457 -1.70828 - 173.33798 162.56096 -1.20691 - 173.33869 162.57304 -1.20691 - 173.66391 162.64857 -1.20052 - 173.98928 162.72411 -1.19413 - 174.31481 162.79965 -1.18776 - 174.64048 162.87518 -1.18139 - 174.96631 162.95072 -1.17503 - 174.96631 162.95070 -1.17503 - 181.18570 164.38590 -1.05591 - 187.45964 165.82111 -0.94009 - 193.78811 167.25631 -0.82768 - 200.17112 168.69151 -0.71879 - 206.60866 170.12672 -0.61355 - 206.60866 -107.46902 -0.61355 - 204.46683 -106.71365 -0.55965 - 202.34011 -105.95828 -0.50679 - 200.22850 -105.20291 -0.45494 - 198.13200 -104.44754 -0.40411 - 196.05060 -103.69217 -0.35427 - 196.05064 -103.69264 -0.35427 - 185.84142 -100.69836 -0.11967 - 175.89196 -98.27451 0.09152 - 166.18978 -95.75266 0.28052 - 156.74469 -93.13281 0.44855 - 147.56587 -90.43346 0.59684 - 147.56583 -90.43407 0.59684 - 142.19726 -88.51985 0.67684 - 136.94325 -86.61571 0.75038 - 131.80314 -84.72309 0.81772 - 126.77625 -82.84200 0.87906 - 121.86190 -80.97099 0.93466 - 121.86233 -80.98399 0.93466 - 114.59743 -78.66296 1.00853 - 107.54893 -76.23460 1.07045 - 100.72527 -73.72256 1.12113 - 94.13375 -71.13373 1.16127 - 87.78082 -68.48266 1.19160 - 87.78070 -68.47853 1.19160 - 81.67309 -65.74706 1.21281 - 75.81626 -62.96517 1.22549 - 70.21504 -60.13017 1.23024 - 64.87403 -57.24711 1.22764 - 59.79644 -54.35148 1.21828 - 59.79649 -54.35013 1.21828 - 54.50255 -51.55927 1.20085 - 49.47984 -48.91212 1.17656 - 44.71664 -46.36959 1.14601 - 40.20237 -43.93359 1.10979 - 35.92494 -41.64699 1.06852 - 35.92325 -41.61937 1.06852 - 30.34037 -38.14433 1.00335 - 25.24057 -34.71790 0.93069 - 20.61691 -31.34392 0.85170 - 16.46146 -28.03031 0.76751 - 12.76504 -24.78910 0.67926 - 12.76445 -24.78150 0.67926 - 9.51868 -21.60085 0.58800 - 6.71243 -18.50137 0.49440 - 4.33463 -15.48042 0.39905 - 2.37174 -12.59164 0.30253 - 0.79873 -9.92234 0.20543 - 0.80086 -9.90630 0.20543 - -0.42529 -7.61235 0.10825 - -1.33686 -5.45260 0.01117 - -1.96390 -3.54750 -0.08564 - -2.34201 -1.89633 -0.18203 - -2.50667 -0.49792 -0.27782 - -2.50665 -0.49847 -0.27782 - -2.49322 0.64870 -0.37295 - -2.33667 1.54622 -0.46746 - -2.07186 2.19554 -0.56141 - -1.73344 2.59797 -0.65487 - -1.35589 2.75469 -0.74790 - -1.35591 2.75435 -0.74790 - -0.96226 2.78801 -0.84059 - -0.59234 2.45598 -0.93305 - -0.28595 1.88046 -1.02535 - -0.07715 1.06176 -1.11756 - 0.00001 0.00003 -1.20974 + 0.00000 0.00000 8.15636 + 0.00000 0.00000 7.77390 + 0.00000 0.00000 7.39145 + 0.00000 0.00000 7.00899 + 0.00000 0.00000 6.62653 + 0.00000 0.00000 6.24407 + 0.00000 0.00000 6.24407 + 0.00000 0.00000 5.86161 + 0.00000 0.00000 5.47916 + 0.00000 0.00000 5.09670 + 0.00000 0.00000 4.71424 + 0.00000 0.00000 4.33178 + 0.00000 0.00000 4.33178 + 0.00000 0.00049 4.28679 + 0.00001 0.00196 4.24179 + 0.00004 0.00441 4.19680 + 0.00010 0.00785 4.15180 + 0.00020 0.01226 4.10681 + 0.00020 0.01226 4.10681 + 0.00803 0.14175 3.56687 + 0.03988 0.41251 3.02694 + 0.11269 0.82453 2.48699 + 0.24341 1.37781 1.94701 + 0.44901 2.07236 1.40698 + 0.44901 2.07236 1.40698 + 0.68977 2.75906 0.95692 + 1.00409 3.54386 0.50676 + 1.40181 4.42676 0.05647 + 1.89272 5.40776 -0.39401 + 2.48663 6.48686 -0.84472 + 2.48663 6.48686 -0.84472 + 3.19336 7.66406 -1.29573 + 4.02271 8.93936 -1.74714 + 4.98450 10.31276 -2.19908 + 6.08854 11.78426 -2.65165 + 7.34462 13.35386 -3.10500 + 7.34462 13.35386 -3.10500 + 8.55395 14.78218 -3.49559 + 9.88924 16.28305 -3.88698 + 11.35672 17.85648 -4.27930 + 12.96263 19.50246 -4.67269 + 14.71322 21.22099 -5.06729 + 14.71322 -107.59626 -5.06729 + 2.58226 -105.20637 -5.59206 + -9.26899 -102.68899 -6.11724 + -20.82599 -100.04411 -6.64096 + -32.07420 -97.27175 -7.16131 + -42.99910 -94.37189 -7.67641 + -42.99818 -94.38991 -7.67641 + -50.46535 -92.27880 -8.03375 + -57.76111 -90.10490 -8.38702 + -64.88046 -87.86822 -8.73565 + -71.81836 -85.56876 -9.07906 + -78.56978 -83.20651 -9.41668 + -78.57004 -83.20842 -9.41668 + -80.22821 -82.60805 -9.50011 + -81.87434 -82.00375 -9.58314 + -83.50834 -81.39553 -9.66576 + -85.13013 -80.78339 -9.74796 + -86.73965 -80.16732 -9.82972 + -86.73969 -80.16687 -9.82972 + -94.60023 -77.02767 -10.23181 + -102.14195 -73.79037 -10.62198 + -109.35503 -70.45497 -10.99932 + -116.22967 -67.02147 -11.36293 + -122.75606 -63.48987 -11.71189 + -122.75603 -63.48864 -11.71189 + -125.26683 -62.04853 -11.84717 + -127.71971 -60.59273 -11.97993 + -130.11404 -59.12123 -12.11012 + -132.44920 -57.63403 -12.23769 + -134.72455 -56.13114 -12.36259 + -134.72455 -56.13111 -12.36259 + -138.02444 -53.86500 -12.54482 + -141.18835 -51.59889 -12.72080 + -144.21630 -49.33278 -12.89037 + -147.10829 -47.06667 -13.05342 + -149.86431 -44.80056 -13.20979 + -149.86432 -44.80034 -13.20979 + -154.15551 -41.02349 -13.45521 + -158.06902 -37.24664 -13.68120 + -161.60484 -33.46979 -13.88732 + -164.76297 -29.69294 -14.07313 + -167.54342 -25.91609 -14.23818 + -167.54347 -25.91540 -14.23818 + -170.80149 -20.62781 -14.43357 + -173.31925 -15.34022 -14.58676 + -175.09675 -10.05263 -14.69732 + -176.13399 -4.76504 -14.76482 + -176.43096 0.52255 -14.78882 + -176.43103 0.52409 -14.78882 + -176.04376 5.43400 -14.77190 + -175.01819 10.34390 -14.71749 + -173.35434 15.25381 -14.62595 + -171.05220 20.16371 -14.49762 + -168.11178 25.07362 -14.33286 + -168.11163 25.07334 -14.33286 + -164.53295 29.98324 -14.13214 + -160.31598 34.89315 -13.89639 + -155.46073 39.80305 -13.62662 + -149.96719 44.71296 -13.32388 + -143.83536 49.62286 -12.98921 + -143.83537 49.62284 -12.98921 + -135.99468 55.26923 -12.56631 + -127.30987 60.91562 -12.10510 + -117.78091 66.56201 -11.60827 + -107.40782 72.20840 -11.07849 + -96.19060 77.85480 -10.51845 + -96.19060 77.85480 -10.51845 + -84.12924 83.50119 -9.93103 + -71.22374 89.14758 -9.31990 + -57.47411 94.79397 -8.68893 + -42.88035 100.44036 -8.04201 + -27.44245 106.08675 -7.38298 + -27.44359 106.09258 -7.38298 + -11.16068 111.73897 -6.71594 + 5.96636 117.38536 -6.04573 + 23.93754 123.03175 -5.37742 + 42.75285 128.67814 -4.71607 + 62.41230 134.32453 -4.06673 + 62.41381 134.33695 -4.06673 + 82.91925 139.98334 -3.43467 + 104.26883 145.62973 -2.82594 + 126.46254 151.27612 -2.24678 + 149.50039 156.92251 -1.70345 + 173.38237 162.56890 -1.20219 + 173.38309 162.58104 -1.20219 + 173.70833 162.65657 -1.19580 + 174.03371 162.73211 -1.18942 + 174.35925 162.80765 -1.18304 + 174.68494 162.88319 -1.17668 + 175.01079 162.95872 -1.17032 + 175.01079 162.95870 -1.17032 + 181.23049 164.39391 -1.05123 + 187.50472 165.82911 -0.93544 + 193.83350 167.26431 -0.82306 + 200.21681 168.69951 -0.71420 + 206.65466 170.13472 -0.60899 + 206.65466 -107.48837 -0.60899 + 204.51245 -106.73300 -0.55511 + 202.38534 -105.97763 -0.50226 + 200.27334 -105.22226 -0.45044 + 198.17645 -104.46689 -0.39962 + 196.09467 -103.71152 -0.34980 + 196.09471 -103.71198 -0.34980 + 185.88355 -100.71770 -0.11530 + 175.93215 -98.29385 0.09579 + 166.22804 -95.77200 0.28468 + 156.78102 -93.15215 0.45261 + 147.60026 -90.45280 0.60079 + 147.60023 -90.45340 0.60079 + 142.23049 -88.53918 0.68071 + 136.97533 -86.63504 0.75418 + 131.83406 -84.74243 0.82144 + 126.80600 -82.86133 0.88271 + 121.89050 -80.99032 0.93824 + 121.89093 -81.00333 0.93824 + 114.62419 -78.68460 1.01199 + 107.57352 -76.26062 1.07378 + 100.74730 -73.75291 1.12434 + 94.15283 -71.16831 1.16436 + 87.79656 -68.52138 1.19456 + 87.79652 -68.51960 1.19456 + 81.68499 -65.79215 1.21563 + 75.82388 -63.01415 1.22818 + 70.21803 -60.18289 1.23280 + 64.87206 -57.30340 1.23007 + 59.78928 -54.40859 1.22057 + 59.78931 -54.40731 1.22057 + 54.48971 -51.61547 1.20300 + 49.46143 -48.96738 1.17857 + 44.69274 -46.42398 1.14788 + 40.17308 -43.98715 1.11152 + 35.89033 -41.69979 1.07011 + 35.88944 -41.68582 1.07011 + 30.29743 -38.20814 1.00476 + 25.18889 -34.77903 0.93194 + 20.55684 -31.40265 0.85279 + 16.39332 -28.08690 0.76846 + 12.68912 -24.84378 0.68009 + 12.68844 -24.83659 0.68009 + 9.43508 -21.65425 0.58872 + 6.62146 -18.55328 0.49504 + 4.23649 -15.53099 0.39962 + 2.26663 -12.64042 0.30306 + 0.68695 -9.96889 0.20595 + 0.68908 -9.95289 0.20595 + -0.53218 -7.53612 0.10878 + -1.43293 -5.37431 0.01174 + -2.04887 -3.46711 -0.08500 + -2.41557 -1.81377 -0.18130 + -2.56851 -0.41305 -0.27700 + -2.56850 -0.41361 -0.27700 + -2.54301 0.73605 -0.37200 + -2.37405 1.63628 -0.46638 + -2.09642 2.28856 -0.56019 + -1.74476 2.69424 -0.65351 + -1.35349 2.85448 -0.74639 + -1.35351 2.85412 -0.74639 + -0.95698 2.76992 -0.83893 + -0.58931 2.44199 -0.93124 + -0.28457 1.87085 -1.02339 + -0.07681 1.05682 -1.11545 + 0.00001 0.00003 -1.20749 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -29824,7 +29960,7 @@ Lambda passive -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 -13.76000 38.68930 195.38331 11.54129 0.52256 0.29831 5.05006 -13.90000 40.11590 200.68154 11.86119 0.52256 0.29833 5.04742 - -13.90000 40.11590 204.22293 12.07442 0.52346 0.29834 5.04596 + -13.90000 40.11590 204.22293 12.07442 0.52256 0.29834 5.04596 -14.04000 41.54250 209.54580 12.39421 0.52256 0.29835 5.04413 -14.18000 42.96910 216.65723 12.82053 0.52256 0.29837 5.04216 -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 @@ -29836,7 +29972,7 @@ Lambda passive -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 -15.16000 52.95530 266.67927 15.80326 0.52256 0.29843 5.03593 -15.30000 54.38190 272.05135 16.12275 0.52256 0.29843 5.03563 - -15.30000 54.38190 275.63352 16.33573 0.55432 0.29843 5.03546 + -15.30000 54.38190 275.63352 16.33573 0.52256 0.29843 5.03546 -15.44000 55.80850 281.00777 16.65520 0.52256 0.29843 5.03521 -15.58000 57.23510 288.17492 17.08114 0.52256 0.29844 5.03493 -15.72000 58.66170 295.34358 17.50706 0.52256 0.29844 5.03469 @@ -30015,53 +30151,53 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 7.13407 101.25211 28.71471 4.03872 110 25 1 - 7.69624 102.14482 29.77573 4.39952 110 26 1 - 8.22319 103.03753 30.83654 4.76032 110 27 1 - 8.71710 103.93024 31.89713 5.12111 110 27 1 - 9.08997 104.82295 32.69245 5.39171 110 28 1 - 9.27037 104.82295 33.22259 5.57211 110 28 1 - 9.61453 105.71566 34.01772 5.84271 110 28 1 - 10.02206 106.60837 35.07774 6.20351 110 29 1 - 10.40457 107.50108 36.13758 6.56430 110 29 1 - 10.76387 108.39379 37.19726 6.92510 110 29 1 - 11.01156 109.28650 37.99192 7.19570 110 29 1 - 10.18154 109.28650 23.90815 8.27361 110 43 1 - 12.00666 107.26750 27.72769 10.12262 110 43 1 - 14.43721 105.24850 32.80815 12.58797 110 44 1 - 16.85779 103.22950 37.87590 15.05332 110 45 1 - 19.26933 101.21050 42.93327 17.51866 110 45 1 - 21.05643 99.19150 46.72104 19.36768 110 45 1 - 23.82709 99.19150 161.29178 13.69459 110 15 1 - 23.79473 100.56490 148.60114 14.25371 110 16 1 - 23.87609 101.93830 150.00588 14.99920 110 16 1 - 23.89559 103.31170 155.04644 15.74469 110 15 1 - 23.86404 104.68510 161.14420 16.49018 110 15 1 - 23.60586 106.05850 166.01892 17.04930 110 14 1 - 23.97860 106.05850 169.36158 17.42204 110 14 1 - 23.69008 107.43190 174.46398 17.98116 110 14 1 - 23.56413 108.80530 181.36703 18.72665 110 13 1 - 23.42009 110.17870 188.34940 19.47214 110 12 1 - 23.26369 111.55210 195.38331 20.21763 110 12 1 - 22.91428 112.92550 200.68154 20.77674 110 11 1 - 23.32329 112.92550 204.22293 21.18575 110 11 1 - 22.93573 114.29890 209.54580 21.70860 110 11 1 - 22.77090 115.67230 216.65723 22.45409 110 11 1 - 22.60780 117.04570 223.78193 23.19958 110 0 1 - 22.44806 118.41910 230.91669 23.94507 110 0 1 - 22.10694 119.79250 236.27276 24.50419 110 0 1 - 22.47968 119.79250 239.84569 24.87693 110 0 1 - 22.14448 121.16590 245.20785 25.43605 110 0 1 - 22.00109 122.53930 252.36133 26.18154 110 0 1 - 21.86263 123.91270 259.51871 26.92703 110 0 1 - 21.72860 125.28610 266.67927 27.67252 110 0 1 - 21.41213 126.65950 272.05135 28.23164 110 0 1 - 23.52309 126.65950 275.63352 30.34260 110 0 1 - 21.47147 128.03290 281.00777 29.16350 110 0 1 - 21.34657 129.40630 288.17492 29.90899 110 0 1 - 21.22316 130.77970 295.34358 30.65448 110 0 1 - 21.10058 132.15310 302.51355 31.39997 110 0 1 - 20.79181 133.52650 307.89172 31.95908 110 0 1 + 7.14845 101.25211 28.71471 4.03872 110 25 1 + 7.71018 102.14482 29.77573 4.39952 110 26 1 + 8.23668 103.03753 30.83654 4.76032 110 27 1 + 8.73013 103.93024 31.89713 5.12111 110 27 1 + 9.10253 104.82295 32.69245 5.39171 110 28 1 + 9.28293 104.82295 33.22259 5.57211 110 28 1 + 9.62661 105.71566 34.01772 5.84271 110 28 1 + 10.03365 106.60837 35.07774 6.20351 110 29 1 + 10.41567 107.50108 36.13758 6.56430 110 29 1 + 10.77448 108.39379 37.19726 6.92510 110 29 1 + 11.02168 109.28650 37.99192 7.19570 110 29 1 + 10.18660 109.28650 23.90815 8.27361 110 43 1 + 12.01144 107.26750 27.72769 10.12262 110 43 1 + 14.44172 105.24850 32.80815 12.58797 110 44 1 + 16.86203 103.22950 37.87590 15.05332 110 45 1 + 19.27331 101.21050 42.93327 17.51866 110 45 1 + 21.06014 99.19150 46.72104 19.36768 110 45 1 + 23.84938 99.19150 161.29178 13.69459 110 15 1 + 23.81489 100.56490 148.60114 14.25371 110 16 1 + 23.89421 101.93830 150.00588 14.99920 110 16 1 + 23.91179 103.31170 155.04644 15.74469 110 15 1 + 23.87845 104.68510 161.14420 16.49018 110 15 1 + 23.61864 106.05850 166.01892 17.04930 110 14 1 + 23.99139 106.05850 169.36158 17.42204 110 14 1 + 23.70142 107.43190 174.46398 17.98116 110 14 1 + 23.57421 108.80530 181.36703 18.72665 110 13 1 + 23.42913 110.17870 188.34940 19.47214 110 12 1 + 23.27193 111.55210 195.38331 20.21763 110 12 1 + 22.92198 112.92550 200.68154 20.77674 110 11 1 + 23.29472 112.92550 204.22293 21.14949 110 11 1 + 22.94313 114.29890 209.54580 21.70860 110 11 1 + 22.77827 115.67230 216.65723 22.45409 110 11 1 + 22.61537 117.04570 223.78193 23.19958 110 0 1 + 22.45603 118.41910 230.91669 23.94507 110 0 1 + 22.11548 119.79250 236.27276 24.50419 110 0 1 + 22.48823 119.79250 239.84569 24.87693 110 0 1 + 22.15375 121.16590 245.20785 25.43605 110 0 1 + 22.01121 122.53930 252.36133 26.18154 110 0 1 + 21.87369 123.91270 259.51871 26.92703 110 0 1 + 21.74066 125.28610 266.67927 27.67252 110 0 1 + 21.42521 126.65950 272.05135 28.23164 110 0 1 + 21.79796 126.65950 275.63352 28.60438 110 0 1 + 21.48559 128.03290 281.00777 29.16350 110 0 1 + 21.36171 129.40630 288.17492 29.90899 110 0 1 + 21.23931 130.77970 295.34358 30.65448 110 0 1 + 21.11774 132.15310 302.51355 31.39997 110 0 1 + 20.80999 133.52650 307.89172 31.95908 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -30079,9 +30215,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 7.943 'Hydrobiaklei' - -12.00 7.819 'Basisveen' - -12.50 79.379 'Eerste zandlaag' + -10.00 7.954 'Hydrobiaklei' + -12.00 7.821 'Basisveen' + -12.50 79.297 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -30101,9 +30237,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 -1.47 'Hydrobiaklei' + -10.00 -1.48 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -26.89 'Eerste zandlaag' + -12.50 -26.86 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -30227,14 +30363,14 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.34000 47.92000 47.70000 0.65650 0.65650 - -10.44000 12.08000 53.00000 1.85850 1.85850 - -10.54000 39.00000 12.00000 2.91250 2.91250 - -10.64000 49.10000 49.08000 3.81850 3.81850 - -10.74000 12.30000 12.00000 4.57650 4.57650 - -10.79000 11.80000 12.00000 4.90000 4.90000 - -10.82000 71.51400 34.34100 5.93099 4.95378 - -10.88000 71.51400 34.34100 8.15861 5.06999 + -10.34000 1.00000 1.00000 0.65650 0.65650 + -10.44000 1.00000 1.00000 1.85850 1.85850 + -10.54000 1.00000 1.00000 2.91250 2.91250 + -10.64000 1.00000 1.00000 3.81850 3.81850 + -10.74000 1.00000 1.00000 4.57650 4.57650 + -10.79000 1.00000 1.00000 4.90000 4.90000 + -10.82000 71.51400 34.34000 5.93099 4.95378 + -10.88000 71.51400 34.34000 8.15861 5.06999 -10.94000 71.51400 34.34100 10.60712 5.19773 -11.00000 71.51400 34.34100 13.27649 5.33698 -11.06000 71.51400 34.34100 16.16675 5.48776 @@ -30332,7 +30468,7 @@ Lambda passive -12.30000 6.14890 17.63278 -0.10538 0.77308 0.00000 2.86763 -12.40000 5.07790 15.79341 -0.77857 0.77308 0.00000 3.11023 -12.50000 4.00690 14.42011 -1.28366 0.77308 0.00000 3.37340 - -12.50000 4.00690 23.52201 1.29840 0.53153 0.29756 5.39057 + -12.50000 4.00690 23.52201 1.29840 0.52256 0.29756 5.39057 -12.64000 5.43350 29.05656 1.61697 0.52256 0.29759 5.34767 -12.78000 6.86010 36.31478 2.04190 0.52256 0.29765 5.29362 -12.92000 8.28670 43.46478 2.46703 0.52256 0.29771 5.24512 @@ -30344,7 +30480,7 @@ Lambda passive -13.62000 15.41970 78.70011 4.59533 0.52256 0.29802 5.10387 -13.76000 16.84630 85.75249 5.02134 0.52256 0.29807 5.09029 -13.90000 18.27290 91.04996 5.34089 0.52256 0.29810 5.08198 - -13.90000 18.27290 94.58604 5.55394 0.61707 0.29813 5.07720 + -13.90000 18.27290 94.58604 5.55394 0.52256 0.29813 5.07720 -14.04000 19.69950 99.89664 5.87352 0.52256 0.29816 5.07102 -14.18000 21.12610 106.98765 6.29966 0.52256 0.29819 5.06424 -14.32000 22.55270 114.08990 6.72580 0.52256 0.29823 5.05881 @@ -30534,25 +30670,25 @@ Status character 2.32091 70.41370 44.48962 4.12431 1 0 A 2.51295 71.00230 48.17086 4.46557 1 0 A 2.65698 71.59090 50.93179 4.72151 1 0 A - 4.01436 71.59090 42.11871 6.95468 110 0 1 - 9.19644 72.98361 41.16455 6.94943 110 22 1 - 8.30026 74.37632 40.32470 6.94244 110 21 1 - 7.44657 75.76903 39.76490 6.93544 110 19 1 - 6.63323 77.16174 39.36073 6.92845 110 0 1 - 5.94558 78.55445 39.12059 6.92320 110 0 1 - 5.77058 78.55445 38.98477 6.91970 110 0 1 - 5.11902 79.94716 38.80843 6.91446 110 0 1 - 4.41416 81.33987 38.60879 6.90746 110 0 1 - 3.74169 82.73258 38.44164 6.90047 110 0 1 - 3.09981 84.12529 38.29890 6.89347 110 0 1 - 3.07236 85.51800 38.20395 6.88822 110 0 1 - 5.12256 85.51800 22.75685 7.03050 110 0 1 - 4.52548 87.75900 21.34833 6.40952 110 0 1 - 3.73231 90.00000 19.48369 5.58155 110 0 1 - 2.94911 92.24100 17.63278 4.75358 110 0 1 - 2.17495 94.48200 15.79341 3.92562 110 0 1 - 1.61589 96.72300 14.42011 3.30464 110 0 1 - 1.29840 96.72300 23.52201 2.31937 1 0 A + 4.01608 71.59090 42.11871 6.95468 110 0 1 + 9.25942 72.98361 41.16455 6.94943 110 22 1 + 8.36211 74.37632 40.32470 6.94244 110 21 1 + 7.50714 75.76903 39.76490 6.93544 110 19 1 + 6.69234 77.16174 39.36073 6.92845 110 0 1 + 6.00304 78.55445 39.12059 6.92320 110 0 1 + 5.82804 78.55445 38.98477 6.91970 110 0 1 + 5.17462 79.94716 38.80843 6.91446 110 0 1 + 4.46771 81.33987 38.60879 6.90746 110 0 1 + 3.79300 82.73258 38.44164 6.90047 110 0 1 + 3.14870 84.12529 38.29890 6.89347 110 0 1 + 3.06225 85.51800 38.20395 6.88822 110 0 1 + 5.11751 85.51800 22.75685 7.03050 110 0 1 + 4.52070 87.75900 21.34833 6.40952 110 0 1 + 3.72780 90.00000 19.48369 5.58155 110 0 1 + 2.94487 92.24100 17.63278 4.75358 110 0 1 + 2.17097 94.48200 15.79341 3.92562 110 0 1 + 1.61218 96.72300 14.42011 3.30464 110 0 1 + 1.30312 96.72300 23.52201 2.28023 110 0 1 1.61697 98.09640 29.05656 2.83935 1 0 A 2.04190 99.46980 36.31478 3.58484 1 0 A 2.46703 100.84320 43.46478 4.33033 1 0 A @@ -30562,26 +30698,26 @@ Status character 3.74358 104.96340 64.62657 6.56680 1 0 A 4.16940 106.33680 71.65943 7.31229 1 0 A 4.59533 107.71020 78.70011 8.05778 1 0 A - 5.75720 109.08360 85.75249 8.80327 110 0 1 - 7.22484 110.45700 91.04996 9.36238 110 0 1 - 9.35818 110.45700 94.58604 11.49572 110 0 1 - 9.06712 111.83040 99.89664 10.29424 110 0 1 - 10.72293 113.20380 106.98765 11.03973 110 0 1 - 12.37701 114.57720 114.08990 11.78522 110 11 1 - 14.02772 115.95060 121.20216 12.53071 110 12 1 - 15.48708 117.32400 126.54193 13.08983 110 12 1 - 15.85982 117.32400 130.10446 13.46257 110 12 1 - 17.31326 118.69740 135.45186 14.02169 110 13 1 - 18.94763 120.07080 142.58712 14.76718 110 13 1 - 20.57707 121.44420 149.72807 15.51267 110 14 1 - 22.20208 122.81760 156.87391 16.25816 110 14 1 - 23.63679 124.19100 162.23597 16.81728 110 15 1 - 24.00953 124.19100 165.81195 17.19002 110 14 1 - 25.44116 125.56440 171.17764 17.74914 110 15 1 - 27.05704 126.93780 178.33444 18.49463 110 15 1 - 28.67144 128.31120 185.49394 19.24012 110 15 1 - 30.28500 129.68460 192.65577 19.98561 110 16 1 - 31.71200 131.05800 198.02843 20.54472 110 16 1 + 5.74896 109.08360 85.75249 8.80327 110 0 1 + 7.21715 110.45700 91.04996 9.36238 110 0 1 + 7.58989 110.45700 94.58604 9.73513 110 0 1 + 9.05972 111.83040 99.89664 10.29424 110 0 1 + 10.71556 113.20380 106.98765 11.03973 110 0 1 + 12.36944 114.57720 114.08990 11.78522 110 11 1 + 14.01976 115.95060 121.20216 12.53071 110 12 1 + 15.47854 117.32400 126.54193 13.08983 110 12 1 + 15.85128 117.32400 130.10446 13.46257 110 12 1 + 17.30399 118.69740 135.45186 14.02169 110 13 1 + 18.93751 120.07080 142.58712 14.76718 110 13 1 + 20.56601 121.44420 149.72807 15.51267 110 14 1 + 22.19002 122.81760 156.87391 16.25816 110 14 1 + 23.62370 124.19100 162.23597 16.81728 110 15 1 + 23.99645 124.19100 165.81195 17.19002 110 14 1 + 25.42705 125.56440 171.17764 17.74914 110 15 1 + 27.04190 126.93780 178.33444 18.49463 110 15 1 + 28.65529 128.31120 185.49394 19.24012 110 15 1 + 30.26783 129.68460 192.65577 19.98561 110 16 1 + 31.69382 131.05800 198.02843 20.54472 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -30596,9 +30732,9 @@ Layer name [DATA] -9.99 4.250 'OWB' -10.79 0.667 'Grind' - -11.09 5.219 'Hydrobiaklei' - -12.00 1.675 'Basisveen' - -12.50 46.422 'Eerste zandlaag' + -11.09 5.265 'Hydrobiaklei' + -12.00 1.673 'Basisveen' + -12.50 46.273 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -30615,9 +30751,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.24 'Grind' - -11.09 0.97 'Hydrobiaklei' + -11.09 0.98 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 15.73 'Eerste zandlaag' + -12.50 15.68 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -30857,8 +30993,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 400.25179 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 478.15862 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 400.25157 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 478.14667 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -30901,7 +31037,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 14.91 : Percentage mobilized resistance left 15.34 : Percentage mobilized resistance right - 95.34 : Effective left + 95.32 : Effective left 126.17 : Effective right 514.53 : Water pressure left 1120.54 : Water pressure right @@ -30911,8 +31047,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 18.31 : Vertical force left - 37.88 : Vertical force right + 18.30 : Vertical force left + 37.87 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -30921,17 +31057,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --18.31 : Active force -37.88 : Passive force --18.31 : Plugged active force -37.88 : Plugged passive force +-18.30 : Active force +37.87 : Passive force +-18.30 : Plugged active force +37.87 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -19.57 : Resulting Vertical Force Unplugged -19.57 : Resulting Vertical Force Plugged +19.58 : Resulting Vertical Force Unplugged +19.58 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -30944,210 +31080,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.80134 - 0.00000 0.00000 15.18522 - 0.00000 0.00000 14.56909 - 0.00000 0.00000 13.95297 - 0.00000 0.00000 13.33685 - 0.00000 0.00000 12.72072 - 0.00000 0.00000 12.72072 - 0.00000 0.00000 12.10460 - 0.00000 0.00000 11.48848 - 0.00000 0.00000 10.87235 - 0.00000 0.00000 10.25623 - 0.00000 0.00000 9.64011 - 0.00000 0.00000 9.64011 - 0.00000 0.00049 9.56762 - 0.00001 0.00196 9.49513 - 0.00004 0.00441 9.42265 - 0.00010 0.00785 9.35016 - 0.00020 0.01226 9.27768 - 0.00020 0.01226 9.27768 - 0.00803 0.14175 8.40786 - 0.03988 0.41251 7.53805 - 0.11269 0.82453 6.66822 - 0.24341 1.37781 5.79836 - 0.44901 2.07236 4.92845 - 0.44901 2.07236 4.92845 - 0.68977 2.75906 4.20348 - 1.00409 3.54386 3.47843 - 1.40181 4.42676 2.75324 - 1.89272 5.40776 2.02786 - 2.48663 6.48686 1.30224 - 2.48663 6.48686 1.30224 - 3.19336 7.66406 0.57633 - 4.02271 8.93936 -0.14998 - 4.98450 10.31276 -0.87682 - 6.08854 11.78426 -1.60429 - 7.34462 13.35386 -2.33254 - 7.34462 13.35386 -2.33254 - 8.55395 14.78218 -2.95954 - 9.88924 16.28305 -3.58735 - 11.35672 17.85648 -4.21608 - 12.96263 19.50246 -4.84589 + 0.00000 0.00000 15.80028 + 0.00000 0.00000 15.18419 + 0.00000 0.00000 14.56809 + 0.00000 0.00000 13.95200 + 0.00000 0.00000 13.33591 + 0.00000 0.00000 12.71982 + 0.00000 0.00000 12.71982 + 0.00000 0.00000 12.10372 + 0.00000 0.00000 11.48763 + 0.00000 0.00000 10.87154 + 0.00000 0.00000 10.25544 + 0.00000 0.00000 9.63935 + 0.00000 0.00000 9.63935 + 0.00000 0.00049 9.56687 + 0.00001 0.00196 9.49439 + 0.00004 0.00441 9.42191 + 0.00010 0.00785 9.34943 + 0.00020 0.01226 9.27694 + 0.00020 0.01226 9.27694 + 0.00803 0.14175 8.40717 + 0.03988 0.41251 7.53740 + 0.11269 0.82453 6.66761 + 0.24341 1.37781 5.79780 + 0.44901 2.07236 4.92793 + 0.44901 2.07236 4.92793 + 0.68977 2.75906 4.20300 + 1.00409 3.54386 3.47798 + 1.40181 4.42676 2.75283 + 1.89272 5.40776 2.02749 + 2.48663 6.48686 1.30191 + 2.48663 6.48686 1.30191 + 3.19336 7.66406 0.57603 + 4.02271 8.93936 -0.15024 + 4.98450 10.31276 -0.87704 + 6.08854 11.78426 -1.60448 + 7.34462 13.35386 -2.33269 + 7.34462 13.35386 -2.33269 + 8.55395 14.78218 -2.95967 + 9.88924 16.28305 -3.58744 + 11.35672 17.85648 -4.21614 + 12.96263 19.50246 -4.84592 14.71322 21.22099 -5.47690 - 14.71322 -137.53080 -5.47690 - -0.83028 -135.14091 -6.31496 - -16.09406 -132.62353 -7.15289 - -31.06360 -129.97865 -7.98822 - -45.72435 -127.20629 -8.81851 - -60.06179 -124.30643 -9.64132 - -60.06087 -124.32443 -9.64132 - -69.92280 -122.21332 -10.21296 - -79.61332 -120.03942 -10.77896 - -89.12743 -117.80274 -11.33856 - -98.46009 -115.50328 -11.89098 - -107.60628 -113.14103 -12.43547 - -107.60654 -113.14294 -12.43547 - -109.86340 -112.54257 -12.57026 - -112.10822 -111.93827 -12.70450 - -114.34090 -111.33005 -12.83817 - -116.56139 -110.71791 -12.97127 - -118.76960 -110.10184 -13.10378 - -118.76963 -110.10139 -13.10378 - -129.62363 -106.96219 -13.75710 - -140.15880 -103.72489 -14.39410 - -150.36534 -100.38949 -15.01347 - -160.23343 -96.95599 -15.61394 - -169.75327 -93.42439 -16.19422 - -169.75342 -93.41923 -16.19422 - -178.91467 -89.78953 -16.75306 - -187.70805 -86.06173 -17.28935 - -196.12375 -82.23583 -17.80204 - -204.15195 -78.31183 -18.29007 - -211.78284 -74.28973 -18.75238 - -211.78283 -74.28929 -18.75238 - -219.00657 -70.16909 -19.18795 - -225.81338 -65.95079 -19.59592 - -232.19346 -61.63439 -19.97549 - -238.13699 -57.21989 -20.32586 - -243.63417 -52.70729 -20.64623 - -243.63421 -52.70661 -20.64623 - -250.56161 -46.22416 -21.04284 - -256.56800 -39.54943 -21.37755 - -261.62647 -32.68243 -21.64914 - -265.71011 -25.62316 -21.85634 - -268.79199 -18.37161 -21.99792 - -268.79205 -18.37007 -21.99792 - -270.73309 -11.46432 -22.06971 - -271.76559 -4.39278 -22.08385 - -271.86802 2.84454 -22.04030 - -271.01883 10.24766 -21.93906 - -269.19645 17.81657 -21.78011 - -269.19630 17.81628 -21.78011 - -266.37922 25.55098 -21.56358 - -262.54586 33.45146 -21.29032 - -257.67466 41.51773 -20.96136 - -251.74407 49.74979 -20.57775 - -244.73253 58.14764 -20.14053 - -244.73253 58.14763 -20.14053 - -235.30497 68.01011 -19.57298 - -224.38658 78.09185 -18.93914 - -211.94458 88.39285 -18.24251 - -197.94620 98.91310 -17.48661 - -182.35864 109.65261 -16.67494 - -182.35864 109.65261 -16.67494 - -165.14914 120.61137 -15.81136 - -146.28491 131.78939 -14.90123 - -125.73318 143.18667 -13.95036 - -103.46117 154.80320 -12.96452 - -79.43610 166.63899 -11.94952 - -79.43725 166.64483 -11.94952 - -53.62546 178.69987 -10.91152 - -25.99506 190.97417 -9.85838 - 3.48674 203.46773 -8.79840 - 34.85272 216.18054 -7.73988 - 68.13565 229.11261 -6.69113 - 68.13730 229.12274 -6.69113 - 103.37148 242.27407 -5.66089 - 140.58817 255.64465 -4.65970 - 179.82016 269.23448 -3.69861 - 221.10021 283.04357 -2.78868 - 264.46111 297.07192 -1.94096 - 264.46181 297.08398 -1.94096 - 265.05617 297.27314 -1.93010 - 265.65091 297.46233 -1.91924 - 266.24602 297.65157 -1.90840 - 266.84151 297.84084 -1.89757 - 267.43738 298.03016 -1.88675 - 267.43738 298.03014 -1.88675 - 278.83097 301.63455 -1.68386 - 290.36179 305.25312 -1.48604 - 302.03039 308.88586 -1.29350 - 313.83729 312.53277 -1.10646 - 325.78306 316.19384 -0.92513 - 325.78305 -161.96480 -0.92513 - 322.56308 -160.03223 -0.83205 - 319.38179 -158.09574 -0.74060 - 316.23927 -156.15532 -0.65075 - 313.13560 -154.21098 -0.56250 - 310.07086 -152.26271 -0.47583 - 310.07060 -152.25586 -0.47583 - 295.20160 -146.39472 -0.06557 - 280.66622 -144.29658 0.30749 - 266.34555 -142.10044 0.64517 - 252.24940 -139.80630 0.94928 - 238.38756 -137.41414 1.22161 - 238.38755 -137.41421 1.22161 - 232.95027 -134.44338 1.32204 - 227.63254 -131.43754 1.41778 - 222.43571 -128.39862 1.50893 - 217.36108 -125.32780 1.59559 - 212.40991 -122.22479 1.67787 - 212.40992 -122.22459 1.67787 - 209.97207 -121.56108 1.71740 - 207.54747 -120.89870 1.75588 - 205.13611 -120.23760 1.79330 - 202.73796 -119.57778 1.82969 - 200.35299 -118.91908 1.86506 - 200.35350 -118.93499 1.86506 - 189.65135 -116.18841 2.01345 - 179.21746 -113.10374 2.14206 - 169.07065 -109.88126 2.25194 - 159.22287 -106.53350 2.34416 - 149.68487 -103.07618 2.41977 - 149.68475 -103.07016 2.41977 - 140.46691 -99.50437 2.47980 - 131.57767 -95.84898 2.52519 - 123.02488 -92.11162 2.55681 - 114.81556 -88.30157 2.57557 - 106.95514 -84.45369 2.58235 - 106.95523 -84.45234 2.58235 - 98.67389 -81.21619 2.57702 - 90.70554 -78.17372 2.55926 - 83.03453 -75.26966 2.53003 - 75.64608 -72.53137 2.49032 - 68.51982 -70.04623 2.44107 - 68.51875 -70.03296 2.44107 - 59.09738 -64.57390 2.35797 - 50.43337 -59.21518 2.26030 - 42.51178 -53.97108 2.15000 - 35.31533 -48.85859 2.02904 - 28.82432 -43.89734 1.89938 - 28.82461 -43.89204 1.89938 - 23.01908 -39.07390 1.76281 - 17.87580 -34.42971 1.62057 - 13.37068 -29.95852 1.47377 - 9.47909 -25.66588 1.32353 - 6.17546 -21.56124 1.17097 - 6.17369 -21.53606 1.17097 - 3.43611 -17.60504 1.01705 - 1.23533 -13.86564 0.86229 - -0.45498 -10.31288 0.70711 - -1.66452 -7.02261 0.55194 - -2.43995 -4.13168 0.39719 - -2.43810 -4.11904 0.39719 - -2.82784 -1.56555 0.24315 - -2.90346 0.40938 0.08981 - -2.73442 1.92989 -0.06287 - -2.38419 2.99818 -0.21491 - -1.91594 3.61625 -0.36636 - -1.91597 3.61564 -0.36636 - -1.39269 3.78527 -0.51732 - -0.87696 3.50777 -0.66794 - -0.43133 2.78407 -0.81832 - -0.11822 1.61474 -0.96858 - 0.00001 0.00006 -1.11880 + 14.71322 -137.53058 -5.47690 + -0.83025 -135.14069 -6.31492 + -16.09401 -132.62330 -7.15280 + -31.06352 -129.97843 -7.98809 + -45.72425 -127.20606 -8.81834 + -60.06166 -124.30621 -9.64111 + -60.06074 -124.32422 -9.64111 + -69.92265 -122.21311 -10.21272 + -79.61316 -120.03922 -10.77869 + -89.12725 -117.80254 -11.33826 + -98.45989 -115.50307 -11.89066 + -107.60607 -113.14082 -12.43511 + -107.60633 -113.14273 -12.43511 + -109.86318 -112.54236 -12.56990 + -112.10800 -111.93807 -12.70413 + -114.34068 -111.32985 -12.83780 + -116.56116 -110.71770 -12.97089 + -118.76936 -110.10163 -13.10339 + -118.76940 -110.10118 -13.10339 + -129.62338 -106.96198 -13.75668 + -140.15853 -103.72468 -14.39363 + -150.36504 -100.38928 -15.01297 + -160.23311 -96.95578 -15.61340 + -169.75293 -93.42418 -16.19364 + -169.75308 -93.41902 -16.19364 + -178.91431 -89.78932 -16.75245 + -187.70767 -86.06152 -17.28871 + -196.12335 -82.23562 -17.80136 + -204.15153 -78.31162 -18.28936 + -211.78240 -74.28952 -18.75163 + -211.78239 -74.28908 -18.75163 + -219.00611 -70.16888 -19.18716 + -225.81290 -65.95058 -19.59509 + -232.19295 -61.63418 -19.97463 + -238.13646 -57.21968 -20.32496 + -243.63362 -52.70708 -20.64530 + -243.63366 -52.70639 -20.64530 + -250.56103 -46.22395 -21.04186 + -256.56739 -39.54922 -21.37652 + -261.62584 -32.68222 -21.64806 + -265.70944 -25.62295 -21.85521 + -268.79129 -18.37139 -21.99675 + -268.79136 -18.36986 -21.99675 + -270.73236 -11.46411 -22.06849 + -271.76484 -4.39257 -22.08258 + -271.86725 2.84476 -22.03899 + -271.01802 10.24788 -21.93771 + -269.19561 17.81678 -21.77871 + -269.19546 17.81650 -21.77871 + -266.37836 25.55120 -21.56213 + -262.54497 33.45168 -21.28882 + -257.67374 41.51795 -20.95982 + -251.74312 49.75001 -20.57617 + -244.73155 58.14786 -20.13891 + -244.73156 58.14784 -20.13891 + -235.30396 68.01033 -19.57131 + -224.38554 78.09207 -18.93741 + -211.94351 88.39307 -18.24074 + -197.94509 98.91332 -17.48479 + -182.35750 109.65283 -16.67307 + -182.35750 109.65283 -16.67307 + -165.14797 120.61159 -15.80944 + -146.28371 131.78961 -14.89927 + -125.73194 143.18689 -13.94834 + -103.45990 154.80342 -12.96246 + -79.43480 166.63921 -11.94741 + -79.43594 166.64504 -11.94741 + -53.62412 178.70008 -10.90937 + -25.99369 190.97438 -9.85618 + 3.48814 203.46794 -8.79615 + 34.85415 216.18075 -7.73758 + 68.13711 229.11282 -6.68880 + 68.13862 229.12523 -6.68880 + 103.37317 242.27656 -5.65850 + 140.59024 255.64714 -4.65727 + 179.82259 269.23697 -3.69614 + 221.10302 283.04606 -2.78617 + 264.46429 297.07441 -1.93841 + 264.46501 297.08655 -1.93841 + 265.05937 297.27571 -1.92754 + 265.65411 297.46490 -1.91668 + 266.24923 297.65414 -1.90584 + 266.84473 297.84341 -1.89501 + 267.44061 298.03273 -1.88419 + 267.44061 298.03271 -1.88419 + 278.83429 301.63712 -1.68129 + 290.36521 305.25569 -1.48346 + 302.03390 308.88843 -1.29091 + 313.84091 312.53534 -1.10386 + 325.78677 316.19641 -0.92252 + 325.78676 -161.95029 -0.92252 + 322.56708 -160.01772 -0.82943 + 319.38608 -158.08122 -0.73797 + 316.24386 -156.14081 -0.64812 + 313.14048 -154.19646 -0.55987 + 310.07602 -152.24820 -0.47319 + 310.07606 -152.24867 -0.47319 + 295.20779 -146.38753 -0.06291 + 280.67312 -144.28939 0.31018 + 266.35318 -142.09325 0.64789 + 252.25774 -139.79911 0.95202 + 238.39662 -137.40695 1.22437 + 238.39657 -137.40723 1.22437 + 232.95957 -134.43690 1.32481 + 227.64210 -131.43080 1.42056 + 222.44554 -128.39160 1.51172 + 217.37120 -125.32050 1.59839 + 212.42033 -122.21720 1.68068 + 212.42034 -122.21699 1.68068 + 209.98264 -121.55349 1.72021 + 207.55819 -120.89111 1.75869 + 205.14698 -120.23001 1.79612 + 202.74898 -119.57018 1.83251 + 200.36417 -118.91148 1.86789 + 200.36467 -118.92742 1.86789 + 189.66318 -116.18222 2.01629 + 179.22972 -113.10041 2.14491 + 169.08309 -109.88061 2.25481 + 159.23526 -106.53533 2.34704 + 149.69699 -103.08028 2.42266 + 149.69695 -103.07660 2.42266 + 140.47853 -99.51120 2.48270 + 131.58859 -95.85761 2.52809 + 123.03494 -92.12179 2.55973 + 114.82464 -88.31301 2.57849 + 106.96316 -84.46510 2.58528 + 106.96323 -84.46381 2.58528 + 98.68079 -81.22689 2.57995 + 90.71140 -78.18364 2.56219 + 83.03945 -75.27880 2.53297 + 75.65011 -72.53996 2.49326 + 68.52301 -70.05449 2.44402 + 68.52191 -70.04081 2.44402 + 59.09977 -64.57706 2.36092 + 50.43565 -59.21364 2.26324 + 42.51460 -53.96485 2.15295 + 35.31935 -48.84765 2.03199 + 28.83020 -43.88168 1.90233 + 28.83050 -43.87637 1.90233 + 23.02725 -39.05605 1.76576 + 17.88681 -34.40713 1.62351 + 13.38518 -29.93122 1.47671 + 9.49774 -25.63385 1.32646 + 6.19893 -21.52451 1.17387 + 6.19836 -21.52002 1.17387 + 3.46335 -17.58431 1.01994 + 1.26581 -13.84025 0.86515 + -0.42063 -10.28287 0.70994 + -1.62554 -6.98577 0.55472 + -2.39518 -4.08584 0.39992 + -2.39347 -4.07378 0.39992 + -2.78761 -1.63326 0.24581 + -2.87211 0.35028 0.09240 + -2.71075 1.87917 -0.06036 + -2.36705 2.95557 -0.21249 + -1.90421 3.58149 -0.36403 + -1.90425 3.58088 -0.36403 + -1.38530 3.75806 -0.51508 + -0.87287 3.48782 -0.66580 + -0.42954 2.77107 -0.81628 + -0.11778 1.60839 -0.96663 + 0.00001 0.00006 -1.11695 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -31373,7 +31509,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -31385,7 +31521,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -31570,53 +31706,53 @@ Status character 0.00000 105.16320 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 11.08928 101.25211 28.71471 4.03872 110 39 1 - 11.89893 102.14482 29.77573 4.39952 110 40 1 - 12.64142 103.03753 30.83654 4.76032 110 41 1 - 13.32064 103.93024 31.89713 5.12111 110 42 1 - 13.85027 104.82295 32.69245 5.39171 110 42 1 - 14.03067 104.82295 33.22259 5.57211 110 42 1 - 14.50470 105.71566 34.01772 5.84271 110 43 1 - 15.01673 106.60837 35.07774 6.20351 110 43 1 - 15.47980 107.50108 36.13758 6.56430 110 43 1 - 15.89718 108.39379 37.19726 6.92510 110 43 1 - 16.18191 109.28650 37.99192 7.19570 110 43 1 - 12.27913 109.28650 23.90815 8.27361 220 51 2 - 14.15866 107.26750 27.72769 10.12262 220 51 2 - 16.65422 105.24850 32.80815 12.58797 220 51 2 - 19.13790 103.22950 37.87590 15.05332 220 51 2 - 21.61109 101.21050 42.93327 17.51866 220 50 2 - 23.45019 99.19150 46.72104 19.36768 220 50 2 - 38.99665 99.19150 161.29178 13.69459 110 24 1 - 38.63378 100.56490 148.60114 14.25371 110 26 1 - 38.30498 101.93830 150.00588 14.99920 110 26 1 - 37.84486 103.31170 155.04644 15.74469 110 24 1 - 37.27442 104.68510 161.14420 16.49018 110 23 1 - 36.42826 106.05850 166.01892 17.04930 110 22 1 - 36.83733 106.05850 169.36158 17.45837 110 22 1 - 35.88471 107.43190 174.46398 17.98116 110 21 1 - 35.09774 108.80530 181.36703 18.72665 110 19 1 - 34.26549 110.17870 188.34940 19.47214 110 18 1 - 33.39973 111.55210 195.38331 20.21763 110 17 1 - 32.32588 112.92550 200.68154 20.77674 110 16 1 - 32.69863 112.92550 204.22293 21.14949 110 16 1 - 31.61325 114.29890 209.54580 21.70860 110 15 1 - 30.70787 115.67230 216.65723 22.45409 110 14 1 - 29.80034 117.04570 223.78193 23.19958 110 13 1 - 28.89488 118.41910 230.91669 23.94507 110 13 1 - 27.80933 119.79250 236.27276 24.50419 110 12 1 - 29.92200 119.79250 239.84569 26.61686 110 12 1 - 27.10558 121.16590 245.20785 25.43605 110 11 1 - 26.22410 122.53930 252.36133 26.18154 110 10 1 - 25.35071 123.91270 259.51871 26.92703 110 0 1 - 24.48485 125.28610 266.67927 27.67252 110 0 1 - 23.43957 126.65950 272.05135 28.23164 110 0 1 - 23.81231 126.65950 275.63352 28.60438 110 0 1 - 22.77264 128.03290 281.00777 29.16350 110 0 1 - 21.92317 129.40630 288.17492 29.90899 110 0 1 - 21.07639 130.77970 295.34358 30.65448 110 0 1 - 20.23114 132.15310 302.51355 31.39997 110 0 1 - 19.19988 133.52650 307.89172 31.95908 110 0 1 + 11.10012 101.25211 28.71471 4.03872 110 39 1 + 11.90981 102.14482 29.77573 4.39952 110 40 1 + 12.65233 103.03753 30.83654 4.76032 110 41 1 + 13.33157 103.93024 31.89713 5.12111 110 42 1 + 13.86123 104.82295 32.69245 5.39171 110 42 1 + 14.04163 104.82295 33.22259 5.57211 110 42 1 + 14.51569 105.71566 34.01772 5.84271 110 43 1 + 15.02774 106.60837 35.07774 6.20351 110 43 1 + 15.49083 107.50108 36.13758 6.56430 110 43 1 + 15.90823 108.39379 37.19726 6.92510 110 43 1 + 16.19297 109.28650 37.99192 7.19570 110 43 1 + 12.28134 109.28650 23.90815 8.27361 220 51 2 + 14.16087 107.26750 27.72769 10.12262 220 51 2 + 16.65644 105.24850 32.80815 12.58797 220 51 2 + 19.14012 103.22950 37.87590 15.05332 220 51 2 + 21.61332 101.21050 42.93327 17.51866 220 50 2 + 23.45241 99.19150 46.72104 19.36768 220 50 2 + 39.03008 99.19150 161.29178 13.69459 110 24 1 + 38.66727 100.56490 148.60114 14.25371 110 26 1 + 38.33853 101.93830 150.00588 14.99920 110 26 1 + 37.87848 103.31170 155.04644 15.74469 110 24 1 + 37.30809 104.68510 161.14420 16.49018 110 23 1 + 36.46198 106.05850 166.01892 17.04930 110 22 1 + 36.83472 106.05850 169.36158 17.42204 110 22 1 + 35.91847 107.43190 174.46398 17.98116 110 21 1 + 35.13152 108.80530 181.36703 18.72665 110 19 1 + 34.29925 110.17870 188.34940 19.47214 110 18 1 + 33.43344 111.55210 195.38331 20.21763 110 17 1 + 32.35949 112.92550 200.68154 20.77674 110 16 1 + 32.73223 112.92550 204.22293 21.14949 110 16 1 + 31.64668 114.29890 209.54580 21.70860 110 15 1 + 30.74105 115.67230 216.65723 22.45409 110 14 1 + 29.83319 117.04570 223.78193 23.19958 110 13 1 + 28.92728 118.41910 230.91669 23.94507 110 13 1 + 27.84117 119.79250 236.27276 24.50419 110 12 1 + 28.21392 119.79250 239.84569 24.87693 110 12 1 + 27.13674 121.16590 245.20785 25.43605 110 11 1 + 26.25447 122.53930 252.36133 26.18154 110 10 1 + 25.38019 123.91270 259.51871 26.92703 110 0 1 + 24.51336 125.28610 266.67927 27.67252 110 0 1 + 23.46706 126.65950 272.05135 28.23164 110 0 1 + 23.83981 126.65950 275.63352 28.60438 110 0 1 + 22.79908 128.03290 281.00777 29.16350 110 0 1 + 21.94855 129.40630 288.17492 29.90899 110 0 1 + 21.10069 130.77970 295.34358 30.65448 110 0 1 + 20.25435 132.15310 302.51355 31.39997 110 0 1 + 19.22200 133.52650 307.89172 31.95908 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -31634,9 +31770,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.003 'Hydrobiaklei' - -12.00 8.943 'Basisveen' - -12.50 105.228 'Eerste zandlaag' + -10.00 12.013 'Hydrobiaklei' + -12.00 8.944 'Basisveen' + -12.50 105.212 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -31658,7 +31794,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 2.23 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 35.65 'Eerste zandlaag' + -12.50 35.64 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -31782,14 +31918,14 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.34000 23.00000 2.00000 3.90001 3.90001 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.54000 88.00000 59.00000 19.50031 19.50031 - -10.64000 23.00000 23.00400 27.30061 27.30061 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.34000 1.00000 1.00000 3.90001 3.90001 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.54000 1.00000 1.00000 19.50031 19.50031 + -10.64000 1.00000 1.00000 27.30061 27.30061 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -31887,7 +32023,7 @@ Lambda passive -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 -11.45400 17.98596 58.76656 2.47750 0.73559 0.13775 3.26736 -11.54500 18.47645 59.28463 2.66733 0.73559 0.14533 3.23010 - -11.54500 18.47645 59.65500 2.79360 0.73753 0.15020 3.20742 + -11.54500 18.47645 59.65500 2.79360 0.73559 0.15020 3.20742 -11.63600 18.96694 60.23996 2.98273 0.73559 0.15726 3.17605 -11.72700 19.45743 61.05929 3.23462 0.73559 0.16624 3.13810 -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 @@ -31899,7 +32035,7 @@ Lambda passive -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 -12.40000 9.68490 23.80984 2.13203 0.77308 0.22014 2.45845 -12.50000 6.87390 20.21114 0.80386 0.77308 0.10610 2.66756 - -12.50000 6.87390 38.27144 2.14143 0.77379 0.29616 5.29302 + -12.50000 6.87390 38.27144 2.14143 0.52256 0.29616 5.29302 -12.64000 8.30050 43.67886 2.45917 0.52256 0.29627 5.26220 -12.78000 9.72710 50.82580 2.88324 0.52256 0.29641 5.22517 -12.92000 11.15370 57.92016 3.30777 0.52256 0.29656 5.19291 @@ -32089,37 +32225,37 @@ Status character 78.00300 0.00000 78.00300 78.00300 1 100 A 78.00400 0.00000 78.00400 78.00400 1 100 A 78.00475 0.00000 78.00475 78.00475 1 100 A - 28.60005 0.00000 428.73800 39.74517 110 0 1 - 28.08387 0.00000 431.86327 40.03489 110 0 1 - 27.63413 0.00000 436.03030 40.42118 110 0 1 - 27.21443 0.00000 440.19733 40.80748 110 0 1 - 26.82419 0.00000 444.36436 41.19377 110 0 1 - 26.38980 0.00000 447.48963 41.48350 110 0 1 + 28.63119 0.00000 428.73800 39.74517 110 0 1 + 28.07751 0.00000 431.86327 40.03489 110 0 1 + 27.62749 0.00000 436.03030 40.42118 110 0 1 + 27.20751 0.00000 440.19733 40.80748 110 0 1 + 26.81700 0.00000 444.36436 41.19377 110 0 1 + 26.38235 0.00000 447.48963 41.48350 110 0 1 4.27929 66.90000 82.02990 7.60439 1 0 A 4.32730 67.09620 82.95021 7.68971 1 0 A 4.39132 67.29240 84.17729 7.80346 1 0 A 4.45533 67.48860 85.40437 7.91722 1 0 A 4.51935 67.68480 86.63145 8.03097 1 0 A 4.56736 67.88100 87.55176 8.11628 1 0 A - 5.27020 67.88100 57.49074 11.87722 110 0 1 - 10.46278 68.77371 57.44729 12.14781 110 0 1 - 9.68725 69.66642 57.69015 12.50861 110 0 1 - 8.98612 70.55913 58.15792 12.86941 110 0 1 - 8.35555 71.45184 58.76656 13.23021 110 0 1 - 7.78723 72.34455 59.28463 13.50080 110 0 1 - 7.83230 72.34455 59.65500 13.71738 110 0 1 - 7.29074 73.23726 60.23996 13.95180 110 0 1 - 6.84935 74.12997 61.05929 14.31260 110 0 1 - 6.46425 75.02268 61.91592 14.67339 110 0 1 - 6.13218 75.91539 62.80158 15.03419 110 0 1 - 6.33497 76.80810 63.48060 15.30479 110 0 1 - 11.14331 76.80810 42.04983 15.63641 110 0 1 - 9.52831 80.78910 38.35909 14.00657 110 0 1 - 7.39196 84.77010 33.47530 11.83344 110 0 1 - 5.27580 88.75110 28.62801 9.66032 110 0 1 - 3.66421 92.73210 23.80984 7.48719 110 0 1 - 2.65101 96.71310 20.21114 5.85735 110 0 1 - 2.14143 96.71310 38.27144 5.59491 1 0 A + 5.26796 67.88100 57.49074 11.87722 110 0 1 + 10.50609 68.77371 57.44729 12.14781 110 0 1 + 9.72863 69.66642 57.69015 12.50861 110 0 1 + 9.02543 70.55913 58.15792 12.86941 110 0 1 + 8.39263 71.45184 58.76656 13.23021 110 0 1 + 7.82191 72.34455 59.28463 13.50080 110 0 1 + 7.83081 72.34455 59.65500 13.68120 110 0 1 + 7.32286 73.23726 60.23996 13.95180 110 0 1 + 6.87874 74.12997 61.05929 14.31260 110 0 1 + 6.49075 75.02268 61.91592 14.67339 110 0 1 + 6.15566 75.91539 62.80158 15.03419 110 0 1 + 6.33283 76.80810 63.48060 15.30479 110 0 1 + 11.13777 76.80810 42.04983 15.63641 110 0 1 + 9.52277 80.78910 38.35909 14.00657 110 0 1 + 7.38641 84.77010 33.47530 11.83344 110 0 1 + 5.27025 88.75110 28.62801 9.66032 110 0 1 + 3.66315 92.73210 23.80984 7.48719 110 0 1 + 2.64997 96.71310 20.21114 5.85735 110 0 1 + 2.14143 96.71310 38.27144 3.77842 1 0 A 2.45917 98.08650 43.67886 4.33754 1 0 A 2.88324 99.45990 50.82580 5.08303 1 0 A 3.30777 100.83330 57.92016 5.82852 1 0 A @@ -32135,20 +32271,20 @@ Status character 6.71563 111.82050 114.40324 11.79243 1 0 A 7.14232 113.19390 121.49808 12.53792 1 0 A 7.56904 114.56730 128.60212 13.28341 1 0 A - 9.07909 115.94070 135.71455 14.02890 110 0 1 - 11.28288 117.31410 141.05365 14.58802 110 0 1 - 11.65563 117.31410 144.61540 14.96076 110 0 1 - 13.85036 118.68750 149.96124 15.51988 110 0 1 - 16.22281 120.06090 157.09393 16.26537 110 0 1 - 18.58718 121.43430 164.23188 17.01086 110 11 1 - 20.94402 122.80770 171.37447 17.75635 110 12 1 - 23.10754 124.18110 176.73401 18.31547 110 13 1 - 23.48028 124.18110 180.30829 18.68821 110 13 1 - 25.63819 125.55450 185.67141 19.24733 110 14 1 - 27.97863 126.92790 192.82483 19.99282 110 15 1 - 30.31639 128.30130 199.98102 20.73831 110 15 1 - 32.65262 129.67470 207.13966 21.48380 110 16 1 - 34.80212 131.04810 212.51000 22.04291 110 16 1 + 9.04670 115.94070 135.71455 14.02890 110 0 1 + 11.25104 117.31410 141.05365 14.58802 110 0 1 + 11.62378 117.31410 144.61540 14.96076 110 0 1 + 13.81919 118.68750 149.96124 15.51988 110 0 1 + 16.19245 120.06090 157.09393 16.26537 110 0 1 + 18.55770 121.43430 164.23188 17.01086 110 11 1 + 20.91551 122.80770 171.37447 17.75635 110 12 1 + 23.08004 124.18110 176.73401 18.31547 110 13 1 + 23.45279 124.18110 180.30829 18.68821 110 13 1 + 25.61174 125.55450 185.67141 19.24733 110 14 1 + 27.95325 126.92790 192.82483 19.99282 110 14 1 + 30.29209 128.30130 199.98102 20.73831 110 15 1 + 32.62941 129.67470 207.13966 21.48380 110 16 1 + 34.78000 131.04810 212.51000 22.04291 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -32163,9 +32299,9 @@ Layer name [DATA] -9.99 35.140 'OWB' -10.79 5.932 'Grind' - -11.09 7.083 'Hydrobiaklei' - -12.00 3.276 'Basisveen' - -12.50 43.911 'Eerste zandlaag' + -11.09 7.110 'Hydrobiaklei' + -12.00 3.274 'Basisveen' + -12.50 43.866 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -32182,9 +32318,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -2.12 'Grind' - -11.09 -1.31 'Hydrobiaklei' + -11.09 -1.32 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.88 'Eerste zandlaag' + -12.50 -14.86 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -32424,8 +32560,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 439.25647 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 556.96841 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 439.24358 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 557.12014 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -32469,10 +32605,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 21.95 : Percentage mobilized resistance left - 25.05 : Percentage mobilized resistance right - 140.47 : Effective left - 137.41 : Effective right + 21.97 : Percentage mobilized resistance left + 25.09 : Percentage mobilized resistance right + 140.58 : Effective left + 137.67 : Effective right 514.53 : Water pressure left 540.51 : Water pressure right 639.88 : Max effective resistance left @@ -32481,8 +32617,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 32.01 : Vertical force left - 21.92 : Vertical force right + 32.07 : Vertical force left + 22.01 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -32491,17 +32627,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --32.01 : Active force -21.92 : Passive force --32.01 : Plugged active force -21.92 : Plugged passive force +-32.07 : Active force +22.01 : Passive force +-32.07 : Plugged active force +22.01 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --10.09 : Resulting Vertical Force Unplugged --10.09 : Resulting Vertical Force Plugged +-10.06 : Resulting Vertical Force Unplugged +-10.06 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -32514,210 +32650,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.11843 - 0.00000 0.00000 -8.05368 - 0.00000 0.00000 -7.98894 - 0.00000 0.00000 -7.92419 - 0.00000 0.00000 -7.85945 - 0.00000 0.00000 -7.79470 - 0.00000 0.00000 -7.79470 - 0.00000 0.00000 -7.72996 - 0.00000 0.00000 -7.66521 - 0.00000 0.00000 -7.60047 - 0.00000 0.00000 -7.53572 - 0.00000 0.00000 -7.47098 - 0.00000 0.00000 -7.47098 - 0.00000 0.00000 -7.38465 - 0.00000 0.00000 -7.29833 - 0.00000 0.00000 -7.21200 - 0.00000 0.00000 -7.12567 - 0.00000 0.00000 -7.03935 - 0.00000 0.00000 -7.03935 - 0.00000 0.00000 -6.96741 - 0.00000 0.00000 -6.89547 - 0.00000 0.00000 -6.82353 - 0.00000 0.00000 -6.75159 - 0.00000 0.00000 -6.67965 - 0.00000 0.00000 -6.67965 - 0.00000 0.00000 -6.60772 - 0.00000 0.00000 -6.53578 - 0.00000 0.00000 -6.46384 - 0.00000 0.00000 -6.39190 - 0.00000 0.00000 -6.31996 - 0.00000 0.00000 -6.31996 - 0.00000 0.00000 -6.25809 - 0.00000 0.00000 -6.19623 - 0.00000 0.00000 -6.13436 - 0.00000 0.00000 -6.07249 - 0.00000 0.00000 -6.01062 - 0.00000 0.64353 -6.01062 - 0.07336 0.64353 -5.92862 - 0.14672 0.64353 -5.84662 - 0.22009 0.64353 -5.76465 - 0.29345 0.64353 -5.68271 - 0.36681 0.64353 -5.60083 - 0.36773 0.62553 -5.60083 - 0.41777 0.62553 -5.54339 - 0.46781 0.62553 -5.48600 - 0.51786 0.62553 -5.42864 - 0.56790 0.62553 -5.37132 - 0.61794 0.62553 -5.31405 - 0.61768 0.62362 -5.31405 - 0.63015 0.62362 -5.29974 - 0.64263 0.62362 -5.28543 - 0.65510 0.62362 -5.27113 - 0.66757 0.62362 -5.25683 - 0.68004 0.62362 -5.24253 - 0.68000 0.62407 -5.24253 - 0.74241 0.62407 -5.17110 - 0.80482 0.62407 -5.09976 - 0.86723 0.62407 -5.02852 - 0.92963 0.62407 -4.95740 - 0.99204 0.62407 -4.88638 - 0.99189 0.62923 -4.88638 - 1.05481 0.62923 -4.81550 - 1.11773 0.62923 -4.74474 - 1.18066 0.62923 -4.67413 - 1.24358 0.62923 -4.60367 - 1.30650 0.62923 -4.53336 - 1.30651 0.62966 -4.53336 - 1.36948 0.62966 -4.46322 - 1.43245 0.62966 -4.39325 - 1.49541 0.62966 -4.32346 - 1.55838 0.62966 -4.25386 - 1.62135 0.62966 -4.18445 - 1.62130 0.63035 -4.18445 - 1.70955 0.63035 -4.08763 - 1.79780 0.63035 -3.99123 - 1.88605 0.63035 -3.89527 - 1.97430 0.63035 -3.79978 - 2.06255 0.63035 -3.70478 - 2.06248 0.63189 -3.70478 - 2.14463 0.63189 -3.61702 - 2.22677 0.63189 -3.52971 - 2.30892 0.63189 -3.44288 - 2.39106 0.63189 -3.35654 - 2.47321 0.63189 -3.27071 - 2.47336 0.63160 -3.27071 - 2.55547 0.63160 -3.18541 - 2.63757 0.63160 -3.10065 - 2.71968 0.63160 -3.01645 - 2.80179 0.63160 -2.93283 - 2.88390 0.63160 -2.84981 - 2.88390 0.63158 -2.84981 - 2.97832 0.63158 -2.75509 - 3.07274 0.63158 -2.66121 - 3.16716 0.63158 -2.56820 - 3.26158 0.63158 -2.47608 - 3.35600 0.63158 -2.38488 - 3.35600 0.63158 -2.38488 - 3.45043 0.63158 -2.29462 - 3.54485 0.63158 -2.20534 - 3.63927 0.63158 -2.11705 - 3.73369 0.63158 -2.02979 - 3.82811 0.63158 -1.94358 - 3.82697 0.63742 -1.94358 - 3.92226 0.63742 -1.85844 - 4.01756 0.63742 -1.77441 - 4.11285 0.63742 -1.69151 - 4.20814 0.63742 -1.60977 - 4.30344 0.63742 -1.52922 - 4.30509 0.64755 -1.52922 - 4.40190 0.64755 -1.44987 - 4.49871 0.64755 -1.37177 - 4.59552 0.64755 -1.29493 - 4.69233 0.64755 -1.21939 - 4.78914 0.64755 -1.14517 - 4.78984 0.65961 -1.14517 - 4.79121 0.73839 -1.14418 - 4.79285 0.89439 -1.14320 - 4.79479 1.05039 -1.14222 - 4.79705 1.20639 -1.14123 - 4.79962 1.36239 -1.14025 - 4.79962 1.36237 -1.14025 - 4.90770 4.32639 -1.12162 - 5.12842 7.29041 -1.10308 - 5.46177 10.25445 -1.08463 - 5.90776 13.21851 -1.06629 - 6.46638 16.18257 -1.04805 - 6.46638 -7.38586 -1.04805 - 6.33426 -5.82582 -1.03850 - 6.23335 -4.26577 -1.02898 - 6.16363 -2.70572 -1.01949 - 6.12512 -1.14567 -1.01003 - 6.11781 0.41439 -1.00060 - 6.11761 0.41999 -1.00060 - 6.36392 3.89517 -0.95856 - 6.71449 3.89544 -0.91717 - 7.06509 3.89571 -0.87646 - 7.41572 3.89598 -0.83648 - 7.76637 3.89625 -0.79725 - 7.76637 3.89606 -0.79725 - 7.80533 3.89597 -0.79294 - 7.84429 3.89600 -0.78864 - 7.88325 3.89603 -0.78435 - 7.92221 3.89606 -0.78007 - 7.96117 3.89621 -0.77580 - 7.96119 3.89560 -0.77580 - 8.11796 3.93629 -0.75881 - 8.27556 3.93706 -0.74199 - 8.43242 3.89986 -0.72534 - 8.58708 3.82739 -0.70886 - 8.73819 3.72312 -0.69255 - 8.73817 3.72250 -0.69255 - 8.80554 3.01271 -0.68446 - 8.85860 2.29081 -0.67642 - 8.89711 1.55881 -0.66842 - 8.92088 0.81685 -0.66046 - 8.92972 0.06578 -0.65255 - 8.93041 0.04693 -0.65255 - 8.90883 -0.47944 -0.61713 - 8.84851 -0.82896 -0.58264 - 8.76103 -1.07730 -0.54907 - 8.65538 -1.22869 -0.51641 - 8.54010 -1.29109 -0.48466 - 8.53995 -1.28804 -0.48466 - 8.42370 -1.25362 -0.45380 - 8.31426 -1.13779 -0.42381 - 8.21910 -0.94018 -0.39469 - 8.14552 -0.66418 -0.36644 - 8.09971 -0.33908 -0.33903 - 8.09975 -0.33945 -0.33903 - 8.07130 -0.19219 -0.30988 - 8.06596 0.09440 -0.28175 - 8.09163 0.42442 -0.25464 - 8.15102 0.75980 -0.22855 - 8.24256 1.06431 -0.20349 - 8.24443 1.05928 -0.20349 - 8.40497 1.33201 -0.17016 - 8.60868 1.41818 -0.13891 - 8.77113 0.84150 -0.10977 - 8.82701 -0.10579 -0.08278 - 8.72782 -1.34628 -0.05796 - 8.72526 -1.36030 -0.05796 - 8.41088 -2.96600 -0.03533 - 7.92306 -3.96563 -0.01478 - 7.31091 -4.74241 0.00385 - 6.60552 -5.29779 0.02069 - 5.83751 -5.63911 0.03590 - 5.83741 -5.63759 0.03590 - 5.03779 -5.75149 0.04966 - 4.23674 -5.65657 0.06217 - 3.46382 -5.35009 0.07364 - 2.74847 -4.83453 0.08423 - 2.11899 -4.12966 0.09415 - 2.12019 -4.10925 0.09415 - 1.59804 -3.36547 0.10356 - 1.17351 -2.71478 0.11257 - 0.83355 -2.15743 0.12128 - 0.56507 -1.69350 0.12977 - 0.35501 -1.32290 0.13812 - 0.35501 -1.32295 0.13812 - 0.22099 -0.71674 0.14639 - 0.13465 -0.53215 0.15461 - 0.06883 -0.41520 0.16280 - 0.01995 -0.26493 0.17096 - 0.00000 0.00001 0.17911 + 0.00000 0.00000 -8.12376 + 0.00000 0.00000 -8.05884 + 0.00000 0.00000 -7.99393 + 0.00000 0.00000 -7.92901 + 0.00000 0.00000 -7.86410 + 0.00000 0.00000 -7.79919 + 0.00000 0.00000 -7.79919 + 0.00000 0.00000 -7.73427 + 0.00000 0.00000 -7.66936 + 0.00000 0.00000 -7.60444 + 0.00000 0.00000 -7.53953 + 0.00000 0.00000 -7.47462 + 0.00000 0.00000 -7.47462 + 0.00000 0.00000 -7.38806 + 0.00000 0.00000 -7.30151 + 0.00000 0.00000 -7.21496 + 0.00000 0.00000 -7.12841 + 0.00000 0.00000 -7.04186 + 0.00000 0.00000 -7.04186 + 0.00000 0.00000 -6.96973 + 0.00000 0.00000 -6.89760 + 0.00000 0.00000 -6.82548 + 0.00000 0.00000 -6.75335 + 0.00000 0.00000 -6.68123 + 0.00000 0.00000 -6.68123 + 0.00000 0.00000 -6.60910 + 0.00000 0.00000 -6.53697 + 0.00000 0.00000 -6.46485 + 0.00000 0.00000 -6.39272 + 0.00000 0.00000 -6.32059 + 0.00000 0.00000 -6.32059 + 0.00000 0.00000 -6.25856 + 0.00000 0.00000 -6.19653 + 0.00000 0.00000 -6.13451 + 0.00000 0.00000 -6.07248 + 0.00000 0.00000 -6.01045 + 0.00000 0.65642 -6.01045 + 0.07483 0.65642 -5.92823 + 0.14966 0.65642 -5.84602 + 0.22450 0.65642 -5.76383 + 0.29933 0.65642 -5.68168 + 0.37416 0.65642 -5.59958 + 0.37508 0.63840 -5.59958 + 0.42615 0.63840 -5.54200 + 0.47722 0.63840 -5.48446 + 0.52829 0.63840 -5.42696 + 0.57937 0.63840 -5.36949 + 0.63044 0.63840 -5.31208 + 0.63018 0.63649 -5.31208 + 0.64291 0.63649 -5.29773 + 0.65564 0.63649 -5.28339 + 0.66837 0.63649 -5.26905 + 0.68110 0.63649 -5.25471 + 0.69383 0.63649 -5.24038 + 0.69379 0.63694 -5.24038 + 0.75749 0.63694 -5.16877 + 0.82118 0.63694 -5.09725 + 0.88487 0.63694 -5.02584 + 0.94857 0.63694 -4.95454 + 1.01226 0.63694 -4.88336 + 1.01211 0.64211 -4.88336 + 1.07632 0.64211 -4.81231 + 1.14053 0.64211 -4.74139 + 1.20475 0.64211 -4.67062 + 1.26896 0.64211 -4.60000 + 1.33317 0.64211 -4.52953 + 1.33318 0.64254 -4.52953 + 1.39743 0.64254 -4.45924 + 1.46169 0.64254 -4.38912 + 1.52594 0.64254 -4.31919 + 1.59020 0.64254 -4.24945 + 1.65445 0.64254 -4.17990 + 1.65441 0.64323 -4.17990 + 1.74446 0.64323 -4.08290 + 1.83451 0.64323 -3.98632 + 1.92456 0.64323 -3.89020 + 2.01462 0.64323 -3.79455 + 2.10467 0.64323 -3.69940 + 2.10460 0.64477 -3.69940 + 2.18842 0.64477 -3.61152 + 2.27224 0.64477 -3.52409 + 2.35606 0.64477 -3.43715 + 2.43988 0.64477 -3.35072 + 2.52370 0.64477 -3.26480 + 2.52385 0.64449 -3.26480 + 2.60764 0.64449 -3.17942 + 2.69142 0.64449 -3.09459 + 2.77520 0.64449 -3.01034 + 2.85899 0.64449 -2.92668 + 2.94277 0.64449 -2.84363 + 2.94277 0.64447 -2.84363 + 3.03911 0.64447 -2.74889 + 3.13546 0.64447 -2.65501 + 3.23181 0.64447 -2.56202 + 3.32816 0.64447 -2.46993 + 3.42451 0.64447 -2.37878 + 3.42451 0.64447 -2.37878 + 3.52086 0.64447 -2.28860 + 3.61720 0.64447 -2.19940 + 3.71355 0.64447 -2.11123 + 3.80990 0.64447 -2.02410 + 3.90625 0.64447 -1.93804 + 3.90511 0.65030 -1.93804 + 4.00233 0.65030 -1.85308 + 4.09955 0.65030 -1.76925 + 4.19677 0.65030 -1.68657 + 4.29398 0.65030 -1.60508 + 4.39120 0.65030 -1.52479 + 4.39271 0.66271 -1.52479 + 4.49179 0.66271 -1.44575 + 4.59086 0.66271 -1.36796 + 4.68994 0.66271 -1.29147 + 4.78901 0.66271 -1.21630 + 4.88809 0.66271 -1.14248 + 4.88881 0.67485 -1.14248 + 4.89021 0.75363 -1.14150 + 4.89187 0.90963 -1.14052 + 4.89385 1.06563 -1.13954 + 4.89614 1.22163 -1.13856 + 4.89874 1.37763 -1.13759 + 4.89874 1.37761 -1.13759 + 5.00740 4.34163 -1.11906 + 5.22870 7.30565 -1.10063 + 5.56263 10.26969 -1.08229 + 6.00920 13.23374 -1.06406 + 6.56840 16.19781 -1.04594 + 6.56840 -7.52235 -1.04594 + 6.43355 -5.96231 -1.03645 + 6.32990 -4.40226 -1.02698 + 6.25746 -2.84221 -1.01756 + 6.21621 -1.28216 -1.00816 + 6.20617 0.27790 -0.99880 + 6.20620 0.27756 -0.99880 + 6.43968 3.75274 -0.95704 + 6.77744 3.75301 -0.91594 + 7.11523 3.75328 -0.87554 + 7.45303 3.75355 -0.83586 + 7.79087 3.75382 -0.79694 + 7.79084 3.75346 -0.79694 + 7.82837 3.75337 -0.79267 + 7.86591 3.75340 -0.78840 + 7.90344 3.75343 -0.78414 + 7.94098 3.75346 -0.77990 + 7.97851 3.75361 -0.77566 + 7.97853 3.75300 -0.77566 + 8.12957 3.79221 -0.75882 + 8.28137 3.79140 -0.74214 + 8.43238 3.75254 -0.72563 + 8.58111 3.67833 -0.70928 + 8.72622 3.57221 -0.69311 + 8.72620 3.57159 -0.69311 + 8.79052 2.85879 -0.68509 + 8.84048 2.13640 -0.67712 + 8.87590 1.40390 -0.66919 + 8.89657 0.66143 -0.66130 + 8.90230 -0.09016 -0.65346 + 8.90298 -0.10903 -0.65346 + 8.86719 -0.63713 -0.61836 + 8.79229 -0.99170 -0.58417 + 8.68977 -1.24508 -0.55091 + 8.56863 -1.40149 -0.51854 + 8.43740 -1.46888 -0.48707 + 8.43733 -1.46816 -0.48707 + 8.30446 -1.43866 -0.45649 + 8.17796 -1.32767 -0.42676 + 8.06531 -1.13479 -0.39790 + 7.97381 -0.86338 -0.36987 + 7.90970 -0.54181 -0.34268 + 7.90973 -0.54224 -0.34268 + 7.86650 -0.31261 -0.31374 + 7.84909 -0.02662 -0.28580 + 7.86264 0.30312 -0.25885 + 7.90988 0.63794 -0.23289 + 7.98919 0.94160 -0.20793 + 7.99104 0.93694 -0.20793 + 8.13402 1.20486 -0.17468 + 8.31979 1.28827 -0.14345 + 8.46359 0.70430 -0.11427 + 8.49959 -0.25249 -0.08715 + 8.37913 -1.50416 -0.06212 + 8.37657 -1.51825 -0.06212 + 8.07538 -2.74886 -0.03920 + 7.61712 -3.76027 -0.01827 + 7.03295 -4.54776 0.00081 + 6.35414 -5.11259 0.01818 + 5.61148 -5.46193 0.03397 + 5.61138 -5.46048 0.03397 + 4.83608 -5.58081 0.04836 + 4.05858 -5.49060 0.06156 + 3.30867 -5.18699 0.07376 + 2.61607 -4.67232 0.08512 + 2.00945 -3.96428 0.09584 + 2.01064 -3.94389 0.09584 + 1.51213 -3.19283 0.10608 + 1.11241 -2.53271 0.11595 + 0.79872 -1.96375 0.12552 + 0.55830 -1.48603 0.13488 + 0.37838 -1.09942 0.14411 + 0.37838 -1.09947 0.14411 + 0.24622 -0.80376 0.15326 + 0.14910 -0.59877 0.16234 + 0.07543 -0.46082 0.17139 + 0.02165 -0.28888 0.18041 + 0.00000 0.00001 0.18942 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -32838,38 +32974,38 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.33500 9.00000 12.00000 26.91060 26.91060 - -10.42500 31.00000 5.00000 33.93095 33.93095 - -10.51500 7.00000 27.00000 40.95138 40.95138 - -10.60500 34.00000 34.70000 47.97189 47.97189 - -10.69500 49.00000 2.00000 54.99249 54.99249 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.81000 71.51400 34.34100 63.56751 62.45232 - -10.85000 71.51400 34.34100 65.99428 62.57891 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.33500 1.00000 1.00000 26.91060 26.91060 + -10.42500 1.00000 1.00000 33.93095 33.93095 + -10.51500 1.00000 1.00000 40.95138 40.95138 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.81000 71.51400 34.34000 63.56751 62.45232 + -10.85000 71.51400 34.34000 65.99428 62.57891 -10.89000 71.51400 34.34100 68.51921 62.71063 -10.93000 71.51400 34.34100 71.14231 62.84747 -10.97000 71.51400 34.34100 73.86358 62.98944 @@ -32948,8 +33084,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -32979,7 +33115,7 @@ Lambda passive -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.95000 12.40790 68.03169 3.54904 0.50828 0.28603 5.48293 -10.99000 12.85550 69.87231 3.64506 0.50828 0.28603 5.48293 - -10.99000 12.85550 70.79262 3.69307 0.64261 0.28603 5.48293 + -10.99000 12.85550 70.79262 3.69307 0.50828 0.28603 5.48293 -11.01000 13.07930 71.71293 3.74108 0.50828 0.28603 5.48293 -11.03000 13.30310 72.94002 3.80510 0.50828 0.28603 5.48293 -11.05000 13.52690 74.16710 3.86911 0.50828 0.28603 5.48293 @@ -33009,7 +33145,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -33168,91 +33304,91 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00205 0.00000 78.00205 78.00205 1 100 A 78.00220 0.00000 78.00220 78.00220 1 100 A - 78.00240 0.00000 78.00240 78.00240 1 0 A + 78.00240 0.00000 78.00240 78.00240 1 100 A 78.00260 0.00000 78.00260 78.00260 1 100 A 78.00280 0.00000 78.00280 78.00280 1 100 A 78.00295 0.00000 78.00295 78.00295 1 100 A - 78.00322 0.00000 78.00322 78.00322 1 100 A + 78.00322 0.00000 78.00322 78.00323 1 100 A 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00570 0.00000 78.00570 78.00570 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00728 0.00000 78.00728 78.00728 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.06894 67.39050 58.82859 5.45357 1 0 A 3.16496 67.78290 60.66921 5.62420 1 0 A 3.29299 68.17530 63.12337 5.85171 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.54904 68.96010 68.03169 6.30672 1 0 A 3.64506 69.35250 69.87231 6.47735 1 0 A - 3.69307 69.35250 70.79262 8.29707 1 0 A + 3.69307 69.35250 70.79262 6.56267 1 0 A 3.74108 69.54870 71.71293 6.64798 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.86911 69.94110 74.16710 6.87549 1 0 A 3.93312 70.13730 75.39418 6.98924 1 0 A 3.98114 70.33350 76.31449 7.07456 1 0 A - 2.46420 70.33350 52.80064 10.36963 110 0 1 - 10.64693 71.22621 52.76452 10.64023 110 20 1 - 11.23182 72.11892 53.02490 11.00103 110 21 1 - 11.79655 73.01163 53.51177 11.36183 110 22 1 - 12.34213 73.90434 54.13832 11.72262 110 23 1 - 12.77938 74.79705 54.66869 11.99322 110 23 1 - 12.95978 74.79705 55.04663 12.17362 110 24 1 - 13.37991 75.68976 55.64206 12.44422 110 24 1 - 13.87403 76.58247 56.47400 12.80502 110 25 1 - 14.35281 77.47518 57.34182 13.16581 110 25 1 - 14.81709 78.36789 58.23745 13.52661 110 25 1 - 15.17756 79.26060 58.92328 13.79721 110 26 1 - 14.51176 79.26060 38.46255 14.05198 110 38 1 - 13.41799 83.24160 34.78760 12.42214 110 39 1 - 11.74969 87.22260 29.92326 10.24902 110 39 1 - 9.87748 91.20360 25.09365 8.07589 110 39 1 - 7.94713 95.18460 20.29148 5.90277 110 39 1 - 6.42993 99.16560 16.70379 4.27292 110 38 1 - 20.63266 99.16560 27.51935 2.70743 220 75 2 - 25.80112 100.53900 33.02991 3.26655 220 78 2 - 20.35409 101.91240 40.29427 4.01204 220 51 2 - 17.10110 103.28580 47.47851 4.75752 110 36 1 - 13.49594 104.65920 54.60600 5.50301 110 25 1 - 10.89910 106.03260 59.92769 6.06213 110 18 1 - 8.49450 106.03260 63.46711 3.65754 110 13 1 - 11.66401 107.40600 68.76890 6.99399 110 17 1 - 12.20836 108.77940 75.83214 7.73948 110 16 1 - 12.72293 110.15280 82.89494 8.48497 110 15 1 - 13.21213 111.52620 89.96218 9.23046 110 15 1 - 13.49401 112.89960 95.26699 9.78958 110 14 1 - 13.86675 112.89960 98.80627 10.16232 110 14 1 - 14.13203 114.27300 104.11963 10.72144 110 14 1 - 14.57044 115.64640 111.21161 11.46693 110 13 1 - 14.99846 117.01980 118.31241 12.21242 110 13 1 - 15.41899 118.39320 125.42156 12.95791 110 12 1 - 15.64851 119.76660 130.75828 13.51703 110 12 1 - 16.02125 119.76660 134.31851 13.88977 110 12 1 - 16.24857 121.14000 139.66222 14.44889 110 12 1 - 16.66100 122.51340 146.79231 15.19438 110 11 1 - 17.07281 123.88680 153.92796 15.93987 110 11 1 - 17.48465 125.26020 161.06855 16.68536 110 11 1 - 17.71080 126.63360 166.42676 17.24447 110 11 1 - 18.08354 126.63360 170.00024 17.61722 110 11 1 - 18.31059 128.00700 175.36228 18.17633 110 10 1 - 18.72457 129.38040 182.51443 18.92182 110 0 1 - 19.49788 130.75380 189.66955 19.66731 110 0 1 - 21.35358 132.12720 196.82728 20.41280 110 11 1 - 23.10228 133.50060 202.19703 20.97192 110 11 1 + 2.45368 70.33350 52.80064 10.36963 110 0 1 + 10.64550 71.22621 52.76452 10.64023 110 20 1 + 11.22945 72.11892 53.02490 11.00103 110 21 1 + 11.79325 73.01163 53.51177 11.36183 110 22 1 + 12.33792 73.90434 54.13832 11.72262 110 23 1 + 12.77430 74.79705 54.66869 11.99322 110 23 1 + 12.95469 74.79705 55.04663 12.17362 110 24 1 + 13.37398 75.68976 55.64206 12.44422 110 24 1 + 13.86730 76.58247 56.47400 12.80502 110 25 1 + 14.34531 77.47518 57.34182 13.16581 110 25 1 + 14.80888 78.36789 58.23745 13.52661 110 25 1 + 15.16869 79.26060 58.92328 13.79721 110 26 1 + 14.50427 79.26060 38.46255 14.05198 110 38 1 + 13.41322 83.24160 34.78760 12.42214 110 39 1 + 11.75226 87.22260 29.92326 10.24902 110 39 1 + 9.87980 91.20360 25.09365 8.07589 110 39 1 + 7.94924 95.18460 20.29148 5.90277 110 39 1 + 6.43188 99.16560 16.70379 4.27292 110 39 1 + 20.60047 99.16560 27.51935 2.70743 220 75 2 + 25.82927 100.53900 33.02991 3.26655 220 78 2 + 20.35176 101.91240 40.29427 4.01204 220 51 2 + 17.09686 103.28580 47.47851 4.75752 110 36 1 + 13.49284 104.65920 54.60600 5.50301 110 25 1 + 10.86767 106.03260 59.92769 6.06213 110 18 1 + 11.24041 106.03260 63.46711 6.43488 110 18 1 + 11.63529 107.40600 68.76890 6.99399 110 17 1 + 12.18310 108.77940 75.83214 7.73948 110 16 1 + 12.70182 110.15280 82.89494 8.48497 110 15 1 + 13.19581 111.52620 89.96218 9.23046 110 15 1 + 13.48305 112.89960 95.26699 9.78958 110 14 1 + 13.85579 112.89960 98.80627 10.16232 110 14 1 + 14.12694 114.27300 104.11963 10.72144 110 14 1 + 14.57165 115.64640 111.21161 11.46693 110 13 1 + 15.00638 117.01980 118.31241 12.21242 110 13 1 + 15.43394 118.39320 125.42156 12.95791 110 12 1 + 15.67078 119.76660 130.75828 13.51703 110 12 1 + 16.04352 119.76660 134.31851 13.88977 110 12 1 + 16.27838 121.14000 139.66222 14.44889 110 12 1 + 16.69852 122.51340 146.79231 15.19438 110 11 1 + 17.11816 123.88680 153.92796 15.93987 110 11 1 + 17.53788 125.26020 161.06855 16.68536 110 11 1 + 17.77192 126.63360 166.42676 17.24447 110 11 1 + 18.14467 126.63360 170.00024 17.61722 110 11 1 + 18.37955 128.00700 175.36228 18.17633 110 10 1 + 18.80132 129.38040 182.51443 18.92182 110 0 1 + 19.55993 130.75380 189.66955 19.66731 110 0 1 + 21.42427 132.12720 196.82728 20.41280 110 11 1 + 23.18161 133.50060 202.19703 20.97192 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -33267,9 +33403,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 11.296 'Hydrobiaklei' + -11.09 11.291 'Hydrobiaklei' -12.00 5.346 'Basisveen' - -12.50 57.401 'Eerste zandlaag' + -12.50 57.660 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -33288,7 +33424,7 @@ Layer name -10.79 0.38 'Grind' -11.09 2.10 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 19.45 'Eerste zandlaag' + -12.50 19.53 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -33412,20 +33548,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.33500 5.00000 1.00000 3.51001 3.51001 - -10.42500 39.00000 27.00000 10.53009 10.53009 - -10.51500 7.99100 8.00000 17.55025 17.55025 - -10.60500 14.00000 13.10000 24.57050 24.57050 - -10.69500 0.92000 1.00000 31.59082 31.59082 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.74500 4.00000 8.00000 35.49104 35.49104 - -10.75500 2.03000 1.00000 36.27108 36.27108 - -10.76500 3.70000 1.00000 37.05113 37.05113 - -10.77500 25.00000 15.00000 37.83118 37.83118 - -10.78500 3.00000 1.00000 38.61123 38.61123 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.33500 1.00000 1.00000 3.51001 3.51001 + -10.42500 1.00000 1.00000 10.53009 10.53009 + -10.51500 1.00000 1.00000 17.55025 17.55025 + -10.60500 1.00000 1.00000 24.57050 24.57050 + -10.69500 1.00000 1.00000 31.59082 31.59082 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.74500 1.00000 1.00000 35.49104 35.49104 + -10.75500 1.00000 1.00000 36.27108 36.27108 + -10.76500 1.00000 1.00000 37.05113 37.05113 + -10.77500 1.00000 1.00000 37.83118 37.83118 + -10.78500 1.00000 1.00000 38.61123 38.61123 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -33504,13 +33640,13 @@ Lambda passive -10.47000 78.00180 78.00180 78.00180 1.00000 1.00000 1.00000 -10.56000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.65000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 - -10.74000 78.00450 78.00428 78.00428 1.00000 1.00000 1.00000 + -10.74000 78.00450 78.00428 78.00427 1.00000 1.00000 1.00000 -10.74000 78.00450 78.00452 78.00452 1.00000 1.00000 1.00000 -10.75000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 -10.76000 78.00470 78.00470 78.00470 1.00000 1.00000 1.00000 -10.77000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.78000 78.00490 78.00490 78.00490 1.00000 1.00000 1.00000 - -10.79000 78.00500 78.00498 78.00498 1.00000 1.00000 1.00000 + -10.79000 78.00500 78.00497 78.00498 1.00000 1.00000 1.00000 -10.79000 11.10500 61.92974 3.23072 0.50828 0.28603 5.48293 -10.83000 11.86500 65.05501 3.39376 0.50828 0.28603 5.48293 -10.87000 12.62500 69.22204 3.61114 0.50828 0.28603 5.48293 @@ -33523,7 +33659,7 @@ Lambda passive -11.05000 15.57640 85.40437 4.45533 0.50828 0.28603 5.48293 -11.07000 15.80020 86.63145 4.51935 0.50828 0.28603 5.48293 -11.09000 16.02400 87.55176 4.56736 0.50828 0.28603 5.48293 - -11.09000 16.02400 57.49074 1.48792 0.73783 0.09215 3.56054 + -11.09000 16.02400 57.49074 1.48792 0.73559 0.09215 3.56054 -11.18100 16.51449 57.44729 1.70072 0.73559 0.10298 3.47860 -11.27200 17.00498 57.69015 1.96589 0.73559 0.11561 3.39254 -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 @@ -33535,7 +33671,7 @@ Lambda passive -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 -11.90900 20.43841 62.80158 3.73782 0.73559 0.18288 3.07272 -12.00000 20.92890 63.48060 3.92642 0.73559 0.18871 3.05103 - -12.00000 20.92890 42.04983 8.77210 0.85559 0.43370 2.07898 + -12.00000 20.92890 42.04983 8.77210 0.77308 0.43370 2.07898 -12.10000 18.11790 38.35909 7.44425 0.77308 0.41088 2.11719 -12.20000 15.30690 33.47530 5.67363 0.77308 0.37066 2.18694 -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 @@ -33565,7 +33701,7 @@ Lambda passive -15.02000 32.55270 164.23188 9.70251 0.52256 0.29806 5.04511 -15.16000 33.97930 171.37447 10.12912 0.52256 0.29810 5.04350 -15.30000 35.40590 176.73401 10.44904 0.52256 0.29812 5.04245 - -15.30000 35.40590 180.30829 10.66231 0.39125 0.29814 5.04182 + -15.30000 35.40590 180.30829 10.66231 0.52256 0.29814 5.04182 -15.44000 36.83250 185.67141 10.98220 0.52256 0.29817 5.04097 -15.58000 38.25910 192.82483 11.40868 0.52256 0.29820 5.03997 -15.72000 39.68570 199.98102 11.83511 0.52256 0.29822 5.03912 @@ -33725,72 +33861,72 @@ Status character 78.00270 0.00000 78.00270 78.00270 402 100 P 78.00360 0.00000 78.00360 78.00360 402 100 P 78.00428 0.00000 78.00428 78.00428 402 100 P - 78.00452 0.00000 78.00452 78.00452 402 100 P + 78.00452 0.00000 78.00452 78.00453 402 0 P 78.00460 0.00000 78.00460 78.00460 402 100 P 78.00470 0.00000 78.00470 78.00470 402 100 P 78.00480 0.00000 78.00480 78.00480 402 100 P 78.00490 0.00000 78.00490 78.00490 402 100 P - 78.00498 0.00000 78.00498 78.00498 402 100 P - 68.93610 0.00000 428.73800 39.74517 110 16 1 - 70.43691 0.00000 431.86327 40.03489 110 16 1 - 71.94076 0.00000 436.03030 40.42118 110 16 1 - 73.37622 0.00000 440.19733 40.80748 110 17 1 - 74.74493 0.00000 444.36436 41.19377 110 17 1 - 75.97547 0.00000 447.48963 41.48350 110 17 1 - 41.28374 66.90000 82.02990 7.60439 220 50 2 - 42.03400 67.09620 82.95021 7.68971 220 51 2 - 42.60717 67.29240 84.17729 7.80346 220 51 2 - 43.17260 67.48860 85.40437 7.91722 220 51 2 - 43.73038 67.68480 86.63145 8.03097 220 50 2 - 44.19557 67.88100 87.55176 8.11628 220 50 2 - 12.07638 67.88100 57.49074 11.91343 110 21 1 - 17.50822 68.77371 57.44729 12.14781 110 30 1 - 16.95739 69.66642 57.69015 12.50861 110 29 1 - 16.43398 70.55913 58.15792 12.86941 110 28 1 - 15.93699 71.45184 58.76656 13.23021 110 27 1 - 15.46099 72.34455 59.28463 13.50080 110 26 1 - 15.46989 72.34455 59.65500 13.68120 110 26 1 - 15.01835 73.23726 60.23996 13.95180 110 25 1 - 14.59481 74.12997 61.05929 14.31260 110 24 1 - 14.19396 75.02268 61.91592 14.67339 110 0 1 - 13.81492 75.91539 62.80158 15.03419 110 0 1 - 13.93973 76.80810 63.48060 15.30479 110 0 1 - 16.61514 76.80810 42.04983 17.30531 110 0 1 - 13.27438 80.78910 38.35909 14.00657 110 0 1 - 11.06650 84.77010 33.47530 11.83344 110 0 1 - 8.86544 88.75110 28.62801 9.66032 110 0 1 - 7.15645 92.73210 23.80984 7.48719 110 0 1 - 6.03556 96.71310 20.21114 5.85735 110 30 1 - 23.23291 96.71310 38.27144 3.77842 220 61 2 - 24.20963 98.08650 43.67886 4.33754 220 55 2 - 25.61963 99.45990 50.82580 5.08303 220 50 2 - 24.97891 100.83330 57.92016 5.82852 110 43 1 - 24.05584 102.20670 64.98360 6.57401 110 37 1 - 22.96541 103.58010 70.27090 7.13313 110 33 1 - 25.94762 103.58010 73.79336 7.50587 110 35 1 - 22.05457 104.95350 79.07672 8.06499 110 28 1 - 21.00315 106.32690 86.12440 8.81048 110 24 1 - 19.93003 107.70030 93.17934 9.55597 110 21 1 - 18.84399 109.07370 100.24368 10.30146 110 19 1 - 17.64321 110.44710 105.54834 10.86057 110 17 1 - 17.86439 110.44710 109.08825 11.23332 110 16 1 - 16.66656 111.82050 114.40324 11.79243 110 15 1 - 15.58486 113.19390 121.49808 12.53792 110 13 1 - 14.51080 114.56730 128.60212 13.28341 110 11 1 - 13.44644 115.94070 135.71455 14.02890 110 0 1 - 12.45654 117.31410 141.05365 14.58802 110 0 1 - 12.82928 117.31410 144.61540 14.96076 110 0 1 - 13.72019 118.68750 149.96124 15.51988 110 0 1 - 14.79875 120.06090 157.09393 16.26537 110 0 1 - 15.87792 121.43430 164.23188 17.01086 110 0 1 - 16.95705 122.80770 171.37447 17.75635 110 0 1 - 17.84914 124.18110 176.73401 18.31547 110 0 1 - 13.52592 124.18110 180.30829 13.99225 110 0 1 - 19.11308 125.55450 185.67141 19.24733 110 0 1 - 20.19007 126.92790 192.82483 19.99282 110 10 1 - 21.26667 128.30130 199.98102 20.73831 110 11 1 - 22.34304 129.67470 207.13966 21.48380 110 11 1 - 23.23298 131.04810 212.51000 22.04291 110 11 1 + 78.00497 0.00000 78.00497 78.00498 402 0 P + 68.97206 0.00000 428.73800 39.74517 110 16 1 + 70.47510 0.00000 431.86327 40.03489 110 16 1 + 71.98117 0.00000 436.03030 40.42118 110 17 1 + 73.41886 0.00000 440.19733 40.80748 110 17 1 + 74.78980 0.00000 444.36436 41.19377 110 17 1 + 76.02255 0.00000 447.48963 41.48350 110 17 1 + 41.56156 66.90000 82.02990 7.60439 220 51 2 + 42.05810 67.09620 82.95021 7.68971 220 51 2 + 42.63182 67.29240 84.17729 7.80346 220 51 2 + 43.19780 67.48860 85.40437 7.91722 220 51 2 + 43.75613 67.68480 86.63145 8.03097 220 51 2 + 44.22187 67.88100 87.55176 8.11628 220 51 2 + 12.04840 67.88100 57.49074 11.87722 110 21 1 + 17.56222 68.77371 57.44729 12.14781 110 31 1 + 17.01050 69.66642 57.69015 12.50861 110 29 1 + 16.48602 70.55913 58.15792 12.86941 110 28 1 + 15.98779 71.45184 58.76656 13.23021 110 27 1 + 15.51036 72.34455 59.28463 13.50080 110 26 1 + 15.51926 72.34455 59.65500 13.68120 110 26 1 + 15.06608 73.23726 60.23996 13.95180 110 25 1 + 14.64069 74.12997 61.05929 14.31260 110 24 1 + 14.23779 75.02268 61.91592 14.67339 110 0 1 + 13.85651 75.91539 62.80158 15.03419 110 0 1 + 13.95851 76.80810 63.48060 15.30479 110 0 1 + 14.95067 76.80810 42.04983 15.63641 110 0 1 + 13.27914 80.78910 38.35909 14.00657 110 0 1 + 11.07155 84.77010 33.47530 11.83344 110 0 1 + 8.87074 88.75110 28.62801 9.66032 110 0 1 + 7.16683 92.73210 23.80984 7.48719 110 0 1 + 6.04608 96.71310 20.21114 5.85735 110 30 1 + 23.26510 96.71310 38.27144 3.77842 220 61 2 + 24.24220 98.08650 43.67886 4.33754 220 56 2 + 25.65228 99.45990 50.82580 5.08303 220 50 2 + 25.04370 100.83330 57.92016 5.82852 110 43 1 + 24.11943 102.20670 64.98360 6.57401 110 37 1 + 23.02705 103.58010 70.27090 7.13313 110 33 1 + 23.24730 103.58010 73.79336 7.50587 110 32 1 + 22.11348 104.95350 79.07672 8.06499 110 28 1 + 21.05857 106.32690 86.12440 8.81048 110 24 1 + 19.98126 107.70030 93.17934 9.55597 110 21 1 + 18.89037 109.07370 100.24368 10.30146 110 19 1 + 17.68415 110.44710 105.54834 10.86057 110 17 1 + 17.90533 110.44710 109.08825 11.23332 110 16 1 + 16.70151 111.82050 114.40324 11.79243 110 15 1 + 15.61333 113.19390 121.49808 12.53792 110 13 1 + 14.53232 114.56730 128.60212 13.28341 110 11 1 + 13.46061 115.94070 135.71455 14.02890 110 0 1 + 12.43427 117.31410 141.05365 14.58802 110 0 1 + 12.80701 117.31410 144.61540 14.96076 110 0 1 + 13.69039 118.68750 149.96124 15.51988 110 0 1 + 14.76123 120.06090 157.09393 16.26537 110 0 1 + 15.83257 121.43430 164.23188 17.01086 110 0 1 + 16.90382 122.80770 171.37447 17.75635 110 0 1 + 17.78802 124.18110 176.73401 18.31547 110 0 1 + 18.16076 124.18110 180.30829 18.68821 110 0 1 + 19.04411 125.55450 185.67141 19.24733 110 0 1 + 20.11332 126.92790 192.82483 19.99282 110 10 1 + 21.18217 128.30130 199.98102 20.73831 110 11 1 + 22.25082 129.67470 207.13966 21.48380 110 11 1 + 23.13304 131.04810 212.51000 22.04291 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -33804,10 +33940,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 35.526 'OWB' - -10.79 18.804 'Grind' - -11.09 13.917 'Hydrobiaklei' - -12.00 5.169 'Basisveen' - -12.50 67.052 'Eerste zandlaag' + -10.79 18.817 'Grind' + -11.09 13.956 'Hydrobiaklei' + -12.00 5.089 'Basisveen' + -12.50 67.188 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -33824,9 +33960,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -6.71 'Grind' - -11.09 -2.58 'Hydrobiaklei' + -11.09 -2.59 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -22.72 'Eerste zandlaag' + -12.50 -22.76 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -34066,8 +34202,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 415.15544 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.44900 10000000.000 1 1 1 'Dek' + -10.19000 415.23034 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.44288 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -34128,10 +34264,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 26.78 : Percentage mobilized resistance left - 20.18 : Percentage mobilized resistance right - 171.36 : Effective left - 110.69 : Effective right + 26.79 : Percentage mobilized resistance left + 20.20 : Percentage mobilized resistance right + 171.44 : Effective left + 110.84 : Effective right 514.53 : Water pressure left 540.51 : Water pressure right 639.88 : Max effective resistance left @@ -34140,8 +34276,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 41.23 : Vertical force left - 14.32 : Vertical force right + 41.29 : Vertical force left + 14.37 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -34150,10 +34286,10 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --14.32 : Active force -41.23 : Passive force --14.32 : Plugged active force -41.23 : Plugged passive force +-14.37 : Active force +41.29 : Passive force +-14.37 : Plugged active force +41.29 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance @@ -34173,210 +34309,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.67594 - 0.12569 0.00000 -58.41895 - 0.25139 0.00000 -57.16196 - 0.37708 0.00000 -55.90500 - 0.50278 0.00000 -54.64808 - 0.62847 0.00000 -53.39120 - 0.62847 0.00000 -53.39120 - 0.75414 0.00000 -52.13440 - 0.87980 0.00000 -50.87767 - 1.00546 0.00000 -49.62103 - 1.13112 0.00000 -48.36449 - 1.25679 0.00000 -47.10807 - 1.25679 0.00000 -47.10807 - 1.42423 0.00000 -45.43304 - 1.59168 0.00000 -43.75827 - 1.75912 0.00000 -42.08379 - 1.92657 0.00000 -40.40963 - 2.09401 0.00000 -38.73582 - 2.09401 0.00000 -38.73582 - 2.23341 0.00000 -37.34126 - 2.37280 0.00000 -35.94699 - 2.51220 0.00000 -34.55302 - 2.65160 0.00000 -33.15936 - 2.79099 0.00000 -31.76604 - 2.79099 0.00000 -31.76604 - 2.93021 0.00000 -30.37306 - 3.06943 0.00000 -28.98046 - 3.20865 0.00000 -27.58824 - 3.34787 0.00000 -26.19643 - 3.48709 0.00000 -24.80504 - 3.48709 0.00000 -24.80504 - 3.60665 0.00000 -23.60880 - 3.72620 0.00000 -22.41289 - 3.84576 0.00000 -21.21733 - 3.96531 0.00000 -20.02212 - 4.08487 0.00000 -18.82729 - 4.08487 439.90000 -18.82729 - 54.38823 439.90000 -17.24540 - 104.69159 439.90000 -15.67241 - 154.99495 439.90000 -14.11656 - 205.29831 439.90000 -12.58609 - 255.60167 439.90000 -11.08924 - 255.60259 439.88200 -11.08924 - 290.89048 439.88200 -10.06331 - 326.17838 439.88200 -9.06083 - 361.46627 439.88200 -8.08466 - 396.75416 439.88200 -7.13762 - 432.04205 439.88200 -6.22258 - 432.04180 -83.56891 -6.22258 - 430.39233 -83.56891 -5.99914 - 428.74286 -83.56891 -5.77787 - 427.09340 -83.56891 -5.55876 - 425.44393 -83.56891 -5.34181 - 423.79446 -83.56891 -5.12699 - 423.79443 -83.56846 -5.12699 - 415.53154 -83.56846 -4.08480 - 407.26865 -83.56846 -3.09495 - 399.00576 -83.56846 -2.15640 - 390.74288 -83.56846 -1.26813 - 382.47999 -83.56846 -0.42908 - 382.47984 -83.56329 -0.42908 - 374.19338 -83.56329 0.36179 - 365.90692 -83.56329 1.10551 - 357.62045 -83.56329 1.80314 - 349.33399 -83.56329 2.45571 - 341.04753 -83.56329 3.06428 - 341.04754 -83.56286 3.06428 - 332.73964 -83.56286 3.62988 - 324.43174 -83.56286 4.15356 - 316.12384 -83.56286 4.63637 - 307.81594 -83.56286 5.07936 - 299.50804 -83.56286 5.48357 - 299.50800 -83.56217 5.48357 - 287.84593 -83.56217 5.98630 - 276.18386 -83.56217 6.41796 - 264.52179 -83.56217 6.78142 - 252.85972 -83.56217 7.07957 - 241.19765 -83.56217 7.31528 - 241.19758 -83.56064 7.31528 - 230.34190 -83.56064 7.48076 - 219.48622 -83.56064 7.59720 - 208.63054 -83.56064 7.66691 - 197.77486 -83.56064 7.69220 - 186.91918 -83.56064 7.67538 - 186.91933 -83.56092 7.67538 - 176.04371 -83.56092 7.61876 - 165.16810 -83.56092 7.52467 - 154.29248 -83.56092 7.39541 - 143.41687 -83.56092 7.23329 - 132.54125 -83.56092 7.04065 - 132.54125 -83.56094 7.04065 - 120.01721 -83.56094 6.78436 - 107.49317 -83.56094 6.49428 - 94.96912 -83.56094 6.17393 - 82.44508 -83.56094 5.82684 - 69.92104 -83.56094 5.45654 - 69.92104 -83.56094 5.45654 - 57.38715 -83.56094 5.06655 - 44.85327 -83.56094 4.66040 - 32.31938 -83.56094 4.24162 - 19.78550 -83.56094 3.81374 - 7.25161 -83.56094 3.38028 - 7.25047 -83.55510 3.38028 - -5.28357 -83.55510 2.94479 - -17.81760 -83.55510 2.51079 - -30.35164 -83.55510 2.08180 - -42.88567 -83.55510 1.66136 - -55.41970 -83.55510 1.25299 - -55.41805 -83.54497 1.25299 - -67.94277 -83.54497 0.86023 - -80.46749 -83.54497 0.48660 - -92.99220 -83.54497 0.13562 - -105.51692 -83.54497 -0.18917 - -118.04164 -83.54497 -0.48424 - -118.04094 -83.53291 -0.48424 - -118.20832 -83.45413 -0.48797 - -118.37545 -83.29813 -0.49170 - -118.54226 -83.14213 -0.49542 - -118.70876 -82.98613 -0.49913 - -118.87495 -82.83013 -0.50283 - -118.87495 -82.83015 -0.50283 - -121.97265 -79.86614 -0.57210 - -124.95772 -76.90211 -0.63915 - -127.83015 -73.93807 -0.70393 - -130.58996 -70.97402 -0.76639 - -133.23712 -68.00995 -0.82647 - -133.23712 50.23458 -0.82647 - -132.21976 51.79463 -0.85712 - -131.17120 53.35467 -0.88711 - -130.09144 54.91472 -0.91643 - -128.98048 56.47478 -0.94510 - -127.83832 58.03483 -0.97312 - -127.83852 58.04043 -0.97312 - -122.41580 61.51561 -1.09132 - -116.88882 61.51588 -1.19703 - -111.36181 61.51615 -1.29081 - -105.83478 61.51642 -1.37323 - -100.30773 61.51669 -1.44484 - -100.30773 61.51650 -1.44484 - -99.69321 61.51641 -1.45216 - -99.07870 61.51644 -1.45935 - -98.46418 61.51647 -1.46642 - -97.84966 61.51650 -1.47336 - -97.23515 61.51665 -1.48017 - -97.23511 61.51561 -1.48017 - -94.79133 60.76012 -1.50623 - -92.37935 59.92548 -1.53037 - -90.00229 59.01572 -1.55265 - -87.66303 58.03557 -1.57312 - -85.36430 56.99048 -1.59182 - -85.36433 56.98938 -1.59182 - -84.23527 55.97771 -1.60052 - -83.12680 54.93479 -1.60880 - -82.03933 53.87841 -1.61665 - -80.97312 52.80905 -1.62410 - -79.92842 51.72716 -1.63114 - -79.92776 51.71037 -1.63114 - -75.28368 50.36496 -1.65815 - -70.76373 49.00672 -1.67732 - -66.36458 47.71058 -1.68909 - -62.08043 46.47960 -1.69393 - -57.90535 45.31268 -1.69229 - -57.90552 45.31325 -1.69229 - -53.83069 44.22464 -1.68462 - -49.85187 43.20494 -1.67134 - -45.96244 42.26010 -1.65285 - -42.15552 41.39195 -1.62956 - -38.42485 40.57601 -1.60187 - -38.42485 40.57412 -1.60187 - -34.39084 40.08299 -1.56684 - -30.39898 39.70174 -1.52748 - -26.44426 39.33919 -1.48429 - -22.52578 38.96920 -1.43776 - -18.64591 38.56626 -1.38839 - -18.64490 38.56445 -1.38839 - -13.47925 34.97858 -1.31553 - -8.86907 30.82008 -1.23936 - -4.83959 26.69345 -1.16087 - -1.38630 22.56791 -1.08105 - 1.48655 18.41164 -1.00090 - 1.48609 18.40168 -1.00090 - 3.76689 14.22921 -0.92128 - 5.49817 10.51267 -0.84259 - 6.73300 7.13777 -0.76516 - 7.51944 4.10747 -0.68928 - 7.90584 1.42288 -0.61527 - 7.90663 1.40918 -0.61527 - 7.94023 -0.88677 -0.54332 - 7.68366 -2.72976 -0.47332 - 7.20198 -4.10357 -0.40518 - 6.56044 -5.01448 -0.33877 - 5.82259 -5.48637 -0.27400 - 5.82371 -5.46486 -0.27400 - 5.04487 -5.65232 -0.21069 - 4.25024 -5.69127 -0.14862 - 3.46032 -5.58544 -0.08760 - 2.69518 -5.33789 -0.02744 - 1.97447 -4.95104 0.03205 - 1.97452 -4.95035 0.03205 - 1.34762 -4.09724 0.09107 - 0.81903 -3.43652 0.14976 - 0.39458 -2.59430 0.20823 - 0.10655 -1.46914 0.26657 - -0.00001 -0.00005 0.32488 + 0.00000 0.00000 -59.67811 + 0.12570 0.00000 -58.42104 + 0.25140 0.00000 -57.16398 + 0.37711 0.00000 -55.90694 + 0.50281 0.00000 -54.64995 + 0.62851 0.00000 -53.39301 + 0.62851 0.00000 -53.39301 + 0.75418 0.00000 -52.13613 + 0.87985 0.00000 -50.87932 + 1.00552 0.00000 -49.62261 + 1.13119 0.00000 -48.36600 + 1.25686 0.00000 -47.10951 + 1.25686 0.00000 -47.10951 + 1.42431 0.00000 -45.43438 + 1.59177 0.00000 -43.75952 + 1.75922 0.00000 -42.08494 + 1.92668 0.00000 -40.41068 + 2.09413 0.00000 -38.73677 + 2.09413 0.00000 -38.73677 + 2.23354 0.00000 -37.34214 + 2.37294 0.00000 -35.94779 + 2.51234 0.00000 -34.55373 + 2.65175 0.00000 -33.15999 + 2.79115 0.00000 -31.76659 + 2.79115 0.00000 -31.76659 + 2.93038 0.00000 -30.37354 + 3.06961 0.00000 -28.98085 + 3.20884 0.00000 -27.58856 + 3.34806 0.00000 -26.19667 + 3.48729 0.00000 -24.80520 + 3.48729 0.00000 -24.80520 + 3.60685 0.00000 -23.60888 + 3.72642 0.00000 -22.41290 + 3.84598 0.00000 -21.21727 + 3.96554 0.00000 -20.02200 + 4.08510 0.00000 -18.82710 + 4.08510 439.90000 -18.82710 + 54.38847 439.90000 -17.24512 + 104.69184 439.90000 -15.67204 + 154.99521 439.90000 -14.11610 + 205.29858 439.90000 -12.58554 + 255.60195 439.90000 -11.08859 + 255.60287 439.88198 -11.08859 + 290.89077 439.88198 -10.06260 + 326.17867 439.88198 -9.06006 + 361.46657 439.88198 -8.08382 + 396.75446 439.88198 -7.13672 + 432.04236 439.88198 -6.22161 + 432.04210 -83.56280 -6.22161 + 430.39276 -83.56280 -5.99816 + 428.74342 -83.56280 -5.77687 + 427.09408 -83.56280 -5.55775 + 425.44473 -83.56280 -5.34078 + 423.79539 -83.56280 -5.12595 + 423.79535 -83.56235 -5.12595 + 415.53308 -83.56235 -4.08367 + 407.27081 -83.56235 -3.09374 + 399.00854 -83.56235 -2.15512 + 390.74628 -83.56235 -1.26677 + 382.48401 -83.56235 -0.42764 + 382.48386 -83.55718 -0.42764 + 374.19801 -83.55718 0.36331 + 365.91217 -83.55718 1.10711 + 357.62633 -83.55718 1.80481 + 349.34048 -83.55718 2.45746 + 341.05464 -83.55718 3.06610 + 341.05465 -83.55675 3.06610 + 332.74737 -83.55675 3.63178 + 324.44008 -83.55675 4.15554 + 316.13280 -83.55675 4.63842 + 307.82552 -83.55675 5.08148 + 299.51824 -83.55675 5.48575 + 299.51819 -83.55606 5.48575 + 287.85699 -83.55606 5.98858 + 276.19578 -83.55606 6.42034 + 264.53458 -83.55606 6.78389 + 252.87337 -83.55606 7.08212 + 241.21217 -83.55606 7.31791 + 241.21210 -83.55453 7.31791 + 230.35722 -83.55453 7.48346 + 219.50234 -83.55453 7.59998 + 208.64746 -83.55453 7.66975 + 197.79258 -83.55453 7.69511 + 186.93770 -83.55453 7.67835 + 186.93785 -83.55481 7.67835 + 176.06304 -83.55481 7.62179 + 165.18822 -83.55481 7.52774 + 154.31341 -83.55481 7.39853 + 143.43859 -83.55481 7.23646 + 132.56378 -83.55481 7.04385 + 132.56377 -83.55482 7.04385 + 120.04065 -83.55482 6.78760 + 107.51752 -83.55482 6.49756 + 94.99440 -83.55482 6.17723 + 82.47127 -83.55482 5.83016 + 69.94814 -83.55482 5.45987 + 69.94814 -83.55482 5.45987 + 57.41517 -83.55482 5.06988 + 44.88220 -83.55482 4.66373 + 32.34923 -83.55482 4.24493 + 19.81625 -83.55482 3.81703 + 7.28328 -83.55482 3.38355 + 7.28214 -83.54900 3.38355 + -5.25099 -83.54900 2.94802 + -17.78412 -83.54900 2.51396 + -30.31724 -83.54900 2.08492 + -42.85037 -83.54900 1.66441 + -55.38350 -83.54900 1.25596 + -55.38199 -83.53658 1.25596 + -67.90546 -83.53658 0.86311 + -80.42894 -83.53658 0.48938 + -92.95241 -83.53658 0.13830 + -105.47589 -83.53658 -0.18661 + -117.99936 -83.53658 -0.48182 + -117.99864 -83.52444 -0.48182 + -118.16601 -83.44566 -0.48555 + -118.33312 -83.28966 -0.48927 + -118.49991 -83.13366 -0.49299 + -118.66640 -82.97766 -0.49671 + -118.83257 -82.82166 -0.50042 + -118.83257 -82.82168 -0.50042 + -121.92995 -79.85767 -0.56972 + -124.91470 -76.89364 -0.63681 + -127.78682 -73.92960 -0.70162 + -130.54631 -70.96555 -0.76412 + -133.19316 -68.00148 -0.82424 + -133.19316 50.16815 -0.82424 + -132.17713 51.72819 -0.85491 + -131.12990 53.28824 -0.88491 + -130.05147 54.84829 -0.91426 + -128.94184 56.40834 -0.94295 + -127.80101 57.96840 -0.97099 + -127.80098 57.96806 -0.97099 + -122.38479 61.44324 -1.08929 + -116.86433 61.44351 -1.19510 + -111.34385 61.44378 -1.28899 + -105.82334 61.44405 -1.37151 + -100.30281 61.44432 -1.44324 + -100.30284 61.44396 -1.44324 + -99.68905 61.44387 -1.45056 + -99.07526 61.44390 -1.45777 + -98.46147 61.44393 -1.46484 + -97.84768 61.44396 -1.47180 + -97.23389 61.44411 -1.47863 + -97.23385 61.44307 -1.47863 + -94.79299 60.68683 -1.50473 + -92.38397 59.85141 -1.52892 + -90.00988 58.94081 -1.55125 + -87.67365 57.95979 -1.57176 + -85.37797 56.91378 -1.59051 + -85.37800 56.91268 -1.59051 + -84.25071 55.88321 -1.59923 + -83.14414 54.83981 -1.60754 + -82.05857 53.78294 -1.61542 + -80.99428 52.71308 -1.62289 + -79.95150 51.63068 -1.62995 + -79.95084 51.61387 -1.62995 + -75.31552 50.26797 -1.65707 + -70.80459 48.90579 -1.67633 + -66.41480 47.60580 -1.68820 + -62.14037 46.37109 -1.69313 + -57.97534 45.20058 -1.69158 + -57.97542 45.19880 -1.69158 + -53.91117 44.10675 -1.68399 + -49.94322 43.08377 -1.67078 + -46.06497 42.13584 -1.65235 + -42.26950 41.26481 -1.62910 + -38.55049 40.44714 -1.60145 + -38.55050 40.44519 -1.60145 + -34.52384 40.03731 -1.56645 + -30.53654 39.65601 -1.52710 + -26.58640 39.29354 -1.48390 + -22.67248 38.92338 -1.43734 + -18.79722 38.52003 -1.38793 + -18.79623 38.51865 -1.38793 + -13.63591 34.94370 -1.31498 + -9.03081 30.78183 -1.23867 + -5.00694 26.65193 -1.16001 + -1.55958 22.52467 -1.07998 + 1.30711 18.36682 -0.99957 + 1.30625 18.36380 -0.99957 + 3.59268 14.30763 -0.91965 + 5.33478 10.58869 -0.84062 + 6.58013 7.21184 -0.76280 + 7.37685 4.18013 -0.68650 + 7.77338 1.49473 -0.61203 + 7.77422 1.48109 -0.61203 + 7.81798 -0.81288 -0.53959 + 7.57212 -2.65069 -0.46908 + 7.10197 -4.01786 -0.40039 + 6.47301 -4.92061 -0.33341 + 5.74908 -5.38071 -0.26804 + 5.75018 -5.35922 -0.26804 + 4.98721 -5.53124 -0.20412 + 4.21072 -5.55308 -0.14142 + 3.44146 -5.42845 -0.07977 + 2.69972 -5.16039 -0.01897 + 2.00541 -4.75130 0.04116 + 2.00546 -4.75061 0.04116 + 1.37750 -4.20227 0.10081 + 0.83599 -3.51590 0.16013 + 0.40225 -2.64793 0.21922 + 0.10851 -1.49685 0.27818 + -0.00001 -0.00005 0.33711 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -34497,38 +34633,38 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.33500 9.00000 12.00000 26.91060 26.91060 - -10.42500 31.00000 5.00000 33.93095 33.93095 - -10.51500 7.00000 27.00000 40.95138 40.95138 - -10.60500 34.00000 34.70000 47.97189 47.97189 - -10.69500 49.00000 2.00000 54.99249 54.99249 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.81000 71.51400 34.34100 63.56751 62.45232 - -10.85000 71.51400 34.34100 65.99428 62.57891 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.33500 1.00000 1.00000 26.91060 26.91060 + -10.42500 1.00000 1.00000 33.93095 33.93095 + -10.51500 1.00000 1.00000 40.95138 40.95138 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.81000 71.51400 34.34000 63.56751 62.45232 + -10.85000 71.51400 34.34000 65.99428 62.57891 -10.89000 71.51400 34.34100 68.51921 62.71063 -10.93000 71.51400 34.34100 71.14231 62.84747 -10.97000 71.51400 34.34100 73.86358 62.98944 @@ -34607,8 +34743,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -34638,7 +34774,7 @@ Lambda passive -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.95000 12.40790 68.03169 3.54904 0.50828 0.28603 5.48293 -10.99000 12.85550 69.87231 3.64506 0.50828 0.28603 5.48293 - -10.99000 12.85550 70.79262 3.69307 0.64261 0.28603 5.48293 + -10.99000 12.85550 70.79262 3.69307 0.50828 0.28603 5.48293 -11.01000 13.07930 71.71293 3.74108 0.50828 0.28603 5.48293 -11.03000 13.30310 72.94002 3.80510 0.50828 0.28603 5.48293 -11.05000 13.52690 74.16710 3.86911 0.50828 0.28603 5.48293 @@ -34668,7 +34804,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -34827,91 +34963,91 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00205 0.00000 78.00205 78.00205 402 100 P 78.00220 0.00000 78.00220 78.00220 402 100 P 78.00240 0.00000 78.00240 78.00240 402 100 P 78.00260 0.00000 78.00260 78.00260 402 100 P 78.00280 0.00000 78.00280 78.00280 1 100 A 78.00295 0.00000 78.00295 78.00295 1 100 A - 78.00322 0.00000 78.00322 78.00322 1 100 A + 78.00322 0.00000 78.00322 78.00323 1 100 A 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00570 0.00000 78.00570 78.00570 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00728 0.00000 78.00728 78.00728 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.06894 67.39050 58.82859 5.45357 1 0 A 3.16496 67.78290 60.66921 5.62420 1 0 A 3.29299 68.17530 63.12337 5.85171 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.54904 68.96010 68.03169 6.30672 1 0 A 3.64506 69.35250 69.87231 6.47735 1 0 A - 3.69307 69.35250 70.79262 8.29707 1 0 A + 3.69307 69.35250 70.79262 6.56267 1 0 A 3.74108 69.54870 71.71293 6.64798 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.86911 69.94110 74.16710 6.87549 1 0 A 3.93312 70.13730 75.39418 6.98924 1 0 A 3.98114 70.33350 76.31449 7.07456 1 0 A 0.45753 70.33350 52.80064 10.36963 1 0 A - 5.22232 71.22621 52.76452 10.64023 110 0 1 - 5.57170 72.11892 53.02490 11.00103 110 0 1 - 5.94233 73.01163 53.51177 11.36183 110 0 1 - 6.33274 73.90434 54.13832 11.72262 110 0 1 - 6.65128 74.79705 54.66869 11.99322 110 0 1 - 6.83167 74.79705 55.04663 12.17362 110 0 1 - 7.16713 75.68976 55.64206 12.44422 110 0 1 - 7.60841 76.58247 56.47400 12.80502 110 0 1 - 8.06403 77.47518 57.34182 13.16581 110 0 1 - 8.53272 78.36789 58.23745 13.52661 110 0 1 - 8.92300 79.26060 58.92328 13.79721 110 0 1 - 11.38449 79.26060 38.46255 14.05198 110 0 1 - 10.00209 83.24160 34.78760 12.42214 110 0 1 - 7.96113 87.22260 29.92326 10.24902 110 0 1 - 5.87021 91.20360 25.09365 8.07589 110 0 1 - 3.78330 95.18460 20.29148 5.90277 110 0 1 - 2.24290 99.16560 16.70379 4.27292 110 0 1 - 7.77010 99.16560 27.51935 2.70743 110 28 1 + 5.22669 71.22621 52.76452 10.64023 110 0 1 + 5.57565 72.11892 53.02490 11.00103 110 0 1 + 5.94585 73.01163 53.51177 11.36183 110 0 1 + 6.33586 73.90434 54.13832 11.72262 110 0 1 + 6.65402 74.79705 54.66869 11.99322 110 0 1 + 6.83442 74.79705 55.04663 12.17362 110 0 1 + 7.16952 75.68976 55.64206 12.44422 110 0 1 + 7.61046 76.58247 56.47400 12.80502 110 0 1 + 8.06578 77.47518 57.34182 13.16581 110 0 1 + 8.53420 78.36789 58.23745 13.52661 110 0 1 + 8.92425 79.26060 58.92328 13.79721 110 0 1 + 11.38205 79.26060 38.46255 14.05198 110 0 1 + 9.99955 83.24160 34.78760 12.42214 110 0 1 + 7.96158 87.22260 29.92326 10.24902 110 0 1 + 5.87061 91.20360 25.09365 8.07589 110 0 1 + 3.78368 95.18460 20.29148 5.90277 110 0 1 + 2.24329 99.16560 16.70379 4.27292 110 0 1 + 7.94681 99.16560 27.51935 2.70743 110 29 1 1.85350 100.53900 33.02991 3.26655 1 0 A 2.27733 101.91240 40.29427 4.01204 1 0 A 2.70157 103.28580 47.47851 4.75752 1 0 A 3.12622 104.65920 54.60600 5.50301 1 0 A 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A + 3.65754 106.03260 63.46711 6.43488 1 0 A 3.97660 107.40600 68.76890 6.99399 1 0 A 4.40227 108.77940 75.83214 7.73948 1 0 A 4.82819 110.15280 82.89494 8.48497 1 0 A 5.25430 111.52620 89.96218 9.23046 1 0 A 5.57399 112.89960 95.26699 9.78958 1 0 A 5.78717 112.89960 98.80627 10.16232 1 0 A - 6.74754 114.27300 104.11963 10.72144 110 0 1 - 8.11269 115.64640 111.21161 11.46693 110 0 1 - 9.45421 117.01980 118.31241 12.21242 110 0 1 - 10.77410 118.39320 125.42156 12.95791 110 0 1 - 11.88798 119.76660 130.75828 13.51703 110 0 1 - 12.26072 119.76660 134.31851 13.88977 110 0 1 - 13.35745 121.14000 139.66222 14.44889 110 0 1 - 14.62608 122.51340 146.79231 15.19438 110 0 1 - 15.88260 123.88680 153.92796 15.93987 110 0 1 - 17.12933 125.26020 161.06855 16.68536 110 11 1 - 18.18224 126.63360 166.42676 17.24447 110 11 1 - 18.55499 126.63360 170.00024 17.61722 110 11 1 - 19.60277 128.00700 175.36228 18.17633 110 11 1 - 20.83331 129.38040 182.51443 18.92182 110 11 1 - 22.71901 130.75380 189.66955 19.66731 110 12 1 - 25.40261 132.12720 196.82728 20.41280 110 13 1 - 27.97488 133.50060 202.19703 20.97192 110 14 1 + 6.77846 114.27300 104.11963 10.72144 110 0 1 + 8.14855 115.64640 111.21161 11.46693 110 0 1 + 9.49529 117.01980 118.31241 12.21242 110 0 1 + 10.82064 118.39320 125.42156 12.95791 110 0 1 + 11.94020 119.76660 130.75828 13.51703 110 0 1 + 12.31295 119.76660 134.31851 13.88977 110 0 1 + 13.41553 121.14000 139.66222 14.44889 110 0 1 + 14.69018 122.51340 146.79231 15.19438 110 0 1 + 15.95279 123.88680 153.92796 15.93987 110 10 1 + 17.20567 125.26020 161.06855 16.68536 110 11 1 + 18.26472 126.63360 166.42676 17.24447 110 11 1 + 18.63747 126.63360 170.00024 17.61722 110 11 1 + 19.69134 128.00700 175.36228 18.17633 110 11 1 + 20.92791 129.38040 182.51443 18.92182 110 11 1 + 22.79713 130.75380 189.66955 19.66731 110 12 1 + 25.48762 132.12720 196.82728 20.41280 110 13 1 + 28.06677 133.50060 202.19703 20.97192 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -34926,9 +35062,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 5.994 'Hydrobiaklei' + -11.09 5.997 'Hydrobiaklei' -12.00 3.443 'Basisveen' - -12.50 37.885 'Eerste zandlaag' + -12.50 38.031 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -34947,7 +35083,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.11 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -12.83 'Eerste zandlaag' + -12.50 -12.88 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -35071,20 +35207,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.33500 5.00000 1.00000 3.51001 3.51001 - -10.42500 39.00000 27.00000 10.53009 10.53009 - -10.51500 7.99100 8.00000 17.55025 17.55025 - -10.60500 14.00000 13.10000 24.57050 24.57050 - -10.69500 0.92000 1.00000 31.59082 31.59082 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.74500 4.00000 8.00000 35.49104 35.49104 - -10.75500 2.03000 1.00000 36.27108 36.27108 - -10.76500 3.70000 1.00000 37.05113 37.05113 - -10.77500 25.00000 15.00000 37.83118 37.83118 - -10.78500 3.00000 1.00000 38.61123 38.61123 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.33500 1.00000 1.00000 3.51001 3.51001 + -10.42500 1.00000 1.00000 10.53009 10.53009 + -10.51500 1.00000 1.00000 17.55025 17.55025 + -10.60500 1.00000 1.00000 24.57050 24.57050 + -10.69500 1.00000 1.00000 31.59082 31.59082 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.74500 1.00000 1.00000 35.49104 35.49104 + -10.75500 1.00000 1.00000 36.27108 36.27108 + -10.76500 1.00000 1.00000 37.05113 37.05113 + -10.77500 1.00000 1.00000 37.83118 37.83118 + -10.78500 1.00000 1.00000 38.61123 38.61123 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -35163,13 +35299,13 @@ Lambda passive -10.47000 78.00180 78.00180 78.00180 1.00000 1.00000 1.00000 -10.56000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.65000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 - -10.74000 78.00450 78.00428 78.00428 1.00000 1.00000 1.00000 + -10.74000 78.00450 78.00428 78.00427 1.00000 1.00000 1.00000 -10.74000 78.00450 78.00452 78.00452 1.00000 1.00000 1.00000 -10.75000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 -10.76000 78.00470 78.00470 78.00470 1.00000 1.00000 1.00000 -10.77000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.78000 78.00490 78.00490 78.00490 1.00000 1.00000 1.00000 - -10.79000 78.00500 78.00498 78.00498 1.00000 1.00000 1.00000 + -10.79000 78.00500 78.00497 78.00498 1.00000 1.00000 1.00000 -10.79000 11.10500 61.92974 3.23072 0.50828 0.28603 5.48293 -10.83000 11.86500 65.05501 3.39376 0.50828 0.28603 5.48293 -10.87000 12.62500 69.22204 3.61114 0.50828 0.28603 5.48293 @@ -35182,7 +35318,7 @@ Lambda passive -11.05000 15.57640 85.40437 4.45533 0.50828 0.28603 5.48293 -11.07000 15.80020 86.63145 4.51935 0.50828 0.28603 5.48293 -11.09000 16.02400 87.55176 4.56736 0.50828 0.28603 5.48293 - -11.09000 16.02400 57.49074 1.48792 0.73783 0.09215 3.56054 + -11.09000 16.02400 57.49074 1.48792 0.73559 0.09215 3.56054 -11.18100 16.51449 57.44729 1.70072 0.73559 0.10298 3.47860 -11.27200 17.00498 57.69015 1.96589 0.73559 0.11561 3.39254 -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 @@ -35194,7 +35330,7 @@ Lambda passive -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 -11.90900 20.43841 62.80158 3.73782 0.73559 0.18288 3.07272 -12.00000 20.92890 63.48060 3.92642 0.73559 0.18871 3.05103 - -12.00000 20.92890 42.04983 8.77210 0.85559 0.43370 2.07898 + -12.00000 20.92890 42.04983 8.77210 0.77308 0.43370 2.07898 -12.10000 18.11790 38.35909 7.44425 0.77308 0.41088 2.11719 -12.20000 15.30690 33.47530 5.67363 0.77308 0.37066 2.18694 -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 @@ -35224,7 +35360,7 @@ Lambda passive -15.02000 32.55270 164.23188 9.70251 0.52256 0.29806 5.04511 -15.16000 33.97930 171.37447 10.12912 0.52256 0.29810 5.04350 -15.30000 35.40590 176.73401 10.44904 0.52256 0.29812 5.04245 - -15.30000 35.40590 180.30829 10.66231 0.39125 0.29814 5.04182 + -15.30000 35.40590 180.30829 10.66231 0.52256 0.29814 5.04182 -15.44000 36.83250 185.67141 10.98220 0.52256 0.29817 5.04097 -15.58000 38.25910 192.82483 11.40868 0.52256 0.29820 5.03997 -15.72000 39.68570 199.98102 11.83511 0.52256 0.29822 5.03912 @@ -35384,72 +35520,72 @@ Status character 78.00270 0.00000 78.00270 78.00270 402 100 P 78.00360 0.00000 78.00360 78.00360 402 100 P 78.00428 0.00000 78.00428 78.00428 402 100 P - 78.00452 0.00000 78.00452 78.00452 402 100 P + 78.00452 0.00000 78.00452 78.00453 402 0 P 78.00460 0.00000 78.00460 78.00460 402 100 P 78.00470 0.00000 78.00470 78.00470 402 100 P 78.00480 0.00000 78.00480 78.00480 402 100 P 78.00490 0.00000 78.00490 78.00490 402 100 P - 78.00498 0.00000 78.00498 78.00498 402 100 P - 88.33697 0.00000 428.73800 39.74517 110 21 1 - 90.84488 0.00000 431.86327 40.03489 110 21 1 - 93.30322 0.00000 436.03030 40.42118 110 21 1 - 95.64180 0.00000 440.19733 40.80748 110 22 1 - 97.86345 0.00000 444.36436 41.19377 110 22 1 - 99.89799 0.00000 447.48963 41.48350 110 22 1 - 55.50820 66.90000 82.02990 7.60439 220 68 2 - 57.99763 67.09620 82.95021 7.68971 220 70 2 - 58.74594 67.29240 84.17729 7.80346 220 70 2 - 59.47088 67.48860 85.40437 7.91722 220 70 2 - 60.17274 67.68480 86.63145 8.03097 220 69 2 - 60.83516 67.88100 87.55176 8.11628 220 69 2 - 17.22160 67.88100 57.49074 11.91343 110 30 1 - 22.93283 68.77371 57.44729 12.14781 110 40 1 - 22.61752 69.66642 57.69015 12.50861 110 39 1 - 22.28820 70.55913 58.15792 12.86941 110 38 1 - 21.94638 71.45184 58.76656 13.23021 110 37 1 - 21.58909 72.34455 59.28463 13.50080 110 36 1 - 21.59799 72.34455 59.65500 13.68120 110 36 1 - 21.23113 73.23726 60.23996 13.95180 110 35 1 - 20.86044 74.12997 61.05929 14.31260 110 34 1 - 20.48273 75.02268 61.91592 14.67339 110 33 1 - 20.09929 75.91539 62.80158 15.03419 110 32 1 - 20.19429 76.80810 63.48060 15.30479 110 32 1 - 19.74242 76.80810 42.04983 17.30531 110 47 1 - 16.37185 80.78910 38.35909 14.00657 110 43 1 - 14.12132 84.77010 33.47530 11.83344 110 42 1 - 11.86600 88.75110 28.62801 9.66032 110 41 1 - 10.09236 92.73210 23.80984 7.48719 110 42 1 - 8.89766 96.71310 20.21114 5.85735 110 44 1 - 31.74501 96.71310 38.27144 3.77842 330 83 3 - 34.01028 98.08650 43.67886 4.33754 220 78 2 - 34.43273 99.45990 50.82580 5.08303 220 68 2 - 34.40291 100.83330 57.92016 5.82852 220 59 2 - 35.26621 102.20670 64.98360 6.57401 220 54 2 - 35.58530 103.58010 70.27090 7.13313 220 51 2 - 37.95702 103.58010 73.79336 7.50587 220 51 2 - 34.18876 104.95350 79.07672 8.06499 110 43 1 - 32.18855 106.32690 86.12440 8.81048 110 37 1 - 30.15981 107.70030 93.17934 9.55597 110 32 1 - 28.11771 109.07370 100.24368 10.30146 110 28 1 - 25.96682 110.44710 105.54834 10.86057 110 25 1 - 26.18800 110.44710 109.08825 11.23332 110 24 1 - 24.05105 111.82050 114.40324 11.79243 110 21 1 - 22.04261 113.19390 121.49808 12.53792 110 18 1 - 20.05505 114.56730 128.60212 13.28341 110 16 1 - 18.09133 115.94070 135.71455 14.02890 110 13 1 - 16.21707 117.31410 141.05365 14.58802 110 11 1 - 16.58981 117.31410 144.61540 14.96076 110 11 1 - 16.61132 118.68750 149.96124 15.51988 110 11 1 - 16.83367 120.06090 157.09393 16.26537 110 11 1 - 17.06813 121.43430 164.23188 17.01086 110 10 1 - 17.31238 122.80770 171.37447 17.75635 110 0 1 - 17.37770 124.18110 176.73401 18.31547 110 0 1 - 13.05448 124.18110 180.30829 13.99225 110 0 1 - 17.82089 125.55450 185.67141 19.24733 110 0 1 - 18.08133 126.92790 192.82483 19.99282 110 0 1 - 18.34428 128.30130 199.98102 20.73831 110 0 1 - 18.60863 129.67470 207.13966 21.48380 110 0 1 - 18.68690 131.04810 212.51000 22.04291 110 0 1 + 78.00497 0.00000 78.00497 78.00498 402 0 P + 88.35505 0.00000 428.73800 39.74517 110 21 1 + 90.86405 0.00000 431.86327 40.03489 110 21 1 + 93.32348 0.00000 436.03030 40.42118 110 21 1 + 95.66314 0.00000 440.19733 40.80748 110 22 1 + 97.88587 0.00000 444.36436 41.19377 110 22 1 + 99.92148 0.00000 447.48963 41.48350 110 22 1 + 57.26533 66.90000 82.02990 7.60439 220 70 2 + 58.02118 67.09620 82.95021 7.68971 220 70 2 + 58.77005 67.29240 84.17729 7.80346 220 70 2 + 59.49554 67.48860 85.40437 7.91722 220 70 2 + 60.19796 67.68480 86.63145 8.03097 220 69 2 + 60.86093 67.88100 87.55176 8.11628 220 70 2 + 17.18833 67.88100 57.49074 11.87722 110 30 1 + 22.98103 68.77371 57.44729 12.14781 110 40 1 + 22.66430 69.66642 57.69015 12.50861 110 39 1 + 22.33341 70.55913 58.15792 12.86941 110 38 1 + 21.98985 71.45184 58.76656 13.23021 110 37 1 + 21.63063 72.34455 59.28463 13.50080 110 36 1 + 21.63953 72.34455 59.65500 13.68120 110 36 1 + 21.27055 73.23726 60.23996 13.95180 110 35 1 + 20.89753 74.12997 61.05929 14.31260 110 34 1 + 20.51732 75.02268 61.91592 14.67339 110 33 1 + 20.13120 75.91539 62.80158 15.03419 110 32 1 + 20.20295 76.80810 63.48060 15.30479 110 32 1 + 18.07289 76.80810 42.04983 15.63641 110 43 1 + 16.37133 80.78910 38.35909 14.00657 110 43 1 + 14.12088 84.77010 33.47530 11.83344 110 42 1 + 11.86560 88.75110 28.62801 9.66032 110 41 1 + 10.09686 92.73210 23.80984 7.48719 110 42 1 + 8.90212 96.71310 20.21114 5.85735 110 44 1 + 31.75202 96.71310 38.27144 3.77842 330 83 3 + 34.02406 98.08650 43.67886 4.33754 220 78 2 + 34.46699 99.45990 50.82580 5.08303 220 68 2 + 34.41558 100.83330 57.92016 5.82852 220 59 2 + 35.27802 102.20670 64.98360 6.57401 220 54 2 + 35.59601 103.58010 70.27090 7.13313 220 51 2 + 36.27682 103.58010 73.79336 7.50587 110 49 1 + 34.20751 104.95350 79.07672 8.06499 110 43 1 + 32.20418 106.32690 86.12440 8.81048 110 37 1 + 30.17187 107.70030 93.17934 9.55597 110 32 1 + 28.12578 109.07370 100.24368 10.30146 110 28 1 + 25.97051 110.44710 105.54834 10.86057 110 25 1 + 26.19169 110.44710 109.08825 11.23332 110 24 1 + 24.04998 111.82050 114.40324 11.79243 110 21 1 + 22.03643 113.19390 121.49808 12.53792 110 18 1 + 20.04341 114.56730 128.60212 13.28341 110 16 1 + 18.07391 115.94070 135.71455 14.02890 110 13 1 + 16.16484 117.31410 141.05365 14.58802 110 11 1 + 16.53759 117.31410 144.61540 14.96076 110 11 1 + 16.55324 118.68750 149.96124 15.51988 110 11 1 + 16.76957 120.06090 157.09393 16.26537 110 11 1 + 16.99793 121.43430 164.23188 17.01086 110 0 1 + 17.23603 122.80770 171.37447 17.75635 110 0 1 + 17.29522 124.18110 176.73401 18.31547 110 0 1 + 17.66796 124.18110 180.30829 18.68821 110 0 1 + 17.73232 125.55450 185.67141 19.24733 110 0 1 + 17.98674 126.92790 192.82483 19.99282 110 0 1 + 18.24370 128.30130 199.98102 20.73831 110 0 1 + 18.50209 129.67470 207.13966 21.48380 110 0 1 + 18.57440 131.04810 212.51000 22.04291 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -35463,10 +35599,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 35.526 'OWB' - -10.79 24.762 'Grind' - -11.09 19.361 'Hydrobiaklei' - -12.00 6.677 'Basisveen' - -12.50 85.032 'Eerste zandlaag' + -10.79 24.786 'Grind' + -11.09 19.394 'Hydrobiaklei' + -12.00 6.594 'Basisveen' + -12.50 85.139 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -35482,10 +35618,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 8.83 'Grind' - -11.09 3.59 'Hydrobiaklei' + -10.79 8.84 'Grind' + -11.09 3.60 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.81 'Eerste zandlaag' + -12.50 28.84 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -35727,7 +35863,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 9999.00000 210000000.000 0 1 1 'Stempelraam boven dek' + -2.43000 0.00000 210000000.000 2 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -35752,39 +35888,39 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 20.90 : Percentage mobilized resistance left - 96.20 : Percentage mobilized resistance right - 423.44 : Effective left - 1182.55 : Effective right + 86.94 : Percentage mobilized resistance left + 9.83 : Percentage mobilized resistance right + 1761.78 : Effective left + 120.80 : Effective right 1096.84 : Water pressure left 930.94 : Water pressure right 2026.33 : Max effective resistance left - 1229.22 : Max effective resistance right + 1228.97 : Max effective resistance right -21603.66 : Max moment left --13860.19 : Max moment right --3172.95 : Max mobilized moment left --13680.16 : Max mobilized moment right - 107.05 : Vertical force left - 372.00 : Vertical force right - 14.7 : Max mobilized moment percentage left - 98.7 : Max mobilized moment percentage right +-13858.63 : Max moment right +-20050.55 : Max mobilized moment left +-1006.54 : Max mobilized moment right + 544.36 : Vertical force left + 26.36 : Vertical force right + 92.8 : Max mobilized moment percentage left + 7.3 : Max mobilized moment percentage right -2.43 : Level of single support 8 : Node of single support 1 : Moment present - 0 : IsLeftSidePassive + 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --107.05 : Active force -372.00 : Passive force --107.05 : Plugged active force -372.00 : Plugged passive force +-26.36 : Active force +544.36 : Passive force +-26.36 : Plugged active force +544.36 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -264.95 : Resulting Vertical Force Unplugged -264.95 : Resulting Vertical Force Plugged +518.00 : Resulting Vertical Force Unplugged +518.00 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -35797,210 +35933,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -1.04500 4.89270 -3.44421261409E12 - -0.63597 4.89270 -3.41636636716E12 - -0.22694 4.89270 -3.38852012024E12 - 0.18209 4.89270 -3.36067387331E12 - 0.59112 4.89270 -3.33282762639E12 - 1.00015 4.89270 -3.30498137946E12 - -0.84480 3.79431 -3.30498137946E12 - -0.52913 3.79431 -3.27713513253E12 - -0.21346 3.79431 -3.24928888561E12 - 0.10221 3.79431 -3.22144263868E12 - 0.41788 3.79431 -3.19359639176E12 - 0.73355 3.79431 -3.16575014483E12 - -10.08464 406.73024 -3.16575014483E12 - -6.02134 406.72975 -3.16247411578E12 - -1.95806 406.72828 -3.15919808673E12 - 2.10520 406.72583 -3.15592205768E12 - 6.16843 406.72239 -3.15264602863E12 - 10.23163 406.71798 -3.14936999958E12 - 0.16697 2.75389 -3.14936999958E12 - 0.49103 2.62440 -3.11005765098E12 - 0.79108 2.35364 -3.07074530238E12 - 1.05016 1.94162 -3.03143295378E12 - 1.25132 1.38834 -2.99212060517E12 - 1.37761 0.69379 -2.95280825657E12 - 2.00226 0.48813 -2.95280825657E12 - 2.01746 -0.19857 -2.92004796607E12 - 1.95908 -0.98337 -2.88728767557E12 - 1.81732 -1.86627 -2.85452738507E12 - 1.58236 -2.84727 -2.82176709457E12 - 1.24440 -3.92637 -2.78900680407E12 - 1.61669 -1.92222 -2.78900680407E12 - 1.36652 -3.09942 -2.75624651357E12 - 0.99373 -4.37472 -2.72348622307E12 - 0.48850 -5.74812 -2.69072593257E12 - -0.15897 -7.21962 -2.65796564206E12 - -0.95850 -8.78922 -2.62520535156E12 - -1.74024 -5.06284 -2.62520535156E12 - -2.22611 -6.49115 -2.59703150173E12 - -2.83794 -7.99202 -2.5688576519E12 - -3.58197 -9.56545 -2.54068380207E12 - -4.46443 -11.21143 -2.51250995224E12 - -5.49157 -12.92997 -2.48433610241E12 - -6.45234 -14.49595 -2.48433610241E12 - -8.24566 -16.88584 -2.44698937124E12 - -10.31869 -19.40322 -2.40964264007E12 - -12.68596 -22.04810 -2.3722959089E12 - -15.36202 -24.82046 -2.33494917773E12 - -18.36140 -27.72032 -2.29760244655E12 - -19.45793 -27.82073 -2.29760244655E12 - -21.19467 -29.39818 -2.27794627225E12 - -23.02712 -31.01094 -2.25829009795E12 - -24.95739 -32.65902 -2.23863392365E12 - -26.98761 -34.34242 -2.21897774935E12 - -29.11990 -36.06113 -2.19932157505E12 - -46.97171 -194.31629 -2.19932157505E12 - -50.82372 -194.89581 -2.19276951695E12 - -54.68733 -195.47707 -2.18621745885E12 - -58.56259 -196.06019 -2.17966540075E12 - -62.44953 -196.64504 -2.17311334265E12 - -66.34819 -197.23190 -2.16656128455E12 - -58.89959 -1661.96947 -2.16656128455E12 - -92.10411 -1662.55751 -2.16000922645E12 - -125.32042 -1663.14757 -2.15345716835E12 - -158.54854 -1663.73935 -2.14690511025E12 - -191.78852 -1664.33287 -2.14035305215E12 - -225.04038 -1664.92839 -2.13380099405E12 - -198.40253 -974.20768 -2.13380099405E12 - -237.37397 -975.42316 -2.12069687785E12 - -276.39418 -976.64525 -2.10759276165E12 - -315.46338 -977.87271 -2.09448864545E12 - -354.58178 -979.10555 -2.08138452925E12 - -393.74962 -980.34509 -2.06828041305E12 - -398.53655 -999.14236 -2.06828041305E12 - -458.56099 -1001.00323 -2.04862423875E12 - -518.69707 -1002.86332 -2.02896806445E12 - -578.94472 -1004.72252 -2.00931189014E12 - -639.30390 -1006.58083 -1.98965571584E12 - -699.77455 -1008.43837 -1.96999954154E12 - -697.82754 -939.08538 -1.96999954154E12 - -791.89076 -942.17882 -1.93723925104E12 - -886.26323 -945.27010 -1.90447896054E12 - -980.94471 -948.35892 -1.87171867004E12 - -1075.93494 -951.44529 -1.83895837954E12 - -1171.23370 -954.52950 -1.80619808904E12 - -1170.82918 -947.67075 -1.80619808904E12 - -1265.75458 -950.88097 -1.77343779853E12 - -1361.00961 -954.22120 -1.74067750803E12 - -1456.59885 -957.56517 -1.70791721753E12 - -1552.52267 -960.91286 -1.67515692703E12 - -1648.78143 -964.26382 -1.64239663652E12 - -1649.44834 -952.88109 -1.64239663652E12 - -1783.17263 -957.58027 -1.59653222982E12 - -1917.55523 -962.28586 -1.55066782312E12 - -2052.59712 -966.99876 -1.50480341641E12 - -2188.29933 -971.71897 -1.4589390097E12 - -2324.66285 -976.44559 -1.413074603E12 - -2325.65513 -957.29136 -1.413074603E12 - -2450.55291 -963.97227 -1.37048622534E12 - -2576.31182 -970.55900 -1.32789784769E12 - -2702.92491 -977.11503 -1.28530947003E12 - -2830.38865 -983.64636 -1.24272109237E12 - -2958.69682 -990.08252 -1.20013271471E12 - -2958.35276 -965.20253 -1.20013271471E12 - -3084.23858 -971.59489 -1.15754433705E12 - -3210.94970 -977.91479 -1.11495595939E12 - -3338.48069 -984.20825 -1.07236758173E12 - -3466.82811 -990.47517 -1.02977920407E12 - -3595.98649 -996.66941 -987190826411.00000 - -3597.33741 -965.12347 -987190826411.00000 - -3742.17670 -972.49477 -938214192099.00000 - -3888.14844 -980.29731 -889237557786.00000 - -4035.32467 -988.61078 -840260923471.00000 - -4183.78281 -997.44868 -791284289156.00000 - -4333.59868 -1006.75320 -742307654840.00000 - -4334.04635 -962.69226 -742307654840.00000 - -4478.71665 -972.67332 -693331020522.00000 - -4624.91313 -983.13272 -644354386203.00000 - -4772.71434 -994.14172 -595377751883.00000 - -4922.20641 -1005.77845 -546401117561.00000 - -5073.48531 -1018.00904 -497424483238.00000 - -5074.20318 -965.04717 -497424483238.00000 - -5219.42402 -978.00797 -448447848914.00000 - -5366.61743 -991.45949 -399471214588.00000 - -5515.86380 -1005.47256 -350494580260.00000 - -5667.24715 -1020.04780 -301517945931.00000 - -5820.84804 -1035.11535 -252541311601.00000 - -5821.70227 -967.89097 -252541311601.00000 - -5967.58242 -983.66242 -203564677269.00000 - -6115.85550 -999.92697 -154588042935.00000 - -6266.60228 -1016.75551 -105611408599.00000 - -6419.90726 -1034.15118 -56634774261.60000 - -6575.85197 -1052.04618 -7658139922.47000 - -6585.86869 -146.13916 -7658139922.47000 - -6586.16274 -146.38340 -7002934111.90000 - -6586.45727 -146.62773 -6347728301.33000 - -6586.75229 -146.87217 -5692522490.76000 - -6587.04779 -147.11670 -5037316680.19000 - -6587.34379 -147.36133 -4382110869.62000 - -6568.21430 1695.18228 -4382110869.62000 - -6503.84413 1693.83372 8066799531.30000 - -6439.46193 1694.98628 20515709932.30000 - -6375.03569 1696.15168 32964620333.50000 - -6310.56492 1697.32993 45413530734.80000 - -6246.04915 1698.51941 57862441136.10000 - -6242.43439 1643.95108 57862441136.10000 - -6044.93958 1647.81277 97174789772.80000 - -5846.97496 1651.78652 136487138411.00000 - -5648.52581 1655.88834 175799487049.00000 - -5449.57676 1660.11819 215111835689.00000 - -5250.11309 1664.45998 254424184330.00000 - -5253.21419 1600.70811 254424184330.00000 - -5157.08474 1602.93892 274080358651.00000 - -5060.82064 1605.19769 293736532972.00000 - -4964.42005 1607.48840 313392707293.00000 - -4867.88106 1609.81105 333048881615.00000 - -4771.20184 1612.16166 352705055936.00000 - -4769.99735 1556.57280 352705055936.00000 - -4628.17028 1560.21408 382516920325.00000 - -4486.00907 1563.91964 412328784714.00000 - -4343.50731 1567.69866 442140649103.00000 - -4200.65832 1571.55113 471952513493.00000 - -4057.45569 1575.46786 501764377883.00000 - -4057.09206 1499.14416 501764377883.00000 - -3920.47438 1503.15270 531576242273.00000 - -3783.48914 1507.22549 561388106664.00000 - -3646.12993 1511.37171 591199971056.00000 - -3508.39007 1515.59136 621011835447.00000 - -3370.26317 1519.87525 650823699840.00000 - -3370.09929 1445.29496 650823699840.00000 - -3225.48130 1447.10433 683583990381.00000 - -3080.66936 1449.18710 716344280922.00000 - -2935.63354 1451.58169 749104571464.00000 - -2790.34270 1454.28738 781864862007.00000 - -2644.76705 1457.26474 814625152550.00000 - -2624.56881 1228.64282 814625152550.00000 - -2450.37936 1259.49400 860489559310.00000 - -2271.96849 1289.18041 906353966071.00000 - -2089.41775 1318.75414 952218372832.00000 - -1902.70281 1348.71717 998082779595.00000 - -1711.75654 1379.19558 1.04394718636E12 - -1710.67724 971.73936 1.04394718636E12 - -1572.44840 1003.10517 1.08981159312E12 - -1429.78344 1035.15058 1.13567599988E12 - -1282.57571 1068.00768 1.18154040665E12 - -1130.70937 1101.70629 1.22740481341E12 - -974.07017 1136.15777 1.27326922018E12 - -971.97064 687.51656 1.27326922018E12 - -873.23940 723.06632 1.31913362694E12 - -769.47924 759.39661 1.3649980337E12 - -660.56996 796.62647 1.41086244047E12 - -546.38510 834.76311 1.45672684723E12 - -426.80265 873.69759 1.502591254E12 - -424.58214 380.96705 1.502591254E12 - -368.45275 421.04802 1.54845566077E12 - -306.65830 461.93529 1.59432006753E12 - -239.07498 503.74669 1.6401844743E12 - -165.57322 546.48493 1.68604888106E12 - -86.02851 590.03591 1.73191328783E12 - -84.28151 53.69295 1.73191328783E12 - -73.64441 98.40772 1.77777769459E12 - -56.69284 143.93873 1.82364210136E12 - -33.30156 190.40374 1.86950650812E12 - -3.33973 237.80397 1.91537091489E12 - 33.31820 286.02329 1.96123532166E12 + -0.32056 1.53937 3.30548442319E12 + -0.18350 1.53937 3.27872534462E12 + -0.04643 1.53937 3.25196626604E12 + 0.09063 1.53937 3.22520718747E12 + 0.22770 1.53937 3.1984481089E12 + 0.36476 1.53937 3.17168903033E12 + -0.52076 2.63770 3.17168903033E12 + -0.29014 2.63770 3.14492995176E12 + -0.05952 2.63770 3.11817087319E12 + 0.17110 2.63770 3.09141179461E12 + 0.40172 2.63770 3.06465271604E12 + 0.63234 2.63770 3.03789363747E12 + 30.33675 -1216.12132 3.03789363747E12 + 18.17221 -1216.12181 3.03474551058E12 + 6.00766 -1216.12328 3.03159738369E12 + -6.15691 -1216.12574 3.0284492568E12 + -18.32151 -1216.12917 3.02530112991E12 + -30.48615 -1216.13358 3.02215300302E12 + -0.11676 -2.81941 3.02215300302E12 + -0.46143 -2.94891 2.98437548033E12 + -0.83011 -3.21966 2.94659795764E12 + -1.23975 -3.63168 2.90882043495E12 + -1.70732 -4.18497 2.87104291226E12 + -2.24975 -4.87951 2.83326538957E12 + -2.12353 -7.23367 2.83326538957E12 + -2.88052 -7.92037 2.80178412066E12 + -3.71107 -8.70517 2.77030285176E12 + -4.62502 -9.58807 2.73882158285E12 + -5.63215 -10.56907 2.70734031394E12 + -6.74230 -11.64817 2.67585904503E12 + -6.76700 -9.53031 2.67585904503E12 + -7.77816 -10.70751 2.64437777613E12 + -8.91196 -11.98281 2.61289650722E12 + -10.17819 -13.35621 2.58141523831E12 + -11.58666 -14.82771 2.5499339694E12 + -13.14719 -16.39731 2.5184527005E12 + -12.13771 -24.01999 2.5184527005E12 + -14.27436 -25.44831 2.49137880924E12 + -16.53696 -26.94918 2.46430491798E12 + -18.93176 -28.52260 2.43723102671E12 + -21.46500 -30.16858 2.41015713545E12 + -24.14290 -31.88712 2.38308324419E12 + -22.32292 -28.78107 2.38308324419E12 + -25.73339 -31.17096 2.34719459764E12 + -29.42357 -33.68835 2.31130595108E12 + -33.40801 -36.33322 2.27541730453E12 + -37.70122 -39.10559 2.23952865798E12 + -42.31776 -42.00544 2.20364001142E12 + -42.31103 -31.83940 2.20364001142E12 + -44.24939 -33.41685 2.18475125008E12 + -46.28345 -35.02962 2.16586248873E12 + -48.41534 -36.67770 2.14697372739E12 + -50.64717 -38.36109 2.12808496604E12 + -52.98107 -40.07980 2.1091962047E12 + -43.67496 233.03586 2.1091962047E12 + -39.06187 232.47011 2.10289995092E12 + -34.45983 231.93039 2.09660369713E12 + -29.86832 231.41672 2.09030744335E12 + -25.28683 230.92909 2.08401118957E12 + -20.71485 230.46377 2.07771493579E12 + -30.42489 1424.86774 2.07771493579E12 + -1.96849 1424.43595 2.07141868201E12 + 26.47948 1424.02647 2.06512242823E12 + 54.91953 1423.64304 2.05882617445E12 + 83.35216 1423.28565 2.05252992066E12 + 111.77788 1422.95057 2.04623366688E12 + 88.86394 854.21739 2.04623366688E12 + 122.99548 853.35996 2.03364115932E12 + 157.09271 852.50317 2.02104865176E12 + 191.15576 851.65121 2.00845614419E12 + 225.18485 850.80545 1.99586363663E12 + 259.18021 849.96385 1.98327112907E12 + 262.28059 854.88653 1.98327112907E12 + 313.55540 853.63079 1.96438236772E12 + 364.75477 852.37170 1.94549360638E12 + 415.87850 851.11006 1.92660484503E12 + 466.92649 849.84693 1.90771608369E12 + 517.89867 848.58306 1.88882732234E12 + 515.94854 781.06346 1.88882732234E12 + 593.94954 778.95671 1.85734605344E12 + 671.73991 776.85098 1.82586478453E12 + 749.31980 774.74737 1.79438351562E12 + 826.68947 772.64667 1.76290224671E12 + 903.84923 770.54897 1.73142097781E12 + 903.53094 763.64904 1.73142097781E12 + 979.79113 761.55626 1.6999397089E12 + 1055.84222 759.46725 1.66845843999E12 + 1131.68463 757.38277 1.63697717108E12 + 1207.31882 755.30304 1.60549590217E12 + 1282.74527 753.22759 1.57401463326E12 + 1283.37317 742.35998 1.57401463326E12 + 1387.09319 739.46504 1.52994085679E12 + 1490.40851 736.57910 1.48586708032E12 + 1593.32054 733.70366 1.44179330384E12 + 1695.83074 730.83892 1.39771952737E12 + 1797.94058 727.98367 1.3536457509E12 + 1799.19974 708.55466 1.3536457509E12 + 1891.29773 708.13410 1.31272010131E12 + 1983.34022 707.68078 1.27179445173E12 + 2075.31779 707.13576 1.23086880214E12 + 2167.17506 705.49484 1.18994315256E12 + 2258.73652 703.00098 1.14901750297E12 + 2258.30847 678.61506 1.14901750297E12 + 2346.38077 676.51641 1.10809185339E12 + 2434.20593 674.81295 1.0671662038E12 + 2521.83533 673.50470 1.02624055422E12 + 2609.32035 672.59164 985314904628.00000 + 2696.71236 672.07379 944389255040.00000 + 2698.04876 640.22003 944389255040.00000 + 2793.74064 639.85174 897324758014.00000 + 2889.37747 639.48345 850260260986.00000 + 2984.95924 639.11515 803195763958.00000 + 3080.48595 638.74686 756131266929.00000 + 3175.95760 638.37857 709066769899.00000 + 3176.41339 595.01396 709066769899.00000 + 3265.32209 594.14610 662002272868.00000 + 3354.04398 592.63265 614937775836.00000 + 3442.52332 590.93819 567873278803.00000 + 3530.74311 589.15388 520808781769.00000 + 3618.68912 587.28345 473744284735.00000 + 3619.24417 534.03716 473744284735.00000 + 3698.92010 532.07546 426679787699.00000 + 3778.29849 530.05374 379615290662.00000 + 3857.36949 527.96341 332550793624.00000 + 3936.12287 525.80448 285486296585.00000 + 4014.54878 523.58551 238421799545.00000 + 4015.51918 456.38193 238421799545.00000 + 4083.58317 454.07718 191357302504.00000 + 4151.29832 451.71227 144292805462.00000 + 4218.69728 450.13148 97228308418.20000 + 4286.04920 451.53060 50163811373.50000 + 4353.83375 455.25239 3099314327.62000 + 4347.73654 -102.75607 3099314327.62000 + 4347.53204 -102.70260 2469688949.07000 + 4347.32764 -102.64906 1840063570.52000 + 4347.12335 -102.59545 1210438191.97000 + 4346.91916 -102.54175 580812813.42500 + 4346.71499 -102.63721 -48812565.12430 + 4339.48832 -1045.43588 -48812565.12430 + 4299.69376 -1049.28504 -12011694757.60000 + 4259.75268 -1053.14800 -23974576950.20000 + 4219.66450 -1057.02675 -35937459142.80000 + 4179.42863 -1060.92132 -47900341335.50000 + 4139.04450 -1064.82974 -59863223528.30000 + 4135.47462 -1008.49408 -59863223528.30000 + 4013.71784 -1020.96671 -97640746242.90000 + 3890.45641 -1033.57825 -135418268958.00000 + 3765.67205 -1046.34901 -173195791674.00000 + 3639.34563 -1059.27948 -210973314391.00000 + 3511.45874 -1072.35003 -248750837108.00000 + 3515.05250 -1010.52335 -248750837108.00000 + 3454.20364 -1017.13385 -267639598467.00000 + 3392.95715 -1023.77953 -286528359826.00000 + 3331.31071 -1030.46545 -305417121185.00000 + 3269.26191 -1037.19165 -324305882545.00000 + 3206.80842 -1043.95313 -343194643904.00000 + 3205.75741 -983.66052 -343194643904.00000 + 3115.76076 -994.01176 -371842598633.00000 + 3024.81862 -1004.44440 -400490553362.00000 + 2932.92288 -1014.97016 -429138508092.00000 + 2840.06825 -1025.48349 -457786462822.00000 + 2746.26194 -1035.89007 -486434417552.00000 + 2746.10243 -960.42200 -486434417552.00000 + 2658.21704 -970.84459 -515082372282.00000 + 2569.38043 -981.33101 -543730327013.00000 + 2479.58623 -991.89045 -572378281744.00000 + 2388.82780 -1002.52301 -601026236475.00000 + 2297.09876 -1013.21960 -629674191207.00000 + 2296.61783 -940.34955 -629674191207.00000 + 2202.18219 -948.40438 -661155460143.00000 + 2106.92753 -956.74334 -692636729079.00000 + 2010.82278 -965.40609 -724117998015.00000 + 1913.83561 -974.39154 -755599266952.00000 + 1815.93513 -983.65856 -787080535889.00000 + 1795.65733 -755.49481 -787080535889.00000 + 1686.51223 -803.72057 -831154312401.00000 + 1570.61808 -851.96840 -875228088914.00000 + 1447.94949 -900.54013 -919301865427.00000 + 1318.44598 -949.63462 -963375641940.00000 + 1182.02962 -999.28015 -1.00744941845E12 + 1180.76496 -591.60255 -1.00744941845E12 + 1094.41270 -642.14577 -1.05152319497E12 + 1000.93939 -693.36924 -1.09559697148E12 + 900.23862 -745.40010 -1.139670748E12 + 792.19562 -798.26088 -1.18374452451E12 + 676.69839 -851.85384 -1.22781830103E12 + 674.44500 -403.56384 -1.22781830103E12 + 614.12984 -458.21334 -1.27189207754E12 + 546.11374 -513.61446 -1.31596585406E12 + 470.28087 -569.88274 -1.36003963057E12 + 386.50934 -627.02484 -1.40411340709E12 + 294.68162 -684.93516 -1.4481871836E12 + 292.72112 -192.99657 -1.4481871836E12 + 261.58181 -252.01158 -1.49226096012E12 + 222.12828 -311.81096 -1.53633473663E12 + 174.23923 -372.52162 -1.58040851315E12 + 117.78629 -434.15277 -1.62448228967E12 + 52.64579 -496.59139 -1.66855606618E12 + 50.69424 41.55950 -1.66855606618E12 + 52.07075 -22.03594 -1.7126298427E12 + 44.48980 -86.44312 -1.75670361921E12 + 27.82681 -151.77948 -1.80077739573E12 + 1.95161 -218.04652 -1.84485117224E12 + -33.26076 -285.12893 -1.88892494876E12 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -36340,7 +36476,7 @@ Lambda passive -4.30000 5.67400 11.84027 1.98756 0.77308 0.35029 2.08676 -4.40000 5.71300 11.87273 2.01214 0.77308 0.35220 2.07819 -4.50000 5.75200 11.90027 2.03057 0.77308 0.35362 2.07240 - -4.50000 5.75200 11.92001 2.04286 0.77933 0.35456 2.06882 + -4.50000 5.75200 11.92001 2.04286 0.77308 0.35456 2.06882 -4.60000 5.79100 11.95133 2.06130 0.77308 0.35595 2.06378 -4.70000 5.83000 11.99547 2.08587 0.77308 0.35778 2.05754 -4.80000 5.86900 12.04198 2.11045 0.77308 0.35959 2.05179 @@ -36352,7 +36488,7 @@ Lambda passive -5.42000 6.11080 12.36251 2.26282 0.77308 0.37030 2.02306 -5.56000 6.16540 12.43963 2.29722 0.77308 0.37260 2.01765 -5.70000 6.22000 12.49817 2.32302 0.77308 0.37430 2.01377 - -5.70000 6.22000 29.52407 -3.74934 1.01322 0.00000 5.09679 + -5.70000 6.22000 29.52407 -3.74934 0.73559 0.00000 5.09679 -5.83000 4.51070 26.69275 -4.39816 0.73559 0.00000 5.91765 -5.96000 2.80140 22.94010 -5.26256 0.73559 0.00000 8.18880 -6.09000 1.09210 19.20204 -6.12564 0.73559 0.00000 17.58268 @@ -36363,22 +36499,22 @@ Lambda passive -6.61000 0.00000 7.38689 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.81929 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81836 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.49500 1.07205 0.56530 0.00000 0.62423 0.00000 0.70308 - -8.49500 1.07205 0.56530 0.00000 0.41243 0.00000 0.41243 - -8.64450 2.26655 0.56530 0.00000 0.24941 0.00000 0.24941 - -8.79400 3.46106 0.56530 0.00000 0.16333 0.00000 0.16333 + -7.00000 0.00000 16.81775 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.64450 2.26655 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.79400 3.46106 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 4.65556 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 5.85007 0.00000 0.00000 0.00000 0.00000 0.00000 -9.24250 7.04457 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -36412,13 +36548,13 @@ Lambda passive -10.97000 18.32530 56.43541 0.00000 0.73559 0.00000 3.07964 -11.03000 18.64870 57.13269 0.00000 0.73559 0.00000 3.06363 -11.09000 18.97210 57.65563 0.00000 0.73559 0.00000 3.05198 - -11.09000 18.97210 58.09430 0.00000 0.62759 0.00000 3.04243 + -11.09000 18.97210 58.09430 0.00000 0.73559 0.00000 3.04243 -11.18100 19.46259 58.88737 0.00000 0.73559 0.00000 3.02567 -11.27200 19.95308 59.94473 0.00000 0.73559 0.00000 3.00428 -11.36300 20.44357 61.00202 0.00000 0.73559 0.00000 2.98392 -11.45400 20.93406 62.05925 2.32973 0.73559 0.11129 2.96451 -11.54500 21.42455 62.85213 4.16637 0.73559 0.19559 2.95054 - -11.54500 21.42455 63.38070 4.29186 1.55631 0.19918 2.94149 + -11.54500 21.42455 63.38070 4.29186 0.73559 0.19918 2.94149 -11.63600 21.91504 64.17351 4.48013 0.73559 0.20443 2.92829 -11.72700 22.40553 65.23056 4.73120 0.73559 0.21116 2.91136 -11.81800 22.89602 66.28754 4.98233 0.73559 0.21761 2.89516 @@ -36530,156 +36666,156 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00085 0.00085 1 0 A - 0.12326 0.00000 1.49857 0.18745 1 0 A - 0.21913 0.00000 2.99714 0.37490 1 0 A - 0.32870 0.00000 4.49572 0.56235 1 0 A - 0.43826 0.00000 5.99429 0.74980 1 0 A - 0.52044 0.00000 7.11822 0.89039 1 0 A - 0.57522 0.00000 7.86750 0.98412 1 0 A - 0.65740 0.00000 8.99143 1.12470 1 0 A - 0.76696 0.00000 10.49001 1.31216 1 0 A - 0.87653 0.00000 11.98858 1.49961 1 0 A - 0.98609 0.00000 13.48715 1.68706 1 0 A - 1.06827 0.00000 14.61108 1.82765 1 0 A - 0.61265 0.00000 9.49915 2.70732 1 0 A - 0.80856 0.00000 9.82449 2.94388 1 0 A - 1.06723 0.00000 10.31636 3.25930 1 0 A - 1.32497 0.00000 10.85071 3.57472 1 0 A - 1.58239 0.00000 11.41125 3.89013 1 0 A - 1.77535 0.00000 11.84299 4.12670 1 0 A - 1.84341 0.00000 11.96393 4.21007 1 0 A - 1.85459 0.58860 11.90511 4.22364 1 0 A - 1.86943 1.17720 11.85220 4.24173 1 0 A - 1.88423 1.76580 11.82020 4.25982 1 0 A - 1.89901 2.35440 11.80241 4.27791 1 0 A - 1.91009 2.94300 11.79562 4.29148 1 0 A - 1.91993 2.94300 11.79378 4.30354 1 0 A - 1.93838 3.92400 11.79805 4.32615 1 0 A - 1.96297 4.90500 11.81449 4.35630 1 0 A - 1.98756 5.88600 11.84027 4.38645 1 0 A - 2.01214 6.86700 11.87273 4.41660 1 0 A - 2.03057 7.84800 11.90027 4.43921 1 0 A - 2.04286 7.84800 11.92001 4.49029 1 0 A - 2.06130 8.82900 11.95133 4.47690 1 0 A - 2.08587 9.81000 11.99547 4.50705 1 0 A - 2.11045 10.79100 12.04198 4.53720 1 0 A - 2.13503 11.77200 12.09039 4.56735 1 0 A - 2.15346 12.75300 12.12771 4.58996 1 0 A - 2.16820 12.75300 12.15817 4.60805 1 0 A - 2.19401 14.12640 12.21256 4.63971 1 0 A - 2.22841 15.49980 12.28672 4.68192 1 0 A - 2.26282 16.87320 12.36251 4.72413 1 0 A - 2.29722 18.24660 12.43963 4.76634 1 0 A - 2.32302 19.62000 12.49817 4.79800 1 0 A - 0.00000 19.62000 29.52407 5.86926 1 0 A - 0.00000 23.43530 26.69275 3.31800 1 0 A - 0.00000 27.25060 22.94010 2.06067 1 0 A - 0.00000 31.06590 19.20204 0.80333 1 0 A - 0.00000 34.88120 0.00000 0.00000 1 0 A - 0.00000 38.69650 0.00000 0.00000 1 0 A - 0.00000 38.69650 0.00000 0.00000 1 0 A - 0.00000 42.51180 0.00000 0.00000 1 0 A - 0.00000 46.32710 0.00000 0.00000 1 0 A - 0.00000 50.14240 0.00000 0.00000 1 0 A - 0.00000 53.95770 0.00000 0.00000 1 0 A - 0.00000 57.77300 0.00000 0.00000 1 0 A - 0.00000 57.77300 0.00000 0.00000 1 0 A - 0.00000 59.23959 0.00000 0.00000 1 0 A - 0.00000 60.70619 0.00000 0.00000 1 0 A - 0.00000 62.17278 0.00000 0.00000 1 0 A - 0.00000 63.63938 0.00000 0.00000 1 0 A - 0.00000 65.10598 0.00000 0.00000 1 0 A - 0.00000 65.10598 0.00000 0.00000 1 0 A - 0.00000 66.57257 0.00000 0.00000 1 0 A - 0.00000 68.03916 0.00000 0.00000 1 0 A - 0.00000 69.50576 0.00000 0.00000 1 0 A - 0.00000 70.97236 0.00000 0.00000 1 0 A - 0.00000 72.43895 0.54378 0.48280 1 0 A - 0.00000 72.43895 0.56530 0.56530 1 0 A - 0.00000 73.90555 0.56530 0.56530 1 0 A - 0.00000 75.37214 0.56530 0.56530 1 0 A - 0.00000 76.83873 0.00000 0.00000 1 0 A - 0.00000 78.30533 0.00000 0.00000 1 0 A - 0.00000 79.77192 0.00000 0.00000 1 0 A - 0.00000 79.77192 0.00000 0.00000 1 0 A - 0.00000 81.23852 0.00000 0.00000 1 0 A - 0.00000 82.70511 0.00000 0.00000 1 0 A - 0.00000 84.17171 11.41116 6.63439 1 0 A - 0.00000 85.63831 40.78651 7.38004 1 0 A - 0.00000 87.10490 43.29000 7.93927 1 0 A - 0.00000 87.10490 44.15182 8.12818 1 0 A - 0.00000 87.12452 44.18614 8.13566 1 0 A - 0.00000 87.14414 44.23191 8.14564 1 0 A - 0.00000 87.16376 44.27770 8.15561 1 0 A - 0.00000 87.18338 44.32351 8.16559 1 0 A + 0.00085 0.00000 0.00085 0.00085 402 100 P + 1.49857 0.00000 1.49857 0.18745 402 100 P + 2.99714 0.00000 2.99714 0.37490 402 100 P + 4.49572 0.00000 4.49572 0.56235 402 100 P + 5.99429 0.00000 5.99429 0.74980 402 100 P + 7.11822 0.00000 7.11822 0.89039 402 100 P + 7.86750 0.00000 7.86750 0.98412 402 100 P + 8.99143 0.00000 8.99143 1.12470 402 100 P + 10.49001 0.00000 10.49001 1.31216 402 100 P + 11.98858 0.00000 11.98858 1.49961 402 100 P + 13.48715 0.00000 13.48715 1.68706 402 100 P + 14.61108 0.00000 14.61108 1.82765 402 100 P + 9.49915 0.00000 9.49915 2.70732 402 100 P + 9.82449 0.00000 9.82449 2.94388 402 100 P + 10.31636 0.00000 10.31636 3.25930 402 100 P + 10.85071 0.00000 10.85071 3.57472 402 100 P + 11.41125 0.00000 11.41125 3.89013 402 100 P + 11.84299 0.00000 11.84299 4.12670 402 100 P + 11.96393 0.00000 11.96393 4.21007 402 100 P + 11.90511 0.58860 11.90511 4.22364 402 100 P + 11.85220 1.17720 11.85220 4.24173 402 100 P + 11.82020 1.76580 11.82020 4.25982 402 100 P + 11.80241 2.35440 11.80241 4.27791 402 100 P + 11.79562 2.94300 11.79562 4.29148 402 100 P + 11.79378 2.94300 11.79378 4.30354 402 100 P + 11.79805 3.92400 11.79805 4.32615 402 100 P + 11.81449 4.90500 11.81449 4.35630 402 100 P + 11.84027 5.88600 11.84027 4.38645 402 100 P + 11.87273 6.86700 11.87273 4.41660 402 100 P + 11.90027 7.84800 11.90027 4.43921 402 100 P + 11.92001 7.84800 11.92001 4.45429 402 100 P + 11.95133 8.82900 11.95133 4.47690 402 100 P + 11.99547 9.81000 11.99547 4.50705 402 100 P + 12.04198 10.79100 12.04198 4.53720 402 100 P + 12.09039 11.77200 12.09039 4.56735 402 100 P + 12.12771 12.75300 12.12771 4.58996 402 100 P + 12.15817 12.75300 12.15817 4.60805 402 100 P + 12.21256 14.12640 12.21256 4.63971 402 100 P + 12.28672 15.49980 12.28672 4.68192 402 100 P + 12.36251 16.87320 12.36251 4.72413 402 100 P + 12.43963 18.24660 12.43963 4.76634 402 100 P + 12.49817 19.62000 12.49817 4.79800 402 100 P + 29.52407 19.62000 29.52407 4.26101 402 100 P + 26.69275 23.43530 26.69275 3.31800 402 100 P + 22.94010 27.25060 22.94010 2.06067 402 100 P + 19.20204 31.06590 19.20204 0.80333 402 100 P + 0.00000 34.88120 0.00000 0.00000 402 0 P + 0.00000 38.69650 0.00000 0.00000 402 0 P + 0.00000 38.69650 0.00000 0.00000 402 0 P + 0.00000 42.51180 0.00000 0.00000 402 0 P + 0.00000 46.32710 0.00000 0.00000 402 0 P + 0.00000 50.14240 0.00000 0.00000 402 0 P + 0.00000 53.95770 0.00000 0.00000 402 0 P + 0.00000 57.77300 0.00000 0.00000 402 0 P + 0.00000 57.77300 0.00000 0.00000 402 0 P + 0.00000 59.23959 0.00000 0.00000 402 0 P + 0.00000 60.70619 0.00000 0.00000 402 0 P + 0.00000 62.17278 0.00000 0.00000 402 0 P + 0.00000 63.63938 0.00000 0.00000 402 0 P + 0.00000 65.10598 0.00000 0.00000 402 0 P + 0.00000 65.10598 0.00000 0.00000 402 0 P + 0.00000 66.57257 0.00000 0.00000 402 0 P + 0.00000 68.03916 0.00000 0.00000 402 0 P + 0.00000 69.50576 0.00000 0.00000 402 0 P + 0.00000 70.97236 0.00000 0.00000 402 0 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 73.90555 0.00000 0.00000 402 0 P + 0.00000 75.37214 0.00000 0.00000 402 0 P + 0.00000 76.83873 0.00000 0.00000 402 0 P + 0.00000 78.30533 0.00000 0.00000 402 0 P + 0.00000 79.77192 0.00000 0.00000 402 0 P + 0.00000 79.77192 0.00000 0.00000 402 0 P + 0.00000 81.23852 0.00000 0.00000 402 0 P + 0.00000 82.70511 0.00000 0.00000 402 0 P + 11.41116 84.17171 11.41116 6.63439 402 100 P + 40.78651 85.63831 40.78651 7.38004 402 100 P + 43.29000 87.10490 43.29000 7.93927 402 100 P + 44.15182 87.10490 44.15182 8.12818 402 100 P + 44.18614 87.12452 44.18614 8.13566 402 100 P + 44.23191 87.14414 44.23191 8.14564 402 100 P + 44.27770 87.16376 44.27770 8.15561 402 100 P + 44.32351 87.18338 44.32351 8.16559 402 100 P 0.00000 87.20300 44.35788 8.17307 1 0 A 0.00000 87.20300 45.26777 9.67163 1 0 A - 45.59931 87.57578 45.59931 9.78462 402 100 P - 46.04134 87.94856 46.04134 9.93528 402 100 P - 46.48334 88.32134 46.48334 10.08595 402 100 P - 46.92533 88.69412 46.92533 10.23661 402 100 P - 47.25681 89.06690 47.25681 10.34961 402 100 P - 47.71620 89.06690 47.71620 10.50622 402 100 P - 48.76285 90.24410 48.76285 10.86305 402 100 P - 50.15823 91.42130 50.15823 11.33883 402 100 P - 51.55343 92.59850 51.55343 11.81460 402 100 P - 52.94847 93.77570 52.94847 12.29038 402 100 P - 53.99465 94.95290 53.99465 12.64721 402 100 P - 54.51771 94.95290 54.51771 12.82563 402 100 P - 55.04074 95.54150 55.04074 13.00404 402 100 P - 55.73809 96.13010 55.73809 13.24193 402 100 P - 56.43541 96.71870 56.43541 13.47982 402 100 P - 57.13269 97.30730 57.13269 13.71771 402 100 P - 57.65563 97.89590 57.65563 13.89612 402 100 P - 58.09430 97.89590 58.09430 11.98366 402 100 P - 58.88737 98.78861 58.88737 14.31639 402 100 P - 59.94473 99.68132 59.94473 14.67719 402 100 P - 61.00202 100.57403 61.00202 15.03799 402 100 P - 62.05925 101.46674 62.05925 15.39878 402 100 P - 62.85213 102.35945 62.85213 15.66938 402 100 P - 63.38070 102.35945 63.38070 33.53398 402 100 P - 64.17351 103.25216 64.17351 16.12038 402 100 P - 65.23056 104.14487 65.23056 16.48118 402 100 P - 66.28754 105.03758 66.28754 16.84197 402 100 P - 67.34448 105.93029 67.34448 17.20277 402 100 P - 68.13714 106.82300 68.13714 17.47337 402 100 P - 46.66516 106.82300 46.66516 19.07514 402 100 P - 50.51599 104.80400 50.51599 20.92415 402 100 P - 55.64434 102.78500 55.64434 23.38950 402 100 P - 60.76544 100.76600 60.76544 25.85485 402 100 P - 65.87938 98.74700 65.87938 28.32020 402 100 P - 69.71046 96.72800 69.71046 30.16921 402 100 P - 248.62298 96.72800 248.62298 20.99591 402 100 P - 235.67191 98.10140 235.67191 21.55502 402 100 P - 232.76276 99.47480 232.76276 22.30051 402 100 P - 234.93109 100.84820 234.93109 23.04600 402 100 P - 239.08105 102.22160 239.08105 23.79149 402 100 P - 242.86146 103.59500 242.86146 24.35061 402 100 P - 245.61190 103.59500 245.61190 24.72335 402 100 P - 249.97691 104.96840 249.97691 25.28247 402 100 P - 256.08735 106.34180 256.08735 26.02796 402 100 P - 262.44668 107.71520 262.44668 26.77345 402 100 P - 268.98093 109.08860 268.98093 27.51894 402 100 P - 273.96392 110.46200 273.96392 28.07806 402 100 P - 277.32093 110.46200 277.32093 28.45080 402 100 P - 282.39910 111.83540 282.39910 29.00992 402 100 P - 289.22858 113.20880 289.22858 29.75541 402 100 P - 296.11486 114.58220 296.11486 30.50090 402 100 P - 303.04615 115.95560 303.04615 31.24639 402 100 P - 308.26780 117.32900 308.26780 31.80550 402 100 P - 311.75946 117.32900 311.75946 32.17825 402 100 P - 317.01057 118.70240 317.01057 32.73736 402 100 P - 324.03174 120.07580 324.03174 33.48285 402 100 P - 331.07304 121.44920 331.07304 34.22834 402 100 P - 338.13122 122.82260 338.13122 34.97383 402 100 P - 343.43395 124.19600 343.43395 35.53295 402 100 P - 346.97337 124.19600 346.97337 35.90569 402 100 P - 352.28820 125.56940 352.28820 36.46481 402 100 P - 359.38313 126.94280 359.38313 37.21030 402 100 P - 366.48700 128.31620 366.48700 37.95579 402 100 P - 373.59861 129.68960 373.59861 38.70128 402 100 P - 378.93659 131.06300 378.93659 39.26040 402 100 P + 0.00000 87.57578 45.59931 9.78462 1 0 A + 0.00000 87.94856 46.04134 9.93528 1 0 A + 0.00000 88.32134 46.48334 10.08595 1 0 A + 0.00000 88.69412 46.92533 10.23661 1 0 A + 0.00000 89.06690 47.25681 10.34961 1 0 A + 0.00000 89.06690 47.71620 10.50622 1 0 A + 0.00000 90.24410 48.76285 10.86305 1 0 A + 0.00000 91.42130 50.15823 11.33883 1 0 A + 0.00000 92.59850 51.55343 11.81460 1 0 A + 0.00000 93.77570 52.94847 12.29038 1 0 A + 0.00000 94.95290 53.99465 12.64721 1 0 A + 0.00000 94.95290 54.51771 12.82563 1 0 A + 0.00000 95.54150 55.04074 13.00404 1 0 A + 0.00000 96.13010 55.73809 13.24193 1 0 A + 0.00000 96.71870 56.43541 13.47982 1 0 A + 0.00000 97.30730 57.13269 13.71771 1 0 A + 0.00000 97.89590 57.65563 13.89612 1 0 A + 0.00000 97.89590 58.09430 14.04580 1 0 A + 0.00000 98.78861 58.88737 14.31639 1 0 A + 0.00000 99.68132 59.94473 14.67719 1 0 A + 0.00000 100.57403 61.00202 15.03799 1 0 A + 2.32973 101.46674 62.05925 15.39878 1 0 A + 4.16637 102.35945 62.85213 15.66938 1 0 A + 4.29186 102.35945 63.38070 15.84978 1 0 A + 4.48013 103.25216 64.17351 16.12038 1 0 A + 4.73120 104.14487 65.23056 16.48118 1 0 A + 4.98233 105.03758 66.28754 16.84197 1 0 A + 5.23351 105.93029 67.34448 17.20277 1 0 A + 5.42193 106.82300 68.13714 17.47337 1 0 A + 11.56921 106.82300 46.66516 19.07514 1 0 A + 13.07606 104.80400 50.51599 20.92415 1 0 A + 15.08528 102.78500 55.64434 23.38950 1 0 A + 17.09457 100.76600 60.76544 25.85485 1 0 A + 19.10394 98.74700 65.87938 28.32020 1 0 A + 20.61100 96.72800 69.71046 30.16921 1 0 A + 11.92417 96.72800 248.62298 20.99591 1 0 A + 12.24735 98.10140 235.67191 21.55502 1 0 A + 12.67786 99.47480 232.76276 22.30051 1 0 A + 13.10793 100.84820 234.93109 23.04600 1 0 A + 13.53763 102.22160 239.08105 23.79149 1 0 A + 13.85968 103.59500 242.86146 24.35061 1 0 A + 14.07428 103.59500 245.61190 24.72335 1 0 A + 14.39602 104.96840 249.97691 25.28247 1 0 A + 14.82479 106.34180 256.08735 26.02796 1 0 A + 15.25331 107.71520 262.44668 26.77345 1 0 A + 15.68160 109.08860 268.98093 27.51894 1 0 A + 16.00270 110.46200 273.96392 28.07806 1 0 A + 16.21669 110.46200 277.32093 28.45080 1 0 A + 16.53760 111.83540 282.39910 29.00992 1 0 A + 16.96535 113.20880 289.22858 29.75541 1 0 A + 17.39294 114.58220 296.11486 30.50090 1 0 A + 17.82039 115.95560 303.04615 31.24639 1 0 A + 18.14091 117.32900 308.26780 31.80550 1 0 A + 18.35454 117.32900 311.75946 32.17825 1 0 A + 18.67494 118.70240 317.01057 32.73736 1 0 A + 19.10206 120.07580 324.03174 33.48285 1 0 A + 19.52908 121.44920 331.07304 34.22834 1 0 A + 19.95601 122.82260 338.13122 34.97383 1 0 A + 20.27616 124.19600 343.43395 35.53295 1 0 A + 20.48957 124.19600 346.97337 35.90569 1 0 A + 20.80965 125.56940 352.28820 36.46481 1 0 A + 21.23637 126.94280 359.38313 37.21030 1 0 A + 21.66302 128.31620 366.48700 37.95579 1 0 A + 22.08962 129.68960 373.59861 38.70128 1 0 A + 22.40953 131.06300 378.93659 39.26040 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -36694,13 +36830,13 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 0.110 'Ophooglaag zand' - -3.50 4.411 'Hollandveen' - -5.70 0.000 'Oude Zeeklei' - -7.00 0.000 'Wadzand' - -10.00 112.705 'Hydrobiaklei' - -12.00 29.099 'Basisveen' - -12.50 1036.225 'Eerste zandlaag' + -3.00 1.495 'Ophooglaag zand' + -3.50 26.234 'Hollandveen' + -5.70 10.868 'Oude Zeeklei' + -7.00 11.438 'Wadzand' + -10.00 2.611 'Hydrobiaklei' + -12.00 8.045 'Basisveen' + -12.50 60.113 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -36717,13 +36853,13 @@ Layer name [DATA] 0.80 0.00 'Ophooglaag zand' -1.00 0.00 'Geulse klei' - -3.00 0.04 'Ophooglaag zand' + -3.00 -0.48 'Ophooglaag zand' -3.50 0.00 'Hollandveen' - -5.70 0.00 'Oude Zeeklei' - -7.00 0.00 'Wadzand' - -10.00 20.92 'Hydrobiaklei' + -5.70 -2.02 'Oude Zeeklei' + -7.00 -3.01 'Wadzand' + -10.00 -0.48 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 351.05 'Eerste zandlaag' + -12.50 -20.36 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37032,7 +37168,7 @@ Lambda passive -7.44850 17.34153 54.87934 0.00000 0.61542 0.00000 3.16462 -7.59800 18.53417 58.42642 0.00000 0.61584 0.00000 3.15236 -7.74750 19.72676 61.12178 0.00000 0.61623 0.00000 3.14597 - -7.74750 19.72676 62.93285 0.00000 0.61806 0.00000 3.14273 + -7.74750 19.72676 62.93285 0.00000 0.61623 0.00000 3.14273 -7.89700 20.91931 65.66598 6.68316 0.61660 0.31947 3.13901 -8.04650 22.11182 69.33207 8.63672 0.61694 0.39059 3.13552 -8.19600 23.30431 73.01861 9.10452 0.61725 0.39068 3.13327 @@ -37044,7 +37180,7 @@ Lambda passive -8.94350 29.26658 93.14862 11.74809 0.61858 0.40142 3.18276 -9.09300 30.45903 96.91091 12.20700 0.61880 0.40077 3.18168 -9.24250 31.65149 99.73462 12.55119 0.61902 0.40031 3.18099 - -9.24250 31.65149 101.61803 12.78066 0.67358 0.40003 3.18057 + -9.24250 31.65149 101.61803 12.78066 0.61902 0.40003 3.18057 -9.39200 32.84396 104.44435 13.12505 0.61922 0.39962 3.18002 -9.54150 34.03645 108.21456 13.58554 0.61941 0.39915 3.17937 -9.69100 35.22896 111.98944 14.04630 0.61959 0.39871 3.17890 @@ -37074,7 +37210,7 @@ Lambda passive -10.97000 42.91008 109.30400 15.52719 0.73214 0.36185 2.54728 -11.03000 43.23277 109.97577 15.69208 0.73218 0.36297 2.54381 -11.09000 43.55547 110.48005 15.81576 0.73222 0.36379 2.54124 - -11.09000 43.55547 110.90340 15.91950 0.62548 0.36448 2.53912 + -11.09000 43.55547 110.90340 15.91950 0.73222 0.36448 2.53912 -11.18100 44.04491 111.66949 16.10707 0.73228 0.36570 2.53536 -11.27200 44.53436 112.69216 16.35716 0.73233 0.36729 2.53045 -11.36300 45.02382 113.71622 16.60725 0.73239 0.36885 2.52569 @@ -37104,13 +37240,13 @@ Lambda passive -13.62000 75.79293 387.37661 22.32812 0.52073 0.29459 5.11099 -13.76000 77.21836 393.78535 22.76376 0.52078 0.29480 5.09963 -13.90000 78.64381 398.58566 23.09009 0.52083 0.29494 5.09131 - -13.90000 78.64381 401.81942 23.30727 0.49477 0.29503 5.08631 + -13.90000 78.64381 401.81942 23.30727 0.52083 0.29503 5.08631 -14.04000 80.06929 406.71497 23.63203 0.52087 0.29514 5.07954 -14.18000 81.49478 413.30564 24.06458 0.52092 0.29529 5.07156 -14.32000 82.92030 419.95819 24.49665 0.52096 0.29542 5.06460 -14.46000 84.34583 426.64391 24.92830 0.52100 0.29555 5.05827 -14.60000 85.77139 431.68055 25.25179 0.52104 0.29564 5.05392 - -14.60000 85.77139 435.05094 25.46732 0.72604 0.29569 5.05123 + -14.60000 85.77139 435.05094 25.46732 0.52104 0.29569 5.05123 -14.74000 87.19696 440.12309 25.79045 0.52108 0.29577 5.04746 -14.88000 88.62256 447.00372 26.22101 0.52111 0.29587 5.04390 -15.02000 90.04817 453.99552 26.65107 0.52115 0.29596 5.04170 @@ -37222,126 +37358,126 @@ Status character 0.00000 38.74950 0.00000 0.00000 -1 0 - 0.00000 39.73050 0.00000 0.00000 -1 0 - 0.00000 40.71150 0.00000 0.00000 -1 0 - - 0.00010 40.71150 0.00010 0.00010 402 100 P - 2.58147 41.69250 2.58147 0.02247 402 100 P - 2.64336 42.67350 2.64336 0.04496 402 100 P - 2.70526 43.65450 2.70526 0.06749 402 100 P - 2.76715 44.63550 2.76715 0.09010 402 100 P - 2.81357 45.61650 2.81357 0.10715 402 100 P - 2.85071 45.61650 2.85071 0.12066 402 100 P - 2.91570 46.98990 2.91570 0.14474 402 100 P - 3.00235 48.36330 3.00235 0.17695 402 100 P - 3.08901 49.73670 3.08901 0.20946 402 100 P - 3.17566 51.11010 3.17566 0.24232 402 100 P - 3.24065 52.48350 3.24065 0.26756 402 100 P - 19.11624 52.48350 19.11624 0.44203 402 100 P - 20.98002 53.25880 20.98002 1.22887 402 100 P - 23.74731 54.03410 23.74731 2.20009 402 100 P - 26.58767 54.80940 26.58767 3.17168 402 100 P - 29.44732 55.58470 29.44732 4.14364 402 100 P - 31.20357 56.36000 31.20357 4.87697 402 100 P - 31.96437 56.36000 31.96437 5.35496 402 100 P - 34.09264 57.13530 34.09264 6.08868 402 100 P - 36.92962 57.91060 36.92962 7.06175 402 100 P - 39.76582 58.68590 39.76582 8.03519 402 100 P - 42.60136 59.46120 42.60136 9.00897 402 100 P - 44.72764 60.23650 44.72764 9.74204 402 100 P - 45.64163 60.23650 45.64163 8.63227 402 100 P - 48.04411 61.70309 48.04411 9.18983 402 100 P - 51.41068 63.16969 51.41068 9.93088 402 100 P - 54.87934 64.63629 54.87934 10.67231 402 100 P - 58.42642 66.10288 58.42642 11.41412 402 100 P - 61.12178 67.56948 61.12178 11.97256 402 100 P - 62.93285 67.56948 62.93285 12.37649 402 100 P - 65.66598 69.03607 65.66598 12.89878 402 100 P - 69.33207 70.50267 69.33207 13.64157 402 100 P - 73.01861 71.96926 73.01861 14.38466 402 100 P - 77.72968 73.43586 77.72968 15.12802 402 100 P - 80.96331 74.90245 80.96331 15.68744 402 100 P - 82.82530 74.90245 82.82530 16.05580 402 100 P - 85.63633 76.36905 85.63633 16.61546 402 100 P - 89.39014 77.83564 89.39014 17.35950 402 100 P - 93.14862 79.30224 93.14862 18.10375 402 100 P - 96.91091 80.76883 96.91091 18.84818 402 100 P - 99.73462 82.23543 99.73462 19.40824 402 100 P - 101.61803 82.23543 101.61803 21.52047 402 100 P - 104.44435 83.70202 104.44435 20.33753 402 100 P - 108.21456 85.16862 108.21456 21.08243 402 100 P - 111.98944 86.63521 111.98944 21.82746 402 100 P - 115.80156 88.10181 115.80156 22.57260 402 100 P - 118.66938 89.56840 118.66938 23.13304 402 100 P - 119.63826 89.56840 119.63826 23.32034 402 100 P - 119.67657 89.58802 119.67657 23.32783 402 100 P - 119.72776 89.60764 119.72776 23.33780 402 100 P - 119.77894 89.62726 119.77894 23.34778 402 100 P - 119.83005 89.64688 119.83005 23.35775 402 100 P + 0.00000 40.71150 0.00010 0.00010 1 0 A + 0.00000 41.69250 2.58147 0.02247 1 0 A + 0.00000 42.67350 2.64336 0.04496 1 0 A + 0.00000 43.65450 2.70526 0.06749 1 0 A + 0.00000 44.63550 2.76715 0.09010 1 0 A + 0.00000 45.61650 2.81357 0.10715 1 0 A + 0.00000 45.61650 2.85071 0.12066 1 0 A + 0.00000 46.98990 2.91570 0.14474 1 0 A + 0.00000 48.36330 3.00235 0.17695 1 0 A + 0.00000 49.73670 3.08901 0.20946 1 0 A + 0.00000 51.11010 3.17566 0.24232 1 0 A + 0.00000 52.48350 3.24065 0.26756 1 0 A + 0.00000 52.48350 19.11624 0.44203 1 0 A + 0.00000 53.25880 20.98002 1.22887 1 0 A + 0.00000 54.03410 23.74731 2.20009 1 0 A + 0.00000 54.80940 26.58767 3.17168 1 0 A + 0.00000 55.58470 29.44732 4.14364 1 0 A + 0.00000 56.36000 31.20357 4.87697 1 0 A + 0.00000 56.36000 31.96437 5.35496 1 0 A + 0.00000 57.13530 34.09264 6.08868 1 0 A + 0.00000 57.91060 36.92962 7.06175 1 0 A + 0.00000 58.68590 39.76582 8.03519 1 0 A + 0.00000 59.46120 42.60136 9.00897 1 0 A + 0.00000 60.23650 44.72764 9.74204 1 0 A + 0.00000 60.23650 45.64163 8.63227 1 0 A + 0.00000 61.70309 48.04411 9.18983 1 0 A + 0.00000 63.16969 51.41068 9.93088 1 0 A + 0.00000 64.63629 54.87934 10.67231 1 0 A + 0.00000 66.10288 58.42642 11.41412 1 0 A + 0.00000 67.56948 61.12178 11.97256 1 0 A + 0.00000 67.56948 62.93285 12.34001 1 0 A + 6.68316 69.03607 65.66598 12.89878 1 0 A + 8.63672 70.50267 69.33207 13.64157 1 0 A + 9.10452 71.96926 73.01861 14.38466 1 0 A + 9.83886 73.43586 77.72968 15.12802 1 0 A + 10.25668 74.90245 80.96331 15.68744 1 0 A + 10.48612 74.90245 82.82530 16.05580 1 0 A + 10.83028 76.36905 85.63633 16.61546 1 0 A + 11.28918 77.83564 89.39014 17.35950 1 0 A + 11.74809 79.30224 93.14862 18.10375 1 0 A + 12.20700 80.76883 96.91091 18.84818 1 0 A + 12.55119 82.23543 99.73462 19.40824 1 0 A + 12.78066 82.23543 101.61803 19.77732 1 0 A + 13.12505 83.70202 104.44435 20.33753 1 0 A + 13.58554 85.16862 108.21456 21.08243 1 0 A + 14.04630 86.63521 111.98944 21.82746 1 0 A + 14.50706 88.10181 115.80156 22.57260 1 0 A + 14.85263 89.56840 118.66938 23.13304 1 0 A + 14.96936 89.56840 119.63826 23.32034 1 0 A + 14.97399 89.58802 119.67657 23.32783 1 0 A + 14.98015 89.60764 119.72776 23.33780 1 0 A + 14.98631 89.62726 119.77894 23.34778 1 0 A + 14.99248 89.64688 119.83005 23.35775 1 0 A 119.86849 89.66650 119.86849 23.36524 402 100 P 98.67467 89.66650 98.67467 27.60812 402 100 P - 12.97449 90.03928 98.98576 27.72134 1 0 A - 13.07842 90.41206 99.40104 27.87193 1 0 A - 13.18234 90.78484 99.81689 28.02252 1 0 A - 13.28627 91.15762 100.23329 28.17312 1 0 A - 13.36421 91.53040 100.54593 28.28636 1 0 A - 13.47222 91.53040 100.97978 28.44175 1 0 A - 13.71833 92.70760 101.97036 28.79937 1 0 A - 14.04646 93.88480 103.29501 29.27506 1 0 A - 14.37457 95.06200 104.62394 29.75080 1 0 A - 14.70290 96.23920 105.95681 30.22659 1 0 A - 14.95005 97.41640 106.95873 30.58432 1 0 A - 15.07372 97.41640 107.46044 30.76147 1 0 A - 15.19740 98.00500 107.96266 30.94035 1 0 A - 15.36229 98.59360 108.63295 31.17829 1 0 A - 15.52719 99.18220 109.30400 31.41624 1 0 A - 15.69208 99.77080 109.97577 31.65420 1 0 A - 15.81576 100.35940 110.48005 31.83310 1 0 A - 15.91950 100.35940 110.90340 27.31957 1 0 A - 16.10707 101.25211 111.66949 32.25310 1 0 A - 16.35716 102.14482 112.69216 32.61406 1 0 A - 16.60725 103.03753 113.71622 32.97503 1 0 A - 16.85734 103.93024 114.74890 33.33601 1 0 A - 17.04491 104.82295 115.53624 33.60738 1 0 A - 17.16995 104.82295 116.06193 33.78665 1 0 A - 17.35752 105.71566 116.85103 34.05803 1 0 A - 17.60762 106.60837 117.90406 34.41906 1 0 A - 17.85772 107.50108 118.95814 34.78010 1 0 A - 18.10782 108.39379 120.01320 35.14115 1 0 A - 18.29540 109.28650 120.80509 35.41254 1 0 A - 27.28095 109.28650 88.43431 37.93553 1 0 A - 28.78575 107.26750 92.38053 39.78725 1 0 A - 30.79222 105.24850 97.63307 42.25292 1 0 A - 32.79874 103.22950 102.87478 44.71860 1 0 A - 34.80533 101.21050 108.10578 47.18429 1 0 A - 36.31031 99.19150 112.02242 49.03543 1 0 A - 19.15107 99.19150 354.48012 33.68464 1 0 A - 19.48577 100.56490 353.70392 34.24526 1 0 A - 19.93023 101.93830 355.54901 34.99127 1 0 A - 20.35488 103.31170 359.19154 35.73730 1 0 A - 20.68697 104.68510 363.87695 36.48333 1 0 A - 20.92259 106.05850 367.81517 37.04388 1 0 A - 21.12485 106.05850 370.60407 37.41488 1 0 A - 21.45395 107.43190 374.98522 37.97544 1 0 A - 21.89176 108.80530 381.07243 38.72151 1 0 A - 22.32812 110.17870 387.37661 39.46758 1 0 A - 22.76376 111.55210 393.78535 40.21366 1 0 A - 23.09009 112.92550 398.58566 40.77415 1 0 A - 23.30727 112.92550 401.81942 39.08718 1 0 A - 23.63203 114.29890 406.71497 41.70584 1 0 A - 24.06458 115.67230 413.30564 42.45194 1 0 A - 24.49665 117.04570 419.95819 43.19804 1 0 A - 24.92830 118.41910 426.64391 43.94415 1 0 A - 25.25179 119.79250 431.68055 44.50456 1 0 A - 25.46732 119.79250 435.05094 62.53257 1 0 A - 25.79045 121.16590 440.12309 45.43636 1 0 A - 26.22101 122.53930 447.00372 46.18247 1 0 A - 26.65107 123.91270 453.99552 46.92858 1 0 A - 27.07994 125.28610 461.00762 47.67470 1 0 A - 27.40134 126.65950 466.27782 48.23504 1 0 A - 27.61552 126.65950 469.79659 48.60658 1 0 A - 27.93667 128.03290 475.08190 49.16692 1 0 A - 28.36467 129.40630 482.13975 49.91303 1 0 A - 28.79247 130.77970 489.20910 50.65914 1 0 A - 29.22007 132.15310 496.28854 51.40525 1 0 A - 29.54065 133.52650 501.60376 51.96553 1 0 A + 98.98576 90.03928 98.98576 27.72134 402 100 P + 99.40104 90.41206 99.40104 27.87193 402 100 P + 99.81689 90.78484 99.81689 28.02252 402 100 P + 100.23329 91.15762 100.23329 28.17312 402 100 P + 100.54593 91.53040 100.54593 28.28636 402 100 P + 100.97978 91.53040 100.97978 28.44175 402 100 P + 101.97036 92.70760 101.97036 28.79937 402 100 P + 103.29501 93.88480 103.29501 29.27506 402 100 P + 104.62394 95.06200 104.62394 29.75080 402 100 P + 105.95681 96.23920 105.95681 30.22659 402 100 P + 106.95873 97.41640 106.95873 30.58432 402 100 P + 107.46044 97.41640 107.46044 30.76147 402 100 P + 107.96266 98.00500 107.96266 30.94035 402 100 P + 108.63295 98.59360 108.63295 31.17829 402 100 P + 109.30400 99.18220 109.30400 31.41624 402 100 P + 109.97577 99.77080 109.97577 31.65420 402 100 P + 110.48005 100.35940 110.48005 31.83310 402 100 P + 110.90340 100.35940 110.90340 31.98176 402 100 P + 111.66949 101.25211 111.66949 32.25310 402 100 P + 112.69216 102.14482 112.69216 32.61406 402 100 P + 113.71622 103.03753 113.71622 32.97503 402 100 P + 114.74890 103.93024 114.74890 33.33601 402 100 P + 115.53624 104.82295 115.53624 33.60738 402 100 P + 116.06193 104.82295 116.06193 33.78665 402 100 P + 116.85103 105.71566 116.85103 34.05803 402 100 P + 117.90406 106.60837 117.90406 34.41906 402 100 P + 118.95814 107.50108 118.95814 34.78010 402 100 P + 120.01320 108.39379 120.01320 35.14115 402 100 P + 120.80509 109.28650 120.80509 35.41254 402 100 P + 88.43431 109.28650 88.43431 37.93553 402 100 P + 92.38053 107.26750 92.38053 39.78725 402 100 P + 97.63307 105.24850 97.63307 42.25292 402 100 P + 102.87478 103.22950 102.87478 44.71860 402 100 P + 108.10578 101.21050 108.10578 47.18429 402 100 P + 112.02242 99.19150 112.02242 49.03543 402 100 P + 354.48012 99.19150 354.48012 33.68464 402 100 P + 353.70392 100.56490 353.70392 34.24526 402 100 P + 355.54901 101.93830 355.54901 34.99127 402 100 P + 359.19154 103.31170 359.19154 35.73730 402 100 P + 363.87695 104.68510 363.87695 36.48333 402 100 P + 367.81517 106.05850 367.81517 37.04388 402 100 P + 370.60407 106.05850 370.60407 37.41488 402 100 P + 374.98522 107.43190 374.98522 37.97544 402 100 P + 381.07243 108.80530 381.07243 38.72151 402 100 P + 387.37661 110.17870 387.37661 39.46758 402 100 P + 393.78535 111.55210 393.78535 40.21366 402 100 P + 398.58566 112.92550 398.58566 40.77415 402 100 P + 401.81942 112.92550 401.81942 41.14536 402 100 P + 406.71497 114.29890 406.71497 41.70584 402 100 P + 413.30564 115.67230 413.30564 42.45194 402 100 P + 419.95819 117.04570 419.95819 43.19804 402 100 P + 426.64391 118.41910 426.64391 43.94415 402 100 P + 431.68055 119.79250 431.68055 44.50456 402 100 P + 435.05094 119.79250 435.05094 44.87595 402 100 P + 440.12309 121.16590 440.12309 45.43636 402 100 P + 447.00372 122.53930 447.00372 46.18247 402 100 P + 453.99552 123.91270 453.99552 46.92858 402 100 P + 461.00762 125.28610 461.00762 47.67470 402 100 P + 466.27782 126.65950 466.27782 48.23504 402 100 P + 469.79659 126.65950 469.79659 48.60658 402 100 P + 475.08190 128.03290 475.08190 49.16692 402 100 P + 482.13975 129.40630 482.13975 49.91303 402 100 P + 489.20910 130.77970 489.20910 50.65914 402 100 P + 496.28854 132.15310 496.28854 51.40525 402 100 P + 501.60376 133.52650 501.60376 51.96553 402 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -37356,12 +37492,12 @@ Layer name [DATA] 0.80 0.000 'Ophooglaag zand' -1.00 0.000 'Geulse klei' - -3.00 3.342 'Hollandveen' - -5.70 41.295 'Oude Zeeklei' - -7.00 245.002 'Wadzand' - -10.00 32.852 'Hydrobiaklei' - -12.00 15.898 'Basisveen' - -12.50 85.051 'Eerste zandlaag' + -3.00 0.000 'Hollandveen' + -5.70 0.000 'Oude Zeeklei' + -7.00 25.081 'Wadzand' + -10.00 219.391 'Hydrobiaklei' + -12.00 50.122 'Basisveen' + -12.50 1467.182 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -37379,11 +37515,11 @@ Layer name 0.80 0.00 'Ophooglaag zand' -1.00 0.00 'Geulse klei' -3.00 0.00 'Hollandveen' - -5.70 -7.66 'Oude Zeeklei' - -7.00 -64.48 'Wadzand' - -10.00 -6.10 'Hydrobiaklei' + -5.70 0.00 'Oude Zeeklei' + -7.00 6.60 'Wadzand' + -10.00 40.72 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -28.81 'Eerste zandlaag' + -12.50 497.04 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -37649,19 +37785,19 @@ Is favorable (0=false, 1=true) [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] 100.00 : Percentage mobilized resistance left - 9.55 : Percentage mobilized resistance right + 9.53 : Percentage mobilized resistance right 822.37 : Effective left - 117.42 : Effective right + 117.17 : Effective right 1120.54 : Water pressure left 930.94 : Water pressure right 822.37 : Max effective resistance left - 1229.22 : Max effective resistance right + 1228.97 : Max effective resistance right -9783.03 : Max moment left --13860.19 : Max moment right +-13858.63 : Max moment right -9783.03 : Max mobilized moment left - -980.87 : Max mobilized moment right + -979.31 : Max mobilized moment right 268.21 : Vertical force left - 25.47 : Vertical force right + 25.40 : Vertical force right 100.0 : Max mobilized moment percentage left 7.1 : Max mobilized moment percentage right -2.43 : Level of single support @@ -37670,17 +37806,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --25.47 : Active force +-25.40 : Active force 268.21 : Passive force --25.47 : Plugged active force +-25.40 : Plugged active force 268.21 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -242.75 : Resulting Vertical Force Unplugged -242.75 : Resulting Vertical Force Plugged +242.81 : Resulting Vertical Force Unplugged +242.81 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -37693,210 +37829,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -1.16792 5.54199 7.19441751274E12 - -0.68318 5.54199 7.13610259405E12 - -0.19845 5.54199 7.07778767536E12 - 0.28629 5.54199 7.01947275668E12 - 0.77103 5.54199 6.96115783799E12 - 1.25577 5.54199 6.9028429193E12 - -1.56830 7.73877 6.9028429193E12 - -0.89646 7.73877 6.84452800061E12 - -0.22462 7.73877 6.78621308192E12 - 0.44722 7.73877 6.72789816323E12 - 1.11906 7.73877 6.66958324454E12 - 1.79089 7.73877 6.61126832585E12 - 131.83297 -5278.91038 6.61126832585E12 - 79.00820 -5278.91087 6.60440774718E12 - 26.18342 -5278.91235 6.59754716851E12 - -26.64138 -5278.91480 6.59068658984E12 - -79.46621 -5278.91823 6.58382601117E12 - -132.29108 -5278.92265 6.5769654325E12 - 0.73439 -9.36330 6.5769654325E12 - -0.39558 -9.49279 6.49463848847E12 - -1.54956 -9.76355 6.41231154444E12 - -2.74450 -10.17557 6.32998460041E12 - -3.99737 -10.72885 6.24765765637E12 - -5.32510 -11.42340 6.16533071234E12 - -3.73210 -14.84592 6.16533071234E12 - -5.25002 -15.53262 6.09672492565E12 - -6.84151 -16.31742 6.02811913896E12 - -8.51639 -17.20032 5.95951335226E12 - -10.28446 -18.18132 5.89090756557E12 - -12.15554 -19.26042 5.82230177887E12 - -12.46412 -10.44035 5.82230177887E12 - -13.56600 -11.61755 5.75369599218E12 - -14.79050 -12.89285 5.68509020549E12 - -16.14744 -14.26625 5.61648441879E12 - -17.64662 -15.73775 5.5478786321E12 - -19.29785 -17.30735 5.47927284541E12 - -17.23706 -39.00900 5.47927284541E12 - -20.67465 -40.43732 5.42027186885E12 - -24.23819 -41.93819 5.3612708923E12 - -27.93393 -43.51162 5.30226991574E12 - -31.76810 -45.15760 5.24326893918E12 - -35.74695 -46.87613 5.18426796263E12 - -32.60288 -33.01963 5.18426796263E12 - -36.49000 -35.40952 5.1060573658E12 - -40.65684 -37.92690 5.02784676897E12 - -45.11793 -40.57178 4.94963617213E12 - -49.88780 -43.34414 4.8714255753E12 - -54.98098 -46.24400 4.79321497847E12 - -55.66374 -33.20610 4.79321497847E12 - -57.66098 -34.78355 4.75205150646E12 - -59.75393 -36.39632 4.71088803444E12 - -61.94470 -38.04440 4.66972456243E12 - -64.23542 -39.72779 4.62856109041E12 - -66.62820 -41.44650 4.58739761839E12 - -54.62729 736.34739 4.58739761839E12 - -39.99280 735.78163 4.57367646106E12 - -25.36936 735.24191 4.55995530372E12 - -10.75646 734.72824 4.54623414638E12 - 3.84644 734.24062 4.53251298904E12 - 18.43981 733.77529 4.5187918317E12 - 64.62712 -393.85687 4.5187918317E12 - 56.65387 -394.28866 4.50507067436E12 - 48.67221 -394.69814 4.49134951702E12 - 40.68261 -395.08157 4.47762835968E12 - 32.68561 -395.43896 4.46390720235E12 - 24.68169 -395.77404 4.45018604501E12 - 81.92218 418.63072 4.45018604501E12 - 98.60862 417.77329 4.42274373033E12 - 115.26075 416.91650 4.39530141565E12 - 131.87870 416.06454 4.36785910098E12 - 148.46269 415.21878 4.3404167863E12 - 165.01295 414.37718 4.31297447162E12 - 161.01828 785.60223 4.31297447162E12 - 208.15887 784.34649 4.2718109996E12 - 255.22403 783.08740 4.23064752759E12 - 302.21355 781.82576 4.18948405557E12 - 349.12732 780.56263 4.14832058356E12 - 395.96529 779.29876 4.10715711154E12 - 400.93711 769.02855 4.10715711154E12 - 477.73452 766.92179 4.03855132485E12 - 554.32129 764.81607 3.96994553815E12 - 630.69759 762.71246 3.90133975146E12 - 706.86367 760.61176 3.83273396477E12 - 782.81984 758.51406 3.76412817807E12 - 783.84517 755.13128 3.76412817807E12 - 859.25364 753.03849 3.69552239138E12 - 934.45300 750.94948 3.62691660468E12 - 1009.44370 748.86501 3.55831081799E12 - 1084.22618 746.78528 3.4897050313E12 - 1158.80091 744.70983 3.4210992446E12 - 1158.97549 740.26730 3.4210992446E12 - 1262.39354 737.37236 3.32505114323E12 - 1365.40690 734.48642 3.22900304186E12 - 1468.01695 731.61098 3.13295494048E12 - 1570.22520 728.74624 3.03690683911E12 - 1672.03307 725.89099 2.94085873774E12 - 1670.95187 713.66643 2.94085873774E12 - 1763.72883 713.21337 2.85167121503E12 - 1856.44183 712.66255 2.76248369233E12 - 1949.07302 711.95503 2.67329616962E12 - 2041.55856 710.08661 2.58410864692E12 - 2133.71449 707.30026 2.49492112421E12 - 2132.02105 699.36374 2.49492112421E12 - 2222.75989 696.90758 2.4057336015E12 - 2313.20088 694.78163 2.3165460788E12 - 2403.38697 692.98587 2.22735855609E12 - 2493.36107 691.52032 2.13817103338E12 - 2583.16611 690.38496 2.04898351067E12 - 2584.08932 688.71600 2.04898351067E12 - 2686.98320 687.60020 1.94641785955E12 - 2789.71027 686.48441 1.84385220844E12 - 2892.27052 685.36862 1.74128655732E12 - 2994.66397 684.25282 1.6387209062E12 - 3096.89061 683.13703 1.53615525508E12 - 3096.74415 684.40481 1.53615525508E12 - 3198.99352 683.28902 1.43358960396E12 - 3301.07607 682.17323 1.33102395284E12 - 3402.99181 681.05743 1.22845830172E12 - 3504.74075 679.94164 1.1258926506E12 - 3606.32489 678.86649 1.02332699948E12 - 3606.29048 679.31193 1.02332699948E12 - 3707.73431 678.28065 920761348352.00000 - 3809.02396 677.24937 818195697226.00000 - 3910.15732 676.17584 715630046100.00000 - 4011.12598 675.06004 613064394972.00000 - 4111.92784 673.94425 510498743843.00000 - 4112.34281 673.32134 510498743843.00000 - 4212.93519 672.20554 407933092713.00000 - 4313.36076 671.08975 305367441582.00000 - 4413.66202 670.82694 202801790449.00000 - 4514.11843 673.61292 100236139315.00000 - 4615.05826 675.54592 -2329511819.49000 - 4612.93548 -1475.21268 -2329511819.49000 - 4609.98594 -1475.22761 -3701627553.74000 - 4607.03636 -1475.24254 -5073743288.00000 - 4604.08675 -1475.25746 -6445859022.25000 - 4601.13711 -1475.27239 -7817974756.51000 - 4598.18744 -1475.28732 -9190090490.77000 - 4580.18665 -1153.98237 -9190090490.77000 - 4536.34109 -1154.26599 -35260289441.70000 - 4492.48476 -1154.54960 -61330488392.70000 - 4448.61764 -1154.83321 -87400687343.80000 - 4404.73975 -1155.11683 -113470886295.00000 - 4360.85108 -1155.40044 -139541085246.00000 - 4359.51239 -1123.86935 -139541085246.00000 - 4224.61543 -1124.76497 -221868029303.00000 - 4089.61100 -1125.66059 -304194973361.00000 - 3954.49909 -1126.55621 -386521917420.00000 - 3819.27971 -1127.45183 -468848861479.00000 - 3683.95285 -1128.34745 -551175805539.00000 - 3685.38589 -1101.85338 -551175805539.00000 - 3619.21894 -1102.30119 -592339277569.00000 - 3553.02512 -1102.74900 -633502749600.00000 - 3486.80444 -1103.19681 -674666221630.00000 - 3420.55689 -1103.64462 -715829693661.00000 - 3354.28246 -1104.09243 -756993165692.00000 - 3353.88449 -1067.00847 -756993165692.00000 - 3256.70818 -1068.54150 -819424431606.00000 - 3159.31178 -1071.42699 -881855697520.00000 - 3061.64841 -1074.40903 -944286963434.00000 - 2963.71250 -1077.38158 -1.00671822935E12 - 2865.51103 -1080.24902 -1.06914949526E12 - 2866.05702 -1036.05562 -1.06914949526E12 - 2771.61664 -1038.94010 -1.13158076118E12 - 2676.91098 -1041.88901 -1.1940120271E12 - 2581.93362 -1044.91152 -1.25644329301E12 - 2486.67786 -1048.00761 -1.31887455893E12 - 2391.13729 -1051.16808 -1.38130582484E12 - 2389.17138 -1010.47475 -1.38130582484E12 - 2288.04604 -1012.07063 -1.44991161157E12 - 2186.74828 -1013.93570 -1.51851739829E12 - 2085.24867 -1016.10726 -1.58712318501E12 - 1983.51664 -1018.58415 -1.65572897173E12 - 1881.52296 -1021.32747 -1.72433475846E12 - 1870.24430 -864.45724 -1.72433475846E12 - 1747.77870 -884.80263 -1.82038285987E12 - 1622.54658 -904.30525 -1.91643096128E12 - 1494.56267 -924.19880 -2.01247906269E12 - 1363.74503 -944.81184 -2.10852716411E12 - 1229.98965 -966.14034 -2.20457526552E12 - 1228.97321 -689.07129 -2.20457526552E12 - 1130.94922 -711.49105 -2.30062336693E12 - 1029.73408 -734.69865 -2.39667146835E12 - 925.20617 -758.81822 -2.49271956976E12 - 817.23712 -783.85896 -2.58876767118E12 - 705.70295 -809.71049 -2.68481577259E12 - 703.13362 -488.91628 -2.68481577259E12 - 632.80624 -515.93218 -2.78086387401E12 - 558.64212 -543.76608 -2.87691197542E12 - 480.51571 -572.53663 -2.97296007684E12 - 398.29576 -602.24549 -3.06900817826E12 - 311.85630 -632.77635 -3.16505627967E12 - 310.08592 -271.11446 -3.16505627967E12 - 269.92628 -302.82103 -3.26110438109E12 - 225.27281 -335.35137 -3.3571524825E12 - 175.99916 -368.82369 -3.45320058392E12 - 121.97342 -403.23848 -3.54924868534E12 - 63.06911 -438.47826 -3.64529678675E12 - 61.51514 -30.92116 -3.64529678675E12 - 54.64885 -67.34000 -3.74134488817E12 - 42.62888 -104.58445 -3.83739298958E12 - 25.32862 -142.77268 -3.933441091E12 - 2.61594 -181.90489 -4.02948919242E12 - -25.63583 -221.86320 -4.12553729383E12 + -2.18895 10.35132 7.23336283944E12 + -1.29550 10.35132 7.17467600242E12 + -0.40205 10.35132 7.1159891654E12 + 0.49139 10.35132 7.05730232839E12 + 1.38484 10.35132 6.99861549137E12 + 2.27829 10.35132 6.93992865436E12 + -2.59032 12.55579 6.93992865436E12 + -1.50956 12.55579 6.88124181734E12 + -0.42881 12.55579 6.82255498033E12 + 0.65194 12.55579 6.76386814331E12 + 1.73269 12.55579 6.70518130629E12 + 2.81345 12.55579 6.64649446928E12 + 165.95345 -6643.01976 6.64649446928E12 + 99.48139 -6643.02025 6.63959013551E12 + 33.00932 -6643.02172 6.63268580174E12 + -33.46277 -6643.02417 6.62578146798E12 + -99.93489 -6643.02761 6.61887713421E12 + -166.40704 -6643.03202 6.61197280045E12 + -0.17969 -6.36659 6.61197280045E12 + -0.95027 -6.49609 6.52912079525E12 + -1.74487 -6.76684 6.44626879005E12 + -2.58043 -7.17886 6.36341678485E12 + -3.47391 -7.73215 6.28056477965E12 + -4.44226 -8.42669 6.19771277445E12 + -5.66258 -7.12045 6.19771277445E12 + -6.40815 -7.80715 6.12866943679E12 + -7.22729 -8.59195 6.05962609912E12 + -8.12981 -9.47485 5.99058276145E12 + -9.12553 -10.45585 5.92153942379E12 + -10.22426 -11.53495 5.85249608612E12 + -10.64628 -17.93522 5.85249608612E12 + -12.49785 -19.11242 5.78345274846E12 + -14.47204 -20.38772 5.71440941079E12 + -16.57866 -21.76112 5.64536607313E12 + -18.82753 -23.23262 5.57632273546E12 + -21.22846 -24.80222 5.5072793978E12 + -17.97676 -35.97153 5.5072793978E12 + -21.15353 -37.39985 5.4479021274E12 + -24.45627 -38.90072 5.38852485701E12 + -27.89119 -40.47414 5.32914758662E12 + -31.46455 -42.12012 5.26977031623E12 + -35.18259 -43.83866 5.21039304583E12 + -32.49857 -33.79465 5.21039304583E12 + -36.47396 -36.18455 5.13168364089E12 + -40.72907 -38.70193 5.05297423596E12 + -45.27842 -41.34680 4.97426483102E12 + -50.13656 -44.11917 4.89555542608E12 + -55.31802 -47.01902 4.81684602114E12 + -52.00202 -58.24370 4.81684602114E12 + -55.50215 -59.82115 4.77542001854E12 + -59.09799 -61.43391 4.73399401594E12 + -62.79165 -63.08199 4.69256801334E12 + -66.58525 -64.76539 4.65114201074E12 + -70.48092 -66.48410 4.60971600814E12 + -73.19553 1111.31419 4.60971600814E12 + -51.06072 1110.74843 4.59590734061E12 + -28.93696 1110.20871 4.58209867308E12 + -6.82374 1109.69504 4.56829000554E12 + 15.27947 1109.20741 4.55448133801E12 + 37.37316 1108.74209 4.54067267048E12 + 44.34696 20.99664 4.54067267048E12 + 44.67306 20.56486 4.52686400294E12 + 44.99074 20.15538 4.51305533541E12 + 45.30048 19.77194 4.49924666788E12 + 45.60282 19.41456 4.48543800035E12 + 45.89824 19.07947 4.47162933281E12 + 80.49286 441.45640 4.47162933281E12 + 98.09080 440.59897 4.44401199775E12 + 115.65442 439.74218 4.41639466268E12 + 133.18387 438.89022 4.38877732761E12 + 150.67936 438.04447 4.36115999255E12 + 168.14112 437.20286 4.33354265748E12 + 159.44427 807.44915 4.33354265748E12 + 207.89568 806.19341 4.29211665488E12 + 256.27164 804.93432 4.25069065228E12 + 304.57197 803.67268 4.20926464968E12 + 352.79656 802.40955 4.16783864708E12 + 400.94533 801.14568 4.12641264448E12 + 403.47309 772.20812 4.12641264448E12 + 480.58846 770.10136 4.05736930682E12 + 557.49320 767.99564 3.98832596915E12 + 634.18746 765.89202 3.91928263149E12 + 710.67151 763.79132 3.85023929382E12 + 786.94563 761.69362 3.78119595616E12 + 788.65190 757.40520 3.78119595616E12 + 864.28766 755.31242 3.71215261849E12 + 939.71431 753.22341 3.64310928082E12 + 1014.93229 751.13893 3.57406594316E12 + 1089.94206 749.05920 3.50502260549E12 + 1164.74408 746.98376 3.43597926782E12 + 1165.22003 744.67276 3.43597926782E12 + 1269.25488 741.77782 3.33931859509E12 + 1372.88504 738.89188 3.24265792236E12 + 1476.11190 736.01643 3.14599724962E12 + 1578.93694 733.15169 3.04933657689E12 + 1681.36162 730.29645 2.95267590415E12 + 1680.33422 717.18151 2.95267590415E12 + 1773.56854 716.72845 2.86291956518E12 + 1866.73890 716.17763 2.77316322622E12 + 1959.82744 715.47011 2.68340688725E12 + 2052.77033 713.60169 2.59365054828E12 + 2145.38362 710.81533 2.50389420931E12 + 2143.71934 703.77335 2.50389420931E12 + 2235.03139 701.31719 2.41413787034E12 + 2326.04560 699.19124 2.32438153136E12 + 2416.80490 697.39548 2.23462519239E12 + 2507.35222 695.92993 2.14486885342E12 + 2597.73047 694.79457 2.05511251445E12 + 2598.72807 692.29339 2.05511251445E12 + 2702.15689 691.17760 1.95189272463E12 + 2805.41890 690.06180 1.84867293481E12 + 2908.51409 688.94601 1.74545314499E12 + 3011.44248 687.83022 1.64223335517E12 + 3114.20405 686.71442 1.53901356535E12 + 3114.08244 687.43243 1.53901356535E12 + 3216.78452 686.31663 1.43579377552E12 + 3319.31980 685.20084 1.3325739857E12 + 3421.68826 684.08505 1.22935419587E12 + 3523.88991 682.96925 1.12613440605E12 + 3625.92475 681.85346 1.02291461622E12 + 3625.52525 682.43615 1.02291461622E12 + 3727.42962 681.32036 919694826392.00000 + 3829.16719 680.20456 816475036563.00000 + 3930.73794 679.08877 713255246732.00000 + 4032.14188 677.97298 610035456901.00000 + 4133.37901 676.85718 506815667069.00000 + 4133.49781 675.85759 506815667069.00000 + 4234.46945 674.74180 403595877235.00000 + 4335.27429 673.62600 300376087400.00000 + 4435.95482 673.36319 197156297564.00000 + 4536.79049 676.14918 93936507727.20000 + 4638.10959 678.08217 -9283282111.34000 + 4620.06341 884.53732 -9283282111.34000 + 4621.83320 884.52239 -10664148865.00000 + 4623.60296 884.50746 -12045015618.70000 + 4625.37268 884.49254 -13425882372.40000 + 4627.14238 884.47761 -14806749126.10000 + 4628.91205 884.46268 -16187615879.80000 + 4585.14295 -1163.16499 -16187615879.80000 + 4540.94847 -1163.44860 -42424084200.20000 + 4496.74320 -1163.73222 -68660552520.70000 + 4452.52716 -1164.01583 -94897020841.30000 + 4408.30035 -1164.29944 -121133489162.00000 + 4364.06275 -1164.58306 -147369957483.00000 + 4363.08660 -1131.00033 -147369957483.00000 + 4227.33404 -1131.89595 -230221962706.00000 + 4091.47402 -1132.79157 -313073967931.00000 + 3955.50651 -1133.68719 -395925973156.00000 + 3819.43154 -1134.58281 -478777978382.00000 + 3683.24909 -1135.47843 -561629983609.00000 + 3683.98196 -1106.79014 -561629983609.00000 + 3617.51865 -1107.23795 -603055986223.00000 + 3551.02847 -1107.68576 -644481988837.00000 + 3484.51142 -1108.13357 -685907991450.00000 + 3417.96751 -1108.58138 -727333994065.00000 + 3351.39672 -1109.02919 -768759996679.00000 + 3351.31500 -1074.45280 -768759996679.00000 + 3253.46108 -1075.98583 -831589433977.00000 + 3155.38706 -1078.87133 -894418871276.00000 + 3057.04607 -1081.85336 -957248308576.00000 + 2958.43254 -1084.82592 -1.02007774588E12 + 2859.55344 -1087.69335 -1.08290718318E12 + 2860.85543 -1036.22664 -1.08290718318E12 + 2766.39933 -1039.11112 -1.14573662048E12 + 2671.67796 -1042.06003 -1.20856605778E12 + 2576.68489 -1045.08254 -1.27139549508E12 + 2481.41342 -1048.17863 -1.33422493238E12 + 2385.85714 -1051.33910 -1.39705436968E12 + 2384.43969 -1010.92885 -1.39705436968E12 + 2283.26898 -1012.52473 -1.46609770737E12 + 2181.92586 -1014.38981 -1.53514104507E12 + 2080.38090 -1016.56137 -1.60418438276E12 + 1978.60350 -1019.03825 -1.67322772046E12 + 1876.56446 -1021.78157 -1.74227105815E12 + 1866.09146 -861.43698 -1.74227105815E12 + 1744.04871 -881.78237 -1.83893173092E12 + 1619.23946 -901.28499 -1.9355924037E12 + 1491.67841 -921.17853 -2.03225307647E12 + 1361.28362 -941.79158 -2.12891374925E12 + 1227.95111 -963.12008 -2.22557442202E12 + 1225.82038 -685.66534 -2.22557442202E12 + 1128.27344 -708.08510 -2.3222350948E12 + 1027.53535 -731.29270 -2.41889576757E12 + 923.48449 -755.41228 -2.51555644035E12 + 815.99249 -780.45301 -2.61221711313E12 + 704.93538 -806.30454 -2.7088777859E12 + 701.65347 -487.12032 -2.7088777859E12 + 631.57746 -514.13622 -2.80553845868E12 + 557.66472 -541.97012 -2.90219913146E12 + 479.78968 -570.74067 -2.99885980423E12 + 397.82110 -600.44953 -3.09552047701E12 + 311.63300 -630.98039 -3.19218114979E12 + 309.82237 -270.55501 -3.19218114979E12 + 269.74108 -302.26158 -3.28884182256E12 + 225.16595 -334.79192 -3.38550249534E12 + 175.97065 -368.26424 -3.48216316812E12 + 122.02325 -402.67903 -3.57882384089E12 + 63.19729 -437.91881 -3.67548451367E12 + 61.46796 -32.02334 -3.67548451367E12 + 54.44750 -68.44217 -3.77214518645E12 + 42.27337 -105.68663 -3.86880585923E12 + 24.81895 -143.87485 -3.965466532E12 + 1.95211 -183.00706 -4.06212720478E12 + -26.45383 -222.96538 -4.15878787756E12 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -38236,7 +38372,7 @@ Lambda passive -4.30000 5.67400 11.84027 1.98756 0.77308 0.35029 2.08676 -4.40000 5.71300 11.87273 2.01214 0.77308 0.35220 2.07819 -4.50000 5.75200 11.90027 2.03057 0.77308 0.35362 2.07240 - -4.50000 5.75200 11.92001 2.04286 0.77933 0.35456 2.06882 + -4.50000 5.75200 11.92001 2.04286 0.77308 0.35456 2.06882 -4.60000 5.79100 11.95133 2.06130 0.77308 0.35595 2.06378 -4.70000 5.83000 11.99547 2.08587 0.77308 0.35778 2.05754 -4.80000 5.86900 12.04198 2.11045 0.77308 0.35959 2.05179 @@ -38248,7 +38384,7 @@ Lambda passive -5.42000 6.11080 12.36251 2.26282 0.77308 0.37030 2.02306 -5.56000 6.16540 12.43963 2.29722 0.77308 0.37260 2.01765 -5.70000 6.22000 12.49817 2.32302 0.77308 0.37430 2.01377 - -5.70000 6.22000 29.52407 -3.74934 1.01322 0.00000 5.09679 + -5.70000 6.22000 29.52407 -3.74934 0.73559 0.00000 5.09679 -5.83000 4.51070 26.69275 -4.39816 0.73559 0.00000 5.91765 -5.96000 2.80140 22.94010 -5.26256 0.73559 0.00000 8.18880 -6.09000 1.09210 19.20204 -6.12564 0.73559 0.00000 17.58268 @@ -38259,22 +38395,22 @@ Lambda passive -6.61000 0.00000 7.38689 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.81929 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81836 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.14950 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.29900 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.44850 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.59800 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.74750 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -7.89700 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.04650 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.19600 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.34550 0.00000 0.56530 0.00000 0.00000 0.00000 0.00000 - -8.49500 1.07205 0.56530 0.00000 0.62423 0.00000 0.70308 - -8.49500 1.07205 0.56530 0.00000 0.41243 0.00000 0.41243 - -8.64450 2.26655 0.56530 0.00000 0.24941 0.00000 0.24941 - -8.79400 3.46106 0.56530 0.00000 0.16333 0.00000 0.16333 + -7.00000 0.00000 16.81775 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.59800 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.74750 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -7.89700 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.04650 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.19600 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.34550 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.49500 1.07205 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.64450 2.26655 0.00000 0.00000 0.00000 0.00000 0.00000 + -8.79400 3.46106 0.00000 0.00000 0.00000 0.00000 0.00000 -8.94350 4.65556 0.00000 0.00000 0.00000 0.00000 0.00000 -9.09300 5.85007 0.00000 0.00000 0.00000 0.00000 0.00000 -9.24250 7.04457 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -38308,13 +38444,13 @@ Lambda passive -10.97000 18.32530 56.43541 0.00000 0.73559 0.00000 3.07964 -11.03000 18.64870 57.13269 0.00000 0.73559 0.00000 3.06363 -11.09000 18.97210 57.65563 0.00000 0.73559 0.00000 3.05198 - -11.09000 18.97210 58.09430 0.00000 0.62759 0.00000 3.04243 + -11.09000 18.97210 58.09430 0.00000 0.73559 0.00000 3.04243 -11.18100 19.46259 58.88737 0.00000 0.73559 0.00000 3.02567 -11.27200 19.95308 59.94473 0.00000 0.73559 0.00000 3.00428 -11.36300 20.44357 61.00202 0.00000 0.73559 0.00000 2.98392 -11.45400 20.93406 62.05925 2.32973 0.73559 0.11129 2.96451 -11.54500 21.42455 62.85213 4.16637 0.73559 0.19559 2.95054 - -11.54500 21.42455 63.38070 4.29186 1.55631 0.19918 2.94149 + -11.54500 21.42455 63.38070 4.29186 0.73559 0.19918 2.94149 -11.63600 21.91504 64.17351 4.48013 0.73559 0.20443 2.92829 -11.72700 22.40553 65.23056 4.73120 0.73559 0.21116 2.91136 -11.81800 22.89602 66.28754 4.98233 0.73559 0.21761 2.89516 @@ -38456,7 +38592,7 @@ Status character 11.84027 5.88600 11.84027 4.38645 402 100 P 11.87273 6.86700 11.87273 4.41660 402 100 P 11.90027 7.84800 11.90027 4.43921 402 100 P - 11.92001 7.84800 11.92001 4.49029 402 100 P + 11.92001 7.84800 11.92001 4.45429 402 100 P 11.95133 8.82900 11.95133 4.47690 402 100 P 11.99547 9.81000 11.99547 4.50705 402 100 P 12.04198 10.79100 12.04198 4.53720 402 100 P @@ -38468,7 +38604,7 @@ Status character 12.36251 16.87320 12.36251 4.72413 402 100 P 12.43963 18.24660 12.43963 4.76634 402 100 P 12.49817 19.62000 12.49817 4.79800 402 100 P - 29.52407 19.62000 29.52407 5.86926 402 100 P + 29.52407 19.62000 29.52407 4.26101 402 100 P 26.69275 23.43530 26.69275 3.31800 402 100 P 22.94010 27.25060 22.94010 2.06067 402 100 P 19.20204 31.06590 19.20204 0.80333 402 100 P @@ -38491,16 +38627,16 @@ Status character 0.00000 68.03916 0.00000 0.00000 402 0 P 0.00000 69.50576 0.00000 0.00000 402 0 P 0.00000 70.97236 0.00000 0.00000 402 0 P - 0.54378 72.43895 0.54378 0.48280 402 100 P - 0.56530 72.43895 0.56530 0.56530 402 100 P - 0.56530 73.90555 0.56530 0.56530 402 100 P - 0.56530 75.37214 0.56530 0.56530 402 100 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 72.43895 0.00000 0.00000 402 0 P + 0.00000 73.90555 0.00000 0.00000 402 0 P + 0.00000 75.37214 0.00000 0.00000 402 0 P 0.00000 76.83873 0.00000 0.00000 402 0 P 0.00000 78.30533 0.00000 0.00000 402 0 P 0.00000 79.77192 0.00000 0.00000 402 0 P 0.00000 79.77192 0.00000 0.00000 402 0 P - 0.00000 81.23852 0.00000 0.00000 402 100 P - 0.00000 82.70511 0.00000 0.00000 402 100 P + 0.00000 81.23852 0.00000 0.00000 402 0 P + 0.00000 82.70511 0.00000 0.00000 402 0 P 11.41116 84.17171 11.41116 6.63439 402 100 P 40.78651 85.63831 40.78651 7.38004 402 100 P 0.00000 87.10490 43.29000 7.93927 1 0 A @@ -38528,13 +38664,13 @@ Status character 0.00000 96.71870 56.43541 13.47982 1 0 A 0.00000 97.30730 57.13269 13.71771 1 0 A 0.00000 97.89590 57.65563 13.89612 1 0 A - 0.00000 97.89590 58.09430 11.98366 1 0 A + 0.00000 97.89590 58.09430 14.04580 1 0 A 0.00000 98.78861 58.88737 14.31639 1 0 A 0.00000 99.68132 59.94473 14.67719 1 0 A 0.00000 100.57403 61.00202 15.03799 1 0 A 2.32973 101.46674 62.05925 15.39878 1 0 A 4.16637 102.35945 62.85213 15.66938 1 0 A - 4.29186 102.35945 63.38070 33.53398 1 0 A + 4.29186 102.35945 63.38070 15.84978 1 0 A 4.48013 103.25216 64.17351 16.12038 1 0 A 4.73120 104.14487 65.23056 16.48118 1 0 A 4.98233 105.03758 66.28754 16.84197 1 0 A @@ -38593,7 +38729,7 @@ Layer name -3.00 1.495 'Ophooglaag zand' -3.50 26.234 'Hollandveen' -5.70 10.868 'Oude Zeeklei' - -7.00 8.055 'Wadzand' + -7.00 7.804 'Wadzand' -10.00 2.611 'Hydrobiaklei' -12.00 8.045 'Basisveen' -12.50 60.113 'Eerste zandlaag' @@ -38616,7 +38752,7 @@ Layer name -3.00 -0.48 'Ophooglaag zand' -3.50 0.00 'Hollandveen' -5.70 -2.02 'Oude Zeeklei' - -7.00 -2.12 'Wadzand' + -7.00 -2.05 'Wadzand' -10.00 -0.48 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 -20.36 'Eerste zandlaag' @@ -38854,7 +38990,7 @@ Lambda passive -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 -13.76000 38.68930 195.38331 11.54129 0.52256 0.29831 5.05006 -13.90000 40.11590 200.68154 11.86119 0.52256 0.29833 5.04742 - -13.90000 40.11590 204.22293 12.07442 0.52346 0.29834 5.04596 + -13.90000 40.11590 204.22293 12.07442 0.52256 0.29834 5.04596 -14.04000 41.54250 209.54580 12.39421 0.52256 0.29835 5.04413 -14.18000 42.96910 216.65723 12.82053 0.52256 0.29837 5.04216 -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 @@ -38866,7 +39002,7 @@ Lambda passive -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 -15.16000 52.95530 266.67927 15.80326 0.52256 0.29843 5.03593 -15.30000 54.38190 272.05135 16.12275 0.52256 0.29843 5.03563 - -15.30000 54.38190 275.63352 16.33573 0.55432 0.29843 5.03546 + -15.30000 54.38190 275.63352 16.33573 0.52256 0.29843 5.03546 -15.44000 55.80850 281.00777 16.65520 0.52256 0.29843 5.03521 -15.58000 57.23510 288.17492 17.08114 0.52256 0.29844 5.03493 -15.72000 58.66170 295.34358 17.50706 0.52256 0.29844 5.03469 @@ -39074,7 +39210,7 @@ Status character 188.34940 110.17870 188.34940 19.47214 402 100 P 195.38331 111.55210 195.38331 20.21763 402 100 P 200.68154 112.92550 200.68154 20.77674 402 100 P - 204.22293 112.92550 204.22293 21.18575 402 100 P + 204.22293 112.92550 204.22293 21.14949 402 100 P 209.54580 114.29890 209.54580 21.70860 402 100 P 216.65723 115.67230 216.65723 22.45409 402 100 P 223.78193 117.04570 223.78193 23.19958 402 100 P @@ -39086,7 +39222,7 @@ Status character 259.51871 123.91270 259.51871 26.92703 402 100 P 266.67927 125.28610 266.67927 27.67252 402 100 P 272.05135 126.65950 272.05135 28.23164 402 100 P - 275.63352 126.65950 275.63352 30.34260 402 100 P + 275.63352 126.65950 275.63352 28.60438 402 100 P 281.00777 128.03290 281.00777 29.16350 402 100 P 288.17492 129.40630 288.17492 29.90899 402 100 P 295.34358 130.77970 295.34358 30.65448 402 100 P @@ -39367,7 +39503,7 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 256.31743 210000000.000 1 1 1 'Stempelraam boven dek' + -2.43000 256.30571 210000000.000 1 1 1 'Stempelraam boven dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -39392,20 +39528,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 13.21 : Percentage mobilized resistance left - 9.88 : Percentage mobilized resistance right - 103.02 : Effective left - 81.27 : Effective right + 13.20 : Percentage mobilized resistance left + 9.87 : Percentage mobilized resistance right + 102.93 : Effective left + 81.17 : Effective right 1083.97 : Water pressure left 1120.54 : Water pressure right 779.80 : Max effective resistance left 822.80 : Max effective resistance right -9316.87 : Max moment left -9786.82 : Max moment right --1184.66 : Max mobilized moment left - -976.71 : Max mobilized moment right - 31.07 : Vertical force left - 25.64 : Vertical force right +-1183.37 : Max mobilized moment left + -975.43 : Max mobilized moment right + 31.03 : Vertical force left + 25.61 : Vertical force right 12.7 : Max mobilized moment percentage left 10.0 : Max mobilized moment percentage right -2.43 : Level of single support @@ -39414,17 +39550,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --25.64 : Active force -31.07 : Passive force --25.64 : Plugged active force -31.07 : Plugged passive force +-25.61 : Active force +31.03 : Passive force +-25.61 : Plugged active force +31.03 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -5.43 : Resulting Vertical Force Unplugged -5.43 : Resulting Vertical Force Plugged +5.42 : Resulting Vertical Force Unplugged +5.42 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -39437,204 +39573,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -2.91119 - 0.00000 0.00000 -2.92794 - 0.00000 0.00000 -2.94468 - 0.00000 0.00000 -2.96143 - 0.00000 0.00000 -2.97817 - 0.00000 0.00000 -2.99492 - 0.00000 0.00000 -2.99492 - 0.00000 0.00000 -3.01166 - 0.00000 0.00000 -3.02841 - 0.00000 0.00000 -3.04515 - 0.00000 0.00000 -3.06190 - 0.00000 0.00000 -3.07864 - 0.00000 0.00000 -3.07864 - 0.00000 0.00049 -3.08061 - 0.00001 0.00196 -3.08258 - 0.00004 0.00441 -3.08455 - 0.00010 0.00785 -3.08652 - 0.00020 0.01226 -3.08849 - 0.00020 0.01226 -3.08849 - 0.00119 0.03973 -3.09637 - 0.00359 0.08289 -3.10425 - 0.00803 0.14175 -3.11213 - 0.01514 0.21631 -3.12001 - 0.02555 0.30656 -3.12789 - 0.02555 0.30656 -3.12789 - 0.05792 0.50276 -3.14365 - 0.10599 0.69896 -3.15942 - 0.16975 0.89516 -3.17520 - 0.24921 1.09136 -3.19099 - 0.34437 1.28756 -3.20680 - 0.34437 1.28756 -3.20680 - 0.48539 1.53281 -3.22660 - 0.65093 1.77806 -3.24646 - 0.84100 2.02331 -3.26641 - 1.05560 2.26856 -3.28646 - 1.29472 2.51381 -3.30665 - 1.29472 2.51381 -3.30665 - 1.55836 2.75906 -3.32700 - 1.84653 3.00431 -3.34754 - 2.15922 3.24956 -3.36832 - 2.49644 3.49481 -3.38937 - 2.85818 3.74006 -3.41074 - 2.85818 3.74006 -3.41074 - 3.18890 3.95098 -3.42940 - 3.53775 4.16189 -3.44836 - 3.90474 4.37281 -3.46765 - 4.28988 4.58372 -3.48730 - 4.69314 4.79464 -3.50735 - 4.69314 -10.02279 -3.50735 - 3.56648 -9.74320 -3.53457 - 2.47169 -9.46362 -3.56236 - 1.40878 -9.18403 -3.59057 - 0.37773 -8.90445 -3.61901 - -0.62144 -8.62486 -3.64751 - -0.62052 -8.64286 -3.64751 - -1.30410 -8.44666 -3.66745 - -1.97198 -8.25046 -3.68729 - -2.62417 -8.05426 -3.70698 - -3.26066 -7.85806 -3.72645 - -3.88146 -7.66186 -3.74566 - -3.88172 -7.66377 -3.74566 - -4.03450 -7.61472 -3.75042 - -4.18631 -7.56567 -3.75515 - -4.33713 -7.51662 -3.75987 - -4.48697 -7.46757 -3.76456 - -4.63583 -7.41852 -3.76923 - -4.63587 -7.41806 -3.76923 - -5.36541 -7.17281 -3.79221 - -6.07043 -6.92756 -3.81451 - -6.75093 -6.68231 -3.83605 - -7.40690 -6.43706 -3.85675 - -8.03834 -6.19181 -3.87651 - -8.03849 -6.18665 -3.87651 - -8.64489 -5.94140 -3.89525 - -9.22677 -5.69615 -3.91291 - -9.78412 -5.45090 -3.92941 - -10.31695 -5.20565 -3.94467 - -10.82526 -4.96040 -3.95864 - -10.82525 -4.95997 -3.95864 - -11.30898 -4.71472 -3.97124 - -11.76819 -4.46947 -3.98241 - -12.20287 -4.22422 -3.99210 - -12.61303 -3.97897 -4.00026 - -12.99867 -3.73372 -4.00683 - -12.99871 -3.73303 -4.00683 - -13.49730 -3.38968 -4.01326 - -13.94782 -3.04633 -4.01635 - -14.35027 -2.70298 -4.01601 - -14.70466 -2.35963 -4.01214 - -15.01097 -2.01628 -4.00464 - -15.01104 -2.01475 -4.00464 - -15.25223 -1.69592 -3.99434 - -15.45198 -1.37710 -3.98079 - -15.61028 -1.05827 -3.96397 - -15.72713 -0.73945 -3.94382 - -15.80254 -0.42062 -3.92033 - -15.80239 -0.42091 -3.92033 - -15.83638 -0.10209 -3.89346 - -15.82893 0.21674 -3.86323 - -15.78003 0.53556 -3.82962 - -15.68968 0.85439 -3.79267 - -15.55789 1.17321 -3.75238 - -15.55789 1.17320 -3.75238 - -15.35509 1.53984 -3.70193 - -15.09748 1.90649 -3.64716 - -14.78505 2.27314 -3.58815 - -14.41781 2.63979 -3.52499 - -13.99575 3.00644 -3.45778 - -13.99575 3.00644 -3.45778 - -13.51888 3.37309 -3.38660 - -12.98720 3.73974 -3.31161 - -12.40070 4.10639 -3.23299 - -11.75939 4.47303 -3.15088 - -11.06327 4.83968 -3.06546 - -11.06441 4.84552 -3.06546 - -10.31260 5.21217 -2.97691 - -9.50597 5.57882 -2.88546 - -8.64453 5.94547 -2.79134 - -7.72828 6.31212 -2.69480 - -6.75721 6.67876 -2.59608 - -6.75556 6.68890 -2.59608 - -5.72816 7.05555 -2.49544 - -4.64595 7.42220 -2.39319 - -3.50892 7.78885 -2.28965 - -2.31708 8.15550 -2.18513 - -1.07043 8.52215 -2.07995 - -1.06972 8.53421 -2.07995 - -1.05265 8.53911 -2.07854 - -1.03557 8.54402 -2.07713 - -1.01847 8.54892 -2.07572 - -1.00137 8.55383 -2.07431 - -0.98426 8.55873 -2.07290 - -0.98426 8.55871 -2.07290 - -0.65726 8.65191 -2.04610 - -0.32671 8.74510 -2.01929 - 0.00737 8.83830 -1.99247 - 0.34500 8.93149 -1.96565 - 0.68616 9.02469 -1.93883 - 0.68625 9.02388 -1.93883 - 1.78677 9.31818 -1.85427 - 2.92261 9.61248 -1.77003 - 4.09376 9.90678 -1.68632 - 5.30024 10.20108 -1.60336 - 6.54202 10.49538 -1.52136 - 6.54194 10.49441 -1.52136 - 7.17602 10.64156 -1.48079 - 7.81893 10.78871 -1.44055 - 8.47067 10.93586 -1.40066 - 9.13123 11.08301 -1.36116 - 9.80063 11.23016 -1.32206 - 9.80064 11.22965 -1.32206 - 10.46983 11.07680 -1.28342 - 11.12985 10.92395 -1.24525 - 11.78070 10.77110 -1.20758 - 12.42238 10.61825 -1.17045 - 13.05489 10.46540 -1.13388 - 13.05650 10.44799 -1.13388 - 14.30915 9.76032 -1.06140 - 15.39904 8.11414 -0.99160 - 16.29200 6.54177 -0.92466 - 17.00055 5.10010 -0.86075 - 17.54219 3.80039 -0.80003 - 17.54003 3.77342 -0.80003 - 17.90255 3.48792 -0.75272 - 18.23976 3.26682 -0.70767 - 18.55793 3.10626 -0.66492 - 18.86291 3.00243 -0.62450 - 19.16018 2.95155 -0.58645 - 19.16198 2.96024 -0.58645 - 19.35552 -0.12483 -0.53731 - 19.14586 -2.80617 -0.49295 - 18.58740 -5.11026 -0.45324 - 17.73642 -6.95519 -0.41805 - 16.66394 -8.28599 -0.38725 - 16.66023 -8.28992 -0.38725 - 15.43514 -9.14218 -0.36062 - 14.11909 -9.59426 -0.33779 - 12.76473 -9.70394 -0.31845 - 11.41283 -9.58135 -0.30225 - 10.08893 -9.30914 -0.28888 - 10.08928 -9.29755 -0.28888 - 8.81362 -8.90759 -0.27799 - 7.59969 -8.42051 -0.26927 - 6.45924 -7.86126 -0.26244 - 5.40100 -7.24917 -0.25723 - 4.43118 -6.60045 -0.25335 - 4.43143 -6.59525 -0.25335 - 3.56630 -5.80129 -0.25054 - 2.80198 -5.11636 -0.24860 - 2.13391 -4.42742 -0.24738 - 1.56216 -3.74138 -0.24671 - 1.08595 -3.06337 -0.24642 - 1.08607 -3.06197 -0.24642 - 0.69284 -2.51710 -0.24638 - 0.38632 -1.86419 -0.24650 - 0.17016 -1.22650 -0.24673 - 0.04215 -0.60500 -0.24703 - -0.00002 -0.00008 -0.24734 + 0.00000 0.00000 -2.92152 + 0.00000 0.00000 -2.93796 + 0.00000 0.00000 -2.95440 + 0.00000 0.00000 -2.97084 + 0.00000 0.00000 -2.98728 + 0.00000 0.00000 -3.00372 + 0.00000 0.00000 -3.00372 + 0.00000 0.00000 -3.02016 + 0.00000 0.00000 -3.03660 + 0.00000 0.00000 -3.05304 + 0.00000 0.00000 -3.06948 + 0.00000 0.00000 -3.08592 + 0.00000 0.00000 -3.08592 + 0.00000 0.00049 -3.08786 + 0.00001 0.00196 -3.08979 + 0.00004 0.00441 -3.09172 + 0.00010 0.00785 -3.09366 + 0.00020 0.01226 -3.09559 + 0.00020 0.01226 -3.09559 + 0.00119 0.03973 -3.10333 + 0.00359 0.08289 -3.11107 + 0.00803 0.14175 -3.11880 + 0.01514 0.21631 -3.12654 + 0.02555 0.30656 -3.13428 + 0.02555 0.30656 -3.13428 + 0.05792 0.50276 -3.14975 + 0.10599 0.69896 -3.16523 + 0.16975 0.89516 -3.18072 + 0.24921 1.09136 -3.19623 + 0.34437 1.28756 -3.21175 + 0.34437 1.28756 -3.21175 + 0.48539 1.53281 -3.23120 + 0.65093 1.77806 -3.25070 + 0.84100 2.02331 -3.27029 + 1.05560 2.26856 -3.28999 + 1.29472 2.51381 -3.30982 + 1.29472 2.51381 -3.30982 + 1.55836 2.75906 -3.32981 + 1.84653 3.00431 -3.34999 + 2.15922 3.24956 -3.37041 + 2.49644 3.49481 -3.39111 + 2.85818 3.74006 -3.41212 + 2.85818 3.74006 -3.41212 + 3.18890 3.95098 -3.43047 + 3.53775 4.16189 -3.44912 + 3.90474 4.37281 -3.46810 + 4.28988 4.58372 -3.48745 + 4.69314 4.79464 -3.50719 + 4.69314 -10.01107 -3.50719 + 3.56782 -9.73148 -3.53400 + 2.47437 -9.45190 -3.56138 + 1.41279 -9.17231 -3.58918 + 0.38308 -8.89273 -3.61722 + -0.61476 -8.61314 -3.64531 + -0.61384 -8.63116 -3.64531 + -1.29648 -8.43496 -3.66497 + -1.96343 -8.23876 -3.68453 + -2.61468 -8.04256 -3.70393 + -3.25024 -7.84636 -3.72312 + -3.87010 -7.65016 -3.74205 + -3.87036 -7.65208 -3.74205 + -4.02291 -7.60303 -3.74674 + -4.17448 -7.55398 -3.75140 + -4.32507 -7.50493 -3.75605 + -4.47468 -7.45588 -3.76067 + -4.62331 -7.40683 -3.76527 + -4.62334 -7.40637 -3.76527 + -5.35172 -7.16112 -3.78790 + -6.05557 -6.91587 -3.80986 + -6.73489 -6.67062 -3.83106 + -7.38969 -6.42537 -3.85141 + -8.01997 -6.18012 -3.87083 + -8.02012 -6.17495 -3.87083 + -8.62535 -5.92970 -3.88923 + -9.20606 -5.68445 -3.90655 + -9.76224 -5.43920 -3.92272 + -10.29390 -5.19395 -3.93765 + -10.80103 -4.94870 -3.95129 + -10.80102 -4.94827 -3.95129 + -11.28359 -4.70302 -3.96356 + -11.74163 -4.45777 -3.97442 + -12.17514 -4.21252 -3.98379 + -12.58413 -3.96727 -3.99164 + -12.96860 -3.72202 -3.99790 + -12.96864 -3.72133 -3.99790 + -13.46559 -3.37798 -4.00389 + -13.91448 -3.03463 -4.00657 + -14.31529 -2.69128 -4.00581 + -14.66803 -2.34793 -4.00154 + -14.97271 -2.00458 -3.99364 + -14.97278 -2.00305 -3.99364 + -15.21245 -1.68422 -3.98298 + -15.41068 -1.36540 -3.96908 + -15.56745 -1.04657 -3.95192 + -15.68278 -0.72775 -3.93144 + -15.75667 -0.40892 -3.90763 + -15.75652 -0.40920 -3.90763 + -15.78899 -0.09037 -3.88045 + -15.78001 0.22845 -3.84990 + -15.72959 0.54728 -3.81601 + -15.63772 0.86610 -3.77878 + -15.50440 1.18493 -3.73821 + -15.50441 1.18491 -3.73821 + -15.29986 1.55156 -3.68747 + -15.04049 1.91821 -3.63242 + -14.72631 2.28486 -3.57314 + -14.35732 2.65150 -3.50974 + -13.93351 3.01815 -3.44229 + -13.93351 3.01815 -3.44229 + -13.45489 3.38480 -3.37089 + -12.92146 3.75145 -3.29571 + -12.33321 4.11810 -3.21691 + -11.69015 4.48475 -3.13464 + -10.99227 4.85140 -3.04909 + -10.99341 4.85722 -3.04909 + -10.23985 5.22387 -2.96041 + -9.43148 5.59052 -2.86886 + -8.56829 5.95717 -2.77466 + -7.65028 6.32382 -2.67807 + -6.67746 6.69047 -2.57932 + -6.67596 6.70288 -2.57932 + -5.64647 7.06953 -2.47867 + -4.56217 7.43617 -2.37643 + -3.42306 7.80282 -2.27291 + -2.22913 8.16947 -2.16845 + -0.98038 8.53612 -2.06336 + -0.97966 8.54826 -2.06336 + -0.96256 8.55317 -2.06196 + -0.94545 8.55807 -2.06055 + -0.92833 8.56298 -2.05914 + -0.91120 8.56788 -2.05773 + -0.89406 8.57279 -2.05632 + -0.89406 8.57277 -2.05632 + -0.56652 8.66596 -2.02954 + -0.23545 8.75916 -2.00276 + 0.09917 8.85235 -1.97597 + 0.43733 8.94555 -1.94918 + 0.77903 9.03874 -1.92240 + 0.77912 9.03794 -1.92240 + 1.88133 9.33224 -1.83794 + 3.01885 9.62654 -1.75383 + 4.19170 9.92084 -1.67027 + 5.39985 10.21514 -1.58748 + 6.64333 10.50944 -1.50567 + 6.64325 10.50849 -1.50567 + 7.27817 10.65564 -1.46520 + 7.92193 10.80279 -1.42505 + 8.57451 10.94994 -1.38527 + 9.23592 11.09709 -1.34588 + 9.90616 11.24424 -1.30691 + 9.90617 11.24372 -1.30691 + 10.57621 11.09087 -1.26838 + 11.23707 10.93802 -1.23034 + 11.88877 10.78517 -1.19280 + 12.53129 10.63232 -1.15581 + 13.16465 10.47947 -1.11938 + 13.16648 10.45768 -1.11938 + 14.42019 9.76717 -1.04720 + 15.51058 8.11546 -0.97773 + 16.40328 6.53540 -0.91114 + 17.11045 5.08411 -0.84759 + 17.64972 3.77852 -0.78726 + 17.64753 3.75129 -0.78726 + 18.00778 3.46481 -0.74028 + 18.34264 3.24287 -0.69558 + 18.65838 3.08163 -0.65318 + 18.96086 2.97726 -0.61313 + 19.25560 2.92599 -0.57547 + 19.25741 2.93491 -0.57547 + 19.44642 -0.16365 -0.52689 + 19.23061 -2.85463 -0.48311 + 18.66493 -5.16397 -0.44399 + 17.80634 -7.00950 -0.40942 + 16.72646 -8.33669 -0.37926 + 16.72271 -8.34080 -0.37926 + 15.49051 -9.19062 -0.35328 + 14.16842 -9.63156 -0.33112 + 12.80960 -9.73108 -0.31245 + 11.45444 -9.60081 -0.29695 + 10.12837 -9.32066 -0.28427 + 10.12872 -9.30897 -0.28427 + 8.85225 -8.90851 -0.27409 + 7.63874 -8.41365 -0.26609 + 6.49978 -7.84706 -0.25999 + 5.44400 -7.22829 -0.25552 + 4.47752 -6.57378 -0.25239 + 4.47777 -6.56850 -0.25239 + 3.60536 -5.89166 -0.25033 + 2.82863 -5.20340 -0.24917 + 2.14853 -4.51263 -0.24873 + 1.56488 -3.82643 -0.24884 + 1.07667 -3.14999 -0.24933 + 1.07679 -3.14857 -0.24933 + 0.68259 -2.48537 -0.25006 + 0.38017 -1.83764 -0.25096 + 0.16725 -1.20696 -0.25197 + 0.04138 -0.59432 -0.25304 + -0.00002 -0.00008 -0.25412 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -39860,7 +39996,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -39872,7 +40008,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -40061,43 +40197,43 @@ Status character 0.00000 105.69604 33.99442 5.83478 1 0 A 0.00000 106.89286 35.41550 6.31849 1 0 A 0.00000 108.08968 36.83628 6.80219 1 0 A - 0.27566 109.28650 37.90169 7.16497 110 0 1 - 4.82895 109.28650 23.90815 8.27361 110 0 1 - 7.00968 107.26750 27.72769 10.12262 110 0 1 - 9.78734 105.24850 32.80815 12.58797 110 0 1 - 12.54581 103.22950 37.87590 15.05332 110 0 1 - 15.28530 101.21050 42.93327 17.51866 110 0 1 - 17.38967 99.19150 46.72104 19.36768 110 0 1 + 0.26522 109.28650 37.90169 7.16497 110 0 1 + 4.82373 109.28650 23.90815 8.27361 110 0 1 + 7.00513 107.26750 27.72769 10.12262 110 0 1 + 9.78351 105.24850 32.80815 12.58797 110 0 1 + 12.54273 103.22950 37.87590 15.05332 110 0 1 + 15.28298 101.21050 42.93327 17.51866 110 0 1 + 17.38812 99.19150 46.72104 19.36768 110 0 1 7.79559 99.19150 161.29178 13.69459 1 0 A 8.11883 100.56490 148.60114 14.25371 1 0 A 8.54870 101.93830 150.00588 14.99920 1 0 A - 9.12806 103.31170 155.04644 15.74469 110 0 1 - 11.22958 104.68510 161.14420 16.49018 110 0 1 - 12.96455 106.05850 166.01892 17.04930 110 0 1 - 13.37363 106.05850 169.36158 17.45837 110 0 1 - 14.90447 107.43190 174.46398 17.98116 110 0 1 - 16.50494 108.80530 181.36703 18.72665 110 0 1 - 17.96612 110.17870 188.34940 19.47214 110 0 1 - 19.30181 111.55210 195.38331 20.21763 110 0 1 - 20.33942 112.92550 200.68154 20.77674 110 0 1 - 20.71216 112.92550 204.22293 21.14949 110 0 1 - 21.65196 114.29890 209.54580 21.70860 110 0 1 - 22.69245 115.67230 216.65723 22.45409 110 10 1 - 23.65837 117.04570 223.78193 23.19958 110 11 1 - 24.56085 118.41910 230.91669 23.94507 110 11 1 - 25.22463 119.79250 236.27276 24.50419 110 11 1 - 27.33730 119.79250 239.84569 26.61686 110 11 1 - 26.21931 121.16590 245.20785 25.43605 110 11 1 - 26.99314 122.53930 252.36133 26.18154 110 11 1 - 27.73899 123.91270 259.51871 26.92703 110 11 1 - 28.46333 125.28610 266.67927 27.67252 110 11 1 - 28.98628 126.65950 272.05135 28.23164 110 11 1 - 29.35903 126.65950 275.63352 28.60438 110 11 1 - 29.87264 128.03290 281.00777 29.16350 110 11 1 - 30.56601 129.40630 288.17492 29.90899 110 11 1 - 31.25488 130.77970 295.34358 30.65448 110 11 1 - 31.94133 132.15310 302.51355 31.39997 110 11 1 - 32.44108 133.52650 307.89172 31.95908 110 11 1 + 9.13668 103.31170 155.04644 15.74469 110 0 1 + 11.24325 104.68510 161.14420 16.49018 110 0 1 + 12.98262 106.05850 166.01892 17.04930 110 0 1 + 13.35537 106.05850 169.36158 17.42204 110 0 1 + 14.92620 107.43190 174.46398 17.98116 110 0 1 + 16.52957 108.80530 181.36703 18.72665 110 0 1 + 17.99289 110.17870 188.34940 19.47214 110 0 1 + 19.32991 111.55210 195.38331 20.21763 110 0 1 + 20.36803 112.92550 200.68154 20.77674 110 0 1 + 20.74078 112.92550 204.22293 21.14949 110 0 1 + 21.68027 114.29890 209.54580 21.70860 110 0 1 + 22.71964 115.67230 216.65723 22.45409 110 10 1 + 23.68362 117.04570 223.78193 23.19958 110 11 1 + 24.58333 118.41910 230.91669 23.94507 110 11 1 + 25.24352 119.79250 236.27276 24.50419 110 11 1 + 25.61626 119.79250 239.84569 24.87693 110 11 1 + 26.23378 121.16590 245.20785 25.43605 110 11 1 + 27.00248 122.53930 252.36133 26.18154 110 11 1 + 27.74264 123.91270 259.51871 26.92703 110 11 1 + 28.46089 125.28610 266.67927 27.67252 110 11 1 + 28.97748 126.65950 272.05135 28.23164 110 11 1 + 29.35023 126.65950 275.63352 28.60438 110 11 1 + 29.85738 128.03290 281.00777 29.16350 110 11 1 + 30.54424 129.40630 288.17492 29.90899 110 11 1 + 31.22656 130.77970 295.34358 30.65448 110 11 1 + 31.90645 132.15310 302.51355 31.39997 110 11 1 + 32.39963 133.52650 307.89172 31.95908 110 11 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40115,9 +40251,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 0.017 'Hydrobiaklei' - -12.00 5.574 'Basisveen' - -12.50 75.682 'Eerste zandlaag' + -10.00 0.016 'Hydrobiaklei' + -12.00 5.572 'Basisveen' + -12.50 75.583 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40139,7 +40275,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 0.00 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -25.64 'Eerste zandlaag' + -12.50 -25.61 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -40362,7 +40498,7 @@ Lambda passive -13.62000 35.64570 179.93328 10.63334 0.52256 0.29831 5.04783 -13.76000 37.07230 187.01307 11.05990 0.52256 0.29833 5.04455 -13.90000 38.49890 192.33909 11.37974 0.52256 0.29835 5.04268 - -13.90000 38.49890 195.89626 11.59292 0.52350 0.29836 5.04165 + -13.90000 38.49890 195.89626 11.59292 0.52256 0.29836 5.04165 -14.04000 39.92550 201.23952 11.91265 0.52256 0.29837 5.04038 -14.18000 41.35210 208.37374 12.33889 0.52256 0.29839 5.03901 -14.32000 42.77870 215.51706 12.76506 0.52256 0.29840 5.03795 @@ -40374,7 +40510,7 @@ Lambda passive -15.02000 49.91170 251.31018 14.89527 0.52256 0.29843 5.03510 -15.16000 51.33830 258.47759 15.32122 0.52256 0.29844 5.03479 -15.30000 52.76490 263.85424 15.64068 0.52256 0.29844 5.03459 - -15.30000 52.76490 267.43918 15.85364 0.55529 0.29844 5.03448 + -15.30000 52.76490 267.43918 15.85364 0.52256 0.29844 5.03448 -15.44000 54.19150 272.81725 16.17308 0.52256 0.29844 5.03432 -15.58000 55.61810 279.98897 16.59899 0.52256 0.29845 5.03413 -15.72000 57.04470 287.16168 17.02488 0.52256 0.29845 5.03398 @@ -40553,47 +40689,47 @@ Status character 0.00000 105.26130 0.00000 0.00000 -1 0 - 0.00000 105.84990 0.00000 0.00000 -1 0 - 0.05164 100.84990 0.05164 0.05164 402 100 P - 16.12659 102.04672 29.07617 4.16163 220 55 2 - 15.76506 103.24354 30.49850 4.64534 220 52 2 - 14.91642 104.44036 31.92043 5.12904 110 47 1 - 13.62255 105.63718 33.34200 5.61275 110 41 1 - 12.86484 106.83400 34.40797 5.97553 110 37 1 - 10.46819 106.83400 21.27297 7.02354 110 49 1 - 11.98549 104.81500 25.07846 8.87255 110 48 1 - 14.13852 102.79600 30.13953 11.33790 110 47 1 - 16.31075 100.77700 35.18863 13.80325 110 46 1 - 18.50196 98.75800 40.22935 16.26860 110 46 1 - 20.09561 96.73900 44.00630 18.11761 110 46 1 - 33.79428 96.73900 150.84533 12.84961 110 22 1 - 31.09756 98.11240 138.22786 13.40872 110 22 1 - 28.77977 99.48580 140.46436 14.15421 110 20 1 - 26.71757 100.85920 145.94610 14.89970 110 18 1 - 24.90120 102.23260 152.30435 15.64519 110 16 1 - 23.20941 103.60600 157.31255 16.20431 110 15 1 - 23.39558 103.60600 160.72312 16.57705 110 15 1 - 21.96275 104.97940 165.90590 17.13617 110 13 1 - 20.80983 106.35280 172.89057 17.88166 110 12 1 - 20.13317 107.72620 179.93328 18.62715 110 11 1 - 20.28846 109.09960 187.01307 19.37264 110 11 1 - 20.36908 110.47300 192.33909 19.93176 110 11 1 - 20.77810 110.47300 195.89626 20.34077 110 11 1 - 20.92026 111.84640 201.23952 20.86362 110 10 1 - 21.37075 113.21980 208.37374 21.60911 110 0 1 - 21.89581 114.59320 215.51706 22.35460 110 0 1 - 22.48431 115.96660 222.66722 23.10009 110 0 1 - 22.93876 117.34000 228.03323 23.65920 110 0 1 - 23.31151 117.34000 231.61205 24.03195 110 0 1 - 23.80781 118.71340 236.98213 24.59107 110 0 1 - 24.52496 120.08680 244.14486 25.33656 110 0 1 - 25.27009 121.46020 251.31018 26.08204 110 0 1 - 26.03672 122.83360 258.47759 26.82753 110 0 1 - 26.63200 124.20700 263.85424 27.38665 110 0 1 - 28.74331 124.20700 267.43918 29.49796 110 0 1 - 27.60938 125.58040 272.81725 28.31851 110 0 1 - 28.40698 126.95380 279.98897 29.06400 110 0 1 - 29.20909 128.32720 287.16168 29.80949 110 0 1 - 30.01362 129.70060 294.33522 30.55498 110 0 1 - 30.63210 131.07400 299.71583 31.11410 110 0 1 + 16.17317 102.04672 29.07617 4.16163 220 56 2 + 15.80906 103.24354 30.49850 4.64534 220 52 2 + 14.99852 104.44036 31.92043 5.12904 110 47 1 + 13.69815 105.63718 33.34200 5.61275 110 41 1 + 12.87528 106.83400 34.40797 5.97553 110 37 1 + 10.47341 106.83400 21.27297 7.02354 110 49 1 + 11.99003 104.81500 25.07846 8.87255 110 48 1 + 14.14235 102.79600 30.13953 11.33790 110 47 1 + 16.31383 100.77700 35.18863 13.80325 110 46 1 + 18.50428 98.75800 40.22935 16.26860 110 46 1 + 20.09716 96.73900 44.00630 18.11761 110 46 1 + 33.90456 96.73900 150.84533 12.84961 110 22 1 + 31.18014 98.11240 138.22786 13.40872 110 23 1 + 28.83495 99.48580 140.46436 14.15421 110 21 1 + 26.74594 100.85920 145.94610 14.89970 110 18 1 + 24.90366 102.23260 152.30435 15.64519 110 16 1 + 23.18715 103.60600 157.31255 16.20431 110 15 1 + 23.40965 103.60600 160.72312 16.57705 110 15 1 + 21.91723 104.97940 165.90590 17.13617 110 13 1 + 20.74273 106.35280 172.89057 17.88166 110 12 1 + 20.10640 107.72620 179.93328 18.62715 110 11 1 + 20.26036 109.09960 187.01307 19.37264 110 11 1 + 20.34047 110.47300 192.33909 19.93176 110 11 1 + 20.71321 110.47300 195.89626 20.30450 110 11 1 + 20.89195 111.84640 201.23952 20.86362 110 10 1 + 21.34356 113.21980 208.37374 21.60911 110 0 1 + 21.87057 114.59320 215.51706 22.35460 110 0 1 + 22.46183 115.96660 222.66722 23.10009 110 0 1 + 22.91988 117.34000 228.03323 23.65920 110 0 1 + 23.29262 117.34000 231.61205 24.03195 110 0 1 + 23.79334 118.71340 236.98213 24.59107 110 0 1 + 24.51561 120.08680 244.14486 25.33656 110 0 1 + 25.26644 121.46020 251.31018 26.08204 110 0 1 + 26.03917 122.83360 258.47759 26.82753 110 0 1 + 26.64080 124.20700 263.85424 27.38665 110 0 1 + 27.01355 124.20700 267.43918 27.75940 110 0 1 + 27.62464 125.58040 272.81725 28.31851 110 0 1 + 28.42875 126.95380 279.98897 29.06400 110 0 1 + 29.23741 128.32720 287.16168 29.80949 110 0 1 + 30.04850 129.70060 294.33522 30.55498 110 0 1 + 30.67355 131.07400 299.71583 31.11410 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -40611,9 +40747,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 8.160 'Hydrobiaklei' - -12.00 7.622 'Basisveen' - -12.50 87.240 'Eerste zandlaag' + -10.00 8.191 'Hydrobiaklei' + -12.00 7.624 'Basisveen' + -12.50 87.117 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -40633,9 +40769,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 1.51 'Hydrobiaklei' + -10.00 1.52 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 29.55 'Eerste zandlaag' + -12.50 29.51 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -40875,8 +41011,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 369.71550 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 289.79006 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 369.71003 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 289.81340 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -40917,10 +41053,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 12.50 : Percentage mobilized resistance left - 12.74 : Percentage mobilized resistance right - 56.23 : Effective left - 104.76 : Effective right + 12.48 : Percentage mobilized resistance left + 12.73 : Percentage mobilized resistance right + 56.12 : Effective left + 104.66 : Effective right 751.09 : Water pressure left 1120.54 : Water pressure right 449.72 : Max effective resistance left @@ -40929,8 +41065,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 17.19 : Vertical force left - 30.68 : Vertical force right + 17.14 : Vertical force left + 30.65 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -40939,17 +41075,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --17.19 : Active force -30.68 : Passive force --17.19 : Plugged active force -30.68 : Plugged passive force +-17.14 : Active force +30.65 : Passive force +-17.14 : Plugged active force +30.65 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -13.49 : Resulting Vertical Force Unplugged -13.49 : Resulting Vertical Force Plugged +13.50 : Resulting Vertical Force Unplugged +13.50 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -40962,210 +41098,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 7.95370 - 0.00000 0.00000 7.57736 - 0.00000 0.00000 7.20102 - 0.00000 0.00000 6.82468 - 0.00000 0.00000 6.44834 - 0.00000 0.00000 6.07200 - 0.00000 0.00000 6.07200 - 0.00000 0.00000 5.69566 - 0.00000 0.00000 5.31932 - 0.00000 0.00000 4.94298 - 0.00000 0.00000 4.56664 - 0.00000 0.00000 4.19030 - 0.00000 0.00000 4.19030 - 0.00000 0.00049 4.14602 - 0.00001 0.00196 4.10175 - 0.00004 0.00441 4.05747 - 0.00010 0.00785 4.01320 - 0.00020 0.01226 3.96892 - 0.00020 0.01226 3.96892 - 0.00803 0.14175 3.43762 - 0.03988 0.41251 2.90633 - 0.11269 0.82453 2.37501 - 0.24341 1.37781 1.84367 - 0.44901 2.07236 1.31229 - 0.44901 2.07236 1.31229 - 0.68977 2.75906 0.86942 - 1.00409 3.54386 0.42646 - 1.40181 4.42676 -0.01663 - 1.89272 5.40776 -0.45991 - 2.48663 6.48686 -0.90343 - 2.48663 6.48686 -0.90343 - 3.19336 7.66406 -1.34724 - 4.02271 8.93936 -1.79145 - 4.98450 10.31276 -2.23619 - 6.08854 11.78426 -2.68157 - 7.34462 13.35386 -3.12771 - 7.34462 13.35386 -3.12771 - 8.55395 14.78218 -3.51212 - 9.88924 16.28305 -3.89731 - 11.35672 17.85648 -4.28344 - 12.96263 19.50246 -4.67064 - 14.71322 21.22099 -5.05905 - 14.71322 -106.99451 -5.05905 - 2.65086 -104.60462 -5.57562 - -9.13179 -102.08723 -6.09261 - -20.62018 -99.44236 -6.60816 - -31.79980 -96.66999 -7.12037 - -42.65610 -93.77014 -7.62738 - -42.65518 -93.78814 -7.62738 - -50.07420 -91.67703 -7.97908 - -57.32183 -89.50313 -8.32673 - -64.39303 -87.26645 -8.66978 - -71.28279 -84.96699 -9.00766 - -77.98607 -82.60474 -9.33978 - -77.98633 -82.60665 -9.33978 - -79.63247 -82.00627 -9.42185 - -81.26656 -81.40198 -9.50351 - -82.88852 -80.79376 -9.58477 - -84.49828 -80.18161 -9.66561 - -86.09576 -79.56555 -9.74602 - -86.09580 -79.56510 -9.74602 - -93.89616 -76.42590 -10.14139 - -101.37771 -73.18860 -10.52492 - -108.53061 -69.85320 -10.89573 - -115.34508 -66.41970 -11.25290 - -121.81128 -62.88810 -11.59553 - -121.81126 -62.88687 -11.59553 - -124.29798 -61.44676 -11.72832 - -126.72679 -59.99096 -11.85861 - -129.09705 -58.51946 -11.98634 - -131.40814 -57.03226 -12.11147 - -133.65942 -55.52937 -12.23396 - -133.65942 -55.52934 -12.23396 - -136.92320 -53.26323 -12.41261 - -140.05101 -50.99712 -12.58505 - -143.04285 -48.73101 -12.75115 - -145.89873 -46.46490 -12.91076 - -148.61864 -44.19879 -13.06376 - -148.61866 -44.19856 -13.06376 - -152.84967 -40.42171 -13.30369 - -156.70300 -36.64486 -13.52435 - -160.17864 -32.86801 -13.72532 - -163.27660 -29.09116 -13.90615 - -165.99687 -25.31431 -14.06641 - -165.99692 -25.31362 -14.06641 - -169.17069 -20.02603 -14.25541 - -171.60421 -14.73844 -14.40263 - -173.29746 -9.45085 -14.50765 - -174.25045 -4.16326 -14.57004 - -174.46317 1.12433 -14.58939 - -174.46324 1.12586 -14.58939 - -173.99773 6.03577 -14.56860 - -172.89394 10.94567 -14.51075 - -171.15186 15.85558 -14.41621 - -168.77149 20.76548 -14.28537 - -165.75283 25.67539 -14.11857 - -165.75268 25.67510 -14.11857 - -162.09578 30.58501 -13.91633 - -157.80058 35.49491 -13.67956 - -152.86710 40.40482 -13.40931 - -147.29533 45.31472 -13.10665 - -141.08527 50.22463 -12.77262 - -141.08527 50.22461 -12.77262 - -133.15463 55.87100 -12.35119 - -124.37985 61.51739 -11.89225 - -114.76093 67.16378 -11.39850 - -104.29787 72.81017 -10.87266 - -92.99069 78.45656 -10.31744 - -92.99069 78.45656 -10.31744 - -80.83936 84.10295 -9.73573 - -67.84390 89.74934 -9.13125 - -54.00431 95.39574 -8.50788 - -39.32058 101.04213 -7.86952 - -23.79271 106.68852 -7.22007 - -23.79386 106.69435 -7.22007 - -7.42098 112.34074 -6.56363 - 9.79602 117.98713 -5.90507 - 27.85717 123.63353 -5.24949 - 46.76245 129.27992 -4.60198 - 66.51186 134.92631 -3.96761 - 66.51352 134.93645 -3.96761 - 87.10858 140.58284 -3.35167 - 108.54778 146.22923 -2.76024 - 130.83112 151.87562 -2.19958 - 153.95859 157.52201 -1.67599 - 177.93020 163.16840 -1.19572 - 177.93091 163.18047 -1.19572 - 178.25734 163.25601 -1.18961 - 178.58393 163.33155 -1.18352 - 178.91067 163.40708 -1.17744 - 179.23756 163.48262 -1.17136 - 179.56460 163.55816 -1.16529 - 179.56460 163.55814 -1.16529 - 185.80708 164.99334 -1.05176 - 192.10409 166.42854 -0.94161 - 198.45565 167.86375 -0.83496 - 204.86174 169.29895 -0.73192 - 211.32237 170.73415 -0.63260 - 211.32237 -119.05594 -0.63260 - 208.94880 -118.30057 -0.58186 - 206.59034 -117.54520 -0.53217 - 204.24699 -116.78983 -0.48353 - 201.91875 -116.03446 -0.43591 - 199.60561 -115.27909 -0.38931 - 199.60565 -115.27956 -0.38931 - 188.23774 -112.28527 -0.17114 - 177.12959 -109.86142 0.02331 - 166.26872 -107.33957 0.19542 - 155.66494 -104.71972 0.34655 - 145.32742 -102.02037 0.47808 - 145.32739 -102.02098 0.47808 - 139.26360 -100.10676 0.54814 - 133.31438 -98.20262 0.61189 - 127.47905 -96.31001 0.66958 - 121.75694 -94.42891 0.72149 - 116.14738 -92.55790 0.76788 - 116.14805 -92.57925 0.76788 - 107.85121 -89.67501 0.82829 - 99.83757 -86.42896 0.87745 - 92.12453 -83.07109 0.91617 - 84.72152 -79.61789 0.94525 - 77.63626 -76.09263 0.96549 - 77.63622 -76.08653 0.96549 - 70.87617 -72.47883 0.97767 - 64.44597 -68.84160 0.98247 - 58.34697 -65.20546 0.98050 - 52.57797 -61.58945 0.97242 - 47.13682 -58.00213 0.95886 - 47.13676 -57.99978 0.95886 - 41.49864 -54.79448 0.93836 - 36.17285 -51.73958 0.91262 - 31.14685 -48.80069 0.88230 - 26.40853 -45.98742 0.84802 - 21.94347 -43.35118 0.81042 - 21.94178 -43.32539 0.81042 - 16.21762 -38.47994 0.75338 - 11.15852 -33.82467 0.69235 - 6.73761 -29.36439 0.62842 - 2.92709 -25.10558 0.56269 - -0.30173 -21.05638 0.49625 - -0.30153 -21.05459 0.49625 - -2.97666 -17.19705 0.43005 - -5.12626 -13.54436 0.36460 - -6.77814 -10.08580 0.30030 - -7.95904 -6.81491 0.23757 - -8.69678 -3.76828 0.17682 - -8.69451 -3.73934 0.17682 - -9.03512 -1.15661 0.11832 - -9.03200 1.13395 0.06207 - -8.73605 3.02949 0.00797 - -8.20137 4.54713 -0.04402 - -7.47972 5.70328 -0.09398 - -7.47987 5.69742 -0.09398 - -6.62157 6.50748 -0.14204 - -5.67328 6.98516 -0.18848 - -4.68069 7.14221 -0.23352 - -3.68797 6.98850 -0.27741 - -2.73804 6.53198 -0.32038 - -2.73806 6.52908 -0.32038 - -1.86193 5.89742 -0.36270 - -1.10612 4.85148 -0.40457 - -0.51704 3.51584 -0.44613 - -0.13511 1.89236 -0.48752 - 0.00129 0.02175 -0.52887 + 0.00000 0.00000 7.95005 + 0.00000 0.00000 7.57382 + 0.00000 0.00000 7.19759 + 0.00000 0.00000 6.82136 + 0.00000 0.00000 6.44513 + 0.00000 0.00000 6.06889 + 0.00000 0.00000 6.06889 + 0.00000 0.00000 5.69266 + 0.00000 0.00000 5.31643 + 0.00000 0.00000 4.94020 + 0.00000 0.00000 4.56397 + 0.00000 0.00000 4.18773 + 0.00000 0.00000 4.18773 + 0.00000 0.00049 4.14347 + 0.00001 0.00196 4.09921 + 0.00004 0.00441 4.05495 + 0.00010 0.00785 4.01068 + 0.00020 0.01226 3.96642 + 0.00020 0.01226 3.96642 + 0.00803 0.14175 3.43528 + 0.03988 0.41251 2.90413 + 0.11269 0.82453 2.37297 + 0.24341 1.37781 1.84178 + 0.44901 2.07236 1.31055 + 0.44901 2.07236 1.31055 + 0.68977 2.75906 0.86780 + 1.00409 3.54386 0.42498 + 1.40181 4.42676 -0.01799 + 1.89272 5.40776 -0.46114 + 2.48663 6.48686 -0.90453 + 2.48663 6.48686 -0.90453 + 3.19336 7.66406 -1.34822 + 4.02271 8.93936 -1.79231 + 4.98450 10.31276 -2.23691 + 6.08854 11.78426 -2.68217 + 7.34462 13.35386 -3.12819 + 7.34462 13.35386 -3.12819 + 8.55395 14.78218 -3.51248 + 9.88924 16.28305 -3.89757 + 11.35672 17.85648 -4.28359 + 12.96263 19.50246 -4.67068 + 14.71322 21.22099 -5.05898 + 14.71322 -106.98904 -5.05898 + 2.65148 -104.59915 -5.57540 + -9.13054 -102.08176 -6.09225 + -20.61831 -99.43689 -6.60765 + -31.79731 -96.66452 -7.11972 + -42.65298 -93.76467 -7.62658 + -42.65206 -93.78269 -7.62658 + -50.07065 -91.67157 -7.97818 + -57.31784 -89.49768 -8.32574 + -64.38860 -87.26100 -8.66869 + -71.27792 -84.96153 -9.00646 + -77.98078 -82.59929 -9.33848 + -77.98103 -82.60120 -9.33848 + -79.62706 -82.00082 -9.42053 + -81.26104 -81.39653 -9.50217 + -82.88290 -80.78831 -9.58340 + -84.49255 -80.17616 -9.66421 + -86.08992 -79.56010 -9.74460 + -86.08995 -79.55965 -9.74460 + -93.88978 -76.42045 -10.13985 + -101.37077 -73.18315 -10.52326 + -108.52314 -69.84775 -10.89394 + -115.33705 -66.41425 -11.25099 + -121.80271 -62.88265 -11.59351 + -121.80269 -62.88142 -11.59351 + -124.28920 -61.44131 -11.72626 + -126.71778 -59.98550 -11.85649 + -129.08783 -58.51400 -11.98418 + -131.39870 -57.02681 -12.10926 + -133.64976 -55.52392 -12.23170 + -133.64976 -55.52389 -12.23170 + -136.91321 -53.25778 -12.41028 + -140.04070 -50.99167 -12.58266 + -143.03221 -48.72556 -12.74869 + -145.88776 -46.45945 -12.90823 + -148.60735 -44.19334 -13.06116 + -148.60736 -44.19311 -13.06116 + -152.83783 -40.41626 -13.30098 + -156.69061 -36.63941 -13.52153 + -160.16571 -32.86256 -13.72239 + -163.26313 -29.08571 -13.90311 + -165.98285 -25.30886 -14.06327 + -165.98290 -25.30817 -14.06327 + -169.15591 -20.02058 -14.25213 + -171.58866 -14.73299 -14.39921 + -173.28115 -9.44540 -14.50408 + -174.23337 -4.15781 -14.56634 + -174.44534 1.12978 -14.58557 + -174.44540 1.13132 -14.58557 + -173.97919 6.04122 -14.56466 + -172.87469 10.95113 -14.50670 + -171.13190 15.86103 -14.41206 + -168.75082 20.77094 -14.28111 + -165.73145 25.68084 -14.11422 + -165.73130 25.68056 -14.11422 + -162.07369 30.59047 -13.91187 + -157.77778 35.50037 -13.67501 + -152.84359 40.41028 -13.40469 + -147.27111 45.32018 -13.10195 + -141.06034 50.23009 -12.76784 + -141.06035 50.23007 -12.76784 + -133.12888 55.87646 -12.34633 + -124.35328 61.52285 -11.88732 + -114.73355 67.16924 -11.39351 + -104.26968 72.81563 -10.86761 + -92.96168 78.46202 -10.31234 + -92.96168 78.46202 -10.31234 + -80.80954 84.10841 -9.73059 + -67.81326 89.75480 -9.12608 + -53.97285 95.40119 -8.50268 + -39.28831 101.04758 -7.86431 + -23.75962 106.69397 -7.21486 + -23.76077 106.69980 -7.21486 + -7.38708 112.34619 -6.55842 + 9.83074 117.99258 -5.89988 + 27.89270 123.63897 -5.24432 + 46.79880 129.28536 -4.59684 + 66.54903 134.93176 -3.96251 + 66.55053 134.94417 -3.96251 + 87.14675 140.59056 -3.34663 + 108.58711 146.23695 -2.75526 + 130.87160 151.88334 -2.19468 + 154.00023 157.52973 -1.67117 + 177.97299 163.17612 -1.19100 + 177.97371 163.18826 -1.19100 + 178.30016 163.26380 -1.18490 + 178.62677 163.33934 -1.17881 + 178.95352 163.41487 -1.17273 + 179.28043 163.49041 -1.16665 + 179.60748 163.56595 -1.16059 + 179.60748 163.56593 -1.16059 + 185.85026 165.00113 -1.04708 + 192.14757 166.43633 -0.93696 + 198.49942 167.87154 -0.83034 + 204.90581 169.30674 -0.72732 + 211.36673 170.74194 -0.62804 + 211.36673 -119.07148 -0.62804 + 208.99286 -118.31611 -0.57731 + 206.63409 -117.56074 -0.52764 + 204.29043 -116.80537 -0.47901 + 201.96187 -116.05000 -0.43141 + 199.64843 -115.29463 -0.38483 + 199.64847 -115.29510 -0.38483 + 188.27899 -112.30082 -0.16675 + 177.16929 -109.87697 0.02761 + 166.30687 -107.35512 0.19962 + 155.70153 -104.73527 0.35065 + 145.36246 -102.03592 0.48206 + 145.36243 -102.03652 0.48206 + 139.29771 -100.12230 0.55206 + 133.34755 -98.21816 0.61574 + 127.51130 -96.32554 0.67336 + 121.78826 -94.44445 0.72520 + 116.17776 -92.57344 0.77151 + 116.17843 -92.59478 0.77151 + 107.88010 -89.69304 0.83181 + 99.86459 -86.45195 0.88085 + 92.14924 -83.09903 0.91945 + 84.74346 -79.65075 0.94840 + 77.65499 -76.13035 0.96852 + 77.65504 -76.12659 0.96852 + 70.89112 -72.52368 0.98058 + 64.45671 -68.88850 0.98524 + 58.35346 -65.25175 0.98315 + 52.58028 -61.63519 0.97494 + 47.13499 -58.04739 0.96125 + 47.13492 -58.04511 0.96125 + 41.49228 -54.83948 0.94060 + 36.16201 -51.78431 0.91473 + 31.13155 -48.84515 0.88426 + 26.38879 -46.03163 0.84984 + 21.91932 -43.39525 0.81211 + 21.91761 -43.36906 0.81211 + 16.18737 -38.52313 0.75488 + 11.12224 -33.86770 0.69367 + 6.69530 -29.40757 0.62957 + 2.87871 -25.14916 0.56368 + -0.35626 -21.10056 0.49710 + -0.35604 -21.09878 0.49710 + -3.03742 -17.24203 0.43077 + -5.19338 -13.59024 0.36520 + -6.85175 -10.13265 0.30080 + -8.03928 -6.86273 0.23798 + -8.78380 -3.81746 0.17716 + -8.78153 -3.78862 0.17716 + -9.11789 -1.08678 0.11863 + -9.10508 1.20257 0.06235 + -8.79958 3.09742 0.00825 + -8.25541 4.61500 -0.04373 + -7.52422 5.77180 -0.09366 + -7.52436 5.76592 -0.09366 + -6.65639 6.57743 -0.14169 + -5.69815 7.05744 -0.18808 + -4.69523 7.21772 -0.23307 + -3.69165 7.06817 -0.27691 + -2.73023 6.61676 -0.31982 + -2.73025 6.61387 -0.31982 + -1.85319 5.86658 -0.36209 + -1.10122 4.82760 -0.40391 + -0.51494 3.49984 -0.44542 + -0.13465 1.88512 -0.48676 + 0.00128 0.02164 -0.52806 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -41397,7 +41533,7 @@ Lambda passive -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 -13.76000 38.68930 195.38331 11.54129 0.52256 0.29831 5.05006 -13.90000 40.11590 200.68154 11.86119 0.52256 0.29833 5.04742 - -13.90000 40.11590 204.22293 12.07442 0.52346 0.29834 5.04596 + -13.90000 40.11590 204.22293 12.07442 0.52256 0.29834 5.04596 -14.04000 41.54250 209.54580 12.39421 0.52256 0.29835 5.04413 -14.18000 42.96910 216.65723 12.82053 0.52256 0.29837 5.04216 -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 @@ -41409,7 +41545,7 @@ Lambda passive -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 -15.16000 52.95530 266.67927 15.80326 0.52256 0.29843 5.03593 -15.30000 54.38190 272.05135 16.12275 0.52256 0.29843 5.03563 - -15.30000 54.38190 275.63352 16.33573 0.55432 0.29843 5.03546 + -15.30000 54.38190 275.63352 16.33573 0.52256 0.29843 5.03546 -15.44000 55.80850 281.00777 16.65520 0.52256 0.29843 5.03521 -15.58000 57.23510 288.17492 17.08114 0.52256 0.29844 5.03493 -15.72000 58.66170 295.34358 17.50706 0.52256 0.29844 5.03469 @@ -41588,52 +41724,52 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 11.53577 101.25211 28.71471 4.03872 110 40 1 - 12.28020 102.14482 29.77573 4.39952 110 41 1 - 12.93408 103.03753 30.83654 4.76032 110 42 1 - 13.50465 103.93024 31.89713 5.12111 110 42 1 - 13.90893 104.82295 32.69245 5.39171 110 43 1 - 14.08933 104.82295 33.22259 5.57211 110 42 1 - 14.42450 105.71566 34.01772 5.84271 110 42 1 - 14.78671 106.60837 35.07774 6.20351 110 42 1 - 15.09142 107.50108 36.13758 6.56430 110 42 1 - 15.34430 108.39379 37.19726 6.92510 110 41 1 - 15.46083 109.28650 37.99192 7.19570 110 41 1 - 12.13491 109.28650 23.90815 8.27361 220 51 2 - 13.97715 107.26750 27.72769 10.12262 220 50 2 - 16.43554 105.24850 32.80815 12.58797 220 50 2 - 18.79952 103.22950 37.87590 15.05332 110 50 1 - 21.10027 101.21050 42.93327 17.51866 110 49 1 - 22.77147 99.19150 46.72104 19.36768 110 49 1 - 34.11738 99.19150 161.29178 13.69459 110 21 1 - 33.08174 100.56490 148.60114 14.25371 110 22 1 - 32.14405 101.93830 150.00588 14.99920 110 21 1 - 31.14616 103.31170 155.04644 15.74469 110 20 1 - 30.11631 104.68510 161.14420 16.49018 110 19 1 - 28.89633 106.05850 166.01892 17.04930 110 17 1 - 29.26908 106.05850 169.36158 17.42204 110 17 1 - 28.06938 107.43190 174.46398 17.98116 110 16 1 - 27.08791 108.80530 181.36703 18.72665 110 15 1 - 26.14787 110.17870 188.34940 19.47214 110 14 1 - 25.25883 111.55210 195.38331 20.21763 110 13 1 - 24.24398 112.92550 200.68154 20.77674 110 12 1 - 24.65298 112.92550 204.22293 21.18575 110 12 1 - 23.66875 114.29890 209.54580 21.70860 110 11 1 - 22.97221 115.67230 216.65723 22.45409 110 11 1 - 22.33814 117.04570 223.78193 23.19958 110 0 1 - 21.76395 118.41910 230.91669 23.94507 110 0 1 - 21.06067 119.79250 236.27276 24.50419 110 0 1 - 21.43341 119.79250 239.84569 24.87693 110 0 1 - 20.78282 121.16590 245.20785 25.43605 110 0 1 - 20.36393 122.53930 252.36133 26.18154 110 0 1 - 19.98361 123.91270 259.51871 26.92703 110 0 1 - 19.63511 125.28610 266.67927 27.67252 110 0 1 - 19.12532 126.65950 272.05135 28.23164 110 0 1 - 21.23628 126.65950 275.63352 30.34260 110 0 1 - 19.00599 128.03290 281.00777 29.16350 110 0 1 - 18.71260 129.40630 288.17492 29.90899 110 0 1 - 18.42773 130.77970 295.34358 30.65448 110 0 1 - 18.14755 132.15310 302.51355 31.39997 110 0 1 + 11.54709 101.25211 28.71471 4.03872 110 40 1 + 12.29082 102.14482 29.77573 4.39952 110 41 1 + 12.94399 103.03753 30.83654 4.76032 110 42 1 + 13.51385 103.93024 31.89713 5.12111 110 42 1 + 13.91741 104.82295 32.69245 5.39171 110 43 1 + 14.09781 104.82295 33.22259 5.57211 110 42 1 + 14.43227 105.71566 34.01772 5.84271 110 42 1 + 14.79377 106.60837 35.07774 6.20351 110 42 1 + 15.09778 107.50108 36.13758 6.56430 110 42 1 + 15.34996 108.39379 37.19726 6.92510 110 41 1 + 15.46581 109.28650 37.99192 7.19570 110 41 1 + 12.13591 109.28650 23.90815 8.27361 220 51 2 + 13.97800 107.26750 27.72769 10.12262 220 50 2 + 16.43625 105.24850 32.80815 12.58797 220 50 2 + 18.80094 103.22950 37.87590 15.05332 110 50 1 + 21.10136 101.21050 42.93327 17.51866 110 49 1 + 22.77225 99.19150 46.72104 19.36768 110 49 1 + 34.12204 99.19150 161.29178 13.69459 110 21 1 + 33.08394 100.56490 148.60114 14.25371 110 22 1 + 32.14402 101.93830 150.00588 14.99920 110 21 1 + 31.14417 103.31170 155.04644 15.74469 110 20 1 + 30.11263 104.68510 161.14420 16.49018 110 19 1 + 28.89128 106.05850 166.01892 17.04930 110 17 1 + 29.26402 106.05850 169.36158 17.42204 110 17 1 + 28.06328 107.43190 174.46398 17.98116 110 16 1 + 27.08113 108.80530 181.36703 18.72665 110 15 1 + 26.14081 110.17870 188.34940 19.47214 110 14 1 + 25.25193 111.55210 195.38331 20.21763 110 13 1 + 24.23772 112.92550 200.68154 20.77674 110 12 1 + 24.61046 112.92550 204.22293 21.14949 110 12 1 + 23.66363 114.29890 209.54580 21.70860 110 11 1 + 22.96872 115.67230 216.65723 22.45409 110 11 1 + 22.33671 117.04570 223.78193 23.19958 110 0 1 + 21.76494 118.41910 230.91669 23.94507 110 0 1 + 21.06439 119.79250 236.27276 24.50419 110 0 1 + 21.43713 119.79250 239.84569 24.87693 110 0 1 + 20.78953 121.16590 245.20785 25.43605 110 0 1 + 20.37381 122.53930 252.36133 26.18154 110 0 1 + 19.99679 123.91270 259.51871 26.92703 110 0 1 + 19.65167 125.28610 266.67927 27.67252 110 0 1 + 19.14526 126.65950 272.05135 28.23164 110 0 1 + 19.51800 126.65950 275.63352 28.60438 110 0 1 + 19.02924 128.03290 281.00777 29.16350 110 0 1 + 18.73911 129.40630 288.17492 29.90899 110 0 1 + 18.45744 130.77970 295.34358 30.65448 110 0 1 + 18.18045 132.15310 302.51355 31.39997 110 0 1 18.25240 133.52650 307.89172 31.95908 1 0 A [END OF DATA] [END OF TABLE] @@ -41652,9 +41788,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 11.981 'Hydrobiaklei' + -10.00 11.988 'Hydrobiaklei' -12.00 8.777 'Basisveen' - -12.50 84.000 'Eerste zandlaag' + -12.50 83.894 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -41676,7 +41812,7 @@ Layer name -7.00 0.00 'Wadzand' -10.00 2.22 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 28.46 'Eerste zandlaag' + -12.50 28.42 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -41800,14 +41936,14 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.34000 47.92000 47.70000 0.65650 0.65650 - -10.44000 12.08000 53.00000 1.85850 1.85850 - -10.54000 39.00000 12.00000 2.91250 2.91250 - -10.64000 49.10000 49.08000 3.81850 3.81850 - -10.74000 12.30000 12.00000 4.57650 4.57650 - -10.79000 11.80000 12.00000 4.90000 4.90000 - -10.82000 71.51400 34.34100 5.93099 4.95378 - -10.88000 71.51400 34.34100 8.15861 5.06999 + -10.34000 1.00000 1.00000 0.65650 0.65650 + -10.44000 1.00000 1.00000 1.85850 1.85850 + -10.54000 1.00000 1.00000 2.91250 2.91250 + -10.64000 1.00000 1.00000 3.81850 3.81850 + -10.74000 1.00000 1.00000 4.57650 4.57650 + -10.79000 1.00000 1.00000 4.90000 4.90000 + -10.82000 71.51400 34.34000 5.93099 4.95378 + -10.88000 71.51400 34.34000 8.15861 5.06999 -10.94000 71.51400 34.34100 10.60712 5.19773 -11.00000 71.51400 34.34100 13.27649 5.33698 -11.06000 71.51400 34.34100 16.16675 5.48776 @@ -41905,7 +42041,7 @@ Lambda passive -12.30000 6.14890 17.63278 -0.10538 0.77308 0.00000 2.86763 -12.40000 5.07790 15.79341 -0.77857 0.77308 0.00000 3.11023 -12.50000 4.00690 14.42011 -1.28366 0.77308 0.00000 3.37340 - -12.50000 4.00690 23.52201 1.29840 0.53153 0.29756 5.39057 + -12.50000 4.00690 23.52201 1.29840 0.52256 0.29756 5.39057 -12.64000 5.43350 29.05656 1.61697 0.52256 0.29759 5.34767 -12.78000 6.86010 36.31478 2.04190 0.52256 0.29765 5.29362 -12.92000 8.28670 43.46478 2.46703 0.52256 0.29771 5.24512 @@ -41917,7 +42053,7 @@ Lambda passive -13.62000 15.41970 78.70011 4.59533 0.52256 0.29802 5.10387 -13.76000 16.84630 85.75249 5.02134 0.52256 0.29807 5.09029 -13.90000 18.27290 91.04996 5.34089 0.52256 0.29810 5.08198 - -13.90000 18.27290 94.58604 5.55394 0.61707 0.29813 5.07720 + -13.90000 18.27290 94.58604 5.55394 0.52256 0.29813 5.07720 -14.04000 19.69950 99.89664 5.87352 0.52256 0.29816 5.07102 -14.18000 21.12610 106.98765 6.29966 0.52256 0.29819 5.06424 -14.32000 22.55270 114.08990 6.72580 0.52256 0.29823 5.05881 @@ -42108,24 +42244,24 @@ Status character 2.51295 71.00230 48.17086 4.46557 1 0 A 2.65698 71.59090 50.93179 4.72151 1 0 A 0.00000 71.59090 42.11871 6.95468 1 0 A - 4.79474 72.98361 41.16455 6.94943 110 0 1 - 3.71630 74.37632 40.32470 6.94244 110 0 1 - 2.73568 75.76903 39.76490 6.93544 110 0 1 - 1.84568 77.16174 39.36073 6.92845 110 0 1 - 1.12662 78.55445 39.12059 6.92320 110 0 1 - 0.95162 78.55445 38.98477 6.91970 110 0 1 - 0.30904 79.94716 38.80843 6.91446 110 0 1 + 4.86077 72.98361 41.16455 6.94943 110 0 1 + 3.78148 74.37632 40.32470 6.94244 110 0 1 + 2.79983 75.76903 39.76490 6.93544 110 0 1 + 1.90862 77.16174 39.36073 6.92845 110 0 1 + 1.18815 78.55445 39.12059 6.92320 110 0 1 + 1.01316 78.55445 38.98477 6.91970 110 0 1 + 0.36896 79.94716 38.80843 6.91446 110 0 1 0.00000 81.33987 38.60879 6.90746 1 0 A 0.00000 82.73258 38.44164 6.90047 1 0 A 0.00000 84.12529 38.29890 6.89347 1 0 A 0.00000 85.51800 38.20395 6.88822 1 0 A - 2.89793 85.51800 22.75685 7.03050 110 0 1 - 2.38502 87.75900 21.34833 6.40952 110 0 1 - 1.68678 90.00000 19.48369 5.58155 110 0 1 - 1.00738 92.24100 17.63278 4.75358 110 0 1 - 0.34401 94.48200 15.79341 3.92562 110 0 1 + 2.89544 85.51800 22.75685 7.03050 110 0 1 + 2.38290 87.75900 21.34833 6.40952 110 0 1 + 1.68501 90.00000 19.48369 5.58155 110 0 1 + 1.00596 92.24100 17.63278 4.75358 110 0 1 + 0.34292 94.48200 15.79341 3.92562 110 0 1 0.00000 96.72300 14.42011 3.30464 1 0 A - 1.29840 96.72300 23.52201 2.31937 1 0 A + 1.29840 96.72300 23.52201 2.28023 1 0 A 1.61697 98.09640 29.05656 2.83935 1 0 A 2.04190 99.46980 36.31478 3.58484 1 0 A 2.46703 100.84320 43.46478 4.33033 1 0 A @@ -42136,25 +42272,25 @@ Status character 4.16940 106.33680 71.65943 7.31229 1 0 A 4.59533 107.71020 78.70011 8.05778 1 0 A 5.02134 109.08360 85.75249 8.80327 1 0 A - 5.89514 110.45700 91.04996 9.36238 110 0 1 - 8.02848 110.45700 94.58604 11.49572 110 0 1 - 8.33410 111.83040 99.89664 10.29424 110 0 1 - 10.52161 113.20380 106.98765 11.03973 110 0 1 - 12.64666 114.57720 114.08990 11.78522 110 11 1 - 14.71183 115.95060 121.20216 12.53071 110 12 1 - 16.53335 117.32400 126.54193 13.08983 110 13 1 - 16.90609 117.32400 130.10446 13.46257 110 13 1 - 18.67492 118.69740 135.45186 14.02169 110 14 1 - 20.58479 120.07080 142.58712 14.76718 110 14 1 - 22.45609 121.44420 149.72807 15.51267 110 15 1 - 24.29557 122.81760 156.87391 16.25816 110 15 1 - 25.92359 124.19100 162.23597 16.81728 110 16 1 - 26.29634 124.19100 165.81195 17.19002 110 16 1 - 27.90665 125.56440 171.17764 17.74914 110 16 1 - 29.69101 126.93780 178.33444 18.49463 110 17 1 - 31.46687 128.31120 185.49394 19.24012 110 17 1 - 33.23802 129.68460 192.65577 19.98561 110 17 1 - 34.82191 131.05800 198.02843 20.54472 110 18 1 + 5.90141 110.45700 91.04996 9.36238 110 0 1 + 6.27415 110.45700 94.58604 9.73513 110 0 1 + 8.33922 111.83040 99.89664 10.29424 110 0 1 + 10.52511 113.20380 106.98765 11.03973 110 0 1 + 12.64810 114.57720 114.08990 11.78522 110 11 1 + 14.71085 115.95060 121.20216 12.53071 110 12 1 + 16.52963 117.32400 126.54193 13.08983 110 13 1 + 16.90238 117.32400 130.10446 13.46257 110 13 1 + 18.66822 118.69740 135.45186 14.02169 110 14 1 + 20.57491 120.07080 142.58712 14.76718 110 14 1 + 22.44291 121.44420 149.72807 15.51267 110 15 1 + 24.27901 122.81760 156.87391 16.25816 110 15 1 + 25.90366 124.19100 162.23597 16.81728 110 16 1 + 26.27640 124.19100 165.81195 17.19002 110 16 1 + 27.88339 125.56440 171.17764 17.74914 110 16 1 + 29.66450 126.93780 178.33444 18.49463 110 17 1 + 31.43715 128.31120 185.49394 19.24012 110 17 1 + 33.20512 129.68460 192.65577 19.98561 110 17 1 + 34.78583 131.05800 198.02843 20.54472 110 18 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -42169,9 +42305,9 @@ Layer name [DATA] -9.99 4.250 'OWB' -10.79 0.667 'Grind' - -11.09 1.314 'Hydrobiaklei' - -12.00 0.687 'Basisveen' - -12.50 49.314 'Eerste zandlaag' + -11.09 1.349 'Hydrobiaklei' + -12.00 0.686 'Basisveen' + -12.50 49.165 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -42188,9 +42324,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.24 'Grind' - -11.09 -0.24 'Hydrobiaklei' + -11.09 -0.25 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -16.71 'Eerste zandlaag' + -12.50 -16.66 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -42430,8 +42566,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 399.30564 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 491.65085 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 399.30488 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 491.64624 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -42474,8 +42610,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 14.68 : Percentage mobilized resistance left 16.69 : Percentage mobilized resistance right - 93.89 : Effective left - 137.28 : Effective right + 93.86 : Effective left + 137.27 : Effective right 514.53 : Water pressure left 1120.54 : Water pressure right 639.49 : Max effective resistance left @@ -42484,8 +42620,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 18.62 : Vertical force left - 41.03 : Vertical force right + 18.60 : Vertical force left + 41.02 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -42494,17 +42630,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --18.62 : Active force -41.03 : Passive force --18.62 : Plugged active force -41.03 : Plugged passive force +-18.60 : Active force +41.02 : Passive force +-18.60 : Plugged active force +41.02 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -22.41 : Resulting Vertical Force Unplugged -22.41 : Resulting Vertical Force Plugged +22.42 : Resulting Vertical Force Unplugged +22.42 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -42517,210 +42653,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.47664 - 0.00000 0.00000 14.87031 - 0.00000 0.00000 14.26398 - 0.00000 0.00000 13.65765 - 0.00000 0.00000 13.05132 - 0.00000 0.00000 12.44499 - 0.00000 0.00000 12.44499 - 0.00000 0.00000 11.83867 - 0.00000 0.00000 11.23234 - 0.00000 0.00000 10.62601 - 0.00000 0.00000 10.01968 - 0.00000 0.00000 9.41335 - 0.00000 0.00000 9.41335 - 0.00000 0.00049 9.34202 - 0.00001 0.00196 9.27069 - 0.00004 0.00441 9.19936 - 0.00010 0.00785 9.12802 - 0.00020 0.01226 9.05669 - 0.00020 0.01226 9.05669 - 0.00803 0.14175 8.20070 - 0.03988 0.41251 7.34471 - 0.11269 0.82453 6.48871 - 0.24341 1.37781 5.63268 - 0.44901 2.07236 4.77661 - 0.44901 2.07236 4.77661 - 0.68977 2.75906 4.06316 - 1.00409 3.54386 3.34963 - 1.40181 4.42676 2.63596 - 1.89272 5.40776 1.92211 - 2.48663 6.48686 1.20802 - 2.48663 6.48686 1.20802 - 3.19336 7.66406 0.49363 - 4.02271 8.93936 -0.22116 - 4.98450 10.31276 -0.93647 - 6.08854 11.78426 -1.65242 - 7.34462 13.35386 -2.36914 - 7.34462 13.35386 -2.36914 - 8.55395 14.78218 -2.98624 - 9.88924 16.28305 -3.60413 - 11.35672 17.85648 -4.22296 - 12.96263 19.50246 -4.84285 - 14.71322 21.22099 -5.46395 - 14.71322 -136.58465 -5.46395 - -0.72242 -134.19476 -6.28888 - -15.87834 -131.67738 -7.11369 - -30.74001 -129.03250 -7.93594 - -45.29291 -126.26014 -8.75321 - -59.52248 -123.36028 -9.56305 - -59.52156 -123.37828 -9.56305 - -69.30780 -121.26717 -10.12565 - -78.92263 -119.09327 -10.68266 - -88.36105 -116.85659 -11.23332 - -97.61802 -114.55713 -11.77687 - -106.68851 -112.19488 -12.31255 - -106.68877 -112.19679 -12.31255 - -108.92671 -111.59642 -12.44515 - -111.15260 -110.99212 -12.57721 - -113.36637 -110.38390 -12.70870 - -115.56793 -109.77176 -12.83962 - -117.75721 -109.15569 -12.96996 - -117.75725 -109.15524 -12.96996 - -128.51663 -106.01604 -13.61251 - -138.95719 -102.77874 -14.23886 - -149.06911 -99.44334 -14.84775 - -158.84259 -96.00984 -15.43790 - -168.26781 -92.47824 -16.00803 - -168.26796 -92.47308 -16.00803 - -177.33460 -88.84338 -16.55691 - -186.03337 -85.11558 -17.08345 - -194.35445 -81.28968 -17.58659 - -202.28803 -77.36568 -18.06529 - -209.82431 -73.34358 -18.51851 - -209.82430 -73.34314 -18.51851 - -216.95342 -69.22294 -18.94523 - -223.66562 -65.00464 -19.34461 - -229.95108 -60.68824 -19.71587 - -235.80000 -56.27374 -20.05821 - -241.20256 -51.76114 -20.37084 - -241.20260 -51.76046 -20.37084 - -247.99754 -45.27801 -20.75713 - -253.87147 -38.60328 -21.08216 - -258.79749 -31.73628 -21.34473 - -262.74866 -24.67701 -21.54361 - -265.69808 -17.42546 -21.67760 - -265.69814 -17.42392 -21.67760 - -267.51618 -10.51817 -21.74303 - -268.42568 -3.44663 -21.75148 - -268.40512 3.79069 -21.70297 - -267.43292 11.19381 -21.59751 - -265.48754 18.76272 -21.43508 - -265.48739 18.76243 -21.43508 - -262.54732 26.49713 -21.21588 - -258.59095 34.39761 -20.94075 - -253.59675 42.46388 -20.61078 - -247.54316 50.69594 -20.22702 - -240.40862 59.09379 -19.79054 - -240.40863 59.09378 -19.79054 - -230.83962 68.95626 -19.22498 - -219.77978 79.03800 -18.59439 - -207.19633 89.33900 -17.90232 - -193.05649 99.85925 -17.15230 - -177.32749 110.59876 -16.34790 - -177.32749 110.59876 -16.34790 - -159.97654 121.55752 -15.49300 - -140.97086 132.73554 -14.59301 - -120.27768 144.13282 -13.65376 - -97.86422 155.74935 -12.68109 - -73.69770 167.58514 -11.68083 - -73.69885 167.59098 -11.68083 - -47.74561 179.64602 -10.65920 - -19.97376 191.92032 -9.62407 - 9.64949 204.41388 -8.58380 - 41.15692 217.12669 -7.54672 - 74.58130 230.05876 -6.52120 - 74.58295 230.06889 -6.52120 - 109.95858 243.22022 -5.51599 - 147.31672 256.59080 -4.54169 - 186.69015 270.18063 -3.60939 - 228.11166 283.98972 -2.73018 - 271.61401 298.01807 -1.91515 - 271.61471 298.03013 -1.91515 - 272.21096 298.21929 -1.90473 - 272.80759 298.40848 -1.89433 - 273.40459 298.59772 -1.88394 - 274.00198 298.78699 -1.87356 - 274.59974 298.97631 -1.86320 - 274.59974 298.97629 -1.86320 - 286.02928 302.58070 -1.66897 - 297.59605 306.19927 -1.47995 - 309.30060 309.83201 -1.29634 - 321.14347 313.47892 -1.11835 - 333.12518 317.13999 -0.94621 - 333.12518 -174.51088 -0.94621 - 329.65428 -172.57831 -0.85802 - 326.22207 -170.64182 -0.77150 - 322.82863 -168.70140 -0.68661 - 319.47404 -166.75706 -0.60336 - 316.15838 -164.80879 -0.52171 - 316.15811 -164.80193 -0.52171 - 300.03451 -158.94080 -0.13702 - 284.24452 -156.84266 0.20987 - 268.66925 -154.64652 0.52093 - 253.31848 -152.35238 0.79811 - 238.20204 -149.96022 1.04338 - 238.20203 -149.96054 1.04338 - 232.26771 -146.75395 1.13300 - 226.46182 -143.53926 1.21792 - 220.78466 -140.31758 1.29829 - 215.23651 -137.08889 1.37420 - 209.81766 -133.85212 1.44577 - 209.81766 -133.85216 1.44577 - 207.14725 -133.18866 1.47996 - 204.49010 -132.52628 1.51311 - 201.84619 -131.86517 1.54523 - 199.21549 -131.20535 1.57633 - 196.59797 -130.54665 1.60643 - 196.59840 -130.56165 1.60643 - 184.85859 -127.30930 1.73109 - 173.44391 -123.53599 1.83647 - 162.37967 -119.61016 1.92372 - 151.67902 -115.54722 1.99400 - 141.35364 -111.36649 2.04846 - 141.35351 -111.35707 2.04846 - 131.41452 -107.06980 2.08822 - 121.86833 -102.73242 2.11427 - 112.71794 -98.37139 2.12758 - 103.96535 -93.99018 2.12908 - 95.61217 -89.59417 2.11975 - 95.61228 -89.59356 2.11975 - 86.83214 -86.05365 2.09807 - 78.39417 -82.73499 2.06546 - 70.27926 -79.59287 2.02293 - 62.46966 -76.62878 1.97152 - 54.94574 -73.89742 1.91224 - 54.94453 -73.88300 1.91224 - 45.09263 -66.89268 1.81800 - 36.20462 -60.11598 1.71265 - 28.24923 -53.57329 1.59814 - 21.19220 -47.28540 1.47646 - 14.99644 -41.27345 1.34957 - 14.99689 -41.26846 1.34957 - 9.62496 -35.52370 1.21922 - 5.03645 -30.07486 1.08651 - 1.19037 -24.91797 0.95239 - -1.95429 -20.05471 0.81782 - -4.43887 -15.48983 0.68375 - -4.44123 -15.46380 0.68375 - -6.30263 -11.17746 0.55096 - -7.58449 -7.18191 0.41974 - -8.32664 -3.46648 0.29027 - -8.57071 -0.08539 0.16274 - -8.37415 2.79007 0.03735 - -8.37084 2.81041 0.03735 - -7.80061 5.19391 -0.08588 - -6.95031 6.85375 -0.20718 - -5.90916 7.92217 -0.32681 - -4.75929 8.40815 -0.44501 - -3.58170 8.31920 -0.56202 - -3.57957 8.30400 -0.56202 - -2.45646 7.64601 -0.67816 - -1.46505 6.42312 -0.79370 - -0.68282 4.66802 -0.90884 - -0.17727 2.50005 -1.02375 - 0.00231 0.01319 -1.13861 + 0.00000 0.00000 15.47539 + 0.00000 0.00000 14.86910 + 0.00000 0.00000 14.26280 + 0.00000 0.00000 13.65651 + 0.00000 0.00000 13.05022 + 0.00000 0.00000 12.44393 + 0.00000 0.00000 12.44393 + 0.00000 0.00000 11.83764 + 0.00000 0.00000 11.23135 + 0.00000 0.00000 10.62505 + 0.00000 0.00000 10.01876 + 0.00000 0.00000 9.41247 + 0.00000 0.00000 9.41247 + 0.00000 0.00049 9.34114 + 0.00001 0.00196 9.26981 + 0.00004 0.00441 9.19848 + 0.00010 0.00785 9.12716 + 0.00020 0.01226 9.05583 + 0.00020 0.01226 9.05583 + 0.00803 0.14175 8.19989 + 0.03988 0.41251 7.34396 + 0.11269 0.82453 6.48801 + 0.24341 1.37781 5.63203 + 0.44901 2.07236 4.77600 + 0.44901 2.07236 4.77600 + 0.68977 2.75906 4.06260 + 1.00409 3.54386 3.34911 + 1.40181 4.42676 2.63549 + 1.89272 5.40776 1.92168 + 2.48663 6.48686 1.20763 + 2.48663 6.48686 1.20763 + 3.19336 7.66406 0.49328 + 4.02271 8.93936 -0.22146 + 4.98450 10.31276 -0.93673 + 6.08854 11.78426 -1.65264 + 7.34462 13.35386 -2.36932 + 7.34462 13.35386 -2.36932 + 8.55395 14.78218 -2.98638 + 9.88924 16.28305 -3.60423 + 11.35672 17.85648 -4.22302 + 12.96263 19.50246 -4.84288 + 14.71322 21.22099 -5.46394 + 14.71322 -136.58389 -5.46394 + -0.72233 -134.19400 -6.28882 + -15.87817 -131.67661 -7.11358 + -30.73975 -129.03174 -7.93578 + -45.29256 -126.25937 -8.75300 + -59.52205 -123.35952 -9.56280 + -59.52113 -123.37753 -9.56280 + -69.30730 -121.26642 -10.12536 + -78.92208 -119.09253 -10.68234 + -88.36043 -116.85585 -11.23297 + -97.61734 -114.55638 -11.77648 + -106.68778 -112.19413 -12.31213 + -106.68804 -112.19605 -12.31213 + -108.92596 -111.59567 -12.44472 + -111.15184 -110.99138 -12.57676 + -113.36559 -110.38316 -12.70825 + -115.56714 -109.77101 -12.83916 + -117.75641 -109.15495 -12.96949 + -117.75644 -109.15449 -12.96949 + -128.51575 -106.01529 -13.61200 + -138.95623 -102.77799 -14.23831 + -149.06808 -99.44259 -14.84716 + -158.84148 -96.00909 -15.43726 + -168.26663 -92.47749 -16.00735 + -168.26678 -92.47233 -16.00735 + -177.33334 -88.84263 -16.55619 + -186.03203 -85.11483 -17.08268 + -194.35304 -81.28893 -17.58579 + -202.28655 -77.36493 -18.06445 + -209.82275 -73.34283 -18.51762 + -209.82274 -73.34239 -18.51762 + -216.95179 -69.22219 -18.94430 + -223.66391 -65.00389 -19.34364 + -229.94930 -60.68749 -19.71486 + -235.79814 -56.27299 -20.05716 + -241.20063 -51.76039 -20.36975 + -241.20067 -51.75970 -20.36975 + -247.99550 -45.27726 -20.75598 + -253.86933 -38.60253 -21.08096 + -258.79524 -31.73553 -21.34347 + -262.74631 -24.67626 -21.54230 + -265.69562 -17.42470 -21.67624 + -265.69568 -17.42317 -21.67624 + -267.51362 -10.51742 -21.74162 + -268.42303 -3.44588 -21.75003 + -268.40236 3.79145 -21.70147 + -267.43007 11.19456 -21.59595 + -265.48459 18.76347 -21.43349 + -265.48444 18.76319 -21.43349 + -262.54427 26.49788 -21.21423 + -258.58781 34.39837 -20.93906 + -253.59351 42.46464 -20.60904 + -247.53982 50.69670 -20.22524 + -240.40518 59.09455 -19.78872 + -240.40519 59.09453 -19.78872 + -230.83606 68.95702 -19.22311 + -219.77611 79.03876 -18.59248 + -207.19255 89.33976 -17.90035 + -193.05260 99.86001 -17.15029 + -177.32348 110.59952 -16.34584 + -177.32348 110.59952 -16.34584 + -159.97241 121.55828 -15.49090 + -140.96663 132.73630 -14.59086 + -120.27333 144.13358 -13.65158 + -97.85976 155.75011 -12.67887 + -73.69312 167.58590 -11.67857 + -73.69427 167.59173 -11.67857 + -47.74092 179.64677 -10.65690 + -19.96896 191.92107 -9.62173 + 9.65440 204.41463 -8.58142 + 41.16194 217.12744 -7.54432 + 74.58643 230.05951 -6.51876 + 74.58794 230.07192 -6.51876 + 109.96402 243.22325 -5.51352 + 147.32262 256.59383 -4.53919 + 186.69650 270.18366 -3.60686 + 228.11846 283.99275 -2.72763 + 271.62126 298.02110 -1.91258 + 271.62198 298.03324 -1.91258 + 272.21824 298.22240 -1.90216 + 272.81487 298.41159 -1.89176 + 273.41188 298.60083 -1.88137 + 274.00927 298.79010 -1.87099 + 274.60704 298.97942 -1.86063 + 274.60704 298.97939 -1.86063 + 286.03670 302.58380 -1.66639 + 297.60359 306.20238 -1.47736 + 309.30826 309.83512 -1.29374 + 321.15124 313.48203 -1.11576 + 333.13307 317.14310 -0.94361 + 333.13307 -174.50316 -0.94361 + 329.66233 -172.57059 -0.85542 + 326.23028 -170.63410 -0.76889 + 322.83699 -168.69368 -0.68400 + 319.48256 -166.74934 -0.60074 + 316.16704 -164.80107 -0.51909 + 316.16708 -164.80154 -0.51909 + 300.04352 -158.94040 -0.13440 + 284.25357 -156.84226 0.21251 + 268.67834 -154.64612 0.52357 + 253.32761 -152.35198 0.80076 + 238.21121 -149.95983 1.04605 + 238.21117 -149.96035 1.04605 + 232.27685 -146.75376 1.13566 + 226.47097 -143.53907 1.22059 + 220.79382 -140.31739 1.30095 + 215.24568 -137.08870 1.37687 + 209.82683 -133.85193 1.44844 + 209.82683 -133.85197 1.44844 + 207.15643 -133.18847 1.48263 + 204.49929 -132.52609 1.51579 + 201.85538 -131.86498 1.54791 + 199.22468 -131.20516 1.57901 + 196.60716 -130.54646 1.60911 + 196.60760 -130.56149 1.60911 + 184.86776 -127.31055 1.73377 + 173.45283 -123.54034 1.83915 + 162.38805 -119.61743 1.92640 + 151.68662 -115.55721 1.99668 + 141.36022 -111.37898 2.05114 + 141.36017 -111.37191 2.05114 + 131.41987 -107.08389 2.09090 + 121.87242 -102.74592 2.11695 + 112.72083 -98.38431 2.13025 + 103.96709 -94.00251 2.13175 + 95.61282 -89.60592 2.12241 + 95.61291 -89.60537 2.12241 + 86.83163 -86.06488 2.10073 + 78.39255 -82.74597 2.06811 + 70.27655 -79.60360 2.02558 + 62.46590 -76.63926 1.97417 + 54.94094 -73.90765 1.91488 + 54.93971 -73.89281 1.91488 + 45.08679 -66.89726 1.82064 + 36.19850 -60.11537 1.71529 + 28.24357 -53.56752 1.60079 + 21.18771 -47.27452 1.47910 + 14.99383 -41.25748 1.35221 + 14.99428 -41.25248 1.35221 + 9.62469 -35.50522 1.22187 + 5.03912 -30.05135 1.08917 + 1.19669 -24.88947 0.95505 + -1.94363 -20.02125 0.82048 + -4.42319 -15.45143 0.68640 + -4.42434 -15.44611 0.68640 + -6.28292 -11.15487 0.55361 + -7.56127 -7.15445 0.42238 + -8.29924 -3.43421 0.29289 + -8.53835 -0.04600 0.16534 + -8.33561 2.83886 0.03992 + -8.33243 2.85862 0.03992 + -7.76617 5.12956 -0.08335 + -6.92425 6.79846 -0.20470 + -5.89021 7.87574 -0.32438 + -4.74624 8.37037 -0.44264 + -3.57335 8.28984 -0.55972 + -3.57122 8.27465 -0.55972 + -2.45164 7.62484 -0.67592 + -1.46263 6.40991 -0.79153 + -0.68180 4.66064 -0.90673 + -0.17702 2.49642 -1.02171 + 0.00231 0.01319 -1.13664 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -42946,7 +43082,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -42958,7 +43094,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -43143,50 +43279,50 @@ Status character 0.00000 105.16320 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 14.67148 101.25211 28.71471 4.03872 220 51 2 - 15.44741 102.14482 29.77573 4.39952 220 52 2 - 16.16758 103.03753 30.83654 4.76032 220 52 2 - 16.83546 103.93024 31.89713 5.12111 220 53 2 - 17.34318 104.82295 32.69245 5.39171 220 53 2 - 17.56592 104.82295 33.22259 5.57211 220 53 2 - 18.02822 105.71566 34.01772 5.84271 220 53 2 - 18.55949 106.60837 35.07774 6.20351 220 53 2 - 19.05126 107.50108 36.13758 6.56430 220 53 2 - 19.50646 108.39379 37.19726 6.92510 220 52 2 - 19.81666 109.28650 37.99192 7.19570 220 52 2 - 13.17022 109.28650 23.90815 8.27361 220 55 2 - 15.03105 107.26750 27.72769 10.12262 220 54 2 - 17.50311 105.24850 32.80815 12.58797 220 53 2 - 19.95904 103.22950 37.87590 15.05332 220 53 2 - 22.40083 101.21050 42.93327 17.51866 220 52 2 - 24.20546 99.19150 46.72104 19.36768 220 52 2 - 50.32580 99.19150 161.29178 13.69459 110 31 1 - 49.17973 100.56490 148.60114 14.25371 110 33 1 - 48.01588 101.93830 150.00588 14.99920 110 32 1 - 46.68530 103.31170 155.04644 15.74469 110 30 1 - 45.22541 104.68510 161.14420 16.49018 110 28 1 - 43.48724 106.05850 166.01892 17.04930 110 26 1 - 43.89631 106.05850 169.36158 17.45837 110 26 1 - 42.06317 107.43190 174.46398 17.98116 110 24 1 - 40.41426 108.80530 181.36703 18.72665 110 22 1 - 38.74468 110.17870 188.34940 19.47214 110 21 1 - 37.07223 111.55210 195.38331 20.21763 110 19 1 - 35.22836 112.92550 200.68154 20.77674 110 18 1 - 35.60111 112.92550 204.22293 21.14949 110 17 1 - 33.78685 114.29890 209.54580 21.70860 110 16 1 - 32.19361 115.67230 216.65723 22.45409 110 15 1 - 30.63840 117.04570 223.78193 23.19958 110 14 1 - 29.12457 118.41910 230.91669 23.94507 110 13 1 - 27.46911 119.79250 236.27276 24.50419 110 12 1 - 29.58178 119.79250 239.84569 26.61686 110 12 1 - 26.23156 121.16590 245.20785 25.43605 110 11 1 - 24.84749 122.53930 252.36133 26.18154 110 0 1 - 23.49809 123.91270 259.51871 26.92703 110 0 1 - 22.17815 125.28610 266.67927 27.67252 110 0 1 - 20.69610 126.65950 272.05135 28.23164 110 0 1 - 21.06885 126.65950 275.63352 28.60438 110 0 1 - 19.60447 128.03290 281.00777 29.16350 110 0 1 - 18.33851 129.40630 288.17492 29.90899 110 0 1 + 14.67782 101.25211 28.71471 4.03872 220 51 2 + 15.45379 102.14482 29.77573 4.39952 220 52 2 + 16.17398 103.03753 30.83654 4.76032 220 52 2 + 16.84189 103.93024 31.89713 5.12111 220 53 2 + 17.34962 104.82295 32.69245 5.39171 220 53 2 + 17.57236 104.82295 33.22259 5.57211 220 53 2 + 18.03466 105.71566 34.01772 5.84271 220 53 2 + 18.56593 106.60837 35.07774 6.20351 220 53 2 + 19.05770 107.50108 36.13758 6.56430 220 53 2 + 19.51288 108.39379 37.19726 6.92510 220 52 2 + 19.82307 109.28650 37.99192 7.19570 220 52 2 + 13.17278 109.28650 23.90815 8.27361 220 55 2 + 15.03361 107.26750 27.72769 10.12262 220 54 2 + 17.50565 105.24850 32.80815 12.58797 220 53 2 + 19.96157 103.22950 37.87590 15.05332 220 53 2 + 22.40334 101.21050 42.93327 17.51866 220 52 2 + 24.20796 99.19150 46.72104 19.36768 220 52 2 + 50.36332 99.19150 161.29178 13.69459 110 31 1 + 49.21696 100.56490 148.60114 14.25371 110 33 1 + 48.05284 101.93830 150.00588 14.99920 110 32 1 + 46.72199 103.31170 155.04644 15.74469 110 30 1 + 45.26184 104.68510 161.14420 16.49018 110 28 1 + 43.52344 106.05850 166.01892 17.04930 110 26 1 + 43.89618 106.05850 169.36158 17.42204 110 26 1 + 42.09915 107.43190 174.46398 17.98116 110 24 1 + 40.45002 108.80530 181.36703 18.72665 110 22 1 + 38.78024 110.17870 188.34940 19.47214 110 21 1 + 37.10758 111.55210 195.38331 20.21763 110 19 1 + 35.26349 112.92550 200.68154 20.77674 110 18 1 + 35.63623 112.92550 204.22293 21.14949 110 17 1 + 33.82172 114.29890 209.54580 21.70860 110 16 1 + 32.22819 115.67230 216.65723 22.45409 110 15 1 + 30.67262 117.04570 223.78193 23.19958 110 14 1 + 29.15836 118.41910 230.91669 23.94507 110 13 1 + 27.50241 119.79250 236.27276 24.50419 110 12 1 + 27.87515 119.79250 239.84569 24.87693 110 12 1 + 26.26426 121.16590 245.20785 25.43605 110 11 1 + 24.87951 122.53930 252.36133 26.18154 110 0 1 + 23.52936 123.91270 259.51871 26.92703 110 0 1 + 22.20863 125.28610 266.67927 27.67252 110 0 1 + 20.72578 126.65950 272.05135 28.23164 110 0 1 + 21.09852 126.65950 275.63352 28.60438 110 0 1 + 19.63332 128.03290 281.00777 29.16350 110 0 1 + 18.36653 129.40630 288.17492 29.90899 110 0 1 17.50706 130.77970 295.34358 30.65448 1 0 A 17.93298 132.15310 302.51355 31.39997 1 0 A 18.25240 133.52650 307.89172 31.95908 1 0 A @@ -43207,9 +43343,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 15.075 'Hydrobiaklei' - -12.00 9.358 'Basisveen' - -12.50 112.852 'Eerste zandlaag' + -10.00 15.080 'Hydrobiaklei' + -12.00 9.359 'Basisveen' + -12.50 112.835 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -43355,14 +43491,14 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.34000 23.00000 2.00000 3.90001 3.90001 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.54000 88.00000 59.00000 19.50031 19.50031 - -10.64000 23.00000 23.00400 27.30061 27.30061 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.34000 1.00000 1.00000 3.90001 3.90001 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.54000 1.00000 1.00000 19.50031 19.50031 + -10.64000 1.00000 1.00000 27.30061 27.30061 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -43460,7 +43596,7 @@ Lambda passive -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 -11.45400 17.98596 58.76656 2.47750 0.73559 0.13775 3.26736 -11.54500 18.47645 59.28463 2.66733 0.73559 0.14533 3.23010 - -11.54500 18.47645 59.65500 2.79360 0.73753 0.15020 3.20742 + -11.54500 18.47645 59.65500 2.79360 0.73559 0.15020 3.20742 -11.63600 18.96694 60.23996 2.98273 0.73559 0.15726 3.17605 -11.72700 19.45743 61.05929 3.23462 0.73559 0.16624 3.13810 -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 @@ -43472,7 +43608,7 @@ Lambda passive -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 -12.40000 9.68490 23.80984 2.13203 0.77308 0.22014 2.45845 -12.50000 6.87390 20.21114 0.80386 0.77308 0.10610 2.66756 - -12.50000 6.87390 38.27144 2.14143 0.77379 0.29616 5.29302 + -12.50000 6.87390 38.27144 2.14143 0.52256 0.29616 5.29302 -12.64000 8.30050 43.67886 2.45917 0.52256 0.29627 5.26220 -12.78000 9.72710 50.82580 2.88324 0.52256 0.29641 5.22517 -12.92000 11.15370 57.92016 3.30777 0.52256 0.29656 5.19291 @@ -43674,25 +43810,25 @@ Status character 4.45533 67.48860 85.40437 7.91722 1 0 A 4.51935 67.68480 86.63145 8.03097 1 0 A 4.56736 67.88100 87.55176 8.11628 1 0 A - 1.63285 67.88100 57.49074 11.87722 110 0 1 - 6.56645 68.77371 57.44729 12.14781 110 0 1 - 5.57924 69.66642 57.69015 12.50861 110 0 1 - 4.71066 70.55913 58.15792 12.86941 110 0 1 - 3.95382 71.45184 58.76656 13.23021 110 0 1 - 3.29736 72.34455 59.28463 13.50080 110 0 1 - 3.34243 72.34455 59.65500 13.71738 110 0 1 + 1.62883 67.88100 57.49074 11.87722 110 0 1 + 6.60792 68.77371 57.44729 12.14781 110 0 1 + 5.61873 69.66642 57.69015 12.50861 110 0 1 + 4.74806 70.55913 58.15792 12.86941 110 0 1 + 3.98898 71.45184 58.76656 13.23021 110 0 1 + 3.33012 72.34455 59.28463 13.50080 110 0 1 + 3.33902 72.34455 59.65500 13.68120 110 0 1 2.98273 73.23726 60.23996 13.95180 1 0 A 3.23462 74.12997 61.05929 14.31260 1 0 A 3.48628 75.02268 61.91592 14.67339 1 0 A 3.73782 75.91539 62.80158 15.03419 1 0 A 3.92642 76.80810 63.48060 15.30479 1 0 A - 8.91558 76.80810 42.04983 15.63641 110 0 1 + 8.90917 76.80810 42.04983 15.63641 110 0 1 7.44425 80.78910 38.35909 14.00657 1 0 A 5.67363 84.77010 33.47530 11.83344 1 0 A 3.90288 88.75110 28.62801 9.66032 1 0 A 2.13203 92.73210 23.80984 7.48719 1 0 A 0.80386 96.71310 20.21114 5.85735 1 0 A - 2.14143 96.71310 38.27144 5.59491 1 0 A + 2.14143 96.71310 38.27144 3.77842 1 0 A 2.45917 98.08650 43.67886 4.33754 1 0 A 2.88324 99.45990 50.82580 5.08303 1 0 A 3.30777 100.83330 57.92016 5.82852 1 0 A @@ -43708,20 +43844,20 @@ Status character 6.71563 111.82050 114.40324 11.79243 1 0 A 7.14232 113.19390 121.49808 12.53792 1 0 A 7.56904 114.56730 128.60212 13.28341 1 0 A - 8.84941 115.94070 135.71455 14.02890 110 0 1 - 11.62310 117.31410 141.05365 14.58802 110 0 1 - 11.99584 117.31410 144.61540 14.96076 110 0 1 - 14.72437 118.68750 149.96124 15.51988 110 0 1 - 17.59942 120.06090 157.09393 16.26537 110 11 1 - 20.43980 121.43430 164.23188 17.01086 110 12 1 - 23.25072 122.80770 171.37447 17.75635 110 14 1 - 25.85100 124.18110 176.73401 18.31547 110 15 1 - 26.22374 124.18110 180.30829 18.68821 110 15 1 - 28.80636 125.55450 185.67141 19.24733 110 16 1 - 31.56329 126.92790 192.82483 19.99282 110 16 1 - 34.31191 128.30130 199.98102 20.73831 110 17 1 - 37.05594 129.67470 207.13966 21.48380 110 18 1 - 39.61274 131.04810 212.51000 22.04291 110 19 1 + 8.81561 115.94070 135.71455 14.02890 110 0 1 + 11.58980 117.31410 141.05365 14.58802 110 0 1 + 11.96255 117.31410 144.61540 14.96076 110 0 1 + 14.69168 118.68750 149.96124 15.51988 110 0 1 + 17.56740 120.06090 157.09393 16.26537 110 11 1 + 20.40853 121.43430 164.23188 17.01086 110 12 1 + 23.22024 122.80770 171.37447 17.75635 110 14 1 + 25.82133 124.18110 176.73401 18.31547 110 15 1 + 26.19407 124.18110 180.30829 18.68821 110 15 1 + 28.77751 125.55450 185.67141 19.24733 110 15 1 + 31.53527 126.92790 192.82483 19.99282 110 16 1 + 34.28472 128.30130 199.98102 20.73831 110 17 1 + 37.02959 129.67470 207.13966 21.48380 110 18 1 + 39.58722 131.04810 212.51000 22.04291 110 19 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -43736,9 +43872,9 @@ Layer name [DATA] -9.99 35.140 'OWB' -10.79 5.013 'Grind' - -11.09 3.672 'Hydrobiaklei' + -11.09 3.687 'Hydrobiaklei' -12.00 2.401 'Basisveen' - -12.50 47.666 'Eerste zandlaag' + -12.50 47.618 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -43757,7 +43893,7 @@ Layer name -10.79 -1.79 'Grind' -11.09 -0.68 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -16.15 'Eerste zandlaag' + -12.50 -16.13 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -43982,7 +44118,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=7 CalculationStatus=0 -IterationCount=3 +IterationCount=4 PartialFactorSet=2 [ANCHOR DATA] [TABLE] @@ -43997,8 +44133,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 441.37093 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 517.61418 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 441.36590 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 517.65825 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -44054,7 +44190,7 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 38.24 : Vertical force left + 38.26 : Vertical force left 19.37 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right @@ -44065,16 +44201,16 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] -19.37 : Active force -38.24 : Passive force +38.26 : Passive force -19.37 : Plugged active force -38.24 : Plugged passive force +38.26 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -18.87 : Resulting Vertical Force Unplugged -18.87 : Resulting Vertical Force Plugged +18.89 : Resulting Vertical Force Unplugged +18.89 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -44087,210 +44223,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.39820 - 0.00000 0.00000 -7.35647 - 0.00000 0.00000 -7.31474 - 0.00000 0.00000 -7.27300 - 0.00000 0.00000 -7.23127 - 0.00000 0.00000 -7.18954 - 0.00000 0.00000 -7.18954 - 0.00000 0.00000 -7.14780 - 0.00000 0.00000 -7.10607 - 0.00000 0.00000 -7.06434 - 0.00000 0.00000 -7.02260 - 0.00000 0.00000 -6.98087 - 0.00000 0.00000 -6.98087 - 0.00000 0.00000 -6.92523 - 0.00000 0.00000 -6.86958 - 0.00000 0.00000 -6.81394 - 0.00000 0.00000 -6.75830 - 0.00000 0.00000 -6.70265 - 0.00000 0.00000 -6.70265 - 0.00000 0.00000 -6.65628 - 0.00000 0.00000 -6.60991 - 0.00000 0.00000 -6.56354 - 0.00000 0.00000 -6.51717 - 0.00000 0.00000 -6.47080 - 0.00000 0.00000 -6.47080 - 0.00000 0.00000 -6.42443 - 0.00000 0.00000 -6.37806 - 0.00000 0.00000 -6.33169 - 0.00000 0.00000 -6.28532 - 0.00000 0.00000 -6.23895 - 0.00000 0.00000 -6.23895 - 0.00000 0.00000 -6.19907 - 0.00000 0.00000 -6.15919 - 0.00000 0.00000 -6.11932 - 0.00000 0.00000 -6.07944 - 0.00000 0.00000 -6.03956 - 0.00000 -1.47093 -6.03956 - -0.16769 -1.47093 -5.98669 - -0.33537 -1.47093 -5.93380 - -0.50306 -1.47093 -5.88085 - -0.67075 -1.47093 -5.82782 - -0.83843 -1.47093 -5.77468 - -0.83751 -1.48893 -5.77468 - -0.95663 -1.48893 -5.73730 - -1.07574 -1.48893 -5.69986 - -1.19486 -1.48893 -5.66232 - -1.31397 -1.48893 -5.62469 - -1.43309 -1.48893 -5.58695 - -1.43334 -1.49084 -5.58695 - -1.46316 -1.49084 -5.57750 - -1.49298 -1.49084 -5.56804 - -1.52280 -1.49084 -5.55857 - -1.55261 -1.49084 -5.54909 - -1.58243 -1.49084 -5.53961 - -1.58247 -1.49039 -5.53961 - -1.73151 -1.49039 -5.49208 - -1.88054 -1.49039 -5.44432 - -2.02958 -1.49039 -5.39633 - -2.17862 -1.49039 -5.34808 - -2.32766 -1.49039 -5.29956 - -2.32781 -1.48523 -5.29956 - -2.47634 -1.48523 -5.25075 - -2.62486 -1.48523 -5.20162 - -2.77338 -1.48523 -5.15216 - -2.92190 -1.48523 -5.10236 - -3.07043 -1.48523 -5.05218 - -3.07042 -1.48480 -5.05218 - -3.21890 -1.48480 -5.00162 - -3.36738 -1.48480 -4.95066 - -3.51586 -1.48480 -4.89927 - -3.66434 -1.48480 -4.84743 - -3.81281 -1.48480 -4.79514 - -3.81286 -1.48411 -4.79514 - -4.02063 -1.48411 -4.72111 - -4.22841 -1.48411 -4.64609 - -4.43618 -1.48411 -4.57003 - -4.64396 -1.48411 -4.49287 - -4.85173 -1.48411 -4.41457 - -4.85180 -1.48257 -4.41457 - -5.04454 -1.48257 -4.34079 - -5.23727 -1.48257 -4.26593 - -5.43000 -1.48257 -4.18996 - -5.62274 -1.48257 -4.11283 - -5.81547 -1.48257 -4.03451 - -5.81532 -1.48286 -4.03451 - -6.00809 -1.48286 -3.95495 - -6.20087 -1.48286 -3.87411 - -6.39364 -1.48286 -3.79194 - -6.58641 -1.48286 -3.70842 - -6.77918 -1.48286 -3.62350 - -6.77918 -1.48288 -3.62350 - -7.00087 -1.48288 -3.52405 - -7.22256 -1.48288 -3.42262 - -7.44425 -1.48288 -3.31917 - -7.66594 -1.48288 -3.21362 - -7.88763 -1.48288 -3.10591 - -7.88763 -1.48288 -3.10591 - -8.10932 -1.48288 -2.99598 - -8.33101 -1.48288 -2.88376 - -8.55270 -1.48288 -2.76920 - -8.77439 -1.48288 -2.65224 - -8.99608 -1.48288 -2.53280 - -8.99723 -1.47704 -2.53280 - -9.21805 -1.47704 -2.41083 - -9.43886 -1.47704 -2.28626 - -9.65968 -1.47704 -2.15903 - -9.88050 -1.47704 -2.02909 - -10.10132 -1.47704 -1.89636 - -10.09966 -1.46690 -1.89636 - -10.31897 -1.46690 -1.76079 - -10.53827 -1.46690 -1.62232 - -10.75757 -1.46690 -1.48088 - -10.97687 -1.46690 -1.33641 - -11.19617 -1.46690 -1.18884 - -11.19547 -1.45485 -1.18884 - -11.19833 -1.37607 -1.18685 - -11.20093 -1.22006 -1.18485 - -11.20321 -1.06406 -1.18286 - -11.20518 -0.90806 -1.18086 - -11.20684 -0.75206 -1.17886 - -11.20684 -0.75208 -1.17886 - -11.17910 2.21193 -1.14080 - -11.03873 5.17595 -1.10253 - -10.78573 8.13999 -1.06407 - -10.42009 11.10405 -1.02541 - -9.94182 14.06811 -0.98656 - -9.94182 29.85391 -0.98656 - -9.32915 31.41396 -0.96604 - -8.68527 32.97400 -0.94547 - -8.01019 34.53405 -0.92486 - -7.30390 36.09411 -0.90421 - -6.56642 37.65416 -0.88352 - -6.56662 37.65976 -0.88352 - -2.96873 41.13494 -0.79007 - 0.73342 41.13521 -0.69632 - 4.43561 41.13548 -0.60264 - 8.13781 41.13575 -0.50942 - 11.84004 41.13602 -0.41702 - 11.84004 41.13583 -0.41702 - 12.25140 41.13574 -0.40682 - 12.66275 41.13577 -0.39664 - 13.07411 41.13580 -0.38647 - 13.48547 41.13583 -0.37632 - 13.89683 41.13598 -0.36619 - 13.89688 41.13432 -0.36619 - 15.50899 39.45473 -0.32584 - 17.05201 37.68115 -0.28580 - 18.52232 35.82059 -0.24610 - 19.91660 33.88061 -0.20677 - 21.23182 31.86934 -0.16785 - 21.23177 31.86769 -0.16785 - 21.85722 30.67440 -0.14855 - 22.45863 29.46490 -0.12935 - 23.03572 28.24147 -0.11027 - 23.58820 27.00454 -0.09131 - 24.11582 25.75520 -0.07246 - 24.11637 25.73722 -0.07246 - 26.37159 23.74529 0.01169 - 28.43143 21.53631 0.09310 - 30.29346 19.40180 0.17155 - 31.96542 17.36153 0.24687 - 33.45635 15.42337 0.31885 - 33.45642 15.42416 0.31885 - 34.77655 13.60819 0.38731 - 35.93668 11.90992 0.45215 - 36.94803 10.33948 0.51326 - 37.82250 8.90207 0.57052 - 38.57158 7.57584 0.62383 - 38.57165 7.57079 0.62383 - 39.29054 6.85143 0.67776 - 39.94803 6.31507 0.72674 - 40.55659 5.86977 0.77070 - 41.12383 5.47967 0.80955 - 41.65321 5.11008 0.84321 - 41.65193 5.12424 0.84321 - 42.18727 2.71199 0.88144 - 42.39859 0.02765 0.90924 - 42.15079 -3.60424 0.92667 - 41.37982 -7.44133 0.93380 - 40.07000 -11.21871 0.93072 - 40.07827 -11.26497 0.93072 - 38.24265 -14.79966 0.91761 - 35.97294 -17.50786 0.89507 - 33.37226 -19.53454 0.86372 - 30.53310 -20.92182 0.82418 - 27.54169 -21.71883 0.77709 - 27.54123 -21.70294 0.77709 - 24.48028 -21.93858 0.72317 - 21.42186 -21.67209 0.66322 - 18.43389 -20.93847 0.59796 - 15.57915 -19.77493 0.52812 - 12.91457 -18.23305 0.45443 - 12.91611 -18.20165 0.45443 - 10.48914 -16.46039 0.37760 - 8.30919 -14.67651 0.29819 - 6.38072 -12.87124 0.21668 - 4.70543 -11.06199 0.13353 - 3.28291 -9.26236 0.04922 - 3.28543 -9.29695 0.04922 - 2.12389 -7.35456 -0.03582 - 1.21737 -5.60054 -0.12138 - 0.55547 -3.85225 -0.20729 - 0.14304 -2.01181 -0.29340 - 0.00020 0.00084 -0.37954 + 0.00000 0.00000 -7.40083 + 0.00000 0.00000 -7.35901 + 0.00000 0.00000 -7.31720 + 0.00000 0.00000 -7.27538 + 0.00000 0.00000 -7.23357 + 0.00000 0.00000 -7.19175 + 0.00000 0.00000 -7.19175 + 0.00000 0.00000 -7.14993 + 0.00000 0.00000 -7.10812 + 0.00000 0.00000 -7.06630 + 0.00000 0.00000 -7.02449 + 0.00000 0.00000 -6.98267 + 0.00000 0.00000 -6.98267 + 0.00000 0.00000 -6.92692 + 0.00000 0.00000 -6.87116 + 0.00000 0.00000 -6.81541 + 0.00000 0.00000 -6.75965 + 0.00000 0.00000 -6.70390 + 0.00000 0.00000 -6.70390 + 0.00000 0.00000 -6.65744 + 0.00000 0.00000 -6.61097 + 0.00000 0.00000 -6.56451 + 0.00000 0.00000 -6.51805 + 0.00000 0.00000 -6.47159 + 0.00000 0.00000 -6.47159 + 0.00000 0.00000 -6.42513 + 0.00000 0.00000 -6.37866 + 0.00000 0.00000 -6.33220 + 0.00000 0.00000 -6.28574 + 0.00000 0.00000 -6.23928 + 0.00000 0.00000 -6.23928 + 0.00000 0.00000 -6.19932 + 0.00000 0.00000 -6.15936 + 0.00000 0.00000 -6.11940 + 0.00000 0.00000 -6.07945 + 0.00000 0.00000 -6.03949 + 0.00000 -1.46590 -6.03949 + -0.16711 -1.46590 -5.98652 + -0.33423 -1.46590 -5.93352 + -0.50134 -1.46590 -5.88047 + -0.66845 -1.46590 -5.82733 + -0.83557 -1.46590 -5.77409 + -0.83465 -1.48392 -5.77409 + -0.95336 -1.48392 -5.73664 + -1.07207 -1.48392 -5.69912 + -1.19079 -1.48392 -5.66151 + -1.30950 -1.48392 -5.62381 + -1.42821 -1.48392 -5.58600 + -1.42847 -1.48583 -5.58600 + -1.45819 -1.48583 -5.57653 + -1.48791 -1.48583 -5.56705 + -1.51762 -1.48583 -5.55756 + -1.54734 -1.48583 -5.54807 + -1.57706 -1.48583 -5.53857 + -1.57709 -1.48538 -5.53857 + -1.72563 -1.48538 -5.49095 + -1.87417 -1.48538 -5.44311 + -2.02271 -1.48538 -5.39503 + -2.17125 -1.48538 -5.34670 + -2.31979 -1.48538 -5.29809 + -2.31994 -1.48021 -5.29809 + -2.46796 -1.48021 -5.24919 + -2.61598 -1.48021 -5.19998 + -2.76400 -1.48021 -5.15044 + -2.91202 -1.48021 -5.10056 + -3.06004 -1.48021 -5.05030 + -3.06003 -1.47978 -5.05030 + -3.20801 -1.47978 -4.99967 + -3.35599 -1.47978 -4.94862 + -3.50397 -1.47978 -4.89716 + -3.65194 -1.47978 -4.84525 + -3.79992 -1.47978 -4.79288 + -3.79997 -1.47909 -4.79288 + -4.00704 -1.47909 -4.71876 + -4.21411 -1.47909 -4.64365 + -4.42118 -1.47909 -4.56749 + -4.62826 -1.47909 -4.49025 + -4.83533 -1.47909 -4.41186 + -4.83540 -1.47755 -4.41186 + -5.02748 -1.47755 -4.33801 + -5.21956 -1.47755 -4.26308 + -5.41164 -1.47755 -4.18704 + -5.60373 -1.47755 -4.10985 + -5.79581 -1.47755 -4.03147 + -5.79566 -1.47783 -4.03147 + -5.98777 -1.47783 -3.95185 + -6.17989 -1.47783 -3.87096 + -6.37201 -1.47783 -3.78875 + -6.56413 -1.47783 -3.70519 + -6.75625 -1.47783 -3.62023 + -6.75625 -1.47785 -3.62023 + -6.97719 -1.47785 -3.52074 + -7.19813 -1.47785 -3.41929 + -7.41907 -1.47785 -3.31581 + -7.64001 -1.47785 -3.21025 + -7.86095 -1.47785 -3.10253 + -7.86095 -1.47785 -3.10253 + -8.08189 -1.47785 -2.99260 + -8.30283 -1.47785 -2.88039 + -8.52376 -1.47785 -2.76585 + -8.74470 -1.47785 -2.64891 + -8.96564 -1.47785 -2.52950 + -8.96679 -1.47203 -2.52950 + -9.18685 -1.47203 -2.40757 + -9.40692 -1.47203 -2.28305 + -9.62699 -1.47203 -2.15588 + -9.84706 -1.47203 -2.02601 + -10.06713 -1.47203 -1.89336 + -10.06562 -1.45961 -1.89336 + -10.28383 -1.45961 -1.75788 + -10.50204 -1.45961 -1.61950 + -10.72025 -1.45961 -1.47816 + -10.93847 -1.45961 -1.33381 + -11.15668 -1.45961 -1.18637 + -11.15596 -1.44747 -1.18637 + -11.15880 -1.36869 -1.18438 + -11.16138 -1.21269 -1.18239 + -11.16365 -1.05669 -1.18039 + -11.16561 -0.90069 -1.17840 + -11.16725 -0.74469 -1.17640 + -11.16725 -0.74471 -1.17640 + -11.13924 2.21930 -1.13837 + -10.99859 5.18333 -1.10014 + -10.74530 8.14737 -1.06171 + -10.37939 11.11142 -1.02309 + -9.90083 14.07549 -0.98428 + -9.90084 29.81722 -0.98428 + -9.28889 31.37726 -0.96378 + -8.64575 32.93730 -0.94323 + -7.97140 34.49735 -0.92264 + -7.26585 36.05741 -0.90201 + -6.52910 37.61747 -0.88134 + -6.52908 37.61713 -0.88134 + -2.93503 41.09231 -0.78799 + 0.76329 41.09258 -0.69433 + 4.46164 41.09285 -0.60076 + 8.16000 41.09312 -0.50764 + 11.85840 41.09339 -0.41535 + 11.85837 41.09303 -0.41535 + 12.26930 41.09294 -0.40517 + 12.68023 41.09297 -0.39499 + 13.09116 41.09300 -0.38484 + 13.50209 41.09303 -0.37470 + 13.91302 41.09318 -0.36458 + 13.91307 41.09152 -0.36458 + 15.52344 39.41032 -0.32428 + 17.06465 37.63505 -0.28428 + 18.53308 35.77270 -0.24464 + 19.92540 33.83082 -0.20536 + 21.23859 31.81756 -0.16648 + 21.23853 31.81665 -0.16648 + 21.86293 30.62034 -0.14721 + 22.46326 29.41031 -0.12804 + 23.03925 28.18635 -0.10898 + 23.59062 26.94886 -0.09005 + 24.11712 25.69895 -0.07123 + 24.11767 25.68099 -0.07123 + 26.36777 23.68778 0.01282 + 28.42215 21.47383 0.09411 + 30.27826 19.33422 0.17245 + 31.94383 17.28869 0.24766 + 33.42790 15.34529 0.31953 + 33.42805 15.34374 0.31953 + 34.74063 13.52256 0.38789 + 35.89273 11.81916 0.45263 + 36.89560 10.24367 0.51363 + 37.76112 8.80131 0.57080 + 38.50084 7.47119 0.62403 + 38.50079 7.46861 0.62403 + 39.21489 6.83030 0.67788 + 39.87022 6.29313 0.72678 + 40.47656 5.84732 0.77067 + 41.04152 5.45643 0.80946 + 41.56852 5.08575 0.84309 + 41.56723 5.10036 0.84309 + 42.09860 2.68097 0.88127 + 42.30534 -0.00770 0.90904 + 42.05210 -3.64653 0.92647 + 41.27477 -7.48964 0.93363 + 39.95772 -11.27455 0.93060 + 39.96599 -11.32090 0.93060 + 38.13977 -14.67481 0.91757 + 35.88649 -17.39775 0.89513 + 33.30025 -19.43829 0.86390 + 30.47366 -20.83840 0.82450 + 27.49310 -21.64708 0.77757 + 27.49263 -21.63124 0.77757 + 24.44098 -21.87727 0.72382 + 21.39049 -21.61979 0.66405 + 18.40930 -20.89370 0.59897 + 15.56039 -19.73613 0.52932 + 12.90101 -18.19656 0.45583 + 12.90255 -18.16518 0.45583 + 10.48076 -16.42251 0.37921 + 8.30632 -14.63550 0.30000 + 6.38391 -12.82532 0.21869 + 4.71550 -11.00937 0.13574 + 3.30092 -9.20123 0.05163 + 3.30120 -9.19741 0.05163 + 2.13915 -7.40691 -0.03321 + 1.22613 -5.64080 -0.11858 + 0.55947 -3.88025 -0.20431 + 0.14397 -2.02730 -0.29023 + -0.00005 -0.00027 -0.37618 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -44411,38 +44547,38 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.33500 9.00000 12.00000 26.91060 26.91060 - -10.42500 31.00000 5.00000 33.93095 33.93095 - -10.51500 7.00000 27.00000 40.95138 40.95138 - -10.60500 34.00000 34.70000 47.97189 47.97189 - -10.69500 49.00000 2.00000 54.99249 54.99249 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.81000 71.51400 34.34100 63.56751 62.45232 - -10.85000 71.51400 34.34100 65.99428 62.57891 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.33500 1.00000 1.00000 26.91060 26.91060 + -10.42500 1.00000 1.00000 33.93095 33.93095 + -10.51500 1.00000 1.00000 40.95138 40.95138 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.81000 71.51400 34.34000 63.56751 62.45232 + -10.85000 71.51400 34.34000 65.99428 62.57891 -10.89000 71.51400 34.34100 68.51921 62.71063 -10.93000 71.51400 34.34100 71.14231 62.84747 -10.97000 71.51400 34.34100 73.86358 62.98944 @@ -44521,8 +44657,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -44552,7 +44688,7 @@ Lambda passive -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.95000 12.40790 68.03169 3.54904 0.50828 0.28603 5.48293 -10.99000 12.85550 69.87231 3.64506 0.50828 0.28603 5.48293 - -10.99000 12.85550 70.79262 3.69307 0.64261 0.28603 5.48293 + -10.99000 12.85550 70.79262 3.69307 0.50828 0.28603 5.48293 -11.01000 13.07930 71.71293 3.74108 0.50828 0.28603 5.48293 -11.03000 13.30310 72.94002 3.80510 0.50828 0.28603 5.48293 -11.05000 13.52690 74.16710 3.86911 0.50828 0.28603 5.48293 @@ -44582,7 +44718,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -44741,38 +44877,38 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00205 0.00000 78.00205 78.00205 1 100 A 78.00220 0.00000 78.00220 78.00220 1 100 A - 78.00240 0.00000 78.00240 78.00240 1 0 A + 78.00240 0.00000 78.00240 78.00240 1 100 A 78.00260 0.00000 78.00260 78.00260 1 100 A 78.00280 0.00000 78.00280 78.00280 1 100 A 78.00295 0.00000 78.00295 78.00295 1 100 A - 78.00322 0.00000 78.00322 78.00322 1 100 A + 78.00322 0.00000 78.00322 78.00323 1 100 A 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00570 0.00000 78.00570 78.00570 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00728 0.00000 78.00728 78.00728 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.06894 67.39050 58.82859 5.45357 1 0 A 3.16496 67.78290 60.66921 5.62420 1 0 A 3.29299 68.17530 63.12337 5.85171 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.54904 68.96010 68.03169 6.30672 1 0 A 3.64506 69.35250 69.87231 6.47735 1 0 A - 3.69307 69.35250 70.79262 8.29707 1 0 A + 3.69307 69.35250 70.79262 6.56267 1 0 A 3.74108 69.54870 71.71293 6.64798 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.86911 69.94110 74.16710 6.87549 1 0 A @@ -44781,51 +44917,51 @@ Status character 0.45753 70.33350 52.80064 10.36963 1 0 A 0.66385 71.22621 52.76452 10.64023 1 0 A 0.92474 72.11892 53.02490 11.00103 1 0 A - 1.39986 73.01163 53.51177 11.36183 110 0 1 - 1.98191 73.90434 54.13832 11.72262 110 0 1 - 2.52686 74.79705 54.66869 11.99322 110 0 1 - 2.70726 74.79705 55.04663 12.17362 110 0 1 - 3.29846 75.68976 55.64206 12.44422 110 0 1 - 4.02037 76.58247 56.47400 12.80502 110 0 1 - 4.77733 77.47518 57.34182 13.16581 110 0 1 - 5.56386 78.36789 58.23745 13.52661 110 0 1 - 6.28429 79.26060 58.92328 13.79721 110 0 1 - 10.06513 79.26060 38.46255 14.05198 110 0 1 - 9.18734 83.24160 34.78760 12.42214 110 0 1 - 7.75088 87.22260 29.92326 10.24902 110 0 1 - 6.12315 91.20360 25.09365 8.07589 110 0 1 - 4.44666 95.18460 20.29148 5.90277 110 0 1 - 3.18949 99.16560 16.70379 4.27292 110 0 1 - 8.06299 99.16560 27.51935 2.70743 110 29 1 - 17.18386 100.53900 33.02991 3.26655 220 52 2 - 5.52697 101.91240 40.29427 4.01204 110 14 1 - 4.22707 103.28580 47.47851 4.75752 110 0 1 + 1.39530 73.01163 53.51177 11.36183 110 0 1 + 1.97633 73.90434 54.13832 11.72262 110 0 1 + 2.52028 74.79705 54.66869 11.99322 110 0 1 + 2.70068 74.79705 55.04663 12.17362 110 0 1 + 3.29092 75.68976 55.64206 12.44422 110 0 1 + 4.01191 76.58247 56.47400 12.80502 110 0 1 + 4.76799 77.47518 57.34182 13.16581 110 0 1 + 5.55370 78.36789 58.23745 13.52661 110 0 1 + 6.27336 79.26060 58.92328 13.79721 110 0 1 + 10.05661 79.26060 38.46255 14.05198 110 0 1 + 9.18150 83.24160 34.78760 12.42214 110 0 1 + 7.75233 87.22260 29.92326 10.24902 110 0 1 + 6.12430 91.20360 25.09365 8.07589 110 0 1 + 4.44756 95.18460 20.29148 5.90277 110 0 1 + 3.19019 99.16560 16.70379 4.27292 110 0 1 + 7.99116 99.16560 27.51935 2.70743 110 29 1 + 17.20811 100.53900 33.02991 3.26655 220 52 2 + 5.51412 101.91240 40.29427 4.01204 110 14 1 + 4.21421 103.28580 47.47851 4.75752 110 0 1 3.12622 104.65920 54.60600 5.50301 1 0 A 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A - 4.70705 107.40600 68.76890 6.99399 110 0 1 - 6.96117 108.77940 75.83214 7.73948 110 0 1 - 9.04226 110.15280 82.89494 8.48497 110 11 1 - 10.95069 111.52620 89.96218 9.23046 110 12 1 - 12.50051 112.89960 95.26699 9.78958 110 13 1 - 12.87326 112.89960 98.80627 10.16232 110 13 1 - 14.25600 114.27300 104.11963 10.72144 110 14 1 - 15.67191 115.64640 111.21161 11.46693 110 14 1 - 16.94803 117.01980 118.31241 12.21242 110 14 1 - 18.09781 118.39320 125.42156 12.95791 110 14 1 - 18.94830 119.76660 130.75828 13.51703 110 14 1 - 19.32104 119.76660 134.31851 13.88977 110 14 1 - 20.07369 121.14000 139.66222 14.44889 110 14 1 - 20.93007 122.51340 146.79231 15.19438 110 14 1 - 21.71745 123.88680 153.92796 15.93987 110 14 1 - 22.44946 125.26020 161.06855 16.68536 110 14 1 - 22.95334 126.63360 166.42676 17.24447 110 14 1 - 23.32609 126.63360 170.00024 17.61722 110 14 1 - 23.80166 128.00700 175.36228 18.17633 110 14 1 - 24.44376 129.38040 182.51443 18.92182 110 13 1 - 25.43109 130.75380 189.66955 19.66731 110 13 1 - 27.49301 132.12720 196.82728 20.41280 110 14 1 - 29.44649 133.50060 202.19703 20.97192 110 15 1 + 3.65754 106.03260 63.46711 6.43488 1 0 A + 4.66811 107.40600 68.76890 6.99399 110 0 1 + 6.92503 108.77940 75.83214 7.73948 110 0 1 + 9.00951 110.15280 82.89494 8.48497 110 11 1 + 10.92186 111.52620 89.96218 9.23046 110 12 1 + 12.47601 112.89960 95.26699 9.78958 110 13 1 + 12.84876 112.89960 98.80627 10.16232 110 13 1 + 14.23620 114.27300 104.11963 10.72144 110 14 1 + 15.65712 115.64640 111.21161 11.46693 110 14 1 + 16.93857 117.01980 118.31241 12.21242 110 14 1 + 18.09395 118.39320 125.42156 12.95791 110 14 1 + 18.95028 119.76660 130.75828 13.51703 110 14 1 + 19.32302 119.76660 134.31851 13.88977 110 14 1 + 20.08175 121.14000 139.66222 14.44889 110 14 1 + 20.94440 122.51340 146.79231 15.19438 110 14 1 + 21.73817 123.88680 153.92796 15.93987 110 14 1 + 22.47663 125.26020 161.06855 16.68536 110 14 1 + 22.98696 126.63360 166.42676 17.24447 110 14 1 + 23.35970 126.63360 170.00024 17.61722 110 14 1 + 23.84165 128.00700 175.36228 18.17633 110 14 1 + 24.49005 129.38040 182.51443 18.92182 110 13 1 + 25.46119 130.75380 189.66955 19.66731 110 13 1 + 27.53027 132.12720 196.82728 20.41280 110 14 1 + 29.49088 133.50060 202.19703 20.97192 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -44840,9 +44976,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 2.604 'Hydrobiaklei' - -12.00 3.414 'Basisveen' - -12.50 54.643 'Eerste zandlaag' + -11.09 2.599 'Hydrobiaklei' + -12.00 3.413 'Basisveen' + -12.50 54.648 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -44985,20 +45121,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.33500 5.00000 1.00000 3.51001 3.51001 - -10.42500 39.00000 27.00000 10.53009 10.53009 - -10.51500 7.99100 8.00000 17.55025 17.55025 - -10.60500 14.00000 13.10000 24.57050 24.57050 - -10.69500 0.92000 1.00000 31.59082 31.59082 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.74500 4.00000 8.00000 35.49104 35.49104 - -10.75500 2.03000 1.00000 36.27108 36.27108 - -10.76500 3.70000 1.00000 37.05113 37.05113 - -10.77500 25.00000 15.00000 37.83118 37.83118 - -10.78500 3.00000 1.00000 38.61123 38.61123 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.33500 1.00000 1.00000 3.51001 3.51001 + -10.42500 1.00000 1.00000 10.53009 10.53009 + -10.51500 1.00000 1.00000 17.55025 17.55025 + -10.60500 1.00000 1.00000 24.57050 24.57050 + -10.69500 1.00000 1.00000 31.59082 31.59082 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.74500 1.00000 1.00000 35.49104 35.49104 + -10.75500 1.00000 1.00000 36.27108 36.27108 + -10.76500 1.00000 1.00000 37.05113 37.05113 + -10.77500 1.00000 1.00000 37.83118 37.83118 + -10.78500 1.00000 1.00000 38.61123 38.61123 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -45077,13 +45213,13 @@ Lambda passive -10.47000 78.00180 78.00180 78.00180 1.00000 1.00000 1.00000 -10.56000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.65000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 - -10.74000 78.00450 78.00428 78.00428 1.00000 1.00000 1.00000 + -10.74000 78.00450 78.00428 78.00427 1.00000 1.00000 1.00000 -10.74000 78.00450 78.00452 78.00452 1.00000 1.00000 1.00000 -10.75000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 -10.76000 78.00470 78.00470 78.00470 1.00000 1.00000 1.00000 -10.77000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.78000 78.00490 78.00490 78.00490 1.00000 1.00000 1.00000 - -10.79000 78.00500 78.00498 78.00498 1.00000 1.00000 1.00000 + -10.79000 78.00500 78.00497 78.00498 1.00000 1.00000 1.00000 -10.79000 11.10500 61.92974 3.23072 0.50828 0.28603 5.48293 -10.83000 11.86500 65.05501 3.39376 0.50828 0.28603 5.48293 -10.87000 12.62500 69.22204 3.61114 0.50828 0.28603 5.48293 @@ -45096,7 +45232,7 @@ Lambda passive -11.05000 15.57640 85.40437 4.45533 0.50828 0.28603 5.48293 -11.07000 15.80020 86.63145 4.51935 0.50828 0.28603 5.48293 -11.09000 16.02400 87.55176 4.56736 0.50828 0.28603 5.48293 - -11.09000 16.02400 57.49074 1.48792 0.73783 0.09215 3.56054 + -11.09000 16.02400 57.49074 1.48792 0.73559 0.09215 3.56054 -11.18100 16.51449 57.44729 1.70072 0.73559 0.10298 3.47860 -11.27200 17.00498 57.69015 1.96589 0.73559 0.11561 3.39254 -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 @@ -45108,7 +45244,7 @@ Lambda passive -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 -11.90900 20.43841 62.80158 3.73782 0.73559 0.18288 3.07272 -12.00000 20.92890 63.48060 3.92642 0.73559 0.18871 3.05103 - -12.00000 20.92890 42.04983 8.77210 0.85559 0.43370 2.07898 + -12.00000 20.92890 42.04983 8.77210 0.77308 0.43370 2.07898 -12.10000 18.11790 38.35909 7.44425 0.77308 0.41088 2.11719 -12.20000 15.30690 33.47530 5.67363 0.77308 0.37066 2.18694 -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 @@ -45138,7 +45274,7 @@ Lambda passive -15.02000 32.55270 164.23188 9.70251 0.52256 0.29806 5.04511 -15.16000 33.97930 171.37447 10.12912 0.52256 0.29810 5.04350 -15.30000 35.40590 176.73401 10.44904 0.52256 0.29812 5.04245 - -15.30000 35.40590 180.30829 10.66231 0.39125 0.29814 5.04182 + -15.30000 35.40590 180.30829 10.66231 0.52256 0.29814 5.04182 -15.44000 36.83250 185.67141 10.98220 0.52256 0.29817 5.04097 -15.58000 38.25910 192.82483 11.40868 0.52256 0.29820 5.03997 -15.72000 39.68570 199.98102 11.83511 0.52256 0.29822 5.03912 @@ -45298,72 +45434,72 @@ Status character 78.00270 0.00000 78.00270 78.00270 402 100 P 78.00360 0.00000 78.00360 78.00360 402 100 P 78.00428 0.00000 78.00428 78.00428 402 100 P - 78.00452 0.00000 78.00452 78.00452 402 100 P + 78.00452 0.00000 78.00452 78.00453 402 0 P 78.00460 0.00000 78.00460 78.00460 402 100 P 78.00470 0.00000 78.00470 78.00470 402 100 P 78.00480 0.00000 78.00480 78.00480 402 100 P 78.00490 0.00000 78.00490 78.00490 402 100 P - 78.00498 0.00000 78.00498 78.00498 402 100 P - 111.23545 0.00000 428.73800 39.74517 110 26 1 - 114.15173 0.00000 431.86327 40.03489 110 26 1 - 116.94298 0.00000 436.03030 40.42118 110 27 1 - 119.54211 0.00000 440.19733 40.80748 110 27 1 - 121.95508 0.00000 444.36436 41.19377 110 27 1 - 124.11480 0.00000 447.48963 41.48350 110 28 1 - 65.35340 66.90000 82.02990 7.60439 220 80 2 - 66.31505 67.09620 82.95021 7.68971 220 80 2 - 67.08599 67.29240 84.17729 7.80346 220 80 2 - 67.83581 67.48860 85.40437 7.91722 220 79 2 - 68.56487 67.68480 86.63145 8.03097 220 79 2 - 69.18847 67.88100 87.55176 8.11628 220 79 2 - 22.07354 67.88100 57.49074 11.91343 110 38 1 - 27.73154 68.77371 57.44729 12.14781 110 48 1 - 27.31117 69.66642 57.69015 12.50861 110 47 1 - 26.83067 70.55913 58.15792 12.86941 110 46 1 - 26.29720 71.45184 58.76656 13.23021 110 45 1 - 25.71351 72.34455 59.28463 13.50080 110 43 1 - 25.72241 72.34455 59.65500 13.68120 110 43 1 - 25.09980 73.23726 60.23996 13.95180 110 42 1 - 24.44847 74.12997 61.05929 14.31260 110 40 1 - 23.76943 75.02268 61.91592 14.67339 110 38 1 - 23.06815 75.91539 62.80158 15.03419 110 37 1 - 22.83301 76.80810 63.48060 15.30479 110 36 1 - 21.03966 76.80810 42.04983 17.30531 220 50 2 - 17.50503 80.78910 38.35909 14.00657 110 46 1 - 15.06531 84.77010 33.47530 11.83344 110 45 1 - 12.61978 88.75110 28.62801 9.66032 110 44 1 - 10.65692 92.73210 23.80984 7.48719 110 45 1 - 9.27600 96.71310 20.21114 5.85735 110 46 1 - 31.78570 96.71310 38.27144 3.77842 330 83 3 - 32.82688 98.08650 43.67886 4.33754 220 75 2 - 33.13667 99.45990 50.82580 5.08303 220 65 2 - 33.40651 100.83330 57.92016 5.82852 220 58 2 - 33.66737 102.20670 64.98360 6.57401 220 52 2 - 31.77139 103.58010 70.27090 7.13313 110 45 1 - 34.75360 103.58010 73.79336 7.50587 110 47 1 - 29.01153 104.95350 79.07672 8.06499 110 37 1 - 26.25033 106.32690 86.12440 8.81048 110 30 1 - 23.61070 107.70030 93.17934 9.55597 110 25 1 - 21.10543 109.07370 100.24368 10.30146 110 21 1 - 18.63671 110.44710 105.54834 10.86057 110 18 1 - 18.85789 110.44710 109.08825 11.23332 110 17 1 - 16.54259 111.82050 114.40324 11.79243 110 14 1 - 14.48339 113.19390 121.49808 12.53792 110 12 1 - 12.56122 114.56730 128.60212 13.28341 110 0 1 - 10.76761 115.94070 135.71455 14.02890 110 0 1 - 9.15675 117.31410 141.05365 14.58802 110 0 1 - 9.52949 117.31410 144.61540 14.96076 110 0 1 - 9.89508 118.68750 149.96124 15.51988 110 0 1 - 10.52968 120.06090 157.09393 16.26537 110 0 1 - 11.23327 121.43430 164.23188 17.01086 110 0 1 - 11.99225 122.80770 171.37447 17.75635 110 0 1 - 12.60660 124.18110 176.73401 18.31547 110 0 1 - 10.66231 124.18110 180.30829 13.99225 1 0 A - 13.62200 125.55450 185.67141 19.24733 110 0 1 - 14.47088 126.92790 192.82483 19.99282 110 0 1 - 15.33347 128.30130 199.98102 20.73831 110 0 1 - 16.20361 129.67470 207.13966 21.48380 110 0 1 - 16.88877 131.04810 212.51000 22.04291 110 0 1 + 78.00497 0.00000 78.00497 78.00498 402 0 P + 111.27422 0.00000 428.73800 39.74517 110 26 1 + 114.19295 0.00000 431.86327 40.03489 110 26 1 + 116.98666 0.00000 436.03030 40.42118 110 27 1 + 119.58825 0.00000 440.19733 40.80748 110 27 1 + 122.00367 0.00000 444.36436 41.19377 110 27 1 + 124.16584 0.00000 447.48963 41.48350 110 28 1 + 65.62856 66.90000 82.02990 7.60439 330 80 3 + 66.34118 67.09620 82.95021 7.68971 220 80 2 + 67.11273 67.29240 84.17729 7.80346 220 80 2 + 67.86317 67.48860 85.40437 7.91722 220 79 2 + 68.59284 67.68480 86.63145 8.03097 220 79 2 + 69.21705 67.88100 87.55176 8.11628 220 79 2 + 22.04648 67.88100 57.49074 11.87722 110 38 1 + 27.78657 68.77371 57.44729 12.14781 110 48 1 + 27.36542 69.66642 57.69015 12.50861 110 47 1 + 26.88397 70.55913 58.15792 12.86941 110 46 1 + 26.34938 71.45184 58.76656 13.23021 110 45 1 + 25.76437 72.34455 59.28463 13.50080 110 43 1 + 25.77327 72.34455 59.65500 13.68120 110 43 1 + 25.14915 73.23726 60.23996 13.95180 110 42 1 + 24.49608 74.12997 61.05929 14.31260 110 40 1 + 23.81510 75.02268 61.91592 14.67339 110 38 1 + 23.11169 75.91539 62.80158 15.03419 110 37 1 + 22.85383 76.80810 63.48060 15.30479 110 36 1 + 19.39833 76.80810 42.04983 15.63641 110 46 1 + 17.51087 80.78910 38.35909 14.00657 110 46 1 + 15.07148 84.77010 33.47530 11.83344 110 45 1 + 12.62624 88.75110 28.62801 9.66032 110 44 1 + 10.66851 92.73210 23.80984 7.48719 110 45 1 + 9.28776 96.71310 20.21114 5.85735 110 46 1 + 31.80366 96.71310 38.27144 3.77842 330 83 3 + 32.86336 98.08650 43.67886 4.33754 220 75 2 + 33.17341 99.45990 50.82580 5.08303 220 65 2 + 33.44321 100.83330 57.92016 5.82852 220 58 2 + 33.70371 102.20670 64.98360 6.57401 220 52 2 + 31.84265 103.58010 70.27090 7.13313 110 45 1 + 32.06291 103.58010 73.79336 7.50587 110 43 1 + 29.08065 104.95350 79.07672 8.06499 110 37 1 + 26.31663 106.32690 86.12440 8.81048 110 31 1 + 23.67357 107.70030 93.17934 9.55597 110 25 1 + 21.16433 109.07370 100.24368 10.30146 110 21 1 + 18.69118 110.44710 105.54834 10.86057 110 18 1 + 18.91236 110.44710 109.08825 11.23332 110 17 1 + 16.59225 111.82050 114.40324 11.79243 110 15 1 + 14.52786 113.19390 121.49808 12.53792 110 12 1 + 12.60013 114.56730 128.60212 13.28341 110 0 1 + 10.80060 115.94070 135.71455 14.02890 110 0 1 + 9.15477 117.31410 141.05365 14.58802 110 0 1 + 9.52751 117.31410 144.61540 14.96076 110 0 1 + 9.88702 118.68750 149.96124 15.51988 110 0 1 + 10.51535 120.06090 157.09393 16.26537 110 0 1 + 11.21255 121.43430 164.23188 17.01086 110 0 1 + 11.96508 122.80770 171.37447 17.75635 110 0 1 + 12.57298 124.18110 176.73401 18.31547 110 0 1 + 12.94573 124.18110 180.30829 18.68821 110 0 1 + 13.58201 125.55450 185.67141 19.24733 110 0 1 + 14.42459 126.92790 192.82483 19.99282 110 0 1 + 15.28091 128.30130 199.98102 20.73831 110 0 1 + 16.14482 129.67470 207.13966 21.48380 110 0 1 + 16.82376 131.04810 212.51000 22.04291 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -45377,10 +45513,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 35.526 'OWB' - -10.79 30.352 'Grind' - -11.09 22.998 'Hydrobiaklei' - -12.00 7.100 'Basisveen' - -12.50 68.317 'Eerste zandlaag' + -10.79 30.366 'Grind' + -11.09 23.039 'Hydrobiaklei' + -12.00 7.022 'Basisveen' + -12.50 68.337 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -45397,9 +45533,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 10.83 'Grind' - -11.09 4.27 'Hydrobiaklei' + -11.09 4.28 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 23.14 'Eerste zandlaag' + -12.50 23.15 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -45639,8 +45775,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 396.20039 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 524.82952 10000000.000 1 1 1 'Dek' + -10.19000 396.24050 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 524.82387 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -45701,10 +45837,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.07 : Percentage mobilized resistance left - 19.66 : Percentage mobilized resistance right - 186.02 : Effective left - 107.85 : Effective right + 29.09 : Percentage mobilized resistance left + 19.68 : Percentage mobilized resistance right + 186.13 : Effective left + 107.97 : Effective right 514.53 : Water pressure left 540.51 : Water pressure right 639.88 : Max effective resistance left @@ -45713,8 +45849,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 45.19 : Vertical force left - 14.43 : Vertical force right + 45.24 : Vertical force left + 14.47 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -45723,17 +45859,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --14.43 : Active force -45.19 : Passive force --14.43 : Plugged active force -45.19 : Plugged passive force +-14.47 : Active force +45.24 : Passive force +-14.47 : Plugged active force +45.24 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --69.24 : Resulting Vertical Force Unplugged --69.24 : Resulting Vertical Force Plugged +-69.23 : Resulting Vertical Force Unplugged +-69.23 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -45746,210 +45882,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.15980 - 0.12449 0.00000 -57.91480 - 0.24899 0.00000 -56.66981 - 0.37348 0.00000 -55.42485 - 0.49798 0.00000 -54.17992 - 0.62247 0.00000 -52.93505 - 0.62247 0.00000 -52.93505 - 0.74694 0.00000 -51.69024 - 0.87140 0.00000 -50.44551 - 0.99586 0.00000 -49.20086 - 1.12033 0.00000 -47.95632 - 1.24479 0.00000 -46.71189 - 1.24479 0.00000 -46.71189 - 1.41064 0.00000 -45.05285 - 1.57648 0.00000 -43.39407 - 1.74233 0.00000 -41.73558 - 1.90818 0.00000 -40.07740 - 2.07402 0.00000 -38.41956 - 2.07402 0.00000 -38.41956 - 2.21209 0.00000 -37.03832 - 2.35015 0.00000 -35.65736 - 2.48822 0.00000 -34.27669 - 2.62628 0.00000 -32.89634 - 2.76435 0.00000 -31.51631 - 2.76435 0.00000 -31.51631 - 2.90224 0.00000 -30.13664 - 3.04013 0.00000 -28.75733 - 3.17802 0.00000 -27.37840 - 3.31591 0.00000 -25.99988 - 3.45380 0.00000 -24.62177 - 3.45380 0.00000 -24.62177 - 3.57222 0.00000 -23.43694 - 3.69063 0.00000 -22.25245 - 3.80904 0.00000 -21.06830 - 3.92746 0.00000 -19.88451 - 4.04587 0.00000 -18.70108 - 4.04587 439.90000 -18.70108 - 54.34772 439.90000 -17.13430 - 104.64957 439.90000 -15.57642 - 154.95143 439.90000 -14.03567 - 205.25328 439.90000 -12.52030 - 255.55513 439.90000 -11.03852 - 255.55605 439.88200 -11.03852 - 290.84288 439.88200 -10.02318 - 326.12972 439.88200 -9.03128 - 361.41655 439.88200 -8.06568 - 396.70339 439.88200 -7.12921 - 431.99022 439.88200 -6.22474 - 431.98997 -84.94943 -6.22474 - 430.31262 -84.94943 -6.00394 - 428.63528 -84.94943 -5.78531 - 426.95794 -84.94943 -5.56884 - 425.28060 -84.94943 -5.35452 - 423.60326 -84.94943 -5.14235 - 423.60322 -84.94898 -5.14235 - 415.20098 -84.94898 -4.11333 - 406.79873 -84.94898 -3.13661 - 398.39649 -84.94898 -2.21114 - 389.99424 -84.94898 -1.33586 - 381.59200 -84.94898 -0.50972 - 381.59185 -84.94382 -0.50972 - 373.16608 -84.94382 0.26836 - 364.74032 -84.94382 0.99942 - 356.31455 -84.94382 1.68453 - 347.88879 -84.94382 2.32476 - 339.46303 -84.94382 2.92116 - 339.46304 -84.94338 2.92116 - 331.01593 -84.94338 3.47479 - 322.56883 -84.94338 3.98672 - 314.12173 -84.94338 4.45802 - 305.67463 -84.94338 4.88974 - 297.22752 -84.94338 5.28295 - 297.22748 -84.94269 5.28295 - 285.37078 -84.94269 5.77078 - 273.51408 -84.94269 6.18815 - 261.65738 -84.94269 6.53797 - 249.80067 -84.94269 6.82319 - 237.94397 -84.94269 7.04673 - 237.94390 -84.94116 7.04673 - 226.90785 -84.94116 7.20162 - 215.87180 -84.94116 7.30821 - 204.83574 -84.94116 7.36883 - 193.79969 -84.94116 7.38585 - 182.76364 -84.94116 7.36160 - 182.76379 -84.94144 7.36160 - 171.70824 -84.94144 7.29844 - 160.65270 -84.94144 7.19872 - 149.59715 -84.94144 7.06480 - 138.54161 -84.94144 6.89903 - 127.48607 -84.94144 6.70376 - 127.48606 -84.94146 6.70376 - 114.75577 -84.94146 6.44579 - 102.02548 -84.94146 6.15550 - 89.29519 -84.94146 5.83649 - 76.56490 -84.94146 5.49234 - 63.83460 -84.94146 5.12663 - 63.83460 -84.94146 5.12663 - 51.09533 -84.94146 4.74294 - 38.35605 -84.94146 4.34487 - 25.61677 -84.94146 3.93599 - 12.87750 -84.94146 3.51991 - 0.13822 -84.94146 3.10019 - 0.13707 -84.93563 3.10019 - -12.60135 -84.93563 2.68044 - -25.33978 -84.93563 2.26424 - -38.07820 -84.93563 1.85517 - -50.81663 -84.93563 1.45682 - -63.55505 -84.93563 1.07278 - -63.55340 -84.92549 1.07278 - -76.28136 -84.92549 0.70664 - -89.00932 -84.92549 0.36198 - -101.73729 -84.92549 0.04238 - -114.46525 -84.92549 -0.24858 - -127.19321 -84.92549 -0.50730 - -127.19251 -84.91343 -0.50730 - -127.36261 -84.83465 -0.51053 - -127.53244 -84.67865 -0.51375 - -127.70196 -84.52265 -0.51696 - -127.87117 -84.36665 -0.52017 - -128.04007 -84.21065 -0.52337 - -128.04007 -84.21067 -0.52337 - -131.18923 -81.24666 -0.58294 - -134.22576 -78.28263 -0.64013 - -137.14965 -75.31859 -0.69488 - -139.96091 -72.35454 -0.74714 - -142.65953 -69.39047 -0.79685 - -142.65953 67.80911 -0.79685 - -141.29012 69.36916 -0.82198 - -139.88951 70.92920 -0.84639 - -138.45770 72.48925 -0.87010 - -136.99468 74.04931 -0.89311 - -135.50047 75.60936 -0.91543 - -135.50067 75.61496 -0.91543 - -128.49355 79.09014 -1.00754 - -121.38215 79.09041 -1.08653 - -114.27074 79.09068 -1.15314 - -107.15930 79.09095 -1.20809 - -100.04783 79.09122 -1.25210 - -100.04784 79.09103 -1.25210 - -99.25729 79.09094 -1.25635 - -98.46675 79.09097 -1.26047 - -97.67621 79.09100 -1.26447 - -96.88566 79.09103 -1.26834 - -96.09512 79.09118 -1.27210 - -96.09507 79.08963 -1.27210 - -92.96132 77.62362 -1.28591 - -89.88856 76.04062 -1.29785 - -86.88136 74.34709 -1.30797 - -83.94400 72.55013 -1.31634 - -81.08045 70.65751 -1.32302 - -81.08050 70.65592 -1.32302 - -79.67962 69.44320 -1.32575 - -78.30328 68.20511 -1.32807 - -76.95187 66.94947 -1.33000 - -75.62575 65.67659 -1.33154 - -74.32525 64.38790 -1.33270 - -74.32442 64.36700 -1.33270 - -68.55236 62.38170 -1.33335 - -62.97628 60.15280 -1.32686 - -57.60135 57.96173 -1.31377 - -52.42390 55.81339 -1.29466 - -47.43990 53.70979 -1.27008 - -47.44013 53.71030 -1.27008 - -42.64320 51.66374 -1.24058 - -38.03010 49.67250 -1.20663 - -33.59506 47.75398 -1.16869 - -29.33070 45.92218 -1.12723 - -25.22964 44.15743 -1.08272 - -25.22965 44.15415 -1.08272 - -20.85978 43.19189 -1.03080 - -16.58107 42.31464 -0.97626 - -12.38831 41.47252 -0.91961 - -8.27839 40.65469 -0.86140 - -4.24949 39.85235 -0.80214 - -4.24724 39.83942 -0.80214 - 1.02396 35.34859 -0.71851 - 5.64554 30.56255 -0.63515 - 9.58692 25.70134 -0.55303 - 12.85427 20.91301 -0.47312 - 15.45345 16.16620 -0.39640 - 15.45402 16.14723 -0.39640 - 17.37273 11.26852 -0.32369 - 18.62954 6.70824 -0.25528 - 19.27622 2.57030 -0.19133 - 19.37683 -1.09330 -0.13201 - 18.99745 -4.28799 -0.07750 - 18.99930 -4.30248 -0.07750 - 18.20144 -7.03763 -0.02781 - 17.05232 -9.32237 0.01740 - 15.61918 -11.06137 0.05845 - 13.98766 -12.15771 0.09569 - 12.24609 -12.64265 0.12947 - 12.24446 -12.63261 0.12947 - 10.46995 -12.67398 0.16020 - 8.71052 -12.41954 0.18835 - 7.00661 -11.88312 0.21434 - 5.39684 -11.07629 0.23857 - 3.91840 -10.00832 0.26147 - 3.92010 -10.03165 0.26147 - 2.63445 -8.39841 0.28346 - 1.56593 -6.82680 0.30480 - 0.73684 -4.96308 0.32570 - 0.19482 -2.70740 0.34636 - 0.00013 0.00055 0.36696 + 0.00000 0.00000 -59.16181 + 0.12450 0.00000 -57.91674 + 0.24900 0.00000 -56.67169 + 0.37351 0.00000 -55.42666 + 0.49801 0.00000 -54.18166 + 0.62251 0.00000 -52.93672 + 0.62251 0.00000 -52.93672 + 0.74698 0.00000 -51.69184 + 0.87145 0.00000 -50.44704 + 0.99592 0.00000 -49.20233 + 1.12039 0.00000 -47.95771 + 1.24486 0.00000 -46.71322 + 1.24486 0.00000 -46.71322 + 1.41072 0.00000 -45.05409 + 1.57657 0.00000 -43.39521 + 1.74243 0.00000 -41.73662 + 1.90828 0.00000 -40.07835 + 2.07414 0.00000 -38.42043 + 2.07414 0.00000 -38.42043 + 2.21221 0.00000 -37.03911 + 2.35028 0.00000 -35.65807 + 2.48836 0.00000 -34.27732 + 2.62643 0.00000 -32.89689 + 2.76450 0.00000 -31.51679 + 2.76450 0.00000 -31.51679 + 2.90240 0.00000 -30.13704 + 3.04030 0.00000 -28.75766 + 3.17820 0.00000 -27.37865 + 3.31610 0.00000 -26.00005 + 3.45399 0.00000 -24.62187 + 3.45399 0.00000 -24.62187 + 3.57241 0.00000 -23.43698 + 3.69084 0.00000 -22.25242 + 3.80926 0.00000 -21.06820 + 3.92768 0.00000 -19.88434 + 4.04610 0.00000 -18.70085 + 4.04610 439.90000 -18.70085 + 54.34796 439.90000 -17.13398 + 104.64982 439.90000 -15.57602 + 154.95168 439.90000 -14.03518 + 205.25354 439.90000 -12.51972 + 255.55540 439.90000 -11.03786 + 255.55631 439.88198 -11.03786 + 290.84315 439.88198 -10.02245 + 326.13000 439.88198 -9.03050 + 361.41684 439.88198 -8.06483 + 396.70368 439.88198 -7.12831 + 431.99052 439.88198 -6.22377 + 431.99026 -84.94379 -6.22377 + 430.31303 -84.94379 -6.00296 + 428.63580 -84.94379 -5.78431 + 426.95858 -84.94379 -5.56783 + 425.28135 -84.94379 -5.35350 + 423.60413 -84.94379 -5.14131 + 423.60409 -84.94334 -5.14131 + 415.20241 -84.94334 -4.11221 + 406.80074 -84.94334 -3.13542 + 398.39907 -84.94334 -2.20987 + 389.99739 -84.94334 -1.33452 + 381.59572 -84.94334 -0.50830 + 381.59557 -84.93817 -0.50830 + 373.17037 -84.93817 0.26985 + 364.74518 -84.93817 1.00099 + 356.31999 -84.93817 1.68617 + 347.89480 -84.93817 2.32647 + 339.46960 -84.93817 2.92294 + 339.46961 -84.93774 2.92294 + 331.02308 -84.93774 3.47665 + 322.57655 -84.93774 3.98865 + 314.13002 -84.93774 4.46001 + 305.68349 -84.93774 4.89180 + 297.23696 -84.93774 5.28508 + 297.23691 -84.93705 5.28508 + 285.38101 -84.93705 5.77300 + 273.52511 -84.93705 6.19046 + 261.66921 -84.93705 6.54037 + 249.81330 -84.93705 6.82567 + 237.95740 -84.93705 7.04928 + 237.95733 -84.93551 7.04928 + 226.92202 -84.93551 7.20425 + 215.88670 -84.93551 7.31091 + 204.85139 -84.93551 7.37160 + 193.81608 -84.93551 7.38867 + 182.78077 -84.93551 7.36448 + 182.78092 -84.93579 7.36448 + 171.72611 -84.93579 7.30138 + 160.67131 -84.93579 7.20171 + 149.61650 -84.93579 7.06783 + 138.56169 -84.93579 6.90210 + 127.50689 -84.93579 6.70687 + 127.50689 -84.93581 6.70687 + 114.77744 -84.93581 6.44894 + 102.04800 -84.93581 6.15869 + 89.31855 -84.93581 5.83971 + 76.58911 -84.93581 5.49558 + 63.85966 -84.93581 5.12988 + 63.85966 -84.93581 5.12988 + 51.12123 -84.93581 4.74619 + 38.38280 -84.93581 4.34812 + 25.64436 -84.93581 3.93924 + 12.90593 -84.93581 3.52313 + 0.16750 -84.93581 3.10340 + 0.16635 -84.92999 3.10340 + -12.57123 -84.92999 2.68361 + -25.30882 -84.92999 2.26737 + -38.04641 -84.92999 1.85825 + -50.78399 -84.92999 1.45984 + -63.52158 -84.92999 1.07574 + -63.52007 -84.91757 1.07574 + -76.24686 -84.91757 0.70952 + -88.97365 -84.91757 0.36476 + -101.70044 -84.91757 0.04507 + -114.42723 -84.91757 -0.24600 + -127.15401 -84.91757 -0.50484 + -127.15329 -84.90543 -0.50484 + -127.32337 -84.82665 -0.50807 + -127.49319 -84.67065 -0.51129 + -127.66270 -84.51465 -0.51450 + -127.83189 -84.35865 -0.51771 + -128.00078 -84.20265 -0.52091 + -128.00078 -84.20267 -0.52091 + -131.14963 -81.23866 -0.58052 + -134.18586 -78.27463 -0.63774 + -137.10945 -75.31059 -0.69253 + -139.92041 -72.34654 -0.74482 + -142.61874 -69.38247 -0.79456 + -142.61874 67.77700 -0.79456 + -141.24997 69.33705 -0.81971 + -139.85000 70.89709 -0.84414 + -138.41883 72.45714 -0.86787 + -136.95646 74.01720 -0.89090 + -135.46289 75.57725 -0.91324 + -135.46287 75.57692 -0.91324 + -128.45918 79.05210 -1.00543 + -121.35122 79.05237 -1.08452 + -114.24324 79.05264 -1.15123 + -107.13523 79.05291 -1.20628 + -100.02720 79.05318 -1.25039 + -100.02723 79.05282 -1.25039 + -99.23707 79.05273 -1.25465 + -98.44691 79.05276 -1.25878 + -97.65675 79.05279 -1.26279 + -96.86659 79.05282 -1.26668 + -96.07643 79.05297 -1.27044 + -96.07638 79.05142 -1.27044 + -92.94417 77.58476 -1.28430 + -89.87299 76.00107 -1.29629 + -86.86739 74.30681 -1.30646 + -83.93165 72.50909 -1.31488 + -81.06977 70.61566 -1.32160 + -81.06982 70.61408 -1.32160 + -79.66990 69.39247 -1.32435 + -78.29457 68.15416 -1.32670 + -76.94419 66.89829 -1.32865 + -75.61910 65.62517 -1.33022 + -74.31963 64.33625 -1.33140 + -74.31880 64.31532 -1.33140 + -68.55142 62.32940 -1.33216 + -62.98031 60.09626 -1.32578 + -57.61072 57.90108 -1.31280 + -52.43897 55.74879 -1.29380 + -47.46104 53.64141 -1.26933 + -47.46118 53.63957 -1.26933 + -42.67086 51.58943 -1.23993 + -38.06468 49.59495 -1.20608 + -33.63683 47.67356 -1.16824 + -29.37992 45.83911 -1.12688 + -25.28651 44.07288 -1.08245 + -25.28656 44.07004 -1.08245 + -20.92214 43.15216 -1.03063 + -16.64741 42.27500 -0.97616 + -12.45860 41.43311 -0.91959 + -8.35262 40.61539 -0.86145 + -4.32765 39.81302 -0.80225 + -4.32543 39.80049 -0.80225 + 0.94026 35.30887 -0.71868 + 5.55614 30.52021 -0.63536 + 9.49135 25.65608 -0.55325 + 12.75227 20.86639 -0.47334 + 15.34484 16.11835 -0.39659 + 15.34542 16.09933 -0.39659 + 17.26636 11.31620 -0.32383 + 18.52977 6.75460 -0.25533 + 19.18284 2.61524 -0.19128 + 19.28968 -1.04934 -0.13183 + 18.91641 -4.24451 -0.07717 + 18.91827 -4.25909 -0.07717 + 18.12649 -6.99417 -0.02730 + 16.98350 -9.27822 0.01809 + 15.55677 -11.01297 0.05935 + 13.93259 -12.10107 0.09682 + 12.19972 -12.57429 0.13083 + 12.19807 -12.56431 0.13083 + 10.43418 -12.59040 0.16181 + 8.68762 -12.31910 0.19022 + 6.99905 -11.76421 0.21646 + 5.40732 -10.93728 0.24096 + 3.94985 -9.84760 0.26412 + 3.95004 -9.84495 0.26412 + 2.66311 -8.49947 0.28636 + 1.58216 -6.90306 0.30795 + 0.74414 -5.01465 0.32910 + 0.19660 -2.73434 0.34999 + -0.00004 -0.00020 0.37084 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -46070,38 +46206,38 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.33500 9.00000 12.00000 26.91060 26.91060 - -10.42500 31.00000 5.00000 33.93095 33.93095 - -10.51500 7.00000 27.00000 40.95138 40.95138 - -10.60500 34.00000 34.70000 47.97189 47.97189 - -10.69500 49.00000 2.00000 54.99249 54.99249 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.81000 71.51400 34.34100 63.56751 62.45232 - -10.85000 71.51400 34.34100 65.99428 62.57891 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.33500 1.00000 1.00000 26.91060 26.91060 + -10.42500 1.00000 1.00000 33.93095 33.93095 + -10.51500 1.00000 1.00000 40.95138 40.95138 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.81000 71.51400 34.34000 63.56751 62.45232 + -10.85000 71.51400 34.34000 65.99428 62.57891 -10.89000 71.51400 34.34100 68.51921 62.71063 -10.93000 71.51400 34.34100 71.14231 62.84747 -10.97000 71.51400 34.34100 73.86358 62.98944 @@ -46180,8 +46316,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -46211,7 +46347,7 @@ Lambda passive -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.95000 12.40790 68.03169 3.54904 0.50828 0.28603 5.48293 -10.99000 12.85550 69.87231 3.64506 0.50828 0.28603 5.48293 - -10.99000 12.85550 70.79262 3.69307 0.64261 0.28603 5.48293 + -10.99000 12.85550 70.79262 3.69307 0.50828 0.28603 5.48293 -11.01000 13.07930 71.71293 3.74108 0.50828 0.28603 5.48293 -11.03000 13.30310 72.94002 3.80510 0.50828 0.28603 5.48293 -11.05000 13.52690 74.16710 3.86911 0.50828 0.28603 5.48293 @@ -46241,7 +46377,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -46400,38 +46536,38 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00205 0.00000 78.00205 78.00205 402 100 P 78.00220 0.00000 78.00220 78.00220 402 100 P 78.00240 0.00000 78.00240 78.00240 402 100 P 78.00260 0.00000 78.00260 78.00260 402 100 P 78.00280 0.00000 78.00280 78.00280 402 100 P 78.00295 0.00000 78.00295 78.00295 1 100 A - 78.00322 0.00000 78.00322 78.00322 1 100 A + 78.00322 0.00000 78.00322 78.00323 1 100 A 78.00390 0.00000 78.00390 78.00390 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00570 0.00000 78.00570 78.00570 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00728 0.00000 78.00728 78.00728 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A 3.06894 67.39050 58.82859 5.45357 1 0 A 3.16496 67.78290 60.66921 5.62420 1 0 A 3.29299 68.17530 63.12337 5.85171 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.54904 68.96010 68.03169 6.30672 1 0 A 3.64506 69.35250 69.87231 6.47735 1 0 A - 3.69307 69.35250 70.79262 8.29707 1 0 A + 3.69307 69.35250 70.79262 6.56267 1 0 A 3.74108 69.54870 71.71293 6.64798 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.86911 69.94110 74.16710 6.87549 1 0 A @@ -46445,23 +46581,23 @@ Status character 1.62179 74.79705 54.66869 11.99322 1 0 A 1.74764 74.79705 55.04663 12.17362 1 0 A 1.93624 75.68976 55.64206 12.44422 1 0 A - 2.23798 76.58247 56.47400 12.80502 110 0 1 - 2.73474 77.47518 57.34182 13.16581 110 0 1 - 3.27244 78.36789 58.23745 13.52661 110 0 1 - 3.75689 79.26060 58.92328 13.79721 110 0 1 - 8.80143 79.26060 38.46255 14.05198 110 0 1 - 7.48372 83.24160 34.78760 12.42214 110 0 1 - 5.51956 87.22260 29.92326 10.24902 110 0 1 - 3.51602 91.20360 25.09365 8.07589 110 0 1 - 1.52561 95.18460 20.29148 5.90277 110 0 1 - 0.08932 99.16560 16.70379 4.27292 110 0 1 + 2.24118 76.58247 56.47400 12.80502 110 0 1 + 2.73770 77.47518 57.34182 13.16581 110 0 1 + 3.27520 78.36789 58.23745 13.52661 110 0 1 + 3.75948 79.26060 58.92328 13.79721 110 0 1 + 8.79967 79.26060 38.46255 14.05198 110 0 1 + 7.48189 83.24160 34.78760 12.42214 110 0 1 + 5.52074 87.22260 29.92326 10.24902 110 0 1 + 3.51720 91.20360 25.09365 8.07589 110 0 1 + 1.52679 95.18460 20.29148 5.90277 110 0 1 + 0.09054 99.16560 16.70379 4.27292 110 0 1 1.53586 99.16560 27.51935 2.70743 1 0 A 1.85350 100.53900 33.02991 3.26655 1 0 A 2.27733 101.91240 40.29427 4.01204 1 0 A 2.70157 103.28580 47.47851 4.75752 1 0 A 3.12622 104.65920 54.60600 5.50301 1 0 A 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A + 3.65754 106.03260 63.46711 6.43488 1 0 A 3.97660 107.40600 68.76890 6.99399 1 0 A 4.40227 108.77940 75.83214 7.73948 1 0 A 4.82819 110.15280 82.89494 8.48497 1 0 A @@ -46470,21 +46606,21 @@ Status character 5.78717 112.89960 98.80627 10.16232 1 0 A 6.10697 114.27300 104.11963 10.72144 1 0 A 6.53345 115.64640 111.21161 11.46693 1 0 A - 8.47194 117.01980 118.31241 12.21242 110 0 1 - 10.43195 118.39320 125.42156 12.95791 110 0 1 - 12.13688 119.76660 130.75828 13.51703 110 0 1 - 12.50962 119.76660 134.31851 13.88977 110 0 1 - 14.15199 121.14000 139.66222 14.44889 110 0 1 - 15.92721 122.51340 146.79231 15.19438 110 11 1 - 17.65707 123.88680 153.92796 15.93987 110 11 1 - 19.34972 125.26020 161.06855 16.68536 110 12 1 - 20.82696 126.63360 166.42676 17.24447 110 13 1 - 21.19971 126.63360 170.00024 17.61722 110 12 1 - 22.65664 128.00700 175.36228 18.17633 110 13 1 - 24.28582 129.38040 182.51443 18.92182 110 13 1 - 26.56289 130.75380 189.66955 19.66731 110 14 1 - 29.63385 132.12720 196.82728 20.41280 110 15 1 - 32.59271 133.50060 202.19703 20.97192 110 16 1 + 8.51348 117.01980 118.31241 12.21242 110 0 1 + 10.47850 118.39320 125.42156 12.95791 110 0 1 + 12.18870 119.76660 130.75828 13.51703 110 0 1 + 12.56145 119.76660 134.31851 13.88977 110 0 1 + 14.20936 121.14000 139.66222 14.44889 110 0 1 + 15.99029 122.51340 146.79231 15.19438 110 11 1 + 17.72595 123.88680 153.92796 15.93987 110 12 1 + 19.42440 125.26020 161.06855 16.68536 110 12 1 + 20.90735 126.63360 166.42676 17.24447 110 13 1 + 21.28009 126.63360 170.00024 17.61722 110 13 1 + 22.74254 128.00700 175.36228 18.17633 110 13 1 + 24.37703 129.38040 182.51443 18.92182 110 13 1 + 26.63684 130.75380 189.66955 19.66731 110 14 1 + 29.71384 132.12720 196.82728 20.41280 110 15 1 + 32.67872 133.50060 202.19703 20.97192 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -46499,9 +46635,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 1.654 'Hydrobiaklei' + -11.09 1.655 'Hydrobiaklei' -12.00 2.249 'Basisveen' - -12.50 40.575 'Eerste zandlaag' + -12.50 40.695 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -46520,7 +46656,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.31 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.75 'Eerste zandlaag' + -12.50 -13.79 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -46644,20 +46780,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.33500 5.00000 1.00000 3.51001 3.51001 - -10.42500 39.00000 27.00000 10.53009 10.53009 - -10.51500 7.99100 8.00000 17.55025 17.55025 - -10.60500 14.00000 13.10000 24.57050 24.57050 - -10.69500 0.92000 1.00000 31.59082 31.59082 - -10.74000 4.00000 8.00000 35.10101 35.10101 - -10.74500 4.00000 8.00000 35.49104 35.49104 - -10.75500 2.03000 1.00000 36.27108 36.27108 - -10.76500 3.70000 1.00000 37.05113 37.05113 - -10.77500 25.00000 15.00000 37.83118 37.83118 - -10.78500 3.00000 1.00000 38.61123 38.61123 - -10.79000 42.00000 1.00000 39.00125 39.00125 - -10.81000 71.51400 34.34100 40.23984 39.06586 - -10.85000 71.51400 34.34100 42.84205 39.20161 + -10.33500 1.00000 1.00000 3.51001 3.51001 + -10.42500 1.00000 1.00000 10.53009 10.53009 + -10.51500 1.00000 1.00000 17.55025 17.55025 + -10.60500 1.00000 1.00000 24.57050 24.57050 + -10.69500 1.00000 1.00000 31.59082 31.59082 + -10.74000 1.00000 1.00000 35.10101 35.10101 + -10.74500 1.00000 1.00000 35.49104 35.49104 + -10.75500 1.00000 1.00000 36.27108 36.27108 + -10.76500 1.00000 1.00000 37.05113 37.05113 + -10.77500 1.00000 1.00000 37.83118 37.83118 + -10.78500 1.00000 1.00000 38.61123 38.61123 + -10.79000 1.00000 1.00000 39.00125 39.00125 + -10.81000 71.51400 34.34000 40.23984 39.06586 + -10.85000 71.51400 34.34000 42.84205 39.20161 -10.89000 71.51400 34.34100 45.61093 39.34606 -10.93000 71.51400 34.34100 48.54649 39.49920 -10.97000 71.51400 34.34100 51.64873 39.66104 @@ -46736,13 +46872,13 @@ Lambda passive -10.47000 78.00180 78.00180 78.00180 1.00000 1.00000 1.00000 -10.56000 78.00270 78.00270 78.00270 1.00000 1.00000 1.00000 -10.65000 78.00360 78.00360 78.00360 1.00000 1.00000 1.00000 - -10.74000 78.00450 78.00428 78.00428 1.00000 1.00000 1.00000 + -10.74000 78.00450 78.00428 78.00427 1.00000 1.00000 1.00000 -10.74000 78.00450 78.00452 78.00452 1.00000 1.00000 1.00000 -10.75000 78.00460 78.00460 78.00460 1.00000 1.00000 1.00000 -10.76000 78.00470 78.00470 78.00470 1.00000 1.00000 1.00000 -10.77000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.78000 78.00490 78.00490 78.00490 1.00000 1.00000 1.00000 - -10.79000 78.00500 78.00498 78.00498 1.00000 1.00000 1.00000 + -10.79000 78.00500 78.00497 78.00498 1.00000 1.00000 1.00000 -10.79000 11.10500 61.92974 3.23072 0.50828 0.28603 5.48293 -10.83000 11.86500 65.05501 3.39376 0.50828 0.28603 5.48293 -10.87000 12.62500 69.22204 3.61114 0.50828 0.28603 5.48293 @@ -46755,7 +46891,7 @@ Lambda passive -11.05000 15.57640 85.40437 4.45533 0.50828 0.28603 5.48293 -11.07000 15.80020 86.63145 4.51935 0.50828 0.28603 5.48293 -11.09000 16.02400 87.55176 4.56736 0.50828 0.28603 5.48293 - -11.09000 16.02400 57.49074 1.48792 0.73783 0.09215 3.56054 + -11.09000 16.02400 57.49074 1.48792 0.73559 0.09215 3.56054 -11.18100 16.51449 57.44729 1.70072 0.73559 0.10298 3.47860 -11.27200 17.00498 57.69015 1.96589 0.73559 0.11561 3.39254 -11.36300 17.49547 58.15792 2.22318 0.73559 0.12707 3.32417 @@ -46767,7 +46903,7 @@ Lambda passive -11.81800 19.94792 61.91592 3.48628 0.73559 0.17477 3.10388 -11.90900 20.43841 62.80158 3.73782 0.73559 0.18288 3.07272 -12.00000 20.92890 63.48060 3.92642 0.73559 0.18871 3.05103 - -12.00000 20.92890 42.04983 8.77210 0.85559 0.43370 2.07898 + -12.00000 20.92890 42.04983 8.77210 0.77308 0.43370 2.07898 -12.10000 18.11790 38.35909 7.44425 0.77308 0.41088 2.11719 -12.20000 15.30690 33.47530 5.67363 0.77308 0.37066 2.18694 -12.30000 12.49590 28.62801 3.90288 0.77308 0.31233 2.29099 @@ -46797,7 +46933,7 @@ Lambda passive -15.02000 32.55270 164.23188 9.70251 0.52256 0.29806 5.04511 -15.16000 33.97930 171.37447 10.12912 0.52256 0.29810 5.04350 -15.30000 35.40590 176.73401 10.44904 0.52256 0.29812 5.04245 - -15.30000 35.40590 180.30829 10.66231 0.39125 0.29814 5.04182 + -15.30000 35.40590 180.30829 10.66231 0.52256 0.29814 5.04182 -15.44000 36.83250 185.67141 10.98220 0.52256 0.29817 5.04097 -15.58000 38.25910 192.82483 11.40868 0.52256 0.29820 5.03997 -15.72000 39.68570 199.98102 11.83511 0.52256 0.29822 5.03912 @@ -46957,72 +47093,72 @@ Status character 78.00270 0.00000 78.00270 78.00270 402 100 P 78.00360 0.00000 78.00360 78.00360 402 100 P 78.00428 0.00000 78.00428 78.00428 402 100 P - 78.00452 0.00000 78.00452 78.00452 402 100 P + 78.00452 0.00000 78.00452 78.00453 402 0 P 78.00460 0.00000 78.00460 78.00460 402 100 P 78.00470 0.00000 78.00470 78.00470 402 100 P 78.00480 0.00000 78.00480 78.00480 402 100 P 78.00490 0.00000 78.00490 78.00490 402 100 P - 78.00498 0.00000 78.00498 78.00498 402 100 P - 105.61143 0.00000 428.73800 39.74517 110 25 1 - 109.09634 0.00000 431.86327 40.03489 110 25 1 - 112.46993 0.00000 436.03030 40.42118 110 26 1 - 115.66362 0.00000 440.19733 40.80748 110 26 1 - 118.68189 0.00000 444.36436 41.19377 110 27 1 - 121.45615 0.00000 447.48963 41.48350 110 27 1 - 65.95560 66.90000 82.02990 7.60439 330 80 3 - 67.65570 67.09620 82.95021 7.68971 330 82 3 - 68.60454 67.29240 84.17729 7.80346 330 82 3 - 69.53833 67.48860 85.40437 7.91722 330 81 3 - 70.45728 67.68480 86.63145 8.03097 330 81 3 - 71.23054 67.88100 87.55176 8.11628 330 81 3 - 21.85541 67.88100 57.49074 11.91343 110 38 1 - 27.80395 68.77371 57.44729 12.14781 110 48 1 - 27.67635 69.66642 57.69015 12.50861 110 48 1 - 27.48852 70.55913 58.15792 12.86941 110 47 1 - 27.24531 71.45184 58.76656 13.23021 110 46 1 - 26.94714 72.34455 59.28463 13.50080 110 45 1 - 26.95604 72.34455 59.65500 13.68120 110 45 1 - 26.61205 73.23726 60.23996 13.95180 110 44 1 - 26.23086 74.12997 61.05929 14.31260 110 43 1 - 25.81203 75.02268 61.91592 14.67339 110 42 1 - 25.35957 75.91539 62.80158 15.03419 110 40 1 - 25.36040 76.80810 63.48060 15.30479 110 40 1 - 21.54514 76.80810 42.04983 17.30531 220 51 2 - 18.89022 80.78910 38.35909 14.00657 110 49 1 - 16.56290 84.77010 33.47530 11.83344 110 49 1 - 14.22018 88.75110 28.62801 9.66032 110 50 1 - 12.08297 92.73210 23.80984 7.48719 220 51 2 - 10.48384 96.71310 20.21114 5.85735 220 52 2 - 34.97538 96.71310 38.27144 3.77842 330 91 3 - 37.47364 98.08650 43.67886 4.33754 330 86 3 - 39.93427 99.45990 50.82580 5.08303 220 79 2 - 39.39547 100.83330 57.92016 5.82852 220 68 2 - 39.74208 102.20670 64.98360 6.57401 220 61 2 - 39.54563 103.58010 70.27090 7.13313 220 56 2 - 41.91735 103.58010 73.79336 7.50587 220 57 2 - 40.31775 104.95350 79.07672 8.06499 220 51 2 - 38.11295 106.32690 86.12440 8.81048 110 44 1 - 35.13592 107.70030 93.17934 9.55597 110 38 1 - 32.18865 109.07370 100.24368 10.30146 110 32 1 - 29.18312 110.44710 105.54834 10.86057 110 28 1 - 29.40429 110.44710 109.08825 11.23332 110 27 1 - 26.46849 111.82050 114.40324 11.79243 110 23 1 - 23.71601 113.19390 121.49808 12.53792 110 20 1 - 21.03732 114.56730 128.60212 13.28341 110 16 1 - 18.43347 115.94070 135.71455 14.02890 110 14 1 - 15.96817 117.31410 141.05365 14.58802 110 11 1 - 16.34091 117.31410 144.61540 14.96076 110 11 1 - 15.81677 118.68750 149.96124 15.51988 110 11 1 - 15.53254 120.06090 157.09393 16.26537 110 0 1 - 15.29366 121.43430 164.23188 17.01086 110 0 1 - 15.09199 122.80770 171.37447 17.75635 110 0 1 - 14.73298 124.18110 176.73401 18.31547 110 0 1 - 10.66231 124.18110 180.30829 13.99225 1 0 A - 14.76703 125.55450 185.67141 19.24733 110 0 1 - 14.62882 126.92790 192.82483 19.99282 110 0 1 - 14.50040 128.30130 199.98102 20.73831 110 0 1 - 14.37739 129.67470 207.13966 21.48380 110 0 1 - 14.06907 131.04810 212.51000 22.04291 110 0 1 + 78.00497 0.00000 78.00497 78.00498 402 0 P + 105.62725 0.00000 428.73800 39.74517 110 25 1 + 109.11310 0.00000 431.86327 40.03489 110 25 1 + 112.48763 0.00000 436.03030 40.42118 110 26 1 + 115.68225 0.00000 440.19733 40.80748 110 26 1 + 118.70145 0.00000 444.36436 41.19377 110 27 1 + 121.47663 0.00000 447.48963 41.48350 110 27 1 + 66.83341 66.90000 82.02990 7.60439 330 81 3 + 67.66670 67.09620 82.95021 7.68971 330 82 3 + 68.61580 67.29240 84.17729 7.80346 330 82 3 + 69.54986 67.48860 85.40437 7.91722 330 81 3 + 70.46907 67.68480 86.63145 8.03097 330 81 3 + 71.24258 67.88100 87.55176 8.11628 330 81 3 + 21.82146 67.88100 57.49074 11.87722 110 38 1 + 27.85140 68.77371 57.44729 12.14781 110 48 1 + 27.72232 69.66642 57.69015 12.50861 110 48 1 + 27.53285 70.55913 58.15792 12.86941 110 47 1 + 27.28783 71.45184 58.76656 13.23021 110 46 1 + 26.98766 72.34455 59.28463 13.50080 110 46 1 + 26.99656 72.34455 59.65500 13.68120 110 45 1 + 26.65039 73.23726 60.23996 13.95180 110 44 1 + 26.26680 74.12997 61.05929 14.31260 110 43 1 + 25.84540 75.02268 61.91592 14.67339 110 42 1 + 25.39019 75.91539 62.80158 15.03419 110 40 1 + 25.36771 76.80810 63.48060 15.30479 110 40 1 + 20.65527 76.80810 42.04983 15.63641 110 49 1 + 18.88899 80.78910 38.35909 14.00657 110 49 1 + 16.56172 84.77010 33.47530 11.83344 110 49 1 + 14.21901 88.75110 28.62801 9.66032 110 50 1 + 12.08445 92.73210 23.80984 7.48719 220 51 2 + 10.48529 96.71310 20.21114 5.85735 220 52 2 + 34.98116 96.71310 38.27144 3.77842 330 91 3 + 37.47925 98.08650 43.67886 4.33754 330 86 3 + 39.96594 99.45990 50.82580 5.08303 220 79 2 + 39.40557 100.83330 57.92016 5.82852 220 68 2 + 39.75137 102.20670 64.98360 6.57401 220 61 2 + 39.55395 103.58010 70.27090 7.13313 220 56 2 + 40.54469 103.58010 73.79336 7.50587 220 55 2 + 40.32493 104.95350 79.07672 8.06499 220 51 2 + 38.12465 106.32690 86.12440 8.81048 110 44 1 + 35.14462 107.70030 93.17934 9.55597 110 38 1 + 32.19396 109.07370 100.24368 10.30146 110 32 1 + 29.18466 110.44710 105.54834 10.86057 110 28 1 + 29.40584 110.44710 109.08825 11.23332 110 27 1 + 26.46588 111.82050 114.40324 11.79243 110 23 1 + 23.70885 113.19390 121.49808 12.53792 110 20 1 + 21.02522 114.56730 128.60212 13.28341 110 16 1 + 18.41605 115.94070 135.71455 14.02890 110 14 1 + 15.91635 117.31410 141.05365 14.58802 110 11 1 + 16.28909 117.31410 144.61540 14.96076 110 11 1 + 15.75941 118.68750 149.96124 15.51988 110 11 1 + 15.46946 120.06090 157.09393 16.26537 110 0 1 + 15.22478 121.43430 164.23188 17.01086 110 0 1 + 15.01730 122.80770 171.37447 17.75635 110 0 1 + 14.65259 124.18110 176.73401 18.31547 110 0 1 + 15.02534 124.18110 180.30829 18.68821 110 0 1 + 14.68113 125.55450 185.67141 19.24733 110 0 1 + 14.53761 126.92790 192.82483 19.99282 110 0 1 + 14.40399 128.30130 199.98102 20.73831 110 0 1 + 14.27587 129.67470 207.13966 21.48380 110 0 1 + 13.96245 131.04810 212.51000 22.04291 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -47036,10 +47172,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 35.526 'OWB' - -10.79 29.675 'Grind' - -11.09 24.096 'Hydrobiaklei' - -12.00 7.777 'Basisveen' - -12.50 88.951 'Eerste zandlaag' + -10.79 29.688 'Grind' + -11.09 24.127 'Hydrobiaklei' + -12.00 7.732 'Basisveen' + -12.50 89.059 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -47056,9 +47192,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 10.59 'Grind' - -11.09 4.47 'Hydrobiaklei' + -11.09 4.48 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 30.13 'Eerste zandlaag' + -12.50 30.17 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -47364,204 +47500,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 278700.63039 - 0.00000 0.00000 277158.55525 - 0.00000 0.00000 275616.48011 - 0.00000 0.00000 274074.40497 - 0.00000 0.00000 272532.32983 - 0.00000 0.00000 270990.25470 - 0.00000 0.00000 270990.25470 - 0.00000 0.00000 269448.17956 - 0.00000 0.00000 267906.10442 - 0.00000 0.00000 266364.02928 - 0.00000 0.00000 264821.95414 - 0.00000 0.00000 263279.87900 - 0.00000 0.00012 263279.87900 - 0.00000 -0.00038 263098.45840 - -0.00001 -0.00185 262917.03779 - -0.00004 -0.00430 262735.61719 - -0.00010 -0.00773 262554.19658 - -0.00020 -0.01215 262372.77598 - -0.00020 -0.01226 262372.77598 - -0.00803 -0.14175 260195.72872 - -0.03988 -0.41251 258018.68146 - -0.11269 -0.82453 255841.63421 - -0.24341 -1.37781 253664.58699 - -0.44901 -2.07236 251487.53982 - -0.44901 -2.07236 251487.53982 - -0.68977 -2.75906 249673.33389 - -1.00409 -3.54386 247859.12805 - -1.40181 -4.42676 246044.92234 - -1.89272 -5.40776 244230.71682 - -2.48663 -6.48686 242416.51154 - -2.48663 -6.48686 242416.51154 - -3.19336 -7.66406 240602.30656 - -4.02271 -8.93936 238788.10197 - -4.98450 -10.31276 236973.89791 - -6.08854 -11.78426 235159.69449 - -7.34462 -13.35386 233345.49184 - -7.34462 -13.35386 233345.49184 - -8.55395 -14.78218 231785.27827 - -9.88924 -16.28305 230225.06550 - -11.35672 -17.85648 228664.85367 - -12.96263 -19.50246 227104.64290 - -14.71322 -21.22099 225544.43334 - -14.71322 -21.22099 225544.43334 - -17.26743 -23.61089 223476.25067 - -20.10135 -26.12827 221408.07083 - -23.22952 -28.77314 219339.89432 - -26.66647 -31.54551 217271.72167 - -30.42674 -34.44536 215203.55337 - -30.42674 -34.44536 215203.55337 - -32.54061 -36.02281 214115.04568 - -34.75018 -37.63558 213026.53947 - -37.05758 -39.28366 211938.03484 - -39.46493 -40.96705 210849.53189 - -41.97433 -42.68576 209761.03073 - -41.97433 -42.68573 209761.03073 - -42.83378 -43.25641 209398.19743 - -43.70448 -43.81090 209035.36434 - -44.58611 -44.34918 208672.53147 - -45.47834 -44.87127 208309.69883 - -46.38086 -45.37917 207946.86642 - -46.38087 -45.37924 207946.86642 - -47.29335 -45.86689 207584.03424 - -48.21545 -46.34037 207221.20229 - -49.14685 -46.79764 206858.37060 - -50.08724 -47.23872 206495.53915 - -51.03631 -47.66561 206132.70795 - -51.03631 -47.66567 206132.70795 - -55.91586 -49.92986 204318.55589 - -61.02297 -52.21472 202504.41088 - -66.35909 -54.50842 200690.27358 - -71.92473 -56.80429 198876.14466 - -77.71994 -59.09970 197062.02481 - -77.71994 -59.09970 197062.02481 - -83.74455 -61.39217 195247.91471 - -89.99827 -63.68164 193433.81515 - -96.48075 -65.96718 191619.72696 - -103.19156 -68.24833 189805.65096 - -110.13028 -70.52541 187991.58794 - -110.13028 -70.52541 187991.58794 - -117.29640 -72.79631 186177.53877 - -124.68939 -75.06270 184363.50437 - -132.30876 -77.32382 182549.48571 - -140.15398 -79.57955 180735.48374 - -148.22451 -81.83048 178921.49942 - -148.22451 -81.83048 178921.49942 - -159.90065 -84.97007 176381.95288 - -172.01568 -88.09993 173842.44582 - -184.56810 -91.21857 171302.98133 - -197.55635 -94.32586 168763.56251 - -210.97888 -97.42315 166224.19246 - -210.97888 -97.42315 166224.19246 - -223.70325 -98.33203 163866.25246 - -236.58961 -100.26566 161508.36007 - -249.80875 -103.03979 159150.51811 - -263.36283 -105.41873 156792.72939 - -277.20049 -107.40246 154434.99675 - -277.20049 -107.40246 154434.99675 - -291.27035 -108.99100 152077.32306 - -305.52102 -110.18433 149719.71138 - -319.90115 -110.98247 147362.16477 - -334.35934 -111.38540 145004.68629 - -348.84423 -111.39314 142647.27899 - -348.84423 -111.39314 142647.27899 - -365.48118 -111.17479 139936.35258 - -382.08549 -110.95645 137225.52909 - -398.65716 -110.73810 134514.81316 - -415.19618 -110.51976 131804.20948 - -431.70257 -110.30141 129093.72269 - -431.70257 -110.30141 129093.72269 - -448.20120 -110.58264 126383.35743 - -464.79895 -111.50945 123673.11837 - -481.55155 -112.61727 120963.01021 - -498.47599 -113.81494 118253.03768 - -515.58651 -115.09873 115543.20550 - -515.58651 -115.09873 115543.20550 - -532.89591 -116.47379 112833.51842 - -550.41516 -117.90888 110123.98137 - -568.15408 -119.41257 107414.59936 - -586.12294 -120.98487 104705.37737 - -604.33155 -122.61720 101996.32042 - -604.33155 -122.61720 101996.32042 - -622.79061 -124.33530 99287.43352 - -641.51080 -126.11357 96578.72198 - -660.50200 -127.96071 93870.19113 - -679.77449 -129.87673 91161.84632 - -699.33814 -131.85302 88453.69290 - -699.33827 -131.87245 88453.69290 - -699.60204 -131.89947 88417.46475 - -699.86586 -131.92651 88381.23663 - -700.12974 -131.95355 88345.00854 - -700.39368 -131.98061 88308.78049 - -700.65767 -132.00768 88272.55248 - -700.65767 -132.03016 88272.55248 - -705.65571 -131.02296 87584.22693 - -710.61527 -130.00470 86895.91421 - -715.53591 -128.97379 86207.61443 - -720.41712 -127.93023 85519.32766 - -725.25846 -126.87557 84831.05399 - -725.25846 -126.87556 84831.05399 - -740.27840 -123.44091 82657.64529 - -754.87984 -119.89531 80484.37088 - -769.04820 -116.22272 78311.23334 - -782.76821 -112.42300 76138.23523 - -796.02526 -108.51200 73965.37913 - -796.02526 -108.51200 73965.37913 - -802.47565 -106.49690 72879.00512 - -808.80434 -104.45397 71792.66749 - -815.00949 -102.37922 70706.36654 - -821.08921 -100.27266 69620.10255 - -827.04165 -98.13825 68533.87580 - -827.04165 -98.13825 68533.87580 - -835.82190 -94.82512 66886.50358 - -844.29788 -91.44791 65239.21857 - -852.46320 -87.99745 63592.02160 - -860.31119 -84.47372 61944.91353 - -867.83547 -80.88587 60297.89521 - -867.83547 -80.88587 60297.89521 - -875.02909 -77.20642 58650.96747 - -881.88510 -73.46284 57004.13101 - -888.39710 -69.64596 55357.38652 - -894.55844 -65.75578 53710.73468 - -900.36271 -61.80145 52064.17616 - -900.36271 -61.80145 52064.17616 - -906.46425 -60.19043 50254.87958 - -912.39172 -58.30716 48445.69719 - -918.11533 -56.11333 46636.62972 - -923.60406 -53.60963 44827.67789 - -928.82823 -50.83528 43018.84240 - -928.82823 -50.83528 43018.84240 - -933.89580 -21.91922 40486.67007 - -935.02756 5.66949 37954.72840 - -932.31361 33.14532 35423.01674 - -925.72772 61.03141 32891.53439 - -915.19993 89.45067 30360.28070 - -915.19993 89.45067 30360.28070 - -900.63064 118.77810 27829.25424 - -881.90981 148.79674 25298.45026 - -858.92914 179.63836 22767.86307 - -831.57136 211.33089 20237.48697 - -799.72103 243.78333 17707.31627 - -799.72103 243.78333 17707.31627 - -763.25005 277.34240 15177.34447 - -722.02851 311.68686 12647.56124 - -675.93552 346.93582 10117.95517 - -624.84396 383.09582 7588.51488 - -568.63130 420.05698 5059.22896 - -585.41003 729.46091 5059.22896 - -480.62576 767.57265 2530.08416 + 0.00000 0.00000 278700.63178 + 0.00000 0.00000 277158.55663 + 0.00000 0.00000 275616.48148 + 0.00000 0.00000 274074.40634 + 0.00000 0.00000 272532.33119 + 0.00000 0.00000 270990.25604 + 0.00000 0.00000 270990.25604 + 0.00000 0.00000 269448.18090 + 0.00000 0.00000 267906.10575 + 0.00000 0.00000 266364.03060 + 0.00000 0.00000 264821.95546 + 0.00000 0.00000 263279.88031 + 0.00000 0.00015 263279.88031 + 0.00000 -0.00034 263098.45971 + -0.00001 -0.00181 262917.03910 + -0.00004 -0.00426 262735.61849 + -0.00010 -0.00769 262554.19789 + -0.00020 -0.01211 262372.77728 + -0.00020 -0.01226 262372.77728 + -0.00803 -0.14175 260195.73001 + -0.03988 -0.41251 258018.68274 + -0.11269 -0.82453 255841.63548 + -0.24341 -1.37781 253664.58826 + -0.44901 -2.07236 251487.54107 + -0.44901 -2.07236 251487.54107 + -0.68977 -2.75906 249673.33514 + -1.00409 -3.54386 247859.12928 + -1.40181 -4.42676 246044.92357 + -1.89272 -5.40776 244230.71804 + -2.48663 -6.48686 242416.51275 + -2.48663 -6.48686 242416.51275 + -3.19336 -7.66406 240602.30776 + -4.02271 -8.93936 238788.10316 + -4.98450 -10.31276 236973.89909 + -6.08854 -11.78426 235159.69566 + -7.34462 -13.35386 233345.49300 + -7.34462 -13.35386 233345.49300 + -8.55395 -14.78218 231785.27943 + -9.88924 -16.28305 230225.06665 + -11.35672 -17.85648 228664.85480 + -12.96263 -19.50246 227104.64403 + -14.71322 -21.22099 225544.43446 + -14.71322 -21.22099 225544.43446 + -17.26743 -23.61089 223476.25179 + -20.10135 -26.12827 221408.07193 + -23.22952 -28.77314 219339.89542 + -26.66647 -31.54551 217271.72275 + -30.42674 -34.44536 215203.55444 + -30.42674 -34.44536 215203.55444 + -32.54061 -36.02281 214115.04675 + -34.75018 -37.63557 213026.54053 + -37.05758 -39.28365 211938.03589 + -39.46493 -40.96705 210849.53294 + -41.97433 -42.68576 209761.03177 + -41.97433 -42.68575 209761.03177 + -42.83378 -43.25643 209398.19847 + -43.70448 -43.81092 209035.36538 + -44.58611 -44.34920 208672.53251 + -45.47834 -44.87128 208309.69987 + -46.38087 -45.37919 207946.86745 + -46.38087 -45.37926 207946.86745 + -47.29335 -45.86691 207584.03527 + -48.21545 -46.34039 207221.20333 + -49.14685 -46.79766 206858.37163 + -50.08725 -47.23873 206495.54017 + -51.03631 -47.66563 206132.70897 + -51.03631 -47.66567 206132.70897 + -55.91586 -49.92986 204318.55691 + -61.02297 -52.21472 202504.41189 + -66.35909 -54.50842 200690.27458 + -71.92473 -56.80429 198876.14565 + -77.71994 -59.09970 197062.02579 + -77.71994 -59.09970 197062.02579 + -83.74455 -61.39217 195247.91568 + -89.99827 -63.68164 193433.81612 + -96.48075 -65.96718 191619.72792 + -103.19156 -68.24833 189805.65190 + -110.13028 -70.52541 187991.58888 + -110.13028 -70.52541 187991.58888 + -117.29640 -72.79631 186177.53970 + -124.68939 -75.06270 184363.50529 + -132.30876 -77.32382 182549.48662 + -140.15398 -79.57955 180735.48464 + -148.22451 -81.83048 178921.50031 + -148.22451 -81.83048 178921.50031 + -159.90065 -84.97007 176381.95376 + -172.01568 -88.09993 173842.44669 + -184.56810 -91.21857 171302.98218 + -197.55635 -94.32586 168763.56335 + -210.97888 -97.42315 166224.19329 + -210.97888 -97.42315 166224.19329 + -223.70325 -98.33203 163866.25327 + -236.58961 -100.26566 161508.36087 + -249.80875 -103.03979 159150.51890 + -263.36283 -105.41873 156792.73018 + -277.20049 -107.40246 154434.99751 + -277.20049 -107.40246 154434.99751 + -291.27035 -108.99100 152077.32381 + -305.52102 -110.18433 149719.71213 + -319.90115 -110.98247 147362.16551 + -334.35934 -111.38540 145004.68701 + -348.84423 -111.39314 142647.27970 + -348.84423 -111.39314 142647.27970 + -365.48118 -111.17479 139936.35328 + -382.08549 -110.95645 137225.52977 + -398.65716 -110.73810 134514.81383 + -415.19618 -110.51976 131804.21013 + -431.70257 -110.30141 129093.72333 + -431.70257 -110.30141 129093.72333 + -448.20120 -110.58264 126383.35807 + -464.79895 -111.50945 123673.11898 + -481.55155 -112.61727 120963.01081 + -498.47599 -113.81494 118253.03827 + -515.58650 -115.09873 115543.20607 + -515.58650 -115.09873 115543.20607 + -532.89591 -116.47379 112833.51898 + -550.41516 -117.90888 110123.98192 + -568.15408 -119.41257 107414.59989 + -586.12294 -120.98486 104705.37790 + -604.33155 -122.61720 101996.32092 + -604.33155 -122.61720 101996.32092 + -622.79061 -124.33530 99287.43402 + -641.51080 -126.11357 96578.72246 + -660.50200 -127.96071 93870.19159 + -679.77449 -129.87673 91161.84677 + -699.33814 -131.85302 88453.69334 + -699.33830 -131.86512 88453.69334 + -699.60206 -131.89214 88417.46519 + -699.86587 -131.91918 88381.23707 + -700.12974 -131.94622 88345.00898 + -700.39366 -131.97328 88308.78093 + -700.65763 -132.00035 88272.55292 + -700.65767 -132.03016 88272.55292 + -705.65571 -131.02296 87584.22736 + -710.61527 -130.00470 86895.91465 + -715.53590 -128.97379 86207.61486 + -720.41712 -127.93022 85519.32808 + -725.25846 -126.87557 84831.05442 + -725.25846 -126.87556 84831.05442 + -740.27840 -123.44091 82657.64570 + -754.87984 -119.89531 80484.37128 + -769.04820 -116.22272 78311.23373 + -782.76821 -112.42300 76138.23561 + -796.02526 -108.51200 73965.37950 + -796.02526 -108.51200 73965.37950 + -802.47565 -106.49690 72879.00548 + -808.80434 -104.45397 71792.66785 + -815.00949 -102.37922 70706.36690 + -821.08921 -100.27266 69620.10290 + -827.04165 -98.13825 68533.87614 + -827.04165 -98.13825 68533.87614 + -835.82190 -94.82512 66886.50392 + -844.29788 -91.44791 65239.21889 + -852.46320 -87.99745 63592.02192 + -860.31119 -84.47372 61944.91384 + -867.83547 -80.88587 60297.89551 + -867.83547 -80.88587 60297.89551 + -875.02909 -77.20642 58650.96776 + -881.88509 -73.46284 57004.13130 + -888.39710 -69.64596 55357.38680 + -894.55844 -65.75578 53710.73495 + -900.36271 -61.80145 52064.17642 + -900.36271 -61.80145 52064.17642 + -906.46425 -60.19043 50254.87983 + -912.39172 -58.30716 48445.69743 + -918.11533 -56.11333 46636.62996 + -923.60406 -53.60963 44827.67811 + -928.82823 -50.83528 43018.84262 + -928.82823 -50.83528 43018.84262 + -933.89580 -21.91922 40486.67027 + -935.02756 5.66949 37954.72859 + -932.31361 33.14532 35423.01691 + -925.72772 61.03141 32891.53456 + -915.19993 89.45067 30360.28085 + -915.19993 89.45067 30360.28085 + -900.63064 118.77810 27829.25438 + -881.90981 148.79674 25298.45039 + -858.92914 179.63836 22767.86318 + -831.57136 211.33089 20237.48707 + -799.72103 243.78333 17707.31636 + -799.72103 243.78333 17707.31636 + -763.25005 277.34240 15177.34455 + -722.02851 311.68686 12647.56130 + -675.93552 346.93582 10117.95522 + -624.84396 383.09582 7588.51492 + -568.63130 420.05698 5059.22899 + -585.41004 729.46091 5059.22899 + -480.62576 767.57265 2530.08417 -371.34985 787.25247 1.05745 - -262.51031 757.31998 -2527.87719 - -160.76070 696.09218 -5056.74580 - -67.64218 634.05687 -7585.57443 - -114.92108 324.67276 -7585.57443 - -73.88224 261.48055 -10114.38082 - -41.74441 197.47655 -12643.16917 - -18.63217 132.54333 -15171.94516 - -4.67572 66.67937 -17700.71448 - 0.00000 0.00000 -20229.48283 + -262.51031 757.31998 -2527.87720 + -160.76070 696.09219 -5056.74583 + -67.64218 634.05687 -7585.57447 + -114.92108 324.67276 -7585.57447 + -73.88224 261.48055 -10114.38087 + -41.74441 197.47655 -12643.16923 + -18.63217 132.54333 -15171.94523 + -4.67572 66.67937 -17700.71457 + 0.00000 0.00000 -20229.48293 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -47889,7 +48025,7 @@ Lambda passive -4.30000 2.15000 6.10511 0.00000 0.77308 0.00000 2.83959 -4.40000 2.18900 6.15073 0.00000 0.77308 0.00000 2.80984 -4.50000 2.22800 6.18672 0.00000 0.77308 0.00000 2.78901 - -4.50000 2.22800 6.21147 0.00000 0.78921 0.00000 2.77577 + -4.50000 2.22800 6.21147 0.00000 0.77308 0.00000 2.77577 -4.60000 2.26700 6.24954 0.00000 0.77308 0.00000 2.75675 -4.70000 2.30600 6.30163 0.00000 0.77308 0.00000 2.73271 -4.80000 2.34500 6.35502 0.00000 0.77308 0.00000 2.71003 @@ -47901,7 +48037,7 @@ Lambda passive -5.42000 2.58680 6.70386 0.00000 0.77308 0.00000 2.59157 -5.56000 2.64140 6.78526 0.00000 0.77308 0.00000 2.56881 -5.70000 2.69600 6.84669 0.00000 0.77308 0.00000 2.55250 - -5.70000 2.69600 21.84537 0.00000 1.37612 0.00000 9.62913 + -5.70000 2.69600 21.84537 0.00000 0.73559 0.00000 9.62913 -5.83000 0.98670 19.01090 0.00000 0.73559 0.00000 19.26715 -5.96000 0.00000 15.25497 0.00000 0.00000 0.00000 0.00000 -6.09000 0.00000 13.77262 0.00000 0.00000 0.00000 0.00000 @@ -47912,8 +48048,8 @@ Lambda passive -6.61000 0.00000 16.82177 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.82018 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81891 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 16.81812 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -47961,13 +48097,13 @@ Lambda passive -10.97000 14.80130 48.91088 0.00000 0.73559 0.00000 3.30450 -11.03000 15.12470 49.60615 0.00000 0.73559 0.00000 3.27981 -11.09000 15.44810 50.12766 0.00000 0.73559 0.00000 3.26198 - -11.09000 15.44810 50.56520 0.00000 0.60295 0.00000 3.24745 + -11.09000 15.44810 50.56520 0.00000 0.73559 0.00000 3.24745 -11.18100 15.93859 51.35634 0.00000 0.73559 0.00000 3.22214 -11.27200 16.42908 52.41133 0.00000 0.73559 0.00000 3.19016 -11.36300 16.91957 53.46647 0.00000 0.73559 0.00000 3.16004 -11.45400 17.41006 54.52174 0.00000 0.73559 0.00000 3.13162 -11.54500 17.90055 55.31326 0.00000 0.73559 0.00000 3.11134 - -11.54500 17.90055 55.84097 0.00000 1.71788 0.00000 3.09829 + -11.54500 17.90055 55.84097 0.00000 0.73559 0.00000 3.09829 -11.63600 18.39104 56.63257 0.00000 0.73559 0.00000 3.07936 -11.72700 18.88153 57.68810 0.00000 0.73559 0.00000 3.05527 -11.81800 19.37202 58.74369 0.00000 0.73559 0.00000 3.03240 @@ -48103,7 +48239,7 @@ Status character 6.10511 9.81000 6.10511 1.66212 402 100 P 6.15073 10.79100 6.15073 1.69227 402 100 P 6.18672 11.77200 6.18672 1.71488 402 100 P - 6.21147 11.77200 6.21147 1.76605 402 100 P + 6.21147 11.77200 6.21147 1.72996 402 100 P 6.24954 12.75300 6.24954 1.75257 402 100 P 6.30163 13.73400 6.30163 1.78272 402 100 P 6.35502 14.71500 6.35502 1.81287 402 100 P @@ -48115,7 +48251,7 @@ Status character 6.70386 20.79720 6.70386 1.99980 402 100 P 6.78526 22.17060 6.78526 2.04201 402 100 P 6.84669 23.54400 6.84669 2.07367 402 100 P - 21.84537 23.54400 21.84537 3.12198 402 100 P + 21.84537 23.54400 21.84537 1.66880 402 100 P 19.01090 27.35930 19.01090 0.72580 402 100 P 0.00000 31.17460 0.00000 0.00000 402 0 P 0.00000 34.98990 0.00000 0.00000 402 0 P @@ -48175,13 +48311,13 @@ Status character 48.91088 100.64270 48.91088 10.88762 402 100 P 49.60615 101.23130 49.60615 11.12551 402 100 P 50.12766 101.81990 50.12766 11.30392 402 100 P - 50.56520 101.81990 50.56520 9.38844 402 100 P + 50.56520 101.81990 50.56520 11.45359 402 100 P 51.35634 102.71261 51.35634 11.72419 402 100 P 52.41133 103.60532 52.41133 12.08499 402 100 P 53.46647 104.49803 53.46647 12.44579 402 100 P 54.52174 105.39074 54.52174 12.80658 402 100 P 55.31326 106.28345 55.31326 13.07718 402 100 P - 55.84097 106.28345 55.84097 30.96159 402 100 P + 55.84097 106.28345 55.84097 13.25758 402 100 P 56.63257 107.17616 56.63257 13.52818 402 100 P 57.68810 108.06887 57.68810 13.88897 402 100 P 58.74369 108.96158 58.74369 14.24977 402 100 P @@ -48569,7 +48705,7 @@ Lambda passive -6.74000 11.10450 39.76582 0.00000 0.72360 0.00000 3.58106 -6.87000 12.43389 42.60136 0.00000 0.72455 0.00000 3.42623 -7.00000 13.76322 44.72764 0.00000 0.72535 0.00000 3.33021 - -7.00000 13.76322 45.64163 0.00000 0.61651 0.00000 3.24587 + -7.00000 13.76322 45.64163 0.00000 0.61390 0.00000 3.24587 -7.14950 14.95606 48.04411 0.00000 0.61446 0.00000 3.21235 -7.29900 16.14883 51.41068 0.00000 0.61496 0.00000 3.18356 -7.44850 17.34153 54.87934 0.00000 0.61542 0.00000 3.16462 @@ -48581,7 +48717,7 @@ Lambda passive -8.19600 23.30431 73.01861 9.10452 0.61725 0.39068 3.13327 -8.34550 24.49678 77.72968 9.83886 0.61755 0.40164 3.17306 -8.49500 25.68924 80.96331 10.25668 0.61783 0.40395 3.18865 - -8.49500 25.68924 82.82530 10.48612 0.68505 0.40351 3.18714 + -8.49500 25.68924 82.82530 10.48612 0.61783 0.40351 3.18714 -8.64450 26.88169 85.63633 10.83028 0.61810 0.40289 3.18568 -8.79400 28.07413 89.39014 11.28918 0.61835 0.40212 3.18408 -8.94350 29.26658 93.14862 11.74809 0.61858 0.40142 3.18276 @@ -48611,7 +48747,7 @@ Lambda passive -10.55000 40.65134 104.62394 14.37457 0.73185 0.35361 2.57369 -10.67000 41.29667 105.95681 14.70290 0.73194 0.35603 2.56575 -10.79000 41.94202 106.95873 14.95005 0.73202 0.35782 2.56000 - -10.79000 41.94202 107.46044 15.07372 0.62117 0.35870 2.55720 + -10.79000 41.94202 107.46044 15.07372 0.73202 0.35870 2.55720 -10.85000 42.26470 107.96266 15.19740 0.73206 0.35958 2.55444 -10.91000 42.58739 108.63295 15.36229 0.73210 0.36072 2.55082 -10.97000 42.91008 109.30400 15.52719 0.73214 0.36185 2.54728 @@ -48641,13 +48777,13 @@ Lambda passive -12.92000 68.66611 359.19154 20.35488 0.52045 0.29643 5.23099 -13.06000 70.09142 363.87695 20.68697 0.52051 0.29514 5.19146 -13.20000 71.51677 367.81517 20.92259 0.52057 0.29402 5.16882 - -13.20000 71.51677 370.60407 21.12485 0.49192 0.29392 5.15637 + -13.20000 71.51677 370.60407 21.12485 0.52057 0.29392 5.15637 -13.34000 72.94213 374.98522 21.45395 0.52062 0.29412 5.14086 -13.48000 74.36752 381.07243 21.89176 0.52068 0.29437 5.12418 -13.62000 75.79293 387.37661 22.32812 0.52073 0.29459 5.11099 -13.76000 77.21836 393.78535 22.76376 0.52078 0.29480 5.09963 -13.90000 78.64381 398.58566 23.09009 0.52083 0.29494 5.09131 - -13.90000 78.64381 401.81942 23.30727 0.74441 0.29503 5.08631 + -13.90000 78.64381 401.81942 23.30727 0.52083 0.29503 5.08631 -14.04000 80.06929 406.71497 23.63203 0.52087 0.29514 5.07954 -14.18000 81.49478 413.30564 24.06458 0.52092 0.29529 5.07156 -14.32000 82.92030 419.95819 24.49665 0.52096 0.29542 5.06460 @@ -48783,7 +48919,7 @@ Status character 0.00000 58.68590 39.76582 8.03519 1 0 A 0.00000 59.46120 42.60136 9.00897 1 0 A 0.00000 60.23650 44.72764 9.74204 1 0 A - 0.00000 60.23650 45.64163 8.66899 1 0 A + 0.00000 60.23650 45.64163 8.63227 1 0 A 0.00000 61.70309 48.04411 9.18983 1 0 A 0.00000 63.16969 51.41068 9.93088 1 0 A 0.00000 64.63629 54.87934 10.67231 1 0 A @@ -48795,7 +48931,7 @@ Status character 9.10452 71.96926 73.01861 14.38466 1 0 A 9.83886 73.43586 77.72968 15.12802 1 0 A 10.25668 74.90245 80.96331 15.68744 1 0 A - 10.48612 74.90245 82.82530 17.80273 1 0 A + 10.48612 74.90245 82.82530 16.05580 1 0 A 10.83028 76.36905 85.63633 16.61546 1 0 A 11.28918 77.83564 89.39014 17.35950 1 0 A 11.74809 79.30224 93.14862 18.10375 1 0 A @@ -48825,7 +48961,7 @@ Status character 14.37457 95.06200 104.62394 29.75080 1 0 A 14.70290 96.23920 105.95681 30.22659 1 0 A 14.95005 97.41640 106.95873 30.58432 1 0 A - 15.07372 97.41640 107.46044 26.10340 1 0 A + 15.07372 97.41640 107.46044 30.76147 1 0 A 15.19740 98.00500 107.96266 30.94035 1 0 A 15.36229 98.59360 108.63295 31.17829 1 0 A 15.52719 99.18220 109.30400 31.41624 1 0 A @@ -48855,13 +48991,13 @@ Status character 20.35488 103.31170 359.19154 35.73730 1 0 A 20.68697 104.68510 363.87695 36.48333 1 0 A 20.92259 106.05850 367.81517 37.04388 1 0 A - 21.12485 106.05850 370.60407 35.35578 1 0 A + 21.12485 106.05850 370.60407 37.41488 1 0 A 21.45395 107.43190 374.98522 37.97544 1 0 A 21.89176 108.80530 381.07243 38.72151 1 0 A 22.32812 110.17870 387.37661 39.46758 1 0 A 22.76376 111.55210 393.78535 40.21366 1 0 A 23.09009 112.92550 398.58566 40.77415 1 0 A - 23.30727 112.92550 401.81942 58.80860 1 0 A + 23.30727 112.92550 401.81942 41.14536 1 0 A 23.63203 114.29890 406.71497 41.70584 1 0 A 24.06458 115.67230 413.30564 42.45194 1 0 A 24.49665 117.04570 419.95819 43.19804 1 0 A @@ -49189,8 +49325,8 @@ Is favorable (0=false, 1=true) 1115.91 : Max effective resistance right -9783.03 : Max moment left -12812.36 : Max moment right --5771.56 : Max mobilized moment left --6165.92 : Max mobilized moment right +-5771.55 : Max mobilized moment left +-6165.93 : Max mobilized moment right 153.34 : Vertical force left 172.00 : Vertical force right 59.0 : Max mobilized moment percentage left @@ -49224,204 +49360,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 281971.36439 - 0.00000 0.00000 280352.50493 - 0.00000 0.00000 278733.64548 - 0.00000 0.00000 277114.78603 - 0.00000 0.00000 275495.92657 - 0.00000 0.00000 273877.06712 - 0.00000 0.00000 273877.06712 - 0.00000 0.00000 272258.20767 - 0.00000 0.00000 270639.34821 - 0.00000 0.00000 269020.48876 - 0.00000 0.00000 267401.62931 - 0.00000 0.00000 265782.76985 - 0.00000 -0.00009 265782.76985 - 0.00000 -0.00058 265592.31580 - -0.00001 -0.00205 265401.86175 - -0.00004 -0.00450 265211.40769 - -0.00011 -0.00794 265020.95364 - -0.00021 -0.01235 264830.49959 - -0.00020 -0.01226 264830.49959 - -0.00803 -0.14175 262545.05094 - -0.03988 -0.41251 260259.60230 - -0.11269 -0.82453 257974.15367 - -0.24341 -1.37781 255688.70506 - -0.44901 -2.07236 253403.25651 - -0.44901 -2.07236 253403.25651 - -0.68977 -2.75906 251498.71609 - -1.00409 -3.54386 249594.17576 - -1.40181 -4.42676 247689.63557 - -1.89272 -5.40776 245785.09556 - -2.48663 -6.48686 243880.55579 - -2.48663 -6.48686 243880.55579 - -3.19336 -7.66406 241976.01632 - -4.02271 -8.93936 240071.47725 - -4.98450 -10.31276 238166.93870 - -6.08854 -11.78426 236262.40079 - -7.34462 -13.35386 234357.86365 - -7.34462 -13.35386 234357.86365 - -8.55395 -14.78218 232719.96242 - -9.88924 -16.28305 231082.06200 - -11.35672 -17.85648 229444.16250 - -12.96263 -19.50246 227806.26407 - -14.71322 -21.22099 226168.36686 - -14.71322 -21.22099 226168.36686 - -17.26743 -23.61089 223997.20287 - -20.10135 -26.12827 221826.04172 - -23.22952 -28.77314 219654.88389 - -26.66647 -31.54551 217483.72992 - -30.42674 -34.44536 215312.58031 - -30.42625 -34.45314 215312.58031 - -32.54058 -36.03059 214169.87193 - -34.75062 -37.64335 213027.16502 - -37.05849 -39.29143 211884.45970 - -39.46630 -40.97483 210741.75606 - -41.97617 -42.69354 209599.05420 - -41.97651 -42.69765 209599.05420 - -42.83620 -43.26833 209218.15400 - -43.70713 -43.82282 208837.25402 - -44.58900 -44.36110 208456.35425 - -45.48147 -44.88318 208075.45471 - -46.38423 -45.39109 207694.55540 - -46.38423 -45.39110 207694.55540 - -47.29695 -45.87875 207313.65633 - -48.21929 -46.35223 206932.75749 - -49.15093 -46.80950 206551.85889 - -50.09156 -47.25057 206170.96054 - -51.04086 -47.67747 205790.06245 - -51.04090 -47.67707 205790.06245 - -55.92158 -49.94125 203885.57591 - -61.02984 -52.22612 201981.09641 - -66.36710 -54.51982 200076.62462 - -71.93387 -56.81569 198172.16123 - -77.73022 -59.11110 196267.70689 - -77.73040 -59.10566 196267.70689 - -83.75561 -61.39813 194363.26231 - -90.00993 -63.68760 192458.82827 - -96.49300 -65.97313 190554.40561 - -103.20441 -68.25429 188649.99512 - -110.14372 -70.53137 186745.59763 - -110.14370 -70.53087 186745.59763 - -117.31036 -72.80177 184841.21399 - -124.70390 -75.06816 182936.84512 - -132.32382 -77.32928 181032.49198 - -140.16958 -79.58500 179128.15554 - -148.24066 -81.83593 177223.83676 - -148.24070 -81.83528 177223.83676 - -159.91750 -84.97486 174557.82198 - -172.03321 -88.10473 171891.84667 - -184.58630 -91.22336 169225.91394 - -197.57522 -94.33065 166560.02688 - -210.99842 -97.42795 163894.18860 - -210.99849 -97.42646 163894.18860 - -223.72471 -98.36784 161418.81381 - -236.62135 -100.39896 158943.48664 - -249.86767 -103.33560 156468.20991 - -263.47430 -105.94203 153992.98645 - -277.39829 -108.21827 151517.81907 - -277.39813 -108.21698 151517.81907 - -291.59641 -110.16302 149042.71068 - -306.02621 -111.77885 146567.66438 - -320.64460 -113.06449 144092.68326 - -335.40867 -114.01992 141617.77043 - -350.27548 -114.64516 139142.92901 - -350.27547 -114.64516 139142.92901 - -367.45448 -115.17431 136296.95373 - -384.71259 -115.70347 133451.08190 - -402.04982 -116.23262 130605.31842 - -419.46615 -116.76178 127759.66815 - -436.96159 -117.29093 124914.13599 - -436.96159 -117.29093 124914.13599 - -454.53614 -117.82009 122068.72683 - -472.18980 -118.34924 119223.44565 - -489.92256 -118.87840 116378.29744 - -507.73444 -119.40756 113533.28720 - -525.62542 -119.93671 110688.41991 - -525.62637 -119.93188 110688.41991 - -543.59574 -120.46104 107843.70058 - -561.64422 -120.99019 104999.13431 - -579.77181 -121.51935 102154.72620 - -597.97851 -122.04850 99310.48135 - -616.26431 -122.57766 96466.40486 - -616.26301 -122.56859 96466.40486 - -634.62657 -123.09775 93622.50186 - -653.06923 -123.62690 90778.77754 - -671.59101 -124.15606 87935.23713 - -690.19190 -124.68521 85091.88582 - -708.87189 -125.21437 82248.72885 - -708.87120 -125.18922 82248.72885 - -709.12158 -125.19630 82210.69465 - -709.37198 -125.20338 82172.66048 - -709.62240 -125.21046 82134.62634 - -709.87282 -125.21754 82096.59225 - -710.12327 -125.22462 82058.55819 - -710.12311 -125.19584 82058.55819 - -714.85572 -123.88709 81335.91785 - -719.53834 -122.56382 80613.29051 - -724.17036 -121.22396 79890.67626 - -728.75115 -119.86749 79168.07518 - -733.28011 -118.49648 78445.48736 - -733.28005 -118.49702 78445.48736 - -747.23298 -114.03093 76163.71911 - -760.64166 -109.41944 73882.08642 - -773.48699 -104.64159 71600.59163 - -785.74898 -99.69722 69319.23705 - -797.40849 -94.60705 67038.02502 - -797.40854 -94.60770 67038.02502 - -803.00646 -91.98446 65897.47316 - -808.44595 -89.32473 64756.95772 - -813.72460 -86.62330 63616.47893 - -818.83991 -83.88016 62476.03704 - -823.78949 -81.10052 61335.63229 - -823.78957 -81.09828 61335.63229 - -830.95301 -76.32794 59606.08982 - -837.67871 -71.47361 57876.63405 - -843.95829 -66.52326 56147.26562 - -849.78303 -61.47689 54417.98519 - -855.14454 -56.34649 52688.79341 - -855.14453 -56.34697 52688.79341 - -860.03375 -51.09652 50959.69090 - -864.44154 -45.76202 49230.67812 - -868.35953 -40.33147 47501.75547 - -871.77896 -34.80486 45772.92336 - -874.69146 -29.19419 44044.18220 - -874.69147 -29.19465 44044.18220 - -877.39341 -24.78029 42144.57196 - -879.63260 -19.91812 40245.07225 - -881.36000 -14.54475 38345.68330 - -882.53172 -8.87674 36446.40532 - -883.14014 -3.35250 34547.23852 - -883.14121 -3.33119 34547.23852 - -881.44688 27.17544 31888.59261 - -875.59394 56.35655 29230.16442 - -865.67228 85.42549 26571.95150 - -851.65599 114.89768 23913.95140 - -833.47664 144.89035 21256.16166 - -833.47653 144.88478 21256.16166 - -811.03682 175.77865 18598.57906 - -784.22619 207.36509 15941.19681 - -752.93613 239.77593 13284.00718 - -717.04916 273.03897 10627.00242 - -676.44970 307.06301 7970.17480 - -726.11126 632.03042 7970.17480 - -635.17559 667.16243 5313.51957 - -539.26909 703.08063 2657.02101 - -439.07117 722.75259 0.65487 - -338.44172 709.35270 -2655.60309 - -241.23302 679.22551 -5311.77710 - -258.85222 354.27386 -5311.77710 - -211.43685 322.97085 -7967.88800 - -168.45883 290.84401 -10623.94681 - -130.04449 257.77512 -13279.96299 - -96.32578 223.76369 -15935.94600 - -67.42916 188.92722 -18591.90530 - -67.42922 188.92643 -18591.90530 - -43.49236 152.91082 -21247.84949 - -24.65272 116.06955 -23903.78307 - -11.03693 78.28445 -26559.70936 - -2.77713 39.55533 -29215.63173 - 0.00001 0.00005 -31871.55350 + 0.00000 0.00000 281984.49050 + 0.00000 0.00000 280365.55579 + 0.00000 0.00000 278746.62108 + 0.00000 0.00000 277127.68636 + 0.00000 0.00000 275508.75165 + 0.00000 0.00000 273889.81694 + 0.00000 0.00000 273889.81694 + 0.00000 0.00000 272270.88222 + 0.00000 0.00000 270651.94751 + 0.00000 0.00000 269033.01280 + 0.00000 0.00000 267414.07809 + 0.00000 0.00000 265795.14337 + 0.00000 -0.00002 265795.14337 + 0.00000 -0.00051 265604.68047 + -0.00001 -0.00198 265414.21756 + -0.00004 -0.00443 265223.75465 + -0.00010 -0.00787 265033.29174 + -0.00020 -0.01228 264842.82884 + -0.00020 -0.01226 264842.82884 + -0.00803 -0.14175 262557.27394 + -0.03988 -0.41251 260271.71905 + -0.11269 -0.82453 257986.16417 + -0.24341 -1.37781 255700.60932 + -0.44901 -2.07236 253415.05451 + -0.44901 -2.07236 253415.05451 + -0.68977 -2.75906 251510.42555 + -1.00409 -3.54386 249605.79668 + -1.40181 -4.42676 247701.16795 + -1.89272 -5.40776 245796.53940 + -2.48663 -6.48686 243891.91109 + -2.48663 -6.48686 243891.91109 + -3.19336 -7.66406 241987.28308 + -4.02271 -8.93936 240082.65547 + -4.98450 -10.31276 238178.02837 + -6.08854 -11.78426 236273.40193 + -7.34462 -13.35386 234368.77625 + -7.34462 -13.35386 234368.77625 + -8.55395 -14.78218 232730.79888 + -9.88924 -16.28305 231092.82230 + -11.35672 -17.85648 229454.84666 + -12.96263 -19.50246 227816.87209 + -14.71322 -21.22099 226178.89873 + -14.71322 -21.22099 226178.89873 + -17.26743 -23.61089 224007.63381 + -20.10135 -26.12827 221836.37172 + -23.22952 -28.77314 219665.11296 + -26.66647 -31.54551 217493.85805 + -30.42674 -34.44536 215322.60750 + -30.42624 -34.45315 215322.60750 + -32.54058 -36.03060 214179.84599 + -34.75062 -37.64337 213037.08596 + -37.05849 -39.29145 211894.32751 + -39.46630 -40.97484 210751.57075 + -41.97618 -42.69355 209608.81577 + -41.97651 -42.69769 209608.81577 + -42.83620 -43.26837 209227.89786 + -43.70714 -43.82286 208846.98017 + -44.58901 -44.36114 208466.06270 + -45.48148 -44.88323 208085.14545 + -46.38424 -45.39113 207704.22843 + -46.38424 -45.39112 207704.22843 + -47.29696 -45.87877 207323.31165 + -48.21930 -46.35225 206942.39510 + -49.15094 -46.80952 206561.47880 + -50.09157 -47.25059 206180.56274 + -51.04087 -47.67749 205799.64694 + -51.04090 -47.67709 205799.64694 + -55.92159 -49.94127 203895.07185 + -61.02985 -52.22614 201990.50381 + -66.36711 -54.51984 200085.94349 + -71.93389 -56.81571 198181.39155 + -77.73024 -59.11112 196276.84867 + -77.73042 -59.10567 196276.84867 + -83.75563 -61.39814 194372.31555 + -90.00995 -63.68761 192467.79298 + -96.49302 -65.97314 190563.28177 + -103.20443 -68.25430 188658.78274 + -110.14374 -70.53138 186754.29672 + -110.14372 -70.53088 186754.29672 + -117.31038 -72.80178 184849.82453 + -124.70393 -75.06817 182945.36712 + -132.32384 -77.32928 181040.92544 + -140.16960 -79.58501 179136.50046 + -148.24068 -81.83594 177232.09314 + -148.24073 -81.83528 177232.09314 + -159.91753 -84.97487 174565.95440 + -172.03324 -88.10474 171899.85513 + -184.58633 -91.22337 169233.79845 + -197.57525 -94.33066 166567.78743 + -210.99845 -97.42795 163901.82520 + -210.99853 -97.42646 163901.82520 + -223.72474 -98.36784 161426.33530 + -236.62139 -100.39897 158950.89303 + -249.86771 -103.33560 156475.50120 + -263.47433 -105.94204 154000.16263 + -277.39833 -108.21827 151524.88015 + -277.39817 -108.21698 151524.88015 + -291.59645 -110.16301 149049.65666 + -306.02624 -111.77885 146574.49525 + -320.64464 -113.06448 144099.39903 + -335.40870 -114.01992 141624.37110 + -350.27551 -114.64515 139149.41458 + -350.27551 -114.64515 139149.41458 + -367.45451 -115.17431 136303.30693 + -384.71262 -115.70346 133457.30273 + -402.04984 -116.23262 130611.40688 + -419.46618 -116.76177 127765.62425 + -436.96161 -117.29093 124919.95972 + -436.96161 -117.29093 124919.95972 + -454.53616 -117.82008 122074.41819 + -472.18982 -118.34924 119229.00464 + -489.92258 -118.87839 116383.72407 + -507.73446 -119.40755 113538.58145 + -525.62544 -119.93670 110693.58179 + -525.62639 -119.93187 110693.58179 + -543.59576 -120.46103 107848.73010 + -561.64424 -120.99018 105004.03146 + -579.77182 -121.51934 102159.49098 + -597.97852 -122.04849 99315.11376 + -616.26432 -122.57765 96470.90491 + -616.26302 -122.56857 96470.90491 + -634.62658 -123.09773 93626.86954 + -653.06924 -123.62688 90783.01285 + -671.59101 -124.15604 87939.34007 + -690.19190 -124.68519 85095.85640 + -708.87189 -125.21435 82252.56705 + -708.87125 -125.17777 82252.56705 + -709.12161 -125.18485 82214.53108 + -709.37199 -125.19193 82176.49514 + -709.62238 -125.19900 82138.45924 + -709.87278 -125.20608 82100.42337 + -710.12320 -125.21316 82062.38754 + -710.12310 -125.19578 82062.38754 + -714.85571 -123.88703 81339.71355 + -719.53833 -122.56376 80617.05257 + -724.17035 -121.22390 79894.40467 + -728.75114 -119.86743 79171.76995 + -733.28009 -118.49642 78449.14848 + -733.28004 -118.49694 78449.14848 + -747.23295 -114.03086 76167.27399 + -760.64163 -109.41937 73885.53505 + -773.48695 -104.64152 71603.93401 + -785.74893 -99.69715 69322.47318 + -797.40843 -94.60698 67041.15490 + -797.40848 -94.60761 67041.15490 + -803.00640 -91.98437 65900.54992 + -808.44588 -89.32465 64759.98135 + -813.72452 -86.62322 63619.44944 + -818.83983 -83.88008 62478.95442 + -823.78940 -81.10043 61338.49655 + -823.78938 -81.10078 61338.49655 + -830.95305 -76.33044 59608.87351 + -837.67898 -71.47611 57879.33716 + -843.95879 -66.52576 56149.88816 + -849.78375 -61.47939 54420.52716 + -855.14549 -56.34899 52691.25481 + -855.14549 -56.34954 52691.25481 + -860.03495 -51.09908 50962.07173 + -864.44297 -45.76459 49232.97838 + -868.36119 -40.33404 47503.97516 + -871.78085 -34.80742 45775.06248 + -874.69359 -29.19675 44046.24074 + -874.69359 -29.19721 44046.24074 + -877.39580 -24.78285 42146.54196 + -879.63524 -19.92068 40246.95372 + -881.36289 -14.54731 38347.47623 + -882.53488 -8.87930 36448.10971 + -883.14355 -3.35507 34548.85437 + -883.14464 -3.33333 34548.85437 + -881.45061 27.17329 31890.08451 + -875.59798 56.35440 29231.53236 + -865.67661 85.42334 26573.19549 + -851.66062 114.89553 23915.07144 + -833.48158 144.88820 21257.15776 + -833.48146 144.88255 21257.15776 + -811.04206 175.77642 18599.45121 + -784.23174 207.36286 15941.94501 + -752.94199 239.77370 13284.63144 + -717.05534 273.03674 10627.50274 + -676.45619 307.06078 7970.55117 + -726.12006 632.04311 7970.55117 + -635.18261 667.17511 5313.77201 + -539.27434 703.09331 2657.14951 + -439.07458 722.76657 0.65943 + -338.44305 709.36796 -2655.72246 + -241.23221 679.24078 -5312.02040 + -258.85224 354.27389 -5312.02040 + -211.43687 322.97088 -7968.25525 + -168.45884 290.84404 -10624.43799 + -130.04450 257.77516 -13280.57810 + -96.32578 223.76373 -15936.68505 + -67.42916 188.92725 -18592.76829 + -67.42922 188.92643 -18592.76829 + -43.49236 152.91083 -21248.83641 + -24.65272 116.06955 -23904.89392 + -11.03693 78.28445 -26560.94415 + -2.77713 39.55533 -29216.99045 + 0.00001 0.00005 -31873.03616 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -49749,7 +49885,7 @@ Lambda passive -4.30000 2.15000 6.10511 0.00000 0.77308 0.00000 2.83959 -4.40000 2.18900 6.15073 0.00000 0.77308 0.00000 2.80984 -4.50000 2.22800 6.18672 0.00000 0.77308 0.00000 2.78901 - -4.50000 2.22800 6.21147 0.00000 0.78921 0.00000 2.77577 + -4.50000 2.22800 6.21147 0.00000 0.77308 0.00000 2.77577 -4.60000 2.26700 6.24954 0.00000 0.77308 0.00000 2.75675 -4.70000 2.30600 6.30163 0.00000 0.77308 0.00000 2.73271 -4.80000 2.34500 6.35502 0.00000 0.77308 0.00000 2.71003 @@ -49761,7 +49897,7 @@ Lambda passive -5.42000 2.58680 6.70386 0.00000 0.77308 0.00000 2.59157 -5.56000 2.64140 6.78526 0.00000 0.77308 0.00000 2.56881 -5.70000 2.69600 6.84669 0.00000 0.77308 0.00000 2.55250 - -5.70000 2.69600 21.84537 0.00000 1.37612 0.00000 9.62913 + -5.70000 2.69600 21.84537 0.00000 0.73559 0.00000 9.62913 -5.83000 0.98670 19.01090 0.00000 0.73559 0.00000 19.26715 -5.96000 0.00000 15.25497 0.00000 0.00000 0.00000 0.00000 -6.09000 0.00000 13.77262 0.00000 0.00000 0.00000 0.00000 @@ -49772,8 +49908,8 @@ Lambda passive -6.61000 0.00000 16.82177 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.82018 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81891 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 16.81812 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -49821,13 +49957,13 @@ Lambda passive -10.97000 14.80130 48.91088 0.00000 0.73559 0.00000 3.30450 -11.03000 15.12470 49.60615 0.00000 0.73559 0.00000 3.27981 -11.09000 15.44810 50.12766 0.00000 0.73559 0.00000 3.26198 - -11.09000 15.44810 50.56520 0.00000 0.60295 0.00000 3.24745 + -11.09000 15.44810 50.56520 0.00000 0.73559 0.00000 3.24745 -11.18100 15.93859 51.35634 0.00000 0.73559 0.00000 3.22214 -11.27200 16.42908 52.41133 0.00000 0.73559 0.00000 3.19016 -11.36300 16.91957 53.46647 0.00000 0.73559 0.00000 3.16004 -11.45400 17.41006 54.52174 0.00000 0.73559 0.00000 3.13162 -11.54500 17.90055 55.31326 0.00000 0.73559 0.00000 3.11134 - -11.54500 17.90055 55.84097 0.00000 1.71788 0.00000 3.09829 + -11.54500 17.90055 55.84097 0.00000 0.73559 0.00000 3.09829 -11.63600 18.39104 56.63257 0.00000 0.73559 0.00000 3.07936 -11.72700 18.88153 57.68810 0.00000 0.73559 0.00000 3.05527 -11.81800 19.37202 58.74369 0.00000 0.73559 0.00000 3.03240 @@ -49963,7 +50099,7 @@ Status character 6.10511 9.81000 6.10511 1.66212 402 100 P 6.15073 10.79100 6.15073 1.69227 402 100 P 6.18672 11.77200 6.18672 1.71488 402 100 P - 6.21147 11.77200 6.21147 1.76605 402 100 P + 6.21147 11.77200 6.21147 1.72996 402 100 P 6.24954 12.75300 6.24954 1.75257 402 100 P 6.30163 13.73400 6.30163 1.78272 402 100 P 6.35502 14.71500 6.35502 1.81287 402 100 P @@ -49975,7 +50111,7 @@ Status character 6.70386 20.79720 6.70386 1.99980 402 100 P 6.78526 22.17060 6.78526 2.04201 402 100 P 6.84669 23.54400 6.84669 2.07367 402 100 P - 21.84537 23.54400 21.84537 3.12198 402 100 P + 21.84537 23.54400 21.84537 1.66880 402 100 P 19.01090 27.35930 19.01090 0.72580 402 100 P 0.00000 31.17460 0.00000 0.00000 402 0 P 0.00000 34.98990 0.00000 0.00000 402 0 P @@ -50035,13 +50171,13 @@ Status character 48.91088 100.64270 48.91088 10.88762 402 100 P 49.60615 101.23130 49.60615 11.12551 402 100 P 50.12766 101.81990 50.12766 11.30392 402 100 P - 50.56520 101.81990 50.56520 9.38844 402 100 P + 50.56520 101.81990 50.56520 11.45359 402 100 P 51.35634 102.71261 51.35634 11.72419 402 100 P 52.41133 103.60532 52.41133 12.08499 402 100 P 53.46647 104.49803 53.46647 12.44579 402 100 P 54.52174 105.39074 54.52174 12.80658 402 100 P 55.31326 106.28345 55.31326 13.07718 402 100 P - 55.84097 106.28345 55.84097 30.96159 402 100 P + 55.84097 106.28345 55.84097 13.25758 402 100 P 56.63257 107.17616 56.63257 13.52818 402 100 P 57.68810 108.06887 57.68810 13.88897 402 100 P 58.74369 108.96158 58.74369 14.24977 402 100 P @@ -50068,7 +50204,7 @@ Status character 259.16165 114.38600 259.16165 26.60929 402 100 P 264.27183 115.75940 264.27183 27.16840 402 100 P 271.13898 117.13280 271.13898 27.91389 402 100 P - 35.82379 118.50620 278.05783 28.65938 110 13 1 + 35.83302 118.50620 278.05783 28.65938 110 13 1 16.78001 119.87960 285.01749 29.40487 1 0 A 17.10005 121.25300 290.25818 29.96399 1 0 A 17.31339 121.25300 293.76147 30.33673 1 0 A @@ -50103,7 +50239,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 98.530 'Hydrobiaklei' -12.00 26.134 'Basisveen' - -12.50 450.855 'Eerste zandlaag' + -12.50 450.856 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -50355,7 +50491,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -50367,7 +50503,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -50569,7 +50705,7 @@ Status character 8.97758 103.31170 155.04644 15.74469 1 0 A 9.40577 104.68510 161.14420 16.49018 1 0 A 9.72659 106.05850 166.01892 17.04930 1 0 A - 9.94033 106.05850 169.36158 17.45837 1 0 A + 9.94033 106.05850 169.36158 17.42204 1 0 A 10.26078 107.43190 174.46398 17.98116 1 0 A 10.68782 108.80530 181.36703 18.72665 1 0 A 11.11464 110.17870 188.34940 19.47214 1 0 A @@ -50578,10 +50714,10 @@ Status character 12.07442 112.92550 204.22293 21.14949 1 0 A 12.39421 114.29890 209.54580 21.70860 1 0 A 12.82053 115.67230 216.65723 22.45409 1 0 A - 16.03518 117.04570 223.78193 23.19958 110 0 1 + 16.02595 117.04570 223.78193 23.19958 110 0 1 230.91669 118.41910 230.91669 23.94507 402 100 P 236.27276 119.79250 236.27276 24.50419 402 100 P - 239.84569 119.79250 239.84569 26.61686 402 100 P + 239.84569 119.79250 239.84569 24.87693 402 100 P 245.20785 121.16590 245.20785 25.43605 402 100 P 252.36133 122.53930 252.36133 26.18154 402 100 P 259.51871 123.91270 259.51871 26.92703 402 100 P @@ -50612,7 +50748,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 1.022 'Basisveen' - -12.50 452.645 'Eerste zandlaag' + -12.50 452.643 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -50874,8 +51010,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 400.68645 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 466.54001 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 400.68726 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 466.52691 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -50918,8 +51054,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 16.31 : Percentage mobilized resistance left 16.22 : Percentage mobilized resistance right - 79.92 : Effective left - 133.40 : Effective right + 79.90 : Effective left + 133.39 : Effective right 548.36 : Water pressure left 1120.54 : Water pressure right 490.03 : Max effective resistance left @@ -50928,7 +51064,7 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 13.48 : Vertical force left + 13.47 : Vertical force left 40.23 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right @@ -50939,9 +51075,9 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] -40.23 : Active force -13.48 : Passive force +13.47 : Passive force -40.23 : Plugged active force -13.48 : Plugged passive force +13.47 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance @@ -50961,210 +51097,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.94700 - 0.00000 0.00000 15.32647 - 0.00000 0.00000 14.70595 - 0.00000 0.00000 14.08543 - 0.00000 0.00000 13.46491 - 0.00000 0.00000 12.84439 - 0.00000 0.00000 12.84439 - 0.00000 0.00000 12.22387 - 0.00000 0.00000 11.60334 - 0.00000 0.00000 10.98282 - 0.00000 0.00000 10.36230 - 0.00000 0.00000 9.74178 - 0.00000 0.00000 9.74178 - 0.00000 0.00049 9.66878 - 0.00001 0.00196 9.59577 - 0.00004 0.00441 9.52277 - 0.00010 0.00785 9.44977 - 0.00020 0.01226 9.37677 - 0.00020 0.01226 9.37677 - 0.00803 0.14175 8.50074 - 0.03988 0.41251 7.62472 - 0.11269 0.82453 6.74868 - 0.24341 1.37781 5.87261 - 0.44901 2.07236 4.99649 - 0.44901 2.07236 4.99649 - 0.68977 2.75906 4.26635 - 1.00409 3.54386 3.53612 - 1.40181 4.42676 2.80576 - 1.89272 5.40776 2.07520 - 2.48663 6.48686 1.34441 - 2.48663 6.48686 1.34441 - 3.19336 7.66406 0.61333 - 4.02271 8.93936 -0.11816 - 4.98450 10.31276 -0.85017 - 6.08854 11.78426 -1.58282 - 7.34462 13.35386 -2.31624 - 7.34462 13.35386 -2.31624 - 8.55395 14.78218 -2.94769 - 9.88924 16.28305 -3.57995 - 11.35672 17.85648 -4.21313 - 12.96263 19.50246 -4.84739 - 14.71322 21.22099 -5.48285 - 14.71322 -137.96545 -5.48285 - -0.87983 -135.57556 -6.32681 - -16.19316 -133.05818 -7.17062 - -31.21225 -130.41330 -8.01183 - -45.92255 -127.64094 -8.84797 - -60.30954 -124.74108 -9.67659 - -60.30862 -124.75908 -9.67659 - -70.20532 -122.64797 -10.25229 - -79.93062 -120.47408 -10.82233 - -89.47950 -118.23740 -11.38593 - -98.84693 -115.93793 -11.94234 - -108.02789 -113.57568 -12.49077 - -108.02815 -113.57759 -12.49077 - -110.29371 -112.97722 -12.62655 - -112.54721 -112.37293 -12.76177 - -114.78860 -111.76471 -12.89642 - -117.01778 -111.15256 -13.03049 - -119.23467 -110.53649 -13.16397 - -119.23471 -110.53604 -13.16397 - -130.13217 -107.39684 -13.82213 - -140.71081 -104.15954 -14.46389 - -150.96081 -100.82414 -15.08795 - -160.87237 -97.39064 -15.69304 - -170.43567 -93.85904 -16.27787 - -170.43582 -93.85388 -16.27787 - -179.64054 -90.22418 -16.84116 - -188.47739 -86.49638 -17.38182 - -196.93655 -82.67048 -17.89878 - -205.00821 -78.74648 -18.39097 - -212.68257 -74.72438 -18.85734 - -212.68256 -74.72395 -18.85734 - -219.94976 -70.60375 -19.29685 - -226.80004 -66.38545 -19.70864 - -233.22358 -62.06905 -20.09191 - -239.21058 -57.65455 -20.44586 - -244.75122 -53.14195 -20.76966 - -244.75127 -53.14126 -20.76966 - -251.73951 -46.65881 -21.17084 - -257.80676 -39.98409 -21.50984 - -262.92609 -33.11709 -21.78540 - -267.07057 -26.05781 -21.99626 - -270.21330 -18.80626 -22.14115 - -270.21337 -18.80472 -22.14115 - -272.21090 -11.89897 -22.21571 - -273.29992 -4.82744 -22.23230 - -273.45885 2.40989 -22.19088 - -272.66616 9.81301 -22.09143 - -270.90029 17.38191 -21.93391 - -270.90014 17.38163 -21.93391 - -268.13957 25.11632 -21.71845 - -264.36271 33.01681 -21.44589 - -259.54801 41.08308 -21.11725 - -253.67392 49.31514 -20.73355 - -246.71889 57.71299 -20.29583 - -246.71890 57.71297 -20.29583 - -237.35632 67.57546 -19.72719 - -226.50291 77.65720 -19.09167 - -214.12589 87.95819 -18.39278 - -200.19248 98.47845 -17.63399 - -184.66991 109.21796 -16.81881 - -184.66991 109.21796 -16.81881 - -167.52539 120.17672 -15.95106 - -148.72614 131.35474 -15.03610 - -128.23939 142.75202 -14.07970 - -106.03236 154.36855 -13.08764 - -82.07227 166.20434 -12.06568 - -82.07341 166.21017 -12.06568 - -56.32661 178.26522 -11.01999 - -28.76119 190.53952 -9.95839 - 0.65563 203.03307 -8.88917 - 31.95663 215.74589 -7.82063 - 65.17458 228.67795 -6.76103 - 65.17623 228.68809 -6.76103 - 100.34543 241.83941 -5.71911 - 137.49714 255.20999 -4.70539 - 176.66414 268.79983 -3.73090 - 217.87921 282.60892 -2.80668 - 261.17514 296.63727 -1.94376 - 261.17584 296.64933 -1.94376 - 261.76933 296.83849 -1.93268 - 262.36319 297.02768 -1.92162 - 262.95744 297.21692 -1.91056 - 263.55206 297.40619 -1.89953 - 264.14706 297.59550 -1.88850 - 264.14706 297.59548 -1.88850 - 275.52413 301.19989 -1.68158 - 287.03843 304.81847 -1.47967 - 298.69051 308.45121 -1.28299 - 310.48091 312.09812 -1.09174 - 322.41015 315.75919 -0.90615 - 322.41015 -150.78085 -0.90615 - 319.41385 -148.84828 -0.81079 - 316.45624 -146.91179 -0.71705 - 313.53741 -144.97137 -0.62491 - 310.65741 -143.02703 -0.53434 - 307.81635 -141.07876 -0.44534 - 307.81629 -141.07622 -0.44534 - 299.47985 -137.57130 -0.18758 - 291.26211 -136.34769 0.05659 - 283.11884 -135.08881 0.28755 - 275.05216 -133.79464 0.50567 - 267.06418 -132.46519 0.71131 - 267.06419 -132.46525 0.71131 - 261.78370 -131.55740 0.84166 - 256.53978 -130.63582 0.96673 - 251.33304 -129.69857 1.08663 - 246.16410 -128.74563 1.20146 - 241.03357 -127.77897 1.31133 - 241.03358 -127.77912 1.31133 - 233.42235 -125.92997 1.46707 - 225.92178 -124.09090 1.61221 - 218.53121 -122.26335 1.74711 - 211.24995 -120.44733 1.87209 - 204.07733 -118.64138 1.98749 - 204.07784 -118.65778 1.98749 - 193.39755 -115.97875 2.14499 - 182.98063 -112.93962 2.28231 - 172.84686 -109.75790 2.40051 - 163.00863 -106.44632 2.50065 - 153.47708 -103.02085 2.58379 - 153.47696 -103.01475 2.58379 - 144.26287 -99.47668 2.65097 - 135.37504 -95.84511 2.70309 - 126.82166 -92.12790 2.74106 - 118.61007 -88.33453 2.76577 - 110.74602 -84.49999 2.77810 - 110.74611 -84.49857 2.77810 - 102.45628 -81.33959 2.77841 - 94.47178 -78.37313 2.76582 - 86.77708 -75.54401 2.74129 - 79.35748 -72.87975 2.70580 - 72.19203 -70.48831 2.66031 - 72.19092 -70.47504 2.66031 - 62.69939 -65.13311 2.58169 - 53.94921 -59.88628 2.48761 - 45.92608 -54.74996 2.38004 - 38.61322 -49.74222 2.26096 - 31.99129 -44.88374 2.13237 - 31.99159 -44.87802 2.13237 - 26.04089 -40.16170 1.99609 - 20.73820 -35.61938 1.85339 - 16.05934 -31.25105 1.70542 - 11.97948 -27.06313 1.55336 - 8.47276 -23.06594 1.39835 - 8.47161 -23.04352 1.39835 - 5.51526 -19.22341 1.24142 - 3.07991 -15.59911 1.08313 - 1.13858 -12.16626 0.92397 - -0.33560 -8.92542 0.76443 - -1.37059 -5.89994 0.60498 - -1.36944 -5.88297 0.60498 - -1.98924 -3.09037 0.44598 - -2.26236 -0.88944 0.28747 - -2.26013 0.84349 0.12946 - -2.04794 2.11022 -0.02805 - -1.69094 2.91253 -0.18503 - -1.69096 2.91199 -0.18503 - -1.25413 3.25147 -0.34158 - -0.80209 3.12932 -0.49782 - -0.39942 2.54638 -0.65385 - -0.11059 1.50321 -0.80976 - 0.00001 0.00005 -0.96564 + 0.00000 0.00000 15.94663 + 0.00000 0.00000 15.32612 + 0.00000 0.00000 14.70561 + 0.00000 0.00000 14.08510 + 0.00000 0.00000 13.46458 + 0.00000 0.00000 12.84407 + 0.00000 0.00000 12.84407 + 0.00000 0.00000 12.22356 + 0.00000 0.00000 11.60305 + 0.00000 0.00000 10.98254 + 0.00000 0.00000 10.36203 + 0.00000 0.00000 9.74152 + 0.00000 0.00000 9.74152 + 0.00000 0.00049 9.66851 + 0.00001 0.00196 9.59551 + 0.00004 0.00441 9.52251 + 0.00010 0.00785 9.44951 + 0.00020 0.01226 9.37651 + 0.00020 0.01226 9.37651 + 0.00803 0.14175 8.50050 + 0.03988 0.41251 7.62449 + 0.11269 0.82453 6.74846 + 0.24341 1.37781 5.87241 + 0.44901 2.07236 4.99631 + 0.44901 2.07236 4.99631 + 0.68977 2.75906 4.26618 + 1.00409 3.54386 3.53596 + 1.40181 4.42676 2.80561 + 1.89272 5.40776 2.07507 + 2.48663 6.48686 1.34429 + 2.48663 6.48686 1.34429 + 3.19336 7.66406 0.61322 + 4.02271 8.93936 -0.11826 + 4.98450 10.31276 -0.85025 + 6.08854 11.78426 -1.58289 + 7.34462 13.35386 -2.31630 + 7.34462 13.35386 -2.31630 + 8.55395 14.78218 -2.94775 + 9.88924 16.28305 -3.57999 + 11.35672 17.85648 -4.21316 + 12.96263 19.50246 -4.84741 + 14.71322 21.22099 -5.48286 + 14.71322 -137.96627 -5.48286 + -0.87992 -135.57637 -6.32681 + -16.19335 -133.05899 -7.17060 + -31.21253 -130.41412 -8.01180 + -45.92292 -127.64175 -8.84792 + -60.31000 -124.74189 -9.67653 + -60.30908 -124.75991 -9.67653 + -70.20585 -122.64880 -10.25222 + -79.93121 -120.47490 -10.82225 + -89.48016 -118.23822 -11.38584 + -98.84766 -115.93876 -11.94224 + -108.02868 -113.57651 -12.49066 + -108.02894 -113.57842 -12.49066 + -110.29452 -112.97805 -12.62644 + -112.54804 -112.37375 -12.76165 + -114.78944 -111.76553 -12.89630 + -117.01863 -111.15339 -13.03037 + -119.23555 -110.53732 -13.16385 + -119.23559 -110.53687 -13.16385 + -130.13313 -107.39767 -13.82199 + -140.71185 -104.16037 -14.46374 + -150.96193 -100.82497 -15.08779 + -160.87357 -97.39147 -15.69287 + -170.43696 -93.85987 -16.27768 + -170.43711 -93.85470 -16.27768 + -179.64191 -90.22500 -16.84096 + -188.47884 -86.49720 -17.38161 + -196.93808 -82.67130 -17.89855 + -205.00983 -78.74730 -18.39073 + -212.68427 -74.72520 -18.85708 + -212.68426 -74.72477 -18.85708 + -219.95155 -70.60457 -19.29658 + -226.80191 -66.38627 -19.70836 + -233.22553 -62.06987 -20.09161 + -239.21261 -57.65537 -20.44554 + -244.75334 -53.14277 -20.76933 + -244.75338 -53.14208 -20.76933 + -251.74174 -46.65963 -21.17049 + -257.80910 -39.98491 -21.50946 + -262.92854 -33.11791 -21.78500 + -267.07315 -26.05863 -21.99583 + -270.21599 -18.80708 -22.14071 + -270.21606 -18.80554 -22.14071 + -272.21370 -11.89979 -22.21524 + -273.30282 -4.82826 -22.23180 + -273.46186 2.40907 -22.19036 + -272.66928 9.81219 -22.09089 + -270.90351 17.38109 -21.93334 + -270.90336 17.38081 -21.93334 + -268.14289 25.11551 -21.71786 + -264.36614 33.01599 -21.44527 + -259.55155 41.08226 -21.11660 + -253.67757 49.31433 -20.73287 + -246.72264 57.71218 -20.29512 + -246.72265 57.71216 -20.29512 + -237.36019 67.57464 -19.72644 + -226.50690 77.65638 -19.09089 + -214.13001 87.95738 -18.39196 + -200.19672 98.47763 -17.63314 + -184.67427 109.21714 -16.81792 + -184.67427 109.21714 -16.81792 + -167.52987 120.17590 -15.95013 + -148.73075 131.35393 -15.03512 + -128.24412 142.75120 -14.07868 + -106.03721 154.36773 -13.08657 + -82.07724 166.20352 -12.06457 + -82.07838 166.20935 -12.06457 + -56.33170 178.26439 -11.01883 + -28.76640 190.53869 -9.95718 + 0.65029 203.03225 -8.88792 + 31.95117 215.74506 -7.81932 + 65.16899 228.67713 -6.75967 + 65.17050 228.68955 -6.75967 + 100.33992 241.84087 -5.71769 + 137.49185 255.21145 -4.70391 + 176.65907 268.80129 -3.72937 + 217.87436 282.61038 -2.80509 + 261.17049 296.63872 -1.94211 + 261.17121 296.65086 -1.94211 + 261.76470 296.84002 -1.93103 + 262.35857 297.02922 -1.91996 + 262.95282 297.21845 -1.90891 + 263.54745 297.40772 -1.89787 + 264.14245 297.59704 -1.88685 + 264.14245 297.59702 -1.88685 + 275.51958 301.20143 -1.67991 + 287.03394 304.82000 -1.47799 + 298.68608 308.45274 -1.28129 + 310.47653 312.09965 -1.09003 + 322.40583 315.76072 -0.90441 + 322.40583 -150.76622 -0.90441 + 319.40983 -148.83365 -0.80905 + 316.45251 -146.89715 -0.71530 + 313.53397 -144.95673 -0.62315 + 310.65427 -143.01239 -0.53257 + 307.81350 -141.06413 -0.44356 + 307.81350 -141.06423 -0.44356 + 299.47778 -137.55930 -0.18578 + 291.26076 -136.33570 0.05842 + 283.11821 -135.07682 0.28940 + 275.05225 -133.78265 0.50755 + 267.06499 -132.45320 0.71322 + 267.06499 -132.45334 0.71322 + 261.78497 -131.54548 0.84358 + 256.54153 -130.62391 0.96867 + 251.33527 -129.68665 1.08859 + 246.16681 -128.73371 1.20344 + 241.03676 -127.76706 1.31332 + 241.03676 -127.76720 1.31332 + 233.42625 -125.91805 1.46908 + 225.92639 -124.07898 1.61425 + 218.53654 -122.25143 1.74918 + 211.25599 -120.43541 1.87418 + 204.08409 -118.62947 1.98961 + 204.08460 -118.64589 1.98961 + 193.40535 -115.96820 2.14714 + 182.98927 -112.93188 2.28449 + 172.85608 -109.75279 2.40273 + 163.01820 -106.44365 2.50291 + 153.48680 -103.02041 2.58608 + 153.48676 -103.01665 2.58608 + 144.27250 -99.47893 2.65329 + 135.38439 -95.84913 2.70544 + 126.83057 -92.13342 2.74344 + 118.61842 -88.34130 2.76818 + 110.75374 -84.50679 2.78054 + 110.75382 -84.50544 2.78054 + 102.46333 -81.34582 2.78088 + 94.47824 -78.37871 2.76832 + 86.78301 -75.54894 2.74382 + 79.36295 -72.88419 2.70835 + 72.19707 -70.49251 2.66289 + 72.19594 -70.47885 2.66289 + 62.70416 -65.13284 2.58431 + 53.95431 -59.88187 2.49026 + 45.93208 -54.74135 2.38272 + 38.62073 -49.72934 2.26368 + 32.00091 -44.86654 2.13512 + 32.00121 -44.86081 2.13512 + 26.05298 -40.14265 1.99887 + 20.75327 -35.59590 1.85619 + 16.07801 -31.22308 1.70825 + 12.00239 -27.03065 1.55620 + 8.50053 -23.02890 1.40120 + 8.50058 -23.02718 1.40120 + 5.54685 -19.20249 1.24427 + 3.11475 -15.57359 1.08598 + 1.17731 -12.13616 0.92681 + -0.29234 -8.89075 0.76725 + -1.32205 -5.85846 0.60776 + -1.32103 -5.84207 0.60776 + -1.94585 -3.16230 0.44872 + -2.22841 -0.95253 0.29015 + -2.23440 0.78906 0.13208 + -2.02924 2.06426 -0.02549 + -1.67809 2.87482 -0.18255 + -1.67812 2.87429 -0.18255 + -1.24600 3.22178 -0.33917 + -0.79757 3.10742 -0.49550 + -0.39744 2.53203 -0.65161 + -0.11009 1.49616 -0.80760 + 0.00001 0.00005 -0.96355 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -51390,7 +51526,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -51402,7 +51538,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -51587,53 +51723,53 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 11.49459 101.25211 28.71471 4.03872 110 40 1 - 12.33103 102.14482 29.77573 4.39952 110 41 1 - 13.09911 103.03753 30.83654 4.76032 110 42 1 - 13.80270 103.93024 31.89713 5.12111 110 43 1 - 14.35549 104.82295 32.69245 5.39171 110 44 1 - 14.53588 104.82295 33.22259 5.57211 110 44 1 - 15.03186 105.71566 34.01772 5.84271 110 44 1 - 15.56461 106.60837 35.07774 6.20351 110 44 1 - 16.04719 107.50108 36.13758 6.56430 110 44 1 - 16.48285 108.39379 37.19726 6.92510 110 44 1 - 16.78465 109.28650 37.99192 7.19570 110 44 1 - 12.39968 109.28650 23.90815 8.27361 220 52 2 - 14.28267 107.26750 27.72769 10.12262 220 52 2 - 16.78142 105.24850 32.80815 12.58797 220 51 2 - 19.26798 103.22950 37.87590 15.05332 220 51 2 - 21.74376 101.21050 42.93327 17.51866 220 51 2 - 23.58517 99.19150 46.72104 19.36768 220 50 2 - 41.02140 99.19150 161.29178 13.69459 110 25 1 - 40.69981 100.56490 148.60114 14.25371 110 27 1 - 40.40407 101.93830 150.00588 14.99920 110 27 1 - 39.96904 103.31170 155.04644 15.74469 110 26 1 - 39.41594 104.68510 161.14420 16.49018 110 24 1 - 38.57960 106.05850 166.01892 17.04930 110 23 1 - 38.98867 106.05850 169.36158 17.45837 110 23 1 - 38.03862 107.43190 174.46398 17.98116 110 22 1 - 37.24732 108.80530 181.36703 18.72665 110 21 1 - 36.40425 110.17870 188.34940 19.47214 110 19 1 - 35.52159 111.55210 195.38331 20.21763 110 18 1 - 34.42513 112.92550 200.68154 20.77674 110 17 1 - 34.79787 112.92550 204.22293 21.14949 110 17 1 - 33.68461 114.29890 209.54580 21.70860 110 16 1 - 32.74661 115.67230 216.65723 22.45409 110 15 1 - 31.80229 117.04570 223.78193 23.19958 110 14 1 - 30.85643 118.41910 230.91669 23.94507 110 13 1 - 29.72744 119.79250 236.27276 24.50419 110 13 1 - 31.84011 119.79250 239.84569 26.61686 110 13 1 - 28.97784 121.16590 245.20785 25.43605 110 12 1 - 28.04861 122.53930 252.36133 26.18154 110 11 1 - 27.12594 123.91270 259.51871 26.92703 110 10 1 - 26.20966 125.28610 266.67927 27.67252 110 0 1 - 25.11320 126.65950 272.05135 28.23164 110 0 1 - 25.48595 126.65950 275.63352 28.60438 110 0 1 - 24.39465 128.03290 281.00777 29.16350 110 0 1 - 23.49325 129.40630 288.17492 29.90899 110 0 1 - 22.59433 130.77970 295.34358 30.65448 110 0 1 - 21.69682 132.15310 302.51355 31.39997 110 0 1 - 20.61329 133.52650 307.89172 31.95908 110 0 1 + 11.50265 101.25211 28.71471 4.03872 110 40 1 + 12.33921 102.14482 29.77573 4.39952 110 41 1 + 13.10740 103.03753 30.83654 4.76032 110 43 1 + 13.81110 103.93024 31.89713 5.12111 110 43 1 + 14.36400 104.82295 32.69245 5.39171 110 44 1 + 14.54440 104.82295 33.22259 5.57211 110 44 1 + 15.04049 105.71566 34.01772 5.84271 110 44 1 + 15.57335 106.60837 35.07774 6.20351 110 44 1 + 16.05604 107.50108 36.13758 6.56430 110 44 1 + 16.49180 108.39379 37.19726 6.92510 110 44 1 + 16.79371 109.28650 37.99192 7.19570 110 44 1 + 12.40149 109.28650 23.90815 8.27361 220 52 2 + 14.28451 107.26750 27.72769 10.12262 220 52 2 + 16.78328 105.24850 32.80815 12.58797 220 51 2 + 19.26986 103.22950 37.87590 15.05332 220 51 2 + 21.74567 101.21050 42.93327 17.51866 220 51 2 + 23.58709 99.19150 46.72104 19.36768 220 50 2 + 41.05028 99.19150 161.29178 13.69459 110 25 1 + 40.72914 100.56490 148.60114 14.25371 110 27 1 + 40.43387 101.93830 150.00588 14.99920 110 27 1 + 39.99928 103.31170 155.04644 15.74469 110 26 1 + 39.44661 104.68510 161.14420 16.49018 110 24 1 + 38.61069 106.05850 166.01892 17.04930 110 23 1 + 38.98344 106.05850 169.36158 17.42204 110 23 1 + 38.07011 107.43190 174.46398 17.98116 110 22 1 + 37.27918 108.80530 181.36703 18.72665 110 21 1 + 36.43643 110.17870 188.34940 19.47214 110 19 1 + 35.55404 111.55210 195.38331 20.21763 110 18 1 + 34.45778 112.92550 200.68154 20.77674 110 17 1 + 34.83052 112.92550 204.22293 21.14949 110 17 1 + 33.71739 114.29890 209.54580 21.70860 110 16 1 + 32.77943 115.67230 216.65723 22.45409 110 15 1 + 31.83504 117.04570 223.78193 23.19958 110 14 1 + 30.88900 118.41910 230.91669 23.94507 110 13 1 + 29.75971 119.79250 236.27276 24.50419 110 13 1 + 30.13245 119.79250 239.84569 24.87693 110 13 1 + 29.00967 121.16590 245.20785 25.43605 110 12 1 + 28.07988 122.53930 252.36133 26.18154 110 11 1 + 27.15655 123.91270 259.51871 26.92703 110 10 1 + 26.23952 125.28610 266.67927 27.67252 110 0 1 + 25.14227 126.65950 272.05135 28.23164 110 0 1 + 25.51501 126.65950 275.63352 28.60438 110 0 1 + 24.42288 128.03290 281.00777 29.16350 110 0 1 + 23.52063 129.40630 288.17492 29.90899 110 0 1 + 22.62084 130.77970 295.34358 30.65448 110 0 1 + 21.72245 132.15310 302.51355 31.39997 110 0 1 + 20.63804 133.52650 307.89172 31.95908 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -51651,9 +51787,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 12.441 'Hydrobiaklei' - -12.00 9.007 'Basisveen' - -12.50 111.948 'Eerste zandlaag' + -10.00 12.449 'Hydrobiaklei' + -12.00 9.008 'Basisveen' + -12.50 111.930 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -51799,20 +51935,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.61000 22.00000 1.00000 24.95855 24.95855 - -10.65000 1.00500 26.00000 28.06299 28.06299 - -10.69000 19.00000 19.06000 31.15175 31.15175 - -10.73000 14.00000 27.00000 34.22483 34.22483 - -10.77000 23.00000 50.00000 37.28223 37.28223 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.61000 1.00000 1.00000 24.95855 24.95855 + -10.65000 1.00000 1.00000 28.06299 28.06299 + -10.69000 1.00000 1.00000 31.15175 31.15175 + -10.73000 1.00000 1.00000 34.22483 34.22483 + -10.77000 1.00000 1.00000 37.28223 37.28223 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -51904,7 +52040,7 @@ Lambda passive -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 -11.45400 14.46196 50.75151 0.68205 0.73559 0.04716 3.50931 -11.54500 14.95245 51.29123 0.87054 0.73559 0.05870 3.45865 - -11.54500 14.95245 51.67530 0.99607 0.73799 0.06607 3.42786 + -11.54500 14.95245 51.67530 0.99607 0.73559 0.06607 3.42786 -11.63600 15.44294 52.27958 1.18425 0.73559 0.07669 3.38534 -11.72700 15.93343 53.12261 1.43506 0.73559 0.09007 3.33403 -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 @@ -51916,7 +52052,7 @@ Lambda passive -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 -12.40000 6.16090 17.73824 -0.08984 0.77308 0.00000 2.87916 -12.50000 3.34990 14.16208 -1.41774 0.77308 0.00000 3.49452 - -12.50000 3.34990 19.78289 1.09949 1.03807 0.29664 5.33728 + -12.50000 3.34990 19.78289 1.09949 0.52256 0.29664 5.33728 -12.64000 4.77650 25.37256 1.41713 0.52256 0.29669 5.31196 -12.78000 6.20310 32.73186 1.84091 0.52256 0.29677 5.27669 -12.92000 7.62970 39.99110 2.26502 0.52256 0.29687 5.24150 @@ -52118,25 +52254,25 @@ Status character 3.19130 70.62780 61.17419 5.67101 1 0 A 3.38334 71.21640 64.85543 6.01227 1 0 A 3.52738 71.80500 67.61636 6.26822 1 0 A - 2.30349 71.80500 49.41323 9.28501 110 0 1 - 7.47144 72.69771 49.35826 9.55561 110 0 1 - 6.66891 73.59042 49.61712 9.91641 110 0 1 - 5.94198 74.48313 50.11297 10.27721 110 0 1 - 5.28682 75.37584 50.75151 10.63800 110 0 1 - 4.69513 76.26855 51.29123 10.90860 110 0 1 - 4.74026 76.26855 51.67530 11.12523 110 0 1 - 4.17649 77.16126 52.27958 11.35960 110 0 1 - 3.71416 78.05397 53.12261 11.72040 110 0 1 - 3.30935 78.94668 54.00062 12.08119 110 0 1 - 2.95878 79.83939 54.90557 12.44199 110 0 1 - 3.14190 80.73210 55.59789 12.71259 110 0 1 - 8.11761 80.73210 35.84031 12.91208 110 0 1 - 6.49393 84.71310 32.18078 11.28224 110 0 1 - 4.34965 88.69410 27.33574 9.10911 110 0 1 - 2.22628 92.67510 22.52396 6.93599 110 0 1 - 0.60896 96.65610 17.73824 4.76286 110 0 1 + 2.30115 71.80500 49.41323 9.28501 110 0 1 + 7.51136 72.69771 49.35826 9.55561 110 0 1 + 6.70703 73.59042 49.61712 9.91641 110 0 1 + 5.97816 74.48313 50.11297 10.27721 110 0 1 + 5.32090 75.37584 50.75151 10.63800 110 0 1 + 4.72694 76.26855 51.29123 10.90860 110 0 1 + 4.73584 76.26855 51.67530 11.08900 110 0 1 + 4.20586 77.16126 52.27958 11.35960 110 0 1 + 3.74093 78.05397 53.12261 11.72040 110 0 1 + 3.33335 78.94668 54.00062 12.08119 110 0 1 + 2.97988 79.83939 54.90557 12.44199 110 0 1 + 3.13959 80.73210 55.59789 12.71259 110 0 1 + 8.11308 80.73210 35.84031 12.91208 110 0 1 + 6.48935 84.71310 32.18078 11.28224 110 0 1 + 4.34500 88.69410 27.33574 9.10911 110 0 1 + 2.22157 92.67510 22.52396 6.93599 110 0 1 + 0.60780 96.65610 17.73824 4.76286 110 0 1 0.00000 100.63710 14.16208 3.13302 1 0 A - 1.09949 100.63710 19.78289 3.84765 1 0 A + 1.09949 100.63710 19.78289 1.93691 1 0 A 1.41713 102.01050 25.37256 2.49603 1 0 A 1.84091 103.38390 32.73186 3.24152 1 0 A 2.26502 104.75730 39.99110 3.98700 1 0 A @@ -52153,19 +52289,19 @@ Status character 6.09531 117.11790 103.82983 10.69641 1 0 A 6.52171 118.49130 110.92550 11.44190 1 0 A 6.94816 119.86470 118.02984 12.18739 1 0 A - 7.52326 121.23810 123.36324 12.74651 110 0 1 - 7.89600 121.23810 126.92141 13.11925 110 0 1 - 10.13658 122.61150 132.26229 13.67837 110 0 1 - 12.55679 123.98490 139.38900 14.42386 110 0 1 - 14.97043 125.35830 146.52174 15.16935 110 0 1 - 17.37770 126.73170 153.65983 15.91484 110 11 1 - 19.59239 128.10510 159.01640 16.47395 110 12 1 - 19.96513 128.10510 162.58890 16.84670 110 12 1 - 22.17466 129.47850 167.94962 17.40581 110 13 1 - 24.56704 130.85190 175.10024 18.15130 110 14 1 - 26.95694 132.22530 182.25406 18.89679 110 15 1 - 29.34543 133.59870 189.41070 19.64228 110 15 1 - 31.54720 134.97210 194.77975 20.20140 110 16 1 + 7.49099 121.23810 123.36324 12.74651 110 0 1 + 7.86373 121.23810 126.92141 13.11925 110 0 1 + 10.10475 122.61150 132.26229 13.67837 110 0 1 + 12.52552 123.98490 139.38900 14.42386 110 0 1 + 14.93983 125.35830 146.52174 15.16935 110 0 1 + 17.34783 126.73170 153.65983 15.91484 110 11 1 + 19.56332 128.10510 159.01640 16.47395 110 12 1 + 19.93607 128.10510 162.58890 16.84670 110 12 1 + 22.14643 129.47850 167.94962 17.40581 110 13 1 + 24.53966 130.85190 175.10024 18.15130 110 14 1 + 26.93043 132.22530 182.25406 18.89679 110 15 1 + 29.31980 133.59870 189.41070 19.64228 110 15 1 + 31.52245 134.97210 194.77975 20.20140 110 16 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -52180,9 +52316,9 @@ Layer name [DATA] -9.99 36.488 'OWB' -10.79 0.929 'Grind' - -11.09 4.274 'Hydrobiaklei' - -12.00 1.774 'Basisveen' - -12.50 36.458 'Eerste zandlaag' + -11.09 4.298 'Hydrobiaklei' + -12.00 1.772 'Basisveen' + -12.50 36.415 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -52199,9 +52335,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 0.33 'Grind' - -11.09 0.79 'Hydrobiaklei' + -11.09 0.80 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 12.35 'Eerste zandlaag' + -12.50 12.34 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -52441,8 +52577,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 439.48508 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 549.99806 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 439.47317 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 550.15103 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -52486,10 +52622,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 23.98 : Percentage mobilized resistance left - 25.80 : Percentage mobilized resistance right - 117.52 : Effective left - 141.55 : Effective right + 24.00 : Percentage mobilized resistance left + 25.85 : Percentage mobilized resistance right + 117.63 : Effective left + 141.81 : Effective right 548.36 : Water pressure left 540.51 : Water pressure right 490.03 : Max effective resistance left @@ -52498,8 +52634,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 24.62 : Vertical force left - 23.26 : Vertical force right + 24.68 : Vertical force left + 23.35 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -52508,17 +52644,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --24.62 : Active force -23.26 : Passive force --24.62 : Plugged active force -23.26 : Plugged passive force +-24.68 : Active force +23.35 : Passive force +-24.68 : Plugged active force +23.35 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --1.37 : Resulting Vertical Force Unplugged --1.37 : Resulting Vertical Force Plugged +-1.34 : Resulting Vertical Force Unplugged +-1.34 : Resulting Vertical Force Plugged 0 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -52531,210 +52667,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.04239 - 0.00000 0.00000 -7.98008 - 0.00000 0.00000 -7.91776 - 0.00000 0.00000 -7.85545 - 0.00000 0.00000 -7.79314 - 0.00000 0.00000 -7.73083 - 0.00000 0.00000 -7.73083 - 0.00000 0.00000 -7.66851 - 0.00000 0.00000 -7.60620 - 0.00000 0.00000 -7.54389 - 0.00000 0.00000 -7.48157 - 0.00000 0.00000 -7.41926 - 0.00000 0.00000 -7.41926 - 0.00000 0.00000 -7.33618 - 0.00000 0.00000 -7.25309 - 0.00000 0.00000 -7.17001 - 0.00000 0.00000 -7.08692 - 0.00000 0.00000 -7.00384 - 0.00000 0.00000 -7.00384 - 0.00000 0.00000 -6.93460 - 0.00000 0.00000 -6.86537 - 0.00000 0.00000 -6.79613 - 0.00000 0.00000 -6.72689 - 0.00000 0.00000 -6.65766 - 0.00000 0.00000 -6.65766 - 0.00000 0.00000 -6.58842 - 0.00000 0.00000 -6.51918 - 0.00000 0.00000 -6.44994 - 0.00000 0.00000 -6.38071 - 0.00000 0.00000 -6.31147 - 0.00000 0.00000 -6.31147 - 0.00000 0.00000 -6.25193 - 0.00000 0.00000 -6.19238 - 0.00000 0.00000 -6.13284 - 0.00000 0.00000 -6.07330 - 0.00000 0.00000 -6.01375 - 0.00000 0.41492 -6.01375 - 0.04730 0.41492 -5.93482 - 0.09460 0.41492 -5.85590 - 0.14190 0.41492 -5.77700 - 0.18920 0.41492 -5.69812 - 0.23650 0.41492 -5.61926 - 0.23742 0.39692 -5.61926 - 0.26918 0.39692 -5.56395 - 0.30093 0.39692 -5.50866 - 0.33268 0.39692 -5.45340 - 0.36444 0.39692 -5.39816 - 0.39619 0.39692 -5.34295 - 0.39593 0.39501 -5.34295 - 0.40383 0.39501 -5.32915 - 0.41173 0.39501 -5.31536 - 0.41963 0.39501 -5.30156 - 0.42753 0.39501 -5.28777 - 0.43543 0.39501 -5.27398 - 0.43540 0.39546 -5.27398 - 0.47494 0.39546 -5.20507 - 0.51449 0.39546 -5.13622 - 0.55403 0.39546 -5.06743 - 0.59358 0.39546 -4.99872 - 0.63313 0.39546 -4.93007 - 0.63298 0.40062 -4.93007 - 0.67304 0.40062 -4.86151 - 0.71310 0.40062 -4.79303 - 0.75316 0.40062 -4.72465 - 0.79322 0.40062 -4.65635 - 0.83329 0.40062 -4.58816 - 0.83330 0.40106 -4.58816 - 0.87340 0.40106 -4.52007 - 0.91351 0.40106 -4.45209 - 0.95361 0.40106 -4.38423 - 0.99372 0.40106 -4.31649 - 1.03383 0.40106 -4.24887 - 1.03378 0.40175 -4.24887 - 1.09003 0.40175 -4.15442 - 1.14627 0.40175 -4.06025 - 1.20252 0.40175 -3.96635 - 1.25876 0.40175 -3.87276 - 1.31500 0.40175 -3.77947 - 1.31494 0.40328 -3.77947 - 1.36736 0.40328 -3.69314 - 1.41979 0.40328 -3.60710 - 1.47222 0.40328 -3.52136 - 1.52464 0.40328 -3.43594 - 1.57707 0.40328 -3.35084 - 1.57722 0.40300 -3.35084 - 1.62961 0.40300 -3.26608 - 1.68200 0.40300 -3.18166 - 1.73439 0.40300 -3.09760 - 1.78678 0.40300 -3.01391 - 1.83916 0.40300 -2.93060 - 1.83916 0.40298 -2.93060 - 1.89941 0.40298 -2.83528 - 1.95965 0.40298 -2.74049 - 2.01990 0.40298 -2.64626 - 2.08014 0.40298 -2.55259 - 2.14039 0.40298 -2.45951 - 2.14039 0.40298 -2.45951 - 2.20063 0.40298 -2.36703 - 2.26088 0.40298 -2.27518 - 2.32112 0.40298 -2.18395 - 2.38137 0.40298 -2.09339 - 2.44161 0.40298 -2.00349 - 2.44047 0.40881 -2.00349 - 2.50158 0.40881 -1.91428 - 2.56270 0.40881 -1.82577 - 2.62382 0.40881 -1.73799 - 2.68493 0.40881 -1.65094 - 2.74605 0.40881 -1.56465 - 2.74770 0.41895 -1.56465 - 2.81034 0.41895 -1.47914 - 2.87297 0.41895 -1.39441 - 2.93560 0.41895 -1.31050 - 2.99823 0.41895 -1.22741 - 3.06087 0.41895 -1.14516 - 3.06157 0.43101 -1.14516 - 3.06248 0.50979 -1.14407 - 3.06366 0.66579 -1.14297 - 3.06515 0.82179 -1.14188 - 3.06695 0.97779 -1.14079 - 3.06906 1.13379 -1.13969 - 3.06906 1.13377 -1.13969 - 3.16846 4.09778 -1.11894 - 3.38049 7.06181 -1.09824 - 3.70516 10.02585 -1.07761 - 4.14245 12.98990 -1.05704 - 4.69239 15.95397 -1.03655 - 4.69239 -0.64412 -1.03655 - 4.69511 0.91593 -1.02580 - 4.72902 2.47597 -1.01507 - 4.79414 4.03602 -1.00437 - 4.89047 5.59608 -0.99369 - 5.01799 7.15613 -0.98303 - 5.01793 7.15868 -0.98303 - 5.54012 9.47546 -0.95122 - 6.10865 9.47564 -0.91967 - 6.67719 9.47582 -0.88838 - 7.24575 9.47600 -0.85741 - 7.81431 9.47618 -0.82676 - 7.81432 9.47614 -0.82676 - 8.09862 9.47733 -0.81156 - 8.38294 9.47742 -0.79646 - 8.66727 9.47751 -0.78145 - 8.95160 9.47760 -0.76654 - 9.23591 9.47659 -0.75174 - 9.23591 9.47658 -0.75174 - 9.33068 9.47661 -0.74682 - 9.42545 9.47664 -0.74192 - 9.52021 9.47667 -0.73703 - 9.61498 9.47670 -0.73216 - 9.70975 9.47673 -0.72729 - 9.70980 9.47567 -0.72729 - 10.22722 7.75631 -0.69837 - 10.63863 5.94073 -0.66991 - 10.93815 4.02729 -0.64192 - 11.12004 2.02038 -0.61443 - 11.17893 -0.06961 -0.58745 - 11.17956 -0.08940 -0.58745 - 11.14175 -0.69954 -0.54749 - 11.05769 -1.13038 -0.50870 - 10.93916 -1.45768 -0.47105 - 10.79540 -1.68580 -0.43455 - 10.63511 -1.82283 -0.39917 - 10.63495 -1.81973 -0.39917 - 10.46700 -1.85796 -0.36490 - 10.29933 -1.81291 -0.33173 - 10.13959 -1.68435 -0.29963 - 9.99521 -1.47577 -0.26859 - 9.87253 -1.21649 -0.23859 - 9.87258 -1.21682 -0.23859 - 9.75198 -1.15762 -0.20681 - 9.64571 -0.95882 -0.17625 - 9.56169 -0.71585 -0.14692 - 9.50274 -0.46688 -0.11879 - 9.46594 -0.28917 -0.09186 - 9.46754 -0.29607 -0.09186 - 9.46736 0.37304 -0.05616 - 9.56062 0.79855 -0.02281 - 9.65515 0.45684 0.00819 - 9.66268 -0.43887 0.03681 - 9.51492 -1.70640 0.06306 - 9.51199 -1.72533 0.06306 - 9.14706 -3.32979 0.08693 - 8.60713 -4.34553 0.10855 - 7.94094 -5.13367 0.12806 - 7.18023 -5.69604 0.14564 - 6.35621 -6.04066 0.16145 - 6.35611 -6.03900 0.16145 - 5.50032 -6.15198 0.17567 - 4.64344 -6.05308 0.18853 - 3.81547 -5.73956 0.20025 - 3.04625 -5.21413 0.21101 - 2.36500 -4.48547 0.22101 - 2.36620 -4.46499 0.22101 - 1.79680 -3.68481 0.23045 - 1.33011 -2.99771 0.23945 - 0.95308 -2.40406 0.24810 - 0.65260 -1.90404 0.25649 - 0.41558 -1.49762 0.26473 - 0.41558 -1.49765 0.26473 - 0.25962 -0.85556 0.27289 - 0.15631 -0.63580 0.28097 - 0.07843 -0.48398 0.28901 - 0.02234 -0.29914 0.29703 - 0.00000 0.00001 0.30504 + 0.00000 0.00000 -8.04713 + 0.00000 0.00000 -7.98467 + 0.00000 0.00000 -7.92220 + 0.00000 0.00000 -7.85974 + 0.00000 0.00000 -7.79728 + 0.00000 0.00000 -7.73481 + 0.00000 0.00000 -7.73481 + 0.00000 0.00000 -7.67235 + 0.00000 0.00000 -7.60989 + 0.00000 0.00000 -7.54742 + 0.00000 0.00000 -7.48496 + 0.00000 0.00000 -7.42249 + 0.00000 0.00000 -7.42249 + 0.00000 0.00000 -7.33921 + 0.00000 0.00000 -7.25592 + 0.00000 0.00000 -7.17264 + 0.00000 0.00000 -7.08935 + 0.00000 0.00000 -7.00607 + 0.00000 0.00000 -7.00607 + 0.00000 0.00000 -6.93667 + 0.00000 0.00000 -6.86726 + 0.00000 0.00000 -6.79786 + 0.00000 0.00000 -6.72845 + 0.00000 0.00000 -6.65905 + 0.00000 0.00000 -6.65905 + 0.00000 0.00000 -6.58964 + 0.00000 0.00000 -6.52024 + 0.00000 0.00000 -6.45084 + 0.00000 0.00000 -6.38143 + 0.00000 0.00000 -6.31203 + 0.00000 0.00000 -6.31203 + 0.00000 0.00000 -6.25234 + 0.00000 0.00000 -6.19265 + 0.00000 0.00000 -6.13297 + 0.00000 0.00000 -6.07328 + 0.00000 0.00000 -6.01359 + 0.00000 0.42683 -6.01359 + 0.04866 0.42683 -5.93447 + 0.09732 0.42683 -5.85536 + 0.14597 0.42683 -5.77626 + 0.19463 0.42683 -5.69719 + 0.24329 0.42683 -5.61815 + 0.24421 0.40881 -5.61815 + 0.27691 0.40881 -5.56271 + 0.30962 0.40881 -5.50729 + 0.34232 0.40881 -5.45189 + 0.37503 0.40881 -5.39652 + 0.40773 0.40881 -5.34119 + 0.40748 0.40690 -5.34119 + 0.41561 0.40690 -5.32736 + 0.42375 0.40690 -5.31353 + 0.43189 0.40690 -5.29970 + 0.44003 0.40690 -5.28588 + 0.44817 0.40690 -5.27206 + 0.44813 0.40735 -5.27206 + 0.48886 0.40735 -5.20299 + 0.52960 0.40735 -5.13398 + 0.57033 0.40735 -5.06504 + 0.61107 0.40735 -4.99617 + 0.65180 0.40735 -4.92738 + 0.65165 0.41252 -4.92738 + 0.69290 0.41252 -4.85867 + 0.73416 0.41252 -4.79005 + 0.77541 0.41252 -4.72152 + 0.81666 0.41252 -4.65308 + 0.85791 0.41252 -4.58475 + 0.85792 0.41295 -4.58475 + 0.89922 0.41295 -4.51653 + 0.94051 0.41295 -4.44842 + 0.98181 0.41295 -4.38043 + 1.02310 0.41295 -4.31257 + 1.06440 0.41295 -4.24483 + 1.06435 0.41364 -4.24483 + 1.12226 0.41364 -4.15022 + 1.18017 0.41364 -4.05589 + 1.23808 0.41364 -3.96186 + 1.29599 0.41364 -3.86812 + 1.35390 0.41364 -3.77471 + 1.35383 0.41518 -3.77471 + 1.40781 0.41518 -3.68827 + 1.46178 0.41518 -3.60213 + 1.51575 0.41518 -3.51630 + 1.56973 0.41518 -3.43079 + 1.62370 0.41518 -3.34562 + 1.62385 0.41490 -3.34562 + 1.67779 0.41490 -3.26079 + 1.73172 0.41490 -3.17632 + 1.78566 0.41490 -3.09222 + 1.83960 0.41490 -3.00850 + 1.89353 0.41490 -2.92517 + 1.89353 0.41488 -2.92517 + 1.95555 0.41488 -2.82984 + 2.01758 0.41488 -2.73506 + 2.07960 0.41488 -2.64085 + 2.14163 0.41488 -2.54723 + 2.20365 0.41488 -2.45420 + 2.20365 0.41488 -2.45420 + 2.26567 0.41488 -2.36180 + 2.32770 0.41488 -2.27004 + 2.38972 0.41488 -2.17893 + 2.45175 0.41488 -2.08849 + 2.51377 0.41488 -1.99875 + 2.51263 0.42070 -1.99875 + 2.57552 0.42070 -1.90971 + 2.63842 0.42070 -1.82140 + 2.70131 0.42070 -1.73383 + 2.76421 0.42070 -1.64702 + 2.82710 0.42070 -1.56099 + 2.82861 0.43312 -1.56099 + 2.89336 0.43312 -1.47575 + 2.95811 0.43312 -1.39133 + 3.02287 0.43312 -1.30775 + 3.08762 0.43312 -1.22501 + 3.15237 0.43312 -1.14314 + 3.15309 0.44526 -1.14314 + 3.15403 0.52404 -1.14205 + 3.15524 0.68004 -1.14096 + 3.15675 0.83604 -1.13988 + 3.15858 0.99204 -1.13879 + 3.16072 1.14804 -1.13770 + 3.16072 1.14802 -1.13770 + 3.26066 4.11203 -1.11704 + 3.47323 7.07606 -1.09645 + 3.79844 10.04010 -1.07592 + 4.23628 13.00415 -1.05546 + 4.78676 15.96822 -1.03508 + 4.78676 -0.78283 -1.03508 + 4.78670 0.77721 -1.02438 + 4.81784 2.33725 -1.01371 + 4.88019 3.89730 -1.00307 + 4.97374 5.45736 -0.99245 + 5.09848 7.01742 -0.98185 + 5.09849 7.01731 -0.98185 + 5.61220 9.33410 -0.95022 + 6.17225 9.33428 -0.91884 + 6.73231 9.33446 -0.88775 + 7.29238 9.33464 -0.85696 + 7.85247 9.33482 -0.82650 + 7.85246 9.33470 -0.82650 + 8.13253 9.33590 -0.81140 + 8.41261 9.33599 -0.79639 + 8.69269 9.33608 -0.78148 + 8.97277 9.33617 -0.76667 + 9.25285 9.33515 -0.75196 + 9.25285 9.33514 -0.75196 + 9.34620 9.33517 -0.74708 + 9.43955 9.33520 -0.74221 + 9.53290 9.33523 -0.73736 + 9.62625 9.33526 -0.73251 + 9.71961 9.33529 -0.72768 + 9.71966 9.33423 -0.72768 + 10.22856 7.61377 -0.69895 + 10.63139 5.79699 -0.67068 + 10.92224 3.88225 -0.64290 + 11.09538 1.87394 -0.61560 + 11.14545 -0.21755 -0.58880 + 11.14608 -0.23735 -0.58880 + 11.09478 -0.84915 -0.54914 + 10.99688 -1.28495 -0.51063 + 10.86406 -1.61719 -0.47326 + 10.70556 -1.85024 -0.43703 + 10.53008 -1.99215 -0.40191 + 10.53001 -1.99139 -0.40191 + 10.34622 -2.03443 -0.36789 + 10.16227 -1.99412 -0.33496 + 9.98583 -1.87018 -0.30308 + 9.82433 -1.66609 -0.27224 + 9.68417 -1.41030 -0.24244 + 9.68420 -1.41070 -0.24244 + 9.54968 -1.26978 -0.21084 + 9.43215 -1.07173 -0.18045 + 9.33682 -0.82920 -0.15125 + 9.26650 -0.58092 -0.12322 + 9.21825 -0.40415 -0.09637 + 9.21983 -0.41069 -0.09637 + 9.20328 0.25453 -0.06072 + 9.27977 0.67692 -0.02735 + 9.35691 0.33001 0.00373 + 9.34622 -0.57307 0.03251 + 9.17893 -1.85157 0.05899 + 9.17601 -1.87058 0.05899 + 8.82399 -3.12178 0.08318 + 8.31238 -4.14883 0.10519 + 7.67300 -4.94717 0.12518 + 6.93776 -5.51846 0.14329 + 6.13806 -5.87054 0.15969 + 6.13796 -5.86894 0.15969 + 5.30554 -5.98779 0.17456 + 4.47135 -5.89301 0.18812 + 3.66560 -5.58177 0.20058 + 2.91843 -5.05665 0.21211 + 2.25935 -4.32570 0.22292 + 2.26055 -4.30524 0.22292 + 1.71403 -3.51722 0.23320 + 1.27149 -2.82011 0.24305 + 0.92014 -2.21427 0.25257 + 0.64722 -1.69983 0.26185 + 0.43993 -1.27677 0.27096 + 0.43993 -1.27680 0.27096 + 0.28547 -0.94493 0.27999 + 0.17110 -0.70411 0.28894 + 0.08518 -0.53068 0.29785 + 0.02408 -0.32363 0.30673 + 0.00000 0.00001 0.31560 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -52855,43 +52991,43 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.32000 4.99100 40.00000 25.74054 25.74054 - -10.38000 23.09000 1.00000 30.42076 30.42076 - -10.44000 2.00000 83.00000 35.10101 35.10101 - -10.50000 23.00000 1.00000 39.78130 39.78130 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.59000 4.00000 16.00000 46.80180 46.80180 - -10.60500 19.00000 71.00000 47.97189 47.97189 - -10.63500 22.98800 22.99000 50.31208 50.31208 - -10.66500 28.00000 5.00000 52.65228 52.65228 - -10.69500 19.20000 20.00000 54.99249 54.99249 - -10.72500 17.00000 16.93000 57.33270 57.33270 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.82000 71.51400 34.34100 64.16500 62.48349 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.32000 1.00000 1.00000 25.74054 25.74054 + -10.38000 1.00000 1.00000 30.42076 30.42076 + -10.44000 1.00000 1.00000 35.10101 35.10101 + -10.50000 1.00000 1.00000 39.78130 39.78130 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.59000 1.00000 1.00000 46.80180 46.80180 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.63500 1.00000 1.00000 50.31208 50.31208 + -10.66500 1.00000 1.00000 52.65228 52.65228 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.72500 1.00000 1.00000 57.33270 57.33270 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.82000 71.51400 34.34000 64.16500 62.48349 -10.88000 71.51400 34.34100 67.87878 62.67722 -10.94000 71.51400 34.34100 71.81343 62.88249 -11.00000 71.51400 34.34100 75.96895 63.09927 @@ -52965,8 +53101,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -52984,19 +53120,19 @@ Lambda passive -10.47000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.53000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.59000 78.00600 78.00585 78.00585 1.00000 1.00000 1.00000 - -10.59000 78.00600 78.00607 78.00608 1.00000 1.00000 1.00000 + -10.59000 78.00600 78.00607 78.00607 1.00000 1.00000 1.00000 -10.62000 78.00630 78.00630 78.00630 1.00000 1.00000 1.00000 -10.65000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.68000 78.00690 78.00690 78.00690 1.00000 1.00000 1.00000 -10.71000 78.00720 78.00720 78.00720 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00743 78.00742 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00743 78.00743 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 59.13536 3.08494 0.67093 0.28603 5.48293 + -10.79000 10.61750 59.13536 3.08494 0.50828 0.28603 5.48293 -10.85000 11.28890 61.89629 3.22897 0.50828 0.28603 5.48293 -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.97000 12.63170 69.25877 3.61306 0.50828 0.28603 5.48293 @@ -53026,7 +53162,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -53185,16 +53321,16 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 1 100 A - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00205 0.00000 78.00205 78.00205 1 100 A 78.00220 0.00000 78.00220 78.00220 1 100 A - 78.00240 0.00000 78.00240 78.00240 1 0 A + 78.00240 0.00000 78.00240 78.00240 1 100 A 78.00260 0.00000 78.00260 78.00260 1 100 A 78.00280 0.00000 78.00280 78.00280 1 100 A 78.00295 0.00000 78.00295 78.00295 1 100 A @@ -53203,73 +53339,73 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00540 0.00000 78.00540 78.00540 1 100 A - 78.00585 0.00000 78.00585 78.00585 1 0 A - 78.00608 0.00000 78.00608 78.00608 1 100 A + 78.00585 0.00000 78.00585 78.00585 1 100 A + 78.00607 0.00000 78.00607 78.00608 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00720 0.00000 78.00720 78.00720 1 100 A - 78.00742 0.00000 78.00743 78.00743 1 0 A + 78.00743 0.00000 78.00743 78.00743 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.08494 67.39050 59.13536 7.23620 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.08494 67.39050 59.13536 5.48201 1 0 A 3.22897 67.97910 61.89629 5.73795 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.61306 69.15630 69.25877 6.42048 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.94913 70.33350 75.70095 7.01768 1 0 A - 2.66298 70.33350 52.80064 10.36963 110 0 1 - 10.86168 71.22621 52.76452 10.64023 110 21 1 - 11.45980 72.11892 53.02490 11.00103 110 22 1 - 12.03704 73.01163 53.51177 11.36183 110 22 1 - 12.59444 73.90434 54.13832 11.72262 110 23 1 - 13.04283 74.79705 54.66869 11.99322 110 24 1 - 13.22322 74.79705 55.04663 12.17362 110 24 1 - 13.65382 75.68976 55.64206 12.44422 110 25 1 - 14.15774 76.58247 56.47400 12.80502 110 25 1 - 14.64569 77.47518 57.34182 13.16581 110 26 1 - 15.11853 78.36789 58.23745 13.52661 110 26 1 - 15.48695 79.26060 58.92328 13.79721 110 26 1 - 14.66602 79.26060 38.46255 14.05198 110 38 1 - 13.57673 83.24160 34.78760 12.42214 110 39 1 - 11.91316 87.22260 29.92326 10.24902 110 40 1 - 10.04432 91.20360 25.09365 8.07589 110 40 1 - 8.11706 95.18460 20.29148 5.90277 110 40 1 - 6.60268 99.16560 16.70379 4.27292 110 40 1 - 21.14652 99.16560 27.51935 2.70743 220 77 2 - 26.33249 100.53900 33.02991 3.26655 220 80 2 - 20.89177 101.91240 40.29427 4.01204 220 52 2 - 18.19331 103.28580 47.47851 4.75752 110 38 1 - 14.60296 104.65920 54.60600 5.50301 110 27 1 - 12.01676 106.03260 59.92769 6.06213 110 20 1 - 9.61217 106.03260 63.46711 3.65754 110 15 1 - 12.79308 107.40600 68.76890 6.99399 110 19 1 - 13.34716 108.77940 75.83214 7.73948 110 18 1 - 13.86990 110.15280 82.89494 8.48497 110 17 1 - 14.36584 111.52620 89.96218 9.23046 110 16 1 - 14.65315 112.89960 95.26699 9.78958 110 15 1 - 15.02590 112.89960 98.80627 10.16232 110 15 1 - 15.29543 114.27300 104.11963 10.72144 110 15 1 - 15.73704 115.64640 111.21161 11.46693 110 14 1 - 16.16733 117.01980 118.31241 12.21242 110 14 1 - 16.58933 118.39320 125.42156 12.95791 110 13 1 - 16.81964 119.76660 130.75828 13.51703 110 13 1 - 17.19239 119.76660 134.31851 13.88977 110 13 1 - 17.41995 121.14000 139.66222 14.44889 110 12 1 - 17.83216 122.51340 146.79231 15.19438 110 12 1 - 18.24340 123.88680 153.92796 15.93987 110 12 1 - 18.65438 125.26020 161.06855 16.68536 110 12 1 - 18.87947 126.63360 166.42676 17.24447 110 11 1 - 19.25221 126.63360 170.00024 17.61722 110 11 1 - 19.47807 128.00700 175.36228 18.17633 110 11 1 - 19.89079 129.38040 182.51443 18.92182 110 11 1 - 20.66369 130.75380 189.66955 19.66731 110 11 1 - 22.51818 132.12720 196.82728 20.41280 110 11 1 - 24.26567 133.50060 202.19703 20.97192 110 12 1 + 2.65271 70.33350 52.80064 10.36963 110 0 1 + 10.85846 71.22621 52.76452 10.64023 110 21 1 + 11.45572 72.11892 53.02490 11.00103 110 22 1 + 12.03213 73.01163 53.51177 11.36183 110 22 1 + 12.58871 73.90434 54.13832 11.72262 110 23 1 + 13.03631 74.79705 54.66869 11.99322 110 24 1 + 13.21671 74.79705 55.04663 12.17362 110 24 1 + 13.64655 75.68976 55.64206 12.44422 110 25 1 + 14.14976 76.58247 56.47400 12.80502 110 25 1 + 14.63703 77.47518 57.34182 13.16581 110 26 1 + 15.10925 78.36789 58.23745 13.52661 110 26 1 + 15.47711 79.26060 58.92328 13.79721 110 26 1 + 14.65850 79.26060 38.46255 14.05198 110 38 1 + 13.57153 83.24160 34.78760 12.42214 110 39 1 + 11.91428 87.22260 29.92326 10.24902 110 40 1 + 10.04529 91.20360 25.09365 8.07589 110 40 1 + 8.11791 95.18460 20.29148 5.90277 110 40 1 + 6.60346 99.16560 16.70379 4.27292 110 40 1 + 21.11545 99.16560 27.51935 2.70743 220 77 2 + 26.35499 100.53900 33.02991 3.26655 220 80 2 + 20.88751 101.91240 40.29427 4.01204 220 52 2 + 18.18584 103.28580 47.47851 4.75752 110 38 1 + 14.59720 104.65920 54.60600 5.50301 110 27 1 + 11.98562 106.03260 59.92769 6.06213 110 20 1 + 12.35836 106.03260 63.46711 6.43488 110 19 1 + 12.76491 107.40600 68.76890 6.99399 110 19 1 + 13.32269 108.77940 75.83214 7.73948 110 18 1 + 13.84980 110.15280 82.89494 8.48497 110 17 1 + 14.35073 111.52620 89.96218 9.23046 110 16 1 + 14.64356 112.89960 95.26699 9.78958 110 15 1 + 15.01630 112.89960 98.80627 10.16232 110 15 1 + 15.29185 114.27300 104.11963 10.72144 110 15 1 + 15.73989 115.64640 111.21161 11.46693 110 14 1 + 16.17700 117.01980 118.31241 12.21242 110 14 1 + 16.60613 118.39320 125.42156 12.95791 110 13 1 + 16.84385 119.76660 130.75828 13.51703 110 13 1 + 17.21660 119.76660 134.31851 13.88977 110 13 1 + 17.45178 121.14000 139.66222 14.44889 110 12 1 + 17.87178 122.51340 146.79231 15.19438 110 12 1 + 18.29090 123.88680 153.92796 15.93987 110 12 1 + 18.70983 125.26020 161.06855 16.68536 110 12 1 + 18.94287 126.63360 166.42676 17.24447 110 11 1 + 19.31562 126.63360 170.00024 17.61722 110 11 1 + 19.54937 128.00700 175.36228 18.17633 110 11 1 + 19.96993 129.38040 182.51443 18.92182 110 11 1 + 20.72721 130.75380 189.66955 19.66731 110 11 1 + 22.59023 132.12720 196.82728 20.41280 110 11 1 + 24.34625 133.50060 202.19703 20.97192 110 12 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -53284,9 +53420,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 11.533 'Hydrobiaklei' - -12.00 5.429 'Basisveen' - -12.50 61.225 'Eerste zandlaag' + -11.09 11.527 'Hydrobiaklei' + -12.00 5.428 'Basisveen' + -12.50 61.485 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -53305,7 +53441,7 @@ Layer name -10.79 0.38 'Grind' -11.09 2.14 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 20.74 'Eerste zandlaag' + -12.50 20.83 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -53429,26 +53565,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.60500 34.00000 12.00000 24.56939 24.56939 - -10.63500 17.43000 17.40000 26.90066 26.90066 - -10.66500 9.00600 53.00000 29.22311 29.22311 - -10.69500 14.00800 13.60000 31.53674 31.53674 - -10.72500 4.00000 45.00000 33.84155 33.84155 - -10.74000 23.00000 2.00000 34.99065 34.99065 - -10.74500 16.90000 16.00000 35.37319 35.37319 - -10.75500 82.00000 16.00000 36.13754 36.13754 - -10.76500 17.00000 66.00000 36.90091 36.90091 - -10.77500 25.00000 15.00000 37.66330 37.66330 - -10.78500 3.00000 8.00000 38.42471 38.42471 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.60500 1.00000 1.00000 24.56939 24.56939 + -10.63500 1.00000 1.00000 26.90066 26.90066 + -10.66500 1.00000 1.00000 29.22311 29.22311 + -10.69500 1.00000 1.00000 31.53674 31.53674 + -10.72500 1.00000 1.00000 33.84155 33.84155 + -10.74000 1.00000 1.00000 34.99065 34.99065 + -10.74500 1.00000 1.00000 35.37319 35.37319 + -10.75500 1.00000 1.00000 36.13754 36.13754 + -10.76500 1.00000 1.00000 36.90091 36.90091 + -10.77500 1.00000 1.00000 37.66330 37.66330 + -10.78500 1.00000 1.00000 38.42471 38.42471 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -53540,7 +53676,7 @@ Lambda passive -10.97000 11.15720 61.17419 3.19130 0.50828 0.28603 5.48293 -11.03000 11.82860 64.85543 3.38334 0.50828 0.28603 5.48293 -11.09000 12.50000 67.61636 3.52738 0.50828 0.28603 5.48293 - -11.09000 12.50000 49.41323 -0.28341 0.73846 0.00000 3.91466 + -11.09000 12.50000 49.41323 -0.28341 0.73559 0.00000 3.91466 -11.18100 12.99049 49.35826 -0.08130 0.73559 0.00000 3.79957 -11.27200 13.48098 49.61712 0.17666 0.73559 0.01310 3.68053 -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 @@ -53552,7 +53688,7 @@ Lambda passive -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 -11.90900 16.91441 54.90557 1.93654 0.73559 0.11449 3.24608 -12.00000 17.40490 55.59789 2.12459 0.73559 0.12293 3.21705 - -12.00000 17.40490 35.84031 6.54790 0.87230 0.39204 2.14585 + -12.00000 17.40490 35.84031 6.54790 0.77308 0.39204 2.14585 -12.10000 14.59390 32.18078 5.22073 0.77308 0.35773 2.20508 -12.20000 11.78290 27.33574 3.45081 0.77308 0.29287 2.31995 -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 @@ -53582,7 +53718,7 @@ Lambda passive -15.02000 29.02870 146.52174 8.65398 0.52256 0.29812 5.04748 -15.16000 30.45530 153.65983 9.08040 0.52256 0.29816 5.04542 -15.30000 31.88190 159.01640 9.40020 0.52256 0.29818 5.04410 - -15.30000 31.88190 162.58890 9.61339 0.37674 0.29820 5.04331 + -15.30000 31.88190 162.58890 9.61339 0.52256 0.29820 5.04331 -15.44000 33.30850 167.94962 9.93315 0.52256 0.29822 5.04225 -15.58000 34.73510 175.10024 10.35948 0.52256 0.29824 5.04102 -15.72000 36.16170 182.25406 10.78578 0.52256 0.29827 5.03998 @@ -53754,60 +53890,60 @@ Status character 76.23900 1.76580 76.23900 76.23900 402 100 P 76.14100 1.86390 76.14100 76.14100 402 100 P 76.06750 1.96200 76.06750 76.06750 402 100 P - 29.49981 68.86200 51.05077 4.73254 220 58 2 - 31.18305 69.45060 53.81170 4.98849 220 58 2 - 33.04324 70.03920 57.49295 5.32975 220 57 2 - 34.82905 70.62780 61.17419 5.67101 220 57 2 - 36.54322 71.21640 64.85543 6.01227 220 56 2 - 37.93440 71.80500 67.61636 6.26822 220 56 2 - 9.28551 71.80500 49.41323 9.32131 110 0 1 - 14.70586 72.69771 49.35826 9.55561 110 30 1 - 14.14165 73.59042 49.61712 9.91641 110 29 1 - 13.60556 74.48313 50.11297 10.27721 110 27 1 - 13.09659 75.37584 50.75151 10.63800 110 26 1 - 12.60930 76.26855 51.29123 10.90860 110 25 1 - 12.61820 76.26855 51.67530 11.08900 110 24 1 - 12.15604 77.16126 52.27958 11.35960 110 23 1 - 11.72254 78.05397 53.12261 11.72040 110 22 1 - 11.31236 78.94668 54.00062 12.08119 110 0 1 - 10.92461 79.83939 54.90557 12.44199 110 0 1 - 11.03951 80.73210 55.59789 12.71259 110 0 1 - 13.72437 80.73210 35.84031 14.56924 110 0 1 - 10.39131 84.71310 32.18078 11.28224 110 0 1 - 8.17971 88.69410 27.33574 9.10911 110 0 1 - 5.97524 92.67510 22.52396 6.93599 110 0 1 - 4.26368 96.65610 17.73824 4.76286 110 0 1 - 3.95890 100.63710 14.16208 3.13302 110 28 1 - 16.59924 100.63710 19.78289 1.93691 330 84 3 - 18.37818 102.01050 25.37256 2.49603 220 72 2 - 19.82432 103.38390 32.73186 3.24152 220 61 2 - 21.19936 104.75730 39.99110 3.98700 220 53 2 - 21.44977 106.13070 47.17203 4.73249 110 45 1 - 20.33445 107.50410 52.52169 5.29161 110 39 1 - 22.99073 107.50410 56.07436 5.66436 110 41 1 - 19.39249 108.87750 61.38955 6.22347 110 32 1 - 18.31531 110.25090 68.46250 6.96896 110 27 1 - 17.21785 111.62430 75.52819 7.71445 110 23 1 - 16.10880 112.99770 82.59411 8.45994 110 20 1 - 14.89028 114.37110 87.89635 9.01906 110 17 1 - 15.10337 114.37110 91.43342 9.39180 110 17 1 - 13.88894 115.74450 96.74306 9.95092 110 14 1 - 12.78764 117.11790 103.82983 10.69641 110 12 1 - 11.69490 118.49130 110.92550 11.44190 110 11 1 - 10.61267 119.86470 118.02984 12.18739 110 0 1 - 9.44389 121.23810 123.36324 12.74651 110 0 1 - 9.81663 121.23810 126.92141 13.11925 110 0 1 - 10.70731 122.61150 132.26229 13.67837 110 0 1 - 11.78607 123.98490 139.38900 14.42386 110 0 1 - 12.86582 125.35830 146.52174 15.16935 110 0 1 - 13.94582 126.73170 153.65983 15.91484 110 0 1 - 14.83896 128.10510 159.01640 16.47395 110 0 1 - 10.51056 128.10510 162.58890 12.14556 110 0 1 - 16.10408 129.47850 167.94962 17.40581 110 0 1 - 17.18234 130.85190 175.10024 18.15130 110 0 1 - 18.26027 132.22530 182.25406 18.89679 110 0 1 - 19.33800 133.59870 189.41070 19.64228 110 0 1 - 20.22930 134.97210 194.77975 20.20140 110 10 1 + 29.51741 68.86200 51.05077 4.73254 220 58 2 + 31.20228 69.45060 53.81170 4.98849 220 58 2 + 33.06410 70.03920 57.49295 5.32975 220 58 2 + 34.85152 70.62780 61.17419 5.67101 220 57 2 + 36.56730 71.21640 64.85543 6.01227 220 56 2 + 37.96009 71.80500 67.61636 6.26822 220 56 2 + 9.25718 71.80500 49.41323 9.28501 110 0 1 + 14.75707 72.69771 49.35826 9.55561 110 30 1 + 14.19203 73.59042 49.61712 9.91641 110 29 1 + 13.65494 74.48313 50.11297 10.27721 110 27 1 + 13.14480 75.37584 50.75151 10.63800 110 26 1 + 12.65614 76.26855 51.29123 10.90860 110 25 1 + 12.66504 76.26855 51.67530 11.08900 110 25 1 + 12.20131 77.16126 52.27958 11.35960 110 23 1 + 11.76602 78.05397 53.12261 11.72040 110 22 1 + 11.35386 78.94668 54.00062 12.08119 110 0 1 + 10.96394 79.83939 54.90557 12.44199 110 0 1 + 11.05768 80.73210 55.59789 12.71259 110 0 1 + 12.07213 80.73210 35.84031 12.91208 110 0 1 + 10.39651 84.71310 32.18078 11.28224 110 0 1 + 8.18515 88.69410 27.33574 9.10911 110 0 1 + 5.98087 92.67510 22.52396 6.93599 110 0 1 + 4.27369 96.65610 17.73824 4.76286 110 0 1 + 3.96926 100.63710 14.16208 3.13302 110 28 1 + 16.61478 100.63710 19.78289 1.93691 330 84 3 + 18.40958 102.01050 25.37256 2.49603 220 73 2 + 19.85573 103.38390 32.73186 3.24152 220 61 2 + 21.23048 104.75730 39.99110 3.98700 220 53 2 + 21.51072 106.13070 47.17203 4.73249 110 46 1 + 20.39340 107.50410 52.52169 5.29161 110 39 1 + 20.60590 107.50410 56.07436 5.66436 110 37 1 + 19.44868 108.87750 61.38955 6.22347 110 32 1 + 18.36800 110.25090 68.46250 6.96896 110 27 1 + 17.26635 111.62430 75.52819 7.71445 110 23 1 + 16.15247 112.99770 82.59411 8.45994 110 20 1 + 14.92855 114.37110 87.89635 9.01906 110 17 1 + 15.14164 114.37110 91.43342 9.39180 110 17 1 + 13.92128 115.74450 96.74306 9.95092 110 14 1 + 12.81356 117.11790 103.82983 10.69641 110 12 1 + 11.71395 118.49130 110.92550 11.44190 110 11 1 + 10.62445 119.86470 118.02984 12.18739 110 0 1 + 9.44046 121.23810 123.36324 12.74651 110 0 1 + 9.79242 121.23810 126.92141 13.11925 110 0 1 + 10.67547 122.61150 132.26229 13.67837 110 0 1 + 11.74645 123.98490 139.38900 14.42386 110 0 1 + 12.81831 125.35830 146.52174 15.16935 110 0 1 + 13.89036 126.73170 153.65983 15.91484 110 0 1 + 14.77555 128.10510 159.01640 16.47395 110 0 1 + 15.14830 128.10510 162.58890 16.84670 110 0 1 + 16.03278 129.47850 167.94962 17.40581 110 0 1 + 17.10320 130.85190 175.10024 18.15130 110 0 1 + 18.17333 132.22530 182.25406 18.89679 110 0 1 + 19.24329 133.59870 189.41070 19.64228 110 0 1 + 20.12682 134.97210 194.77975 20.20140 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -53821,10 +53957,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 36.488 'OWB' - -10.79 10.159 'Grind' - -11.09 11.324 'Hydrobiaklei' - -12.00 3.765 'Basisveen' - -12.50 55.781 'Eerste zandlaag' + -10.79 10.165 'Grind' + -11.09 11.362 'Hydrobiaklei' + -12.00 3.686 'Basisveen' + -12.50 55.928 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -53840,10 +53976,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 -3.62 'Grind' - -11.09 -2.10 'Hydrobiaklei' + -10.79 -3.63 'Grind' + -11.09 -2.11 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -18.90 'Eerste zandlaag' + -12.50 -18.95 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -54083,8 +54219,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 409.36925 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 523.67114 10000000.000 1 1 1 'Dek' + -10.19000 409.42981 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 523.66657 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -54145,10 +54281,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.74 : Percentage mobilized resistance left - 20.65 : Percentage mobilized resistance right - 145.71 : Effective left - 113.32 : Effective right + 29.75 : Percentage mobilized resistance left + 20.68 : Percentage mobilized resistance right + 145.80 : Effective left + 113.46 : Effective right 548.36 : Water pressure left 540.51 : Water pressure right 490.03 : Max effective resistance left @@ -54157,8 +54293,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 32.92 : Vertical force left - 15.16 : Vertical force right + 32.97 : Vertical force left + 15.21 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -54167,17 +54303,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.16 : Active force -32.92 : Passive force --15.16 : Plugged active force -32.92 : Plugged passive force +-15.21 : Active force +32.97 : Passive force +-15.21 : Plugged active force +32.97 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --82.25 : Resulting Vertical Force Unplugged --82.25 : Resulting Vertical Force Plugged +-82.24 : Resulting Vertical Force Unplugged +-82.24 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -54190,210 +54326,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.59552 - 0.12551 0.00000 -58.34039 - 0.25102 0.00000 -57.08527 - 0.37652 0.00000 -55.83018 - 0.50203 0.00000 -54.57512 - 0.62754 0.00000 -53.32011 - 0.62754 0.00000 -53.32011 - 0.75302 0.00000 -52.06517 - 0.87849 0.00000 -50.81031 - 1.00397 0.00000 -49.55553 - 1.12945 0.00000 -48.30086 - 1.25492 0.00000 -47.04630 - 1.25492 0.00000 -47.04630 - 1.42212 0.00000 -45.37376 - 1.58931 0.00000 -43.70148 - 1.75651 0.00000 -42.02949 - 1.92371 0.00000 -40.35781 - 2.09090 0.00000 -38.68648 - 2.09090 0.00000 -38.68648 - 2.23009 0.00000 -37.29400 - 2.36928 0.00000 -35.90179 - 2.50847 0.00000 -34.50989 - 2.64766 0.00000 -33.11830 - 2.78685 0.00000 -31.72705 - 2.78685 0.00000 -31.72705 - 2.92586 0.00000 -30.33614 - 3.06487 0.00000 -28.94561 - 3.20389 0.00000 -27.55546 - 3.34290 0.00000 -26.16571 - 3.48191 0.00000 -24.77639 - 3.48191 0.00000 -24.77639 - 3.60129 0.00000 -23.58192 - 3.72067 0.00000 -22.38778 - 3.84005 0.00000 -21.19400 - 3.95942 0.00000 -20.00057 - 4.07880 0.00000 -18.80751 - 4.07880 439.90000 -18.80751 - 54.38193 439.90000 -17.22797 - 104.68505 439.90000 -15.65733 - 154.98818 439.90000 -14.10383 - 205.29131 439.90000 -12.57571 - 255.59443 439.90000 -11.08119 - 255.59535 439.88200 -11.08119 - 290.88308 439.88200 -10.05691 - 326.17081 439.88200 -9.05608 - 361.45854 439.88200 -8.08155 - 396.74627 439.88200 -7.13616 - 432.03399 439.88200 -6.22276 - 432.03374 -83.79105 -6.22276 - 430.37979 -83.79105 -5.99973 - 428.72584 -83.79105 -5.77887 - 427.07189 -83.79105 -5.56017 - 425.41793 -83.79105 -5.34363 - 423.76398 -83.79105 -5.12923 - 423.76395 -83.79060 -5.12923 - 415.47864 -83.79060 -4.08908 - 407.19334 -83.79060 -3.10127 - 398.90803 -83.79060 -2.16476 - 390.62273 -83.79060 -1.27850 - 382.33743 -83.79060 -0.44146 - 382.33728 -83.78543 -0.44146 - 374.02841 -83.78543 0.34742 - 365.71954 -83.78543 1.08918 - 357.41066 -83.78543 1.78486 - 349.10179 -83.78543 2.43552 - 340.79292 -83.78543 3.04220 - 340.79293 -83.78500 3.04220 - 332.46264 -83.78500 3.60595 - 324.13235 -83.78500 4.12781 - 315.80206 -83.78500 4.60884 - 307.47177 -83.78500 5.05008 - 299.14147 -83.78500 5.45259 - 299.14143 -83.78431 5.45259 - 287.44805 -83.78431 5.95303 - 275.75467 -83.78431 6.38248 - 264.06130 -83.78431 6.74385 - 252.36792 -83.78431 7.04001 - 240.67454 -83.78431 7.27386 - 240.67447 -83.78278 7.27386 - 229.78978 -83.78278 7.43773 - 218.90508 -83.78278 7.55268 - 208.02039 -83.78278 7.62101 - 197.13569 -83.78278 7.64506 - 186.25100 -83.78278 7.62714 - 186.25115 -83.78306 7.62714 - 175.34659 -83.78306 7.56956 - 164.44203 -83.78306 7.47465 - 153.53747 -83.78306 7.34473 - 142.63291 -83.78306 7.18212 - 131.72836 -83.78306 6.98914 - 131.72835 -83.78308 6.98914 - 119.17113 -83.78308 6.73269 - 106.61391 -83.78308 6.44268 - 94.05669 -83.78308 6.12265 - 81.49947 -83.78308 5.77614 - 68.94225 -83.78308 5.40668 - 68.94225 -83.78308 5.40668 - 56.37533 -83.78308 5.01780 - 43.80840 -83.78308 4.61305 - 31.24148 -83.78308 4.19597 - 18.67455 -83.78308 3.77009 - 6.10763 -83.78308 3.33895 - 6.10648 -83.77725 3.33895 - -6.46043 -83.77725 2.90609 - -19.02734 -83.77725 2.47505 - -31.59425 -83.77725 2.04937 - -44.16117 -83.77725 1.63259 - -56.72808 -83.77725 1.22824 - -56.72643 -83.76711 1.22824 - -69.28384 -83.76711 0.83986 - -81.84125 -83.76711 0.47099 - -94.39866 -83.76711 0.12517 - -106.95607 -83.76711 -0.19408 - -119.51349 -83.76711 -0.48320 - -119.51278 -83.75505 -0.48320 - -119.68060 -83.67627 -0.48685 - -119.84816 -83.52027 -0.49049 - -120.01541 -83.36427 -0.49413 - -120.18235 -83.20827 -0.49776 - -120.34897 -83.05227 -0.50138 - -120.34897 -83.05229 -0.50138 - -123.45495 -80.08828 -0.56907 - -126.44830 -77.12425 -0.63450 - -129.32901 -74.16021 -0.69764 - -132.09709 -71.19616 -0.75843 - -134.75254 -68.23209 -0.81682 - -134.75254 55.79864 -0.81682 - -133.62381 57.35868 -0.84657 - -132.46387 58.91873 -0.87564 - -131.27274 60.47878 -0.90405 - -130.05041 62.03883 -0.93180 - -128.79687 63.59889 -0.95889 - -128.79693 63.60143 -0.95889 - -124.89482 65.91822 -1.03630 - -120.94636 65.91840 -1.10804 - -116.99790 65.91858 -1.17430 - -113.04942 65.91876 -1.23525 - -109.10094 65.91894 -1.29107 - -109.10093 65.91890 -1.29107 - -107.12555 65.92009 -1.31712 - -105.15016 65.92018 -1.34195 - -103.17476 65.92027 -1.36559 - -101.19936 65.92036 -1.38806 - -99.22397 65.91935 -1.40938 - -99.22397 65.91933 -1.40938 - -98.56539 65.91936 -1.41624 - -97.90680 65.91939 -1.42297 - -97.24821 65.91942 -1.42958 - -96.58962 65.91945 -1.43606 - -95.93103 65.91948 -1.44243 - -95.93090 65.91671 -1.44243 - -92.05410 63.35864 -1.47811 - -88.33633 60.62202 -1.50962 - -84.78747 57.72970 -1.53711 - -81.41665 54.68838 -1.56075 - -78.23241 51.51481 -1.58071 - -78.23188 51.49540 -1.58071 - -73.61174 50.05070 -1.60425 - -69.12426 48.60205 -1.62012 - -64.76572 47.21729 -1.62877 - -60.53018 45.89942 -1.63065 - -56.41153 44.64723 -1.62622 - -56.41170 44.64783 -1.62622 - -52.40107 43.47549 -1.61591 - -48.49400 42.37350 -1.60014 - -44.68375 41.34774 -1.57930 - -40.96332 40.39996 -1.55379 - -37.32631 39.50568 -1.52401 - -37.32631 39.50382 -1.52401 - -33.40396 38.91759 -1.48681 - -29.53326 38.44132 -1.44541 - -25.70919 37.98438 -1.40028 - -21.93075 37.52055 -1.35191 - -18.20029 37.02430 -1.30078 - -18.19896 37.02212 -1.30078 - -13.17575 34.38724 -1.22553 - -8.61309 30.65199 -1.14705 - -4.59907 26.60229 -1.06632 - -1.15376 22.59304 -0.98433 - 1.74128 18.70167 -0.90206 - 1.74099 18.69051 -0.90206 - 4.07201 14.59438 -0.82038 - 5.84562 10.74304 -0.73972 - 7.10172 7.21056 -0.66038 - 7.88755 4.02512 -0.58269 - 8.25372 1.22944 -0.50696 - 8.25228 1.21407 -0.50696 - 8.25630 -1.10856 -0.43338 - 7.96829 -2.95702 -0.36183 - 7.45469 -4.33235 -0.29220 - 6.78128 -5.24103 -0.22437 - 6.01213 -5.70704 -0.15823 - 6.01335 -5.68500 -0.15823 - 5.20434 -5.86308 -0.09360 - 4.38108 -5.88930 -0.03025 - 3.56454 -5.76747 0.03202 - 2.77524 -5.50075 0.09340 - 2.03328 -5.09159 0.15409 - 2.03333 -5.09089 0.15409 - 1.38691 -4.22947 0.21430 - 0.84177 -3.54032 0.27418 - 0.40497 -2.66657 0.33382 - 0.10921 -1.50679 0.39333 - -0.00001 -0.00005 0.45281 + 0.00000 0.00000 -59.59700 + 0.12551 0.00000 -58.34181 + 0.25103 0.00000 -57.08664 + 0.37654 0.00000 -55.83149 + 0.50205 0.00000 -54.57638 + 0.62757 0.00000 -53.32133 + 0.62757 0.00000 -53.32133 + 0.75305 0.00000 -52.06633 + 0.87853 0.00000 -50.81142 + 1.00401 0.00000 -49.55659 + 1.12949 0.00000 -48.30187 + 1.25497 0.00000 -47.04726 + 1.25497 0.00000 -47.04726 + 1.42218 0.00000 -45.37465 + 1.58938 0.00000 -43.70229 + 1.75658 0.00000 -42.03023 + 1.92379 0.00000 -40.35848 + 2.09099 0.00000 -38.68708 + 2.09099 0.00000 -38.68708 + 2.23019 0.00000 -37.29454 + 2.36938 0.00000 -35.90228 + 2.50858 0.00000 -34.51032 + 2.64777 0.00000 -33.11867 + 2.78696 0.00000 -31.72736 + 2.78696 0.00000 -31.72736 + 2.92598 0.00000 -30.33640 + 3.06500 0.00000 -28.94580 + 3.20402 0.00000 -27.55559 + 3.34304 0.00000 -26.16579 + 3.48206 0.00000 -24.77641 + 3.48206 0.00000 -24.77641 + 3.60144 0.00000 -23.58189 + 3.72082 0.00000 -22.38771 + 3.84021 0.00000 -21.19387 + 3.95959 0.00000 -20.00039 + 4.07897 0.00000 -18.80728 + 4.07897 439.90000 -18.80728 + 54.38210 439.90000 -17.22767 + 104.68524 439.90000 -15.65697 + 154.98837 439.90000 -14.10340 + 205.29150 439.90000 -12.57521 + 255.59464 439.90000 -11.08064 + 255.59556 439.88198 -11.08064 + 290.88329 439.88198 -10.05631 + 326.17102 439.88198 -9.05543 + 361.45875 439.88198 -8.08085 + 396.74648 439.88198 -7.13542 + 432.03422 439.88198 -6.22197 + 432.03396 -83.78650 -6.22197 + 430.38010 -83.78650 -5.99893 + 428.72624 -83.78650 -5.77806 + 427.07238 -83.78650 -5.55935 + 425.41852 -83.78650 -5.34279 + 423.76467 -83.78650 -5.12838 + 423.76463 -83.78605 -5.12838 + 415.47978 -83.78605 -4.08817 + 407.19494 -83.78605 -3.10031 + 398.91010 -83.78605 -2.16374 + 390.62525 -83.78605 -1.27743 + 382.34041 -83.78605 -0.44033 + 382.34026 -83.78088 -0.44033 + 374.03185 -83.78088 0.34861 + 365.72344 -83.78088 1.09042 + 357.41503 -83.78088 1.78616 + 349.10662 -83.78088 2.43687 + 340.79821 -83.78088 3.04361 + 340.79822 -83.78045 3.04361 + 332.46839 -83.78045 3.60741 + 324.13856 -83.78045 4.12932 + 315.80873 -83.78045 4.61040 + 307.47889 -83.78045 5.05170 + 299.14906 -83.78045 5.45426 + 299.14902 -83.77976 5.45426 + 287.45628 -83.77976 5.95476 + 275.76355 -83.77976 6.38429 + 264.07082 -83.77976 6.74572 + 252.37808 -83.77976 7.04194 + 240.68535 -83.77976 7.27585 + 240.68528 -83.77822 7.27585 + 229.80118 -83.77822 7.43977 + 218.91708 -83.77822 7.55477 + 208.03298 -83.77822 7.62316 + 197.14888 -83.77822 7.64725 + 186.26478 -83.77822 7.62937 + 186.26494 -83.77850 7.62937 + 175.36097 -83.77850 7.57183 + 164.45701 -83.77850 7.47696 + 153.55305 -83.77850 7.34707 + 142.64909 -83.77850 7.18449 + 131.74513 -83.77850 6.99154 + 131.74512 -83.77852 6.99154 + 119.18859 -83.77852 6.73511 + 106.63205 -83.77852 6.44512 + 94.07551 -83.77852 6.12511 + 81.51898 -83.77852 5.77861 + 68.96244 -83.77852 5.40915 + 68.96244 -83.77852 5.40915 + 56.39619 -83.77852 5.02028 + 43.82995 -83.77852 4.61552 + 31.26370 -83.77852 4.19843 + 18.69746 -83.77852 3.77253 + 6.13122 -83.77852 3.34137 + 6.13007 -83.77269 3.34137 + -6.43616 -83.77269 2.90848 + -19.00240 -83.77269 2.47740 + -31.56864 -83.77269 2.05167 + -44.13488 -83.77269 1.63483 + -56.70111 -83.77269 1.23042 + -56.69961 -83.76028 1.23042 + -69.25600 -83.76028 0.84198 + -81.81240 -83.76028 0.47303 + -94.36880 -83.76028 0.12713 + -106.92520 -83.76028 -0.19221 + -119.48160 -83.76028 -0.48144 + -119.48088 -83.74814 -0.48144 + -119.64869 -83.66936 -0.48509 + -119.81623 -83.51336 -0.48873 + -119.98347 -83.35736 -0.49237 + -120.15039 -83.20136 -0.49600 + -120.31700 -83.04536 -0.49962 + -120.31700 -83.04538 -0.49962 + -123.42272 -80.08137 -0.56733 + -126.41581 -77.11734 -0.63280 + -129.29626 -74.15330 -0.69597 + -132.06408 -71.18925 -0.75679 + -134.71927 -68.22518 -0.81520 + -134.71927 55.74499 -0.81520 + -133.59161 57.30503 -0.84497 + -132.43275 58.86507 -0.87406 + -131.24269 60.42512 -0.90248 + -130.02143 61.98518 -0.93025 + -128.76897 63.54524 -0.95735 + -128.76897 63.54513 -0.95735 + -124.87024 65.86192 -1.03481 + -120.92517 65.86210 -1.10660 + -116.98009 65.86228 -1.17291 + -113.03499 65.86246 -1.23392 + -109.08989 65.86264 -1.28980 + -109.08989 65.86252 -1.28980 + -107.11621 65.86372 -1.31587 + -105.14251 65.86381 -1.34073 + -103.16880 65.86390 -1.36439 + -101.19510 65.86399 -1.38689 + -99.22140 65.86297 -1.40824 + -99.22140 65.86296 -1.40824 + -98.56338 65.86299 -1.41510 + -97.90536 65.86302 -1.42184 + -97.24733 65.86305 -1.42846 + -96.58931 65.86308 -1.43496 + -95.93129 65.86311 -1.44133 + -95.93115 65.86033 -1.44133 + -92.05880 63.27546 -1.47707 + -88.34605 60.53827 -1.50863 + -84.80223 57.64534 -1.53618 + -81.43650 54.60336 -1.55987 + -78.25739 51.42908 -1.57988 + -78.25685 51.40965 -1.57988 + -73.64449 49.96457 -1.60350 + -69.16503 48.51212 -1.61945 + -64.81485 47.12367 -1.62817 + -60.58799 45.80222 -1.63011 + -56.47835 44.54659 -1.62573 + -56.47843 44.54484 -1.62573 + -52.47733 43.36921 -1.61548 + -48.58007 42.26411 -1.59975 + -44.77992 41.23542 -1.57895 + -41.06983 40.28493 -1.55346 + -37.44339 39.38903 -1.52369 + -37.44339 39.38710 -1.52369 + -33.52720 38.88352 -1.48650 + -29.65992 38.40716 -1.44508 + -25.83925 37.95027 -1.39992 + -22.06423 37.48627 -1.35150 + -18.33722 36.98965 -1.30031 + -18.33591 36.98788 -1.30031 + -13.31650 34.36355 -1.22494 + -8.75719 30.62716 -1.14631 + -4.74686 26.57403 -1.06539 + -1.30574 22.56176 -0.98317 + 1.58484 18.66902 -0.90063 + 1.58455 18.65780 -0.90063 + 3.91994 14.65711 -0.81866 + 5.70225 10.80428 -0.73765 + 6.96683 7.27019 -0.65794 + 7.76094 4.08360 -0.57984 + 8.13535 1.28919 -0.50368 + 8.13391 1.27370 -0.50368 + 8.14655 -1.04491 -0.42962 + 7.86783 -2.88806 -0.35758 + 7.36435 -4.25672 -0.28743 + 6.70210 -5.15727 -0.21906 + 5.94544 -5.61165 -0.15236 + 5.94666 -5.58964 -0.15236 + 5.15205 -5.75254 -0.08715 + 4.34542 -5.76201 -0.02321 + 3.54799 -5.62182 0.03966 + 2.78047 -5.33509 0.10164 + 2.06321 -4.90430 0.16294 + 2.06326 -4.90360 0.16294 + 1.41559 -4.33055 0.22375 + 0.85802 -3.61652 0.28421 + 0.41231 -2.71794 0.34444 + 0.11109 -1.53332 0.40453 + -0.00001 -0.00005 0.46459 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -54514,43 +54650,43 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.32000 4.99100 40.00000 25.74054 25.74054 - -10.38000 23.09000 1.00000 30.42076 30.42076 - -10.44000 2.00000 83.00000 35.10101 35.10101 - -10.50000 23.00000 1.00000 39.78130 39.78130 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.59000 4.00000 16.00000 46.80180 46.80180 - -10.60500 19.00000 71.00000 47.97189 47.97189 - -10.63500 22.98800 22.99000 50.31208 50.31208 - -10.66500 28.00000 5.00000 52.65228 52.65228 - -10.69500 19.20000 20.00000 54.99249 54.99249 - -10.72500 17.00000 16.93000 57.33270 57.33270 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.82000 71.51400 34.34100 64.16500 62.48349 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.32000 1.00000 1.00000 25.74054 25.74054 + -10.38000 1.00000 1.00000 30.42076 30.42076 + -10.44000 1.00000 1.00000 35.10101 35.10101 + -10.50000 1.00000 1.00000 39.78130 39.78130 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.59000 1.00000 1.00000 46.80180 46.80180 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.63500 1.00000 1.00000 50.31208 50.31208 + -10.66500 1.00000 1.00000 52.65228 52.65228 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.72500 1.00000 1.00000 57.33270 57.33270 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.82000 71.51400 34.34000 64.16500 62.48349 -10.88000 71.51400 34.34100 67.87878 62.67722 -10.94000 71.51400 34.34100 71.81343 62.88249 -11.00000 71.51400 34.34100 75.96895 63.09927 @@ -54624,8 +54760,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -54643,19 +54779,19 @@ Lambda passive -10.47000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.53000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.59000 78.00600 78.00585 78.00585 1.00000 1.00000 1.00000 - -10.59000 78.00600 78.00607 78.00608 1.00000 1.00000 1.00000 + -10.59000 78.00600 78.00607 78.00607 1.00000 1.00000 1.00000 -10.62000 78.00630 78.00630 78.00630 1.00000 1.00000 1.00000 -10.65000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.68000 78.00690 78.00690 78.00690 1.00000 1.00000 1.00000 -10.71000 78.00720 78.00720 78.00720 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00743 78.00742 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00743 78.00743 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 59.13536 3.08494 0.67093 0.28603 5.48293 + -10.79000 10.61750 59.13536 3.08494 0.50828 0.28603 5.48293 -10.85000 11.28890 61.89629 3.22897 0.50828 0.28603 5.48293 -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.97000 12.63170 69.25877 3.61306 0.50828 0.28603 5.48293 @@ -54685,7 +54821,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -54844,13 +54980,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00205 0.00000 78.00205 78.00205 402 100 P 78.00220 0.00000 78.00220 78.00220 402 100 P 78.00240 0.00000 78.00240 78.00240 402 100 P @@ -54862,73 +54998,73 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00540 0.00000 78.00540 78.00540 1 100 A - 78.00585 0.00000 78.00585 78.00585 1 0 A - 78.00608 0.00000 78.00608 78.00608 1 100 A + 78.00585 0.00000 78.00585 78.00585 1 100 A + 78.00607 0.00000 78.00607 78.00608 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00720 0.00000 78.00720 78.00720 1 100 A - 78.00742 0.00000 78.00743 78.00743 1 0 A + 78.00743 0.00000 78.00743 78.00743 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.08494 67.39050 59.13536 7.23620 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.08494 67.39050 59.13536 5.48201 1 0 A 3.22897 67.97910 61.89629 5.73795 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.61306 69.15630 69.25877 6.42048 1 0 A 3.80510 69.74490 72.94002 6.76174 1 0 A 3.94913 70.33350 75.70095 7.01768 1 0 A 0.45753 70.33350 52.80064 10.36963 1 0 A - 5.38861 71.22621 52.76452 10.64023 110 0 1 - 5.74812 72.11892 53.02490 11.00103 110 0 1 - 6.12834 73.01163 53.51177 11.36183 110 0 1 - 6.52784 73.90434 54.13832 11.72262 110 0 1 - 6.85497 74.79705 54.66869 11.99322 110 0 1 - 7.03537 74.79705 55.04663 12.17362 110 0 1 - 7.37893 75.68976 55.64206 12.44422 110 0 1 - 7.82786 76.58247 56.47400 12.80502 110 0 1 - 8.29070 77.47518 57.34182 13.16581 110 0 1 - 8.76619 78.36789 58.23745 13.52661 110 0 1 - 9.16290 79.26060 58.92328 13.79721 110 0 1 - 11.50399 79.26060 38.46255 14.05198 110 0 1 - 10.12494 83.24160 34.78760 12.42214 110 0 1 - 8.08754 87.22260 29.92326 10.24902 110 0 1 - 5.99958 91.20360 25.09365 8.07589 110 0 1 - 3.91550 95.18460 20.29148 5.90277 110 0 1 - 2.37781 99.16560 16.70379 4.27292 110 0 1 - 8.60384 99.16560 27.51935 2.70743 110 31 1 + 5.39148 71.22621 52.76452 10.64023 110 0 1 + 5.75066 72.11892 53.02490 11.00103 110 0 1 + 6.13056 73.01163 53.51177 11.36183 110 0 1 + 6.52976 73.90434 54.13832 11.72262 110 0 1 + 6.85660 74.79705 54.66869 11.99322 110 0 1 + 7.03700 74.79705 55.04663 12.17362 110 0 1 + 7.38030 75.68976 55.64206 12.44422 110 0 1 + 7.82899 76.58247 56.47400 12.80502 110 0 1 + 8.29161 77.47518 57.34182 13.16581 110 0 1 + 8.76693 78.36789 58.23745 13.52661 110 0 1 + 9.16349 79.26060 58.92328 13.79721 110 0 1 + 11.50170 79.26060 38.46255 14.05198 110 0 1 + 10.12257 83.24160 34.78760 12.42214 110 0 1 + 8.08775 87.22260 29.92326 10.24902 110 0 1 + 5.99979 91.20360 25.09365 8.07589 110 0 1 + 3.91573 95.18460 20.29148 5.90277 110 0 1 + 2.37810 99.16560 16.70379 4.27292 110 0 1 + 8.75442 99.16560 27.51935 2.70743 110 32 1 1.85350 100.53900 33.02991 3.26655 1 0 A 2.27733 101.91240 40.29427 4.01204 1 0 A 2.70157 103.28580 47.47851 4.75752 1 0 A 3.12622 104.65920 54.60600 5.50301 1 0 A 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A + 3.65754 106.03260 63.46711 6.43488 1 0 A 3.97660 107.40600 68.76890 6.99399 1 0 A 4.40227 108.77940 75.83214 7.73948 1 0 A 4.82819 110.15280 82.89494 8.48497 1 0 A 5.25430 111.52620 89.96218 9.23046 1 0 A - 6.17041 112.89960 95.26699 9.78958 110 0 1 - 6.54316 112.89960 98.80627 10.16232 110 0 1 - 7.76257 114.27300 104.11963 10.72144 110 0 1 - 9.14203 115.64640 111.21161 11.46693 110 0 1 - 10.49721 117.01980 118.31241 12.21242 110 0 1 - 11.83018 118.39320 125.42156 12.95791 110 0 1 - 12.95665 119.76660 130.75828 13.51703 110 0 1 - 13.32939 119.76660 134.31851 13.88977 110 0 1 - 14.43827 121.14000 139.66222 14.44889 110 0 1 - 15.71870 122.51340 146.79231 15.19438 110 11 1 - 16.98670 123.88680 153.92796 15.93987 110 11 1 - 18.24468 125.26020 161.06855 16.68536 110 11 1 - 19.30866 126.63360 166.42676 17.24447 110 12 1 - 19.68140 126.63360 170.00024 17.61722 110 12 1 - 20.74013 128.00700 175.36228 18.17633 110 12 1 - 21.98152 129.38040 182.51443 18.92182 110 12 1 - 23.87893 130.75380 189.66955 19.66731 110 13 1 - 26.57344 132.12720 196.82728 20.41280 110 14 1 - 29.15662 133.50060 202.19703 20.97192 110 14 1 + 6.19690 112.89960 95.26699 9.78958 110 0 1 + 6.56964 112.89960 98.80627 10.16232 110 0 1 + 7.79354 114.27300 104.11963 10.72144 110 0 1 + 9.17775 115.64640 111.21161 11.46693 110 0 1 + 10.53793 117.01980 118.31241 12.21242 110 0 1 + 11.87614 118.39320 125.42156 12.95791 110 0 1 + 13.00803 119.76660 130.75828 13.51703 110 0 1 + 13.38077 119.76660 134.31851 13.88977 110 0 1 + 14.49524 121.14000 139.66222 14.44889 110 10 1 + 15.78139 122.51340 146.79231 15.19438 110 11 1 + 17.05521 123.88680 153.92796 15.93987 110 11 1 + 18.31903 125.26020 161.06855 16.68536 110 11 1 + 19.38885 126.63360 166.42676 17.24447 110 12 1 + 19.76160 126.63360 170.00024 17.61722 110 12 1 + 20.82611 128.00700 175.36228 18.17633 110 12 1 + 22.07323 129.38040 182.51443 18.92182 110 12 1 + 23.95291 130.75380 189.66955 19.66731 110 13 1 + 26.65385 132.12720 196.82728 20.41280 110 14 1 + 29.24346 133.50060 202.19703 20.97192 110 14 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -54943,9 +55079,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 6.171 'Hydrobiaklei' + -11.09 6.172 'Hydrobiaklei' -12.00 3.507 'Basisveen' - -12.50 40.270 'Eerste zandlaag' + -12.50 40.413 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -54964,7 +55100,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -1.15 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.64 'Eerste zandlaag' + -12.50 -13.69 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -55088,26 +55224,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.60500 34.00000 12.00000 24.56939 24.56939 - -10.63500 17.43000 17.40000 26.90066 26.90066 - -10.66500 9.00600 53.00000 29.22311 29.22311 - -10.69500 14.00800 13.60000 31.53674 31.53674 - -10.72500 4.00000 45.00000 33.84155 33.84155 - -10.74000 23.00000 2.00000 34.99065 34.99065 - -10.74500 16.90000 16.00000 35.37319 35.37319 - -10.75500 82.00000 16.00000 36.13754 36.13754 - -10.76500 17.00000 66.00000 36.90091 36.90091 - -10.77500 25.00000 15.00000 37.66330 37.66330 - -10.78500 3.00000 8.00000 38.42471 38.42471 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.60500 1.00000 1.00000 24.56939 24.56939 + -10.63500 1.00000 1.00000 26.90066 26.90066 + -10.66500 1.00000 1.00000 29.22311 29.22311 + -10.69500 1.00000 1.00000 31.53674 31.53674 + -10.72500 1.00000 1.00000 33.84155 33.84155 + -10.74000 1.00000 1.00000 34.99065 34.99065 + -10.74500 1.00000 1.00000 35.37319 35.37319 + -10.75500 1.00000 1.00000 36.13754 36.13754 + -10.76500 1.00000 1.00000 36.90091 36.90091 + -10.77500 1.00000 1.00000 37.66330 37.66330 + -10.78500 1.00000 1.00000 38.42471 38.42471 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -55199,7 +55335,7 @@ Lambda passive -10.97000 11.15720 61.17419 3.19130 0.50828 0.28603 5.48293 -11.03000 11.82860 64.85543 3.38334 0.50828 0.28603 5.48293 -11.09000 12.50000 67.61636 3.52738 0.50828 0.28603 5.48293 - -11.09000 12.50000 49.41323 -0.28341 0.73846 0.00000 3.91466 + -11.09000 12.50000 49.41323 -0.28341 0.73559 0.00000 3.91466 -11.18100 12.99049 49.35826 -0.08130 0.73559 0.00000 3.79957 -11.27200 13.48098 49.61712 0.17666 0.73559 0.01310 3.68053 -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 @@ -55211,7 +55347,7 @@ Lambda passive -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 -11.90900 16.91441 54.90557 1.93654 0.73559 0.11449 3.24608 -12.00000 17.40490 55.59789 2.12459 0.73559 0.12293 3.21705 - -12.00000 17.40490 35.84031 6.54790 0.87230 0.39204 2.14585 + -12.00000 17.40490 35.84031 6.54790 0.77308 0.39204 2.14585 -12.10000 14.59390 32.18078 5.22073 0.77308 0.35773 2.20508 -12.20000 11.78290 27.33574 3.45081 0.77308 0.29287 2.31995 -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 @@ -55241,7 +55377,7 @@ Lambda passive -15.02000 29.02870 146.52174 8.65398 0.52256 0.29812 5.04748 -15.16000 30.45530 153.65983 9.08040 0.52256 0.29816 5.04542 -15.30000 31.88190 159.01640 9.40020 0.52256 0.29818 5.04410 - -15.30000 31.88190 162.58890 9.61339 0.37674 0.29820 5.04331 + -15.30000 31.88190 162.58890 9.61339 0.52256 0.29820 5.04331 -15.44000 33.30850 167.94962 9.93315 0.52256 0.29822 5.04225 -15.58000 34.73510 175.10024 10.35948 0.52256 0.29824 5.04102 -15.72000 36.16170 182.25406 10.78578 0.52256 0.29827 5.03998 @@ -55413,60 +55549,60 @@ Status character 76.23900 1.76580 76.23900 76.23900 402 100 P 76.14100 1.86390 76.14100 76.14100 402 100 P 76.06750 1.96200 76.06750 76.06750 402 100 P - 42.59759 68.86200 51.05077 4.73254 330 83 3 - 46.04214 69.45060 53.81170 4.98849 330 86 3 - 48.88569 70.03920 57.49295 5.32975 330 85 3 - 51.61583 70.62780 61.17419 5.67101 330 84 3 - 54.23685 71.21640 64.85543 6.01227 330 84 3 - 56.35988 71.80500 67.61636 6.26822 330 83 3 - 14.47590 71.80500 49.41323 9.32131 110 29 1 - 20.17892 72.69771 49.35826 9.55561 110 41 1 - 19.85333 73.59042 49.61712 9.91641 110 40 1 - 19.51426 74.48313 50.11297 10.27721 110 39 1 - 19.16319 75.37584 50.75151 10.63800 110 38 1 - 18.79716 76.26855 51.29123 10.90860 110 37 1 - 18.80606 76.26855 51.67530 11.08900 110 36 1 - 18.43093 77.16126 52.27958 11.35960 110 35 1 - 18.05243 78.05397 53.12261 11.72040 110 34 1 - 17.66735 78.94668 54.00062 12.08119 110 33 1 - 17.27694 79.83939 54.90557 12.44199 110 31 1 - 17.36357 80.73210 55.59789 12.71259 110 31 1 - 16.88640 80.73210 35.84031 14.56924 110 47 1 - 13.52425 84.71310 32.18078 11.28224 110 42 1 - 11.27059 88.69410 27.33574 9.10911 110 41 1 - 9.01230 92.67510 22.52396 6.93599 110 40 1 - 7.23639 96.65610 17.73824 4.76286 110 41 1 - 6.03895 100.63710 14.16208 3.13302 110 43 1 + 43.48230 68.86200 51.05077 4.73254 330 85 3 + 46.05115 69.45060 53.81170 4.98849 330 86 3 + 48.89549 70.03920 57.49295 5.32975 330 85 3 + 51.62643 70.62780 61.17419 5.67101 330 84 3 + 54.24825 71.21640 64.85543 6.01227 330 84 3 + 56.37206 71.80500 67.61636 6.26822 330 83 3 + 14.44200 71.80500 49.41323 9.28501 110 29 1 + 20.22404 72.69771 49.35826 9.55561 110 41 1 + 19.89709 73.59042 49.61712 9.91641 110 40 1 + 19.55651 74.48313 50.11297 10.27721 110 39 1 + 19.20375 75.37584 50.75151 10.63800 110 38 1 + 18.83585 76.26855 51.29123 10.90860 110 37 1 + 18.84475 76.26855 51.67530 11.08900 110 36 1 + 18.46756 77.16126 52.27958 11.35960 110 35 1 + 18.08680 78.05397 53.12261 11.72040 110 34 1 + 17.69928 78.94668 54.00062 12.08119 110 33 1 + 17.30626 79.83939 54.90557 12.44199 110 32 1 + 17.37129 80.73210 55.59789 12.71259 110 31 1 + 15.22894 80.73210 35.84031 12.91208 110 42 1 + 13.52401 84.71310 32.18078 11.28224 110 42 1 + 11.27038 88.69410 27.33574 9.10911 110 41 1 + 9.01209 92.67510 22.52396 6.93599 110 40 1 + 7.24038 96.65610 17.73824 4.76286 110 41 1 + 6.04290 100.63710 14.16208 3.13302 110 43 1 19.78289 100.63710 19.78289 1.93691 402 100 P 25.37256 102.01050 25.37256 2.49603 402 100 P - 29.17598 103.38390 32.73186 3.24152 330 89 3 - 30.71274 104.75730 39.99110 3.98700 220 77 2 - 29.44715 106.13070 47.17203 4.73249 220 62 2 - 29.77196 107.50410 52.52169 5.29161 220 57 2 - 32.15123 107.50410 56.07436 5.66436 220 57 2 - 31.05615 108.87750 61.38955 6.22347 220 51 2 - 29.39888 110.25090 68.46250 6.96896 110 43 1 - 27.35245 111.62430 75.52819 7.71445 110 36 1 - 25.29346 112.99770 82.59411 8.45994 110 31 1 - 23.12653 114.37110 87.89635 9.01906 110 26 1 - 23.34771 114.37110 91.43342 9.39180 110 26 1 - 21.19554 115.74450 96.74306 9.95092 110 22 1 - 19.17262 117.11790 103.82983 10.69641 110 18 1 - 17.17121 118.49130 110.92550 11.44190 110 15 1 - 15.19423 119.86470 118.02984 12.18739 110 13 1 - 13.30688 121.23810 123.36324 12.74651 110 11 1 - 13.67963 121.23810 126.92141 13.11925 110 11 1 - 13.68899 122.61150 132.26229 13.67837 110 10 1 - 13.89954 123.98490 139.38900 14.42386 110 0 1 - 14.12251 125.35830 146.52174 15.16935 110 0 1 - 14.35551 126.73170 153.65983 15.91484 110 0 1 - 14.40977 128.10510 159.01640 16.47395 110 0 1 - 10.33041 128.10510 162.58890 12.14556 110 0 1 - 14.84202 129.47850 167.94962 17.40581 110 0 1 - 15.09161 130.85190 175.10024 18.15130 110 0 1 - 15.34376 132.22530 182.25406 18.89679 110 0 1 - 15.59735 133.59870 189.41070 19.64228 110 0 1 - 15.66486 134.97210 194.77975 20.20140 110 0 1 + 29.19229 103.38390 32.73186 3.24152 330 89 3 + 30.74541 104.75730 39.99110 3.98700 220 77 2 + 29.45750 106.13070 47.17203 4.73249 220 62 2 + 29.78128 107.50410 52.52169 5.29161 220 57 2 + 30.77957 107.50410 56.07436 5.66436 220 55 2 + 31.06423 108.87750 61.38955 6.22347 220 51 2 + 29.41212 110.25090 68.46250 6.96896 110 43 1 + 27.36238 111.62430 75.52819 7.71445 110 36 1 + 25.29970 112.99770 82.59411 8.45994 110 31 1 + 23.12872 114.37110 87.89635 9.01906 110 26 1 + 23.34990 114.37110 91.43342 9.39180 110 26 1 + 21.19334 115.74450 96.74306 9.95092 110 22 1 + 19.16567 117.11790 103.82983 10.69641 110 18 1 + 17.15922 118.49130 110.92550 11.44190 110 15 1 + 15.17686 119.86470 118.02984 12.18739 110 13 1 + 13.25550 121.23810 123.36324 12.74651 110 11 1 + 13.62825 121.23810 126.92141 13.11925 110 11 1 + 13.63201 122.61150 132.26229 13.67837 110 0 1 + 13.83684 123.98490 139.38900 14.42386 110 0 1 + 14.05400 125.35830 146.52174 15.16935 110 0 1 + 14.28116 126.73170 153.65983 15.91484 110 0 1 + 14.32957 128.10510 159.01640 16.47395 110 0 1 + 14.70232 128.10510 162.58890 16.84670 110 0 1 + 14.75604 129.47850 167.94962 17.40581 110 0 1 + 14.99990 130.85190 175.10024 18.15130 110 0 1 + 15.24636 132.22530 182.25406 18.89679 110 0 1 + 15.49429 133.59870 189.41070 19.64228 110 0 1 + 15.55614 134.97210 194.77975 20.20140 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -55480,10 +55616,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 36.488 'OWB' - -10.79 15.016 'Grind' - -11.09 16.822 'Hydrobiaklei' - -12.00 5.251 'Basisveen' - -12.50 72.138 'Eerste zandlaag' + -10.79 15.045 'Grind' + -11.09 16.852 'Hydrobiaklei' + -12.00 5.168 'Basisveen' + -12.50 72.247 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -55499,10 +55635,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 5.36 'Grind' - -11.09 3.12 'Hydrobiaklei' + -10.79 5.37 'Grind' + -11.09 3.13 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 24.44 'Eerste zandlaag' + -12.50 24.48 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -55808,204 +55944,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - -0.36055 1.70676 1.80640986492E12 - -0.21189 1.70676 1.79187395114E12 - -0.06324 1.70676 1.77733803737E12 - 0.08541 1.70676 1.7628021236E12 - 0.23406 1.70676 1.74826620982E12 - 0.38271 1.70676 1.73373029605E12 - -0.46089 2.25790 1.73373029605E12 - -0.26546 2.25790 1.71919438227E12 - -0.07003 2.25790 1.7046584685E12 - 0.12540 2.25790 1.69012255472E12 - 0.32083 2.25790 1.67558664095E12 - 0.51626 2.25790 1.66105072717E12 - -45.13841 1803.07009 1.66105072717E12 - -27.10535 1803.06960 1.65934061967E12 - -9.07231 1803.06812 1.65763051217E12 - 8.96072 1803.06567 1.65592040466E12 - 26.99372 1803.06224 1.65421029716E12 - 45.02667 1803.05782 1.65250018966E12 - -0.19575 -1.11049 1.65250018966E12 - -0.33536 -1.23998 1.63197889962E12 - -0.49898 -1.51074 1.61145760959E12 - -0.70357 -1.92276 1.59093631955E12 - -0.96607 -2.47604 1.57041502952E12 - -1.30345 -3.17059 1.54989373948E12 - -1.68766 -3.60236 1.54989373948E12 - -2.08141 -4.28906 1.53279266445E12 - -2.54874 -5.07386 1.51569158943E12 - -3.09945 -5.95676 1.4985905144E12 - -3.74336 -6.93776 1.48148943937E12 - -4.49027 -8.01686 1.46438836434E12 - -4.47753 -9.52927 1.46438836434E12 - -5.48850 -10.70647 1.44728728931E12 - -6.62210 -11.98177 1.43018621428E12 - -7.88813 -13.35517 1.41308513925E12 - -9.29641 -14.82667 1.39598406422E12 - -10.85674 -16.39627 1.37888298919E12 - -10.28407 -17.69977 1.37888298919E12 - -11.87260 -19.12809 1.36417606467E12 - -13.58709 -20.62896 1.34946914014E12 - -15.43377 -22.20238 1.33476221562E12 - -17.41888 -23.84836 1.32005529109E12 - -19.54867 -25.56690 1.30534836657E12 - -19.10837 -24.54273 1.30534836657E12 - -22.03827 -26.93262 1.28585314104E12 - -25.24788 -29.45001 1.2663579155E12 - -28.75174 -32.09488 1.24686268997E12 - -32.56439 -34.86724 1.22736746444E12 - -36.70035 -37.76710 1.2078722389E12 - -37.11127 -31.77227 1.2078722389E12 - -39.05415 -33.34971 1.19761159389E12 - -41.09274 -34.96248 1.18735094887E12 - -43.22915 -36.61056 1.17709030385E12 - -45.46551 -38.29395 1.16682965883E12 - -47.80393 -40.01267 1.15656901382E12 - -44.51935 141.09132 1.15656901382E12 - -41.72519 140.52063 1.15314879881E12 - -38.94228 139.96615 1.14972858381E12 - -36.17030 139.42786 1.1463083688E12 - -33.40893 138.90578 1.14288815379E12 - -30.65784 138.39787 1.13946793879E12 - -42.57723 860.49081 1.13946793879E12 - -25.39331 860.00316 1.13604772378E12 - -8.21902 859.52968 1.13262750878E12 - 8.94597 859.07241 1.12920729377E12 - 26.10198 858.63134 1.12578707877E12 - 43.24931 858.20444 1.12236686376E12 - 24.34467 761.96836 1.12236686376E12 - 100.42853 759.70417 1.10526578873E12 - 176.28481 757.41931 1.0881647137E12 - 251.91209 755.12561 1.07106363867E12 - 327.30986 752.82974 1.05396256364E12 - 402.47805 750.53433 1.03686148861E12 - 402.99974 748.08190 1.03686148861E12 - 477.69328 745.78943 1.01976041359E12 - 552.15772 743.49996 1.00265933856E12 - 626.39341 741.21443 985558263527.00000 - 700.40075 738.93327 968457188498.00000 - 774.18020 736.65619 951356113468.00000 - 774.05187 733.03547 951356113468.00000 - 847.24183 730.76458 934255038439.00000 - 920.20493 728.49818 917153963409.00000 - 992.94164 726.23707 900052888379.00000 - 1065.45251 723.98134 882951813350.00000 - 1137.73807 721.73041 865850738320.00000 - 1138.02793 714.12995 865850738320.00000 - 1237.78210 710.99036 841909233277.00000 - 1337.09738 707.86050 817967728235.00000 - 1435.97526 704.74186 794026223192.00000 - 1534.41732 701.63457 770084718149.00000 - 1632.42510 698.53728 746143213105.00000 - 1633.31406 683.87662 746143213105.00000 - 1722.16598 682.96774 723911815564.00000 - 1810.85592 681.03412 701680418023.00000 - 1899.21309 678.25998 679449020482.00000 - 1987.23530 675.88105 657217622940.00000 - 2074.97394 673.89731 634986225397.00000 - 2075.12505 652.42402 634986225397.00000 - 2159.82885 650.83549 612754827854.00000 - 2244.35184 649.64215 590523430311.00000 - 2328.74538 648.84402 568292032767.00000 - 2413.06085 648.44108 546060635223.00000 - 2497.34963 648.43335 523829237678.00000 - 2498.58103 617.05482 523829237678.00000 - 2590.85060 617.27316 498263130501.00000 - 2683.15281 617.49151 472697023323.00000 - 2775.48766 617.70985 447130916144.00000 - 2867.85516 617.92819 421564808965.00000 - 2960.25530 618.14654 395998701785.00000 - 2960.58156 574.47060 395998701785.00000 - 3046.45988 574.18938 370432594604.00000 - 3132.23910 573.26256 344866487422.00000 - 3217.86346 572.15475 319300380239.00000 - 3303.31598 570.95707 293734273055.00000 - 3388.58243 569.67328 268168165870.00000 - 3389.18444 516.26493 268168165870.00000 - 3466.25488 514.88987 242602058685.00000 - 3543.11548 513.45479 217035951498.00000 - 3619.75640 511.95110 191469844311.00000 - 3696.16740 510.37880 165903737122.00000 - 3772.33863 508.74647 140337629932.00000 - 3773.01746 442.94883 140337629932.00000 - 3839.11408 441.23072 114771522742.00000 - 3904.94955 439.45245 89205415549.80000 - 3970.51403 437.60531 63639308356.90000 - 4035.79721 435.68929 38073201162.90000 - 4100.78922 433.71300 12507093967.70000 - 4086.34095 -483.68242 12507093967.70000 - 4085.37314 -483.70944 12165072466.80000 - 4084.40527 -483.73647 11823050965.80000 - 4083.43735 -483.76352 11481029464.90000 - 4082.46938 -483.79057 11139007963.90000 - 4081.50135 -483.81764 10796986463.00000 - 4080.87125 -971.74273 10796986463.00000 - 4043.96693 -970.73553 4298577944.96000 - 4007.07101 -972.09043 -2199830573.14000 - 3970.06355 -975.82007 -8698239091.32000 - 3932.91407 -979.56553 -15196647609.60000 - 3895.62198 -983.32483 -21695056127.90000 - 3891.71420 -938.58028 -21695056127.90000 - 3778.37090 -950.58203 -42216346186.20000 - 3663.57947 -962.72269 -62737636245.20000 - 3547.32160 -975.02257 -83258926304.90000 - 3429.57817 -987.48215 -103780216365.00000 - 3310.33079 -1000.08183 -124301506426.00000 - 3313.70899 -940.89259 -124301506426.00000 - 3257.05384 -947.26765 -134562151457.00000 - 3200.01518 -953.67789 -144822796488.00000 - 3142.59069 -960.12836 -155083441519.00000 - 3084.77797 -966.61913 -165344086550.00000 - 3026.57470 -973.14517 -175604731581.00000 - 3025.10239 -917.46958 -175604731581.00000 - 2941.15134 -927.46375 -191166709879.00000 - 2856.28729 -937.53930 -206728688177.00000 - 2770.50213 -947.70797 -222290666475.00000 - 2683.78737 -957.97023 -237852644774.00000 - 2596.13481 -968.31530 -253414623073.00000 - 2596.14997 -898.67235 -253414623073.00000 - 2513.88804 -909.13699 -268976601372.00000 - 2430.67021 -919.68544 -284538579671.00000 - 2346.48810 -930.32976 -300100557971.00000 - 2261.33300 -941.07005 -315662536271.00000 - 2175.19652 -951.89438 -331224514571.00000 - 2175.32661 -882.99581 -331224514571.00000 - 2086.58558 -891.89050 -348325589626.00000 - 1996.93318 -901.24513 -365426664682.00000 - 1906.31906 -911.12447 -382527739738.00000 - 1814.69083 -921.52745 -399628814794.00000 - 1721.99833 -932.38781 -416729889850.00000 - 1702.86573 -709.31973 -416729889850.00000 - 1600.19836 -757.29378 -440671394929.00000 - 1490.83154 -805.13601 -464612900009.00000 - 1374.74707 -853.30237 -488554405089.00000 - 1251.88440 -901.99171 -512495910169.00000 - 1122.16559 -951.23226 -536437415250.00000 - 1120.69396 -556.00096 -536437415250.00000 - 1039.35267 -606.13943 -560378920331.00000 - 950.94698 -656.95828 -584320425412.00000 - 855.37047 -708.58468 -608261930493.00000 - 752.50834 -761.04115 -632203435575.00000 - 642.24858 -814.22991 -656144940657.00000 - 640.08792 -377.50298 -656144940657.00000 - 583.44874 -431.74842 -680086445739.00000 - 519.16518 -486.74560 -704027950821.00000 - 447.12141 -542.61003 -727969455903.00000 - 367.19549 -599.34838 -751910960985.00000 - 279.26991 -656.85502 -775852466068.00000 - 276.97362 -175.86577 -775852466068.00000 - 248.25930 -234.47721 -799793971150.00000 - 211.28726 -293.87308 -823735476233.00000 - 165.93618 -354.18031 -847676981316.00000 - 112.07768 -415.40810 -871618486398.00000 - 49.58810 -477.44342 -895559991481.00000 - 47.51393 46.33943 -895559991481.00000 - 49.58708 -16.85277 -919501496564.00000 - 42.75921 -80.85678 -943443001646.00000 - 26.90576 -145.79000 -967384506729.00000 - 1.89652 -211.65396 -991326011812.00000 - -32.39346 -278.33333 -1.01526751689E12 + -0.58033 2.74350 1.80612786455E12 + -0.34375 2.74350 1.79159420704E12 + -0.10718 2.74350 1.77706054952E12 + 0.12940 2.74350 1.762526892E12 + 0.36598 2.74350 1.74799323448E12 + 0.60255 2.74350 1.73345957697E12 + -0.05225 0.33563 1.73345957697E12 + -0.02017 0.33563 1.71892591945E12 + 0.01192 0.33563 1.70439226193E12 + 0.04400 0.33563 1.68985860441E12 + 0.07608 0.33563 1.6753249469E12 + 0.10817 0.33563 1.66079128938E12 + -4.23643 167.94509 1.66079128938E12 + -2.55706 167.94460 1.65908144732E12 + -0.87770 167.94312 1.65737160526E12 + 0.80164 167.94067 1.6556617632E12 + 2.48095 167.93724 1.65395192114E12 + 4.16022 167.93282 1.65224207908E12 + 0.05661 -1.95128 1.65224207908E12 + -0.18395 -2.08077 1.63172397435E12 + -0.44852 -2.35153 1.61120586962E12 + -0.75406 -2.76355 1.59068776489E12 + -1.11752 -3.31683 1.57016966015E12 + -1.55585 -4.01138 1.54965155542E12 + -1.23346 -5.41886 1.54965155542E12 + -1.80891 -6.10556 1.53255313482E12 + -2.45794 -6.89036 1.51545471421E12 + -3.19035 -7.77326 1.4983562936E12 + -4.01596 -8.75426 1.48125787299E12 + -4.94457 -9.83336 1.46415945238E12 + -4.47743 -9.52940 1.46415945238E12 + -5.48841 -10.70660 1.44706103177E12 + -6.62202 -11.98190 1.42996261116E12 + -7.88806 -13.35530 1.41286419056E12 + -9.29635 -14.82680 1.39576576995E12 + -10.85669 -16.39640 1.37866734934E12 + -10.07519 -18.66992 1.37866734934E12 + -11.74720 -20.09824 1.36396270762E12 + -13.54517 -21.59911 1.34925806589E12 + -15.47534 -23.17254 1.33455342417E12 + -17.54394 -24.81852 1.31984878245E12 + -19.75721 -26.53705 1.30514414072E12 + -19.23560 -24.08223 1.30514414072E12 + -22.11297 -26.47213 1.28565194123E12 + -25.27004 -28.98951 1.26615974173E12 + -28.72137 -31.63438 1.24666754224E12 + -32.48147 -34.40675 1.22717534275E12 + -36.56490 -37.30661 1.20768314325E12 + -35.39208 -43.22985 1.20768314325E12 + -38.02263 -44.80729 1.19742409089E12 + -40.74888 -46.42006 1.18716503852E12 + -43.57296 -48.06814 1.17690598616E12 + -46.49698 -49.75153 1.16664693379E12 + -49.52306 -51.47025 1.15638788143E12 + -46.93607 189.29737 1.15638788143E12 + -43.17625 188.72669 1.15296819731E12 + -39.42769 188.17220 1.14954851318E12 + -35.69005 187.63392 1.14612882906E12 + -31.96302 187.11183 1.14270914494E12 + -28.24628 186.60393 1.13928946082E12 + -33.63458 681.69687 1.13928946082E12 + -20.02797 681.20921 1.1358697767E12 + -6.43098 680.73574 1.13245009258E12 + 7.15670 680.27846 1.12903040845E12 + 20.73540 679.83739 1.12561072433E12 + 34.30543 679.41050 1.12219104021E12 + 23.72961 764.23948 1.12219104021E12 + 100.04058 761.97529 1.1050926196E12 + 176.12398 759.69043 1.08799419899E12 + 251.97838 757.39673 1.07089577839E12 + 327.60326 755.10086 1.05379735778E12 + 402.99857 752.80544 1.03669893717E12 + 402.78208 748.53606 1.03669893717E12 + 477.52106 746.24360 1.01960051656E12 + 552.03094 743.95413 1.00250209595E12 + 626.31207 741.66859 985403675342.00000 + 700.36485 739.38743 968305254733.00000 + 774.18973 737.11035 951206834124.00000 + 773.91943 732.86494 951206834124.00000 + 847.09235 730.59404 934108413515.00000 + 920.03839 728.32765 917009992906.00000 + 992.75806 726.06653 899911572297.00000 + 1065.25188 723.81081 882813151687.00000 + 1137.52038 721.55988 865714731078.00000 + 1137.95356 713.63755 865714731078.00000 + 1237.63880 710.49796 841776942224.00000 + 1336.88515 707.36810 817839153370.00000 + 1435.69410 704.24946 793901364516.00000 + 1534.06724 701.14217 769963575662.00000 + 1632.00609 698.04488 746025786807.00000 + 1632.83871 683.86090 746025786807.00000 + 1721.68860 682.95203 723797840012.00000 + 1810.37651 681.01840 701569893218.00000 + 1898.73164 678.24427 679341946423.00000 + 1986.75182 675.86533 657113999627.00000 + 2074.48842 673.88160 634886052831.00000 + 2074.77174 652.14477 634886052831.00000 + 2159.43925 650.55624 612658106035.00000 + 2243.92594 649.36290 590430159238.00000 + 2328.28319 648.56477 568202212441.00000 + 2412.56236 648.16183 545974265643.00000 + 2496.81484 648.15410 523746318845.00000 + 2498.10115 616.89074 523746318845.00000 + 2590.34620 617.10908 498184180027.00000 + 2682.62389 617.32743 472622041207.00000 + 2774.93422 617.54577 447059902387.00000 + 2867.27720 617.76412 421497763566.00000 + 2959.65281 617.98246 395935624745.00000 + 2960.01398 574.27870 395935624745.00000 + 3045.86362 573.99748 370373485922.00000 + 3131.61415 573.07066 344811347099.00000 + 3217.20982 571.96285 319249208274.00000 + 3302.63366 570.76518 293687069449.00000 + 3387.87141 569.48138 268124930623.00000 + 3388.50175 516.12711 268124930623.00000 + 3465.55157 514.75206 242562791796.00000 + 3542.39155 513.31697 217000652968.00000 + 3619.01185 511.81328 191438514139.00000 + 3695.40223 510.24098 165876375309.00000 + 3771.55284 508.60865 140314236478.00000 + 3772.22258 442.85704 140314236478.00000 + 3838.30547 441.13894 114752097646.00000 + 3904.12722 439.36067 89189958812.50000 + 3969.67797 437.51353 63627819978.20000 + 4034.94743 435.59751 38065681142.70000 + 4099.92572 433.62122 12503542306.20000 + 4083.83265 -124.18242 12503542306.20000 + 4083.58466 -124.20944 12161573893.60000 + 4083.33662 -124.23647 11819605481.10000 + 4083.08853 -124.26352 11477637068.50000 + 4082.84038 -124.29057 11135668656.00000 + 4082.59217 -124.31764 10793700243.50000 + 4080.02641 -971.36847 10793700243.50000 + 4043.13629 -970.36126 4296300405.21000 + 4006.25459 -971.71616 -2201099433.13000 + 3969.26135 -975.44580 -8698499271.54000 + 3932.12608 -979.19126 -15195899110.00000 + 3894.84820 -982.95056 -21693298948.60000 + 3890.92859 -938.31412 -21693298948.60000 + 3777.61723 -950.31587 -42211403702.40000 + 3662.85773 -962.45653 -62729508456.80000 + 3546.63180 -974.75641 -83247613212.00000 + 3428.92031 -987.21599 -103765717968.00000 + 3309.70486 -999.81567 -124283822724.00000 + 3313.06244 -940.52503 -124283822724.00000 + 3256.42934 -946.90009 -134542875103.00000 + 3199.41272 -953.31033 -144801927481.00000 + 3142.01029 -959.76081 -155060979860.00000 + 3084.21962 -966.25157 -165320032239.00000 + 3026.03840 -972.77762 -175579084618.00000 + 3024.53690 -917.20069 -175579084618.00000 + 2940.61031 -927.19486 -191138647393.00000 + 2855.77073 -937.27041 -206698210168.00000 + 2770.01003 -947.43908 -222257772944.00000 + 2683.31973 -957.70134 -237817335720.00000 + 2595.69163 -968.04641 -253376898496.00000 + 2595.54093 -896.58980 -253376898496.00000 + 2513.46855 -907.05444 -268936461273.00000 + 2430.44026 -917.60289 -284496024049.00000 + 2346.44769 -928.24721 -300055586827.00000 + 2261.48213 -938.98750 -315615149604.00000 + 2175.53519 -949.81183 -331174712381.00000 + 2175.36443 -882.82549 -331174712381.00000 + 2086.64043 -891.72018 -348273133016.00000 + 1997.00506 -901.07481 -365371553651.00000 + 1906.40797 -910.95416 -382469974287.00000 + 1814.79677 -921.35713 -399568394923.00000 + 1722.12130 -932.21749 -416666815558.00000 + 1702.91787 -709.46856 -416666815558.00000 + 1600.22964 -757.44262 -440604604449.00000 + 1490.84197 -805.28485 -464542393340.00000 + 1374.73663 -853.45120 -488480182231.00000 + 1251.85310 -902.14054 -512417971123.00000 + 1122.11343 -951.38109 -536355760015.00000 + 1120.63706 -555.84807 -536355760015.00000 + 1039.31718 -605.98653 -560293548907.00000 + 950.93291 -656.80539 -584231337800.00000 + 855.37782 -708.43179 -608169126693.00000 + 752.53709 -760.88826 -632106915586.00000 + 642.29876 -814.07702 -656044704479.00000 + 639.98648 -377.21324 -656044704479.00000 + 583.38788 -431.45869 -679982493372.00000 + 519.14489 -486.45586 -703920282266.00000 + 447.14169 -542.32029 -727858071159.00000 + 367.25635 -599.05864 -751795860053.00000 + 279.37135 -656.56528 -775733648947.00000 + 277.09722 -176.20929 -775733648947.00000 + 248.33481 -234.82073 -799671437841.00000 + 211.31466 -294.21660 -823609226735.00000 + 165.91549 -354.52383 -847547015629.00000 + 112.00889 -415.75162 -871484804523.00000 + 49.47121 -477.78694 -895422593417.00000 + 47.50815 46.35588 -895422593417.00000 + 49.58359 -16.83633 -919360382311.00000 + 42.75802 -80.84033 -943298171205.00000 + 26.90687 -145.77355 -967235960099.00000 + 1.89992 -211.63751 -991173748993.00000 + -32.38776 -278.31688 -1.01511153789E12 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -56333,7 +56469,7 @@ Lambda passive -4.30000 2.15000 6.10511 0.00000 0.77308 0.00000 2.83959 -4.40000 2.18900 6.15073 0.00000 0.77308 0.00000 2.80984 -4.50000 2.22800 6.18672 0.00000 0.77308 0.00000 2.78901 - -4.50000 2.22800 6.21147 0.00000 0.78921 0.00000 2.77577 + -4.50000 2.22800 6.21147 0.00000 0.77308 0.00000 2.77577 -4.60000 2.26700 6.24954 0.00000 0.77308 0.00000 2.75675 -4.70000 2.30600 6.30163 0.00000 0.77308 0.00000 2.73271 -4.80000 2.34500 6.35502 0.00000 0.77308 0.00000 2.71003 @@ -56345,7 +56481,7 @@ Lambda passive -5.42000 2.58680 6.70386 0.00000 0.77308 0.00000 2.59157 -5.56000 2.64140 6.78526 0.00000 0.77308 0.00000 2.56881 -5.70000 2.69600 6.84669 0.00000 0.77308 0.00000 2.55250 - -5.70000 2.69600 21.84537 0.00000 1.37612 0.00000 9.62913 + -5.70000 2.69600 21.84537 0.00000 0.73559 0.00000 9.62913 -5.83000 0.98670 19.01090 0.00000 0.73559 0.00000 19.26715 -5.96000 0.00000 15.25497 0.00000 0.00000 0.00000 0.00000 -6.09000 0.00000 13.77262 0.00000 0.00000 0.00000 0.00000 @@ -56356,8 +56492,8 @@ Lambda passive -6.61000 0.00000 16.82177 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.82018 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81891 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 16.81812 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -56405,13 +56541,13 @@ Lambda passive -10.97000 14.80130 48.91088 0.00000 0.73559 0.00000 3.30450 -11.03000 15.12470 49.60615 0.00000 0.73559 0.00000 3.27981 -11.09000 15.44810 50.12766 0.00000 0.73559 0.00000 3.26198 - -11.09000 15.44810 50.56520 0.00000 0.60295 0.00000 3.24745 + -11.09000 15.44810 50.56520 0.00000 0.73559 0.00000 3.24745 -11.18100 15.93859 51.35634 0.00000 0.73559 0.00000 3.22214 -11.27200 16.42908 52.41133 0.00000 0.73559 0.00000 3.19016 -11.36300 16.91957 53.46647 0.00000 0.73559 0.00000 3.16004 -11.45400 17.41006 54.52174 0.00000 0.73559 0.00000 3.13162 -11.54500 17.90055 55.31326 0.00000 0.73559 0.00000 3.11134 - -11.54500 17.90055 55.84097 0.00000 1.71788 0.00000 3.09829 + -11.54500 17.90055 55.84097 0.00000 0.73559 0.00000 3.09829 -11.63600 18.39104 56.63257 0.00000 0.73559 0.00000 3.07936 -11.72700 18.88153 57.68810 0.00000 0.73559 0.00000 3.05527 -11.81800 19.37202 58.74369 0.00000 0.73559 0.00000 3.03240 @@ -56547,7 +56683,7 @@ Status character 6.10511 9.81000 6.10511 1.66212 402 100 P 6.15073 10.79100 6.15073 1.69227 402 100 P 6.18672 11.77200 6.18672 1.71488 402 100 P - 6.21147 11.77200 6.21147 1.76605 402 100 P + 6.21147 11.77200 6.21147 1.72996 402 100 P 6.24954 12.75300 6.24954 1.75257 402 100 P 6.30163 13.73400 6.30163 1.78272 402 100 P 6.35502 14.71500 6.35502 1.81287 402 100 P @@ -56559,7 +56695,7 @@ Status character 6.70386 20.79720 6.70386 1.99980 402 100 P 6.78526 22.17060 6.78526 2.04201 402 100 P 6.84669 23.54400 6.84669 2.07367 402 100 P - 21.84537 23.54400 21.84537 3.12198 402 100 P + 21.84537 23.54400 21.84537 1.66880 402 100 P 19.01090 27.35930 19.01090 0.72580 402 100 P 0.00000 31.17460 0.00000 0.00000 402 0 P 0.00000 34.98990 0.00000 0.00000 402 0 P @@ -56619,13 +56755,13 @@ Status character 0.00000 100.64270 48.91088 10.88762 1 0 A 0.00000 101.23130 49.60615 11.12551 1 0 A 0.00000 101.81990 50.12766 11.30392 1 0 A - 0.00000 101.81990 50.56520 9.38844 1 0 A + 0.00000 101.81990 50.56520 11.45359 1 0 A 0.00000 102.71261 51.35634 11.72419 1 0 A 0.00000 103.60532 52.41133 12.08499 1 0 A 0.00000 104.49803 53.46647 12.44579 1 0 A 0.00000 105.39074 54.52174 12.80658 1 0 A 0.00000 106.28345 55.31326 13.07718 1 0 A - 0.00000 106.28345 55.84097 30.96159 1 0 A + 0.00000 106.28345 55.84097 13.25758 1 0 A 0.00000 107.17616 56.63257 13.52818 1 0 A 0.00000 108.06887 57.68810 13.88897 1 0 A 0.00000 108.96158 58.74369 14.24977 1 0 A @@ -57013,7 +57149,7 @@ Lambda passive -6.74000 11.10450 39.76582 0.00000 0.72360 0.00000 3.58106 -6.87000 12.43389 42.60136 0.00000 0.72455 0.00000 3.42623 -7.00000 13.76322 44.72764 0.00000 0.72535 0.00000 3.33021 - -7.00000 13.76322 45.64163 0.00000 0.61651 0.00000 3.24587 + -7.00000 13.76322 45.64163 0.00000 0.61390 0.00000 3.24587 -7.14950 14.95606 48.04411 0.00000 0.61446 0.00000 3.21235 -7.29900 16.14883 51.41068 0.00000 0.61496 0.00000 3.18356 -7.44850 17.34153 54.87934 0.00000 0.61542 0.00000 3.16462 @@ -57025,7 +57161,7 @@ Lambda passive -8.19600 23.30431 73.01861 9.10452 0.61725 0.39068 3.13327 -8.34550 24.49678 77.72968 9.83886 0.61755 0.40164 3.17306 -8.49500 25.68924 80.96331 10.25668 0.61783 0.40395 3.18865 - -8.49500 25.68924 82.82530 10.48612 0.68505 0.40351 3.18714 + -8.49500 25.68924 82.82530 10.48612 0.61783 0.40351 3.18714 -8.64450 26.88169 85.63633 10.83028 0.61810 0.40289 3.18568 -8.79400 28.07413 89.39014 11.28918 0.61835 0.40212 3.18408 -8.94350 29.26658 93.14862 11.74809 0.61858 0.40142 3.18276 @@ -57055,7 +57191,7 @@ Lambda passive -10.55000 40.65134 104.62394 14.37457 0.73185 0.35361 2.57369 -10.67000 41.29667 105.95681 14.70290 0.73194 0.35603 2.56575 -10.79000 41.94202 106.95873 14.95005 0.73202 0.35782 2.56000 - -10.79000 41.94202 107.46044 15.07372 0.62117 0.35870 2.55720 + -10.79000 41.94202 107.46044 15.07372 0.73202 0.35870 2.55720 -10.85000 42.26470 107.96266 15.19740 0.73206 0.35958 2.55444 -10.91000 42.58739 108.63295 15.36229 0.73210 0.36072 2.55082 -10.97000 42.91008 109.30400 15.52719 0.73214 0.36185 2.54728 @@ -57085,13 +57221,13 @@ Lambda passive -12.92000 68.66611 359.19154 20.35488 0.52045 0.29643 5.23099 -13.06000 70.09142 363.87695 20.68697 0.52051 0.29514 5.19146 -13.20000 71.51677 367.81517 20.92259 0.52057 0.29402 5.16882 - -13.20000 71.51677 370.60407 21.12485 0.49192 0.29392 5.15637 + -13.20000 71.51677 370.60407 21.12485 0.52057 0.29392 5.15637 -13.34000 72.94213 374.98522 21.45395 0.52062 0.29412 5.14086 -13.48000 74.36752 381.07243 21.89176 0.52068 0.29437 5.12418 -13.62000 75.79293 387.37661 22.32812 0.52073 0.29459 5.11099 -13.76000 77.21836 393.78535 22.76376 0.52078 0.29480 5.09963 -13.90000 78.64381 398.58566 23.09009 0.52083 0.29494 5.09131 - -13.90000 78.64381 401.81942 23.30727 0.74441 0.29503 5.08631 + -13.90000 78.64381 401.81942 23.30727 0.52083 0.29503 5.08631 -14.04000 80.06929 406.71497 23.63203 0.52087 0.29514 5.07954 -14.18000 81.49478 413.30564 24.06458 0.52092 0.29529 5.07156 -14.32000 82.92030 419.95819 24.49665 0.52096 0.29542 5.06460 @@ -57227,7 +57363,7 @@ Status character 0.00000 58.68590 39.76582 8.03519 1 0 A 0.00000 59.46120 42.60136 9.00897 1 0 A 0.00000 60.23650 44.72764 9.74204 1 0 A - 0.00000 60.23650 45.64163 8.66899 1 0 A + 0.00000 60.23650 45.64163 8.63227 1 0 A 0.00000 61.70309 48.04411 9.18983 1 0 A 0.00000 63.16969 51.41068 9.93088 1 0 A 0.00000 64.63629 54.87934 10.67231 1 0 A @@ -57239,7 +57375,7 @@ Status character 9.10452 71.96926 73.01861 14.38466 1 0 A 9.83886 73.43586 77.72968 15.12802 1 0 A 10.25668 74.90245 80.96331 15.68744 1 0 A - 10.48612 74.90245 82.82530 17.80273 1 0 A + 10.48612 74.90245 82.82530 16.05580 1 0 A 10.83028 76.36905 85.63633 16.61546 1 0 A 11.28918 77.83564 89.39014 17.35950 1 0 A 11.74809 79.30224 93.14862 18.10375 1 0 A @@ -57269,7 +57405,7 @@ Status character 104.62394 95.06200 104.62394 29.75080 402 100 P 105.95681 96.23920 105.95681 30.22659 402 100 P 106.95873 97.41640 106.95873 30.58432 402 100 P - 107.46044 97.41640 107.46044 26.10340 402 100 P + 107.46044 97.41640 107.46044 30.76147 402 100 P 107.96266 98.00500 107.96266 30.94035 402 100 P 108.63295 98.59360 108.63295 31.17829 402 100 P 109.30400 99.18220 109.30400 31.41624 402 100 P @@ -57299,13 +57435,13 @@ Status character 359.19154 103.31170 359.19154 35.73730 402 100 P 363.87695 104.68510 363.87695 36.48333 402 100 P 367.81517 106.05850 367.81517 37.04388 402 100 P - 370.60407 106.05850 370.60407 35.35578 402 100 P + 370.60407 106.05850 370.60407 37.41488 402 100 P 374.98522 107.43190 374.98522 37.97544 402 100 P 381.07243 108.80530 381.07243 38.72151 402 100 P 387.37661 110.17870 387.37661 39.46758 402 100 P 393.78535 111.55210 393.78535 40.21366 402 100 P 398.58566 112.92550 398.58566 40.77415 402 100 P - 401.81942 112.92550 401.81942 58.80860 402 100 P + 401.81942 112.92550 401.81942 41.14536 402 100 P 406.71497 114.29890 406.71497 41.70584 402 100 P 413.30564 115.67230 413.30564 42.45194 402 100 P 419.95819 117.04570 419.95819 43.19804 402 100 P @@ -57633,8 +57769,8 @@ Is favorable (0=false, 1=true) 1115.91 : Max effective resistance right -9783.03 : Max moment left -12812.36 : Max moment right --5771.64 : Max mobilized moment left --6165.84 : Max mobilized moment right +-5771.63 : Max mobilized moment left +-6165.85 : Max mobilized moment right 153.35 : Vertical force left 172.00 : Vertical force right 59.0 : Max mobilized moment percentage left @@ -57668,204 +57804,204 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 96996.71089 - 0.00000 0.00000 96438.77120 - 0.00000 0.00000 95880.83151 - 0.00000 0.00000 95322.89183 - 0.00000 0.00000 94764.95214 - 0.00000 0.00000 94207.01246 - 0.00000 0.00000 94207.01246 - 0.00000 0.00000 93649.07277 - 0.00000 0.00000 93091.13308 - 0.00000 0.00000 92533.19340 - 0.00000 0.00000 91975.25371 - 0.00000 0.00000 91417.31403 - 0.00000 -0.00003 91417.31403 - 0.00000 -0.00052 91351.67406 - -0.00001 -0.00199 91286.03410 - -0.00004 -0.00444 91220.39414 - -0.00011 -0.00787 91154.75417 - -0.00021 -0.01229 91089.11421 - -0.00020 -0.01226 91089.11421 - -0.00803 -0.14175 90301.43465 - -0.03988 -0.41251 89513.75509 - -0.11269 -0.82453 88726.07554 - -0.24341 -1.37781 87938.39602 - -0.44901 -2.07236 87150.71655 - -0.44901 -2.07236 87150.71655 - -0.68977 -2.75906 86494.31704 - -1.00409 -3.54386 85837.91761 - -1.40181 -4.42676 85181.51832 - -1.89272 -5.40776 84525.11921 - -2.48663 -6.48686 83868.72035 - -2.48663 -6.48686 83868.72035 - -3.19336 -7.66406 83212.32178 - -4.02271 -8.93936 82555.92361 - -4.98450 -10.31276 81899.52596 - -6.08854 -11.78426 81243.12896 - -7.34462 -13.35386 80586.73272 - -7.34462 -13.35386 80586.73272 - -8.55395 -14.78218 80022.23267 - -9.88924 -16.28305 79457.73342 - -11.35672 -17.85648 78893.23510 - -12.96263 -19.50246 78328.73785 - -14.71322 -21.22099 77764.24181 - -14.71322 -21.22099 77764.24181 - -17.26743 -23.61088 77015.95846 - -20.10135 -26.12827 76267.67793 - -23.22952 -28.77314 75519.40073 - -26.66647 -31.54551 74771.12739 - -30.42674 -34.44536 74022.85841 - -30.42624 -34.45314 74022.85841 - -32.54058 -36.03059 73629.03457 - -34.75062 -37.64335 73235.21220 - -37.05849 -39.29143 72841.39142 - -39.46630 -40.97483 72447.57232 - -41.97617 -42.69354 72053.75501 - -41.97651 -42.69765 72053.75501 - -42.83619 -43.26834 71922.48299 - -43.70713 -43.82283 71791.21119 - -44.58900 -44.36111 71659.93960 - -45.48147 -44.88319 71528.66824 - -46.38423 -45.39110 71397.39711 - -46.38423 -45.39108 71397.39711 - -47.29695 -45.87873 71266.12622 - -48.21929 -46.35221 71134.85556 - -49.15093 -46.80948 71003.58514 - -50.09156 -47.25055 70872.31498 - -51.04086 -47.67745 70741.04506 - -51.04090 -47.67699 70741.04506 - -55.92157 -49.94118 70084.69942 - -61.02982 -52.22604 69428.36083 - -66.36708 -54.51974 68772.02995 - -71.93384 -56.81561 68115.70745 - -77.73018 -59.11103 67459.39402 - -77.73036 -59.10559 67459.39402 - -83.75556 -61.39805 66803.09034 - -90.00987 -63.68752 66146.79721 - -96.49294 -65.97306 65490.51544 - -103.20434 -68.25422 64834.24586 - -110.14365 -70.53129 64177.98928 - -110.14362 -70.53079 64177.98928 - -117.31028 -72.80169 63521.74653 - -124.70381 -75.06808 62865.51857 - -132.32372 -77.32920 62209.30633 - -140.16947 -79.58493 61553.11080 - -148.24054 -81.83586 60896.93292 - -148.24059 -81.83520 60896.93292 - -159.91738 -84.97479 59978.31540 - -172.03307 -88.10465 59059.73735 - -184.58616 -91.22329 58141.20189 - -197.57506 -94.33058 57222.71209 - -210.99825 -97.42787 56304.27108 - -210.99833 -97.42638 56304.27108 - -223.72453 -98.36776 55451.47946 - -236.62117 -100.39889 54598.73546 - -249.86748 -103.33552 53746.04191 - -263.47409 -105.94196 52893.40162 - -277.39808 -108.21819 52040.81741 - -277.39792 -108.21691 52040.81741 - -291.59619 -110.16294 51188.29220 - -306.02598 -111.77878 50335.82906 - -320.64436 -113.06441 49483.43112 - -335.40841 -114.01985 48631.10147 - -350.27521 -114.64508 47778.84322 - -350.27521 -114.64508 47778.84322 - -367.45421 -115.17424 46798.83859 - -384.71231 -115.70339 45818.93741 - -402.04952 -116.23255 44839.14457 - -419.46584 -116.76170 43859.46496 - -436.96127 -117.29086 42879.90344 - -436.96127 -117.29086 42879.90344 - -454.53581 -117.82001 41900.46493 - -472.18945 -118.34917 40921.15440 - -489.92221 -118.87832 39941.97684 - -507.73407 -119.40748 38962.93724 - -525.62504 -119.93663 37984.04060 - -525.62599 -119.93181 37984.04060 - -543.59535 -120.46096 37005.29192 - -561.64382 -120.99012 36026.69630 - -579.77140 -121.51927 35048.25884 - -597.97808 -122.04843 34069.98463 - -616.26388 -122.57758 33091.87879 - -616.26257 -122.56852 33091.87879 - -634.62612 -123.09767 32113.94644 - -653.06878 -123.62683 31136.19277 - -671.59054 -124.15598 30158.62300 - -690.19141 -124.68514 29181.24234 - -708.87140 -125.21429 28204.05602 - -708.87065 -125.19685 28204.05602 - -709.12105 -125.20393 28190.98463 - -709.37147 -125.21100 28177.91328 - -709.62190 -125.21808 28164.84197 - -709.87234 -125.22516 28151.77069 - -710.12280 -125.23224 28138.69944 - -710.12277 -125.22633 28138.69944 - -714.85655 -123.91758 27890.35264 - -719.54033 -122.59431 27642.01885 - -724.17350 -121.25445 27393.69814 - -728.75545 -119.89798 27145.39061 - -733.28557 -118.52697 26897.09633 - -733.28551 -118.52751 26897.09633 - -747.24209 -114.06142 26113.09716 - -760.65444 -109.44993 25329.23356 - -773.50342 -104.67208 24545.50785 - -785.76908 -99.72771 23761.92236 - -797.43224 -94.63754 22978.47942 - -797.43230 -94.63819 22978.47942 - -803.03205 -92.01495 22586.81211 - -808.47336 -89.35522 22195.18122 - -813.75384 -86.65380 21803.58698 - -818.87098 -83.91065 21412.02964 - -823.82239 -81.13101 21020.50945 - -823.82247 -81.12877 21020.50945 - -830.98868 -76.35843 20426.77522 - -837.71716 -71.50410 19833.12769 - -843.99952 -66.55375 19239.56751 - -849.82703 -61.50738 18646.09533 - -855.19131 -56.37698 18052.71181 - -855.19130 -56.37746 18052.71181 - -860.08330 -51.12701 17459.41757 - -864.49387 -45.79251 16866.21306 - -868.41462 -40.36196 16273.09868 - -871.83683 -34.83535 15680.07485 - -874.75211 -29.22468 15087.14198 - -874.75211 -29.22514 15087.14198 - -877.45711 -24.81078 14435.67272 - -879.69934 -19.94861 13784.31400 - -881.42979 -14.57524 13133.06605 - -882.60457 -8.90723 12481.92907 - -883.21603 -3.38299 11830.90329 - -883.21710 -3.36168 11830.90329 - -881.52704 27.14495 10919.65481 - -875.67837 56.32606 10008.62408 - -865.76098 85.39500 9097.80864 - -851.74895 114.86719 8187.20604 - -833.57387 144.85986 7276.81382 - -833.57376 144.85429 7276.81382 - -811.13833 175.74816 6366.62876 - -784.33196 207.33460 5456.64409 - -753.04617 239.74544 4546.85205 - -717.16347 273.00848 3637.24492 - -676.56828 307.03252 2727.81495 - -726.27345 632.28216 2727.81495 - -635.30253 667.41417 1818.55741 - -539.36080 703.33237 909.45656 - -439.12794 722.99763 0.48817 - -338.46481 709.59104 -908.37203 - -241.22274 679.46385 -1817.14828 - -258.85222 354.27386 -1817.14828 - -211.43685 322.97085 -2725.86143 - -168.45883 290.84401 -3634.52248 - -130.04449 257.77513 -4543.14089 - -96.32578 223.76369 -5451.72614 - -67.42916 188.92722 -6360.28769 - -67.42922 188.92643 -6360.28769 - -43.49236 152.91082 -7268.83412 - -24.65272 116.06955 -8177.36993 - -11.03693 78.28445 -9085.89846 - -2.77713 39.55533 -9994.42307 - 0.00001 0.00005 -10902.94708 + 0.00000 0.00000 97001.22767 + 0.00000 0.00000 96443.26204 + 0.00000 0.00000 95885.29641 + 0.00000 0.00000 95327.33078 + 0.00000 0.00000 94769.36515 + 0.00000 0.00000 94211.39952 + 0.00000 0.00000 94211.39952 + 0.00000 0.00000 93653.43389 + 0.00000 0.00000 93095.46826 + 0.00000 0.00000 92537.50264 + 0.00000 0.00000 91979.53701 + 0.00000 0.00000 91421.57138 + 0.00000 -0.00007 91421.57138 + 0.00000 -0.00056 91355.92836 + -0.00001 -0.00203 91290.28535 + -0.00004 -0.00449 91224.64233 + -0.00011 -0.00792 91158.99932 + -0.00021 -0.01233 91093.35630 + -0.00020 -0.01226 91093.35630 + -0.00803 -0.14175 90305.64012 + -0.03988 -0.41251 89517.92393 + -0.11269 -0.82453 88730.20776 + -0.24341 -1.37781 87942.49161 + -0.44901 -2.07236 87154.77551 + -0.44901 -2.07236 87154.77551 + -0.68977 -2.75906 86498.34548 + -1.00409 -3.54386 85841.91553 + -1.40181 -4.42676 85185.48572 + -1.89272 -5.40776 84529.05609 + -2.48663 -6.48686 83872.62671 + -2.48663 -6.48686 83872.62671 + -3.19336 -7.66406 83216.19762 + -4.02271 -8.93936 82559.76893 + -4.98450 -10.31276 81903.34076 + -6.08854 -11.78426 81246.91323 + -7.34462 -13.35386 80590.48647 + -7.34462 -13.35386 80590.48647 + -8.55395 -14.78218 80025.96018 + -9.88924 -16.28305 79461.43468 + -11.35672 -17.85648 78896.91011 + -12.96263 -19.50246 78332.38661 + -14.71322 -21.22099 77767.86432 + -14.71322 -21.22099 77767.86432 + -17.26743 -23.61088 77019.54618 + -20.10135 -26.12827 76271.23085 + -23.22952 -28.77314 75522.91887 + -26.66647 -31.54551 74774.61073 + -30.42674 -34.44536 74026.30695 + -30.42624 -34.45315 74026.30695 + -32.54058 -36.03060 73632.46480 + -34.75062 -37.64337 73238.62412 + -37.05849 -39.29145 72844.78503 + -39.46630 -40.97484 72450.94762 + -41.97618 -42.69355 72057.11199 + -41.97651 -42.69767 72057.11199 + -42.83620 -43.26836 71925.83387 + -43.70714 -43.82284 71794.55596 + -44.58900 -44.36113 71663.27827 + -45.48147 -44.88321 71532.00081 + -46.38424 -45.39112 71400.72358 + -46.38424 -45.39110 71400.72358 + -47.29696 -45.87876 71269.44658 + -48.21929 -46.35223 71138.16981 + -49.15094 -46.80950 71006.89329 + -50.09157 -47.25058 70875.61702 + -51.04087 -47.67747 70744.34100 + -51.04090 -47.67701 70744.34100 + -55.92158 -49.94120 70087.96484 + -61.02983 -52.22606 69431.59573 + -66.36709 -54.51976 68775.23432 + -71.93386 -56.81563 68118.88131 + -77.73020 -59.11105 67462.53735 + -77.73038 -59.10560 67462.53735 + -83.75558 -61.39806 66806.20315 + -90.00989 -63.68753 66149.87950 + -96.49296 -65.97307 65493.56722 + -103.20436 -68.25423 64837.26711 + -110.14367 -70.53130 64180.98001 + -110.14365 -70.53080 64180.98001 + -117.31030 -72.80170 63524.70674 + -124.70384 -75.06809 62868.44825 + -132.32374 -77.32921 62212.20550 + -140.16950 -79.58493 61555.97944 + -148.24057 -81.83587 60899.77104 + -148.24061 -81.83521 60899.77104 + -159.91741 -84.97480 59981.11079 + -172.03310 -88.10466 59062.49002 + -184.58619 -91.22329 58143.91182 + -197.57510 -94.33059 57225.37930 + -210.99829 -97.42788 56306.89556 + -210.99836 -97.42639 56306.89556 + -223.72456 -98.36776 55454.06426 + -236.62120 -100.39889 54601.28059 + -249.86752 -103.33553 53748.54736 + -263.47413 -105.94196 52895.86739 + -277.39812 -108.21820 52043.24351 + -277.39795 -108.21690 52043.24351 + -291.59622 -110.16293 51190.67861 + -306.02601 -111.77877 50338.17580 + -320.64439 -113.06440 49485.73818 + -335.40844 -114.01984 48633.36885 + -350.27524 -114.64507 47781.07093 + -350.27524 -114.64507 47781.07093 + -367.45423 -115.17423 46801.02067 + -384.71234 -115.70339 45821.07386 + -402.04955 -116.23254 44841.23539 + -419.46587 -116.76170 43861.51015 + -436.96129 -117.29085 42881.90301 + -436.96129 -117.29085 42881.90301 + -454.53583 -117.82001 41902.41887 + -472.18948 -118.34916 40923.06271 + -489.92223 -118.87832 39943.83952 + -507.73409 -119.40747 38964.75429 + -525.62506 -119.93663 37985.81202 + -525.62601 -119.93180 37985.81202 + -543.59537 -120.46095 37007.01772 + -561.64384 -120.99011 36028.37647 + -579.77141 -121.51926 35049.89337 + -597.97810 -122.04842 34071.57354 + -616.26389 -122.57757 33093.42207 + -616.26259 -122.56849 33093.42207 + -634.62613 -123.09765 32115.44409 + -653.06878 -123.62681 31137.64479 + -671.59055 -124.15596 30160.02939 + -690.19142 -124.68512 29182.60311 + -708.87139 -125.21427 28205.37115 + -708.87064 -125.19905 28205.37115 + -709.12104 -125.20613 28192.29916 + -709.37146 -125.21321 28179.22720 + -709.62189 -125.22029 28166.15527 + -709.87234 -125.22737 28153.08338 + -710.12280 -125.23445 28140.01153 + -710.12277 -125.22627 28140.01153 + -714.85654 -123.91752 27891.65313 + -719.54031 -122.59425 27643.30774 + -724.17349 -121.25439 27394.97543 + -728.75544 -119.89792 27146.65630 + -733.28555 -118.52691 26898.35042 + -733.28550 -118.52744 26898.35042 + -747.24207 -114.06135 26114.31463 + -760.65440 -109.44986 25330.41440 + -773.50338 -104.67201 24546.65207 + -785.76903 -99.72764 23763.02996 + -797.43218 -94.63747 22979.55039 + -797.43224 -94.63810 22979.55039 + -803.03198 -92.01486 22587.86477 + -808.47329 -89.35514 22196.21556 + -813.75376 -86.65371 21804.60301 + -818.87090 -83.91057 21413.02736 + -823.82230 -81.13092 21021.48885 + -823.82228 -81.13127 21021.48885 + -830.98873 -76.36093 20427.72686 + -837.71743 -71.50660 19834.05155 + -844.00001 -66.55625 19240.46360 + -849.82775 -61.50988 18646.96365 + -855.19226 -56.37948 18053.55235 + -855.19226 -56.38003 18053.55235 + -860.08450 -51.12958 17460.23034 + -864.49530 -45.79508 16866.99805 + -868.41629 -40.36453 16273.85590 + -871.83873 -34.83791 15680.80430 + -874.75424 -29.22725 15087.84365 + -874.75424 -29.22770 15087.84365 + -877.45950 -24.81334 14436.34387 + -879.70199 -19.95117 13784.95463 + -881.43269 -14.57780 13133.67616 + -882.60772 -8.90979 12482.50867 + -883.21944 -3.38556 11831.45236 + -883.22053 -3.36382 11831.45236 + -881.53077 27.14280 10920.16116 + -875.68241 56.32391 10009.08771 + -865.76531 85.39285 9098.22954 + -851.75359 114.86504 8187.58422 + -833.57881 144.85771 7277.14929 + -833.57870 144.85206 7277.14929 + -811.14357 175.74593 6366.92151 + -784.33752 207.33237 5456.89411 + -753.05204 239.74321 4547.05936 + -717.16965 273.00625 3637.40952 + -676.57477 307.03029 2727.93683 + -726.28225 632.29484 2727.93683 + -635.30956 667.42685 1818.63658 + -539.36605 703.34505 909.49302 + -439.13136 723.01163 0.48191 + -338.46615 709.60635 -908.42099 + -241.22193 679.47916 -1817.23995 + -258.85224 354.27389 -1817.23995 + -211.43687 322.97088 -2725.99580 + -168.45884 290.84404 -3634.69956 + -130.04450 257.77516 -4543.36068 + -96.32578 223.76373 -5451.98864 + -67.42916 188.92725 -6360.59289 + -67.42922 188.92643 -6360.59289 + -43.49236 152.91083 -7269.18203 + -24.65272 116.06955 -8177.76055 + -11.03693 78.28445 -9086.33179 + -2.77713 39.55533 -9994.89911 + 0.00001 0.00005 -10903.46583 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -58193,7 +58329,7 @@ Lambda passive -4.30000 2.15000 6.10511 0.00000 0.77308 0.00000 2.83959 -4.40000 2.18900 6.15073 0.00000 0.77308 0.00000 2.80984 -4.50000 2.22800 6.18672 0.00000 0.77308 0.00000 2.78901 - -4.50000 2.22800 6.21147 0.00000 0.78921 0.00000 2.77577 + -4.50000 2.22800 6.21147 0.00000 0.77308 0.00000 2.77577 -4.60000 2.26700 6.24954 0.00000 0.77308 0.00000 2.75675 -4.70000 2.30600 6.30163 0.00000 0.77308 0.00000 2.73271 -4.80000 2.34500 6.35502 0.00000 0.77308 0.00000 2.71003 @@ -58205,7 +58341,7 @@ Lambda passive -5.42000 2.58680 6.70386 0.00000 0.77308 0.00000 2.59157 -5.56000 2.64140 6.78526 0.00000 0.77308 0.00000 2.56881 -5.70000 2.69600 6.84669 0.00000 0.77308 0.00000 2.55250 - -5.70000 2.69600 21.84537 0.00000 1.37612 0.00000 9.62913 + -5.70000 2.69600 21.84537 0.00000 0.73559 0.00000 9.62913 -5.83000 0.98670 19.01090 0.00000 0.73559 0.00000 19.26715 -5.96000 0.00000 15.25497 0.00000 0.00000 0.00000 0.00000 -6.09000 0.00000 13.77262 0.00000 0.00000 0.00000 0.00000 @@ -58216,8 +58352,8 @@ Lambda passive -6.61000 0.00000 16.82177 0.00000 0.00000 0.00000 0.00000 -6.74000 0.00000 16.82018 0.00000 0.00000 0.00000 0.00000 -6.87000 0.00000 16.81891 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 - -7.00000 0.00000 7.82238 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 16.81812 0.00000 0.00000 0.00000 0.00000 + -7.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.14950 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.29900 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 -7.44850 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 @@ -58265,13 +58401,13 @@ Lambda passive -10.97000 14.80130 48.91088 0.00000 0.73559 0.00000 3.30450 -11.03000 15.12470 49.60615 0.00000 0.73559 0.00000 3.27981 -11.09000 15.44810 50.12766 0.00000 0.73559 0.00000 3.26198 - -11.09000 15.44810 50.56520 0.00000 0.60295 0.00000 3.24745 + -11.09000 15.44810 50.56520 0.00000 0.73559 0.00000 3.24745 -11.18100 15.93859 51.35634 0.00000 0.73559 0.00000 3.22214 -11.27200 16.42908 52.41133 0.00000 0.73559 0.00000 3.19016 -11.36300 16.91957 53.46647 0.00000 0.73559 0.00000 3.16004 -11.45400 17.41006 54.52174 0.00000 0.73559 0.00000 3.13162 -11.54500 17.90055 55.31326 0.00000 0.73559 0.00000 3.11134 - -11.54500 17.90055 55.84097 0.00000 1.71788 0.00000 3.09829 + -11.54500 17.90055 55.84097 0.00000 0.73559 0.00000 3.09829 -11.63600 18.39104 56.63257 0.00000 0.73559 0.00000 3.07936 -11.72700 18.88153 57.68810 0.00000 0.73559 0.00000 3.05527 -11.81800 19.37202 58.74369 0.00000 0.73559 0.00000 3.03240 @@ -58407,7 +58543,7 @@ Status character 6.10511 9.81000 6.10511 1.66212 402 100 P 6.15073 10.79100 6.15073 1.69227 402 100 P 6.18672 11.77200 6.18672 1.71488 402 100 P - 6.21147 11.77200 6.21147 1.76605 402 100 P + 6.21147 11.77200 6.21147 1.72996 402 100 P 6.24954 12.75300 6.24954 1.75257 402 100 P 6.30163 13.73400 6.30163 1.78272 402 100 P 6.35502 14.71500 6.35502 1.81287 402 100 P @@ -58419,7 +58555,7 @@ Status character 6.70386 20.79720 6.70386 1.99980 402 100 P 6.78526 22.17060 6.78526 2.04201 402 100 P 6.84669 23.54400 6.84669 2.07367 402 100 P - 21.84537 23.54400 21.84537 3.12198 402 100 P + 21.84537 23.54400 21.84537 1.66880 402 100 P 19.01090 27.35930 19.01090 0.72580 402 100 P 0.00000 31.17460 0.00000 0.00000 402 0 P 0.00000 34.98990 0.00000 0.00000 402 0 P @@ -58479,13 +58615,13 @@ Status character 48.91088 100.64270 48.91088 10.88762 402 100 P 49.60615 101.23130 49.60615 11.12551 402 100 P 50.12766 101.81990 50.12766 11.30392 402 100 P - 50.56520 101.81990 50.56520 9.38844 402 100 P + 50.56520 101.81990 50.56520 11.45359 402 100 P 51.35634 102.71261 51.35634 11.72419 402 100 P 52.41133 103.60532 52.41133 12.08499 402 100 P 53.46647 104.49803 53.46647 12.44579 402 100 P 54.52174 105.39074 54.52174 12.80658 402 100 P 55.31326 106.28345 55.31326 13.07718 402 100 P - 55.84097 106.28345 55.84097 30.96159 402 100 P + 55.84097 106.28345 55.84097 13.25758 402 100 P 56.63257 107.17616 56.63257 13.52818 402 100 P 57.68810 108.06887 57.68810 13.88897 402 100 P 58.74369 108.96158 58.74369 14.24977 402 100 P @@ -58512,7 +58648,7 @@ Status character 259.16165 114.38600 259.16165 26.60929 402 100 P 264.27183 115.75940 264.27183 27.16840 402 100 P 271.13898 117.13280 271.13898 27.91389 402 100 P - 35.77593 118.50620 278.05783 28.65938 110 13 1 + 35.78533 118.50620 278.05783 28.65938 110 13 1 16.78001 119.87960 285.01749 29.40487 1 0 A 17.10005 121.25300 290.25818 29.96399 1 0 A 17.31339 121.25300 293.76147 30.33673 1 0 A @@ -58547,7 +58683,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 98.530 'Hydrobiaklei' -12.00 26.134 'Basisveen' - -12.50 450.848 'Eerste zandlaag' + -12.50 450.849 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -58799,7 +58935,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -58811,7 +58947,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -59013,7 +59149,7 @@ Status character 8.97758 103.31170 155.04644 15.74469 1 0 A 9.40577 104.68510 161.14420 16.49018 1 0 A 9.72659 106.05850 166.01892 17.04930 1 0 A - 9.94033 106.05850 169.36158 17.45837 1 0 A + 9.94033 106.05850 169.36158 17.42204 1 0 A 10.26078 107.43190 174.46398 17.98116 1 0 A 10.68782 108.80530 181.36703 18.72665 1 0 A 11.11464 110.17870 188.34940 19.47214 1 0 A @@ -59022,10 +59158,10 @@ Status character 12.07442 112.92550 204.22293 21.14949 1 0 A 12.39421 114.29890 209.54580 21.70860 1 0 A 12.82053 115.67230 216.65723 22.45409 1 0 A - 16.08303 117.04570 223.78193 23.19958 110 0 1 + 16.07363 117.04570 223.78193 23.19958 110 0 1 230.91669 118.41910 230.91669 23.94507 402 100 P 236.27276 119.79250 236.27276 24.50419 402 100 P - 239.84569 119.79250 239.84569 26.61686 402 100 P + 239.84569 119.79250 239.84569 24.87693 402 100 P 245.20785 121.16590 245.20785 25.43605 402 100 P 252.36133 122.53930 252.36133 26.18154 402 100 P 259.51871 123.91270 259.51871 26.92703 402 100 P @@ -59056,7 +59192,7 @@ Layer name -7.00 0.000 'Wadzand' -10.00 0.000 'Hydrobiaklei' -12.00 1.022 'Basisveen' - -12.50 452.651 'Eerste zandlaag' + -12.50 452.650 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -59318,8 +59454,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 399.64400 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 479.90319 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 399.64413 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 479.90050 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -59362,8 +59498,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 16.45 : Percentage mobilized resistance left 17.81 : Percentage mobilized resistance right - 80.62 : Effective left - 146.44 : Effective right + 80.59 : Effective left + 146.42 : Effective right 548.36 : Water pressure left 1120.54 : Water pressure right 490.03 : Max effective resistance left @@ -59372,7 +59508,7 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 14.30 : Vertical force left + 14.28 : Vertical force left 44.01 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right @@ -59382,17 +59518,17 @@ Is favorable (0=false, 1=true) 0 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --14.30 : Active force +-14.28 : Active force 44.01 : Passive force --14.30 : Plugged active force +-14.28 : Plugged active force 44.01 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -29.72 : Resulting Vertical Force Unplugged -29.72 : Resulting Vertical Force Plugged +29.73 : Resulting Vertical Force Unplugged +29.73 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -59405,210 +59541,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 15.58836 - 0.00000 0.00000 14.97865 - 0.00000 0.00000 14.36895 - 0.00000 0.00000 13.75925 - 0.00000 0.00000 13.14954 - 0.00000 0.00000 12.53984 - 0.00000 0.00000 12.53984 - 0.00000 0.00000 11.93014 - 0.00000 0.00000 11.32043 - 0.00000 0.00000 10.71073 - 0.00000 0.00000 10.10103 - 0.00000 0.00000 9.49132 - 0.00000 0.00000 9.49132 - 0.00000 0.00049 9.41959 - 0.00001 0.00196 9.34786 - 0.00004 0.00441 9.27613 - 0.00010 0.00785 9.20440 - 0.00020 0.01226 9.13267 - 0.00020 0.01226 9.13267 - 0.00803 0.14175 8.27192 - 0.03988 0.41251 7.41117 - 0.11269 0.82453 6.55040 - 0.24341 1.37781 5.68960 - 0.44901 2.07236 4.82876 - 0.44901 2.07236 4.82876 - 0.68977 2.75906 4.11135 - 1.00409 3.54386 3.39384 - 1.40181 4.42676 2.67621 - 1.89272 5.40776 1.95838 - 2.48663 6.48686 1.24032 - 2.48663 6.48686 1.24032 - 3.19336 7.66406 0.52196 - 4.02271 8.93936 -0.19680 - 4.98450 10.31276 -0.91608 - 6.08854 11.78426 -1.63601 - 7.34462 13.35386 -2.35670 - 7.34462 13.35386 -2.35670 - 8.55395 14.78218 -2.97721 - 9.88924 16.28305 -3.59852 - 11.35672 17.85648 -4.22076 - 12.96263 19.50246 -4.84407 + 0.00000 0.00000 15.58776 + 0.00000 0.00000 14.97807 + 0.00000 0.00000 14.36838 + 0.00000 0.00000 13.75870 + 0.00000 0.00000 13.14901 + 0.00000 0.00000 12.53932 + 0.00000 0.00000 12.53932 + 0.00000 0.00000 11.92964 + 0.00000 0.00000 11.31995 + 0.00000 0.00000 10.71027 + 0.00000 0.00000 10.10058 + 0.00000 0.00000 9.49089 + 0.00000 0.00000 9.49089 + 0.00000 0.00049 9.41917 + 0.00001 0.00196 9.34744 + 0.00004 0.00441 9.27571 + 0.00010 0.00785 9.20398 + 0.00020 0.01226 9.13225 + 0.00020 0.01226 9.13225 + 0.00803 0.14175 8.27153 + 0.03988 0.41251 7.41080 + 0.11269 0.82453 6.55006 + 0.24341 1.37781 5.68928 + 0.44901 2.07236 4.82847 + 0.44901 2.07236 4.82847 + 0.68977 2.75906 4.11107 + 1.00409 3.54386 3.39359 + 1.40181 4.42676 2.67597 + 1.89272 5.40776 1.95817 + 2.48663 6.48686 1.24012 + 2.48663 6.48686 1.24012 + 3.19336 7.66406 0.52179 + 4.02271 8.93936 -0.19695 + 4.98450 10.31276 -0.91621 + 6.08854 11.78426 -1.63612 + 7.34462 13.35386 -2.35679 + 7.34462 13.35386 -2.35679 + 8.55395 14.78218 -2.97728 + 9.88924 16.28305 -3.59857 + 11.35672 17.85648 -4.22079 + 12.96263 19.50246 -4.84409 14.71322 21.22099 -5.46858 - 14.71322 -136.92301 -5.46858 - -0.76099 -134.53312 -6.29804 - -15.95549 -132.01574 -7.12736 - -30.85573 -129.37086 -7.95412 - -45.44720 -126.59850 -8.77588 - -59.71535 -123.69864 -9.59018 - -59.71443 -123.71664 -9.59018 - -69.52773 -121.60553 -10.15590 - -79.16964 -119.43163 -10.71601 - -88.63512 -117.19495 -11.26974 - -97.91916 -114.89549 -11.81635 - -107.01672 -112.53324 -12.35505 - -107.01698 -112.53515 -12.35505 - -109.26169 -111.93478 -12.48841 - -111.49435 -111.33048 -12.62121 - -113.71488 -110.72226 -12.75346 - -115.92321 -110.11012 -12.88512 - -118.11926 -109.49405 -13.01621 - -118.11930 -109.49360 -13.01621 - -128.91252 -106.35440 -13.66246 - -139.38691 -103.11710 -14.29247 - -149.53267 -99.78170 -14.90496 - -159.33998 -96.34820 -15.49865 - -168.79904 -92.81660 -16.07226 - -168.79919 -92.81144 -16.07226 - -177.89966 -89.18174 -16.62455 - -186.63226 -85.45394 -17.15442 - -194.98718 -81.62804 -17.66083 - -202.95460 -77.70404 -18.14272 - -210.52472 -73.68194 -18.59904 - -210.52471 -73.68150 -18.59904 - -217.68767 -69.56130 -19.02877 - -224.43370 -65.34300 -19.43107 - -230.75300 -61.02660 -19.80516 - -236.63575 -56.61210 -20.15022 - -242.07215 -52.09950 -20.46546 - -242.07219 -52.09882 -20.46546 - -248.91450 -45.61637 -20.85523 - -254.83580 -38.94164 -21.18352 - -259.80918 -32.07464 -21.44910 - -263.80773 -25.01537 -21.65075 - -266.80451 -17.76382 -21.78725 - -266.80458 -17.76228 -21.78725 - -268.66660 -10.85653 -21.85475 - -269.62010 -3.78499 -21.86504 - -269.64352 3.45233 -21.81811 - -268.71531 10.85545 -21.71396 - -266.81391 18.42436 -21.55259 - -266.81376 18.42407 -21.55259 - -263.91768 26.15877 -21.33414 - -260.00530 34.05925 -21.05949 - -255.05509 42.12552 -20.72968 - -249.04548 50.35758 -20.34578 - -241.95493 58.75543 -19.90884 - -241.95493 58.75541 -19.90884 - -232.43651 68.61790 -19.34235 - -221.42726 78.69964 -18.71037 - -208.89439 89.00064 -18.01644 - -194.80514 99.52089 -17.26410 - -179.12672 110.26040 -16.45687 - -179.12672 110.26040 -16.45687 - -161.82635 121.21916 -15.59864 - -142.87126 132.39718 -14.69480 - -122.22867 143.79446 -13.75117 - -99.86579 155.41099 -12.77357 - -75.74986 167.24678 -11.76782 - -75.75100 167.25261 -11.76782 - -49.84835 179.30766 -10.74010 - -22.12709 191.58196 -9.69831 - 7.44558 204.07552 -8.65076 - 38.90242 216.78833 -7.60580 - 72.27621 229.72040 -6.57175 - 72.27787 229.73053 -6.57175 - 107.60291 242.88186 -5.55736 - 144.91047 256.25244 -4.57322 - 184.23332 269.84227 -3.63040 - 225.60423 283.65136 -2.73998 - 269.05600 297.67971 -1.91303 - 269.05670 297.69177 -1.91303 - 269.65227 297.88093 -1.90245 - 270.24822 298.07012 -1.89188 - 270.84455 298.25936 -1.88133 - 271.44126 298.44863 -1.87079 - 272.03835 298.63795 -1.86026 - 272.03835 298.63793 -1.86026 - 283.45503 302.24234 -1.66288 - 295.00895 305.86091 -1.47065 - 306.70064 309.49365 -1.28379 - 318.53064 313.14056 -1.10251 - 330.49950 316.80163 -0.92703 - 330.49950 -163.10159 -0.92703 - 327.25679 -161.16902 -0.83706 - 324.05277 -159.23252 -0.74874 - 320.88751 -157.29211 -0.66205 - 317.76111 -155.34776 -0.57698 - 314.67363 -153.39950 -0.49352 - 314.67357 -153.39696 -0.49352 - 305.59789 -149.89203 -0.25256 - 296.64090 -148.66843 -0.02547 - 287.75838 -147.40955 0.18817 - 278.95246 -146.11538 0.38875 - 270.22524 -144.78593 0.57669 - 270.22524 -144.78599 0.57669 - 264.45192 -143.87814 0.69514 - 258.71518 -142.95656 0.80827 - 253.01561 -142.01930 0.91618 - 247.35384 -141.06637 1.01900 - 241.73048 -140.09971 1.11682 - 241.73048 -140.09986 1.11682 - 233.38001 -138.25071 1.25446 - 225.14020 -136.41164 1.38152 - 217.01038 -134.58409 1.49837 - 208.98988 -132.76806 1.60537 - 201.07801 -130.96212 1.70289 - 201.07863 -130.98502 1.70289 - 189.29403 -127.83509 1.83353 - 177.83177 -124.05471 1.94444 - 166.72089 -120.11528 2.03675 - 155.97462 -116.04964 2.11165 - 145.60187 -111.91780 2.17027 - 145.60211 -111.90796 2.17027 - 135.60799 -107.73866 2.21375 - 125.99449 -103.54269 2.24309 - 116.76398 -99.32174 2.25925 - 107.91858 -95.07942 2.26318 - 99.46000 -90.82133 2.25587 - 99.46008 -90.82031 2.25587 - 90.55047 -87.41862 2.23595 - 81.96874 -84.24516 2.20462 - 73.69556 -81.24810 2.16294 - 65.71304 -78.43350 2.11193 - 57.99874 -75.92251 2.05266 - 57.99747 -75.90752 2.05266 - 47.87094 -68.79184 1.95778 - 38.72562 -61.89339 1.85111 - 30.52958 -55.23504 1.73465 - 23.24753 -48.83980 1.61045 - 16.84108 -42.73086 1.48054 - 16.84154 -42.72514 1.48054 - 11.27176 -36.89551 1.34672 - 6.49635 -31.37559 1.21013 - 2.47226 -26.16286 1.07177 - -0.84373 -21.26027 0.93263 - -3.49536 -16.67373 0.79372 - -3.49657 -16.65297 0.79372 - -5.52402 -12.36357 0.65587 - -6.97285 -8.38439 0.51939 - -7.88566 -4.70542 0.38451 - -8.30414 -1.32160 0.25146 - -8.27036 1.74834 0.12048 - -8.26826 1.77748 0.12048 - -7.82005 4.47668 -0.00835 - -7.05054 6.40993 -0.13525 - -6.05484 7.70955 -0.26047 - -4.92101 8.38469 -0.38422 - -3.73591 8.44314 -0.50674 - -3.73475 8.43453 -0.50674 - -2.58547 7.88246 -0.62835 - -1.55595 6.72433 -0.74934 - -0.73080 4.96318 -0.86989 - -0.19039 2.68479 -0.99020 - 0.00306 0.02324 -1.11047 + 14.71322 -136.92313 -5.46858 + -0.76100 -134.53324 -6.29802 + -15.95551 -132.01586 -7.12732 + -30.85577 -129.37098 -7.95405 + -45.44725 -126.59862 -8.77578 + -59.71542 -123.69876 -9.59007 + -59.71450 -123.71678 -9.59007 + -69.52781 -121.60567 -10.15577 + -79.16973 -119.43177 -10.71586 + -88.63522 -117.19509 -11.26958 + -97.91927 -114.89563 -11.81616 + -107.01685 -112.53338 -12.35486 + -107.01711 -112.53529 -12.35486 + -109.26182 -111.93492 -12.48821 + -111.49448 -111.33062 -12.62101 + -113.71501 -110.72240 -12.75325 + -115.92335 -110.11026 -12.88491 + -118.11940 -109.49419 -13.01599 + -118.11944 -109.49374 -13.01599 + -128.91267 -106.35454 -13.66222 + -139.38707 -103.11724 -14.29221 + -149.53285 -99.78184 -14.90468 + -159.34017 -96.34834 -15.49834 + -168.79924 -92.81674 -16.07194 + -168.79939 -92.81157 -16.07194 + -177.89988 -89.18187 -16.62421 + -186.63250 -85.45407 -17.15406 + -194.98743 -81.62817 -17.66045 + -202.95486 -77.70417 -18.14232 + -210.52499 -73.68207 -18.59861 + -210.52498 -73.68164 -18.59861 + -217.68795 -69.56144 -19.02832 + -224.43400 -65.34314 -19.43061 + -230.75331 -61.02674 -19.80467 + -236.63608 -56.61224 -20.14971 + -242.07249 -52.09964 -20.46493 + -242.07253 -52.09895 -20.46493 + -248.91486 -45.61650 -20.85467 + -254.83618 -38.94178 -21.18293 + -259.80958 -32.07478 -21.44848 + -263.80815 -25.01550 -21.65010 + -266.80495 -17.76395 -21.78657 + -266.80502 -17.76241 -21.78657 + -268.66706 -10.85666 -21.85405 + -269.62057 -3.78513 -21.86431 + -269.64400 3.45220 -21.81735 + -268.71581 10.85532 -21.71317 + -266.81444 18.42422 -21.55177 + -266.81429 18.42394 -21.55177 + -263.91822 26.15864 -21.33329 + -260.00586 34.05912 -21.05861 + -255.05566 42.12539 -20.72878 + -249.04607 50.35746 -20.34485 + -241.95554 58.75531 -19.90788 + -241.95554 58.75529 -19.90788 + -232.43714 68.61777 -19.34135 + -221.42790 78.69951 -18.70934 + -208.89505 89.00051 -18.01538 + -194.80582 99.52076 -17.26300 + -179.12742 110.26027 -16.45574 + -179.12742 110.26027 -16.45574 + -161.82707 121.21904 -15.59748 + -142.87200 132.39706 -14.69360 + -122.22943 143.79433 -13.74994 + -99.86657 155.41086 -12.77230 + -75.75065 167.24665 -11.76651 + -75.75180 167.25248 -11.76651 + -49.84917 179.30752 -10.73876 + -22.12792 191.58182 -9.69693 + 7.44472 204.07538 -8.64935 + 38.90154 216.78819 -7.60435 + 72.27532 229.72026 -6.57026 + 72.27683 229.73268 -6.57026 + 107.60219 242.88400 -5.55584 + 144.91007 256.25458 -4.57166 + 184.23324 269.84442 -3.62880 + 225.60447 283.65351 -2.73835 + 269.05656 297.68186 -1.91137 + 269.05728 297.69399 -1.91137 + 269.65286 297.88315 -1.90078 + 270.24881 298.07235 -1.89022 + 270.84515 298.26158 -1.87966 + 271.44186 298.45086 -1.86912 + 272.03895 298.64017 -1.85859 + 272.03895 298.64015 -1.85859 + 283.45572 302.24456 -1.66120 + 295.00972 305.86313 -1.46896 + 306.70149 309.49587 -1.28209 + 318.53158 313.14278 -1.10080 + 330.50052 316.80385 -0.92531 + 330.50052 -163.09667 -0.92531 + 327.25791 -161.16410 -0.83534 + 324.05399 -159.22761 -0.74701 + 320.88883 -157.28719 -0.66032 + 317.76252 -155.34285 -0.57525 + 314.67514 -153.39458 -0.49177 + 314.67515 -153.39469 -0.49177 + 305.59960 -149.88976 -0.25081 + 296.64275 -148.66616 -0.02370 + 287.76037 -147.40727 0.18995 + 278.95458 -146.11311 0.39055 + 270.22750 -144.78366 0.57850 + 270.22750 -144.78380 0.57850 + 264.45426 -143.87594 0.69697 + 258.71761 -142.95436 0.81010 + 253.01812 -142.01711 0.91802 + 247.35645 -141.06417 1.02085 + 241.73317 -140.09752 1.11868 + 241.73318 -140.09766 1.11868 + 233.38284 -138.24851 1.25634 + 225.14316 -136.40944 1.38341 + 217.01347 -134.58189 1.50027 + 208.99310 -132.76587 1.60728 + 201.08137 -130.95992 1.70481 + 201.08199 -130.98285 1.70481 + 189.29753 -127.83444 1.83548 + 177.83520 -124.05702 1.94640 + 166.72398 -120.12037 2.03874 + 155.97717 -116.05583 2.11365 + 145.60388 -111.92354 2.17229 + 145.60421 -111.91603 2.17229 + 135.60938 -107.74627 2.21579 + 125.99520 -103.54983 2.24514 + 116.76407 -99.32840 2.26132 + 107.91808 -95.08561 2.26528 + 99.45896 -90.82704 2.25798 + 99.45903 -90.82609 2.25798 + 90.54885 -87.42419 2.23808 + 81.96658 -84.25051 2.20677 + 73.69287 -81.25324 2.16511 + 65.70985 -78.43842 2.11413 + 57.99507 -75.92721 2.05487 + 57.99378 -75.91183 2.05487 + 47.86696 -68.79162 1.96002 + 38.72199 -61.88862 1.85338 + 30.52694 -55.22570 1.73696 + 23.24652 -48.82586 1.61279 + 16.84234 -42.71230 1.48291 + 16.84281 -42.70657 1.48291 + 11.27571 -36.87486 1.34912 + 6.50351 -31.35028 1.21257 + 2.48330 -26.13287 1.07423 + -0.82816 -21.22559 0.93512 + -3.47461 -16.63434 0.79624 + -3.47462 -16.63428 0.79624 + -5.49912 -12.34016 0.65841 + -6.94434 -8.35626 0.52194 + -7.85288 -4.67259 0.38706 + -8.26644 -1.28409 0.25401 + -8.22697 1.79279 0.12302 + -8.22501 1.82135 0.12302 + -7.78138 4.40793 -0.00584 + -7.02086 6.35022 -0.13277 + -6.03290 7.65871 -0.25803 + -4.90557 8.34253 -0.38182 + -3.72578 8.40946 -0.50440 + -3.72463 8.40085 -0.50440 + -2.57948 7.85707 -0.62606 + -1.55294 6.70701 -0.74710 + -0.72967 4.95371 -0.86770 + -0.19014 2.68108 -0.98807 + 0.00306 0.02325 -1.10839 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -59834,7 +59970,7 @@ Lambda passive -12.92000 30.12970 155.04644 8.97758 0.52256 0.29796 5.14597 -13.06000 31.55630 161.14420 9.40577 0.52256 0.29806 5.10656 -13.20000 32.98290 166.01892 9.72659 0.52256 0.29812 5.08851 - -13.20000 32.98290 169.36158 9.94033 0.52365 0.29815 5.07990 + -13.20000 32.98290 169.36158 9.94033 0.52256 0.29815 5.07990 -13.34000 34.40950 174.46398 10.26078 0.52256 0.29820 5.07023 -13.48000 35.83610 181.36703 10.68782 0.52256 0.29824 5.06101 -13.62000 37.26270 188.34940 11.11464 0.52256 0.29828 5.05464 @@ -59846,7 +59982,7 @@ Lambda passive -14.32000 44.39570 223.78193 13.24677 0.52256 0.29838 5.04062 -14.46000 45.82230 230.91669 13.67296 0.52256 0.29839 5.03940 -14.60000 47.24890 236.27276 13.99256 0.52256 0.29840 5.03863 - -14.60000 47.24890 239.84569 14.20562 0.55911 0.29840 5.03819 + -14.60000 47.24890 239.84569 14.20562 0.52256 0.29840 5.03819 -14.74000 48.67550 245.20785 14.52518 0.52256 0.29841 5.03760 -14.88000 50.10210 252.36133 14.95124 0.52256 0.29842 5.03694 -15.02000 51.52870 259.51871 15.37726 0.52256 0.29842 5.03639 @@ -60031,51 +60167,51 @@ Status character 0.00000 104.77080 0.00000 0.00000 -1 0 - 0.00000 105.35940 0.00000 0.00000 -1 0 - 0.05123 100.35940 0.05123 0.05123 402 100 P - 15.13086 101.25211 28.71471 4.03872 220 53 2 - 15.93169 102.14482 29.77573 4.39952 220 54 2 - 16.67470 103.03753 30.83654 4.76032 220 54 2 - 17.36340 103.93024 31.89713 5.12111 220 54 2 - 17.88991 104.82295 32.69245 5.39171 220 55 2 - 18.11265 104.82295 33.22259 5.57211 220 55 2 - 18.59174 105.71566 34.01772 5.84271 220 55 2 - 19.13783 106.60837 35.07774 6.20351 220 55 2 - 19.64251 107.50108 36.13758 6.56430 220 54 2 - 20.10870 108.39379 37.19726 6.92510 220 54 2 - 20.42805 109.28650 37.99192 7.19570 220 54 2 - 13.41477 109.28650 23.90815 8.27361 220 56 2 - 15.27879 107.26750 27.72769 10.12262 220 55 2 - 17.75318 105.24850 32.80815 12.58797 220 54 2 - 20.21064 103.22950 37.87590 15.05332 220 53 2 - 22.65319 101.21050 42.93327 17.51866 220 53 2 - 24.45785 99.19150 46.72104 19.36768 220 52 2 - 54.11164 99.19150 161.29178 13.69459 110 34 1 - 52.94879 100.56490 148.60114 14.25371 110 36 1 - 51.74963 101.93830 150.00588 14.99920 110 34 1 - 50.36684 103.31170 155.04644 15.74469 110 32 1 - 48.83941 104.68510 161.14420 16.49018 110 30 1 - 47.02001 106.05850 166.01892 17.04930 110 28 1 - 47.42909 106.05850 169.36158 17.45837 110 28 1 - 45.50250 107.43190 174.46398 17.98116 110 26 1 - 43.74915 108.80530 181.36703 18.72665 110 24 1 - 41.96534 110.17870 188.34940 19.47214 110 22 1 - 40.17007 111.55210 195.38331 20.21763 110 21 1 - 38.19596 112.92550 200.68154 20.77674 110 19 1 - 38.56871 112.92550 204.22293 21.14949 110 19 1 - 36.61793 114.29890 209.54580 21.70860 110 17 1 - 34.88297 115.67230 216.65723 22.45409 110 16 1 - 33.18196 117.04570 223.78193 23.19958 110 15 1 - 31.51940 118.41910 230.91669 23.94507 110 14 1 - 29.71341 119.79250 236.27276 24.50419 110 13 1 - 31.82608 119.79250 239.84569 26.61686 110 13 1 - 28.32476 121.16590 245.20785 25.43605 110 12 1 - 26.78972 122.53930 252.36133 26.18154 110 11 1 - 25.28979 123.91270 259.51871 26.92703 110 0 1 - 23.82011 125.28610 266.67927 27.67252 110 0 1 - 22.18943 126.65950 272.05135 28.23164 110 0 1 - 22.56217 126.65950 275.63352 28.60438 110 0 1 - 20.95032 128.03290 281.00777 29.16350 110 0 1 - 19.53771 129.40630 288.17492 29.90899 110 0 1 - 18.13402 130.77970 295.34358 30.65448 110 0 1 + 15.13570 101.25211 28.71471 4.03872 220 53 2 + 15.93661 102.14482 29.77573 4.39952 220 54 2 + 16.67969 103.03753 30.83654 4.76032 220 54 2 + 17.36845 103.93024 31.89713 5.12111 220 54 2 + 17.89500 104.82295 32.69245 5.39171 220 55 2 + 18.11774 104.82295 33.22259 5.57211 220 55 2 + 18.59688 105.71566 34.01772 5.84271 220 55 2 + 19.14302 106.60837 35.07774 6.20351 220 55 2 + 19.64772 107.50108 36.13758 6.56430 220 54 2 + 20.11395 108.39379 37.19726 6.92510 220 54 2 + 20.43332 109.28650 37.99192 7.19570 220 54 2 + 13.41688 109.28650 23.90815 8.27361 220 56 2 + 15.28091 107.26750 27.72769 10.12262 220 55 2 + 17.75531 105.24850 32.80815 12.58797 220 54 2 + 20.21278 103.22950 37.87590 15.05332 220 53 2 + 22.65534 101.21050 42.93327 17.51866 220 53 2 + 24.46000 99.19150 46.72104 19.36768 220 52 2 + 54.14394 99.19150 161.29178 13.69459 110 34 1 + 52.98124 100.56490 148.60114 14.25371 110 36 1 + 51.78223 101.93830 150.00588 14.99920 110 35 1 + 50.39958 103.31170 155.04644 15.74469 110 33 1 + 48.87230 104.68510 161.14420 16.49018 110 30 1 + 47.05306 106.05850 166.01892 17.04930 110 28 1 + 47.42580 106.05850 169.36158 17.42204 110 28 1 + 45.53570 107.43190 174.46398 17.98116 110 26 1 + 43.78250 108.80530 181.36703 18.72665 110 24 1 + 41.99883 110.17870 188.34940 19.47214 110 22 1 + 40.20366 111.55210 195.38331 20.21763 110 21 1 + 38.22963 112.92550 200.68154 20.77674 110 19 1 + 38.60238 112.92550 204.22293 21.14949 110 19 1 + 36.65162 114.29890 209.54580 21.70860 110 17 1 + 34.91662 115.67230 216.65723 22.45409 110 16 1 + 33.21549 117.04570 223.78193 23.19958 110 15 1 + 31.55271 118.41910 230.91669 23.94507 110 14 1 + 29.74640 119.79250 236.27276 24.50419 110 13 1 + 30.11914 119.79250 239.84569 24.87693 110 13 1 + 28.35730 121.16590 245.20785 25.43605 110 12 1 + 26.82171 122.53930 252.36133 26.18154 110 11 1 + 25.32115 123.91270 259.51871 26.92703 110 0 1 + 23.85078 125.28610 266.67927 27.67252 110 0 1 + 22.21937 126.65950 272.05135 28.23164 110 0 1 + 22.59211 126.65950 275.63352 28.60438 110 0 1 + 20.97951 128.03290 281.00777 29.16350 110 0 1 + 19.56615 129.40630 288.17492 29.90899 110 0 1 + 18.16170 130.77970 295.34358 30.65448 110 0 1 17.93298 132.15310 302.51355 31.39997 1 0 A 18.25240 133.52650 307.89172 31.95908 1 0 A [END OF DATA] @@ -60095,9 +60231,9 @@ Layer name -3.00 0.000 'Hollandveen' -5.70 0.000 'Oude Zeeklei' -7.00 0.000 'Wadzand' - -10.00 15.545 'Hydrobiaklei' - -12.00 9.483 'Basisveen' - -12.50 121.409 'Eerste zandlaag' + -10.00 15.549 'Hydrobiaklei' + -12.00 9.484 'Basisveen' + -12.50 121.391 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -60117,9 +60253,9 @@ Layer name -3.00 0.00 'Hollandveen' -5.70 0.00 'Oude Zeeklei' -7.00 0.00 'Wadzand' - -10.00 2.88 'Hydrobiaklei' + -10.00 2.89 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 41.13 'Eerste zandlaag' + -12.50 41.12 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -60243,20 +60379,20 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.61000 22.00000 1.00000 24.95855 24.95855 - -10.65000 1.00500 26.00000 28.06299 28.06299 - -10.69000 19.00000 19.06000 31.15175 31.15175 - -10.73000 14.00000 27.00000 34.22483 34.22483 - -10.77000 23.00000 50.00000 37.28223 37.28223 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.61000 1.00000 1.00000 24.95855 24.95855 + -10.65000 1.00000 1.00000 28.06299 28.06299 + -10.69000 1.00000 1.00000 31.15175 31.15175 + -10.73000 1.00000 1.00000 34.22483 34.22483 + -10.77000 1.00000 1.00000 37.28223 37.28223 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -60348,7 +60484,7 @@ Lambda passive -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 -11.45400 14.46196 50.75151 0.68205 0.73559 0.04716 3.50931 -11.54500 14.95245 51.29123 0.87054 0.73559 0.05870 3.45865 - -11.54500 14.95245 51.67530 0.99607 0.73799 0.06607 3.42786 + -11.54500 14.95245 51.67530 0.99607 0.73559 0.06607 3.42786 -11.63600 15.44294 52.27958 1.18425 0.73559 0.07669 3.38534 -11.72700 15.93343 53.12261 1.43506 0.73559 0.09007 3.33403 -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 @@ -60360,7 +60496,7 @@ Lambda passive -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 -12.40000 6.16090 17.73824 -0.08984 0.77308 0.00000 2.87916 -12.50000 3.34990 14.16208 -1.41774 0.77308 0.00000 3.49452 - -12.50000 3.34990 19.78289 1.09949 1.03807 0.29664 5.33728 + -12.50000 3.34990 19.78289 1.09949 0.52256 0.29664 5.33728 -12.64000 4.77650 25.37256 1.41713 0.52256 0.29669 5.31196 -12.78000 6.20310 32.73186 1.84091 0.52256 0.29677 5.27669 -12.92000 7.62970 39.99110 2.26502 0.52256 0.29687 5.24150 @@ -60563,12 +60699,12 @@ Status character 3.38334 71.21640 64.85543 6.01227 1 0 A 3.52738 71.80500 67.61636 6.26822 1 0 A 0.00000 71.80500 49.41323 9.28501 1 0 A - 3.06167 72.69771 49.35826 9.55561 110 0 1 - 2.02443 73.59042 49.61712 9.91641 110 0 1 - 1.10995 74.48313 50.11297 10.27721 110 0 1 + 3.09996 72.69771 49.35826 9.55561 110 0 1 + 2.06089 73.59042 49.61712 9.91641 110 0 1 + 1.14445 74.48313 50.11297 10.27721 110 0 1 0.68205 75.37584 50.75151 10.63800 1 0 A 0.87054 76.26855 51.29123 10.90860 1 0 A - 0.99607 76.26855 51.67530 11.12523 1 0 A + 0.99607 76.26855 51.67530 11.08900 1 0 A 1.18425 77.16126 52.27958 11.35960 1 0 A 1.43506 78.05397 53.12261 11.72040 1 0 A 1.68581 78.94668 54.00062 12.08119 1 0 A @@ -60580,7 +60716,7 @@ Status character 1.68059 92.67510 22.52396 6.93599 1 0 A 0.00000 96.65610 17.73824 4.76286 1 0 A 0.00000 100.63710 14.16208 3.13302 1 0 A - 1.09949 100.63710 19.78289 3.84765 1 0 A + 1.09949 100.63710 19.78289 1.93691 1 0 A 1.41713 102.01050 25.37256 2.49603 1 0 A 1.84091 103.38390 32.73186 3.24152 1 0 A 2.26502 104.75730 39.99110 3.98700 1 0 A @@ -60597,19 +60733,19 @@ Status character 6.09531 117.11790 103.82983 10.69641 1 0 A 6.52171 118.49130 110.92550 11.44190 1 0 A 6.94816 119.86470 118.02984 12.18739 1 0 A - 7.53728 121.23810 123.36324 12.74651 110 0 1 - 7.91003 121.23810 126.92141 13.11925 110 0 1 - 10.78966 122.61150 132.26229 13.67837 110 0 1 - 13.81568 123.98490 139.38900 14.42386 110 0 1 - 16.80659 125.35830 146.52174 15.16935 110 11 1 - 19.76725 126.73170 153.65983 15.91484 110 13 1 - 22.51616 128.10510 159.01640 16.47395 110 14 1 - 22.88891 128.10510 162.58890 16.84670 110 14 1 - 25.61900 129.47850 167.94962 17.40581 110 15 1 - 28.52258 130.85190 175.10024 18.15130 110 16 1 - 31.41725 132.22530 182.25406 18.89679 110 17 1 - 34.30697 133.59870 189.41070 19.64228 110 18 1 - 37.00935 134.97210 194.77975 20.20140 110 19 1 + 7.50430 121.23810 123.36324 12.74651 110 0 1 + 7.87704 121.23810 126.92141 13.11925 110 0 1 + 10.75712 122.61150 132.26229 13.67837 110 0 1 + 13.78369 123.98490 139.38900 14.42386 110 0 1 + 16.77523 125.35830 146.52174 15.16935 110 11 1 + 19.73658 126.73170 153.65983 15.91484 110 13 1 + 22.48622 128.10510 159.01640 16.47395 110 14 1 + 22.85897 128.10510 162.58890 16.84670 110 14 1 + 25.58980 129.47850 167.94962 17.40581 110 15 1 + 28.49414 130.85190 175.10024 18.15130 110 16 1 + 31.38957 132.22530 182.25406 18.89679 110 17 1 + 34.28006 133.59870 189.41070 19.64228 110 18 1 + 36.98321 134.97210 194.77975 20.20140 110 19 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -60624,9 +60760,9 @@ Layer name [DATA] -9.99 36.488 'OWB' -10.79 0.929 'Grind' - -11.09 1.375 'Hydrobiaklei' + -11.09 1.385 'Hydrobiaklei' -12.00 1.363 'Basisveen' - -12.50 40.466 'Eerste zandlaag' + -12.50 40.422 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -60645,7 +60781,7 @@ Layer name -10.79 -0.33 'Grind' -11.09 -0.26 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -13.71 'Eerste zandlaag' + -12.50 -13.69 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -60885,8 +61021,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -2.43000 441.39180 210000000.000 1 1 1 'Stempelraam boven dek' - -10.19000 516.31714 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -2.43000 441.38892 210000000.000 1 1 1 'Stempelraam boven dek' + -10.19000 516.34686 10000000.000 1 1 1 'Onderwaterbeton 2-laags' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -60930,10 +61066,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 27.51 : Percentage mobilized resistance left - 23.17 : Percentage mobilized resistance right - 134.79 : Effective left - 127.09 : Effective right + 27.50 : Percentage mobilized resistance left + 23.16 : Percentage mobilized resistance right + 134.77 : Effective left + 127.05 : Effective right 548.36 : Water pressure left 540.51 : Water pressure right 490.03 : Max effective resistance left @@ -60942,8 +61078,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 28.50 : Vertical force left - 20.39 : Vertical force right + 28.51 : Vertical force left + 20.38 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -10.19 : Level of single support @@ -60952,17 +61088,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --20.39 : Active force -28.50 : Passive force --20.39 : Plugged active force -28.50 : Plugged passive force +-20.38 : Active force +28.51 : Passive force +-20.38 : Plugged active force +28.51 : Plugged passive force 0.00 : Anchor force 0.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor -8.11 : Resulting Vertical Force Unplugged -8.11 : Resulting Vertical Force Plugged +8.13 : Resulting Vertical Force Unplugged +8.13 : Resulting Vertical Force Plugged 2 : Vertical Balance Result Unplugged 2 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -60975,210 +61111,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -7.39186 - 0.00000 0.00000 -7.35033 - 0.00000 0.00000 -7.30880 - 0.00000 0.00000 -7.26727 - 0.00000 0.00000 -7.22574 - 0.00000 0.00000 -7.18421 - 0.00000 0.00000 -7.18421 - 0.00000 0.00000 -7.14268 - 0.00000 0.00000 -7.10115 - 0.00000 0.00000 -7.05962 - 0.00000 0.00000 -7.01810 - 0.00000 0.00000 -6.97657 - 0.00000 0.00000 -6.97657 - 0.00000 0.00000 -6.92119 - 0.00000 0.00000 -6.86582 - 0.00000 0.00000 -6.81045 - 0.00000 0.00000 -6.75507 - 0.00000 0.00000 -6.69970 - 0.00000 0.00000 -6.69970 - 0.00000 0.00000 -6.65356 - 0.00000 0.00000 -6.60741 - 0.00000 0.00000 -6.56127 - 0.00000 0.00000 -6.51513 - 0.00000 0.00000 -6.46898 - 0.00000 0.00000 -6.46898 - 0.00000 0.00000 -6.42284 - 0.00000 0.00000 -6.37669 - 0.00000 0.00000 -6.33055 - 0.00000 0.00000 -6.28441 - 0.00000 0.00000 -6.23826 - 0.00000 0.00000 -6.23826 - 0.00000 0.00000 -6.19858 - 0.00000 0.00000 -6.15890 - 0.00000 0.00000 -6.11921 - 0.00000 0.00000 -6.07953 - 0.00000 0.00000 -6.03984 - 0.00000 -1.49180 -6.03984 - -0.17007 -1.49180 -5.98724 - -0.34013 -1.49180 -5.93460 - -0.51020 -1.49180 -5.88191 - -0.68026 -1.49180 -5.82913 - -0.85033 -1.49180 -5.77624 - -0.84941 -1.50980 -5.77624 - -0.97019 -1.50980 -5.73905 - -1.09097 -1.50980 -5.70177 - -1.21176 -1.50980 -5.66441 - -1.33254 -1.50980 -5.62695 - -1.45333 -1.50980 -5.58939 - -1.45358 -1.51171 -5.58939 - -1.48382 -1.51171 -5.57998 - -1.51405 -1.51171 -5.57056 - -1.54429 -1.51171 -5.56114 - -1.57452 -1.51171 -5.55170 - -1.60476 -1.51171 -5.54226 - -1.60479 -1.51126 -5.54226 - -1.75592 -1.51126 -5.49494 - -1.90704 -1.51126 -5.44739 - -2.05817 -1.51126 -5.39960 - -2.20930 -1.51126 -5.35156 - -2.36042 -1.51126 -5.30323 - -2.36057 -1.50609 -5.30323 - -2.51118 -1.50609 -5.25461 - -2.66179 -1.50609 -5.20567 - -2.81240 -1.50609 -5.15639 - -2.96301 -1.50609 -5.10676 - -3.11362 -1.50609 -5.05676 - -3.11361 -1.50566 -5.05676 - -3.26418 -1.50566 -5.00637 - -3.41474 -1.50566 -4.95556 - -3.56531 -1.50566 -4.90433 - -3.71587 -1.50566 -4.85264 - -3.86644 -1.50566 -4.80049 - -3.86648 -1.50497 -4.80049 - -4.07718 -1.50497 -4.72665 - -4.28788 -1.50497 -4.65181 - -4.49857 -1.50497 -4.57591 - -4.70927 -1.50497 -4.49890 - -4.91996 -1.50497 -4.42072 - -4.92003 -1.50344 -4.42072 - -5.11548 -1.50344 -4.34704 - -5.31093 -1.50344 -4.27228 - -5.50637 -1.50344 -4.19638 - -5.70182 -1.50344 -4.11931 - -5.89727 -1.50344 -4.04102 - -5.89712 -1.50372 -4.04102 - -6.09260 -1.50372 -3.96148 - -6.28809 -1.50372 -3.88065 - -6.48357 -1.50372 -3.79847 - -6.67905 -1.50372 -3.71491 - -6.87454 -1.50372 -3.62994 - -6.87454 -1.50374 -3.62994 - -7.09935 -1.50374 -3.53040 - -7.32416 -1.50374 -3.42887 - -7.54897 -1.50374 -3.32527 - -7.77378 -1.50374 -3.21954 - -7.99859 -1.50374 -3.11163 - -7.99859 -1.50374 -3.11163 - -8.22340 -1.50374 -3.00147 - -8.44821 -1.50374 -2.88899 - -8.67302 -1.50374 -2.77413 - -8.89783 -1.50374 -2.65683 - -9.12264 -1.50374 -2.53703 - -9.12378 -1.49791 -2.53703 - -9.34772 -1.49791 -2.41465 - -9.57165 -1.49791 -2.28965 - -9.79559 -1.49791 -2.16195 - -10.01953 -1.49791 -2.03149 - -10.24347 -1.49791 -1.89821 - -10.24181 -1.48777 -1.89821 - -10.46424 -1.48777 -1.76204 - -10.68666 -1.48777 -1.62293 - -10.90908 -1.48777 -1.48081 - -11.13150 -1.48777 -1.33562 - -11.35392 -1.48777 -1.18730 - -11.35322 -1.47571 -1.18730 - -11.35612 -1.39693 -1.18529 - -11.35876 -1.24093 -1.18329 - -11.36108 -1.08493 -1.18128 - -11.36310 -0.92893 -1.17927 - -11.36480 -0.77293 -1.17726 - -11.36480 -0.77295 -1.17726 - -11.33785 2.19106 -1.13900 - -11.19828 5.15509 -1.10053 - -10.94607 8.11913 -1.06186 - -10.58122 11.08318 -1.02299 - -10.10374 14.04725 -0.98393 - -10.10375 31.13008 -0.98393 - -9.46554 32.69012 -0.96329 - -8.79614 34.25017 -0.94261 - -8.09554 35.81022 -0.92188 - -7.36373 37.37027 -0.90112 - -6.60073 38.93033 -0.88031 - -6.60079 38.93287 -0.88031 - -4.17215 41.24966 -0.81772 - -1.69716 41.24984 -0.75493 - 0.77784 41.25002 -0.69207 - 3.25284 41.25020 -0.62925 - 5.72786 41.25038 -0.56657 - 5.72786 41.25034 -0.56657 - 6.96539 41.25153 -0.53532 - 8.20294 41.25162 -0.50415 - 9.44049 41.25171 -0.47308 - 10.67804 41.25180 -0.44211 - 11.91559 41.25079 -0.41126 - 11.91559 41.25077 -0.41126 - 12.32810 41.25080 -0.40100 - 12.74060 41.25083 -0.39077 - 13.15311 41.25086 -0.38054 - 13.56562 41.25089 -0.37034 - 13.97813 41.25092 -0.36015 - 13.97820 41.24947 -0.36015 - 16.37212 38.52430 -0.29941 - 18.59812 35.64917 -0.23942 - 20.64688 32.61710 -0.18026 - 22.50916 29.43424 -0.12204 - 24.17635 26.11983 -0.06483 - 24.17664 26.10153 -0.06483 - 26.46004 24.00329 0.01980 - 28.53871 21.68955 0.10166 - 30.40964 19.44530 0.18057 - 32.08070 17.29817 0.25632 - 33.56103 15.25388 0.32873 - 33.56107 15.25418 0.32873 - 34.86094 13.33280 0.39761 - 35.99123 11.52982 0.46285 - 36.96326 9.85535 0.52436 - 37.78896 8.31460 0.58202 - 38.47992 6.88579 0.63574 - 38.47996 6.88082 0.63574 - 39.12507 6.06227 0.69012 - 39.69820 5.41716 0.73958 - 40.21155 4.86361 0.78404 - 40.67278 4.36571 0.82344 - 41.08425 3.85463 0.85771 - 41.08768 3.84867 0.85771 - 41.51707 2.40037 0.89693 - 41.72840 0.27946 0.92587 - 41.54038 -3.01883 0.94460 - 40.86997 -6.59906 0.95317 - 39.68838 -10.27050 0.95165 - 39.69571 -10.31257 0.95165 - 37.99374 -13.88512 0.94021 - 35.84089 -16.75025 0.91940 - 33.33619 -18.91834 0.88981 - 30.57433 -20.43128 0.85205 - 27.64370 -21.33850 0.80673 - 27.64266 -21.32229 0.80673 - 24.62824 -21.65196 0.75455 - 21.60424 -21.46443 0.69629 - 18.64070 -20.79472 0.63269 - 15.80247 -19.68037 0.56446 - 13.14586 -18.23035 0.49232 - 13.15076 -18.15417 0.49232 - 10.72236 -16.52630 0.41699 - 8.52647 -14.83248 0.33902 - 6.57209 -13.07794 0.25888 - 4.86707 -11.27158 0.17707 - 3.41738 -9.43668 0.09406 - 3.41742 -9.51327 0.09406 - 2.21606 -7.65874 0.01029 - 1.27118 -5.84277 -0.07403 - 0.58025 -4.02308 -0.15872 - 0.14945 -2.10186 -0.24361 - 0.00020 0.00085 -0.32853 + 0.00000 0.00000 -7.39350 + 0.00000 0.00000 -7.35192 + 0.00000 0.00000 -7.31034 + 0.00000 0.00000 -7.26876 + 0.00000 0.00000 -7.22718 + 0.00000 0.00000 -7.18559 + 0.00000 0.00000 -7.18559 + 0.00000 0.00000 -7.14401 + 0.00000 0.00000 -7.10243 + 0.00000 0.00000 -7.06085 + 0.00000 0.00000 -7.01927 + 0.00000 0.00000 -6.97769 + 0.00000 0.00000 -6.97769 + 0.00000 0.00000 -6.92225 + 0.00000 0.00000 -6.86681 + 0.00000 0.00000 -6.81136 + 0.00000 0.00000 -6.75592 + 0.00000 0.00000 -6.70048 + 0.00000 0.00000 -6.70048 + 0.00000 0.00000 -6.65428 + 0.00000 0.00000 -6.60808 + 0.00000 0.00000 -6.56188 + 0.00000 0.00000 -6.51568 + 0.00000 0.00000 -6.46948 + 0.00000 0.00000 -6.46948 + 0.00000 0.00000 -6.42327 + 0.00000 0.00000 -6.37707 + 0.00000 0.00000 -6.33087 + 0.00000 0.00000 -6.28467 + 0.00000 0.00000 -6.23847 + 0.00000 0.00000 -6.23847 + 0.00000 0.00000 -6.19874 + 0.00000 0.00000 -6.15900 + 0.00000 0.00000 -6.11927 + 0.00000 0.00000 -6.07954 + 0.00000 0.00000 -6.03980 + 0.00000 -1.48892 -6.03980 + -0.16974 -1.48892 -5.98713 + -0.33947 -1.48892 -5.93443 + -0.50921 -1.48892 -5.88167 + -0.67895 -1.48892 -5.82883 + -0.84869 -1.48892 -5.77588 + -0.84777 -1.50694 -5.77588 + -0.96832 -1.50694 -5.73864 + -1.08888 -1.50694 -5.70132 + -1.20943 -1.50694 -5.66391 + -1.32999 -1.50694 -5.62641 + -1.45054 -1.50694 -5.58880 + -1.45080 -1.50885 -5.58880 + -1.48098 -1.50885 -5.57938 + -1.51115 -1.50885 -5.56995 + -1.54133 -1.50885 -5.56051 + -1.57151 -1.50885 -5.55107 + -1.60168 -1.50885 -5.54162 + -1.60172 -1.50840 -5.54162 + -1.75256 -1.50840 -5.49424 + -1.90340 -1.50840 -5.44664 + -2.05424 -1.50840 -5.39879 + -2.20508 -1.50840 -5.35069 + -2.35592 -1.50840 -5.30231 + -2.35607 -1.50323 -5.30231 + -2.50639 -1.50323 -5.25364 + -2.65672 -1.50323 -5.20465 + -2.80704 -1.50323 -5.15532 + -2.95736 -1.50323 -5.10564 + -3.10769 -1.50323 -5.05559 + -3.10768 -1.50280 -5.05559 + -3.25796 -1.50280 -5.00515 + -3.40824 -1.50280 -4.95429 + -3.55851 -1.50280 -4.90301 + -3.70879 -1.50280 -4.85128 + -3.85907 -1.50280 -4.79908 + -3.85912 -1.50211 -4.79908 + -4.06941 -1.50211 -4.72518 + -4.27971 -1.50211 -4.65028 + -4.49000 -1.50211 -4.57432 + -4.70030 -1.50211 -4.49725 + -4.91059 -1.50211 -4.41902 + -4.91066 -1.50057 -4.41902 + -5.10574 -1.50057 -4.34529 + -5.30081 -1.50057 -4.27048 + -5.49588 -1.50057 -4.19454 + -5.69096 -1.50057 -4.11743 + -5.88603 -1.50057 -4.03910 + -5.88588 -1.50085 -4.03910 + -6.08099 -1.50085 -3.95952 + -6.27610 -1.50085 -3.87865 + -6.47121 -1.50085 -3.79645 + -6.66632 -1.50085 -3.71286 + -6.86143 -1.50085 -3.62786 + -6.86144 -1.50087 -3.62786 + -7.08582 -1.50087 -3.52829 + -7.31020 -1.50087 -3.42673 + -7.53458 -1.50087 -3.32312 + -7.75896 -1.50087 -3.21738 + -7.98334 -1.50087 -3.10945 + -7.98334 -1.50087 -3.10945 + -8.20772 -1.50087 -2.99928 + -8.43210 -1.50087 -2.88680 + -8.65648 -1.50087 -2.77194 + -8.88086 -1.50087 -2.65465 + -9.10524 -1.50087 -2.53486 + -9.10638 -1.49504 -2.53486 + -9.32989 -1.49504 -2.41250 + -9.55340 -1.49504 -2.28752 + -9.77691 -1.49504 -2.15984 + -10.00042 -1.49504 -2.02941 + -10.22393 -1.49504 -1.89617 + -10.22242 -1.48263 -1.89617 + -10.44407 -1.48263 -1.76005 + -10.66572 -1.48263 -1.62099 + -10.88738 -1.48263 -1.47892 + -11.10903 -1.48263 -1.33379 + -11.33068 -1.48263 -1.18553 + -11.32996 -1.47049 -1.18553 + -11.33285 -1.39171 -1.18353 + -11.33548 -1.23571 -1.18152 + -11.33779 -1.07971 -1.17952 + -11.33980 -0.92371 -1.17751 + -11.34149 -0.76771 -1.17550 + -11.34149 -0.76773 -1.17550 + -11.31435 2.19629 -1.13726 + -11.17457 5.16031 -1.09881 + -10.92216 8.12435 -1.06015 + -10.55712 11.08840 -1.02130 + -10.07944 14.05247 -0.98226 + -10.07944 31.10559 -0.98226 + -9.44173 32.66563 -0.96164 + -8.77282 34.22568 -0.94096 + -8.07270 35.78573 -0.92025 + -7.34139 37.34578 -0.89949 + -6.57887 38.90584 -0.87870 + -6.57887 38.90574 -0.87870 + -4.15185 41.22252 -0.81614 + -1.67850 41.22270 -0.75339 + 0.79487 41.22288 -0.69057 + 3.26825 41.22306 -0.62778 + 5.74164 41.22324 -0.56514 + 5.74163 41.22313 -0.56514 + 6.97835 41.22432 -0.53391 + 8.21508 41.22441 -0.50276 + 9.45182 41.22450 -0.47170 + 10.68855 41.22459 -0.44075 + 11.92528 41.22358 -0.40992 + 11.92528 41.22356 -0.40992 + 12.33752 41.22359 -0.39967 + 12.74975 41.22362 -0.38944 + 13.16199 41.22365 -0.37922 + 13.57422 41.22368 -0.36903 + 13.98646 41.22371 -0.35884 + 13.98653 41.22226 -0.35884 + 16.37880 38.49667 -0.29815 + 18.60313 35.62109 -0.23819 + 20.65019 32.58852 -0.17908 + 22.51074 29.40512 -0.12089 + 24.17618 26.09014 -0.06372 + 24.17647 26.07184 -0.06372 + 26.45721 23.97389 0.02085 + 28.53307 21.65683 0.10265 + 30.40083 19.40816 0.18150 + 32.06830 17.25668 0.25719 + 33.54466 15.20811 0.32954 + 33.54479 15.20608 0.32954 + 34.84009 13.28051 0.39837 + 35.96544 11.47346 0.46356 + 36.93216 9.79506 0.52501 + 37.75220 8.25053 0.58262 + 38.43719 6.81896 0.63630 + 38.43712 6.81649 0.63630 + 39.08057 6.06949 0.69064 + 39.65440 5.42407 0.74006 + 40.16844 4.87049 0.78448 + 40.63034 4.37233 0.82386 + 41.04247 3.86099 0.85811 + 41.04589 3.85548 0.85811 + 41.47596 2.40485 0.89731 + 41.68798 0.28438 0.92624 + 41.50051 -3.01617 0.94496 + 40.83026 -6.59958 0.95355 + 39.64836 -10.27442 0.95205 + 39.65570 -10.31651 0.95205 + 37.96074 -13.81060 0.94064 + 35.81759 -16.68616 0.91986 + 33.32115 -18.86447 0.89031 + 30.56612 -20.38738 0.85260 + 27.64096 -21.30427 0.80732 + 27.63992 -21.28808 0.80732 + 24.62964 -21.62710 0.75519 + 21.60848 -21.44859 0.69699 + 18.64655 -20.78751 0.63343 + 15.80874 -19.68141 0.56525 + 13.15158 -18.23630 0.49315 + 13.15648 -18.16008 0.49315 + 10.72712 -16.53390 0.41787 + 8.53007 -14.84153 0.33994 + 6.57434 -13.08820 0.25985 + 4.86781 -11.28277 0.17807 + 3.41649 -9.44881 0.09511 + 3.41424 -9.48627 0.09511 + 2.21455 -7.65445 0.01137 + 1.27025 -5.83870 -0.07290 + 0.57983 -4.02031 -0.15755 + 0.14925 -2.10138 -0.24240 + -0.00005 -0.00028 -0.32728 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -61299,43 +61435,43 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.32000 4.99100 40.00000 25.74054 25.74054 - -10.38000 23.09000 1.00000 30.42076 30.42076 - -10.44000 2.00000 83.00000 35.10101 35.10101 - -10.50000 23.00000 1.00000 39.78130 39.78130 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.59000 4.00000 16.00000 46.80180 46.80180 - -10.60500 19.00000 71.00000 47.97189 47.97189 - -10.63500 22.98800 22.99000 50.31208 50.31208 - -10.66500 28.00000 5.00000 52.65228 52.65228 - -10.69500 19.20000 20.00000 54.99249 54.99249 - -10.72500 17.00000 16.93000 57.33270 57.33270 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.82000 71.51400 34.34100 64.16500 62.48349 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.32000 1.00000 1.00000 25.74054 25.74054 + -10.38000 1.00000 1.00000 30.42076 30.42076 + -10.44000 1.00000 1.00000 35.10101 35.10101 + -10.50000 1.00000 1.00000 39.78130 39.78130 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.59000 1.00000 1.00000 46.80180 46.80180 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.63500 1.00000 1.00000 50.31208 50.31208 + -10.66500 1.00000 1.00000 52.65228 52.65228 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.72500 1.00000 1.00000 57.33270 57.33270 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.82000 71.51400 34.34000 64.16500 62.48349 -10.88000 71.51400 34.34100 67.87878 62.67722 -10.94000 71.51400 34.34100 71.81343 62.88249 -11.00000 71.51400 34.34100 75.96895 63.09927 @@ -61409,8 +61545,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -61428,19 +61564,19 @@ Lambda passive -10.47000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.53000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.59000 78.00600 78.00585 78.00585 1.00000 1.00000 1.00000 - -10.59000 78.00600 78.00607 78.00608 1.00000 1.00000 1.00000 + -10.59000 78.00600 78.00607 78.00607 1.00000 1.00000 1.00000 -10.62000 78.00630 78.00630 78.00630 1.00000 1.00000 1.00000 -10.65000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.68000 78.00690 78.00690 78.00690 1.00000 1.00000 1.00000 -10.71000 78.00720 78.00720 78.00720 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00743 78.00742 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00743 78.00743 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 59.13536 3.08494 0.67093 0.28603 5.48293 + -10.79000 10.61750 59.13536 3.08494 0.50828 0.28603 5.48293 -10.85000 11.28890 61.89629 3.22897 0.50828 0.28603 5.48293 -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.97000 12.63170 69.25877 3.61306 0.50828 0.28603 5.48293 @@ -61470,7 +61606,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -61629,16 +61765,16 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 1 100 A + 78.00190 0.00000 78.00190 78.00191 1 100 A 78.00205 0.00000 78.00205 78.00205 1 100 A 78.00220 0.00000 78.00220 78.00220 1 100 A - 78.00240 0.00000 78.00240 78.00240 1 0 A + 78.00240 0.00000 78.00240 78.00240 1 100 A 78.00260 0.00000 78.00260 78.00260 1 100 A 78.00280 0.00000 78.00280 78.00280 1 100 A 78.00295 0.00000 78.00295 78.00295 1 100 A @@ -61647,20 +61783,20 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00540 0.00000 78.00540 78.00540 1 100 A - 78.00585 0.00000 78.00585 78.00585 1 0 A - 78.00608 0.00000 78.00608 78.00608 1 100 A + 78.00585 0.00000 78.00585 78.00585 1 100 A + 78.00607 0.00000 78.00607 78.00608 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00720 0.00000 78.00720 78.00720 1 100 A - 78.00742 0.00000 78.00743 78.00743 1 0 A + 78.00743 0.00000 78.00743 78.00743 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.08494 67.39050 59.13536 7.23620 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.08494 67.39050 59.13536 5.48201 1 0 A 3.22897 67.97910 61.89629 5.73795 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.61306 69.15630 69.25877 6.42048 1 0 A @@ -61668,52 +61804,52 @@ Status character 3.94913 70.33350 75.70095 7.01768 1 0 A 0.45753 70.33350 52.80064 10.36963 1 0 A 0.66385 71.22621 52.76452 10.64023 1 0 A - 0.95275 72.11892 53.02490 11.00103 110 0 1 - 1.47868 73.01163 53.51177 11.36183 110 0 1 - 2.06474 73.90434 54.13832 11.72262 110 0 1 - 2.61360 74.79705 54.66869 11.99322 110 0 1 - 2.79400 74.79705 55.04663 12.17362 110 0 1 - 3.38900 75.68976 55.64206 12.44422 110 0 1 - 4.11463 76.58247 56.47400 12.80502 110 0 1 - 4.87527 77.47518 57.34182 13.16581 110 0 1 - 5.66547 78.36789 58.23745 13.52661 110 0 1 - 6.38960 79.26060 58.92328 13.79721 110 0 1 - 10.11734 79.26060 38.46255 14.05198 110 0 1 - 9.24207 83.24160 34.78760 12.42214 110 0 1 - 7.80880 87.22260 29.92326 10.24902 110 0 1 - 6.18334 91.20360 25.09365 8.07589 110 0 1 - 4.50933 95.18460 20.29148 5.90277 110 0 1 - 3.25489 99.16560 16.70379 4.27292 110 0 1 - 8.44662 99.16560 27.51935 2.70743 110 31 1 - 17.39572 100.53900 33.02991 3.26655 220 53 2 - 5.97521 101.91240 40.29427 4.01204 110 15 1 - 4.71041 103.28580 47.47851 4.75752 110 0 1 - 3.23108 104.65920 54.60600 5.50301 110 0 1 + 0.95152 72.11892 53.02490 11.00103 110 0 1 + 1.47681 73.01163 53.51177 11.36183 110 0 1 + 2.06225 73.90434 54.13832 11.72262 110 0 1 + 2.61050 74.79705 54.66869 11.99322 110 0 1 + 2.79089 74.79705 55.04663 12.17362 110 0 1 + 3.38530 75.68976 55.64206 12.44422 110 0 1 + 4.11038 76.58247 56.47400 12.80502 110 0 1 + 4.87048 77.47518 57.34182 13.16581 110 0 1 + 5.66018 78.36789 58.23745 13.52661 110 0 1 + 6.38384 79.26060 58.92328 13.79721 110 0 1 + 10.11187 79.26060 38.46255 14.05198 110 0 1 + 9.23896 83.24160 34.78760 12.42214 110 0 1 + 7.81205 87.22260 29.92326 10.24902 110 0 1 + 6.18645 91.20360 25.09365 8.07589 110 0 1 + 4.51233 95.18460 20.29148 5.90277 110 0 1 + 3.25780 99.16560 16.70379 4.27292 110 0 1 + 8.39727 99.16560 27.51935 2.70743 110 31 1 + 17.42442 100.53900 33.02991 3.26655 220 53 2 + 5.97836 101.91240 40.29427 4.01204 110 15 1 + 4.71350 103.28580 47.47851 4.75752 110 0 1 + 3.23436 104.65920 54.60600 5.50301 110 0 1 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A - 5.31463 107.40600 68.76890 6.99399 110 0 1 - 7.61566 108.77940 75.83214 7.73948 110 0 1 - 9.74464 110.15280 82.89494 8.48497 110 12 1 - 11.70132 111.52620 89.96218 9.23046 110 13 1 - 13.29909 112.89960 95.26699 9.78958 110 14 1 - 13.67183 112.89960 98.80627 10.16232 110 14 1 - 15.10172 114.27300 104.11963 10.72144 110 15 1 - 16.56377 115.64640 111.21161 11.46693 110 15 1 - 17.88488 117.01980 118.31241 12.21242 110 15 1 - 19.07831 118.39320 125.42156 12.95791 110 15 1 - 19.97095 119.76660 130.75828 13.51703 110 15 1 - 20.34369 119.76660 134.31851 13.88977 110 15 1 - 21.13685 121.14000 139.66222 14.44889 110 15 1 - 22.03220 122.51340 146.79231 15.19438 110 15 1 - 22.85715 123.88680 153.92796 15.93987 110 15 1 - 23.62547 125.26020 161.06855 16.68536 110 15 1 - 24.16458 126.63360 166.42676 17.24447 110 15 1 - 24.53732 126.63360 170.00024 17.61722 110 14 1 - 25.04725 128.00700 175.36228 18.17633 110 14 1 - 25.72311 129.38040 182.51443 18.92182 110 14 1 - 26.74470 130.75380 189.66955 19.66731 110 14 1 - 28.83989 132.12720 196.82728 20.41280 110 15 1 - 30.82658 133.50060 202.19703 20.97192 110 15 1 + 3.65754 106.03260 63.46711 6.43488 1 0 A + 5.29108 107.40600 68.76890 6.99399 110 0 1 + 7.59284 108.77940 75.83214 7.73948 110 0 1 + 9.72275 110.15280 82.89494 8.48497 110 12 1 + 11.68049 111.52620 89.96218 9.23046 110 13 1 + 13.27942 112.89960 95.26699 9.78958 110 14 1 + 13.65216 112.89960 98.80627 10.16232 110 14 1 + 15.08327 114.27300 104.11963 10.72144 110 14 1 + 16.54661 115.64640 111.21161 11.46693 110 15 1 + 17.86907 117.01980 118.31241 12.21242 110 15 1 + 19.06393 118.39320 125.42156 12.95791 110 15 1 + 19.95809 119.76660 130.75828 13.51703 110 15 1 + 20.33084 119.76660 134.31851 13.88977 110 15 1 + 21.12562 121.14000 139.66222 14.44889 110 15 1 + 22.02271 122.51340 146.79231 15.19438 110 15 1 + 22.84948 123.88680 153.92796 15.93987 110 15 1 + 23.61970 125.26020 161.06855 16.68536 110 15 1 + 24.16076 126.63360 166.42676 17.24447 110 15 1 + 24.53350 126.63360 170.00024 17.61722 110 14 1 + 25.04544 128.00700 175.36228 18.17633 110 14 1 + 25.72332 129.38040 182.51443 18.92182 110 14 1 + 26.72356 130.75380 189.66955 19.66731 110 14 1 + 28.82158 132.12720 196.82728 20.41280 110 15 1 + 30.81112 133.50060 202.19703 20.97192 110 15 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -61728,9 +61864,9 @@ Layer name [DATA] -9.99 62.314 'OWB' -10.79 1.055 'Grind' - -11.09 2.669 'Hydrobiaklei' + -11.09 2.666 'Hydrobiaklei' -12.00 3.443 'Basisveen' - -12.50 57.611 'Eerste zandlaag' + -12.50 57.574 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -61747,9 +61883,9 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 -0.38 'Grind' - -11.09 -0.50 'Hydrobiaklei' + -11.09 -0.49 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -19.52 'Eerste zandlaag' + -12.50 -19.50 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -61873,26 +62009,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.60500 34.00000 12.00000 24.56939 24.56939 - -10.63500 17.43000 17.40000 26.90066 26.90066 - -10.66500 9.00600 53.00000 29.22311 29.22311 - -10.69500 14.00800 13.60000 31.53674 31.53674 - -10.72500 4.00000 45.00000 33.84155 33.84155 - -10.74000 23.00000 2.00000 34.99065 34.99065 - -10.74500 16.90000 16.00000 35.37319 35.37319 - -10.75500 82.00000 16.00000 36.13754 36.13754 - -10.76500 17.00000 66.00000 36.90091 36.90091 - -10.77500 25.00000 15.00000 37.66330 37.66330 - -10.78500 3.00000 8.00000 38.42471 38.42471 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.60500 1.00000 1.00000 24.56939 24.56939 + -10.63500 1.00000 1.00000 26.90066 26.90066 + -10.66500 1.00000 1.00000 29.22311 29.22311 + -10.69500 1.00000 1.00000 31.53674 31.53674 + -10.72500 1.00000 1.00000 33.84155 33.84155 + -10.74000 1.00000 1.00000 34.99065 34.99065 + -10.74500 1.00000 1.00000 35.37319 35.37319 + -10.75500 1.00000 1.00000 36.13754 36.13754 + -10.76500 1.00000 1.00000 36.90091 36.90091 + -10.77500 1.00000 1.00000 37.66330 37.66330 + -10.78500 1.00000 1.00000 38.42471 38.42471 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -61984,7 +62120,7 @@ Lambda passive -10.97000 11.15720 61.17419 3.19130 0.50828 0.28603 5.48293 -11.03000 11.82860 64.85543 3.38334 0.50828 0.28603 5.48293 -11.09000 12.50000 67.61636 3.52738 0.50828 0.28603 5.48293 - -11.09000 12.50000 49.41323 -0.28341 0.73846 0.00000 3.91466 + -11.09000 12.50000 49.41323 -0.28341 0.73559 0.00000 3.91466 -11.18100 12.99049 49.35826 -0.08130 0.73559 0.00000 3.79957 -11.27200 13.48098 49.61712 0.17666 0.73559 0.01310 3.68053 -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 @@ -61996,7 +62132,7 @@ Lambda passive -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 -11.90900 16.91441 54.90557 1.93654 0.73559 0.11449 3.24608 -12.00000 17.40490 55.59789 2.12459 0.73559 0.12293 3.21705 - -12.00000 17.40490 35.84031 6.54790 0.87230 0.39204 2.14585 + -12.00000 17.40490 35.84031 6.54790 0.77308 0.39204 2.14585 -12.10000 14.59390 32.18078 5.22073 0.77308 0.35773 2.20508 -12.20000 11.78290 27.33574 3.45081 0.77308 0.29287 2.31995 -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 @@ -62026,7 +62162,7 @@ Lambda passive -15.02000 29.02870 146.52174 8.65398 0.52256 0.29812 5.04748 -15.16000 30.45530 153.65983 9.08040 0.52256 0.29816 5.04542 -15.30000 31.88190 159.01640 9.40020 0.52256 0.29818 5.04410 - -15.30000 31.88190 162.58890 9.61339 0.37674 0.29820 5.04331 + -15.30000 31.88190 162.58890 9.61339 0.52256 0.29820 5.04331 -15.44000 33.30850 167.94962 9.93315 0.52256 0.29822 5.04225 -15.58000 34.73510 175.10024 10.35948 0.52256 0.29824 5.04102 -15.72000 36.16170 182.25406 10.78578 0.52256 0.29827 5.03998 @@ -62198,60 +62334,60 @@ Status character 76.23900 1.76580 76.23900 76.23900 402 100 P 76.14100 1.86390 76.14100 76.14100 402 100 P 76.06750 1.96200 76.06750 76.06750 402 100 P - 45.86769 68.86200 51.05077 4.73254 330 90 3 - 48.34226 69.45060 53.81170 4.98849 330 90 3 - 51.20233 70.03920 57.49295 5.32975 330 89 3 - 53.95764 70.62780 61.17419 5.67101 330 88 3 - 56.61310 71.21640 64.85543 6.01227 330 87 3 - 58.67844 71.80500 67.61636 6.26822 330 87 3 - 19.41727 71.80500 49.41323 9.32131 110 39 1 - 24.87628 72.69771 49.35826 9.55561 220 50 2 - 24.64870 73.59042 49.61712 9.91641 110 50 1 - 24.16392 74.48313 50.11297 10.27721 110 48 1 - 23.62629 75.37584 50.75151 10.63800 110 47 1 - 23.03852 76.26855 51.29123 10.90860 110 45 1 - 23.04743 76.26855 51.67530 11.08900 110 45 1 - 22.42086 77.16126 52.27958 11.35960 110 43 1 - 21.76565 78.05397 53.12261 11.72040 110 41 1 - 21.08277 78.94668 54.00062 12.08119 110 39 1 - 20.37766 79.83939 54.90557 12.44199 110 37 1 - 20.13687 80.73210 55.59789 12.71259 110 36 1 - 18.06131 80.73210 35.84031 14.56924 220 50 2 - 14.72596 84.71310 32.18078 11.28224 110 46 1 - 12.28407 88.69410 27.33574 9.10911 110 45 1 - 9.83622 92.67510 22.52396 6.93599 110 44 1 - 7.87141 96.65610 17.73824 4.76286 110 44 1 - 7.17130 100.63710 14.16208 3.13302 220 51 2 + 45.87438 68.86200 51.05077 4.73254 330 90 3 + 48.34957 69.45060 53.81170 4.98849 330 90 3 + 51.21027 70.03920 57.49295 5.32975 330 89 3 + 53.96621 70.62780 61.17419 5.67101 330 88 3 + 56.62229 71.21640 64.85543 6.01227 330 87 3 + 58.68825 71.80500 67.61636 6.26822 330 87 3 + 19.38651 71.80500 49.41323 9.28501 110 39 1 + 24.90056 72.69771 49.35826 9.55561 220 50 2 + 24.69623 73.59042 49.61712 9.91641 110 50 1 + 24.21026 74.48313 50.11297 10.27721 110 48 1 + 23.67126 75.37584 50.75151 10.63800 110 47 1 + 23.08196 76.26855 51.29123 10.90860 110 45 1 + 23.09086 76.26855 51.67530 11.08900 110 45 1 + 22.46256 77.16126 52.27958 11.35960 110 43 1 + 21.80541 78.05397 53.12261 11.72040 110 41 1 + 21.12041 78.94668 54.00062 12.08119 110 39 1 + 20.41301 79.83939 54.90557 12.44199 110 37 1 + 20.15094 80.73210 55.59789 12.71259 110 36 1 + 16.61876 80.73210 35.84031 12.91208 110 46 1 + 14.72907 84.71310 32.18078 11.28224 110 46 1 + 12.28738 88.69410 27.33574 9.10911 110 45 1 + 9.83971 92.67510 22.52396 6.93599 110 44 1 + 7.87927 96.65610 17.73824 4.76286 110 44 1 + 7.17459 100.63710 14.16208 3.13302 220 51 2 19.78289 100.63710 19.78289 1.93691 402 100 P - 23.80650 102.01050 25.37256 2.49603 330 94 3 - 26.92020 103.38390 32.73186 3.24152 330 82 3 - 27.94082 104.75730 39.99110 3.98700 220 70 2 - 28.20383 106.13070 47.17203 4.73249 220 60 2 - 27.97831 107.50410 52.52169 5.29161 220 53 2 - 30.19462 107.50410 56.07436 5.66436 220 54 2 - 26.87094 108.87750 61.38955 6.22347 110 44 1 - 24.04681 110.25090 68.46250 6.96896 110 35 1 - 21.34312 111.62430 75.52819 7.71445 110 28 1 - 18.77332 112.99770 82.59411 8.45994 110 23 1 - 16.24435 114.37110 87.89635 9.01906 110 18 1 - 16.45744 114.37110 91.43342 9.39180 110 18 1 - 14.08266 115.74450 96.74306 9.95092 110 15 1 - 11.96091 117.11790 103.82983 10.69641 110 12 1 - 9.97735 118.49130 110.92550 11.44190 110 0 1 - 8.12369 119.86470 118.02984 12.18739 110 0 1 + 23.81910 102.01050 25.37256 2.49603 330 94 3 + 26.93299 103.38390 32.73186 3.24152 330 82 3 + 27.96665 104.75730 39.99110 3.98700 220 70 2 + 28.22979 106.13070 47.17203 4.73249 220 60 2 + 28.00425 107.50410 52.52169 5.29161 220 53 2 + 28.99867 107.50410 56.07436 5.66436 220 52 2 + 26.92251 108.87750 61.38955 6.22347 110 44 1 + 24.09784 110.25090 68.46250 6.96896 110 35 1 + 21.39340 111.62430 75.52819 7.71445 110 28 1 + 18.82270 112.99770 82.59411 8.45994 110 23 1 + 16.29269 114.37110 87.89635 9.01906 110 19 1 + 16.50578 114.37110 91.43342 9.39180 110 18 1 + 14.12986 115.74450 96.74306 9.95092 110 15 1 + 12.00684 117.11790 103.82983 10.69641 110 12 1 + 10.02188 118.49130 110.92550 11.44190 110 0 1 + 8.16665 119.86470 118.02984 12.18739 110 0 1 7.26800 121.23810 123.36324 12.74651 1 0 A 7.48123 121.23810 126.92141 13.11925 1 0 A 7.80108 122.61150 132.26229 13.67837 1 0 A 8.22754 123.98490 139.38900 14.42386 1 0 A 8.65398 125.35830 146.52174 15.16935 1 0 A 9.08040 126.73170 153.65983 15.91484 1 0 A - 9.55385 128.10510 159.01640 16.47395 110 0 1 - 9.61339 128.10510 162.58890 12.14556 1 0 A - 10.53489 129.47850 167.94962 17.40581 110 0 1 - 11.35002 130.85190 175.10024 18.15130 110 0 1 - 12.17927 132.22530 182.25406 18.89679 110 0 1 - 13.01629 133.59870 189.41070 19.64228 110 0 1 - 13.66839 134.97210 194.77975 20.20140 110 0 1 + 9.55767 128.10510 159.01640 16.47395 110 0 1 + 9.93041 128.10510 162.58890 16.84670 110 0 1 + 10.53671 129.47850 167.94962 17.40581 110 0 1 + 11.34980 130.85190 175.10024 18.15130 110 0 1 + 12.17699 132.22530 182.25406 18.89679 110 0 1 + 13.01193 133.59870 189.41070 19.64228 110 0 1 + 13.66195 134.97210 194.77975 20.20140 110 0 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -62265,10 +62401,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 36.488 'OWB' - -10.79 15.743 'Grind' - -11.09 20.546 'Hydrobiaklei' - -12.00 5.733 'Basisveen' - -12.50 56.282 'Eerste zandlaag' + -10.79 15.746 'Grind' + -11.09 20.578 'Hydrobiaklei' + -12.00 5.663 'Basisveen' + -12.50 56.293 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -62285,7 +62421,7 @@ Layer name [DATA] -9.99 0.00 'OWB' -10.79 5.62 'Grind' - -11.09 3.81 'Hydrobiaklei' + -11.09 3.82 'Hydrobiaklei' -12.00 0.00 'Basisveen' -12.50 19.07 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' @@ -62527,8 +62663,8 @@ Type Name [END OF COLUMN INDICATION] [DATA] - -10.19000 394.03427 10000000.000 1 1 1 'Onderwaterbeton 2-laags' - -3.40000 524.85283 10000000.000 1 1 1 'Dek' + -10.19000 394.05489 10000000.000 1 1 1 'Onderwaterbeton 2-laags' + -3.40000 524.84827 10000000.000 1 1 1 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHOR DATA] @@ -62589,10 +62725,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 31.88 : Percentage mobilized resistance left - 20.00 : Percentage mobilized resistance right - 156.22 : Effective left - 109.71 : Effective right + 31.89 : Percentage mobilized resistance left + 20.01 : Percentage mobilized resistance right + 156.29 : Effective left + 109.78 : Effective right 548.36 : Water pressure left 540.51 : Water pressure right 490.03 : Max effective resistance left @@ -62601,8 +62737,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 35.39 : Vertical force left - 15.06 : Vertical force right + 35.43 : Vertical force left + 15.08 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right -3.40 : Level of single support @@ -62611,17 +62747,17 @@ Is favorable (0=false, 1=true) 1 : IsLeftSidePassive [END OF SOIL COLLAPSE DATA] [VERTICAL BALANCE DATA] --15.06 : Active force -35.39 : Passive force --15.06 : Plugged active force -35.39 : Plugged passive force +-15.08 : Active force +35.43 : Passive force +-15.08 : Plugged active force +35.43 : Plugged passive force 0.00 : Anchor force 100.00 : Normal force 41.67 : Factor on resistance 1258.99 : Plugged resistance 1.20 : Vertical balance load factor --79.66 : Resulting Vertical Force Unplugged --79.66 : Resulting Vertical Force Plugged +-79.65 : Resulting Vertical Force Unplugged +-79.65 : Resulting Vertical Force Plugged 1 : Vertical Balance Result Unplugged 0 : Vertical Balance Result Plugged [END OF VERTICAL BALANCE DATA] @@ -62634,210 +62770,210 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -59.15289 - 0.12448 0.00000 -57.90805 - 0.24896 0.00000 -56.66322 - 0.37344 0.00000 -55.41841 - 0.49792 0.00000 -54.17364 - 0.62240 0.00000 -52.92893 - 0.62240 0.00000 -52.92893 - 0.74684 0.00000 -51.68427 - 0.87129 0.00000 -50.43970 - 0.99574 0.00000 -49.19521 - 1.12019 0.00000 -47.95082 - 1.24463 0.00000 -46.70655 - 1.24463 0.00000 -46.70655 - 1.41046 0.00000 -45.04772 - 1.57628 0.00000 -43.38915 - 1.74211 0.00000 -41.73086 - 1.90794 0.00000 -40.07289 - 2.07376 0.00000 -38.41527 - 2.07376 0.00000 -38.41527 - 2.21181 0.00000 -37.03420 - 2.34986 0.00000 -35.65341 - 2.48790 0.00000 -34.27292 - 2.62595 0.00000 -32.89274 - 2.76400 0.00000 -31.51289 - 2.76400 0.00000 -31.51289 - 2.90187 0.00000 -30.13339 - 3.03975 0.00000 -28.75425 - 3.17762 0.00000 -27.37550 - 3.31549 0.00000 -25.99715 - 3.45337 0.00000 -24.61921 - 3.45337 0.00000 -24.61921 - 3.57177 0.00000 -23.43454 - 3.69017 0.00000 -22.25019 - 3.80856 0.00000 -21.06619 - 3.92696 0.00000 -19.88255 - 4.04536 0.00000 -18.69927 - 4.04536 439.90000 -18.69927 - 54.34719 439.90000 -17.13269 - 104.64902 439.90000 -15.57501 - 154.95086 439.90000 -14.03446 - 205.25269 439.90000 -12.51928 - 255.55452 439.90000 -11.03770 - 255.55544 439.88200 -11.03770 - 290.84226 439.88200 -10.02249 - 326.12908 439.88200 -9.03073 - 361.41590 439.88200 -8.06527 - 396.70272 439.88200 -7.12895 - 431.98955 439.88200 -6.22461 - 431.98929 -84.97274 -6.22461 - 430.31148 -84.97274 -6.00384 - 428.63367 -84.97274 -5.78525 - 426.95586 -84.97274 -5.56881 - 425.27805 -84.97274 -5.35453 - 423.60024 -84.97274 -5.14239 - 423.60020 -84.97229 -5.14239 - 415.19560 -84.97229 -4.11354 - 406.79101 -84.97229 -3.13699 - 398.38642 -84.97229 -2.21170 - 389.98182 -84.97229 -1.33659 - 381.57723 -84.97229 -0.51061 - 381.57708 -84.96713 -0.51061 - 373.14897 -84.96713 0.26730 - 364.72086 -84.96713 0.99820 - 356.29275 -84.96713 1.68315 - 347.86464 -84.96713 2.32322 - 339.43653 -84.96713 2.91946 - 339.43654 -84.96669 2.91946 - 330.98709 -84.96669 3.47294 - 322.53764 -84.96669 3.98472 - 314.08819 -84.96669 4.45587 - 305.63874 -84.96669 4.88746 - 297.18930 -84.96669 5.28053 - 297.18925 -84.96600 5.28053 - 285.32927 -84.96600 5.76818 - 273.46929 -84.96600 6.18537 - 261.60931 -84.96600 6.53504 - 249.74933 -84.96600 6.82011 - 237.88935 -84.96600 7.04351 - 237.88928 -84.96447 7.04351 - 226.85019 -84.96447 7.19829 - 215.81109 -84.96447 7.30477 - 204.77200 -84.96447 7.36531 - 193.73291 -84.96447 7.38225 - 182.69382 -84.96447 7.35794 - 182.69397 -84.96475 7.35794 - 171.63539 -84.96475 7.29473 - 160.57681 -84.96475 7.19498 - 149.51824 -84.96475 7.06105 - 138.45966 -84.96475 6.89528 - 127.40109 -84.96475 6.70002 - 127.40108 -84.96477 6.70002 - 114.66732 -84.96477 6.44210 - 101.93355 -84.96477 6.15189 - 89.19978 -84.96477 5.83297 - 76.46602 -84.96477 5.48894 - 63.73225 -84.96477 5.12338 - 63.73225 -84.96477 5.12338 - 50.98951 -84.96477 4.73987 - 38.24677 -84.96477 4.34201 - 25.50403 -84.96477 3.93337 - 12.76130 -84.96477 3.51756 - 0.01856 -84.96477 3.09815 - 0.01741 -84.95894 3.09815 - -12.72446 -84.95894 2.67873 - -25.46632 -84.95894 2.26290 - -38.20819 -84.95894 1.85424 - -50.95006 -84.95894 1.45634 - -63.69193 -84.95894 1.07278 - -63.69028 -84.94880 1.07278 - -76.42166 -84.94880 0.70716 - -89.15305 -84.94880 0.36306 - -101.88444 -84.94880 0.04406 - -114.61583 -84.94880 -0.24625 - -127.34722 -84.94880 -0.50429 - -127.34651 -84.93674 -0.50429 - -127.51665 -84.85796 -0.50751 - -127.68653 -84.70196 -0.51072 - -127.85610 -84.54596 -0.51392 - -128.02536 -84.38996 -0.51712 - -128.19430 -84.23396 -0.52031 - -128.19430 -84.23398 -0.52031 - -131.34433 -81.26997 -0.57971 - -134.38172 -78.30594 -0.63671 - -137.30648 -75.34190 -0.69127 - -140.11861 -72.37785 -0.74334 - -142.81810 -69.41378 -0.79286 - -142.81810 69.95192 -0.79286 - -141.40582 71.51196 -0.81788 - -139.96234 73.07201 -0.84219 - -138.48766 74.63206 -0.86580 - -136.98178 76.19211 -0.88870 - -135.44470 77.75217 -0.91092 - -135.44476 77.75471 -0.91092 - -130.69193 80.07149 -0.97351 - -125.89275 80.07167 -1.03017 - -121.09356 80.07185 -1.08112 - -116.29436 80.07203 -1.12658 - -111.49515 80.07221 -1.16677 - -111.49515 80.07217 -1.16677 - -109.09443 80.07337 -1.18495 - -106.69370 80.07346 -1.20190 - -104.29297 80.07355 -1.21763 - -101.89224 80.07364 -1.23219 - -99.49151 80.07262 -1.24559 - -99.49151 80.07261 -1.24559 - -98.69115 80.07264 -1.24980 - -97.89078 80.07267 -1.25389 - -97.09042 80.07270 -1.25786 - -96.29006 80.07273 -1.26170 - -95.48969 80.07276 -1.26542 - -95.48953 80.06956 -1.26542 - -90.77030 77.23687 -1.28528 - -86.22723 74.20450 -1.30101 - -81.87139 70.99734 -1.31283 - -77.71301 67.62400 -1.32093 - -73.76159 64.10310 -1.32550 - -73.76095 64.07748 -1.32550 - -68.02019 61.98716 -1.32613 - -62.48449 59.65809 -1.31967 - -57.15956 57.35603 -1.30667 - -52.04251 55.09168 -1.28768 - -47.12948 52.87197 -1.26327 - -47.12956 52.87379 -1.26327 - -42.41407 50.71100 -1.23397 - -37.89290 48.60588 -1.20024 - -33.56001 46.57576 -1.16254 - -29.40798 44.63199 -1.12133 - -25.42944 42.75499 -1.07704 - -25.42946 42.75221 -1.07704 - -21.20477 41.68724 -1.02536 - -17.08205 40.70064 -0.97100 - -13.05596 39.75385 -0.91449 - -9.12297 38.83552 -0.85631 - -5.28091 37.93466 -0.79699 - -5.27840 37.91961 -0.79699 - -0.17559 34.78997 -0.71303 - 4.43403 30.85006 -0.62905 - 8.44600 26.36414 -0.54603 - 11.82075 21.78635 -0.46495 - 14.55752 17.25783 -0.38680 - 14.55693 17.23680 -0.38680 - 16.64354 12.57663 -0.31243 - 18.09091 8.06401 -0.24218 - 18.91620 3.74640 -0.17626 - 19.16528 -0.14834 -0.11488 - 18.90256 -3.56620 -0.05825 - 18.90423 -3.59751 -0.05825 - 18.18999 -6.54773 -0.00642 - 17.09670 -9.00158 0.04092 - 15.70032 -10.85311 0.08411 - 14.09155 -12.03923 0.12347 - 12.36128 -12.59797 0.15934 - 12.36102 -12.57870 0.15934 - 10.58985 -12.67809 0.19213 - 8.82673 -12.46616 0.22230 - 7.11424 -11.95697 0.25029 - 5.49315 -11.16229 0.27650 - 4.00273 -10.09157 0.30135 - 4.00433 -10.11526 0.30135 - 2.69582 -8.59546 0.32527 - 1.60180 -6.99178 0.34853 - 0.75271 -5.08143 0.37133 - 0.19825 -2.76461 0.39389 - -0.00141 -0.02591 0.41639 + 0.00000 0.00000 -59.15440 + 0.12448 0.00000 -57.90951 + 0.24897 0.00000 -56.66462 + 0.37345 0.00000 -55.41976 + 0.49794 0.00000 -54.17494 + 0.62242 0.00000 -52.93017 + 0.62242 0.00000 -52.93017 + 0.74688 0.00000 -51.68547 + 0.87133 0.00000 -50.44084 + 0.99578 0.00000 -49.19630 + 1.12023 0.00000 -47.95186 + 1.24469 0.00000 -46.70753 + 1.24469 0.00000 -46.70753 + 1.41052 0.00000 -45.04863 + 1.57635 0.00000 -43.38999 + 1.74219 0.00000 -41.73163 + 1.90802 0.00000 -40.07359 + 2.07385 0.00000 -38.41589 + 2.07385 0.00000 -38.41589 + 2.21190 0.00000 -37.03477 + 2.34996 0.00000 -35.65392 + 2.48801 0.00000 -34.27336 + 2.62606 0.00000 -32.89313 + 2.76412 0.00000 -31.51322 + 2.76412 0.00000 -31.51322 + 2.90200 0.00000 -30.13366 + 3.03988 0.00000 -28.75446 + 3.17776 0.00000 -27.37565 + 3.31564 0.00000 -25.99724 + 3.45352 0.00000 -24.61925 + 3.45352 0.00000 -24.61925 + 3.57192 0.00000 -23.43452 + 3.69032 0.00000 -22.25013 + 3.80873 0.00000 -21.06608 + 3.92713 0.00000 -19.88238 + 4.04554 0.00000 -18.69905 + 4.04554 439.90000 -18.69905 + 54.34737 439.90000 -17.13240 + 104.64921 439.90000 -15.57465 + 154.95105 439.90000 -14.03404 + 205.25289 439.90000 -12.51879 + 255.55473 439.90000 -11.03715 + 255.55564 439.88198 -11.03715 + 290.84247 439.88198 -10.02189 + 326.12930 439.88198 -9.03009 + 361.41612 439.88198 -8.06457 + 396.70295 439.88198 -7.12820 + 431.98977 439.88198 -6.22382 + 431.98951 -84.96819 -6.22382 + 430.31179 -84.96819 -6.00304 + 428.63408 -84.96819 -5.78444 + 426.95636 -84.96819 -5.56799 + 425.27864 -84.96819 -5.35369 + 423.60092 -84.96819 -5.14154 + 423.60088 -84.96774 -5.14154 + 415.19675 -84.96774 -4.11263 + 406.79262 -84.96774 -3.13603 + 398.38848 -84.96774 -2.21067 + 389.98435 -84.96774 -1.33551 + 381.58022 -84.96774 -0.50947 + 381.58007 -84.96257 -0.50947 + 373.15242 -84.96257 0.26849 + 364.72477 -84.96257 0.99945 + 356.29712 -84.96257 1.68446 + 347.86947 -84.96257 2.32458 + 339.44182 -84.96257 2.92088 + 339.44183 -84.96214 2.92088 + 330.99284 -84.96214 3.47442 + 322.54385 -84.96214 3.98625 + 314.09487 -84.96214 4.45746 + 305.64588 -84.96214 4.88909 + 297.19689 -84.96214 5.28222 + 297.19685 -84.96145 5.28222 + 285.33751 -84.96145 5.76994 + 273.47817 -84.96145 6.18720 + 261.61884 -84.96145 6.53693 + 249.75950 -84.96145 6.82206 + 237.90016 -84.96145 7.04552 + 237.90009 -84.95991 7.04552 + 226.86160 -84.95991 7.20036 + 215.82310 -84.95991 7.30689 + 204.78461 -84.95991 7.36748 + 193.74611 -84.95991 7.38446 + 182.70762 -84.95991 7.36020 + 182.70777 -84.96019 7.36020 + 171.64979 -84.96019 7.29703 + 160.59181 -84.96019 7.19732 + 149.53383 -84.96019 7.06342 + 138.47585 -84.96019 6.89768 + 127.41787 -84.96019 6.70246 + 127.41786 -84.96021 6.70246 + 114.68478 -84.96021 6.44456 + 101.95170 -84.96021 6.15437 + 89.21862 -84.96021 5.83547 + 76.48553 -84.96021 5.49145 + 63.75245 -84.96021 5.12590 + 63.75245 -84.96021 5.12590 + 51.01039 -84.96021 4.74239 + 38.26833 -84.96021 4.34452 + 25.52628 -84.96021 3.93587 + 12.78422 -84.96021 3.52004 + 0.04216 -84.96021 3.10061 + 0.04102 -84.95439 3.10061 + -12.70017 -84.95439 2.68116 + -25.44137 -84.95439 2.26530 + -38.18256 -84.95439 1.85659 + -50.92375 -84.95439 1.45864 + -63.66494 -84.95439 1.07502 + -63.66344 -84.94197 1.07502 + -76.39381 -84.94197 0.70934 + -89.12419 -84.94197 0.36516 + -101.85456 -84.94197 0.04608 + -114.58494 -84.94197 -0.24433 + -127.31531 -84.94197 -0.50246 + -127.31459 -84.92983 -0.50246 + -127.48472 -84.85105 -0.50568 + -127.65458 -84.69505 -0.50889 + -127.82414 -84.53905 -0.51210 + -127.99338 -84.38305 -0.51530 + -128.16231 -84.22705 -0.51849 + -128.16231 -84.22707 -0.51849 + -131.31208 -81.26306 -0.57791 + -134.34921 -78.29903 -0.63495 + -137.27371 -75.33499 -0.68954 + -140.08558 -72.37094 -0.74163 + -142.78481 -69.40687 -0.79118 + -142.78481 69.93821 -0.79118 + -141.37281 71.49825 -0.81622 + -139.92961 73.05830 -0.84054 + -138.45520 74.61835 -0.86416 + -136.94960 76.17840 -0.88709 + -135.41279 77.73846 -0.90932 + -135.41279 77.73836 -0.90932 + -130.66094 80.05514 -0.97196 + -125.86275 80.05532 -1.02867 + -121.06455 80.05550 -1.07967 + -116.26633 80.05568 -1.12519 + -111.46811 80.05586 -1.16543 + -111.46811 80.05574 -1.16543 + -109.06789 80.05694 -1.18364 + -106.66766 80.05703 -1.20061 + -104.26742 80.05712 -1.21638 + -101.86718 80.05721 -1.23096 + -99.46695 80.05619 -1.24439 + -99.46695 80.05618 -1.24439 + -98.66675 80.05621 -1.24861 + -97.86656 80.05624 -1.25271 + -97.06636 80.05627 -1.25669 + -96.26616 80.05630 -1.26054 + -95.46596 80.05633 -1.26428 + -95.46580 80.05314 -1.26428 + -90.74863 77.19368 -1.28419 + -86.20817 74.16079 -1.29999 + -81.85497 70.95307 -1.31187 + -77.69927 67.57912 -1.32003 + -73.75057 64.05757 -1.32466 + -73.74993 64.03192 -1.32466 + -68.01326 61.94216 -1.32539 + -62.48175 59.61111 -1.31903 + -57.16122 57.30618 -1.30612 + -52.04888 55.03813 -1.28724 + -47.14090 52.81488 -1.26292 + -47.14089 52.81436 -1.26292 + -42.43096 50.64820 -1.23371 + -37.91566 48.54000 -1.20008 + -33.58890 46.50707 -1.16248 + -29.44325 44.56068 -1.12135 + -25.47129 42.68216 -1.07715 + -25.47135 42.67982 -1.07715 + -21.25167 41.64819 -1.02556 + -17.13286 40.66152 -0.97128 + -13.11069 39.71477 -0.91484 + -9.18161 38.79639 -0.85674 + -5.34348 37.89540 -0.79748 + -5.34099 37.88073 -0.79748 + -0.24362 34.75110 -0.71359 + 4.36050 30.81001 -0.62966 + 8.36669 26.32171 -0.54668 + 11.73535 21.74184 -0.46562 + 14.46577 17.21159 -0.38747 + 14.46518 17.19052 -0.38747 + 16.55421 12.62534 -0.31308 + 18.00830 8.11111 -0.24278 + 18.84004 3.79126 -0.17679 + 19.09520 -0.10628 -0.11533 + 18.83819 -3.52668 -0.05859 + 18.83987 -3.55806 -0.05859 + 18.13099 -6.51053 -0.00664 + 17.04283 -8.96512 0.04083 + 15.65162 -10.81566 0.08417 + 14.04822 -11.99994 0.12369 + 12.32373 -12.55393 0.15972 + 12.32347 -12.53469 0.15972 + 10.55899 -12.62639 0.19269 + 8.80371 -12.40578 0.22306 + 7.10034 -11.88688 0.25123 + 5.48980 -11.08143 0.27764 + 4.01152 -9.99889 0.30269 + 4.01051 -9.99030 0.30269 + 2.70357 -8.63776 0.32680 + 1.60459 -7.02018 0.35025 + 0.75248 -5.09656 0.37325 + 0.19671 -2.76841 0.39600 + -0.00285 -0.02162 0.41870 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -62958,43 +63094,43 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -9.99100 4.00000 48.00000 0.07800 0.07800 - -9.99300 1.02000 45.00000 0.23400 0.23400 - -9.99500 1.02000 1.90000 0.39000 0.39000 - -9.99700 19.00000 1.03000 0.54600 0.54600 - -9.99900 28.00000 26.00000 0.70200 0.70200 - -10.00000 64.00000 12.00000 0.78000 0.78000 - -10.01900 8.00000 12.00000 2.26200 2.26200 - -10.05700 19.00000 1.00000 5.22602 5.22602 - -10.09500 39.00000 38.99300 8.19006 8.19006 - -10.13300 11.00000 1.00000 11.15410 11.15410 - -10.17100 4.00000 5.50000 14.11816 14.11816 - -10.19000 19.00000 16.00000 15.60020 15.60020 - -10.20000 5.00400 9.00000 16.38022 16.38022 - -10.22000 64.00000 1.90000 17.94026 17.94026 - -10.24000 14.00000 48.00000 19.50031 19.50031 - -10.26000 4.00000 1.00000 21.06036 21.06036 - -10.28000 41.00000 71.00000 22.62042 22.62042 - -10.29000 12.00000 1.00000 23.40045 23.40045 - -10.32000 4.99100 40.00000 25.74054 25.74054 - -10.38000 23.09000 1.00000 30.42076 30.42076 - -10.44000 2.00000 83.00000 35.10101 35.10101 - -10.50000 23.00000 1.00000 39.78130 39.78130 - -10.56000 22.00000 8.00000 44.46162 44.46162 - -10.59000 4.00000 16.00000 46.80180 46.80180 - -10.60500 19.00000 71.00000 47.97189 47.97189 - -10.63500 22.98800 22.99000 50.31208 50.31208 - -10.66500 28.00000 5.00000 52.65228 52.65228 - -10.69500 19.20000 20.00000 54.99249 54.99249 - -10.72500 17.00000 16.93000 57.33270 57.33270 - -10.74000 29.00000 9.00000 58.50281 58.50281 - -10.74500 49.00000 16.00000 58.89273 58.89273 - -10.75500 34.00000 33.00000 59.67182 59.67182 - -10.76500 29.00000 31.00000 60.44994 60.44994 - -10.77500 44.91000 45.00000 61.22707 61.22707 - -10.78500 4.50000 1.00000 62.00323 62.00323 - -10.79000 19.40000 62.00000 62.39094 62.39094 - -10.82000 71.51400 34.34100 64.16500 62.48349 + -9.99100 1.00000 6.00000 0.07800 0.07800 + -9.99300 1.00000 2.00000 0.23400 0.23400 + -9.99500 1.00000 2.00000 0.39000 0.39000 + -9.99700 1.00000 1.00000 0.54600 0.54600 + -9.99900 1.00000 1.00000 0.70200 0.70200 + -10.00000 1.00000 1.00000 0.78000 0.78000 + -10.01900 1.00000 1.00000 2.26200 2.26200 + -10.05700 1.00000 1.00000 5.22602 5.22602 + -10.09500 1.00000 1.00000 8.19006 8.19006 + -10.13300 1.00000 1.00000 11.15410 11.15410 + -10.17100 1.00000 1.00000 14.11816 14.11816 + -10.19000 1.00000 1.00000 15.60020 15.60020 + -10.20000 1.00000 1.00000 16.38022 16.38022 + -10.22000 1.00000 1.00000 17.94026 17.94026 + -10.24000 1.00000 1.00000 19.50031 19.50031 + -10.26000 1.00000 1.00000 21.06036 21.06036 + -10.28000 1.00000 1.00000 22.62042 22.62042 + -10.29000 1.00000 1.00000 23.40045 23.40045 + -10.32000 1.00000 1.00000 25.74054 25.74054 + -10.38000 1.00000 1.00000 30.42076 30.42076 + -10.44000 1.00000 1.00000 35.10101 35.10101 + -10.50000 1.00000 1.00000 39.78130 39.78130 + -10.56000 1.00000 1.00000 44.46162 44.46162 + -10.59000 1.00000 1.00000 46.80180 46.80180 + -10.60500 1.00000 1.00000 47.97189 47.97189 + -10.63500 1.00000 1.00000 50.31208 50.31208 + -10.66500 1.00000 1.00000 52.65228 52.65228 + -10.69500 1.00000 1.00000 54.99249 54.99249 + -10.72500 1.00000 1.00000 57.33270 57.33270 + -10.74000 1.00000 1.00000 58.50281 58.50281 + -10.74500 1.00000 1.00000 58.89273 58.89273 + -10.75500 1.00000 1.00000 59.67182 59.67182 + -10.76500 1.00000 1.00000 60.44994 60.44994 + -10.77500 1.00000 1.00000 61.22707 61.22707 + -10.78500 1.00000 1.00000 62.00323 62.00323 + -10.79000 1.00000 1.00000 62.39094 62.39094 + -10.82000 71.51400 34.34000 64.16500 62.48349 -10.88000 71.51400 34.34100 67.87878 62.67722 -10.94000 71.51400 34.34100 71.81343 62.88249 -11.00000 71.51400 34.34100 75.96895 63.09927 @@ -63068,8 +63204,8 @@ Lambda passive -9.99400 78.00004 78.00000 78.00004 1.00000 1.00000 1.00000 -9.99600 78.00006 78.00012 78.00006 1.00000 1.00000 1.00000 -9.99800 78.00008 78.00008 78.00008 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00009 78.00009 1.00000 1.00000 1.00000 - -10.00000 78.00010 78.00019 78.00020 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00010 78.00009 1.00000 1.00000 1.00000 + -10.00000 78.00010 78.00019 78.00019 1.00000 1.00000 1.00000 -10.03800 78.00048 78.00048 78.00048 1.00000 1.00000 1.00000 -10.07600 78.00086 78.00086 78.00086 1.00000 1.00000 1.00000 -10.11400 78.00124 78.00124 78.00124 1.00000 1.00000 1.00000 @@ -63087,19 +63223,19 @@ Lambda passive -10.47000 78.00480 78.00480 78.00480 1.00000 1.00000 1.00000 -10.53000 78.00540 78.00540 78.00540 1.00000 1.00000 1.00000 -10.59000 78.00600 78.00585 78.00585 1.00000 1.00000 1.00000 - -10.59000 78.00600 78.00607 78.00608 1.00000 1.00000 1.00000 + -10.59000 78.00600 78.00607 78.00607 1.00000 1.00000 1.00000 -10.62000 78.00630 78.00630 78.00630 1.00000 1.00000 1.00000 -10.65000 78.00660 78.00660 78.00660 1.00000 1.00000 1.00000 -10.68000 78.00690 78.00690 78.00690 1.00000 1.00000 1.00000 -10.71000 78.00720 78.00720 78.00720 1.00000 1.00000 1.00000 - -10.74000 78.00750 78.00743 78.00742 1.00000 1.00000 1.00000 + -10.74000 78.00750 78.00743 78.00743 1.00000 1.00000 1.00000 -10.74000 78.00750 77.98300 77.98300 1.00000 1.00000 1.00000 -10.75000 77.90950 77.90950 77.90950 1.00000 1.00000 1.00000 -10.76000 77.81150 77.81150 77.81150 1.00000 1.00000 1.00000 -10.77000 77.71350 77.71350 77.71350 1.00000 1.00000 1.00000 -10.78000 77.61550 77.61550 77.61550 1.00000 1.00000 1.00000 -10.79000 77.51750 77.54200 77.54200 1.00000 1.00000 1.00000 - -10.79000 10.61750 59.13536 3.08494 0.67093 0.28603 5.48293 + -10.79000 10.61750 59.13536 3.08494 0.50828 0.28603 5.48293 -10.85000 11.28890 61.89629 3.22897 0.50828 0.28603 5.48293 -10.91000 11.96030 65.57753 3.42102 0.50828 0.28603 5.48293 -10.97000 12.63170 69.25877 3.61306 0.50828 0.28603 5.48293 @@ -63129,7 +63265,7 @@ Lambda passive -12.92000 9.10420 47.47851 2.70157 0.52256 0.29674 5.21501 -13.06000 10.53080 54.60600 3.12622 0.52256 0.29686 5.18536 -13.20000 11.95740 59.92769 3.44494 0.52256 0.29696 5.16585 - -13.20000 11.95740 63.46711 3.65754 0.29702 0.29702 5.15404 + -13.20000 11.95740 63.46711 3.65754 0.52256 0.29702 5.15404 -13.34000 13.38400 68.76890 3.97660 0.52256 0.29712 5.13814 -13.48000 14.81060 75.83214 4.40227 0.52256 0.29724 5.12013 -13.62000 16.23720 82.89494 4.82819 0.52256 0.29735 5.10525 @@ -63288,13 +63424,13 @@ Status character 78.00004 0.00000 78.00004 78.00004 402 100 P 78.00012 0.00000 78.00012 78.00006 402 100 P 78.00008 0.00000 78.00008 78.00008 402 100 P - 78.00009 0.00000 78.00009 78.00009 402 100 P - 78.00020 0.00000 78.00020 78.00020 402 100 P + 78.00010 0.00000 78.00010 78.00010 402 100 P + 78.00019 0.00000 78.00019 78.00020 402 100 P 78.00048 0.00000 78.00048 78.00048 402 100 P 78.00086 0.00000 78.00086 78.00086 402 100 P 78.00124 0.00000 78.00124 78.00124 402 100 P 78.00162 0.00000 78.00162 78.00162 402 100 P - 78.00190 0.00000 78.00190 78.00190 402 100 P + 78.00190 0.00000 78.00190 78.00191 402 100 P 78.00205 0.00000 78.00205 78.00205 402 100 P 78.00220 0.00000 78.00220 78.00220 402 100 P 78.00240 0.00000 78.00240 78.00240 402 100 P @@ -63306,20 +63442,20 @@ Status character 78.00420 0.00000 78.00420 78.00420 1 100 A 78.00480 0.00000 78.00480 78.00480 1 100 A 78.00540 0.00000 78.00540 78.00540 1 100 A - 78.00585 0.00000 78.00585 78.00585 1 0 A - 78.00608 0.00000 78.00608 78.00608 1 100 A + 78.00585 0.00000 78.00585 78.00585 1 100 A + 78.00607 0.00000 78.00607 78.00608 1 100 A 78.00630 0.00000 78.00630 78.00630 1 100 A - 78.00660 0.00000 78.00660 78.00660 1 0 A + 78.00660 0.00000 78.00660 78.00660 1 100 A 78.00690 0.00000 78.00690 78.00690 1 100 A 78.00720 0.00000 78.00720 78.00720 1 100 A - 78.00742 0.00000 78.00743 78.00743 1 0 A + 78.00743 0.00000 78.00743 78.00743 1 100 A 77.98300 0.00000 77.98300 77.98300 1 100 A 77.90950 0.09810 77.90950 77.90950 1 100 A - 77.81150 0.19620 77.81150 77.81150 1 0 A + 77.81150 0.19620 77.81150 77.81150 1 100 A 77.71350 0.29430 77.71350 77.71350 1 100 A - 77.61550 0.39240 77.61550 77.61550 1 0 A - 77.54200 0.49050 77.54200 77.54200 1 100 A - 3.08494 67.39050 59.13536 7.23620 1 0 A + 77.61550 0.39240 77.61550 77.61550 1 100 A + 77.54200 0.49050 77.54200 77.54200 1 0 A + 3.08494 67.39050 59.13536 5.48201 1 0 A 3.22897 67.97910 61.89629 5.73795 1 0 A 3.42102 68.56770 65.57753 6.07921 1 0 A 3.61306 69.15630 69.25877 6.42048 1 0 A @@ -63333,23 +63469,23 @@ Status character 1.62179 74.79705 54.66869 11.99322 1 0 A 1.74764 74.79705 55.04663 12.17362 1 0 A 1.93624 75.68976 55.64206 12.44422 1 0 A - 2.29347 76.58247 56.47400 12.80502 110 0 1 - 2.78816 77.47518 57.34182 13.16581 110 0 1 - 3.32377 78.36789 58.23745 13.52661 110 0 1 - 3.80619 79.26060 58.92328 13.79721 110 0 1 - 8.82564 79.26060 38.46255 14.05198 110 0 1 - 7.50694 83.24160 34.78760 12.42214 110 0 1 - 5.54239 87.22260 29.92326 10.24902 110 0 1 - 3.53833 91.20360 25.09365 8.07589 110 0 1 - 1.54778 95.18460 20.29148 5.90277 110 0 1 - 0.11183 99.16560 16.70379 4.27292 110 0 1 + 2.29525 76.58247 56.47400 12.80502 110 0 1 + 2.78968 77.47518 57.34182 13.16581 110 0 1 + 3.32506 78.36789 58.23745 13.52661 110 0 1 + 3.80727 79.26060 58.92328 13.79721 110 0 1 + 8.82358 79.26060 38.46255 14.05198 110 0 1 + 7.50477 83.24160 34.78760 12.42214 110 0 1 + 5.54274 87.22260 29.92326 10.24902 110 0 1 + 3.53862 91.20360 25.09365 8.07589 110 0 1 + 1.54802 95.18460 20.29148 5.90277 110 0 1 + 0.11204 99.16560 16.70379 4.27292 110 0 1 1.53586 99.16560 27.51935 2.70743 1 0 A 1.85350 100.53900 33.02991 3.26655 1 0 A 2.27733 101.91240 40.29427 4.01204 1 0 A 2.70157 103.28580 47.47851 4.75752 1 0 A 3.12622 104.65920 54.60600 5.50301 1 0 A 3.44494 106.03260 59.92769 6.06213 1 0 A - 3.65754 106.03260 63.46711 3.65754 1 6 A + 3.65754 106.03260 63.46711 6.43488 1 0 A 3.97660 107.40600 68.76890 6.99399 1 0 A 4.40227 108.77940 75.83214 7.73948 1 0 A 4.82819 110.15280 82.89494 8.48497 1 0 A @@ -63357,22 +63493,22 @@ Status character 5.57399 112.89960 95.26699 9.78958 1 0 A 5.78717 112.89960 98.80627 10.16232 1 0 A 6.10697 114.27300 104.11963 10.72144 1 0 A - 7.07367 115.64640 111.21161 11.46693 110 0 1 - 9.16412 117.01980 118.31241 12.21242 110 0 1 - 11.18149 118.39320 125.42156 12.95791 110 0 1 - 12.94304 119.76660 130.75828 13.51703 110 0 1 - 13.31578 119.76660 134.31851 13.88977 110 0 1 - 15.01392 121.14000 139.66222 14.44889 110 11 1 - 16.84411 122.51340 146.79231 15.19438 110 11 1 - 18.62818 123.88680 153.92796 15.93987 110 12 1 - 20.37434 125.26020 161.06855 16.68536 110 13 1 - 21.90445 126.63360 166.42676 17.24447 110 13 1 - 22.27719 126.63360 170.00024 17.61722 110 13 1 - 23.78644 128.00700 175.36228 18.17633 110 14 1 - 25.46754 129.38040 182.51443 18.92182 110 14 1 - 27.79718 130.75380 189.66955 19.66731 110 15 1 - 30.91979 132.12720 196.82728 20.41280 110 16 1 - 33.93028 133.50060 202.19703 20.97192 110 17 1 + 7.09018 115.64640 111.21161 11.46693 110 0 1 + 9.18348 117.01980 118.31241 12.21242 110 0 1 + 11.20393 118.39320 125.42156 12.95791 110 0 1 + 12.96876 119.76660 130.75828 13.51703 110 0 1 + 13.34150 119.76660 134.31851 13.88977 110 0 1 + 15.04312 121.14000 139.66222 14.44889 110 11 1 + 16.87693 122.51340 146.79231 15.19438 110 11 1 + 18.66473 123.88680 153.92796 15.93987 110 12 1 + 20.41467 125.26020 161.06855 16.68536 110 13 1 + 21.94855 126.63360 166.42676 17.24447 110 13 1 + 22.32129 126.63360 170.00024 17.61722 110 13 1 + 23.83426 128.00700 175.36228 18.17633 110 14 1 + 25.51902 129.38040 182.51443 18.92182 110 14 1 + 27.82887 130.75380 189.66955 19.66731 110 15 1 + 30.95585 132.12720 196.82728 20.41280 110 16 1 + 33.97072 133.50060 202.19703 20.97192 110 17 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -63389,7 +63525,7 @@ Layer name -10.79 1.055 'Grind' -11.09 1.671 'Hydrobiaklei' -12.00 2.260 'Basisveen' - -12.50 42.415 'Eerste zandlaag' + -12.50 42.478 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -63408,7 +63544,7 @@ Layer name -10.79 -0.38 'Grind' -11.09 -0.31 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 -14.37 'Eerste zandlaag' + -12.50 -14.39 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -63532,26 +63668,26 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -10.32000 0.99000 1.00000 2.34000 2.34000 - -10.38000 9.00000 8.30000 7.02004 7.02004 - -10.44000 19.00000 1.00000 11.70011 11.70011 - -10.50000 5.00400 9.00000 16.38022 16.38022 - -10.56000 81.00000 27.00000 21.06036 21.06036 - -10.59000 56.00000 43.00000 23.40045 23.40045 - -10.60500 34.00000 12.00000 24.56939 24.56939 - -10.63500 17.43000 17.40000 26.90066 26.90066 - -10.66500 9.00600 53.00000 29.22311 29.22311 - -10.69500 14.00800 13.60000 31.53674 31.53674 - -10.72500 4.00000 45.00000 33.84155 33.84155 - -10.74000 23.00000 2.00000 34.99065 34.99065 - -10.74500 16.90000 16.00000 35.37319 35.37319 - -10.75500 82.00000 16.00000 36.13754 36.13754 - -10.76500 17.00000 66.00000 36.90091 36.90091 - -10.77500 25.00000 15.00000 37.66330 37.66330 - -10.78500 3.00000 8.00000 38.42471 38.42471 - -10.79000 59.00000 8.00000 38.80505 38.80505 - -10.82000 71.51400 34.34100 40.33657 38.88495 - -10.88000 71.51400 34.34100 43.56528 39.05338 + -10.32000 1.00000 1.00000 2.34000 2.34000 + -10.38000 1.00000 1.00000 7.02004 7.02004 + -10.44000 1.00000 1.00000 11.70011 11.70011 + -10.50000 1.00000 1.00000 16.38022 16.38022 + -10.56000 1.00000 1.00000 21.06036 21.06036 + -10.59000 1.00000 1.00000 23.40045 23.40045 + -10.60500 1.00000 1.00000 24.56939 24.56939 + -10.63500 1.00000 1.00000 26.90066 26.90066 + -10.66500 1.00000 1.00000 29.22311 29.22311 + -10.69500 1.00000 1.00000 31.53674 31.53674 + -10.72500 1.00000 1.00000 33.84155 33.84155 + -10.74000 1.00000 1.00000 34.99065 34.99065 + -10.74500 1.00000 1.00000 35.37319 35.37319 + -10.75500 1.00000 1.00000 36.13754 36.13754 + -10.76500 1.00000 1.00000 36.90091 36.90091 + -10.77500 1.00000 1.00000 37.66330 37.66330 + -10.78500 1.00000 1.00000 38.42471 38.42471 + -10.79000 1.00000 1.00000 38.80505 38.80505 + -10.82000 71.51400 34.34000 40.33657 38.88495 + -10.88000 71.51400 34.34000 43.56528 39.05338 -10.94000 71.51400 34.34100 47.01485 39.23333 -11.00000 71.51400 34.34100 50.68530 39.42481 -11.06000 71.51400 34.34100 54.57663 39.62781 @@ -63643,7 +63779,7 @@ Lambda passive -10.97000 11.15720 61.17419 3.19130 0.50828 0.28603 5.48293 -11.03000 11.82860 64.85543 3.38334 0.50828 0.28603 5.48293 -11.09000 12.50000 67.61636 3.52738 0.50828 0.28603 5.48293 - -11.09000 12.50000 49.41323 -0.28341 0.73846 0.00000 3.91466 + -11.09000 12.50000 49.41323 -0.28341 0.73559 0.00000 3.91466 -11.18100 12.99049 49.35826 -0.08130 0.73559 0.00000 3.79957 -11.27200 13.48098 49.61712 0.17666 0.73559 0.01310 3.68053 -11.36300 13.97147 50.11297 0.43013 0.73559 0.03079 3.58681 @@ -63655,7 +63791,7 @@ Lambda passive -11.81800 16.42392 54.00062 1.68581 0.73559 0.10264 3.28793 -11.90900 16.91441 54.90557 1.93654 0.73559 0.11449 3.24608 -12.00000 17.40490 55.59789 2.12459 0.73559 0.12293 3.21705 - -12.00000 17.40490 35.84031 6.54790 0.87230 0.39204 2.14585 + -12.00000 17.40490 35.84031 6.54790 0.77308 0.39204 2.14585 -12.10000 14.59390 32.18078 5.22073 0.77308 0.35773 2.20508 -12.20000 11.78290 27.33574 3.45081 0.77308 0.29287 2.31995 -12.30000 8.97190 22.52396 1.68059 0.77308 0.18732 2.51050 @@ -63685,7 +63821,7 @@ Lambda passive -15.02000 29.02870 146.52174 8.65398 0.52256 0.29812 5.04748 -15.16000 30.45530 153.65983 9.08040 0.52256 0.29816 5.04542 -15.30000 31.88190 159.01640 9.40020 0.52256 0.29818 5.04410 - -15.30000 31.88190 162.58890 9.61339 0.37674 0.29820 5.04331 + -15.30000 31.88190 162.58890 9.61339 0.52256 0.29820 5.04331 -15.44000 33.30850 167.94962 9.93315 0.52256 0.29822 5.04225 -15.58000 34.73510 175.10024 10.35948 0.52256 0.29824 5.04102 -15.72000 36.16170 182.25406 10.78578 0.52256 0.29827 5.03998 @@ -63857,59 +63993,59 @@ Status character 76.23900 1.76580 76.23900 76.23900 402 100 P 76.14100 1.86390 76.14100 76.14100 402 100 P 76.06750 1.96200 76.06750 76.06750 402 100 P - 46.99028 68.86200 51.05077 4.73254 330 92 3 - 50.80384 69.45060 53.81170 4.98849 330 94 3 - 53.98218 70.03920 57.49295 5.32975 330 94 3 - 57.01424 70.62780 61.17419 5.67101 330 93 3 - 59.90563 71.21640 64.85543 6.01227 330 92 3 - 62.26881 71.80500 67.61636 6.26822 330 92 3 - 19.20305 71.80500 49.41323 9.32131 110 39 1 - 24.91645 72.69771 49.35826 9.55561 220 50 2 - 24.91739 73.59042 49.61712 9.91641 220 50 2 - 24.83891 74.48313 50.11297 10.27721 110 50 1 - 24.59662 75.37584 50.75151 10.63800 110 48 1 - 24.29972 76.26855 51.29123 10.90860 110 47 1 - 24.30862 76.26855 51.67530 11.08900 110 47 1 - 23.96621 77.16126 52.27958 11.35960 110 46 1 - 23.58681 78.05397 53.12261 11.72040 110 44 1 - 23.16989 78.94668 54.00062 12.08119 110 43 1 - 22.71936 79.83939 54.90557 12.44199 110 41 1 - 22.72027 80.73210 55.59789 12.71259 110 41 1 - 18.57799 80.73210 35.84031 14.56924 220 52 2 - 16.11113 84.71310 32.18078 11.28224 220 50 2 - 13.72702 88.69410 27.33574 9.10911 220 50 2 - 11.34661 92.67510 22.52396 6.93599 220 50 2 - 9.16312 96.65610 17.73824 4.76286 220 52 2 - 7.57060 100.63710 14.16208 3.13302 220 53 2 + 47.87423 68.86200 51.05077 4.73254 330 94 3 + 50.81206 69.45060 53.81170 4.98849 330 94 3 + 53.99116 70.03920 57.49295 5.32975 330 94 3 + 57.02399 70.62780 61.17419 5.67101 330 93 3 + 59.91615 71.21640 64.85543 6.01227 330 92 3 + 62.28011 71.80500 67.61636 6.26822 330 92 3 + 19.16844 71.80500 49.41323 9.28501 110 39 1 + 24.93864 72.69771 49.35826 9.55561 220 51 2 + 24.93890 73.59042 49.61712 9.91641 220 50 2 + 24.88042 74.48313 50.11297 10.27721 110 50 1 + 24.63645 75.37584 50.75151 10.63800 110 49 1 + 24.33770 76.26855 51.29123 10.90860 110 47 1 + 24.34660 76.26855 51.67530 11.08900 110 47 1 + 24.00216 77.16126 52.27958 11.35960 110 46 1 + 23.62053 78.05397 53.12261 11.72040 110 44 1 + 23.20122 78.94668 54.00062 12.08119 110 43 1 + 22.74813 79.83939 54.90557 12.44199 110 41 1 + 22.72752 80.73210 55.59789 12.71259 110 41 1 + 17.90705 80.73210 35.84031 12.91208 110 50 1 + 16.11096 84.71310 32.18078 11.28224 220 50 2 + 13.72688 88.69410 27.33574 9.10911 220 50 2 + 11.34649 92.67510 22.52396 6.93599 220 50 2 + 9.16471 96.65610 17.73824 4.76286 220 52 2 + 7.57220 100.63710 14.16208 3.13302 220 53 2 19.78289 100.63710 19.78289 1.93691 402 100 P 25.37256 102.01050 25.37256 2.49603 402 100 P - 32.09962 103.38390 32.73186 3.24152 330 98 3 - 34.02096 104.75730 39.99110 3.98700 330 85 3 - 34.26082 106.13070 47.17203 4.73249 220 73 2 - 34.06040 107.50410 52.52169 5.29161 220 65 2 - 36.43967 107.50410 56.07436 5.66436 220 65 2 - 34.82540 108.87750 61.38955 6.22347 220 57 2 - 35.07651 110.25090 68.46250 6.96896 220 51 2 - 32.89104 111.62430 75.52819 7.71445 110 44 1 - 29.88754 112.99770 82.59411 8.45994 110 36 1 - 26.82436 114.37110 87.89635 9.01906 110 31 1 - 27.04554 114.37110 91.43342 9.39180 110 30 1 - 24.05163 115.74450 96.74306 9.95092 110 25 1 - 21.24098 117.11790 103.82983 10.69641 110 20 1 - 18.50431 118.49130 110.92550 11.44190 110 17 1 - 15.84293 119.86470 118.02984 12.18739 110 13 1 - 13.32049 121.23810 123.36324 12.74651 110 11 1 - 13.69324 121.23810 126.92141 13.11925 110 11 1 - 13.11333 122.61150 132.26229 13.67837 110 0 1 - 12.77413 123.98490 139.38900 14.42386 110 0 1 - 12.48104 125.35830 146.52174 15.16935 110 0 1 - 12.22585 126.73170 153.65983 15.91484 110 0 1 - 11.81398 128.10510 159.01640 16.47395 110 0 1 - 9.61339 128.10510 162.58890 12.14556 1 0 A - 11.79571 129.47850 167.94962 17.40581 110 0 1 - 11.60559 130.85190 175.10024 18.15130 110 0 1 - 11.42551 132.22530 182.25406 18.89679 110 0 1 - 11.25100 133.59870 189.41070 19.64228 110 0 1 + 32.11646 103.38390 32.73186 3.24152 330 98 3 + 34.03809 104.75730 39.99110 3.98700 330 85 3 + 34.27337 106.13070 47.17203 4.73249 220 73 2 + 34.07262 107.50410 52.52169 5.29161 220 65 2 + 35.07091 107.50410 56.07436 5.66436 220 63 2 + 34.83715 108.87750 61.38955 6.22347 220 57 2 + 35.08768 110.25090 68.46250 6.96896 220 51 2 + 32.91194 111.62430 75.52819 7.71445 110 44 1 + 29.90671 112.99770 82.59411 8.45994 110 36 1 + 26.84153 114.37110 87.89635 9.01906 110 31 1 + 27.06271 114.37110 91.43342 9.39180 110 30 1 + 24.06650 115.74450 96.74306 9.95092 110 25 1 + 21.25324 117.11790 103.82983 10.69641 110 20 1 + 18.51367 118.49130 110.92550 11.44190 110 17 1 + 15.84908 119.86470 118.02984 12.18739 110 13 1 + 13.29477 121.23810 123.36324 12.74651 110 11 1 + 13.66752 121.23810 126.92141 13.11925 110 11 1 + 13.08414 122.61150 132.26229 13.67837 110 0 1 + 12.74130 123.98490 139.38900 14.42386 110 0 1 + 12.44448 125.35830 146.52174 15.16935 110 0 1 + 12.18552 126.73170 153.65983 15.91484 110 0 1 + 11.76988 128.10510 159.01640 16.47395 110 0 1 + 12.14262 128.10510 162.58890 16.84670 110 0 1 + 11.74789 129.47850 167.94962 17.40581 110 0 1 + 11.55411 130.85190 175.10024 18.15130 110 0 1 + 11.37041 132.22530 182.25406 18.89679 110 0 1 + 11.21205 133.59870 189.41070 19.64228 1 0 A 11.53173 134.97210 194.77975 20.20140 1 0 A [END OF DATA] [END OF TABLE] @@ -63924,10 +64060,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 36.488 'OWB' - -10.79 16.580 'Grind' - -11.09 21.656 'Hydrobiaklei' - -12.00 6.342 'Basisveen' - -12.50 75.153 'Eerste zandlaag' + -10.79 16.609 'Grind' + -11.09 21.681 'Hydrobiaklei' + -12.00 6.309 'Basisveen' + -12.50 75.206 'Eerste zandlaag' -17.00 0.000 'Tweede zandlaag' -25.50 0.000 'Eemklei' [END OF DATA] @@ -63943,10 +64079,10 @@ Layer name [END OF COLUMN INDICATION] [DATA] -9.99 0.00 'OWB' - -10.79 5.92 'Grind' + -10.79 5.93 'Grind' -11.09 4.02 'Hydrobiaklei' -12.00 0.00 'Basisveen' - -12.50 25.46 'Eerste zandlaag' + -12.50 25.48 'Eerste zandlaag' -17.00 0.00 'Tweede zandlaag' -25.50 0.00 'Eemklei' [END OF DATA] @@ -63973,48 +64109,48 @@ CalculationStatus [END OF COLUMN INDICATION] [DATA] 0.00000 0.00000 0.00000 0.00000 0.00000 1 12 4 0.000 1 6 - -935.02756 787.25247 278700.63039 62.55502 66.91679 2 4 2 1.000 2 1 - 4100.78922 1803.07009 1.80640986492E12 92.63485 86.69711 2 5 2 1.000 2 1 - -887.05491 567.09945 224438.23805 63.21380 68.06781 2 0 2 1.000 2 1 - -6587.34379 1698.51941 -3.44421261409E12 98.70104 96.20325 2 1 2 1.000 2 1 - 86.91816 148.14320 -13.37794 12.02503 15.56316 2 3 2 1.000 2 0 - 104.30180 177.77184 -13.37794 12.02503 15.56316 2 14 2 1.200 2 0 - -883.14121 722.75259 281971.36439 58.99567 55.16590 3 4 2 1.000 0 1 - -883.21710 722.99763 96996.71089 58.99648 55.16671 3 5 2 1.000 0 0 --10682.80567 40394.19118 -4.9938299324E13 98.76023 96.29125 3 0 2 1.000 2 1 - 4615.05826 -5278.92265 7.19441751274E12 100.00000 100.00000 3 1 2 1.000 2 1 - 90.04546 148.14320 -12.88135 8.69028 11.88127 3 3 2 1.000 2 0 - 108.05456 177.77184 -12.88135 8.69028 11.88127 3 14 2 1.200 2 0 + -935.02756 787.25247 278700.63178 62.55502 66.91679 2 4 2 1.000 2 1 + 4099.92572 -999.81567 1.80612786455E12 92.63485 86.69711 2 5 2 1.000 2 1 + -888.11186 570.20438 236565.91413 63.20965 68.06127 2 0 2 1.000 2 1 + 4353.83375 1424.86774 3.30548442319E12 92.81088 86.94401 2 1 2 1.000 2 1 + 86.95494 148.14320 -13.39028 11.98331 15.52197 2 3 2 1.000 2 0 + 104.34592 177.77184 -13.39028 11.98331 15.52197 2 14 2 1.200 2 0 + -883.14464 722.76657 281984.49050 58.99551 55.16574 3 4 2 1.000 0 1 + -883.22053 723.01163 97001.22767 58.99632 55.16655 3 5 2 1.000 0 0 +-10752.47193 -38096.00858 -4.98036821681E13 98.77139 96.31099 3 0 2 1.000 2 1 + 4638.10959 -6643.03202 7.23336283944E12 100.00000 100.00000 3 1 2 1.000 2 1 + 90.06312 148.14320 -12.88930 8.67521 11.86565 3 3 2 1.000 2 0 + 108.07575 177.77184 -12.88930 8.67521 11.86565 3 14 2 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 4 4 2 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 4 5 2 0.000 1 5 - -18.76301 -10.71489 -4.52516 12.61513 13.04232 4 0 2 1.000 2 0 - 19.35552 11.23016 -4.01635 12.71527 13.21133 4 1 2 1.000 2 0 - 6.66032 -3.37504 -4.75013 7.76799 7.98038 4 3 2 1.000 2 0 - 7.99238 -4.05004 -4.75013 7.76799 7.98038 4 14 2 1.200 2 0 + -18.76531 -10.71541 -4.52573 12.60065 13.02928 4 0 2 1.000 2 0 + 19.44642 11.24424 -4.00657 12.70137 13.19970 4 1 2 1.000 2 0 + 6.68210 -3.38801 -4.75165 7.75700 7.97018 4 3 2 1.000 2 0 + 8.01852 -4.06561 -4.75165 7.75700 7.97018 4 14 2 1.200 2 0 0.00000 0.00000 0.00000 0.00000 0.00000 5 4 2 0.000 1 5 0.00000 0.00000 0.00000 0.00000 0.00000 5 5 2 0.000 1 5 - 206.60866 170.12672 -14.79271 0.00000 12.94881 5 0 2 1.000 0 0 - 211.32237 170.73415 -14.58939 0.00000 12.73848 5 1 2 1.000 2 0 - 195.00137 156.84980 -13.99005 0.00000 9.24449 5 3 2 1.000 0 0 - 234.00164 188.21976 -13.99005 0.00000 9.24449 5 14 2 1.200 0 0 - 322.41015 315.75919 -22.23230 0.00000 16.30983 6 4 2 1.000 0 0 - 330.49950 316.80163 -21.86504 0.00000 17.80678 6 5 2 1.000 2 0 - 325.78306 316.19384 -22.08385 0.00000 15.34273 6 0 2 1.000 2 0 - 333.12518 317.13999 -21.75148 0.00000 16.69386 6 1 2 1.000 2 0 - 321.58821 298.55966 -21.91991 0.00000 14.69792 6 3 2 1.000 0 0 - 385.90585 358.27160 -21.91991 0.00000 14.69792 6 14 2 1.200 0 0 - 11.17956 15.95397 -8.04239 0.00000 25.80201 7 4 2 1.000 0 0 - 41.72840 41.25180 -7.39186 0.00000 27.50729 7 5 2 1.000 2 0 - 8.93041 16.18257 -8.11843 0.00000 25.04694 7 0 2 1.000 0 0 - 42.39859 41.13602 -7.39820 0.00000 25.67582 7 1 2 1.000 2 0 - 20.29992 19.25438 -7.88312 0.00000 21.03672 7 3 2 1.000 2 0 - 24.35990 23.10526 -7.88312 0.00000 21.03672 7 14 2 1.200 2 0 - 432.03399 439.90000 -59.59552 0.00000 29.73598 8 4 2 1.000 1 0 - 431.98955 439.90000 -59.15289 0.00000 31.87982 8 5 2 1.000 1 0 - 432.04205 439.90000 -59.67594 0.00000 26.77994 8 0 2 1.000 1 0 - 431.99022 439.90000 -59.15980 0.00000 29.07197 8 1 2 1.000 1 0 - 432.02463 439.90000 -59.50184 0.00000 25.06835 8 3 2 1.000 1 0 - 518.42955 527.88000 -59.50184 0.00000 25.06835 8 14 2 1.200 1 0 + 206.65466 170.13472 -14.78882 0.00000 12.92559 5 0 2 1.000 0 0 + 211.36673 170.74194 -14.58557 0.00000 12.72659 5 1 2 1.000 2 0 + 195.01919 156.85418 -13.98847 0.00000 9.25901 5 3 2 1.000 0 0 + 234.02303 188.22502 -13.98847 0.00000 9.25901 5 14 2 1.200 0 0 + 322.40583 315.76072 -22.23180 0.00000 16.30560 6 4 2 1.000 0 0 + 330.50052 316.80385 -21.86431 0.00000 17.80520 6 5 2 1.000 2 0 + 325.78677 316.19641 -22.08258 0.00000 15.34209 6 0 2 1.000 2 0 + 333.13307 317.14310 -21.75003 0.00000 16.69258 6 1 2 1.000 2 0 + 321.60246 298.56359 -21.91839 0.00000 14.71187 6 3 2 1.000 0 0 + 385.92296 358.27631 -21.91839 0.00000 14.71187 6 14 2 1.200 0 0 + 11.14608 15.96822 -8.04713 0.00000 25.84834 7 4 2 1.000 0 0 + 41.68798 41.22459 -7.39350 0.00000 27.50218 7 5 2 1.000 2 0 + 8.90298 16.19781 -8.12376 0.00000 25.09308 7 0 2 1.000 0 0 + 42.30534 41.09339 -7.40083 0.00000 25.67534 7 1 2 1.000 2 0 + 20.28891 19.25755 -7.88409 0.00000 21.07519 7 3 2 1.000 2 0 + 24.34669 23.10905 -7.88409 0.00000 21.07519 7 14 2 1.200 2 0 + 432.03422 439.90000 -59.59700 0.00000 29.75353 8 4 2 1.000 1 0 + 431.98977 439.90000 -59.15440 0.00000 31.89487 8 5 2 1.000 1 0 + 432.04236 439.90000 -59.67811 0.00000 26.79243 8 0 2 1.000 1 0 + 431.99052 439.90000 -59.16181 0.00000 29.08886 8 1 2 1.000 1 0 + 432.02470 439.90000 -59.50227 0.00000 25.10374 8 3 2 1.000 1 0 + 518.42964 527.88000 -59.50227 0.00000 25.10374 8 14 2 1.200 1 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -64038,69 +64174,69 @@ AnchorName 2 4 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' 2 5 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' 2 0 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' - 2 1 7 2 1.000 9999.00000 1 0 0 1 'Stempelraam boven dek' - 2 3 7 2 1.000 106.43686 1 1 0 0 'Stempelraam boven dek' - 2 14 7 2 1.200 127.72423 1 1 0 0 'Stempelraam boven dek' + 2 1 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' + 2 3 7 2 1.000 106.42705 1 1 0 0 'Stempelraam boven dek' + 2 14 7 2 1.200 127.71246 1 1 0 0 'Stempelraam boven dek' 3 4 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' 3 5 7 2 1.000 0.00000 1 2 0 0 'Stempelraam boven dek' 3 0 7 2 1.000 9999.00000 1 0 0 1 'Stempelraam boven dek' 3 1 7 2 1.000 0.00000 1 2 0 1 'Stempelraam boven dek' - 3 3 7 2 1.000 104.67560 1 1 0 0 'Stempelraam boven dek' - 3 14 7 2 1.200 125.61073 1 1 0 0 'Stempelraam boven dek' + 3 3 7 2 1.000 104.67293 1 1 0 0 'Stempelraam boven dek' + 3 14 7 2 1.200 125.60751 1 1 0 0 'Stempelraam boven dek' 4 4 7 2 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 4 5 7 2 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' - 4 0 7 2 1.000 257.00953 1 1 0 0 'Stempelraam boven dek' - 4 1 7 2 1.000 256.31743 1 1 0 0 'Stempelraam boven dek' - 4 3 7 2 1.000 240.73439 1 1 0 0 'Stempelraam boven dek' - 4 14 7 2 1.200 288.88127 1 1 0 0 'Stempelraam boven dek' + 4 0 7 2 1.000 257.01005 1 1 0 0 'Stempelraam boven dek' + 4 1 7 2 1.000 256.30571 1 1 0 0 'Stempelraam boven dek' + 4 3 7 2 1.000 240.73239 1 1 0 0 'Stempelraam boven dek' + 4 14 7 2 1.200 288.87887 1 1 0 0 'Stempelraam boven dek' 5 4 7 2 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 4 7 2 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' 5 5 7 2 1.000 0.00000 1 1 0 5 'Stempelraam boven dek' 5 5 7 2 1.000 0.00000 1 1 0 5 'Onderwaterbeton 2-laags' - 5 0 7 2 1.000 370.32294 1 1 0 0 'Stempelraam boven dek' - 5 0 7 2 1.000 277.59571 1 1 0 0 'Onderwaterbeton 2-laags' - 5 1 7 2 1.000 369.71550 1 1 0 0 'Stempelraam boven dek' - 5 1 7 2 1.000 289.79006 1 1 0 0 'Onderwaterbeton 2-laags' - 5 3 7 2 1.000 364.05184 1 1 0 0 'Stempelraam boven dek' - 5 3 7 2 1.000 259.52759 1 1 0 0 'Onderwaterbeton 2-laags' - 5 14 7 2 1.200 436.86221 1 1 0 0 'Stempelraam boven dek' - 5 14 7 2 1.200 311.43311 1 1 0 0 'Onderwaterbeton 2-laags' - 6 4 7 2 1.000 400.68645 1 1 0 0 'Stempelraam boven dek' - 6 4 7 2 1.000 466.54001 1 1 0 0 'Onderwaterbeton 2-laags' - 6 5 7 2 1.000 399.64400 1 1 0 0 'Stempelraam boven dek' - 6 5 7 2 1.000 479.90319 1 1 0 0 'Onderwaterbeton 2-laags' - 6 0 7 2 1.000 400.25179 1 1 0 0 'Stempelraam boven dek' - 6 0 7 2 1.000 478.15862 1 1 0 0 'Onderwaterbeton 2-laags' - 6 1 7 2 1.000 399.30564 1 1 0 0 'Stempelraam boven dek' - 6 1 7 2 1.000 491.65085 1 1 0 0 'Onderwaterbeton 2-laags' - 6 3 7 2 1.000 397.54874 1 1 0 0 'Stempelraam boven dek' - 6 3 7 2 1.000 441.95386 1 1 0 0 'Onderwaterbeton 2-laags' - 6 14 7 2 1.200 477.05849 1 1 0 0 'Stempelraam boven dek' - 6 14 7 2 1.200 530.34464 1 1 0 0 'Onderwaterbeton 2-laags' - 7 4 7 2 1.000 439.48508 1 1 0 0 'Stempelraam boven dek' - 7 4 7 2 1.000 549.99806 1 1 0 0 'Onderwaterbeton 2-laags' - 7 5 7 2 1.000 441.39180 1 1 0 0 'Stempelraam boven dek' - 7 5 7 2 1.000 516.31714 1 1 0 0 'Onderwaterbeton 2-laags' - 7 0 7 2 1.000 439.25647 1 1 0 0 'Stempelraam boven dek' - 7 0 7 2 1.000 556.96841 1 1 0 0 'Onderwaterbeton 2-laags' - 7 1 7 2 1.000 441.37093 1 1 0 0 'Stempelraam boven dek' - 7 1 7 2 1.000 517.61418 1 1 0 0 'Onderwaterbeton 2-laags' - 7 3 7 2 1.000 439.99795 1 1 0 0 'Stempelraam boven dek' - 7 3 7 2 1.000 514.06293 1 1 0 0 'Onderwaterbeton 2-laags' - 7 14 7 2 1.200 527.99754 1 1 0 0 'Stempelraam boven dek' - 7 14 7 2 1.200 616.87551 1 1 0 0 'Onderwaterbeton 2-laags' - 8 4 7 2 1.000 409.36925 1 1 0 0 'Onderwaterbeton 2-laags' - 8 4 7 2 1.000 523.67114 1 1 0 0 'Dek' - 8 5 7 2 1.000 394.03427 1 1 0 0 'Onderwaterbeton 2-laags' - 8 5 7 2 1.000 524.85283 1 1 0 0 'Dek' - 8 0 7 2 1.000 415.15544 1 1 0 0 'Onderwaterbeton 2-laags' - 8 0 7 2 1.000 523.44900 1 1 0 0 'Dek' - 8 1 7 2 1.000 396.20039 1 1 0 0 'Onderwaterbeton 2-laags' - 8 1 7 2 1.000 524.82952 1 1 0 0 'Dek' - 8 3 7 2 1.000 378.59079 1 1 0 0 'Onderwaterbeton 2-laags' - 8 3 7 2 1.000 523.98470 1 1 0 0 'Dek' - 8 14 7 2 1.200 454.30895 1 1 0 0 'Onderwaterbeton 2-laags' - 8 14 7 2 1.200 628.78164 1 1 0 0 'Dek' + 5 0 7 2 1.000 370.31726 1 1 0 0 'Stempelraam boven dek' + 5 0 7 2 1.000 277.62306 1 1 0 0 'Onderwaterbeton 2-laags' + 5 1 7 2 1.000 369.71003 1 1 0 0 'Stempelraam boven dek' + 5 1 7 2 1.000 289.81340 1 1 0 0 'Onderwaterbeton 2-laags' + 5 3 7 2 1.000 364.04980 1 1 0 0 'Stempelraam boven dek' + 5 3 7 2 1.000 259.58754 1 1 0 0 'Onderwaterbeton 2-laags' + 5 14 7 2 1.200 436.85976 1 1 0 0 'Stempelraam boven dek' + 5 14 7 2 1.200 311.50505 1 1 0 0 'Onderwaterbeton 2-laags' + 6 4 7 2 1.000 400.68726 1 1 0 0 'Stempelraam boven dek' + 6 4 7 2 1.000 466.52691 1 1 0 0 'Onderwaterbeton 2-laags' + 6 5 7 2 1.000 399.64413 1 1 0 0 'Stempelraam boven dek' + 6 5 7 2 1.000 479.90050 1 1 0 0 'Onderwaterbeton 2-laags' + 6 0 7 2 1.000 400.25157 1 1 0 0 'Stempelraam boven dek' + 6 0 7 2 1.000 478.14667 1 1 0 0 'Onderwaterbeton 2-laags' + 6 1 7 2 1.000 399.30488 1 1 0 0 'Stempelraam boven dek' + 6 1 7 2 1.000 491.64624 1 1 0 0 'Onderwaterbeton 2-laags' + 6 3 7 2 1.000 397.54716 1 1 0 0 'Stempelraam boven dek' + 6 3 7 2 1.000 442.01361 1 1 0 0 'Onderwaterbeton 2-laags' + 6 14 7 2 1.200 477.05659 1 1 0 0 'Stempelraam boven dek' + 6 14 7 2 1.200 530.41633 1 1 0 0 'Onderwaterbeton 2-laags' + 7 4 7 2 1.000 439.47317 1 1 0 0 'Stempelraam boven dek' + 7 4 7 2 1.000 550.15103 1 1 0 0 'Onderwaterbeton 2-laags' + 7 5 7 2 1.000 441.38892 1 1 0 0 'Stempelraam boven dek' + 7 5 7 2 1.000 516.34686 1 1 0 0 'Onderwaterbeton 2-laags' + 7 0 7 2 1.000 439.24358 1 1 0 0 'Stempelraam boven dek' + 7 0 7 2 1.000 557.12014 1 1 0 0 'Onderwaterbeton 2-laags' + 7 1 7 2 1.000 441.36590 1 1 0 0 'Stempelraam boven dek' + 7 1 7 2 1.000 517.65825 1 1 0 0 'Onderwaterbeton 2-laags' + 7 3 7 2 1.000 439.99749 1 1 0 0 'Stempelraam boven dek' + 7 3 7 2 1.000 514.06257 1 1 0 0 'Onderwaterbeton 2-laags' + 7 14 7 2 1.200 527.99699 1 1 0 0 'Stempelraam boven dek' + 7 14 7 2 1.200 616.87509 1 1 0 0 'Onderwaterbeton 2-laags' + 8 4 7 2 1.000 409.42981 1 1 0 0 'Onderwaterbeton 2-laags' + 8 4 7 2 1.000 523.66657 1 1 0 0 'Dek' + 8 5 7 2 1.000 394.05489 1 1 0 0 'Onderwaterbeton 2-laags' + 8 5 7 2 1.000 524.84827 1 1 0 0 'Dek' + 8 0 7 2 1.000 415.23034 1 1 0 0 'Onderwaterbeton 2-laags' + 8 0 7 2 1.000 523.44288 1 1 0 0 'Dek' + 8 1 7 2 1.000 396.24050 1 1 0 0 'Onderwaterbeton 2-laags' + 8 1 7 2 1.000 524.82387 1 1 0 0 'Dek' + 8 3 7 2 1.000 378.57890 1 1 0 0 'Onderwaterbeton 2-laags' + 8 3 7 2 1.000 523.98557 1 1 0 0 'Dek' + 8 14 7 2 1.200 454.29469 1 1 0 0 'Onderwaterbeton 2-laags' + 8 14 7 2 1.200 628.78268 1 1 0 0 'Dek' [END OF DATA] [END OF TABLE] [END OF ANCHORS AND STRUTS RESUME] @@ -64132,18 +64268,18 @@ AnchorName Force [END OF COLUMN INDICATION] [DATA] -'Stempelraam boven dek' 527.99754 -'Onderwaterbeton 2-laags' 616.87551 -'Dek' 628.78164 +'Stempelraam boven dek' 527.99699 +'Onderwaterbeton 2-laags' 616.87509 +'Dek' 628.78268 [END OF DATA] [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-883.21710 -MaximumShearForce=722.99763 -MaximumDisplacement=-59.50184 -MaximumPercentageMobilisedMoment=58.99648 -MaximumPercentageMobilisedResistance=55.16671 +MaximumMoment=-883.22053 +MaximumShearForce=723.01163 +MaximumDisplacement=-59.50227 +MaximumPercentageMobilisedMoment=58.99632 +MaximumPercentageMobilisedResistance=55.16655 VerticalBalanceSummary=1 AllStagesAreStable=0 [END OF MAXIMUM SUMMARY RESULTS] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shi index f6aba555..fc4119e6 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects19.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:04:55 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects19.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:52:23 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects19.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1278,6 +1278,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1287,6 +1288,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1296,6 +1298,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1305,6 +1308,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1314,6 +1318,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1323,6 +1328,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1332,6 +1338,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1341,6 +1348,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1364,7 +1372,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1375,8 +1383,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -1387,7 +1397,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1406,6 +1416,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1433,6 +1444,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1460,6 +1472,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1487,6 +1500,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1514,6 +1528,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1541,6 +1556,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1568,6 +1584,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1595,6 +1612,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1605,7 +1623,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1620,8 +1694,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1631,8 +1706,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1649,6 +1724,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1658,7 +1734,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1676,6 +1808,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1703,6 +1836,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1730,6 +1864,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shd index 41d09af3..894f1ba8 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:06:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects20.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:53:44 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects20.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -308,6 +308,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -331,7 +332,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -342,8 +343,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -354,7 +357,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -373,6 +376,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -400,6 +404,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,6 +432,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -454,6 +460,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,6 +488,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -508,6 +516,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -535,6 +544,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -562,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -572,7 +583,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -581,14 +592,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -598,8 +666,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -616,6 +684,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -625,7 +694,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -643,6 +768,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -670,6 +796,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -697,6 +824,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -769,6 +897,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -787,8 +916,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 - -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 + -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shi index 981fd13b..b8d8dce6 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects20.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:06:58 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects20.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:53:44 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects20.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -307,6 +307,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -330,7 +331,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -341,8 +342,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -353,7 +356,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -372,6 +375,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -399,6 +403,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -426,6 +431,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -453,6 +459,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -480,6 +487,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -507,6 +515,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -534,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -561,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -571,7 +582,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -580,14 +591,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -597,8 +665,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -615,6 +683,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -624,7 +693,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -642,6 +767,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -669,6 +795,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -696,6 +823,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shd index 05763773..681e092c 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:12 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects21.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:53:54 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects21.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1135,6 +1135,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1144,6 +1145,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1153,6 +1155,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1162,6 +1165,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1171,6 +1175,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1194,7 +1199,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1205,8 +1210,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1217,7 +1224,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1236,6 +1243,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1263,6 +1271,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1290,6 +1299,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1317,6 +1327,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1344,6 +1355,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1371,6 +1383,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1398,6 +1411,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1425,6 +1439,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1435,7 +1450,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1444,14 +1459,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1461,8 +1533,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1479,6 +1551,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1488,7 +1561,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1506,6 +1635,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1533,6 +1663,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1560,6 +1691,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1632,6 +1764,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1650,11 +1783,11 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 - 4 11 1.400 1.200 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 - 5 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 2 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 3 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + 4 11 1.400 1.200 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.350 0.000 1.650 0.900 1.485 + 5 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -2255,19 +2388,19 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00001 0.00000 110 9 1 - 1.27500 0.00000 14.62976 1.27500 110 0 1 - 2.55000 0.00000 29.25951 2.55000 110 0 1 + 1.27500 0.00000 14.62976 1.27500 110 9 1 + 2.55000 0.00000 29.25951 2.55000 110 9 1 3.82500 0.00000 43.88927 3.82500 110 9 1 - 5.10000 0.00000 58.51903 5.10000 110 0 1 + 5.10000 0.00000 58.51903 5.10000 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 - 6.85747 1.03005 78.68486 6.85747 110 0 1 + 6.85747 1.03005 78.68486 6.85747 110 9 1 7.33995 2.06010 84.22093 7.33995 110 9 1 - 7.82242 3.09015 89.75700 7.82242 110 0 1 + 7.82242 3.09015 89.75700 7.82242 110 9 1 8.30490 4.12020 95.29307 8.30490 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 - 9.26985 6.18030 106.36522 9.26985 110 0 1 + 9.26985 6.18030 106.36522 9.26985 110 9 1 9.75233 7.21035 111.90129 9.75233 110 9 1 10.23480 8.24040 117.43736 10.23480 110 9 1 10.71728 9.27045 122.97344 10.71728 110 9 1 @@ -2281,11 +2414,11 @@ Status character 17.36275 16.84050 115.80452 17.36275 110 15 1 18.06978 18.14850 120.52022 18.06978 110 15 1 18.77682 19.45650 125.23593 18.77682 110 15 1 - 19.48385 20.76450 129.95164 19.48385 110 0 1 - 20.19088 22.07250 134.66734 20.19088 110 0 1 + 19.48385 20.76450 129.95164 19.48385 110 15 1 + 20.19088 22.07250 134.66734 20.19088 110 15 1 20.89791 23.38050 139.38305 20.89791 110 15 1 20.89791 23.38050 134.35690 20.89791 110 16 1 - 21.60495 24.68850 138.90256 21.60495 110 0 1 + 21.60495 24.68850 138.90256 21.60495 110 16 1 22.31198 25.99650 143.44822 22.31198 110 16 1 23.01901 27.30450 147.99388 23.01901 110 16 1 23.72605 28.61250 152.53953 23.72605 110 16 1 @@ -2329,12 +2462,12 @@ Status character 36.24772 69.16050 154.57703 36.24772 110 23 1 36.95495 70.63200 157.59302 36.95495 110 23 1 37.66219 72.10350 160.60900 37.66219 110 23 1 - 38.36943 73.57500 163.62499 38.36943 110 0 1 + 38.36943 73.57500 163.62499 38.36943 110 23 1 39.07667 75.04650 166.64098 39.07667 110 23 1 39.78391 76.51800 169.65697 39.78391 110 23 1 39.78391 76.51800 167.31476 39.78391 110 24 1 40.49114 77.98950 170.28911 40.49114 110 24 1 - 41.19838 79.46100 173.26346 41.19838 110 0 1 + 41.19838 79.46100 173.26346 41.19838 110 24 1 41.90562 80.93250 176.23781 41.90562 110 24 1 42.61286 82.40400 179.21216 42.61286 110 24 1 43.32009 83.87550 182.18651 43.32009 110 24 1 @@ -2607,26 +2740,26 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00001 0.00000 110 9 1 - 1.27500 0.00000 14.62976 1.27500 110 0 1 - 2.55000 0.00000 29.25951 2.55000 110 0 1 + 1.27500 0.00000 14.62976 1.27500 110 9 1 + 2.55000 0.00000 29.25951 2.55000 110 9 1 3.82500 0.00000 43.88927 3.82500 110 9 1 - 5.10000 0.00000 58.51903 5.10000 110 0 1 + 5.10000 0.00000 58.51903 5.10000 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 - 6.85747 1.03005 78.68486 6.85747 110 0 1 + 6.85747 1.03005 78.68486 6.85747 110 9 1 7.33995 2.06010 84.22093 7.33995 110 9 1 - 7.82242 3.09015 89.75700 7.82242 110 0 1 + 7.82242 3.09015 89.75700 7.82242 110 9 1 8.30490 4.12020 95.29307 8.30490 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 - 9.26985 6.18030 106.36522 9.26985 110 0 1 + 9.26985 6.18030 106.36522 9.26985 110 9 1 9.75233 7.21035 111.90129 9.75233 110 9 1 10.23480 8.24040 117.43736 10.23480 110 9 1 10.71728 9.27045 122.97344 10.71728 110 9 1 11.19975 10.30050 128.50951 11.19975 110 9 1 13.82758 10.30050 97.58321 13.82758 110 14 1 14.53462 11.60850 102.57285 14.53462 110 14 1 - 15.24165 12.91650 107.56248 15.24165 110 0 1 + 15.24165 12.91650 107.56248 15.24165 110 14 1 15.94868 14.22450 112.55212 15.94868 110 14 1 16.65572 15.53250 117.54175 16.65572 110 14 1 17.36275 16.84050 122.53138 17.36275 110 14 1 @@ -2634,24 +2767,24 @@ Status character 18.06978 18.14850 120.52022 18.06978 110 15 1 18.77682 19.45650 125.23593 18.77682 110 15 1 19.48385 20.76450 129.95164 19.48385 110 15 1 - 20.19088 22.07250 134.66734 20.19088 110 0 1 + 20.19088 22.07250 134.66734 20.19088 110 15 1 20.89791 23.38050 139.38305 20.89791 110 15 1 20.89791 23.38050 134.35690 20.89791 110 16 1 - 21.60495 24.68850 138.90256 21.60495 110 0 1 + 21.60495 24.68850 138.90256 21.60495 110 16 1 22.31198 25.99650 143.44822 22.31198 110 16 1 23.01901 27.30450 147.99388 23.01901 110 16 1 23.72605 28.61250 152.53953 23.72605 110 16 1 24.43308 29.92050 157.08519 24.43308 110 16 1 - 18.31345 29.92050 232.76900 18.31345 110 0 1 + 18.31345 29.92050 232.76900 18.31345 110 8 1 18.94211 31.22850 240.75939 18.94211 110 8 1 - 19.57076 32.53650 248.74977 19.57076 110 0 1 + 19.57076 32.53650 248.74977 19.57076 110 8 1 20.19942 33.84450 256.74016 20.19942 110 8 1 20.82807 35.15250 264.73054 20.82807 110 8 1 - 21.45673 36.46050 272.72093 21.45673 110 0 1 + 21.45673 36.46050 272.72093 21.45673 110 8 1 21.45673 36.46050 271.69315 21.45673 110 8 1 - 22.08538 37.76850 279.65343 22.08538 110 0 1 - 22.71404 39.07650 287.61370 22.71404 110 0 1 - 23.34269 40.38450 295.57397 23.34269 110 0 1 + 22.08538 37.76850 279.65343 22.08538 110 8 1 + 22.71404 39.07650 287.61370 22.71404 110 8 1 + 23.34269 40.38450 295.57397 23.34269 110 8 1 23.97135 41.69250 303.53425 23.97135 110 8 1 24.60001 43.00050 311.49452 24.60001 110 8 1 24.60001 43.00050 311.02062 24.60001 110 8 1 @@ -2660,36 +2793,36 @@ Status character 26.48597 46.92450 334.86511 26.48597 110 8 1 27.11463 48.23250 342.81327 27.11463 110 8 1 27.74328 49.54050 350.76143 27.74328 110 8 1 - 29.97975 49.54050 345.43735 29.97975 110 0 1 + 29.97975 49.54050 345.43735 29.97975 110 9 1 30.59242 50.84850 352.49672 30.59242 110 9 1 31.20508 52.15650 359.55608 31.20508 110 9 1 31.81775 53.46450 366.61545 31.81775 110 9 1 - 32.43042 54.77250 373.67481 32.43042 110 0 1 + 32.43042 54.77250 373.67481 32.43042 110 9 1 33.04308 56.08050 380.73417 33.04308 110 9 1 33.04308 56.08050 380.15157 33.04308 110 9 1 33.65575 57.38850 387.20013 33.65575 110 9 1 - 34.26842 58.69650 394.24869 34.26842 110 0 1 + 34.26842 58.69650 394.24869 34.26842 110 9 1 34.88108 60.00450 401.29725 34.88108 110 9 1 - 35.49375 61.31250 408.34581 35.49375 110 0 1 - 36.10642 62.62050 415.39437 36.10642 110 0 1 - 36.10642 62.62050 415.03125 36.10642 110 0 1 - 36.71908 63.92850 422.07365 36.71908 110 0 1 + 35.49375 61.31250 408.34581 35.49375 110 9 1 + 36.10642 62.62050 415.39437 36.10642 110 9 1 + 36.10642 62.62050 415.03125 36.10642 110 9 1 + 36.71908 63.92850 422.07365 36.71908 110 9 1 37.33175 65.23650 429.11605 37.33175 110 9 1 37.94442 66.54450 436.15845 37.94442 110 9 1 38.55708 67.85250 443.20085 38.55708 110 9 1 39.16975 69.16050 450.24325 39.16975 110 9 1 36.24772 69.16050 457.46177 36.24772 110 8 1 - 36.95495 70.63200 466.38741 36.95495 110 0 1 + 36.95495 70.63200 466.38741 36.95495 110 8 1 37.66219 72.10350 475.31305 37.66219 110 8 1 - 38.36943 73.57500 484.23869 38.36943 110 0 1 + 38.36943 73.57500 484.23869 38.36943 110 8 1 39.07667 75.04650 493.16433 39.07667 110 8 1 39.78391 76.51800 502.08998 39.78391 110 8 1 39.78391 76.51800 502.08894 39.78391 110 8 1 - 40.49114 77.98950 511.01456 40.49114 110 0 1 + 40.49114 77.98950 511.01456 40.49114 110 8 1 41.19838 79.46100 519.94019 41.19838 110 8 1 - 41.90562 80.93250 528.86581 41.90562 110 0 1 - 42.61286 82.40400 537.79143 42.61286 110 0 1 - 43.32009 83.87550 546.71706 43.32009 110 0 1 + 41.90562 80.93250 528.86581 41.90562 110 8 1 + 42.61286 82.40400 537.79143 42.61286 110 8 1 + 43.32009 83.87550 546.71706 43.32009 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3982,7 +4115,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=6 +IterationCount=3 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -4413,20 +4546,20 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 - 0.58634 0.00000 13.66428 1.08272 110 0 1 - 1.17268 0.00000 27.32857 2.16544 110 0 1 - 1.75902 0.00000 40.99285 3.24816 110 0 1 - 2.34537 0.00000 54.65714 4.33088 110 0 1 - 2.93171 0.00000 68.32142 5.41359 110 0 1 - 2.93171 0.00000 68.32142 5.41359 110 0 1 - 3.51805 0.00000 81.98571 6.49631 110 0 1 - 4.10439 0.00000 95.64999 7.57903 110 0 1 - 4.69073 0.00000 109.31428 8.66175 110 0 1 - 5.27707 0.00000 122.97856 9.74447 110 0 1 - 5.86341 0.00000 136.64285 10.82719 110 0 1 - 5.86341 0.00000 136.64285 10.82719 110 0 1 - 6.44976 0.00000 150.30713 11.90991 110 0 1 + 0.00000 0.00000 0.00001 0.00000 1 0 A + 0.58634 0.00000 13.66428 1.08272 1 0 A + 1.17268 0.00000 27.32857 2.16544 1 0 A + 1.75902 0.00000 40.99285 3.24816 1 0 A + 2.34537 0.00000 54.65714 4.33088 1 0 A + 2.93171 0.00000 68.32142 5.41359 1 0 A + 2.93171 0.00000 68.32142 5.41359 1 0 A + 3.51805 0.00000 81.98571 6.49631 1 0 A + 4.10439 0.00000 95.64999 7.57903 1 0 A + 4.69073 0.00000 109.31428 8.66175 1 0 A + 5.27707 0.00000 122.97856 9.74447 1 0 A + 5.86341 0.00000 136.64285 10.82719 1 0 A + 5.86341 0.00000 136.64285 10.82719 1 0 A + 6.44976 0.00000 150.30713 11.90991 1 0 A 7.03610 0.00000 163.97142 12.99263 1 0 A 7.62244 0.00000 177.63570 14.07535 1 0 A 8.20878 0.00000 191.29999 15.15806 1 0 A @@ -4524,15 +4657,15 @@ Status character 59.59749 69.16050 333.16547 70.39501 1 0 A 60.19625 70.63200 336.51268 71.10224 1 0 A 60.79500 72.10350 339.85989 71.80948 1 0 A - 61.39376 73.57500 343.20711 72.51672 110 0 1 - 61.99252 75.04650 346.55432 73.22396 110 0 1 - 62.59128 76.51800 349.90153 73.93119 110 0 1 - 62.96203 76.51800 345.83815 73.93119 110 0 1 - 63.56434 77.98950 349.14649 74.63843 110 0 1 - 64.16664 79.46100 352.45483 75.34567 110 0 1 - 64.76895 80.93250 355.76317 76.05291 110 0 1 - 65.37125 82.40400 359.07152 76.76014 110 0 1 - 65.97356 83.87550 362.37986 77.46738 110 0 1 + 61.39376 73.57500 343.20711 72.51672 1 0 A + 61.99252 75.04650 346.55432 73.22396 1 0 A + 62.59128 76.51800 349.90153 73.93119 1 0 A + 62.96203 76.51800 345.83815 73.93119 1 0 A + 63.56434 77.98950 349.14649 74.63843 1 0 A + 64.16664 79.46100 352.45483 75.34567 1 0 A + 64.76895 80.93250 355.76317 76.05291 1 0 A + 65.37125 82.40400 359.07152 76.76014 1 0 A + 65.97356 83.87550 362.37986 77.46738 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4801,7 +4934,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 402 100 P + 0.00000 0.00000 0.00000 0.00000 330 100 3 4.45161 0.00000 7.87080 0.83085 220 57 2 6.41849 0.00000 15.72720 1.66019 110 41 1 7.00943 0.00000 23.55598 2.48660 110 30 1 @@ -7831,19 +7964,19 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00001 0.00000 110 9 1 - 1.27500 0.00000 14.62976 1.27500 110 0 1 - 2.55000 0.00000 29.25951 2.55000 110 0 1 + 1.27500 0.00000 14.62976 1.27500 110 9 1 + 2.55000 0.00000 29.25951 2.55000 110 9 1 3.82500 0.00000 43.88927 3.82500 110 9 1 - 5.10000 0.00000 58.51903 5.10000 110 0 1 + 5.10000 0.00000 58.51903 5.10000 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 - 6.85747 1.03005 78.68486 6.85747 110 0 1 + 6.85747 1.03005 78.68486 6.85747 110 9 1 7.33995 2.06010 84.22093 7.33995 110 9 1 - 7.82242 3.09015 89.75700 7.82242 110 0 1 + 7.82242 3.09015 89.75700 7.82242 110 9 1 8.30490 4.12020 95.29307 8.30490 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 - 9.26985 6.18030 106.36522 9.26985 110 0 1 + 9.26985 6.18030 106.36522 9.26985 110 9 1 9.75233 7.21035 111.90129 9.75233 110 9 1 10.23480 8.24040 117.43736 10.23480 110 9 1 10.71728 9.27045 122.97344 10.71728 110 9 1 @@ -7857,11 +7990,11 @@ Status character 17.36275 16.84050 115.80452 17.36275 110 15 1 18.06978 18.14850 120.52022 18.06978 110 15 1 18.77682 19.45650 125.23593 18.77682 110 15 1 - 19.48385 20.76450 129.95164 19.48385 110 0 1 - 20.19088 22.07250 134.66734 20.19088 110 0 1 + 19.48385 20.76450 129.95164 19.48385 110 15 1 + 20.19088 22.07250 134.66734 20.19088 110 15 1 20.89791 23.38050 139.38305 20.89791 110 15 1 20.89791 23.38050 134.35690 20.89791 110 16 1 - 21.60495 24.68850 138.90256 21.60495 110 0 1 + 21.60495 24.68850 138.90256 21.60495 110 16 1 22.31198 25.99650 143.44822 22.31198 110 16 1 23.01901 27.30450 147.99388 23.01901 110 16 1 23.72605 28.61250 152.53953 23.72605 110 16 1 @@ -7905,12 +8038,12 @@ Status character 36.24772 69.16050 154.57703 36.24772 110 23 1 36.95495 70.63200 157.59302 36.95495 110 23 1 37.66219 72.10350 160.60900 37.66219 110 23 1 - 38.36943 73.57500 163.62499 38.36943 110 0 1 + 38.36943 73.57500 163.62499 38.36943 110 23 1 39.07667 75.04650 166.64098 39.07667 110 23 1 39.78391 76.51800 169.65697 39.78391 110 23 1 39.78391 76.51800 167.31476 39.78391 110 24 1 40.49114 77.98950 170.28911 40.49114 110 24 1 - 41.19838 79.46100 173.26346 41.19838 110 0 1 + 41.19838 79.46100 173.26346 41.19838 110 24 1 41.90562 80.93250 176.23781 41.90562 110 24 1 42.61286 82.40400 179.21216 42.61286 110 24 1 43.32009 83.87550 182.18651 43.32009 110 24 1 @@ -8183,26 +8316,26 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00001 0.00000 110 9 1 - 1.27500 0.00000 14.62976 1.27500 110 0 1 - 2.55000 0.00000 29.25951 2.55000 110 0 1 + 1.27500 0.00000 14.62976 1.27500 110 9 1 + 2.55000 0.00000 29.25951 2.55000 110 9 1 3.82500 0.00000 43.88927 3.82500 110 9 1 - 5.10000 0.00000 58.51903 5.10000 110 0 1 + 5.10000 0.00000 58.51903 5.10000 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 6.37500 0.00000 73.14879 6.37500 110 9 1 - 6.85747 1.03005 78.68486 6.85747 110 0 1 + 6.85747 1.03005 78.68486 6.85747 110 9 1 7.33995 2.06010 84.22093 7.33995 110 9 1 - 7.82242 3.09015 89.75700 7.82242 110 0 1 + 7.82242 3.09015 89.75700 7.82242 110 9 1 8.30490 4.12020 95.29307 8.30490 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 8.78738 5.15025 100.82915 8.78738 110 9 1 - 9.26985 6.18030 106.36522 9.26985 110 0 1 + 9.26985 6.18030 106.36522 9.26985 110 9 1 9.75233 7.21035 111.90129 9.75233 110 9 1 10.23480 8.24040 117.43736 10.23480 110 9 1 10.71728 9.27045 122.97344 10.71728 110 9 1 11.19975 10.30050 128.50951 11.19975 110 9 1 13.82758 10.30050 97.58321 13.82758 110 14 1 14.53462 11.60850 102.57285 14.53462 110 14 1 - 15.24165 12.91650 107.56248 15.24165 110 0 1 + 15.24165 12.91650 107.56248 15.24165 110 14 1 15.94868 14.22450 112.55212 15.94868 110 14 1 16.65572 15.53250 117.54175 16.65572 110 14 1 17.36275 16.84050 122.53138 17.36275 110 14 1 @@ -8210,24 +8343,24 @@ Status character 18.06978 18.14850 120.52022 18.06978 110 15 1 18.77682 19.45650 125.23593 18.77682 110 15 1 19.48385 20.76450 129.95164 19.48385 110 15 1 - 20.19088 22.07250 134.66734 20.19088 110 0 1 + 20.19088 22.07250 134.66734 20.19088 110 15 1 20.89791 23.38050 139.38305 20.89791 110 15 1 20.89791 23.38050 134.35690 20.89791 110 16 1 - 21.60495 24.68850 138.90256 21.60495 110 0 1 + 21.60495 24.68850 138.90256 21.60495 110 16 1 22.31198 25.99650 143.44822 22.31198 110 16 1 23.01901 27.30450 147.99388 23.01901 110 16 1 23.72605 28.61250 152.53953 23.72605 110 16 1 24.43308 29.92050 157.08519 24.43308 110 16 1 - 18.31345 29.92050 232.76900 18.31345 110 0 1 + 18.31345 29.92050 232.76900 18.31345 110 8 1 18.94211 31.22850 240.75939 18.94211 110 8 1 - 19.57076 32.53650 248.74977 19.57076 110 0 1 + 19.57076 32.53650 248.74977 19.57076 110 8 1 20.19942 33.84450 256.74016 20.19942 110 8 1 20.82807 35.15250 264.73054 20.82807 110 8 1 - 21.45673 36.46050 272.72093 21.45673 110 0 1 + 21.45673 36.46050 272.72093 21.45673 110 8 1 21.45673 36.46050 271.69315 21.45673 110 8 1 - 22.08538 37.76850 279.65343 22.08538 110 0 1 - 22.71404 39.07650 287.61370 22.71404 110 0 1 - 23.34269 40.38450 295.57397 23.34269 110 0 1 + 22.08538 37.76850 279.65343 22.08538 110 8 1 + 22.71404 39.07650 287.61370 22.71404 110 8 1 + 23.34269 40.38450 295.57397 23.34269 110 8 1 23.97135 41.69250 303.53425 23.97135 110 8 1 24.60001 43.00050 311.49452 24.60001 110 8 1 24.60001 43.00050 311.02062 24.60001 110 8 1 @@ -8236,36 +8369,36 @@ Status character 26.48597 46.92450 334.86511 26.48597 110 8 1 27.11463 48.23250 342.81327 27.11463 110 8 1 27.74328 49.54050 350.76143 27.74328 110 8 1 - 29.97975 49.54050 345.43735 29.97975 110 0 1 + 29.97975 49.54050 345.43735 29.97975 110 9 1 30.59242 50.84850 352.49672 30.59242 110 9 1 31.20508 52.15650 359.55608 31.20508 110 9 1 31.81775 53.46450 366.61545 31.81775 110 9 1 - 32.43042 54.77250 373.67481 32.43042 110 0 1 + 32.43042 54.77250 373.67481 32.43042 110 9 1 33.04308 56.08050 380.73417 33.04308 110 9 1 33.04308 56.08050 380.15157 33.04308 110 9 1 33.65575 57.38850 387.20013 33.65575 110 9 1 - 34.26842 58.69650 394.24869 34.26842 110 0 1 + 34.26842 58.69650 394.24869 34.26842 110 9 1 34.88108 60.00450 401.29725 34.88108 110 9 1 - 35.49375 61.31250 408.34581 35.49375 110 0 1 - 36.10642 62.62050 415.39437 36.10642 110 0 1 - 36.10642 62.62050 415.03125 36.10642 110 0 1 - 36.71908 63.92850 422.07365 36.71908 110 0 1 + 35.49375 61.31250 408.34581 35.49375 110 9 1 + 36.10642 62.62050 415.39437 36.10642 110 9 1 + 36.10642 62.62050 415.03125 36.10642 110 9 1 + 36.71908 63.92850 422.07365 36.71908 110 9 1 37.33175 65.23650 429.11605 37.33175 110 9 1 37.94442 66.54450 436.15845 37.94442 110 9 1 38.55708 67.85250 443.20085 38.55708 110 9 1 39.16975 69.16050 450.24325 39.16975 110 9 1 36.24772 69.16050 457.46177 36.24772 110 8 1 - 36.95495 70.63200 466.38741 36.95495 110 0 1 + 36.95495 70.63200 466.38741 36.95495 110 8 1 37.66219 72.10350 475.31305 37.66219 110 8 1 - 38.36943 73.57500 484.23869 38.36943 110 0 1 + 38.36943 73.57500 484.23869 38.36943 110 8 1 39.07667 75.04650 493.16433 39.07667 110 8 1 39.78391 76.51800 502.08998 39.78391 110 8 1 39.78391 76.51800 502.08894 39.78391 110 8 1 - 40.49114 77.98950 511.01456 40.49114 110 0 1 + 40.49114 77.98950 511.01456 40.49114 110 8 1 41.19838 79.46100 519.94019 41.19838 110 8 1 - 41.90562 80.93250 528.86581 41.90562 110 0 1 - 42.61286 82.40400 537.79143 42.61286 110 0 1 - 43.32009 83.87550 546.71706 43.32009 110 0 1 + 41.90562 80.93250 528.86581 41.90562 110 8 1 + 42.61286 82.40400 537.79143 42.61286 110 8 1 + 43.32009 83.87550 546.71706 43.32009 110 8 1 [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -9558,7 +9691,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=6 +IterationCount=3 PartialFactorSet=10 [ANCHOR DATA] [TABLE] @@ -9989,20 +10122,20 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00001 0.00000 110 0 1 - 0.58634 0.00000 13.66428 1.08272 110 0 1 - 1.17268 0.00000 27.32857 2.16544 110 0 1 - 1.75902 0.00000 40.99285 3.24816 110 0 1 - 2.34537 0.00000 54.65714 4.33088 110 0 1 - 2.93171 0.00000 68.32142 5.41359 110 0 1 - 2.93171 0.00000 68.32142 5.41359 110 0 1 - 3.51805 0.00000 81.98571 6.49631 110 0 1 - 4.10439 0.00000 95.64999 7.57903 110 0 1 - 4.69073 0.00000 109.31428 8.66175 110 0 1 - 5.27707 0.00000 122.97856 9.74447 110 0 1 - 5.86341 0.00000 136.64285 10.82719 110 0 1 - 5.86341 0.00000 136.64285 10.82719 110 0 1 - 6.44976 0.00000 150.30713 11.90991 110 0 1 + 0.00000 0.00000 0.00001 0.00000 1 0 A + 0.58634 0.00000 13.66428 1.08272 1 0 A + 1.17268 0.00000 27.32857 2.16544 1 0 A + 1.75902 0.00000 40.99285 3.24816 1 0 A + 2.34537 0.00000 54.65714 4.33088 1 0 A + 2.93171 0.00000 68.32142 5.41359 1 0 A + 2.93171 0.00000 68.32142 5.41359 1 0 A + 3.51805 0.00000 81.98571 6.49631 1 0 A + 4.10439 0.00000 95.64999 7.57903 1 0 A + 4.69073 0.00000 109.31428 8.66175 1 0 A + 5.27707 0.00000 122.97856 9.74447 1 0 A + 5.86341 0.00000 136.64285 10.82719 1 0 A + 5.86341 0.00000 136.64285 10.82719 1 0 A + 6.44976 0.00000 150.30713 11.90991 1 0 A 7.03610 0.00000 163.97142 12.99263 1 0 A 7.62244 0.00000 177.63570 14.07535 1 0 A 8.20878 0.00000 191.29999 15.15806 1 0 A @@ -10100,15 +10233,15 @@ Status character 59.59749 69.16050 333.16547 70.39501 1 0 A 60.19625 70.63200 336.51268 71.10224 1 0 A 60.79500 72.10350 339.85989 71.80948 1 0 A - 61.39376 73.57500 343.20711 72.51672 110 0 1 - 61.99252 75.04650 346.55432 73.22396 110 0 1 - 62.59128 76.51800 349.90153 73.93119 110 0 1 - 62.96203 76.51800 345.83815 73.93119 110 0 1 - 63.56434 77.98950 349.14649 74.63843 110 0 1 - 64.16664 79.46100 352.45483 75.34567 110 0 1 - 64.76895 80.93250 355.76317 76.05291 110 0 1 - 65.37125 82.40400 359.07152 76.76014 110 0 1 - 65.97356 83.87550 362.37986 77.46738 110 0 1 + 61.39376 73.57500 343.20711 72.51672 1 0 A + 61.99252 75.04650 346.55432 73.22396 1 0 A + 62.59128 76.51800 349.90153 73.93119 1 0 A + 62.96203 76.51800 345.83815 73.93119 1 0 A + 63.56434 77.98950 349.14649 74.63843 1 0 A + 64.16664 79.46100 352.45483 75.34567 1 0 A + 64.76895 80.93250 355.76317 76.05291 1 0 A + 65.37125 82.40400 359.07152 76.76014 1 0 A + 65.97356 83.87550 362.37986 77.46738 1 0 A [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -10377,7 +10510,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 402 100 P + 0.00000 0.00000 0.00000 0.00000 330 100 3 4.45161 0.00000 7.87080 0.83085 220 57 2 6.41849 0.00000 15.72720 1.66019 110 41 1 7.00943 0.00000 23.55598 2.48660 110 30 1 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shi index d1208e87..a82d28d7 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects21.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:06:59 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects21.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:53:44 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects21.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1134,6 +1134,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1143,6 +1144,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1152,6 +1154,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=2 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1161,6 +1164,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=3 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1170,6 +1174,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1193,7 +1198,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1204,8 +1209,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=3 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1216,7 +1223,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1235,6 +1242,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1262,6 +1270,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1289,6 +1298,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1316,6 +1326,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1343,6 +1354,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1370,6 +1382,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1397,6 +1410,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1424,6 +1438,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1434,7 +1449,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1443,14 +1458,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.100 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1460,8 +1532,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1478,6 +1550,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1487,7 +1560,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1505,6 +1634,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1532,6 +1662,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1559,6 +1690,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shd index bcc2adbb..acf9e9e5 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:27 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects24.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:12 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects24.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1623,6 +1623,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1632,6 +1633,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1641,6 +1643,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1650,6 +1653,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1659,6 +1663,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1668,6 +1673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1677,6 +1683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1686,6 +1693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1695,6 +1703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1704,6 +1713,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1713,6 +1723,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1722,6 +1733,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1731,6 +1743,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1740,6 +1753,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1749,6 +1763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1758,6 +1773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1767,6 +1783,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1790,7 +1807,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1801,8 +1818,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1813,7 +1832,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1832,6 +1851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1859,6 +1879,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1886,6 +1907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1913,6 +1935,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1940,6 +1963,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1967,6 +1991,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1994,6 +2019,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2021,6 +2047,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2031,7 +2058,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2046,8 +2129,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2057,8 +2141,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2075,6 +2159,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2084,7 +2169,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2102,6 +2243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2129,6 +2271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2156,6 +2299,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -3645,7 +3789,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=4 [SUPPORT DATA] [TABLE] @@ -3957,7 +4101,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 110 100 - 73.11355 0.00000 78.77930 12.53092 110 93 - 73.11355 0.00000 78.77930 12.53092 110 93 - 75.07832 10.00000 109.67314 17.44500 110 68 - @@ -4193,7 +4337,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -4222,15 +4366,15 @@ Status character 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A 80.97618 97.50000 719.00255 84.82259 1 0 A - 86.23692 107.50000 765.71363 90.33322 110 0 - - 53.49045 107.50000 765.90519 87.94555 110 0 - + 86.23692 107.50000 765.71363 90.33322 1 0 A + 53.49045 107.50000 765.90519 87.94555 1 0 A 57.41054 112.50000 788.92452 90.58876 110 0 - 55.34272 112.50000 789.81224 88.52094 110 0 - 63.61284 122.50000 835.33238 93.62277 110 0 - 61.77481 122.50000 836.75561 91.78473 110 0 - 65.49432 127.50000 859.30835 94.25857 110 0 - - 106.50249 127.50000 861.49693 106.50249 110 12 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 106.50249 127.50000 861.49693 106.50249 1 12 A + 113.41833 140.00000 917.43904 113.41833 1 12 A 186.40882 140.00000 465.64209 195.72555 110 0 - 196.47295 152.80000 488.53741 205.34925 110 0 - 195.46678 152.80000 300.83047 204.34308 110 0 - @@ -5021,7 +5165,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=4 [SUPPORT DATA] [TABLE] @@ -5334,7 +5478,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 95.18336 19.52500 95.18336 8.89092 110 100 - @@ -5558,7 +5702,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -5571,18 +5715,18 @@ Status character 44.28917 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P - 97.67384 30.00000 351.03305 97.67384 110 28 - - 101.11648 32.10000 363.40567 101.11648 110 0 - - 84.72525 32.10000 430.52133 84.72525 110 20 - - 92.82454 38.00000 471.67689 92.82454 110 0 - - 90.78715 38.00000 562.24842 90.78715 110 16 - - 108.44915 51.62500 671.62988 108.44915 110 0 - - 93.73389 51.62500 745.85644 93.73389 110 0 - - 107.98219 65.25000 859.23256 107.98219 110 13 - - 92.08259 65.25000 776.26337 92.08259 110 12 - - 103.52368 78.87500 872.71267 103.52368 110 0 - - 89.40557 78.87500 1084.71625 89.40557 110 8 - + 159.00473 30.00000 159.00473 159.00473 1 100 A + 97.67384 30.00000 351.03305 97.67384 1 28 A + 101.11648 32.10000 363.40567 101.11648 1 28 A + 84.72525 32.10000 430.52133 84.72525 1 20 A + 92.82454 38.00000 471.67689 92.82454 1 20 A + 90.78715 38.00000 562.24842 90.78715 1 16 A + 108.44915 51.62500 671.62988 108.44915 1 16 A + 93.73389 51.62500 745.85644 93.73389 1 13 A + 107.98219 65.25000 859.23256 107.98219 1 13 A + 92.08259 65.25000 776.26337 92.08259 1 12 A + 103.52368 78.87500 872.71267 103.52368 1 12 A + 89.40557 78.87500 1084.71625 89.40557 1 8 A 98.84237 92.50000 1199.20859 98.84237 1 8 A 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A @@ -10471,7 +10615,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=13 CalculationStatus=0 -IterationCount=16 +IterationCount=3 PartialFactorSet=4 [SUPPORT DATA] [TABLE] @@ -10804,13 +10948,13 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00004 0.00000 0.00004 0.00000 202 100 P + 0.00004 0.00000 0.00004 0.00000 110 100 - 208.79599 14.95714 479.96571 11.96571 110 44 - - 167.96571 14.95714 167.96571 11.96571 202 100 P + 167.96571 14.95714 167.96571 11.96571 110 100 - 224.03020 29.91429 335.93143 23.93143 110 67 - - 211.13143 29.91429 211.13143 23.93143 202 100 P + 211.13143 29.91429 211.13143 23.93143 110 100 - 236.52137 44.87143 316.69714 35.89714 110 75 - - 236.46857 44.87143 236.46857 35.89714 202 100 P + 236.46857 44.87143 236.46857 35.89714 110 100 - 247.32461 59.82857 315.29143 47.86286 110 78 - 247.32461 59.82857 255.86286 47.86286 110 97 - 257.23375 74.78571 319.82857 59.82857 110 80 - @@ -11002,7 +11146,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 19.64904 0.00000 58.21902 16.69760 110 34 - @@ -11015,7 +11159,7 @@ Status character 44.81438 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P + 159.00473 30.00000 159.00473 159.00473 1 100 A 100.58189 30.00000 351.03305 97.67384 110 29 - 106.89208 32.10000 363.40567 101.11648 110 29 - 90.50085 32.10000 430.52133 84.72525 110 21 - @@ -11039,7 +11183,7 @@ Status character 101.75147 122.50000 836.75561 91.78473 110 12 - 83.55698 127.50000 859.30835 94.25857 110 0 - 141.96833 127.50000 861.49693 106.50249 110 16 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 113.41833 140.00000 917.43904 113.41833 1 12 A 29.04056 140.00000 465.64209 195.72555 110 0 - 25.43317 152.80000 488.53741 205.34925 110 0 - 24.42700 152.80000 300.83047 204.34308 110 0 - @@ -13086,9 +13230,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -341.80462 0.00000 0 'Dalle toiture 18.85' - 7 14.24000 -428.16410 0.00000 0 'Dalle raide 14.24' - 21 1.72000 -6904.71324 0.00000 0 'Dalle radier 1,72' + 2 18.85000 -341.05520 0.00000 0 'Dalle toiture 18.85' + 7 14.24000 -428.29809 0.00000 0 'Dalle raide 14.24' + 21 1.72000 -6904.71207 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -13118,7 +13262,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 28.96 : Percentage mobilized resistance left 100.00 : Percentage mobilized resistance right - 6140.44 : Effective left + 6140.45 : Effective left 1558.10 : Effective right 3645.00 : Water pressure left 548.10 : Water pressure right @@ -13146,62 +13290,62 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.09931 -0.34542 2.30526 - -29.80576 -52.48024 2.94110 - -29.93297 289.20217 2.94110 - 108.43410 263.66448 3.21795 - 108.19725 264.67216 3.21795 - 410.11101 178.48771 3.92385 - 410.40683 179.14790 3.92385 - 553.17098 103.77936 4.36229 - 553.13302 103.68642 4.36229 - 612.36208 29.15429 4.66336 - 612.36008 29.22604 4.66336 - 601.38911 -55.93085 4.87582 - 601.39779 372.27720 4.87582 - 687.54676 345.40034 4.91816 - 687.54663 345.41050 4.91816 - 757.79800 323.38126 4.94911 - 757.77936 323.51659 4.94911 - 928.34381 252.32284 5.00061 - 928.00927 253.48944 5.00061 - 1130.16595 28.46502 4.87438 - 1130.43967 29.73721 4.87438 - 964.72064 -289.66422 4.36289 - 964.84652 -289.56519 4.36289 - 295.67584 -709.56767 3.52816 - 296.25864 -711.54917 3.52816 - -1014.41999 -1227.50235 2.60860 - -1015.03228 -1229.48125 2.60860 - -1682.12389 -1440.59418 2.33348 - -1681.82519 -1441.98800 2.33348 - -3343.30228 -1886.13869 2.05909 - -3343.57607 -1887.73184 2.05909 - -4341.45435 -2104.47862 2.13822 - -4341.08356 -2106.45976 2.13822 - -6664.56815 -2540.54132 2.96434 - -6664.93777 -2542.53175 2.96434 - -7989.98349 -2756.84851 3.82092 - -7989.82420 -2757.83606 3.82092 --11786.70758 -3305.01777 7.76282 --11789.43213 -3297.78091 7.76282 --16314.63295 -3765.92883 15.42649 + -0.01178 0.04097 2.30509 + -29.47343 -52.09505 2.94110 + -29.48045 289.15149 2.94110 + 108.86131 263.61396 3.21801 + 108.61533 264.54887 3.21801 + 410.36345 178.36575 3.92395 + 410.65929 179.02604 3.92395 + 553.30219 103.65868 4.36237 + 553.26423 103.56575 4.36237 + 612.38711 29.03363 4.66341 + 612.38511 29.10537 4.66341 + 601.30795 -56.05152 4.87582 + 601.31663 372.29053 4.87582 + 687.46880 345.41365 4.91815 + 687.46866 345.42381 4.91815 + 757.72282 323.39451 4.94909 + 757.70418 323.52985 4.94909 + 928.27638 252.33578 5.00057 + 927.94184 253.50236 5.00057 + 1130.11530 28.47659 4.87431 + 1130.38902 29.74874 4.87431 + 964.68444 -289.65458 4.36281 + 964.81033 -289.55558 4.36281 + 295.65133 -709.56013 3.52807 + 296.23413 -711.54165 3.52807 + -1014.43562 -1227.49681 2.60852 + -1015.04791 -1229.47572 2.60852 + -1682.13693 -1440.58932 2.33340 + -1681.83823 -1441.98314 2.33340 + -3343.31109 -1886.13504 2.05903 + -3343.58487 -1887.72819 2.05903 + -4341.46146 -2104.47550 2.13816 + -4341.09067 -2106.45664 2.13816 + -6664.57261 -2540.53909 2.96429 + -6664.94223 -2542.52952 2.96429 + -7989.98693 -2756.84664 3.82088 + -7989.82763 -2757.83419 3.82088 +-11786.70910 -3305.01651 7.76280 +-11789.43366 -3297.77964 7.76280 +-16314.63296 -3765.92768 15.42649 -16312.07318 3146.54857 15.42649 --12657.42647 2696.51118 27.35592 --12657.30373 2695.96457 27.35592 - -8993.69053 2208.54695 46.47026 - -8993.83389 2208.07504 46.47026 - -6034.39941 1754.84124 69.40573 - -6034.52026 1755.07590 69.40573 - -3727.07846 1336.02592 94.91129 - -3726.92916 1336.18447 94.91129 - -2020.46463 951.31832 122.01118 - -2020.52556 951.24054 122.01118 - -864.26255 600.55821 149.98328 - -864.08021 600.15577 149.98328 - -207.37510 283.65726 178.33776 - -207.37371 282.76345 178.33776 - 0.16781 0.44877 206.79561 +-12657.42647 2696.51118 27.35593 +-12657.30373 2695.96457 27.35593 + -8993.69053 2208.54695 46.47030 + -8993.83389 2208.07504 46.47030 + -6034.39941 1754.84124 69.40579 + -6034.52026 1755.07590 69.40579 + -3727.07846 1336.02592 94.91137 + -3726.92916 1336.18447 94.91137 + -2020.46463 951.31832 122.01128 + -2020.52556 951.24054 122.01128 + -864.26255 600.55821 149.98341 + -864.08021 600.15577 149.98341 + -207.37510 283.65726 178.33790 + -207.37371 282.76345 178.33790 + 0.16781 0.44877 206.79578 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -13427,45 +13571,45 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 43.20374 0.00000 183.91800 35.93100 110 23 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 72.99539 0.00000 337.93800 66.02100 110 22 - - 67.56544 0.00000 337.93800 66.02100 110 20 - - 73.17163 10.00000 365.11800 71.33100 110 20 - + 43.20585 0.00000 183.91800 35.93100 110 23 - + 47.46550 0.00000 242.95900 47.46550 1 20 A + 47.46550 0.00000 242.95900 47.46550 1 20 A + 54.68460 0.00000 268.62900 52.48050 110 20 - + 54.68460 0.00000 268.62900 52.48050 110 20 - + 72.99409 0.00000 337.93800 66.02100 110 22 - + 67.56414 0.00000 337.93800 66.02100 110 20 - + 73.17058 10.00000 365.11800 71.33100 110 20 - 68.65879 10.00000 346.97460 74.95800 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 75.20599 27.60000 376.12020 81.50520 1 0 A 81.50520 27.60000 376.12020 81.50520 110 22 - - 84.86869 30.00000 380.09460 82.39800 110 22 - - 71.05949 30.00000 535.58700 66.45000 110 13 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 334.97963 97.50000 807.61200 100.20000 110 41 - - 331.13322 97.50000 807.61200 100.20000 110 41 - - 352.16817 107.50000 847.91200 105.20000 110 42 - - 321.80937 107.50000 847.91200 105.20000 110 38 - - 325.17777 112.50000 868.06200 107.70000 110 37 - - 321.48586 112.50000 868.06200 107.70000 110 37 - - 311.67726 122.50000 908.36200 112.70000 110 34 - - 310.94922 122.50000 908.36200 112.70000 110 34 - - 296.31782 127.50000 928.51200 115.20000 110 32 - - 339.42835 127.50000 928.51200 115.20000 110 37 - - 268.56238 140.00000 978.88700 121.45000 110 27 - - 241.95121 140.00000 703.63050 206.46500 110 34 - + 84.86880 30.00000 380.09460 82.39800 110 22 - + 71.05968 30.00000 535.58700 66.45000 110 13 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 334.98093 97.50000 807.61200 100.20000 110 41 - + 331.13452 97.50000 807.61200 100.20000 110 41 - + 352.16928 107.50000 847.91200 105.20000 110 42 - + 321.81048 107.50000 847.91200 105.20000 110 38 - + 325.17877 112.50000 868.06200 107.70000 110 37 - + 321.48687 112.50000 868.06200 107.70000 110 37 - + 311.67803 122.50000 908.36200 112.70000 110 34 - + 310.95000 122.50000 908.36200 112.70000 110 34 - + 296.31847 127.50000 928.51200 115.20000 110 32 - + 339.42900 127.50000 928.51200 115.20000 110 37 - + 268.56271 140.00000 978.88700 121.45000 110 27 - + 241.95141 140.00000 703.63050 206.46500 110 34 - 196.72991 152.80000 731.89290 215.16900 1 0 A 196.72991 152.80000 731.89290 215.16900 1 0 A 205.22991 165.30000 759.49290 223.66900 1 0 A @@ -13495,9 +13639,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 234.225 'Remblais LT' + 20.00 234.224 'Remblais LT' 16.00 146.566 'Argile et limon LT' - 14.00 2706.195 'Sable et gravier LT' + 14.00 2706.207 'Sable et gravier LT' 3.00 3053.449 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -13537,7 +13681,7 @@ CalculationStatus -2599.59156 1159.54597 16.09856 0.00000 75.21755 14 12 4 1.000 0 0 -2460.10086 -1159.13552 19.16485 0.00000 82.81327 15 12 4 1.000 0 0 -7031.95527 -2140.26512 88.92476 0.00000 100.00000 16 12 4 1.000 0 0 --16314.63295 -3765.92883 206.79561 0.00000 100.00000 17 12 4 1.000 0 0 +-16314.63296 -3765.92768 206.79578 0.00000 100.00000 17 12 4 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -13587,9 +13731,9 @@ SupportName 16 12 7 4 1.000 77.22369 0.00000 0 0 'Dalle toiture 18.85' 16 12 7 4 1.000 -1288.95994 0.00000 0 0 'Dalle raide 14.24' 16 12 7 4 1.000 -3783.24053 0.00000 0 0 'Dalle radier 1,72' - 17 12 7 4 1.000 -341.80462 0.00000 0 0 'Dalle toiture 18.85' - 17 12 7 4 1.000 -428.16410 0.00000 0 0 'Dalle raide 14.24' - 17 12 7 4 1.000 -6904.71324 0.00000 0 0 'Dalle radier 1,72' + 17 12 7 4 1.000 -341.05520 0.00000 0 0 'Dalle toiture 18.85' + 17 12 7 4 1.000 -428.29809 0.00000 0 0 'Dalle raide 14.24' + 17 12 7 4 1.000 -6904.71207 0.00000 0 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORTS RESUME] @@ -13643,9 +13787,9 @@ Force [END OF TABLE] [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=-16314.63295 -MaximumShearForce=-3765.92883 -MaximumDisplacement=206.79561 +MaximumMoment=-16314.63296 +MaximumShearForce=-3765.92768 +MaximumDisplacement=206.79578 MaximumPercentageMobilisedMoment=46.63826 MaximumPercentageMobilisedResistance=100.00000 VerticalBalanceSummary=0 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shi index 60a9311b..63a54747 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects24.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:23 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects24.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:08 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects24.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1622,6 +1622,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1631,6 +1632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1640,6 +1642,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1649,6 +1652,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1658,6 +1662,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1667,6 +1672,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1676,6 +1682,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1685,6 +1692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1694,6 +1702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1703,6 +1712,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1712,6 +1722,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1721,6 +1732,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1730,6 +1742,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1739,6 +1752,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1748,6 +1762,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1757,6 +1772,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1766,6 +1782,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1789,7 +1806,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1800,8 +1817,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1812,7 +1831,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1831,6 +1850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1858,6 +1878,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1885,6 +1906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1912,6 +1934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1939,6 +1962,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1966,6 +1990,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1993,6 +2018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2020,6 +2046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2030,7 +2057,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2045,8 +2128,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2056,8 +2140,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2074,6 +2158,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2083,7 +2168,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2101,6 +2242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2128,6 +2270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2155,6 +2298,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shd index 7b61bd39..bca8f040 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:33 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects25.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:16 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects25.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1623,6 +1623,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1632,6 +1633,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1641,6 +1643,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1650,6 +1653,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1659,6 +1663,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1668,6 +1673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1677,6 +1683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1686,6 +1693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1695,6 +1703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1704,6 +1713,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1713,6 +1723,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1722,6 +1733,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1731,6 +1743,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1740,6 +1753,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1749,6 +1763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1758,6 +1773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1767,6 +1783,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1790,7 +1807,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1801,8 +1818,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1813,7 +1832,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1832,6 +1851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1859,6 +1879,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1886,6 +1907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1913,6 +1935,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1940,6 +1963,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1967,6 +1991,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1994,6 +2019,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2021,6 +2047,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2031,7 +2058,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2046,8 +2129,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2057,8 +2141,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2075,6 +2159,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2084,7 +2169,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2102,6 +2243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2129,6 +2271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2156,6 +2299,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -3475,7 +3619,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=4 [SUPPORT DATA] [TABLE] @@ -3746,7 +3890,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 110 100 - 72.96588 0.00000 78.77930 12.53092 110 93 - 72.96588 0.00000 78.77930 12.53092 110 93 - 74.95602 10.00000 109.67314 17.44500 110 68 - @@ -3939,7 +4083,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 12.99782 0.00000 12.99782 12.99782 1 100 A 12.01685 0.00000 42.18160 12.01685 1 28 A 16.62453 0.00000 58.35550 16.62453 1 28 A @@ -3962,21 +4106,21 @@ Status character 93.52319 51.62500 746.01054 93.52319 1 13 A 107.73946 65.25000 859.41009 107.73946 1 13 A 92.70604 65.25000 776.72632 92.70604 1 12 A - 104.22460 78.87500 873.23315 104.22460 110 0 - - 88.73176 78.87500 1084.49923 88.73176 110 0 - - 98.09744 92.50000 1198.96866 98.09744 110 0 - - 90.31193 92.50000 868.86301 90.31193 110 0 - - 93.39715 97.50000 898.54500 93.39715 110 10 - - 80.51478 97.50000 719.80217 85.34567 110 0 - - 85.74555 107.50000 766.56520 90.89028 110 0 - - 53.16224 107.50000 766.56520 87.46046 110 0 - + 104.22460 78.87500 873.23315 104.22460 1 12 A + 88.73176 78.87500 1084.49923 88.73176 1 8 A + 98.09744 92.50000 1198.96866 98.09744 1 8 A + 90.31193 92.50000 868.86301 90.31193 1 10 A + 93.39715 97.50000 898.54500 93.39715 1 10 A + 80.51478 97.50000 719.80217 85.34567 1 0 A + 85.74555 107.50000 766.56520 90.89028 1 0 A + 53.16224 107.50000 766.56520 87.46046 1 0 A 56.90226 112.50000 789.60436 90.08909 110 0 - 55.13581 112.50000 789.60436 88.32264 110 0 - 63.37096 122.50000 835.11252 93.41303 110 0 - 61.50270 122.50000 836.98078 91.54477 110 0 - 65.20466 127.50000 859.53959 94.01214 110 0 - - 107.44245 127.50000 861.45821 107.44245 110 0 - - 114.41932 140.00000 917.39780 114.41932 110 12 - + 107.44245 127.50000 861.45821 107.44245 1 12 A + 114.41932 140.00000 917.39780 114.41932 1 12 A 186.80858 140.00000 465.85011 196.14741 110 0 - 196.89209 152.80000 488.75565 205.79185 110 0 - 194.74843 152.80000 300.11312 203.64819 110 0 - @@ -4689,7 +4833,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=4 [SUPPORT DATA] [TABLE] @@ -4967,7 +5111,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 95.18336 19.52500 95.18336 8.89092 110 100 - @@ -5148,7 +5292,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 12.99782 0.00000 12.99782 12.99782 1 100 A 12.01685 0.00000 42.18160 12.01685 1 28 A 16.62453 0.00000 58.35550 16.62453 1 28 A @@ -5161,16 +5305,16 @@ Status character 44.18059 18.80000 51.31836 51.31836 110 0 - 49.51265 27.60000 56.94926 56.94926 110 0 - 154.46510 27.60000 154.46510 154.46510 1 100 A - 158.92443 30.00000 158.92443 158.92443 202 100 P - 97.92313 30.00000 350.75746 97.92313 110 28 - - 101.37456 32.10000 363.12036 101.37456 110 28 - - 84.75578 32.10000 430.42642 84.75578 110 20 - - 92.85799 38.00000 471.57291 92.85799 110 0 - - 91.03724 38.00000 562.61015 91.03724 110 16 - - 108.74789 51.62500 672.06198 108.74789 110 0 - - 93.52319 51.62500 746.01054 93.52319 110 13 - - 107.73946 65.25000 859.41009 107.73946 110 13 - - 92.70604 65.25000 776.72632 92.70604 110 12 - + 158.92443 30.00000 158.92443 158.92443 1 100 A + 97.92313 30.00000 350.75746 97.92313 1 28 A + 101.37456 32.10000 363.12036 101.37456 1 28 A + 84.75578 32.10000 430.42642 84.75578 1 20 A + 92.85799 38.00000 471.57291 92.85799 1 20 A + 91.03724 38.00000 562.61015 91.03724 1 16 A + 108.74789 51.62500 672.06198 108.74789 1 16 A + 93.52319 51.62500 746.01054 93.52319 1 13 A + 107.73946 65.25000 859.41009 107.73946 1 13 A + 92.70604 65.25000 776.72632 92.70604 1 12 A 104.22460 78.87500 873.23315 104.22460 1 12 A 88.73176 78.87500 1084.49923 88.73176 1 8 A 98.09744 92.50000 1198.96866 98.09744 1 8 A @@ -9887,7 +10031,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00004 0.00000 0.00004 0.00000 202 100 P + 0.00004 0.00000 0.00004 0.00000 110 100 - 208.86645 14.95714 479.96571 11.96571 110 44 - 167.96571 14.95714 167.96571 11.96571 110 100 - 224.06723 29.91429 335.93143 23.93143 110 67 - @@ -10042,7 +10186,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 12.99782 0.00000 12.99782 12.99782 1 100 A 12.01685 0.00000 42.18160 12.01685 1 28 A 19.57669 0.00000 58.35550 16.62453 110 34 - @@ -10055,7 +10199,7 @@ Status character 44.70592 18.80000 51.31836 51.31836 110 0 - 49.51265 27.60000 56.94926 56.94926 110 0 - 154.46510 27.60000 154.46510 154.46510 1 100 A - 158.92443 30.00000 158.92443 158.92443 202 100 P + 158.92443 30.00000 158.92443 158.92443 1 100 A 100.83109 30.00000 350.75746 97.92313 110 29 - 107.14999 32.10000 363.12036 101.37456 110 30 - 90.53120 32.10000 430.42642 84.75578 110 21 - @@ -10079,13 +10223,13 @@ Status character 101.59914 122.50000 836.98078 91.54477 110 12 - 83.39826 127.50000 859.53959 94.01214 110 0 - 142.87533 127.50000 861.45821 107.44245 110 17 - - 114.41932 140.00000 917.39780 114.41932 110 12 - + 114.41932 140.00000 917.39780 114.41932 1 12 A 29.37258 140.00000 465.85011 196.14741 110 0 - 25.78250 152.80000 488.75565 205.79185 110 0 - 23.63883 152.80000 300.11312 203.64819 110 0 - 23.15053 165.30000 313.69804 212.86653 110 0 - 0.00000 165.30000 123.23852 123.23852 1 0 A - 0.00000 180.25714 129.57157 129.57157 110 0 - + 0.00000 180.25714 129.57157 129.57157 1 0 A 26.90470 180.25714 478.23687 223.80543 110 0 - 34.54406 195.21429 501.47381 234.67986 110 0 - 34.54406 195.21429 461.94878 234.67986 110 0 - @@ -11204,8 +11348,8 @@ Status character [END OF COLUMN INDICATION] [DATA] 33.69457 0.00000 203.74200 32.67000 110 17 - - 43.42250 0.00000 270.79850 43.42250 110 0 - - 43.42250 0.00000 270.79850 43.42250 110 0 - + 43.42250 0.00000 270.79850 43.42250 110 16 - + 43.42250 0.00000 270.79850 43.42250 110 16 - 52.99096 0.00000 299.95350 48.09750 110 18 - 52.99096 0.00000 299.95350 48.09750 110 18 - 76.15270 0.00000 378.67200 60.72000 110 20 - @@ -11772,8 +11916,8 @@ Status character [END OF COLUMN INDICATION] [DATA] 39.16090 0.00000 182.70000 35.93100 110 21 - - 47.46550 0.00000 241.35000 47.46550 110 0 - - 47.46550 0.00000 241.35000 47.46550 110 0 - + 47.46550 0.00000 241.35000 47.46550 110 20 - + 47.46550 0.00000 241.35000 47.46550 110 20 - 56.42449 0.00000 266.85000 52.48050 110 21 - 56.42449 0.00000 266.85000 52.48050 110 21 - 78.46749 0.00000 335.70000 66.02100 110 23 - @@ -11783,7 +11927,7 @@ Status character 69.82501 18.80000 359.61300 78.23160 110 0 - 69.82501 18.80000 358.35120 78.23160 110 0 - 74.06860 27.60000 373.34640 81.50520 110 0 - - 81.50520 27.60000 373.34640 81.50520 110 0 - + 81.50520 27.60000 373.34640 81.50520 110 22 - 83.29721 30.00000 377.43600 82.39800 110 22 - 68.44023 30.00000 552.86400 66.45000 110 12 - 71.43520 32.10000 561.60000 67.50000 110 13 - diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shi index df70e196..42763dde 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects25.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:30 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects25.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:13 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects25.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1622,6 +1622,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1631,6 +1632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1640,6 +1642,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1649,6 +1652,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1658,6 +1662,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1667,6 +1672,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1676,6 +1682,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1685,6 +1692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1694,6 +1702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1703,6 +1712,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1712,6 +1722,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1721,6 +1732,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1730,6 +1742,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1739,6 +1752,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1748,6 +1762,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1757,6 +1772,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1766,6 +1782,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1789,7 +1806,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1800,8 +1817,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1812,7 +1831,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1831,6 +1850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1858,6 +1878,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1885,6 +1906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1912,6 +1934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1939,6 +1962,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1966,6 +1990,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1993,6 +2018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2020,6 +2046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2030,7 +2057,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2045,8 +2128,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2056,8 +2140,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2074,6 +2158,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2083,7 +2168,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2101,6 +2242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2128,6 +2270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2155,6 +2298,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shd index 715ddd8c..87e09e47 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:08:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects26.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:47 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects26.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1623,6 +1623,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1632,6 +1633,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1641,6 +1643,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1650,6 +1653,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1659,6 +1663,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1668,6 +1673,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1677,6 +1683,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1686,6 +1693,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1695,6 +1703,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1704,6 +1713,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1713,6 +1723,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1722,6 +1733,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1731,6 +1743,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1740,6 +1753,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1749,6 +1763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1758,6 +1773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1767,6 +1783,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1790,7 +1807,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1801,8 +1818,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=0.950 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1813,7 +1832,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1832,6 +1851,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1859,6 +1879,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1886,6 +1907,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1913,6 +1935,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1940,6 +1963,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1967,6 +1991,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1994,6 +2019,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2021,6 +2047,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2031,7 +2058,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2046,8 +2129,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2057,8 +2141,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2075,6 +2159,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2084,7 +2169,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2102,6 +2243,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2129,6 +2271,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2156,6 +2299,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2228,6 +2372,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -2246,7 +2391,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 + -1 10 1.250 1.175 1.300 0.00 10.00 0.50 0.00 0.05 0.25 0.25 0.000 1.100 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.500 0.900 1.350 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -3680,7 +3825,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -3992,7 +4137,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 110 100 - 73.11355 0.00000 78.77930 12.53092 110 93 - 73.11355 0.00000 78.77930 12.53092 110 93 - 75.07832 10.00000 109.67314 17.44500 110 68 - @@ -4228,7 +4373,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -4257,15 +4402,15 @@ Status character 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A 80.97618 97.50000 719.00255 84.82259 1 0 A - 86.23692 107.50000 765.71363 90.33322 110 0 - - 53.49045 107.50000 765.90519 87.94555 110 0 - + 86.23692 107.50000 765.71363 90.33322 1 0 A + 53.49045 107.50000 765.90519 87.94555 1 0 A 57.41054 112.50000 788.92452 90.58876 110 0 - 55.34272 112.50000 789.81224 88.52094 110 0 - 63.61284 122.50000 835.33238 93.62277 110 0 - 61.77481 122.50000 836.75561 91.78473 110 0 - 65.49432 127.50000 859.30835 94.25857 110 0 - - 106.50249 127.50000 861.49693 106.50249 110 12 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 106.50249 127.50000 861.49693 106.50249 1 12 A + 113.41833 140.00000 917.43904 113.41833 1 12 A 186.40882 140.00000 465.64209 195.72555 110 0 - 196.47295 152.80000 488.53741 205.34925 110 0 - 195.46678 152.80000 300.83047 204.34308 110 0 - @@ -5056,7 +5201,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -5369,7 +5514,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 95.18336 19.52500 95.18336 8.89092 110 100 - @@ -5593,7 +5738,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -5606,18 +5751,18 @@ Status character 44.28917 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P - 97.67384 30.00000 351.03305 97.67384 110 28 - - 101.11648 32.10000 363.40567 101.11648 110 0 - - 84.72525 32.10000 430.52133 84.72525 110 20 - - 92.82454 38.00000 471.67689 92.82454 110 0 - - 90.78715 38.00000 562.24842 90.78715 110 16 - - 108.44915 51.62500 671.62988 108.44915 110 0 - - 93.73389 51.62500 745.85644 93.73389 110 0 - - 107.98219 65.25000 859.23256 107.98219 110 13 - - 92.08259 65.25000 776.26337 92.08259 110 12 - - 103.52368 78.87500 872.71267 103.52368 110 0 - - 89.40557 78.87500 1084.71625 89.40557 110 8 - + 159.00473 30.00000 159.00473 159.00473 1 100 A + 97.67384 30.00000 351.03305 97.67384 1 28 A + 101.11648 32.10000 363.40567 101.11648 1 28 A + 84.72525 32.10000 430.52133 84.72525 1 20 A + 92.82454 38.00000 471.67689 92.82454 1 20 A + 90.78715 38.00000 562.24842 90.78715 1 16 A + 108.44915 51.62500 671.62988 108.44915 1 16 A + 93.73389 51.62500 745.85644 93.73389 1 13 A + 107.98219 65.25000 859.23256 107.98219 1 13 A + 92.08259 65.25000 776.26337 92.08259 1 12 A + 103.52368 78.87500 872.71267 103.52368 1 12 A + 89.40557 78.87500 1084.71625 89.40557 1 8 A 98.84237 92.50000 1199.20859 98.84237 1 8 A 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A @@ -10506,7 +10651,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=13 CalculationStatus=0 -IterationCount=16 +IterationCount=3 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -10839,13 +10984,13 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00004 0.00000 0.00004 0.00000 202 100 P + 0.00004 0.00000 0.00004 0.00000 110 100 - 208.79599 14.95714 479.96571 11.96571 110 44 - - 167.96571 14.95714 167.96571 11.96571 202 100 P + 167.96571 14.95714 167.96571 11.96571 110 100 - 224.03020 29.91429 335.93143 23.93143 110 67 - - 211.13143 29.91429 211.13143 23.93143 202 100 P + 211.13143 29.91429 211.13143 23.93143 110 100 - 236.52137 44.87143 316.69714 35.89714 110 75 - - 236.46857 44.87143 236.46857 35.89714 202 100 P + 236.46857 44.87143 236.46857 35.89714 110 100 - 247.32461 59.82857 315.29143 47.86286 110 78 - 247.32461 59.82857 255.86286 47.86286 110 97 - 257.23375 74.78571 319.82857 59.82857 110 80 - @@ -11037,7 +11182,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 19.64904 0.00000 58.21902 16.69760 110 34 - @@ -11050,7 +11195,7 @@ Status character 44.81438 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P + 159.00473 30.00000 159.00473 159.00473 1 100 A 100.58189 30.00000 351.03305 97.67384 110 29 - 106.89208 32.10000 363.40567 101.11648 110 29 - 90.50085 32.10000 430.52133 84.72525 110 21 - @@ -11074,7 +11219,7 @@ Status character 101.75147 122.50000 836.75561 91.78473 110 12 - 83.55698 127.50000 859.30835 94.25857 110 0 - 141.96833 127.50000 861.49693 106.50249 110 16 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 113.41833 140.00000 917.43904 113.41833 1 12 A 29.04056 140.00000 465.64209 195.72555 110 0 - 25.43317 152.80000 488.53741 205.34925 110 0 - 24.42700 152.80000 300.83047 204.34308 110 0 - @@ -13121,9 +13266,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -341.80462 0.00000 0 'Dalle toiture 18.85' - 7 14.24000 -428.16410 0.00000 0 'Dalle raide 14.24' - 21 1.72000 -6904.71324 0.00000 0 'Dalle radier 1,72' + 2 18.85000 -341.05520 0.00000 0 'Dalle toiture 18.85' + 7 14.24000 -428.29809 0.00000 0 'Dalle raide 14.24' + 21 1.72000 -6904.71207 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -13153,7 +13298,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 28.96 : Percentage mobilized resistance left 100.00 : Percentage mobilized resistance right - 6140.44 : Effective left + 6140.45 : Effective left 1558.10 : Effective right 3645.00 : Water pressure left 548.10 : Water pressure right @@ -13181,62 +13326,62 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.09931 -0.34542 2.30526 - -29.80576 -52.48024 2.94110 - -29.93297 289.20217 2.94110 - 108.43410 263.66448 3.21795 - 108.19725 264.67216 3.21795 - 410.11101 178.48771 3.92385 - 410.40683 179.14790 3.92385 - 553.17098 103.77936 4.36229 - 553.13302 103.68642 4.36229 - 612.36208 29.15429 4.66336 - 612.36008 29.22604 4.66336 - 601.38911 -55.93085 4.87582 - 601.39779 372.27720 4.87582 - 687.54676 345.40034 4.91816 - 687.54663 345.41050 4.91816 - 757.79800 323.38126 4.94911 - 757.77936 323.51659 4.94911 - 928.34381 252.32284 5.00061 - 928.00927 253.48944 5.00061 - 1130.16595 28.46502 4.87438 - 1130.43967 29.73721 4.87438 - 964.72064 -289.66422 4.36289 - 964.84652 -289.56519 4.36289 - 295.67584 -709.56767 3.52816 - 296.25864 -711.54917 3.52816 - -1014.41999 -1227.50235 2.60860 - -1015.03228 -1229.48125 2.60860 - -1682.12389 -1440.59418 2.33348 - -1681.82519 -1441.98800 2.33348 - -3343.30228 -1886.13869 2.05909 - -3343.57607 -1887.73184 2.05909 - -4341.45435 -2104.47862 2.13822 - -4341.08356 -2106.45976 2.13822 - -6664.56815 -2540.54132 2.96434 - -6664.93777 -2542.53175 2.96434 - -7989.98349 -2756.84851 3.82092 - -7989.82420 -2757.83606 3.82092 --11786.70758 -3305.01777 7.76282 --11789.43213 -3297.78091 7.76282 --16314.63295 -3765.92883 15.42649 + -0.01178 0.04097 2.30509 + -29.47343 -52.09505 2.94110 + -29.48045 289.15149 2.94110 + 108.86131 263.61396 3.21801 + 108.61533 264.54887 3.21801 + 410.36345 178.36575 3.92395 + 410.65929 179.02604 3.92395 + 553.30219 103.65868 4.36237 + 553.26423 103.56575 4.36237 + 612.38711 29.03363 4.66341 + 612.38511 29.10537 4.66341 + 601.30795 -56.05152 4.87582 + 601.31663 372.29053 4.87582 + 687.46880 345.41365 4.91815 + 687.46866 345.42381 4.91815 + 757.72282 323.39451 4.94909 + 757.70418 323.52985 4.94909 + 928.27638 252.33578 5.00057 + 927.94184 253.50236 5.00057 + 1130.11530 28.47659 4.87431 + 1130.38902 29.74874 4.87431 + 964.68444 -289.65458 4.36281 + 964.81033 -289.55558 4.36281 + 295.65133 -709.56013 3.52807 + 296.23413 -711.54165 3.52807 + -1014.43562 -1227.49681 2.60852 + -1015.04791 -1229.47572 2.60852 + -1682.13693 -1440.58932 2.33340 + -1681.83823 -1441.98314 2.33340 + -3343.31109 -1886.13504 2.05903 + -3343.58487 -1887.72819 2.05903 + -4341.46146 -2104.47550 2.13816 + -4341.09067 -2106.45664 2.13816 + -6664.57261 -2540.53909 2.96429 + -6664.94223 -2542.52952 2.96429 + -7989.98693 -2756.84664 3.82088 + -7989.82763 -2757.83419 3.82088 +-11786.70910 -3305.01651 7.76280 +-11789.43366 -3297.77964 7.76280 +-16314.63296 -3765.92768 15.42649 -16312.07318 3146.54857 15.42649 --12657.42647 2696.51118 27.35592 --12657.30373 2695.96457 27.35592 - -8993.69053 2208.54695 46.47026 - -8993.83389 2208.07504 46.47026 - -6034.39941 1754.84124 69.40573 - -6034.52026 1755.07590 69.40573 - -3727.07846 1336.02592 94.91129 - -3726.92916 1336.18447 94.91129 - -2020.46463 951.31832 122.01118 - -2020.52556 951.24054 122.01118 - -864.26255 600.55821 149.98328 - -864.08021 600.15577 149.98328 - -207.37510 283.65726 178.33776 - -207.37371 282.76345 178.33776 - 0.16781 0.44877 206.79561 +-12657.42647 2696.51118 27.35593 +-12657.30373 2695.96457 27.35593 + -8993.69053 2208.54695 46.47030 + -8993.83389 2208.07504 46.47030 + -6034.39941 1754.84124 69.40579 + -6034.52026 1755.07590 69.40579 + -3727.07846 1336.02592 94.91137 + -3726.92916 1336.18447 94.91137 + -2020.46463 951.31832 122.01128 + -2020.52556 951.24054 122.01128 + -864.26255 600.55821 149.98341 + -864.08021 600.15577 149.98341 + -207.37510 283.65726 178.33790 + -207.37371 282.76345 178.33790 + 0.16781 0.44877 206.79578 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -13462,45 +13607,45 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 43.20374 0.00000 183.91800 35.93100 110 23 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 72.99539 0.00000 337.93800 66.02100 110 22 - - 67.56544 0.00000 337.93800 66.02100 110 20 - - 73.17163 10.00000 365.11800 71.33100 110 20 - + 43.20585 0.00000 183.91800 35.93100 110 23 - + 47.46550 0.00000 242.95900 47.46550 1 20 A + 47.46550 0.00000 242.95900 47.46550 1 20 A + 54.68460 0.00000 268.62900 52.48050 110 20 - + 54.68460 0.00000 268.62900 52.48050 110 20 - + 72.99409 0.00000 337.93800 66.02100 110 22 - + 67.56414 0.00000 337.93800 66.02100 110 20 - + 73.17058 10.00000 365.11800 71.33100 110 20 - 68.65879 10.00000 346.97460 74.95800 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 75.20599 27.60000 376.12020 81.50520 1 0 A 81.50520 27.60000 376.12020 81.50520 110 22 - - 84.86869 30.00000 380.09460 82.39800 110 22 - - 71.05949 30.00000 535.58700 66.45000 110 13 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 334.97963 97.50000 807.61200 100.20000 110 41 - - 331.13322 97.50000 807.61200 100.20000 110 41 - - 352.16817 107.50000 847.91200 105.20000 110 42 - - 321.80937 107.50000 847.91200 105.20000 110 38 - - 325.17777 112.50000 868.06200 107.70000 110 37 - - 321.48586 112.50000 868.06200 107.70000 110 37 - - 311.67726 122.50000 908.36200 112.70000 110 34 - - 310.94922 122.50000 908.36200 112.70000 110 34 - - 296.31782 127.50000 928.51200 115.20000 110 32 - - 339.42835 127.50000 928.51200 115.20000 110 37 - - 268.56238 140.00000 978.88700 121.45000 110 27 - - 241.95121 140.00000 703.63050 206.46500 110 34 - + 84.86880 30.00000 380.09460 82.39800 110 22 - + 71.05968 30.00000 535.58700 66.45000 110 13 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 334.98093 97.50000 807.61200 100.20000 110 41 - + 331.13452 97.50000 807.61200 100.20000 110 41 - + 352.16928 107.50000 847.91200 105.20000 110 42 - + 321.81048 107.50000 847.91200 105.20000 110 38 - + 325.17877 112.50000 868.06200 107.70000 110 37 - + 321.48687 112.50000 868.06200 107.70000 110 37 - + 311.67803 122.50000 908.36200 112.70000 110 34 - + 310.95000 122.50000 908.36200 112.70000 110 34 - + 296.31847 127.50000 928.51200 115.20000 110 32 - + 339.42900 127.50000 928.51200 115.20000 110 37 - + 268.56271 140.00000 978.88700 121.45000 110 27 - + 241.95141 140.00000 703.63050 206.46500 110 34 - 196.72991 152.80000 731.89290 215.16900 1 0 A 196.72991 152.80000 731.89290 215.16900 1 0 A 205.22991 165.30000 759.49290 223.66900 1 0 A @@ -13530,9 +13675,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 234.225 'Remblais LT' + 20.00 234.224 'Remblais LT' 16.00 146.566 'Argile et limon LT' - 14.00 2706.195 'Sable et gravier LT' + 14.00 2706.207 'Sable et gravier LT' 3.00 3053.449 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -14970,7 +15115,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -15282,7 +15427,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 110 100 - 73.11355 0.00000 78.77930 12.53092 110 93 - 73.11355 0.00000 78.77930 12.53092 110 93 - 75.07832 10.00000 109.67314 17.44500 110 68 - @@ -15518,7 +15663,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -15547,15 +15692,15 @@ Status character 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A 80.97618 97.50000 719.00255 84.82259 1 0 A - 86.23692 107.50000 765.71363 90.33322 110 0 - - 53.49045 107.50000 765.90519 87.94555 110 0 - + 86.23692 107.50000 765.71363 90.33322 1 0 A + 53.49045 107.50000 765.90519 87.94555 1 0 A 57.41054 112.50000 788.92452 90.58876 110 0 - 55.34272 112.50000 789.81224 88.52094 110 0 - 63.61284 122.50000 835.33238 93.62277 110 0 - 61.77481 122.50000 836.75561 91.78473 110 0 - 65.49432 127.50000 859.30835 94.25857 110 0 - - 106.50249 127.50000 861.49693 106.50249 110 12 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 106.50249 127.50000 861.49693 106.50249 1 12 A + 113.41833 140.00000 917.43904 113.41833 1 12 A 186.40882 140.00000 465.64209 195.72555 110 0 - 196.47295 152.80000 488.53741 205.34925 110 0 - 195.46678 152.80000 300.83047 204.34308 110 0 - @@ -16346,7 +16491,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -16659,7 +16804,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 28.76219 5.90000 28.76219 2.68663 110 100 - 95.18336 19.52500 95.18336 8.89092 110 100 - @@ -16883,7 +17028,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 16.69760 0.00000 58.21902 16.69760 1 29 A @@ -16896,18 +17041,18 @@ Status character 44.28917 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P - 97.67384 30.00000 351.03305 97.67384 110 28 - - 101.11648 32.10000 363.40567 101.11648 110 0 - - 84.72525 32.10000 430.52133 84.72525 110 20 - - 92.82454 38.00000 471.67689 92.82454 110 0 - - 90.78715 38.00000 562.24842 90.78715 110 16 - - 108.44915 51.62500 671.62988 108.44915 110 0 - - 93.73389 51.62500 745.85644 93.73389 110 0 - - 107.98219 65.25000 859.23256 107.98219 110 13 - - 92.08259 65.25000 776.26337 92.08259 110 12 - - 103.52368 78.87500 872.71267 103.52368 110 0 - - 89.40557 78.87500 1084.71625 89.40557 110 8 - + 159.00473 30.00000 159.00473 159.00473 1 100 A + 97.67384 30.00000 351.03305 97.67384 1 28 A + 101.11648 32.10000 363.40567 101.11648 1 28 A + 84.72525 32.10000 430.52133 84.72525 1 20 A + 92.82454 38.00000 471.67689 92.82454 1 20 A + 90.78715 38.00000 562.24842 90.78715 1 16 A + 108.44915 51.62500 671.62988 108.44915 1 16 A + 93.73389 51.62500 745.85644 93.73389 1 13 A + 107.98219 65.25000 859.23256 107.98219 1 13 A + 92.08259 65.25000 776.26337 92.08259 1 12 A + 103.52368 78.87500 872.71267 103.52368 1 12 A + 89.40557 78.87500 1084.71625 89.40557 1 8 A 98.84237 92.50000 1199.20859 98.84237 1 8 A 90.73715 92.50000 868.70716 90.73715 1 10 A 93.83690 97.50000 898.38383 93.83690 1 10 A @@ -21796,7 +21941,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=13 CalculationStatus=0 -IterationCount=16 +IterationCount=3 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -22129,13 +22274,13 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00004 0.00000 0.00004 0.00000 202 100 P + 0.00004 0.00000 0.00004 0.00000 110 100 - 208.79599 14.95714 479.96571 11.96571 110 44 - - 167.96571 14.95714 167.96571 11.96571 202 100 P + 167.96571 14.95714 167.96571 11.96571 110 100 - 224.03020 29.91429 335.93143 23.93143 110 67 - - 211.13143 29.91429 211.13143 23.93143 202 100 P + 211.13143 29.91429 211.13143 23.93143 110 100 - 236.52137 44.87143 316.69714 35.89714 110 75 - - 236.46857 44.87143 236.46857 35.89714 202 100 P + 236.46857 44.87143 236.46857 35.89714 110 100 - 247.32461 59.82857 315.29143 47.86286 110 78 - 247.32461 59.82857 255.86286 47.86286 110 97 - 257.23375 74.78571 319.82857 59.82857 110 80 - @@ -22327,7 +22472,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 13.07519 0.00000 13.07519 13.07519 1 100 A 12.06966 0.00000 42.08294 12.06966 1 29 A 19.64904 0.00000 58.21902 16.69760 110 34 - @@ -22340,7 +22485,7 @@ Status character 44.81438 18.80000 51.43629 51.43629 110 0 - 49.63523 27.60000 57.08013 57.08013 110 0 - 154.54315 27.60000 154.54315 154.54315 1 100 A - 159.00473 30.00000 159.00473 159.00473 202 100 P + 159.00473 30.00000 159.00473 159.00473 1 100 A 100.58189 30.00000 351.03305 97.67384 110 29 - 106.89208 32.10000 363.40567 101.11648 110 29 - 90.50085 32.10000 430.52133 84.72525 110 21 - @@ -22364,7 +22509,7 @@ Status character 101.75147 122.50000 836.75561 91.78473 110 12 - 83.55698 127.50000 859.30835 94.25857 110 0 - 141.96833 127.50000 861.49693 106.50249 110 16 - - 113.41833 140.00000 917.43904 113.41833 110 12 - + 113.41833 140.00000 917.43904 113.41833 1 12 A 29.04056 140.00000 465.64209 195.72555 110 0 - 25.43317 152.80000 488.53741 205.34925 110 0 - 24.42700 152.80000 300.83047 204.34308 110 0 - @@ -24411,9 +24556,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 -410.16555 0.00000 0 'Dalle toiture 18.85' - 7 14.24000 -513.79692 0.00000 0 'Dalle raide 14.24' - 21 1.72000 -8285.65589 0.00000 0 'Dalle radier 1,72' + 2 18.85000 -409.26624 0.00000 0 'Dalle toiture 18.85' + 7 14.24000 -513.95771 0.00000 0 'Dalle raide 14.24' + 21 1.72000 -8285.65449 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -24443,7 +24588,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 28.96 : Percentage mobilized resistance left 100.00 : Percentage mobilized resistance right - 6140.44 : Effective left + 6140.45 : Effective left 1558.10 : Effective right 3645.00 : Water pressure left 548.10 : Water pressure right @@ -24471,62 +24616,62 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.11917 -0.41451 2.30526 - -35.76692 -62.97628 2.94110 - -35.91957 347.04261 2.94110 - 130.12092 316.39738 3.21795 - 129.83670 317.60659 3.21795 - 492.13321 214.18526 3.92385 - 492.48820 214.97748 3.92385 - 663.80518 124.53524 4.36229 - 663.75963 124.42370 4.36229 - 734.83450 34.98515 4.66336 - 734.83210 35.07124 4.66336 - 721.66694 -67.11703 4.87582 - 721.67735 446.73264 4.87582 - 825.05611 414.48040 4.91816 - 825.05595 414.49260 4.91816 - 909.35760 388.05751 4.94911 - 909.33523 388.21991 4.94911 - 1114.01258 302.78740 5.00061 - 1113.61112 304.18732 5.00061 - 1356.19914 34.15803 4.87438 - 1356.52761 35.68465 4.87438 - 1157.66476 -347.59706 4.36289 - 1157.81583 -347.47823 4.36289 - 354.81101 -851.48120 3.52816 - 355.51037 -853.85901 3.52816 - -1217.30398 -1473.00282 2.60860 - -1218.03873 -1475.37750 2.60860 - -2018.54867 -1728.71301 2.33348 - -2018.19023 -1730.38560 2.33348 - -4011.96274 -2263.36643 2.05909 - -4012.29129 -2265.27821 2.05909 - -5209.74522 -2525.37435 2.13822 - -5209.30027 -2527.75171 2.13822 - -7997.48178 -3048.64958 2.96434 - -7997.92533 -3051.03810 2.96434 - -9587.98019 -3308.21821 3.82092 - -9587.78904 -3309.40328 3.82092 --14144.04909 -3966.02132 7.76282 --14147.31856 -3957.33710 7.76282 --19577.55955 -4519.11459 15.42649 + -0.01413 0.04916 2.30509 + -35.36811 -62.51407 2.94110 + -35.37653 346.98178 2.94110 + 130.63358 316.33675 3.21801 + 130.33839 317.45864 3.21801 + 492.43614 214.03890 3.92395 + 492.79115 214.83124 3.92395 + 663.96263 124.39041 4.36237 + 663.91708 124.27890 4.36237 + 734.86453 34.84035 4.66341 + 734.86213 34.92644 4.66341 + 721.56954 -67.26183 4.87582 + 721.57995 446.74863 4.87582 + 824.96255 414.49638 4.91815 + 824.96239 414.50857 4.91815 + 909.26739 388.07342 4.94909 + 909.24502 388.23582 4.94909 + 1113.93166 302.80294 5.00057 + 1113.53021 304.20283 5.00057 + 1356.13836 34.17191 4.87431 + 1356.46682 35.69849 4.87431 + 1157.62133 -347.58550 4.36281 + 1157.77239 -347.46670 4.36281 + 354.78160 -851.47215 3.52807 + 355.48095 -853.84998 3.52807 + -1217.32274 -1472.99617 2.60852 + -1218.05750 -1475.37086 2.60852 + -2018.56432 -1728.70718 2.33340 + -2018.20587 -1730.37977 2.33340 + -4011.97330 -2263.36205 2.05903 + -4012.30185 -2265.27383 2.05903 + -5209.75375 -2525.37060 2.13816 + -5209.30881 -2527.74797 2.13816 + -7997.48713 -3048.64691 2.96429 + -7997.93068 -3051.03543 2.96429 + -9587.98431 -3308.21597 3.82088 + -9587.79316 -3309.40103 3.82088 +-14144.05092 -3966.01982 7.76280 +-14147.32040 -3957.33556 7.76280 +-19577.55955 -4519.11322 15.42649 -19574.48782 3775.85828 15.42649 --15188.91176 3235.81341 27.35592 --15188.76448 3235.15748 27.35592 --10792.42864 2650.25633 46.47026 --10792.60067 2649.69005 46.47026 - -7241.27930 2105.80949 69.40573 - -7241.42431 2106.09107 69.40573 - -4472.49415 1603.23110 94.91129 - -4472.31499 1603.42136 94.91129 - -2424.55756 1141.58198 122.01118 - -2424.63068 1141.48865 122.01118 - -1037.11506 720.66985 149.98328 - -1036.89626 720.18692 149.98328 - -248.85012 340.38871 178.33776 - -248.84845 339.31614 178.33776 - 0.20137 0.53852 206.79561 +-15188.91176 3235.81341 27.35593 +-15188.76448 3235.15748 27.35593 +-10792.42864 2650.25633 46.47030 +-10792.60067 2649.69005 46.47030 + -7241.27930 2105.80949 69.40579 + -7241.42431 2106.09107 69.40579 + -4472.49415 1603.23110 94.91137 + -4472.31499 1603.42136 94.91137 + -2424.55756 1141.58198 122.01128 + -2424.63068 1141.48865 122.01128 + -1037.11506 720.66985 149.98341 + -1036.89626 720.18692 149.98341 + -248.85012 340.38871 178.33790 + -248.84845 339.31614 178.33790 + 0.20137 0.53852 206.79578 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -24752,45 +24897,45 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 43.20374 0.00000 183.91800 35.93100 110 23 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 47.46550 0.00000 242.95900 47.46550 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 54.68526 0.00000 268.62900 52.48050 110 20 - - 72.99539 0.00000 337.93800 66.02100 110 22 - - 67.56544 0.00000 337.93800 66.02100 110 20 - - 73.17163 10.00000 365.11800 71.33100 110 20 - + 43.20585 0.00000 183.91800 35.93100 110 23 - + 47.46550 0.00000 242.95900 47.46550 1 20 A + 47.46550 0.00000 242.95900 47.46550 1 20 A + 54.68460 0.00000 268.62900 52.48050 110 20 - + 54.68460 0.00000 268.62900 52.48050 110 20 - + 72.99409 0.00000 337.93800 66.02100 110 22 - + 67.56414 0.00000 337.93800 66.02100 110 20 - + 73.17058 10.00000 365.11800 71.33100 110 20 - 68.65879 10.00000 346.97460 74.95800 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 71.93239 18.80000 361.54740 78.23160 1 0 A 75.20599 27.60000 376.12020 81.50520 1 0 A 81.50520 27.60000 376.12020 81.50520 110 22 - - 84.86869 30.00000 380.09460 82.39800 110 22 - - 71.05949 30.00000 535.58700 66.45000 110 13 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 76.64282 32.10000 544.05000 67.50000 110 14 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 94.59194 38.00000 567.82700 70.45000 110 17 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 146.09412 51.62500 622.73575 77.26250 110 23 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 205.87701 65.25000 677.64450 84.07500 110 30 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 266.51538 78.87500 732.55325 90.88750 110 36 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 319.47208 92.50000 787.46200 97.70000 110 41 - - 334.97963 97.50000 807.61200 100.20000 110 41 - - 331.13322 97.50000 807.61200 100.20000 110 41 - - 352.16817 107.50000 847.91200 105.20000 110 42 - - 321.80937 107.50000 847.91200 105.20000 110 38 - - 325.17777 112.50000 868.06200 107.70000 110 37 - - 321.48586 112.50000 868.06200 107.70000 110 37 - - 311.67726 122.50000 908.36200 112.70000 110 34 - - 310.94922 122.50000 908.36200 112.70000 110 34 - - 296.31782 127.50000 928.51200 115.20000 110 32 - - 339.42835 127.50000 928.51200 115.20000 110 37 - - 268.56238 140.00000 978.88700 121.45000 110 27 - - 241.95121 140.00000 703.63050 206.46500 110 34 - + 84.86880 30.00000 380.09460 82.39800 110 22 - + 71.05968 30.00000 535.58700 66.45000 110 13 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 76.64316 32.10000 544.05000 67.50000 110 14 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 94.59265 38.00000 567.82700 70.45000 110 17 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 146.09540 51.62500 622.73575 77.26250 110 23 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 205.87853 65.25000 677.64450 84.07500 110 30 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 266.51691 78.87500 732.55325 90.88750 110 36 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 319.47347 92.50000 787.46200 97.70000 110 41 - + 334.98093 97.50000 807.61200 100.20000 110 41 - + 331.13452 97.50000 807.61200 100.20000 110 41 - + 352.16928 107.50000 847.91200 105.20000 110 42 - + 321.81048 107.50000 847.91200 105.20000 110 38 - + 325.17877 112.50000 868.06200 107.70000 110 37 - + 321.48687 112.50000 868.06200 107.70000 110 37 - + 311.67803 122.50000 908.36200 112.70000 110 34 - + 310.95000 122.50000 908.36200 112.70000 110 34 - + 296.31847 127.50000 928.51200 115.20000 110 32 - + 339.42900 127.50000 928.51200 115.20000 110 37 - + 268.56271 140.00000 978.88700 121.45000 110 27 - + 241.95141 140.00000 703.63050 206.46500 110 34 - 196.72991 152.80000 731.89290 215.16900 1 0 A 196.72991 152.80000 731.89290 215.16900 1 0 A 205.22991 165.30000 759.49290 223.66900 1 0 A @@ -24820,9 +24965,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 234.225 'Remblais LT' + 20.00 234.224 'Remblais LT' 16.00 146.566 'Argile et limon LT' - 14.00 2706.195 'Sable et gravier LT' + 14.00 2706.207 'Sable et gravier LT' 3.00 3053.449 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -26700,7 +26845,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -27080,7 +27225,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 54.85201 0.00000 54.85201 11.61861 110 100 - 54.85201 0.00000 54.85201 11.61861 110 100 - 57.26839 0.00000 57.26839 12.13045 110 100 - @@ -27385,69 +27530,69 @@ Status character 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A - 20.13700 0.00000 41.75785 20.13700 110 48 - - 19.11135 0.00000 55.64486 19.11135 110 34 - - 20.74734 0.00000 60.40823 20.74734 110 0 - - 19.50748 0.00000 65.39324 19.50748 110 30 - - 29.28885 0.00000 98.18249 29.28885 110 0 - - 28.48104 0.00000 103.29488 28.48104 110 0 - - 28.67553 0.50000 104.00025 28.67553 110 28 - - 28.65236 0.50000 82.75102 28.65236 110 35 - - 29.61050 3.00000 85.51822 29.61050 110 0 - - 29.51259 3.00000 126.56881 37.46664 110 0 - - 32.52619 10.50000 139.49301 41.29244 110 0 - + 20.13700 0.00000 41.75785 20.13700 1 48 A + 19.11135 0.00000 55.64486 19.11135 1 34 A + 20.74734 0.00000 60.40823 20.74734 1 34 A + 19.50748 0.00000 65.39324 19.50748 1 30 A + 29.28885 0.00000 98.18249 29.28885 1 30 A + 28.48104 0.00000 103.29488 28.48104 1 28 A + 28.67553 0.50000 104.00025 28.67553 1 28 A + 28.65236 0.50000 82.75102 28.65236 1 35 A + 29.61050 3.00000 85.51822 29.61050 1 35 A + 29.51259 3.00000 126.56881 37.46664 1 0 A + 32.52619 10.50000 139.49301 41.29244 1 0 A 75.82585 10.50000 82.34866 81.79656 110 0 - 83.97057 19.30000 90.07377 89.46987 110 0 - 64.58102 19.30000 70.08032 70.08032 110 0 - 72.73654 28.10000 77.77110 77.77110 110 0 - - 154.56354 28.10000 154.56354 154.56354 202 100 P - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.11287 32.60000 341.61277 90.11287 110 26 - - 93.76712 35.10000 355.46583 93.76712 110 26 - - 94.37562 35.10000 352.39349 94.37562 110 27 - - 98.04298 37.60000 366.08722 98.04298 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 27 - - 95.87890 38.50000 399.20272 95.87890 110 24 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 0 - - 98.25238 65.75000 523.50997 98.25238 110 0 - - 110.41648 79.37500 588.32291 110.41648 110 0 - - 95.81454 79.37500 950.81689 95.81454 110 10 - - 105.88759 93.00000 1050.77697 105.88759 110 0 - - 97.54498 93.00000 726.27457 97.54498 110 0 - - 100.86397 98.00000 750.98622 100.86397 110 0 - - 98.63166 98.00000 783.99309 98.63166 110 13 - - 98.95406 98.50000 786.55576 98.95406 110 13 - - 98.19139 98.50000 802.58966 98.19139 110 0 - - 99.46739 100.50000 813.01931 99.46739 110 12 - - 97.47114 100.50000 698.81195 97.47114 110 0 - - 99.02632 103.00000 709.96170 99.02632 110 14 - - 82.75845 103.00000 587.17291 95.96789 110 0 - - 85.33756 108.00000 605.47174 98.95866 110 0 - - 63.24295 108.00000 605.32255 97.41530 110 0 - - 65.13601 113.00000 623.44175 100.33125 110 0 - - 63.04358 113.00000 623.47218 99.53412 110 0 - - 63.22590 113.50000 625.27528 99.82197 110 0 - - 61.94815 113.50000 625.30680 99.54398 110 0 - - 62.48315 115.00000 630.70714 100.40367 110 0 - - 61.88801 115.00000 630.74763 100.12987 110 0 - - 62.06435 115.50000 632.54484 100.41517 110 0 - + 154.56354 28.10000 154.56354 154.56354 1 100 A + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.11287 32.60000 341.61277 90.11287 1 26 A + 93.76712 35.10000 355.46583 93.76712 1 26 A + 94.37562 35.10000 352.39349 94.37562 1 27 A + 98.04298 37.60000 366.08722 98.04298 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A + 110.41648 79.37500 588.32291 110.41648 1 19 A + 95.81454 79.37500 950.81689 95.81454 1 10 A + 105.88759 93.00000 1050.77697 105.88759 1 10 A + 97.54498 93.00000 726.27457 97.54498 1 13 A + 100.86397 98.00000 750.98622 100.86397 1 13 A + 98.63166 98.00000 783.99309 98.63166 1 13 A + 98.95406 98.50000 786.55576 98.95406 1 13 A + 98.19139 98.50000 802.58966 98.19139 1 12 A + 99.46739 100.50000 813.01931 99.46739 1 12 A + 97.47114 100.50000 698.81195 97.47114 1 14 A + 99.02632 103.00000 709.96170 99.02632 1 14 A + 82.75845 103.00000 587.17291 95.96789 1 0 A + 85.33756 108.00000 605.47174 98.95866 1 0 A + 63.24295 108.00000 605.32255 97.41530 1 0 A + 65.13601 113.00000 623.44175 100.33125 1 0 A + 63.04358 113.00000 623.47218 99.53412 1 0 A + 63.22590 113.50000 625.27528 99.82197 1 0 A + 61.94815 113.50000 625.30680 99.54398 1 0 A + 62.48315 115.00000 630.70714 100.40367 1 0 A + 61.88801 115.00000 630.74763 100.12987 1 0 A + 62.06435 115.50000 632.54484 100.41517 1 0 A 59.83197 115.50000 632.80257 99.37996 110 0 - 66.17127 123.00000 659.60277 103.58886 110 0 - - 73.78132 123.00000 660.25337 102.09624 110 0 - - 75.76200 128.00000 677.97801 104.83704 110 0 - + 73.78132 123.00000 660.25337 102.09624 1 0 A + 75.76200 128.00000 677.97801 104.83704 1 0 A 67.88863 128.00000 678.35294 104.23204 110 0 - 68.25390 128.50000 680.12003 104.50356 110 0 - - 209.12012 128.50000 680.26871 209.12012 110 31 - - 210.74810 130.00000 685.56455 210.74810 110 0 - - 126.85393 130.00000 685.71928 126.85393 110 0 - - 127.18017 130.50000 687.48281 127.18017 110 0 - - 123.54656 130.50000 688.38689 123.54656 110 18 - - 129.84810 140.50000 723.49833 129.84810 110 0 - + 209.12012 128.50000 680.26871 209.12012 1 31 A + 210.74810 130.00000 685.56455 210.74810 1 31 A + 126.85393 130.00000 685.71928 126.85393 1 18 A + 127.18017 130.50000 687.48281 127.18017 1 18 A + 123.54656 130.50000 688.38689 123.54656 1 18 A + 129.84810 140.50000 723.49833 129.84810 1 18 A 183.56713 140.50000 420.96623 195.73981 110 0 - 193.38905 153.30000 441.57723 205.32346 110 0 - 191.49115 153.30000 203.42555 203.42555 110 0 - @@ -28472,7 +28617,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -28853,15 +28998,15 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 2.50000 0.00000 0.00000 -1 0 - - 0.00000 2.50000 0.00000 0.00000 110 99 - + 0.00000 2.50000 0.00000 0.00000 110 100 - 3.44263 3.40000 3.44263 0.46465 110 100 - 3.44263 3.40000 3.44263 0.46465 110 100 - 55.56023 17.02500 55.56023 7.49892 110 100 - 55.56023 17.02500 55.56023 7.49892 110 100 - - 107.67783 30.65000 107.67783 14.53318 202 100 P - 107.67783 30.65000 107.67783 14.53318 202 100 P - 159.79543 44.27500 159.79543 21.56745 202 100 P - 159.79543 44.27500 159.79543 21.56745 202 100 P + 107.67783 30.65000 107.67783 14.53318 110 100 - + 107.67783 30.65000 107.67783 14.53318 110 100 - + 159.79543 44.27500 159.79543 21.56745 110 100 - + 159.79543 44.27500 159.79543 21.56745 110 100 - 211.00767 57.90000 211.91303 28.60172 110 99 - 211.00767 57.90000 211.91303 28.60172 110 99 - 206.86368 62.90000 231.03876 31.18310 110 90 - @@ -29135,7 +29280,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A 20.13700 0.00000 41.75785 20.13700 1 48 A @@ -29154,18 +29299,18 @@ Status character 59.66822 19.30000 70.08032 70.08032 110 0 - 67.02984 28.10000 77.77110 77.77110 110 0 - 154.56354 28.10000 154.56354 154.56354 1 100 A - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.11287 32.60000 341.61277 90.11287 110 26 - - 93.76712 35.10000 355.46583 93.76712 110 26 - - 94.37562 35.10000 352.39349 94.37562 110 27 - - 98.04298 37.60000 366.08722 98.04298 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 27 - - 95.87890 38.50000 399.20272 95.87890 110 24 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.11287 32.60000 341.61277 90.11287 1 26 A + 93.76712 35.10000 355.46583 93.76712 1 26 A + 94.37562 35.10000 352.39349 94.37562 1 27 A + 98.04298 37.60000 366.08722 98.04298 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A 114.47196 65.75000 721.03501 114.47196 1 16 A 98.25238 65.75000 523.50997 98.25238 1 19 A 110.41648 79.37500 588.32291 110.41648 1 19 A @@ -29491,12 +29636,12 @@ Displacements 2099.78503 -103.72903 21.61811 2099.78525 -103.75332 21.61811 2030.54947 -171.75376 21.82612 - 2030.54784 -171.76681 21.82612 + 2030.54784 -171.76680 21.82612 2021.80361 -177.98816 21.84159 2021.80362 -177.98855 21.84159 1993.74915 -195.94096 21.88231 - 1993.74914 -195.94136 21.88231 - 1983.80719 -201.72227 21.89399 + 1993.74914 -195.94135 21.88231 + 1983.80719 -201.72226 21.89399 1983.81981 -201.78958 21.89399 1803.62496 -275.45435 21.95989 1803.61413 -275.53591 21.95989 @@ -31210,7 +31355,7 @@ Displacements -712.71820 -423.52830 7.06476 -733.94607 -425.59395 7.08677 -733.94589 -425.59679 7.08677 - -841.69518 -436.57978 7.20222 + -841.69519 -436.57978 7.20222 -841.67753 -436.67769 7.20222 -1183.19031 -475.43784 7.61339 -1183.20614 -475.54199 7.61339 @@ -31261,7 +31406,7 @@ Displacements 1582.29786 -142.43255 21.16058 1582.29788 -142.43298 21.16058 1557.69202 -185.50491 21.18237 - 1557.69200 -185.50533 21.18237 + 1557.69200 -185.50534 21.18237 1548.16705 -195.47558 21.18816 1548.18706 -195.55564 21.18816 1262.24969 -369.33678 21.15817 @@ -32089,7 +32234,7 @@ Displacements -1610.72948 917.98895 9.14509 -1395.73874 873.32593 9.39660 -1395.73884 873.32778 9.39660 - -1215.41282 843.78291 9.62919 + -1215.41283 843.78291 9.62919 -1215.41291 843.78761 9.62919 -1008.53652 810.84400 9.91916 -1008.53650 810.84938 9.91916 @@ -32117,7 +32262,7 @@ Displacements 452.42501 649.29431 17.73059 743.12061 513.19567 18.07121 743.11439 513.14587 18.07121 - 768.43175 499.54660 18.10355 + 768.43176 499.54660 18.10355 768.43180 499.54537 18.10355 840.31749 458.93564 18.19837 840.31745 458.93440 18.19837 @@ -32948,7 +33093,7 @@ Displacements -185.59670 -280.53864 6.68272 -522.85090 -316.73210 7.17289 -522.89055 -316.87187 7.17289 - -538.78324 -318.84302 7.19679 + -538.78324 -318.84303 7.19679 -538.78310 -318.84542 7.19679 -619.78353 -329.33456 7.32024 -619.76868 -329.41695 7.32024 @@ -33536,7 +33681,7 @@ Status character 257.85114 130.00000 685.56455 210.74810 110 38 - 173.95697 130.00000 685.71928 126.85393 110 25 - 173.29443 130.50000 687.48281 127.18017 110 25 - - 169.66082 130.50000 688.38689 123.54656 110 25 - + 169.66081 130.50000 688.38689 123.54656 110 25 - 155.64928 140.50000 723.49833 129.84810 110 22 - 66.35737 140.50000 420.96623 195.73981 110 0 - 61.99036 153.30000 441.57723 205.32346 110 0 - @@ -33852,7 +33997,7 @@ Displacements 53.42871 130.31576 16.26837 69.39877 82.59434 16.35120 69.39871 82.59258 16.35120 - 73.13069 66.68440 16.37875 + 73.13069 66.68441 16.37875 73.21983 66.20894 16.37875 34.20374 -170.40539 16.78774 34.12157 654.06351 16.78774 @@ -34676,20 +34821,20 @@ Displacements -1552.98238 -780.49041 6.82393 -2154.23465 -824.31260 7.21256 -2154.25799 -824.47214 7.21256 - -2914.26258 -905.09740 7.96550 + -2914.26259 -905.09740 7.96550 -2914.26147 -905.13474 7.96550 - -3743.71513 -982.20267 9.14509 + -3743.71514 -982.20267 9.14509 -3743.71980 410.91784 9.14509 -3650.42613 366.25482 9.55594 -3650.42626 366.25725 9.55594 - -3576.51856 337.42397 9.94801 - -3576.51867 337.43020 9.94801 + -3576.51857 337.42397 9.94801 + -3576.51868 337.43020 9.94801 -3496.06001 305.98271 10.45353 - -3496.05998 305.98995 10.45353 + -3496.05999 305.98995 10.45353 -3423.67285 272.85013 11.00028 -3423.67264 272.85373 11.00028 -3399.67065 260.49050 11.20704 - -3399.79293 260.84963 11.20704 + -3399.79293 260.84964 11.20704 -3179.09253 55.79218 14.95498 -3178.98353 56.19015 14.95498 -3251.95200 -169.81544 19.82500 @@ -34701,20 +34846,20 @@ Displacements -4330.42652 38.04828 36.19491 -4330.43326 37.99430 36.19491 -4328.77968 28.14216 36.51087 - -4328.77949 28.13842 36.51087 + -4328.77950 28.13842 36.51087 -4327.10748 -11.52746 37.79509 -4327.10720 -11.53863 37.79509 -4336.22069 -61.53831 39.44630 -4336.21320 -61.60949 39.44630 - -4390.55354 -156.38349 42.90242 + -4390.55355 -156.38349 42.90242 -4390.55339 644.48783 42.90242 -4090.00205 557.14309 46.56267 -4090.01017 557.07805 46.56267 -4062.37661 548.25882 46.93953 -4062.37655 548.25706 46.93953 -3982.11941 521.78721 48.08156 - -3982.11947 521.78545 48.08156 - -3956.25159 512.92414 48.46601 + -3982.11947 521.78546 48.08156 + -3956.25159 512.92415 48.46601 -3956.16246 512.44869 48.46601 -3621.73781 378.10246 54.45037 -3621.81998 1178.57136 54.45037 @@ -34736,7 +34881,7 @@ Displacements -653.36894 153.87976 96.12822 -629.45023 114.86071 97.86359 -629.45022 114.86084 97.86359 - -621.42190 112.64646 98.56661 + -621.42190 112.64647 98.56661 -621.33381 112.39909 98.56661 -539.50132 85.44191 112.59271 -539.58372 85.17854 112.59271 @@ -35396,7 +35541,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=13 CalculationStatus=0 -IterationCount=16 +IterationCount=3 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -35525,20 +35670,20 @@ Displacements -1552.98238 -780.49041 6.82393 -2154.23465 -824.31260 7.21256 -2154.25799 -824.47214 7.21256 - -2914.26258 -905.09740 7.96550 + -2914.26259 -905.09740 7.96550 -2914.26147 -905.13474 7.96550 - -3743.71513 -982.20267 9.14509 + -3743.71514 -982.20267 9.14509 -3743.71980 410.91784 9.14509 -3650.42613 366.25482 9.55594 -3650.42626 366.25725 9.55594 - -3576.51856 337.42397 9.94801 - -3576.51867 337.43020 9.94801 + -3576.51857 337.42397 9.94801 + -3576.51868 337.43020 9.94801 -3496.06001 305.98271 10.45353 - -3496.05998 305.98995 10.45353 + -3496.05999 305.98995 10.45353 -3423.67285 272.85013 11.00028 -3423.67264 272.85373 11.00028 -3399.67065 260.49050 11.20704 - -3399.79293 260.84963 11.20704 + -3399.79293 260.84964 11.20704 -3179.09253 55.79218 14.95498 -3178.98353 56.19015 14.95498 -3251.95200 -169.81544 19.82500 @@ -35550,20 +35695,20 @@ Displacements -4330.42652 38.04828 36.19491 -4330.43326 37.99430 36.19491 -4328.77968 28.14216 36.51087 - -4328.77949 28.13842 36.51087 + -4328.77950 28.13842 36.51087 -4327.10748 -11.52746 37.79509 -4327.10720 -11.53863 37.79509 -4336.22069 -61.53831 39.44630 -4336.21320 -61.60949 39.44630 - -4390.55354 -156.38349 42.90242 + -4390.55355 -156.38349 42.90242 -4390.55339 644.48783 42.90242 -4090.00205 557.14309 46.56267 -4090.01017 557.07805 46.56267 -4062.37661 548.25882 46.93953 -4062.37655 548.25706 46.93953 -3982.11941 521.78721 48.08156 - -3982.11947 521.78545 48.08156 - -3956.25159 512.92414 48.46601 + -3982.11947 521.78546 48.08156 + -3956.25159 512.92415 48.46601 -3956.16246 512.44869 48.46601 -3621.73781 378.10246 54.45037 -3621.81998 1178.57136 54.45037 @@ -35585,7 +35730,7 @@ Displacements -653.36894 153.87976 96.12822 -629.45023 114.86071 97.86359 -629.45022 114.86084 97.86359 - -621.42190 112.64646 98.56661 + -621.42190 112.64647 98.56661 -621.33381 112.39909 98.56661 -539.50132 85.44191 112.59271 -539.58372 85.17854 112.59271 @@ -35797,22 +35942,22 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 1.78000 0.00000 0.00000 -1 0 - - 0.00065 1.78000 0.00065 0.00000 202 100 P - 374.97600 2.50000 374.97600 0.57600 202 100 P - 17.76470 2.50000 17.76470 0.57600 202 100 P - 369.18158 16.74286 369.18158 11.97029 202 100 P - 138.80467 16.74286 138.80467 11.97029 202 100 P - 270.93018 30.98571 270.93018 23.36457 202 100 P - 173.86663 30.98571 173.86663 23.36457 202 100 P - 258.65680 45.22857 258.65680 34.75886 202 100 P - 195.59676 45.22857 195.59676 34.75886 202 100 P - 259.71524 59.47143 259.71524 46.15314 202 100 P - 212.78421 59.47143 212.78421 46.15314 202 100 P - 265.31636 73.71429 265.31636 57.54743 202 100 P - 227.88424 73.71429 227.88424 57.54743 202 100 P - 273.00490 87.95714 273.00490 68.94171 202 100 P - 241.85284 87.95714 241.85284 68.94171 202 100 P - 281.82487 102.20000 281.82487 80.33600 202 100 P + 0.00065 1.78000 0.00065 0.00000 110 100 - + 374.97600 2.50000 374.97600 0.57600 110 100 - + 17.76470 2.50000 17.76470 0.57600 110 100 - + 369.18158 16.74286 369.18158 11.97029 110 100 - + 138.80467 16.74286 138.80467 11.97029 110 100 - + 270.93018 30.98571 270.93018 23.36457 110 100 - + 173.86663 30.98571 173.86663 23.36457 110 100 - + 258.65680 45.22857 258.65680 34.75886 110 100 - + 195.59676 45.22857 195.59676 34.75886 110 100 - + 259.71524 59.47143 259.71524 46.15314 110 100 - + 212.78421 59.47143 212.78421 46.15314 110 100 - + 265.31636 73.71429 265.31636 57.54743 110 100 - + 227.88424 73.71429 227.88424 57.54743 110 100 - + 273.00490 87.95714 273.00490 68.94171 110 100 - + 241.85284 87.95714 241.85284 68.94171 110 100 - + 281.82487 102.20000 281.82487 80.33600 110 100 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -36031,7 +36176,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A 26.08253 0.00000 41.75785 20.13700 110 62 - @@ -36050,54 +36195,54 @@ Status character 60.72454 19.30000 70.08032 70.08032 110 0 - 67.02984 28.10000 77.77110 77.77110 110 0 - 154.56354 28.10000 154.56354 154.56354 1 100 A - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.11287 32.60000 341.61277 90.11287 110 26 - - 93.76712 35.10000 355.46583 93.76712 110 26 - - 94.37562 35.10000 352.39349 94.37562 110 27 - - 98.04298 37.60000 366.08722 98.04298 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 27 - - 95.87890 38.50000 399.20272 95.87890 110 24 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 0 - - 98.25238 65.75000 523.50997 98.25238 110 0 - - 110.41648 79.37500 588.32291 110.41648 110 0 - - 95.81454 79.37500 950.81689 95.81454 110 10 - - 105.88759 93.00000 1050.77697 105.88759 110 0 - - 97.54498 93.00000 726.27457 97.54498 110 13 - - 100.86397 98.00000 750.98622 100.86397 110 0 - - 98.63166 98.00000 783.99309 98.63166 110 13 - - 98.95406 98.50000 786.55576 98.95406 110 13 - - 98.19139 98.50000 802.58966 98.19139 110 0 - - 99.46739 100.50000 813.01931 99.46739 110 12 - - 97.47114 100.50000 698.81195 97.47114 110 0 - - 99.02632 103.00000 709.96170 99.02632 110 14 - - 82.75845 103.00000 587.17291 95.96789 110 0 - - 85.33756 108.00000 605.47174 98.95866 110 0 - - 63.24295 108.00000 605.32255 97.41530 110 0 - - 65.13601 113.00000 623.44175 100.33125 110 0 - - 63.04358 113.00000 623.47218 99.53412 110 0 - - 63.22590 113.50000 625.27528 99.82197 110 0 - - 61.94815 113.50000 625.30680 99.54398 110 0 - - 62.48315 115.00000 630.70714 100.40367 110 0 - - 61.88801 115.00000 630.74763 100.12987 110 0 - - 62.06435 115.50000 632.54484 100.41517 110 0 - - 58.63662 115.50000 632.80257 99.37996 110 0 - - 61.11998 123.00000 659.60277 103.58886 110 0 - - 73.78132 123.00000 660.25337 102.09624 110 0 - - 75.76200 128.00000 677.97801 104.83704 110 0 - - 0.00000 128.00000 678.35294 104.23204 110 0 - - 0.00000 128.50000 680.12003 104.50356 110 0 - - 209.12012 128.50000 680.26871 209.12012 110 31 - - 210.74810 130.00000 685.56455 210.74810 110 0 - - 126.85393 130.00000 685.71928 126.85393 110 0 - - 127.18017 130.50000 687.48281 127.18017 110 0 - - 123.54656 130.50000 688.38689 123.54656 110 18 - - 129.84810 140.50000 723.49833 129.84810 110 0 - - 57.28623 140.50000 420.96623 195.73981 110 0 - + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.11287 32.60000 341.61277 90.11287 1 26 A + 93.76712 35.10000 355.46583 93.76712 1 26 A + 94.37562 35.10000 352.39349 94.37562 1 27 A + 98.04298 37.60000 366.08722 98.04298 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A + 110.41648 79.37500 588.32291 110.41648 1 19 A + 95.81454 79.37500 950.81689 95.81454 1 10 A + 105.88759 93.00000 1050.77697 105.88759 1 10 A + 97.54498 93.00000 726.27457 97.54498 1 13 A + 100.86397 98.00000 750.98622 100.86397 1 13 A + 98.63166 98.00000 783.99309 98.63166 1 13 A + 98.95406 98.50000 786.55576 98.95406 1 13 A + 98.19139 98.50000 802.58966 98.19139 1 12 A + 99.46739 100.50000 813.01931 99.46739 1 12 A + 97.47114 100.50000 698.81195 97.47114 1 14 A + 99.02632 103.00000 709.96170 99.02632 1 14 A + 82.75845 103.00000 587.17291 95.96789 1 0 A + 85.33756 108.00000 605.47174 98.95866 1 0 A + 63.24295 108.00000 605.32255 97.41530 1 0 A + 65.13601 113.00000 623.44175 100.33125 1 0 A + 63.04358 113.00000 623.47218 99.53412 1 0 A + 63.22590 113.50000 625.27528 99.82197 1 0 A + 61.94815 113.50000 625.30680 99.54398 1 0 A + 62.48315 115.00000 630.70714 100.40367 1 0 A + 61.88801 115.00000 630.74763 100.12987 1 0 A + 62.06435 115.50000 632.54484 100.41517 1 0 A + 58.63662 115.50000 632.80257 99.37996 1 0 A + 61.11998 123.00000 659.60277 103.58886 1 0 A + 73.78132 123.00000 660.25337 102.09624 1 0 A + 75.76200 128.00000 677.97801 104.83704 1 0 A + 0.00000 128.00000 678.35294 104.23204 1 0 A + 0.00000 128.50000 680.12003 104.50356 1 0 A + 209.12012 128.50000 680.26871 209.12012 1 31 A + 210.74810 130.00000 685.56455 210.74810 1 31 A + 126.85393 130.00000 685.71928 126.85393 1 18 A + 127.18017 130.50000 687.48281 127.18017 1 18 A + 123.54656 130.50000 688.38689 123.54656 1 18 A + 129.84810 140.50000 723.49833 129.84810 1 18 A + 57.28623 140.50000 420.96623 195.73981 1 0 A 60.09103 153.30000 441.57723 205.32346 1 0 A 56.69406 153.30000 203.42555 203.42555 1 0 A 59.24987 165.80000 212.59613 212.59613 1 0 A @@ -36347,7 +36492,7 @@ Displacements -620.43027 -1238.61467 6.29653 -825.20403 -1243.61477 6.26023 -825.09724 -1243.99173 6.26023 - -2262.70069 -1294.08398 6.18179 + -2262.70070 -1294.08398 6.18179 -2262.80750 -1294.46045 6.18179 -2327.60121 -1297.29767 6.18840 -2327.60081 -1297.30416 6.18840 @@ -36368,10 +36513,10 @@ Displacements -5050.88897 1143.12240 11.85761 -5050.88876 1143.12600 11.85761 -4948.56226 1130.76277 12.16216 - -4948.68454 1131.12190 12.16216 + -4948.68454 1131.12191 12.16216 -3542.23818 926.06445 17.61084 -3542.12918 926.46242 17.61084 - -2429.35167 700.45683 24.30879 + -2429.35168 700.45683 24.30879 -2429.22469 700.16200 24.30879 -1635.46066 459.13994 31.86697 -1635.70391 459.18644 31.86697 @@ -36382,13 +36527,13 @@ Displacements -1096.58767 97.41443 43.41902 -1096.58749 97.41069 43.41902 -1081.06102 57.74481 44.67516 - -1081.06073 57.73364 44.67516 + -1081.06074 57.73365 44.67516 -1072.85616 7.73396 46.25680 -1072.84867 7.66278 46.25680 -1092.55288 -87.11122 49.45812 -1092.55272 -87.23990 49.45812 -1157.86525 -174.58464 52.71115 - -1157.87337 -174.64968 52.71115 + -1157.87337 -174.64967 52.71115 -1166.82620 -183.46891 53.03940 -1166.82613 -183.47067 53.03940 -1196.32816 -209.94052 54.02746 @@ -36415,7 +36560,7 @@ Displacements -2484.10589 556.14635 94.54368 -2388.81515 514.49201 96.14765 -2388.81518 514.49139 96.14765 - -2352.37772 497.65326 96.80053 + -2352.37772 497.65327 96.80053 -2352.38665 497.67829 96.80053 -1759.55155 415.15231 110.14908 -1759.39168 414.75344 110.14908 @@ -37156,12 +37301,12 @@ Displacements -765.98855 -1130.67103 6.29584 -2097.81196 -1221.20321 6.26393 -2097.91222 -1221.55660 6.26393 - -2159.10695 -1226.24283 6.27183 - -2159.10657 -1226.24895 6.27183 + -2159.10695 -1226.24284 6.27183 + -2159.10658 -1226.24895 6.27183 -2468.67748 -1250.56047 6.32720 - -2468.63917 -1250.77290 6.32720 - -3433.82294 -1324.61512 6.68297 - -3433.85600 -1324.84709 6.68297 + -2468.63917 -1250.77291 6.32720 + -3433.82295 -1324.61512 6.68297 + -3433.85601 -1324.84710 6.68297 -4649.07984 -1438.93687 7.57374 -4649.07807 -1438.99611 7.57374 -5969.69654 -1564.20387 9.14509 @@ -37170,15 +37315,15 @@ Displacements -5694.96470 1125.34409 9.71557 -5460.86360 1104.05906 10.26561 -5460.86373 1104.06617 10.26561 - -5188.12006 1077.69532 10.97952 + -5188.12007 1077.69532 10.97952 -5188.12004 1077.70352 10.97952 -4922.10837 1050.20011 11.75461 -4922.10813 1050.20417 11.75461 -4828.04676 1040.02383 12.04801 - -4828.18036 1040.41626 12.04801 + -4828.18037 1040.41626 12.04801 -3524.22161 867.89049 17.31207 - -3524.09824 868.31282 17.31207 - -2478.23730 661.09205 23.81804 + -3524.09825 868.31282 17.31207 + -2478.23731 661.09205 23.81804 -2478.10023 660.74978 23.81804 -1738.63497 418.99698 31.20098 -1738.86798 418.93635 31.20098 @@ -37186,7 +37331,7 @@ Displacements -1351.79805 143.83115 39.20324 -1307.01249 34.60030 42.26444 -1307.01982 34.54160 42.26444 - -1305.57149 23.38427 42.57397 + -1305.57150 23.38427 42.57397 -1305.57129 23.38017 42.57397 -1305.38882 -21.66661 43.81827 -1305.38851 -21.67886 43.81827 @@ -37195,18 +37340,18 @@ Displacements -1384.97196 -189.78932 48.57296 -1384.97164 -189.93273 48.57296 -1505.81622 -293.99645 51.82396 - -1505.82534 -294.06951 51.82396 + -1505.82534 -294.06950 51.82396 -1520.79176 -304.59227 52.15287 -1520.79168 -304.59428 52.15287 -1568.84781 -336.20084 53.14391 - -1568.84788 -336.20286 53.14391 - -1585.92243 -346.78453 53.47572 + -1568.84788 -336.20285 53.14391 + -1585.92243 -346.78452 53.47572 -1585.82647 -347.29640 53.47572 -1906.03501 -507.66067 58.54785 -1906.12236 -508.24133 58.54785 -2189.49733 -625.70625 62.03963 - -2189.50593 -625.77517 62.03963 - -2221.07107 -636.83404 62.39426 + -2189.50593 -625.77516 62.03963 + -2221.07107 -636.83403 62.39426 -2221.07101 -636.83571 62.39426 -2319.60947 -677.05278 63.46449 -2319.60953 -677.05445 63.46449 @@ -37965,17 +38110,17 @@ Displacements -1812.25520 -939.04962 6.67589 -2544.15857 -1014.26304 7.05223 -2544.19712 -1014.42417 7.05223 - -3469.78314 -1090.95358 7.84473 + -3469.78315 -1090.95358 7.84473 -3469.78439 -1090.90701 7.84473 - -4467.43903 -1178.35693 9.14509 + -4467.43903 -1178.35694 9.14509 -4467.43337 811.01603 9.14509 -4276.18546 782.54457 9.60592 - -4276.18559 782.55010 9.60592 + -4276.18560 782.55010 9.60592 -4114.25726 759.43785 10.04734 - -4114.25745 759.44856 10.04734 + -4114.25745 759.44857 10.04734 -3927.98672 730.44223 10.61737 -3927.98669 730.45472 10.61737 - -3749.17329 699.76692 11.23373 + -3749.17330 699.76692 11.23373 -3749.17293 699.77314 11.23373 -3686.70777 688.30363 11.46656 -3686.92531 688.94254 11.46656 @@ -37998,7 +38143,7 @@ Displacements -3750.84726 -949.45249 42.33887 -3750.84629 -949.66032 42.33887 -4263.56048 -1101.80809 45.55207 - -4263.57395 -1101.91598 45.55207 + -4263.57396 -1101.91597 45.55207 -4319.05335 -1117.26483 45.88404 -4319.05324 -1117.26793 45.88404 -4490.09549 -1163.33795 46.89227 @@ -38693,9 +38838,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 368.23778 0.00000 0 'Dalle toiture 18.85' - 10 14.24000 -1169.73692 0.00000 0 'Dalle raide 14.24' - 35 1.72000 -6866.08160 0.00000 0 'Dalle radier 1,72' + 2 18.85000 368.73747 0.00000 0 'Dalle toiture 18.85' + 10 14.24000 -1169.82515 0.00000 0 'Dalle raide 14.24' + 35 1.72000 -6866.08040 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -38753,96 +38898,96 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.07900 -0.27479 6.14196 - -29.84588 -52.81787 6.42169 - -29.97131 -420.95897 6.42169 - -246.97687 -448.00861 6.54650 - -246.93042 -447.63751 6.54650 - -321.62088 -457.80226 6.58974 - -321.54670 -458.06414 6.58974 - -887.16984 -542.91003 6.95341 - -887.24404 -543.17156 6.95341 - -914.51067 -547.50283 6.97333 - -914.51039 -547.50736 6.97333 - -1054.16673 -569.96383 7.07971 - -1054.13835 -570.12115 7.07971 - -1506.62487 -638.00969 7.48038 - -1506.65803 -638.14206 7.48038 - -2101.21471 -714.89393 8.15879 - -2101.21595 -714.84737 8.15879 - -2767.94821 -802.22401 9.14509 - -2767.94264 367.54185 9.14509 - -2682.96194 340.41915 9.47956 - -2682.96207 340.42773 9.47956 - -2613.75950 318.40151 9.79618 - -2613.75976 318.41624 9.79618 - -2537.63283 290.23527 10.20141 - -2537.63278 290.25248 10.20141 - -2468.82474 259.82794 10.63658 - -2468.82423 259.83653 10.63658 - -2445.95511 248.31491 10.80041 - -2446.26064 249.21228 10.80041 - -2244.93244 33.24628 13.72137 - -2244.70210 34.36406 13.72137 - -2391.48902 -264.34205 17.43869 - -2391.23329 -264.65128 17.43869 - -3004.72002 -650.37444 22.00727 - -3004.81600 -651.15265 22.00727 - -4201.94294 -1118.96685 27.64540 - -4202.01477 -1119.31683 27.64540 - -4808.85893 -1309.51001 30.05913 - -4808.87165 -1309.61188 30.05913 - -4874.83927 -1329.10648 30.31248 - -4874.83891 -1329.11384 30.31248 - -5148.51676 -1407.87037 31.34923 - -5148.51618 -1407.89266 31.34923 - -5512.96532 -1507.99572 32.70006 - -5512.94971 -1508.14315 32.70006 - -6316.34046 -1706.37168 35.60144 - -6316.33885 -1706.64933 35.60144 - -7217.66720 -1899.26728 38.80114 - -7217.68536 -1899.41268 38.80114 - -7313.14065 -1918.80323 39.13912 - -7313.14050 -1918.80749 39.13912 - -7605.32074 -1976.96016 40.17392 - -7605.32089 -1976.96442 40.17392 - -7704.65423 -1996.37186 40.52597 - -7704.50019 -1997.19358 40.52597 - -9310.85328 -2286.30532 46.27014 - -9310.98537 -2287.30252 46.27014 --10504.25204 -2485.19524 50.63818 --10504.27399 -2485.37104 50.63818 --10629.01173 -2504.13000 51.10129 --10629.01156 -2504.13493 51.10129 --11009.35073 -2566.97488 52.52094 --11009.35091 -2566.97980 52.52094 --11138.22109 -2587.81774 53.00446 --11137.73723 -2589.75336 53.00446 --13929.20914 -2986.82518 63.86260 --13931.46291 -2983.22969 63.86260 --18046.59838 -3444.33377 81.68443 + 0.00487 -0.01695 6.14185 + -29.62396 -52.56065 6.42169 + -29.66920 -420.99217 6.42169 + -246.69134 -448.04173 6.54654 + -246.65096 -447.71921 6.54654 + -321.35490 -457.88389 6.58978 + -321.28073 -458.14575 6.58978 + -886.99617 -542.99102 6.95348 + -887.07036 -543.25253 6.95348 + -914.34104 -547.58376 6.97340 + -914.34076 -547.58829 6.97340 + -1054.01731 -570.04459 7.07978 + -1053.98893 -570.20191 7.07978 + -1506.53584 -638.08999 7.48044 + -1506.56900 -638.22236 7.48044 + -2101.19635 -714.97423 8.15882 + -2101.19759 -714.92767 8.15882 + -2768.00051 -802.30431 9.14509 + -2767.99494 367.54977 9.14509 + -2683.01234 340.42707 9.47955 + -2683.01247 340.43565 9.47955 + -2613.80824 318.40940 9.79616 + -2613.80850 318.42413 9.79616 + -2537.67960 290.24311 10.20139 + -2537.67955 290.26032 10.20139 + -2468.86957 259.83570 10.63656 + -2468.86906 259.84429 10.63656 + -2445.99924 248.32263 10.80039 + -2446.30477 249.21999 10.80039 + -2244.96650 33.25327 13.72132 + -2244.73615 34.37103 13.72132 + -2391.51425 -264.33611 17.43864 + -2391.25853 -264.64534 17.43864 + -3004.73795 -650.36964 22.00721 + -3004.83393 -651.14786 22.00721 + -4201.95510 -1118.96316 27.64535 + -4202.02693 -1119.31314 27.64535 + -4808.86935 -1309.50671 30.05907 + -4808.88207 -1309.60858 30.05907 + -4874.84952 -1329.10321 30.31243 + -4874.84916 -1329.11058 30.31243 + -5148.52637 -1407.86724 31.34917 + -5148.52579 -1407.88954 31.34917 + -5512.97417 -1507.99277 32.70002 + -5512.95856 -1508.14020 32.70002 + -6316.34792 -1706.36905 35.60139 + -6316.34632 -1706.64670 35.60139 + -7217.67343 -1899.26496 38.80110 + -7217.69159 -1899.41036 38.80110 + -7313.14676 -1918.80094 39.13908 + -7313.14661 -1918.80520 39.13908 + -7605.32652 -1976.95795 40.17388 + -7605.32667 -1976.96221 40.17388 + -7704.65990 -1996.36967 40.52593 + -7704.50585 -1997.19140 40.52593 + -9310.85746 -2286.30351 46.27011 + -9310.98955 -2287.30071 46.27011 +-10504.25536 -2485.19363 50.63816 +-10504.27731 -2485.36943 50.63816 +-10629.01497 -2504.12841 51.10126 +-10629.01480 -2504.13334 51.10126 +-11009.35374 -2566.97334 52.52091 +-11009.35391 -2566.97827 52.52091 +-11138.22402 -2587.81622 53.00443 +-11137.74016 -2589.75185 53.00443 +-13929.21070 -2986.82393 63.86259 +-13931.46446 -2983.22843 63.86259 +-18046.59838 -3444.33258 81.68443 -18045.10753 3428.17176 81.68443 --14042.52036 2971.59272 104.05438 --14042.24076 2972.47697 104.05438 --13310.90787 2878.01116 109.06163 --13310.90838 2878.00159 109.06163 --12804.64986 2810.26041 112.72298 --12804.64990 2810.25953 112.72298 --12603.29964 2782.79740 114.22588 --12602.80326 2781.40331 114.22588 - -8994.09009 2291.16347 146.24911 - -8994.93360 2290.74432 146.24911 - -6062.98483 1831.50134 181.73661 - -6062.49700 1832.08110 181.73661 - -3761.74152 1403.83496 219.56474 - -3761.84156 1403.32564 219.56474 - -2049.68218 1006.07635 258.85152 - -2049.70234 1005.90459 258.85152 - -881.50989 639.65216 298.94017 - -881.52289 639.57353 298.94017 - -213.01634 304.31795 339.38217 - -213.01704 304.27782 339.38217 - 0.00680 0.01909 379.92023 +-14042.52036 2971.59272 104.05439 +-14042.24076 2972.47697 104.05439 +-13310.90787 2878.01116 109.06165 +-13310.90838 2878.00159 109.06165 +-12804.64986 2810.26041 112.72300 +-12804.64990 2810.25953 112.72300 +-12603.29964 2782.79740 114.22590 +-12602.80326 2781.40331 114.22590 + -8994.09009 2291.16347 146.24914 + -8994.93360 2290.74432 146.24914 + -6062.98483 1831.50134 181.73666 + -6062.49700 1832.08110 181.73666 + -3761.74152 1403.83496 219.56481 + -3761.84156 1403.32564 219.56481 + -2049.68218 1006.07635 258.85160 + -2049.70234 1005.90459 258.85160 + -881.50989 639.65216 298.94027 + -881.52289 639.57353 298.94027 + -213.01634 304.31795 339.38228 + -213.01704 304.27782 339.38228 + 0.00680 0.01909 379.92036 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -39102,73 +39247,73 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 42.95208 0.00000 188.84060 36.89270 110 23 - - 48.42720 0.00000 247.88160 48.42720 110 20 - - 48.42720 0.00000 247.88160 48.42720 110 20 - - 59.77138 0.00000 273.55160 53.44220 110 22 - - 59.77138 0.00000 273.55160 53.44220 110 22 - - 63.43760 0.00000 282.02270 55.09715 110 22 - - 63.43760 0.00000 282.02270 55.09715 110 22 - - 86.07059 0.00000 340.29360 66.48120 110 25 - - 86.07059 0.00000 340.29360 66.48120 110 25 - - 86.68024 0.50000 341.65260 66.74670 110 25 - - 86.68024 0.50000 341.65260 66.74670 110 25 - - 89.47154 3.00000 348.44760 68.07420 110 26 - - 81.51749 3.00000 348.44760 68.07420 110 23 - - 86.01860 10.50000 368.83260 72.05670 110 23 - + 42.95316 0.00000 188.84060 36.89270 110 23 - + 48.42720 0.00000 247.88160 48.42720 1 20 A + 48.42720 0.00000 247.88160 48.42720 1 20 A + 59.77104 0.00000 273.55160 53.44220 110 22 - + 59.77104 0.00000 273.55160 53.44220 110 22 - + 63.43717 0.00000 282.02270 55.09715 110 22 - + 63.43717 0.00000 282.02270 55.09715 110 22 - + 86.06992 0.00000 340.29360 66.48120 110 25 - + 86.06992 0.00000 340.29360 66.48120 110 25 - + 86.67956 0.50000 341.65260 66.74670 110 25 - + 86.67956 0.50000 341.65260 66.74670 110 25 - + 89.47088 3.00000 348.44760 68.07420 110 26 - + 81.51682 3.00000 348.44760 68.07420 110 23 - + 86.01806 10.50000 368.83260 72.05670 110 23 - 70.68123 10.50000 347.71128 75.72060 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 77.22843 28.10000 376.85688 82.26780 1 0 A 82.26780 28.10000 376.85688 82.26780 110 22 - - 85.15463 30.50000 380.83128 83.16060 110 22 - - 70.91727 30.50000 540.54390 67.06500 110 13 - - 75.75624 32.60000 549.00690 68.11500 110 14 - - 75.75624 32.60000 549.00690 68.11500 110 14 - - 81.99145 35.10000 559.08190 69.36500 110 15 - - 81.99145 35.10000 559.08190 69.36500 110 15 - - 88.70488 37.60000 569.15690 70.61500 110 16 - - 88.70488 37.60000 569.15690 70.61500 110 16 - - 91.23120 38.50000 572.78390 71.06500 110 16 - - 91.23120 38.50000 572.78390 71.06500 110 16 - - 135.15812 52.12500 627.69265 77.87750 110 22 - - 135.15812 52.12500 627.69265 77.87750 110 22 - - 185.43457 65.75000 682.60140 84.69000 110 27 - - 185.43457 65.75000 682.60140 84.69000 110 27 - - 235.63958 79.37500 737.51015 91.50250 110 32 - - 235.63958 79.37500 737.51015 91.50250 110 32 - - 278.68517 93.00000 792.41890 98.31500 110 35 - - 278.68517 93.00000 792.41890 98.31500 110 35 - - 291.08758 98.00000 812.56890 100.81500 110 36 - - 291.08758 98.00000 812.56890 100.81500 110 36 - - 292.19641 98.50000 814.58390 101.06500 110 36 - - 292.19641 98.50000 814.58390 101.06500 110 36 - - 296.36882 100.50000 822.64390 102.06500 110 36 - - 296.36882 100.50000 822.64390 102.06500 110 36 - - 300.95562 103.00000 832.71890 103.31500 110 36 - - 287.74618 103.00000 832.71890 103.31500 110 35 - - 294.16792 108.00000 852.86890 105.81500 110 34 - - 273.61667 108.00000 852.86890 105.81500 110 32 - - 275.85514 113.00000 873.01890 108.31500 110 32 - - 274.55984 113.00000 873.01890 108.31500 110 31 - - 274.56214 113.50000 875.03390 108.56500 110 31 - - 273.56238 113.50000 875.03390 108.56500 110 31 - - 273.30651 115.00000 881.07890 109.31500 110 31 - - 272.98517 115.00000 881.07890 109.31500 110 31 - - 272.81223 115.50000 883.09390 109.56500 110 31 - - 270.41971 115.50000 883.09390 109.56500 110 31 - - 262.04493 123.00000 913.31890 113.31500 110 29 - - 276.19889 123.00000 913.31890 113.31500 110 30 - - 264.37199 128.00000 933.46890 115.81500 110 28 - - 247.69431 128.00000 933.46890 115.81500 110 27 - - 246.16393 128.50000 935.48390 116.06500 110 26 - - 292.01612 128.50000 935.48390 116.06500 110 31 - - 287.34992 130.00000 941.52890 116.81500 110 31 - - 287.34992 130.00000 941.52890 116.81500 110 31 - - 285.66765 130.50000 943.54390 117.06500 110 30 - - 285.66765 130.50000 943.54390 117.06500 110 30 - - 237.47599 140.50000 983.84390 122.06500 110 24 - - 225.21189 140.50000 700.38000 207.51050 110 32 - + 85.15469 30.50000 380.83128 83.16060 110 22 - + 70.91737 30.50000 540.54390 67.06500 110 13 - + 75.75642 32.60000 549.00690 68.11500 110 14 - + 75.75642 32.60000 549.00690 68.11500 110 14 - + 81.99172 35.10000 559.08190 69.36500 110 15 - + 81.99172 35.10000 559.08190 69.36500 110 15 - + 88.70523 37.60000 569.15690 70.61500 110 16 - + 88.70523 37.60000 569.15690 70.61500 110 16 - + 91.23157 38.50000 572.78390 71.06500 110 16 - + 91.23157 38.50000 572.78390 71.06500 110 16 - + 135.15881 52.12500 627.69265 77.87750 110 22 - + 135.15881 52.12500 627.69265 77.87750 110 22 - + 185.43539 65.75000 682.60140 84.69000 110 27 - + 185.43539 65.75000 682.60140 84.69000 110 27 - + 235.64042 79.37500 737.51015 91.50250 110 32 - + 235.64042 79.37500 737.51015 91.50250 110 32 - + 278.68594 93.00000 792.41890 98.31500 110 35 - + 278.68594 93.00000 792.41890 98.31500 110 35 - + 291.08831 98.00000 812.56890 100.81500 110 36 - + 291.08831 98.00000 812.56890 100.81500 110 36 - + 292.19713 98.50000 814.58390 101.06500 110 36 - + 292.19713 98.50000 814.58390 101.06500 110 36 - + 296.36953 100.50000 822.64390 102.06500 110 36 - + 296.36953 100.50000 822.64390 102.06500 110 36 - + 300.95631 103.00000 832.71890 103.31500 110 36 - + 287.74686 103.00000 832.71890 103.31500 110 35 - + 294.16855 108.00000 852.86890 105.81500 110 34 - + 273.61730 108.00000 852.86890 105.81500 110 32 - + 275.85571 113.00000 873.01890 108.31500 110 32 - + 274.56041 113.00000 873.01890 108.31500 110 31 - + 274.56271 113.50000 875.03390 108.56500 110 31 - + 273.56295 113.50000 875.03390 108.56500 110 31 - + 273.30705 115.00000 881.07890 109.31500 110 31 - + 272.98571 115.00000 881.07890 109.31500 110 31 - + 272.81277 115.50000 883.09390 109.56500 110 31 - + 270.42025 115.50000 883.09390 109.56500 110 31 - + 262.04537 123.00000 913.31890 113.31500 110 29 - + 276.19934 123.00000 913.31890 113.31500 110 30 - + 264.37236 128.00000 933.46890 115.81500 110 28 - + 247.69469 128.00000 933.46890 115.81500 110 27 - + 246.16430 128.50000 935.48390 116.06500 110 26 - + 292.01648 128.50000 935.48390 116.06500 110 31 - + 287.35026 130.00000 941.52890 116.81500 110 31 - + 287.35026 130.00000 941.52890 116.81500 110 31 - + 285.66799 130.50000 943.54390 117.06500 110 30 - + 285.66799 130.50000 943.54390 117.06500 110 30 - + 237.47618 140.50000 983.84390 122.06500 110 24 - + 225.21200 140.50000 700.38000 207.51050 110 32 - 201.46323 153.30000 728.64240 216.21450 1 0 A 201.46323 153.30000 728.64240 216.21450 1 0 A 209.96323 165.80000 756.24240 224.71450 1 0 A @@ -39204,9 +39349,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 263.767 'Remblais LT' + 20.00 263.766 'Remblais LT' 16.00 150.251 'Argile et limon LT' - 14.00 2382.720 'Sable et gravier LT' + 14.00 2382.727 'Sable et gravier LT' 3.00 3101.240 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -41084,7 +41229,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -41464,7 +41609,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 54.85201 0.00000 54.85201 11.61861 110 100 - 54.85201 0.00000 54.85201 11.61861 110 100 - 57.26839 0.00000 57.26839 12.13045 110 100 - @@ -41769,36 +41914,36 @@ Status character 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A - 20.13700 0.00000 41.75785 20.13700 110 48 - - 19.11135 0.00000 55.64486 19.11135 110 34 - - 20.74734 0.00000 60.40823 20.74734 110 34 - - 19.50748 0.00000 65.39324 19.50748 110 30 - - 29.28885 0.00000 98.18249 29.28885 110 30 - - 28.48104 0.00000 103.29488 28.48104 110 0 - - 28.67553 0.50000 104.00025 28.67553 110 28 - - 28.65236 0.50000 82.75102 28.65236 110 35 - - 29.61050 3.00000 85.51822 29.61050 110 35 - - 29.51259 3.00000 126.56881 37.46664 110 0 - - 32.52619 10.50000 139.49301 41.29244 110 0 - + 20.13700 0.00000 41.75785 20.13700 1 48 A + 19.11135 0.00000 55.64486 19.11135 1 34 A + 20.74734 0.00000 60.40823 20.74734 1 34 A + 19.50748 0.00000 65.39324 19.50748 1 30 A + 29.28885 0.00000 98.18249 29.28885 1 30 A + 28.48104 0.00000 103.29488 28.48104 1 28 A + 28.67553 0.50000 104.00025 28.67553 1 28 A + 28.65236 0.50000 82.75102 28.65236 1 35 A + 29.61050 3.00000 85.51822 29.61050 1 35 A + 29.51259 3.00000 126.56881 37.46664 1 0 A + 32.52619 10.50000 139.49301 41.29244 1 0 A 74.58757 10.50000 82.34866 81.79656 110 0 - 82.99999 19.30000 90.07377 89.46987 110 0 - 63.61044 19.30000 70.08032 70.08032 110 0 - 72.02017 28.10000 77.77110 77.77110 110 0 - - 154.56354 28.10000 154.56354 154.56354 202 100 P - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.11287 32.60000 341.61277 90.11287 110 26 - - 93.76712 35.10000 355.46583 93.76712 110 26 - - 94.37562 35.10000 352.39349 94.37562 110 0 - - 98.04298 37.60000 366.08722 98.04298 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 0 - - 95.87890 38.50000 399.20272 95.87890 110 0 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 16 - - 98.25238 65.75000 523.50997 98.25238 110 19 - + 154.56354 28.10000 154.56354 154.56354 1 100 A + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.11287 32.60000 341.61277 90.11287 1 26 A + 93.76712 35.10000 355.46583 93.76712 1 26 A + 94.37562 35.10000 352.39349 94.37562 1 27 A + 98.04298 37.60000 366.08722 98.04298 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A 110.41648 79.37500 588.32291 110.41648 1 19 A 95.81454 79.37500 950.81689 95.81454 1 10 A 105.88759 93.00000 1050.77697 105.88759 1 10 A @@ -42856,7 +43001,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -43237,7 +43382,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 2.50000 0.00000 0.00000 -1 0 - - 0.00000 2.50000 0.00000 0.00000 110 99 - + 0.00000 2.50000 0.00000 0.00000 110 100 - 3.44263 3.40000 3.44263 0.46465 110 100 - 3.44263 3.40000 3.44263 0.46465 110 100 - 55.56023 17.02500 55.56023 7.49892 110 100 - @@ -43519,7 +43664,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A 20.13700 0.00000 41.75785 20.13700 1 48 A @@ -43538,52 +43683,52 @@ Status character 52.88858 19.30000 70.08032 70.08032 110 0 - 59.78820 28.10000 77.77110 77.77110 110 0 - 154.56354 28.10000 154.56354 154.56354 1 100 A - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.11287 32.60000 341.61277 90.11287 110 26 - - 93.76712 35.10000 355.46583 93.76712 110 26 - - 94.37562 35.10000 352.39349 94.37562 110 0 - - 98.04298 37.60000 366.08722 98.04298 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 0 - - 95.87890 38.50000 399.20272 95.87890 110 0 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 16 - - 98.25238 65.75000 523.50997 98.25238 110 19 - - 110.41648 79.37500 588.32291 110.41648 110 19 - - 95.81454 79.37500 950.81689 95.81454 110 10 - - 105.88759 93.00000 1050.77697 105.88759 110 0 - - 97.54498 93.00000 726.27457 97.54498 110 13 - - 100.86397 98.00000 750.98622 100.86397 110 0 - - 98.63166 98.00000 783.99309 98.63166 110 0 - - 98.95406 98.50000 786.55576 98.95406 110 13 - - 98.19139 98.50000 802.58966 98.19139 110 0 - - 99.46739 100.50000 813.01931 99.46739 110 0 - - 97.47114 100.50000 698.81195 97.47114 110 14 - - 99.02632 103.00000 709.96170 99.02632 110 14 - - 82.75845 103.00000 587.17291 95.96789 110 0 - - 85.33756 108.00000 605.47174 98.95866 110 0 - - 63.24295 108.00000 605.32255 97.41530 110 0 - - 65.13601 113.00000 623.44175 100.33125 110 0 - - 63.04358 113.00000 623.47218 99.53412 110 0 - - 63.22590 113.50000 625.27528 99.82197 110 0 - - 61.94815 113.50000 625.30680 99.54398 110 0 - - 62.48315 115.00000 630.70714 100.40367 110 0 - - 61.88801 115.00000 630.74763 100.12987 110 0 - - 62.06435 115.50000 632.54484 100.41517 110 0 - - 58.63662 115.50000 632.80257 99.37996 110 0 - - 61.11998 123.00000 659.60277 103.58886 110 0 - - 73.78132 123.00000 660.25337 102.09624 110 0 - - 75.76200 128.00000 677.97801 104.83704 110 0 - - 0.00000 128.00000 678.35294 104.23204 110 0 - - 0.00000 128.50000 680.12003 104.50356 110 0 - - 209.12012 128.50000 680.26871 209.12012 110 31 - - 210.74810 130.00000 685.56455 210.74810 110 0 - - 126.85393 130.00000 685.71928 126.85393 110 18 - - 127.18017 130.50000 687.48281 127.18017 110 0 - - 123.54656 130.50000 688.38689 123.54656 110 0 - + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.11287 32.60000 341.61277 90.11287 1 26 A + 93.76712 35.10000 355.46583 93.76712 1 26 A + 94.37562 35.10000 352.39349 94.37562 1 27 A + 98.04298 37.60000 366.08722 98.04298 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A + 110.41648 79.37500 588.32291 110.41648 1 19 A + 95.81454 79.37500 950.81689 95.81454 1 10 A + 105.88759 93.00000 1050.77697 105.88759 1 10 A + 97.54498 93.00000 726.27457 97.54498 1 13 A + 100.86397 98.00000 750.98622 100.86397 1 13 A + 98.63166 98.00000 783.99309 98.63166 1 13 A + 98.95406 98.50000 786.55576 98.95406 1 13 A + 98.19139 98.50000 802.58966 98.19139 1 12 A + 99.46739 100.50000 813.01931 99.46739 1 12 A + 97.47114 100.50000 698.81195 97.47114 1 14 A + 99.02632 103.00000 709.96170 99.02632 1 14 A + 82.75845 103.00000 587.17291 95.96789 1 0 A + 85.33756 108.00000 605.47174 98.95866 1 0 A + 63.24295 108.00000 605.32255 97.41530 1 0 A + 65.13601 113.00000 623.44175 100.33125 1 0 A + 63.04358 113.00000 623.47218 99.53412 1 0 A + 63.22590 113.50000 625.27528 99.82197 1 0 A + 61.94815 113.50000 625.30680 99.54398 1 0 A + 62.48315 115.00000 630.70714 100.40367 1 0 A + 61.88801 115.00000 630.74763 100.12987 1 0 A + 62.06435 115.50000 632.54484 100.41517 1 0 A + 58.63662 115.50000 632.80257 99.37996 1 0 A + 61.11998 123.00000 659.60277 103.58886 1 0 A + 73.78132 123.00000 660.25337 102.09624 1 0 A + 75.76200 128.00000 677.97801 104.83704 1 0 A + 0.00000 128.00000 678.35294 104.23204 1 0 A + 0.00000 128.50000 680.12003 104.50356 1 0 A + 209.12012 128.50000 680.26871 209.12012 1 31 A + 210.74810 130.00000 685.56455 210.74810 1 31 A + 126.85393 130.00000 685.71928 126.85393 1 18 A + 127.18017 130.50000 687.48281 127.18017 1 18 A + 123.54656 130.50000 688.38689 123.54656 1 18 A 129.84810 140.50000 723.49833 129.84810 1 18 A 150.50450 140.50000 420.96623 195.73981 110 0 - 161.45941 153.30000 441.57723 205.32346 110 0 - @@ -43842,13 +43987,13 @@ Displacements -825.84438 -448.43402 3.47056 -1183.37886 -506.60756 3.82695 -1183.42467 -506.91012 3.82695 - -1662.02020 -582.92985 4.40886 + -1662.02019 -582.92985 4.40886 -1662.01809 -582.99299 4.40886 -2205.55752 -654.32657 5.23440 -2205.56552 1165.96558 5.23440 -1931.06039 1121.30256 5.51126 -1931.06037 1121.30212 5.51126 - -1698.59326 1092.46883 5.77084 + -1698.59325 1092.46883 5.77084 -1698.59323 1092.46761 5.77084 -1429.37521 1061.02011 6.09813 -1429.37520 1061.01839 6.09813 @@ -43858,7 +44003,7 @@ Displacements -1076.21608 1015.33585 6.56972 172.47178 810.27840 8.62317 172.47592 809.90928 8.62317 - 1126.44977 583.90370 10.62484 + 1126.44977 583.90369 10.62484 1126.44858 583.52592 10.62484 1761.29595 342.50385 12.24130 1761.29550 342.13087 12.24130 @@ -43870,14 +44015,14 @@ Displacements 2076.06061 -20.02075 13.45868 2068.10079 -59.68663 13.50493 2068.10593 -59.59349 13.50493 - 2047.00476 -109.28068 13.54082 + 2047.00475 -109.28068 13.54082 2047.00920 -109.32260 13.54082 1970.13004 -196.81517 13.54060 1970.13070 -196.89584 13.54060 1854.32366 -264.89628 13.44760 1854.31828 -264.93932 13.44760 1840.91542 -271.16067 13.43339 - 1840.91548 -271.16212 13.43339 + 1840.91547 -271.16212 13.43339 1798.88497 -289.11453 13.38559 1798.88492 -289.11598 13.38559 1784.28424 -294.89689 13.36795 @@ -43889,14 +44034,14 @@ Displacements 1317.46919 -413.77968 12.63652 1317.46923 -413.78070 12.63652 1253.03165 -445.28431 12.52203 - 1253.03161 -445.28532 12.52203 + 1253.03161 -445.28531 12.52203 1230.61291 -451.44941 12.48267 - 1230.67459 -451.69614 12.48267 + 1230.67458 -451.69614 12.48267 724.87590 -554.57626 11.58866 724.89306 -555.06933 11.58866 94.44641 -416.91012 10.25812 94.41317 -417.30240 10.25812 - -354.36936 -291.03181 8.92509 + -354.36937 -291.03181 8.92509 -354.41490 -291.17866 8.92509 -423.86813 -264.09508 8.66714 -423.86817 -264.09634 8.66714 @@ -44719,13 +44864,13 @@ Displacements -956.08849 -421.28936 3.92073 -956.12921 -421.55415 3.92073 -1359.49772 -497.32783 4.47785 - -1359.49592 -497.37983 4.47785 + -1359.49592 -497.37982 4.47785 -1827.63458 -568.60912 5.23440 -1827.64120 1068.93322 5.23440 -1576.42384 1024.27020 5.48340 -1576.42391 1024.27163 5.48340 -1364.39416 994.78585 5.71543 - -1364.39422 994.78945 5.71543 + -1364.39422 994.78944 5.71543 -1119.75326 961.96854 6.00633 -1119.75324 961.97250 6.00633 -883.61575 926.74594 6.31043 @@ -44737,7 +44882,7 @@ Displacements 1032.73144 394.77190 9.88944 1032.86231 394.06569 9.88944 1352.18902 64.09308 11.22734 - 1352.38189 62.43648 11.22734 + 1352.38188 62.43648 11.22734 1194.23234 -302.18687 12.10564 1193.86189 521.63673 12.10564 1419.88012 381.83948 12.31508 @@ -44752,18 +44897,18 @@ Displacements 1664.05906 111.65624 12.52650 1690.64574 -4.81598 12.51693 1690.63823 -4.87611 12.51693 - 1690.10983 -16.25466 12.51160 + 1690.10983 -16.25467 12.51160 1690.10989 -16.25638 12.51160 - 1685.13657 -50.00556 12.49082 + 1685.13657 -50.00557 12.49082 1685.13651 -50.00728 12.49082 - 1682.35715 -61.16169 12.48230 + 1682.35714 -61.16169 12.48230 1682.51287 -61.99229 12.48230 - 1576.77203 -216.73050 12.26064 + 1576.77202 -216.73050 12.26064 1576.61995 -217.59022 12.26064 1443.36342 -312.86679 12.01927 1443.35977 -312.89600 12.01927 1427.59211 -317.78366 11.99127 - 1427.59213 -317.78419 11.99127 + 1427.59212 -317.78419 11.99127 1376.52068 -362.96683 11.90328 1376.52066 -362.96735 11.90328 1358.10688 -373.55972 11.87264 @@ -44778,13 +44923,13 @@ Displacements -296.46599 -286.87896 8.50410 -345.82589 -267.53503 8.33465 -345.82589 -267.53507 8.33465 - -364.80283 -259.57142 8.26667 + -364.80283 -259.57141 8.26667 -366.28424 -255.41099 8.26667 -624.08102 -102.67280 7.01555 -623.69053 -95.44859 7.01555 -657.86537 35.94875 5.99541 -657.58663 41.29349 5.99541 - -543.24837 109.93028 5.22208 + -543.24836 109.93028 5.22208 -542.24280 111.66815 5.22208 -364.15358 131.60551 4.65444 -364.23101 130.73679 4.65444 @@ -45604,12 +45749,12 @@ Displacements -1838.58383 1051.87787 5.23440 -1591.45975 1007.21485 5.48422 -1591.45982 1007.21619 5.48422 - -1383.00991 977.74981 5.71710 - -1383.00996 977.75313 5.71710 - -1142.62327 944.97453 6.00920 + -1383.00990 977.74981 5.71710 + -1383.00995 977.75313 5.71710 + -1142.62326 944.97453 6.00920 -1142.62324 944.97806 6.00920 -910.72650 909.81892 6.31478 - -910.72641 909.82057 6.31478 + -910.72640 909.82057 6.31478 -829.43742 896.55163 6.42757 -829.45807 896.61232 6.42757 241.66169 663.97789 8.22298 @@ -45625,7 +45770,7 @@ Displacements 1357.00694 364.55207 12.57414 1357.00223 364.64619 12.57414 1424.67194 312.02441 12.65366 - 1424.67726 312.10887 12.65366 + 1424.67725 312.10887 12.65366 1494.52766 246.67580 12.73789 1494.53604 246.59420 12.73789 1587.16477 124.00585 12.85291 @@ -45636,24 +45781,24 @@ Displacements 1621.78881 2.41932 12.89313 1619.72860 -29.85983 12.88808 1619.72853 -29.86168 12.88808 - 1617.96953 -40.46665 12.88487 - 1618.12781 -41.31088 12.88487 + 1617.96952 -40.46665 12.88487 + 1618.12780 -41.31088 12.88487 1533.01153 -180.31211 12.74615 - 1532.85721 -181.18792 12.74615 + 1532.85720 -181.18792 12.74615 1421.37040 -262.39967 12.56277 - 1421.36645 -262.43134 12.56277 - 1408.15551 -265.98106 12.54065 + 1421.36644 -262.43134 12.56277 + 1408.15550 -265.98106 12.54065 1408.15553 -265.98163 12.54065 1365.15174 -307.21700 12.47034 1365.15172 -307.21756 12.47034 1349.55783 -316.51587 12.44560 - 1349.39108 -315.84888 12.44560 - 948.83144 -479.48423 11.82848 + 1349.39107 -315.84888 12.44560 + 948.83144 -479.48422 11.82848 949.03193 -478.92266 11.82848 384.13979 -386.99501 10.79015 384.11498 -387.12904 10.79015 -55.06925 -303.94354 9.65747 - -55.07818 -303.97223 9.65747 + -55.07818 -303.97222 9.65747 -128.77542 -285.19466 9.42897 -128.77543 -285.19480 9.42897 -178.32420 -271.33077 9.26715 @@ -45666,7 +45811,7 @@ Displacements -574.19805 11.07860 6.92659 -506.13184 80.95061 6.09369 -504.99030 83.12043 6.09369 - -355.65289 118.85101 5.45152 + -355.65288 118.85101 5.45152 -355.72232 118.00993 5.45152 -187.67337 111.92316 4.94496 -187.73911 111.46173 4.94496 @@ -46460,12 +46605,12 @@ Displacements -163.50478 -248.19297 3.05976 -163.39589 -248.57735 3.05976 -471.64562 -299.57747 3.48293 - -471.75453 -299.96135 3.48293 + -471.75453 -299.96134 3.48293 -486.82472 -302.85631 3.50363 -486.82431 -302.86295 3.50363 -564.42596 -318.18429 3.61073 -564.38446 -318.41440 3.61073 - -822.36459 -371.09330 3.97591 + -822.36459 -371.09329 3.97591 -822.40231 -371.33586 3.97591 -1181.51179 -446.96477 4.51844 -1181.51017 -447.01022 4.51844 @@ -46479,7 +46624,7 @@ Displacements -922.09105 925.83953 5.95208 -695.13193 889.37748 6.23226 -695.13171 889.38121 6.23226 - -615.70820 875.52508 6.33527 + -615.70819 875.52508 6.33527 -615.82808 875.87721 6.33527 416.35222 624.40302 7.94476 416.48692 624.71149 7.94476 @@ -46489,7 +46634,7 @@ Displacements 1216.10633 -88.74155 10.53801 800.31520 -532.06405 11.24723 799.81953 238.95209 11.24723 - 876.38589 66.51516 11.42428 + 876.38588 66.51516 11.42428 876.37348 66.41578 11.42428 879.25968 49.02643 11.43976 879.25509 49.11812 11.43976 @@ -46499,12 +46644,12 @@ Displacements 866.11423 -107.86922 11.56034 770.46428 -274.76656 11.65588 770.46341 549.99089 11.65588 - 1006.64637 395.09492 11.71215 + 1006.64636 395.09492 11.71215 1006.63164 394.97700 11.71215 1025.99878 379.71362 11.71533 1025.99889 379.71060 11.71533 1079.54987 334.37468 11.72194 - 1079.54977 334.37167 11.72194 + 1079.54976 334.37167 11.72194 1095.89352 319.38697 11.72314 1096.07018 318.44469 11.72314 1253.90874 105.37427 11.67558 @@ -46513,20 +46658,20 @@ Displacements 1270.98255 -34.04148 11.57107 1269.04044 -43.62743 11.55732 1269.04047 -43.62825 11.55732 - 1258.01260 -103.30884 11.51248 + 1258.01259 -103.30884 11.51248 1258.01257 -103.30965 11.51248 - 1252.45780 -118.86813 11.49635 + 1252.45779 -118.86813 11.49635 1252.56962 -119.31547 11.49635 - 987.62950 -402.81299 11.05569 + 987.62949 -402.81299 11.05569 987.53000 -403.29884 11.05569 491.49559 -352.62836 10.23263 491.46131 -352.59665 10.23263 - 77.14356 -296.72859 9.27929 + 77.14355 -296.72859 9.27929 77.16546 -296.65759 9.27929 4.77814 -281.96127 9.08214 4.77818 -281.96024 9.08214 -44.43450 -270.75584 8.94169 - -44.43449 -270.75555 8.94169 + -44.43449 -270.75554 8.94169 -63.76073 -266.04655 8.88493 -65.28759 -261.75846 8.88493 -368.14105 -151.19774 7.79710 @@ -47343,7 +47488,7 @@ Displacements -1601.30107 -517.27396 5.23440 -1601.30686 1014.21607 5.23440 -1363.22162 969.55305 5.46672 - -1363.22176 969.55561 5.46672 + -1363.22175 969.55561 5.46672 -1162.71888 939.67896 5.68224 -1162.71899 939.68547 5.68224 -931.94841 906.04162 5.95131 @@ -47361,7 +47506,7 @@ Displacements 694.70134 -535.55261 11.39154 694.15591 239.18227 11.39154 772.29918 72.82356 11.60572 - 772.28581 72.71646 11.60572 + 772.28580 72.71646 11.60572 775.50409 56.01164 11.62517 775.49953 56.10284 11.62517 780.04132 -10.72470 11.69934 @@ -47370,7 +47515,7 @@ Displacements 766.99746 -94.03533 11.78379 680.49445 -251.72234 11.92601 680.49353 549.02160 11.92601 - 918.87080 405.15869 12.03329 + 918.87079 405.15869 12.03329 918.85525 405.03421 12.03329 938.75538 390.97924 12.04180 938.75549 390.97604 12.04180 @@ -47382,7 +47527,7 @@ Displacements 1188.03330 137.88907 12.11069 1224.63496 9.74246 12.06811 1224.62854 9.69106 12.06811 - 1224.89733 1.07453 12.06069 + 1224.89733 1.07454 12.06069 1224.89736 1.07363 12.06069 1220.78978 -55.75397 12.03496 1220.78974 -55.75486 12.03496 @@ -47394,7 +47539,7 @@ Displacements 594.52663 -299.95516 11.04870 230.52747 -265.77566 10.21892 230.54937 -265.70467 10.21892 - 165.24109 -256.20727 10.04147 + 165.24109 -256.20726 10.04147 165.24112 -256.20623 10.04147 120.26478 -248.87728 9.91388 120.26479 -248.87698 9.91388 @@ -47406,7 +47551,7 @@ Displacements -340.17403 -28.45113 7.88295 -352.70521 16.11795 7.05426 -351.59507 18.96817 7.05426 - -281.82726 73.37330 6.35735 + -281.82725 73.37330 6.35735 -281.77999 72.97304 6.35735 -161.57782 88.72508 5.76668 -161.62923 88.33647 5.76668 @@ -48196,7 +48341,7 @@ Displacements -439.75081 -276.52201 3.53044 -510.72372 -291.49110 3.63952 -510.68421 -291.71017 3.63952 - -748.21726 -343.26054 4.00650 + -748.21725 -343.26054 4.00650 -748.25331 -343.49078 4.00650 -1082.82202 -419.03943 4.54095 -1082.82050 -419.08124 4.54095 @@ -48210,7 +48355,7 @@ Displacements -793.68765 932.66387 5.92170 -565.10394 895.50728 6.18819 -565.10365 895.51226 6.18819 - -485.14220 881.34227 6.28589 + -485.14219 881.34227 6.28589 -485.32924 881.89162 6.28589 549.19927 620.05524 7.79035 549.33758 620.74747 7.79035 @@ -48218,35 +48363,35 @@ Displacements 1172.44665 275.24606 9.11437 1266.73855 -154.34663 10.04322 1267.08421 -156.33787 10.04322 - 720.17433 -660.41465 10.54718 + 720.17433 -660.41466 10.54718 719.67587 91.78156 10.54718 715.90504 -108.10424 10.65330 715.89154 -108.21237 10.65330 709.97419 -128.49155 10.66203 709.96965 -128.40075 10.66203 676.15179 -209.92339 10.69365 - 676.15742 -209.84968 10.69365 + 676.15741 -209.84968 10.69365 610.90625 -312.33941 10.72605 610.92360 -312.50402 10.72605 - 405.01326 -511.49187 10.77038 + 405.01325 -511.49187 10.77038 405.01360 258.17600 10.77038 486.92283 69.60539 10.79296 486.90406 69.45507 10.79296 489.90928 50.75737 10.79400 489.90943 50.75319 10.79400 - 493.33860 -4.98939 10.79573 + 493.33859 -4.98940 10.79573 493.33845 -4.99356 10.79573 492.62630 -23.48689 10.79585 492.83724 -24.61207 10.79585 - 372.82699 -293.52397 10.77087 - 372.62908 530.24671 10.77087 + 372.82698 -293.52397 10.77087 + 372.62907 530.24671 10.77087 592.90932 352.09938 10.72832 592.89629 351.99501 10.72832 - 610.15533 338.38180 10.72268 + 610.15532 338.38180 10.72268 610.15540 338.37968 10.72268 655.52541 266.67583 10.70400 - 655.52534 266.67373 10.70400 - 668.37020 247.13638 10.69717 + 655.52533 266.67373 10.70400 + 668.37019 247.13638 10.69717 668.54291 246.44544 10.69717 726.93800 -124.62073 10.48954 726.81658 -125.47188 10.48954 @@ -49062,23 +49207,23 @@ Displacements -1909.48078 -779.56503 3.52738 -2628.37601 -856.37074 4.18847 -2628.37293 -856.46945 4.18847 - -3412.76710 -928.13618 5.23440 + -3412.76709 -928.13618 5.23440 -3412.77949 393.04901 5.23440 -3323.77434 348.38599 5.60071 - -3323.77452 348.38925 5.60071 + -3323.77451 348.38925 5.60071 -3253.61910 319.55596 5.95091 -3253.61925 319.56441 5.95091 -3177.62703 288.11691 6.40307 -3177.62701 288.12684 6.40307 - -3109.70566 254.98702 6.89270 + -3109.70565 254.98702 6.89270 -3109.70536 254.99200 6.89270 - -3087.31093 242.62877 7.07799 + -3087.31092 242.62877 7.07799 -3087.49797 243.17812 7.07799 -2890.87501 38.12067 10.44400 -2890.73670 38.81290 10.44400 -2987.38167 -187.19269 14.83111 -2987.16663 -187.53784 14.83111 - -3402.89364 -428.55991 20.27390 + -3402.89363 -428.55991 20.27390 -3402.54798 -430.55115 20.27390 -4159.11760 -685.39119 26.91859 -4159.61605 113.99779 26.91859 @@ -49911,23 +50056,23 @@ Displacements -1909.48078 -779.56503 3.52738 -2628.37601 -856.37074 4.18847 -2628.37293 -856.46945 4.18847 - -3412.76710 -928.13618 5.23440 + -3412.76709 -928.13618 5.23440 -3412.77949 393.04901 5.23440 -3323.77434 348.38599 5.60071 - -3323.77452 348.38925 5.60071 + -3323.77451 348.38925 5.60071 -3253.61910 319.55596 5.95091 -3253.61925 319.56441 5.95091 -3177.62703 288.11691 6.40307 -3177.62701 288.12684 6.40307 - -3109.70566 254.98702 6.89270 + -3109.70565 254.98702 6.89270 -3109.70536 254.99200 6.89270 - -3087.31093 242.62877 7.07799 + -3087.31092 242.62877 7.07799 -3087.49797 243.17812 7.07799 -2890.87501 38.12067 10.44400 -2890.73670 38.81290 10.44400 -2987.38167 -187.19269 14.83111 -2987.16663 -187.53784 14.83111 - -3402.89364 -428.55991 20.27390 + -3402.89363 -428.55991 20.27390 -3402.54798 -430.55115 20.27390 -4159.11760 -685.39119 26.91859 -4159.61605 113.99779 26.91859 @@ -50738,24 +50883,24 @@ Displacements -2384.55458 -1216.86033 2.63622 -2384.44524 -1217.45841 2.63622 -3330.88630 -1308.32947 2.94072 - -3330.98033 -1308.98917 2.94072 + -3330.98032 -1308.98917 2.94072 -4516.48030 -1387.33363 3.75719 - -4516.47533 -1387.50186 3.75719 - -5768.56047 -1459.82052 5.23440 + -4516.47533 -1387.50185 3.75719 + -5768.56047 -1459.82051 5.23440 -5768.58146 1232.79745 5.23440 -5478.03668 1188.13443 5.77460 -5478.03686 1188.13769 5.77460 -5231.53427 1159.30440 6.29623 -5231.53442 1159.31285 6.29623 - -4945.60510 1127.86535 6.97381 + -4945.60509 1127.86535 6.97381 -4945.60507 1127.87528 6.97381 -4667.74661 1094.73546 7.70972 -4667.74631 1094.74043 7.70972 -4569.77452 1082.37721 7.98829 - -4569.96157 1082.92656 7.98829 + -4569.96156 1082.92656 7.98829 -3229.18136 877.86911 12.97682 -3229.04305 878.56133 12.97682 - -2181.53078 652.55575 19.10493 + -2181.53077 652.55575 19.10493 -2181.31573 652.21059 19.10493 -1452.88549 411.18853 26.00646 -1452.53984 409.19729 26.00646 @@ -50765,7 +50910,7 @@ Displacements -1013.25580 55.28585 36.24946 -1010.73764 45.43371 36.53438 -1010.74219 45.52451 36.53438 - -1005.59296 5.85863 37.67882 + -1005.59295 5.85863 37.67882 -1005.58733 5.93234 37.67882 -1010.33309 -44.06734 39.12005 -1010.31574 -44.23194 39.12005 @@ -50782,15 +50927,15 @@ Displacements -1463.30405 -406.42872 51.11301 -1463.50196 -407.65804 51.11301 -1692.21950 -507.79387 54.26563 - -1692.23254 -507.89823 54.26563 - -1717.78766 -514.31073 54.58510 + -1692.23254 -507.89824 54.26563 + -1717.78766 -514.31074 54.58510 -1717.78758 -514.31285 54.58510 -1798.74447 -565.19047 55.54840 -1798.74454 -565.19257 55.54840 - -1827.32558 -578.05592 55.87118 + -1827.32558 -578.05593 55.87118 -1827.15287 -578.74686 55.87118 -2535.63993 -840.94419 62.52798 - -2535.76135 -841.79535 62.52798 + -2535.76136 -841.79535 62.52798 -3779.54704 -1104.94880 71.77539 -3780.42324 1025.67679 71.77539 -2673.94435 735.44204 81.80819 @@ -51538,42 +51683,42 @@ Displacements -525.23032 -1009.81459 2.73077 -692.93420 -1023.20819 2.70065 -692.31717 -1025.38433 2.70065 - -1921.56667 -1149.71877 2.63723 - -1922.18373 -1151.89550 2.63723 + -1921.56666 -1149.71877 2.63723 + -1922.18372 -1151.89550 2.63723 -1979.95251 -1158.87298 2.64293 -1979.95188 -1158.88548 2.64293 - -2273.46026 -1189.41190 2.68596 + -2273.46025 -1189.41190 2.68596 -2273.35461 -1189.98935 2.68596 -3207.23139 -1302.32447 2.99032 -3207.32216 -1302.96199 2.99032 -4402.12894 -1414.17004 3.79013 -4402.12387 -1414.33427 3.79013 -5699.04034 -1534.54051 5.23440 - -5699.06095 1167.01112 5.23440 + -5699.06094 1167.01112 5.23440 -5423.59874 1128.35215 5.76352 - -5423.59893 1128.35569 5.76352 + -5423.59892 1128.35569 5.76352 -5188.87213 1106.99948 6.27495 -5188.87229 1107.00853 6.27495 - -4915.40908 1080.50005 6.93994 + -4915.40908 1080.50004 6.93994 -4915.40905 1080.51053 6.93994 -4648.71844 1052.81612 7.66290 - -4648.71814 1052.82133 7.66290 + -4648.71813 1052.82133 7.66290 -4554.42482 1042.56000 7.93675 - -4554.60921 1043.10155 7.93675 - -3248.05851 868.86327 12.85351 + -4554.60920 1043.10155 7.93675 + -3248.05850 868.86327 12.85351 -3247.91198 869.51578 12.85351 -2201.88961 660.11777 18.91550 - -2201.67737 659.71702 18.91550 + -2201.67736 659.71702 18.91550 -1465.10491 415.79407 25.75775 -1464.76012 413.75798 25.75775 -1086.47951 135.90121 33.12365 - -1086.98493 134.26702 33.12365 + -1086.98492 134.26702 33.12365 -1047.26138 23.88097 35.92786 - -1047.27514 23.77084 35.92786 + -1047.27513 23.77084 35.92786 -1046.36853 12.48614 36.21102 -1046.37306 12.57675 36.21102 -1048.40412 -33.00554 37.34858 - -1048.39849 -32.93245 37.34858 + -1048.39848 -32.93245 37.34858 -1063.85503 -90.90313 38.78168 -1063.83710 -91.07307 38.78168 -1137.32552 -203.56642 41.68591 @@ -51585,15 +51730,15 @@ Displacements -1331.98477 -353.19358 45.84359 -1331.98493 -353.19801 45.84359 -1349.91520 -364.01844 46.14504 - -1349.69595 -365.18796 46.14504 - -1684.76887 -529.53089 50.74852 + -1349.69594 -365.18796 46.14504 + -1684.76888 -529.53089 50.74852 -1684.97277 -530.82315 50.74852 -1980.38153 -651.29578 53.91474 -1980.39689 -651.41880 53.91474 -2013.25201 -662.78998 54.23625 -2013.25191 -662.79273 54.23625 -2115.75458 -703.95333 55.20657 - -2115.75468 -703.95606 55.20657 + -2115.75468 -703.95607 55.20657 -2151.29682 -717.73409 55.53198 -2151.06584 -718.65810 55.53198 -3009.06136 -998.74969 62.27804 @@ -52048,7 +52193,7 @@ Status character [DATA] 38.35279 0.00000 173.07023 36.65930 110 22 - 48.43147 0.00000 228.64716 48.43147 110 21 - - 48.43147 0.00000 228.64716 48.43147 110 0 - + 48.43147 0.00000 228.64716 48.43147 110 21 - 74.39162 0.00000 252.81103 53.54980 110 29 - 76.65470 0.00000 252.81103 53.54980 110 30 - 85.69192 0.00000 260.78511 55.23885 110 33 - @@ -52343,27 +52488,27 @@ Displacements -593.53648 -872.09646 2.76668 -1650.03152 -998.24962 2.79232 -1650.63149 -1000.36613 2.79232 - -1700.82466 -1007.37677 2.80073 - -1700.82409 -1007.38823 2.80073 + -1700.82465 -1007.37677 2.80073 + -1700.82409 -1007.38822 2.80073 -1956.47539 -1038.04242 2.85528 -1956.37625 -1038.58381 2.85528 -2776.80386 -1151.19297 3.16998 - -2776.90251 -1151.72981 3.16998 + -2776.90250 -1151.72981 3.16998 -3821.69804 -1224.37777 3.92257 - -3821.69777 -1224.38891 3.92257 - -4934.56650 -1306.41047 5.23440 + -3821.69777 -1224.38890 3.92257 + -4934.56649 -1306.41047 5.23440 -4934.56798 1090.14037 5.23440 -4676.33424 1061.61871 5.70932 -4676.33442 1061.62644 5.70932 - -4455.82674 1038.22907 6.16667 + -4455.82673 1038.22907 6.16667 -4455.82700 1038.24389 6.16667 -4199.92579 1008.64247 6.75932 - -4199.92576 1008.66007 6.75932 + -4199.92575 1008.66007 6.75932 -3951.66682 977.07275 7.40151 -3951.66630 977.08163 7.40151 -3864.26119 965.20890 7.64426 - -3864.61819 966.25736 7.64426 - -2687.58310 750.01827 11.96805 + -3864.61818 966.25736 7.64426 + -2687.58309 750.01827 11.96805 -2687.39118 751.55100 11.96805 -1852.12542 461.35828 17.24306 -1851.83762 461.48267 17.24306 @@ -52376,7 +52521,7 @@ Displacements -1910.28963 -578.86544 32.41558 -1910.29405 -578.77721 32.41558 -2033.87920 -657.33634 33.44849 - -2033.87335 -657.27090 33.44849 + -2033.87334 -657.27090 33.44849 -2210.68631 -757.62298 34.76135 -2210.66214 -757.85071 34.76135 -2639.38258 -958.40096 37.46774 @@ -52387,7 +52532,7 @@ Displacements -3226.27806 -1176.64665 40.58994 -3407.28815 -1236.89399 41.47193 -3407.28839 -1236.90066 41.47193 - -3469.63727 -1257.06175 41.76910 + -3469.63727 -1257.06176 41.76910 -3469.35583 -1258.56302 41.76910 -4526.79917 -1562.17114 46.44071 -4527.04980 -1563.91861 46.44071 @@ -52867,7 +53012,7 @@ Status character 68.61452 19.30000 309.19159 84.86418 110 0 - 68.61452 19.30000 308.67724 84.86418 110 0 - 70.39813 28.10000 321.46914 88.38104 110 0 - - 88.38104 28.10000 321.16392 88.38104 110 0 - + 88.38104 28.10000 321.16392 88.38104 110 28 - 90.69943 30.50000 324.64930 89.34018 110 28 - 77.80627 30.50000 446.62050 74.78656 110 17 - 81.92586 32.60000 453.61300 75.95745 110 18 - @@ -53077,9 +53222,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 590.27120 0.00000 0 'Dalle toiture 18.85' - 10 14.24000 -2062.60621 0.00000 0 'Dalle raide 14.24' - 35 1.72000 -7459.16849 0.00000 0 'Dalle radier 1,72' + 2 18.85000 591.17076 0.00000 0 'Dalle toiture 18.85' + 10 14.24000 -2062.73760 0.00000 0 'Dalle raide 14.24' + 35 1.72000 -7459.16929 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -53109,7 +53254,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 33.90 : Percentage mobilized resistance left 100.00 : Percentage mobilized resistance right - 7199.52 : Effective left + 7199.53 : Effective left 1362.40 : Effective right 3658.51 : Water pressure left 522.24 : Water pressure right @@ -53137,96 +53282,96 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.15920 -0.55373 2.82647 - -31.40721 -54.81954 2.83501 - -31.63810 -645.07097 2.83501 - -361.17232 -674.95661 2.84288 - -361.10058 -674.38431 2.84288 - -473.40913 -687.15130 2.84845 - -472.83003 -689.19356 2.84845 - -1316.45881 -805.28952 2.98475 - -1317.03794 -807.33254 2.98475 - -1357.56576 -813.79566 2.99655 - -1357.56527 -813.80583 2.99655 - -1564.47154 -841.64302 3.06556 - -1564.38053 -842.13938 3.06556 - -2234.16714 -945.84034 3.39352 - -2234.25758 -946.33343 3.39352 - -3100.02268 -1023.08531 4.08704 - -3100.02240 -1023.09644 4.08704 - -4038.01384 -1110.47308 5.23440 - -4038.01546 952.13127 5.23440 - -3812.74274 924.89057 5.64294 - -3812.74291 924.90314 5.64294 - -3620.85474 902.29669 6.03450 - -3620.85513 902.31808 6.03450 - -3398.89268 872.91693 6.53979 - -3398.89263 872.94249 6.53979 - -3184.63032 840.66019 7.08517 - -3184.62956 840.67314 7.08517 - -3109.52207 828.31530 7.29083 - -3110.05925 829.89293 7.29083 - -2132.90456 586.80888 10.92338 - -2132.65058 589.21740 10.92338 - -1560.28336 229.84589 15.31462 - -1559.90767 230.40585 15.31462 - -1565.26130 -261.25058 20.26911 - -1564.66060 -263.55707 20.26911 - -2336.29652 -891.59322 25.79422 - -2336.96839 -893.79866 25.79422 - -2849.03309 -1157.18403 28.00971 - -2849.05439 -1157.35463 28.00971 - -2907.60230 -1184.58763 28.23822 - -2907.60659 -1184.50214 28.23822 - -3155.51105 -1294.94205 29.16629 - -3155.50496 -1294.88528 29.16629 - -3496.81601 -1436.18799 30.36011 - -3496.78495 -1436.47984 30.36011 - -4285.89626 -1721.95342 32.87602 - -4285.89185 -1722.51464 32.87602 - -5218.14526 -2007.91017 35.59466 - -5218.18254 -2008.20877 35.59466 - -5319.31596 -2037.13893 35.87931 - -5319.31564 -2037.14800 35.87931 - -5631.40560 -2124.13498 36.74850 - -5631.40593 -2124.14406 36.74850 - -5738.34010 -2153.23065 37.04348 - -5737.99272 -2155.08370 37.04348 - -7517.59180 -2590.80024 41.82285 - -7517.89220 -2593.02881 41.82285 - -8888.41549 -2888.01837 45.44089 - -8888.46246 -2888.39461 45.44089 - -9033.59013 -2916.69537 45.82466 - -9033.58975 -2916.70611 45.82466 - -9477.94291 -3007.83667 47.00181 - -9477.94329 -3007.84742 47.00181 - -9629.08989 -3037.99544 47.40305 - -9628.16812 -3041.68292 47.40305 --12956.36841 -3600.38311 56.48144 --12961.33777 -3591.42150 56.48144 --17877.90453 -4079.41517 71.77539 + 0.04668 -0.16236 2.82631 + -31.07162 -54.43072 2.83501 + -31.18998 -645.19040 2.83501 + -360.78386 -675.07570 2.84293 + -360.71213 -674.50345 2.84293 + -473.04032 -687.27019 2.84851 + -472.46125 -689.31235 2.84851 + -1316.22356 -805.40584 2.98485 + -1316.80266 -807.44877 2.98485 + -1357.33628 -813.91175 2.99665 + -1357.33579 -813.92192 2.99665 + -1564.27101 -841.75845 3.06565 + -1564.17999 -842.25480 3.06565 + -2234.05248 -945.95400 3.39360 + -2234.14292 -946.44707 3.39360 + -3100.00802 -1023.19894 4.08708 + -3100.00774 -1023.21008 4.08708 + -4038.09918 -1110.58672 5.23440 + -4038.10081 952.14902 5.23440 + -3812.82383 924.90830 5.64293 + -3812.82400 924.92086 5.64293 + -3620.93212 902.31430 6.03448 + -3620.93251 902.33569 6.03448 + -3398.96568 872.93435 6.53977 + -3398.96563 872.95990 6.53977 + -3184.69900 840.67733 7.08514 + -3184.69824 840.69028 7.08514 + -3109.58921 828.33232 7.29080 + -3110.12637 829.90991 7.29080 + -2132.95005 586.82344 10.92333 + -2132.69607 589.23189 10.92333 + -1560.31125 229.85717 15.31456 + -1559.93557 230.41709 15.31456 + -1565.27615 -261.24263 20.26905 + -1564.67545 -263.54915 20.26905 + -2336.30263 -891.58825 25.79417 + -2336.97451 -893.79369 25.79417 + -2849.03697 -1157.18001 28.00966 + -2849.05827 -1157.35062 28.00966 + -2907.60598 -1184.58371 28.23818 + -2907.61027 -1184.49822 28.23818 + -3155.51398 -1294.93848 29.16624 + -3155.50789 -1294.88171 29.16624 + -3496.81811 -1436.18485 30.36007 + -3496.78705 -1436.47670 30.36007 + -4285.89699 -1721.95107 32.87599 + -4285.89257 -1722.51229 32.87599 + -5218.14498 -2007.90852 35.59463 + -5218.18226 -2008.20712 35.59463 + -5319.31561 -2037.13734 35.87927 + -5319.31528 -2037.14641 35.87927 + -5631.40502 -2124.13359 36.74847 + -5631.40535 -2124.14267 36.74847 + -5738.33945 -2153.22932 37.04345 + -5737.99207 -2155.08237 37.04345 + -7517.59048 -2590.79974 41.82283 + -7517.89088 -2593.02831 41.82283 + -8888.41403 -2888.01832 45.44087 + -8888.46101 -2888.39456 45.44087 + -9033.58868 -2916.69536 45.82464 + -9033.58829 -2916.70610 45.82464 + -9477.94146 -3007.83677 47.00180 + -9477.94184 -3007.84752 47.00180 + -9629.08844 -3037.99558 47.40303 + -9628.16667 -3041.68306 47.40303 +-12956.36741 -3600.38381 56.48143 +-12961.33677 -3591.42218 56.48143 +-17877.90454 -4079.41600 71.77539 -17874.60400 3394.79259 71.77539 --13913.74078 2938.21356 91.58740 --13912.99330 2940.59727 91.58740 --13189.63034 2846.13146 96.07812 --13189.63066 2846.12233 96.07812 --12689.04666 2778.38115 99.37081 --12689.04676 2778.37873 99.37081 --12489.99191 2750.91660 100.72440 --12490.54197 2752.46123 100.72440 - -8923.05058 2262.22140 129.77391 - -8924.42406 2269.16827 129.77391 - -6023.20576 1809.92528 162.25996 - -6023.35437 1821.14682 162.25996 - -3738.17243 1392.90068 197.07056 - -3736.02137 1398.49848 197.07056 - -2030.73723 1001.24920 233.32980 - -2030.72605 1000.77449 233.32980 - -869.84032 634.52206 270.38368 - -869.89516 634.16994 270.38368 - -209.08487 298.91436 307.78648 - -210.08927 301.53701 307.78648 - -0.96913 -2.72172 345.28379 +-13913.74078 2938.21356 91.58741 +-13912.99330 2940.59727 91.58741 +-13189.63034 2846.13146 96.07813 +-13189.63066 2846.12233 96.07813 +-12689.04666 2778.38115 99.37082 +-12689.04676 2778.37873 99.37082 +-12489.99191 2750.91660 100.72441 +-12490.54197 2752.46123 100.72441 + -8923.05058 2262.22140 129.77394 + -8924.42406 2269.16827 129.77394 + -6023.20576 1809.92528 162.25999 + -6023.35437 1821.14682 162.25999 + -3738.17243 1392.90068 197.07061 + -3736.02137 1398.49848 197.07061 + -2030.73723 1001.24920 233.32985 + -2030.72605 1000.77449 233.32985 + -869.84032 634.52206 270.38375 + -869.89516 634.16994 270.38375 + -209.08487 298.91436 307.78656 + -210.08927 301.53701 307.78656 + -0.96913 -2.72172 345.28388 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -53486,73 +53631,73 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 45.94812 0.00000 188.84060 36.89270 110 24 - - 48.42720 0.00000 247.88160 48.42720 110 20 - + 45.95256 0.00000 188.84060 36.89270 110 24 - + 48.42720 0.00000 247.88160 48.42720 1 20 A 48.42720 0.00000 247.88160 48.42720 1 20 A - 71.11537 0.00000 273.55160 53.44220 110 26 - - 73.37844 0.00000 273.55160 53.44220 110 27 - - 81.37299 0.00000 282.02270 55.09715 110 29 - - 81.37299 0.00000 282.02270 55.09715 110 29 - - 123.20139 0.00000 340.29360 66.48120 110 36 - - 128.33396 0.00000 340.29360 66.48120 110 38 - - 129.69088 0.50000 341.65260 66.74670 110 38 - - 108.46481 0.50000 341.65260 66.74670 110 32 - - 110.73274 3.00000 348.44760 68.07420 110 32 - - 127.73958 3.00000 348.44760 68.07420 110 37 - - 135.29633 10.50000 368.83260 72.05670 110 37 - + 71.11401 0.00000 273.55160 53.44220 110 26 - + 73.37709 0.00000 273.55160 53.44220 110 27 - + 81.37130 0.00000 282.02270 55.09715 110 29 - + 81.37130 0.00000 282.02270 55.09715 110 29 - + 123.19873 0.00000 340.29360 66.48120 110 36 - + 128.33130 0.00000 340.29360 66.48120 110 38 - + 129.68822 0.50000 341.65260 66.74670 110 38 - + 108.46215 0.50000 341.65260 66.74670 110 32 - + 110.73013 3.00000 348.44760 68.07420 110 32 - + 127.73697 3.00000 348.44760 68.07420 110 37 - + 135.29423 10.50000 368.83260 72.05670 110 37 - 70.68123 10.50000 347.71128 75.72060 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 77.22843 28.10000 376.85688 82.26780 1 0 A - 82.26780 28.10000 376.85688 82.26780 110 0 - - 86.13800 30.50000 380.83128 83.16060 110 23 - - 72.76974 30.50000 540.54390 67.06500 110 13 - - 79.42978 32.60000 549.00690 68.11500 110 14 - - 79.42978 32.60000 549.00690 68.11500 110 14 - - 88.07938 35.10000 559.08190 69.36500 110 16 - - 88.07938 35.10000 559.08190 69.36500 110 16 - - 97.47902 37.60000 569.15690 70.61500 110 17 - - 97.47902 37.60000 569.15690 70.61500 110 17 - - 101.03977 38.50000 572.78390 71.06500 110 18 - - 101.03977 38.50000 572.78390 71.06500 110 18 - - 165.15586 52.12500 627.69265 77.87750 110 26 - - 165.15586 52.12500 627.69265 77.87750 110 26 - - 244.48696 65.75000 682.60140 84.69000 110 36 - - 244.48696 65.75000 682.60140 84.69000 110 36 - - 332.08556 79.37500 737.51015 91.50250 110 45 - - 332.08556 79.37500 737.51015 91.50250 110 45 - - 417.42737 93.00000 792.41890 98.31500 110 53 - - 417.42737 93.00000 792.41890 98.31500 110 53 - - 445.11411 98.00000 812.56890 100.81500 110 55 - - 445.11411 98.00000 812.56890 100.81500 110 55 - - 447.70590 98.50000 814.58390 101.06500 110 55 - - 447.70590 98.50000 814.58390 101.06500 110 55 - - 457.69318 100.50000 822.64390 102.06500 110 56 - - 457.69318 100.50000 822.64390 102.06500 110 56 - - 469.22850 103.00000 832.71890 103.31500 110 56 - - 456.01906 103.00000 832.71890 103.31500 110 55 - - 474.87525 108.00000 852.86890 105.81500 110 56 - - 454.32400 108.00000 852.86890 105.81500 110 53 - - 466.25813 113.00000 873.01890 108.31500 110 53 - - 464.96283 113.00000 873.01890 108.31500 110 53 - - 465.74359 113.50000 875.03390 108.56500 110 53 - - 464.74383 113.50000 875.03390 108.56500 110 53 - - 466.58264 115.00000 881.07890 109.31500 110 53 - - 466.26130 115.00000 881.07890 109.31500 110 53 - - 466.70231 115.50000 883.09390 109.56500 110 53 - - 464.30980 115.50000 883.09390 109.56500 110 53 - - 459.10099 123.00000 913.31890 113.31500 110 50 - - 473.25495 123.00000 913.31890 113.31500 110 52 - - 455.70330 128.00000 933.46890 115.81500 110 49 - - 439.02563 128.00000 933.46890 115.81500 110 47 - - 436.50481 128.50000 935.48390 116.06500 110 47 - - 482.35699 128.50000 935.48390 116.06500 110 52 - - 474.21712 130.00000 941.52890 116.81500 110 50 - - 474.21712 130.00000 941.52890 116.81500 110 50 - - 471.20380 130.50000 943.54390 117.06500 110 50 - - 471.20380 130.50000 943.54390 117.06500 110 50 - - 375.19657 140.50000 983.84390 122.06500 110 38 - - 267.22687 140.50000 700.38000 207.51050 110 38 - + 82.26780 28.10000 376.85688 82.26780 110 22 - + 86.13822 30.50000 380.83128 83.16060 110 23 - + 72.77010 30.50000 540.54390 67.06500 110 13 - + 79.43043 32.60000 549.00690 68.11500 110 14 - + 79.43043 32.60000 549.00690 68.11500 110 14 - + 88.08034 35.10000 559.08190 69.36500 110 16 - + 88.08034 35.10000 559.08190 69.36500 110 16 - + 97.48025 37.60000 569.15690 70.61500 110 17 - + 97.48025 37.60000 569.15690 70.61500 110 17 - + 101.04109 38.50000 572.78390 71.06500 110 18 - + 101.04109 38.50000 572.78390 71.06500 110 18 - + 165.15808 52.12500 627.69265 77.87750 110 26 - + 165.15808 52.12500 627.69265 77.87750 110 26 - + 244.48945 65.75000 682.60140 84.69000 110 36 - + 244.48945 65.75000 682.60140 84.69000 110 36 - + 332.08790 79.37500 737.51015 91.50250 110 45 - + 332.08790 79.37500 737.51015 91.50250 110 45 - + 417.42936 93.00000 792.41890 98.31500 110 53 - + 417.42936 93.00000 792.41890 98.31500 110 53 - + 445.11594 98.00000 812.56890 100.81500 110 55 - + 445.11594 98.00000 812.56890 100.81500 110 55 - + 447.70771 98.50000 814.58390 101.06500 110 55 - + 447.70771 98.50000 814.58390 101.06500 110 55 - + 457.69493 100.50000 822.64390 102.06500 110 56 - + 457.69493 100.50000 822.64390 102.06500 110 56 - + 469.23016 103.00000 832.71890 103.31500 110 56 - + 456.02072 103.00000 832.71890 103.31500 110 55 - + 474.87674 108.00000 852.86890 105.81500 110 56 - + 454.32549 108.00000 852.86890 105.81500 110 53 - + 466.25945 113.00000 873.01890 108.31500 110 53 - + 464.96415 113.00000 873.01890 108.31500 110 53 - + 465.74490 113.50000 875.03390 108.56500 110 53 - + 464.74513 113.50000 875.03390 108.56500 110 53 - + 466.58389 115.00000 881.07890 109.31500 110 53 - + 466.26255 115.00000 881.07890 109.31500 110 53 - + 466.70355 115.50000 883.09390 109.56500 110 53 - + 464.31103 115.50000 883.09390 109.56500 110 53 - + 459.10196 123.00000 913.31890 113.31500 110 50 - + 473.25593 123.00000 913.31890 113.31500 110 52 - + 455.70411 128.00000 933.46890 115.81500 110 49 - + 439.02644 128.00000 933.46890 115.81500 110 47 - + 436.50560 128.50000 935.48390 116.06500 110 47 - + 482.35779 128.50000 935.48390 116.06500 110 52 - + 474.21786 130.00000 941.52890 116.81500 110 50 - + 474.21786 130.00000 941.52890 116.81500 110 50 - + 471.20453 130.50000 943.54390 117.06500 110 50 - + 471.20453 130.50000 943.54390 117.06500 110 50 - + 375.19697 140.50000 983.84390 122.06500 110 38 - + 267.22712 140.50000 700.38000 207.51050 110 38 - 201.46323 153.30000 728.64240 216.21450 1 0 A 201.46323 153.30000 728.64240 216.21450 1 0 A 209.96323 165.80000 756.24240 224.71450 1 0 A @@ -53588,9 +53733,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 345.503 'Remblais LT' + 20.00 345.500 'Remblais LT' 16.00 150.369 'Argile et limon LT' - 14.00 3575.515 'Sable et gravier LT' + 14.00 3575.534 'Sable et gravier LT' 3.00 3128.129 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -55338,7 +55483,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -55698,7 +55843,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 45.18645 0.00000 45.18645 9.57128 110 100 - 45.18645 0.00000 45.18645 9.57128 110 100 - 50.30351 2.00000 50.30351 10.65516 110 100 - @@ -55983,30 +56128,30 @@ Status character 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A - 20.13700 0.00000 41.75785 20.13700 110 48 - - 19.11135 0.00000 55.64486 19.11135 110 34 - - 20.74734 0.00000 60.40823 20.74734 110 0 - - 19.64470 0.00000 64.16891 19.64470 110 31 - - 27.83633 0.00000 90.92666 27.83633 110 31 - - 26.99013 0.00000 99.75756 26.99013 110 27 - - 28.59825 0.00000 105.70133 28.59825 110 27 - - 28.48104 0.00000 103.29488 28.48104 110 0 - - 28.67553 0.50000 104.00025 28.67553 110 28 - - 28.58957 0.50000 113.05053 33.25328 110 0 - - 32.56256 10.50000 128.76079 37.87438 110 0 - + 20.13700 0.00000 41.75785 20.13700 1 48 A + 19.11135 0.00000 55.64486 19.11135 1 34 A + 20.74734 0.00000 60.40823 20.74734 1 34 A + 19.64470 0.00000 64.16891 19.64470 1 31 A + 27.83633 0.00000 90.92666 27.83633 1 31 A + 26.99013 0.00000 99.75756 26.99013 1 27 A + 28.59825 0.00000 105.70133 28.59825 1 27 A + 28.48104 0.00000 103.29488 28.48104 1 28 A + 28.67553 0.50000 104.00025 28.67553 1 28 A + 28.58957 0.50000 113.05053 33.25328 1 0 A + 32.56256 10.50000 128.76079 37.87438 1 0 A 75.79273 10.50000 82.34866 81.79656 110 0 - 83.96431 19.30000 90.07377 89.46987 110 0 - 64.57476 19.30000 70.08032 70.08032 110 0 - 72.75568 28.10000 77.77110 77.77110 110 0 - - 154.56354 28.10000 154.56354 154.56354 202 100 P - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.40965 32.60000 340.10283 90.40965 110 27 - - 97.73165 37.60000 367.64672 97.73165 110 0 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 27 - - 95.87890 38.50000 399.20272 95.87890 110 24 - + 154.56354 28.10000 154.56354 154.56354 1 100 A + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.40965 32.60000 340.10283 90.40965 1 27 A + 97.73165 37.60000 367.64672 97.73165 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A 114.49786 52.12500 476.72488 114.49786 1 24 A 99.40436 52.12500 626.12728 99.40436 1 16 A 114.47196 65.75000 721.03501 114.47196 1 16 A @@ -56992,7 +57137,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -57353,15 +57498,15 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 5.00000 0.00000 0.00000 -1 0 - - 0.00000 5.00000 0.00000 0.00000 202 100 P - 3.44263 5.90000 3.44263 0.46465 202 100 P - 3.44263 5.90000 3.44263 0.46465 202 100 P - 55.56023 19.52500 55.56023 7.49892 202 100 P - 55.56023 19.52500 55.56023 7.49892 202 100 P - 107.67783 33.15000 107.67783 14.53318 202 100 P - 107.67783 33.15000 107.67783 14.53318 202 100 P - 159.79543 46.77500 159.79543 21.56745 202 100 P - 159.79543 46.77500 159.79543 21.56745 202 100 P + 0.00000 5.00000 0.00000 0.00000 110 100 - + 3.44263 5.90000 3.44263 0.46465 110 100 - + 3.44263 5.90000 3.44263 0.46465 110 100 - + 55.56023 19.52500 55.56023 7.49892 110 100 - + 55.56023 19.52500 55.56023 7.49892 110 100 - + 107.67783 33.15000 107.67783 14.53318 110 100 - + 107.67783 33.15000 107.67783 14.53318 110 100 - + 159.79543 46.77500 159.79543 21.56745 110 100 - + 159.79543 46.77500 159.79543 21.56745 110 100 - 206.89512 60.40000 211.91303 28.60172 110 98 - 206.89512 60.40000 211.91303 28.60172 110 98 - 202.76622 65.40000 231.03876 31.18310 110 88 - @@ -57620,17 +57765,17 @@ Status character 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A - 20.13700 0.00000 41.75785 20.13700 110 48 - - 19.11135 0.00000 55.64486 19.11135 110 34 - - 20.74734 0.00000 60.40823 20.74734 110 0 - - 19.64470 0.00000 64.16891 19.64470 110 31 - - 27.83633 0.00000 90.92666 27.83633 110 31 - - 26.99013 0.00000 99.75756 26.99013 110 27 - - 28.59825 0.00000 105.70133 28.59825 110 27 - - 28.48104 0.00000 103.29488 28.48104 110 0 - - 28.67553 0.50000 104.00025 28.67553 110 28 - - 28.58957 0.50000 113.05053 33.25328 110 0 - - 32.56256 10.50000 128.76079 37.87438 110 0 - + 20.13700 0.00000 41.75785 20.13700 1 48 A + 19.11135 0.00000 55.64486 19.11135 1 34 A + 20.74734 0.00000 60.40823 20.74734 1 34 A + 19.64470 0.00000 64.16891 19.64470 1 31 A + 27.83633 0.00000 90.92666 27.83633 1 31 A + 26.99013 0.00000 99.75756 26.99013 1 27 A + 28.59825 0.00000 105.70133 28.59825 1 27 A + 28.48104 0.00000 103.29488 28.48104 1 28 A + 28.67553 0.50000 104.00025 28.67553 1 28 A + 28.58957 0.50000 113.05053 33.25328 1 0 A + 32.56256 10.50000 128.76079 37.87438 1 0 A 71.89440 10.50000 82.34866 81.79656 110 0 - 79.10521 19.30000 90.07377 89.46987 110 0 - 59.71566 19.30000 70.08032 70.08032 110 0 - @@ -57942,7 +58087,7 @@ Displacements 2019.90440 175.81494 20.11353 2083.64712 78.46271 20.60979 2083.64624 78.45564 20.60979 - 2087.32310 68.61600 20.65405 + 2087.32310 68.61599 20.65405 2087.32388 68.60901 20.65405 2098.34966 -19.81787 21.00796 2098.35030 -19.83624 21.00796 @@ -59598,7 +59743,7 @@ Displacements 1594.72518 95.08635 20.35861 1609.78580 -52.72414 20.72057 1609.70722 -53.14900 20.72057 - 1561.60895 -137.40631 20.84820 + 1561.60895 -137.40630 20.84820 1561.60650 -137.42598 20.84820 1554.63405 -141.45205 20.85687 1554.63406 -141.45248 20.85687 @@ -60397,7 +60542,7 @@ Displacements 357.28127 262.73638 16.30141 452.22560 116.14839 16.70395 452.21956 116.10003 16.70395 - 457.65379 101.26126 16.74309 + 457.65379 101.26125 16.74309 457.65792 101.22451 16.74309 473.04369 -33.41520 17.08545 473.04611 -33.50425 17.08545 @@ -60408,7 +60553,7 @@ Displacements 735.13152 497.58968 17.81366 735.13160 497.58763 17.81366 806.74136 457.24262 17.90765 - 806.83569 456.76859 17.90765 + 806.83568 456.76859 17.90765 1088.59296 248.85007 18.34485 1088.50242 248.34712 18.34485 1179.48214 116.12045 18.55352 @@ -61212,7 +61357,7 @@ Displacements 236.16926 284.00841 16.75599 343.27663 143.68265 17.23101 343.27023 143.63140 17.23101 - 350.09792 129.46990 17.27769 + 350.09792 129.46989 17.27769 350.10225 129.43131 17.27769 379.62263 1.33255 17.69011 379.62510 1.23955 17.69011 @@ -62017,8 +62162,8 @@ Displacements 172.81953 -633.22184 14.85878 172.94897 71.93525 14.85878 167.76347 -93.82525 15.14118 - 167.75670 -93.87947 15.14118 - 162.64199 -110.71938 15.16896 + 167.75670 -93.87948 15.14118 + 162.64199 -110.71939 15.16896 162.64682 -110.76242 15.16896 78.48940 -264.02493 15.41600 78.49253 -264.13165 15.41600 @@ -64384,7 +64529,7 @@ Displacements -3356.56520 -1255.97226 6.71315 -3356.67384 -1256.45369 6.71315 -4497.03423 -1337.54374 7.56553 - -4497.03258 -1337.60110 7.56553 + -4497.03259 -1337.60110 7.56553 -5707.18841 -1414.91152 9.07584 -5707.19554 1255.70419 9.07584 -5411.15315 1211.04117 9.62378 @@ -64393,14 +64538,14 @@ Displacements -5159.84389 1182.24113 10.15158 -4584.61295 1117.65581 11.57730 -4584.60939 1117.68441 11.57730 - -4484.57264 1105.32119 11.85767 + -4484.57264 1105.32118 11.85767 -4484.69096 1105.66870 11.85767 -3112.92459 900.61124 16.85571 -3112.81561 900.98603 16.85571 -2034.74969 674.98044 22.95265 -2034.62315 674.66376 22.95265 -1275.60047 433.64169 29.77161 - -1275.84034 433.65771 29.77161 + -1275.84034 433.65770 29.77161 -854.92540 178.81766 37.04729 -854.79596 179.12360 37.04729 -789.39891 81.77137 39.79892 @@ -64420,8 +64565,8 @@ Displacements -1173.00169 -379.32931 54.13681 -1173.10807 -379.95156 54.13681 -1387.97237 -480.08738 57.14575 - -1387.97932 -480.14303 57.14575 - -1412.14668 -486.55553 57.45006 + -1387.97932 -480.14302 57.14575 + -1412.14668 -486.55552 57.45006 -1412.14664 -486.55679 57.45006 -1488.94011 -537.43440 58.36706 -1488.71918 -538.27745 58.36706 @@ -65162,7 +65307,7 @@ Displacements -1026.73149 118.32594 36.24239 -994.69922 9.09238 38.95688 -994.70658 9.03344 38.95688 - -994.53368 -2.12414 39.23093 + -994.53368 -2.12415 39.23093 -994.52838 -2.17133 39.23093 -1018.39325 -104.45288 41.71851 -1018.38975 -104.57047 41.71851 @@ -65177,8 +65322,8 @@ Displacements -1657.67502 -533.32854 53.29781 -1657.78853 -534.00778 53.29781 -1954.04701 -651.47381 56.36354 - -1954.05560 -651.54263 56.36354 - -1986.90911 -662.60160 56.67494 + -1954.05560 -651.54262 56.36354 + -1986.90911 -662.60159 56.67494 -1986.90905 -662.60327 56.67494 -2089.31267 -702.82062 57.61483 -2089.04970 -703.82426 57.61483 @@ -65930,7 +66075,7 @@ Displacements -5271.14058 -1436.10978 47.36048 -5271.28387 -1437.02284 47.36048 -6030.36054 -1599.27306 50.83892 - -6030.37566 -1599.39416 50.83892 + -6030.37566 -1599.39415 50.83892 -6110.72997 -1614.77673 51.20181 -6110.72986 -1614.78000 51.20181 -6356.92052 -1667.74858 52.30790 @@ -66571,9 +66716,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 264.01673 0.00000 0 'Dalle toiture 18.85' - 10 14.24000 -1037.21327 0.00000 0 'Dalle raide 14.24' - 31 1.72000 -6866.07669 0.00000 0 'Dalle radier 1,72' + 2 18.85000 264.51644 0.00000 0 'Dalle toiture 18.85' + 10 14.24000 -1037.30150 0.00000 0 'Dalle raide 14.24' + 31 1.72000 -6866.07548 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -66631,86 +66776,86 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.07436 -0.25865 6.20833 - -29.83381 -52.80416 6.52575 - -29.95137 -316.73402 6.52575 - -194.81818 -343.62606 6.66654 - -194.77498 -343.28089 6.66654 - -252.23711 -353.32508 6.71463 - -252.20891 -353.44613 6.71463 - -612.68854 -420.45822 7.02081 - -612.71666 -420.58070 7.02081 - -698.47008 -437.06631 7.09732 - -698.47016 -437.06811 7.09732 - -720.42917 -441.30108 7.11725 - -720.35194 -441.61001 7.11725 - -1205.09297 -530.73639 7.60162 - -1205.17517 -531.02268 7.60162 - -1705.46680 -607.77455 8.21370 - -1705.46817 -607.72311 8.21370 - -2277.93107 -695.09975 9.07584 - -2277.92490 342.14517 9.07584 - -2199.03941 315.02247 9.36466 - -2199.03954 315.03101 9.36466 - -2135.17031 293.00443 9.63702 - -2135.17855 293.07844 9.63702 - -2002.93208 234.41157 10.35610 - -2002.92355 234.48023 10.35610 - -1982.33651 222.95822 10.49574 - -1982.63803 223.84382 10.49574 - -1815.87939 7.86974 12.96594 - -1815.64908 8.96408 12.96594 - -1997.05058 -289.75263 16.08223 - -1996.79530 -290.08386 16.08223 - -2644.94127 -675.81763 19.91160 - -2645.03388 -676.62641 19.91160 - -3876.87528 -1144.44978 24.68453 - -3876.95397 -1144.82022 24.68453 - -4496.55055 -1335.01628 26.75155 - -4496.56330 -1335.11839 26.75155 - -4563.80626 -1354.61326 26.96941 - -4563.79663 -1354.69892 26.96941 - -5213.41719 -1533.49794 29.03104 - -5213.41026 -1533.71593 29.03104 - -6029.58799 -1731.94675 31.55685 - -6029.58639 -1732.22440 31.55685 - -6943.70279 -1924.84436 34.36745 - -6943.72094 -1924.98972 34.36745 - -7040.45509 -1944.38046 34.66580 - -7040.45491 -1944.38553 34.66580 - -7336.47189 -2002.53873 35.58094 - -7336.27526 -2003.52774 35.58094 - -9062.47899 -2311.90843 41.02009 - -9062.65387 -2313.06803 41.02009 --10268.80360 -2510.96195 44.96208 --10268.82554 -2511.13765 44.96208 --10394.85161 -2529.89671 45.38196 --10394.85144 -2529.90163 45.38196 --10779.05564 -2592.74189 46.67127 --10778.47208 -2594.97040 46.67127 --13726.02111 -3012.51810 57.07411 --13728.37753 -3009.20225 57.07411 --17876.75789 -3470.30635 73.69488 + 0.00023 -0.00079 6.20822 + -29.61189 -52.54692 6.52575 + -29.64923 -316.76722 6.52575 + -194.53264 -343.65918 6.66658 + -194.49551 -343.36259 6.66658 + -251.97111 -353.40672 6.71468 + -251.94291 -353.52776 6.71468 + -612.49864 -420.53933 7.02088 + -612.52677 -420.66180 7.02088 + -698.29638 -437.14727 7.09739 + -698.29647 -437.14908 7.09739 + -720.25953 -441.38201 7.11732 + -720.18230 -441.69093 7.11732 + -1205.00394 -530.81671 7.60167 + -1205.08614 -531.10298 7.60167 + -1705.44843 -607.85485 8.21373 + -1705.44980 -607.80341 8.21373 + -2277.98337 -695.18005 9.07584 + -2277.97720 342.15310 9.07584 + -2199.08981 315.03039 9.36466 + -2199.08994 315.03892 9.36466 + -2135.21905 293.01232 9.63701 + -2135.22729 293.08632 9.63701 + -2002.97690 234.41933 10.35608 + -2002.96837 234.48799 10.35608 + -1982.38063 222.96595 10.49572 + -1982.68216 223.85153 10.49572 + -1815.91345 7.87674 12.96589 + -1815.68314 8.97106 12.96589 + -1997.07581 -289.74668 16.08217 + -1996.82054 -290.07793 16.08217 + -2644.95919 -675.81284 19.91154 + -2645.05180 -676.62162 19.91154 + -3876.88744 -1144.44609 24.68448 + -3876.96613 -1144.81654 24.68448 + -4496.56097 -1335.01297 26.75149 + -4496.57372 -1335.11508 26.75149 + -4563.81651 -1354.60999 26.96936 + -4563.80689 -1354.69566 26.96936 + -5213.42604 -1533.49499 29.03099 + -5213.41912 -1533.71298 29.03099 + -6029.59545 -1731.94413 31.55680 + -6029.59385 -1732.22178 31.55680 + -6943.70902 -1924.84204 34.36741 + -6943.72717 -1924.98740 34.36741 + -7040.46121 -1944.37817 34.66576 + -7040.46102 -1944.38324 34.66576 + -7336.47767 -2002.53653 35.58090 + -7336.28104 -2003.52553 35.58090 + -9062.48317 -2311.90662 41.02006 + -9062.65805 -2313.06622 41.02006 +-10268.80693 -2510.96034 44.96205 +-10268.82886 -2511.13604 44.96205 +-10394.85486 -2529.89512 45.38194 +-10394.85468 -2529.90004 45.38194 +-10779.05865 -2592.74036 46.67124 +-10778.47509 -2594.96887 46.67124 +-13726.02267 -3012.51685 57.07409 +-13728.37909 -3009.20098 57.07409 +-17876.75790 -3470.30516 73.69488 -17875.26732 3402.21270 73.69488 --13905.12897 2945.63366 94.84117 --13904.84377 2946.50749 94.84117 --12678.24433 2785.05801 103.08100 --12678.24742 2785.02905 103.08100 --12478.70727 2757.74692 104.51133 --12478.22041 2756.37955 104.51133 - -8902.61249 2269.70043 135.07615 - -8903.45037 2269.31891 135.07615 - -5999.48177 1813.63664 169.07006 - -5998.99631 1814.24488 169.07006 - -3721.10897 1389.55946 205.38014 - -3721.20286 1389.06799 205.38014 - -2026.81470 995.37942 243.13313 - -2026.83502 995.20869 243.13313 - -871.34084 632.51698 281.67910 - -871.35376 632.43960 281.67910 - -210.47223 300.74473 320.57435 - -210.47489 300.71110 320.57435 - 0.00466 0.01309 359.56454 +-13905.12897 2945.63366 94.84118 +-13904.84377 2946.50749 94.84118 +-12678.24433 2785.05801 103.08101 +-12678.24742 2785.02905 103.08101 +-12478.70727 2757.74692 104.51135 +-12478.22041 2756.37955 104.51135 + -8902.61249 2269.70043 135.07618 + -8903.45037 2269.31891 135.07618 + -5999.48177 1813.63664 169.07011 + -5998.99631 1814.24488 169.07011 + -3721.10897 1389.55946 205.38020 + -3721.20286 1389.06799 205.38020 + -2026.81470 995.37942 243.13321 + -2026.83502 995.20869 243.13321 + -871.34084 632.51698 281.67920 + -871.35376 632.43960 281.67920 + -210.47223 300.74473 320.57447 + -210.47489 300.71110 320.57447 + 0.00466 0.01309 359.56467 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -66960,65 +67105,65 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 42.95629 0.00000 188.84060 36.89270 110 23 - - 48.42720 0.00000 247.88160 48.42720 110 20 - - 48.42720 0.00000 247.88160 48.42720 110 20 - - 59.14097 0.00000 273.55160 53.44220 110 22 - - 59.14097 0.00000 273.55160 53.44220 110 22 - - 62.60674 0.00000 282.02270 55.09715 110 22 - - 62.60674 0.00000 282.02270 55.09715 110 22 - - 80.73462 0.00000 330.02560 64.47520 110 24 - - 80.73462 0.00000 330.02560 64.47520 110 24 - - 84.12143 0.00000 340.29360 66.48120 110 25 - - 84.12143 0.00000 340.29360 66.48120 110 25 - - 84.69707 0.50000 341.65260 66.74670 110 25 - - 80.03335 0.50000 341.65260 66.74670 110 23 - - 87.21942 10.50000 368.83260 72.05670 110 24 - + 42.95737 0.00000 188.84060 36.89270 110 23 - + 48.42720 0.00000 247.88160 48.42720 1 20 A + 48.42720 0.00000 247.88160 48.42720 1 20 A + 59.14063 0.00000 273.55160 53.44220 110 22 - + 59.14063 0.00000 273.55160 53.44220 110 22 - + 62.60631 0.00000 282.02270 55.09715 110 22 - + 62.60631 0.00000 282.02270 55.09715 110 22 - + 80.73395 0.00000 330.02560 64.47520 110 24 - + 80.73395 0.00000 330.02560 64.47520 110 24 - + 84.12075 0.00000 340.29360 66.48120 110 25 - + 84.12075 0.00000 340.29360 66.48120 110 25 - + 84.69639 0.50000 341.65260 66.74670 110 25 - + 80.03268 0.50000 341.65260 66.74670 110 23 - + 87.21888 10.50000 368.83260 72.05670 110 24 - 70.68123 10.50000 347.71128 75.72060 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 77.22843 28.10000 376.85688 82.26780 1 0 A 82.26780 28.10000 376.85688 82.26780 110 22 - - 85.15472 30.50000 380.83128 83.16060 110 22 - - 70.91849 30.50000 540.54390 67.06500 110 13 - - 75.75843 32.60000 549.00690 68.11500 110 14 - - 75.75843 32.60000 549.00690 68.11500 110 14 - - 88.70901 37.60000 569.15690 70.61500 110 16 - - 88.70901 37.60000 569.15690 70.61500 110 16 - - 91.23563 38.50000 572.78390 71.06500 110 16 - - 91.23563 38.50000 572.78390 71.06500 110 16 - - 135.16554 52.12500 627.69265 77.87750 110 22 - - 135.16554 52.12500 627.69265 77.87750 110 22 - - 185.44270 65.75000 682.60140 84.69000 110 27 - - 185.44270 65.75000 682.60140 84.69000 110 27 - - 235.64701 79.37500 737.51015 91.50250 110 32 - - 235.64701 79.37500 737.51015 91.50250 110 32 - - 278.69119 93.00000 792.41890 98.31500 110 35 - - 278.69119 93.00000 792.41890 98.31500 110 35 - - 291.09303 98.00000 812.56890 100.81500 110 36 - - 291.09303 98.00000 812.56890 100.81500 110 36 - - 292.20180 98.50000 814.58390 101.06500 110 36 - - 292.20180 98.50000 814.58390 101.06500 110 36 - - 300.96051 103.00000 832.71890 103.31500 110 36 - - 287.75106 103.00000 832.71890 103.31500 110 35 - - 294.17223 108.00000 852.86890 105.81500 110 34 - - 273.62098 108.00000 852.86890 105.81500 110 32 - - 275.85887 113.00000 873.01890 108.31500 110 32 - - 274.56357 113.00000 873.01890 108.31500 110 31 - - 274.56582 113.50000 875.03390 108.56500 110 31 - - 273.56606 113.50000 875.03390 108.56500 110 31 - - 273.31001 115.00000 881.07890 109.31500 110 31 - - 270.75022 115.00000 881.07890 109.31500 110 31 - - 262.20151 123.00000 913.31890 113.31500 110 29 - - 276.20154 123.00000 913.31890 113.31500 110 30 - - 264.37415 128.00000 933.46890 115.81500 110 28 - - 247.69647 128.00000 933.46890 115.81500 110 27 - - 246.16604 128.50000 935.48390 116.06500 110 26 - - 292.01823 128.50000 935.48390 116.06500 110 31 - - 287.35190 130.00000 941.52890 116.81500 110 31 - - 287.35190 130.00000 941.52890 116.81500 110 31 - - 237.47705 140.50000 983.84390 122.06500 110 24 - - 225.21193 140.50000 700.38000 207.51050 110 32 - + 85.15478 30.50000 380.83128 83.16060 110 22 - + 70.91859 30.50000 540.54390 67.06500 110 13 - + 75.75861 32.60000 549.00690 68.11500 110 14 - + 75.75861 32.60000 549.00690 68.11500 110 14 - + 88.70936 37.60000 569.15690 70.61500 110 16 - + 88.70936 37.60000 569.15690 70.61500 110 16 - + 91.23600 38.50000 572.78390 71.06500 110 16 - + 91.23600 38.50000 572.78390 71.06500 110 16 - + 135.16622 52.12500 627.69265 77.87750 110 22 - + 135.16622 52.12500 627.69265 77.87750 110 22 - + 185.44353 65.75000 682.60140 84.69000 110 27 - + 185.44353 65.75000 682.60140 84.69000 110 27 - + 235.64785 79.37500 737.51015 91.50250 110 32 - + 235.64785 79.37500 737.51015 91.50250 110 32 - + 278.69196 93.00000 792.41890 98.31500 110 35 - + 278.69196 93.00000 792.41890 98.31500 110 35 - + 291.09376 98.00000 812.56890 100.81500 110 36 - + 291.09376 98.00000 812.56890 100.81500 110 36 - + 292.20253 98.50000 814.58390 101.06500 110 36 - + 292.20253 98.50000 814.58390 101.06500 110 36 - + 300.96119 103.00000 832.71890 103.31500 110 36 - + 287.75175 103.00000 832.71890 103.31500 110 35 - + 294.17286 108.00000 852.86890 105.81500 110 34 - + 273.62161 108.00000 852.86890 105.81500 110 32 - + 275.85944 113.00000 873.01890 108.31500 110 32 - + 274.56414 113.00000 873.01890 108.31500 110 31 - + 274.56638 113.50000 875.03390 108.56500 110 31 - + 273.56662 113.50000 875.03390 108.56500 110 31 - + 273.31056 115.00000 881.07890 109.31500 110 31 - + 270.75076 115.00000 881.07890 109.31500 110 31 - + 262.20196 123.00000 913.31890 113.31500 110 29 - + 276.20198 123.00000 913.31890 113.31500 110 30 - + 264.37452 128.00000 933.46890 115.81500 110 28 - + 247.69685 128.00000 933.46890 115.81500 110 27 - + 246.16641 128.50000 935.48390 116.06500 110 26 - + 292.01860 128.50000 935.48390 116.06500 110 31 - + 287.35224 130.00000 941.52890 116.81500 110 31 - + 287.35224 130.00000 941.52890 116.81500 110 31 - + 237.47725 140.50000 983.84390 122.06500 110 24 - + 225.21205 140.50000 700.38000 207.51050 110 32 - 201.46323 153.30000 728.64240 216.21450 1 0 A 201.46323 153.30000 728.64240 216.21450 1 0 A 209.96323 165.80000 756.24240 224.71450 1 0 A @@ -67052,9 +67197,9 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 260.826 'Remblais LT' + 20.00 260.825 'Remblais LT' 16.00 150.251 'Argile et limon LT' - 14.00 2382.270 'Sable et gravier LT' + 14.00 2382.276 'Sable et gravier LT' 3.00 3101.240 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] @@ -68802,7 +68947,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=3 CalculationStatus=0 -IterationCount=4 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -69162,7 +69307,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 110 99 - + 0.00000 0.00000 0.00000 0.00000 110 100 - 45.18645 0.00000 45.18645 9.57128 110 100 - 45.18645 0.00000 45.18645 9.57128 110 100 - 50.30351 2.00000 50.30351 10.65516 110 100 - @@ -69447,44 +69592,44 @@ Status character 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A - 20.13700 0.00000 41.75785 20.13700 110 48 - - 19.11135 0.00000 55.64486 19.11135 110 34 - - 20.74734 0.00000 60.40823 20.74734 110 34 - - 19.64470 0.00000 64.16891 19.64470 110 31 - - 27.83633 0.00000 90.92666 27.83633 110 31 - - 26.99013 0.00000 99.75756 26.99013 110 27 - - 28.59825 0.00000 105.70133 28.59825 110 27 - - 28.48104 0.00000 103.29488 28.48104 110 0 - - 28.67553 0.50000 104.00025 28.67553 110 28 - - 28.58957 0.50000 113.05053 33.25328 110 0 - - 32.56256 10.50000 128.76079 37.87438 110 0 - + 20.13700 0.00000 41.75785 20.13700 1 48 A + 19.11135 0.00000 55.64486 19.11135 1 34 A + 20.74734 0.00000 60.40823 20.74734 1 34 A + 19.64470 0.00000 64.16891 19.64470 1 31 A + 27.83633 0.00000 90.92666 27.83633 1 31 A + 26.99013 0.00000 99.75756 26.99013 1 27 A + 28.59825 0.00000 105.70133 28.59825 1 27 A + 28.48104 0.00000 103.29488 28.48104 1 28 A + 28.67553 0.50000 104.00025 28.67553 1 28 A + 28.58957 0.50000 113.05053 33.25328 1 0 A + 32.56256 10.50000 128.76079 37.87438 1 0 A 74.44361 10.50000 82.34866 81.79656 110 0 - 82.91296 19.30000 90.07377 89.46987 110 0 - 63.52341 19.30000 70.08032 70.08032 110 0 - 71.98590 28.10000 77.77110 77.77110 110 0 - - 154.56354 28.10000 154.56354 154.56354 202 100 P - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.40965 32.60000 340.10283 90.40965 110 27 - - 97.73165 37.60000 367.64672 97.73165 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 0 - - 95.87890 38.50000 399.20272 95.87890 110 0 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 16 - - 98.25238 65.75000 523.50997 98.25238 110 19 - - 110.41648 79.37500 588.32291 110.41648 110 19 - - 95.81454 79.37500 950.81689 95.81454 110 10 - - 105.88759 93.00000 1050.77697 105.88759 110 0 - - 97.54498 93.00000 726.27457 97.54498 110 13 - - 100.86397 98.00000 750.98622 100.86397 110 0 - - 98.63166 98.00000 783.99309 98.63166 110 0 - - 98.95406 98.50000 786.55576 98.95406 110 13 - - 97.08874 98.50000 739.54840 97.08874 110 13 - - 99.91962 103.00000 761.11188 99.91962 110 13 - - 82.75845 103.00000 587.17291 95.96789 110 0 - + 154.56354 28.10000 154.56354 154.56354 1 100 A + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.40965 32.60000 340.10283 90.40965 1 27 A + 97.73165 37.60000 367.64672 97.73165 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A + 110.41648 79.37500 588.32291 110.41648 1 19 A + 95.81454 79.37500 950.81689 95.81454 1 10 A + 105.88759 93.00000 1050.77697 105.88759 1 10 A + 97.54498 93.00000 726.27457 97.54498 1 13 A + 100.86397 98.00000 750.98622 100.86397 1 13 A + 98.63166 98.00000 783.99309 98.63166 1 13 A + 98.95406 98.50000 786.55576 98.95406 1 13 A + 97.08874 98.50000 739.54840 97.08874 1 13 A + 99.91962 103.00000 761.11188 99.91962 1 13 A + 82.75845 103.00000 587.17291 95.96789 1 0 A 85.33756 108.00000 605.47174 98.95866 1 0 A 63.24295 108.00000 605.32255 97.41530 1 0 A 67.53907 113.00000 623.44175 100.33125 110 0 - @@ -69494,14 +69639,14 @@ Status character 68.12807 115.00000 630.70714 100.40367 110 0 - 66.88367 115.00000 630.98632 99.15927 110 0 - 72.75317 123.00000 659.58363 103.65333 110 0 - - 73.78132 123.00000 660.25337 102.09624 110 0 - - 75.76200 128.00000 677.97801 104.83704 110 0 - + 73.78132 123.00000 660.25337 102.09624 1 0 A + 75.76200 128.00000 677.97801 104.83704 1 0 A 73.71640 128.00000 678.35294 104.23204 110 0 - 74.01052 128.50000 680.12003 104.50356 110 0 - - 209.12012 128.50000 680.26871 209.12012 110 31 - - 210.74810 130.00000 685.56455 210.74810 110 0 - - 123.39749 130.00000 686.57678 123.39749 110 0 - - 130.02497 140.50000 723.45171 130.02497 110 18 - + 209.12012 128.50000 680.26871 209.12012 1 31 A + 210.74810 130.00000 685.56455 210.74810 1 31 A + 123.39749 130.00000 686.57678 123.39749 1 18 A + 130.02497 140.50000 723.45171 130.02497 1 18 A 185.01378 140.50000 420.96623 195.73981 110 0 - 194.38267 153.30000 441.57723 205.32346 110 0 - 192.48476 153.30000 203.42555 203.42555 110 0 - @@ -70456,7 +70601,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=5 CalculationStatus=0 -IterationCount=3 +IterationCount=2 PartialFactorSet=10 [SUPPORT DATA] [TABLE] @@ -70817,7 +70962,7 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 5.00000 0.00000 0.00000 -1 0 - - 0.00000 5.00000 0.00000 0.00000 110 99 - + 0.00000 5.00000 0.00000 0.00000 110 100 - 3.44263 5.90000 3.44263 0.46465 110 100 - 3.44263 5.90000 3.44263 0.46465 110 100 - 55.56023 19.52500 55.56023 7.49892 110 100 - @@ -71081,7 +71226,7 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 202 100 P + 0.00000 0.00000 0.00000 0.00000 1 100 A 16.58815 0.00000 16.58815 16.58815 1 100 A 14.59010 0.00000 30.25532 14.59010 1 48 A 20.13700 0.00000 41.75785 20.13700 1 48 A @@ -71100,45 +71245,45 @@ Status character 52.97713 19.30000 70.08032 70.08032 110 0 - 59.95807 28.10000 77.77110 77.77110 110 0 - 154.56354 28.10000 154.56354 154.56354 1 100 A - 159.02830 30.50000 159.02830 159.02830 202 100 P - 103.92185 30.50000 284.69452 103.92185 110 37 - - 107.58087 32.60000 294.71842 107.58087 110 37 - - 90.40965 32.60000 340.10283 90.40965 110 27 - - 97.73165 37.60000 367.64672 97.73165 110 27 - - 98.65760 37.60000 366.40947 98.65760 110 27 - - 99.98078 38.50000 371.32367 99.98078 110 0 - - 95.87890 38.50000 399.20272 95.87890 110 0 - - 114.49786 52.12500 476.72488 114.49786 110 24 - - 99.40436 52.12500 626.12728 99.40436 110 16 - - 114.47196 65.75000 721.03501 114.47196 110 16 - - 98.25238 65.75000 523.50997 98.25238 110 19 - - 110.41648 79.37500 588.32291 110.41648 110 19 - - 95.81454 79.37500 950.81689 95.81454 110 10 - - 105.88759 93.00000 1050.77697 105.88759 110 0 - - 97.54498 93.00000 726.27457 97.54498 110 13 - - 100.86397 98.00000 750.98622 100.86397 110 0 - - 98.63166 98.00000 783.99309 98.63166 110 0 - - 98.95406 98.50000 786.55576 98.95406 110 13 - - 97.08874 98.50000 739.54840 97.08874 110 13 - - 99.91962 103.00000 761.11188 99.91962 110 13 - - 82.75845 103.00000 587.17291 95.96789 110 0 - - 85.33756 108.00000 605.47174 98.95866 110 0 - - 63.24295 108.00000 605.32255 97.41530 110 0 - - 65.13601 113.00000 623.44175 100.33125 110 0 - - 63.04358 113.00000 623.47218 99.53412 110 0 - - 63.22590 113.50000 625.27528 99.82197 110 0 - - 61.94815 113.50000 625.30680 99.54398 110 0 - - 62.48315 115.00000 630.70714 100.40367 110 0 - - 58.67896 115.00000 630.98632 99.15927 110 0 - - 61.33838 123.00000 659.58363 103.65333 110 0 - - 73.78132 123.00000 660.25337 102.09624 110 0 - - 75.76200 128.00000 677.97801 104.83704 110 0 - - 0.00000 128.00000 678.35294 104.23204 110 0 - - 0.00000 128.50000 680.12003 104.50356 110 0 - - 209.12012 128.50000 680.26871 209.12012 110 31 - - 210.74810 130.00000 685.56455 210.74810 110 0 - - 123.39749 130.00000 686.57678 123.39749 110 0 - - 130.02497 140.50000 723.45171 130.02497 110 18 - + 159.02830 30.50000 159.02830 159.02830 1 100 A + 103.92185 30.50000 284.69452 103.92185 1 37 A + 107.58087 32.60000 294.71842 107.58087 1 37 A + 90.40965 32.60000 340.10283 90.40965 1 27 A + 97.73165 37.60000 367.64672 97.73165 1 27 A + 98.65760 37.60000 366.40947 98.65760 1 27 A + 99.98078 38.50000 371.32367 99.98078 1 27 A + 95.87890 38.50000 399.20272 95.87890 1 24 A + 114.49786 52.12500 476.72488 114.49786 1 24 A + 99.40436 52.12500 626.12728 99.40436 1 16 A + 114.47196 65.75000 721.03501 114.47196 1 16 A + 98.25238 65.75000 523.50997 98.25238 1 19 A + 110.41648 79.37500 588.32291 110.41648 1 19 A + 95.81454 79.37500 950.81689 95.81454 1 10 A + 105.88759 93.00000 1050.77697 105.88759 1 10 A + 97.54498 93.00000 726.27457 97.54498 1 13 A + 100.86397 98.00000 750.98622 100.86397 1 13 A + 98.63166 98.00000 783.99309 98.63166 1 13 A + 98.95406 98.50000 786.55576 98.95406 1 13 A + 97.08874 98.50000 739.54840 97.08874 1 13 A + 99.91962 103.00000 761.11188 99.91962 1 13 A + 82.75845 103.00000 587.17291 95.96789 1 0 A + 85.33756 108.00000 605.47174 98.95866 1 0 A + 63.24295 108.00000 605.32255 97.41530 1 0 A + 65.13601 113.00000 623.44175 100.33125 1 0 A + 63.04358 113.00000 623.47218 99.53412 1 0 A + 63.22590 113.50000 625.27528 99.82197 1 0 A + 61.94815 113.50000 625.30680 99.54398 1 0 A + 62.48315 115.00000 630.70714 100.40367 1 0 A + 58.67896 115.00000 630.98632 99.15927 1 0 A + 61.33838 123.00000 659.58363 103.65333 1 0 A + 73.78132 123.00000 660.25337 102.09624 1 0 A + 75.76200 128.00000 677.97801 104.83704 1 0 A + 0.00000 128.00000 678.35294 104.23204 1 0 A + 0.00000 128.50000 680.12003 104.50356 1 0 A + 209.12012 128.50000 680.26871 209.12012 1 31 A + 210.74810 130.00000 685.56455 210.74810 1 31 A + 123.39749 130.00000 686.57678 123.39749 1 18 A + 130.02497 140.50000 723.45171 130.02497 1 18 A 152.00015 140.50000 420.96623 195.73981 110 0 - 162.80161 153.30000 441.57723 205.32346 110 0 - 160.90370 153.30000 203.42555 203.42555 110 0 - @@ -71406,7 +71551,7 @@ Displacements 2016.61586 75.19805 12.88770 2030.05014 -22.15418 13.06311 2030.04890 -22.16405 13.06311 - 2028.69478 -32.00369 13.07539 + 2028.69478 -32.00370 13.07539 2028.64261 -31.54003 13.07539 1994.60132 -119.96691 13.14296 1994.65821 -119.54103 13.14296 @@ -72233,7 +72378,7 @@ Displacements 1603.49492 102.96555 12.12354 1603.49909 102.79928 12.12354 1625.99291 -12.31988 12.10453 - 1625.98043 -12.41979 12.10453 + 1625.98043 -12.41978 12.10453 1625.07831 -23.65953 12.09841 1625.07837 -23.66125 12.09841 1619.02578 -56.98994 12.07548 @@ -73860,7 +74005,7 @@ Displacements 756.44235 -542.23567 10.90002 755.94013 228.72705 10.90002 827.54954 56.92801 11.06107 - 827.53705 56.82795 11.06107 + 827.53705 56.82794 11.06107 829.94558 39.50753 11.07507 829.90056 39.90760 11.07507 812.79419 -116.25740 11.18343 @@ -73869,7 +74014,7 @@ Displacements 713.35610 542.66927 11.26777 946.10652 388.70284 11.31554 946.08686 388.54543 11.31554 - 965.13508 373.39292 11.31803 + 965.13508 373.39293 11.31803 965.13519 373.38991 11.31803 1017.77035 328.51388 11.32273 1017.99268 327.39877 11.32273 @@ -75490,7 +75635,7 @@ Displacements 355.32300 252.29335 10.37993 434.49170 64.53128 10.39223 434.46807 64.34204 10.39223 - 437.21969 45.72692 10.39238 + 437.21969 45.72693 10.39238 437.21984 45.72278 10.39238 439.91310 -9.77076 10.39158 440.17872 -11.10362 10.39158 @@ -76258,7 +76403,7 @@ Displacements -4.32548 -508.78735 2.93230 -261.35631 -520.96277 2.99066 -261.28411 -520.38632 2.99066 - -347.62584 -526.34729 3.01202 + -347.62584 -526.34730 3.01202 -347.55612 -526.64652 3.01202 -860.93616 -576.11997 3.18019 -861.00569 -576.42275 3.18019 @@ -76266,48 +76411,48 @@ Displacements -977.66208 -590.31026 3.23165 -1007.26795 -593.93666 3.24564 -1007.07649 -594.70260 3.24564 - -1641.72798 -677.96407 3.64436 + -1641.72799 -677.96407 3.64436 -1641.91137 -678.76665 3.64436 -2271.97377 -755.30513 4.24827 -2271.97103 -755.39103 4.24827 -2967.38507 -827.04210 5.18495 - -2967.39588 366.16231 5.18495 + -2967.39589 366.16231 5.18495 -2884.84354 321.49929 5.51078 -2884.84371 321.50245 5.51078 -2820.33453 292.66916 5.82163 -2820.33916 292.71074 5.82163 -2689.87341 228.12541 6.65533 -2689.86862 228.16400 6.65533 - -2669.88870 215.80077 6.81904 + -2669.88871 215.80077 6.81904 -2670.06583 216.32099 6.81904 -2510.03572 11.26353 9.78257 -2509.89801 11.89928 9.78257 - -2643.21278 -214.10630 13.63381 + -2643.21279 -214.10630 13.63381 -2642.99963 -214.50060 13.63381 -3095.46339 -455.52266 18.42018 -3095.12067 -457.54888 18.42018 -3888.47470 -712.38893 24.30076 -3888.97761 86.98659 24.30076 -3869.64907 -10.36565 26.78130 - -3869.66260 -10.47405 26.78130 + -3869.66260 -10.47406 26.78130 -3870.43244 -20.32620 27.03940 - -3870.47622 -19.93710 27.03940 - -3899.49869 -109.60147 29.44457 + -3870.47623 -19.93709 27.03940 + -3899.49870 -109.60147 29.44457 -3899.43653 -109.35929 29.44457 -3977.65178 -204.13329 32.29196 -3977.64652 596.53058 32.29196 -3701.07381 509.18584 35.32400 -3701.09744 508.99660 35.32400 -3675.86795 500.17736 35.63702 - -3675.86780 500.17322 35.63702 - -3602.82324 473.70337 36.58641 + -3675.86781 500.17322 35.63702 + -3602.82325 473.70337 36.58641 -3602.55762 472.37051 36.58641 - -3281.37548 329.16358 41.90140 + -3281.37549 329.16358 41.90140 -3281.62840 1128.73187 41.90140 -2742.15099 1028.59604 45.42382 -2742.16385 1028.49310 45.42382 -2690.89940 1022.08060 45.78359 - -2690.89932 1022.07852 45.78359 + -2690.89933 1022.07852 45.78359 -2541.39750 971.20091 46.87041 -2541.18156 970.37598 46.87041 -1665.11932 695.31669 54.74808 @@ -77057,7 +77202,7 @@ Displacements -4.32548 -508.78735 2.93230 -261.35631 -520.96277 2.99066 -261.28411 -520.38632 2.99066 - -347.62584 -526.34729 3.01202 + -347.62584 -526.34730 3.01202 -347.55612 -526.64652 3.01202 -860.93616 -576.11997 3.18019 -861.00569 -576.42275 3.18019 @@ -77065,48 +77210,48 @@ Displacements -977.66208 -590.31026 3.23165 -1007.26795 -593.93666 3.24564 -1007.07649 -594.70260 3.24564 - -1641.72798 -677.96407 3.64436 + -1641.72799 -677.96407 3.64436 -1641.91137 -678.76665 3.64436 -2271.97377 -755.30513 4.24827 -2271.97103 -755.39103 4.24827 -2967.38507 -827.04210 5.18495 - -2967.39588 366.16231 5.18495 + -2967.39589 366.16231 5.18495 -2884.84354 321.49929 5.51078 -2884.84371 321.50245 5.51078 -2820.33453 292.66916 5.82163 -2820.33916 292.71074 5.82163 -2689.87341 228.12541 6.65533 -2689.86862 228.16400 6.65533 - -2669.88870 215.80077 6.81904 + -2669.88871 215.80077 6.81904 -2670.06583 216.32099 6.81904 -2510.03572 11.26353 9.78257 -2509.89801 11.89928 9.78257 - -2643.21278 -214.10630 13.63381 + -2643.21279 -214.10630 13.63381 -2642.99963 -214.50060 13.63381 -3095.46339 -455.52266 18.42018 -3095.12067 -457.54888 18.42018 -3888.47470 -712.38893 24.30076 -3888.97761 86.98659 24.30076 -3869.64907 -10.36565 26.78130 - -3869.66260 -10.47405 26.78130 + -3869.66260 -10.47406 26.78130 -3870.43244 -20.32620 27.03940 - -3870.47622 -19.93710 27.03940 - -3899.49869 -109.60147 29.44457 + -3870.47623 -19.93709 27.03940 + -3899.49870 -109.60147 29.44457 -3899.43653 -109.35929 29.44457 -3977.65178 -204.13329 32.29196 -3977.64652 596.53058 32.29196 -3701.07381 509.18584 35.32400 -3701.09744 508.99660 35.32400 -3675.86795 500.17736 35.63702 - -3675.86780 500.17322 35.63702 - -3602.82324 473.70337 36.58641 + -3675.86781 500.17322 35.63702 + -3602.82325 473.70337 36.58641 -3602.55762 472.37051 36.58641 - -3281.37548 329.16358 41.90140 + -3281.37549 329.16358 41.90140 -3281.62840 1128.73187 41.90140 -2742.15099 1028.59604 45.42382 -2742.16385 1028.49310 45.42382 -2690.89940 1022.08060 45.78359 - -2690.89932 1022.07852 45.78359 + -2690.89933 1022.07852 45.78359 -2541.39750 971.20091 46.87041 -2541.18156 970.37598 46.87041 -1665.11932 695.31669 54.74808 @@ -77835,8 +77980,8 @@ Displacements 0.14925 -0.51914 3.18096 -4.10406 -10.05733 2.93230 -4.32548 -985.18450 2.93230 - -499.87348 -999.27148 2.82827 - -499.80126 -998.69553 2.82827 + -499.87348 -999.27149 2.82827 + -499.80126 -998.69554 2.82827 -665.18791 -1006.23037 2.79796 -664.86680 -1007.60565 2.79796 -1634.48025 -1072.98088 2.71618 @@ -77848,8 +77993,8 @@ Displacements -3058.83926 -1210.35264 3.05972 -3059.13107 -1211.64607 3.05972 -4158.83658 -1289.71858 3.81810 - -4158.83193 -1289.87395 3.81810 - -5324.97243 -1362.17528 5.18495 + -4158.83194 -1289.87395 3.81810 + -5324.97243 -1362.17529 5.18495 -5324.99184 1206.09992 5.18495 -5040.85447 1161.43689 5.68439 -5040.85464 1161.44006 5.68439 @@ -77860,19 +78005,19 @@ Displacements -4153.94955 1055.73838 7.72829 -4154.12667 1056.25859 7.72829 -2849.68157 851.20114 12.31343 - -2849.54386 851.83689 12.31343 + -2849.54387 851.83689 12.31343 -1838.44365 625.83130 17.90524 - -1838.23049 625.43701 17.90524 - -1146.27926 384.41495 24.15030 + -1838.23050 625.43701 17.90524 + -1146.27927 384.41495 24.15030 -1145.93654 382.38873 24.15030 -794.87558 127.54868 30.80685 -795.37850 125.92420 30.80685 - -756.58114 28.57196 33.32472 + -756.58115 28.57196 33.32472 -756.59468 28.46355 33.32472 - -755.41763 18.61141 33.57850 + -755.41764 18.61141 33.57850 -755.46142 19.00051 33.57850 -766.96197 -70.66387 35.87848 - -766.89980 -70.42169 35.87848 + -766.89981 -70.42169 35.87848 -825.64625 -165.19569 38.46860 -825.64099 -165.53181 38.46860 -930.09948 -252.87655 41.09785 @@ -77884,7 +78029,7 @@ Displacements -1272.46355 -432.89882 46.49550 -1272.71646 -434.33052 46.49550 -1514.77025 -534.46635 49.28008 - -1514.78310 -534.56929 49.28008 + -1514.78311 -534.56929 49.28008 -1541.67178 -540.98179 49.56227 -1541.67170 -540.98387 49.56227 -1626.62924 -591.86149 50.41325 @@ -78529,7 +78674,7 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 834.48784 0.00000 0 'Dalle toiture 18.85' + 2 18.85000 834.48785 0.00000 0 'Dalle toiture 18.85' 10 14.24000 -2578.31181 0.00000 0 'Dalle raide 14.24' 31 1.72000 -2530.11712 0.00000 0 'Dalle radier 1,72' [END OF DATA] @@ -78603,20 +78748,20 @@ Displacements -1802.61272 -1061.22308 2.78067 -1802.31779 -1062.40294 2.78067 -2934.11102 -1205.26938 3.10964 - -2934.39168 -1206.51401 3.10964 + -2934.39169 -1206.51401 3.10964 -4044.19135 -1317.44936 3.85122 -4044.18660 -1317.60072 3.85122 -5255.94530 -1437.78936 5.18495 -5255.96432 1140.43597 5.18495 - -4986.88015 1101.77698 5.67327 - -4986.88033 1101.78042 5.67327 + -4986.88016 1101.77698 5.67327 + -4986.88034 1101.78042 5.67327 -4757.73444 1080.42330 6.14510 -4757.73933 1080.46733 6.14510 -4230.86046 1026.25712 7.42442 -4230.85539 1026.29792 7.42442 - -4138.94922 1016.03562 7.67660 + -4138.94923 1016.03562 7.67660 -4139.12355 1016.54763 7.67660 - -2868.76485 842.28981 12.18988 + -2868.76486 842.28981 12.18988 -2868.61900 842.88522 12.18988 -1858.89748 633.46243 17.71556 -1858.68717 633.01224 17.71556 @@ -78629,14 +78774,14 @@ Displacements -791.01228 -14.32245 33.25493 -791.05580 -13.93570 33.25493 -820.49295 -117.49171 35.53993 - -820.43043 -117.25678 35.53993 + -820.43044 -117.25678 35.53993 -907.01246 -229.75710 38.11585 -907.00691 -230.10539 38.11585 - -1048.43546 -336.21956 40.73478 + -1048.43547 -336.21956 40.73478 -1048.46001 -336.41608 40.73478 -1065.54935 -347.16368 40.99927 - -1065.54919 -347.16809 40.99927 - -1120.04320 -379.47102 41.79580 + -1065.54920 -347.16809 40.99927 + -1120.04321 -379.47102 41.79580 -1119.76699 -380.85716 41.79580 -1493.97085 -556.01443 46.13085 -1494.23204 -557.51780 46.13085 @@ -78645,7 +78790,7 @@ Displacements -1837.19484 -689.48949 49.21328 -1837.19475 -689.49220 49.21328 -1943.70246 -730.65442 50.07127 - -1943.41634 -731.74736 50.07127 + -1943.41635 -731.74736 50.07127 -2865.16947 -1025.55822 56.33702 -2866.48902 -1023.41936 56.33702 -4384.80562 -1351.01961 64.81222 @@ -79076,7 +79221,7 @@ Status character [DATA] 38.36402 0.00000 173.07023 36.65930 110 22 - 48.43147 0.00000 228.64716 48.43147 110 21 - - 48.43147 0.00000 228.64716 48.43147 110 0 - + 48.43147 0.00000 228.64716 48.43147 110 21 - 74.38678 0.00000 252.81103 53.54980 110 29 - 74.96982 0.00000 252.81103 53.54980 110 30 - 83.47137 0.00000 260.78511 55.23885 110 32 - @@ -79352,10 +79497,10 @@ Displacements -1299.88414 -875.53805 2.90267 -1300.19267 -876.86556 2.90267 -1478.15199 -902.96296 2.92997 - -1478.15230 -902.96932 2.92997 - -1523.46907 -909.71740 2.93848 + -1478.15230 -902.96933 2.92997 + -1523.46908 -909.71740 2.93848 -1523.19385 -910.81841 2.93848 - -2503.67038 -1054.17194 3.28930 + -2503.67039 -1054.17194 3.28930 -2503.94578 -1055.27208 3.28930 -3463.72552 -1127.64714 3.98367 -3463.72557 -1127.64539 3.98367 @@ -79375,27 +79520,27 @@ Displacements -1508.83043 434.76654 16.04302 -1160.35700 62.61295 21.32333 -1159.89176 60.48284 21.32333 - -1378.98686 -396.08843 27.02665 + -1378.98687 -396.08843 27.02665 -1379.56503 -397.97435 27.02665 -1625.16539 -586.17350 29.23449 -1625.18263 -586.31159 29.23449 -1654.98264 -605.70571 29.45928 - -1655.02289 -605.34805 29.45928 + -1655.02290 -605.34805 29.45928 -1967.38580 -784.22344 31.51938 -1967.32000 -784.07007 31.51938 -2409.15300 -984.63186 33.89745 -2409.14557 -985.10017 33.89745 - -2950.82234 -1182.66236 36.38956 + -2950.82235 -1182.66236 36.38956 -2950.85533 -1182.92647 36.38956 -3010.50229 -1202.96096 36.64598 - -3010.50205 -1202.96760 36.64598 + -3010.50206 -1202.96760 36.64598 -3195.46055 -1263.21834 37.42390 -3195.10467 -1265.00536 37.42390 - -4336.13914 -1588.64240 41.82280 + -4336.13915 -1588.64240 41.82280 -4336.46464 -1590.66805 41.82280 -5184.51394 -1801.32791 44.82932 - -5184.54456 -1801.57319 44.82932 - -5275.12724 -1821.72856 45.14274 + -5184.54457 -1801.57319 44.82932 + -5275.12725 -1821.72856 45.14274 -5275.12701 -1821.73518 45.14274 -5553.42643 -1888.87062 46.09810 -5552.72999 -1891.53100 46.09810 @@ -79845,7 +79990,7 @@ Status character 68.40447 19.30000 309.19159 84.86418 110 0 - 68.40447 19.30000 308.67724 84.86418 110 0 - 70.56801 28.10000 321.46914 88.38104 110 0 - - 88.38104 28.10000 321.16392 88.38104 110 0 - + 88.38104 28.10000 321.16392 88.38104 110 28 - 90.69966 30.50000 324.64930 89.34018 110 28 - 77.80954 30.50000 446.62050 74.78656 110 17 - 81.93170 32.60000 453.61300 75.95745 110 18 - @@ -80035,9 +80180,9 @@ SupportRigidityType SupportName [END OF COLUMN INDICATION] [DATA] - 2 18.85000 495.29329 0.00000 0 'Dalle toiture 18.85' - 10 14.24000 -1939.49793 0.00000 0 'Dalle raide 14.24' - 31 1.72000 -7459.14654 0.00000 0 'Dalle radier 1,72' + 2 18.85000 496.19313 0.00000 0 'Dalle toiture 18.85' + 10 14.24000 -1939.62936 0.00000 0 'Dalle raide 14.24' + 31 1.72000 -7459.14734 0.00000 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORT DATA] @@ -80067,7 +80212,7 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 33.89 : Percentage mobilized resistance left 100.00 : Percentage mobilized resistance right - 7197.44 : Effective left + 7197.46 : Effective left 1362.40 : Effective right 3658.51 : Water pressure left 548.10 : Water pressure right @@ -80095,86 +80240,86 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.15078 -0.52447 2.88679 - -31.38758 -54.79758 2.93230 - -31.60159 -550.10953 2.93230 - -313.65486 -579.99380 2.95587 - -313.59159 -579.48909 2.95587 - -410.21705 -591.93376 2.96624 - -409.91706 -593.21845 2.96624 - -1004.58814 -684.59530 3.08004 - -1004.88790 -685.88458 3.08004 - -1144.44104 -709.86250 3.12245 - -1144.44132 -709.86829 3.12245 - -1180.08938 -716.06876 3.13436 - -1179.83872 -717.07153 3.13436 - -1960.85967 -848.80444 3.51291 - -1961.11050 -849.80634 3.51291 - -2741.93176 -926.55822 4.14818 - -2741.93181 -926.55647 4.14818 - -3594.96807 -1013.93310 5.18495 - -3594.96811 925.57014 5.18495 - -3376.07007 898.32938 5.55268 - -3376.07024 898.34185 5.55268 - -3189.76004 875.73433 5.90462 - -3189.77222 875.84332 5.90462 - -2766.81572 814.06141 6.84664 - -2766.80313 814.16282 6.84664 - -2694.08162 801.80383 7.03063 - -2694.60873 803.35189 7.03063 - -1753.63118 560.24382 10.25965 - -1753.37787 562.59521 10.25965 - -1217.30487 203.19144 14.11452 - -1216.93113 203.70195 14.11452 - -1258.69238 -287.98915 18.41252 - -1258.09464 -290.33073 18.41252 - -2066.23332 -918.40151 23.17375 - -2066.90966 -920.62042 23.17375 - -2592.38838 -1184.01834 25.08452 - -2592.40972 -1184.18923 25.08452 - -2652.29939 -1211.42348 25.28188 - -2652.33593 -1211.09887 25.28188 - -3253.51456 -1462.75783 27.11809 - -3253.44520 -1462.69561 27.11809 - -4055.66749 -1748.18155 29.30569 - -4055.65816 -1748.78133 29.30569 - -5001.04796 -2034.18902 31.68516 - -5001.09011 -2034.52655 31.68516 - -5103.53946 -2063.45791 31.93532 - -5103.53913 -2063.46695 31.93532 - -5419.57721 -2150.45753 32.70044 - -5419.13681 -2152.66987 32.70044 - -7326.91224 -2617.19944 37.20492 - -7327.30616 -2619.77750 37.20492 - -8711.20652 -2914.77785 40.45495 - -8711.25332 -2915.15267 40.45495 - -8857.71892 -2943.45446 40.80145 - -8857.71854 -2943.46517 40.80145 - -9306.08578 -3034.59878 41.86629 - -9304.96612 -3038.87598 41.86629 --12812.60489 -3626.84858 50.54027 --12818.93881 -3614.82215 50.54027 --17765.45850 -4102.81593 64.81222 --17762.05922 3378.43054 64.81222 --13821.64856 2921.85151 83.59211 --13819.87382 2928.03046 83.59211 --12601.18255 2766.58097 91.01555 --12601.14271 2766.95315 91.01555 --12402.90403 2739.67102 92.30829 --12403.42798 2741.14233 92.30829 - -8849.52220 2254.46321 120.13735 - -8849.55338 2257.49368 120.13735 - -5962.42728 1801.81141 151.37473 - -5962.89393 1806.23999 151.37473 - -3696.40785 1381.55456 184.91394 - -3695.30718 1384.20255 184.91394 - -2007.84880 990.51398 219.88608 - -2007.84371 990.05652 219.88608 - -859.68770 627.36480 255.64397 - -859.73942 627.03830 255.64397 - -206.55088 295.34344 291.74671 - -207.55259 297.97541 291.74671 - -0.96944 -2.72260 327.94282 + 0.03823 -0.13298 2.88664 + -31.05187 -54.40864 2.93230 + -31.15333 -550.22900 2.93230 + -313.26628 -580.11293 2.95592 + -313.20302 -579.60827 2.95592 + -409.84812 -592.05269 2.96630 + -409.54814 -593.33732 2.96630 + -1004.32950 -684.71215 3.08014 + -1004.62924 -686.00138 3.08014 + -1144.20569 -709.97876 3.12255 + -1144.20597 -709.98456 3.12255 + -1179.85984 -716.18490 3.13446 + -1179.60918 -717.18762 3.13446 + -1960.74499 -848.91815 3.51299 + -1960.99582 -849.92002 3.51299 + -2741.91711 -926.67189 4.14822 + -2741.91716 -926.67014 4.14822 + -3595.05345 -1014.04678 5.18495 + -3595.05349 925.58789 5.18495 + -3376.15119 898.34711 5.55267 + -3376.15136 898.35957 5.55267 + -3189.83744 875.75195 5.90461 + -3189.84962 875.86094 5.90461 + -2766.88442 814.07856 6.84661 + -2766.87183 814.17997 6.84661 + -2694.14878 801.82086 7.03060 + -2694.67588 803.36888 7.03060 + -1753.67669 560.25840 10.25960 + -1753.42338 562.60971 10.25960 + -1217.33277 203.20273 14.11446 + -1216.95904 203.71319 14.11446 + -1258.70724 -287.98120 18.41246 + -1258.10949 -290.32280 18.41246 + -2066.23945 -918.39653 23.17370 + -2066.91579 -920.61545 23.17370 + -2592.39226 -1184.01433 25.08447 + -2592.41360 -1184.18521 25.08447 + -2652.30307 -1211.41956 25.28184 + -2652.33962 -1211.09494 25.28184 + -3253.51666 -1462.75469 27.11805 + -3253.44729 -1462.69247 27.11805 + -4055.66822 -1748.17919 29.30566 + -4055.65889 -1748.77897 29.30566 + -5001.04769 -2034.18737 31.68513 + -5001.08984 -2034.52490 31.68513 + -5103.53910 -2063.45632 31.93529 + -5103.53878 -2063.46537 31.93529 + -5419.57663 -2150.45613 32.70041 + -5419.13624 -2152.66848 32.70041 + -7326.91092 -2617.19894 37.20490 + -7327.30484 -2619.77699 37.20490 + -8711.20507 -2914.77779 40.45493 + -8711.25186 -2915.15261 40.45493 + -8857.71746 -2943.45445 40.80143 + -8857.71708 -2943.46515 40.80143 + -9306.08433 -3034.59888 41.86627 + -9304.96467 -3038.87608 41.86627 +-12812.60390 -3626.84928 50.54026 +-12818.93782 -3614.82282 50.54026 +-17765.45851 -4102.81676 64.81222 +-17762.05922 3378.43055 64.81222 +-13821.64856 2921.85151 83.59212 +-13819.87383 2928.03046 83.59212 +-12601.18255 2766.58097 91.01557 +-12601.14271 2766.95315 91.01557 +-12402.90403 2739.67102 92.30830 +-12403.42798 2741.14233 92.30830 + -8849.52220 2254.46321 120.13738 + -8849.55338 2257.49368 120.13738 + -5962.42728 1801.81141 151.37477 + -5962.89393 1806.23999 151.37477 + -3696.40785 1381.55456 184.91398 + -3695.30718 1384.20255 184.91398 + -2007.84880 990.51398 219.88614 + -2007.84371 990.05652 219.88614 + -859.68770 627.36480 255.64403 + -859.73942 627.03830 255.64403 + -206.55088 295.34344 291.74679 + -207.55259 297.97541 291.74679 + -0.96944 -2.72260 327.94291 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -80424,65 +80569,65 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 45.96081 0.00000 188.84060 36.89270 110 24 - - 48.42720 0.00000 247.88160 48.42720 110 20 - + 45.96525 0.00000 188.84060 36.89270 110 24 - + 48.42720 0.00000 247.88160 48.42720 1 20 A 48.42720 0.00000 247.88160 48.42720 1 20 A - 71.10990 0.00000 273.55160 53.44220 110 26 - - 71.69293 0.00000 273.55160 53.44220 110 26 - - 79.15161 0.00000 282.02270 55.09715 110 28 - - 79.15161 0.00000 282.02270 55.09715 110 28 - - 116.30690 0.00000 330.02560 64.47520 110 35 - - 116.65478 0.00000 330.02560 64.47520 110 35 - - 123.12436 0.00000 340.29360 66.48120 110 36 - - 123.12436 0.00000 340.29360 66.48120 110 36 - - 124.39443 0.50000 341.65260 66.74670 110 36 - - 119.73072 0.50000 341.65260 66.74670 110 35 - - 132.73510 10.50000 368.83260 72.05670 110 36 - + 71.10854 0.00000 273.55160 53.44220 110 26 - + 71.69157 0.00000 273.55160 53.44220 110 26 - + 79.14992 0.00000 282.02270 55.09715 110 28 - + 79.14992 0.00000 282.02270 55.09715 110 28 - + 116.30427 0.00000 330.02560 64.47520 110 35 - + 116.65215 0.00000 330.02560 64.47520 110 35 - + 123.12170 0.00000 340.29360 66.48120 110 36 - + 123.12170 0.00000 340.29360 66.48120 110 36 - + 124.39177 0.50000 341.65260 66.74670 110 36 - + 119.72806 0.50000 341.65260 66.74670 110 35 - + 132.73300 10.50000 368.83260 72.05670 110 36 - 70.68123 10.50000 347.71128 75.72060 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 73.95483 19.30000 362.28408 78.99420 1 0 A 77.22843 28.10000 376.85688 82.26780 1 0 A - 82.26780 28.10000 376.85688 82.26780 110 0 - - 86.13846 30.50000 380.83128 83.16060 110 23 - - 72.77340 30.50000 540.54390 67.06500 110 13 - - 79.43632 32.60000 549.00690 68.11500 110 14 - - 79.43632 32.60000 549.00690 68.11500 110 14 - - 97.49131 37.60000 569.15690 70.61500 110 17 - - 97.49131 37.60000 569.15690 70.61500 110 17 - - 101.05294 38.50000 572.78390 71.06500 110 18 - - 101.05294 38.50000 572.78390 71.06500 110 18 - - 165.17794 52.12500 627.69265 77.87750 110 26 - - 165.17794 52.12500 627.69265 77.87750 110 26 - - 244.51221 65.75000 682.60140 84.69000 110 36 - - 244.51221 65.75000 682.60140 84.69000 110 36 - - 332.11120 79.37500 737.51015 91.50250 110 45 - - 332.11120 79.37500 737.51015 91.50250 110 45 - - 417.45257 93.00000 792.41890 98.31500 110 53 - - 417.45257 93.00000 792.41890 98.31500 110 53 - - 445.13914 98.00000 812.56890 100.81500 110 55 - - 445.13914 98.00000 812.56890 100.81500 110 55 - - 447.73091 98.50000 814.58390 101.06500 110 55 - - 447.73091 98.50000 814.58390 101.06500 110 55 - - 469.25337 103.00000 832.71890 103.31500 110 56 - - 456.04393 103.00000 832.71890 103.31500 110 55 - - 474.89982 108.00000 852.86890 105.81500 110 56 - - 454.34857 108.00000 852.86890 105.81500 110 53 - - 466.28222 113.00000 873.01890 108.31500 110 53 - - 464.98692 113.00000 873.01890 108.31500 110 53 - - 465.76762 113.50000 875.03390 108.56500 110 53 - - 464.76786 113.50000 875.03390 108.56500 110 53 - - 466.60647 115.00000 881.07890 109.31500 110 53 - - 464.04668 115.00000 881.07890 109.31500 110 53 - - 459.27724 123.00000 913.31890 113.31500 110 50 - - 473.27727 123.00000 913.31890 113.31500 110 52 - - 455.72414 128.00000 933.46890 115.81500 110 49 - - 439.04647 128.00000 933.46890 115.81500 110 47 - - 436.52546 128.50000 935.48390 116.06500 110 47 - - 482.37765 128.50000 935.48390 116.06500 110 52 - - 474.23721 130.00000 941.52890 116.81500 110 50 - - 474.23721 130.00000 941.52890 116.81500 110 50 - - 375.21058 140.50000 983.84390 122.06500 110 38 - - 267.22705 140.50000 700.38000 207.51050 110 38 - + 82.26780 28.10000 376.85688 82.26780 110 22 - + 86.13867 30.50000 380.83128 83.16060 110 23 - + 72.77376 30.50000 540.54390 67.06500 110 13 - + 79.43697 32.60000 549.00690 68.11500 110 14 - + 79.43697 32.60000 549.00690 68.11500 110 14 - + 97.49253 37.60000 569.15690 70.61500 110 17 - + 97.49253 37.60000 569.15690 70.61500 110 17 - + 101.05426 38.50000 572.78390 71.06500 110 18 - + 101.05426 38.50000 572.78390 71.06500 110 18 - + 165.18017 52.12500 627.69265 77.87750 110 26 - + 165.18017 52.12500 627.69265 77.87750 110 26 - + 244.51470 65.75000 682.60140 84.69000 110 36 - + 244.51470 65.75000 682.60140 84.69000 110 36 - + 332.11354 79.37500 737.51015 91.50250 110 45 - + 332.11354 79.37500 737.51015 91.50250 110 45 - + 417.45455 93.00000 792.41890 98.31500 110 53 - + 417.45455 93.00000 792.41890 98.31500 110 53 - + 445.14096 98.00000 812.56890 100.81500 110 55 - + 445.14096 98.00000 812.56890 100.81500 110 55 - + 447.73272 98.50000 814.58390 101.06500 110 55 - + 447.73272 98.50000 814.58390 101.06500 110 55 - + 469.25503 103.00000 832.71890 103.31500 110 56 - + 456.04559 103.00000 832.71890 103.31500 110 55 - + 474.90131 108.00000 852.86890 105.81500 110 56 - + 454.35006 108.00000 852.86890 105.81500 110 53 - + 466.28354 113.00000 873.01890 108.31500 110 53 - + 464.98824 113.00000 873.01890 108.31500 110 53 - + 465.76892 113.50000 875.03390 108.56500 110 53 - + 464.76916 113.50000 875.03390 108.56500 110 53 - + 466.60772 115.00000 881.07890 109.31500 110 53 - + 464.04793 115.00000 881.07890 109.31500 110 53 - + 459.27822 123.00000 913.31890 113.31500 110 50 - + 473.27825 123.00000 913.31890 113.31500 110 52 - + 455.72495 128.00000 933.46890 115.81500 110 49 - + 439.04728 128.00000 933.46890 115.81500 110 47 - + 436.52626 128.50000 935.48390 116.06500 110 47 - + 482.37845 128.50000 935.48390 116.06500 110 52 - + 474.23796 130.00000 941.52890 116.81500 110 50 - + 474.23796 130.00000 941.52890 116.81500 110 50 - + 375.21099 140.50000 983.84390 122.06500 110 38 - + 267.22730 140.50000 700.38000 207.51050 110 38 - 201.46323 153.30000 728.64240 216.21450 1 0 A 201.46323 153.30000 728.64240 216.21450 1 0 A 209.96323 165.80000 756.24240 224.71450 1 0 A @@ -80516,10 +80661,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 20.00 344.378 'Remblais LT' + 20.00 344.375 'Remblais LT' 16.00 150.369 'Argile et limon LT' - 14.00 3574.567 'Sable et gravier LT' - 3.00 3128.129 'Argile Yprésienne LT' + 14.00 3574.585 'Sable et gravier LT' + 3.00 3128.130 'Argile Yprésienne LT' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -80611,26 +80756,26 @@ CalculationStatus -1236.44274 940.26116 13.44844 0.00000 68.75027 11 14 10 1.200 0 0 -4103.79957 1152.77609 179.28343 0.00000 100.00000 12 4 10 1.000 0 0 -3977.65178 1128.73187 164.09861 0.00000 100.00000 12 5 10 1.000 0 0 - -4390.55354 1178.57136 199.63943 0.00000 100.00000 12 0 10 1.000 0 0 + -4390.55355 1178.57136 199.63943 0.00000 100.00000 12 0 10 1.000 0 0 -4208.25535 1155.59353 181.44572 0.00000 100.00000 12 1 10 1.000 0 0 -1085.38462 814.13846 17.20206 0.00000 80.36015 12 3 10 1.000 0 0 -1302.46155 976.96616 17.20206 0.00000 80.36015 12 14 10 1.200 0 0 -4103.79957 1152.77609 179.28343 0.00000 100.00000 13 4 10 1.000 0 0 -3977.65178 1128.73187 164.09861 0.00000 100.00000 13 5 10 1.000 0 0 - -4390.55354 1178.57136 199.63943 0.00000 100.00000 13 0 10 1.000 0 0 + -4390.55355 1178.57136 199.63943 0.00000 100.00000 13 0 10 1.000 0 0 -4208.25535 1155.59353 181.44572 0.00000 100.00000 13 1 10 1.000 0 0 -1085.38462 814.13846 17.20206 0.00000 80.36015 13 3 10 1.000 0 0 -1302.46155 976.96616 17.20206 0.00000 80.36015 13 14 10 1.200 0 0 -5707.19554 -1414.91152 178.25405 0.00000 91.57308 14 4 10 1.000 0 0 - -5324.99184 -1362.17528 164.43997 0.00000 88.81453 14 5 10 1.000 0 0 + -5324.99184 -1362.17529 164.43997 0.00000 88.81453 14 5 10 1.000 0 0 -6197.69457 -1522.99141 198.61005 0.00000 91.57308 14 0 10 1.000 0 0 - -5768.58146 -1459.82052 181.78716 0.00000 88.81224 14 1 10 1.000 0 0 + -5768.58146 -1459.82051 181.78716 0.00000 88.81224 14 1 10 1.000 0 0 -2599.59156 1159.54597 16.09856 0.00000 75.21755 14 3 10 1.000 0 0 -3119.50987 1391.45516 16.09856 0.00000 75.21755 14 14 10 1.200 0 0 -5479.66125 -1457.01941 189.37236 0.00000 99.41507 15 4 10 1.000 0 0 -5255.96432 -1437.78936 172.80820 0.00000 98.90741 15 5 10 1.000 0 0 -5969.70394 -1564.20387 209.72807 0.00000 99.41503 15 0 10 1.000 0 0 - -5699.06095 -1534.54051 190.15224 0.00000 98.90587 15 1 10 1.000 0 0 + -5699.06094 -1534.54051 190.15224 0.00000 98.90587 15 1 10 1.000 0 0 -2460.10086 -1159.13552 19.16485 0.00000 82.81327 15 3 10 1.000 0 0 -2952.12103 -1390.96262 19.16485 0.00000 82.81327 15 14 10 1.200 0 0 -11124.12352 -2373.72606 272.22713 0.00000 100.00000 16 4 10 1.000 0 0 @@ -80639,12 +80784,12 @@ CalculationStatus -11124.08884 -2677.72842 265.61711 0.00000 100.00000 16 1 10 1.000 0 0 -7031.95527 -2140.26512 88.92476 0.00000 100.00000 16 3 10 1.000 0 0 -8438.34632 -2568.31814 88.92476 0.00000 100.00000 16 14 10 1.200 0 0 --17876.75789 -3470.30635 359.56454 0.00000 100.00000 17 4 10 1.000 0 0 --17765.45850 -4102.81593 327.94282 0.00000 100.00000 17 5 10 1.000 0 0 --18046.59838 -3444.33377 379.92023 0.00000 100.00000 17 0 10 1.000 0 0 --17877.90453 -4079.41517 345.28379 0.00000 100.00000 17 1 10 1.000 0 0 --16314.63295 -3765.92883 206.79561 0.00000 100.00000 17 3 10 1.000 0 0 --19577.55955 -4519.11459 206.79561 0.00000 100.00000 17 14 10 1.200 0 0 +-17876.75790 -3470.30516 359.56467 0.00000 100.00000 17 4 10 1.000 0 0 +-17765.45851 -4102.81676 327.94291 0.00000 100.00000 17 5 10 1.000 0 0 +-18046.59838 -3444.33258 379.92036 0.00000 100.00000 17 0 10 1.000 0 0 +-17877.90454 -4079.41600 345.28388 0.00000 100.00000 17 1 10 1.000 0 0 +-16314.63296 -3765.92768 206.79578 0.00000 100.00000 17 3 10 1.000 0 0 +-19577.55955 -4519.11322 206.79578 0.00000 100.00000 17 14 10 1.200 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] @@ -80936,7 +81081,7 @@ SupportName 15 4 7 10 1.000 938.56581 0.00000 0 0 'Dalle toiture 18.85' 15 4 7 10 1.000 -2595.64879 0.00000 0 0 'Dalle raide 14.24' 15 4 7 10 1.000 -2498.16270 0.00000 0 0 'Dalle radier 1,72' - 15 5 7 10 1.000 834.48784 0.00000 0 0 'Dalle toiture 18.85' + 15 5 7 10 1.000 834.48785 0.00000 0 0 'Dalle toiture 18.85' 15 5 7 10 1.000 -2578.31181 0.00000 0 0 'Dalle raide 14.24' 15 5 7 10 1.000 -2530.11712 0.00000 0 0 'Dalle radier 1,72' 15 0 7 10 1.000 1042.76379 0.00000 0 0 'Dalle toiture 18.85' @@ -80969,24 +81114,24 @@ SupportName 16 14 7 10 1.200 92.66843 0.00000 0 0 'Dalle toiture 18.85' 16 14 7 10 1.200 -1546.75193 0.00000 0 0 'Dalle raide 14.24' 16 14 7 10 1.200 -4539.88864 0.00000 0 0 'Dalle radier 1,72' - 17 4 7 10 1.000 264.01673 0.00000 0 0 'Dalle toiture 18.85' - 17 4 7 10 1.000 -1037.21327 0.00000 0 0 'Dalle raide 14.24' - 17 4 7 10 1.000 -6866.07669 0.00000 0 0 'Dalle radier 1,72' - 17 5 7 10 1.000 495.29329 0.00000 0 0 'Dalle toiture 18.85' - 17 5 7 10 1.000 -1939.49793 0.00000 0 0 'Dalle raide 14.24' - 17 5 7 10 1.000 -7459.14654 0.00000 0 0 'Dalle radier 1,72' - 17 0 7 10 1.000 368.23778 0.00000 0 0 'Dalle toiture 18.85' - 17 0 7 10 1.000 -1169.73692 0.00000 0 0 'Dalle raide 14.24' - 17 0 7 10 1.000 -6866.08160 0.00000 0 0 'Dalle radier 1,72' - 17 1 7 10 1.000 590.27120 0.00000 0 0 'Dalle toiture 18.85' - 17 1 7 10 1.000 -2062.60621 0.00000 0 0 'Dalle raide 14.24' - 17 1 7 10 1.000 -7459.16849 0.00000 0 0 'Dalle radier 1,72' - 17 3 7 10 1.000 -341.80462 0.00000 0 0 'Dalle toiture 18.85' - 17 3 7 10 1.000 -428.16410 0.00000 0 0 'Dalle raide 14.24' - 17 3 7 10 1.000 -6904.71324 0.00000 0 0 'Dalle radier 1,72' - 17 14 7 10 1.200 -410.16555 0.00000 0 0 'Dalle toiture 18.85' - 17 14 7 10 1.200 -513.79692 0.00000 0 0 'Dalle raide 14.24' - 17 14 7 10 1.200 -8285.65589 0.00000 0 0 'Dalle radier 1,72' + 17 4 7 10 1.000 264.51644 0.00000 0 0 'Dalle toiture 18.85' + 17 4 7 10 1.000 -1037.30150 0.00000 0 0 'Dalle raide 14.24' + 17 4 7 10 1.000 -6866.07548 0.00000 0 0 'Dalle radier 1,72' + 17 5 7 10 1.000 496.19313 0.00000 0 0 'Dalle toiture 18.85' + 17 5 7 10 1.000 -1939.62936 0.00000 0 0 'Dalle raide 14.24' + 17 5 7 10 1.000 -7459.14734 0.00000 0 0 'Dalle radier 1,72' + 17 0 7 10 1.000 368.73747 0.00000 0 0 'Dalle toiture 18.85' + 17 0 7 10 1.000 -1169.82515 0.00000 0 0 'Dalle raide 14.24' + 17 0 7 10 1.000 -6866.08040 0.00000 0 0 'Dalle radier 1,72' + 17 1 7 10 1.000 591.17076 0.00000 0 0 'Dalle toiture 18.85' + 17 1 7 10 1.000 -2062.73760 0.00000 0 0 'Dalle raide 14.24' + 17 1 7 10 1.000 -7459.16929 0.00000 0 0 'Dalle radier 1,72' + 17 3 7 10 1.000 -341.05520 0.00000 0 0 'Dalle toiture 18.85' + 17 3 7 10 1.000 -428.29809 0.00000 0 0 'Dalle raide 14.24' + 17 3 7 10 1.000 -6904.71207 0.00000 0 0 'Dalle radier 1,72' + 17 14 7 10 1.200 -409.26624 0.00000 0 0 'Dalle toiture 18.85' + 17 14 7 10 1.200 -513.95771 0.00000 0 0 'Dalle raide 14.24' + 17 14 7 10 1.200 -8285.65449 0.00000 0 0 'Dalle radier 1,72' [END OF DATA] [END OF TABLE] [END OF SUPPORTS RESUME] @@ -81035,8 +81180,8 @@ Force [END OF MAXIMUM ANCHOR FORCE] [MAXIMUM SUMMARY RESULTS] MaximumMoment=-19577.55955 -MaximumShearForce=-4519.11459 -MaximumDisplacement=206.79561 +MaximumShearForce=-4519.11322 +MaximumDisplacement=206.79578 MaximumPercentageMobilisedMoment=59.42515 MaximumPercentageMobilisedResistance=100.00000 VerticalBalanceSummary=0 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shi index 1f10baaa..16a08a7e 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects26.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:07:35 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects26.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:17 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects26.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1622,6 +1622,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1631,6 +1632,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1640,6 +1642,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1649,6 +1652,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1658,6 +1662,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1667,6 +1672,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1676,6 +1682,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1685,6 +1692,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1694,6 +1702,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1703,6 +1712,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1712,6 +1722,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1721,6 +1732,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1730,6 +1742,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1739,6 +1752,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1748,6 +1762,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1757,6 +1772,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1766,6 +1782,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1789,7 +1806,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1800,8 +1817,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=2 EC7NLOverallAnchorFactor=0.950 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1812,7 +1831,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1831,6 +1850,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1858,6 +1878,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1885,6 +1906,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1912,6 +1934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1939,6 +1962,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1966,6 +1990,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1993,6 +2018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2020,6 +2046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2030,7 +2057,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -2045,8 +2128,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2056,8 +2140,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -2074,6 +2158,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2083,7 +2168,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -2101,6 +2242,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2128,6 +2270,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2155,6 +2298,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shd index bbc04dd9..e6a87289 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:08:14 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects27.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:55 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects27.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1230,6 +1230,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1239,6 +1240,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1248,6 +1250,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1271,7 +1274,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1282,8 +1285,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1294,7 +1299,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1313,6 +1318,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1340,6 +1346,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1367,6 +1374,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1394,6 +1402,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1421,6 +1430,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1448,6 +1458,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1475,6 +1486,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1502,6 +1514,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1512,7 +1525,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1527,8 +1596,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1538,8 +1608,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1556,6 +1626,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1565,7 +1636,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1583,6 +1710,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1610,6 +1738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1637,6 +1766,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -3678,7 +3808,7 @@ ActiveAngleWithoutLoad=18 ActiveAngleWithLoad=22 PassiveAngleWallWithoutLoad=58 PassiveAngleWallWithLoad=82 -ActiveAngleAnchorWall=32 +ActiveAngleAnchorWall=31 [END OF ANGLES KRANZ CALCULATION] [KRANZ DIAGRAM RESULTS] HeightAnchorWall=0.000 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shi index 8ee7c481..68943073 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects27.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:08:13 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects27.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:54:54 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects27.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1229,6 +1229,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1238,6 +1239,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1247,6 +1249,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1270,7 +1273,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=3 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=0 DesignPartialFactorSet=2 DesignCURMethod=0 @@ -1281,8 +1284,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1293,7 +1298,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1312,6 +1317,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1339,6 +1345,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1366,6 +1373,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1393,6 +1401,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1420,6 +1429,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1447,6 +1457,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1474,6 +1485,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1501,6 +1513,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1511,7 +1524,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1526,8 +1595,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=100.00 -GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1537,8 +1607,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1555,6 +1625,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=100.00 GeometryMaxIncRetainingHeight=0.30 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1564,7 +1635,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1582,6 +1709,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1609,6 +1737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1636,6 +1765,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shd index a810ab26..03c74ea7 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects30.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:53 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects30.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -417,6 +417,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -426,6 +427,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -435,6 +437,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -458,7 +461,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -469,8 +472,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -481,7 +486,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -500,6 +505,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -527,6 +533,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -554,6 +561,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -581,6 +589,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -608,6 +617,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -635,6 +645,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -662,6 +673,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -689,6 +701,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -699,7 +712,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -714,8 +783,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -725,8 +795,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -743,6 +813,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -752,7 +823,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -770,6 +897,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -797,6 +925,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -824,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -896,6 +1026,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -914,9 +1045,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 3 1.100 1.200 1.300 0.35 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.250 1.000 1.000 - 2 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 - 3 3 1.100 1.200 1.300 0.35 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.250 1.000 1.000 + 1 3 1.100 1.200 1.300 0.35 0.00 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.250 1.000 1.000 + 2 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.000 1.000 1.000 + 3 3 1.100 1.200 1.300 0.35 0.00 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.250 1.200 0.000 1.250 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shi index c99c3f30..c5ca775f 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects30.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:03 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects30.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:53 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects30.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -499,6 +504,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -526,6 +532,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -553,6 +560,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -580,6 +588,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -634,6 +644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -661,6 +672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -688,6 +700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -698,7 +711,63 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.250 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -713,8 +782,9 @@ MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 -GeometryIncRetainingHeight=10.00 -GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -724,8 +794,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -751,7 +822,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=0.000 VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shd index 657d6a64..d4766096 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects31.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:54 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects31.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -335,6 +335,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -344,6 +345,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -367,7 +369,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -378,8 +380,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -390,7 +394,7 @@ OverallStabilityType=2 StabilityExport=0 StabilityEuroCodePartialFactorSet=1 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,6 +413,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,6 +441,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,6 +469,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -490,6 +497,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -517,6 +525,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -544,6 +553,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -571,6 +581,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -598,6 +609,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -608,7 +620,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -617,14 +629,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -634,8 +703,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -652,6 +721,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -661,7 +731,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -679,6 +805,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -706,6 +833,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -733,6 +861,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -805,6 +934,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -823,8 +953,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 3 1.100 1.200 1.300 0.35 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.000 1.000 - 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 + 1 3 1.100 1.200 1.300 0.35 0.00 0.00 0.00 0.05 0.25 0.25 0.000 1.250 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.250 1.000 1.000 + 2 0 1.000 1.000 1.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 1.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 1.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shi index 63883c35..0d5066a7 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects31.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:04 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects31.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:53 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects31.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -334,6 +334,7 @@ StagePartialFactorSetCUR=2 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -343,6 +344,7 @@ StagePartialFactorSetCUR=3 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -366,7 +368,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -377,8 +379,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -389,7 +393,7 @@ OverallStabilityType=2 StabilityExport=0 StabilityEuroCodePartialFactorSet=1 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -408,6 +412,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -435,6 +440,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -462,6 +468,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -489,6 +496,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -516,6 +524,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -543,6 +552,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -570,6 +580,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -597,6 +608,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -607,7 +619,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -616,14 +628,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -633,8 +702,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -651,6 +720,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -660,7 +730,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -678,6 +804,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -705,6 +832,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -732,6 +860,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shd index 0510e8f0..26026fc9 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:07 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects32.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:57 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects32.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -764,6 +764,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -773,6 +774,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -796,7 +798,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -807,8 +809,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -819,7 +823,7 @@ OverallStabilityType=4 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -838,6 +842,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -865,6 +870,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -892,6 +898,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -919,6 +926,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -946,6 +954,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -973,6 +982,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1000,6 +1010,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1027,6 +1038,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1037,7 +1049,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1046,14 +1058,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1063,8 +1132,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1081,6 +1150,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1090,7 +1160,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1108,6 +1234,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1135,6 +1262,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1162,6 +1290,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1193,7 +1322,7 @@ ReliabilityStage=0 [END OF INPUT DATA] [OUTPUT DATA] [CALCULATION TYPE] -Verify Sheet Piling according to Eurocode +Verify Sheet Piling according to ANB Method B [END OF CALCULATION TYPE] [SHEET PILE ELEMENTS] [TABLE] @@ -1224,7 +1353,7 @@ Explanation of reduction [END OF SHEET PILE ELEMENTS] [FACTORS FOR VERIFICATION] [TABLE] -DataCount=2 +DataCount=4 [COLUMN INDICATION] StageNumber PartialFactorSet @@ -1234,6 +1363,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1252,8 +1382,10 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 12 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 - -1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.100 1.000 1.000 + 1 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 + 1 13 1.250 1.250 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.100 1.000 1.000 + 2 12 1.000 1.000 0.000 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 + 2 13 1.250 1.250 0.000 0.00 10.00 0.50 0.30 0.00 0.00 0.00 0.000 1.100 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.100 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1417,9 +1549,9 @@ PartialFactorSet=0 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 17.13 : Percentage mobilized resistance left + 17.15 : Percentage mobilized resistance left 19.27 : Percentage mobilized resistance right - 98.20 : Effective left + 98.29 : Effective left 98.29 : Effective right 41.25 : Water pressure left 41.25 : Water pressure right @@ -1429,7 +1561,7 @@ PartialFactorSet=0 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 31.60 : Vertical force left + 31.62 : Vertical force left 32.16 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right @@ -1447,144 +1579,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -1.13595 - 0.00000 0.00000 -1.12891 - 0.00000 0.00000 -1.12187 - 0.00000 0.00000 -1.11483 - 0.00000 0.00000 -1.10778 - 0.00000 0.00000 -1.10074 - 0.00000 0.00000 -1.10074 - 0.00000 0.00000 -1.09370 - 0.00000 0.00000 -1.08666 - 0.00000 0.00000 -1.07962 - 0.00000 0.00000 -1.07258 - 0.00000 0.00000 -1.06554 - 0.00000 0.00057 -1.06554 - 0.00011 0.00517 -1.05856 - 0.00068 0.01646 -1.05168 - 0.00198 0.03255 -1.04483 - 0.00429 0.05412 -1.03795 - 0.00792 0.08129 -1.03097 - 0.00792 0.07958 -1.03097 - 0.01104 0.03441 -1.02400 - 0.01148 -0.01939 -1.01712 - 0.00879 -0.08191 -1.01027 - 0.00248 -0.15325 -1.00339 - -0.00792 -0.23354 -0.99641 - -0.00792 -0.24600 -0.99641 - -0.02591 -0.42302 -0.98944 - -0.05392 -0.61759 -0.98256 - -0.09293 -0.82988 -0.97571 - -0.14387 -1.06004 -0.96882 - -0.20774 -1.30825 -0.96183 - -0.20774 -1.33092 -0.96183 - -0.28749 -1.62001 -0.95484 - -0.38238 -1.89148 -0.94793 - -0.49146 -2.14552 -0.94103 - -0.61378 -2.38224 -0.93409 - -0.74843 -2.60173 -0.92702 - -0.74843 -2.62276 -0.92702 - -0.89640 -2.85490 -0.91993 - -1.05648 -3.07146 -0.91290 - -1.22783 -3.27256 -0.90586 - -1.40964 -3.45832 -0.89874 - -1.60106 -3.62880 -0.89148 - -1.60106 -3.64515 -0.89148 - -1.80284 -3.82589 -0.88415 - -2.01400 -3.99247 -0.87685 - -2.23377 -4.14502 -0.86950 - -2.46141 -4.28360 -0.86203 - -2.69615 -4.40826 -0.85437 - -2.69615 -4.41491 -0.85437 - -2.93928 -4.26632 -0.84639 - -3.17377 -4.10630 -0.83829 - -3.39898 -3.93495 -0.83005 - -3.61427 -3.75234 -0.82168 - -3.81903 -3.55857 -0.81315 - -3.81903 -3.55858 -0.81315 - -3.99284 -3.39229 -0.80541 - -4.15812 -3.21760 -0.79754 - -4.31446 -3.03457 -0.78953 - -4.46144 -2.84322 -0.78137 - -4.59864 -2.64362 -0.77308 - -4.59864 -2.64364 -0.77308 - -4.72598 -2.44836 -0.76463 - -4.84335 -2.24516 -0.75602 - -4.95036 -2.03409 -0.74726 - -5.04662 -1.81518 -0.73833 - -5.13175 -1.58846 -0.72924 - -5.13175 -1.58848 -0.72924 - -5.20975 -1.53007 -0.71997 - -5.28460 -1.46220 -0.71054 - -5.35581 -1.38484 -0.70094 - -5.42292 -1.29799 -0.69115 - -5.48545 -1.20161 -0.68119 - -5.48545 -1.20164 -0.68119 - -5.54328 -1.10990 -0.67105 - -5.59629 -1.00886 -0.66073 - -5.64401 -0.89849 -0.65022 - -5.68598 -0.77876 -0.63953 - -5.72173 -0.64965 -0.62865 - -5.72173 -0.64970 -0.62865 - -5.75747 -0.48550 -0.61471 - -5.78252 -0.30952 -0.60047 - -5.79613 -0.12168 -0.58592 - -5.79756 0.07809 -0.57108 - -5.78606 0.28985 -0.55594 - -5.78606 0.28979 -0.55594 - -5.76326 0.43763 -0.54049 - -5.73081 0.59673 -0.52475 - -5.68800 0.76717 -0.50871 - -5.63413 0.94901 -0.49237 - -5.56846 1.14233 -0.47574 - -5.56846 1.14227 -0.47574 - -5.49265 1.27164 -0.45882 - -5.40837 1.41180 -0.44162 - -5.31494 1.56284 -0.42413 - -5.21167 1.72482 -0.40637 - -5.09787 1.89781 -0.38834 - -5.09787 1.89776 -0.38834 - -4.97523 2.00641 -0.37005 - -4.84542 2.12543 -0.35149 - -4.70781 2.25487 -0.33268 - -4.56173 2.39483 -0.31363 - -4.40653 2.54534 -0.29435 - -4.40653 2.54530 -0.29435 - -4.24410 2.62432 -0.27483 - -4.07640 2.71322 -0.25510 - -3.90281 2.81205 -0.23515 - -3.72268 2.92087 -0.21500 - -3.53540 3.03972 -0.19465 - -3.53540 3.03968 -0.19465 - -3.34278 3.09056 -0.17413 - -3.14668 3.15082 -0.15342 - -2.94648 3.22051 -0.13256 - -2.74161 3.29965 -0.11154 - -2.53147 3.38830 -0.09038 - -2.53143 3.38653 -0.09038 - -2.31773 3.41555 -0.06909 - -2.10167 3.46236 -0.04768 - -1.88204 3.52918 -0.02616 - -1.65758 3.61610 -0.00454 - -1.42702 3.72317 0.01716 - -1.42703 3.72310 0.01716 - -1.25781 3.52895 0.03332 - -1.09767 3.33402 0.04952 - -0.94665 3.13831 0.06575 - -0.80478 2.94178 0.08201 - -0.67209 2.74443 0.09829 - -0.67209 2.74443 0.09829 - -0.54976 2.49831 0.11459 - -0.43893 2.25114 0.13090 - -0.33967 2.00291 0.14723 - -0.25201 1.75359 0.16357 - -0.17602 1.50317 0.17991 - -0.17602 1.50317 0.17991 - -0.11282 1.20519 0.19626 - -0.06355 0.90590 0.21262 - -0.02829 0.60528 0.22897 - -0.00708 0.30332 0.24533 - 0.00000 0.00000 0.26168 + 0.00000 0.00000 -1.14882 + 0.00000 0.00000 -1.14160 + 0.00000 0.00000 -1.13439 + 0.00000 0.00000 -1.12717 + 0.00000 0.00000 -1.11996 + 0.00000 0.00000 -1.11274 + 0.00000 0.00000 -1.11274 + 0.00000 0.00000 -1.10553 + 0.00000 0.00000 -1.09831 + 0.00000 0.00000 -1.09110 + 0.00000 0.00000 -1.08388 + 0.00000 0.00000 -1.07667 + 0.00000 0.00000 -1.07667 + 0.00008 0.00460 -1.06959 + 0.00062 0.01589 -1.06250 + 0.00188 0.03197 -1.05542 + 0.00417 0.05355 -1.04834 + 0.00777 0.08071 -1.04125 + 0.00777 0.08071 -1.04125 + 0.01095 0.03554 -1.03417 + 0.01145 -0.01826 -1.02709 + 0.00882 -0.08077 -1.02000 + 0.00257 -0.15211 -1.01292 + -0.00777 -0.23241 -1.00584 + -0.00777 -0.23241 -1.00584 + -0.02502 -0.40942 -0.99876 + -0.05231 -0.60400 -0.99168 + -0.09057 -0.81628 -0.98459 + -0.14079 -1.04644 -0.97750 + -0.20391 -1.29465 -0.97041 + -0.20391 -1.29465 -0.97041 + -0.28183 -1.58834 -0.96331 + -0.37514 -1.86433 -0.95619 + -0.48287 -2.12277 -0.94907 + -0.60408 -2.36377 -0.94192 + -0.73784 -2.58747 -0.93475 + -0.73784 -2.58747 -0.93475 + -0.88402 -2.82377 -0.92756 + -1.04253 -3.04438 -0.92032 + -1.21253 -3.24943 -0.91305 + -1.39319 -3.43902 -0.90574 + -1.58367 -3.61324 -0.89836 + -1.58367 -3.61326 -0.89836 + -1.78383 -3.79768 -0.89093 + -1.99356 -3.96788 -0.88343 + -2.21210 -4.12392 -0.87586 + -2.43869 -4.26588 -0.86819 + -2.67257 -4.39384 -0.86044 + -2.67257 -4.39385 -0.86044 + -2.91455 -4.24660 -0.85229 + -3.14797 -4.08789 -0.84402 + -3.37218 -3.91779 -0.83562 + -3.58655 -3.73642 -0.82708 + -3.79045 -3.54383 -0.81839 + -3.79045 -3.54385 -0.81839 + -3.96355 -3.37859 -0.81050 + -4.12817 -3.20491 -0.80249 + -4.28390 -3.02284 -0.79433 + -4.43032 -2.83245 -0.78604 + -4.56701 -2.63377 -0.77760 + -4.56701 -2.63378 -0.77760 + -4.69387 -2.43939 -0.76901 + -4.81081 -2.23706 -0.76026 + -4.91744 -2.02682 -0.75136 + -5.01336 -1.80872 -0.74230 + -5.09818 -1.58278 -0.73307 + -5.09818 -1.58280 -0.73307 + -5.17594 -1.52590 -0.72367 + -5.25061 -1.45947 -0.71410 + -5.32173 -1.38352 -0.70437 + -5.38881 -1.29801 -0.69445 + -5.45137 -1.20293 -0.68436 + -5.45137 -1.20296 -0.68436 + -5.50929 -1.11246 -0.67409 + -5.56246 -1.01260 -0.66364 + -5.61040 -0.90337 -0.65301 + -5.65264 -0.78473 -0.64219 + -5.68871 -0.65666 -0.63119 + -5.68871 -0.65671 -0.63119 + -5.72493 -0.49375 -0.61709 + -5.75054 -0.31892 -0.60269 + -5.76478 -0.13216 -0.58800 + -5.76690 0.06660 -0.57300 + -5.75615 0.27743 -0.55771 + -5.75615 0.27737 -0.55771 + -5.73416 0.42436 -0.54212 + -5.70257 0.58268 -0.52623 + -5.66067 0.75240 -0.51004 + -5.60774 0.93360 -0.49356 + -5.54306 1.12636 -0.47679 + -5.54306 1.12630 -0.47679 + -5.46827 1.25518 -0.45973 + -5.38504 1.39492 -0.44239 + -5.29268 1.54559 -0.42477 + -5.19050 1.70729 -0.40687 + -5.07781 1.88007 -0.38871 + -5.07781 1.88001 -0.38871 + -4.95629 1.98851 -0.37028 + -4.82761 2.10745 -0.35159 + -4.69113 2.23688 -0.33265 + -4.54618 2.37688 -0.31347 + -4.39210 2.52751 -0.29405 + -4.39210 2.52747 -0.29405 + -4.23079 2.60667 -0.27441 + -4.06420 2.69582 -0.25454 + -3.89168 2.79496 -0.23446 + -3.71262 2.90416 -0.21419 + -3.52638 3.02345 -0.19371 + -3.52638 3.02341 -0.19371 + -3.33477 3.07479 -0.17306 + -3.13963 3.13562 -0.15223 + -2.94038 3.20594 -0.13124 + -2.73640 3.28578 -0.11010 + -2.52711 3.37518 -0.08881 + -2.52706 3.37340 -0.08881 + -2.31415 3.40367 -0.06740 + -2.09879 3.45225 -0.04586 + -1.87973 3.52097 -0.02421 + -1.65573 3.60991 -0.00247 + -1.42549 3.71912 0.01936 + -1.42550 3.71905 0.01936 + -1.25647 3.52511 0.03561 + -1.09650 3.33040 0.05190 + -0.94564 3.13491 0.06823 + -0.80392 2.93863 0.08458 + -0.67138 2.74152 0.10095 + -0.67138 2.74152 0.10095 + -0.54918 2.49565 0.11734 + -0.43847 2.24874 0.13375 + -0.33931 2.00077 0.15017 + -0.25175 1.75173 0.16660 + -0.17583 1.50160 0.18304 + -0.17583 1.50160 0.18304 + -0.11270 1.20392 0.19948 + -0.06349 0.90493 0.21592 + -0.02826 0.60463 0.23237 + -0.00707 0.30299 0.24882 + 0.00000 0.00000 0.26527 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -1857,11 +1989,11 @@ Status character 22.20553 17.88223 30.57996 22.41829 1 0 A 22.38280 18.49886 30.82410 22.59727 1 0 A 22.09200 18.49886 29.62780 22.74622 1 0 A - 22.37339 19.11549 29.86214 22.92613 110 0 - - 22.72437 19.73211 30.09619 23.10581 110 0 - - 23.07600 20.34874 30.32995 23.28528 110 0 - - 23.42821 20.96537 30.56344 23.46454 110 0 - - 23.78091 21.58200 30.79669 23.64362 110 77 - + 22.38696 19.11549 29.86214 22.92613 110 0 - + 22.73894 19.73211 30.09619 23.10581 110 0 - + 23.09157 20.34874 30.32995 23.28528 110 0 - + 23.44478 20.96537 30.56344 23.46454 110 0 - + 23.79849 21.58200 30.79669 23.64362 110 77 - 29.93588 21.58200 29.93588 29.93588 202 100 P 30.04685 22.03980 30.04685 30.04685 202 100 P 30.15771 22.49760 30.15771 30.15771 202 100 P @@ -1894,7 +2026,7 @@ Layer name [DATA] 8.70 11.815 'Dike' 6.28 11.631 'A' - 5.50 53.691 'B' + 5.50 53.695 'B' 2.80 21.149 'C' -0.50 0.000 'E' -8.00 0.000 'G' @@ -2083,114 +2215,114 @@ Status character 11.03410 0.00000 11.03410 2.83289 202 100 P 11.88796 0.00000 11.88796 3.05211 202 100 P 12.74278 0.00000 12.74278 3.27158 202 100 P - 12.88244 0.00000 14.09098 3.26412 110 91 - - 13.03175 0.00000 15.03738 3.48335 110 87 - - 13.18214 0.00000 15.98498 3.70286 110 82 - - 13.33299 0.00000 16.93383 3.92266 110 79 - - 13.48363 0.00000 17.88401 4.14276 110 75 - - 13.63343 0.00000 18.83557 4.36319 110 72 - - 13.62132 0.00000 20.83189 4.35107 110 65 - - 13.77056 0.00000 21.88587 4.57121 110 63 - - 13.92074 0.00000 22.94149 4.79170 110 61 - - 14.07118 0.00000 23.99878 5.01253 110 59 - - 14.22117 0.00000 25.05781 5.23372 110 57 - - 14.37004 0.00000 26.11860 5.45529 110 55 - - 14.35239 0.00000 29.01846 5.43764 110 49 - - 14.50033 0.00000 30.19904 5.65886 110 48 - - 14.64893 0.00000 31.38167 5.88047 110 47 - - 14.79747 0.00000 32.56638 6.10247 110 45 - - 14.94520 0.00000 33.75321 6.32486 110 44 - - 15.09139 0.00000 34.94220 6.54766 110 43 - - 9.94103 0.00000 39.18604 6.52354 110 25 - - 10.13973 0.00000 40.57138 6.75417 110 25 - - 10.33838 0.00000 41.95938 6.98524 110 25 - - 10.53696 0.00000 43.35005 7.21675 110 24 - - 10.73543 0.00000 44.74342 7.44871 110 24 - - 10.93375 0.00000 46.13950 7.68113 110 24 - - 10.90431 0.00000 46.26051 7.65169 110 24 - - 11.08044 0.00000 47.51259 7.85879 110 23 - - 11.25640 0.00000 48.76684 8.06625 110 23 - - 11.43218 0.00000 50.02329 8.27407 110 23 - - 11.60775 0.00000 51.28193 8.48225 110 23 - - 11.78310 0.00000 52.54276 8.69080 110 22 - - 11.75011 0.00000 60.02163 8.65781 110 20 - - 11.92442 0.00000 61.46442 8.86592 110 19 - - 12.09848 0.00000 62.90971 9.07440 110 19 - - 12.27226 0.00000 64.35750 9.28323 110 19 - - 12.44574 0.00000 65.80777 9.49243 110 19 - - 12.61892 0.00000 67.26052 9.70198 110 19 - - 14.14983 0.00000 116.49673 8.31594 110 12 - - 14.26762 0.00000 119.18479 8.50782 110 12 - - 14.38434 0.00000 121.87709 8.70001 110 12 - - 14.49998 0.00000 124.57362 8.89250 110 12 - - 14.61451 0.00000 127.27435 9.08528 110 11 - - 14.72791 0.00000 129.97925 9.27837 110 11 - - 14.74469 0.00000 117.77685 9.29514 110 13 - - 14.85729 0.00000 120.23157 9.48888 110 12 - - 14.96873 0.00000 122.69001 9.68290 110 12 - - 15.07900 0.00000 125.15215 9.87722 110 12 - - 15.18807 0.00000 127.61796 10.07182 110 12 - - 15.29593 0.00000 130.08739 10.26671 110 12 - - 15.26133 0.00000 126.36402 10.23211 110 12 - - 15.27709 0.61663 127.93625 10.35942 110 12 - - 15.29090 1.23326 129.51394 10.48717 110 12 - - 15.30274 1.84989 131.09701 10.61536 110 12 - - 15.31262 2.46651 132.68538 10.74397 110 12 - - 15.32051 3.08314 134.27899 10.87301 110 11 - - 16.39240 3.08314 137.66051 11.94490 110 12 - - 16.41105 3.69977 139.29954 12.08712 110 12 - - 16.42777 4.31640 140.94377 12.22979 110 12 - - 16.44255 4.93303 142.59313 12.37291 110 12 - - 16.45542 5.54966 144.24754 12.51647 110 11 - - 16.46637 6.16629 145.90691 12.66045 110 11 - - 17.54529 6.16629 152.26744 13.73937 110 12 - - 17.56665 6.78291 154.00425 13.89609 110 11 - - 17.58619 7.39954 155.74607 14.05325 110 11 - - 17.60392 8.01617 157.49282 14.21087 110 11 - - 17.61989 8.63280 159.24440 14.36892 110 11 - - 17.63412 9.24943 161.00075 14.52739 110 11 - - 18.65826 9.24943 168.01589 15.55153 110 11 - - 18.68200 9.86606 169.85364 15.72164 110 11 - - 18.70410 10.48269 171.69617 15.89218 110 11 - - 18.72464 11.09931 173.54341 16.06316 110 11 - - 18.74365 11.71594 175.39525 16.23457 110 11 - - 18.76118 12.33257 177.25163 16.40639 110 11 - - 19.72874 12.33257 184.45540 17.37395 110 11 - - 19.75500 12.94920 186.39184 17.55635 110 11 - - 19.77993 13.56583 188.33283 17.73917 110 11 - - 19.80359 14.18246 190.27826 17.92241 110 10 - - 19.82604 14.79909 192.22805 18.10606 110 10 - - 19.84735 15.41571 194.18213 18.29012 110 10 - - 20.75883 15.41571 201.35190 19.20160 110 10 - - 20.78825 16.03234 203.38248 19.39524 110 10 - - 20.81669 16.64897 205.41733 19.58929 110 10 - - 20.84423 17.26560 207.45637 19.78374 110 10 - - 20.87093 17.88223 209.49952 19.97858 110 10 - - 20.89688 18.49886 211.54669 20.17381 110 10 - - 21.75418 18.49886 218.56756 21.03111 110 10 - - 21.78776 19.11549 220.68675 21.23502 110 10 - - 21.82076 19.73211 222.80993 21.43932 110 10 - - 21.85327 20.34874 224.93704 21.64399 110 10 - - 21.88537 20.96537 227.06799 21.84904 110 10 - - 21.91715 21.58200 229.20270 22.05444 110 0 - - 34.08795 21.58200 67.21244 34.12228 110 0 - - 34.21539 22.03980 67.52713 34.28204 110 0 - - 34.34306 22.49760 67.84241 34.44210 110 0 - - 34.47095 22.95540 68.15827 34.60246 110 0 - - 34.59908 23.41320 68.47471 34.76310 110 0 - - 34.72745 23.87100 68.79170 34.92404 110 0 - - 35.20493 23.87100 89.80379 35.40151 110 0 - - 35.33574 24.32880 90.21833 35.56492 110 0 - - 35.46681 24.78660 90.63358 35.72862 110 0 - - 35.59813 25.24440 91.04954 35.89260 110 0 - - 35.72970 25.70220 91.46619 36.05684 110 0 - - 35.86153 26.16000 91.88352 36.22136 110 0 - - 36.31901 26.16000 110.69528 36.67884 110 0 - - 36.45317 26.61780 111.19887 36.84570 110 0 - - 36.58759 27.07560 111.70325 37.01283 110 0 - - 36.72227 27.53340 112.20843 37.18022 110 0 - - 36.85720 27.99120 112.71437 37.34786 110 0 - - 36.99239 28.44900 113.22108 37.51576 110 0 - + 12.96821 0.00000 14.09098 3.26412 110 92 - + 13.11642 0.00000 15.03738 3.48335 110 87 - + 13.26481 0.00000 15.98498 3.70286 110 83 - + 13.41333 0.00000 16.93383 3.92266 110 79 - + 13.56198 0.00000 17.88401 4.14276 110 76 - + 13.71071 0.00000 18.83557 4.36319 110 73 - + 13.69860 0.00000 20.83189 4.35107 110 66 - + 13.84677 0.00000 21.88587 4.57121 110 63 - + 13.99494 0.00000 22.94149 4.79170 110 61 - + 14.14307 0.00000 23.99878 5.01253 110 59 - + 14.29108 0.00000 25.05781 5.23372 110 57 - + 14.43893 0.00000 26.11860 5.45529 110 55 - + 14.42128 0.00000 29.01846 5.43764 110 50 - + 14.56819 0.00000 30.19904 5.65886 110 48 - + 14.71480 0.00000 31.38167 5.88047 110 47 - + 14.86103 0.00000 32.56638 6.10247 110 46 - + 15.00681 0.00000 33.75321 6.32486 110 44 - + 15.15205 0.00000 34.94220 6.54766 110 43 - + 9.96530 0.00000 39.18604 6.52354 110 25 - + 10.16332 0.00000 40.57138 6.75417 110 25 - + 10.36131 0.00000 41.95938 6.98524 110 25 - + 10.55922 0.00000 43.35005 7.21675 110 24 - + 10.75703 0.00000 44.74342 7.44871 110 24 - + 10.95470 0.00000 46.13950 7.68113 110 24 - + 10.92526 0.00000 46.26051 7.65169 110 24 - + 11.10080 0.00000 47.51259 7.85879 110 23 - + 11.27619 0.00000 48.76684 8.06625 110 23 - + 11.45140 0.00000 50.02329 8.27407 110 23 - + 11.62640 0.00000 51.28193 8.48225 110 23 - + 11.80119 0.00000 52.54276 8.69080 110 22 - + 11.76819 0.00000 60.02163 8.65781 110 20 - + 11.94195 0.00000 61.46442 8.86592 110 19 - + 12.11545 0.00000 62.90971 9.07440 110 19 - + 12.28867 0.00000 64.35750 9.28323 110 19 - + 12.46161 0.00000 65.80777 9.49243 110 19 - + 12.63425 0.00000 67.26052 9.70198 110 19 - + 14.18048 0.00000 116.49673 8.31594 110 12 - + 14.29719 0.00000 119.18479 8.50782 110 12 - + 14.41285 0.00000 121.87709 8.70001 110 12 - + 14.52743 0.00000 124.57362 8.89250 110 12 - + 14.64090 0.00000 127.27435 9.08528 110 12 - + 14.75327 0.00000 129.97925 9.27837 110 11 - + 14.77004 0.00000 117.77685 9.29514 110 13 - + 14.88161 0.00000 120.23157 9.48888 110 12 - + 14.99203 0.00000 122.69001 9.68290 110 12 - + 15.10128 0.00000 125.15215 9.87722 110 12 - + 15.20934 0.00000 127.61796 10.07182 110 12 - + 15.31620 0.00000 130.08739 10.26671 110 12 - + 15.28160 0.00000 126.36402 10.23211 110 12 - + 15.29612 0.61663 127.93625 10.35942 110 12 - + 15.30870 1.23326 129.51394 10.48717 110 12 - + 15.31933 1.84989 131.09701 10.61536 110 12 - + 15.32800 2.46651 132.68538 10.74397 110 12 - + 15.33470 3.08314 134.27899 10.87301 110 11 - + 16.40659 3.08314 137.66051 11.94490 110 12 - + 16.42407 3.69977 139.29954 12.08712 110 12 - + 16.43963 4.31640 140.94377 12.22979 110 12 - + 16.45326 4.93303 142.59313 12.37291 110 12 - + 16.46498 5.54966 144.24754 12.51647 110 11 - + 16.47480 6.16629 145.90691 12.66045 110 11 - + 17.55372 6.16629 152.26744 13.73937 110 12 - + 17.57396 6.78291 154.00425 13.89609 110 11 - + 17.59239 7.39954 155.74607 14.05325 110 11 - + 17.60902 8.01617 157.49282 14.21087 110 11 - + 17.62390 8.63280 159.24440 14.36892 110 11 - + 17.63705 9.24943 161.00075 14.52739 110 11 - + 18.66119 9.24943 168.01589 15.55153 110 11 - + 18.68385 9.86606 169.85364 15.72164 110 11 - + 18.70489 10.48269 171.69617 15.89218 110 11 - + 18.72437 11.09931 173.54341 16.06316 110 11 - + 18.74232 11.71594 175.39525 16.23457 110 11 - + 18.75881 12.33257 177.25163 16.40639 110 11 - + 19.72637 12.33257 184.45540 17.37395 110 11 - + 19.75160 12.94920 186.39184 17.55635 110 11 - + 19.77549 13.56583 188.33283 17.73917 110 11 - + 19.79812 14.18246 190.27826 17.92241 110 10 - + 19.81955 14.79909 192.22805 18.10606 110 10 - + 19.83983 15.41571 194.18213 18.29012 110 10 - + 20.75131 15.41571 201.35190 19.20160 110 10 - + 20.77972 16.03234 203.38248 19.39524 110 10 - + 20.80715 16.64897 205.41733 19.58929 110 10 - + 20.83367 17.26560 207.45637 19.78374 110 10 - + 20.85937 17.88223 209.49952 19.97858 110 10 - + 20.88431 18.49886 211.54669 20.17381 110 10 - + 21.74161 18.49886 218.56756 21.03111 110 10 - + 21.77419 19.11549 220.68675 21.23502 110 10 - + 21.80619 19.73211 222.80993 21.43932 110 10 - + 21.83770 20.34874 224.93704 21.64399 110 10 - + 21.86880 20.96537 227.06799 21.84904 110 10 - + 21.89957 21.58200 229.20270 22.05444 110 0 - + 34.08356 21.58200 67.21244 34.12228 110 0 - + 34.21081 22.03980 67.52713 34.28204 110 0 - + 34.33829 22.49760 67.84241 34.44210 110 0 - + 34.46600 22.95540 68.15827 34.60246 110 0 - + 34.59395 23.41320 68.47471 34.76310 110 0 - + 34.72214 23.87100 68.79170 34.92404 110 0 - + 35.19961 23.87100 89.80379 35.40151 110 0 - + 35.33024 24.32880 90.21833 35.56492 110 0 - + 35.46112 24.78660 90.63358 35.72862 110 0 - + 35.59226 25.24440 91.04954 35.89260 110 0 - + 35.72364 25.70220 91.46619 36.05684 110 0 - + 35.85529 26.16000 91.88352 36.22136 110 0 - + 36.31276 26.16000 110.69528 36.67884 110 0 - + 36.44674 26.61780 111.19887 36.84570 110 0 - + 36.58098 27.07560 111.70325 37.01283 110 0 - + 36.71547 27.53340 112.20843 37.18022 110 0 - + 36.85022 27.99120 112.71437 37.34786 110 0 - + 36.98522 28.44900 113.22108 37.51576 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -2203,10 +2335,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 8.70 16.150 'Dike' - 6.28 8.805 'A' - 5.50 48.377 'B' - 2.80 24.872 'C' + 8.70 16.209 'Dike' + 6.28 8.820 'A' + 5.50 48.391 'B' + 2.80 24.868 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -2392,10 +2524,10 @@ Is favorable (0=false, 1=true) 0 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.76 : Percentage mobilized resistance left - 19.05 : Percentage mobilized resistance right - 133.36 : Effective left - 133.01 : Effective right + 14.70 : Percentage mobilized resistance left + 19.03 : Percentage mobilized resistance right + 132.86 : Effective left + 132.87 : Effective right 41.25 : Water pressure left 41.25 : Water pressure right 903.53 : Max effective resistance left @@ -2404,8 +2536,8 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 45.23 : Vertical force left - 44.01 : Vertical force right + 45.04 : Vertical force left + 43.96 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 8.45 : Level of single support @@ -2422,144 +2554,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -19.04730 - 0.00470 0.17816 -18.79490 - 0.02029 0.39433 -18.54250 - 0.04864 0.64134 -18.29011 - 0.09139 0.91799 -18.03771 - 0.15016 1.22410 -17.78532 - 0.15016 1.22410 -17.78532 - 0.22534 1.51411 -17.53294 - 0.31718 1.82949 -17.28056 - 0.42705 2.17019 -17.02820 - 0.55636 2.53617 -16.77585 - 0.70649 2.92738 -16.52353 - 0.70649 2.94639 -16.52353 - 0.87577 3.32689 -16.27362 - 1.06620 3.72996 -16.02704 - 1.27901 4.15555 -15.78161 - 1.51541 4.60362 -15.53513 - 1.77661 5.07412 -15.28540 - 1.77661 5.11773 -15.28540 - 2.06564 5.59076 -15.03574 - 2.38079 6.08521 -14.78945 - 2.72323 6.60106 -14.54436 - 3.09409 7.13823 -14.29828 - 3.49454 7.69670 -14.04902 - 3.49454 7.74866 -14.04902 - 3.92812 8.31351 -13.79989 - 4.39277 8.89901 -13.55420 - 4.88959 9.50510 -13.30978 - 5.41969 10.13174 -13.06446 - 5.98419 10.77888 -12.81605 - 5.98419 10.83917 -12.81605 - 6.58711 11.49480 -12.56787 - 7.22598 12.17047 -12.32322 - 7.90188 12.86612 -12.07994 - 8.61588 13.58172 -11.83588 - 9.36907 14.31721 -11.58889 - 9.36907 14.38455 -11.58889 - 10.16521 15.10533 -11.34224 - 11.00078 15.84500 -11.09924 - 11.87681 16.60352 -10.85775 - 12.79430 17.38085 -10.61564 - 13.75428 18.17694 -10.37078 - 13.75427 18.25078 -10.37078 - 14.76132 19.05041 -10.12643 - 15.81205 19.86838 -9.88587 - 16.90744 20.70464 -9.64700 - 18.04848 21.55916 -9.40772 - 19.23616 22.43191 -9.16594 - 19.23616 22.47116 -9.16594 - 20.51999 23.38345 -8.91817 - 21.85546 24.31500 -8.67124 - 23.24363 25.26577 -8.42522 - 24.68559 26.23572 -8.18016 - 26.18239 27.22482 -7.93612 - 26.18253 27.21807 -7.93612 - 27.54532 26.88996 -7.71913 - 28.85124 25.34484 -7.50305 - 30.07961 23.78788 -7.28791 - 31.22983 22.21885 -7.07377 - 32.30129 20.63754 -6.86064 - 32.30128 20.63743 -6.86064 - 33.30010 19.31594 -6.64859 - 34.23293 17.99777 -6.43762 - 35.09992 16.68266 -6.22778 - 35.90124 15.37038 -6.01909 - 36.63700 14.06066 -5.81158 - 36.63700 14.06081 -5.81158 - 37.28093 11.70458 -5.60528 - 37.80829 9.39786 -5.40020 - 38.22153 7.14016 -5.19637 - 38.52311 4.93095 -4.99378 - 38.71543 2.76972 -4.79246 - 38.71543 2.76993 -4.79246 - 38.80465 0.80793 -4.59242 - 38.79710 -1.10118 -4.39365 - 38.69541 -2.95792 -4.19616 - 38.50217 -4.76282 -3.99993 - 38.21998 -6.51640 -3.80497 - 38.21997 -6.51609 -3.80497 - 37.74770 -8.49394 -3.56166 - 37.15427 -10.37140 -3.32031 - 36.44595 -12.14949 -3.08089 - 35.62897 -13.82918 -2.84335 - 34.70947 -15.41142 -2.60767 - 34.70947 -15.41105 -2.60767 - 33.69717 -16.78199 -2.37379 - 32.60178 -18.05497 -2.14167 - 31.42944 -19.23088 -1.91123 - 30.18620 -20.31055 -1.68242 - 28.87811 -21.29482 -1.45518 - 28.87816 -21.29498 -1.45518 - 27.51419 -22.08810 -1.22945 - 26.10337 -22.78554 -1.00514 - 24.65171 -23.38801 -0.78218 - 23.16514 -23.89619 -0.56051 - 21.64983 -24.29856 -0.34003 - 21.64940 -24.31466 -0.34003 - 20.11486 -24.47893 -0.12069 - 18.57613 -24.44851 0.09762 - 17.04539 -24.22455 0.31495 - 15.53479 -23.80810 0.53141 - 14.05638 -23.20015 0.74705 - 14.05634 -23.19935 0.74705 - 12.62342 -22.36179 0.96197 - 11.24914 -21.33356 1.17623 - 9.94547 -20.11538 1.38991 - 8.72432 -18.70793 1.60306 - 7.59662 -17.15688 1.81576 - 7.59704 -17.14107 1.81576 - 6.57071 -15.49919 2.02808 - 5.65052 -13.76412 2.24005 - 4.84231 -11.93613 2.45173 - 4.15192 -10.01542 2.66314 - 3.58517 -8.00219 2.87435 - 3.58522 -8.00392 2.87435 - 3.10539 -7.26362 3.08537 - 2.67204 -6.52519 3.29623 - 2.28504 -5.78862 3.50695 - 1.94429 -5.05392 3.71755 - 1.64965 -4.32109 3.92804 - 1.64965 -4.32116 3.92804 - 1.45305 -4.10316 4.08427 - 1.26681 -3.87704 4.24045 - 1.09132 -3.64279 4.39659 - 0.92694 -3.40042 4.55271 - 0.77407 -3.14992 4.70880 - 0.77407 -3.14992 4.70880 - 0.63339 -2.87799 4.86486 - 0.50559 -2.59783 5.02091 - 0.39105 -2.30945 5.17694 - 0.29017 -2.01283 5.33296 - 0.20332 -1.70797 5.48898 - 0.20332 -1.70797 5.48898 - 0.13116 -1.38305 5.64499 - 0.07436 -1.04979 5.80099 - 0.03331 -0.70820 5.95699 - 0.00839 -0.35827 6.11299 - 0.00000 0.00000 6.26899 + 0.00000 0.00000 -18.78318 + 0.00470 0.17816 -18.53426 + 0.02029 0.39433 -18.28535 + 0.04864 0.64134 -18.03643 + 0.09139 0.91799 -17.78752 + 0.15016 1.22410 -17.53861 + 0.15016 1.22410 -17.53861 + 0.22534 1.51411 -17.28970 + 0.31718 1.82949 -17.04081 + 0.42705 2.17019 -16.79193 + 0.55636 2.53617 -16.54306 + 0.70649 2.92738 -16.29422 + 0.70649 2.92738 -16.29422 + 0.87474 3.30788 -16.04993 + 1.06415 3.71095 -15.80567 + 1.27593 4.13654 -15.56145 + 1.51130 4.58461 -15.31729 + 1.77147 5.05511 -15.07318 + 1.77147 5.05511 -15.07318 + 2.05712 5.52813 -14.82913 + 2.36890 6.02259 -14.58517 + 2.70795 6.53843 -14.34130 + 3.07543 7.07561 -14.09753 + 3.47250 7.63407 -13.85388 + 3.47250 7.63407 -13.85388 + 3.89990 8.19893 -13.61036 + 4.35835 8.78442 -13.36700 + 4.84898 9.39052 -13.12380 + 5.37290 10.01716 -12.88078 + 5.93121 10.66429 -12.63797 + 5.93121 10.66429 -12.63797 + 6.52469 11.31992 -12.39539 + 7.15412 11.99559 -12.15306 + 7.82057 12.69125 -11.91100 + 8.52513 13.40684 -11.66925 + 9.26887 14.14233 -11.42782 + 9.26887 14.14233 -11.42782 + 10.05193 14.86310 -11.18675 + 10.87443 15.60277 -10.94606 + 11.73737 16.36129 -10.70578 + 12.64178 17.13862 -10.46596 + 13.58868 17.93472 -10.22663 + 13.58868 17.93470 -10.22663 + 14.57866 18.73434 -9.98781 + 15.61232 19.55230 -9.74955 + 16.69064 20.38857 -9.51189 + 17.81461 21.24309 -9.27487 + 18.98522 22.11584 -9.03854 + 18.98522 22.11582 -9.03854 + 20.24916 23.02811 -8.79422 + 21.56473 23.95966 -8.55073 + 22.93300 24.91043 -8.30813 + 24.35505 25.88038 -8.06649 + 25.83196 26.86948 -7.82584 + 25.83210 26.86283 -7.82584 + 27.17731 26.54545 -7.61188 + 28.46653 25.02148 -7.39881 + 29.67925 23.48506 -7.18667 + 30.81483 21.93599 -6.97551 + 31.87263 20.37403 -6.76535 + 31.87262 20.37393 -6.76535 + 32.85873 19.07120 -6.55625 + 33.77978 17.77119 -6.34823 + 34.63590 16.47367 -6.14132 + 35.42719 15.17839 -5.93554 + 36.15377 13.88509 -5.73093 + 36.15376 13.88524 -5.73093 + 36.78971 11.56070 -5.52751 + 37.31064 9.28452 -5.32529 + 37.71896 7.05621 -5.12430 + 38.01705 4.87526 -4.92455 + 38.20727 2.74115 -4.72605 + 38.20727 2.74136 -4.72605 + 38.29572 0.80537 -4.52880 + 38.28867 -1.07885 -4.33282 + 38.18869 -2.91181 -4.13809 + 37.99833 -4.69403 -3.94461 + 37.72012 -6.42603 -3.75238 + 37.72012 -6.42572 -3.75238 + 37.25434 -8.37798 -3.51248 + 36.66895 -10.23157 -3.27452 + 35.97013 -11.98747 -3.03846 + 35.16398 -13.64666 -2.80426 + 34.25656 -15.21008 -2.57188 + 34.25656 -15.20971 -2.57188 + 33.25746 -16.56348 -2.34129 + 32.17631 -17.82095 -2.11243 + 31.01912 -18.98297 -1.88524 + 29.79186 -20.05038 -1.65965 + 28.50046 -21.02400 -1.43561 + 28.50051 -21.02416 -1.43561 + 27.15385 -21.80824 -1.21306 + 25.76087 -22.49823 -0.99191 + 24.32746 -23.09485 -0.77210 + 22.85946 -23.59874 -0.55356 + 21.36297 -23.99735 -0.33620 + 21.36254 -24.01318 -0.33620 + 19.84705 -24.17500 -0.11995 + 18.32741 -24.14530 0.09527 + 16.81563 -23.92522 0.30954 + 15.32363 -23.51581 0.52293 + 13.86330 -22.91803 0.73553 + 13.86326 -22.91724 0.73553 + 12.44767 -22.09298 0.94741 + 11.08979 -21.08115 1.15865 + 9.80138 -19.88249 1.36930 + 8.59417 -18.49765 1.57944 + 7.47904 -16.96562 1.78914 + 7.47945 -16.95006 1.78914 + 6.46468 -15.32283 1.99845 + 5.55507 -13.60398 2.20743 + 4.75638 -11.79377 2.41612 + 4.07434 -9.89241 2.62455 + 3.51467 -7.90010 2.83277 + 3.51472 -7.90184 2.83277 + 3.04131 -7.16154 3.04082 + 2.61437 -6.42311 3.24870 + 2.23379 -5.68654 3.45645 + 1.89945 -4.95184 3.66408 + 1.61123 -4.21901 3.87161 + 1.61123 -4.21908 3.87161 + 1.41927 -4.00645 4.02564 + 1.23742 -3.78590 4.17962 + 1.06604 -3.55743 4.33357 + 0.90551 -3.32105 4.48748 + 0.75620 -3.07675 4.64137 + 0.75620 -3.07674 4.64137 + 0.61878 -2.81121 4.79524 + 0.49394 -2.53765 4.94909 + 0.38206 -2.25607 5.10293 + 0.28350 -1.96646 5.25675 + 0.19865 -1.66882 5.41057 + 0.19865 -1.66882 5.41057 + 0.12815 -1.35132 5.56438 + 0.07265 -1.02568 5.71819 + 0.03254 -0.69192 5.87200 + 0.00820 -0.35003 6.02580 + 0.00000 0.00000 6.17961 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -2816,25 +2948,25 @@ Status character 22.67501 7.39954 158.68314 22.67501 1 14 A 22.85109 8.01617 159.91542 22.85109 1 14 A 23.02699 8.63280 161.14635 23.02699 1 14 A - 23.58915 9.24943 162.37603 23.20270 110 15 - - 23.59000 9.24943 184.91119 23.20355 110 13 - - 25.37396 9.86606 186.31020 23.37910 110 14 - - 27.14736 10.48269 187.70800 23.55451 110 14 - - 28.91088 11.09931 189.10468 23.72977 110 15 - - 30.66523 11.71594 190.50035 23.90490 110 16 - - 32.41111 12.33257 191.89508 24.07992 110 17 - - 31.90566 12.33257 201.14102 23.57447 110 16 - - 33.64012 12.94920 202.60209 23.74572 110 17 - - 35.36748 13.56583 204.06237 23.91687 110 17 - - 37.08837 14.18246 205.52196 24.08794 110 18 - - 38.80341 14.79909 206.98095 24.25894 110 19 - - 40.51322 15.41571 208.43943 24.42987 110 19 - - 40.22999 15.41571 208.24831 24.35259 110 19 - - 41.93292 16.03234 209.70501 24.52294 110 20 - - 43.63170 16.64897 211.16136 24.69325 110 21 - - 45.32675 17.26560 212.61743 24.86352 110 21 - - 47.01850 17.88223 214.07330 25.03377 110 22 - - 48.70738 18.49886 215.52904 25.20400 110 23 - + 23.62278 9.24943 162.37603 23.20270 110 15 - + 23.62363 9.24943 184.91119 23.20355 110 13 - + 25.38174 9.86606 186.31020 23.37910 110 14 - + 27.12940 10.48269 187.70800 23.55451 110 14 - + 28.86730 11.09931 189.10468 23.72977 110 15 - + 30.59613 11.71594 190.50035 23.90490 110 16 - + 32.31659 12.33257 191.89508 24.07992 110 17 - + 31.81114 12.33257 201.14102 23.57447 110 16 - + 33.52026 12.94920 202.60209 23.74572 110 17 - + 35.22236 13.56583 204.06237 23.91687 110 17 - + 36.91806 14.18246 205.52196 24.08794 110 18 - + 38.60797 14.79909 206.98095 24.25894 110 19 - + 40.29271 15.41571 208.43943 24.42987 110 19 - + 40.00948 15.41571 208.24831 24.35259 110 19 - + 41.68740 16.03234 209.70501 24.52294 110 20 - + 43.36120 16.64897 211.16136 24.69325 110 21 - + 45.03133 17.26560 212.61743 24.86352 110 21 - + 46.69819 17.88223 214.07330 25.03377 110 22 - + 48.36222 18.49886 215.52904 25.20400 110 22 - 27.54529 18.49886 27.54529 25.66148 202 100 P 27.73133 19.11549 27.73133 25.83480 202 100 P 27.91738 19.73211 27.91738 26.00812 202 100 P @@ -2873,7 +3005,7 @@ Layer name [DATA] 8.70 22.116 'Dike' 6.28 14.298 'A' - 5.50 73.264 'B' + 5.50 73.117 'B' 2.80 23.336 'C' -0.50 0.000 'E' -8.00 0.000 'G' @@ -3073,58 +3205,58 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 48.74741 0.00000 89.52160 17.87089 110 54 - - 49.28311 0.00000 96.53481 19.27091 110 51 - - 49.82259 0.00000 103.54801 20.67093 110 48 - - 50.36602 0.00000 110.56120 22.07095 110 46 - - 50.91354 0.00000 117.57438 23.47097 110 43 - - 45.48935 0.00000 103.78224 18.04677 110 44 - - 45.71758 0.00000 109.97272 19.12324 110 42 - - 45.95019 0.00000 116.16318 20.19971 110 40 - - 46.18729 0.00000 122.35362 21.27617 110 38 - - 46.42899 0.00000 128.54404 22.35262 110 36 - - 46.67540 0.00000 134.73443 23.42908 110 35 - - 65.60904 0.00000 158.02006 19.11638 110 42 - - 64.88859 0.00000 165.70736 20.04635 110 39 - - 64.17794 0.00000 173.39462 20.97631 110 37 - - 63.47720 0.00000 181.08185 21.90627 110 35 - - 62.78647 0.00000 188.76903 22.83622 110 33 - - 62.10586 0.00000 196.45616 23.76617 110 32 - - 59.01984 0.00000 184.48425 20.68016 110 32 - - 58.22869 0.00000 191.70289 21.48934 110 30 - - 57.44773 0.00000 198.92147 22.29853 110 29 - - 56.67695 0.00000 206.14001 23.10770 110 27 - - 55.91630 0.00000 213.35848 23.91687 110 26 - - 55.16578 0.00000 220.57690 24.72604 110 25 - - 52.81707 0.00000 212.11951 22.37733 110 25 - - 51.39173 0.61663 217.05936 22.89845 110 24 - - 49.98207 1.23326 221.99910 23.41956 110 23 - - 48.58778 1.84989 226.93873 23.94066 110 21 - - 47.20859 2.46651 231.87826 24.46175 110 20 - - 45.84419 3.08314 236.81766 24.98283 110 19 - - 44.03100 3.08314 230.74571 23.16964 110 19 - - 42.64323 3.69977 235.55834 23.65289 110 18 - - 41.26946 4.31640 240.37085 24.13612 110 17 - - 39.90918 4.93303 245.18322 24.61934 110 16 - - 38.56193 5.54966 249.99546 25.10255 110 15 - - 37.22720 6.16629 254.80755 25.58574 110 15 - - 35.70401 6.16629 249.35055 24.06256 110 14 - - 34.35253 6.78291 254.05943 24.51697 110 14 - - 33.01247 7.39954 258.76817 24.97137 110 13 - - 31.68322 8.01617 263.47675 25.42575 110 12 - - 30.36418 8.63280 268.18516 25.88012 110 11 - - 29.05475 9.24943 272.89341 26.33447 110 11 - - 27.75679 9.24943 267.92584 25.03651 110 10 - - 26.43395 9.86606 272.54821 25.46845 110 10 - - 25.11945 10.48269 277.17041 25.90038 110 0 - - 23.81266 11.09931 281.79242 26.33229 110 0 - - 22.51293 11.71594 286.41426 26.76418 110 0 - - 21.21964 12.33257 291.03590 27.19605 110 0 - - 20.10081 12.33257 286.47433 26.07721 110 0 - - 18.79555 12.94920 291.02335 26.49130 110 0 - - 17.49551 13.56583 295.57216 26.90537 110 0 - - 16.20016 14.18246 300.12078 27.31942 110 0 - - 14.90895 14.79909 304.66918 27.73345 110 0 - + 48.31840 0.00000 89.52160 17.87089 110 54 - + 48.86614 0.00000 96.53481 19.27091 110 51 - + 49.41761 0.00000 103.54801 20.67093 110 48 - + 49.97297 0.00000 110.56120 22.07095 110 45 - + 50.53239 0.00000 117.57438 23.47097 110 43 - + 45.10819 0.00000 103.78224 18.04677 110 43 - + 45.34825 0.00000 109.97272 19.12324 110 41 - + 45.59263 0.00000 116.16318 20.19971 110 39 - + 45.84144 0.00000 122.35362 21.27617 110 37 - + 46.09479 0.00000 128.54404 22.35262 110 36 - + 46.35279 0.00000 134.73443 23.42908 110 34 - + 64.96380 0.00000 158.02006 19.11638 110 41 - + 64.26640 0.00000 165.70736 20.04635 110 39 - + 63.57866 0.00000 173.39462 20.97631 110 37 - + 62.90071 0.00000 181.08185 21.90627 110 35 - + 62.23263 0.00000 188.76903 22.83622 110 33 - + 61.57454 0.00000 196.45616 23.76617 110 31 - + 58.48853 0.00000 184.48425 20.68016 110 32 - + 57.71976 0.00000 191.70289 21.48934 110 30 - + 56.96106 0.00000 198.92147 22.29853 110 29 - + 56.21239 0.00000 206.14001 23.10770 110 27 - + 55.47374 0.00000 213.35848 23.91687 110 26 - + 54.74506 0.00000 220.57690 24.72604 110 25 - + 52.39635 0.00000 212.11951 22.37733 110 25 - + 50.99830 0.61663 217.05936 22.89845 110 23 - + 49.61572 1.23326 221.99910 23.41956 110 22 - + 48.24832 1.84989 226.93873 23.94066 110 21 - + 46.89581 2.46651 231.87826 24.46175 110 20 - + 45.55790 3.08314 236.81766 24.98283 110 19 - + 43.74471 3.08314 230.74571 23.16964 110 19 - + 42.38325 3.69977 235.55834 23.65289 110 18 - + 41.03559 4.31640 240.37085 24.13612 110 17 - + 39.70126 4.93303 245.18322 24.61934 110 16 - + 38.37977 5.54966 249.99546 25.10255 110 15 - + 37.07065 6.16629 254.80755 25.58574 110 15 - + 35.54747 6.16629 249.35055 24.06256 110 14 - + 34.22144 6.78291 254.05943 24.51697 110 13 - + 32.90668 7.39954 258.76817 24.97137 110 13 - + 31.60259 8.01617 263.47675 25.42575 110 12 - + 30.30857 8.63280 268.18516 25.88012 110 11 - + 29.02404 9.24943 272.89341 26.33447 110 11 - + 27.72609 9.24943 267.92584 25.03651 110 10 - + 26.42803 9.86606 272.54821 25.46845 110 10 - + 25.13819 10.48269 277.17041 25.90038 110 0 - + 23.85596 11.09931 281.79242 26.33229 110 0 - + 22.58070 11.71594 286.41426 26.76418 110 0 - + 21.31180 12.33257 291.03590 27.19605 110 0 - + 20.19296 12.33257 286.47433 26.07721 110 0 - + 18.91200 12.94920 291.02335 26.49130 110 0 - + 17.63620 13.56583 295.57216 26.90537 110 0 - + 16.36501 14.18246 300.12078 27.31942 110 0 - + 15.09790 14.79909 304.66918 27.73345 110 0 - 15.05622 15.41571 309.21738 28.14747 1 0 A 14.85140 15.41571 305.00021 27.17365 1 0 A 15.06984 16.03234 309.48617 27.57332 1 0 A @@ -3138,24 +3270,24 @@ Status character 16.40020 20.34874 336.79999 29.48062 1 0 A 16.61594 20.96537 341.23040 29.86842 1 0 A 16.83166 21.58200 345.66056 30.25620 1 0 A - 28.09871 21.58200 193.79030 35.95480 110 0 - - 28.02749 22.03980 195.09049 36.19603 110 0 - - 27.95634 22.49760 196.39060 36.43724 110 0 - - 27.88525 22.95540 197.69063 36.67844 110 0 - - 27.81421 23.41320 198.99059 36.91963 110 0 - - 27.74321 23.87100 200.29046 37.16080 110 0 - - 27.34085 23.87100 198.09857 36.75845 110 0 - - 27.26727 24.32880 199.38414 36.99699 110 0 - - 27.19370 24.78660 200.66962 37.23552 110 0 - - 27.12015 25.24440 201.95502 37.47403 110 0 - - 27.04660 25.70220 203.24033 37.71253 110 0 - - 26.97306 26.16000 204.52556 37.95101 110 0 - - 26.60244 26.16000 202.43519 37.58039 110 0 - - 26.52656 26.61780 203.70720 37.81653 110 0 - - 26.45068 27.07560 204.97912 38.05265 110 0 - - 26.37478 27.53340 206.25096 38.28876 110 0 - - 26.29887 27.99120 207.52271 38.52485 110 0 - - 26.22294 28.44900 208.79438 38.76092 110 0 - + 28.21157 21.58200 193.79030 35.95480 110 0 - + 28.14475 22.03980 195.09049 36.19603 110 0 - + 28.07800 22.49760 196.39060 36.43724 110 0 - + 28.01131 22.95540 197.69063 36.67844 110 0 - + 27.94467 23.41320 198.99059 36.91963 110 0 - + 27.87806 23.87100 200.29046 37.16080 110 0 - + 27.47570 23.87100 198.09857 36.75845 110 0 - + 27.40651 24.32880 199.38414 36.99699 110 0 - + 27.33734 24.78660 200.66962 37.23552 110 0 - + 27.26818 25.24440 201.95502 37.47403 110 0 - + 27.19902 25.70220 203.24033 37.71253 110 0 - + 27.12987 26.16000 204.52556 37.95101 110 0 - + 26.75925 26.16000 202.43519 37.58039 110 0 - + 26.68777 26.61780 203.70720 37.81653 110 0 - + 26.61627 27.07560 204.97912 38.05265 110 0 - + 26.54476 27.53340 206.25096 38.28876 110 0 - + 26.47325 27.99120 207.52271 38.52485 110 0 - + 26.40171 28.44900 208.79438 38.76092 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3169,9 +3301,9 @@ Layer name [END OF COLUMN INDICATION] [DATA] 8.70 0.000 'Dike' - 6.28 22.702 'A' - 5.50 91.645 'B' - 2.80 19.014 'C' + 6.28 22.522 'A' + 5.50 91.221 'B' + 2.80 19.117 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -3201,40 +3333,40 @@ Depth 7.95500 7.90000 7.90000 - 7.86050 - 7.82100 - 7.78150 - 7.74200 - 7.70250 - 7.70250 - 7.66300 - 7.62350 - 7.58400 - 7.54450 - 7.50500 - 7.50500 - 7.44375 - 7.38250 - 7.32125 - 7.26000 - 7.19875 - 7.19875 - 7.13750 - 7.07625 - 7.01500 - 6.95375 - 6.89250 - 6.89250 - 6.83125 - 6.77000 - 6.70875 - 6.64750 - 6.58625 - 6.58625 - 6.52500 - 6.46375 - 6.40250 - 6.34125 + 7.84600 + 7.79200 + 7.73800 + 7.68400 + 7.63000 + 7.63000 + 7.57600 + 7.52200 + 7.46800 + 7.41400 + 7.36000 + 7.36000 + 7.30600 + 7.25200 + 7.19800 + 7.14400 + 7.09000 + 7.09000 + 7.03600 + 6.98200 + 6.92800 + 6.87400 + 6.82000 + 6.82000 + 6.76600 + 6.71200 + 6.65800 + 6.60400 + 6.55000 + 6.55000 + 6.49600 + 6.44200 + 6.38800 + 6.33400 6.28000 6.28000 6.22400 @@ -3340,20 +3472,20 @@ PartialFactorSet=12 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 14.98 : Percentage mobilized resistance left - 20.21 : Percentage mobilized resistance right - 85.86 : Effective left - 85.86 : Effective right + 17.15 : Percentage mobilized resistance left + 19.27 : Percentage mobilized resistance right + 98.29 : Effective left + 98.29 : Effective right 41.25 : Water pressure left 41.25 : Water pressure right 573.14 : Max effective resistance left - 424.75 : Max effective resistance right + 510.12 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 27.37 : Vertical force left - 28.19 : Vertical force right + 31.62 : Vertical force left + 32.16 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 8.45 : Level of single support @@ -3370,144 +3502,144 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -0.55124 - 0.00000 0.00000 -0.54910 - 0.00000 0.00000 -0.54695 - 0.00000 0.00000 -0.54481 - 0.00000 0.00000 -0.54267 - 0.00000 0.00000 -0.54052 - 0.00000 0.00000 -0.54052 - 0.00000 0.00000 -0.53838 - 0.00000 0.00000 -0.53624 - 0.00000 0.00000 -0.53410 - 0.00000 0.00000 -0.53195 - 0.00000 0.00000 -0.52981 - 0.00000 0.00000 -0.52981 - -0.00014 -0.01028 -0.52827 - -0.00111 -0.04283 -0.52673 - -0.00383 -0.09895 -0.52519 - -0.00923 -0.17814 -0.52365 - -0.01820 -0.28028 -0.52211 - -0.01820 -0.28028 -0.52211 - -0.03219 -0.43241 -0.52057 - -0.05273 -0.61238 -0.51903 - -0.08093 -0.82016 -0.51749 - -0.11789 -1.05576 -0.51595 - -0.16470 -1.31918 -0.51441 - -0.16469 -1.31945 -0.51441 - -0.26051 -1.81066 -0.51201 - -0.38619 -2.28715 -0.50960 - -0.53983 -2.72139 -0.50718 - -0.71857 -3.10719 -0.50473 - -0.91918 -3.43038 -0.50226 - -0.91919 -3.43081 -0.50226 - -1.14040 -3.78626 -0.49976 - -1.38227 -4.10561 -0.49722 - -1.64260 -4.38901 -0.49462 - -1.91920 -4.63664 -0.49197 - -2.20971 -4.84114 -0.48924 - -2.20972 -4.84153 -0.48924 - -2.51372 -5.07999 -0.48644 - -2.83142 -5.28909 -0.48354 - -3.16104 -5.46900 -0.48054 - -3.50078 -5.61992 -0.47742 - -3.84889 -5.74202 -0.47418 - -3.84889 -5.74207 -0.47418 - -4.20528 -5.89102 -0.47079 - -4.57003 -6.01497 -0.46725 - -4.94161 -6.11406 -0.46355 - -5.31849 -6.18840 -0.45966 - -5.69918 -6.23811 -0.45558 - -5.69918 -6.23817 -0.45558 - -6.04376 -6.06395 -0.45166 - -6.37787 -5.86441 -0.44757 - -6.70010 -5.63966 -0.44328 - -7.00904 -5.38981 -0.43878 - -7.30329 -5.11494 -0.43407 - -7.30329 -5.11499 -0.43407 - -7.55469 -4.93807 -0.42968 - -7.79682 -4.74410 -0.42510 - -8.02882 -4.53309 -0.42033 - -8.24984 -4.30508 -0.41537 - -8.45904 -4.06010 -0.41020 - -8.45904 -4.06020 -0.41020 - -8.65688 -3.85170 -0.40483 - -8.84402 -3.63202 -0.39925 - -9.01990 -3.40120 -0.39346 - -9.18395 -3.15880 -0.38744 - -9.33555 -2.90278 -0.38121 - -9.33556 -2.90304 -0.38121 - -9.47746 -2.77065 -0.37474 - -9.61242 -2.62594 -0.36804 - -9.73984 -2.46887 -0.36111 - -9.85910 -2.29941 -0.35395 - -9.96958 -2.11751 -0.34654 - -9.96958 -2.11756 -0.34654 - -10.07121 -1.94572 -0.33889 - -10.16395 -1.76181 -0.33099 - -10.24719 -1.56578 -0.32285 - -10.32032 -1.35757 -0.31446 - -10.38274 -1.13711 -0.30582 - -10.38274 -1.13720 -0.30582 - -10.44564 -0.86159 -0.29459 - -10.49074 -0.57101 -0.28297 - -10.51710 -0.26533 -0.27094 - -10.52378 0.05562 -0.25850 - -10.50979 0.39196 -0.24566 - -10.50979 0.39185 -0.24566 - -10.47749 0.63837 -0.23242 - -10.42923 0.89935 -0.21877 - -10.36412 1.17493 -0.20473 - -10.28122 1.46529 -0.19028 - -10.17960 1.77056 -0.17544 - -10.17960 1.77045 -0.17544 - -10.06160 1.98635 -0.16021 - -9.92959 2.21631 -0.14459 - -9.78268 2.46048 -0.12859 - -9.61997 2.71902 -0.11221 - -9.44056 2.99208 -0.09546 - -9.44056 2.99198 -0.09546 - -9.24661 3.18143 -0.07835 - -9.04032 3.38465 -0.06089 - -8.82082 3.60178 -0.04307 - -8.58723 3.83298 -0.02492 - -8.33866 4.07837 -0.00643 - -8.33861 4.07617 -0.00643 - -8.07714 4.24674 0.01237 - -7.80422 4.44150 0.03149 - -7.51822 4.66297 0.05090 - -7.21745 4.91148 0.07060 - -6.90021 5.18732 0.09059 - -6.90021 5.18712 0.09059 - -6.56793 5.39007 0.11083 - -6.22204 5.61997 0.13133 - -5.86085 5.87706 0.15207 - -5.48264 6.16160 0.17304 - -5.08567 6.47382 0.19421 - -5.08578 6.47563 0.19421 - -4.67129 6.71736 0.21558 - -4.24081 6.98334 0.23714 - -3.79301 7.26706 0.25885 - -3.32694 7.56480 0.28071 - -2.84171 7.87662 0.30270 - -2.84166 7.87712 0.30270 - -2.48543 7.38991 0.31909 - -2.15196 6.90137 0.33554 - -1.84132 6.41148 0.35203 - -1.55358 5.92021 0.36857 - -1.28879 5.42756 0.38513 - -1.28879 5.42756 0.38513 - -1.04767 4.90572 0.40173 - -0.83095 4.38231 0.41834 - -0.63868 3.85731 0.43498 - -0.47096 3.33069 0.45162 - -0.32784 2.80244 0.46828 - -0.32784 2.80244 0.46828 - -0.21005 2.24561 0.48495 - -0.11828 1.68697 0.50161 - -0.05263 1.12650 0.51828 - -0.01317 0.56418 0.53496 - 0.00000 0.00000 0.55163 + 0.00000 0.00000 -1.14882 + 0.00000 0.00000 -1.14160 + 0.00000 0.00000 -1.13439 + 0.00000 0.00000 -1.12717 + 0.00000 0.00000 -1.11996 + 0.00000 0.00000 -1.11274 + 0.00000 0.00000 -1.11274 + 0.00000 0.00000 -1.10553 + 0.00000 0.00000 -1.09831 + 0.00000 0.00000 -1.09110 + 0.00000 0.00000 -1.08388 + 0.00000 0.00000 -1.07667 + 0.00000 0.00000 -1.07667 + 0.00011 0.00620 -1.06959 + 0.00083 0.02145 -1.06250 + 0.00254 0.04317 -1.05542 + 0.00563 0.07229 -1.04834 + 0.01049 0.10896 -1.04125 + 0.01049 0.10896 -1.04125 + 0.01478 0.04798 -1.03417 + 0.01546 -0.02465 -1.02709 + 0.01190 -0.10904 -1.02000 + 0.00347 -0.20535 -1.01292 + -0.01049 -0.31375 -1.00584 + -0.01049 -0.31375 -1.00584 + -0.03378 -0.55272 -0.99876 + -0.07061 -0.81540 -0.99168 + -0.12227 -1.10198 -0.98459 + -0.19006 -1.41270 -0.97750 + -0.27528 -1.74778 -0.97041 + -0.27528 -1.74778 -0.97041 + -0.38048 -2.14426 -0.96331 + -0.50643 -2.51685 -0.95619 + -0.65187 -2.86574 -0.94907 + -0.81551 -3.19109 -0.94192 + -0.99609 -3.49308 -0.93475 + -0.99609 -3.49309 -0.93475 + -1.19342 -3.81208 -0.92756 + -1.40741 -4.10991 -0.92032 + -1.63691 -4.38673 -0.91305 + -1.88080 -4.64267 -0.90574 + -2.13795 -4.87788 -0.89836 + -2.13795 -4.87790 -0.89836 + -2.40817 -5.12687 -0.89093 + -2.69131 -5.35663 -0.88343 + -2.98634 -5.56729 -0.87586 + -3.29223 -5.75894 -0.86819 + -3.60796 -5.93168 -0.86044 + -3.60796 -5.93170 -0.86044 + -3.93465 -5.73291 -0.85229 + -4.24976 -5.51865 -0.84402 + -4.55245 -5.28902 -0.83562 + -4.84185 -5.04416 -0.82708 + -5.11711 -4.78418 -0.81839 + -5.11711 -4.78419 -0.81839 + -5.35079 -4.56110 -0.81050 + -5.57303 -4.32663 -0.80249 + -5.78326 -4.08084 -0.79433 + -5.98093 -3.82381 -0.78604 + -6.16546 -3.55559 -0.77760 + -6.16546 -3.55560 -0.77760 + -6.33672 -3.29318 -0.76901 + -6.49460 -3.02003 -0.76026 + -6.63855 -2.73621 -0.75136 + -6.76804 -2.44177 -0.74230 + -6.88255 -2.13675 -0.73307 + -6.88255 -2.13678 -0.73307 + -6.98752 -2.05996 -0.72367 + -7.08833 -1.97029 -0.71410 + -7.18433 -1.86775 -0.70437 + -7.27489 -1.75231 -0.69445 + -7.35935 -1.62395 -0.68436 + -7.35935 -1.62399 -0.68436 + -7.43755 -1.50182 -0.67409 + -7.50932 -1.36702 -0.66364 + -7.57404 -1.21955 -0.65301 + -7.63106 -1.05939 -0.64219 + -7.67976 -0.88649 -0.63119 + -7.67976 -0.88656 -0.63119 + -7.72866 -0.66656 -0.61709 + -7.76322 -0.43055 -0.60269 + -7.78245 -0.17842 -0.58800 + -7.78531 0.08990 -0.57300 + -7.77080 0.37453 -0.55771 + -7.77080 0.37445 -0.55771 + -7.74111 0.57288 -0.54212 + -7.69846 0.78661 -0.52623 + -7.64190 1.01574 -0.51004 + -7.57045 1.26036 -0.49356 + -7.48313 1.52059 -0.47679 + -7.48313 1.52051 -0.47679 + -7.38216 1.69449 -0.45973 + -7.26980 1.88314 -0.44239 + -7.14511 2.08655 -0.42477 + -7.00718 2.30484 -0.40687 + -6.85505 2.53809 -0.38871 + -6.85505 2.53802 -0.38871 + -6.69099 2.68449 -0.37028 + -6.51728 2.84505 -0.35159 + -6.33303 3.01979 -0.33265 + -6.13735 3.20879 -0.31347 + -5.92934 3.41214 -0.29405 + -5.92934 3.41208 -0.29405 + -5.71157 3.51901 -0.27441 + -5.48666 3.63936 -0.25454 + -5.25377 3.77320 -0.23446 + -5.01204 3.92061 -0.21419 + -4.76061 4.08166 -0.19371 + -4.76061 4.08161 -0.19371 + -4.50194 4.15097 -0.17306 + -4.23850 4.23309 -0.15223 + -3.96951 4.32801 -0.13124 + -3.69414 4.43580 -0.11010 + -3.41159 4.55650 -0.08881 + -3.41153 4.55409 -0.08881 + -3.12411 4.59496 -0.06740 + -2.83336 4.66053 -0.04586 + -2.53764 4.75331 -0.02421 + -2.23523 4.87338 -0.00247 + -1.92442 5.02081 0.01936 + -1.92442 5.02072 0.01936 + -1.69623 4.75890 0.03561 + -1.48028 4.49605 0.05190 + -1.27661 4.23213 0.06823 + -1.08529 3.96714 0.08458 + -0.90636 3.70105 0.10095 + -0.90636 3.70105 0.10095 + -0.74139 3.36913 0.11734 + -0.59193 3.03580 0.13375 + -0.45807 2.70105 0.15017 + -0.33986 2.36484 0.16660 + -0.23737 2.02716 0.18304 + -0.23737 2.02716 0.18304 + -0.15214 1.62529 0.19948 + -0.08571 1.22166 0.21592 + -0.03815 0.81625 0.23237 + -0.00955 0.40903 0.24882 + 0.00000 0.00000 0.26527 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -3521,11 +3653,11 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 5 : Number of surface points - 0.00 7.51 - 1.50 8.30 - 3.50 8.30 - 10.00 4.11 - 30.00 4.11 + 0.00 7.90 + 1.50 8.70 + 3.50 8.70 + 10.00 4.50 + 30.00 4.50 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] S19 @@ -3581,7 +3713,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=20 +DataCount=22 [COLUMN INDICATION] Slide plane position Theta min @@ -3590,32 +3722,34 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 7.50500 0.00000 0.00000 0.00000 0.00000 - 7.19875 53.30800 54.89000 22.20547 0.62586 - 6.89250 104.57500 49.67700 55.55010 2.15076 - 6.58625 99.29300 46.15300 72.73110 4.39485 - 6.28000 96.56200 43.73900 92.55022 7.26575 - 6.00000 94.05600 42.16800 113.61368 10.39727 - 5.75000 91.93300 41.11300 134.98597 13.58417 - 5.50000 89.99900 40.29200 158.89016 17.13015 - 5.25000 95.53100 39.41200 190.65752 20.64011 - 5.00000 94.11400 38.68500 215.03463 24.46504 - 4.68571 92.32300 37.95200 246.91111 29.60971 - 4.37143 90.52600 37.37300 282.41705 35.02898 - 4.05714 89.00000 36.90300 319.34106 40.71827 - 3.74286 88.70000 36.51200 350.25073 46.67473 - 3.42857 87.63300 36.00000 391.77747 52.89183 - 3.11429 86.62500 35.28100 436.66549 59.31866 - 2.80000 85.67500 34.63000 485.06669 65.93902 - 2.56667 86.51700 34.38200 439.68372 72.01938 - 2.33333 85.65300 34.16200 416.85968 78.23163 - 2.10000 84.52500 33.96600 420.56864 84.57371 + 7.90000 0.00000 0.00000 0.00000 0.00000 + 7.63000 53.30800 55.65200 17.25978 0.50008 + 7.36000 63.33500 50.73300 49.17882 1.71996 + 7.09000 103.52000 47.25200 63.68574 3.52266 + 6.82000 102.06100 44.77300 79.09800 5.83211 + 6.55000 99.00200 42.97700 97.21559 8.60556 + 6.28000 96.35300 41.64800 117.64207 11.81815 + 6.00000 93.82900 40.61300 141.69035 15.59755 + 5.75000 91.80300 39.89800 165.73751 19.34885 + 5.50000 89.99900 39.32700 192.29579 23.45058 + 5.25000 93.28900 38.65500 241.66609 27.44793 + 5.00000 91.86200 38.08700 271.80472 31.75578 + 4.68571 90.06300 37.50200 309.88567 37.50259 + 4.37143 89.00000 37.02800 344.27299 43.52012 + 4.05714 88.46300 36.63600 379.82660 49.80518 + 3.74286 87.43700 35.93900 423.23157 56.33410 + 3.42857 86.46700 35.20300 470.02690 63.04854 + 3.11429 85.55200 34.56200 520.35973 69.94369 + 2.80000 84.69000 33.98900 574.37394 77.02406 + 2.56667 85.27800 33.79100 540.66254 83.63604 + 2.33333 84.93400 33.61600 512.96054 90.37614 + 2.10000 84.01100 33.46000 510.16716 97.24291 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=19 +DataCount=21 [COLUMN INDICATION] Position Vertical stress @@ -3626,25 +3760,27 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 7.35188 3.05605 72.50766 2.04361 1.55103 0.66871 23.72594 - 7.04563 9.09224 108.88041 4.97928 0.96794 0.54764 11.97509 - 6.73938 15.02558 56.10125 7.32762 0.72987 0.48768 3.73372 - 6.43313 20.81478 64.71549 9.37439 0.59800 0.45037 3.10911 - 6.14000 26.21389 75.22663 11.18398 0.52024 0.42664 2.86972 - 5.87500 30.98200 85.48917 12.74762 0.47376 0.41145 2.75932 - 5.62500 35.39107 95.61675 14.18388 0.44341 0.40078 2.70172 - 5.37500 39.84791 127.06946 14.03987 0.38060 0.35234 3.18886 - 5.12500 44.36146 97.50844 15.29971 0.36631 0.34489 2.19804 - 4.84286 48.15640 101.42515 16.36939 0.35220 0.33992 2.10616 - 4.52857 51.21951 112.97346 17.24314 0.33851 0.33665 2.20567 - 4.21429 54.21470 117.48546 18.10229 0.33390 0.33390 2.16704 - 3.90000 57.15371 98.34898 18.95238 0.33160 0.33160 1.72078 - 3.58571 60.04679 132.13051 19.78169 0.32944 0.32944 2.20046 - 3.27143 62.90288 22.90115 20.44900 0.32509 0.32509 0.36407 - 2.95714 65.72969 22.90115 21.06477 0.32048 0.32048 0.34841 - 2.68333 67.82377 22.90115 26.05868 0.38421 0.38421 0.38421 - 2.45000 69.19587 22.90115 26.62396 0.38476 0.38476 0.38476 - 2.21667 70.56035 15.89556 27.18034 0.38521 0.38521 0.38521 + 7.76500 2.69797 63.92512 1.85214 1.61260 0.68649 23.69381 + 7.49500 8.02596 118.21865 4.51808 1.02464 0.56293 14.72954 + 7.22500 13.28358 53.72935 6.67668 0.77819 0.50263 4.04479 + 6.95500 18.43425 57.08245 8.55350 0.63760 0.46400 3.09654 + 6.68500 23.46676 67.10216 10.27206 0.54885 0.43773 2.85946 + 6.41500 28.38335 75.65364 11.89849 0.49012 0.41921 2.66542 + 6.14000 33.28100 85.88670 13.49783 0.44977 0.40557 2.58065 + 5.87500 37.90648 96.18865 15.00521 0.42331 0.39585 2.53752 + 5.62500 42.19533 106.23312 16.40691 0.40615 0.38883 2.51765 + 5.37500 46.54530 197.48122 15.98940 0.35235 0.34352 4.24277 + 5.12500 50.96428 120.55452 17.23140 0.34517 0.33811 2.36547 + 4.84286 54.66586 121.16664 18.28530 0.33707 0.33449 2.21650 + 4.52857 57.63981 109.41423 19.14668 0.33218 0.33218 1.89824 + 4.21429 60.55949 113.12512 19.99793 0.33022 0.33022 1.86800 + 3.90000 63.43482 138.10672 20.77384 0.32748 0.32748 2.17714 + 3.58571 66.27442 148.89421 21.36411 0.32236 0.32236 2.24663 + 3.27143 69.08575 30.21310 21.93913 0.32061 0.31756 0.43733 + 2.95714 71.87526 30.21310 22.52843 0.32272 0.31344 0.42035 + 2.68333 73.94205 30.21310 28.33706 0.40861 0.38323 0.40861 + 2.45000 75.29422 30.21310 28.88617 0.40127 0.38364 0.40127 + 2.21667 76.64142 30.21310 29.42900 0.39421 0.38398 0.39421 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] @@ -3661,18 +3797,6 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - @@ -3686,119 +3810,131 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00002 0.00000 1 0 A - 0.83762 0.00000 29.71874 1.94279 1 0 A - 1.63919 0.00000 58.15860 3.80198 1 0 A - 2.44852 0.00000 86.87397 5.67917 1 0 A - 3.25838 0.00000 115.60778 7.55758 1 0 A - 4.41086 0.00000 144.30384 9.43351 110 0 - - 3.33081 0.00000 72.83388 5.88715 1 0 A - 3.99168 0.00000 87.28484 7.05521 1 0 A - 4.65063 0.00000 101.69389 8.21990 1 0 A - 5.30734 0.00000 116.05389 9.38061 1 0 A - 5.96153 0.00000 130.35900 10.53689 1 0 A - 6.79593 0.00000 144.60442 11.68834 110 0 - - 5.88890 0.00000 45.08622 8.81349 1 0 A - 6.46644 0.00000 49.50795 9.67786 1 0 A - 7.04126 0.00000 53.90885 10.53815 1 0 A - 7.61326 0.00000 58.28816 11.39422 1 0 A - 8.18237 0.00000 62.64530 12.24595 1 0 A - 8.74853 0.00000 66.97988 13.09328 1 0 A - 8.07932 0.00000 55.77502 10.72771 1 0 A - 8.59942 0.00000 59.36550 11.41830 1 0 A - 9.11676 0.00000 62.93693 12.10523 1 0 A - 9.63134 0.00000 66.48931 12.78849 1 0 A - 10.14318 0.00000 70.02276 13.46811 1 0 A - 10.65230 0.00000 73.53746 14.14412 1 0 A - 10.48254 0.00000 67.87536 12.30485 110 0 - - 11.03317 0.00000 70.82641 12.83983 110 0 - - 11.58199 0.00000 73.76336 13.37226 110 0 - - 12.12907 0.00000 76.68645 13.90217 110 0 - - 12.67450 0.00000 79.59592 14.42962 110 0 - - 13.21837 0.00000 82.49202 14.95464 110 0 - - 11.88233 0.00000 79.31833 13.61860 110 0 - - 12.32497 0.00000 81.79402 14.04367 110 0 - - 12.76666 0.00000 84.25987 14.46704 110 0 - - 13.20745 0.00000 86.71608 14.88877 110 0 - - 13.64740 0.00000 89.16285 15.30887 110 0 - - 14.08657 0.00000 91.60040 15.72738 110 0 - - 13.30446 0.00000 89.68835 14.71970 1 0 A - 13.65719 0.00000 92.06617 15.10995 1 0 A - 14.00863 0.00000 94.43534 15.49878 1 0 A - 14.35883 0.00000 96.79608 15.88623 1 0 A - 14.72254 0.00000 99.14857 16.27232 110 0 - - 15.13227 0.00000 101.49302 16.65709 110 0 - - 13.23590 0.00000 119.79299 14.29760 1 0 A - 13.55823 0.00000 122.71033 14.64579 1 0 A - 13.87957 0.00000 125.61863 14.99290 1 0 A - 14.19993 0.00000 128.51812 15.33896 1 0 A - 14.51935 0.00000 131.40900 15.68400 1 0 A - 14.83784 0.00000 134.29151 16.02803 1 0 A - 14.52414 0.00000 92.56554 15.42617 1 0 A - 14.83501 0.00000 94.54680 15.75635 1 0 A - 15.14502 0.00000 96.52257 16.08562 1 0 A - 15.45419 0.00000 98.49300 16.41399 1 0 A - 15.76255 0.00000 100.45824 16.74150 1 0 A - 16.07012 0.00000 102.41841 17.06817 1 0 A - 15.83872 0.00000 98.13712 16.41104 1 0 A - 16.05186 0.61663 99.45770 16.63187 1 0 A - 16.26383 1.23326 100.77108 16.85150 1 0 A - 16.47468 1.84989 102.07750 17.06997 1 0 A - 16.68444 2.46651 103.37720 17.28731 1 0 A - 16.89316 3.08314 104.67042 17.50357 1 0 A - 16.73066 3.08314 109.61583 16.82277 1 0 A - 16.93637 3.69977 110.96360 17.02961 1 0 A - 17.14111 4.31640 112.30504 17.23548 1 0 A - 17.34493 4.93303 113.64039 17.44042 1 0 A - 17.54785 5.54966 114.96987 17.64445 1 0 A - 17.74990 6.16629 116.29369 17.84762 1 0 A - 17.60482 6.16629 114.25685 17.60482 1 15 A - 17.80440 6.78291 115.55213 17.80440 1 15 A - 18.00318 7.39954 116.84227 18.00318 1 15 A - 18.20121 8.01617 118.12744 18.20121 1 15 A - 18.39849 8.63280 119.40786 18.39849 1 15 A - 18.59507 9.24943 120.68369 18.59507 1 15 A - 18.46719 9.24943 95.83121 18.46719 1 19 A - 18.66175 9.86606 96.84082 18.66175 1 19 A - 18.85566 10.48269 97.84707 18.85566 1 19 A - 19.04895 11.09931 98.85010 19.04895 1 19 A - 19.24164 11.71594 99.85005 19.24164 1 19 A - 19.43377 12.33257 100.84703 19.43377 1 19 A - 19.30684 12.33257 128.95879 19.30684 1 15 A - 19.59612 12.94920 130.23006 19.49716 110 15 - - 19.93885 13.56583 131.49787 19.68697 110 15 - - 20.28348 14.18246 132.76235 19.87628 110 15 - - 20.62995 14.79909 134.02365 20.06511 110 15 - - 20.97818 15.41571 135.28192 20.25349 110 16 - - 20.71079 15.41571 22.38274 19.98610 110 93 - - 21.05824 16.03234 22.59044 20.17156 110 93 - - 21.40730 16.64897 22.79769 20.35662 110 94 - - 21.75788 17.26560 23.00450 20.54129 110 95 - - 22.10989 17.88223 23.21090 20.72559 110 95 - - 22.46323 18.49886 23.41690 20.90953 110 96 - - 22.16654 18.49886 22.40982 20.61284 110 99 - - 22.51852 19.11549 22.60661 20.79384 110 99 - - 22.80305 19.73211 22.80305 20.97453 202 100 P - 22.99917 20.34874 22.99917 21.15493 202 100 P - 23.19499 20.96537 23.19499 21.33504 202 100 P - 23.39051 21.58200 23.39051 21.51489 202 100 P - 25.79375 21.58200 25.79375 25.79375 202 100 P - 25.89984 22.03980 25.89984 25.89984 202 100 P - 26.00578 22.49760 26.00578 26.00578 202 100 P - 26.11156 22.95540 26.11156 26.11156 202 100 P - 26.21719 23.41320 26.21719 26.21719 202 100 P - 26.32269 23.87100 26.32269 26.32269 202 100 P - 26.36041 23.87100 26.36041 26.36041 202 100 P - 26.46592 24.32880 26.46592 26.46592 202 100 P - 26.57131 24.78660 26.57131 26.57131 202 100 P - 26.67658 25.24440 26.67658 26.67658 202 100 P - 26.78173 25.70220 26.78173 26.78173 202 100 P - 26.88678 26.16000 26.88678 26.88678 202 100 P - 26.91786 26.16000 26.91786 26.91786 202 100 P - 27.02292 26.61780 27.02292 27.02292 202 100 P - 27.12789 27.07560 27.12789 27.12789 202 100 P - 27.23277 27.53340 27.23277 27.23277 202 100 P - 27.33756 27.99120 27.33756 27.33756 202 100 P - 27.44227 28.44900 27.44227 27.44227 202 100 P + 0.76454 0.00000 26.38761 1.79594 1 0 A + 1.48661 0.00000 51.30931 3.49211 1 0 A + 2.21840 0.00000 76.56611 5.21108 1 0 A + 2.95146 0.00000 101.86732 6.93308 1 0 A + 3.68411 0.00000 127.15408 8.65409 1 0 A + 3.02101 0.00000 79.04687 5.49878 1 0 A + 3.62086 0.00000 94.74217 6.59060 1 0 A + 4.21939 0.00000 110.40326 7.68004 1 0 A + 4.81634 0.00000 126.02290 8.76660 1 0 A + 5.41149 0.00000 141.59522 9.84987 1 0 A + 6.00463 0.00000 157.11528 10.92950 1 0 A + 5.36135 0.00000 43.14450 8.30073 1 0 A + 5.88903 0.00000 47.39088 9.11770 1 0 A + 6.41466 0.00000 51.62081 9.93151 1 0 A + 6.93815 0.00000 55.83349 10.74200 1 0 A + 7.45941 0.00000 60.02826 11.54905 1 0 A + 7.97839 0.00000 64.20463 12.35256 1 0 A + 7.36526 0.00000 49.15267 10.12095 1 0 A + 7.84220 0.00000 52.33555 10.77633 1 0 A + 8.31695 0.00000 55.50383 11.42870 1 0 A + 8.78949 0.00000 58.65738 12.07805 1 0 A + 9.25982 0.00000 61.79615 12.72435 1 0 A + 9.72793 0.00000 64.92012 13.36760 1 0 A + 9.17712 0.00000 59.94952 11.50675 1 0 A + 9.61665 0.00000 62.82070 12.05785 1 0 A + 10.05410 0.00000 65.67836 12.60635 1 0 A + 10.48950 0.00000 68.52263 13.15228 1 0 A + 10.92288 0.00000 71.35368 13.69568 1 0 A + 11.35426 0.00000 74.17167 14.23657 1 0 A + 10.87383 0.00000 69.13862 12.71318 1 0 A + 11.28508 0.00000 71.75343 13.19399 1 0 A + 11.69447 0.00000 74.35646 13.67263 1 0 A + 12.10205 0.00000 76.94795 14.14915 1 0 A + 12.50785 0.00000 79.52813 14.62359 1 0 A + 12.91191 0.00000 82.09722 15.09600 1 0 A + 12.49194 0.00000 79.48622 13.85334 1 0 A + 12.89559 0.00000 82.05465 14.30098 1 0 A + 13.29751 0.00000 84.61205 14.74670 1 0 A + 13.69774 0.00000 87.15869 15.19054 1 0 A + 14.09632 0.00000 89.69484 15.63256 1 0 A + 14.49329 0.00000 92.22077 16.07279 1 0 A + 14.14581 0.00000 90.67959 15.12713 1 0 A + 14.49046 0.00000 92.88891 15.49569 1 0 A + 14.83392 0.00000 95.09060 15.86298 1 0 A + 15.17621 0.00000 97.28486 16.22902 1 0 A + 15.51738 0.00000 99.47185 16.59385 1 0 A + 15.85744 0.00000 101.65176 16.95751 1 0 A + 15.57640 0.00000 100.85562 16.27021 1 0 A + 15.90938 0.00000 103.01161 16.61802 1 0 A + 16.24132 0.00000 105.16092 16.96475 1 0 A + 16.57226 0.00000 107.30371 17.31043 1 0 A + 16.90222 0.00000 109.44016 17.65508 1 0 A + 17.23122 0.00000 111.57043 17.99874 1 0 A + 15.22334 0.00000 188.01980 15.61437 1 0 A + 15.53036 0.00000 191.81175 15.92928 1 0 A + 15.83658 0.00000 195.59381 16.24336 1 0 A + 16.14202 0.00000 199.36625 16.55665 1 0 A + 16.44671 0.00000 203.12933 16.86916 1 0 A + 16.75065 0.00000 206.88330 17.18091 1 0 A + 16.48656 0.00000 115.34348 16.83096 1 0 A + 16.78501 0.00000 117.43149 17.13565 1 0 A + 17.08277 0.00000 119.51468 17.43963 1 0 A + 17.37986 0.00000 121.59320 17.74292 1 0 A + 17.67630 0.00000 123.66717 18.04556 1 0 A + 17.97211 0.00000 125.73672 18.34755 1 0 A + 17.77995 0.00000 117.81792 17.91714 1 0 A + 17.98278 0.61663 119.16198 18.12154 1 0 A + 18.18469 1.23326 120.49991 18.32500 1 0 A + 18.38570 1.84989 121.83192 18.52757 1 0 A + 18.58585 2.46651 123.15823 18.72927 1 0 A + 18.78518 3.08314 124.47905 18.93013 1 0 A + 18.65522 3.08314 106.60574 18.65522 1 17 A + 18.85237 3.69977 107.73239 18.85237 1 17 A + 19.04877 4.31640 108.85467 19.04877 1 17 A + 19.24442 4.93303 109.97276 19.24442 1 17 A + 19.43938 5.54966 111.08681 19.43938 1 17 A + 19.63365 6.16629 112.19699 19.63365 1 17 A + 19.51789 6.16629 110.40960 19.51789 1 18 A + 19.71037 6.78291 111.49843 19.71037 1 18 A + 19.90223 7.39954 112.58374 19.90223 1 18 A + 20.09349 8.01617 113.66568 20.09349 1 18 A + 20.28418 8.63280 114.74438 20.28418 1 18 A + 20.47432 9.24943 115.81998 20.47432 1 18 A + 20.30466 9.24943 134.98755 20.30466 1 15 A + 20.49270 9.86606 136.23769 20.49270 1 15 A + 20.68025 10.48269 137.48451 20.68025 1 15 A + 20.86732 11.09931 138.72815 20.86732 1 15 A + 21.05393 11.71594 139.96876 21.05393 1 15 A + 21.24010 12.33257 141.20648 21.24010 1 15 A + 20.90771 12.33257 145.71337 20.90771 1 14 A + 21.09056 12.94920 146.98773 21.09056 1 14 A + 21.27302 13.56583 148.25937 21.27302 1 14 A + 21.45511 14.18246 149.52841 21.45511 1 14 A + 21.63685 14.79909 150.79498 21.63685 1 14 A + 21.81824 15.41571 152.05920 21.81824 1 14 A + 21.49373 15.41571 29.59972 21.69968 1 0 A + 21.67211 16.03234 29.84538 21.87977 1 0 A + 21.85020 16.64897 30.09063 22.05956 1 0 A + 22.02800 17.26560 30.33548 22.23906 1 0 A + 22.20553 17.88223 30.57996 22.41829 1 0 A + 22.38280 18.49886 30.82410 22.59727 1 0 A + 22.09200 18.49886 29.62780 22.74622 1 0 A + 22.38696 19.11549 29.86214 22.92613 110 0 - + 22.73894 19.73211 30.09619 23.10581 110 0 - + 23.09157 20.34874 30.32995 23.28528 110 0 - + 23.44478 20.96537 30.56344 23.46454 110 0 - + 23.79849 21.58200 30.79669 23.64362 110 77 - + 29.93588 21.58200 29.93588 29.93588 202 100 P + 30.04685 22.03980 30.04685 30.04685 202 100 P + 30.15771 22.49760 30.15771 30.15771 202 100 P + 30.26846 22.95540 30.26846 30.26846 202 100 P + 30.37910 23.41320 30.37910 30.37910 202 100 P + 30.48965 23.87100 30.48965 30.48965 202 100 P + 29.94210 23.87100 29.94210 29.94210 202 100 P + 30.05057 24.32880 30.05057 30.05057 202 100 P + 30.15894 24.78660 30.15894 30.15894 202 100 P + 30.26724 25.24440 30.26724 30.26724 202 100 P + 30.37546 25.70220 30.37546 30.37546 202 100 P + 30.48360 26.16000 30.48360 30.48360 202 100 P + 29.94776 26.16000 29.94776 29.94776 202 100 P + 30.05394 26.61780 30.05394 30.05394 202 100 P + 30.16006 27.07560 30.16006 30.16006 202 100 P + 30.26613 27.53340 30.26613 30.26613 202 100 P + 30.37214 27.99120 30.37214 30.37214 202 100 P + 30.47810 28.44900 30.47810 30.47810 202 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -3811,10 +3947,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 8.70 7.279 'Dike' - 6.28 10.114 'A' - 5.50 49.834 'B' - 2.80 18.635 'C' + 8.70 11.815 'Dike' + 6.28 11.631 'A' + 5.50 53.695 'B' + 2.80 21.149 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -3898,11 +4034,11 @@ Q max [END OF COLUMN INDICATION] [DATA] 7.90000 0.00000 0.00000 0.00000 0.00000 - 7.70250 114.31000 29.59200 0.20801 0.07869 - 7.50500 111.68700 29.59200 0.97758 0.31475 - 7.19875 107.41700 29.59200 3.48791 0.99202 - 6.89250 102.92300 29.59200 7.89551 2.04769 - 6.58625 98.24900 29.59200 14.62288 3.48176 + 7.63000 113.35900 29.59200 0.41989 0.14706 + 7.36000 109.69500 29.59200 1.95228 0.58825 + 7.09000 105.84500 29.59200 4.81631 1.32356 + 6.82000 101.83100 29.59200 9.26031 2.35299 + 6.55000 97.68600 29.59200 15.59718 3.67655 6.28000 93.44700 29.59200 24.23010 5.29423 6.00000 89.00000 29.59200 36.17333 7.28250 5.75000 87.00100 29.59200 48.52203 9.32503 @@ -3935,12 +4071,12 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 7.80125 1.37668 1.05321 0.39842 0.28941 0.28941 0.76504 - 7.60375 4.18558 3.89655 1.19526 0.28557 0.28557 0.93095 - 7.35188 7.76117 8.19699 2.21148 0.28494 0.28494 1.05615 - 7.04563 12.12654 14.39219 3.44708 0.28426 0.28426 1.18683 - 6.73938 16.52281 21.96693 4.68269 0.28341 0.28341 1.32949 - 6.43313 20.95813 31.37051 5.91829 0.28239 0.28239 1.49682 + 7.76500 1.89517 1.55515 0.54467 0.28740 0.28740 0.82059 + 7.49500 5.72845 5.67553 1.63402 0.28525 0.28525 0.99076 + 7.22500 9.56659 10.60751 2.72337 0.28468 0.28468 1.10881 + 6.95500 13.42383 16.45924 3.81272 0.28403 0.28403 1.22612 + 6.68500 17.30726 23.46992 4.90207 0.28324 0.28324 1.35607 + 6.41500 21.22198 31.97376 5.99142 0.28232 0.28232 1.50663 6.14000 25.24496 42.65438 7.10094 0.28128 0.28128 1.68962 5.87500 29.15779 49.39479 8.17011 0.28020 0.28020 1.69405 5.62500 32.88236 63.63330 9.17877 0.27914 0.27914 1.93518 @@ -3985,131 +4121,131 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 202 100 P - 0.38563 0.00000 0.38563 0.14588 202 100 P - 0.83518 0.00000 0.83518 0.31594 202 100 P - 1.26968 0.00000 1.26968 0.48031 202 100 P - 1.70050 0.00000 1.70050 0.64328 202 100 P - 2.13004 0.00000 2.13004 0.80577 202 100 P - 2.59196 0.00000 2.59196 0.79508 202 100 P - 3.11399 0.00000 3.11399 0.95521 202 100 P - 3.63573 0.00000 3.63573 1.11525 202 100 P - 4.15736 0.00000 4.15736 1.27526 202 100 P - 4.67902 0.00000 4.67902 1.43528 202 100 P - 5.20077 0.00000 5.20077 1.59532 202 100 P - 5.90024 0.00000 5.90024 1.59184 202 100 P - 6.81847 0.00000 6.81847 1.83956 202 100 P - 7.18347 0.00000 7.73730 2.08746 110 93 - - 7.40734 0.00000 8.65688 2.33555 110 86 - - 7.63123 0.00000 9.57736 2.58389 110 80 - - 7.85514 0.00000 10.49882 2.83249 110 75 - - 7.84836 0.00000 11.79787 2.82572 110 67 - - 8.07164 0.00000 12.83458 3.07402 110 63 - - 8.29483 0.00000 13.87263 3.32264 110 60 - - 8.51784 0.00000 14.91211 3.57161 110 57 - - 8.74062 0.00000 15.95312 3.82094 110 55 - - 8.96308 0.00000 16.99574 4.07066 110 53 - - 8.95088 0.00000 19.03862 4.05846 110 47 - - 9.17219 0.00000 20.20845 4.30783 110 45 - - 9.39301 0.00000 21.38026 4.55763 110 44 - - 9.61323 0.00000 22.55412 4.80786 110 43 - - 9.83274 0.00000 23.73010 5.05854 110 41 - - 10.05144 0.00000 24.90827 5.30969 110 40 - - 10.03231 0.00000 28.04317 5.29056 110 36 - - 10.24918 0.00000 29.37215 5.54128 110 35 - - 10.46501 0.00000 30.70373 5.79250 110 34 - - 10.67966 0.00000 32.03795 6.04421 110 33 - - 10.89302 0.00000 33.37487 6.29643 110 33 - - 11.10495 0.00000 34.71454 6.54917 110 32 - - 8.34585 0.00000 39.18604 6.52354 110 21 - - 8.56083 0.00000 40.57138 6.75417 110 21 - - 8.77551 0.00000 41.95938 6.98524 110 21 - - 8.98985 0.00000 43.35005 7.21675 110 21 - - 9.20383 0.00000 44.74342 7.44871 110 21 - - 9.41740 0.00000 46.13950 7.68113 110 20 - - 9.38797 0.00000 46.26051 7.65169 110 20 - - 9.57749 0.00000 47.51259 7.85879 110 20 - - 9.76664 0.00000 48.76684 8.06625 110 20 - - 9.95539 0.00000 50.02329 8.27407 110 20 - - 10.14372 0.00000 51.28193 8.48225 110 20 - - 10.33162 0.00000 52.54276 8.69080 110 20 - - 10.29862 0.00000 60.02163 8.65781 110 17 - - 10.48526 0.00000 61.46442 8.86592 110 17 - - 10.67141 0.00000 62.90971 9.07440 110 17 - - 10.85707 0.00000 64.35750 9.28323 110 17 - - 11.04220 0.00000 65.80777 9.49243 110 17 - - 11.22680 0.00000 67.26052 9.70198 110 17 - - 11.36558 0.00000 116.49673 8.31594 110 10 - - 11.50574 0.00000 119.18479 8.50782 110 10 - - 11.64435 0.00000 121.87709 8.70001 110 10 - - 11.78140 0.00000 124.57362 8.89250 110 9 - - 11.91685 0.00000 127.27435 9.08528 110 9 - - 12.05068 0.00000 129.97925 9.27837 110 9 - - 12.06745 0.00000 117.77685 9.29514 110 10 - - 12.19998 0.00000 120.23157 9.48888 110 10 - - 12.33084 0.00000 122.69001 9.68290 110 10 - - 12.46002 0.00000 125.15215 9.87722 110 10 - - 12.58749 0.00000 127.61796 10.07182 110 10 - - 12.71324 0.00000 130.08739 10.26671 110 10 - - 12.67864 0.00000 126.36402 10.23211 110 10 - - 12.71616 0.61663 127.93625 10.35942 110 10 - - 12.75089 1.23326 129.51394 10.48717 110 10 - - 12.78285 1.84989 131.09701 10.61536 110 10 - - 12.81199 2.46651 132.68538 10.74397 110 10 - - 12.83833 3.08314 134.27899 10.87301 110 10 - - 13.91022 3.08314 137.66051 11.94490 110 10 - - 13.94649 3.69977 139.29954 12.08712 110 10 - - 13.97999 4.31640 140.94377 12.22979 110 10 - - 14.01073 4.93303 142.59313 12.37291 110 10 - - 14.03873 5.54966 144.24754 12.51647 110 10 - - 14.06399 6.16629 145.90691 12.66045 110 10 - - 15.14291 6.16629 152.26744 13.73937 110 10 - - 15.17776 6.78291 154.00425 13.89609 110 10 - - 15.20997 7.39954 155.74607 14.05325 110 10 - - 15.23957 8.01617 157.49282 14.21087 110 10 - - 15.26660 8.63280 159.24440 14.36892 110 10 - - 15.29110 9.24943 161.00075 14.52739 110 9 - - 16.31524 9.24943 168.01589 15.55153 110 10 - - 16.34845 9.86606 169.85364 15.72164 110 10 - - 16.37926 10.48269 171.69617 15.89218 110 10 - - 16.40773 11.09931 173.54341 16.06316 110 9 - - 16.43391 11.71594 175.39525 16.23457 110 9 - - 16.45787 12.33257 177.25163 16.40639 110 9 - - 17.42543 12.33257 184.45540 17.37395 110 9 - - 17.45739 12.94920 186.39184 17.55635 110 0 - - 17.48729 13.56583 188.33283 17.73917 110 0 - - 17.51521 14.18246 190.27826 17.92241 110 0 - - 17.54123 14.79909 192.22805 18.10606 110 0 - - 17.56543 15.41571 194.18213 18.29012 110 0 - - 18.47691 15.41571 201.35190 19.20160 110 0 - - 18.50857 16.03234 203.38248 19.39524 110 0 - - 18.53862 16.64897 205.41733 19.58929 110 0 - - 18.56715 17.26560 207.45637 19.78374 110 0 - - 18.59428 17.88223 209.49952 19.97858 110 0 - - 18.62011 18.49886 211.54669 20.17381 110 0 - - 19.47740 18.49886 218.56756 21.03111 110 0 - - 19.51034 19.11549 220.68675 21.23502 110 0 - - 19.54223 19.73211 222.80993 21.43932 110 0 - - 19.57320 20.34874 224.93704 21.64399 110 0 - - 19.60337 20.96537 227.06799 21.84904 110 0 - - 19.63288 21.58200 229.20270 22.05444 110 0 - - 33.51689 21.58200 67.21244 34.12228 110 0 - - 33.64386 22.03980 67.52713 34.28204 110 0 - - 33.77102 22.49760 67.84241 34.44210 110 0 - - 33.89839 22.95540 68.15827 34.60246 110 0 - - 34.02597 23.41320 68.47471 34.76310 110 0 - - 34.15377 23.87100 68.79170 34.92404 110 0 - - 34.63124 23.87100 89.80379 35.40151 110 0 - - 34.76147 24.32880 90.21833 35.56492 110 0 - - 34.89193 24.78660 90.63358 35.72862 110 0 - - 35.02264 25.24440 91.04954 35.89260 110 0 - - 35.15359 25.70220 91.46619 36.05684 110 0 - - 35.28480 26.16000 91.88352 36.22136 110 0 - - 35.74227 26.16000 110.69528 36.67884 110 0 - - 35.87581 26.61780 111.19887 36.84570 110 0 - - 36.00960 27.07560 111.70325 37.01283 110 0 - - 36.14365 27.53340 112.20843 37.18022 110 0 - - 36.27795 27.99120 112.71437 37.34786 110 0 - - 36.41250 28.44900 113.22108 37.51576 110 0 - + 0.59433 0.00000 0.59433 0.20816 202 100 P + 1.23857 0.00000 1.23857 0.43380 202 100 P + 1.87066 0.00000 1.87066 0.65518 202 100 P + 2.50026 0.00000 2.50026 0.87569 202 100 P + 3.12906 0.00000 3.12906 1.09592 202 100 P + 3.77797 0.00000 3.77797 1.08770 202 100 P + 4.53692 0.00000 4.53692 1.30621 202 100 P + 5.29593 0.00000 5.29593 1.52474 202 100 P + 6.05521 0.00000 6.05521 1.74333 202 100 P + 6.81487 0.00000 6.81487 1.96205 202 100 P + 7.57504 0.00000 7.57504 2.18091 202 100 P + 8.47759 0.00000 8.47759 2.17654 202 100 P + 9.32899 0.00000 9.32899 2.39512 202 100 P + 10.18113 0.00000 10.18113 2.61390 202 100 P + 11.03410 0.00000 11.03410 2.83289 202 100 P + 11.88796 0.00000 11.88796 3.05211 202 100 P + 12.74278 0.00000 12.74278 3.27158 202 100 P + 12.96821 0.00000 14.09098 3.26412 110 92 - + 13.11642 0.00000 15.03738 3.48335 110 87 - + 13.26481 0.00000 15.98498 3.70286 110 83 - + 13.41333 0.00000 16.93383 3.92266 110 79 - + 13.56198 0.00000 17.88401 4.14276 110 76 - + 13.71071 0.00000 18.83557 4.36319 110 73 - + 13.69860 0.00000 20.83189 4.35107 110 66 - + 13.84677 0.00000 21.88587 4.57121 110 63 - + 13.99494 0.00000 22.94149 4.79170 110 61 - + 14.14307 0.00000 23.99878 5.01253 110 59 - + 14.29108 0.00000 25.05781 5.23372 110 57 - + 14.43893 0.00000 26.11860 5.45529 110 55 - + 14.42128 0.00000 29.01846 5.43764 110 50 - + 14.56819 0.00000 30.19904 5.65886 110 48 - + 14.71480 0.00000 31.38167 5.88047 110 47 - + 14.86103 0.00000 32.56638 6.10247 110 46 - + 15.00681 0.00000 33.75321 6.32486 110 44 - + 15.15205 0.00000 34.94220 6.54766 110 43 - + 9.96530 0.00000 39.18604 6.52354 110 25 - + 10.16332 0.00000 40.57138 6.75417 110 25 - + 10.36131 0.00000 41.95938 6.98524 110 25 - + 10.55922 0.00000 43.35005 7.21675 110 24 - + 10.75703 0.00000 44.74342 7.44871 110 24 - + 10.95470 0.00000 46.13950 7.68113 110 24 - + 10.92526 0.00000 46.26051 7.65169 110 24 - + 11.10080 0.00000 47.51259 7.85879 110 23 - + 11.27619 0.00000 48.76684 8.06625 110 23 - + 11.45140 0.00000 50.02329 8.27407 110 23 - + 11.62640 0.00000 51.28193 8.48225 110 23 - + 11.80119 0.00000 52.54276 8.69080 110 22 - + 11.76819 0.00000 60.02163 8.65781 110 20 - + 11.94195 0.00000 61.46442 8.86592 110 19 - + 12.11545 0.00000 62.90971 9.07440 110 19 - + 12.28867 0.00000 64.35750 9.28323 110 19 - + 12.46161 0.00000 65.80777 9.49243 110 19 - + 12.63425 0.00000 67.26052 9.70198 110 19 - + 14.18048 0.00000 116.49673 8.31594 110 12 - + 14.29719 0.00000 119.18479 8.50782 110 12 - + 14.41285 0.00000 121.87709 8.70001 110 12 - + 14.52743 0.00000 124.57362 8.89250 110 12 - + 14.64090 0.00000 127.27435 9.08528 110 12 - + 14.75327 0.00000 129.97925 9.27837 110 11 - + 14.77004 0.00000 117.77685 9.29514 110 13 - + 14.88161 0.00000 120.23157 9.48888 110 12 - + 14.99203 0.00000 122.69001 9.68290 110 12 - + 15.10128 0.00000 125.15215 9.87722 110 12 - + 15.20934 0.00000 127.61796 10.07182 110 12 - + 15.31620 0.00000 130.08739 10.26671 110 12 - + 15.28160 0.00000 126.36402 10.23211 110 12 - + 15.29612 0.61663 127.93625 10.35942 110 12 - + 15.30870 1.23326 129.51394 10.48717 110 12 - + 15.31933 1.84989 131.09701 10.61536 110 12 - + 15.32800 2.46651 132.68538 10.74397 110 12 - + 15.33470 3.08314 134.27899 10.87301 110 11 - + 16.40659 3.08314 137.66051 11.94490 110 12 - + 16.42407 3.69977 139.29954 12.08712 110 12 - + 16.43963 4.31640 140.94377 12.22979 110 12 - + 16.45326 4.93303 142.59313 12.37291 110 12 - + 16.46498 5.54966 144.24754 12.51647 110 11 - + 16.47480 6.16629 145.90691 12.66045 110 11 - + 17.55372 6.16629 152.26744 13.73937 110 12 - + 17.57396 6.78291 154.00425 13.89609 110 11 - + 17.59239 7.39954 155.74607 14.05325 110 11 - + 17.60902 8.01617 157.49282 14.21087 110 11 - + 17.62390 8.63280 159.24440 14.36892 110 11 - + 17.63705 9.24943 161.00075 14.52739 110 11 - + 18.66119 9.24943 168.01589 15.55153 110 11 - + 18.68385 9.86606 169.85364 15.72164 110 11 - + 18.70489 10.48269 171.69617 15.89218 110 11 - + 18.72437 11.09931 173.54341 16.06316 110 11 - + 18.74232 11.71594 175.39525 16.23457 110 11 - + 18.75881 12.33257 177.25163 16.40639 110 11 - + 19.72637 12.33257 184.45540 17.37395 110 11 - + 19.75160 12.94920 186.39184 17.55635 110 11 - + 19.77549 13.56583 188.33283 17.73917 110 11 - + 19.79812 14.18246 190.27826 17.92241 110 10 - + 19.81955 14.79909 192.22805 18.10606 110 10 - + 19.83983 15.41571 194.18213 18.29012 110 10 - + 20.75131 15.41571 201.35190 19.20160 110 10 - + 20.77972 16.03234 203.38248 19.39524 110 10 - + 20.80715 16.64897 205.41733 19.58929 110 10 - + 20.83367 17.26560 207.45637 19.78374 110 10 - + 20.85937 17.88223 209.49952 19.97858 110 10 - + 20.88431 18.49886 211.54669 20.17381 110 10 - + 21.74161 18.49886 218.56756 21.03111 110 10 - + 21.77419 19.11549 220.68675 21.23502 110 10 - + 21.80619 19.73211 222.80993 21.43932 110 10 - + 21.83770 20.34874 224.93704 21.64399 110 10 - + 21.86880 20.96537 227.06799 21.84904 110 10 - + 21.89957 21.58200 229.20270 22.05444 110 0 - + 34.08356 21.58200 67.21244 34.12228 110 0 - + 34.21081 22.03980 67.52713 34.28204 110 0 - + 34.33829 22.49760 67.84241 34.44210 110 0 - + 34.46600 22.95540 68.15827 34.60246 110 0 - + 34.59395 23.41320 68.47471 34.76310 110 0 - + 34.72214 23.87100 68.79170 34.92404 110 0 - + 35.19961 23.87100 89.80379 35.40151 110 0 - + 35.33024 24.32880 90.21833 35.56492 110 0 - + 35.46112 24.78660 90.63358 35.72862 110 0 - + 35.59226 25.24440 91.04954 35.89260 110 0 - + 35.72364 25.70220 91.46619 36.05684 110 0 - + 35.85529 26.16000 91.88352 36.22136 110 0 - + 36.31276 26.16000 110.69528 36.67884 110 0 - + 36.44674 26.61780 111.19887 36.84570 110 0 - + 36.58098 27.07560 111.70325 37.01283 110 0 - + 36.71547 27.53340 112.20843 37.18022 110 0 - + 36.85022 27.99120 112.71437 37.34786 110 0 - + 36.98522 28.44900 113.22108 37.51576 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4122,10 +4258,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 8.70 11.899 'Dike' - 6.28 7.643 'A' - 5.50 41.848 'B' - 2.80 24.470 'C' + 8.70 16.209 'Dike' + 6.28 8.820 'A' + 5.50 48.391 'B' + 2.80 24.868 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -4135,28 +4271,22 @@ Layer name [END OF CONSTRUCTION STAGE] [POINTS ON SHEETPILE] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Depth [END OF COLUMN INDICATION] [DATA] 8.45000 - 8.41050 - 8.37100 - 8.33150 - 8.29200 - 8.25250 - 8.25250 - 8.21300 - 8.17350 - 8.13400 - 8.09450 - 8.05500 - 8.05500 - 8.02400 - 7.99300 - 7.96200 - 7.93100 + 8.39500 + 8.34000 + 8.28500 + 8.23000 + 8.17500 + 8.17500 + 8.12000 + 8.06500 + 8.01000 + 7.95500 7.90000 7.90000 7.84600 @@ -4290,7 +4420,7 @@ Depth [CONSTRUCTION STAGE] StageNumber=2 CalculationStatus=0 -IterationCount=5 +IterationCount=4 PartialFactorSet=12 [SURCHARGE DATA] [TABLE] @@ -4317,20 +4447,20 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 10.62 : Percentage mobilized resistance left - 23.38 : Percentage mobilized resistance right - 100.57 : Effective left - 100.58 : Effective right + 11.95 : Percentage mobilized resistance left + 21.98 : Percentage mobilized resistance right + 113.23 : Effective left + 113.24 : Effective right 41.25 : Water pressure left 41.25 : Water pressure right 947.27 : Max effective resistance left - 430.24 : Max effective resistance right + 515.08 : Max effective resistance right 0.00 : Max moment left 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 33.25 : Vertical force left - 33.35 : Vertical force right + 37.81 : Vertical force left + 37.51 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right 8.45 : Level of single support @@ -4340,157 +4470,151 @@ Is favorable (0=false, 1=true) [END OF SOIL COLLAPSE DATA] [MOMENTS FORCES DISPLACEMENTS] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Moment Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -8.35270 - 0.00000 0.00000 -8.26624 - 0.00000 0.00000 -8.17979 - 0.00000 0.00000 -8.09334 - 0.00000 0.00000 -8.00689 - 0.00000 0.00000 -7.92044 - 0.00000 0.00000 -7.92044 - 0.00000 0.00000 -7.83398 - 0.00000 0.00000 -7.74753 - 0.00000 0.00000 -7.66108 - 0.00000 0.00000 -7.57463 - 0.00000 0.00000 -7.48817 - 0.00000 0.00000 -7.48817 - 0.00004 0.00414 -7.42033 - 0.00034 0.01635 -7.35248 - 0.00114 0.03643 -7.28463 - 0.00268 0.06446 -7.21678 - 0.00522 0.10044 -7.14893 - 0.00522 0.10044 -7.14893 - 0.01275 0.18267 -7.03074 - 0.02538 0.28922 -6.91256 - 0.04442 0.42008 -6.79437 - 0.07119 0.57523 -6.67618 - 0.10699 0.75464 -6.55800 - 0.10699 0.75464 -6.55800 - 0.15314 0.95886 -6.43982 - 0.21098 1.18734 -6.32165 - 0.28181 1.44003 -6.20348 - 0.36694 1.71691 -6.08531 - 0.46767 2.01791 -5.96716 - 0.46767 2.01791 -5.96716 - 0.58534 2.34426 -5.84902 - 0.72128 2.69472 -5.73090 - 0.87680 3.06926 -5.61280 - 1.05319 3.46781 -5.49473 - 1.25176 3.89031 -5.37668 - 1.25176 3.89031 -5.37668 - 1.47384 4.33884 -5.25867 - 1.72078 4.81132 -5.14070 - 1.99389 5.30769 -5.02278 - 2.29444 5.82790 -4.90492 - 2.62373 6.37188 -4.78712 - 2.62373 6.37187 -4.78712 - 2.98311 6.94259 -4.66940 - 3.37396 7.53708 -4.55176 - 3.79754 8.15530 -4.43422 - 4.25515 8.79717 -4.31678 - 4.74806 9.46264 -4.19947 - 4.74806 9.46262 -4.19947 - 5.27757 10.15272 -4.08229 - 5.84498 10.86634 -3.96526 - 6.45156 11.60342 -3.84840 - 7.09857 12.36390 -3.73172 - 7.78728 13.14772 -3.61524 - 7.78728 13.14769 -3.61524 - 8.54667 13.97764 -3.49468 - 9.35324 14.83234 -3.37439 - 10.20836 15.71173 -3.25438 - 11.11341 16.61576 -3.13468 - 12.06978 17.54436 -3.01532 - 12.06987 17.54006 -3.01532 - 12.95014 17.31873 -2.90906 - 13.78375 16.01776 -2.80311 - 14.55112 14.66907 -2.69750 - 15.24986 13.27251 -2.59225 - 15.87757 11.82794 -2.48736 - 15.87756 11.82786 -2.48736 - 16.44153 10.72645 -2.38286 - 16.94975 9.59797 -2.27876 - 17.40087 8.44226 -2.17508 - 17.79352 7.25918 -2.07181 - 18.12633 6.04859 -1.96898 - 18.12633 6.04866 -1.96898 - 18.38960 4.48359 -1.86659 - 18.57483 2.92683 -1.76465 - 18.68242 1.37813 -1.66316 - 18.71277 -0.16280 -1.56213 - 18.66626 -1.69621 -1.46155 - 18.66626 -1.69611 -1.46155 - 18.54888 -2.99686 -1.36142 - 18.36683 -4.28233 -1.26175 - 18.12089 -5.55280 -1.16252 - 17.81180 -6.80851 -1.06373 - 17.44028 -8.04974 -0.96538 - 17.44052 -8.05219 -0.96538 - 16.89295 -9.36166 -0.84234 - 16.26473 -10.61841 -0.71995 - 15.55916 -11.82292 -0.59818 - 14.78018 -12.94306 -0.47701 - 13.93454 -13.94352 -0.35641 - 13.93398 -13.95261 -0.35641 - 13.03409 -14.65936 -0.23634 - 12.09370 -15.24151 -0.11678 - 11.12061 -15.69995 0.00232 - 10.12256 -16.03552 0.12099 - 9.10727 -16.24900 0.23928 - 9.10727 -16.24872 0.23928 - 8.08694 -16.19589 0.35721 - 7.07380 -16.01976 0.47483 - 6.07559 -15.72096 0.59218 - 5.10001 -15.30003 0.70929 - 4.15471 -14.75750 0.82621 - 4.15471 -14.75733 0.82621 - 3.25123 -13.96930 0.94297 - 2.40115 -13.05844 1.05961 - 1.61217 -12.02510 1.17615 - 0.89198 -10.86958 1.29262 - 0.24826 -9.59212 1.40907 - 0.24776 -9.58349 1.40907 - -0.30791 -8.07640 1.52550 - -0.76499 -6.44637 1.64195 - -1.11639 -4.72470 1.75843 - -1.35768 -2.94246 1.87494 - -1.48504 -1.09976 1.99151 - -1.48482 -1.09743 1.99151 - -1.54055 -0.67657 2.10813 - -1.56997 -0.26017 2.22482 - -1.57335 0.15176 2.34156 - -1.55098 0.55920 2.45837 - -1.50315 0.96214 2.57523 - -1.50308 0.95974 2.57523 - -1.43079 1.33969 2.69216 - -1.33476 1.71508 2.80914 - -1.21528 2.08589 2.92617 - -1.07263 2.45214 3.04324 - -0.90711 2.81380 3.16036 - -0.90711 2.81371 3.16036 - -0.78104 2.58998 3.24733 - -0.66535 2.36823 3.33432 - -0.55997 2.14844 3.42133 - -0.46480 1.93061 3.50834 - -0.37975 1.71476 3.59537 - -0.37975 1.71476 3.59537 - -0.30420 1.52341 3.68240 - -0.23753 1.33419 3.76944 - -0.17964 1.14709 3.85649 - -0.13044 0.96212 3.94354 - -0.08981 0.77928 4.03059 - -0.08981 0.77928 4.03059 - -0.05720 0.61888 4.11765 - -0.03201 0.46076 4.20470 - -0.01416 0.30490 4.29176 - -0.00352 0.15131 4.37881 - 0.00000 0.00000 4.46587 + 0.00000 0.00000 -11.73105 + 0.00023 0.01278 -11.56907 + 0.00187 0.05086 -11.40709 + 0.00629 0.11406 -11.24510 + 0.01488 0.20244 -11.08312 + 0.02902 0.31599 -10.92114 + 0.02902 0.31599 -10.92114 + 0.05011 0.45517 -10.75917 + 0.07955 0.61956 -10.59719 + 0.11872 0.80915 -10.43521 + 0.16902 1.02389 -10.27324 + 0.23181 1.26374 -10.11127 + 0.23181 1.26374 -10.11127 + 0.30698 1.52449 -9.95226 + 0.39689 1.80944 -9.79325 + 0.50284 2.11854 -9.63426 + 0.62613 2.45175 -9.47528 + 0.76806 2.80900 -9.31631 + 0.76806 2.80900 -9.31631 + 0.92998 3.19192 -9.15737 + 1.11322 3.59887 -8.99846 + 1.31909 4.02982 -8.83957 + 1.54887 4.48469 -8.68073 + 1.80386 4.96342 -8.52193 + 1.80386 4.96342 -8.52193 + 2.08542 5.46853 -8.36318 + 2.39489 5.99750 -8.20448 + 2.73358 6.55028 -8.04586 + 3.10275 7.12681 -7.88732 + 3.50370 7.72703 -7.72886 + 3.50370 7.72702 -7.72886 + 3.93779 8.35420 -7.57050 + 4.40638 9.00508 -7.41226 + 4.91076 9.67958 -7.25413 + 5.45220 10.37765 -7.09615 + 6.03197 11.09923 -6.93833 + 6.03197 11.09922 -6.93833 + 6.65124 11.84071 -6.78067 + 7.31118 12.60547 -6.62321 + 8.01305 13.39346 -6.46595 + 8.75809 14.20462 -6.30892 + 9.54757 15.03888 -6.15214 + 9.54757 15.03886 -6.15214 + 10.38252 15.88912 -5.99563 + 11.26400 16.76219 -5.83941 + 12.19324 17.65802 -5.68351 + 13.17148 18.57655 -5.52796 + 14.19992 19.51774 -5.37279 + 14.19992 19.51772 -5.37279 + 15.32063 20.51185 -5.21229 + 16.49770 21.53010 -5.05226 + 17.73246 22.57241 -4.89274 + 19.02625 23.63872 -4.73376 + 20.38044 24.72899 -4.57536 + 20.38056 24.72319 -4.57536 + 21.62020 24.44172 -4.43445 + 22.80337 22.87892 -4.29407 + 23.90744 21.27724 -4.15425 + 24.93045 19.63649 -4.01500 + 25.87044 17.95647 -3.87637 + 25.87042 17.95638 -3.87637 + 26.73515 16.62982 -3.73836 + 27.53310 15.28485 -3.60100 + 28.26333 13.92126 -3.46432 + 28.92491 12.53882 -3.32832 + 29.51689 11.13733 -3.19302 + 29.51689 11.13745 -3.19302 + 30.02142 9.04778 -3.05845 + 30.42209 6.98347 -2.92460 + 30.72018 4.94409 -2.79150 + 30.91691 2.92922 -2.65914 + 31.01350 0.93843 -2.52753 + 31.01350 0.93859 -2.52753 + 31.01678 -0.80212 -2.39668 + 30.93381 -2.51128 -2.26659 + 30.76617 -4.18930 -2.13724 + 30.51540 -5.83662 -2.00865 + 30.18301 -7.45365 -1.88079 + 30.18301 -7.45341 -1.88079 + 29.65883 -9.21197 -1.72111 + 29.02655 -10.89340 -1.56256 + 28.29098 -12.49849 -1.40513 + 27.45689 -14.02802 -1.24879 + 26.52902 -15.48276 -1.09350 + 26.52932 -15.48576 -1.09350 + 25.51757 -16.69373 -0.93923 + 24.43229 -17.82494 -0.78595 + 23.27831 -18.88007 -0.63360 + 22.06046 -19.85589 -0.48215 + 20.78474 -20.70759 -0.33155 + 20.78403 -20.71911 -0.33155 + 19.46381 -21.26013 -0.18174 + 18.11481 -21.63509 -0.03269 + 16.74743 -21.84519 0.11567 + 15.37199 -21.89153 0.26338 + 13.99876 -21.77515 0.41050 + 13.99876 -21.77477 0.41050 + 12.64188 -21.37150 0.55709 + 11.31547 -20.80532 0.70319 + 10.02975 -20.07704 0.84885 + 8.79488 -19.18742 0.99412 + 7.62099 -18.13711 1.13906 + 7.62071 -18.13385 1.13906 + 6.52108 -16.82755 1.28371 + 5.50862 -15.36014 1.42810 + 4.59346 -13.73212 1.57228 + 3.78547 -11.95268 1.71628 + 3.09315 -10.06266 1.86014 + 3.09380 -10.05166 1.86014 + 2.49537 -8.98938 2.00388 + 1.96369 -7.92806 2.14752 + 1.49868 -6.86772 2.29109 + 1.10030 -5.80836 2.43459 + 0.76847 -4.75000 2.57806 + 0.76853 -4.75240 2.57806 + 0.50084 -3.76520 2.72150 + 0.29516 -2.77939 2.86491 + 0.15140 -1.79498 3.00832 + 0.06948 -0.81199 3.15172 + 0.04930 0.16960 3.29511 + 0.04929 0.16951 3.29511 + 0.05569 0.10553 3.40157 + 0.05920 0.04591 3.50803 + 0.06004 -0.00935 3.61449 + 0.05840 -0.06025 3.72094 + 0.05448 -0.10680 3.82740 + 0.05448 -0.10680 3.82740 + 0.04902 -0.12667 3.93385 + 0.04273 -0.14202 4.04030 + 0.03583 -0.15286 4.14675 + 0.02854 -0.15917 4.25320 + 0.02105 -0.16095 4.35965 + 0.02105 -0.16095 4.35965 + 0.01405 -0.13810 4.46610 + 0.00823 -0.11059 4.57255 + 0.00380 -0.07840 4.67900 + 0.00099 -0.04154 4.78545 + 0.00000 0.00000 4.89190 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -4504,11 +4628,11 @@ Method c,phi,delta [END OF WATER LEVEL] [SURFACE] 5 : Number of surface points - 0.00 8.05 - 1.50 8.30 - 3.50 8.30 - 10.00 4.11 - 30.00 4.11 + 0.00 8.45 + 1.50 8.70 + 3.50 8.70 + 10.00 4.50 + 30.00 4.50 [END OF SURFACE] [SOIL PROFILE FOR SHEET PILING MODEL] S19 @@ -4564,7 +4688,7 @@ Modulus of subgrade reaction bottom [END OF SOIL PROFILE FOR SHEET PILING MODEL] [SLIDE PLANE] [TABLE] -DataCount=23 +DataCount=24 [COLUMN INDICATION] Slide plane position Theta min @@ -4573,35 +4697,36 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - 8.05500 0.00000 0.00000 0.00000 0.00000 - 7.90000 63.39900 39.13600 1.48235 0.07436 - 7.63000 63.39900 39.13600 11.14464 0.55904 - 7.36000 66.60100 39.13600 28.57278 1.49498 - 7.09000 105.62000 39.13600 47.82373 2.88217 - 6.82000 104.18900 39.13600 60.95002 4.72063 - 6.55000 102.73900 39.13600 76.39263 7.01033 - 6.28000 101.27000 38.59700 94.67641 9.74028 - 6.00000 94.12500 37.98700 117.04913 12.99732 - 5.75000 91.94600 37.59500 138.85238 16.26720 - 5.50000 89.99900 37.29900 163.17232 19.87711 - 5.25000 95.53100 36.79800 194.48222 23.37516 - 5.00000 94.11400 36.39900 219.16758 27.18823 - 4.68571 92.32300 36.00900 251.45698 32.31941 - 4.37143 90.52600 35.71000 287.40675 37.72950 - 4.05714 89.00000 35.47200 324.73400 43.41699 - 3.74286 88.71000 35.27900 355.72470 49.38099 - 3.42857 87.65200 35.11800 397.55208 55.62089 - 3.11429 86.65100 34.64000 442.73803 62.11851 - 2.80000 85.70600 34.03500 491.43324 68.80728 - 2.56667 86.52700 33.84100 443.07818 75.19937 - 2.33333 85.66400 33.66100 420.41190 81.68749 - 2.10000 84.53800 33.49300 424.33255 88.27111 + 8.45000 0.00000 0.00000 0.00000 0.00000 + 8.17500 63.39900 39.13600 4.66609 0.23406 + 7.90000 64.61700 39.13600 18.57459 0.93625 + 7.63000 67.47700 39.13600 38.37540 2.08110 + 7.36000 104.96000 39.13600 52.02472 3.67721 + 7.09000 103.52000 39.13600 65.50869 5.72458 + 6.82000 102.06100 39.01600 81.14659 8.22276 + 6.55000 100.58500 38.29700 99.32300 11.14126 + 6.28000 96.58800 37.79300 120.63296 14.45917 + 6.00000 93.94600 37.41400 145.14335 18.31959 + 5.75000 91.81300 37.15900 169.63130 22.12634 + 5.50000 89.99900 36.96000 196.57795 26.27202 + 5.25000 93.28900 36.55800 245.98584 30.24103 + 5.00000 91.86200 36.22900 276.46148 34.52416 + 4.68571 90.06300 35.89900 314.99500 40.24545 + 4.37143 89.00000 35.63900 349.66594 46.24512 + 4.05714 88.47400 35.42900 385.36627 52.52194 + 3.74286 87.45600 35.25100 429.06316 59.07512 + 3.42857 86.49200 34.57700 476.14761 65.85652 + 3.11429 85.58200 33.98400 526.76569 72.81852 + 2.80000 84.72500 33.45100 581.06026 79.95926 + 2.56667 85.29700 33.30100 544.28374 86.87512 + 2.33333 84.94800 33.16000 516.64672 93.88514 + 2.10000 84.02600 33.02900 514.02949 100.98903 [END OF DATA] [END OF TABLE] [END OF SLIDE PLANE] [LAMBDAS] [TABLE] -DataCount=22 +DataCount=23 [COLUMN INDICATION] Position Vertical stress @@ -4612,34 +4737,35 @@ Lambda active Lambda passive [END OF COLUMN INDICATION] [DATA] - 7.97750 1.39560 9.56356 0.47973 0.80194 0.34375 6.85266 - 7.76500 5.18847 35.78624 1.79512 0.55169 0.34598 6.89726 - 7.49500 9.99034 64.54869 3.46644 0.43663 0.34698 6.46111 - 7.22500 14.74943 71.29979 5.13776 0.37801 0.34834 4.83407 - 6.95500 19.45463 48.61592 6.80908 0.35000 0.35000 2.49894 - 6.68500 24.10145 57.19482 8.48040 0.35186 0.35186 2.37309 - 6.41500 28.68959 67.71773 10.11090 0.35242 0.35242 2.36036 - 6.14000 33.30462 79.90257 11.63228 0.34927 0.34927 2.39914 - 5.87500 37.69989 87.21299 13.07953 0.34694 0.34694 2.31335 - 5.62500 41.80339 97.27977 14.43963 0.34542 0.34542 2.32708 - 5.37500 45.99400 125.23958 13.99221 0.30422 0.30422 2.72295 - 5.12500 50.27562 98.74146 15.25227 0.30337 0.30337 1.96400 - 4.84286 53.84448 102.73899 16.32649 0.30322 0.30322 1.90807 - 4.52857 56.69395 114.38562 17.21392 0.30363 0.30363 2.01760 - 4.21429 59.50967 118.76854 18.09658 0.30409 0.30409 1.99579 - 3.90000 62.29817 98.60677 18.97634 0.30461 0.30461 1.58282 - 3.58571 65.06536 133.08711 19.85423 0.30514 0.30514 2.04544 - 3.27143 67.81650 20.87201 20.67427 0.30486 0.30486 0.30777 - 2.95714 70.55621 20.87201 21.28244 0.30164 0.30164 0.30164 - 2.68333 72.58691 20.87201 27.39468 0.37741 0.37741 0.37741 - 2.45000 73.91301 20.87201 27.80620 0.37620 0.37620 0.37620 - 2.21667 75.23799 16.80281 28.21551 0.37502 0.37502 0.37502 + 8.31250 2.46543 16.96761 0.85113 0.68548 0.34523 6.88222 + 8.03750 7.37128 50.57635 2.55340 0.48066 0.34640 6.86127 + 7.76500 12.19956 73.33633 4.24020 0.39770 0.34757 6.01139 + 7.49500 16.93421 50.55304 5.91152 0.35259 0.34909 2.98526 + 7.22500 21.61193 49.94063 7.58284 0.35086 0.35086 2.31079 + 6.95500 26.23036 57.91817 9.25253 0.35274 0.35274 2.20806 + 6.68500 30.79045 67.32001 10.80927 0.35106 0.35106 2.18639 + 6.41500 35.29505 78.92579 12.28853 0.34817 0.34817 2.23617 + 6.14000 39.83011 87.53713 13.78722 0.34615 0.34615 2.19776 + 5.87500 44.15415 97.95177 15.22700 0.34486 0.34486 2.21840 + 5.62500 48.19611 107.78663 16.58274 0.34407 0.34407 2.23642 + 5.37500 52.33081 197.63156 15.87604 0.30338 0.30338 3.77658 + 5.12500 56.56207 121.90253 17.13250 0.30290 0.30290 2.15520 + 4.84286 60.08054 122.60668 18.20410 0.30299 0.30299 2.04071 + 4.52857 62.88143 110.31662 19.08987 0.30359 0.30359 1.75436 + 4.21429 65.65584 113.59197 19.97171 0.30419 0.30419 1.73011 + 3.90000 68.40956 139.03555 20.85102 0.30480 0.30480 2.03240 + 3.58571 71.14773 149.81415 21.57717 0.30327 0.30327 2.10568 + 3.27143 73.87486 28.51324 22.15180 0.29986 0.29986 0.38597 + 2.95714 76.59491 28.51324 22.72057 0.30122 0.29663 0.37226 + 2.68333 78.61153 28.51324 29.63939 0.37704 0.37704 0.37704 + 2.45000 79.92757 28.51324 30.04293 0.37588 0.37588 0.37588 + 2.21667 81.24406 28.51324 30.44525 0.37474 0.37474 0.37474 [END OF DATA] [END OF TABLE] [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -4650,150 +4776,144 @@ Percentage of mobilisation Status character [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00001 0.00000 1 0 A - 0.19809 0.00000 3.94889 0.46213 1 0 A - 0.38519 0.00000 7.67878 0.89862 1 0 A - 0.57456 0.00000 11.45411 1.34044 1 0 A - 0.76463 0.00000 15.24312 1.78385 1 0 A - 0.95491 0.00000 19.03634 2.22776 1 0 A - 0.96112 0.00000 19.16026 1.53257 1 0 A - 1.29483 0.00000 25.81274 2.06468 1 0 A - 1.62842 0.00000 32.46293 2.59661 1 0 A - 1.96175 0.00000 39.10801 3.12812 1 0 A - 2.29473 0.00000 45.74615 3.65909 1 0 A - 2.62730 0.00000 52.37590 4.18938 1 0 A - 2.63486 0.00000 49.06386 3.31562 1 0 A - 2.96790 0.00000 55.26539 3.73471 1 0 A - 3.30040 0.00000 61.45694 4.15312 1 0 A - 3.63232 0.00000 67.63763 4.57080 1 0 A - 3.96362 0.00000 73.80668 4.98769 1 0 A - 4.29425 0.00000 79.96341 5.40375 1 0 A - 4.31105 0.00000 59.82703 4.67835 1 0 A - 4.64228 0.00000 64.42371 5.03780 1 0 A - 4.97279 0.00000 69.01035 5.39647 1 0 A - 5.30254 0.00000 73.58661 5.75432 1 0 A - 5.63154 0.00000 78.15222 6.11134 1 0 A - 5.95974 0.00000 82.70695 6.46751 1 0 A - 5.98817 0.00000 42.75475 5.98817 1 14 A - 6.31714 0.00000 45.10357 6.31714 1 14 A - 6.64531 0.00000 47.44659 6.64531 1 14 A - 6.97265 0.00000 49.78377 6.97265 1 14 A - 7.29916 0.00000 52.11506 7.29916 1 14 A - 7.62485 0.00000 54.44045 7.62485 1 14 A - 7.66548 0.00000 51.69871 7.66548 1 15 A - 7.99207 0.00000 53.90136 7.99207 1 15 A - 8.31783 0.00000 56.09840 8.31783 1 15 A - 8.64276 0.00000 58.28985 8.64276 1 15 A - 8.96686 0.00000 60.47571 8.96686 1 15 A - 9.29014 0.00000 62.65604 9.29014 1 15 A - 9.30497 0.00000 62.32000 9.30497 1 15 A - 9.62795 0.00000 64.48316 9.62795 1 15 A - 9.95012 0.00000 66.64089 9.95012 1 15 A - 10.27149 0.00000 68.79324 10.27149 1 15 A - 10.59206 0.00000 70.94028 10.59206 1 15 A - 10.91185 0.00000 73.08207 10.91185 1 15 A - 10.81417 0.00000 74.28292 10.81417 1 15 A - 11.14202 0.00000 76.53496 11.14202 1 15 A - 11.46906 0.00000 78.78141 11.46906 1 15 A - 11.79530 0.00000 81.02236 11.79530 1 15 A - 12.12075 0.00000 83.25788 12.12075 1 15 A - 12.44543 0.00000 85.48808 12.44543 1 15 A - 12.36236 0.00000 82.43096 12.36236 1 15 A - 12.64967 0.00000 84.34673 12.64967 1 15 A - 12.93639 0.00000 86.25855 12.93639 1 15 A - 13.22253 0.00000 88.16647 13.22253 1 15 A - 13.50809 0.00000 90.07057 13.50809 1 15 A - 13.79309 0.00000 91.97091 13.79309 1 15 A - 13.73264 0.00000 92.51677 13.73264 1 15 A - 14.01584 0.00000 94.42469 14.01584 1 15 A - 14.29850 0.00000 96.32897 14.29850 1 15 A - 14.58064 0.00000 98.22969 14.58064 1 15 A - 14.86225 0.00000 100.12691 14.86225 1 15 A - 15.14335 0.00000 102.02072 15.14335 1 15 A - 13.33713 0.00000 119.37622 13.33713 1 11 A - 13.59948 0.00000 121.72443 13.59948 1 11 A - 13.86141 0.00000 124.06880 13.86141 1 11 A - 14.12291 0.00000 126.40944 14.12291 1 11 A - 14.38401 0.00000 128.74641 14.38401 1 11 A - 14.64470 0.00000 131.07981 14.64470 1 11 A - 14.60402 0.00000 94.54478 14.60402 1 15 A - 14.86360 0.00000 96.22529 14.86360 1 15 A - 15.12280 0.00000 97.90334 15.12280 1 15 A - 15.38164 0.00000 99.57900 15.38164 1 15 A - 15.64011 0.00000 101.25232 15.64011 1 15 A - 15.89823 0.00000 102.92338 15.89823 1 15 A - 15.88998 0.00000 99.99216 15.88998 1 16 A - 16.06497 0.61663 101.09334 16.06497 1 16 A - 16.23944 1.23326 102.19124 16.23944 1 16 A - 16.41341 1.84989 103.28596 16.41341 1 16 A - 17.35485 2.46651 104.37763 16.58689 110 17 - - 18.37034 3.08314 105.46635 16.75990 110 17 - - 18.39318 3.08314 111.52046 16.78274 110 16 - - 19.40176 3.69977 112.66868 16.95553 110 17 - - 20.40350 4.31640 113.81401 17.12789 110 18 - - 21.39875 4.93303 114.95656 17.29984 110 19 - - 22.38784 5.54966 116.09645 17.47138 110 19 - - 23.37110 6.16629 117.23378 17.64254 110 20 - - 23.39817 6.16629 115.96633 17.66961 110 20 - - 24.37621 6.78291 117.08894 17.84066 110 21 - - 25.34913 7.39954 118.20923 18.01136 110 21 - - 26.31730 8.01617 119.32731 18.18172 110 22 - - 27.28108 8.63280 120.44326 18.35175 110 23 - - 28.24082 9.24943 121.55719 18.52148 110 23 - - 28.27190 9.24943 96.40470 18.55256 110 29 - - 29.22826 9.86606 97.28661 18.72228 110 30 - - 30.18128 10.48269 98.16706 18.89172 110 31 - - 31.13127 11.09931 99.04614 19.06089 110 31 - - 32.07855 11.71594 99.92390 19.22981 110 32 - - 33.02343 12.33257 100.80042 19.39850 110 33 - - 33.05768 12.33257 130.26180 19.43274 110 25 - - 34.00076 12.94920 131.39299 19.60150 110 26 - - 34.94197 13.56583 132.52275 19.77004 110 26 - - 35.88149 14.18246 133.65115 19.93838 110 27 - - 36.81952 14.79909 134.77829 20.10652 110 27 - - 37.75626 15.41571 135.90424 20.27450 110 28 - - 20.44917 15.41571 20.44917 20.25544 202 100 P - 20.61842 16.03234 20.61842 20.42309 202 100 P - 20.78751 16.64897 20.78751 20.59058 202 100 P - 20.95646 17.26560 20.95646 20.75793 202 100 P - 21.12528 17.88223 21.12528 20.92514 202 100 P - 21.29397 18.49886 21.29397 21.09224 202 100 P - 20.86959 18.49886 20.86959 20.86959 202 100 P - 21.03480 19.11549 21.03480 21.03480 202 100 P - 21.19992 19.73211 21.19992 21.19992 202 100 P - 21.36494 20.34874 21.36494 21.36494 202 100 P - 21.52987 20.96537 21.52987 21.52987 202 100 P - 21.69473 21.58200 21.69473 21.69473 202 100 P - 27.14414 21.58200 27.14414 27.14414 202 100 P - 27.24439 22.03980 27.24439 27.24439 202 100 P - 27.34460 22.49760 27.34460 27.34460 202 100 P - 27.44476 22.95540 27.44476 27.44476 202 100 P - 27.54490 23.41320 27.54490 27.54490 202 100 P - 27.64500 23.87100 27.64500 27.64500 202 100 P - 27.55685 23.87100 27.55685 27.55685 202 100 P - 27.65661 24.32880 27.65661 27.65661 202 100 P - 27.75634 24.78660 27.75634 27.75634 202 100 P - 27.85606 25.24440 27.85606 27.85606 202 100 P - 27.95577 25.70220 27.95577 27.95577 202 100 P - 28.05546 26.16000 28.05546 28.05546 202 100 P - 27.96709 26.16000 27.96709 27.96709 202 100 P - 28.06646 26.61780 28.06646 28.06646 202 100 P - 28.16583 27.07560 28.16583 28.16583 202 100 P - 28.26519 27.53340 28.26519 28.26519 202 100 P - 28.36456 27.99120 28.36456 28.36456 202 100 P - 28.46393 28.44900 28.46393 28.46393 202 100 P + 0.34412 0.00000 6.86016 0.68328 1 0 A + 0.68168 0.00000 13.58949 1.35353 1 0 A + 1.02069 0.00000 20.34767 2.02665 1 0 A + 1.35982 0.00000 27.10840 2.70003 1 0 A + 1.69880 0.00000 33.86600 3.37309 1 0 A + 1.70456 0.00000 33.76290 2.36521 1 0 A + 2.04439 0.00000 40.49415 2.83676 1 0 A + 2.38385 0.00000 47.21782 3.30778 1 0 A + 2.72284 0.00000 53.93247 3.77817 1 0 A + 3.06132 0.00000 60.63685 4.24783 1 0 A + 3.39923 0.00000 67.32990 4.71671 1 0 A + 3.41072 0.00000 58.99002 3.90268 1 0 A + 3.74299 0.00000 64.73693 4.28288 1 0 A + 4.07463 0.00000 70.47277 4.66236 1 0 A + 4.40559 0.00000 76.19690 5.04106 1 0 A + 4.73585 0.00000 81.90881 5.41895 1 0 A + 5.06537 0.00000 87.60803 5.79600 1 0 A + 5.08748 0.00000 43.50621 5.13852 1 0 A + 5.41768 0.00000 46.32995 5.47203 1 0 A + 5.74711 0.00000 49.14703 5.80476 1 0 A + 6.07573 0.00000 51.95733 6.13668 1 0 A + 6.40355 0.00000 54.76072 6.46779 1 0 A + 6.73056 0.00000 57.55713 6.79807 1 0 A + 6.76480 0.00000 44.55302 6.76480 1 15 A + 7.09264 0.00000 46.71218 7.09264 1 15 A + 7.41965 0.00000 48.86585 7.41965 1 15 A + 7.74582 0.00000 51.01402 7.74582 1 15 A + 8.07116 0.00000 53.15669 8.07116 1 15 A + 8.39566 0.00000 55.29386 8.39566 1 15 A + 8.44059 0.00000 52.83564 8.44059 1 16 A + 8.76599 0.00000 54.87256 8.76599 1 16 A + 9.09056 0.00000 56.90426 9.09056 1 16 A + 9.41430 0.00000 58.93078 9.41430 1 16 A + 9.73721 0.00000 60.95215 9.73721 1 16 A + 10.05932 0.00000 62.96842 10.05932 1 16 A + 10.01135 0.00000 62.35057 10.01135 1 16 A + 10.33111 0.00000 64.34205 10.33111 1 16 A + 10.65008 0.00000 66.32858 10.65008 1 16 A + 10.96826 0.00000 68.31022 10.96826 1 16 A + 11.28567 0.00000 70.28704 11.28567 1 16 A + 11.60231 0.00000 72.25909 11.60231 1 16 A + 11.50669 0.00000 73.90426 11.50669 1 16 A + 11.81998 0.00000 75.91641 11.81998 1 16 A + 12.13253 0.00000 77.92383 12.13253 1 16 A + 12.44436 0.00000 79.92659 12.44436 1 16 A + 12.75547 0.00000 81.92478 12.75547 1 16 A + 13.06588 0.00000 83.91848 13.06588 1 16 A + 12.99026 0.00000 82.47708 12.99026 1 16 A + 13.30958 0.00000 84.50452 13.30958 1 16 A + 13.62819 0.00000 86.52738 13.62819 1 16 A + 13.94608 0.00000 88.54576 13.94608 1 16 A + 14.26329 0.00000 90.55975 14.26329 1 16 A + 14.57982 0.00000 92.56944 14.57982 1 16 A + 14.52545 0.00000 93.43887 14.52545 1 16 A + 14.80645 0.00000 95.24651 14.80645 1 16 A + 15.08694 0.00000 97.05083 15.08694 1 16 A + 15.36693 0.00000 98.85191 15.36693 1 16 A + 15.64642 0.00000 100.64981 15.64642 1 16 A + 15.92543 0.00000 102.44461 15.92543 1 16 A + 15.88886 0.00000 103.27643 15.88886 1 15 A + 16.16676 0.00000 105.08274 16.16676 1 15 A + 16.44420 0.00000 106.88607 16.44420 1 15 A + 16.72118 0.00000 108.68647 16.72118 1 15 A + 16.99773 0.00000 110.48401 16.99773 1 15 A + 17.27385 0.00000 112.27878 17.27385 1 15 A + 15.23104 0.00000 189.60233 15.23104 1 8 A + 15.48931 0.00000 192.81736 15.48931 1 8 A + 15.74722 0.00000 196.02792 15.74722 1 8 A + 16.00478 0.00000 199.23413 16.00478 1 8 A + 16.26200 0.00000 202.43610 16.26200 1 8 A + 16.51888 0.00000 205.63395 16.51888 1 8 A + 16.49269 0.00000 117.35007 16.49269 1 14 A + 16.74885 0.00000 119.17272 16.74885 1 14 A + 17.00469 0.00000 120.99313 17.00469 1 14 A + 17.26023 0.00000 122.81139 17.26023 1 14 A + 17.51548 0.00000 124.62755 17.51548 1 14 A + 17.77044 0.00000 126.44167 17.77044 1 14 A + 17.77617 0.00000 119.72451 17.77617 1 15 A + 17.94766 0.61663 120.87950 17.94766 1 15 A + 18.11872 1.23326 122.03164 18.11872 1 15 A + 18.28938 1.84989 123.18105 18.28938 1 15 A + 18.45965 2.46651 124.32784 18.45965 1 15 A + 18.62955 3.08314 125.47211 18.62955 1 15 A + 18.66584 3.08314 107.86623 18.66584 1 17 A + 18.83571 3.69977 108.84786 18.83571 1 17 A + 19.00523 4.31640 109.82751 19.00523 1 17 A + 19.17443 4.93303 110.80527 19.17443 1 17 A + 19.43463 5.54966 111.78121 19.34331 110 17 - + 20.67388 6.16629 112.75543 19.51190 110 18 - + 20.71261 6.16629 111.19702 19.55063 110 19 - + 21.94320 6.78291 112.15615 19.71926 110 20 - + 23.16524 7.39954 113.11373 19.88762 110 20 - + 24.37923 8.01617 114.06985 20.05573 110 21 - + 25.58563 8.63280 115.02458 20.22359 110 22 - + 26.78491 9.24943 115.97798 20.39121 110 23 - + 26.82574 9.24943 136.24179 20.43205 110 20 - + 28.01872 9.86606 137.36032 20.59979 110 20 - + 29.20554 10.48269 138.47746 20.76733 110 21 - + 30.38667 11.09931 139.59331 20.93467 110 22 - + 31.56258 11.71594 140.70794 21.10183 110 22 - + 32.73371 12.33257 141.82142 21.26882 110 23 - + 32.62736 12.33257 146.93477 21.16246 110 22 - + 33.79335 12.94920 148.08729 21.32846 110 23 - + 34.95544 13.56583 149.23877 21.49430 110 23 - + 36.11398 14.18246 150.38930 21.66001 110 24 - + 37.26933 14.79909 151.53893 21.82558 110 25 - + 38.42186 15.41571 152.68774 21.99104 110 25 - + 27.98738 15.41571 27.98738 21.74327 202 100 P + 28.19782 16.03234 28.19782 21.90675 202 100 P + 28.40813 16.64897 28.40813 22.07014 202 100 P + 28.61833 17.26560 28.61833 22.23344 202 100 P + 28.82842 17.88223 28.82842 22.39666 202 100 P + 29.03842 18.49886 29.03842 22.55981 202 100 P + 28.00721 18.49886 28.00721 22.66208 202 100 P + 28.20967 19.11549 28.20967 22.82591 202 100 P + 28.41207 19.73211 28.41207 22.98968 202 100 P + 28.61440 20.34874 28.61440 23.15340 202 100 P + 28.81669 20.96537 28.81669 23.31708 202 100 P + 29.01894 21.58200 29.01894 23.48073 202 100 P + 29.39123 21.58200 29.39123 29.39123 202 100 P + 29.49051 22.03980 29.49051 29.49051 202 100 P + 29.58976 22.49760 29.58976 29.58976 202 100 P + 29.68901 22.95540 29.68901 29.68901 202 100 P + 29.78825 23.41320 29.78825 29.78825 202 100 P + 29.88749 23.87100 29.88749 29.88749 202 100 P + 29.79559 23.87100 29.79559 29.79559 202 100 P + 29.89452 24.32880 29.89452 29.89452 202 100 P + 29.99346 24.78660 29.99346 29.99346 202 100 P + 30.09240 25.24440 30.09240 30.09240 202 100 P + 30.19134 25.70220 30.19134 30.19134 202 100 P + 30.29030 26.16000 30.29030 30.29030 202 100 P + 30.19853 26.16000 30.19853 30.19853 202 100 P + 30.29720 26.61780 30.29720 30.29720 202 100 P + 30.39589 27.07560 30.39589 30.39589 202 100 P + 30.49460 27.53340 30.49460 30.49460 202 100 P + 30.59333 27.99120 30.59333 30.59333 202 100 P + 30.69209 28.44900 30.69209 30.69209 202 100 P [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -4806,10 +4926,10 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 8.70 9.739 'Dike' - 6.28 10.136 'A' - 5.50 61.237 'B' - 2.80 19.464 'C' + 8.70 14.458 'Dike' + 6.28 11.812 'A' + 5.50 65.936 'B' + 2.80 21.030 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -4942,7 +5062,7 @@ Lambda passive [END OF LAMBDAS] [PRESSURES] [TABLE] -DataCount=144 +DataCount=138 [COLUMN INDICATION] Horizontal pressure Pore pressure @@ -5007,64 +5127,58 @@ Status character 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - - 0.00000 0.00000 0.00000 0.00000 -1 0 - 0.00001 0.00000 0.00001 0.00000 202 100 P - 31.57008 0.00000 99.47492 19.93385 110 32 - - 32.56301 0.00000 106.54462 21.35056 110 31 - - 33.55727 0.00000 113.61431 22.76726 110 30 - - 34.55294 0.00000 120.68399 24.18396 110 29 - - 35.55009 0.00000 127.75366 25.60065 110 28 - - 29.84980 0.00000 113.58284 19.90036 110 26 - - 30.53306 0.00000 119.86830 21.00161 110 25 - - 31.21791 0.00000 126.15375 22.10286 110 25 - - 31.90441 0.00000 132.43917 23.20410 110 24 - - 32.59259 0.00000 138.72456 24.30534 110 23 - - 33.28249 0.00000 145.00993 25.40657 110 23 - - 36.58610 0.00000 170.48183 20.83425 110 21 - - 36.72317 0.00000 178.30590 21.79041 110 21 - - 36.86381 0.00000 186.12993 22.74657 110 20 - - 37.00804 0.00000 193.95391 23.70273 110 19 - - 37.15590 0.00000 201.77785 24.65888 110 18 - - 37.30739 0.00000 209.60173 25.61502 110 18 - - 33.98854 0.00000 196.91776 22.29617 110 17 - - 34.01980 0.00000 204.26813 23.12842 110 17 - - 34.05466 0.00000 211.61844 23.96067 110 16 - - 34.09308 0.00000 218.96869 24.79290 110 16 - - 34.13501 0.00000 226.31887 25.62513 110 15 - - 34.18040 0.00000 233.66899 26.45736 110 15 - - 31.63352 0.00000 224.64756 23.91047 110 14 - - 31.18440 0.61663 229.67610 24.44569 110 14 - - 30.74048 1.23326 234.70452 24.98089 110 13 - - 30.30153 1.84989 239.73283 25.51608 110 13 - - 29.86733 2.46651 244.76100 26.05126 110 12 - - 29.43766 3.08314 249.78904 26.58642 110 12 - - 27.45879 3.08314 243.27912 24.60754 110 11 - - 26.99358 3.69977 248.17598 25.10286 110 11 - - 26.53238 4.31640 253.07269 25.59816 110 10 - - 26.07487 4.93303 257.96926 26.09344 110 0 - - 25.62076 5.54966 262.86567 26.58871 110 0 - - 25.16975 6.16629 267.76191 27.08396 110 0 - - 23.50388 6.16629 261.89219 25.41809 110 0 - - 23.02519 6.78291 266.68094 25.88286 110 0 - - 22.54898 7.39954 271.46951 26.34762 110 0 - - 22.07493 8.01617 276.25791 26.81236 110 0 - - 21.60274 8.63280 281.04613 27.27708 110 0 - - 21.13211 9.24943 285.83415 27.74179 110 0 - - 19.71008 9.24943 280.47640 26.31977 110 0 - - 19.21687 9.86606 285.17448 26.76063 110 0 - - 18.72463 10.48269 289.87237 27.20148 110 0 - - 18.23314 11.09931 294.57005 27.64231 110 0 - - 17.74213 11.71594 299.26753 28.08312 110 0 - - 17.25139 12.33257 303.96479 28.52391 110 0 - - 16.02380 12.33257 299.03372 27.29632 110 0 - - 15.51410 12.94920 303.65456 27.71812 110 0 - - 15.01023 13.56583 308.27518 28.13990 1 0 A - 15.23520 14.18246 312.89558 28.56166 1 0 A + 37.67165 0.00000 99.47492 19.93385 110 38 - + 38.52685 0.00000 106.54462 21.35056 110 36 - + 39.38425 0.00000 113.61431 22.76726 110 35 - + 40.24397 0.00000 120.68399 24.18396 110 33 - + 41.10611 0.00000 127.75366 25.60065 110 32 - + 35.40582 0.00000 113.58284 19.90036 110 31 - + 35.95505 0.00000 119.86830 21.00161 110 30 - + 36.50687 0.00000 126.15375 22.10286 110 29 - + 37.06137 0.00000 132.43917 23.20410 110 28 - + 37.61861 0.00000 138.72456 24.30534 110 27 - + 38.17866 0.00000 145.00993 25.40657 110 26 - + 46.37843 0.00000 170.48183 20.83425 110 27 - + 46.25800 0.00000 178.30590 21.79041 110 26 - + 46.14341 0.00000 186.12993 22.74657 110 25 - + 46.03471 0.00000 193.95391 23.70273 110 24 - + 45.93198 0.00000 201.77785 24.65888 110 23 - + 45.83526 0.00000 209.60173 25.61502 110 22 - + 42.51642 0.00000 196.91776 22.29617 110 22 - + 42.30187 0.00000 204.26813 23.12842 110 21 - + 42.09336 0.00000 211.61844 23.96067 110 20 - + 41.89085 0.00000 218.96869 24.79290 110 19 - + 41.69430 0.00000 226.31887 25.62513 110 18 - + 41.50370 0.00000 233.66899 26.45736 110 18 - + 38.95681 0.00000 224.64756 23.91047 110 17 - + 38.21455 0.61663 229.67610 24.44569 110 17 - + 37.48140 1.23326 234.70452 24.98089 110 16 - + 36.75714 1.84989 239.73283 25.51608 110 15 - + 36.04155 2.46651 244.76100 26.05126 110 15 - + 35.33439 3.08314 249.78904 26.58642 110 14 - + 33.35551 3.08314 243.27912 24.60754 110 14 - + 32.61671 3.69977 248.17598 25.10286 110 13 - + 31.88574 4.31640 253.07269 25.59816 110 13 - + 31.16226 4.93303 257.96926 26.09344 110 12 - + 30.44590 5.54966 262.86567 26.58871 110 12 - + 29.73632 6.16629 267.76191 27.08396 110 11 - + 28.07045 6.16629 261.89219 25.41809 110 11 - + 27.33681 6.78291 266.68094 25.88286 110 10 - + 26.60913 7.39954 271.46951 26.34762 110 10 - + 25.88701 8.01617 276.25791 26.81236 110 0 - + 25.17002 8.63280 281.04613 27.27708 110 0 - + 24.45775 9.24943 285.83415 27.74179 110 0 - + 23.03573 9.24943 280.47640 26.31977 110 0 - + 22.30392 9.86606 285.17448 26.76063 110 0 - + 21.57598 10.48269 289.87237 27.20148 110 0 - + 20.85151 11.09931 294.57005 27.64231 110 0 - + 20.13013 11.71594 299.26753 28.08312 110 0 - + 19.41143 12.33257 303.96479 28.52391 110 0 - + 18.18384 12.33257 299.03372 27.29632 110 0 - + 17.44847 12.94920 303.65456 27.71812 110 0 - + 16.71508 13.56583 308.27518 28.13990 110 0 - + 15.98339 14.18246 312.89558 28.56166 110 0 - 15.46016 14.79909 317.51574 28.98339 1 0 A 15.68511 15.41571 322.13566 29.40511 1 0 A 15.46328 15.41571 317.56806 28.33530 1 0 A @@ -5079,24 +5193,24 @@ Status character 17.02197 20.34874 349.57034 30.60776 1 0 A 17.24085 20.96537 354.06553 31.00136 1 0 A 17.45973 21.58200 358.56045 31.39492 1 0 A - 30.71088 21.58200 200.26284 37.03159 110 0 - - 30.77993 22.03980 201.57695 37.27459 110 0 - - 30.84893 22.49760 202.89097 37.51757 110 0 - - 30.91789 22.95540 204.20490 37.76054 110 0 - - 30.98680 23.41320 205.51874 38.00349 110 0 - - 31.05568 23.87100 206.83249 38.24642 110 0 - - 30.61099 23.87100 204.56586 37.80173 110 0 - - 30.67701 24.32880 205.86512 38.04182 110 0 - - 30.74300 24.78660 207.16429 38.28189 110 0 - - 30.80897 25.24440 208.46336 38.52195 110 0 - - 30.87491 25.70220 209.76234 38.76199 110 0 - - 30.94082 26.16000 211.06123 39.00201 110 0 - - 30.53104 26.16000 208.89738 38.59222 110 0 - - 30.59441 26.61780 210.18285 38.82970 110 0 - - 30.65776 27.07560 211.46823 39.06717 110 0 - - 30.72110 27.53340 212.75351 39.30461 110 0 - - 30.78441 27.99120 214.03870 39.54204 110 0 - - 30.84771 28.44900 215.32378 39.77945 110 0 - + 30.44137 21.58200 200.26284 37.03159 110 0 - + 30.47145 22.03980 201.57695 37.27459 110 0 - + 30.50152 22.49760 202.89097 37.51757 110 0 - + 30.53157 22.95540 204.20490 37.76054 110 0 - + 30.56161 23.41320 205.51874 38.00349 110 0 - + 30.59163 23.87100 206.83249 38.24642 110 0 - + 30.14694 23.87100 204.56586 37.80173 110 0 - + 30.17412 24.32880 205.86512 38.04182 110 0 - + 30.20129 24.78660 207.16429 38.28189 110 0 - + 30.22844 25.24440 208.46336 38.52195 110 0 - + 30.25558 25.70220 209.76234 38.76199 110 0 - + 30.28270 26.16000 211.06123 39.00201 110 0 - + 29.87291 26.16000 208.89738 38.59222 110 0 - + 29.89750 26.61780 210.18285 38.82970 110 0 - + 29.92206 27.07560 211.46823 39.06717 110 0 - + 29.94661 27.53340 212.75351 39.30461 110 0 - + 29.97114 27.99120 214.03870 39.54204 110 0 - + 29.99565 28.44900 215.32378 39.77945 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -5110,9 +5224,9 @@ Layer name [END OF COLUMN INDICATION] [DATA] 8.70 0.000 'Dike' - 6.28 15.392 'A' - 5.50 63.631 'B' - 2.80 21.548 'C' + 6.28 18.016 'A' + 5.50 74.059 'B' + 2.80 21.155 'C' -0.50 0.000 'E' -8.00 0.000 'G' [END OF DATA] @@ -7079,24 +7193,33 @@ VerticalBalanceResult CalculationStatus [END OF COLUMN INDICATION] [DATA] - -5.79756 -4.41491 -1.13595 0.00000 19.26728 1 3 0 1.000 0 0 - -10.52378 7.87712 0.55163 0.00000 20.21444 1 10 12 1.000 0 0 + -5.76690 -4.39385 -1.14882 0.00000 19.26813 1 3 0 1.000 0 0 + -7.78531 -5.93170 -1.14882 0.00000 19.26813 1 10 12 1.000 0 0 -6.69797 5.02507 -1.19320 0.00000 29.90828 1 11 13 1.000 0 0 - 38.80465 27.22482 -19.04730 0.00000 19.05182 2 3 0 1.000 0 0 - 18.71277 17.54436 -8.35270 0.00000 23.37653 2 10 12 1.000 0 0 + 38.29572 26.86948 -18.78318 0.00000 19.03076 2 3 0 1.000 0 0 + 31.01678 24.72899 -11.73105 0.00000 21.98423 2 10 12 1.000 0 0 18.22491 16.08949 -9.98942 0.00000 35.59106 2 11 13 1.000 0 0 [END OF DATA] [END OF TABLE] [END OF RESUME] [MAXIMUM SUMMARY RESULTS] -MaximumMoment=38.80465 -MaximumShearForce=27.22482 -MaximumDisplacement=-19.04730 +MaximumMoment=38.29572 +MaximumShearForce=26.86948 +MaximumDisplacement=-18.78318 MaximumPercentageMobilisedMoment=0.00000 MaximumPercentageMobilisedResistance=35.59106 VerticalBalanceSummary=0 AllStagesAreStable=1 [END OF MAXIMUM SUMMARY RESULTS] +[MAXIMUM SUMMARY RESULTS BE SET 1] +MaximumMoment=31.01678 +MaximumShearForce=24.72899 +MaximumDisplacement=0.00000 +MaximumPercentageMobilisedMoment=0.00000 +MaximumPercentageMobilisedResistance=21.98423 +VerticalBalanceSummary=0 +AllStagesAreStable=1 +[END OF MAXIMUM SUMMARY RESULTS BE SET 1] [FACTORS FOR OVERALL STABILITY] [TABLE] DataCount=4 @@ -7110,10 +7233,10 @@ Factor on driving moment Factor on unit weight stability [END OF COLUMN INDICATION] [DATA] - 1 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 2 12 'EC7-BE-Set1' 1.000 1.000 1.000 1.000 - 1 13 'EC7-BE-Set2' 1.250 1.250 1.000 1.000 - 2 13 'EC7-BE-Set2' 1.250 1.250 1.000 1.000 + 1 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 2 12 'EC7-BE-RC2-Set1' 1.000 1.000 1.000 1.000 + 1 13 'EC7-BE-RC2-Set2' 1.250 1.250 1.000 1.000 + 2 13 'EC7-BE-RC2-Set2' 1.250 1.250 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR OVERALL STABILITY] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shi index adce03df..a11cb64c 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects32.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:05 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects32.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:54 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects32.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -763,6 +763,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -772,6 +773,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=1 @@ -795,7 +797,7 @@ DesignType=4 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=1 +DesignEC7BEPartialFactorSet=3 DesignEC7BEMethod=1 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -806,8 +808,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=1 EC7BEMethod=1 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -818,7 +822,7 @@ OverallStabilityType=4 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=1 +OverallStabilityEC7BEPartialFactorSet=3 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -837,6 +841,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -864,6 +869,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -891,6 +897,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -918,6 +925,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -945,6 +953,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -972,6 +981,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -999,6 +1009,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1026,6 +1037,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1036,7 +1048,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1045,14 +1057,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1062,8 +1131,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1080,6 +1149,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1089,7 +1159,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1107,6 +1233,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1134,6 +1261,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1161,6 +1289,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shd b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shd index 3652bbc5..0c466e85 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shd +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shd @@ -1,17 +1,17 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:11 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects33.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:57:01 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects33.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1405,6 +1405,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1414,6 +1415,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1423,6 +1425,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1446,7 +1449,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1457,8 +1460,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1469,7 +1474,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1488,6 +1493,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1515,6 +1521,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1542,6 +1549,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1569,6 +1577,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1596,6 +1605,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1623,6 +1633,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1650,6 +1661,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1677,6 +1689,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1687,7 +1700,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1696,14 +1709,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1713,8 +1783,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1731,6 +1801,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1740,7 +1811,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1758,6 +1885,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1785,6 +1913,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1812,6 +1941,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1886,6 +2016,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1904,9 +2035,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shi b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shi index 467f2411..201daff4 100644 --- a/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shi +++ b/tests/test_data/dsheetpiling/complex_projects/ComplexProjects33.shi @@ -1,16 +1,16 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== -COMPANY : Stichting Deltares +COMPANY : -DATE : 4/6/2023 -TIME : 4:10:08 PM -FILENAME : D:\pvcsprojects\applications\DSheetPiling\trunk\data\ComplexProjects\ComplexProjects33.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:56:58 +FILENAME : C:\Deltares\D-Sheet Piling\ComplexProjects\ComplexProjects33.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -1404,6 +1404,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1413,6 +1414,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1422,6 +1424,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -1445,7 +1448,7 @@ DesignType=3 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -1456,8 +1459,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -1468,7 +1473,7 @@ OverallStabilityType=3 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -1487,6 +1492,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1514,6 +1520,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1541,6 +1548,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1568,6 +1576,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1595,6 +1604,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1622,6 +1632,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1649,6 +1660,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1676,6 +1688,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1686,7 +1699,7 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 @@ -1695,14 +1708,71 @@ ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.111 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1712,8 +1782,8 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 @@ -1730,6 +1800,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -1739,7 +1810,63 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 @@ -1757,6 +1884,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -1784,6 +1912,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -1811,6 +1940,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shd index c23dca95..0a99b917 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:12 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-1.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:54 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-1.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shi index 2ffe3d1e..84935629 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-1.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:12 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-1.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:54 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-1.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shd index 3c04b90d..300560ae 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-10.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:55 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-10.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -380,6 +380,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -403,7 +404,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -414,8 +415,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -426,7 +429,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -434,17 +437,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -452,8 +456,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -461,7 +465,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -472,15 +476,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -553,6 +560,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -574,26 +582,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -601,21 +610,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -628,39 +638,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -668,16 +736,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -688,6 +756,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -695,16 +764,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -715,6 +840,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -722,8 +848,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -731,7 +857,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +868,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -749,8 +876,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -758,7 +885,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shi index 19870fbc..df430068 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-10.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-10.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:55 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-10.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -379,6 +379,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -402,7 +403,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -413,8 +414,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -425,7 +428,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -433,17 +436,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -451,8 +455,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -460,7 +464,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -471,15 +475,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -487,17 +492,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,8 +511,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -525,15 +531,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -552,6 +559,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -573,26 +581,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -600,21 +609,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -627,39 +637,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -667,16 +735,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -687,6 +755,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -694,16 +763,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -714,6 +839,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -721,8 +847,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -730,7 +856,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +867,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -748,8 +875,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -757,7 +884,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -775,8 +903,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shd index 7f24c349..04f7d5b2 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:15 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-11a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:57 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-11a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -487,6 +487,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -496,6 +497,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -505,6 +507,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,6 +517,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -537,7 +541,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -548,8 +552,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -560,7 +566,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -568,17 +574,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,8 +593,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -595,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,15 +613,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -622,17 +630,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -640,8 +649,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -660,15 +669,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -687,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -708,26 +719,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -735,21 +747,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -762,39 +775,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -802,16 +873,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +893,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -829,16 +901,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -849,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -856,8 +985,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -865,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -876,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -883,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -892,7 +1022,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -903,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -910,8 +1041,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shi index 881eb80b..76922513 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-11a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-11a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:55 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-11a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -486,6 +486,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -495,6 +496,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -504,6 +506,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,6 +516,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -536,7 +540,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -547,8 +551,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -559,7 +565,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -567,17 +573,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,8 +592,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -594,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,15 +612,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -621,17 +629,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,8 +648,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -659,15 +668,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -686,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -707,26 +718,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -734,21 +746,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -761,39 +774,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +872,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +892,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -828,16 +900,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +984,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -864,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -891,7 +1021,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -902,6 +1032,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -909,8 +1040,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shd index 1feae6c9..d2dab15a 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:17 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-11b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-11b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -487,6 +487,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -496,6 +497,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -505,6 +507,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -514,6 +517,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -537,7 +541,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -548,8 +552,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -560,7 +566,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -568,17 +574,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -586,8 +593,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -595,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -606,15 +613,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -622,17 +630,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -640,8 +649,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -660,15 +669,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -687,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -708,26 +719,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -735,21 +747,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -762,39 +775,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -802,16 +873,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +893,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -829,16 +901,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -849,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -856,8 +985,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -865,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -876,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -883,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -892,7 +1022,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -903,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -910,8 +1041,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shi index 3ff15e95..f6c53817 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-11b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:16 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-11b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:57 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-11b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -486,6 +486,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -495,6 +496,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -504,6 +506,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -513,6 +516,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -536,7 +540,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -547,8 +551,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -559,7 +565,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -567,17 +573,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,8 +592,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -594,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -605,15 +612,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -621,17 +629,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,8 +648,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -659,15 +668,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -686,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -707,26 +718,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -734,21 +746,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -761,39 +774,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +872,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +892,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -828,16 +900,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +984,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -864,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -891,7 +1021,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -902,6 +1032,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -909,8 +1040,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shd index 2a49596e..d96f2aeb 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:18 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-13.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-13.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -508,6 +508,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -531,7 +532,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -542,8 +543,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -554,7 +557,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -562,17 +565,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -580,8 +584,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -589,7 +593,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -600,15 +604,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -616,17 +621,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -634,8 +640,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -654,15 +660,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -681,6 +688,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -702,26 +710,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -729,21 +738,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -756,39 +766,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -796,16 +864,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -816,6 +884,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -823,16 +892,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -843,6 +968,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -850,8 +976,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -859,7 +985,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -870,6 +996,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -877,8 +1004,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -886,7 +1013,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -897,6 +1024,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -904,8 +1032,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shi index d792aef9..448b5926 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-13.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:18 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-13.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-13.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -507,6 +507,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -530,7 +531,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -541,8 +542,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -553,7 +556,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -561,17 +564,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,8 +583,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -588,7 +592,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -599,15 +603,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -615,17 +620,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -633,8 +639,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -653,15 +659,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -680,6 +687,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -701,26 +709,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -728,21 +737,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -755,39 +765,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -795,16 +863,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -815,6 +883,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -822,16 +891,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -842,6 +967,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -849,8 +975,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -858,7 +984,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -869,6 +995,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -876,8 +1003,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -885,7 +1012,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -896,6 +1023,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -903,8 +1031,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shd index 5160021c..56433e39 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:18 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-14.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-14.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -558,6 +558,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -581,7 +582,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -592,8 +593,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -604,7 +607,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -612,17 +615,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -630,8 +634,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -639,7 +643,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -650,15 +654,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -666,17 +671,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -684,8 +690,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -704,15 +710,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -731,6 +738,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -752,26 +760,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -779,21 +788,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -806,39 +816,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -846,16 +914,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -866,6 +934,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -873,16 +942,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -893,6 +1018,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -900,8 +1026,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -909,7 +1035,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -920,6 +1046,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -927,8 +1054,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -936,7 +1063,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -947,6 +1074,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -954,8 +1082,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shi index 896b2747..2b24b99a 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-14.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:18 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-14.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-14.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -557,6 +557,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -580,7 +581,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -591,8 +592,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -603,7 +606,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -611,17 +614,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -629,8 +633,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -638,7 +642,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -649,15 +653,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -665,17 +670,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -683,8 +689,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -703,15 +709,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -730,6 +737,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -751,26 +759,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -778,21 +787,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -805,39 +815,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -845,16 +913,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -865,6 +933,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -872,16 +941,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -892,6 +1017,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -899,8 +1025,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -908,7 +1034,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -919,6 +1045,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -926,8 +1053,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -935,7 +1062,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -946,6 +1073,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -953,8 +1081,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shd index 77b7d36a..9c139f64 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:42 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:00:28 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shi index 2fedc39f..28c285c5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:19 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 08:59:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shd index 2cadf26f..2c3283d9 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:06 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:00:57 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shi index 6513187b..2c4b8959 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:54:43 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:00:28 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shd index 04af6c57..14ea1678 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:19 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:13 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shi index 57fb446e..be8f5422 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15c.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:07 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:00:57 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shd index ca3d0d17..aab19ff8 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:32 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:27 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shi index b0a24cf6..5e2a166e 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15d.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:19 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:13 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=1 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shd index bc9faaaf..9676dea8 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:46 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:44 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shi index fa9c8cf3..a052c2f5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15e.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:32 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:27 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shd index 99c739c2..bab5a98c 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:59 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15f.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15f.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shi index 7adbe6b9..45ba2933 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15f.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:55:46 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15f.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:44 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15f.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=3 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shd index e31f955e..cf61b06f 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:03 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15g.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15g.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,7 +546,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -551,6 +557,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,7 +565,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -585,7 +593,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -594,7 +602,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -605,6 +613,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,7 +621,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -632,6 +641,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -639,7 +649,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -947,6 +1078,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -965,8 +1097,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 - -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 + -1 5 1.000 1.000 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.111 1.000 1.000 1.350 1.111 1.000 1.000 0.000 0.000 1.111 1.000 1.000 + -1 6 1.250 1.250 0.000 0.00 10.00 0.50 0.00 0.00 0.00 0.00 0.000 1.300 1.000 1.000 1.000 1.000 1.000 1.300 0.000 0.000 1.300 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -15312,156 +15444,156 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 2.59743 -4.86672 2.81370828412E12 - 2.15741 -3.47081 2.67685520474E12 - 1.95492 -0.53190 2.54000212537E12 - 2.06107 2.70182 2.403149046E12 - 2.50533 6.23017 2.26629596663E12 - 3.31592 10.01619 2.12944288726E12 - 2.10181 -6.04040 2.12944288726E12 - 1.70353 -1.88651 1.99258980789E12 - 1.73289 2.52474 1.85573672851E12 - 2.21808 7.23003 1.71888364914E12 - 3.18850 12.22922 1.58203056977E12 - 4.67230 17.48552 1.4451774904E12 - 2.72148 8.49465 1.4451774904E12 - 3.85024 14.11808 1.30832441103E12 - 5.55359 19.99843 1.17147133166E12 - 7.85964 26.17232 1.03461825228E12 - 10.79776 32.63969 897765172913.00000 - 14.39606 39.36379 760912093542.00000 - 13.17741 31.82408 760912093542.00000 - 16.71255 38.91487 624059014170.00000 - 20.96899 46.26227 487205934798.00000 - 25.97483 53.90291 350352855427.00000 - 31.75940 61.83674 213499776055.00000 - 38.35078 70.02707 76646696683.40000 - 38.88131 32.36702 76646696683.40000 - 39.43391 33.20561 62961388746.30000 - 39.99492 34.04625 49276080809.10000 - 40.56434 34.88907 35590772871.90000 - 41.14220 35.73408 21905464934.80000 - 41.72852 36.58113 8220156997.61000 - 36.86726 -212.42598 8220156997.61000 - 30.41305 -211.14041 -32835766813.90000 - 23.97220 -211.11246 -73891690625.40000 - 17.53232 -211.07567 -114947614437.00000 - 11.09368 -211.03005 -156003538248.00000 - 4.65655 -210.97561 -197059462060.00000 - 3.74671 -208.00125 -197059462060.00000 - -21.29209 -207.69517 -361283157306.00000 - -46.28568 -207.24784 -525506852552.00000 - -71.21711 -206.65924 -689730547798.00000 - -96.06943 -205.92937 -853954243044.00000 - -120.82570 -205.05825 -1.01817793829E12 - -119.58606 -205.63457 -1.01817793829E12 - -144.28072 -204.17627 -1.18240163354E12 - -168.75292 -202.04804 -1.34662532878E12 - -192.95366 -199.67121 -1.51084902403E12 - -216.85775 -197.10392 -1.67507271927E12 - -240.44258 -194.35232 -1.83929641452E12 - -239.08606 -194.39664 -1.83929641452E12 - -262.31479 -191.44229 -2.00352010976E12 - -285.17806 -188.30363 -2.16774380501E12 - -307.65326 -184.97451 -2.33196750026E12 - -329.71754 -181.45493 -2.4961911955E12 - -351.34829 -177.75104 -2.66041489075E12 - -351.62932 -184.60522 -2.66041489075E12 - -375.93430 -179.03742 -2.84288566324E12 - -399.48460 -173.28458 -3.02535643574E12 - -422.25542 -167.34520 -3.20782720823E12 - -444.22189 -161.21930 -3.39029798073E12 - -465.35921 -154.90840 -3.57276875322E12 - -466.92211 -156.01309 -3.57276875322E12 - -487.21117 -149.51268 -3.75523952572E12 - -506.62122 -142.82731 -3.93771029821E12 - -525.12744 -135.95547 -4.12018107071E12 - -542.70500 -128.89719 -4.3026518432E12 - -559.32908 -121.65396 -4.4851226157E12 - -559.16558 -131.34558 -4.4851226157E12 - -576.24524 -123.91291 -4.66759338819E12 - -592.32158 -116.29533 -4.85006416068E12 - -607.36982 -108.49132 -5.03253493318E12 - -621.36509 -100.50091 -5.21500570567E12 - -634.28262 -92.32559 -5.39747647817E12 - -637.05974 -88.99615 -5.39747647817E12 - -645.69381 -83.66461 -5.53432955754E12 - -653.78840 -78.20503 -5.67118263691E12 - -661.33041 -72.61316 -5.80803571628E12 - -668.30662 -66.88899 -5.94488879565E12 - -674.70394 -61.03678 -6.08174187502E12 - -678.88225 -15.93878 -6.08174187502E12 - -680.17751 -9.94572 -6.21859495439E12 - -680.86713 -3.82462 -6.35544803376E12 - -680.93802 2.42878 -6.49230111313E12 - -680.37696 8.81450 -6.6291541925E12 - -679.17085 15.32825 -6.76600727187E12 - -680.25217 53.72496 -6.76600727187E12 - -674.54924 60.33053 -6.90286035124E12 - -668.18431 66.96604 -7.03971343061E12 - -661.15413 73.63576 -7.17656650998E12 - -653.45526 80.33971 -7.31341958935E12 - -645.08443 87.07359 -7.45027266872E12 - -641.79315 86.07808 -7.45027266872E12 - -630.80803 92.74985 -7.6175375435E12 - -619.14029 97.75901 -7.78480241829E12 - -606.86830 102.63743 -7.95206729307E12 - -594.00805 107.38518 -8.11933216786E12 - -580.57484 112.01863 -8.28659704264E12 - -582.05616 124.45769 -8.28659704264E12 - -566.54617 128.92798 -8.45386191742E12 - -550.49645 133.28410 -8.62112679221E12 - -533.92229 137.50980 -8.78839166699E12 - -516.83962 141.60514 -8.95565654178E12 - -499.26371 145.58644 -9.12292141656E12 - -505.14511 118.78660 -9.12292141656E12 - -490.37514 122.60507 -9.29018629135E12 - -475.14510 126.30960 -9.45745116613E12 - -459.47024 129.88396 -9.62471604091E12 - -443.36647 133.32819 -9.7919809157E12 - -426.84903 136.65858 -9.95924579048E12 - -429.29909 101.76749 -9.95924579048E12 - -416.64136 104.93531 -1.01265106653E13 - -403.60308 107.98938 -1.029377554E13 - -390.19947 110.91347 -1.04610404148E13 - -376.44641 113.70761 -1.06283052896E13 - -362.35913 116.38807 -1.07955701644E13 - -367.07314 114.39265 -1.07955701644E13 - -352.91175 116.91076 -1.09628350392E13 - -338.44921 119.31524 -1.1130099914E13 - -323.70071 121.58990 -1.12973647888E13 - -308.68214 123.73476 -1.14646296635E13 - -293.40869 125.76606 -1.16318945383E13 - -300.28022 101.34662 -1.16318945383E13 - -287.76088 103.21573 -1.17991594131E13 - -275.01971 104.97134 -1.19664242879E13 - -262.07188 106.59725 -1.21336891627E13 - -248.93326 108.09348 -1.23009540375E13 - -235.61903 109.47625 -1.24682189122E13 - -239.93054 87.26522 -1.24682189122E13 - -229.16432 88.48594 -1.2635483787E13 - -218.25550 89.59325 -1.28027486618E13 - -207.21926 90.57095 -1.29700135366E13 - -196.07144 91.41907 -1.31372784114E13 - -184.82722 92.15382 -1.33045432861E13 - -186.28741 85.67288 -1.33045432861E13 - -175.75589 86.24569 -1.34718081609E13 - -165.16094 86.70517 -1.36390730357E13 - -154.51776 87.03512 -1.38063379105E13 - -143.84216 87.23558 -1.39736027853E13 - -133.14931 87.32273 -1.41408676601E13 - -137.71298 151.52098 -1.41408676601E13 - -119.17340 151.44628 -1.43081325348E13 - -100.64955 151.25831 -1.44753974096E13 - -82.15658 150.94089 -1.46426622844E13 - -63.71032 150.49404 -1.48099271592E13 - -45.32593 149.93394 -1.4977192034E13 - -51.66890 157.78335 -1.4977192034E13 - -37.15106 133.43918 -1.51140451133E13 - -24.85777 112.74766 -1.52508981927E13 - -14.55442 93.42315 -1.53877512721E13 - -6.15559 74.57894 -1.55246043515E13 - 0.36744 55.87088 -1.56614574308E13 + 2.59749 -4.86599 2.81370828412E12 + 2.15733 -3.47008 2.67685520474E12 + 1.95472 -0.53117 2.54000212537E12 + 2.06073 2.70256 2.403149046E12 + 2.50485 6.23091 2.26629596663E12 + 3.31531 10.01692 2.12944288726E12 + 2.10187 -6.04187 2.12944288726E12 + 1.70355 -1.88798 1.99258980789E12 + 1.73288 2.52328 1.85573672851E12 + 2.21803 7.22856 1.71888364914E12 + 3.18841 12.22776 1.58203056977E12 + 4.67218 17.48405 1.4451774904E12 + 3.03551 7.23854 1.4451774904E12 + 4.03870 12.86198 1.30832441103E12 + 5.61647 18.74233 1.17147133166E12 + 7.79695 24.91622 1.03461825228E12 + 10.60949 31.38359 897765172913.00000 + 14.08222 38.10769 760912093542.00000 + 13.17748 31.82408 760912093542.00000 + 16.71258 38.91487 624059014170.00000 + 20.96898 46.26227 487205934798.00000 + 25.97478 53.90291 350352855427.00000 + 31.75931 61.83674 213499776055.00000 + 38.35066 70.02707 76646696683.40000 + 38.68502 40.21077 76646696683.40000 + 39.31614 41.04936 62961388746.30000 + 39.95566 41.89000 49276080809.10000 + 40.60360 42.73282 35590772871.90000 + 41.25997 43.57783 21905464934.80000 + 41.92481 44.42488 8220156997.61000 + 37.23775 -217.36348 8220156997.61000 + 30.63536 -216.07791 -32835766813.90000 + 24.04634 -216.04996 -73891690625.40000 + 17.45830 -216.01317 -114947614437.00000 + 10.87149 -215.96755 -156003538248.00000 + 4.28619 -215.91311 -197059462060.00000 + 3.59415 -207.49246 -197059462060.00000 + -21.38363 -207.18639 -361283157306.00000 + -46.31620 -206.73905 -525506852552.00000 + -71.18661 -206.15045 -689730547798.00000 + -95.97792 -205.42059 -853954243044.00000 + -120.67317 -204.54946 -1.01817793829E12 + -119.41168 -206.21611 -1.01817793829E12 + -144.17610 -204.75781 -1.18240163354E12 + -168.71807 -202.62958 -1.34662532878E12 + -192.98857 -200.25275 -1.51084902403E12 + -216.96242 -197.68546 -1.67507271927E12 + -240.61702 -194.93386 -1.83929641452E12 + -238.47568 -196.43107 -1.83929641452E12 + -261.94851 -193.47672 -2.00352010976E12 + -285.05589 -190.33806 -2.16774380501E12 + -307.77521 -187.00894 -2.33196750026E12 + -330.08360 -183.48936 -2.4961911955E12 + -351.95846 -179.78547 -2.66041489075E12 + -351.86452 -183.89795 -2.66041489075E12 + -376.07535 -178.33015 -2.84288566324E12 + -399.53151 -172.57731 -3.02535643574E12 + -422.20818 -166.63793 -3.20782720823E12 + -444.08050 -160.51202 -3.39029798073E12 + -465.12367 -154.20112 -3.57276875322E12 + -467.15731 -155.30680 -3.57276875322E12 + -487.35222 -148.80639 -3.75523952572E12 + -506.66812 -142.12101 -3.93771029821E12 + -525.08020 -135.24918 -4.12018107071E12 + -542.56361 -128.19089 -4.3026518432E12 + -559.09355 -120.94766 -4.4851226157E12 + -560.10732 -128.52112 -4.4851226157E12 + -576.81022 -121.08845 -4.66759338819E12 + -592.50979 -113.47086 -4.85006416068E12 + -607.18127 -105.66686 -5.03253493318E12 + -620.79978 -97.67644 -5.21500570567E12 + -633.34054 -89.50113 -5.39747647817E12 + -637.05919 -88.99737 -5.39747647817E12 + -645.69340 -83.66583 -5.53432955754E12 + -653.78812 -78.20625 -5.67118263691E12 + -661.33026 -72.61438 -5.80803571628E12 + -668.30661 -66.89021 -5.94488879565E12 + -674.70406 -61.03800 -6.08174187502E12 + -678.88366 -15.93219 -6.08174187502E12 + -680.17826 -9.93912 -6.21859495439E12 + -680.86724 -3.81803 -6.35544803376E12 + -680.93748 2.43537 -6.49230111313E12 + -680.37578 8.82109 -6.6291541925E12 + -679.16902 15.33484 -6.76600727187E12 + -680.25065 53.72374 -6.76600727187E12 + -674.54823 60.32931 -6.90286035124E12 + -668.18384 66.96482 -7.03971343061E12 + -661.15418 73.63454 -7.17656650998E12 + -653.45584 80.33849 -7.31341958935E12 + -645.08553 87.07237 -7.45027266872E12 + -640.85928 83.02144 -7.45027266872E12 + -630.24796 89.69321 -7.6175375435E12 + -618.95401 94.70237 -7.78480241829E12 + -607.05583 99.58079 -7.95206729307E12 + -594.56937 104.32854 -8.11933216786E12 + -581.50996 108.96199 -8.28659704264E12 + -579.44163 115.89739 -8.28659704264E12 + -564.97750 120.36768 -8.45386191742E12 + -549.97365 124.72380 -8.62112679221E12 + -534.44536 128.94950 -8.78839166699E12 + -518.40856 133.04483 -8.95565654178E12 + -501.87852 137.02614 -9.12292141656E12 + -509.25424 132.23801 -9.12292141656E12 + -492.84067 136.05648 -9.29018629135E12 + -475.96703 139.76102 -9.45745116613E12 + -458.64856 143.33538 -9.62471604091E12 + -440.90119 146.77961 -9.7919809157E12 + -422.74014 150.11000 -9.95924579048E12 + -426.68260 93.21109 -9.95924579048E12 + -415.07133 96.37892 -1.01265106653E13 + -403.07950 99.43298 -1.029377554E13 + -390.72235 102.35707 -1.04610404148E13 + -378.01574 105.15121 -1.06283052896E13 + -364.97491 107.83167 -1.07955701644E13 + -364.45864 105.83625 -1.07955701644E13 + -351.34330 108.35436 -1.09628350392E13 + -337.92680 110.75885 -1.1130099914E13 + -324.22435 113.03350 -1.12973647888E13 + -310.25182 115.17836 -1.14646296635E13 + -296.02441 117.20967 -1.16318945383E13 + -301.02701 103.79022 -1.16318945383E13 + -288.20921 105.65934 -1.17991594131E13 + -275.16957 107.41495 -1.19664242879E13 + -261.92327 109.04085 -1.21336891627E13 + -248.48618 110.53708 -1.23009540375E13 + -234.87349 111.91985 -1.24682189122E13 + -240.67542 89.70882 -1.24682189122E13 + -229.61110 90.92954 -1.2635483787E13 + -218.40418 92.03685 -1.28027486618E13 + -207.06984 93.01456 -1.29700135366E13 + -195.62393 93.86268 -1.31372784114E13 + -184.08162 94.59743 -1.33045432861E13 + -187.03424 88.11648 -1.33045432861E13 + -176.20423 88.68930 -1.34718081609E13 + -165.31080 89.14877 -1.36390730357E13 + -154.36913 89.47873 -1.38063379105E13 + -143.39504 89.67918 -1.39736027853E13 + -132.40371 89.76633 -1.41408676601E13 + -135.09847 142.96458 -1.41408676601E13 + -117.60416 142.88989 -1.43081325348E13 + -100.12558 142.70192 -1.44753974096E13 + -82.67787 142.38450 -1.46426622844E13 + -65.27688 141.93764 -1.48099271592E13 + -47.93774 141.37754 -1.4977192034E13 + -56.69087 177.87588 -1.4977192034E13 + -40.16375 153.53171 -1.51140451133E13 + -25.86119 132.84019 -1.52508981927E13 + -13.54856 113.51568 -1.53877512721E13 + -3.14045 94.67147 -1.55246043515E13 + 5.39186 75.96341 -1.56614574308E13 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -16512,7 +16644,7 @@ CalculationStatus -41.59956 -48.62774 -3.54962 31.16534 33.48696 2 7 6 1.000 0 0 -430.29760 -127.78602 -65.89568 75.28794 77.65881 3 3 0 1.000 0 0 -679.84743 -192.19809 -80.93263 83.57958 85.01444 3 6 5 1.000 0 0 - -680.93802 -212.42598 -1.56614574308E13 100.00000 100.00000 3 7 6 1.000 0 1 + -680.93748 -217.36348 -1.56614574308E13 100.00000 100.00000 3 7 6 1.000 0 1 -578.64374 -187.31803 -91.84204 79.29142 81.60077 4 3 0 1.000 0 0 -907.23527 -285.05250 -114.40968 88.66530 89.81178 4 6 5 1.000 0 0 [END OF DATA] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shi index 53f2929e..09cad128 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-15g.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:00 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-15g.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:01:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-15g.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=2 DesignEuroCodePartialFactorSet=2 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,7 +545,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -550,6 +556,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,7 +564,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -584,7 +592,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] @@ -593,7 +601,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 @@ -604,6 +612,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,7 +620,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] @@ -631,6 +640,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -638,7 +648,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shd index f115fcb5..68e847ff 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:36 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-16.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:31 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-16.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,8 +565,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,15 +585,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -594,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -632,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shi index 99fee90a..2550fef6 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-16.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:05 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-16.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:04 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-16.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,8 +564,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,15 +584,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -593,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -631,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shd index 28ccfe7a..6b99f1f2 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:38 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:32 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -383,6 +383,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -406,7 +407,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -417,8 +418,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -429,7 +432,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -437,17 +440,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,7 +468,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -475,6 +479,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -491,17 +496,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -529,6 +535,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -556,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -583,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -610,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -637,6 +647,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -647,23 +658,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -673,14 +741,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +759,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,14 +769,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,7 +888,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -772,6 +899,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -846,6 +974,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -864,7 +993,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1534,8 +1663,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -2568,8 +2697,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -3637,7 +3766,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 @@ -4707,7 +4836,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shi index 47b27a7e..2c1603ca 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:38 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:31 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -382,6 +382,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -405,7 +406,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -416,8 +417,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -428,7 +431,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -436,17 +439,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -463,7 +467,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -474,6 +478,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -490,17 +495,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -528,6 +534,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -555,6 +562,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -582,6 +590,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -609,6 +618,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -636,6 +646,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -646,23 +657,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -672,14 +740,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +758,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -699,14 +768,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -733,7 +859,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -760,7 +887,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -771,6 +898,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shd index 382dc572..da4dd5e5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:40 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:33 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -433,6 +433,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -456,7 +457,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -467,8 +468,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -479,7 +482,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -487,17 +490,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -514,7 +518,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -525,6 +529,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -541,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -579,6 +585,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -606,6 +613,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,6 +641,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -660,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -687,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -697,23 +708,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -723,14 +791,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +809,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -750,14 +819,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +893,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -784,7 +910,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -795,6 +921,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -811,7 +938,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -896,6 +1024,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -914,7 +1043,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1615,8 +1744,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -2699,8 +2828,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -3818,7 +3947,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 @@ -4938,7 +5067,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shi index aeeea3e6..d246b270 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:39 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:32 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -432,6 +432,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -455,7 +456,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -466,8 +467,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -478,7 +481,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -486,17 +489,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -513,7 +517,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -524,6 +528,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -540,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -578,6 +584,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -605,6 +612,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -632,6 +640,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -659,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,23 +707,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,14 +790,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -740,6 +808,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,14 +818,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -767,6 +892,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -783,7 +909,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +920,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -810,7 +937,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shd index 5743de50..e94fa8b1 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:41 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:34 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -449,6 +449,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,7 +473,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -483,8 +484,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -495,7 +498,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -503,17 +506,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -530,7 +534,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -541,6 +545,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,17 +562,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,6 +601,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,6 +629,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -649,6 +657,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -676,6 +685,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -703,6 +713,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -713,23 +724,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -739,14 +807,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -757,6 +825,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -766,14 +835,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -784,6 +909,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -800,7 +926,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -811,6 +937,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -827,7 +954,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -838,6 +965,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -912,6 +1040,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -930,7 +1059,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1647,8 +1776,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -2747,8 +2876,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -3882,7 +4011,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 @@ -5018,7 +5147,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shi index 32bce7f2..091fceea 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17c.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:41 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:34 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -448,6 +448,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -471,7 +472,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -482,8 +483,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -494,7 +497,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -502,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -529,7 +533,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -540,6 +544,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -556,17 +561,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,6 +600,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,6 +628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -648,6 +656,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -675,6 +684,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -702,6 +712,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -712,23 +723,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -738,14 +806,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -756,6 +824,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -765,14 +834,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -783,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -799,7 +925,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -810,6 +936,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -826,7 +953,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -837,6 +964,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shd index c6fb0e10..4c3bc367 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:43 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:36 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -449,6 +449,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -472,7 +473,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -483,8 +484,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -495,7 +498,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -503,17 +506,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -530,7 +534,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -541,6 +545,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,17 +562,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -595,6 +601,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -622,6 +629,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -649,6 +657,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -676,6 +685,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -703,6 +713,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -713,23 +724,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -739,14 +807,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -757,6 +825,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -766,14 +835,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -784,6 +909,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -800,7 +926,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -811,6 +937,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -827,7 +954,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -838,6 +965,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -912,6 +1040,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -930,7 +1059,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + -1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1629,8 +1758,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -2693,8 +2822,8 @@ Q max [END OF COLUMN INDICATION] [DATA] -0.81167 70.16400 0.00000 0.00262 0.00000 - -0.83500 70.16400 35.50200 0.02356 0.00156 - -0.85833 70.16400 35.50200 0.06544 0.00433 + -0.83500 70.16400 35.50100 0.02356 0.00156 + -0.85833 70.16400 35.50100 0.06544 0.00433 -0.88167 70.16400 35.50200 0.12826 0.00849 -0.90500 70.16400 35.50200 0.21201 0.01404 -0.91667 70.16400 35.50200 0.26175 0.01733 @@ -3792,7 +3921,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 @@ -4892,7 +5021,7 @@ Q min Q max [END OF COLUMN INDICATION] [DATA] - -0.96100 69.39100 0.00000 0.00214 0.00000 + -0.96100 69.39000 0.00000 0.00214 0.00000 -0.98300 69.39100 36.17400 0.01924 0.00145 -1.00500 69.39100 36.17400 0.05344 0.00404 -1.02700 69.39100 36.17400 0.10475 0.00792 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shi index 04978d89..d3b484c6 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-17d.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:42 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-17d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:35 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-17d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -448,6 +448,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -471,7 +472,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -482,8 +483,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -494,7 +497,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -502,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -529,7 +533,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -540,6 +544,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -556,17 +561,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -594,6 +600,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -621,6 +628,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -648,6 +656,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -675,6 +684,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -702,6 +712,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -712,23 +723,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -738,14 +806,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -756,6 +824,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -765,14 +834,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -783,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -799,7 +925,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -810,6 +936,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -826,7 +953,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -837,6 +964,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shd index 4d57870b..5fa00d6e 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:44 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-18a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:36 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-18a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -538,6 +538,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -561,7 +562,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -572,8 +573,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -584,7 +587,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -592,17 +595,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,7 +623,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -630,6 +634,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -646,17 +651,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -684,6 +690,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -711,6 +718,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -738,6 +746,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -765,6 +774,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -792,6 +802,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -802,23 +813,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -828,14 +896,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -846,6 +914,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -855,14 +924,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -873,6 +998,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -889,7 +1015,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -900,6 +1026,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -916,7 +1043,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -927,6 +1054,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1001,6 +1129,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1019,7 +1148,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shi index e0ece0d2..24df40de 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-18a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:44 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-18a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:36 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-18a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -537,6 +537,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -560,7 +561,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -571,8 +572,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -583,7 +586,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -591,17 +594,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,7 +622,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -629,6 +633,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -645,17 +650,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -683,6 +689,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -710,6 +717,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -737,6 +745,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -764,6 +773,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -791,6 +801,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -801,23 +812,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -827,14 +895,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -845,6 +913,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -854,14 +923,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -872,6 +997,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -888,7 +1014,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -899,6 +1025,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -915,7 +1042,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -926,6 +1053,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shd index 40c8ead7..81fee6cf 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:45 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-18b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:37 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-18b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -554,6 +554,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -577,7 +578,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -588,8 +589,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -600,7 +603,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -608,17 +611,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -635,7 +639,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -646,6 +650,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -662,17 +667,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -700,6 +706,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -727,6 +734,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -754,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -781,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -808,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -818,23 +829,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -844,14 +912,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -862,6 +930,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -871,14 +940,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -889,6 +1014,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -905,7 +1031,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -916,6 +1042,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -932,7 +1059,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -943,6 +1070,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1017,6 +1145,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -1035,7 +1164,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 + -1 9 1.150 1.150 1.300 0.00 10.00 0.50 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.350 0.900 1.215 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shi index 534177a5..4e73d1b7 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-18b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:45 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-18b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:36 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-18b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -553,6 +553,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -576,7 +577,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -587,8 +588,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=1 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -599,7 +602,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -607,17 +610,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -634,7 +638,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -645,6 +649,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -661,17 +666,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -699,6 +705,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -726,6 +733,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -753,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -780,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -817,23 +828,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -843,14 +911,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -861,6 +929,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -870,14 +939,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -888,6 +1013,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -904,7 +1030,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +1041,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -931,7 +1058,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1069,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shd index b4256a93..e7cf51f7 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:46 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-19.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:37 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-19.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -607,6 +607,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -630,7 +631,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -641,8 +642,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -653,7 +656,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -661,17 +664,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -679,8 +683,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -688,7 +692,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -699,15 +703,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -715,17 +720,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -733,8 +739,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -753,15 +759,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -780,6 +787,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -807,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -820,7 +829,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -834,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -861,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -871,23 +882,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -895,16 +963,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -915,6 +983,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -922,16 +991,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -942,6 +1067,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -949,7 +1075,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -958,7 +1084,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -969,6 +1095,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -976,7 +1103,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -985,7 +1112,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -996,6 +1123,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1003,7 +1131,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shi index 7b6c9f47..4f02a6cf 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-19.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 10:56:46 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-19.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:02:37 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-19.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -606,6 +606,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -629,7 +630,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -640,8 +641,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -652,7 +655,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -660,17 +663,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,8 +682,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -687,7 +691,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -698,15 +702,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -714,17 +719,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -732,8 +738,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -752,15 +758,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -779,6 +786,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -806,6 +814,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -819,7 +828,7 @@ VerticalBalanceGammaMb=1.200 [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -833,6 +842,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -860,6 +870,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -870,23 +881,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -894,16 +962,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -914,6 +982,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -921,16 +990,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -941,6 +1066,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -948,7 +1074,7 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] @@ -957,7 +1083,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -968,6 +1094,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -975,7 +1102,7 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] @@ -984,7 +1111,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -995,6 +1122,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -1002,7 +1130,7 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 +FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shd index fcb54c9b..91525439 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:00 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:08:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -292,6 +292,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,6 +302,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +326,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +337,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -347,7 +351,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -355,17 +359,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,7 +387,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -393,6 +398,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,8 +444,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -447,6 +454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +482,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +510,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,23 +577,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,14 +660,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -609,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,14 +688,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -636,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -652,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -679,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +891,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,8 +910,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1197,7 +1327,7 @@ Status character 1.98974 3.06563 40.85933 3.56094 1 0 A 1.98974 3.06563 40.85933 3.56094 1 0 A 2.06997 3.37219 42.50697 3.70453 1 0 A - 2.15021 3.67875 44.15461 3.84813 1 0 A + 2.15021 3.67875 44.15461 3.84812 1 0 A 2.23044 3.98531 45.80226 3.99172 1 0 A 2.31068 4.29188 47.44990 4.13531 1 0 A 2.39091 4.59844 49.09754 4.27891 1 0 A @@ -1479,7 +1609,7 @@ Status character 11.58973 20.02875 41.74023 3.63771 110 28 - 11.58973 20.02875 41.74023 3.63771 110 28 - 10.22141 20.33940 43.40984 3.78322 110 24 - - 9.03451 20.65005 45.07945 3.92873 110 20 - + 9.03451 20.65005 45.07945 3.92872 110 20 - 8.02328 20.96070 46.74905 4.07423 110 17 - 7.18200 21.27135 48.41866 4.21974 110 15 - 6.50492 21.58200 50.08827 4.36525 110 13 - @@ -1493,7 +1623,7 @@ Status character 4.97378 23.44590 60.10593 5.23830 110 0 - 5.03467 23.75655 61.77554 5.38381 110 0 - 5.15843 24.06720 63.44514 5.52932 110 0 - - 5.33677 24.37785 65.11475 5.67483 110 0 - + 5.33677 24.37785 65.11475 5.67482 110 0 - 5.56139 24.68850 66.78436 5.82033 110 0 - 5.56139 24.68850 66.78436 5.82033 110 0 - 5.82556 24.99915 68.45397 5.96584 110 0 - @@ -2001,7 +2131,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -2246,7 +2376,7 @@ Status character 39.90574 20.02875 41.74023 3.63771 110 96 - 39.90574 20.02875 41.74023 3.63771 110 96 - 34.83142 20.33940 43.40984 3.78322 110 80 - - 30.18974 20.65005 45.07945 3.92873 110 67 - + 30.18974 20.65005 45.07945 3.92872 110 67 - 25.98878 20.96070 46.74905 4.07423 110 56 - 22.23662 21.27135 48.41866 4.21974 110 46 - 18.94134 21.58200 50.08827 4.36525 110 38 - @@ -2260,7 +2390,7 @@ Status character 6.62285 23.44590 60.10593 5.23830 110 11 - 5.59449 23.75655 61.77554 5.38381 110 9 - 4.79011 24.06720 63.44514 5.52932 110 0 - - 4.19345 24.37785 65.11475 5.67483 110 0 - + 4.19345 24.37785 65.11475 5.67482 110 0 - 3.78825 24.68850 66.78436 5.82033 110 0 - 3.78825 24.68850 66.78436 5.82033 110 0 - 3.54933 24.99915 68.45397 5.96584 110 0 - @@ -2717,7 +2847,7 @@ Status character 1.98974 3.06563 40.85933 3.56094 1 0 A 1.98974 3.06563 40.85933 3.56094 1 0 A 2.06997 3.37219 42.50697 3.70453 1 0 A - 2.15021 3.67875 44.15461 3.84813 1 0 A + 2.15021 3.67875 44.15461 3.84812 1 0 A 2.23044 3.98531 45.80226 3.99172 1 0 A 2.31068 4.29188 47.44990 4.13531 1 0 A 2.39091 4.59844 49.09754 4.27891 1 0 A @@ -2999,7 +3129,7 @@ Status character 11.58973 20.02875 41.74023 3.63771 110 28 - 11.58973 20.02875 41.74023 3.63771 110 28 - 10.22141 20.33940 43.40984 3.78322 110 24 - - 9.03451 20.65005 45.07945 3.92873 110 20 - + 9.03451 20.65005 45.07945 3.92872 110 20 - 8.02328 20.96070 46.74905 4.07423 110 17 - 7.18200 21.27135 48.41866 4.21974 110 15 - 6.50492 21.58200 50.08827 4.36525 110 13 - @@ -3013,7 +3143,7 @@ Status character 4.97378 23.44590 60.10593 5.23830 110 0 - 5.03467 23.75655 61.77554 5.38381 110 0 - 5.15843 24.06720 63.44514 5.52932 110 0 - - 5.33677 24.37785 65.11475 5.67483 110 0 - + 5.33677 24.37785 65.11475 5.67482 110 0 - 5.56139 24.68850 66.78436 5.82033 110 0 - 5.56139 24.68850 66.78436 5.82033 110 0 - 5.82556 24.99915 68.45397 5.96584 110 0 - @@ -3521,7 +3651,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -3766,7 +3896,7 @@ Status character 39.90574 20.02875 41.74023 3.63771 110 96 - 39.90574 20.02875 41.74023 3.63771 110 96 - 34.83142 20.33940 43.40984 3.78322 110 80 - - 30.18974 20.65005 45.07945 3.92873 110 67 - + 30.18974 20.65005 45.07945 3.92872 110 67 - 25.98878 20.96070 46.74905 4.07423 110 56 - 22.23662 21.27135 48.41866 4.21974 110 46 - 18.94134 21.58200 50.08827 4.36525 110 38 - @@ -3780,7 +3910,7 @@ Status character 6.62285 23.44590 60.10593 5.23830 110 11 - 5.59449 23.75655 61.77554 5.38381 110 9 - 4.79011 24.06720 63.44514 5.52932 110 0 - - 4.19345 24.37785 65.11475 5.67483 110 0 - + 4.19345 24.37785 65.11475 5.67482 110 0 - 3.78825 24.68850 66.78436 5.82033 110 0 - 3.78825 24.68850 66.78436 5.82033 110 0 - 3.54933 24.99915 68.45397 5.96584 110 0 - diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shi index 4c2ad8d1..776f36b8 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:04:59 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:08:59 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,6 +301,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +336,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +358,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,7 +386,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,8 +443,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,23 +576,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,14 +659,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,14 +687,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -651,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -678,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shd index d6f098d8..323b3d88 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:00 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -292,6 +292,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,6 +302,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +326,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +337,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -347,7 +351,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -355,17 +359,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,7 +387,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -393,6 +398,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,8 +444,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -447,6 +454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +482,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +510,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,23 +577,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,14 +660,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -609,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,14 +688,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -636,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -652,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -679,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +891,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,7 +910,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1249,7 +1379,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -1494,7 +1624,7 @@ Status character 35.21625 20.02875 41.74023 3.63771 110 84 - 35.21625 20.02875 41.74023 3.63771 110 84 - 31.13477 20.33940 43.40984 3.78322 110 72 - - 27.38243 20.65005 45.07945 3.92873 110 61 - + 27.38243 20.65005 45.07945 3.92872 110 61 - 23.96761 20.96070 46.74905 4.07423 110 51 - 20.89868 21.27135 48.41866 4.21974 110 43 - 18.18403 21.58200 50.08827 4.36525 110 36 - @@ -1508,7 +1638,7 @@ Status character 7.70142 23.44590 60.10593 5.23830 110 13 - 6.76535 23.75655 61.77554 5.38381 110 11 - 6.00981 24.06720 63.44514 5.52932 110 9 - - 5.42395 24.37785 65.11475 5.67483 110 0 - + 5.42395 24.37785 65.11475 5.67482 110 0 - 4.99688 24.68850 66.78436 5.82033 110 0 - 4.99688 24.68850 66.78436 5.82033 110 0 - 4.70841 24.99915 68.45397 5.96584 110 0 - @@ -2018,7 +2148,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -2263,7 +2393,7 @@ Status character 35.21625 20.02875 41.74023 3.63771 110 84 - 35.21625 20.02875 41.74023 3.63771 110 84 - 31.13477 20.33940 43.40984 3.78322 110 72 - - 27.38243 20.65005 45.07945 3.92873 110 61 - + 27.38243 20.65005 45.07945 3.92872 110 61 - 23.96761 20.96070 46.74905 4.07423 110 51 - 20.89868 21.27135 48.41866 4.21974 110 43 - 18.18403 21.58200 50.08827 4.36525 110 36 - @@ -2277,7 +2407,7 @@ Status character 7.70142 23.44590 60.10593 5.23830 110 13 - 6.76535 23.75655 61.77554 5.38381 110 11 - 6.00981 24.06720 63.44514 5.52932 110 9 - - 5.42395 24.37785 65.11475 5.67483 110 0 - + 5.42395 24.37785 65.11475 5.67482 110 0 - 4.99688 24.68850 66.78436 5.82033 110 0 - 4.99688 24.68850 66.78436 5.82033 110 0 - 4.70841 24.99915 68.45397 5.96584 110 0 - diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shi index 599ebc6b..44de2106 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:00 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,6 +301,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +336,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +358,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,7 +386,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,8 +443,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,23 +576,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,14 +659,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,14 +687,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -651,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -678,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shd index bb4ef6c1..eb9aa7e6 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:01 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -292,6 +292,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,6 +302,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +326,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +337,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -347,7 +351,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -355,17 +359,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,7 +387,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -393,6 +398,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,8 +444,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -447,6 +454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +482,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +510,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,23 +577,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,14 +660,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -609,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,14 +688,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -636,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -652,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -679,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +891,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,8 +910,8 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1197,7 +1327,7 @@ Status character 1.98974 3.06563 40.85933 3.56094 1 0 A 1.98974 3.06563 40.85933 3.56094 1 0 A 2.06997 3.37219 42.50697 3.70453 1 0 A - 2.15021 3.67875 44.15461 3.84813 1 0 A + 2.15021 3.67875 44.15461 3.84812 1 0 A 2.23044 3.98531 45.80226 3.99172 1 0 A 2.31068 4.29188 47.44990 4.13531 1 0 A 2.39091 4.59844 49.09754 4.27891 1 0 A @@ -1479,7 +1609,7 @@ Status character 12.45758 20.02875 41.74023 3.63771 110 30 - 12.45758 20.02875 41.74023 3.63771 110 30 - 12.03344 20.33940 43.40984 3.78322 110 28 - - 11.63443 20.65005 45.07945 3.92873 110 26 - + 11.63443 20.65005 45.07945 3.92872 110 26 - 11.26282 20.96070 46.74905 4.07423 110 24 - 10.92089 21.27135 48.41866 4.21974 110 23 - 10.61091 21.58200 50.08827 4.36525 110 21 - @@ -1493,7 +1623,7 @@ Status character 9.25121 23.44590 60.10593 5.23830 110 15 - 9.09784 23.75655 61.77554 5.38381 110 15 - 8.96129 24.06720 63.44514 5.52932 110 14 - - 8.84212 24.37785 65.11475 5.67483 110 14 - + 8.84212 24.37785 65.11475 5.67482 110 14 - 8.74090 24.68850 66.78436 5.82033 110 13 - 8.74090 24.68850 66.78436 5.82033 110 13 - 8.65422 24.99915 68.45397 5.96584 110 13 - @@ -2001,7 +2131,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -2246,7 +2376,7 @@ Status character 24.02848 20.02875 41.74023 3.63771 110 58 - 24.02848 20.02875 41.74023 3.63771 110 58 - 22.77526 20.33940 43.40984 3.78322 110 52 - - 21.57071 20.65005 45.07945 3.92873 110 48 - + 21.57071 20.65005 45.07945 3.92872 110 48 - 20.42138 20.96070 46.74905 4.07423 110 44 - 19.33378 21.27135 48.41866 4.21974 110 40 - 18.31446 21.58200 50.08827 4.36525 110 37 - @@ -2260,7 +2390,7 @@ Status character 13.24600 23.44590 60.10593 5.23830 110 22 - 12.55780 23.75655 61.77554 5.38381 110 20 - 11.90587 24.06720 63.44514 5.52932 110 19 - - 11.29282 24.37785 65.11475 5.67483 110 17 - + 11.29282 24.37785 65.11475 5.67482 110 17 - 10.72124 24.68850 66.78436 5.82033 110 16 - 10.72124 24.68850 66.78436 5.82033 110 16 - 10.18223 24.99915 68.45397 5.96584 110 15 - @@ -2717,7 +2847,7 @@ Status character 1.98974 3.06563 40.85933 3.56094 1 0 A 1.98974 3.06563 40.85933 3.56094 1 0 A 2.06997 3.37219 42.50697 3.70453 1 0 A - 2.15021 3.67875 44.15461 3.84813 1 0 A + 2.15021 3.67875 44.15461 3.84812 1 0 A 2.23044 3.98531 45.80226 3.99172 1 0 A 2.31068 4.29188 47.44990 4.13531 1 0 A 2.39091 4.59844 49.09754 4.27891 1 0 A @@ -2999,7 +3129,7 @@ Status character 12.45758 20.02875 41.74023 3.63771 110 30 - 12.45758 20.02875 41.74023 3.63771 110 30 - 12.03344 20.33940 43.40984 3.78322 110 28 - - 11.63443 20.65005 45.07945 3.92873 110 26 - + 11.63443 20.65005 45.07945 3.92872 110 26 - 11.26282 20.96070 46.74905 4.07423 110 24 - 10.92089 21.27135 48.41866 4.21974 110 23 - 10.61091 21.58200 50.08827 4.36525 110 21 - @@ -3013,7 +3143,7 @@ Status character 9.25121 23.44590 60.10593 5.23830 110 15 - 9.09784 23.75655 61.77554 5.38381 110 15 - 8.96129 24.06720 63.44514 5.52932 110 14 - - 8.84212 24.37785 65.11475 5.67483 110 14 - + 8.84212 24.37785 65.11475 5.67482 110 14 - 8.74090 24.68850 66.78436 5.82033 110 13 - 8.74090 24.68850 66.78436 5.82033 110 13 - 8.65422 24.99915 68.45397 5.96584 110 13 - @@ -3521,7 +3651,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -3766,7 +3896,7 @@ Status character 24.02848 20.02875 41.74023 3.63771 110 58 - 24.02848 20.02875 41.74023 3.63771 110 58 - 22.77526 20.33940 43.40984 3.78322 110 52 - - 21.57071 20.65005 45.07945 3.92873 110 48 - + 21.57071 20.65005 45.07945 3.92872 110 48 - 20.42138 20.96070 46.74905 4.07423 110 44 - 19.33378 21.27135 48.41866 4.21974 110 40 - 18.31446 21.58200 50.08827 4.36525 110 37 - @@ -3780,7 +3910,7 @@ Status character 13.24600 23.44590 60.10593 5.23830 110 22 - 12.55780 23.75655 61.77554 5.38381 110 20 - 11.90587 24.06720 63.44514 5.52932 110 19 - - 11.29282 24.37785 65.11475 5.67483 110 17 - + 11.29282 24.37785 65.11475 5.67482 110 17 - 10.72124 24.68850 66.78436 5.82033 110 16 - 10.72124 24.68850 66.78436 5.82033 110 16 - 10.18223 24.99915 68.45397 5.96584 110 15 - diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shi index ffb86882..81f2458f 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22c.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:01 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,6 +301,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +336,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +358,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,7 +386,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,8 +443,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,23 +576,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,14 +659,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,14 +687,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -651,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -678,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shd index 11c89fff..16ae66a5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:02 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -292,6 +292,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,6 +302,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +326,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +337,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -347,7 +351,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -355,17 +359,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,7 +387,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -393,6 +398,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,8 +444,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -447,6 +454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +482,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +510,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,23 +577,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,14 +660,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -609,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,14 +688,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -636,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -652,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -679,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +891,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,7 +910,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1249,7 +1379,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -1494,7 +1624,7 @@ Status character 23.70992 20.02875 41.74023 3.63771 110 57 - 23.70992 20.02875 41.74023 3.63771 110 57 - 22.59201 20.33940 43.40984 3.78322 110 52 - - 21.50966 20.65005 45.07945 3.92873 110 48 - + 21.50966 20.65005 45.07945 3.92872 110 48 - 20.46913 20.96070 46.74905 4.07423 110 44 - 19.47670 21.27135 48.41866 4.21974 110 40 - 18.53861 21.58200 50.08827 4.36525 110 37 - @@ -1508,7 +1638,7 @@ Status character 13.71337 23.44590 60.10593 5.23830 110 23 - 13.02975 23.75655 61.77554 5.38381 110 21 - 12.37378 24.06720 63.44514 5.52932 110 20 - - 11.74868 24.37785 65.11475 5.67483 110 18 - + 11.74868 24.37785 65.11475 5.67482 110 18 - 11.15764 24.68850 66.78436 5.82033 110 17 - 11.15764 24.68850 66.78436 5.82033 110 17 - 10.59208 24.99915 68.45397 5.96584 110 15 - @@ -2018,7 +2148,7 @@ Status character 5.79372 12.26250 118.97435 10.36875 1 0 A 5.87502 12.57315 120.64396 10.51426 1 0 A 5.95633 12.88380 122.31357 10.65977 1 0 A - 6.03763 13.19445 123.98318 10.80528 1 0 A + 6.03763 13.19445 123.98318 10.80527 1 0 A 6.11894 13.50510 125.65278 10.95078 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A 6.20024 13.81575 127.32239 11.09629 1 0 A @@ -2263,7 +2393,7 @@ Status character 23.70992 20.02875 41.74023 3.63771 110 57 - 23.70992 20.02875 41.74023 3.63771 110 57 - 22.59201 20.33940 43.40984 3.78322 110 52 - - 21.50966 20.65005 45.07945 3.92873 110 48 - + 21.50966 20.65005 45.07945 3.92872 110 48 - 20.46913 20.96070 46.74905 4.07423 110 44 - 19.47670 21.27135 48.41866 4.21974 110 40 - 18.53861 21.58200 50.08827 4.36525 110 37 - @@ -2277,7 +2407,7 @@ Status character 13.71337 23.44590 60.10593 5.23830 110 23 - 13.02975 23.75655 61.77554 5.38381 110 21 - 12.37378 24.06720 63.44514 5.52932 110 20 - - 11.74868 24.37785 65.11475 5.67483 110 18 - + 11.74868 24.37785 65.11475 5.67482 110 18 - 11.15764 24.68850 66.78436 5.82033 110 17 - 11.15764 24.68850 66.78436 5.82033 110 17 - 10.59208 24.99915 68.45397 5.96584 110 15 - diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shi index 28a1ac33..89f97716 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22d.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:02 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,6 +301,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +336,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +358,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,7 +386,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,8 +443,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,23 +576,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,14 +659,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,14 +687,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -651,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -678,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shd index 46ae5605..06697108 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:02 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22e.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22e.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -292,6 +292,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -301,6 +302,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -324,7 +326,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -335,8 +337,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -347,7 +351,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -355,17 +359,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -382,7 +387,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -393,6 +398,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -409,17 +415,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -437,8 +444,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -447,6 +454,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -474,6 +482,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -501,6 +510,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -528,6 +538,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +566,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -565,23 +577,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -591,14 +660,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -609,6 +678,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -618,14 +688,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -636,6 +762,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -652,7 +779,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +790,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -679,7 +807,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +818,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -762,6 +891,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -780,7 +910,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -1494,7 +1624,7 @@ Status character 16.05424 20.02875 41.74023 3.63771 110 38 - 16.05424 20.02875 41.74023 3.63771 110 38 - 15.39916 20.33940 43.40984 3.78322 110 35 - - 14.77349 20.65005 45.07945 3.92873 110 33 - + 14.77349 20.65005 45.07945 3.92872 110 33 - 14.18078 20.96070 46.74905 4.07423 110 30 - 13.62461 21.27135 48.41866 4.21974 110 28 - 13.10856 21.58200 50.08827 4.36525 110 26 - @@ -1508,7 +1638,7 @@ Status character 10.62752 23.44590 60.10593 5.23830 110 18 - 10.30521 23.75655 61.77554 5.38381 110 17 - 10.00389 24.06720 63.44514 5.52932 110 16 - - 9.72491 24.37785 65.11475 5.67483 110 15 - + 9.72491 24.37785 65.11475 5.67482 110 15 - 9.46964 24.68850 66.78436 5.82033 110 14 - 9.46964 24.68850 66.78436 5.82033 110 14 - 9.23300 24.99915 68.45397 5.96584 110 13 - @@ -2263,7 +2393,7 @@ Status character 16.05424 20.02875 41.74023 3.63771 110 38 - 16.05424 20.02875 41.74023 3.63771 110 38 - 15.39916 20.33940 43.40984 3.78322 110 35 - - 14.77349 20.65005 45.07945 3.92873 110 33 - + 14.77349 20.65005 45.07945 3.92872 110 33 - 14.18078 20.96070 46.74905 4.07423 110 30 - 13.62461 21.27135 48.41866 4.21974 110 28 - 13.10856 21.58200 50.08827 4.36525 110 26 - @@ -2277,7 +2407,7 @@ Status character 10.62752 23.44590 60.10593 5.23830 110 18 - 10.30521 23.75655 61.77554 5.38381 110 17 - 10.00389 24.06720 63.44514 5.52932 110 16 - - 9.72491 24.37785 65.11475 5.67483 110 15 - + 9.72491 24.37785 65.11475 5.67482 110 15 - 9.46964 24.68850 66.78436 5.82033 110 14 - 9.46964 24.68850 66.78436 5.82033 110 14 - 9.23300 24.99915 68.45397 5.96584 110 13 - diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shi index e136fb45..12f8704c 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-22e.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:02 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-22e.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:00 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-22e.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -291,6 +291,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -300,6 +301,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -323,7 +325,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -334,8 +336,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -346,7 +350,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -354,17 +358,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -381,7 +386,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -392,6 +397,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -408,17 +414,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -436,8 +443,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -446,6 +453,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -473,6 +481,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -500,6 +509,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -527,6 +537,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -554,6 +565,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -564,23 +576,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -590,14 +659,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -608,6 +677,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -617,14 +687,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -635,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -651,7 +778,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -662,6 +789,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -678,7 +806,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -689,6 +817,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shd index 161d70af..80cbe464 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:03 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-23.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:01 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-23.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -343,6 +343,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -352,6 +353,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -361,6 +363,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -384,7 +387,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -395,8 +398,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -407,7 +412,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -415,17 +420,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -442,7 +448,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -453,6 +459,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -469,17 +476,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -497,8 +505,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -507,6 +515,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -534,6 +543,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -561,6 +571,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -588,6 +599,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -615,6 +627,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -625,23 +638,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -651,14 +721,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -669,6 +739,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -678,14 +749,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -696,6 +823,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -712,7 +840,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -723,6 +851,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -739,7 +868,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -750,6 +879,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -822,6 +952,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -840,9 +971,9 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 - 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 1 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 2 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 + 3 14 1.000 1.050 1.300 0.00 10.00 0.50 0.00 0.05 0.15 0.15 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] @@ -5820,10 +5951,10 @@ Is favorable (0=false, 1=true) 1 : IsPassiveSideRelevant [END OF PASSIVE SIDE DATA] [SOIL COLLAPSE DATA] - 29.57 : Percentage mobilized resistance left + 29.56 : Percentage mobilized resistance left 10.91 : Percentage mobilized resistance right - 99.78 : Effective left - 63.27 : Effective right + 99.75 : Effective left + 63.26 : Effective right 88.60 : Water pressure left 125.09 : Water pressure right 337.45 : Max effective resistance left @@ -5850,156 +5981,156 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -21.12647 - 0.00192 0.08749 -20.76845 - 0.00806 0.18742 -20.41043 - 0.01898 0.29978 -20.05243 - 0.03523 0.42457 -19.69447 - 0.05737 0.56180 -19.33656 - 0.05737 0.56180 -19.33656 - 0.08598 0.71147 -18.97872 - 0.12159 0.87357 -18.62101 - 0.16478 1.04810 -18.26350 - 0.21611 1.23507 -17.90625 - 0.27613 1.43448 -17.54933 - 0.27613 1.43448 -17.54933 - 0.29070 1.48079 -17.47007 - 0.30575 1.52834 -17.39082 - 0.32127 1.57714 -17.31160 - 0.33729 1.62718 -17.23241 - 0.35382 1.67845 -17.15324 - 0.35382 1.67845 -17.15324 - 0.40657 1.83973 -16.91589 - 0.46432 2.01217 -16.67882 - 0.52741 2.19578 -16.44206 - 0.59617 2.39055 -16.20566 - 0.67095 2.59649 -15.96967 - 0.67095 2.59649 -15.96967 - 0.75208 2.81360 -15.73412 - 0.83988 3.04187 -15.49908 - 0.93470 3.28131 -15.26461 - 1.03687 3.53192 -15.03077 - 1.14673 3.79369 -14.79764 - 1.14673 3.79369 -14.79764 - 1.20857 3.93787 -14.67361 - 1.27275 4.08522 -14.54981 - 1.33932 4.23576 -14.42626 - 1.40832 4.38946 -14.30296 - 1.47980 4.54634 -14.17994 - 1.47980 4.56113 -14.17994 - 1.68937 4.94911 -13.83938 - 1.91392 5.24148 -13.50675 - 2.14922 5.43823 -13.17878 - 2.39108 5.53937 -12.85220 - 2.63528 5.54488 -12.52375 - 2.63528 5.55246 -12.52375 - 2.80120 5.50139 -12.30435 - 2.96492 5.40588 -12.08683 - 3.12511 5.26592 -11.87131 - 3.28043 5.08151 -11.65790 - 3.42956 4.85264 -11.44671 - 3.42975 4.84844 -11.44671 - 3.66122 4.40053 -11.09994 - 3.86908 3.90932 -10.76004 - 4.05216 3.41814 -10.42735 - 4.21136 2.95439 -10.10222 - 4.34804 2.51734 -9.78499 - 4.34795 2.51647 -9.78499 - 4.46339 2.10534 -9.47596 - 4.55891 1.71934 -9.17530 - 4.63573 1.35765 -8.88316 - 4.69506 1.01944 -8.59968 - 4.73805 0.70389 -8.32500 - 4.73805 0.70424 -8.32500 - 4.76583 0.41048 -8.05925 - 4.77945 0.13766 -7.80243 - 4.77993 -0.11509 -7.55456 - 4.76826 -0.34861 -7.31562 - 4.74538 -0.56378 -7.08563 - 4.74538 -0.56343 -7.08563 - 4.71219 -0.76110 -6.86456 - 4.66954 -0.94212 -6.65232 - 4.61824 -1.10735 -6.44883 - 4.55906 -1.25761 -6.25398 - 4.49272 -1.39373 -6.06768 - 4.49272 -1.39339 -6.06768 - 4.41992 -1.51620 -5.88982 - 4.34131 -1.62648 -5.72025 - 4.25747 -1.72504 -5.55881 - 4.16899 -1.81264 -5.40535 - 4.07638 -1.89005 -5.25970 - 4.07638 -1.88974 -5.25970 - 3.98015 -1.95770 -5.12170 - 3.88075 -2.01694 -4.99117 - 3.77859 -2.06816 -4.86791 - 3.67406 -2.11206 -4.75173 - 3.56750 -2.14930 -4.64244 - 3.56750 -2.14903 -4.64244 - 3.45924 -2.18027 -4.53984 - 3.34956 -2.20615 -4.44373 - 3.23871 -2.22727 -4.35390 - 3.12690 -2.24423 -4.27013 - 3.01434 -2.25761 -4.19224 - 3.01435 -2.25740 -4.19224 - 2.90121 -2.26775 -4.11999 - 2.78761 -2.27560 -4.05318 - 2.67368 -2.28146 -3.99161 - 2.55949 -2.28582 -3.93504 - 2.44519 -2.28498 -3.88327 - 2.44517 -2.28550 -3.88327 - 2.33110 -2.27555 -3.83609 - 2.21776 -2.25694 -3.79327 - 2.10554 -2.23050 -3.75462 - 1.99482 -2.19700 -3.71992 - 1.88594 -2.15719 -3.68895 - 1.88594 -2.15691 -3.68895 - 1.77921 -2.11149 -3.66152 - 1.67488 -2.06111 -3.63743 - 1.57317 -2.00640 -3.61648 - 1.47430 -1.94794 -3.59848 - 1.37843 -1.88629 -3.58325 - 1.37843 -1.88609 -3.58325 - 1.28573 -1.82176 -3.57059 - 1.19629 -1.75522 -3.56035 - 1.11023 -1.68694 -3.55235 - 1.02762 -1.61731 -3.54644 - 0.94852 -1.54674 -3.54246 - 0.94852 -1.54659 -3.54246 - 0.87297 -1.47542 -3.54025 - 0.80098 -1.40398 -3.53968 - 0.73257 -1.33258 -3.54061 - 0.66772 -1.26149 -3.54292 - 0.60641 -1.19096 -3.54648 - 0.60641 -1.19087 -3.54648 - 0.54861 -1.12114 -3.55118 - 0.49428 -1.05240 -3.55690 - 0.44335 -0.98486 -3.56355 - 0.39577 -0.91868 -3.57104 - 0.35146 -0.85401 -3.57927 - 0.35146 -0.85396 -3.57927 - 0.31035 -0.79093 -3.58816 - 0.27234 -0.72967 -3.59762 - 0.23735 -0.67028 -3.60760 - 0.20528 -0.61285 -3.61803 - 0.17603 -0.55747 -3.62885 - 0.17603 -0.55744 -3.62885 - 0.14950 -0.50417 -3.63999 - 0.12558 -0.45306 -3.65141 - 0.10416 -0.40417 -3.66306 - 0.08512 -0.35755 -3.67492 - 0.06836 -0.31322 -3.68694 - 0.06836 -0.31321 -3.68694 - 0.05376 -0.27120 -3.69908 - 0.04120 -0.23154 -3.71132 - 0.03057 -0.19424 -3.72364 - 0.02174 -0.15931 -3.73602 - 0.01460 -0.12677 -3.74845 - 0.01460 -0.12677 -3.74845 - 0.00902 -0.09662 -3.76089 - 0.00490 -0.06887 -3.77335 - 0.00210 -0.04351 -3.78583 - 0.00050 -0.02056 -3.79831 - 0.00000 0.00000 -3.81079 + 0.00000 0.00000 -21.07342 + 0.00192 0.08749 -20.71642 + 0.00806 0.18742 -20.35942 + 0.01898 0.29978 -20.00245 + 0.03523 0.42457 -19.64551 + 0.05737 0.56180 -19.28862 + 0.05737 0.56180 -19.28862 + 0.08598 0.71147 -18.93181 + 0.12159 0.87357 -18.57513 + 0.16478 1.04810 -18.21864 + 0.21611 1.23507 -17.86241 + 0.27613 1.43448 -17.50652 + 0.27613 1.43448 -17.50652 + 0.29070 1.48079 -17.42748 + 0.30575 1.52834 -17.34847 + 0.32127 1.57714 -17.26947 + 0.33729 1.62718 -17.19051 + 0.35382 1.67845 -17.11156 + 0.35382 1.67845 -17.11156 + 0.40657 1.83973 -16.87490 + 0.46432 2.01217 -16.63851 + 0.52741 2.19578 -16.40243 + 0.59617 2.39055 -16.16672 + 0.67095 2.59649 -15.93140 + 0.67095 2.59649 -15.93140 + 0.75208 2.81360 -15.69654 + 0.83988 3.04187 -15.46218 + 0.93470 3.28131 -15.22839 + 1.03687 3.53192 -14.99524 + 1.14673 3.79369 -14.76279 + 1.14673 3.79369 -14.76279 + 1.20857 3.93787 -14.63912 + 1.27275 4.08522 -14.51569 + 1.33932 4.23576 -14.39250 + 1.40832 4.38946 -14.26957 + 1.47980 4.54634 -14.14691 + 1.47980 4.54634 -14.14691 + 1.68872 4.93433 -13.81110 + 1.91262 5.22670 -13.47773 + 2.14727 5.42345 -13.14716 + 2.38848 5.52458 -12.81971 + 2.63203 5.53010 -12.49573 + 2.63203 5.53010 -12.49573 + 2.79728 5.47904 -12.27700 + 2.96033 5.38352 -12.06016 + 3.11985 5.24356 -11.84531 + 3.27450 5.05915 -11.63257 + 3.42295 4.83028 -11.42204 + 3.42315 4.82609 -11.42204 + 3.65350 4.37819 -11.07637 + 3.86026 3.88806 -10.73755 + 4.04232 3.39898 -10.40593 + 4.20062 2.93724 -10.08184 + 4.33649 2.50210 -9.76564 + 4.33640 2.50124 -9.76564 + 4.45113 2.09193 -9.45762 + 4.54601 1.70764 -9.15794 + 4.62229 1.34757 -8.86676 + 4.68116 1.01090 -8.58421 + 4.72376 0.69678 -8.31045 + 4.72376 0.69714 -8.31045 + 4.75122 0.40473 -8.04557 + 4.76458 0.13319 -7.78961 + 4.76487 -0.11837 -7.54256 + 4.75306 -0.35078 -7.30442 + 4.73010 -0.56491 -7.07520 + 4.73010 -0.56456 -7.07520 + 4.69688 -0.76126 -6.85487 + 4.65425 -0.94139 -6.64334 + 4.60300 -1.10578 -6.44053 + 4.54392 -1.25527 -6.24634 + 4.47771 -1.39069 -6.06066 + 4.47771 -1.39035 -6.06066 + 4.40509 -1.51251 -5.88340 + 4.32667 -1.62220 -5.71440 + 4.24306 -1.72022 -5.55350 + 4.15483 -1.80734 -5.40055 + 4.06250 -1.88431 -5.25539 + 4.06250 -1.88401 -5.25539 + 3.96657 -1.95158 -5.11786 + 3.86748 -2.01046 -4.98777 + 3.76566 -2.06138 -4.86492 + 3.66147 -2.10500 -4.74913 + 3.55527 -2.14201 -4.64020 + 3.55527 -2.14175 -4.64020 + 3.44738 -2.17279 -4.53794 + 3.33808 -2.19850 -4.44215 + 3.22761 -2.21948 -4.35262 + 3.11620 -2.23633 -4.26913 + 3.00403 -2.24963 -4.19149 + 3.00404 -2.24942 -4.19149 + 2.89130 -2.25971 -4.11948 + 2.77811 -2.26752 -4.05290 + 2.66458 -2.27336 -3.99152 + 2.55080 -2.27773 -3.93514 + 2.43689 -2.27692 -3.88354 + 2.43687 -2.27744 -3.88354 + 2.32321 -2.26755 -3.83650 + 2.21026 -2.24903 -3.79383 + 2.09844 -2.22271 -3.75530 + 1.98811 -2.18935 -3.72071 + 1.87961 -2.14971 -3.68984 + 1.87961 -2.14942 -3.68984 + 1.77325 -2.10418 -3.66249 + 1.66927 -2.05399 -3.63847 + 1.56792 -1.99949 -3.61759 + 1.46939 -1.94126 -3.59964 + 1.37385 -1.87983 -3.58446 + 1.37385 -1.87963 -3.58446 + 1.28146 -1.81553 -3.57184 + 1.19233 -1.74924 -3.56162 + 1.10656 -1.68120 -3.55365 + 1.02423 -1.61183 -3.54775 + 0.94540 -1.54150 -3.54378 + 0.94540 -1.54136 -3.54378 + 0.87010 -1.47044 -3.54157 + 0.79836 -1.39926 -3.54099 + 0.73017 -1.32811 -3.54191 + 0.66554 -1.25726 -3.54421 + 0.60444 -1.18698 -3.54776 + 0.60444 -1.18689 -3.54776 + 0.54684 -1.11740 -3.55243 + 0.49268 -1.04891 -3.55813 + 0.44192 -0.98160 -3.56475 + 0.39450 -0.91565 -3.57221 + 0.35034 -0.85120 -3.58041 + 0.35034 -0.85115 -3.58041 + 0.30936 -0.78834 -3.58926 + 0.27147 -0.72729 -3.59869 + 0.23660 -0.66810 -3.60863 + 0.20463 -0.61086 -3.61903 + 0.17548 -0.55567 -3.62980 + 0.17548 -0.55564 -3.62980 + 0.14903 -0.50254 -3.64090 + 0.12519 -0.45161 -3.65227 + 0.10383 -0.40289 -3.66389 + 0.08486 -0.35642 -3.67570 + 0.06815 -0.31223 -3.68768 + 0.06815 -0.31222 -3.68768 + 0.05360 -0.27035 -3.69977 + 0.04108 -0.23082 -3.71197 + 0.03048 -0.19364 -3.72425 + 0.02167 -0.15883 -3.73658 + 0.01455 -0.12639 -3.74896 + 0.01455 -0.12639 -3.74896 + 0.00900 -0.09633 -3.76136 + 0.00488 -0.06867 -3.77378 + 0.00209 -0.04339 -3.78620 + 0.00050 -0.02050 -3.79864 + 0.00000 0.00000 -3.81107 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -6165,61 +6296,61 @@ Status character 11.45178 25.99650 115.24504 18.83576 1 0 A 11.58164 26.48700 116.55185 19.04935 1 0 A 11.71150 26.97750 117.85867 19.26294 1 0 A - 12.00869 27.46800 119.16548 19.47652 110 0 - - 12.00869 27.46800 119.16548 19.47652 110 0 - - 12.31302 27.95850 120.47230 19.69011 110 0 - - 12.60894 28.44900 121.77911 19.90370 110 0 - - 12.89686 28.93950 123.08592 20.11728 110 0 - - 13.17718 29.43000 124.39274 20.33087 110 0 - - 13.45031 29.92050 125.69955 20.54446 110 0 - - 13.45031 29.92050 125.69955 20.54446 110 0 - - 13.71665 30.41100 127.00637 20.75805 110 0 - - 13.97658 30.90150 128.31318 20.97163 110 0 - - 14.23046 31.39200 129.62000 21.18522 110 0 - - 14.47865 31.88250 130.92681 21.39881 110 0 - - 14.72153 32.37300 132.23362 21.61239 110 0 - - 14.72153 32.37300 132.23362 21.61239 110 0 - - 14.95945 32.86350 133.54044 21.82598 110 0 - - 15.19274 33.35400 134.84725 22.03957 110 0 - - 15.42171 33.84450 136.15407 22.25315 110 0 - - 15.64666 34.33500 137.46088 22.46674 110 0 - - 15.86790 34.82550 138.76770 22.68033 110 0 - - 15.86790 34.82550 138.76770 22.68033 110 0 - - 16.08574 35.31600 140.07451 22.89392 110 0 - - 16.30043 35.80650 141.38133 23.10750 110 0 - - 16.51223 36.29700 142.68814 23.32109 110 0 - - 16.72137 36.78750 143.99495 23.53468 110 0 - - 16.92810 37.27800 145.30177 23.74826 110 0 - - 16.92810 37.27800 145.30177 23.74826 110 0 - - 17.13267 37.76850 146.60858 23.96185 110 0 - - 17.33525 38.25900 147.91540 24.17544 110 0 - - 17.53604 38.74950 149.22221 24.38903 110 0 - - 17.73523 39.24000 150.52903 24.60261 110 0 - - 17.93298 39.73050 151.83584 24.81620 110 0 - - 17.93298 39.73050 151.83584 24.81620 110 0 - - 18.12949 40.22100 153.14266 25.02979 110 0 - - 18.32487 40.71150 154.44947 25.24337 110 0 - - 18.51926 41.20200 155.75628 25.45696 110 0 - - 18.71279 41.69250 157.06310 25.67055 110 0 - - 18.90558 42.18300 158.36991 25.88413 110 0 - - 18.90558 42.18300 158.36991 25.88413 110 0 - - 19.09775 42.67350 159.67673 26.09772 110 0 - - 19.28938 43.16400 160.98354 26.31131 110 0 - - 19.48054 43.65450 162.29036 26.52490 110 0 - - 19.67133 44.14500 163.59717 26.73848 110 0 - - 19.86180 44.63550 164.90399 26.95207 110 0 - - 19.86180 44.63550 164.90399 26.95207 110 0 - - 20.05204 45.12600 166.21080 27.16566 110 0 - - 20.24209 45.61650 167.51761 27.37924 110 0 - - 20.43198 46.10700 168.82443 27.59283 110 0 - - 20.62176 46.59750 170.13124 27.80642 110 0 - - 20.81146 47.08800 171.43806 28.02000 110 0 - - 20.81146 47.08800 171.43806 28.02000 110 0 - - 21.00111 47.57850 172.74487 28.23359 110 0 - - 21.19073 48.06900 174.05169 28.44718 110 0 - - 21.38033 48.55950 175.35850 28.66077 110 0 - - 21.56991 49.05000 176.66532 28.87435 110 0 - - 21.75950 49.54050 177.97213 29.08794 110 0 - + 12.00819 27.46800 119.16548 19.47652 110 0 - + 12.00819 27.46800 119.16548 19.47652 110 0 - + 12.31222 27.95850 120.47230 19.69011 110 0 - + 12.60787 28.44900 121.77911 19.90370 110 0 - + 12.89556 28.93950 123.08592 20.11728 110 0 - + 13.17567 29.43000 124.39274 20.33087 110 0 - + 13.44861 29.92050 125.69955 20.54446 110 0 - + 13.44861 29.92050 125.69955 20.54446 110 0 - + 13.71479 30.41100 127.00637 20.75805 110 0 - + 13.97457 30.90150 128.31318 20.97163 110 0 - + 14.22832 31.39200 129.62000 21.18522 110 0 - + 14.47641 31.88250 130.92681 21.39881 110 0 - + 14.71921 32.37300 132.23362 21.61239 110 0 - + 14.71921 32.37300 132.23362 21.61239 110 0 - + 14.95706 32.86350 133.54044 21.82598 110 0 - + 15.19029 33.35400 134.84725 22.03957 110 0 - + 15.41922 33.84450 136.15407 22.25315 110 0 - + 15.64414 34.33500 137.46088 22.46674 110 0 - + 15.86537 34.82550 138.76770 22.68033 110 0 - + 15.86537 34.82550 138.76770 22.68033 110 0 - + 16.08321 35.31600 140.07451 22.89392 110 0 - + 16.29791 35.80650 141.38133 23.10750 110 0 - + 16.50972 36.29700 142.68814 23.32109 110 0 - + 16.71888 36.78750 143.99495 23.53468 110 0 - + 16.92565 37.27800 145.30177 23.74826 110 0 - + 16.92565 37.27800 145.30177 23.74826 110 0 - + 17.13025 37.76850 146.60858 23.96185 110 0 - + 17.33289 38.25900 147.91540 24.17544 110 0 - + 17.53373 38.74950 149.22221 24.38903 110 0 - + 17.73297 39.24000 150.52903 24.60261 110 0 - + 17.93079 39.73050 151.83584 24.81620 110 0 - + 17.93079 39.73050 151.83584 24.81620 110 0 - + 18.12736 40.22100 153.14266 25.02979 110 0 - + 18.32281 40.71150 154.44947 25.24337 110 0 - + 18.51728 41.20200 155.75628 25.45696 110 0 - + 18.71088 41.69250 157.06310 25.67055 110 0 - + 18.90375 42.18300 158.36991 25.88413 110 0 - + 18.90375 42.18300 158.36991 25.88413 110 0 - + 19.09599 42.67350 159.67673 26.09772 110 0 - + 19.28770 43.16400 160.98354 26.31131 110 0 - + 19.47895 43.65450 162.29036 26.52490 110 0 - + 19.66982 44.14500 163.59717 26.73848 110 0 - + 19.86038 44.63550 164.90399 26.95207 110 0 - + 19.86038 44.63550 164.90399 26.95207 110 0 - + 20.05071 45.12600 166.21080 27.16566 110 0 - + 20.24084 45.61650 167.51761 27.37924 110 0 - + 20.43082 46.10700 168.82443 27.59283 110 0 - + 20.62068 46.59750 170.13124 27.80642 110 0 - + 20.81047 47.08800 171.43806 28.02000 110 0 - + 20.81047 47.08800 171.43806 28.02000 110 0 - + 21.00021 47.57850 172.74487 28.23359 110 0 - + 21.18992 48.06900 174.05169 28.44718 110 0 - + 21.37960 48.55950 175.35850 28.66077 110 0 - + 21.56928 49.05000 176.66532 28.87435 110 0 - + 21.75895 49.54050 177.97213 29.08794 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6232,7 +6363,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.50 63.267 'Clay' + 0.50 63.262 'Clay' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -6354,106 +6485,106 @@ Status character 22.86471 0.00000 22.86471 3.73703 202 100 P 22.86471 0.00000 22.86471 3.73703 202 100 P 24.17152 0.49050 24.17152 3.95062 202 100 P - 24.85658 0.98100 25.47834 4.16420 110 98 - - 24.43038 1.47150 26.78515 4.37779 110 91 - - 24.01872 1.96200 28.09197 4.59138 110 86 - - 23.62225 2.45250 29.39878 4.80497 110 80 - - 23.62225 2.45250 29.39878 4.80497 110 80 - - 23.24155 2.94300 30.70560 5.01855 110 76 - - 22.87695 3.43350 32.01241 5.23214 110 71 - - 22.52872 3.92400 33.31922 5.44573 110 68 - - 22.19715 4.41450 34.62604 5.65931 110 64 - - 21.88252 4.90500 35.93285 5.87290 110 61 - - 21.88252 4.90500 35.93285 5.87290 110 61 - - 21.58505 5.39550 37.23967 6.08649 110 58 - - 21.30476 5.88600 38.54648 6.30007 110 55 - - 21.04166 6.37650 39.85330 6.51366 110 53 - - 20.79575 6.86700 41.16011 6.72725 110 51 - - 20.56704 7.35750 42.46692 6.94084 110 48 - - 20.56704 7.35750 42.46692 6.94084 110 48 - - 20.35550 7.84800 43.77374 7.15442 110 47 - - 20.16094 8.33850 45.08055 7.36801 110 45 - - 19.98319 8.82900 46.38737 7.58160 110 43 - - 19.82207 9.31950 47.69418 7.79518 110 42 - - 19.67739 9.81000 49.00100 8.00877 110 40 - - 19.67739 9.81000 49.00100 8.00877 110 40 - - 19.54894 10.30050 50.30781 8.22236 110 39 - - 19.43643 10.79100 51.61463 8.43595 110 38 - - 19.33956 11.28150 52.92144 8.64953 110 37 - - 19.25802 11.77200 54.22825 8.86312 110 36 - - 19.19151 12.26250 55.53507 9.07671 110 35 - - 19.19151 12.26250 55.53507 9.07671 110 35 - - 19.13972 12.75300 56.84188 9.29029 110 34 - - 19.10228 13.24350 58.14870 9.50388 110 33 - - 19.07883 13.73400 59.45551 9.71747 110 32 - - 19.06899 14.22450 60.76233 9.93105 110 31 - - 19.07241 14.71500 62.06914 10.14464 110 31 - - 19.07241 14.71500 62.06914 10.14464 110 31 - - 19.08869 15.20550 63.37596 10.35823 110 30 - - 19.11745 15.69600 64.68277 10.57182 110 30 - - 19.15828 16.18650 65.98958 10.78540 110 29 - - 19.21079 16.67700 67.29640 10.99899 110 29 - - 19.27457 17.16750 68.60321 11.21258 110 28 - - 19.27457 17.16750 68.60321 11.21258 110 28 - - 19.34922 17.65800 69.91003 11.42616 110 28 - - 19.43434 18.14850 71.21684 11.63975 110 27 - - 19.52950 18.63900 72.52366 11.85334 110 27 - - 19.63431 19.12950 73.83047 12.06692 110 27 - - 19.74834 19.62000 75.13729 12.28051 110 26 - - 19.74834 19.62000 75.13729 12.28051 110 26 - - 19.87119 20.11050 76.44410 12.49410 110 26 - - 20.00244 20.60100 77.75091 12.70769 110 26 - - 20.14170 21.09150 79.05773 12.92127 110 25 - - 20.28855 21.58200 80.36454 13.13486 110 25 - - 20.44259 22.07250 81.67136 13.34845 110 25 - - 20.44259 22.07250 81.67136 13.34845 110 25 - - 20.60343 22.56300 82.97817 13.56203 110 25 - - 20.77067 23.05350 84.28499 13.77562 110 25 - - 20.94397 23.54400 85.59180 13.98921 110 24 - - 21.12295 24.03450 86.89862 14.20280 110 24 - - 21.30724 24.52500 88.20543 14.41638 110 24 - - 21.30724 24.52500 88.20543 14.41638 110 24 - - 21.49650 25.01550 89.51224 14.62997 110 24 - - 21.69038 25.50600 90.81906 14.84356 110 24 - - 21.88859 25.99650 92.12587 15.05714 110 24 - - 22.09082 26.48700 93.43269 15.27073 110 24 - - 22.29675 26.97750 94.73950 15.48432 110 24 - - 22.29675 26.97750 94.73950 15.48432 110 24 - - 22.50608 27.46800 96.04632 15.69790 110 23 - - 22.71856 27.95850 97.35313 15.91149 110 23 - - 22.93394 28.44900 98.65994 16.12508 110 23 - - 23.15197 28.93950 99.96676 16.33867 110 23 - - 23.37241 29.43000 101.27357 16.55225 110 23 - - 23.37241 29.43000 101.27357 16.55225 110 23 - - 23.59503 29.92050 102.58039 16.76584 110 23 - - 23.81961 30.41100 103.88720 16.97943 110 23 - - 24.04600 30.90150 105.19402 17.19301 110 23 - - 24.27399 31.39200 106.50083 17.40660 110 23 - - 24.50340 31.88250 107.80765 17.62019 110 23 - - 24.50340 31.88250 107.80765 17.62019 110 23 - - 24.73408 32.37300 109.11446 17.83377 110 23 - - 24.96586 32.86350 110.42127 18.04736 110 23 - - 25.19864 33.35400 111.72809 18.26095 110 23 - - 25.43229 33.84450 113.03490 18.47454 110 22 - - 25.66668 34.33500 114.34172 18.68812 110 22 - - 25.66668 34.33500 114.34172 18.68812 110 22 - - 25.90168 34.82550 115.64853 18.90171 110 22 - - 26.13723 35.31600 116.95535 19.11530 110 22 - - 26.37324 35.80650 118.26216 19.32888 110 22 - - 26.60963 36.29700 119.56898 19.54247 110 22 - - 26.84633 36.78750 120.87579 19.75606 110 22 - - 26.84633 36.78750 120.87579 19.75606 110 22 - - 27.08326 37.27800 122.18260 19.96965 110 22 - - 27.32039 37.76850 123.48942 20.18323 110 22 - - 27.55767 38.25900 124.79623 20.39682 110 22 - - 27.79507 38.74950 126.10305 20.61041 110 22 - - 28.03254 39.24000 127.40986 20.82399 110 22 - - 28.03254 39.24000 127.40986 20.82399 110 22 - - 28.27006 39.73050 128.71668 21.03758 110 22 - - 28.50762 40.22100 130.02349 21.25117 110 22 - - 28.74519 40.71150 131.33031 21.46475 110 22 - - 28.98278 41.20200 132.63712 21.67834 110 22 - - 29.22037 41.69250 133.94393 21.89193 110 22 - + 24.81334 0.98100 25.47834 4.16420 110 97 - + 24.38919 1.47150 26.78515 4.37779 110 91 - + 23.97954 1.96200 28.09197 4.59138 110 85 - + 23.58504 2.45250 29.39878 4.80497 110 80 - + 23.58504 2.45250 29.39878 4.80497 110 80 - + 23.20628 2.94300 30.70560 5.01855 110 76 - + 22.84357 3.43350 32.01241 5.23214 110 71 - + 22.49719 3.92400 33.31922 5.44573 110 68 - + 22.16741 4.41450 34.62604 5.65931 110 64 - + 21.85453 4.90500 35.93285 5.87290 110 61 - + 21.85453 4.90500 35.93285 5.87290 110 61 - + 21.55874 5.39550 37.23967 6.08649 110 58 - + 21.28009 5.88600 38.54648 6.30007 110 55 - + 21.01858 6.37650 39.85330 6.51366 110 53 - + 20.77421 6.86700 41.16011 6.72725 110 50 - + 20.54698 7.35750 42.46692 6.94084 110 48 - + 20.54698 7.35750 42.46692 6.94084 110 48 - + 20.33686 7.84800 43.77374 7.15442 110 46 - + 20.14367 8.33850 45.08055 7.36801 110 45 - + 19.96723 8.82900 46.38737 7.58160 110 43 - + 19.80737 9.31950 47.69418 7.79518 110 42 - + 19.66389 9.81000 49.00100 8.00877 110 40 - + 19.66389 9.81000 49.00100 8.00877 110 40 - + 19.53659 10.30050 50.30781 8.22236 110 39 - + 19.42518 10.79100 51.61463 8.43595 110 38 - + 19.32935 11.28150 52.92144 8.64953 110 37 - + 19.24880 11.77200 54.22825 8.86312 110 35 - + 19.18323 12.26250 55.53507 9.07671 110 35 - + 19.18323 12.26250 55.53507 9.07671 110 35 - + 19.13233 12.75300 56.84188 9.29029 110 34 - + 19.09574 13.24350 58.14870 9.50388 110 33 - + 19.07308 13.73400 59.45551 9.71747 110 32 - + 19.06399 14.22450 60.76233 9.93105 110 31 - + 19.06810 14.71500 62.06914 10.14464 110 31 - + 19.06810 14.71500 62.06914 10.14464 110 31 - + 19.08504 15.20550 63.37596 10.35823 110 30 - + 19.11441 15.69600 64.68277 10.57182 110 30 - + 19.15582 16.18650 65.98958 10.78540 110 29 - + 19.20886 16.67700 67.29640 10.99899 110 29 - + 19.27313 17.16750 68.60321 11.21258 110 28 - + 19.27313 17.16750 68.60321 11.21258 110 28 - + 19.34824 17.65800 69.91003 11.42616 110 28 - + 19.43378 18.14850 71.21684 11.63975 110 27 - + 19.52933 18.63900 72.52366 11.85334 110 27 - + 19.63449 19.12950 73.83047 12.06692 110 27 - + 19.74885 19.62000 75.13729 12.28051 110 26 - + 19.74885 19.62000 75.13729 12.28051 110 26 - + 19.87199 20.11050 76.44410 12.49410 110 26 - + 20.00351 20.60100 77.75091 12.70769 110 26 - + 20.14300 21.09150 79.05773 12.92127 110 25 - + 20.29006 21.58200 80.36454 13.13486 110 25 - + 20.44429 22.07250 81.67136 13.34845 110 25 - + 20.44429 22.07250 81.67136 13.34845 110 25 - + 20.60529 22.56300 82.97817 13.56203 110 25 - + 20.77269 23.05350 84.28499 13.77562 110 25 - + 20.94611 23.54400 85.59180 13.98921 110 24 - + 21.12519 24.03450 86.89862 14.20280 110 24 - + 21.30957 24.52500 88.20543 14.41638 110 24 - + 21.30957 24.52500 88.20543 14.41638 110 24 - + 21.49889 25.01550 89.51224 14.62997 110 24 - + 21.69283 25.50600 90.81906 14.84356 110 24 - + 21.89108 25.99650 92.12587 15.05714 110 24 - + 22.09333 26.48700 93.43269 15.27073 110 24 - + 22.29928 26.97750 94.73950 15.48432 110 24 - + 22.29928 26.97750 94.73950 15.48432 110 24 - + 22.50861 27.46800 96.04632 15.69790 110 23 - + 22.72109 27.95850 97.35313 15.91149 110 23 - + 22.93645 28.44900 98.65994 16.12508 110 23 - + 23.15446 28.93950 99.96676 16.33867 110 23 - + 23.37487 29.43000 101.27357 16.55225 110 23 - + 23.37487 29.43000 101.27357 16.55225 110 23 - + 23.59744 29.92050 102.58039 16.76584 110 23 - + 23.82198 30.41100 103.88720 16.97943 110 23 - + 24.04831 30.90150 105.19402 17.19301 110 23 - + 24.27624 31.39200 106.50083 17.40660 110 23 - + 24.50560 31.88250 107.80765 17.62019 110 23 - + 24.50560 31.88250 107.80765 17.62019 110 23 - + 24.73620 32.37300 109.11446 17.83377 110 23 - + 24.96792 32.86350 110.42127 18.04736 110 23 - + 25.20063 33.35400 111.72809 18.26095 110 23 - + 25.43420 33.84450 113.03490 18.47454 110 23 - + 25.66851 34.33500 114.34172 18.68812 110 22 - + 25.66851 34.33500 114.34172 18.68812 110 22 - + 25.90344 34.82550 115.64853 18.90171 110 22 - + 26.13890 35.31600 116.95535 19.11530 110 22 - + 26.37483 35.80650 118.26216 19.32888 110 22 - + 26.61113 36.29700 119.56898 19.54247 110 22 - + 26.84775 36.78750 120.87579 19.75606 110 22 - + 26.84775 36.78750 120.87579 19.75606 110 22 - + 27.08459 37.27800 122.18260 19.96965 110 22 - + 27.32163 37.76850 123.48942 20.18323 110 22 - + 27.55883 38.25900 124.79623 20.39682 110 22 - + 27.79614 38.74950 126.10305 20.61041 110 22 - + 28.03353 39.24000 127.40986 20.82399 110 22 - + 28.03353 39.24000 127.40986 20.82399 110 22 - + 28.27096 39.73050 128.71668 21.03758 110 22 - + 28.50843 40.22100 130.02349 21.25117 110 22 - + 28.74592 40.71150 131.33031 21.46475 110 22 - + 28.98342 41.20200 132.63712 21.67834 110 22 - + 29.22092 41.69250 133.94393 21.89193 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -6466,7 +6597,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.50 99.779 'Clay' + 0.50 99.753 'Clay' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8311,8 +8442,8 @@ Is favorable (0=false, 1=true) [SOIL COLLAPSE DATA] 29.59 : Percentage mobilized resistance left 10.92 : Percentage mobilized resistance right - 99.87 : Effective left - 63.36 : Effective right + 99.84 : Effective left + 63.35 : Effective right 88.60 : Water pressure left 125.09 : Water pressure right 337.45 : Max effective resistance left @@ -8321,7 +8452,7 @@ Is favorable (0=false, 1=true) 0.00 : Max moment right 0.00 : Max mobilized moment left 0.00 : Max mobilized moment right - 28.63 : Vertical force left + 28.62 : Vertical force left 18.16 : Vertical force right 0.0 : Max mobilized moment percentage left 0.0 : Max mobilized moment percentage right @@ -8339,156 +8470,156 @@ Shear force Displacements [END OF COLUMN INDICATION] [DATA] - 0.00000 0.00000 -12.22817 - 0.00192 0.08749 -11.96602 - 0.00806 0.18742 -11.70387 - 0.01898 0.29978 -11.44174 - 0.03523 0.42457 -11.17964 - 0.05737 0.56180 -10.91760 - 0.05737 0.56180 -10.91760 - 0.08598 0.71147 -10.65563 - 0.12159 0.87357 -10.39380 - 0.16478 1.04810 -10.13215 - 0.21611 1.23507 -9.87077 - 0.27613 1.43448 -9.60972 - 0.27613 1.43448 -9.60972 - 0.29070 1.48079 -9.55176 - 0.30575 1.52834 -9.49382 - 0.32127 1.57714 -9.43591 - 0.33729 1.62718 -9.37802 - 0.35382 1.67845 -9.32015 - 0.35382 1.67845 -9.32015 - 0.40657 1.83973 -9.14671 - 0.46432 2.01217 -8.97355 - 0.52741 2.19578 -8.80071 - 0.59617 2.39055 -8.62822 - 0.67095 2.59649 -8.45614 - 0.67095 2.59649 -8.45614 - 0.75208 2.81360 -8.28450 - 0.83988 3.04187 -8.11338 - 0.93470 3.28131 -7.94282 - 1.03687 3.53192 -7.77290 - 1.14673 3.79369 -7.60368 - 1.14673 3.79369 -7.60368 - 1.20857 3.93787 -7.51373 - 1.27275 4.08522 -7.42402 - 1.33932 4.23576 -7.33456 - 1.40832 4.38946 -7.24535 - 1.47980 4.54634 -7.15641 - 1.47980 4.56113 -7.15641 - 1.68937 4.94911 -6.91061 - 1.91392 5.24148 -6.67121 - 2.14922 5.43823 -6.43596 - 2.39108 5.53937 -6.20261 - 2.63528 5.54488 -5.96892 - 2.63528 5.55246 -5.96892 - 2.80120 5.50139 -5.81343 - 2.96492 5.40588 -5.65982 - 3.12511 5.26592 -5.50822 - 3.28043 5.08151 -5.35872 - 3.42956 4.85264 -5.21144 - 3.42958 4.85237 -5.21144 - 3.66124 4.40446 -4.97119 - 3.86904 3.89771 -4.73782 - 4.05004 3.33211 -4.51165 - 4.20127 2.70766 -4.29303 - 4.32050 2.06514 -4.08229 - 4.32028 2.05611 -4.08229 - 4.40775 1.45133 -3.87971 - 4.46627 0.89818 -3.68540 - 4.49839 0.39432 -3.49942 - 4.50649 -0.06261 -3.32183 - 4.49287 -0.47496 -3.15270 - 4.49287 -0.47398 -3.15270 - 4.45975 -0.84414 -2.99204 - 4.40912 -1.17447 -2.83974 - 4.34292 -1.46732 -2.69568 - 4.26297 -1.72498 -2.55974 - 4.17097 -1.94971 -2.43180 - 4.17098 -1.94880 -2.43180 - 4.06856 -2.14284 -2.31170 - 3.95717 -2.30837 -2.19923 - 3.83817 -2.44749 -2.09417 - 3.71282 -2.56226 -1.99629 - 3.58231 -2.65466 -1.90538 - 3.58231 -2.65388 -1.90538 - 3.44774 -2.72585 -1.82119 - 3.31004 -2.77924 -1.74347 - 3.17010 -2.81582 -1.67195 - 3.02871 -2.83732 -1.60637 - 2.88659 -2.84535 -1.54648 - 2.88659 -2.84472 -1.54648 - 2.74441 -2.84086 -1.49199 - 2.60268 -2.82658 -1.44265 - 2.46190 -2.80330 -1.39819 - 2.32248 -2.77235 -1.35835 - 2.18477 -2.73500 -1.32287 - 2.18480 -2.73504 -1.32287 - 2.04910 -2.69247 -1.29148 - 1.91563 -2.64580 -1.26392 - 1.78460 -2.59421 -1.23997 - 1.65635 -2.53370 -1.21936 - 1.53141 -2.46247 -1.20187 - 1.53137 -2.46240 -1.20187 - 1.41023 -2.38213 -1.18723 - 1.29329 -2.29437 -1.17524 - 1.18089 -2.20055 -1.16568 - 1.07331 -2.10198 -1.15834 - 0.97075 -1.99985 -1.15301 - 0.97076 -1.99942 -1.15301 - 0.87339 -1.89480 -1.14949 - 0.78130 -1.78866 -1.14761 - 0.69454 -1.68188 -1.14721 - 0.61311 -1.57523 -1.14811 - 0.53700 -1.46942 -1.15017 - 0.53700 -1.46918 -1.15017 - 0.46616 -1.36481 -1.15321 - 0.40049 -1.26239 -1.15714 - 0.33988 -1.16240 -1.16182 - 0.28420 -1.06522 -1.16714 - 0.23331 -0.97118 -1.17300 - 0.23331 -0.97108 -1.17300 - 0.18703 -0.88046 -1.17929 - 0.14520 -0.79348 -1.18592 - 0.10762 -0.71030 -1.19284 - 0.07411 -0.63108 -1.19996 - 0.04445 -0.55590 -1.20723 - 0.04445 -0.55588 -1.20723 - 0.01845 -0.48481 -1.21456 - -0.00410 -0.41787 -1.22194 - -0.02341 -0.35508 -1.22930 - -0.03968 -0.29643 -1.23664 - -0.05312 -0.24187 -1.24389 - -0.05312 -0.24189 -1.24389 - -0.06393 -0.19139 -1.25104 - -0.07232 -0.14488 -1.25807 - -0.07849 -0.10228 -1.26497 - -0.08262 -0.06353 -1.27172 - -0.08490 -0.02853 -1.27832 - -0.08490 -0.02856 -1.27832 - -0.08553 0.00277 -1.28476 - -0.08468 0.03053 -1.29103 - -0.08254 0.05480 -1.29715 - -0.07926 0.07568 -1.30312 - -0.07502 0.09324 -1.30894 - -0.07502 0.09321 -1.30894 - -0.06999 0.10754 -1.31461 - -0.06432 0.11871 -1.32015 - -0.05817 0.12680 -1.32558 - -0.05169 0.13187 -1.33089 - -0.04503 0.13397 -1.33611 - -0.04503 0.13395 -1.33611 - -0.03835 0.13315 -1.34124 - -0.03177 0.12948 -1.34630 - -0.02544 0.12297 -1.35131 - -0.01952 0.11367 -1.35626 - -0.01412 0.10159 -1.36118 - -0.01412 0.10159 -1.36118 - -0.00940 0.08675 -1.36607 - -0.00549 0.06917 -1.37094 - -0.00253 0.04884 -1.37581 - -0.00066 0.02579 -1.38066 - 0.00000 0.00000 -1.38552 + 0.00000 0.00000 -12.18874 + 0.00192 0.08749 -11.92743 + 0.00806 0.18742 -11.66613 + 0.01898 0.29978 -11.40484 + 0.03523 0.42457 -11.14358 + 0.05737 0.56180 -10.88238 + 0.05737 0.56180 -10.88238 + 0.08598 0.71147 -10.62126 + 0.12159 0.87357 -10.36026 + 0.16478 1.04810 -10.09946 + 0.21611 1.23507 -9.83892 + 0.27613 1.43448 -9.57871 + 0.27613 1.43448 -9.57871 + 0.29070 1.48079 -9.52094 + 0.30575 1.52834 -9.46319 + 0.32127 1.57714 -9.40546 + 0.33729 1.62718 -9.34776 + 0.35382 1.67845 -9.29008 + 0.35382 1.67845 -9.29008 + 0.40657 1.83973 -9.11720 + 0.46432 2.01217 -8.94460 + 0.52741 2.19578 -8.77232 + 0.59617 2.39055 -8.60040 + 0.67095 2.59649 -8.42887 + 0.67095 2.59649 -8.42887 + 0.75208 2.81360 -8.25780 + 0.83988 3.04187 -8.08723 + 0.93470 3.28131 -7.91724 + 1.03687 3.53192 -7.74788 + 1.14673 3.79369 -7.57921 + 1.14673 3.79369 -7.57921 + 1.20857 3.93787 -7.48957 + 1.27275 4.08522 -7.40016 + 1.33932 4.23576 -7.31100 + 1.40832 4.38946 -7.22209 + 1.47980 4.54634 -7.13345 + 1.47980 4.54634 -7.13345 + 1.68872 4.93433 -6.89119 + 1.91262 5.22670 -6.65139 + 2.14727 5.42345 -6.41437 + 2.38848 5.52458 -6.18049 + 2.63203 5.53010 -5.95007 + 2.63203 5.53010 -5.95007 + 2.79728 5.47904 -5.79513 + 2.96033 5.38352 -5.64208 + 3.11985 5.24356 -5.49103 + 3.27450 5.05915 -5.34207 + 3.42295 4.83028 -5.19533 + 3.42297 4.83001 -5.19533 + 3.65352 4.38211 -4.95598 + 3.86020 3.87535 -4.72349 + 4.04008 3.30975 -4.49819 + 4.19020 2.68530 -4.28041 + 4.30833 2.04444 -4.07049 + 4.30811 2.03545 -4.07049 + 4.39463 1.43388 -3.86872 + 4.45236 0.88370 -3.67518 + 4.48382 0.38261 -3.48995 + 4.49140 -0.07175 -3.31309 + 4.47738 -0.48174 -3.14465 + 4.47738 -0.48076 -3.14465 + 4.44397 -0.84875 -2.98465 + 4.39317 -1.17710 -2.83299 + 4.32689 -1.46813 -2.68954 + 4.24694 -1.72414 -2.55417 + 4.15502 -1.94739 -2.42678 + 4.15502 -1.94648 -2.42678 + 4.05276 -2.13918 -2.30719 + 3.94157 -2.30351 -2.19521 + 3.82284 -2.44157 -2.09061 + 3.69782 -2.55539 -1.99316 + 3.56767 -2.64698 -1.90265 + 3.56768 -2.64619 -1.90265 + 3.43350 -2.71745 -1.81884 + 3.29624 -2.77022 -1.74146 + 3.15676 -2.80629 -1.67026 + 3.01586 -2.82735 -1.60498 + 2.87425 -2.83503 -1.54535 + 2.87425 -2.83440 -1.54535 + 2.73259 -2.83026 -1.49112 + 2.59140 -2.81577 -1.44200 + 2.45116 -2.79234 -1.39775 + 2.31229 -2.76129 -1.35810 + 2.17514 -2.72389 -1.32278 + 2.17517 -2.72393 -1.32278 + 2.04002 -2.68135 -1.29153 + 1.90710 -2.63471 -1.26411 + 1.77663 -2.58324 -1.24027 + 1.64893 -2.52292 -1.21977 + 1.52452 -2.45195 -1.20235 + 1.52448 -2.45187 -1.20235 + 1.40385 -2.37190 -1.18779 + 1.28742 -2.28448 -1.17586 + 1.17551 -2.19102 -1.16635 + 1.06839 -2.09284 -1.15905 + 0.96628 -1.99112 -1.15376 + 0.96629 -1.99069 -1.15376 + 0.86935 -1.88649 -1.15026 + 0.77766 -1.78079 -1.14840 + 0.69128 -1.67445 -1.14800 + 0.61021 -1.56825 -1.14890 + 0.53444 -1.46288 -1.15095 + 0.53444 -1.46265 -1.15095 + 0.46392 -1.35871 -1.15399 + 0.39854 -1.25673 -1.15790 + 0.33820 -1.15716 -1.16257 + 0.28278 -1.06040 -1.16787 + 0.23211 -0.96677 -1.17371 + 0.23211 -0.96666 -1.17371 + 0.18605 -0.87644 -1.17997 + 0.14441 -0.78983 -1.18658 + 0.10700 -0.70702 -1.19347 + 0.07364 -0.62814 -1.20057 + 0.04412 -0.55329 -1.20780 + 0.04412 -0.55327 -1.20780 + 0.01825 -0.48251 -1.21511 + -0.00420 -0.41587 -1.22245 + -0.02341 -0.35336 -1.22978 + -0.03960 -0.29497 -1.23708 + -0.05298 -0.24066 -1.24431 + -0.05297 -0.24068 -1.24431 + -0.06374 -0.19041 -1.25143 + -0.07208 -0.14410 -1.25843 + -0.07821 -0.10170 -1.26530 + -0.08232 -0.06312 -1.27202 + -0.08458 -0.02828 -1.27859 + -0.08458 -0.02832 -1.27859 + -0.08521 0.00287 -1.28500 + -0.08436 0.03050 -1.29125 + -0.08221 0.05466 -1.29734 + -0.07895 0.07544 -1.30328 + -0.07472 0.09292 -1.30907 + -0.07472 0.09289 -1.30907 + -0.06971 0.10714 -1.31472 + -0.06406 0.11826 -1.32024 + -0.05794 0.12631 -1.32564 + -0.05148 0.13135 -1.33093 + -0.04485 0.13344 -1.33613 + -0.04485 0.13342 -1.33613 + -0.03819 0.13261 -1.34124 + -0.03164 0.12895 -1.34628 + -0.02534 0.12247 -1.35126 + -0.01944 0.11320 -1.35619 + -0.01406 0.10117 -1.36108 + -0.01406 0.10117 -1.36108 + -0.00936 0.08639 -1.36595 + -0.00547 0.06888 -1.37080 + -0.00252 0.04864 -1.37564 + -0.00065 0.02568 -1.38048 + 0.00000 0.00000 -1.38531 [END OF DATA] [END OF TABLE] [END OF MOMENTS FORCES DISPLACEMENTS] @@ -8646,69 +8777,69 @@ Status character 10.54278 22.56300 106.09734 17.34065 1 0 A 10.67264 23.05350 107.40415 17.55424 1 0 A 10.80250 23.54400 108.71097 17.76783 1 0 A - 11.00659 24.03450 110.01778 17.98141 110 0 - - 11.33608 24.52500 111.32459 18.19500 110 0 - - 11.64810 25.01550 112.63141 18.40859 110 0 - - 11.64810 25.01550 112.63141 18.40859 110 0 - - 11.94401 25.50600 113.93822 18.62218 110 0 - - 12.22506 25.99650 115.24504 18.83576 110 0 - - 12.49242 26.48700 116.55185 19.04935 110 0 - - 12.74728 26.97750 117.85867 19.26294 110 0 - - 12.99083 27.46800 119.16548 19.47652 110 0 - - 12.99083 27.46800 119.16548 19.47652 110 0 - - 13.22420 27.95850 120.47230 19.69011 110 0 - - 13.44837 28.44900 121.77911 19.90370 110 0 - - 13.66424 28.93950 123.08592 20.11728 110 0 - - 13.87274 29.43000 124.39274 20.33087 110 0 - - 14.07478 29.92050 125.69955 20.54446 110 0 - - 14.07478 29.92050 125.69955 20.54446 110 0 - - 14.27122 30.41100 127.00637 20.75805 110 0 - - 14.46274 30.90150 128.31318 20.97163 110 0 - - 14.65000 31.39200 129.62000 21.18522 110 0 - - 14.83362 31.88250 130.92681 21.39881 110 0 - - 15.01425 32.37300 132.23362 21.61239 110 0 - - 15.01425 32.37300 132.23362 21.61239 110 0 - - 15.19248 32.86350 133.54044 21.82598 110 0 - - 15.36874 33.35400 134.84725 22.03957 110 0 - - 15.54343 33.84450 136.15407 22.25315 110 0 - - 15.71694 34.33500 137.46088 22.46674 110 0 - - 15.88968 34.82550 138.76770 22.68033 110 0 - - 15.88968 34.82550 138.76770 22.68033 110 0 - - 16.06199 35.31600 140.07451 22.89392 110 0 - - 16.23412 35.80650 141.38133 23.10750 110 0 - - 16.40625 36.29700 142.68814 23.32109 110 0 - - 16.57860 36.78750 143.99495 23.53468 110 0 - - 16.75138 37.27800 145.30177 23.74826 110 0 - - 16.75138 37.27800 145.30177 23.74826 110 0 - - 16.92475 37.76850 146.60858 23.96185 110 0 - - 17.09879 38.25900 147.91540 24.17544 110 0 - - 17.27358 38.74950 149.22221 24.38903 110 0 - - 17.44917 39.24000 150.52903 24.60261 110 0 - - 17.62564 39.73050 151.83584 24.81620 110 0 - - 17.62564 39.73050 151.83584 24.81620 110 0 - - 17.80303 40.22100 153.14266 25.02979 110 0 - - 17.98131 40.71150 154.44947 25.24337 110 0 - - 18.16048 41.20200 155.75628 25.45696 110 0 - - 18.34051 41.69250 157.06310 25.67055 110 0 - - 18.52137 42.18300 158.36991 25.88413 110 0 - - 18.52137 42.18300 158.36991 25.88413 110 0 - - 18.70304 42.67350 159.67673 26.09772 110 0 - - 18.88545 43.16400 160.98354 26.31131 110 0 - - 19.06853 43.65450 162.29036 26.52490 110 0 - - 19.25222 44.14500 163.59717 26.73848 110 0 - - 19.43645 44.63550 164.90399 26.95207 110 0 - - 19.43645 44.63550 164.90399 26.95207 110 0 - - 19.62116 45.12600 166.21080 27.16566 110 0 - - 19.80628 45.61650 167.51761 27.37924 110 0 - - 19.99173 46.10700 168.82443 27.59283 110 0 - - 20.17746 46.59750 170.13124 27.80642 110 0 - - 20.36339 47.08800 171.43806 28.02000 110 0 - - 20.36339 47.08800 171.43806 28.02000 110 0 - - 20.54946 47.57850 172.74487 28.23359 110 0 - - 20.73562 48.06900 174.05169 28.44718 110 0 - - 20.92186 48.55950 175.35850 28.66077 110 0 - - 21.10813 49.05000 176.66532 28.87435 110 0 - - 21.29441 49.54050 177.97213 29.08794 110 0 - + 11.00489 24.03450 110.01778 17.98141 110 0 - + 11.33381 24.52500 111.32459 18.19500 110 0 - + 11.64535 25.01550 112.63141 18.40859 110 0 - + 11.64535 25.01550 112.63141 18.40859 110 0 - + 11.94085 25.50600 113.93822 18.62218 110 0 - + 12.22156 25.99650 115.24504 18.83576 110 0 - + 12.48864 26.48700 116.55185 19.04935 110 0 - + 12.74327 26.97750 117.85867 19.26294 110 0 - + 12.98665 27.46800 119.16548 19.47652 110 0 - + 12.98665 27.46800 119.16548 19.47652 110 0 - + 13.21989 27.95850 120.47230 19.69011 110 0 - + 13.44398 28.44900 121.77911 19.90370 110 0 - + 13.65980 28.93950 123.08592 20.11728 110 0 - + 13.86829 29.43000 124.39274 20.33087 110 0 - + 14.07035 29.92050 125.69955 20.54446 110 0 - + 14.07035 29.92050 125.69955 20.54446 110 0 - + 14.26684 30.41100 127.00637 20.75805 110 0 - + 14.45843 30.90150 128.31318 20.97163 110 0 - + 14.64578 31.39200 129.62000 21.18522 110 0 - + 14.82951 31.88250 130.92681 21.39881 110 0 - + 15.01027 32.37300 132.23362 21.61239 110 0 - + 15.01027 32.37300 132.23362 21.61239 110 0 - + 15.18863 32.86350 133.54044 21.82598 110 0 - + 15.36504 33.35400 134.84725 22.03957 110 0 - + 15.53988 33.84450 136.15407 22.25315 110 0 - + 15.71356 34.33500 137.46088 22.46674 110 0 - + 15.88646 34.82550 138.76770 22.68033 110 0 - + 15.88646 34.82550 138.76770 22.68033 110 0 - + 16.05895 35.31600 140.07451 22.89392 110 0 - + 16.23124 35.80650 141.38133 23.10750 110 0 - + 16.40355 36.29700 142.68814 23.32109 110 0 - + 16.57608 36.78750 143.99495 23.53468 110 0 - + 16.74902 37.27800 145.30177 23.74826 110 0 - + 16.74902 37.27800 145.30177 23.74826 110 0 - + 16.92257 37.76850 146.60858 23.96185 110 0 - + 17.09678 38.25900 147.91540 24.17544 110 0 - + 17.27173 38.74950 149.22221 24.38903 110 0 - + 17.44749 39.24000 150.52903 24.60261 110 0 - + 17.62412 39.73050 151.83584 24.81620 110 0 - + 17.62412 39.73050 151.83584 24.81620 110 0 - + 17.80166 40.22100 153.14266 25.02979 110 0 - + 17.98010 40.71150 154.44947 25.24337 110 0 - + 18.15942 41.20200 155.75628 25.45696 110 0 - + 18.33960 41.69250 157.06310 25.67055 110 0 - + 18.52061 42.18300 158.36991 25.88413 110 0 - + 18.52061 42.18300 158.36991 25.88413 110 0 - + 18.70242 42.67350 159.67673 26.09772 110 0 - + 18.88496 43.16400 160.98354 26.31131 110 0 - + 19.06817 43.65450 162.29036 26.52490 110 0 - + 19.25199 44.14500 163.59717 26.73848 110 0 - + 19.43636 44.63550 164.90399 26.95207 110 0 - + 19.43636 44.63550 164.90399 26.95207 110 0 - + 19.62120 45.12600 166.21080 27.16566 110 0 - + 19.80644 45.61650 167.51761 27.37924 110 0 - + 19.99202 46.10700 168.82443 27.59283 110 0 - + 20.17787 46.59750 170.13124 27.80642 110 0 - + 20.36392 47.08800 171.43806 28.02000 110 0 - + 20.36392 47.08800 171.43806 28.02000 110 0 - + 20.55012 47.57850 172.74487 28.23359 110 0 - + 20.73641 48.06900 174.05169 28.44718 110 0 - + 20.92276 48.55950 175.35850 28.66077 110 0 - + 21.10916 49.05000 176.66532 28.87435 110 0 - + 21.29556 49.54050 177.97213 29.08794 110 0 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8721,7 +8852,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.50 63.356 'Clay' + 0.50 63.350 'Clay' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -8846,103 +8977,103 @@ Status character 25.47834 0.98100 25.47834 4.16420 202 100 P 26.78515 1.47150 26.78515 4.37779 202 100 P 28.09197 1.96200 28.09197 4.59138 202 100 P - 27.76785 2.45250 29.39878 4.80497 110 94 - - 27.76785 2.45250 29.39878 4.80497 110 94 - - 26.84194 2.94300 30.70560 5.01855 110 87 - - 25.96253 3.43350 32.01241 5.23214 110 81 - - 25.12997 3.92400 33.31922 5.44573 110 75 - - 24.34462 4.41450 34.62604 5.65931 110 70 - - 23.60683 4.90500 35.93285 5.87290 110 66 - - 23.60683 4.90500 35.93285 5.87290 110 66 - - 22.91670 5.39550 37.23967 6.08649 110 62 - - 22.27360 5.88600 38.54648 6.30007 110 58 - - 21.67685 6.37650 39.85330 6.51366 110 54 - - 21.12578 6.86700 41.16011 6.72725 110 51 - - 20.61969 7.35750 42.46692 6.94084 110 49 - - 20.61969 7.35750 42.46692 6.94084 110 49 - - 20.15772 7.84800 43.77374 7.15442 110 46 - - 19.73867 8.33850 45.08055 7.36801 110 44 - - 19.36129 8.82900 46.38737 7.58160 110 42 - - 19.02432 9.31950 47.69418 7.79518 110 40 - - 18.72652 9.81000 49.00100 8.00877 110 38 - - 18.72652 9.81000 49.00100 8.00877 110 38 - - 18.46656 10.30050 50.30781 8.22236 110 37 - - 18.24297 10.79100 51.61463 8.43595 110 35 - - 18.05426 11.28150 52.92144 8.64953 110 34 - - 17.89897 11.77200 54.22825 8.86312 110 33 - - 17.77563 12.26250 55.53507 9.07671 110 32 - - 17.77563 12.26250 55.53507 9.07671 110 32 - - 17.68274 12.75300 56.84188 9.29029 110 31 - - 17.61879 13.24350 58.14870 9.50388 110 30 - - 17.58230 13.73400 59.45551 9.71747 110 30 - - 17.57179 14.22450 60.76233 9.93105 110 29 - - 17.58578 14.71500 62.06914 10.14464 110 28 - - 17.58578 14.71500 62.06914 10.14464 110 28 - - 17.62278 15.20550 63.37596 10.35823 110 28 - - 17.68139 15.69600 64.68277 10.57182 110 27 - - 17.76023 16.18650 65.98958 10.78540 110 27 - - 17.85791 16.67700 67.29640 10.99899 110 27 - - 17.97307 17.16750 68.60321 11.21258 110 26 - - 17.97307 17.16750 68.60321 11.21258 110 26 - - 18.10433 17.65800 69.91003 11.42616 110 26 - - 18.25045 18.14850 71.21684 11.63975 110 26 - - 18.41027 18.63900 72.52366 11.85334 110 25 - - 18.58258 19.12950 73.83047 12.06692 110 25 - - 18.76621 19.62000 75.13729 12.28051 110 25 - - 18.76621 19.62000 75.13729 12.28051 110 25 - - 18.96001 20.11050 76.44410 12.49410 110 25 - - 19.16302 20.60100 77.75091 12.70769 110 25 - - 19.37432 21.09150 79.05773 12.92127 110 25 - - 19.59299 21.58200 80.36454 13.13486 110 24 - - 19.81813 22.07250 81.67136 13.34845 110 24 - - 19.81813 22.07250 81.67136 13.34845 110 24 - - 20.04886 22.56300 82.97817 13.56203 110 24 - - 20.28451 23.05350 84.28499 13.77562 110 24 - - 20.52443 23.54400 85.59180 13.98921 110 24 - - 20.76798 24.03450 86.89862 14.20280 110 24 - - 21.01452 24.52500 88.20543 14.41638 110 24 - - 21.01452 24.52500 88.20543 14.41638 110 24 - - 21.26347 25.01550 89.51224 14.62997 110 24 - - 21.51438 25.50600 90.81906 14.84356 110 24 - - 21.76687 25.99650 92.12587 15.05714 110 24 - - 22.02053 26.48700 93.43269 15.27073 110 24 - - 22.27497 26.97750 94.73950 15.48432 110 24 - - 22.27497 26.97750 94.73950 15.48432 110 24 - - 22.52983 27.46800 96.04632 15.69790 110 23 - - 22.78488 27.95850 97.35313 15.91149 110 23 - - 23.03992 28.44900 98.65994 16.12508 110 23 - - 23.29474 28.93950 99.96676 16.33867 110 23 - - 23.54914 29.43000 101.27357 16.55225 110 23 - - 23.54914 29.43000 101.27357 16.55225 110 23 - - 23.80294 29.92050 102.58039 16.76584 110 23 - - 24.05607 30.41100 103.88720 16.97943 110 23 - - 24.30846 30.90150 105.19402 17.19301 110 23 - - 24.56004 31.39200 106.50083 17.40660 110 23 - - 24.81075 31.88250 107.80765 17.62019 110 23 - - 24.81075 31.88250 107.80765 17.62019 110 23 - - 25.06054 32.37300 109.11446 17.83377 110 23 - - 25.30942 32.86350 110.42127 18.04736 110 23 - - 25.55743 33.35400 111.72809 18.26095 110 23 - - 25.80457 33.84450 113.03490 18.47454 110 23 - - 26.05088 34.33500 114.34172 18.68812 110 23 - - 26.05088 34.33500 114.34172 18.68812 110 23 - - 26.29639 34.82550 115.64853 18.90171 110 23 - - 26.54116 35.31600 116.95535 19.11530 110 23 - - 26.78525 35.80650 118.26216 19.32888 110 23 - - 27.02874 36.29700 119.56898 19.54247 110 23 - - 27.27168 36.78750 120.87579 19.75606 110 23 - - 27.27168 36.78750 120.87579 19.75606 110 23 - - 27.51414 37.27800 122.18260 19.96965 110 23 - - 27.75620 37.76850 123.48942 20.18323 110 22 - - 27.99792 38.25900 124.79623 20.39682 110 22 - - 28.23937 38.74950 126.10305 20.61041 110 22 - - 28.48061 39.24000 127.40986 20.82399 110 22 - - 28.48061 39.24000 127.40986 20.82399 110 22 - - 28.72172 39.73050 128.71668 21.03758 110 22 - - 28.96272 40.22100 130.02349 21.25117 110 22 - - 29.20366 40.71150 131.33031 21.46475 110 22 - - 29.44456 41.20200 132.63712 21.67834 110 22 - - 29.68546 41.69250 133.94393 21.89193 110 22 - + 27.70149 2.45250 29.39878 4.80497 110 94 - + 27.70149 2.45250 29.39878 4.80497 110 94 - + 26.78008 2.94300 30.70560 5.01855 110 87 - + 25.90504 3.43350 32.01241 5.23214 110 81 - + 25.07671 3.92400 33.31922 5.44573 110 75 - + 24.29543 4.41450 34.62604 5.65931 110 70 - + 23.56155 4.90500 35.93285 5.87290 110 66 - + 23.56155 4.90500 35.93285 5.87290 110 66 - + 22.87515 5.39550 37.23967 6.08649 110 61 - + 22.23563 5.88600 38.54648 6.30007 110 58 - + 21.64230 6.37650 39.85330 6.51366 110 54 - + 21.09447 6.86700 41.16011 6.72725 110 51 - + 20.59145 7.35750 42.46692 6.94084 110 48 - + 20.59145 7.35750 42.46692 6.94084 110 48 - + 20.13239 7.84800 43.77374 7.15442 110 46 - + 19.71608 8.33850 45.08055 7.36801 110 44 - + 19.34127 8.82900 46.38737 7.58160 110 42 - + 19.00671 9.31950 47.69418 7.79518 110 40 - + 18.71117 9.81000 49.00100 8.00877 110 38 - + 18.71117 9.81000 49.00100 8.00877 110 38 - + 18.45331 10.30050 50.30781 8.22236 110 37 - + 18.23166 10.79100 51.61463 8.43595 110 35 - + 18.04476 11.28150 52.92144 8.64953 110 34 - + 17.89113 11.77200 54.22825 8.86312 110 33 - + 17.76932 12.26250 55.53507 9.07671 110 32 - + 17.76932 12.26250 55.53507 9.07671 110 32 - + 17.67783 12.75300 56.84188 9.29029 110 31 - + 17.61515 13.24350 58.14870 9.50388 110 30 - + 17.57982 13.73400 59.45551 9.71747 110 30 - + 17.57035 14.22450 60.76233 9.93105 110 29 - + 17.58527 14.71500 62.06914 10.14464 110 28 - + 17.58527 14.71500 62.06914 10.14464 110 28 - + 17.62310 15.20550 63.37596 10.35823 110 28 - + 17.68245 15.69600 64.68277 10.57182 110 27 - + 17.76193 16.18650 65.98958 10.78540 110 27 - + 17.86018 16.67700 67.29640 10.99899 110 27 - + 17.97582 17.16750 68.60321 11.21258 110 26 - + 17.97582 17.16750 68.60321 11.21258 110 26 - + 18.10749 17.65800 69.91003 11.42616 110 26 - + 18.25396 18.14850 71.21684 11.63975 110 26 - + 18.41405 18.63900 72.52366 11.85334 110 25 - + 18.58659 19.12950 73.83047 12.06692 110 25 - + 18.77039 19.62000 75.13729 12.28051 110 25 - + 18.77039 19.62000 75.13729 12.28051 110 25 - + 18.96432 20.11050 76.44410 12.49410 110 25 - + 19.16741 20.60100 77.75091 12.70769 110 25 - + 19.37875 21.09150 79.05773 12.92127 110 25 - + 19.59744 21.58200 80.36454 13.13486 110 24 - + 19.82256 22.07250 81.67136 13.34845 110 24 - + 19.82256 22.07250 81.67136 13.34845 110 24 - + 20.05324 22.56300 82.97817 13.56203 110 24 - + 20.28882 23.05350 84.28499 13.77562 110 24 - + 20.52865 23.54400 85.59180 13.98921 110 24 - + 20.77209 24.03450 86.89862 14.20280 110 24 - + 21.01851 24.52500 88.20543 14.41638 110 24 - + 21.01851 24.52500 88.20543 14.41638 110 24 - + 21.26732 25.01550 89.51224 14.62997 110 24 - + 21.51808 25.50600 90.81906 14.84356 110 24 - + 21.77041 25.99650 92.12587 15.05714 110 24 - + 22.02391 26.48700 93.43269 15.27073 110 24 - + 22.27818 26.97750 94.73950 15.48432 110 24 - + 22.27818 26.97750 94.73950 15.48432 110 24 - + 22.53287 27.46800 96.04632 15.69790 110 23 - + 22.78775 27.95850 97.35313 15.91149 110 23 - + 23.04262 28.44900 98.65994 16.12508 110 23 - + 23.29726 28.93950 99.96676 16.33867 110 23 - + 23.55149 29.43000 101.27357 16.55225 110 23 - + 23.55149 29.43000 101.27357 16.55225 110 23 - + 23.80513 29.92050 102.58039 16.76584 110 23 - + 24.05809 30.41100 103.88720 16.97943 110 23 - + 24.31031 30.90150 105.19402 17.19301 110 23 - + 24.56172 31.39200 106.50083 17.40660 110 23 - + 24.81227 31.88250 107.80765 17.62019 110 23 - + 24.81227 31.88250 107.80765 17.62019 110 23 - + 25.06190 32.37300 109.11446 17.83377 110 23 - + 25.31063 32.86350 110.42127 18.04736 110 23 - + 25.55849 33.35400 111.72809 18.26095 110 23 - + 25.80549 33.84450 113.03490 18.47454 110 23 - + 26.05165 34.33500 114.34172 18.68812 110 23 - + 26.05165 34.33500 114.34172 18.68812 110 23 - + 26.29702 34.82550 115.64853 18.90171 110 23 - + 26.54165 35.31600 116.95535 19.11530 110 23 - + 26.78561 35.80650 118.26216 19.32888 110 23 - + 27.02896 36.29700 119.56898 19.54247 110 23 - + 27.27177 36.78750 120.87579 19.75606 110 23 - + 27.27177 36.78750 120.87579 19.75606 110 23 - + 27.51410 37.27800 122.18260 19.96965 110 23 - + 27.75603 37.76850 123.48942 20.18323 110 22 - + 27.99763 38.25900 124.79623 20.39682 110 22 - + 28.23896 38.74950 126.10305 20.61041 110 22 - + 28.48008 39.24000 127.40986 20.82399 110 22 - + 28.48008 39.24000 127.40986 20.82399 110 22 - + 28.72106 39.73050 128.71668 21.03758 110 22 - + 28.96194 40.22100 130.02349 21.25117 110 22 - + 29.20276 40.71150 131.33031 21.46475 110 22 - + 29.44354 41.20200 132.63712 21.67834 110 22 - + 29.68431 41.69250 133.94393 21.89193 110 22 - [END OF DATA] [END OF TABLE] [END OF PRESSURES] @@ -8955,7 +9086,7 @@ Force Layer name [END OF COLUMN INDICATION] [DATA] - 0.50 99.866 'Clay' + 0.50 99.838 'Clay' [END OF DATA] [END OF TABLE] [END OF FORCE FROM LAYER] @@ -12311,8 +12442,8 @@ CalculationStatus [DATA] 6.38067 5.99880 -27.28794 0.00000 30.56261 1 4 14 1.000 0 0 6.24368 5.99880 -18.14078 0.00000 30.73910 1 5 14 1.000 0 0 - 4.77993 5.55246 -21.12647 0.00000 29.56872 1 0 14 1.000 0 0 - 4.50649 5.55246 -12.22817 0.00000 29.59443 1 1 14 1.000 0 0 + 4.76487 5.53010 -21.07342 0.00000 29.56089 1 0 14 1.000 0 0 + 4.49140 5.53010 -12.18874 0.00000 29.58617 1 1 14 1.000 0 0 3.03831 4.19404 -16.60706 0.00000 25.24255 1 3 14 1.000 0 0 3.64597 5.03285 -16.60706 0.00000 25.24255 1 14 14 1.200 0 0 0.00000 0.00000 0.00000 0.00000 0.00000 2 4 14 0.000 1 5 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shi index 6f5ad5b8..0b26fc22 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-23.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:03 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-23.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:01 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-23.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -342,6 +342,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -351,6 +352,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -360,6 +362,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=0 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=1 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -383,7 +386,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=0 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -394,8 +397,10 @@ EC7NLMethod=1 EC7NLOverallPartialFactorSet=0 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -406,7 +411,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=0 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -414,17 +419,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -441,7 +447,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -452,6 +458,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -468,17 +475,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -496,8 +504,8 @@ LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 ConstructLoadFactorVarFav=0.000 -ConstructLoadFactorPermUnfavCalc=1.000 -ConstructLoadFactorVarUnfavCalc=1.000 +ConstructLoadFactorPermUnfavCalc=1.350 +ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 MaterialFactorCohesion=1.250 @@ -506,6 +514,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -533,6 +542,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -560,6 +570,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -587,6 +598,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -614,6 +626,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -624,23 +637,80 @@ OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -650,14 +720,14 @@ OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.000 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -668,6 +738,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -677,14 +748,70 @@ OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.000 VerticalBalanceGammaMb=1.300 -[END OF PARTIAL FACTORS EC7 BE SET2] +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -695,6 +822,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -711,7 +839,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -722,6 +850,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -738,7 +867,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -749,6 +878,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shd index 490d2171..0faca749 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:06 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-2a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:02 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-2a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2184,6 +2184,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2207,7 +2208,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2218,8 +2219,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2230,7 +2233,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2238,17 +2241,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2256,8 +2260,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -2265,7 +2269,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2276,15 +2280,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -2292,17 +2297,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2310,8 +2316,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -2330,15 +2336,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -2357,6 +2364,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2384,6 +2392,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2392,12 +2401,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -2411,6 +2420,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2419,7 +2429,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -2438,6 +2448,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2446,25 +2457,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2472,16 +2540,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2492,6 +2560,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2499,16 +2568,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2519,6 +2644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2526,8 +2652,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -2535,7 +2661,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2546,6 +2672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2553,8 +2680,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -2562,7 +2689,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2573,6 +2700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2580,8 +2708,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shi index f45c52e9..4bc8dd8a 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-2a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:04 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-2a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:01 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-2a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2183,6 +2183,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2206,7 +2207,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2217,8 +2218,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2229,7 +2232,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2237,17 +2240,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2255,8 +2259,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -2264,7 +2268,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2275,15 +2279,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -2291,17 +2296,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2309,8 +2315,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -2329,15 +2335,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -2356,6 +2363,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2383,6 +2391,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2391,12 +2400,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -2410,6 +2419,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2418,7 +2428,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -2437,6 +2447,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2445,25 +2456,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2471,16 +2539,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2491,6 +2559,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2498,16 +2567,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2518,6 +2643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2525,8 +2651,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -2534,7 +2660,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2545,6 +2671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2552,8 +2679,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -2561,7 +2688,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2572,6 +2699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2579,8 +2707,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shd index ff367c94..77170974 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:08 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-2b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-2b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2184,6 +2184,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2207,7 +2208,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2218,8 +2219,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2230,7 +2233,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2238,17 +2241,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2256,8 +2260,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -2265,7 +2269,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2276,15 +2280,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -2292,17 +2297,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2310,8 +2316,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -2330,15 +2336,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -2357,6 +2364,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2384,6 +2392,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2392,12 +2401,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -2411,6 +2420,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2419,7 +2429,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -2438,6 +2448,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2446,25 +2457,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2472,16 +2540,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2492,6 +2560,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2499,16 +2568,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2519,6 +2644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2526,8 +2652,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -2535,7 +2661,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2546,6 +2672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2553,8 +2680,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -2562,7 +2689,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2573,6 +2700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2580,8 +2708,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shi index ee6398a6..3d89447e 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-2b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:06 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-2b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:02 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-2b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -2183,6 +2183,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -2206,7 +2207,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -2217,8 +2218,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -2229,7 +2232,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -2237,17 +2240,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2255,8 +2259,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -2264,7 +2268,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2275,15 +2279,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -2291,17 +2296,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2309,8 +2315,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -2329,15 +2335,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -2356,6 +2363,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2383,6 +2391,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2391,12 +2400,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -2410,6 +2419,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2418,7 +2428,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -2437,6 +2447,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2445,25 +2456,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2471,16 +2539,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2491,6 +2559,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -2498,16 +2567,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2518,6 +2643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -2525,8 +2651,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -2534,7 +2660,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2545,6 +2671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -2552,8 +2679,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -2561,7 +2688,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -2572,6 +2699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -2579,8 +2707,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shd index d2f72336..7e8cf43c 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:09 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-3a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-3a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -634,6 +644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -642,12 +653,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -661,6 +672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -669,7 +681,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -688,6 +700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,25 +709,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shi index 96c0aea3..7c2fcb35 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-3a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:09 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-3a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-3a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -415,6 +415,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -424,6 +425,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -433,6 +435,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -456,7 +459,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -467,8 +470,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -479,7 +484,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -487,17 +492,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,8 +511,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -514,7 +520,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -525,15 +531,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -541,17 +548,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,8 +567,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -579,15 +587,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -606,6 +615,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,6 +643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -641,12 +652,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -660,6 +671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -668,7 +680,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -687,6 +699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,25 +708,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -721,16 +791,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +811,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -748,16 +819,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -775,8 +903,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -784,7 +912,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -795,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -802,8 +931,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -811,7 +940,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +951,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -829,8 +959,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shd index d903d7c4..a426f784 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:09 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-3b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-3b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -634,6 +644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -642,12 +653,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -661,6 +672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -669,7 +681,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -688,6 +700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,25 +709,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shi index c4c406f0..08fc1b63 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-3b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:09 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-3b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:03 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-3b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -415,6 +415,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -424,6 +425,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -433,6 +435,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -456,7 +459,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -467,8 +470,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -479,7 +484,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -487,17 +492,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,8 +511,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -514,7 +520,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -525,15 +531,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -541,17 +548,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,8 +567,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -579,15 +587,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -606,6 +615,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,6 +643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -641,12 +652,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -660,6 +671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -668,7 +680,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -687,6 +699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,25 +708,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -721,16 +791,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +811,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -748,16 +819,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -775,8 +903,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -784,7 +912,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -795,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -802,8 +931,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -811,7 +940,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +951,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -829,8 +959,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shd index 2c4a5567..7b85cf5f 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:11 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-4.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:05 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-4.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -467,6 +467,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +477,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +487,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -494,6 +497,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -517,7 +521,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -528,8 +532,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -540,7 +546,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -548,17 +554,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -566,8 +573,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -575,7 +582,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -586,15 +593,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -602,17 +610,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -620,8 +629,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -640,15 +649,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -667,6 +677,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -694,6 +705,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -702,12 +714,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -721,6 +733,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -729,7 +742,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -748,6 +761,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -756,25 +770,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -782,16 +853,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -802,6 +873,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -809,16 +881,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -829,6 +957,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -836,8 +965,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -845,7 +974,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -856,6 +985,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -863,8 +993,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -872,7 +1002,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -883,6 +1013,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -890,8 +1021,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shi index 04e916c3..9dc55373 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-4.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:10 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-4.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:04 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-4.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -466,6 +466,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -475,6 +476,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -484,6 +486,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -493,6 +496,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -516,7 +520,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -527,8 +531,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -539,7 +545,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -547,17 +553,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -565,8 +572,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -574,7 +581,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -585,15 +592,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -601,17 +609,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -619,8 +628,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -639,15 +648,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -666,6 +676,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -693,6 +704,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -701,12 +713,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -720,6 +732,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -728,7 +741,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -747,6 +760,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -755,25 +769,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -781,16 +852,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -801,6 +872,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -808,16 +880,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -828,6 +956,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -835,8 +964,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -844,7 +973,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -855,6 +984,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -862,8 +992,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -871,7 +1001,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -882,6 +1012,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -889,8 +1020,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shd index 7bc82c0b..4c871799 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:12 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-5a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:05 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-5a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shi index 6ebf1887..9b3730c3 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-5a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:12 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-5a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:05 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-5a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shd index 5e4e2c06..3c71a09d 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-5b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:05 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-5b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -356,6 +356,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -379,7 +380,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -390,8 +391,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -402,7 +405,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -410,17 +413,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -428,8 +432,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -437,7 +441,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -448,15 +452,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -464,17 +469,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -482,8 +488,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -502,15 +508,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -529,6 +536,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -556,6 +564,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -564,12 +573,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -583,6 +592,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -591,7 +601,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -610,6 +620,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -618,25 +629,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -644,16 +712,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -664,6 +732,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -671,16 +740,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -691,6 +816,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -698,8 +824,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -707,7 +833,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -718,6 +844,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -725,8 +852,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -734,7 +861,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -745,6 +872,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -752,8 +880,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shi index abee7a54..5d9efe0b 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-5b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-5b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:05 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-5b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -355,6 +355,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -378,7 +379,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -389,8 +390,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -401,7 +404,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -409,17 +412,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -427,8 +431,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -436,7 +440,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -447,15 +451,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -463,17 +468,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -481,8 +487,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -501,15 +507,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -528,6 +535,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -555,6 +563,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -563,12 +572,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -582,6 +591,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -590,7 +600,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -609,6 +619,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -617,25 +628,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -643,16 +711,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -663,6 +731,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -670,16 +739,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -690,6 +815,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -697,8 +823,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -706,7 +832,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -717,6 +843,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -724,8 +851,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -733,7 +860,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -744,6 +871,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -751,8 +879,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shd index 93a38b9b..ae6a05b5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:14 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-6.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:06 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-6.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -515,6 +515,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -524,6 +525,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -533,6 +535,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -542,6 +545,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -565,7 +569,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -576,8 +580,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -588,7 +594,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -596,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -614,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -623,7 +630,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -634,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -650,17 +658,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -668,8 +677,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -688,15 +697,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -715,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -742,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -750,12 +762,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -769,6 +781,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -777,7 +790,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -796,6 +809,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -804,25 +818,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -830,16 +901,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -850,6 +921,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -857,16 +929,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -877,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -884,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -893,7 +1022,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -904,6 +1033,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -911,8 +1041,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -920,7 +1050,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -931,6 +1061,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -938,8 +1069,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shi index 66e92289..a63a0fde 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-6.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:13 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-6.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:06 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-6.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -514,6 +514,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -523,6 +524,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -532,6 +534,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -541,6 +544,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -564,7 +568,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -575,8 +579,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -587,7 +593,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -595,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -613,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -622,7 +629,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -633,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -649,17 +657,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -667,8 +676,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -687,15 +696,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -714,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -741,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -749,12 +761,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -768,6 +780,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -776,7 +789,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -795,6 +808,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -803,25 +817,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -829,16 +900,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -849,6 +920,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -856,16 +928,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -876,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -883,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -892,7 +1021,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -903,6 +1032,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -910,8 +1040,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -919,7 +1049,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -930,6 +1060,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -937,8 +1068,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shd index a08d9a6e..7111718b 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:39 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:30 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,8 +565,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,15 +585,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -594,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -632,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shi index a5ef861b..7e0fea6a 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:15 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:07 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,8 +564,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,15 +584,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -593,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -631,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shd index 8cbcb242..a1c369ec 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:48 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:38 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,8 +565,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,15 +585,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -594,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -632,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shi index 1ce1a2a4..f8e40489 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:40 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:30 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,8 +564,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,15 +584,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -593,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -631,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shd index d1510817..ad1d84d2 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:53 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7c.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:42 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7c.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,8 +565,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,15 +585,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -594,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -632,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -947,6 +1078,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -965,7 +1097,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - -1 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 0.000 1.000 1.000 1.000 + -1 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shi index fe844d22..c0ef8f98 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7c.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:48 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7c.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:38 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7c.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,8 +564,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,15 +584,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -593,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -631,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shd index 579eaa92..4b49e689 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:00 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7d.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:47 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7d.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -459,6 +459,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -468,6 +469,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -477,6 +479,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -486,6 +489,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -509,7 +513,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -520,8 +524,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -532,7 +538,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -540,17 +546,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -558,8 +565,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -567,7 +574,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -578,15 +585,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -594,17 +602,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -612,8 +621,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -632,15 +641,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -659,6 +669,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -686,6 +697,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -694,12 +706,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -713,6 +725,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -721,7 +734,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -740,6 +753,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -748,25 +762,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -774,16 +845,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -794,6 +865,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -801,16 +873,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -821,6 +949,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -828,8 +957,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -837,7 +966,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -848,6 +977,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -855,8 +985,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -864,7 +994,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -875,6 +1005,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -882,8 +1013,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] @@ -947,6 +1078,7 @@ KFactor DeltaSoilPassive DeltaSoilPassivePerc DeltaSoilPassiveMax +DeltaSoilPassiveDry IncreaseDeltaWaterLevelActiveSide DecreaseDeltaWaterLevelPassiveSide IncreaseDeltaWaterLevelPassiveSide @@ -965,7 +1097,7 @@ ConstructLoadPermFav ConstructLoadPermUnfav [END OF COLUMN INDICATION] [DATA] - 4 2 1.000 1.150 1.300 0.30 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.000 1.200 0.000 1.000 1.000 1.000 + 4 2 1.000 1.150 1.300 0.30 0.00 0.00 0.00 0.05 0.20 0.20 0.000 1.000 1.000 1.000 1.000 0.000 1.000 1.200 1.200 0.000 1.000 1.000 1.000 [END OF DATA] [END OF TABLE] [END OF FACTORS FOR VERIFICATION] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shi index 7c7045b3..f5c3fde3 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-7d.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:05:56 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-7d.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:43 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-7d.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -458,6 +458,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -467,6 +468,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -476,6 +478,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -485,6 +488,7 @@ StagePartialFactorSetCUR=1 StageVerify=1 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -508,7 +512,7 @@ DesignType=1 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=1 DesignCURMethod=0 @@ -519,8 +523,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=1 CUROverallPartialFactorSet=1 CUROverallAnchorFactor=1.000 @@ -531,7 +537,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -539,17 +545,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -557,8 +564,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -566,7 +573,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -577,15 +584,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -593,17 +601,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -611,8 +620,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -631,15 +640,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -658,6 +668,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -685,6 +696,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -693,12 +705,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -712,6 +724,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -720,7 +733,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -739,6 +752,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -747,25 +761,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -773,16 +844,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -793,6 +864,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -800,16 +872,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -820,6 +948,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -827,8 +956,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -836,7 +965,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -847,6 +976,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -854,8 +984,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -863,7 +993,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -874,6 +1004,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -881,8 +1012,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shd index c889b40c..a752e334 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:02 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-8a.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:49 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-8a.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -634,6 +644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -642,12 +653,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -661,6 +672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -669,7 +681,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -688,6 +700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,25 +709,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shi index 4e1ca135..53ba0855 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-8a.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:01 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-8a.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:48 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-8a.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -415,6 +415,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -424,6 +425,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -433,6 +435,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -456,7 +459,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -467,8 +470,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -479,7 +484,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -487,17 +492,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,8 +511,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -514,7 +520,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -525,15 +531,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -541,17 +548,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,8 +567,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -579,15 +587,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -606,6 +615,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,6 +643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -641,12 +652,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -660,6 +671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -668,7 +680,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -687,6 +699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,25 +708,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -721,16 +791,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +811,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -748,16 +819,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -775,8 +903,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -784,7 +912,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -795,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -802,8 +931,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -811,7 +940,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +951,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -829,8 +959,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shd index 1d2faa43..c127ecc5 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:08 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-8b.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:53 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-8b.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -416,6 +416,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -425,6 +426,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -434,6 +436,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -457,7 +460,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -468,8 +471,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -480,7 +485,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -488,17 +493,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -506,8 +512,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -515,7 +521,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -526,15 +532,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -542,17 +549,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -560,8 +568,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -580,15 +588,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -607,6 +616,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -634,6 +644,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -642,12 +653,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -661,6 +672,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -669,7 +681,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -688,6 +700,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -696,25 +709,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -722,16 +792,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -742,6 +812,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -749,16 +820,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -769,6 +896,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -776,8 +904,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -785,7 +913,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -796,6 +924,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -803,8 +932,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -812,7 +941,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -823,6 +952,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -830,8 +960,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shi index 5d668d67..42fe5f11 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-8b.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:03 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-8b.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:49 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-8b.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -415,6 +415,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -424,6 +425,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -433,6 +435,7 @@ StagePartialFactorSetCUR=0 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -456,7 +459,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -467,8 +470,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -479,7 +484,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -487,17 +492,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -505,8 +511,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -514,7 +520,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -525,15 +531,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -541,17 +548,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -559,8 +567,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -579,15 +587,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -606,6 +615,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -633,6 +643,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -641,12 +652,12 @@ OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -660,6 +671,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -668,7 +680,7 @@ OverallStabilityFactorCohesion=1.450 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -687,6 +699,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -695,25 +708,82 @@ OverallStabilityFactorCohesion=1.600 OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -721,16 +791,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -741,6 +811,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -748,16 +819,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -768,6 +895,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -775,8 +903,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -784,7 +912,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -795,6 +923,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -802,8 +931,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -811,7 +940,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -822,6 +951,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -829,8 +959,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shd b/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shd index e182474f..bbbb0218 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shd +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shd @@ -2,16 +2,16 @@ DUMP FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:09 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-9.shd -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:53 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-9.shd +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [DUMPFILE] [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -393,6 +393,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -416,7 +417,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -427,8 +428,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -439,7 +442,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -447,17 +450,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -465,8 +469,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -474,7 +478,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -485,15 +489,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -501,17 +506,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -519,8 +525,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -539,15 +545,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -566,6 +573,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -587,26 +595,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -614,21 +623,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -641,39 +651,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -681,16 +749,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -701,6 +769,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -708,16 +777,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -728,6 +853,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -735,8 +861,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -744,7 +870,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -755,6 +881,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -762,8 +889,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -771,7 +898,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -782,6 +909,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -789,8 +917,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS] diff --git a/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shi b/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shi index b18df98f..30d6fdb6 100644 --- a/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shi +++ b/tests/test_data/dsheetpiling/tutorials/Tutorial-9.shi @@ -2,15 +2,15 @@ INPUT FILE FOR D-SHEET PILING ============================================================================== COMPANY : -DATE : 15/03/2023 -TIME : 11:06:08 -FILENAME : C:\Deltares\D-Sheet Piling 23.1\Examples\Tutorial-9.shi -CREATED BY : D-Sheet Piling version 23.1.1.40517 +DATE : 11/07/2024 +TIME : 09:09:53 +FILENAME : C:\Deltares\D-Sheet Piling\Examples\Tutorial-9.shi +CREATED BY : D-Sheet Piling version 24.1.1.1735 ========================== BEGINNING OF DATA ========================== [INPUT DATA] [VERSION] -Soil=1010 -D-Sheet Piling=1033 +Soil=1012 +D-Sheet Piling=1034 [END OF VERSION] [VERSION EXTERNALS] @@ -392,6 +392,7 @@ StagePartialFactorSetCUR=-1 StageVerify=0 StageAnchorFactor=1.000 StagePartialFactorSetEC7NADNL=1 +StageRiskClassEC7NADBE=1 StageVerifyEC7NADNL=0 StageAnchorFactorEC7NADNL=1.000 StageVerifyEC7NADBE=0 @@ -415,7 +416,7 @@ DesignType=0 DesignEuroCodePartialFactorSet=0 DesignPartialFactorSetEC7NADNL=1 DesignEC7NLMethod=0 -DesignPartialFactorSetEC7NADBE=0 +DesignEC7BEPartialFactorSet=2 DesignEC7BEMethod=0 DesignPartialFactorSet=0 DesignCURMethod=0 @@ -426,8 +427,10 @@ EC7NLMethod=0 EC7NLOverallPartialFactorSet=1 EC7NLOverallAnchorFactor=1.000 EC7NADNLOverallStability=0 +EC7NLAssessmentType=0 EC7BEOverallStability=0 EC7BEMethod=0 +EC7BEOverallRiskClass=1 CURMethod=0 CUROverallPartialFactorSet=0 CUROverallAnchorFactor=1.000 @@ -438,7 +441,7 @@ OverallStabilityType=0 StabilityExport=0 StabilityEuroCodePartialFactorSet=0 StabilityEC7NLPartialFactorSet=1 -StabilityEC7BEPartialFactorSet=0 +OverallStabilityEC7BEPartialFactorSet=2 StabilityCURPartialFactorSet=0 [PARTIAL FACTORS EUROCODE DA1 SET1] LoadFactorPermUnfav=1.000 @@ -446,17 +449,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -464,8 +468,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA1 SET1] [PARTIAL FACTORS EUROCODE DA1 SET2] LoadFactorPermUnfav=1.000 @@ -473,7 +477,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.300 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -484,15 +488,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 [END OF PARTIAL FACTORS EUROCODE DA1 SET2] [PARTIAL FACTORS EUROCODE DA2] LoadFactorPermUnfav=1.000 @@ -500,17 +505,18 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactorVarUnfav=1.111 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.400 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -518,8 +524,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.100 [END OF PARTIAL FACTORS EUROCODE DA2] [PARTIAL FACTORS EUROCODE DA3] LoadFactorPermUnfav=1.000 @@ -538,15 +544,16 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.000 -OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorCohesion=1.250 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 [END OF PARTIAL FACTORS EUROCODE DA3] [PARTIAL FACTORS EC7 NL 0] LoadFactorPermUnfav=1.000 @@ -565,6 +572,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -586,26 +594,27 @@ ConstructLoadFactorPermUnfavCalc=1.215 ConstructLoadFactorVarUnfavCalc=1.350 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.000 +MaterialFactorCohesion=1.150 MaterialFactorTgPhi=1.150 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.30 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=0.900 -OverallStabilityFactorCohesion=1.500 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.300 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 1] [PARTIAL FACTORS EC7 NL 2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 -LoadFactorVarUnfav=1.000 +LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=0.900 ConstructLoadFactorVarFav=0.000 @@ -613,21 +622,22 @@ ConstructLoadFactorPermUnfavCalc=1.350 ConstructLoadFactorVarUnfavCalc=1.500 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.050 +MaterialFactorCohesion=1.250 MaterialFactorTgPhi=1.175 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 OverallStabilityFactorDrivingMoment=1.000 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.200 +OverallStabilityFactorCohesion=1.450 +OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.200 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 2] [PARTIAL FACTORS EC7 NL 3] LoadFactorPermUnfav=1.000 @@ -640,39 +650,97 @@ ConstructLoadFactorPermUnfavCalc=1.485 ConstructLoadFactorVarUnfavCalc=1.650 EffectFactor=1.000 EffectFactorVarUnfav=1.000 -MaterialFactorCohesion=1.100 +MaterialFactorCohesion=1.400 MaterialFactorTgPhi=1.200 MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 -GeometryIncRetainingHeight=0.00 -GeometryMaxIncRetainingHeight=0.00 -GeometryDeltaPassiveSurfaceLevel=0.35 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 -OverallStabilityFactorDrivingMoment=1.100 -OverallStabilityFactorCohesion=1.500 -OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.600 +OverallStabilityFactorTgPhi=1.300 OverallStabilityFactorUnitWeight=1.000 FactorRepValuesMDPmax=1.350 -VerticalBalanceGammaMb=1.250 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS EC7 NL 3] -[PARTIAL FACTORS EC7 BE SET1] +[PARTIAL FACTORS EC7 BE 1 SET1] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 -EffectFactor=1.350 -EffectFactorVarUnfav=1.100 +EffectFactor=1.200 +EffectFactorVarUnfav=1.083 MaterialFactorCohesion=1.000 MaterialFactorTgPhi=1.000 MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 1 SET1] +[PARTIAL FACTORS EC7 BE 1 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.100 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.100 +MaterialFactorTgPhi=1.100 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.100 +OverallStabilityFactorTgPhi=1.100 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 1 SET2] +[PARTIAL FACTORS EC7 BE 2 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.350 +EffectFactorVarUnfav=1.111 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -680,16 +748,16 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.000 OverallStabilityFactorTgPhi=1.000 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET1] -[PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 2 SET1] +[PARTIAL FACTORS EC7 BE 2 SET2] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.100 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -700,6 +768,7 @@ MaterialFactorSubgradeReaction=1.000 ResistanceFactor=1.000 GeometryIncRetainingHeight=10.00 GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 GeometryDeltaPassiveSurfaceLevel=0.00 GeometryDeltaPassivePhreaticLine=0.00 GeometryDeltaActivePhreaticLine=0.00 @@ -707,16 +776,72 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.250 OverallStabilityFactorTgPhi=1.250 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.200 -[END OF PARTIAL FACTORS EC7 BE SET2] +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 2 SET2] +[PARTIAL FACTORS EC7 BE 3 SET1] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.000 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.500 +EffectFactorVarUnfav=1.200 +MaterialFactorCohesion=1.000 +MaterialFactorTgPhi=1.000 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=0.00 +GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.000 +OverallStabilityFactorTgPhi=1.000 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.000 +[END OF PARTIAL FACTORS EC7 BE 3 SET1] +[PARTIAL FACTORS EC7 BE 3 SET2] +LoadFactorPermUnfav=1.000 +LoadFactorPermFav=1.000 +LoadFactorVarUnfav=1.200 +LoadFactorVarFav=0.000 +ConstructLoadFactorPermFav=1.000 +ConstructLoadFactorVarFav=1.000 +ConstructLoadFactorPermUnfavCalc=1.000 +ConstructLoadFactorVarUnfavCalc=1.000 +EffectFactor=1.000 +EffectFactorVarUnfav=1.000 +MaterialFactorCohesion=1.400 +MaterialFactorTgPhi=1.400 +MaterialFactorSubgradeReaction=1.000 +ResistanceFactor=1.000 +GeometryIncRetainingHeight=10.00 +GeometryMaxIncRetainingHeight=0.50 +GeometryIncRetainingHeightDry=0.30 +GeometryDeltaPassiveSurfaceLevel=0.00 +GeometryDeltaPassivePhreaticLine=0.00 +GeometryDeltaActivePhreaticLine=0.00 +OverallStabilityFactorDrivingMoment=1.000 +OverallStabilityFactorCohesion=1.400 +OverallStabilityFactorTgPhi=1.400 +OverallStabilityFactorUnitWeight=1.000 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.300 +[END OF PARTIAL FACTORS EC7 BE 3 SET2] [PARTIAL FACTORS CUR I] LoadFactorPermUnfav=1.000 LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -727,6 +852,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.20 GeometryDeltaPassivePhreaticLine=0.15 GeometryDeltaActivePhreaticLine=0.05 @@ -734,8 +860,8 @@ OverallStabilityFactorDrivingMoment=0.900 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR I] [PARTIAL FACTORS CUR II] LoadFactorPermUnfav=1.000 @@ -743,7 +869,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.000 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -754,6 +880,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.30 GeometryDeltaPassivePhreaticLine=0.20 GeometryDeltaActivePhreaticLine=0.05 @@ -761,8 +888,8 @@ OverallStabilityFactorDrivingMoment=1.000 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR II] [PARTIAL FACTORS CUR III] LoadFactorPermUnfav=1.000 @@ -770,7 +897,7 @@ LoadFactorPermFav=1.000 LoadFactorVarUnfav=1.250 LoadFactorVarFav=0.000 ConstructLoadFactorPermFav=1.000 -ConstructLoadFactorVarFav=0.000 +ConstructLoadFactorVarFav=1.000 ConstructLoadFactorPermUnfavCalc=1.000 ConstructLoadFactorVarUnfavCalc=1.000 EffectFactor=1.000 @@ -781,6 +908,7 @@ MaterialFactorSubgradeReaction=1.300 ResistanceFactor=1.000 GeometryIncRetainingHeight=0.00 GeometryMaxIncRetainingHeight=0.00 +GeometryIncRetainingHeightDry=0.00 GeometryDeltaPassiveSurfaceLevel=0.35 GeometryDeltaPassivePhreaticLine=0.25 GeometryDeltaActivePhreaticLine=0.05 @@ -788,8 +916,8 @@ OverallStabilityFactorDrivingMoment=1.100 OverallStabilityFactorCohesion=1.500 OverallStabilityFactorTgPhi=1.200 OverallStabilityFactorUnitWeight=1.000 -FactorRepValuesMDPmax=0.000 -VerticalBalanceGammaMb=1.250 +FactorRepValuesMDPmax=1.000 +VerticalBalanceGammaMb=1.200 [END OF PARTIAL FACTORS CUR III] [END OF CALCULATION OPTIONS]